html {
    background-color: #f5f5f5;
    height: 100vh;
}

body {
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}



.parent-container {
    height: 100px;
    background: white;
}

.no-border {
    border: unset !important;
}

:root {
    --primary-color: #64AA45; /* Set your desired primary color here */
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: unset;
}

    .btn-primary:hover {
        background-color: #356620;
        border-color: unset;
    }

    .btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show > .btn-primary.dropdown-toggle {
        background-color: #32621E;
        border-color: unset;
    }

    .btn-primary.focus, .btn-primary:focus {
        background: #32621E;
        box-shadow: 0px 0px 0px 4px rgba(100, 170, 69, 0.5) !important;
        border-color: unset;
    }

    .btn-primary.disabled, .btn-primary:disabled {
        background-color: rgba(100, 170, 69, 0.6);
        border-color: unset;
    }

.text-primary {
    color: var(--primary-color) !important;
}

.form-control:focus {
    background: #FFFFFF;
    border: 1px solid #64AA45;
    box-shadow: 0px 0px 0px 4px rgba(100, 170, 69, 0.5);
}

.form-control.error {
    border: 1px solid #BA1A1A;
}

    .form-control.error:focus {
        border: 1px solid #BA1A1A;
        box-shadow: 0px 0px 0px 4px rgba(186, 26, 26, 0.5);
    }

a:hover {
    color: var(--primary-color);
}

input:-internal-autofill-selected {
    /* Prevent changing the background color */
    background-color: inherit !important;
    -webkit-text-fill-color: inherit !important;
}

.text-danger {
    color: #BA1A1A !important;
}











.header_logo img {
    max-width: 250px;
}

.header {
    background-color: #f8f9fa;
    padding: 10px 15px;
    border-bottom: solid 1px #dddddd;
}

.footer {
    background-color: #343a40;
    color: rgba(255,255,255,.5);
    padding: 15px 15px;
    /*position: fixed;*/
    bottom: 0;
    width: 100%;
    height: 80px;
    padding-top: 25px;
}

    .footer span {
        color: white;
    }
/* The hero image */
.hero-image {
    /* Use "linear-gradient" to add a darken background effect to the image (photographer.jpg). This will make the text easier to read */
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("./images/lights.jpg");
    /* Set a specific height */
    height: 250px;
    /* Position and center the image to scale nicely on all screens */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

/* Place text in the middle of the image */
.hero-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    width: 100%;
}


.event_page {
    background-color: #ffffff;
    position: relative;
    top: -80px;
}

.event_title, .event_desc {
    color: #ffffff;
}

#success-alert {
    display: none;
}

#error-alert {
    display: none;
}

#warning-alert {
    display: none;
}

label.error {
    color: red;
}

label.warning {
    color: orange;
}

.alert-container {
    position: fixed;
    top: 5px;
    z-index: 1999;
    right: 5px;
    width: 300px;
}

.hidden {
    display: none !important;
}

.sso-navbar {
    background-image: url('/assets/images/navbar-background.jpg');
    height: 51px;
}

.sso-login-container {
    margin-top: 100px
}


.sso-border-radius {
    border-radius: 10px;
}

.container {
    text-align: start;
}

#login-container {
    position: relative;
    width: 100%;
    height: 100%;
}

#login-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.login-card-body {
    padding: 16px !important;
}

.login-title {
    margin-top: 30px;
    margin-bottom: 40px;
}

.login-username-form-group {
    margin-bottom: 24px;
}

.login-password-form-group {
    margin-bottom: 45px;
}

.login-form {
}

.forgot-password-label {
    color: #111111;
    text-decoration: underline;
}

.forgot-password-div {
    text-align: end;
    margin-top: 5px
}

.w-100 {
    width: 100%;
}

.language-change-label {
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 37px;
    cursor: pointer;
}

    .language-change-label:hover {
        color: var(--primary-color);
    }

.logo-div-right {
    padding-top: 9px;
    float: right;
}

.language-div-left {
    padding-top: 31px;
    float: left;
    margin-left: 18px;
}

.language-div-left-no-user {
    padding-top: 31px;
    float: left;
    margin-left: 18px;
}

.logo-div-left {
    padding-top: 9px;
    float: left;
}

.language-div-right {
    padding-top: 31px;
    float: right;
    margin-right: 18px;
}

.language-div-right-no-user {
    padding-top: 31px;
    float: right;
    margin-right: 18px;
}

@media (max-width: 991px) {
    #forgot-password-img {
        display: none;
    }
}

h1, h2, h3, h4, h5, h6 {
    color: #111111;
    font-weight: 600;
}

.forgot-password-hint {
    color: #bdbdbd;
}

.form-group label {
    color: #474747;
}

.forgot-password-username-form-group {
    margin-bottom: 48px;
}


.otp-input {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    direction: ltr;
}

    .otp-input input {
        width: 50px;
        height: 50px;
        font-size: 20px;
        text-align: center;
        margin: 0 6px;
        border-radius: 10px;
        border: 1px solid #BDBDBD;
    }

        .otp-input input:focus {
            border: 1px solid var(--primary-color);
        }



.otp-input-2fa {
    display: flex;
    justify-content: center;
    margin-top: 32px;
    margin-bottom: 32px;
    direction: ltr;
}

    .otp-input-2fa input {
        width: 64px;
        height: 64px;
        font-size: 20px;
        text-align: center;
        margin: 0 6px;
        border-radius: 10px;
        border: 1px solid #BDBDBD;
    }

        .otp-input-2fa input:focus {
            border: 1px solid var(--primary-color);
        }


.resend-reset-code {
    cursor: pointer;
    text-decoration: underline;
}

    .resend-reset-code:hover {
        color: #111111 !important;
    }


.not-received-code-div {
    margin-top: 10px;
}

.reset-password-form-group {
    margin-top: 24px;
    margin-bottom: 24px;
}

.reset-password-btn {
    margin-top: 16px
}

.reset-password-title-div {
    margin-bottom: 24px;
    color: #111111;
}

.reset-password-title-1 {
    font-size: 24px;
}

.reset-password-title-2 {
    font-weight: bold;
}

.back-to-login-label {
    cursor: pointer;
}

    .back-to-login-label:hover {
        color: var(--primary-color);
    }

