body {
    height: 100%;
    font-family: var(--font-family);
    color: var(--body-font-color);
    font-size: var(--commonfontsize);
    background-color: var(--bodycolor);
}

html {
    /*background-image: url('../img/BG-Main.jpg');*/
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

body.login_page .error-page {
    display: flex;
    flex-direction: column;
    height: calc(100% - 131px);
    width: 100%;
    overflow: hidden;
}

html {
    height: 100%;
}

.btn-info {
    color: #fff;
    background-color: #1e9ff2;
    border-color: #1e9ff2;
}

    .btn-info:hover {
        background-color: #0c84d1 !important;
    }

.flexbox-container {
   /* min-height: calc(100vh - 30px);*/
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

    .flexbox-container .flexbox-child {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        height: 100%;
        max-height: 100%;
        min-height: 100%;
        width: 100%;
        position: relative;
        padding: 20px;
    }

        .flexbox-container .flexbox-child .login_footer {
            position: absolute;
            bottom: 0;
            right: 0;
        }

            .flexbox-container .flexbox-child .login_footer img {
                margin: 20px;
            }

    .flexbox-container .card {
        padding: 30px 30px 25px;
        border-radius: 0.5rem;
        width: 100%;
        max-width: 530px;
    }

    .flexbox-container input.form-control {
        border: 1px solid #ced4da;
        padding-right: 30px;
        font-size: var(--commonfontsize);
    }

.was-validated .form-control.input-validation-error {
    border-color: #dc3545;
}

.form-group {
    margin-bottom: 10px;
}

.flexbox-container .card-body {
    padding: 0;
}

.content-wrapper {
    height: 100%;
}

.dx-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 10px;
}

    .dx-logo img {
        max-width: 175px;
        margin: 10px 0;
    }

label.Usernameclass {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 0;
    margin-bottom: 5px;
}

/*form.form.was-validated span.la {
    color: #dc3545;
}*/

/* The container */
.containerbox {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 0;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: var(--commonfontsize);
}

    /* Hide the browser's default checkbox */
    .containerbox input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 1px solid #1e9ff2;
}

