/***
    MontSerrat license: https://urm.it34.com/StaticFiles/fonts/MontSerrat/OFL.txt
    */

body {
    padding: 0;
    margin: 0;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    overflow-y: auto;
    box-sizing: border-box;
    background-repeat: no-repeat;
    background-size: cover;
}
::-webkit-scrollbar-thumb {
    background: #0073A9;
}

::-webkit-scrollbar {
    width: 5px !important;
    height: 5px !important;
}

#cookie-consent-banner-hide {
    display:none !important;
}
@media (-webkit-device-pixel-ratio: 1.25) {
    * {
        zoom: 0.99;
    }
    #CreateuserForm {
        margin-top: 0vh !important;
    }

    .Secondarybtn {        
        width: 100% !important;       
    }
}

@media only screen and (max-height: 768px) {
    body {
        overflow-y: scroll !important;
    }
}

.parent {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color:#222222; 
}

@media only screen and (max-width: 768px) {
    .parent {
        margin-top: 66px;
        width: 100%;
        height: 60%;
    }
}

.card {
    display: flex;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    border-radius: 0;
    width: 440px;
    max-width: 450px;
}

@media only screen and (max-width: 600px) {
    .card {
        border: 0;
        /*width: calc(100vw - 0px);*/
        height: auto;
    }
}

.card-body {
    background: #ffffff;
    padding-top: 16px;
    padding-left: 32px;
    padding-right: 32px;
    padding-bottom: 32px;
}

.card-row {
    display: flex;
    flex-wrap: wrap;
    font-size: 15px;
    font-weight: 400;
}

.card-row-right {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
}

.form-header {
    padding: 0;
    margin-top: 32px;
    font-size: 32px;
    color: #222222;
    font-weight: 700;
}

/* Dialog */

.dialog-default-container {
    display: flex;
    flex-direction: column;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    background-color: white;
    border-radius: 0;
    width: 440px;
    max-width: 700px;
    padding: 20px;
}

.dialog-container {
    display: flex;
    flex-direction: column;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    border-radius: 0;
    max-width: 800px;
    width: 100vw;
    background-color: white;
    max-height: 50%;
    height: 100vh;
    padding: 20px;
    overflow-y: auto;
    overflow-wrap: break-word;
}

@media only screen and (max-width: 768px) {
    .dialog-container {
        box-shadow: none;
        border: 0;
        width: calc(100vw - 40px);
        height: auto;
    }
}

@media only screen and (max-width: 600px) {

    .dialog-default-container {
        box-shadow: none;
        border: 0;
        width: calc(100vw - 40px);
        height: auto;
    }
}

.dialog-title {
    width: 100%;
    font-weight: 600;
    font-size: 24px;
    color: #222222;
}

.dialog-subtitle {
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 15px;
    color: #222222;
}

.dialog-text {
    font-weight: 400;
    font-size: 15px;
    color: #222222;
}

/* Shadows */
.shadow-bottom {
    box-shadow: 0 2px 4px 0 rgba(0,0,0,.2);
}

/* Alignments */

.horizontal-items {
    display: flex;
}

    .horizontal-items > li {
        flex: 1;
        padding: 0;
        margin-right: 20px;
    }

/* Input fields */

.input-label {
    font-family: 'Montserrat';
    font-style: normal;
    text-align: left;
    letter-spacing: 0px;
    opacity: 1;
    font-weight: 600 !important;
    padding: 0;
    margin-bottom: 5px;
    font-size: 13px;
    color: #222222;
}

.input {
    margin: 0;
    width: 100%;
    border: 1px solid #9F9F9F;
    padding: 0 12px;
    font-size: 14px;
    height: 48px !important;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
}

.disableinput {
    background-color: #FFFFFF;
    margin: 0;
    width: 100%;
    border: 1px solid #9F9F9F;
    padding: 0 12px;
    font-size: 15px;
    height: 48px !important;
}


input:focus-visible {
    outline-style: none;
    outline-color: #9F9F9F !important;
}

/* Checkbox */

.custom-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    margin-right: 10px;
}

