/* @import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap'); */

.input-group {
    display: flex;
    align-items: center;
}

.input-field {
    width: 295px !important;
    margin: 0 !important;
    padding: 10px;
    border: 1px solid #ccc;
    border-right: none;
    border-radius: 4px 0 0 4px;
    outline: none;
    font-size: 16px;
}

.input-button {
    padding: 15px 20px;
    border: none;
    border-radius: 0 4px 4px 0;
    background-color: #38B6FF;
    color: white;
    font-size: 16px;
    cursor: pointer;
    outline: none;
    font-weight: 600;
}

.input-button:hover {
    background-color: #2196da;
}

.upload-container {
    border: 2px dashed #00b0ff;

    border-radius: 10px;
    margin-bottom: 20px;
    position: relative;
    background-color: #e0f7ff;
}

.upload-area {
    cursor: pointer;
    color: #00b0ff;
}

.upload-area>img {
    width: 40px;
}

/* .upload-area p {
    margin: 5px 0;
} */

#file-status {
    margin-top: 10px;
    color: #888;
}

.signature-container {
    position: relative;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    background-color: #f0f0f0;
}

.signature-pad {
    width: 100%;
    height: 300px;
}

.watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 22px;
    line-height: 40px;
    color: rgba(0, 0, 0, 0.3);
    pointer-events: none;
    user-select: none;
    font-weight: 500;
}

.checkbox-container {
    display: inline-block;
    margin: 30px 5px;
    cursor: pointer;
}

.checkbox-container input {
    display: none;
}

.checkbox-container .checkmark {
    padding: 30px 150px;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: all 0.3s ease;
    color: #004AAD;
    font-weight: 800;
    font-size: 26px;
}

.checkbox-container input:checked+.checkmark {
    background-color: #004AAD;
    color: white;
}

.three .checkbox-container .checkmark{
    padding: 30px 100px;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: all 0.3s ease;
    color: #004AAD;
    font-weight: 800;
    font-size: 26px;
} 

*::placeholder {
    color: #6b72807d !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    display: block;
    clear: both;
    font-family: "inter", sans-serif;
    font-weight: 800;
    font-style: normal;
    margin: 0 0 0px 0;
    z-index: 10;
    line-height: 130%;
    letter-spacing: 0.010em;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #171717;
}

h1,
.h1 {
    font-size: 35px;
}

h2,
.h2 {
    font-size: 32px;
}

h3,
.h3 {
    font-size: 28px;
}

h4,
.h4 {
    font-size: 26px;
}

h5,
.h5 {
    font-size: 22px;
}

h6,
.h6 {
    font-size: 17px;
}

#loading {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5em;
    color: #555;
    z-index: 900;
}

#loading .spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border-left-color: #09f;
    animation: spin 1s ease infinite;
    margin-right: 10px;
    z-index: 1000;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.form-check-label {
    width: 70px;
}

.text-size-medium-large,
.text-size-medium-large * {
    font-size: 28px !important;
    line-height: 130%;
}

.text-size-regular,
.text-size-regular * {
    font-size: 18px !important;
    line-height: 130%;
}

.text-size-smaller,
.text-size-smaller * {
    font-size: 16px !important;
    line-height: 130%;
    text-transform: none;
}

.btn-text-size-smaller {
    font-size: 16px !important;
    line-height: 130%;
    text-transform: none;
}

.text-size-smallest,
.text-size-smallest * {
    font-size: 14px !important;
    line-height: 130% !important;
    font-weight: 400;
}

.text-size-smallester,
.text-size-smallester * {
    font-size: 12px !important;
    line-height: 130%;
}

.wrap-larger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    box-sizing: border-box;
    width: 100%;
}

.wrap-larger .logo-left {
    max-width: 250px;
    height: auto;
}

.wrap-larger .logo-right {
    max-width: 140px;
    height: auto;
}

input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 25px;
    height: 25px;
    background-color: white;
    border: 1px solid #ccc;
    margin-right: 8px;
    position: relative;
}

input[type="radio"]:checked+label .radio-custom {
    background-color: #38B6FF;
}

input[type="radio"]:checked+label .radio-custom::after {
    content: '\2714';
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
}

footer p {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    font-variation-settings:
        "slnt" 0;
}

.footer-top {
    background-color: #004AAD;
    padding: 20px;
    height: auto;
}

.slideshow-container {
    position: relative;
    color: white;
}

.author {
    color: white;
}

.mySlides {
    display: none;
    padding-top: 20px;
    text-align: center;
}

