


@font-face {
    font-family: Lato;
    src: url(../Lato/Lato-Regular.ttf);
}

body {
    margin: 0;
    padding: 0;
    font-family: Lato, sans-serif;
    background-color: #fff;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 100px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.menu-bar {
    display: none;
}

.menu ul {
    list-style-type: none;
    display: flex;
}

.menu li {
    margin: 0px 26px;
    font-size: 16px;
    font-weight: 700;
}

.container {
    display: flex;
    justify-content: center;
}

.reset-body {
    width: 80%;
    display: flex;
    margin-top: 3%;
    justify-content: space-between;
}

.img-section {
    width: 60%;
}

.form-section {
    width: 40%;
}


.img-outer {
    height: 500px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: end;
}

img {
    max-height: 100%;
    max-width: 100%;
}

.form-container {
    min-height: 400px;
    height: auto;
    padding: 20px 50px;
    border: 1px solid #6A6A6A5e;
    border-radius: 12px;
    box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.25);
}

.rform-container {
    min-height: 100px;
    height: 100px;
    padding: 20px 50px;
    border: 1px solid #6A6A6A5e;
    border-radius: 12px;
    box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.25);
}

.form-container h2 {
    font-size: 16px;
    text-align: center;
    color: #870016;
    margin: 35px 0px;
}

/* input */
.inputbox-border {
    position: relative;
    border: 2px solid #6A6A6A5e;
    border-radius: 5px;
    padding: 15px;
}

.form-box label {
    font-size: 14px;
    position: absolute;
    top: -8px;
    left: 12px;
    background: #fff;
    padding: 0px 5px;
}

.form-control {
    border: none;
    width: 100%;
    font-size: 16px;
    /* padding-bottom:5px ; */
    color: #6a6a6aad;
    font-weight: 500;
    font-family: Lato;
    outline: none;
}

.form-box.center-blk {
    text-align: center;
    margin: 40px 20px;
}

.btn-send {
    background-color: #870016;
    text-decoration: none;
    color: #fff;
    border: none;
    font-size: 14px;
    padding: 10px 50px;
    border-radius: 5px;
    font-family: Lato;
    cursor: pointer;
}

    .btn-send:disabled {
        opacity: 0.4;
        cursor: not-allowed;
    }

.align-center {
    margin: 30px 0px;
    display: flex;
    justify-content: center;
}

.form-box {
    margin: 35px 0px;
}

footer {
    min-width: 100%;
    /* margin: 30px 0px 0px 0px; */
    display: block;
    position: relative;
    background: rgba(106, 106, 106, 0.15);
    padding: 10px 0px;
    text-align: center;
    font-family: Lato;
    color: rgba(106, 106, 106, 0.80);
    font-size: 14px;
    top: 100%;
}

/* popup */
/* popup */
/* popup */
.popup-content {
    font-family: Lato !important;
    z-index: 555;
    opacity: 1;
    position: fixed;
    top: 50%;
    left: 50%;
    height: auto;
    padding: 10px 0px;
    transform: translate(-50%,-50%);
    width: 35%;
    visibility: hidden;
    background-color: #fff;
    border-radius: 14px;
}

.popup-overlay.active {
    /* background-color: #6A6A6A; */
    background: rgba(0, 0, 0, 0.80);
    position: fixed;
    top: 0px;
    width: 100%;
    height: 100%;
    opacity: .7;
    z-index: 2;
}

.popup-content.active {
    visibility: visible;
}

.popup-header {
    color: #84181F;
    font-family: Lato !important;
    font-weight: 600;
    text-align: center;
    border-bottom: 2px solid #bebebe;
    word-spacing: 2px;
    font-size: 16px;
    position: relative;
}

.close {
    height: 20px;
    width: 20px;
    position: absolute;
    right: 27px;
    top: 25px;
}

    .close img {
        max-height: 100%;
        max-width: 100%;
    }

.popup-header, .popup-box {
    padding: 20px 30px;
}

.continue {
    padding: 10px 20px;
    background-color: #832625;
    color: #fff;
    border: none;
    width: 80%;
    font-size: 14px;
    font-family: Lato !important;
    border-radius: 5px;
}

.continue-btn {
    margin: 40px 0px;
    display: flex;
    justify-content: center;
}

.username {
    display: flex;
    align-items: center;
}

.popup-box {
    padding: 10px 20px;
}

    .popup-box .form-box {
        margin: 0px;
        padding: 0px;
    }

.username-value {
    font-weight: 600;
    margin: 0px 6px !important;
}

.mpinbox {
    display: flex;
    justify-content: center;
}

    .mpinbox label {
        font-size: 12px;
    }

/* otp */
.otp-input {
    /*padding: 0.375rem 0.5rem !important;*/
    height: 22px !important;
    border: none;
    border: 1px solid #6A6A6a5e;
    border-radius: 5px;
    margin: 0px 6px;
    outline: none;
    text-align: center;
    font-size: 22px;
    width: 20px;
}

.error .otp-input {
    border: 1px solid red;
}

.error-note {
    font-style: italic;
    color: red;
    font-size: 12px;
    text-align: left;
    margin: 4px 0px;
    font-weight: 600;
    text-align: center;
}