.reset-password-container {
    margin-top: 60px;
}



/*Mobile Responsive*/

@media (max-width: 450px) {
    .otp-input input {
        margin: 0 4px;
    }

    .otp-input {
        margin-top: 0px;
    }

    .main-logo {
        width: 240px
    }

    .parent-container {
        height: 90px;
    }

    .reset-password-container {
        margin-top: 40px
    }

    .reset-password-title-1 {
        font-size: 20px;
    }

    .reset-password-form-group {
        margin-top: 28px;
        margin-bottom: 28px;
    }

    .sso-login-container {
        margin-top: 40px
    }

    .login-title h2 {
        font-size: 24px
    }

    .forgot-password-hint {
        font-size: 14px
    }

    .login-title {
        margin-top: 0px;
    }

    .otp-input-2fa input {
        width: 50px;
        height: 50px;
    }

    .sync-users-icon {
        position: relative;
        top: -34px;
    }

    .active-directory-card-title {
        font-size: 16px !important;
    }

    .create-step-main-container nav {
        padding-bottom: 30px !important;
    }

    .create-footer-buttons button.btn-lg {
        padding: .375rem .75rem !important;
        font-size: 1rem !important;
        line-height: 1.5 !important;
        border-radius: .25rem !important;
    }

    .active-directory-div {
        display: grid;
    }

        .active-directory-div div.form-check {
            padding-left: 0.5rem !important;
            padding-right: 0.5rem !important;
        }

    .application-card .card-header .application-name {
        font-size: 16px !important;
        max-width: 95% !important;
    }

    .application-card .card-header {
        height: auto !important;
    }
}

@media (max-width: 380px) {

    .main-logo {
        width: 220px
    }

    .users-title {
        font-size: 1.75rem;
    }
}


/*
.alert-dismissible .close {
    top: 12px;
}*/

.alert-success {
    min-height: 40px;
    color: #43A047;
}

.alert-danger {
    min-height: 40px;
    color: #BA1A1A;
}

.alert-warning {
    min-height: 40px;
}


input::placeholder {
    color: #BDBDBD !important; /* Change the placeholder color */
    font-size: 14px !important; /* Change the placeholder text size */
}

input.big-placeholder::placeholder {
    color: #BDBDBD !important; /* Change the placeholder color */
    font-size: 20px !important; /* Change the placeholder text size */
    text-align: center;
}

input.big-placeholder {
    text-align: center;
}


label.error {
    color: #BA1A1A !important;
}


.form-group label.error {
    display: none !important;
}





.pswd_info {
    position: absolute;
    width: inherit;
    padding: 15px;
    background: #fefefe;
    font-size: .875em;
    border-radius: 5px;
    box-shadow: 0 1px 3px #ccc;
    border: 1px solid #ddd;
    display: none;
    text-align: start;
    z-index: 1;
    min-width: 250px;
    margin-top: 10px;
}

    .pswd_info h4 {
        margin: 0 0 10px 0;
        padding: 0;
        font-weight: normal;
    }

    .pswd_info::before {
        content: "\25B2";
        position: absolute;
        top: -12px;
        left: 45%;
        font-size: 14px;
        line-height: 14px;
        color: #ddd;
        text-shadow: none;
        display: block;
    }

.invalid-password {
    /*background: url(../images/invalid.png) no-repeat 0 50%;*/
    line-height: 24px;
    color: #ec3f41;
}

.valid-password {
    /*background: url(../images/valid.png) no-repeat 0 50%;*/
    line-height: 24px;
    color: #3a7d34;
}



.show-hide-password {
    position: absolute;
    cursor: pointer;
    margin-top: 43px;
    right: 26px;
}


.show-hide-password-ar {
    position: absolute;
    cursor: pointer;
    margin-top: 43px;
    left: 26px;
}


#error-label {
    font-size: 20px;
    display: none;
}

.container-2fa {
    padding: 24px;
    background: white;
    border-radius: 10px;
    margin-top: 50px
}


.code-2fa {
    word-break: break-word;
}

.content-2fa {
    margin-top: 24px;
    color: #474747;
    font-size: 16px
}

.content-validation-2fa {
    display: flex;
    justify-content: center;
    align-items: center;
}

.validation-2fa-img {
    margin-bottom: 16px;
}

.content-title-2fa {
    color: #BDBDBD;
}

.users-table-container {
    background: white;
    border-radius: 10px;
    overflow-x: auto;
    padding: 0px;
}

    .users-table-container .users-table-div {
        min-width: 900px;
        margin: 16px;
    }

    .users-table-container .search-users-div {
        margin: 16px;
    }

        .users-table-container .search-users-div .search-users-input {
            height: 36px;
            background-color: #F5F5F5;
            border-radius: 4px;
            border: unset;
            max-width: 356px;
            display: initial;
        }





    .users-table-container table tr {
        min-height: 48px
    }

        .users-table-container table tr th.status-th {
            min-width: 70px;
        }

        /* .users-table-container table tr td {
            padding-top: 24px;
            padding-bottom: 16px;
        }*/

        .users-table-container table tr td:first-child {
            padding-right: 12px
        }

        .users-table-container table tr th {
            background: #F5F5F5;
            color: #474747;
            font-size: 14px;
            font-weight: 600;
        }

        .users-table-container table tr.row-tr {
            border-bottom: 0.5px solid #EEEEEE;
            cursor: pointer;
        }

            .users-table-container table tr.row-tr:last-child {
                border-bottom: unset;
            }


[dir="rtl"] .users-table-container table tr th:first-child {
    border-radius: 0px 10px 10px 0px;
    padding: 12px;
}

[dir="rtl"] .users-table-container table tr th:last-child {
    border-radius: 10px 0px 0px 10px;
}

[dir="ltr"] .users-table-container table tr th:first-child {
    border-radius: 10px 0px 0px 10px;
    padding: 12px;
}

[dir="ltr"] .users-table-container table tr th:last-child {
    border-radius: 0px 10px 10px 0px;
}

.user-active-status {
    background: rgba(67, 160, 71, 0.2);
    border-radius: 10px;
    height: 32px;
    color: #43A047;
    padding-top: 3px;
}