.lender-list-border {
    border: 1px solid #048cb8;
    padding: 10px 20px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.no-dots {
    list-style-type: none;
    padding: 0;
}

.no-dots li {
    padding: 10px 0;
    /* margin: 0; */
    border-bottom: 1px solid #048cb8;
}

.no-dots li:first-child {
    border-top: 1px solid #048cb8;
}


.agreement-list {
    list-style-type: none;
}

.agreement-list .outter-list::before {
    content: "\2713";
    left: 0;
    /* Align tick to the left */
    color: #048cb8;
    /* Tick color */
    font-size: 1.2em;
    font-weight: 1000;
}

.outter-list .inner-list {
    margin: 50px;
}

.agreement-checkbox {
    width: 24px;
    height: 24px;
}

[type="checkbox"],
[type="radio"] {
    color: #38B6FF;
}

#clear-button {
    bottom: 10px;
    color: #048cb8;
    background-color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
}

.signature-page--signatures-wrapper {
    margin: auto;
    width: 700px;
}

*,
:after,
:before {
    box-sizing: border-box;
}


.signature__clear {
    -webkit-appearance: none;
    appearance: none;
    background: #fff;
    border: none;
    border-radius: 5px;
    box-shadow: none;
    color: #004AAD;
    display: block;
    font-size: 14px;
    font-style: normal;
    font-weight: 800;
    margin: 5px auto 10px;
    outline: none;
    padding: 0px 30px;
    text-align: center;
    user-select: none;
}



@keyframes pulse {
    from {
        transform: scale(0.8);
    }

    to {
        transform: scale(0.9);
    }
}

.signature-page .signature {
    margin: 16px auto 0;
    padding: 1px 0;
}

.signature {
    background-color: #004AAD;
    border-radius: 10px;
    margin: 32px auto;
    position: relative;
    width: 290px;
}

p.warning-hint {
    align-items: start;
    color: #a34700;
    display: flex;
    font-size: 12px;
    font-weight: 400;
    gap: 8px;
}

.upload-container .custom-file-upload {
    cursor: pointer;
    text-decoration: underline;
}

.upload-container .custom-file-upload {
    border: 1px dashed #000;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 120px;
    justify-content: center;
    place-items: center;
    position: relative;
    text-align: center;
}

input[type=file] {
    display: none;
}

.uploaded-files-container .empty-file-list-wrapper {
    background: #f5f5f5;
    font-size: 12px;
}

.uploaded-files-container .empty-file-list-wrapper {
    border-radius: 10px;
    padding: 12px 16px;
}

.form-page-header {
    width: 100%;
    text-align: center;
    align-items: stretch;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.font-18 {
    font-size: 18px;
}

.font-16 {
    font-size: 16px;
}

.we-will-be-in-touch-page--icon {
    margin: 24px auto;
    width: 91px;
}

body {
    margin: 0;
    position: relative;
}

.header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    padding: 10px 40px;
}

.header-bottom {
    /* height: 50px; */
    background: #004AAD;
    display: flex;
    justify-content: center;
    flex-direction: row;
    padding: 5px 40px;
    align-items: center;
    position: relative;
}

