/* Minification failed. Returning unminified contents.
(6,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(29,30): run-time error CSS1062: Expected semicolon or closing curly-brace, found '/'
(405,33): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(559,17): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(565,21): run-time error CSS1039: Token not allowed after unary operator: '-primary'
 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --primary: #2493EA;
}

body {
    color: #212529;
}

/* Header code */

/* top nav */

footer {
    margin-top: 4rem;
}


#busyContainer {
    z-index: 99999999;
    position: absolute;
    top: 30%; /* Halfway down the viewport */
    left: 0; /* Aligned to the left */
    transform: translateY(-50%);
    width: 100%;
    /*background: #f0f0f0;*/*/
}


#top-nav {
    background-color: #2393E9;
}

.topNav-left {
    display: flex;
    padding: 10px 6.25rem;
    align-items: center;
    font-size: 13px;
}

.mainNav-primary > a img {
    width: 10rem;
}

.topNav-list {
    list-style: none;
    margin-bottom: 0;
}

.topNav-list-items {
    float: left;
}

    .topNav-list-items a {
        color: white;
        text-decoration: none;
        margin: 20px;
        transition: 0.5s;
    }

#topNav-item-2 {
    border: 1px solid white;
    border-top: 0;
    border-bottom: 0;
}

.topNav-list-items a:hover {
    color: #FF9900;
}

.orgSelect {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #042039;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 13px;
}

    .orgSelect p {
        color: #FF9900;
        margin-right: 10px;
        margin-bottom: 0;
    }

    .orgSelect select {
        color: white;
        background-color: #042039;
        border: none;
        outline: none;
        cursor: pointer;
    }

/* top nav */

/* main nav primary */

.mainNav-primary {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 1rem 6.25rem;
}

.chooseLocation {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background-color: white;
    border: 1.13px solid #2393E9;
    border-radius: 5.25px;
    cursor: pointer;
    transition: 0.5s;
    margin-right: 15px;
}

.navMid,
.searchArea,
.searchBox {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.searchArea {
    background-color: white;
    border: 1.13px solid #2393E9;
    border-radius: 5.25px;
}

.chooseLocation:hover {
    background-color: whitesmoke;
}

.chooseLocation img {
    margin-right: 5px;
}

.searchArea select {
    border: none;
    font-weight: 500;
    font-size: 13.5px;
    outline: none;
    cursor: pointer;
    padding: 11px;
}

    .searchBox input {
        border: none;
        outline: none;
        padding: 6px 10px;
        width: 17rem;
    }

    .searchBox button {
        background-color: transparent;
        outline: none;
        border: none;
        cursor: pointer;
    }

.navRight {
    display: flex;
    justify-content: space-around;
    width: 15rem;
}

    .navRight button {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px 15px;
        border: 1.13px solid #283F50;
        border-radius: 5.25px;
        background-color: white;
        cursor: pointer;
    }

    .navRight > a {
        text-decoration: none;
        color: inherit;
    }

    .navRight p {
        font-weight: bold;
        margin-left: 10px;
        margin-bottom: 0;
    }

    .navRight button:hover {
        background-color: whitesmoke;
    }

.notificationCount {
    height: 14px;
    width: 14px;
    background-color: #2393E9;
    color: white;
    border-radius: 100%;
    font-size: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    margin-top: -10px;
    margin-left: 10px;
    border: 1px solid white;
}

/* main nav primary */

/* main nav secondary */

.mainNav-secondary {
    display: flex;
    align-items: center;
    border-top: 1px solid rgb(214, 214, 214);
    padding: 1rem;
}

    .mainNav-secondary a {
        display: flex;
        text-decoration: none;
        font-weight: 700;
        color: black;
        margin-right: 25px;
        font-size: 13px;
    }

        .mainNav-secondary a img {
            margin-right: 8px;
        }

#secondaryNav-link-4 {
    color: #778386;
}

#navRight-4 {
    display: none;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    border: 1.13px solid #283F50;
    border-radius: 5.25px;
    background-color: #042039;
    cursor: pointer;
}