.user-inactive-status {
    background: rgba(229, 57, 53, 0.2);
    border-radius: 10px;
    height: 32px;
    color: #E53935;
    padding-top: 3px;
}

.user-locked-status {
    background: rgba(229, 57, 53, 0.2);
    border-radius: 10px;
    height: 32px;
    color: #F2BE15;
    padding-top: 3px;
}


[dir="rtl"] .icon-search {
    padding-right: 40px !important;
    background: url("../../assets/images/icons/search-icon.svg") no-repeat right 14px;
    background-size: 20px;
    background-position: calc(100% - 12px);
}

[dir="ltr"] .icon-search {
    padding-left: 40px !important;
    background: url("../../assets/images/icons/search-icon.svg") no-repeat left 14px;
    background-size: 20px;
    background-position: 10px calc(100% - 7px);
}



hr {
    border-top: 1px solid #EEEEEE;
}

.user-single-chart-count .user-single-chart-div {
    background: white;
    border-radius: 10px;
    height: 84px;
    cursor: pointer
}

    .user-single-chart-count .user-single-chart-div:hover {
        box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.06);
    }

.user-single-chart-count #total-count-div.selected {
    border: 1px solid var(--primary-color)
}

.user-single-chart-count #active-count-div.selected {
    border: 1px solid #43A047
}

.user-single-chart-count #inactive-count-div.selected {
    border: 1px solid #BDBDBD
}

.user-single-chart-count #lockout-count-div.selected {
    border: 1px solid #F2BE15
}

.user-single-chart-title {
    font-size: 32px;
    font-weight: 600;
    padding: 16px;
}

.user-single-chart-active-subtitle {
    font-size: 12px;
    font-weight: 600;
    padding: 16px;
    color: #43A047
}

.user-single-chart-total-subtitle {
    font-size: 12px;
    font-weight: 600;
    padding: 16px;
    color: var(--primary-color);
}

.user-single-chart-icon-ar {
    float: left;
    position: absolute;
    left: 32px;
    top: 16px;
}

.user-single-chart-icon {
    float: left;
    position: absolute;
    right: 32px;
    top: 16px;
}

.user-single-chart-inactive-subtitle {
    font-size: 12px;
    font-weight: 600;
    padding: 16px;
    color: #BDBDBD
}

.user-single-chart-lockout-subtitle {
    font-size: 12px;
    font-weight: 600;
    padding: 16px;
    color: #F2BE15
}

.user-lockout-status {
    background: rgba(242, 187, 9, 0.2);
    border-radius: 10px;
    height: 28px;
    color: #F2BB09
}


.users-header-div {
    margin-top: 10px;
    margin-bottom: 20px;
}

.users-title {
    display: contents;
}

[dir="rtl"] .add-user-btn {
    float: left;
    height: 46px;
}

[dir="ltr"] .add-user-btn {
    float: right;
    height: 46px;
}

#main-tabs {
    border: unset;
    justify-content: center;
}

    #main-tabs li {
        outline: unset;
    }

        #main-tabs li button {
            font-size: 16px;
            background: unset;
            border: unset;
            outline: unset;
        }

            #main-tabs li button.active {
                color: var(--primary-color);
                border-bottom: 3px solid var(--primary-color);
            }

[dir="rtl"] .edit-profile-picture-btn {
    position: absolute;
    top: 120px;
    background: white;
    border-radius: 30px;
    right: 40px;
    width: 100px;
}

[dir="ltr"] .edit-profile-picture-btn {
    position: absolute;
    top: 120px;
    background: white;
    border-radius: 30px;
    left: 40px;
    width: 100px;
}

.user-info-row {
    margin-top: 32px;
}

    .user-info-row .user-info-div {
        margin-bottom: 32px;
    }

.user-info-sub-div {
    display: grid;
    border-bottom: 0.5px solid #BDBDBD;
    padding-bottom: 16px;
}

    .user-info-sub-div label {
        font-size: 20px;
        font-weight: 500;
        color: #474747;
    }

    .user-info-sub-div span {
        font-size: 16px;
        color: #BDBDBD;
    }

.user-digital-signature-div {
    display: grid;
    padding-bottom: 16px;
}


    .user-digital-signature-div label {
        font-size: 20px;
        font-weight: 500;
        color: #474747;
    }

    .user-digital-signature-div span {
        font-size: 16px;
        color: #BDBDBD;
    }

.user-digital-signature-sub-div {
    background: white;
    border-radius: 10px;
    height: 250px;
}


    .user-digital-signature-sub-div .user-signature {
        width: 100%;
        height: 100%;
    }


#add-signature-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

[dir="rtl"] #edit-signature-btn {
    position: absolute;
    left: 0;
    margin-top: 16px;
    margin-left: 32px;
    cursor: pointer;
}

[dir="ltr"] #edit-signature-btn {
    position: absolute;
    right: 0;
    margin-top: 16px;
    margin-right: 32px;
    cursor: pointer;
}

[dir="rtl"] #control-signature-edit-div .btn-success {
    float: left;
}

[dir="ltr"] #control-signature-edit-div .btn-success {
    float: right;
}

[dir="rtl"] #control-signature-edit-div .btn-danger {
    float: left;
}

[dir="ltr"] #control-signature-edit-div .btn-danger {
    float: right;
}

[dir="rtl"] .user-info-sub-div #change-password-btn {
    position: absolute;
    left: 0;
    margin-top: 32px;
    margin-left: 16px;
    cursor: pointer;
}

[dir="ltr"] .user-info-sub-div #change-password-btn {
    position: absolute;
    right: 0;
    margin-top: 32px;
    margin-right: 16px;
    cursor: pointer;
}

#device-accordion .card .card-header {
    background: white;
}

#token-accordion .card .card-header {
    background: white;
    height: 68px;
    padding-top: 12px;
}

[dir="rtl"] .device-id-span {
    padding-top: 8px;
    float: left;
    font-size: 12px;
    color: #474747;
}


[dir="ltr"] .device-id-span {
    padding-top: 8px;
    float: right;
    font-size: 12px;
    color: #474747;
}


.device-id-name {
    font-size: 16px;
    color: #111111;
    font-weight: 400;
    display: inline-grid;
}

.property-name {
    max-width: 150px !important;
    font-size: 14px;
    font-weight: 600;
    color: #111111;
}

