:root {
    --box-shadow: 0px 3px 10px 0 rgba(0, 0, 0, 0.04);
}
html {
    min-height: unset !important;
}

body {
    min-height: unset !important;
    font-family: var(--body-base-font);
    font-size: var(--body-base-font-size);
    background: var(--body-bg-4);
    color: var(--body-text-1);
    line-height: 1.3;
    position: relative;
}

a,
a:visited,
a:active {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

a:hover {
    color: inherit;
    text-decoration: none;
}

a:focus {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    margin: 0;
}

ul {
    padding: 0;
    margin: 0;
}

input[type="text"],input[type="email"],input[type="password"] {
    border: none;
    outline: none;
    padding: 5px 15px;
    border-radius: 10px;
    font-size: 1em;
    color: var(--body-text-1);
    width: 100%;
    height: 40px;
    border: solid 1px var(--border-bg-1);
    line-height: 40px;
}

input[type="text"]::placeholder,input[type="email"]::placeholder,input[type="password"]::placeholder {
    color: var(--body-text-2);
}

input[type="text"]:focus,input[type="email"]:focus,input[type="password"]:focus {
    color: var(--body-text-1);
    background-color: var(--body-bg-1);
    outline: none;
    border-color: var(--body-bg-2);
}

input[type="text"]:-webkit-autofill,
input[type="text"]:hover,
input[type="text"]:focus {
    outline: none;
    transition: background-color 5000s ease-in-out 0s;
    background-color: var(--body-bg-1);
}

input[type="email"]:-webkit-autofill,
input[type="email"]:hover,
input[type="email"]:focus {
    outline: none;
    transition: background-color 5000s ease-in-out 0s;
    background-color: var(--body-bg-1);
}

input[type="password"]:-webkit-autofill,
input[type="password"]:hover,
input[type="password"]:focus {
    outline: none;
    transition: background-color 5000s ease-in-out 0s;
    background-color: var(--body-bg-1);
}

.text-danger {
    color: #dc3545!important;
}

.text-success {
    color: #198754!important;
}

.l-btn-disabled {
    opacity: 0.8!important;
    cursor: not-allowed!important;
    pointer-events: none!important;
}

.fl-box-r {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.fl-box-c {
    display: flex;
    flex-flow: column wrap;
    justify-content: flex-start;
    align-items: flex-start;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

/* login page css */
.login-page-outer {
    /* max-width: 1900px; */
    margin: 0 auto;
}

.logo-container .title {
    font-size: 1.3em;
    font-weight: 600;
    text-transform: uppercase;
}

.login-page-header {
    height: 50px;
    align-items: center;
    padding: 0 20px;
    justify-content: space-between;
    position: sticky;
    top: 0;
    width: 100%;
    box-shadow: var(--box-shadow);
    background-color: var(--body-bg-1);
    z-index: 20;
}
.login-page-footer {
    height: 30px;
    align-items: center;
    padding: 0 20px;
    justify-content: right;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 20;
    color: #5d5d5d;
    font-size: 14px;
}

.header-menu-container {
    position: absolute;
    top: calc(100% + 4px);
    padding-bottom: 4px;
    left: 0;
    right: 0;
    border-bottom: solid 1px var(--border-bg-1);
    display: none;
}

.gen-btn a,button.gen-btn {
    cursor: pointer;
    height: 30px;
    line-height: 30px;
    background-color: var(--body-bg-2);
    display: block;
    padding: 0 10px;
    border-radius: 5px;
    color: var(--body-text-4);
    font-size: 1em;
    width: 100%;
    text-align: center;
}

ul.header-menu li a {
    color: var(--body-text-2);
    text-transform: uppercase;
    margin-right: 20px;
    font-weight: 600;
    font-size: 0.75em;
    letter-spacing: 1px;
}

ul.header-menu {
    justify-content: center;
}

.login-page-contents {
    padding: 10px 15px;
    background : var(--body-bg-1);
    height: calc(100vh - 100px);
}

label.l-form-label {
    font-size: 1em;
    color: var(--body-text-3);
    padding-bottom: 5px;
    display: block;
}

.l-form-group {
    margin-bottom: 20px;
    position: relative;
}

.l-form-group:last-child {
    margin-bottom: 0;
}

.login-form-outer {
    padding: 20px;
    box-shadow: 2px 3px 10px 2px rgb(0 0 0 / 5%);
    border-radius: 10px;
    width: 100%;
    margin-top: 10px;
    position: relative;
}
.login-page-contents .inner-col.right {
    position: relative;
}
img#siimage,img#fpimage {
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: center;
}

.l-form-group.captcha .inner-col.one {
    width: 100%;
    height: 50px;
    overflow: hidden;
    margin-bottom: 10px;
    padding: 5px 5px;
    border: solid 1px var(--border-bg-1);
    border-radius: 10px;
    position: relative;
    align-items: center;
    justify-content: center;
}
.l-form-group.captcha {
    flex-flow: row wrap;
}
.l-form-group.captcha .inner-col.two {
    width: 100%;
}
.refresh-captcha-btn {
    position: absolute;
    right: 0;
    padding: 0 10px;
    height: 50px;
    line-height: 50px;
    color: var(--body-text-2);
}

.gen-btn.val-login-btn {
    height: 40px;
    line-height: 40px;
}

.l-form-group.upass .inner-col {
    justify-content: space-between;
}

a#forgotpwd_scr {
    color: var(--body-bg-2);
}

a#forgotpwd_scr:hover {
    text-decoration: underline;
}

