@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Be Vietnam Pro", sans-serif !important;
}

.address-process-wrapper {
    height: 100vh;
}

/* Steps */

.stepper {
    display: none;
    justify-content: space-between;
    width: 100%;
    max-width: 800px;
}

.step {
    position: relative;
    flex: 1;
    text-align: center;
}

.circle {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 50%;
    background-color: #fff;
    line-height: 36px;
    font-size: 16px;
    color: #0F1728;
    display: inline-block;
    position: relative;
    z-index: 2;
}

.step::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -50%;
    width: 100%;
    height: 2px;
    background-color: #ddd;
    z-index: 1;
}

.step:first-child::before {
    content: none;
}

.step.active .circle {
    border-color: #0F1728;
    background-color: #BDFF1C;
}

.step.active::before {
    background-color: #007bff;
}

.step.first-step.active+.step::before {
    background-color: #000;
}

/* body */
.content-body {
    width: 100%;
    padding: 40px 20px;
    min-height: 82vh;
    background-color: #F1F1F1;
}

.content-body .title {
    margin-top: 40px;
    font-size: 32px;
    font-weight: 600;
    color: #0F1728;
}

.content-body .sub-title {
    font-size: 18px;
    color: #475466;
}

.content-body .address-box {
    margin-top: 10px;
    width: 600px;
    border-radius: 8px;
    padding: 15px;
    background-color: #FFFFFF;
    position: relative;
}

.address-box .address-text {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
}