.custom-checkbox input {
    display: none;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.checkmark {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 16px;
    height: 16px;
    background-color: #FFF;
    border: 2px solid #222;
    border-radius: 2px;
}

.custom-checkbox input:checked + .checkmark {
    background-color: #007A9C;
    border-color: #007A9C;
}

.checkmark:after {
    content: "";
    display: none;
    margin-bottom: 2px;
    margin-left: 1px;
}

.custom-checkbox input:checked + .checkmark:after {
    display: block;
}

.custom-checkbox .checkmark:after {
    content: "";
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Text */

.link {
    font-family: 'Montserrat';
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #007A9C;
    text-decoration: underline;
    cursor: pointer;
    margin-left: 3px;
}

.link:hover {
    color: #00567F;
}
/* Button */

.button {
    width: 100%;
    background-color: #0074AC;
    color: #FFF;
    font-weight: 600;
    font-size: 16px;    
    border: none;
    cursor: pointer;
    height: 48px;
    border-radius: 0;
}

.backbutton {
    background-color: #e6e6e6;
    color: #222222;
    height: 43px !important;
}


.forgot-password-button {
    color: #0074AC;
    font-size: 14px;
    background: none !important;
    border: none;
    padding: 0 !important;
    cursor: pointer;
    font-weight: 600;
    margin-top: 5px;
}

    .forgot-password-button:hover {
        text-decoration: none;
        color: #0074AC;
    }

.go-back-button {
    color: #0074AC;
    font-size: 14px;
    display: flex;
}

    .go-back-button:hover {
        text-decoration: none;
        color: #0074AC;
    }

/* Font styles */

.bold {
    font-weight: 600;
}

.medium {
    font-weight: 600;
}

.book {
    font-weight: 400;
}

/* Table */

.table-container {
    display: flex;
    flex-direction: row;
}

.table-row {
    padding: 10px 10px 10px 0;
    flex-grow: 1;
    color: #222222;
    background-color: white;
    max-width: 400px;
    min-width: 150px;
    width: 50vw;
    font-size: 14px;
    font-weight: 400;
}

/* Footer */

.main-footer {
    display: flex;
    justify-content: space-between;
    padding: 20px 20px 20px;
    background-color: #FFF;
    height: 60px;
    box-shadow: 0 -3px 6px rgba(0, 0, 0, 0.16);
    position: fixed;
    bottom: 0;
}

@media only screen and (max-width: 1250px) {
    .main-footer {
        display: flex;
        flex-direction: column;
        height: 80px;
    }
}

@media only screen and (max-width: 1024px) {
    .main-footer {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
        flex-direction: column-reverse;
        height: auto;
        padding: 20px 0 20px 0;
        /*position: relative;*/
    }
}

.left-content .right-content {
    display: flex;
}

@media only screen and (max-width: 1024px) {
    .left-content {
        margin-top: 20px;
    }
}

@media only screen and (max-width: 1024px) {
    .left-content > .addr {
        margin: 0;
        line-height: 17px;
    }

        .left-content > .addr ~ .addr {
            font-weight: 400;
        }
}

@media only screen and (max-width: 1024px) {
    .left-content > .contact {
        margin: 10px 0 0 0;
        font-weight: 400;
        line-height: 17px;
    }

        .left-content > .contact ~ .contact {
            margin: 0;
            font-weight: 400;
        }
}

.footer-text {
    font-size: 13px;
    color: #222222;
    padding: 0 10px;
}

@media only screen and (max-width: 1024px) {
    .footer-text {
        display: flex;
        flex: 1;
        flex-basis: 100%;
        margin-bottom: 5px;
    }
}

.bullet {
    font-size: 8px;
    color: #222222;
}

@media only screen and (max-width: 1024px) {
    .bullet {
        display: none;
    }
}

/* Margins */

.m30 {
    margin: 30px;
}

.m20 {
    margin: 20px;
}

.m10 {
    margin: 10px;
}

.mt16 {
    margin-top: 16px;
}

.mt30 {
    margin-top: 30px;
}

.mt32 {
    margin-top: 32px;
}

.mt20 {
    margin-top: 20px;
}

.mt10 {
    margin-top: 10px;
}
.mt16 {
    margin-top: 16px;
}

.mr20 {
    margin-right: 20px;
}

.mb20 {
    margin-bottom: 20px;
}

.ml20 {
    margin-left: 20px;
}

/* Padding */

.p20 {
    padding: 20px;
}

.pt20 {
    padding-top: 20px;
}

.pr20 {
    padding-right: 20px;
}

.pb20 {
    padding-bottom: 20px;
}

.pl20 {
    padding-left: 20px;
}

.logo {
    margin: 0px;
    padding: 0px;
}

.forgotPasswordLink {
    color: #8f8f8f;
}

    .forgotPasswordLink:hover {
        color: #494949;
        text-decoration: none;
    }





@media screen and (min-width: 1200px) (-webkit-device-pixel-ratio: 1.00) /*for Web*/ {
    body {
        background-size: cover;
    }


    .card {
        width: 444px !important;
        min-height: 35vh !important;
        box-shadow: 0px 3px 6px #00000029 !important;
    }

    .cookie-consent-banner {
        width: 542px !important;
        bottom: 42vh !important;
        height: 246px !important;
        /*        font-size: 15px !important;
*/
    }

    #CreateuserForm {
        margin-bottom: 20vh;
        margin-top: 35vh;
    }
}

@media screen and (max-width: 767px) and (orientation: portrait) {
    .navbar-toggler {
        margin-right: 10px;
    }

    .cookie-consent-banner {
        width: 329px !important;
        height: 385px !important;
        bottom: 28% !important;
    }

    .cookie-consent-banner__cta {
        width: 265px !important;
        opacity: 1 !important;
        float: left !important;
    }

    .cookie-consent-banner__description {
        font: inherit !important;
    }

    body {
        background-size: contain auto !important;
    }
    .form-header {
        text-align: center !important;
        letter-spacing: 0px !important;
        color: #222222 !important;
        opacity: 1 !important;
        font-size: 24px !important;
    }

    .card {
        top: 50px !important;
        width: 345px !important;
        /*  min-height: 364px !important;
        max-height: 364px !important;*/
    }
    .cardcreateuser{
        width: 100% !important;
    }

    .navlogo {
        max-height: 40px !important;
        max-width: 40px !important;
       /* margin-left: 16px !important;
        margin-right: -25px !important;*/
    }
    .divnavlogo {
        width:10%;
        margin-left: 16px;
    }
    .divnavsitename {
        /*width: 53%;*/
        text-align: left;
    }
    .navhead {
        margin-top: 10px !important;
    }
    .navbar-brand {
        margin-left: 0 !important;
    }
    .container-fluid {
        padding-left: 0px !important;
    }
    .navbar {
        height: 80px !important;
        text-align: end;
        padding-right:4px !important
    }
    .disablebutton {
        font-size: 15px !important;
        height: 48px !important;
        /*width: 313px !important;*/
        width: 100% !important;
        max-width: 313px !important;

    }
    .primarybutton {
        font-size: 15px !important;
        height: 48px !important;
        /*width: 313px !important;*/
        width: 100% !important;
        max-width: 313px !important;
    }

    .Secondarybtn {
        height: 48px !important;
        /*width: 313px !important;*/
        width: 100% !important;
        max-width: 313px !important;
        font-size: 15px !important;
    }
  
}
/*For mobile view portrait*/



@media screen and (max-height: 767px)(-webkit-device-pixel-ratio: 1.00) {
    .Secondarybtn {
        height: 48px !important;
    }

    .primarybutton {
        font-size: 15px !important;
        height: 48px !important;
    }

    .disablebutton {
        font-size: 15px !important;
        height: 48px !important;
    }
    /* #loginForm {
    margin-top:-15px;
    }*/
    #CreateuserForm {
        margin-bottom: 50vh;
        height: 100% !important;
        /*        margin-top:60vh;
*/
    }
}
/*For mobile view landscape*/