#menuimg {
    width: 1rem;
    margin-right: 10px;
    margin-top: 10px;
}

#logo {
    display: flex;
}






/* main nav secondary */

/* Header code */

/* Footer code */

/* upper footer */

#upperFooter {
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    background-color: #2393E9;
    padding: 2rem 2rem 3rem 2rem;
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.315);
}

    #upperFooter ul {
        list-style: none;
    }

        #upperFooter ul li a {
            text-decoration: none;
            color: white;
        }

    #upperFooter li {
        margin-bottom: 5px;
        font-size: 13px;
    }

    #upperFooter ul p {
        font-weight: 500;
        margin-bottom: 10px;
    }

/* upper footer */

/* lower footer */

#lowerFooter {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2393E9;
    padding: .8rem;
    font-size: 13px;
    color: white;
}

    #lowerFooter ul {
        list-style: none;
    }

    #lowerFooter li {
        float: left;
        border-left: 1px solid white;
    }

        #lowerFooter li a {
            text-decoration: none;
            margin: 0px 5px;
            color: white;
            padding: 0px 8px;
        }

    #lowerFooter > p {
        margin-right: 10px;
    }

/* lower footer */

/* Footer code */

/* Ui elements */

#logo > button {
    background: transparent;
    outline: none;
    border: none;
    display: none;
}


.mainNav-secondary a {
    font-weight: 500;
}


.btn-primary {
    padding: 0.625rem 2.5rem;
    color: white;
    background-color: #2393E9;
    font-weight: 700;
    border: none;
    border-radius: 0.246rem;
    outline: none;
    cursor: pointer;
    transition: 0.5s;
}

    .btn-primary:hover {
        background-color: #1c81ce;
    }

.btn-secondary {
    padding: 0.625rem 2.5rem;
    color: #2493EA;
    background-color: #E9F5FF;
    font-weight: 700;
    border: none;
    border-radius: 0.246rem;
    outline: none;
    cursor: pointer;
    transition: 0.5s;
    border: 1px solid #2493EA;
}

    .btn-secondary:hover {
        background-color: #2493EA;
        color: white;
    }

.normal-text {
    font-weight: 500;
    font-size: 0.81rem;
    line-height: 1.175rem;
}

.input-label {
    font-size: 0.954rem;
    font-weight: 500;
    margin-top: 1.173rem;
}

.input-outlined {
    border: 0.071rem solid var(--primary);
    padding: 0.7rem;
    outline-color: #2493EA;
    border-radius: 0.334rem;
    width: 100%;
    margin: 0.698rem 0;
}

.eye-input {
    background: #fff url("/assets/images/eye.svg") center right 21px no-repeat;
    background-blend-mode: hard-light;
    font-size: 13px;
    padding-right: 3rem;
}

.eye-input-blue {
    background: #fff url("/assets/images/blueeye.svg") center right 21px no-repeat;
    font-size: 13px;
    padding-right: 3rem;
}

.password {
    border: 1px solid red;
}

.crossbtn {
    padding: 0.8rem 1rem;
    background-color: #2493EA;
    border-radius: 100%;
    display: inline;
    position: absolute;
    top: -10px;
    right: -10px;
    cursor: pointer;
}

.warning {
    color: red;
    display: flex;
    font-size: 11px;
    column-gap: 10px;
    margin-top: -10px;
    margin-bottom: 15px;
    font-weight: 500;
}

.green-w p {
    color: #21A56D;
}

.grey-w {
    color: #778386;
}

.form-text-dark {
    margin-top: 1.046rem;
    width: 100%;
    text-align: center;
}


.forgot-pass {
    font-size: 0.623rem;
    text-align: right;
}

.subinput {
    display: flex;
}

    .subinput > div {
        display: flex;
        width: 13rem;
        align-items: center;
        justify-content: center;
    }

.form-text-dark {
    margin: 0;
}

.input-red {
    padding: 0.7rem;
    outline-color: #2493EA;
    border-radius: 0.334rem;
    width: 100%;
    margin: 0.698rem 0;
    border: 1px solid red;
}

