#multi-step-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 0px 0 56px 0;
}

.form-step {
    padding: 10px 0;
}

label {
    display: block;
    margin-bottom: 5px;
}




.form-step {
    display: flex;
    flex-direction: column; /* Stack items vertically */
}

.form-row {
    display: flex; /* Use Flexbox for the row */
    justify-content: space-between; /* Space between columns */
    margin-bottom: 20px; /* Space between rows */
}

#multi-step-form input, #multi-step-form select, #multi-step-form textarea {
    border: none; /* Remove all borders */
    border-bottom: 1px solid #bfc3c8; /* Add bottom border */
    outline: none; /* Remove the default outline */
    padding: 8px 0; /* Add some vertical padding */
    width: 48%; /* Adjust width to fit two columns */
    font-size: 13px; /* Adjust font size as needed */
    color: #000000 !important;
    background: transparent;
}
#multi-step-form input:focus:not(.error), #multi-step-form select:focus:not(.error) {
    border-bottom: 1px solid #1b1b1b; /* Change to a different color when focused */
}

#multi-step-form input:-webkit-autofill,
#multi-step-form input:-webkit-autofill:hover,
#multi-step-form input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
    box-shadow: 0 0 0px 1000px transparent inset !important;
    -webkit-text-fill-color: inherit !important;
    background-color: transparent !important;
    transition: background-color 5000s ease-in-out 0s; /* Prevent flash */
}


#multi-step-form .error {
    border-color: red;
    color: red !important;
    border-bottom: 1px solid red;
}
#multi-step-form .error::placeholder {
    color: red;
}

/* Adjust the select field appearance */
#multi-step-form select {
    appearance: none; /* Remove default arrow */
    background: none; /* Transparent background */
    cursor: pointer; /* Pointer cursor on hover */
}

/* Submit button styles */
#multi-step-form .button-container {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 34px;
    /*border-top: 1px solid #DADADB;*/
    padding: 6px 39px;
    width: 122%;
    position: absolute;
    bottom: 0px;
    left: -41px;
}

#multi-step-form .button {
    color: #4440DB; /* Default text color */
    background-color: rgba(1, 110, 204, 0); /* Default background color */
    border: 1px solid #4440DB; /* Default border */
    padding: 10px 20px 10px 20px;
    cursor: pointer; /* Pointer cursor on hover */
    font-size: 16px; /* Adjust font size */
    transition: background-color 0.3s, color 0.3s, border-color 0.3s; /* Smooth transition */
}

#multi-step-form .button:hover {
    color: #fff; /* Text color on hover */
    background-color: #4440DB; /* Background color on hover */
    border-color: #4440DB; /* Border color on hover */
}

/* Additional styles for the cancel button */
#multi-step-form .cancel {
    color: #1b1b1b;
    background: none;
    border: none;
}

#multi-step-form .cancel:hover {
    color: #1b1b1b;
    background: none;
    border: none;
}


#multi-step-form .button.disabled {
    cursor: not-allowed;
    background: none;
    border-color: #bfc3c8;
    color: #bfc3c8;
}
.hidden {
    display: none;
}

#multi-step-form hr {
    height: 1px;
    border-bottom: 1px solid #bfc3c8;
    width: 100%;
    margin: 5px 0;
    border-top: none;
}

#multi-step-form.success h6 {
    display:none;
}

#multi-step-form h6.schedule_title {
    margin-bottom: 15px;
    margin-top: 0px;
}


.step-2 {
    padding: 64px 0;
}
.step-2 p {
    text-align: center;
    font-size: 17px;
    font-family: inherit;
}
.step-2 h4 {
    text-align: center;
    font-family: inherit;
}
.step-2 img {
    width: 40%;
}


/* Preloader spinner */
#preloader {
    position: absolute;
    top: -28px;
    left: -40px;
    width: 122%;
    height: 106%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(0, 0, 0, 0.1);
    border-top: 5px solid #379E4A;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}


.button.go-home-button:hover {
  color: var(--e-global-color-a4f8f36) !important;
  background-color: rgba(255, 255, 255, 0) !important;
  border-color: var(--e-global-color-a4f8f36) !important;
  text-decoration: none;
}

.button.go-home-button {
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none !important;
  letter-spacing: 1px;
  fill: #FFFFFF;
  color: #FFFFFF !important;
  background-color: #4440DB !important;
  border-style: solid !important;
  border-width: 2px 2px 2px 2px !important;
  border-color: #4440DB !important;
  border-radius: 50px 50px 50px 50px;
  padding: 18px 37px 18px 37px !important;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media screen and (max-width: 767px) {
    #multi-step-form .button-container {
        display: flex;
        margin-top: 34px;
        /*border-top: 1px solid #DADADB;*/
        padding: 0px;
        width: 100%;
        position: relative;
        left: 0px;
    }
    #multi-step-form {
        padding: 0px;
    }

    .button {
        width: 100%;
        padding: 15px;
    }
}