.property-value {
    color: #474747;
    font-size: 14px;
    font-weight: 400;
}

.devices-table tbody tr td {
    border-top: unset !important;
}

[dir="rtl"] .delete-device-btn {
    float: left;
}

[dir="ltr"] .delete-device-btn {
    float: right;
}

@media (max-width: 767px) {
    [dir="rtl"] .delete-device-btn {
        position: relative;
        float: left;
        margin-top: 16px;
        margin-left: 16px;
    }

    [dir="ltr"] .delete-device-btn {
        position: relative;
        float: right;
        margin-top: 16px;
        margin-right: 16px;
    }

    .hide-mobile {
        display: none !important;
    }

    #main-tabs {
        justify-content: inherit;
    }

    .create-user-header-back {
        padding-top: 14px;
    }
}

.authentication-logs-table thead tr td {
    color: #474747;
    font-size: 20px;
    padding-bottom: 24px;
}

.authentication-logs-table tbody tr td {
    padding-top: 12px;
    padding-bottom: 12px;
    background: white;
    border-bottom: 24px solid whitesmoke;
}


[dir="rtl"] .authentication-logs-table tbody tr td:first-child {
    padding: 12px;
}

[dir="ltr"] .authentication-logs-table tbody tr td:first-child {
    padding: 12px;
}

[dir="rtl"] .modal-header .close {
    margin: -1rem -1rem -1rem -1rem !important;
}

.authentication-logs-name {
    color: #474747;
    font-size: 20px;
}

.authentication-logs-value {
    color: #111111;
    font-size: 16px;
}

.modal-body {
    text-align: start;
}

.modal-footer {
    display: block;
}

.auth-logs-div {
    overflow-x: auto;
}

.auth-logs-sub-div {
    min-width: 900px;
}

[dir="rtl"] .user-info-sub-div #cancel-change-password {
    cursor: pointer;
    text-decoration: underline;
    position: absolute;
    left: 0;
    margin-top: 32px;
    margin-left: 16px;
    cursor: pointer;
}

[dir="ltr"] .user-info-sub-div #cancel-change-password {
    cursor: pointer;
    text-decoration: underline;
    position: absolute;
    right: 0;
    margin-top: 32px;
    margin-right: 16px;
    cursor: pointer;
}

.change-password-tips label {
    font-size: 20px;
    font-weight: bold;
    color: #111111;
}

.change-password-tips span {
    font-size: 16px;
    color: #474747;
}

#change-password-div {
    background: white;
    border-radius: 10px;
}

.card-header {
    border: unset;
}

.card {
    border: unset;
}

.log-status-span {
    font-size: 12px;
    font-weight: 500;
}


[dir="rtl"] .header-profile {
    float: left;
    margin-top: 22px;
}

[dir="ltr"] .header-profile {
    float: right;
    margin-top: 22px;
}

.header-profile .header-profile-img-div {
    height: 56px;
    background: #F2F2F7;
    border-radius: 30px;
    text-align: center;
    cursor: pointer;
}

[dir="rtl"] .header-profile .header-profile-img-div .header-profile-img {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    margin-top: 8px;
    float: left;
    margin-left: 12px;
}

[dir="ltr"] .header-profile .header-profile-img-div .header-profile-img {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    margin-top: 8px;
    float: right;
    margin-right: 12px;
}

.header-profile .header-profile-name {
    color: #474747;
    font-weight: 600;
    font-size: 18px;
    top: 11px;
    position: relative;
    max-width: 86px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
}

[dir="rtl"] .header-profile .header-profile-down-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    margin-top: 8px;
    float: right;
    margin-right: 12px;
}

[dir="ltr"] .header-profile .header-profile-down-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    margin-top: 8px;
    float: left;
    margin-left: 12px;
}

.mobile-language-view {
    display: none;
}

@media (max-width: 550px) {
    .header-profile .header-profile-name {
        display: none;
    }

    .header-profile .header-profile-img-div {
        width: auto;
    }

    .language-div-left {
        display: none;
    }

    .language-div-right {
        display: none;
    }

    .mobile-language-view {
        display: block;
    }
}


.profile-dropdown-content {
    display: none;
    position: absolute;
    width: 200px;
    padding: 12px 16px;
    z-index: 1;
    background: #FFFFFF;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.04), 0px 8px 16px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
}

.header-profile:hover .profile-dropdown-content {
    display: block;
}

.header-profile-alt-img {
    width: 40px;
    height: 40px;
    margin-top: 8px;
    float: left;
    margin-left: 12px;
    background: rgba(100, 170, 69, 0.2);
    /* Primary */
    border: 1px solid #64AA45;
    border-radius: 50px;
    text-align: center;
}

    .header-profile-alt-img span {
        font-weight: 600;
        font-size: 16px;
        color: var(--primary-color);
        position: relative;
        top: 6px;
    }

.profile-dropdown-content-div {
    display: flex;
    align-items: center;
    vertical-align: middle;
    justify-content: center;
}

.profile-dropdown-content-name {
    color: #474747;
    font-size: 18px;
    font-weight: 600;
}

[dir="rtl"] .profile-dropdown-content-profile-div {
    text-align: start;
    margin-top: 20px;
}

[dir="ltr"] .profile-dropdown-content-profile-div {
    text-align: center;
    margin-top: 20px;
}

.profile-dropdown-content-profile-div span {
    color: #474747;
    font-weight: 400;
    font-size: 14px;
    cursor: pointer;
}


.profile-dropdown-content-hr {
    margin-top: 12px;
    margin-bottom: 12px;
}

[dir="rtl"] .profile-dropdown-content-logout-div {
    text-align: start;
}

[dir="ltr"] .profile-dropdown-content-logout-div {
    text-align: center;
}

.profile-dropdown-content-logout-div span {
    color: #474747;
    font-weight: 400;
    font-size: 14px;
    cursor: pointer;
}

.profile-dropdown-content-name-div {
    margin-top: 4px;
}

.home-container {
    margin-top: 10px;
}

.application-name {
    font-weight: 700;
    font-size: 24px;
    color: #474747;
}

.application-div {
    background: #FFFFFF;
    border-radius: 10px;
    height: 175px;
    cursor: pointer;
}

    .application-div:hover {
        box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.06);
    }