.input-field {
    border: 0.071rem solid #E4E4E4;
    padding: 0.7rem;
    outline-color: #2493EA;
    border-radius: 0.334rem;
    width: 100%;
    margin: 0.698rem 0;
}

@media only screen and (max-width: 1024px) {
    .input-field {
        font-size: 16px;
        font-weight: 500;
    }
}


html {
    height: 100%;
}

.form-header > a > img {
    width: 8.813rem;
}

.primary-heading {
    font-size: 2.238rem;
    line-height: 2.623rem;
    font-weight: 500;
    margin: 0.667rem 0;
}

.secondary-heading {
    font-size: 1.25rem;
    line-height: 1.465rem;
    font-weight: 500;
    margin: 0.664rem 0;
}

.flex-column-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.flex-column-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.flex-row-left {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 6px;
}

.form-link {
    font-size: 0.879rem;
    font-weight: 500;
    line-height: 1.535rem;
    color: var(--primary);
    text-decoration: none;
    cursor: pointer;
}

    .form-link:hover {
        color: var(--primary);
        transition: 0.5s;
    }

.form-container {
    padding: 1.478rem;
    margin: 1.478rem;
    width: 22.564rem;
    border: 0.072rem solid #2493EA;
    border-radius: 0.334rem;
    background-color: white;
}

.form-area {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    /* height: 100vh; */
}

.normal-text {
    font-size: 0.81rem;
    line-height: 1.175rem;
    font-weight: 500;
    opacity: 60%;
}



#form {
    margin: 1.159rem 0 0 0;
}


    #form > .form-link button {
        width: auto;
    }

    #form > .form-link {
        display: flex;
        justify-content: center;
        margin-top: 1rem;
    }

.form-area > .secondary-heading {
    margin-top: auto;
    margin-bottom: 2.5rem;
}


.form-text-dark {
    font-size: 0.81rem;
    line-height: 1.175rem;
    font-weight: 500;
    opacity: 100%;
    margin: 0.5rem 0;
}

.form-header > img {
    margin-bottom: 0rem;
}

#form-footer .form-link {
    color: white;
}

/* Ui elements */

/* Merchant Partner Business CSS */

.merpart-hero {
    width: 100%;
    background-image: url("/assets/images/merpart-hero-mobile.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1rem;
}

.merpart-grid {
    display: grid;
    grid-template-rows: 331px 252px;
    grid-template-columns: 610px 293px 293px;
    grid-gap: 40px;
}


.merpart-grid-1 {
    grid-row: 1/3;
    padding: 30px 26px 6px 26px;
    background-color: white;
    border-radius: 7.52px;
}

    .merpart-grid-1 p:first-child {
        font-size: 30px;
        font-weight: 700;
        line-height: 35px;
        letter-spacing: 0em;
        text-align: left;
        color: #2493EA;
    }

    .merpart-grid-1 p:nth-child(2) {
        font-size: 20px;
        font-weight: 500;
        line-height: 23px;
        letter-spacing: 0em;
        text-align: left;
        margin-top: 16px;
        margin-bottom: 22px;
    }

.grid-head {
    font-size: 22px;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: 0em;
    text-align: left;
    color: white;
    text-shadow: 0px 2.9874px 2.9874px rgba(0, 0, 0, 0.25);
    margin-bottom: 20px;
}

.merpart-grid-2 {
    grid-column: 2/4;
    grid-row: 1/2;
    border-radius: 7px;
}

    .merpart-grid-2 p {
        display: none;
    }

.merpart-botttom {
    padding: 10px;
}

.merpart-grid > div > img {
    width: 100%;
}

.merpart-grid-3 {
    grid-column: 2/3;
}

.merpart-grid-4 {
    grid-column: 3/4;
    grid-row: 2/3;
}

.merpart-bottom-right p:first-child {
    font-size: 30px;
    font-weight: 500;
    line-height: 36px;
    letter-spacing: 0em;
    text-align: left;
}

.merpart-bottom-right p:nth-child(2) {
    font-size: 17px;
    font-weight: 500;
    line-height: 23px;
    letter-spacing: -0.01em;
    text-align: left;
}

/* Merchant Partner Business CSS */

/* media queries */

@media only screen and (max-width: 2560px) {
    .mainNav-primary {
        justify-content: space-between;
    }

    .mainNav-primary,
    .topNav-left,
    .mainNav-secondary {
        padding: 1rem 7.25rem;
    }
}

@media only screen and (max-width: 1440px) {

    .mainNav-primary,
    .topNav-left,
    .mainNav-secondary {
        padding: 1rem 7.25rem;
    }
}

@media only screen and (max-width: 1024px) {
    #navRight-4 {
        display: unset;
    }

    .navRight {
        display: flex;
        justify-content: space-around;
        width: max-content;
        column-gap: 10px;
    }

    .searchBox input {
        border: none;
        outline: none;
        padding: 6px 10px;
        width: 16rem;
    }

    .mainNav-primary,
    .topNav-left,
    .mainNav-secondary {
        padding: 1rem;
    }


    .chooseLocation {
        display: none;
    }

    .navRight-4 {
        display: unset;
    }

    .topNav-left > div {
        display: flex;
        column-gap: 10px;
    }

    .topNav-left {
        width: 100%;
        justify-content: space-between;
    }

    .blackOverlay {
        display: unset;
    }
}