.header-bottom-overlaye {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.form-div {
    font-family: 'Inter', sans-serif;
    /* background-color: #f5f5f5; */
    margin: 10px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* background-image: linear-gradient(to right, #04173d, #091d78, #048cb8); */
    min-height: 50vh;
    width: 100%;
    /* Ensure it takes up the full width of the container */
}

p {
    font-size: 18px;
    /* font-weight: bolder; */
    padding: 0;
    margin: 5px;
}

#step4 p {
    font-size: 16px;
    /* font-weight: bolder; */
    padding: 0;
    margin: 5px;
}

.form-main-heading {
    color: white;
    width: 70vw;
    text-align: center;
}


.form-container {
    margin: 2vw 0vh 2vw 0vh;
    background-color: #fff;
    padding: 10px 30px;
    border-radius: 10px;
    /* box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); */
    width: 950px;
    transition: transform 0.3s ease-in-out;
    overflow: hidden;
}

.form-step {
    display: none;
}

.form-step.active {
    display: inline;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

label {
    font-size: 16px;
    color: #171717;
    display: block;
}

input::placeholder,
textarea::placeholder {
    font-size: 17px;
    font-weight: 500;
}

/* #step1 input,
#step3 input {
    margin-top: 5px;
    transform: scale(1.1);
} */

input[type="text"],
input[type="email"],
input[type="tel"] {
    width: 100%;
    padding: 15px;
    margin: auto;
    display: flex;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 17px;
}

.btn {
    /* width: 120px; */
    /* padding: 1vw 3vw; */
    padding: 10px 30px;
    margin-top: 10px; 
    font-weight: 600;
    color: white;
    background-color: #38B6FF;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    /* font-size: 17px; */
    transition: background-color 0.3s ease-in-out;
}

.btn:hover {
    background-color: #2196da;
    color: white;
}

.faq-accordion {
    background-color: white;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    font-weight: bold;
    transition: 0.4s;
}

.faq-accordion:after {
    content: "\002B";
    color: #777;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

.faq-active:after {
    content: "\2212";
}

.faq-panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    border-bottom: 1px solid #38B6FF;
}

.faq-panel p {
    font-size: 14px;
}

.find-address-field {
    display: flex;
    align-items: center;
    border: 1px solid #38B6FF;
    width: 450px;
    border-radius: 5px;
}

.find-address-field>input {
    width: 300px !important;
    /* border-radius: 5px 0 0 5px !important; */
    padding: 0px 0px;
    border: none !important;
    text-transform: uppercase;
}

.find-address-field>input:focus,
.find-address-field>input:hover {
    border: none;
    outline: none;
    box-shadow: none;
}

.find-address-field>.btn {
    width: 180px;
    margin-top: 0px;
    border-radius: 0px;
    padding: 20px 0px;
}

.form-buttons {
    margin-top: 15px;
    display: flex;
    flex-direction: row;
}

.next-btn {
    /* width: 40%; */
    width: 100%;
    background-color: #38B6FF;
    color: #fff;
    /* background-color: #199747; */
    color: #fff;
    padding: 15px 0px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    margin: 5px 20px;
    transition: background-color 0.3s ease-in-out;
}

.next-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.next-btn:disabled:hover {
    background-color: #ccc;
    cursor: not-allowed;
}

.prev {
    width: 10%;
    background-color: #38B6FF;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 22px;
    font-weight: 600;
    margin: 5px 20px;
    transition: background-color 0.3s ease-in-out;
}

.prev>img {
    width: 15px;
    margin: auto auto;
    display: flex;
    justify-items: center;
}

.prev:hover {
    background-color: #2196da;
}

.next-btn:hover {
    background-color: #2196da;
}

.error-message {
    color: #ff1f1f;
    font-size: 11px;
    display: none;
}

.step-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.step-circle {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #ccc;
    margin: 0 5px;
}

.active-circle {
    background-color: #4caf50;
}

.progress-bar {
    width: 100%;
    height: 1.2em;
    background-color: #DADADA;
    border-radius: 15px;
    border: 1px solid #38B6FF;
    margin-top: 10px;
    overflow: hidden;
    position: relative;
}

.progress {
    height: 100%;
    width: 0;
    background-color: #15A406;
    transition: width 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.progress-text {
    position: absolute;
    width: 100%;
    text-align: center;
}

[type="checkbox"]:focus,
[type="radio"]:focus {
    box-shadow: none;
}

.datalist-input {
    display: block;
    margin: auto;
    width: 90%;
    padding: 2%;
    font-size: 14px;
    border-radius: 5px;
    border: 1px solid #048cb8;

}

.dropdown_style {
    margin: auto;
    width: 100%;
    display: block;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 17px;
    padding: 15px;
    color: #000;
}

.checkbox-border {
    border: 1px solid #048cb8;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 5px;
}

.dropdown_style option {
    font-size: 17px;
    margin-bottom: 10px;
    color: #000;
}

input[type="checkbox"] {
    margin-right: 5px;
}

[type="checkbox"],
[type="radio"] {
    color: #048cb8;
}

[type="checkbox"] {
    border-radius: 4px;
}

#selectedOptions {
    margin-top: 20px;
}

#selectedOptions ul {
    list-style-type: none;
    padding: 0;
}

#selectedOptions ul li {
    border: 1px solid #048cb8;
    margin-bottom: 5px;
    /* background-color: #ececec; */
    padding: 10px 16px;
    border-radius: 5px;
    text-transform: capitalize;
}

#selectedOptions ul li:hover {
    background-color: #b6e9f9;
    cursor: pointer;
}

#nextButton:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.input-background {
    background-color: rgba(35, 168, 147, 0.298);
    border: 1px solid rgba(35, 168, 147, 0.298);
    padding: 8px;
    border-radius: 5px;
    margin: 5px 0px;
}

.orange-box {
    align-items: flex-start;
    background: rgba(245, 106, 0, 0.04);
    border: 1px solid #ef6c00;
    border-radius: 8px;
    color: #8f3e00;
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    padding: 10px 5px;
}

.smaller {
    font-size: 14px;
    line-height: 21px;
    margin-top: 0;
}

#step4-next-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

@media only screen and (max-width: 1169px) {


    .form-main-heading {
        width: 90vw;
        font-size: 28px;
    }

    .form-container {
        width: 550px;
    }

}

.justify-content-between {
    justify-content: space-between;
    display: flex;
}

.font-medium-larg {
    margin: 30px 0px 10px 0px;
    font-size: 16px;
    font-weight: 500;
    display: block;
}