.main-applications-div {
    margin-top: 30px;
}

.header-profile-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.application-logo {
    max-width: 80px;
    max-height: 70px;
}

.application-logo-div {
    height: 91.48px;
}

.application-name {
    color: #474747;
    font-size: 24px;
    font-weight: bold;
    text-overflow: ellipsis;
    overflow: hidden;
    display: inline-block;
    max-width: 90%;
    white-space: nowrap;
}

.application-description {
    color: #BDBDBD;
    font-size: 16px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: inline-block;
    max-width: 90%;
    white-space: nowrap;
}

.create-step-main-container {
    margin-top: 10px;
}


.switch {
    position: relative;
    display: inline-block;
    width: 35px;
    height: 20px;
    float: right;
}

    /* Hide default HTML checkbox */
    .switch input {
        display: none;
    }


.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 15px;
        width: 15px;
        left: 4px;
        bottom: 2.9px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

input.primary:checked + .slider {
    background: #43A047;
}


input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(11px);
    -ms-transform: translateX(11px);
    transform: translateX(11px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }

.create-step-sub-container {
    background: white;
    border-radius: 10px;
    margin-top: 30px;
}

.create-user-title {
    color: #111111;
    font-weight: 700;
    font-size: 24px;
}


[dir="rtl"] .create-back-arrow {
    float: right;
    position: relative;
    top: -30px;
    cursor: pointer;
}

[dir="ltr"] .create-back-arrow {
    float: left;
    position: relative;
    top: -30px;
    cursor: pointer;
    transform: rotate(180deg);
}

[dir="rtl"] .create-user-switch-div {
    display: inline-block;
    float: left;
    position: relative;
    top: -30px;
}

[dir="ltr"] .create-user-switch-div {
    display: inline-block;
    float: right;
    position: relative;
    top: -30px;
}

.create-user-switch-label {
    color: #111111;
    font-weight: 500;
    font-size: 16px;
}

.form-control-lg {
    padding: 0.15rem 0.75rem;
}

.mp-15 {
    margin-bottom: 15px;
}


[dir="rtl"] .filter-multi-select > .dropdown-toggle::before {
    margin-left: 0.255em;
    position: absolute;
    left: 12px;
    top: 22px;
}

[dir="ltr"] .filter-multi-select > .dropdown-toggle::before {
    top: 22px;
    position: relative;
    right: 12px;
    float: right;
}



[dir="rtl"] .filter-multi-select > .dropdown-menu {
    right: 0%;
    float: right;
    text-align: right;
}

[dir="ltr"] .filter-multi-select > .dropdown-menu {
    right: 0%;
}

[dir="rtl"] .filter-multi-select .dropdown-item .custom-control-label::before {
    right: -1.5rem;
}

[dir="rtl"] .filter-multi-select > .dropdown-menu > .filter > button {
    left: 2rem;
    right: unset;
}

[dir="rtl"] .filter-multi-select > .viewbar > .selected-items > .item {
    padding: 0px 0.5em 0px 0px
}

[dir="rtl"] .filter-multi-select .dropdown-item .custom-control-label::after {
    left: unset;
    right: -1.5rem;
}

.filter-multi-select > .viewbar {
    min-height: 46px;
    padding: 0px;
}

    .filter-multi-select > .viewbar .placeholder {
        position: relative;
        top: 12px;
        right: 12px;
        left: 12px;
    }

    .filter-multi-select > .viewbar > .selected-items > .item {
        border-radius: 4px;
        background-color: #111111;
        font-size: 16px;
        color: white;
        font-weight: normal;
        margin: 4px;
        height: 38px;
    }

.filter-multi-select .dropdown-item .custom-checkbox:checked ~ .custom-control-label::before, .filter-multi-select .dropdown-item .custom-checkbox:indeterminate ~ .custom-control-label::before {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    box-shadow: unset;
}

.application-card {
    margin-bottom: 16px;
    border-radius: 10px;
}

    .application-card .card-header {
        height: 68px;
    }

    .application-card.selected-application {
        border: 1px solid #43A047;
    }



    .application-card .applciation-details {
        background: rgb(245, 245, 245);
        border-radius: 10px;
    }



    .application-card .card-header .switch {
        top: 12px;
    }

[dir="ltr"] .application-card .card-header .switch {
    float: left !important;
}

.application-card .card-header .application-name {
    position: relative;
    top: 6px;
    font-size: 20px;
    color: #111111;
    padding-left: 12px;
    padding-right: 12px;
}

[dir="rtl"] .ui-datepicker {
    left: unset !important;
    right: 145px !important;
}

.ui-datepicker-next span.ui-icon-circle-triangle-e {
    content: ""
}

.form-control-lg {
    height: 46px !important;
}

.sso-navbar div a {
    color: white;
}

.user-profile-container {
    margin-top: 10px;
}

.user-profile-main-info {
    border-radius: 10px;
}

.user-profile-header-div {
    text-align: start;
    margin-bottom: 15px;
}

.user-profile-change-password-label {
    font-size: 14px;
}

.default-link {
    text-decoration: underline;
    cursor: pointer;
    color: #474747;
}

    .default-link:hover {
        color: var(--primary-color) !important;
    }

.user-profile-status-label {
    float: right;
    cursor: pointer;
    color: #474747;
}

    .user-profile-status-label.active {
        float: right;
        cursor: pointer;
        color: var(--primary-color);
    }

.user-profile-pic {
    width: 125px;
    height: 125px;
}

.edit-user-profile-picture-btn {
    position: absolute;
    top: 170px;
    background: #F7F7F7;
    border-radius: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
}

.active-directory-card {
    border-radius: 10px;
}

    .active-directory-card .card-header {
        background: #FFFFFF;
        border-radius: 10px;
        height: 68px;
        padding-top: 22px;
    }

.active-directory-card-title {
    font-weight: 600;
    font-size: 20px;
    color: #111111;
}

.cursor-p {
    cursor: pointer;
}

.active-directory-details {
    margin-top: 40px;
}


.applications-div-title {
    font-weight: 600;
    font-size: 24px;
    color: #111111;
}