.sec-title {
    font-size: 1.1em;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
}

.split-div {
    margin: 20px 0;
    display: block;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--body-text-2);
    font-size: 1em;
    text-align: center;
    position: relative;
}

.split-div:after {
    content: '';
    border-bottom: solid 2px #e7e6e1;
    height: 2px;
    width: 43%;
    display: block;
    position: absolute;
    top: 10px;
    right: 0;
}

.split-div:before {
    content: '';
    border-bottom: solid 2px #e7e6e1;
    height: 2px;
    width: 43%;
    display: block;
    position: absolute;
    top: 10px;
    left: 0;
}

.social-btns a {
    font-size: 1.5em;
    cursor: pointer;
    display: inline-block;
    padding: 10px 15px;
}

.social-btns {
    justify-content: center;
}

div#sign-up-btn a {
    width: auto;
    display: inline-block;
    flex-shrink: 0;
}

.login-image-carousel.slick-dotted.slick-slider {
    margin-bottom: 0;
}

.login-image-carousel .slick-track {
    height: 100%;
}

.login-image-carousel .slick-list.draggable {
    height: 100%;
}

.login-image-carousel .slick-dots {
    bottom: 10px;
}

.login-page-contents .inner-col.left {
    display: none;
}

a#login_scr:hover {
    color: var(--body-bg-2);
}

a#login_scr i {
    margin-right: 10px;
}

.l-form-group.has-warning input[type="text"] {
    border-color: #ff9a3c;
}

.l-form-group.has-warning .l-form-label {
    color : #ff9a3c;
}

.l-form-group.has-error input[type="text"] {
    border-color: #eb2632;
}

.l-form-group.has-error .l-form-label {
    color : #eb2632;
}

.l-form-group.captcha .l-form-label {
    display: none;
    font-size: 0.8em;
}

.l-form-group.captcha.has-warning .l-form-label,.l-form-group.captcha.has-error .l-form-label{
    display: block;
}

.custom-css-loader {
    background-color: rgba(0, 0, 0, 0.05);
    position: absolute;
}

