﻿@font-face {
    font-family: "Circular Std Book";
    src: url("css/font/CircularStd-Book/Circular Std Book.eot"); /* IE9*/
    src: url("css/font/CircularStd-Book/Circular Std Book.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */
    url("css/font/CircularStd-Book/Circular Std Book.woff2") format("woff2"), /* chrome、firefox */
    url("css/font/CircularStd-Book/Circular Std Book.woff") format("woff"), /* chrome、firefox */
    url("css/font/CircularStd-Book/Circular Std Book.ttf") format("truetype"), /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/
    url("css/font/CircularStd-Book/Circular Std Book.svg#Circular Std Book") format("svg"); /* iOS 4.1- */
}

@font-face {
    font-family: "CircularStd-Bold";
    src: url("CircularStd-Bold.eot"); /* IE9*/
    src: url("css/font/CircularStd-Bold/CircularStd-Bold.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */
    url("css/font/CircularStd-Bold/CircularStd-Bold.woff2") format("woff2"), /* chrome、firefox */
    url("css/font/CircularStd-Bold/CircularStd-Bold.woff") format("woff"), /* chrome、firefox */
    url("css/font/CircularStd-Bold/CircularStd-Bold.ttf") format("truetype"), /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/
    url("css/font/CircularStd-Bold/CircularStd-Bold.svg#CircularStd-Bold") format("svg"); /* iOS 4.1- */
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    outline: 0;
    background-color: rgba(0,0,0,0.4);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.modal-dialog {
    position: relative;
    width: 100%;
    margin: 0.5rem;
    pointer-events: none;
}

.modal.fade .modal-dialog {
    transition: -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
    -webkit-transform: translate(0, -25%);
    transform: translate(0, -25%);
}

.modal.show .modal-dialog {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.modal-dialog-centered {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: calc(100% - (0.5rem * 2));
}

.modal-content {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
    outline: 0;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000;
}

    .modal-backdrop.fade {
        opacity: 0;
    }

    .modal-backdrop.show {
        opacity: 0.5;
    }

.modal-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    border-top-left-radius: 0.3rem;
    border-top-right-radius: 0.3rem;
}

    .modal-header .close {
        padding: 1rem;
        margin: -1rem -1rem -1rem auto;
    }

.modal-title {
    margin-bottom: 0;
    line-height: 1.5;
}

.modal-body {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1rem;
}

.modal-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 1rem;
    border-top: 1px solid #e9ecef;
}

    .modal-footer > :not(:first-child) {
        margin-left: .25rem;
    }

    .modal-footer > :not(:last-child) {
        margin-right: .25rem;
    }

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}


.form-group {
    margin-bottom: 1rem;
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.close:not(:disabled):not(.disabled) {
    cursor: pointer;
}

.close:hover, .close:focus {
    color: #000;
    text-decoration: none;
    opacity: .75;
}

::before, ::after {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: currentColor;
}

.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-md-6 {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, .col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, .col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, .col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl, .col-xl-auto {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}



.login_error {
    margin-bottom: 10px;
    /*    border-bottom: 1px solid #dfdfdf;*/
    padding-bottom: 10px;
    color: darkred;
    padding: 0 25px;
}


.form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}


.form-group {
    margin-bottom: 1rem;
}



a {
    color: inherit;
    text-decoration: inherit;
}

a {
    background-color: transparent;
}



button, input, optgroup, select, textarea {
    padding: 0;
    line-height: inherit;
    color: inherit;
}

::before, ::after {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: currentColor;
}

button.close {
    padding: 0;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
}


/* Login Popup */

#labels_change_l, .labels_change_l {
    color: #197980 !important;
    font-family: "Circular Std Book";
    font-size: 18px;
    margin-left: 45px;
}

#l_inputs_change, .l_inputs_change {
    box-shadow: 0 12px 24px -4px rgba(46, 91, 115, 0.3), 0 6px 8px -3px rgba(0, 0, 0, .05);
    margin-left: 45px;
}

.btn-pri_l {
    width: 100%;
    font-weight: 700;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 200ms;
    font-size: 16px;
    line-height: 12px;
    border: none !important;
}



/* login pop start v3 */
.log_pop_new .modal-body {
    padding: 0px 16px 0 0;
}

.pop_bg_left {
    background: #197980;
    height: 489px;
    padding: 67px 60px;
    border-radius: 6px;
}

    .pop_bg_left::after {
        content: "";
        background: url("../CommonThemes/Images/VBT/curved.png");
        height: 489px;
        width: 59px;
        background-repeat: no-repeat;
        position: absolute;
        right: 0;
        top: 0px;
        background-size: cover;
    }

.log_pop_new .modal-content {
    border: none;
    border-radius: 6;
}

.pop_icon_cen {
    text-align: center;
    margin-bottom: 25px;
}