.user-application-card {
    margin-bottom: 16px;
    border-radius: 10px;
}


    .user-application-card .card-header {
        background: #FFFFFF;
        border-radius: 10px;
        min-height: 68px;
        padding-top: 22px;
    }

        .user-application-card .card-header .switch {
            top: 8px;
        }

[dir="ltr"] .user-application-card .card-header .switch {
    float: left;
}

[dir="rtl"] .user-application-status-label {
    float: left;
}


[dir="ltr"] .user-application-status-label {
    float: right;
}

.user-application-card.selected-application {
    border: 1px solid #43A047;
}

.user-application-card.selected_application_error {
    border: 1px solid #BA1A1A;
}

.user-application-name.disable-cursor {
    color: #BDBDBD;
}


.user-application-name {
    color: #111111;
    font-weight: 400;
    font-size: 20px;
    padding-left: 12px;
    padding-right: 12px;
}


.nav-tabs.application-tabs .nav-link {
    border: unset;
    background: unset;
    color: #474747;
    outline: unset;
}

    .nav-tabs.application-tabs .nav-item.show .nav-link, .nav-tabs.application-tabs .nav-link.active {
        background: unset;
        border: unset;
        color: #64AA45;
        border-bottom: 4px solid #64AA45;
    }

.nav-tabs.application-tabs .nav-item {
    width: auto !important;
}

.nav-tabs {
    border: unset;
}

    .nav-tabs.application-tabs {
        position: relative;
        margin-bottom: 0;
        border-bottom: 1px solid #EEEEEE;
        padding-right: 0;
        padding-left: 0px;
        margin-top: 32px;
    }

.device-accordion .card {
    border-radius: 10px;
    margin-bottom: 24px;
}

    .device-accordion .card .card-header {
        border-radius: 10px;
    }

#token-accordion .card {
    border-radius: 10px;
    margin-bottom: 24px;
}

    #token-accordion .card .card-header {
        border-radius: 10px;
    }



#active-directory-accordion {
    margin-bottom: 40px;
}

.applications-div #accordion {
    margin-top: 20px;
}

.user-devices-title {
    font-weight: 600;
    font-size: 24px;
    color: #111111;
}

.user-devices-div {
    margin-top: 40px;
}

    .user-devices-div #device-accordion {
        margin-top: 20px
    }

#device-accordion .card {
    border-radius: 10px;
    margin-bottom: 24px;
}

    #device-accordion .card .card-header {
        border-radius: 10px;
        height: 68px;
        padding-top: 22px;
    }

.user-tokens-div {
    margin-top: 40px;
}

    .user-tokens-div #token-accordion {
        margin-top: 20px;
    }

.user-signature-div {
    height: 107px;
    border: 1px dashed #BDBDBD;
    border-radius: 10px;
    margin-top: 20px;
    text-align: center;
    padding-top: 20px;
}

    .user-signature-div .user-signature-title {
        margin-bottom: 8px;
    }

        .user-signature-div .user-signature-title span {
            font-weight: 700;
            font-size: 16px;
            color: #474747;
        }

#delete-signature-img {
    position: absolute;
    left: 30px;
    margin-top: -10px;
    cursor: pointer;
}

.user-profile-container {
    margin-bottom: 40px;
}

#user-profile-control-div {
    height: 80px;
    background: white;
    width: 100%;
    bottom: 0px;
    left: 0;
    position: fixed;
    box-shadow: rgba(0, 0, 0, 0.05) 0px -4px 10px;
}

    #user-profile-control-div div div {
        text-align: end;
        padding: 17px;
    }

#user-profile-save-btn {
    width: 160px
}

#signature-image {
    max-width: 100%;
    max-height: 100%;
}
/*input[type='radio'] {
    accent-color: var(--primary-color)
}

#active-directory-options input[type='checkbox'] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary-color);
    position: relative;
    top: 4px;
}*/

input[type='radio'] {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    outline: none;
    border: 3px solid gray;
    position: relative;
    top: 4px;
}

    input[type='radio']:before {
        content: '';
        display: block;
        width: 60%;
        height: 60%;
        margin: 20% auto;
        border-radius: 50%;
    }

    input[type="radio"]:checked:before {
        background: var(--primary-color);
    }

    input[type="radio"]:checked {
        border-color: var(--primary-color);
    }

input[type='checkbox'] {
    width: 20px;
    height: 20px;
    position: relative;
    top: 4px;
    accent-color: var(--primary-color);
}


[dir="rtl"] .user-status-switch {
    float: left;
}

[dir="ltr"] .user-status-switch {
    float: right;
}

[dir="ltr"] #delete-signature-img {
    right: 30px;
    left: unset;
}

[dir="rtl"] .active-directory-title-status {
    float: left;
}

[dir="ltr"] .active-directory-title-status {
    float: right;
}

.breadcrumb {
    padding: 0;
    background: unset;
}

.breadcrumb-item + .breadcrumb-item::before {
    padding-left: 0.5rem;
}

.breadcrumb {
    padding: 0;
    background: unset;
}




.lds-ellipsis {
    display: inline-block;
    width: 80px;
    height: 80px;
    z-index: 1099;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

    .lds-ellipsis div {
        position: absolute;
        top: 33px;
        width: 15px;
        height: 15px;
        border-radius: 50%;
        background: var(--primary-color);
        animation-timing-function: cubic-bezier(0, 1, 1, 0);
    }

        .lds-ellipsis div:nth-child(1) {
            left: 8px;
            animation: lds-ellipsis1 0.6s infinite;
        }

        .lds-ellipsis div:nth-child(2) {
            left: 8px;
            animation: lds-ellipsis2 0.6s infinite;
        }

        .lds-ellipsis div:nth-child(3) {
            left: 32px;
            animation: lds-ellipsis2 0.6s infinite;
        }

        .lds-ellipsis div:nth-child(4) {
            left: 56px;
            animation: lds-ellipsis3 0.6s infinite;
        }

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(24px, 0);
    }
}

.users-table-div table thead {
    position: sticky;
    top: 0px;
}

*::-webkit-scrollbar-track {
    background: #E8E8E8;
    border-radius: 100px;
}

*::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background: #E8E8E8;
}

*::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #c5c5c5;
}

.access-denied-container {
    margin-top: 50px;
}