.half-ring:before {
    -webkit-box-shadow: 25px 0px 0 0 rgba(75 ,83, 228, 0.2), 20.22542px 14.69463px 0 0 rgba(75 ,83, 228, 0.4), 7.72542px 23.77641px 0 0 rgba(75 ,83, 228, 0.6), -7.72542px 23.77641px 0 0 rgba(75 ,83, 228, 0.8), -20.22542px 14.69463px 0 0 rgba(75 ,83, 228, 1);
    box-shadow: 25px 0px 0 0 rgba(75 ,83, 228, 0.2), 20.22542px 14.69463px 0 0 rgba(75 ,83, 228, 0.4), 7.72542px 23.77641px 0 0 rgba(75 ,83, 228, 0.6), -7.72542px 23.77641px 0 0 rgba(75 ,83, 228, 0.8), -20.22542px 14.69463px 0 0 rgba(75 ,83, 228, 1);
}

input#t_c_signup {
    margin-right: 5px;
}

a#t_c_link {
    display: inline-block;
    font-size: 0.8em;
    color: var(--body-text-2);
}

a#t_c_link:hover {
    color: var(--body-bg-2);
    text-decoration: underline;
}

a.signup_win_close {
    position: absolute;
    top: 0px;
    right: 20px;
    padding: 10px;
    font-size: 1.4em;
    color: var(--body-text-3);
    cursor: pointer;
}

#forgetpw_status_msg_field,#resetpw_status_msg_field {
    font-size: 14px;
    white-space: normal;
    line-height: 1.3;
    color: var(--body-text-3);
    margin: 0;
    padding: 0 10px;
    text-align: center;
}


.pwd-strength-container {
    background-color: var(--body-bg-3);
    width: 100%;
    height: 7px;
    border-radius: 5px;
}

.pwd-strength-container #pwd-strength-point {
    background-color: #D73F40;
    width: 2%;
    height: 100%;
    border-radius: 5px;
    transition: 0.5s;
}

#pwd-help {
    display: block;
    position: absolute;
    top: 0;
    right: 10px;
    color: var(--body-bg-2);
    font-size: 16px;
}

.tooltip.pwd-helper-data {
    background-color: #fff;
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 5px;
    min-width: 200px;
    max-width: 350px;
    z-index: 99999;
    box-shadow: 0px 3px 10px 0 rgba(0, 0, 0, 0.1);
}

.tooltip.pwd-helper-data p {
    margin: 0;
    color: var(--body-text-3);
    line-height: 1.3;
    font-size: 12px;
    margin-bottom: 5px;
    padding-left: 10px;
    position: relative;
}

.tooltip.pwd-helper-data p:before {
    content: '\f111';
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    position: absolute;
    left: 0;
    top: 5px;
    font-size: 5px;
}
.tooltip.pwd-helper-data p:last-child {
    margin-bottom: 0;
}

/* .captcha_ctrl_label {
    display: none!important;
} */

.invalid-request-msg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.invalid-request-msg > p {
    margin: 0;
    font-size: 1.5em;
}

@media (min-width:576px) {
    .header-menu-container {
        position: static;
        padding: 0;
        border: none;
        margin-right: 20px;
        display: block;
    }
    .login-page-header .inner-col  {
        align-items: center;
    }
    .login-form-outer {
        width: 80%;
        margin: 0 auto;
        margin-top: 10px;
     }
}

@media (min-width:768px) {
    .login-page-contents .inner-col.left {
        display: block;
        height: 250px;
        padding-bottom: 20px;
        width: 100%;
    }
    .login-image-carousel {
        width: 100%;
        height: 100%;
    }

    .login-carousel-item {
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .login-carousel-item img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
    }
    .login-page-contents {
        margin: 20px 20px;
        border-radius: 10px;
        height: calc(100vh - 140px);
    }

    .l-form-group.captcha {
        flex-flow: row nowrap;
    }
    .l-form-group.captcha .inner-col.two {
        width: calc(50% - 20px);
        flex-shrink: 0;
        margin-left: 20px;
        position: relative;
        bottom: 5px;
    }
    .l-form-group.captcha {
        align-items: center;
    }
}