.inputgrp {
    display: flex;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.otp-note {
    text-align: center;
}

.resend {
    color: #870016;
    margin: 20px 0px;
    text-align: center;
}
/* custom checkbox for adhar page */
.checkform-box {
    position: relative;
}
/* The container */
.check-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default checkbox */
    .check-container input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: -25px;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 5px;
}

/* On mouse-over, add a grey background color */
.check-container:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.check-container input:checked ~ .checkmark {
    background-color: #870016;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.check-container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.check-container .checkmark:after {
    left: 7px;
    top: 4px;
    width: 4px;
    height: 7px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.checkform-box label {
    position: unset;
}

.continue.disbled {
    background-color: #6A6A6A59;
    font-weight: 700;
}

.adhar-verification {
    min-height: 300px;
}

.radiobtn {
    min-height: 100px;
}

.btn-cancel {
    border: none;
    background-color: transparent;
    color: #870016;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}

.center-body {
    display: flex;
    justify-content: center;
}

.thanks-img {
    margin: 20px 0px;
}

.heading {
    color: #84181F;
    text-align: center;
    font-size: 26px;
}

.success-msg {
    font-size: 14px;
    color: #000000;
    font-weight: 600;
}

.error .popup-box {
    padding: 10px;
    color: #000000;
    font-weight: 500;
}

.mismatch .inputbox-border {
    border: 1px solid #FF0000;
}

.dot {
    height: 12px;
    width: 12px;
    background-color: #6A6A6A;
    border-radius: 50%;
    margin: 4px 3px;
    /* display: inline-block; */
}

.dotlist {
    display: flex;
    align-items: center;
    position: absolute;
    background-color: #fff;
}


.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
}

    .tooltip .tooltiptext {
        visibility: hidden;
        /*width: 120px;*/
        background-color: #fff;
        color: black;
        text-align: center;
        border-radius: 10px;
        padding: 5px 0;
        /* Position the tooltip */
        position: absolute;
        z-index: 1;
        min-width: 75px;
        max-width: 300px;
        width: 255px;
        font-size: 12px;
        margin: -57px 0px 0px -132px;
        border: 1px solid black;
    }

    .tooltip:hover .tooltiptext {
        visibility: visible;
    }
/*@media screen and (min-width: 300px) {
    .mobile-break {
        display: inline-block;
        line-break: auto;
        text-wrap: wrap;
    }
}*/
/* Sanket 15 dec 2023 */
.san-box-title {
    font-family: Lato;
    font-size: 11px;
    font-weight: 500;
    line-height: 10px;
    letter-spacing: -0.0032em;
    text-align: left;
}

.san-box {
    border-width: 3px;
    width: 100%;
    border-style: solid;
    font-size: 15px;
    border-radius: 8px;
    border: 0.5px solid #0891a747;
    text-align: center;
    overflow: hidden;
    vertical-align: middle;
    text-align: center;
    /* display: table; */
    background: #fffff;
    gap: 8px;
    padding: 10px;
}

.san-box-active {
    background: #C8D0D533;
}

.san-box .san-box-title {
    font-size: 12px;
    font-weight: 600;
    line-height: 18px;
    text-align: left;
}

.san-box .san-box-desc {
    font-family: Lato;
    font-size: 11px;
    font-weight: 500;
    line-height: 16px;
    letter-spacing: -0.0032em;
    text-align: left;
}

.san-box-left {
    float: left;
    width: 15%;
    margin: 0 auto;
    border-radius: 10px;
    top: 50%;
    text-align: center;
    margin-top: 10px;
}

.san-box-right {
    float: right;
    width: 20%;
    margin: 0;
    padding: 20px;
    border-radius: 10px;
    top: 50%;
}

.san-box-center {
    /*background-color: red;*/
    width: 65%;
    margin: 0 auto;
    border-radius: 10px;
    /*   height: 300px; */
    float: left;
    word-wrap: break-word;
    text-align: left;
}

.new-address-grid {
    float: left;
    width: 45%;
    min-width: 170px;
    margin-bottom: 3%;
    margin-left: 5%;
    padding-top: 10px;
}

    .new-address-grid .form-box {
        margin: 0px;
        height: 65px;
    }

    .new-address-grid form.flex {
        display: flex;
        gap: 0.3rem;
    }

    .new-address-grid .inputbox-border {
        /* background-color:#ffffff; */
    }

    .new-address-grid .form-box select {
        appearance: none;
        /*  safari  */
        -webkit-appearance: none;
        /*  other styles for aesthetics */
        width: 100%;
        /* font-size: 16px; */
        background-color: #fff;
        border: 0px solid #caced1;
        color: #000;
        cursor: default;
        padding: 10px 0px 10px 0px;
    }

.form-control {
    border: none;
    width: 100%;
    font-size: 16px;
    /* padding-bottom:5px ; */
    color: #6a6a6aad;
    font-weight: 500;
    font-family: Lato;
    outline: none;
    /* padding: 0.675em 6em 0.675em 1em; */
    padding: 10px 0px 10px 0px;
}
.form-section-address {
    margin-left: 14%;
    width: 69%
}
.footer-update {
    padding: 20px 0px;
    text-align: center;
    font-family: Lato;
    font-size: 14px;
    color: rgba(106, 106, 106, 0.80);
}
/* Sanket 15 dec 2023 */
/* Check Commit*/