.access-denied-title {
    font-weight: 600;
    font-size: 20px;
    color: #111111;
}

.access-denied-sub-title {
    font-weight: 400;
    font-size: 16px;
    color: #474747;
}

.access-denied-details {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: space-around;
}

.access-denied-links {
    margin-top: 32px;
    display: grid;
}

    .access-denied-links a {
        font-weight: 700;
        font-size: 16px;
        color: #111111;
        margin-bottom: 8px;
    }

.h-100 {
    height: 100%;
}

.back-to-app-div {
    position: relative;
    top: 8px;
}

    .back-to-app-div span {
        font-weight: 700;
        font-size: 20px;
        color: white;
        margin-right: 12px;
        margin-left: 12px;
        cursor: pointer;
    }

    .back-to-app-div img {
        cursor: pointer;
    }




.table-scroll {
    display: block;
    empty-cells: show;
    border-spacing: 0;
}

    .table-scroll thead {
        display: block;
        width: 100%;
    }

    .table-scroll tbody {
        display: block;
        position: relative;
        width: 100%;
        overflow-y: auto;
        height: 400px;
    }

    .table-scroll tr {
        width: 100%;
        display: flex;
    }

    .table-scroll td {
        padding-top: 24px !important;
        padding-bottom: 20px !important;
    }

    .table-scroll td, .table-scroll th {
        flex-basis: 100%;
        flex-grow: 2;
        display: block;
        padding: 1rem;
    }

    /* Other options */

    .table-scroll.small-first-col td:first-child,
    .table-scroll.small-first-col th:first-child {
        flex-basis: 20%;
        flex-grow: 1;
    }


.body-half-screen {
    max-height: 50vh;
}

.small-col {
    flex-basis: 10%;
}

.more-options-icon {
    width: 40px;
    height: 40px;
    display: inline-grid;
    border-radius: 50%;
    position: relative;
    top: -6px;
}

    .more-options-icon:hover {
        background: #F5F5F5;
    }


.more-options-dropdown-content {
    display: none;
    position: absolute;
    width: 230px;
    padding: 18px 18px;
    z-index: 1;
    background: #FFFFFF;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.04), 0px 8px 16px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    margin-right: 18px;
    margin-left: 18px;
    margin-top: 30px;
}

    .more-options-dropdown-content span {
        font-weight: 400;
        font-size: 14px;
        color: #474747;
    }

.more-options-icon:hover .more-options-dropdown-content {
    display: block;
}

#change-password-btn {
    text-decoration: unset !important;
}

#unlock-user-btn {
    text-decoration: unset !important;
}

[dir="rtl"] .sync-users-icon {
    float: left;
    cursor: pointer;
}

[dir="ltr"] .sync-users-icon {
    float: right;
    cursor: pointer;
}

[dir="rtl"] #application-user-profile-link {
    float: left;
}


[dir="ltr"] #application-user-profile-link {
    float: right;
}

[dir="ltr"] #back-to-app-img {
    transform: rotate(180deg);
}

#reset-2fa-btn {
    text-decoration: unset;
}

#end-user-sessions-btn {
    text-decoration: unset;
}

.application-roles-table {
    border-collapse: separate;
    border-spacing: 0 16px;
}

    .application-roles-table thead tr th {
        padding-bottom: 12px;
        font-weight: 700;
        font-size: 14px;
        color: #474747;
    }

[dir="rtl"] .application-roles-table thead tr th:first-child {
    padding-right: 32px;
}

[dir="ltr"] .application-roles-table thead tr th:first-child {
    padding-left: 32px;
}


.application-roles-table tbody tr {
    height: 50px;
    box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

    .application-roles-table tbody tr td .switch {
        margin-bottom: unset;
    }

[dir="ltr"] .application-roles-table tbody tr td .switch {
    float: left;
}

.application-roles-table tbody tr td {
    font-weight: 500;
    font-size: 14px;
    color: #474747;
}

    .application-roles-table tbody tr td .form-check-input {
        cursor: pointer;
    }

.application-roles-table tbody tr.selected {
    background: rgba(100, 170, 69, 0.4);
    border: 0.5px solid #64AA45;
}

    .application-roles-table tbody tr.selected td {
        border: 0.5px solid #64AA45;
        border-radius: unset;
        border-left: unset;
        border-right: unset;
    }

[dir="rtl"] .application-roles-table tbody tr td:first-child {
    padding-right: 32px;
}

[dir="ltr"] .application-roles-table tbody tr td:first-child {
    padding-left: 32px;
}

[dir="ltr"] .application-roles-table tbody tr td.default-role-radio {
    text-align: center;
}

[dir="rtl"] .application-roles-table tbody tr.selected td:first-child {
    border: 0.5px solid #64AA45;
    border-radius: 0px 10px 10px 0px;
    border-left: unset;
}

[dir="rtl"] .application-roles-table tbody tr.selected td:last-child {
    border: 0.5px solid #64AA45;
    border-radius: 10px 0px 0px 10px;
    border-right: unset;
}


[dir="ltr"] .application-roles-table tbody tr.selected td:first-child {
    border: 0.5px solid #64AA45;
    border-radius: 10px 0px 0px 10px;
    border-right: unset;
}

[dir="ltr"] .application-roles-table tbody tr.selected td:last-child {
    border: 0.5px solid #64AA45;
    border-radius: 0px 10px 10px 0px;
    border-left: unset;
}

.application-roles-table-create tbody tr {
    border-radius: 10px;
}

    .application-roles-table-create tbody tr td {
        background: white;
    }


[dir="rtl"] .application-roles-table-create tbody tr td:first-child {
    border-radius: 0px 10px 10px 0px;
    border-left: unset;
}

[dir="rtl"] .application-roles-table-create tbody tr td:last-child {
    border-radius: 10px 0px 0px 10px;
    border-right: unset;
}


[dir="ltr"] .application-roles-table-create tbody tr td:first-child {
    border-radius: 10px 0px 0px 10px;
    border-right: unset;
}

[dir="ltr"] .application-roles-table-create tbody tr td:last-child {
    border-radius: 0px 10px 10px 0px;
    border-left: unset;
}

[dir="rtl"] #step1-next-btn {
    float: left;
}