/* #step1 .font-medium-larg:first-child,
#step2 .font-medium-larg:first-child,
#step7 .font-medium-larg:first-child {
    margin-top: -10px;
} */

.margin {
    margin: 10px 0px;
}

.field.three {
    display: flex;
    flex-direction: row;
}

form .field.three .field {
    width: calc(30% - 12.5px) !important;
    clear: none;
    margin: 0 12.5px 0 0;
}

form .field.three .field:nth-child(3) {
    width: calc(40% - 12.5px) !important;
}

.accordion {
    width: 100%;
    background-color: #fff;
    border-top: 1px solid #38B6FF;
}

.accordion-item {
    border-bottom: 1px solid #38B6FF;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.accordion-header>h6 {
    color: #38B6FF;
}

.accordion-header:hover {
    background-color: #f9f9f9;
}

.accordion-icon {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.accordion-content p {
    margin: 15px 0;
}

.accordion-item.active .accordion-content {
    max-height: 600px;
    padding: 15px;
    transition: max-height 0.5s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(135deg);
}

@media only screen and (max-width: 1200px) {

    .checkbox-container {
        margin: 25px 5px;
    }

    .checkbox-container .checkmark {
        padding: 20px 80px;
        font-size: 20px;
    }

    .three .checkbox-container .checkmark{
        padding: 20px 50px;
        font-size: 20px;
    }
}

@media only screen and (max-width: 600px) {

    .font-medium-larg {
        margin: 15px 0px 5px 0px;
        font-size: 12px;
    }

    .form-check-label {
        width: 50px;
        margin-top: 0px;
    }

    .wrap-larger .logo-left {
        max-width: 140px;
        height: auto;
    }

    .wrap-larger .logo-right {
        max-width: 100px;
        height: auto;
    }

    .wrap-larger {
        flex-direction: column;
    }

    /* .header-img {
        display: none;
    } */

    p {
        font-size: 14px;
    }

    .find-address-field>input {
        width: 180px !important;
    }

    .find-address-field>.btn {
        width: 120px;
        font-size: 13px;
    }

    .form-main-heading {
        width: 90vw;
    }

    .find-address-field {
        width: 290px;
    }

    form .field.three .field {
        width: calc(33.33% - 5px) !important;
        clear: none;
        margin: 0 5px 0 0;
    }

    .form-container {
        width: 90vw;
    }

    label {
        margin-left: 7px;
        margin-top: 14px;
        font-size: 14px;
        color: #171717;

    }

    .datalist-input {
        width: 100%;
    }


    .text-size-medium-large {
        font-size: 22px;
    }

    .text-size-regular,
    .text-size-regular * {
        font-size: 16px !important;
    }

    .text-size-smaller,
    .text-size-smaller * {
        font-size: 14px !important;
    }

    .btn-text-size-smaller,
    .btn-text-size-smaller * {
        font-size: 11px !important;
        line-height: 130%;
        text-transform: none;
    }

    .text-size-smallest,
    .text-size-smallest * {
        font-size: 12px !important;
    }

    .text-size-smallester,
    .text-size-smallester * {
        font-size: 8px !important;
        line-height: 130%;
    }

    input::placeholder,
    textarea::placeholder {
        font-size: 12px;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"] {
        font-size: 12px;
        padding: 5px 8px;
    }


    #step2 input {
        font-size: 12px;
    }

    #step1 input,
    #step3 input {
        /* margin-top: 5px; */
        transform: scale(1.0);
    }

    #step1 select,
    #step2 select {
        font-size: 14px;
    }

    .next-btn {
        font-size: 16px;
        padding: 0px;
        margin: 2px 8px;
    }

    .prev {
        width: 20%;
        font-size: 16px;
        margin: 2px 8px;
    }

    .error-message {
        color: #ff1f1f;
        margin-top: 10px;
        font-size: 11px;
    }

    .dropdown_style {
        font-size: 13px;
        padding: 5px 8px;
    }

    .footer-top {
        padding: 10px;
        height: auto;
    }

    .radio-custom {
        width: 20px;
        height: 20px;
    }

    input[type="radio"]:checked+label .radio-custom::after {
        font-size: 12px;
    }

    .checkbox-container .checkmark {
        padding: 12px 50px;
        font-size: 15px;
    }

    .three .checkbox-container .checkmark{
        padding: 12px 20px;
        font-size: 15px;
    }

    .checkbox-container {
        margin: 20px 0px;
    }

    .signature-page--signatures-wrapper {
        width: 100%;
    }

    .signature-pad {
        height: 200px;
    }

    .input-button {
        width: 100px;
        font-size: 11px;
        padding: 10px 10px;
    }

    .input-field {
        width: 150px !important;
    }
}