#secondaryNav-link-4 {
    pointer-events: none;
}

@media only screen and (max-width: 890px) {
    .footerLogo {
        display: none;
    }

    .mainNav-secondary {
        margin-top: 3rem;
    }

    .searchArea {
        position: absolute;
        top: 10rem;
        left: 1rem;
    }

    .chooseLocation {
        margin-right: -10rem;
    }

    .searchBox input {
        width: 100%;
    }

    .searchArea {
        width: 95%;
    }

    .searchBox {
        flex: 2;
    }
}

@media only screen and (max-width: 768px) {
    #logo > button {
        display: unset;
    }
}

@media only screen and (max-width: 425px) {
    .topNav-list-items a {
        margin: 7px;
        font-size: 15px;
    }

    .modal-action-btn-group{
        flex-direction: column;
        row-gap: 1rem;
    }

    .orgSelect {
        font-size: 10px;
        padding: 7px 3px;
    }

    .topNav-left {
        justify-content: space-between;
    }

    .topNav-list-items {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #lowerFooter {
        flex-direction: column;
        row-gap: 10px;
    }

        #lowerFooter ul li:nth-child(1) {
            border-left: none;
        }

    .mainNav-primary a img:nth-child(2) {
        width: 6rem;
    }

    .navRight button {
        padding: 6px 7px;
    }

    #secondaryNav-link-4 {
        margin-left: 1.3rem;
    }

    #navRight-4 {
        display: unset;
        border: 0.5px solid #2393e9;
    }

    .searchBox input {
        width: 100%;
    }

    .chooseLocation {
        display: none;
    }

    #topNav-item-2,
    #topNav-item-3 {
        display: none;
    }

    #upperFooter {
        flex-wrap: wrap;
        row-gap: 40px;
    }

    .topNav-left {
        padding: 8px;
    }

    .mainNav-secondary a {
        margin-right: 16px;
    }

    .chooseLocation {
        position: absolute;
        top: 6px;
        left: 16rem;
        padding: 5px 10px;
    }

    #upperFooter {
        flex-wrap: wrap;
        row-gap: 40px;
        flex-direction: column;
    }

    .footerLogo {
        display: unset;
    }

    .searchArea {
        top: 7.5rem;
        width: 94%;
    }

    .mainNav-secondary {
        margin-top: 3rem;
        flex-wrap: wrap;
        column-gap: 1rem;
        row-gap: 1rem;
    }

    .footerLogo {
        width: 100%;
    }

    #logo {
        display: flex;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .orgSelect {
        padding: 10px;
    }

        .orgSelect select {
            font-size: 10px;
        }

    .topNav-left {
        justify-content: space-between;
        padding: 1rem 0.25rem;
    }
}

@media (max-width: 430px) {
    .mainNav-secondary a {
        font-weight: 500;
        font-size: 14px;
    }
}