[dir="ltr"] #step1-next-btn {
    float: right;
}

    [dir="ltr"] #step1-next-btn img {
        transform: rotate(180deg);
    }


[dir="ltr"] #step2-next-btn {
    float: right;
}

[dir="rtl"] #step2-next-btn {
    float: left;
}

[dir="ltr"] #step2-next-btn img {
    transform: rotate(180deg);
}

[dir="ltr"] #step3-next-btn {
    float: right;
}

[dir="rtl"] #step3-next-btn {
    float: left;
}

[dir="ltr"] #step3-next-btn img {
    transform: rotate(180deg);
}

[dir="ltr"] #back-btn {
    float: right;
}


[dir="rtl"] #back-btn {
    float: left;
}

    [dir="rtl"] #back-btn img {
        transform: rotate(180deg);
    }


#collapse-active-directory .card-body label {
    color: #474747
}

[dir="rtl"] #edit-active-directory-location {
    float: left;
    font-size: 14px;
}

[dir="ltr"] #edit-active-directory-location {
    float: right;
    font-size: 14px;
}

.active-directory-location-label {
    height: 46px;
    border: 1px solid #ced4da;
    border-radius: .3rem;
}

#delete-from-active-directory-btn {
    text-decoration: unset;
    cursor: pointer;
}

#link-to-active-directory-btn {
    text-decoration: unset;
}

#show-hide-ad-new-password {
    margin-top: 12px;
}

.device-id-name-block {
    display: contents;
}

.fill-profile-class {
    color: #474747;
}

.is-mobile-class {
    padding: 0px;
}


.text-black {
    color: black;
}

a {
    color: var(--primary-color);
}


.username-overflow {
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile-responsive-row {
    justify-content: center;
}

.file-upload-div {
    height: 115px;
    border-radius: 10px;
    border: 1px dashed #BDBDBD;
    text-align: center;
    padding-top: 8px;
    cursor: pointer;
    margin-bottom: 16px;
}

    .file-upload-div:hover {
        background: #F0F7ED
    }

    .file-upload-div .file-upload-sub-label {
        color: #BDBDBD;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px;
    }

    .file-upload-div .file-upload-label {
        color: #474747;
        text-align: right;
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }

.attribute-file-attachment-name {
    color: #474747;
    text-align: right;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}


.upload-files-label {
    color: #BDBDBD;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.multifiles-listing-div {
    display: flex;
}

.multifiles-listing-sub-div {
    padding-top: 5px;
    min-width: 50%;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.webex-token-alert {
    min-height: 62px;
    cursor: pointer;
    margin-bottom: 24px;
    border-radius: 10px;
    border: 1px solid var(--Warning, #FCD509);
    background: #FFF;
    border-right: 10px solid var(--Warning, #FCD509);
    text-align: center;
}

.webex-token-alert-icon {
    padding: 15px;
}

    .webex-token-alert-icon img {
        position: relative;
        top: -2px;
    }

.webex-token-alert-msg {
    color: #474747;
    font-size: 20px;
    padding-left: 8px;
    padding-right: 8px;
}

.webex-token-alert-action {
    color: #F2BB09;
    font-size: 20px;
}


[dir="rtl"] input.form-control {
    direction: rtl;
}

.user-email-td {
    display: flex !important;
}

.user-email-td-icon {
    padding-bottom: 7px;
    padding-left: 4px;
    padding-right: 4px;
    max-width: 32px;
}

.users-table-container table tr.row-tr:hover {
    background: #F5F5F5;
}


#device-accordion .card .card-header:hover {
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.06);
}

#token-accordion .card .card-header:hover {
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.06);
}

button.btn.btn-default.edit-profile-picture-btn:hover {
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.06);
}

button.btn.btn-default.edit-user-profile-picture-btn:hover {
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.06);
}

.sso-error > div {
    border: 1px solid #BA1A1A !important;
}


[dir="rtl"] .application-logo-icon {
    width: 30px;
    margin-right: 12px;
}

[dir="ltr"] .application-logo-icon {
    width: 30px;
    margin-leftt: 12px;
}

#active-directory-options {
    display: flex;
    flex-wrap: wrap;
}


.otp-input input::-webkit-outer-spin-button,
.otp-input input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

.otp-input input[type=number] {
    -moz-appearance: textfield; /* Firefox */
}


#loading-label {
    position: fixed;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99999;
    background: var(--primary-color);
    color: white;
    border-radius: 12px;
    padding: 10px;
}

[dir="rtl"] #edit-user-phone-number-btn {
    float: inline-end;
    cursor: pointer;
    position: absolute;
    left: 32px;
}

[dir="ltr"] #edit-user-phone-number-btn {
    float: inline-end;
    cursor: pointer;
    position: absolute;
    right: 32px;
}

[dir="rtl"] #user-mobile-number-save-btn {
    position: absolute;
    top: 50%;
    left: 55px;
    transform: translateY(-50%);
    margin-top: -30px;
    cursor: pointer;
}

[dir="ltr"] #user-mobile-number-save-btn {
    position: absolute;
    top: 50%;
    right: 55px;
    transform: translateY(-50%);
    margin-top: -30px;
    cursor: pointer;
}

#user-mobile-number-input {
    direction: ltr !important;
    float: right !important;
}
#mobile-number-span-id {
    direction: ltr !important;
    width: fit-content !important;
}
[dir="rtl"] #user-mobile-number-cancel-btn {
    position: absolute;
    top: 50%;
    left: 22px;
    transform: translateY(-50%);
    margin-top: -30px;
    cursor: pointer;
}

[dir="ltr"] #user-mobile-number-cancel-btn {
    position: absolute;
    top: 50%;
    right: 22px;
    transform: translateY(-50%);
    margin-top: -30px;
    cursor: pointer;
}

.fw-bold{
    font-weight: bold;
}

#delete-from-sso-btn {
    text-decoration: unset;
    cursor: pointer;
}
@media (min-width: 1200px){
    .container {
        max-width: 1300px !important;
    }
}

[dir="rtl"] .float-btn-left{
    float: left !important;
}
[dir="ltr"] .float-btn-left {
    float: right !important;
}

[dir="rtl"] .float-btn-right {
    float: right !important;
}

[dir="ltr"] .float-btn-right {
    float: left !important;
}