@media screen and (min-width: 1000px) and (max-width: 1199px) {
    .main-footer {
        position: relative !important;
    }

    .card {
        width: 444px !important;
        box-shadow: 0px 3px 6px #00000029 !important;
    }

    /*.cookie-consent-banner {       
        box-sizing: border-box;
        width: 55%;
        min-height: 21vh;       
        bottom: 40% !important;
    }*/
}
/*For tab view*/


/*@media screen and (min-width: 700px) and (max-width: 1024px) and (min-height: 1024px) {
  
}*/

.usercls {
    border: 1px solid #9F9F9F !important;
}


.lblNewuser {
    width: 100%;
    height: 16px;
    text-align: center;
    letter-spacing: 0px;
    font-family: 'Montserrat';
    font-style: normal;
    font-size: 14px;
    color: #666666;
    opacity: 1;
    margin-top: 16px !important;
    font-weight: 400 !important;
}

.required-star {
    color: #B30000;
    margin-left: 2px;
}

.input-with-toggle {
    position: relative;
}

.input-with-toggle {
    position: relative;
}

    .input-with-toggle input {
        padding-right: 30px;
    }

.eye-toggle {
    position: absolute;
    right: 40px;
    cursor: pointer;
    width: 20px;
    height: 20px;
    background: url(/StaticFiles/icons/eye-off.svg) no-repeat center center;
    background-size: cover;
    margin-top: 38px;
}

    .eye-toggle.visible {
        background: url('/StaticFiles/icons/eye.svg') no-repeat center center;
        background-size: cover;
    }

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}


.card {
    background: #FFFFFF 0% 0% no-repeat padding-box;
}
.navbar {
    padding: 0 !important;
    height: 60px;
}
.navbar-brand {
    font-weight: 700 !important;
    font-size: 20px !important;
    color: #222222 !important;
}
.navlogo {    
    max-height:60px !important;
    max-width:90px !important;
    height: 60px;
    width: auto;
}
.divnavlogo {
    max-width: 90px;
    min-width: 90px;
    height: 60px;
    max-height: 60px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}

.navbar-light .navbar-nav .nav-link {
    color: rgba(0, 0, 0, .9);
}