@media (min-width:992px) {
    .login-page-outer {
        height: 100vh;
    }
    .logo-container .title {
        font-size: 1.5em;
    }
    ul.header-menu li a {
        margin-right: 25px;
    }
    .login-page-header {
        padding: 0 40px;
    }
    .l-form-group.captcha .inner-col.one {
        height: 70px;
    }
    .login-form-outer {
        width: 100%;
        box-shadow: none;
        padding: 10px 60px;
        overflow: hidden;
        overflow-y: auto;
        height: 100%;
        margin: 0;
    }
    .login-page-contents {
        padding: 0px;
        display: flex;
        flex-flow: row nowrap;
        align-items: center;
        justify-content: flex-start;
        margin: 30px 80px;
        height: calc(100vh - 140px);
        overflow: hidden;
        border-radius: 10px;
        padding: 0px;
        box-shadow: 2px 3px 10px 2px rgb(0 0 0 / 5%);
    }
    .login-page-contents  > .inner-col {
        flex-shrink: 0;
        height: 100%;
        width: 45%;
        overflow: hidden;
        padding: 10px;
        border-left: solid 1px var(--border-bg-1);
    }

    .login-page-contents>.inner-col.left {
        overflow: hidden;
        padding: 20px;
        width: 55%;
        border: none;
        height: 100%;
    }
    .l-form-group.captcha .inner-col.two {
        width: 100%;
        flex-shrink: 0;
        margin-left: 0;
        position: static;
    }

    .l-form-group.captcha {
        flex-flow: row wrap;
        align-items: center;
    }

    .login-carousel-item img {
        object-fit: unset;
    }
}

@media (min-width:1200px) {
    .l-form-group.captcha {
        flex-flow: row nowrap;
    }
    .l-form-group.captcha .inner-col.two {
        width: calc(50% - 20px);
        flex-shrink: 0;
        margin-left: 20px;
        position: relative;
    }
    .l-form-group.captcha {
        align-items: center;
    }
}

@media (min-width:1900px) {
    .login-page-outer {
        box-shadow: 0 0 15px 10px rgb(0 0 0 / 5%);
    }
}
/* end login page css */


.btnDisabled{
    opacity: 0.4;
    cursor: default !important;
}

.userTermsInputSection{
    text-align: center;
    font-size: 18px;
}

.acceptBtnContainer{
    display: flex;
    justify-content: center;
}

.accept-btn{
    height: 40px;
    line-height: 40px;
    background-color: var(--body-bg-2);
    display: block;
    padding: 0 10px;
    border-radius: 5px;
    color: var(--body-text-4);
    font-size: 1em;
    text-align: center;
    cursor: pointer;
}
/* custom Modal styles */


.userTermsAndConditions {
    max-height: calc(100% - 145px);
    overflow-y: auto;
    padding: 27px;
}

.policy-page-contents{
    padding: 0px;
        display: flex;
        flex-flow: row nowrap;
        justify-content: center;
        margin: 30px 80px;
        height: calc(100% - (50px + 60px));
        overflow: hidden;
        border-radius: 10px;
        padding: 0px;
        box-shadow: 2px 3px 10px 2px rgb(0 0 0 / 5%);
}

.flogin_container{
    height: calc(100% - 20px);
    width: calc(100% - 20px);
    background-color: #fff;
    position: absolute;
}
.flogin_close{
    position: absolute;
    top: 13px;
    right: 5px;
    font-size: 50px;
    cursor: pointer;
    line-height: 0;
}
.flogin_message{
    font-size: 16px;
    margin: 90px 25px;
    text-align: center;
    font-weight: 500;
    color: red;
}
.flogin_captcha_container {
    width: 100%;
    overflow: hidden;
    margin-bottom: 10px;
    padding: 5px 10px;
    border-radius: 10px;
    position: relative;
    align-items: center;
}
.flogin_buttons{
    display: flex;
    justify-content: center;
}
.flogin_buttons button.margin-right {
    margin-right: 20px;
}