.samll_left_pop_txt {
    color: #fff;
    font-family: "CircularStd-Bold";
    position: relative;
    margin: 0 0px 0 20px;
}

    .samll_left_pop_txt div {
        font-size: 39px;
        line-height: 45px;
    }

        .samll_left_pop_txt div + div {
            font-size: 28px;
            line-height: 33px;
        }

    .samll_left_pop_txt::before {
        content: "";
        background: url("../images/txt_icn.png");
        height: 16px;
        width: 19px;
        background-repeat: no-repeat;
        position: absolute;
        left: -25px;
        top: 0px;
    }

    .samll_left_pop_txt::after {
        content: "";
        background: url("../images/txt_icn.png");
        height: 16px;
        width: 19px;
        background-repeat: no-repeat;
        position: absolute;
        right: 50px;
        bottom: 16px;
    }

.login_txt_pop {
    font-size: 33px;
    line-height: 38px;
    font-family: "CircularStd-Bold";
    color: #197980;
    text-align: center;
    margin-bottom: 10px;
    margin-top: 30px;
}

.log_wel_txt {
    font-size: 15px;
    color: #000;
    font-family: "CircularStd-Bold";
    line-height: 20px;
    text-align: center;
    margin-bottom: 20px;
    padding: 0 60px;
}

.form-group.green_brd {
    padding: 0 25px;
}

    .form-group.green_brd label {
        font-weight: 400;
        color: #197980 !important;
        display: inline-block;
        margin-bottom: .5rem;
        font-size: 18px;
        font-family: "Circular Std Book";
    }

    .form-group.green_brd .form-control {
        border-radius: 5px;
        padding: -0.625rem 0;
        box-shadow: 0 12px 24px -4px rgba(46, 91, 115, 0.3), 0 6px 8px -3px rgba(0, 0, 0, .05);
    }

.forgot_pop_txt {
    margin-bottom: 7px;
    padding: 0 25px;
}

    .forgot_pop_txt a {
        display: inline-block;
        color: #197980;
        font-size: 13px;
        line-height: 17px;
        font-family: "CircularStd-Bold";
    }

.pop_log_btn {
    font-size: 15px;
    line-height: 19px;
    color: #fff;
    background-color: #197980;
    border-radius: 5px;
    box-shadow: none;
    border: none;
    padding: 12px 80px;
    text-align: center;
    margin: auto;
    display: block;
    cursor: pointer;
    margin-bottom: 16px;
}

.pop_last_link {
    text-align: center;
    font-family: "CircularStd-Bold";
    font-size: 14px;
    line-height: 18px;
}

    .pop_last_link a {
        display: inline-block;
        margin: 0 7px;
    }

        .pop_last_link a:first-child {
            color: #000;
        }

        .pop_last_link a:last-child {
            color: #197980;
        }

.close_pos_abso {
    position: absolute;
    top: 5px;
    right: 10px;
    z-index: 99;
    font-size: 1.5rem;
}
/* login pop end */

.l_btn-white {
    border-style: solid;
    border-width: 2px;
    background-color: #ffffff;
    --border-opacity: 1;
    border-color: #C7CCD1;
    border-color: rgba(199, 204, 209, var(--border-opacity));
    --text-opacity: 1;
    color: #1A7980;
    color: rgba(26, 121, 128, var(--text-opacity));
    box-shadow: 0 12px 24px -4px rgba(46, 91, 115, 0.3), 0 6px 8px -3px rgba(0, 0, 0, .05);
}

    .l_btn-white:hover {
        background-color: #f9f5ea;
    }

.l_btn-pri {
    width: 55%;
    font-weight: 700;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 200ms;
    font-size: 16px;
    line-height: 15px;
    border: none !important;
}

.l_btn-pri_2 {
    width: 100%;
    font-weight: 700;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 200ms;
    font-size: 16px;
    line-height: 10px;
    border: none !important;
}

.l_btn-sec {
    width: 55%;
    font-weight: 700;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 200ms;
    font-size: 16px;
    line-height: 20px;
}

.l_text-fs-14 {
    font-size: 14px;
    line-height: 16px;
}

.l_btn-teal {
    --bg-opacity: 1;
    background-color: #1A7980;
    background-color: rgba(26, 121, 128, var(--bg-opacity));
    --text-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--text-opacity));
    box-shadow: 0 12px 24px -4px rgba(46, 91, 115, 0.3), 0 6px 8px -3px rgba(0, 0, 0, .05);
}

    .l_btn-teal:hover {
        background-color: #cbbb99;
    }

#responsive_buttons {
    text-align: center;
    margin-bottom: 10px;
}

#l_welcom_text {
    text-align: center;
    font-size: 30px;
    color: #ffffff;
    font-family: "Circular Std Book";
}

/* Login End */