@media only screen and (max-width: 410px) {
    .searchArea {
        top: 7.5rem;
    }
}

@media only screen and (max-width: 390px) {
    .orgSelect {
        padding: 2px 5px;
    }

        .orgSelect p {
            margin-right: 0;
        }

    .mainNav-secondary {
        column-gap: 1rem;
    }
}

@media only screen and (max-width: 377px) {
    .searchArea {
        top: 9.5rem;
    }
}


@media only screen and (max-width: 375px) {
    .orgSelect {
        padding: 7px 9px;
    }

    .mainNav-secondary {
        margin-top: 4rem;
        flex-wrap: wrap;
    }

    .searchBox input {
        width: 100%;
    }

    .chooseLocation img {
        display: none;
    }

    .chooseLocation {
        padding: 6px;
        font-size: 13px;
    }

    .mainNav-secondary {
        column-gap: unset;
    }

    .navRight img {
        width: 13px;
    }

    /* .navRight {
        width: 12rem;
    } */

    .navRight button {
        padding: 8px 10px;
    }

    #navRight-1 p {
        font-size: 10px;
    }

    .mainNav-secondary a {
        font-weight: 500;
        /* font-size: 10px; */
    }

    .searchArea {
        top: 8rem;
    }

    .searchArea {
        margin-right: 12px;
        margin-top: 10px;
    }
}

@media only screen and (max-width: 360px) {
    .navRight button {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        border: none;
        border-radius: 5.25px;
        background-color: white;
        cursor: pointer;
        outline: none;
        border: none;
    }

    .navRight {
        display: flex;
        justify-content: space-around;
        width: 10rem;
    }

    .searchBox input {
        width: 100%;
    }

    .mainNav-secondary {
        margin-top: 3rem;
        flex-wrap: wrap;
        margin-top: 62px;
        row-gap: 11px;
    }

    #upperFooter ul li a {
        text-decoration: none;
        color: white;
        font-size: 10px;
    }

    #upperFooter {
        justify-content: flex-start;
        column-gap: 20px;
    }

    #lowerFooter {
        flex-direction: column;
    }

    .chooseLocation {
        position: absolute;
        top: 10px;
        left: 15rem;
    }
}

@media only screen and (max-width: 320px) {
    #navRight-4 {
        display: unset;
        border: none;
    }

    .topNav-left {
        padding: 3px;
    }

    .chooseLocation {
        padding: 4px;
        font-size: 10px;
        left: 14.5rem;
        top: 5px;
    }

    .orgSelect {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background-color: #042039;
        padding: 5px 9px;
    }

    .searchArea select {
        padding: 0px;
    }

    .searchBox input {
        width: 9rem;
    }

    .mainNav-secondary a {
        margin-right: 13px;
        font-size: 12px;
    }

        .mainNav-secondary a img {
            margin-right: 3px;
        }

    #upperFooter {
        justify-content: flex-start;
        column-gap: 15px;
    }

    #upperFooter {
        display: flex;
        align-items: flex-start;
        justify-content: space-around;
        background-color: #2393E9;
        padding: 1rem;
    }

    .searchArea {
        position: absolute;
        top: 8rem;
    }

    .mainNav-secondary {
        margin-top: 3rem;
        flex-wrap: wrap;
        margin-top: 39px;
        row-gap: 11px;
    }

    .mainNav-primary a img:nth-child(2) {
        width: 4rem;
    }

    .navRight {
        width: 10rem;
    }

        .navRight button {
            padding: 4px 3px;
        }

    .mainNav-secondary a {
        margin-right: 10px;
        font-size: 10px;
    }

    #secondaryNav-link-4 {
        margin-left: 15px;
    }

    .navRight p {
        font-weight: bold;
        margin-left: 3px;
    }

    .searchArea select {
        padding: 0px;
        font-size: 11px;
        background: transparent;
    }

    .searchArea {
        padding-left: 10px;
    }

    .mainNav-secondary {
        padding: 10px;
    }

        .mainNav-secondary a {
            font-weight: 500;
            font-size: 14px;
        }
}