.content-body .btn-save {
    padding: 15px;
    margin-top: 30px;
    width: 600px;
    border-radius: 8px;
    border: none;
    background-color: #854DFC;
    color: #F8F8F8;
    text-decoration: none;
    font-size: 18px;
    text-align: center;
}
.content-body .btn-otp {
    padding: 15px;
    margin-top: 10px;
    width: 600px;
    border-radius: 8px;
    background-color: #F8F8F8;
    border-color: #854DFC;
    color: #854DFC;
    text-decoration: none;
    font-size: 18px;
    text-align: center;
}
.content-body .btn-otp:hover{
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.location-options {
    width: 100%;
    height: auto;
    position: absolute;
    left: 0;
    top: 50px;
    border-radius: 8px;
    margin-top: 10px;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: none;
}

.location-options .options-text {
    width: 100%;
    height: 100%;
    padding: 5px 10px;
    border-bottom: .1rem solid #f3f3f3;
    color: #666;
}

.location-options .options-text:first-child {
    border-radius: 8px 8px 0 0;
}

.location-options .options-text:last-child {
    border-radius: 0 0 8px 8px;
}

.location-options .options-text:hover {
    background-color: #f0f0f0;
}

/* map */
.content-body .map {
    width: 600px;
    height: 200px;
    border-radius: 8px;
    background-color: #e2e2e2;
}

.map .google-map {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}
.custom .option-box.left {
    width: 290px;
    margin-right: 10px;
}
.custom .option-box.right {
    width: 300px;
   
}
/* radio options */
.option-box {
    width: 600px;
    height: 50px;
    background-color: #FFFFFF;
    border-radius: 8px;
    margin: 10px 0 0 0;
}

.option-box .radio-btn {
    margin-left: 20px;
    font-size: 18px;
}

.option-box .option {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    margin-left: 20px;
    color: #0F1728;
    font-weight: 500;
    cursor: pointer;
}
input[type="checkbox"],
input[type="radio"] {
    accent-color: #854DFC !important;
}



.home-details-input {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    border: none;
    padding-left: 20px;
}

.home-details-input:focus {
    outline: 2px solid #854DFC;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.validation-msg {
    width: 100%;
    font-weight: 500;
    margin: 10px 0 0 10px;
    color: red;
    display: none;
}


.submit-policy {
    width: 600px;
    margin-top: 20px;
}

.submit-policy .policy-check {
    font-size: 12px;
    margin: -2px 0 0px 15px;
}

/* thank you page */
.thank-container {
    width: 100%;
    min-height: 90vh;
}

.thank-container .upper-container {
    padding: 20px 0;
    min-height: 50vh;
    background-color: #854DFC;
    background-image: url("/assets/thank-you.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.upper-container .thank-heading {
    color: #BDFF1C;
    font-size: 109px;
    font-weight: 700;
}

.upper-container .thank-sub-heading {
    color: #F8F8F8;
    font-size: 64px;
    line-height: 60px;
    text-transform: uppercase;
}

.upper-container .thank-description {
    color: #F8F8F8;
    font-size: 14px;
}

.thank-container .lower-container {
    padding: 20px 0 0 0;
    min-height: 40vh;
    background-color: #161616;
}

.lower-offer-box {
    display: flex;
}

.lower-container .offer-ready-box {
    min-height: 40vh;
    width: 50%;
}

.offer-ready-box .offer-heading {
    font-size: 70px;
    line-height: 70px;
    color: #F8F8F8;
}

.offer-ready-box .offer-description {
    font-size: 14px;
    margin-top: 10px;
    color: #F8F8F8;
    opacity: 60%;
}

.lower-container .offer-image-box {
    width: 50%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-left: 30px;
}

.offer-image-box .thumb-img {
    width: 70%;
}

/* thank you page ends */
/* terms  */
.terms-container {
    width: 100%;
    min-height: 100vh;
    padding-bottom: 50px;
}

.terms-container .terms-banner {
    width: 100%;
    min-height: 30vh;
    background-image: url("/assets/terms&privacy.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.terms-banner .term-title {
    font-size: 65px;
    font-weight: 600;
    color: #0F1728;
}

.terms-container .terms-content {
    padding-top: 60px;
}

.terms-content .term-heading {
    font-size: 32px;
    font-weight: 600;
    color: #0F1728;
}

.terms-content .term-sub-heading {
    font-size: 18px;
    font-weight: 600;
    color: #0F1728;
}

.terms-content .term-description {
    color: #475466;
}

.term-link {
    text-decoration: none;
}

/* terms ends */
/* partners */
.partners-box {
    margin-top: 40px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.partners-box .left-box {
    width: 40%;
}

.partners-box .right-box {
    width: 40%;
}

/* partners ends */

/* Responsive 1000px */
@media screen and (max-width : 1024px) {
    .thank-container .upper-container {
        min-height: 65vh;
    }

    .thank-container .lower-container {
        min-height: 25vh;
    }

    .lower-container .offer-ready-box {
        min-height: 25vh;
        width: 50%;
    }

    .upper-container .thank-heading {
        font-size: 80px;
    }

    .upper-container .thank-sub-heading {
        font-size: 50px;
        line-height: 50px;
    }

    .offer-ready-box .offer-heading {
        font-size: 45px;
        line-height: 50px;
    }

    .offer-ready-box .offer-description {
        font-size: 14px;
        margin-top: 10px;
        color: #F8F8F8;
        opacity: 60%;
    }

    .offer-image-box .thumb-img {
        width: 100%;
        height: 70%;
    }

    .partners-box .left-box {
        width: 50%;
    }

    .partners-box .right-box {
        width: 50%;
    }
}

/* Responsive 768px */
@media screen and (max-width : 767px) {
    .content-body .title {
        font-size: 22px !important;
    }
    .d-flex.custom {
        display: block !important;
    }
    .custom .option-box.left {
    width: 300px;
    margin-right: 0;
}

    .content-body .sub-title {
        font-size: 14px;
    }

    .content-body .address-box {
        width: 300px;
    }

    .content-body .btn-save {
        width: 300px;
        margin-top: 20px;
    }
    .content-body .btn-otp {
        width: 300px;
    }

    .location-options {
        font-size: 12px;
    }

    /* map */
    .content-body .map {
        width: 300px;
    }

    .circle {
        width: 30px;
        height: 30px;
        line-height: 28px;
        font-size: 12px;
    }

    .option-box {
        width: 300px;
    }

    .submit-policy {
        width: 300px;
    }

    /* thank you page */
    .upper-container .thank-heading {
        font-size: 50px;
    }

    .upper-container .thank-sub-heading {
        font-size: 30px;
        line-height: 30px;
    }

    .upper-container .thank-description {
        font-size: 12px;
    }

    .offer-ready-box .offer-heading {
        font-size: 25px;
        line-height: 30px;
    }

    .offer-ready-box .offer-description {
        font-size: 12px;
        margin-top: 0px;
    }

    /* terms & privacy */
    .terms-banner .term-title {
        font-size: 40px;
        font-weight: 600;
        color: #0F1728;
    }

    .terms-container .terms-content {
        padding-top: 40px;
    }

    .terms-content .term-heading {
        font-size: 22px;
        font-weight: 600;
        color: #0F1728;
    }

    .terms-content .term-sub-heading {
        font-size: 18px;
        font-weight: 600;
        color: #0F1728;
    }

    .terms-content .term-description {
        font-size: 14px;
        color: #475466;
    }
    .partners-box {
        flex-direction: column;
    }
    
    .partners-box .left-box {
        width: 100%;
    }
    
    .partners-box .right-box {
        width: 100%;
    }
}