@media (min-width: 576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto;
    }

    .modal-dialog-centered {
        min-height: calc(100% - (1.75rem * 2));
    }

    .modal-sm {
        max-width: 300px;
    }
}

@media (min-width: 768px) {
    .col-md-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-md-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .col-md-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }
}

@media (min-width: 768px) {
    .col-md-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }
}

@media (min-width: 992px) {
    .modal-lg {
        max-width: 800px;
    }
}




/* WaitList PopUp CSS */

.modal-content {
    -webkit-border-radius: 5px !important;
    -moz-border-radius: 5px !important;
    border-radius: 5px !important;
    border: none;
    border-radius: 6px;
    /*background-color: #F5F8FA !important;*/
}

.modal-body {
    padding: 0px 16px 0 0;
}

.close_pos_abso {
    position: absolute;
    top: 5px;
    right: 10px;
    z-index: 99;
}

.container_inside {
    margin: 0 5%;
}

.vep_page_title {
    font-family: "CircularStd-Bold";
    color: #197980;
    font-size: 33px !important;
}

.w-100 {
    width: 100% !important;
}

.pa_subtitle_text {
    color: #000000;
    font-size: 18px;
    font-family: "Circular Std Book";
}

.responsive_row {
    margin-left: -30px !important;
}

.labels_change {
    font-family: "Circular Std Book";
    color: #197980;
    font-size: 18px;
}

.labels_change_select {
    margin-bottom: -10px !important;
    font-family: "Circular Std Book";
    color: #197980;
    font-size: 18px;
}

.select_change {
    margin-top: 10px;
    margin-left: 0px !important;
    border-radius: 5px;
    width: 100% !important;
}

.cn_ada_check {
    margin-top: -10px;
}

.checkbox_font {
    color: #000000;
    font-size: 18px;
    font-family: "Circular Std Book";
}

.ca-btn-teal {
    --bg-opacity: 1;
    background-color: #1A7980;
    background-color: rgba(26, 121, 128, var(--bg-opacity));
    --text-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--text-opacity));
    box-shadow: 0 12px 24px -4px rgb(46 91 115 / 30%), 0 6px 8px -3px rgb(0 0 0 / 5%);
}

.ca-btn-pri {
    width: 55%;
    font-weight: 700;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 200ms;
    font-size: 16px;
    line-height: 20px;
    border: none !important;
    float: right;
    max-width: 200px;
}

.cursor-pointer {
    cursor: pointer;
}

.l_btn-teal:hover {
    color: #004A99 !important;
    text-decoration: none;
}

.livechat {
    background-color: transparent !important;
}

.help-button {
    background-color: #1A7980;
    color: white;
    border-radius: 10px;
    padding: 5px 10px 3px;
    border: 0px;
}

#account-select-listbox-popover .select-option {
    font-size: 16px;
    line-height: 14px;
}
.theme-login-model .form-group.green_brd .form-control {
    border: 1px solid #4E5861;
}

.form-control::placeholder {
    color: #4E5861 !important;
}

.form-control:-ms-input-placeholder {
    color: #4E5861 !important;
}

.form-control::-ms-input-placeholder {
    color: #4E5861 !important;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .log_pop_new .modal-dialog {
        max-width: 97%;
    }
}
@media only screen and (max-width: 1200px) {
    #loginPopup{
        overflow-y: scroll;
        overflow-x: hidden;
    }
}
@media only screen and (max-width: 767px) {
    .modal {
        padding-left: 0 !important;
    }

    .modal-body {
        padding: 0;
    }

    .close.close_pos_abso {
        color: #fff;
        opacity: 1;
    }

    .ca-btn-pri {
        width: 106% !important;
        margin-top: 10px !important;
        margin-right: -55px !important;
    }

    .pop_bg_left {
        height: 280px !important;
        padding: 55px 60px;
    }

        .pop_bg_left::after {
            content: inherit;
            height: auto;
        }

    .pop_icon_cen img {
        display: inline-block;
        max-width: 90px !important;
    }
        #loginPopup .modal-dialog {
            padding: 10px;
            margin: 0px auto;
        }

        #loginPopup .modal-body {
            padding: 0;
        }

    #divOnlyLogin {
        width: calc(100% - 55px);
    }

    .pop_last_link a {
        margin-bottom: 20px;
    }

    #loginErrorPopup .modal-content {
        left: 5% !important;
    }

 /*   .js-book-modal tbody.xs\:w-full {
        width: 95%;
    }*/

    .bg-transparent.w-full {
        padding: 15px !important;
    }

        .bg-transparent.w-full .p-6 {
            padding: 15px !important;
        }
}

/*@media only screen and (max-width: 414px) {
    .js-book-modal tbody.xs\:w-full {
        width: 86%;
    }
}

@media only screen and (max-width: 400px) {
    .js-book-modal tbody.xs\:w-full {
        width: 95%;
    }
}*/

/* WaitList PopUp CSS */