@media only screen and (max-width: 270px) {
    .orgSelect select {
        font-size: 7px;
    }

    .mainNav-secondary {
        padding: 4px;
    }

    .searchArea {
        margin-right: 10px;
        font-size: 10px;
    }

    .searchBox input {
        width: 100%;
        font-size: 10px;
    }
}

@media only screen and (max-width: 243px) {
    .searchArea {
        margin-right: 10px;
        font-size: 10px;
    }

        .searchArea select {
            padding: 0px;
            font-size: 10px;
        }

    .mainNav-secondary img {
        width: 10px;
    }
}

#signedIn {
    display: flex;
}

/* media queries */

/* form flows media queries */

@media only screen and (max-width: 768px) {
    #form-footer {
        flex-direction: column;
    }

    #signedIn {
        display: none;
    }
}

@media only screen and (max-width: 425px) {
    .form-container {
        position: unset;
        transform: none;
        width: 100%;
    }

    .form-area {
        padding: 1rem;
    }

    #form42 {
        width: 100%;
    }
}

#submit-popup .form-text-dark {
    margin: 0;
}

/* form flows media queries */

/* thumbnail slider js */

.thumbnailSlider {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
    margin-top: 1.3rem;
}

.slider-thumbnails {
    display: flex;
    column-gap: 1rem;
}

    .slider-thumbnails > img {
        cursor: pointer;
        transition: 0.2s;
        height: 7rem;
        width: 8.5rem;
        border-radius: 7px;
    }

        .slider-thumbnails > img:hover {
            outline: 4px solid #2393E9;
            border-radius: 7px;
            transform: scale(105%);
        }

@media (max-width: 430px) {
    .slider-thumbnails {
        column-gap: 10px;
    }

    .slider-thumbnails > img {
        width: 23% !important;
        height: 4.5rem;
    }

    #busyContainer {
        position: absolute;
        top: 30%; 
        left: 0; 
        transform: translateY(-50%);
        width: 100%;
       
    }
}

@media (max-width: 320px) {
    .slider-thumbnails {
        column-gap: 7px;
    }

        .slider-thumbnails > img {
            height: 4.3rem !important;
        }
}

/* thumbnail slider js */

/* addditional ss for sign in popup */

#signedIn {
    display: flex;
    width: max-content;
    column-gap: 12px;
}

    #signedIn > div img {
        width: 15px;
    }

    #signedIn > div p {
        font-size: 13.6px;
        font-weight: 500;
        margin-left: 0;
    }

    #signedIn > div .form-link {
        color: #2393e9;
        font-size: 13.6px;
        font-weight: 500;
        display: flex;
        width: max-content;
        margin-right: 6px;
        border-bottom: 1px solid #2393E9;
    }

    #signedIn div div {
        display: flex;
    }

    #signedIn > div {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

/* addditional ss for sign in popup */

@media (max-width: 590px) {
    #signedIn {
        display: none !important;
    }
}


.k-notification {
    position: absolute;
    z-index: 9999999 !important;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
}

.form-area {
    height: 100vh;
}

aside{
    height: 100%;
    min-height: 100vh !important;
}

.hide-section {
    display: none!important;
}
body {
    background-color: #F5F4F9;
    height: 100%;
}

html {
    height: 100%;
}

.form-container {
    padding: 1.478rem;
    margin: 3.478rem 1.478rem 12rem 1.478rem;
    width: 22.564rem;
    max-width: 80%;
    border: 0.072rem solid #2493EA;
    border-radius: 0.334rem;
    background-color: white;
}

.form-area {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    /* height: 100vh; */
}


#form {
    margin: 2.373rem 0 0 0;
    width: 100%;
}

    #form .form-link,
    #form .form-link button {
        /*width: 100%;*/
    }


#form-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: #104881;
    padding: 1rem;
    column-gap: 4rem;
    margin-top: 8rem;
}



/* Media Queries for Responsiveness */

@media (max-width: 768px) {
    #form-footer {
        flex-direction: column;
    }
}

@media (max-width: 425px) {
    .form-container {
        position: unset;
        transform: none;
       
    }

    .form-area {
        padding: 1rem;
    }
}