/* On mouse-over, add a grey background color */
.containerbox:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.containerbox input:checked ~ .checkmark {
    background-color: var(--themecolor);
    border-color: var(--themecolor);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.containerbox input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.containerbox .checkmark:after {
    left: 6px;
    top: 3px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.login-text {
    text-align: center;
}

    .login-text h1 {
        font-size: 22px;
        margin-bottom: 0;
        text-transform: uppercase;
    }

.fonticon-container {
    position: relative;
}

    .fonticon-container span.la {
        position: absolute;
        right: 1.5rem;
        top: 10px;
        font-size: 1.2rem;
    }

.login-form {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.logo_3di {
    position: absolute;
    bottom: 17px;
    right: 15px;
}

    .logo_3di img {
        width: 50px;
    }

.line-on-side {
    border-bottom: 1px solid #e3e3e3;
    line-height: .1em;
    margin: 10px 0 15px;
}

    .line-on-side span {
        background: #FFF;
        padding: 0 30px;
        color: #4c4c4c;
        font-size: 14px;
        font-weight: 300;
    }

.btn {
    font-size: var(--commonfontsize);
}

    .btn.btn-social {
        padding: 0.5rem 1rem;
    }

.btn-outline-facebook {
    border: 1px solid #3B5998 !important;
    color: #3B5998;
}

.btn-social, .btn-social-icon {
    position: relative;
    padding-left: 32px !important;
    text-align: left;
    font-size: 1em;
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

    .btn-social-icon > :first-child, .btn-social > :first-child {
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        min-width: 28px;
        line-height: 2.3rem;
        font-size: 1.5em;
        text-align: center;
        border-right: 1px solid rgba(0, 0, 0, 0.2);
    }

.btn-outline-google {
    border: 1px solid #DD4B39 !important;
    color: #DD4B39;
}

.btn-outline-twitter {
    border: 1px solid #38a2d0 !important;
    color: #38a2d0;
}

.pl-1, .px-1 {
    padding-left: 1rem !important;
}



.social-body a.btn {
    width: 100%;
    font-size: 14px;
    padding: 5px 4px;
    margin: 0px 5px 0 0;
}

.social-body div + div {
    margin-left: 10px;
}

.social-body div:last-child a.btn {
    margin-right: 0px !important;
}

.social-body a.btn:last-child {
    margin-right: 0;
}


.social-text {
    margin-left: 3px;
}

.social-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    margin: 25px 0;
    justify-content: center;
}


a.ForgotPasswordlink {
    color: inherit;
    padding-left: 5px;
    margin-left: auto;
    font-size: var(--commonfontsize);
}


.form-group.row.no-margin {
    margin-bottom: 0 !important;
}

.btn-outline-primary {
    color: #0559a1;
    background-color: transparent;
    background-image: none;
    border-color: #0559a1;
}

    .btn-outline-primary:hover {
        background-color: #0559a1;
    }

.form-group.row.nomargin {
    margin-bottom: 0 !important;
}

.login-text.Registrationtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}


a.back_login {
    position: absolute;
    right: 0;
    font-size: 14px
}


@media (max-width: 768px) {
    body {
        height: auto !important;
    }

    .flexbox-container .flexbox-child .login_footer {
        position: static !important;
    }

    .flexbox-container .flexbox-child {
        height: auto !important;
        max-height: auto !important;
        min-height: auto !important;
        padding: 15px;
    }
}

@media (max-width: 580px) {
    .login-text h3 {
        font-size: 1.5rem !important;
        margin-bottom: 0 !important;
    }

    .social-body {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }

        .social-body a.btn {
            margin-right: 0px !important;
            margin-bottom: 10px !important;
        }

    .flexbox-container .card {
        padding: 15px !important;
    }

    .dx-logo {
        margin-bottom: 1rem !important;
    }

        .dx-logo img {
            max-width: 190px !important;
        }
}

.btn.btn-block {
    padding: 12px 10px;
}
/*.form-control:focus, .btn-primary:focus, .btn-primary.focus, a:focus, .btn:focus, .btn.focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 81,47, 0.5);
}*/

.font-small-3 {
    font-size: calc(var(--commonfontsize) + 2px);
}
.setup-Mfa #formControl-Box #InputCode,
.setup-Mfa #formControl-Box #Email {
    display: block;
    width: 100%;
    height: 40px;
    padding: 0.375rem rem 0.75rem;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    outline: none;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.setup-Mfa .modal-header {
    width: 100%;
    max-width: 560px;
    height: 60px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    padding: 0 30px !important;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}

    .setup-Mfa .modal-header .card-subtitle {
        font-size: 18px;
        margin-top: 0px;
    }

.setup-Mfa .card {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    max-width: 560px !important;
}



.loginBtn {
    height: 40px !important;
    border-radius: 8px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1.1px;
}

.setup-Mfa .funkyradio-primary label {
    font-size: 16px;
}

.setup-Mfa .card-subtitle .subHeading {
    font-size: 16px;
    color: #5a5a5a;
    font-weight: 500;
}

.setup-Mfa .card-subtitle .path {
    font-size: 17px;
    font-weight: 500;
    margin-left: 10px;
}

    .setup-Mfa .card-subtitle .path::before {
        content: '';
        position: absolute;
        top: 10px;
        height: 4px;
        width: 4px;
        border-radius: 50%;
        background: #000;
        display: flex;
    }

.setup-Mfa .qrBox {
    border: 1px solid #888888;
    border-radius: 12px;
    padding: 3px;
}

.setupMFA-leftBox .subHeading {
    font-size: 16px;
    font-weight: 500;
}

.setupMFA-leftBox .subHeading1 {
    font-size: 16px;
}

.setupMFA-leftBox .lightFont {
    color: #9e9e9e;
}

.setup-Mfa .note {
    background: #f8f8f8;
    border: 1px dashed #8c8c8c;
    border-radius: 10px;
    margin: 10px 0px;
    padding: 5px 8px;
}

.borderRadius {
    border-radius: 10px !important;
}