.form-area {
    padding: 1.375rem 0 0 0;
    height: 100vh;
}


/* Media Queries for Responsiveness */

  /*body {
    background-color: #F5F4F9;
  }*/

  /*.nav-right .btn-primary{
    margin-top: 0;
  }
  .form-header>img {
    width: 8.813rem;
    margin-bottom: 0;
  }*/

  /*.form-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background-color: white
    }*/
#blackOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Black color with 70% opacity */
    z-index: 10; /* Higher z-index to make sure it's above other elements */
    display: none; /* Initially hidden */
}

  #form-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: #104881;
    padding: 1rem;
    column-gap: 4rem;
    margin-top: 0;
  }

  .form-footer::after{
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: black;
    opacity: 70%;
  }
  .form-footer-2::after{
    content: "";
    position: unset;
    top: unset;
    left: unset;
    height: unset;
    width: unset;
    background-color: black;
    opacity: 100%;
  }
  /* #form-footer .form-link {
    color: white;
  } */


  /*.form-header {
    padding: 1rem 5.688rem;
  }

  .nav-right .secondary-heading {
    display: inline;
    font-size: 1rem;
    margin-right: .5rem;
  }

  .nav-right .form-link button {
    border-radius: 20px;
  }
*/
  /*.form-container-transparent {
    background: transparent;
    border: none;
  }*/


  /* Media Queries for Responsiveness */

  @media (max-width: 768px) {
    #form-footer {
      flex-direction: column;
    }

    .form-header {
      /* padding: 1rem unset; */
      flex-direction: column;
    }
    .popup-bottom {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      margin-top: 3.494rem;
      flex-direction: column-reverse;
    }
  }

#submit-popup {
    padding: 1.5rem;
    border-radius: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    display: none;
    z-index: 9999;
    /*width:30rem;*/
}


#submit-popup span{
display: flex;
align-items: center;
justify-content: flex-start;
margin-top: 0.669rem;
}

#submit-popup .form-text-dark {
    text-align: left;
    margin-left: 10px;
    overflow-wrap: anywhere;
}

.submit-flex{
    display: flex;
    align-items: flex-start;
    /*justify-content: space-between;*/
    column-gap: 1.019rem;
    margin-top: 1.859rem;
  }

  #submit-popup .rr{
    padding: 1.5rem;
    border-radius: 100%;
    border: 1px solid #2493EA;
    color: #2493EA;
    font-size: 1.092rem;
    text-transform: uppercase;
    font-weight: 500;
  }

  #submit-popup .secondary-heading{
    margin-bottom: 0;
  }

  .topspan{
    margin-top: .8rem;
  }

  .popup-bottom{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 3.494rem;
    column-gap: 0.913rem;
  }

  .popup-bottom button{
    margin-top: 0;
    margin-left: 12px;
  }

  @media (max-width: 425px) {
    .form-container {
      position: unset;
      transform: none;
      /*width: 100%;*/
    }

    .form-area {
      padding: 1rem;
    }

    .nav-right {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      margin-top: 2rem;
    }

    .nav-right button {
      margin-top: 0;
    }
    .form-header {
      padding: 2rem 3.688rem;
  }

  }
 .checky{
      width: 1.675rem;
      height: 1.675rem;
  }

  @media (max-width: 375px){
    .form-header {
        padding: 2rem 1.688rem;
    }
  }
  @media (max-width: 320px){
    #submit-popup{
        padding: 1.5rem;
    }
    .popup-bottom button {
        margin-top: 0;
        margin-left: 4px;
    }
    .form-header {
        padding: 2rem 0.688rem;
    }  
  }
  
  #submit-popup .btn-primary{
      border-radius: 10px;
  }
  
  .container-left, .right-header{
      border: 1.31px solid #2493EA;
      border-top-left-radius: 5.65px;
      border-top-right-radius: 5.65px;
  }
  
  .container-right{
      border: 1.21px solid #E4E4E4;
  }
 

.container-right .form-text-dark{
    text-align: left;
}

  /* Media Queries for Responsiveness */
