@import url('fancybox.css');
@import url('../vendors/perfect-scrollbar/perfect-scrollbar.css');
@import url('../vendors/pincode/css/jquery-pincode-autotab.css');
@import url('../css/toastify.css');
@import url('../fontawesome-free-6.1.1-web/css/all.min.css');

@font-face {
    font-family: 'Almarai';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(../fonts/Brando-Arabic-ExtraLight.otf) format('opentype');
}

/* arabic */
@font-face {
    font-family: 'Almarai';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(../fonts/Brando-Arabic-Regular.otf) format('opentype');
}

/* arabic */
@font-face {
    font-family: 'Almarai';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(../fonts/Brando-Arabic-Bold.otf) format('opentype');
}

/* arabic */
@font-face {
    font-family: 'Almarai';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url(../fonts/Brando-Arabic-SemiBold.otf) format('opentype');
}

:root {
    --main-color: #0D614F;
    --main-color-2: 0, 82, 114;
    --main-color-3: 0, 82, 114;
    /*--main-color: #FFBF00;*/
    /*--second-color-2: 3, 148, 203;*/
    --dark-color: rgb(32, 32, 32);
    /*--dark-color-2: 32, 32, 32;*/
    /*--dark-color: #3F3F3F;*/
    --light-color: #BDBDBD;

    --black-color: rgba(28, 28, 28, 1);
    --green-color: #70D274;
    --blue-color: #00AFF0;
    --red-color: #FE5273;
    --yellow-color: #FDB44D;
    --purple-color: rgba(141, 39, 221, 1);
    --white-color: rgba(255, 255, 255, 1);
    --gray-color: rgb(249, 249, 249);

    /*-shadow : 0px 2px 4px rgba(0, 56, 56, 0.2);*/
    --shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 .5rem 1rem rgba(0, 0, 0, .15);
    --radius-sm: 3px;
    --radius-md: 10px;
    --radius-lg: 20px;

    --facebook: rgba(39, 76, 175, 1);
    --twitter: rgba(22, 174, 232, 1);
    --youtube: rgba(217, 43, 31, 1);
    --linkedin: rgba(0, 118, 164, 1);
    --instagram: rgba(211, 64, 131, 1);
    --whatsapp: rgb(37, 211, 102);

    --mandatory: rgb(248, 28, 7);
    --urgent: rgb(254, 82, 115);
    --low: rgb(168, 117, 255);
    --medium: rgb(20, 187, 193);
    --normal: rgb(126, 126, 126);


    --reading: #FD894D;
    --pending: #FFCC00;
    --declined: #F86D70;
    --accepted: #10B251;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 800;
    font-family: 'Almarai', sans-serif;
}

body {
    font-family: 'Almarai', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: var(--dark-color);
    background-color: #f5f6fa;
}

a,
a:hover {
    text-decoration: none;
    color: var(--main-color);
}

.bg-theme {
    background-color: var(--main-color);
}

.bg-theme-2 {
    background-color: var(--main-color);
}

.bg-green {
    background-color: var(--green-color);
}

.bg-blue {
    background-color: var(--blue-color);
}

.bg-red {
    background-color: var(--red-color);
}

.bg-yellow {
    background-color: var(--yellow-color);
}

.bg-purple {
    background-color: var(--purple-color);
}

.bg-gray {
    background-color: var(--gray-color) !important;
}

.text-theme {
    color: var(--main-color) !important;
}

.text-theme-2 {
    color: var(--main-color) !important;
}

.text-theme-light {
    color: var(--light-color) !important;
}

form.disabled {
    opacity: .75;
    pointer-events: none;
}

[class^="bi-"]::before,
[class*=" bi-"]::before {
    line-height: unset !important;
}

.badge {
    min-width: 95px;
    height: 35px;
    line-height: 25px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 400;
}

.badge-reading {
    background-color: var(--reading);
}

.badge-pending {
    background-color: var(--pending);
}

.badge-declined {
    background-color: var(--declined);
}

.badge-accepted {
    background-color: var(--accepted);
}

.badge-circle {
    min-width: 40px;
    max-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50% !important;
    display: inline-block;
}

.badge-reading {
    background-color: var(--reading);
}

.badge-pending {
    background-color: var(--pending);
}

.badge-declined {
    background-color: var(--declined);
}

.badge-accepted {
    background-color: var(--accepted);
}

.label-status {
    position: relative;
    padding-inline-start: 1rem;
}

.label-status::before {
    position: absolute;
    content: "";
    display: inline-block;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-inline-start: -1rem;
    background-color: #ccc;
}

.label-status-reading {
    color: var(--reading);
}

.label-status-pending {
    color: var(--pending);
}

.label-status-declined {
    color: var(--declined);
}

.label-status-accepted {
    color: var(--accepted);
}

.label-status-reading::before {
    background-color: var(--reading);
}

.label-status-pending::before {
    background-color: var(--pending);
}

.label-status-declined::before {
    background-color: var(--declined);
}

.label-status-accepted::before {
    background-color: var(--accepted);
}

/*------------------------------------------
    button
------------------------------------------*/

.btn {
    position: relative;
    overflow: hidden;
    padding: 0 2rem;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0px 15px 15px rgba(var(--main-color-2), 0.2);
    border-radius: 5px;
    transition: all ease-in-out .5s;
    outline: none !important;
    box-shadow: none !important;
}

.btn::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 25%;
    height: 100%;
    width: 50%;
    background-color: #fff;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    transition: all ease-in-out 0.5s;
    transform: scale(5, 5);
}

.btn:active::after {
    padding: 0;
    margin: 0;
    opacity: .2;
    transition: 0s;
    transform: scale(0, 0);
}

.btn-theme {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: var(--white-color) !important;
}

.btn-theme:hover,
.btn-theme:focus {
    background-color: rgb(var(--main-color-2), .8);
}

.btn-outline-theme {
    background-color: transparent;
    border-color: var(--main-color);
    color: var(--main-color) !important;
}

.btn-outline-theme:hover,
.btn-outline-theme:focus {
    background-color: var(--main-color);
    color: var(--white-color) !important;
}

.btn-light-theme {
    background-color: var(--white-color);
    border-color: var(--white-color);
    color: var(--main-color) !important;
}

.btn-light-theme:hover,
.btn-light-theme:focus {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: var(--white-color) !important;
}

.btn-secondary {
    background-color: #E2E2E2;
    border-color: #E2E2E2;
    color: var(--main-color);
}

.menu-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
}

.menu-btn .menu-btn-burger {
    width: 30px;
    height: 3px;
    background-color: var(--dark-color);
    border-radius: 5px;
    transition: all 0.5s ease-in-out;
}

.menu-btn .menu-btn-burger::before,
.menu-btn .menu-btn-burger::after {
    position: absolute;
    content: "";
    width: 30px;
    height: 3px;
    background-color: var(--dark-color);
    border-radius: 5px;
    transition: all 0.5s ease-in-out;
}

.menu-btn .menu-btn-burger::before {
    transform: translateY(-10px);
}

.menu-btn .menu-btn-burger::after {
    transform: translateY(10px);
}

.menu-btn:not(.collapsed) .menu-btn-burger {
    transform: translateX(-50px);
    background-color: transparent;
}

.menu-btn:not(.collapsed) .menu-btn-burger::before {
    transform: rotate(45deg) translate(35px, -35px);
}

.menu-btn:not(.collapsed) .menu-btn-burger::after {
    transform: rotate(-45deg) translate(35px, 35px);
}

/*------------------------------------------
    Navbar
------------------------------------------*/

.navbar {
    background-color: var(--white-color);
    padding: 0;
    height: 65px;
}

.navbar .navbar-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .navbar-container .nav {
    gap: 2rem;
}

.navbar .navbar-container .nav .nav-link {
    color: var(--dark-color);
    padding: 0;
    font-size: 16px;
}

.navbar .navbar-container .nav .nav-link i {
    font-size: 18px;
    color: var(--main-color);
}

.dropdown-toggle {
    position: relative;
}

.dropdown-notification .dropdown-toggle {
    padding-inline-end: 0;
    margin-inline-end: 1rem;
}

.dropdown-notification .dropdown-menu .dropdown-menu-items {
    position: relative;
    height: 400px;
}

.dropdown .dropdown-toggle::after {
    display: none;
}

.dropdown-notification .dropdown-toggle .notification_count {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red-color);
    position: absolute;
    top: -2px;
    right: -2px;
}

[dir="rtl"] .dropdown-notification .dropdown-toggle .notification_count {
    right: auto;
    left: -2px;
}

.dropdown-menu {
    max-width: 360px;
    margin-top: 1rem !important;
    border: none;
    font-size: 18px;
    color: var(--dark-color);
    padding: 1rem 0;
    box-shadow: 0 3px 12px 1px rgb(44 55 130 / 15%);
    border-top: 5px solid var(--main-color);
}

.dropdown-notification .dropdown-menu {
    min-width: 360px;
}

.dropdown-menu .dropdown-item,
.dropdown-menu a {
    display: block;
    font-size: 14px;
    padding: .75rem;
    border-bottom: 1px solid #ecf2ff;
}

.dropdown-menu a:last-child {
    border-bottom: 1px solid transparent;
}

.dropdown-item:hover {
    color: var(--main-color);
    background-color: transparent;
}

.dropdown-item:focus,
.dropdown-item.active,
.dropdown-item:active {
    color: #fff;
    background-color: var(--main-color);
}

.burger-btn {
    cursor: pointer;
}

/*
    User Box
*/
.user-box {
    display: flex;
    align-items: center;
}

.user-box .pic {
    min-width: 46px;
    width: 46px;
    height: 46px;
    overflow: hidden;
    border-radius: 50%;
    margin-inline-end: 1rem;
    border: 3px solid #D9D9D9;
}

.user-box .pic img {
    max-width: 46px;
    max-height: 46px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-box .name {
    font-size: 14px;
    color: var(--dark-color);
}

.dropdown-language .fa-angle-down,
.user-box .fa-angle-down {
    font-size: 14px !important;
    color: var(--dark-color) !important;
}

/*
    Notification Box
*/

.dropdown-notification .dropdown-item {
    padding-left: 0;
    padding-right: 0;
}

.dropdown-notification a:focus,
.dropdown-notification a.active,
.dropdown-notification .a:active {
    color: var(--main-color);
    background-color: var(--white-color);
}

.notification-box {
    display: flex;
    margin: 0 1rem;
}

.notification-box .dropdown-item {
    white-space: pre-wrap;
}

.notification-box .icon {
    min-width: 35px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    overflow: hidden;
    margin-inline-end: 1rem;
}

.notification-box .icon img {
    width: 30px;
}

.notification-box .content {
    display: block;
    width: 100%;
    font-size: 14px;
    color: var(--dark-color);
}

.notification-box .date {
    min-width: 50px;
    color: var(--dark-color);
    font-size: 13px;
}

.btn-change-lang {
    height: 24px;
    width: 24px;
    /*border-radius: 50%;*/
    overflow: hidden;
}

.btn-change-lang img {
    width: 100%;
}

/*------------------------------------------
    Section Auth
------------------------------------------*/

.section-auth {
    padding: 70px 0;
    display: flex;
    height: 100vh;
    align-items: center;
}

.section-auth .card {
    padding: 10% 8%;
    background-color: var(--white-color);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    border: none;
    max-width: 451px;
    margin: auto;
}

.section-title .logo {
    max-width: 130px;
    margin: 0 auto 2.5rem;
}

.section-title .title {
    color: #475057;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-title .sub-title {
    color: var(--dark-color);
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 1rem;
}

.section-title .info {
    color: var(--dark-color);
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 1rem;
}

.section-auth .btn {
    border-radius: 5px;
}

.form .form-label {
    font-size: 14px;
    font-weight: 400;
    color: var(--dark-color);
}

.form .forget-password {
    color: var(--main-color);
}

.form .form-control {
    min-height: 40px;
    border: 1px solid #c5c5c5;
    border-radius: 5px;
    padding: 0;
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: .8125rem;
}

.form .form-control::placeholder {
    color: #BDBDBD;
}

/*------------------------------------------
    Footer
    ------------------------------------------*/
footer {
    height: 50px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #7E7E7E;
    font-size: 14px;
    padding-inline-start: 270px;
}

/*------------------------------------------
    Sidebar
------------------------------------------*/
main {
    position: relative;
}

.sidebar-wrapper .sidebar-logo {
    display: flex;
    align-items: center;
    background-color: var(--main-color);
    width: 320px;
    height: 98px;
}

#sidebar.active .sidebar-wrapper {
    left: 0;
}

#sidebar:not(.active) .sidebar-wrapper {
    left: -270px;
}

[dir="rtl"] #sidebar.active .sidebar-wrapper {
    left: auto;
    right: 0;
}

[dir="rtl"] #sidebar:not(.active) .sidebar-wrapper {
    left: auto;
    right: -270px;
}

#sidebar:not(.active)~#main {
    margin-inline-end: 0;
}

.sidebar-wrapper {
    width: 270px;
    height: 100vh;
    position: fixed;
    z-index: 999;
    overflow-y: auto;
    background-color: var(--main-color);
    bottom: 0;
    transition: left 0.3s ease-out;
}

[dir="rtl"] .sidebar-wrapper {
    transition: right 0.3s ease-out;
}

.sidebar-wrapper .sidebar-header {
    position: relative;
    padding: 0;
    font-size: 2rem;
    font-weight: 700;
    /* height: 65px; */
    /* line-height: 65px; */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sidebar-wrapper .sidebar-header .d-flex {
    width: 100%;
}

.sidebar-wrapper .sidebar-header img {
    padding-inline-start: 20px;
    height: 33px;
}

.sidebar-wrapper .sidebar-toggler.x {
    position: absolute;
    right: 0;
    top: 0.5rem;
    display: none;
}

[dir="rtl"] .sidebar-wrapper .sidebar-toggler.x {
    right: auto;
    left: 0;
}

.sidebar-wrapper .menu {
    padding: 0;
}

.sidebar-wrapper .menu .dropdown-divider {
    border-top: 1px solid rgb(189 189 189 / 40%);
}

.sidebar-wrapper .menu .sidebar-link {
    display: block;
    font-size: 12px;
    display: flex;
    align-items: center;
    border-radius: 0;
    padding-inline-start: 20px;
    padding-inline-end: 20px;
    transition: all 0.5s;
    text-decoration: none;
    color: var(--white-color);
    height: 50px;
    line-height: 50px;
}

.sidebar-wrapper .menu .sidebar-link svg path {
    fill: var(--white-color);
}

.sidebar-wrapper .menu .active .sidebar-link svg path,
.sidebar-wrapper .menu .sidebar-link:hover svg path {
    fill: var(--main-color);
}

.sidebar-wrapper .menu .sidebar-link span {
    margin-inline-start: 13px;
}

.sidebar-wrapper .menu .sidebar-link:hover {
    background-color: var(--main-color-3);
    color: var(--light-color);
}

.sidebar-wrapper .menu .sidebar-item {
    list-style: none;
    position: relative;
}

.sidebar-wrapper .menu .sidebar-item.has-sub .sidebar-link:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f107";
    position: absolute;
    color: #fff;
    right: 20px;
    top: 0;
    display: block;
}

[dir="rtl"] .sidebar-wrapper .menu .sidebar-item.has-sub .sidebar-link:after {
    right: auto;
    left: 20px;
}

.sidebar-wrapper .menu .sidebar-item.active .sidebar-link:after,
.sidebar-wrapper .menu .sidebar-item.active .sidebar-link {
    background-color: var(--main-color-3);
    color: var(--light-color);
}

.sidebar-wrapper .menu .sidebar-item.active .sidebar-link span {
    color: var(--light-color);
}

/*.sidebar-wrapper .menu .sidebar-item.active .sidebar-link i,*/
/*.sidebar-wrapper .menu .sidebar-item.active .sidebar-link svg {*/
/*    fill: var(--white-color);*/
/*    color: var(--white-color);*/
/*}*/

.sidebar-wrapper .menu .submenu {
    list-style: none;
    display: none;
    transition: max-height 2s cubic-bezier(0, 0.55, 0.45, 1);
    overflow: hidden;
}

.sidebar-wrapper .menu .submenu.active {
    max-height: 999px;
    display: block;
}

.sidebar-wrapper .menu .submenu .submenu-item,
.sidebar-wrapper .menu .submenu .submenu-item.active {
    position: relative;
}

.sidebar-wrapper .menu .submenu .submenu-item::before {
    display: inline-block;
    position: absolute;
    content: "";
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background-color: #fff;
    opacity: 0;
    transition: all 0.3s ease;
}

.sidebar-wrapper .menu .submenu .submenu-item.active::before,
.sidebar-wrapper .menu .submenu .submenu-item:hover::before {
    opacity: 1;
    width: 10px;
}

.sidebar-wrapper .menu .submenu .submenu-item.active>a {
    color: #ffffff;
}

.sidebar-wrapper .menu .submenu .submenu-item a {
    padding: 0.75rem 2rem;
    display: block;
    color: #ffffff;
    font-size: 13px;
    transition: all 0.3s;
}

.sidebar-wrapper .menu .submenu .submenu-item a:hover {
    margin-inline-start: 0rem;
}

@media screen and (max-width: 1199px) {
    .sidebar-wrapper {
        position: absolute;
        left: -270px;
    }

    [dir="rtl"] .sidebar-wrapper {
        left: auto;
        right: -270px;
    }

    .sidebar-wrapper .sidebar-toggler.x {
        display: block;
    }

    #sidebar:not(.active)~#main,
    #sidebar.active~#main {
        margin-inline-end: 0;
        margin-inline-start: 0;
    }

    #sidebar:not(.active)~footer,
    #sidebar.active~footer {
        padding: 0;
    }

}

.navbar-logo {
    width: 320px;
    height: 98px;
    display: flex;
    align-items: center;
    background-color: var(--main-color);
}

.navbar-logo img {
    padding-inline-start: 48px;
}

.sidebar-header .short-logo {
    display: none;
}

/*------------------------------------------
    Main
------------------------------------------*/
#main {
    padding-bottom: 60px;
    background-color: #f5f6fa;
    margin-inline-start: 270px;
    transition: all .3s ease;
}

#sidebar:not(.active)~#main {
    margin-inline-start: 0;
}

@media screen and (max-width: 1199px) {
    #main {
        margin-inline-start: 0;
    }

    #sidebar:not(.active)~footer,
    #sidebar.active~footer {
        padding: 0;
    }

}

section {
    padding: 0 30px;
}

/*------------------------------------------
    Flags Priority
------------------------------------------*/

.flags-priority {
    min-height: 60px;
    display: block;
    align-items: center;
    background-color: #f5f6fa;
    align-items: center;
    justify-content: space-between;
}

.flags-priority .title {
    color: var(--main-color);
    font-size: 20px;
    margin: 0;
    font-weight: 700;
    text-transform: capitalize;
}

.flags-priority .flag-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.flags-priority .flag-container .flag-box {
    color: #000000;
    font-size: 14px;
    margin: 0;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    height: 10px;
    line-height: 20px;
    text-transform: capitalize;
    border-inline-end: 1px solid var(--light-color);
}

.flags-priority .flag-container .flag-box:first-child {
    padding-inline-start: 0;
}

.flags-priority .flag-container .flag-box:last-child {
    border-inline-end: 1px solid transparent;
    padding-inline-end: 0;
}

.flags-priority .flag-container .flag-box .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    margin-inline-end: .75rem;
}

.flags-priority .flag-container .flag-box.mandatory .dot {
    background-color: var(--mandatory);
}

.flags-priority .flag-container .flag-box.urgent .dot {
    background-color: var(--urgent);
}

.flags-priority .flag-container .flag-box.medium .dot {
    background-color: var(--medium);
}

.flags-priority .flag-container .flag-box.low .dot {
    background-color: var(--low);
}

.flags-priority .flag-container .flag-box.normal .dot {
    background-color: var(--normal);
}

.mandatory {
    color: var(--mandatory);
}

.urgent {
    color: var(--urgent);
}

.low {
    color: var(--low);
}

.medium {
    color: var(--medium);
}

.normal {
    color: var(--normal);
}

/*------------------------------------------
   progress section
------------------------------------------*/
.progress-section {
    margin: 50px 30px;
    background-color: #fff;
    border-radius: 5px;
}

.progress-box {
    text-align: center;
    padding-block-start: 40px;
    padding-block-end: 40px;
}

.progress-circle {
    width: 153px;
    height: 153px;
    line-height: 153px;
    background: none;
    position: relative;
    background-color: #fff;
    border-radius: 50%;
    margin: auto;
}

.progress-circle::after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 10px solid #F3F3F3;
    position: absolute;
    top: 0;
    left: 0;
}

.progress-circle>span {
    width: 50%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    z-index: 1;
}

.progress-circle .progress-left {
    left: 0;
}

.progress-circle .progress-bar {
    width: 100%;
    height: 100%;
    background: none;
    border-width: 10px;
    border-style: solid;
    position: absolute;
    top: 0;
}

.progress-circle .progress-left .progress-bar {
    left: 100%;
    border-top-right-radius: 80px;
    border-bottom-right-radius: 80px;
    border-left: 0;
    -webkit-transform-origin: center left;
    transform-origin: center left;
}

.progress-circle .progress-right {
    right: 0;
}

.progress-circle .progress-right .progress-bar {
    left: -100%;
    border-top-left-radius: 80px;
    border-bottom-left-radius: 80px;
    border-right: 0;
    -webkit-transform-origin: center right;
    transform-origin: center right;
}

.progress-box.blue .icon svg path {
    fill: var(--blue-color);
}

.progress-box.green .icon svg path {
    fill: var(--green-color);
}

.progress-box.red .icon svg path {
    fill: var(--red-color);
}

.progress-box.yellow .icon svg path {
    fill: var(--yellow-color);
}

.progress-box .border-theme {
    border-color: var(--main-color);
}

.progress-box.blue .border-theme {
    border-color: var(--blue-color);
}

.progress-box.green .border-theme {
    border-color: var(--green-color);
}

.progress-box.red .border-theme {
    border-color: var(--red-color);
}

.progress-box.yellow .border-theme {
    border-color: var(--yellow-color);
}

.progress-box .progress-title {
    font-size: 18px;
    color: var(--normal);
    font-weight: 300;
    margin-top: 10px;
}

.progress-box .progress-percent {
    font-size: 16px;
    color: var(--normal);
    margin-bottom: 0;
    font-weight: 300;
}

.progress-box .progress-percent span {
    font-size: 24px;
}

.progress-box.blue .progress-percent span {
    color: var(--blue-color);
}

.progress-box.green .progress-percent span {
    color: var(--green-color);
}

.progress-box.red .progress-percent span {
    color: var(--red-color);
}

.progress-box.yellow .progress-percent span {
    color: var(--yellow-color);
}

/*------------------------------------------
   Filtter Section
------------------------------------------*/

.filtter-section {
    min-height: 60px;
    display: block;
    align-items: center;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.filtter-section .title {
    color: var(--dark-color);
    font-size: 22px;
    margin: 0;
    font-weight: 700;
    text-transform: capitalize;
}

.filtter-section .filtter-form .form-select,
.filtter-section .filtter-form .form-control {
    min-width: 164px;
    min-height: 36px;
    height: 36px;
    border: 1px solid #BDBDBD;
    border-radius: 5px;
    font-size: .8125rem;
    box-shadow: none !important;
}

.filtter-section .filtter-form .btn {
    width: 36px;
    height: 36px;
    line-height: 36px;
    padding: 0;
    font-size: .8125rem;
    border-radius: 5px;
}

/*------------------------------------------
    Table Theme
------------------------------------------*/

.table-theme .table {
    border-spacing: 0;
}

.table-theme .table .text-gray {
    color: #7E7E7E;
}

.table-theme th:not(.td-space),
.table-theme td:not(.td-space) {
    vertical-align: middle;
    padding: 0 1rem;
    background-color: var(--white-color);
    height: 58px;
    font-size: 14px;
    text-align: center;
    min-width: 100px;
    border-bottom: 1px solid #ebedf3;
}

.table-theme tr th:first-child,
.table-theme tr td:first-child {
    border-radius: 4px 0 0 4px;
}

.table-theme tr th:last-child,
.table-theme tr td:last-child {
    border-radius: 0 4px 4px 0;
}

[dir="rtl"] .table-theme tr th:first-child,
[dir="rtl"] .table-theme tr td:first-child {
    border-radius: 0 4px 4px 0;
}

[dir="rtl"] .table-theme tr th:last-child,
[dir="rtl"] .table-theme tr td:last-child {
    border-radius: 4px 0 0 4px;
}

.table-theme .pagination {
    margin: 20px 0;
    gap: 10px;
}

.table-theme .pagination .page-link {
    width: 38px;
    height: 38px;
    line-height: 38px;
    border-radius: 50%;
    color: #ABAFB3;
    font-size: 14px;
    font-weight: 700;
    padding: 0;
    text-align: center;
    border: none;
    box-shadow: none;
}

.table-theme .pagination .page-link:hover,
.table-theme .pagination .page-link:active,
.table-theme .pagination .page-link.active,
.table-theme .pagination .active .page-link {
    background-color: var(--main-color);
    color: var(--white-color);
}

.table-theme .badge:not(.badge-circle) {
    min-width: 75px;
    height: 25px;
    line-height: 18px;
    border-radius: 25px;
    font-size: 12px;
}

.btn-action {
    margin-inline-start: .5rem;
}

.btn-action svg path,
.btn-view svg path {
    fill: var(--white-color);
}

.btn-action.disabled svg path,
.btn-view.disabled svg path {
    fill: var(--light-color);
}

.progress-timer {
    padding: 0;
}

.progress-timer .progress-circle {
    width: 50px;
    height: 50px;
    line-height: 50px;
    color: var(--dark-color);
}

.progress-timer .progress-circle::after {
    border: 3px solid #F3F3F3;
}

.progress-timer .progress-circle .progress-bar {
    border-width: 3px
}

.progress-timer .progress-value {
    width: 50px;
}

.progress-timer .time-box {
    color: var(--dark-color);
    font-size: 9px;
}

.progress-timer .time-box .time {
    width: 50px;
    height: 15px;
    display: block;
    color: var(--main-color);
}

.progress-timer .time-box .from {
    font-size: 14px;
    font-weight: 800;
}

.progress-timer .time-box .mins {
    font-size: 8px;
    color: var(--main-color);
}


/*------------------------------------------
    modal
------------------------------------------*/

.disabled {
    opacity: .75;
    pointer-events: none !important;
}

.modal-content {
    border: none;
    border-radius: 5px;
    background-color: #FBFBFB;
}

.modal-header {
    padding: 0 1rem;
    min-height: 67px;
}

.modal-header .modal-title {
    font-size: 16px;
}

.attachments-policy {
    display: flex;
    gap: 1rem;
    padding: 0 15px;
}

.attachments-policy .attachments-policy-box {
    display: block;
}

.pdfobject-container {
    height: 760px;
    height: 600px;
}

.fancybox__container {
    z-index: 10501;
}

.form-check-input:checked {
    background-color: var(--main-color);
    border-color: var(--main-color);
    box-shadow: none;
}

.modal .modal-option {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.modal .modal-option .modal-option-box {
    width: 160px;
    height: 20px;
    display: flex;
    align-items: center;
    margin-inline-end: 1rem;
}

.modal .modal-option .form-check .form-check-label {
    font-size: 14px;
    color: var(--dark-color);
}

.modal .modal-option .btn-action .btn-submet {
    width: 160px;
    height: 40px;
    line-height: 40px;
}

.btn-action .btn {
    width: 140px;
    height: 40px;
    line-height: 40px;
    font-weight: 400;
}

.modal+.modal {
    z-index: 1062;
}

.modal-backdrop+.modal-backdrop {
    z-index: 1061;
}

.warning-modal-box {
    padding: 30px;
    text-align: center;
}

.warning-modal-box .title {
    font-size: 20px;
    color: var(--main-color);
    text-transform: capitalize;
}

.warning-modal-box .sub-title {
    font-size: 18px;
    color: var(--main-color);
    text-transform: capitalize;
}

.warning-modal-box .quiz-result {
    font-size: 24px;
    font-weight: 800;
    color: var(--main-color);
    text-transform: capitalize;
}

.warning-modal-box .warning-pic {
    max-width: 290px;
    max-height: 230px;
    margin: 30px auto;
}

.warning-modal-box .info {
    font-size: 16px;
    font-weight: 300;
    color: var(--main-color);
    margin-bottom: 0;
}

.warning-modal-box .btn {
    margin-top: 50px;
    width: 160px;
}

.modal .btn-light {
    background-color: #E9E9E9;
}

.modal .form {
    padding: 0 1rem;
}

.modal-option-box {
    max-width: 210px;
    width: 100%;
    padding-inline-start: 1.5rem;
    font-size: 13px;
}

.warning-modal-box .pincode {
    max-width: 450px;
}

.query-answer {
    background: #F6FAFF;
    padding: 1rem;
    margin-bottom: 1rem;
}

.query-answer .answer-title {
    color: var(--dark-color);
    font-size: 14px;
    margin-bottom: 10px;
}

.query-answer .answer-info {
    color: var(--dark-color);
    font-size: 13px;
    margin-bottom: 0;
    font-weight: 300;
}


#quiz-question-modal .modal-content {
    background-color: #EDEDED;
}

#quiz-question-modal .modal-content {
    background-color: #F5F6FA;
}

.quiz-question .question-box,
.quiz-question .answer-box {
    box-shadow: var(--shadow);
    background-color: var(--white-color);
    padding: 26px;
    border-radius: 4px;
}

.quiz-question .question-box {
    text-align: start;
    margin-top: 50px;
    margin-bottom: 50px;
}

.quiz-question .question-box .question-count {
    position: relative;
    font-size: 26px;
    color: var(--white-color);
    margin-bottom: 0;
    display: inline-block;
    width: 240px;
    padding: 10px;
    background: linear-gradient(-90deg, rgba(0, 118, 164, 1) 0%, rgba(0, 42, 59, 1) 100%);
    border-radius: 0 25px 25px 25px;
    margin-bottom: 16px;
    padding-inline-start: 50px;
    margin-inline-start: -50px;
    z-index: 1;
}

[dir="rtl"] .quiz-question .question-box .question-count {
    border-radius: 25px 0 0 25px;
    background: linear-gradient(90deg, rgba(0, 118, 164, 1) 0%, rgba(0, 42, 59, 1) 100%);
}

.quiz-question .question-box .question-count::before {
    position: absolute;
    content: "";
    top: -12.5px;
    left: 0;
    background: #0076A4;
    width: 25px;
    height: 12px;
    border-top-left-radius: 15px;
    z-index: 0;
}

[dir="rtl"] .quiz-question .question-box .question-count::before {
    top: -12.5px;
    left: auto;
    right: 0;
    transform: rotateY(180deg);
}

.quiz-question .question-box .question-title {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 0;
    font-weight: 400;
}

.quiz-tab {
    display: none;
}

.assessment-tab {
    display: none;
}

.poll-tab {
    display: none;
}


.quiz-question .form-check {
    height: 54px;
    border-radius: 4px;
}

.quiz-question .btn {
    max-width: 210px;
    min-width: 100px;
}

.quiz-question .btn-light {
    background-color: var(--white-color);
    border-color: var(--main-color);
    color: var(--main-color);
}

.quiz-question .btn-light:hover,
.quiz-question .btn-light:focus {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: var(--white-color);
}


.radio-container {
    display: block;
    position: relative;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 20px;
    font-weight: 700;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    height: 54px;
    padding: 1rem 0;
    padding-inline-start: 45px;
}

.radio-container input[type="checkbox"],
.radio-container input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer
}

.checkmark {
    position: absolute;
    top: 1rem;
    left: 0;
    height: 23px;
    width: 23px;
    background-color: #fff;
    border: 1px solid var(--light-color);
    border-radius: 50%
}

.radio-container input:checked~.checkmark {
    border-color: var(--main-color);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none
}

.radio-container input:checked~.checkmark:after {
    display: block;
}

.radio-container .checkmark:after {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--main-color)
}

.checkbox-container .checkmark {
    position: absolute;
    top: 1rem;
    left: 0;
    height: 23px;
    width: 23px;
    background-color: #fff;
    border: 1px solid var(--light-color);
    border-radius: 5px;
}

.checkbox-container .checkmark:after {
    top: 5px;
    left: 5px;
    width: 12px;
    height: 6px;
    border-radius: 0;
    background: #fff;
    border: 2px solid var(--main-color);
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);
}

[dir="rtl"] .checkmark {
    left: auto;
    right: 0;
}

/*
[dir="rtl"] .checkmark:after {
    left: auto;
    right: 5px;
}*/

.radio-container input:disabled~.checkmark {
    border-color: gray;
}

.radio-container input:disabled~.checkmark:after {
    background-color: gray;
}

.checkbox-container input:disabled~.checkmark:after {
    border-color: gray;
    background-color: transparent;
}

/*------------------------------------------
    Polls
------------------------------------------*/

.poll-modal .progress {
    height: 10px;
    border-radius: 25px;
}

/*------------------------------------------
    widget-box
------------------------------------------*/

.profile-section {
    padding: 30px;
}

.widget .title {
    font-size: 22px;
    margin-bottom: 30px;
}

.widget .card {
    padding: 40px;
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    border-color: transparent;
    margin-bottom: 1.5rem;
    min-height: 361px;
}

.widget hr {
    opacity: 1;
    background-color: #E2E2E2;
    ;
}

.widget .widget-box {
    display: flex;
    width: 100%;
    margin-bottom: 1.5rem;
    border-inline-end: 1px solid #E2E2E2;
}

.widget .widget-box .pic {
    width: 45px;
    min-width: 45px;
    height: 45px;
    overflow: hidden;
    border-radius: 50%;
    margin-inline-end: 1rem;
}

.widget .widget-box .pic img {
    width: 100%;
}

.widget .widget-box .name {
    margin-bottom: 0;
    font-size: 16px;
    color: var(--dark-color);
}

.widget .widget-box .label-info {
    font-size: 14px;
    color: var(--light-color);
}

.widget .user-info {
    display: flex;
    align-items: center;
}

.widget .user-info .pic {
    width: 100px;
    min-width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-inline-end: 1rem;
    overflow: hidden;
}

.widget .user-info .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.widget .user-info .name {
    margin-bottom: 0;
    font-size: 22px;
    font-weight: 800;
    color: var(--dark-color);
}

.accordion-header {
    padding: 0;
    overflow: hidden;
    border-bottom: none;
    background-color: transparent;
}

.accordion-item {
    overflow: hidden;
    background-color: #fff;
    border: transparent !important;
    border-radius: 0 !important;
    color: var(--dark-color);
    font-size: 14px;
    margin-bottom: 1rem;
}

.accordion-button {
    padding: 1.5rem;
    box-shadow: none !important;
    outline: none !important;
    background-color: transparent;
    font-size: 16px;
}

.accordion-button:not(.collapsed) {
    color: #141416;
    background-color: transparent;
    box-shadow: none;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg);
}

.accordion-body {
    line-height: 2;
    color: #707070;
}

/*------------------------------------------
    Responsive
------------------------------------------*/

@media (max-width: 1440px) and (min-width: 1200px) {
    /*
    .sidebar-wrapper{
        width: 50px;
    }
    .sidebar-wrapper .menu .sidebar-link {
        padding: 0;
        justify-content: center;
        width: 50px;
    }
    .sidebar-wrapper .menu .sidebar-link span{
        display: none;
    }
    #main {
        margin-inline-start: 50px;
    }
    */
}

@media screen and (max-width: 1680px) {
    body {
        font-size: 14px;
    }

    .sidebar-wrapper {
        width: 270px;
    }

    .sidebar-wrapper .sidebar-header {
        height: 68px;
        line-height: 68px;
    }

    .sidebar-wrapper .sidebar-header img {
        padding-inline-start: 24px;
    }

    .sidebar-wrapper .menu .sidebar-link {
        font-size: 14px;
        padding-inline-start: 24px;
        padding-inline-end: 20px;
        height: 40px;
        line-height: 40px;
    }

    .sidebar-wrapper .menu .sidebar-link svg {
        width: 12px;
    }

    #main {
        margin-inline-start: 270px;
    }

    .menu-btn {
        width: 20px;
        height: 20px;
    }

    .menu-btn .menu-btn-burger {
        width: 20px;
    }

    .navbar .navbar-container .nav {
        gap: 1rem;
    }

    .navbar .navbar-container .nav .nav-link {
        font-size: 14px;
    }

    .user-box .pic {
        min-width: 36px;
        width: 36px;
        height: 36px;
    }

    .user-box .name {
        font-size: 14px;
    }

    .dropdown-menu {
        max-width: 320px;
    }

    .dropdown-menu .dropdown-item {
        font-size: 14px;
    }

    .notification-box .content {
        font-size: 14px;
    }

    .notification-box .icon {
        min-width: 35px;
        width: 35px;
        height: 35px;
        line-height: 35px;
    }

    .notification-box .icon img {
        width: 14px;
    }

    .flags-priority {
        min-height: 50px;
    }

    .flags-priority .title {
        font-size: 18px;
    }

    .flags-priority .flag-container .flag-box {
        font-size: 13px;
        padding: 0 20px;
        height: 10px;
        line-height: 28px;
    }

    .progress-section {
        margin: 30px;
    }

    .progress-box {
        padding-block-start: 20px;
        padding-block-end: 20px;
    }

    .progress-circle {
        width: 120px;
        height: 120px;
        line-height: 120px;
    }

    .progress-circle .progress-bar {
        border-width: 5px;
    }

    .progress-circle::after {
        border: 5px solid #F3F3F3;
    }

    .progress-box .progress-title {
        font-size: 16px;
    }

    .filtter-section {
        min-height: 50px;
        margin-bottom: 10px;
    }

    .filtter-section .filtter-form .form-select,
    .filtter-section .filtter-form .form-control {
        max-width: 220px;
        min-width: 160px;
    }

    .filtter-section .filtter-form .btn {
        width: 36px;
        height: 36px;
        line-height: 36px;
    }

    .btn {
        padding: 0 1rem;
        height: 36px;
        line-height: 36px;
        font-size: 14px;
    }

    .table-theme th:not(.td-space),
    .table-theme td:not(.td-space) {
        height: 40px;
        font-size: 12px;
    }

    .badge {
        min-width: 70px;
        height: 25px;
        line-height: 15px;
        font-size: 12px;
    }

    .badge-circle {
        min-width: 30px;
        max-width: 30px;
        height: 30px;
    }

    .badge-circle img {
        object-fit: contain;
        width: 100%;
        height: 100%;
    }

    .table-theme .pagination {
        margin: 10px 0;
    }

    .table-theme .pagination .page-link {
        width: 28px;
        height: 28px;
        line-height: 28px;
        font-size: 12px;
    }

    footer {
        height: 50px;
        font-size: 12px;
    }

    .warning-modal-box .table {
        border-radius: 4px;
    }

    .warning-modal-box .table td {
        min-width: 100px;
    }

    .warning-modal-box .title {
        font-size: 20px;
        position: relative;
        font-weight: 400;
        color: var(--main-color);
    }

    .warning-modal-box .title .float-end {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 0;
    }

    [dir="rtt"] .warning-modal-box .title .float-end {
        right: auto;
        left: 0;
    }

    .warning-modal-box .sub-title {
        font-size: 18px;
    }

    .warning-modal-box .info {
        font-size: 16px;
    }

    .warning-modal-box .btn {
        margin-top: 30px;
        width: 160px;
    }

    .warning-modal-box .warning-pic {
        max-width: 220px;
    }

    .form .form-control {
        min-height: 40px;
        line-height: 40px;
    }

    .quiz-question .question-box {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .quiz-question .question-box,
    .quiz-question .answer-box {
        padding: 15px;
    }

    .quiz-question .question-box .question-title {
        font-size: 16px;
    }

    .quiz-question .question-box .question-count {
        font-size: 20px;
        width: 200px;
    }

    .radio-container {
        padding-inline-start: 35px;
        font-size: 16px;
        height: 40px;
    }

    .progress-timer {
        padding: 0;
    }

    .modal-xl {
        max-width: 990px;
    }

    .pdfobject-container {
        height: 460px;
    }

    .pdfobject-container embed,
    .pdfobject-container iframe {
        height: 450px !important;
    }

    .modal .modal-option {
        min-height: 70px;
    }

    .modal .modal-option .modal-option-box {
        height: 40px;
    }

    .modal .modal-option .form-check .form-check-label {
        font-size: 13px;
    }

    .modal-option-box .form-check-input {
        vertical-align: middle;
    }

    .modal-header {
        min-height: 60px;
    }

    .navbar-logo {
        width: 270px;
        height: 68px;
    }

    .section-auth {
        padding: 60px 0;
    }

    .section-title .title {
        font-size: 24px;
    }

    .section-title .title.mb-5 {
        margin-bottom: 2rem !important;
    }

    .widget .title {
        font-size: 18px;
    }

    .widget .card {
        padding: 30px;
    }

    .widget .widget-box {
        align-items: center;
    }



    .widget .widget-box .pic {
        margin-bottom: 14px;
    }

    .widget .widget-box .name {
        font-size: 14px;
    }

    .widget .user-info .pic {
        min-width: 50px;
        width: 50px;
        height: 50px;
        margin-inline-end: .75rem;
    }

    .widget .user-info .name {
        font-size: 18px;
    }
}

@media (max-width: 1200px) {}

@media (max-width: 1024px) {
    .modal-option {
        margin-bottom: 30px;
    }

    .modal-option .btn-action {
        margin: auto;
        margin-top: 15px;
    }
}

@media (max-width: 992px) {}

@media (max-width: 780px) {

    .filtter-section .filtter-form .form-select,
    .filtter-section .filtter-form .form-control {
        min-width: 200px;
    }

    .dropdown-notification .dropdown-item {
        white-space: normal;
    }

    .dropdown-notification .dropdown-item .notification-box .content {
        min-width: 300px;
        max-width: 375px;
    }

    .modal-dialog.modal-xl {
        max-width: 600px;
    }

    .modal .modal-option .modal-option-box {
        border: none !important;
    }

    .modal .modal-option .modal-option-box {
        margin-top: 15px;
        height: 40px;
    }

    .warning-modal-box {
        padding: 30px;
    }

    .warning-modal-box .warning-pic {
        max-width: 290px;
        max-height: 120px;
    }

    .query-answer .answer-title,
    .warning-modal-box .title {
        font-size: 20px;
    }

    .query-answer .answer-info,
    .warning-modal-box .info {
        font-size: 14px;
    }

    .warning-modal-box .btn {
        margin: 0;
        margin-top: 15px;
        width: 180px;
    }

    .profile-section,
    .widget .card {
        padding: 20px;
    }

    .widget .widget-box {
        border: none;
        margin-bottom: 10px;
        max-width: calc(100% / 2);
    }

    .widget .widget-box.widget-lg:first-child {
        max-width: calc(100%);
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    section {
        padding: 0 15px;
    }

    .flags-priority .flag-container {
        justify-content: center;
    }

    .flags-priority .flag-container .flag-box {
        font-size: 14px;
        padding: 0 15px;
        min-width: calc(100% / 3);
        border: none;
    }

    .progress-section {
        margin: 15px;
    }

    .progress-box .progress-circle {
        width: 90px;
        height: 90px;
        line-height: 90px;
    }

    .progress-box .progress-circle::after {
        border: 5px solid #F3F3F3;
    }

    .progress-box .progress-circle .progress-bar {
        border-width: 5px;
    }

    .progress-box .progress-value .icon svg {
        width: 24px;
        height: 24px;
    }

    .progress-box .progress-title {
        font-size: 16px;
    }
}

@media (max-width: 420px) {}

@media (min-width: 768px) {
    .animate {
        animation-duration: 0.3s;
        -webkit-animation-duration: 0.3s;
        animation-fill-mode: both;
        -webkit-animation-fill-mode: both;
    }
}

@keyframes slideIn {
    0% {
        transform: translateY(2rem);
        opacity: 0;
    }

    100% {
        transform: translateY(0rem);
        opacity: 1;
    }

    0% {
        transform: translateY(2rem);
        opacity: 0;
    }
}

@-webkit-keyframes slideIn {
    0% {
        -webkit-transform: transform;
        -webkit-opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        -webkit-opacity: 1;
    }

    0% {
        -webkit-transform: translateY(2rem);
        -webkit-opacity: 0;
    }
}

.slideIn {
    -webkit-animation-name: slideIn;
    animation-name: slideIn;
}

.upDown {
    -webkit-animation: upDown-animation 2s infinite alternate;
    animation: upDown-animation 2s infinite alternate;
}

@keyframes upDown-animation {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-1rem);
    }
}


.add-new-option .option {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #0D614F;
    cursor: pointer;
}

.add-new-option .form-option {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #0D614F;
    cursor: pointer;
}

.add-new-option .form-option .btn {
    padding: 0;
    max-width: 45px;
    min-width: 45px;
    height: 45px;
    line-height: 40px;
    text-align: center;
    border-radius: 0;
    background-color: var(--main-color);
    margin: 0;
    margin-inline-start: .5rem;
}

.add-new-option .form-option .btn img {
    max-width: 14px;
}

[dir="rtl"] .add-new-option .form-option .btn img {
    transform: rotateY(-180deg);
}

.add-new-option .form-option .form-control {
    padding: 0 1rem;
    max-width: 270px;
    height: 45px;
    line-height: 45px;
}


@media (min-width: 786px) {
    #sidebar:not(.active) .sidebar-wrapper {
        left: 0;
        width: 64px;
        transition: all .3s ease;
    }

    [dir="rtl"] #sidebar:not(.active) .sidebar-wrapper {
        left: auto;
        right: 0;
        width: 64px;
        transition: all .3s ease;
    }

    #sidebar:not(.active) .sidebar-wrapper .short-logo {
        display: block;
    }

    #sidebar:not(.active) .sidebar-wrapper .full-logo {
        display: none;
    }

    #sidebar:not(.active) .sidebar-wrapper .menu .sidebar-link {
        padding-inline-start: 20px;
    }

    #sidebar:not(.active) .sidebar-wrapper .menu .sidebar-link span {
        display: none;
        transition: all .5s;
    }

    #sidebar:not(.active)~#main {
        margin-inline-start: 64px;
    }

    /*
    #sidebar:not(.active):hover .sidebar-wrapper {
        width: 270px;
    }

    #sidebar:not(.active):hover .sidebar-wrapper .menu .sidebar-link span {
        display: block;
    }



    #sidebar:not(.active):hover .sidebar-wrapper .short-logo {
        display: none;
    }

    #sidebar:not(.active):hover .sidebar-wrapper .full-logo {
        display: block;
    }
    */

    #sidebar {
        position: relative;
    }

    #sidebar::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        background-color: #000000;
        opacity: .7;
    }
}


.modal .form .form-control {
    border: 1px solid #8DDFFF;
    background-color: #F6FAFF;
    border-radius: 5px;
}

.modal .form .form-control::placeholder {
    line-height: 40px;
    color: var(--light-color);
}

.modal .btn-secondary {
    text-transform: capitalize;
    color: var(--main-color);
    background-color: #F6FAFF;
    border-color: #F6FAFF;
}

.modal .btn-secondary:hover {
    color: #fff;
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.pincode input {
    border: 1px solid #8DDFFF;
    color: var(--main-color);
}

.modal .table {
    border-color: var(--main-color);
}

.quiz-result-container {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    justify-content: center;
    padding: 1rem;
}

.quiz-result-container .quiz-result-box {
    display: inline-flex;
    max-width: calc((100% / 3) - 1rem);
    width: 100%;
    text-align: center;
}

@media (max-width: 420px) {

    .quiz-result-container .quiz-result-box {
        display: inline-flex;
        max-width: calc((100% / 2) - 1rem);
        width: 100%;
        text-align: center;
    }
}

.user-answer {
    display: flex;
    padding: 1rem;
    background-color: #F6FAFF;
    margin-bottom: 1rem;
}

.user-answer .pic {
    min-width: 40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #D9D9D9;
    margin-inline-end: 1rem;
}

.user-answer .pic img {
    width: 40px;
    height: 40px;
    object-fit: cover;
}

.user-answer .content .username {
    display: block;
    margin-bottom: 1rem;
}

.user-answer .content .username .name {
    font-size: 14px;
    line-height: 1.5;
    color: var(--dark-color);
}

.user-answer .content .username .date {
    font-size: 12px;
    color: var(--normal);
}

.user-answer .content .answer {
    font-size: 14px;
    line-height: 1.5;
    color: var(--normal);
}

.multi-attachments {
    position: relative;
    border-radius: 5px;
}

.multi-attachments span {
    position: absolute;
    content: "";
    top: -5px;
    right: -5px;
    color: #fff;
    font-size: 12px;
    width: 20px;
    height: 20px;
    text-align: center;
    background-color: var(--main-color);
    border-radius: 50%;
}

[dir="rtl"] .multi-attachments span {
    right: auto;
    left: -5px;
}

/*.form-control {*/
/*    background-image: none !important;*/
/*}*/

.password-box {
    position: relative;
}

.password-box .form-control {
    padding-inline-end: 80px;
}

.password-box .show-hide-password, .password-box .show-hide-confirm-password {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 50px;
    line-height: 44px;
    cursor: pointer;
    text-align: center;
}

[dir="ltr"] .password-box .show-hide-password, [dir="ltr"] .password-box .show-hide-confirm-password {
    left: auto;
    right: 0;
}

[dir="rtl"] .password-box .show-hide-password ,[dir="rtl"] .password-box .show-hide-confirm-password {
    left: 0;
    top: 4px;
    right: auto;
}

input::-ms-reveal,
input::-ms-clear {
    display: none;
}


/*
        notification-section
    */

.notification-section .notification-box {
    margin: auto;
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 24px;
    background-color: #fff;
    border-radius: 10px;
    padding: 1rem;
    transition: all .3s ease;
}

.notification-section .notification-box:hover {
    box-shadow: 0 3px 6px rgb(0, 0, 0, .16);
}

.notification-section .notification-box .icon {
    min-width: 44px;
    width: 44px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    border-radius: 10px;
    background-color: var(--purple-color);
}

.notification-section .notification-box .content {
    padding: 0;
}

.notification-section .notification-box .content .title {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0;
    color: var(--dark-color);
}

.notification-section .notification-box .content .warning {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 0;
    color: var(--dark-color);
}

.notification-section .notification-box .content .date {
    font-size: 12px;
    font-weight: 300;
    margin-bottom: 0;
    color: var(--light-color);
}

.notification-section .notification-box.seen .content .title,
.notification-section .notification-box.seen .content .warning {
    color: var(--light-color);
}

.btn-notification {
    min-width: 180px;
    color: var(--main-color);
    background-color: #fff;
    border: 1px solid #C4C4C4;
    margin-bottom: 24px;
    border-radius: 10px;
    font-weight: 400;
    height: 50px;
    line-height: 50px;
    transition: all .3s ease;
}

.btn-notification:hover {
    color: #fff;
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
    box-shadow: 0 3px 6px rgb(0, 0, 0, .16) !important;
}

/*
        Send Report
    */

.btn-send-report {
    position: fixed;
    content: "";
    bottom: 50px;
    right: 25px;
    width: 60px;
    height: 60px;
    line-height: 50px;
    padding: 0;
    border-radius: 50%;
    text-align: center;
    background-color: var(--main-color);
    z-index: 1;
}

.report-box {
    background-color: rgb(229, 229, 229, .5);
    padding: 2rem;
}

.report-box .title {
    position: relative;
    font-size: 20px;
    font-weight: 700;
    line-height: 22px;
    text-align: center;
    margin-bottom: 40px;
}

.report-box .title .close-modal {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    font-size: 40px;
    color: var(--dark-color);
    cursor: pointer;
}

.report-box .content .title {
    font-size: 16px;
    font-weight: 700;
    line-height: 18px;
    text-align: inherit;
    margin-bottom: 24px;
}

.report-box .content .form-check {
    font-size: 16px;
    margin-bottom: 20px;
}

.report-box .content .form-group {
    margin-bottom: 24px;
}

.report-box .content .form-control {
    border-radius: 10px;
}

.report-box .content .form-label {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.report-box textarea.form-control {
    background-color: #fff;
    border: 1px solid #BDBDBD;
}

.report-box .btn {
    max-width: 180px;
    width: 100%;
    border-radius: 10px;
}

.btn-upload {
    display: flex;
    align-items: center;
    max-width: 180px;
    height: 50px;
    line-height: 45px;
    padding-inline-start: 1rem;
    margin-bottom: 1rem;
    background: #FFFFFF;
    border: 1px solid #BDBDBD;
    border-radius: 10px;
    color: var(--dark-color);
    font-size: 12px;
    text-transform: capitalize;
    font-weight: 400;
}

.btn-upload svg path,
.btn-upload svg line {
    color: var(--dark-color);
    transition: all .3s ease;
}

.btn-upload:focus svg path,
.btn-upload:focus svg line {
    stroke: #fff;
}

.files-upload-box {
    padding: 10px 20px;
    background: #FFFFFF;
    border: 2px solid #E2E2E2;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.files-upload-box .file-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
}

.files-upload-box .file-title .name {
    color: #393D48;
    font-size: 14px;
    font-weight: 600;
    overflow-wrap: anywhere;
    margin-inline-end: 1rem;
}

.files-upload-box .file-title .action {
    display: flex;
    gap: .5rem;
}

.files-upload-box .file-size {
    font-size: 12px;
    color: var(--light-color);
}

.files-upload-box .file-title .action .btn-option {
    width: 30px;
    height: 30px;
    line-height: 25px;
    display: inline-block;
    text-align: center;
    font-size: 24px;
    border-radius: 50%;
    background: var(--red-color);
    color: #fff;
}

[dir="rtl"] .btn-send-report {
    right: auto;
    left: 25px;
}

[dir="rtl"] .report-box .title .close-modal {
    right: auto;
    left: 0;
}


@media (max-width: 780px) {

    .filtter-section .filtter-form .form-select,
    .filtter-section .filtter-form .form-control {
        min-width: 100px;
    }

    .flags-priority .flag-container {
        margin-top: 1rem;
    }

    .flags-priority .flag-container .flag-box .dot {
        margin-inline-end: .5rem;
    }

    .table-theme th:not(.td-space),
    .table-theme td:not(.td-space) {
        white-space: nowrap;
    }

    footer {
        padding-inline-start: 0;
    }

    .widget .title {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .widget .card {
        padding: 30px;
        padding-bottom: 0;
        min-height: 300px;
    }

    .widget .widget-box {
        max-width: 100%;
        align-items: flex-start;
    }

    .widget .widget-box .pic {
        width: 35px;
        min-width: 35px;
        height: 35px;
        margin-inline-end: .5rem;
    }
}

/*-----------------------------------
        chat-section
    -----------------------------------*/

.chat-section {
    display: flex;
    width: 100%;
    padding: 0;
    border-top: 1px solid #D9DCE0;
}

.chat-section .chat-side-menu .chat-side-menu-box {
    max-width: 364px;
    min-width: 364px;
    width: 100%;
    background-color: #fff;
    padding: 1rem 0 0;
}

.chat-section .chat-side-menu .chat-side-menu-box .chat-side-menu-search {
    width: 332px;
    margin: auto;
    margin-bottom: 24px;
}

.chat-section .chat-side-menu .chat-side-menu-box .chat-side-menu-search .form-control {
    position: relative;
    padding-inline-start: 50px;
    height: 50px;
    border-radius: 10px;
    background-color: #F5F5F5;
    font-size: 14px;
    line-height: 20px;
    color: #707991;
    border-color: transparent;
    box-shadow: none;
}

.chat-section .chat-side-menu .chat-side-menu-box .chat-side-menu-search .form-control:focus {
    border-color: #D9DCE0;
}

.chat-section .chat-side-menu .chat-side-menu-box .chat-side-menu-search .form-group {
    position: relative;
}

.chat-section .chat-side-menu .chat-side-menu-box .chat-side-menu-search .form-group::before {
    position: absolute;
    content: "\f002";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #707991;
    z-index: 2;
}

[dir="rtl"] .chat-section .chat-side-menu .chat-side-menu-box .chat-side-menu-search .form-control::before {
    left: auto;
    right: 0;
}

.chat-section .chat-side-menu .chat-side-menu-box .chat-side-menu-contacts {
    position: relative;
    height: 750px;
    height: calc(100vh - (50px + 2rem + 65px));
    overflow: hidden;
}

.chat-section .chat-side-menu .chat-side-menu-box .chat-side-menu-contacts .chat-contact-box {
    display: flex;
    cursor: pointer;
    gap: 20px;
    padding: 24px 20px;
    background: #fff;
    border-bottom: 1px solid #D9DCE0;
    transition: all .3s ease;
}

.chat-section .chat-side-menu .chat-side-menu-box .chat-side-menu-contacts .chat-contact-box:hover,
.chat-section .chat-side-menu .chat-side-menu-box .chat-side-menu-contacts .chat-contact-box.new-message {
    background: #F5F5F5;
}

.chat-section .chat-side-menu .chat-side-menu-box .chat-side-menu-contacts .chat-contact-box .pic {
    min-width: 50px;
    width: 50px;
    height: 50px;
    /*line-height: 50px;*/
    text-align: center;
    background-color: var(--main-color);
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    border-radius: 50%;
}

.chat-section .chat-side-menu .chat-side-menu-box .chat-side-menu-contacts .chat-contact-box .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chat-section .chat-side-menu .chat-side-menu-box .chat-side-menu-contacts .chat-contact-box .content {
    width: 100%;
}

.chat-section .chat-side-menu .chat-side-menu-box .chat-side-menu-contacts .chat-contact-box .content .message-info,
.chat-section .chat-side-menu .chat-side-menu-box .chat-side-menu-contacts .chat-contact-box .content .contact-name {
    width: 100%;
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.chat-section .chat-side-menu .chat-side-menu-box .chat-side-menu-contacts .chat-contact-box .content .contact-name .name {
    font-size: 16px;
    font-weight: 800;
    color: #011627;
}

.chat-section .chat-side-menu .chat-side-menu-box .chat-side-menu-contacts .chat-contact-box .content .contact-name .chat-date {
    font-size: 12px;
    color: #707991;
}

.chat-section .chat-side-menu .chat-side-menu-box .chat-side-menu-contacts .chat-contact-box .content .policy-name {
    font-size: 14px;
    font-weight: 700;
    color: #45494D;
}

.chat-section .chat-side-menu .chat-side-menu-box .chat-side-menu-contacts .chat-contact-box .content .message-info .message {
    font-size: 14px;
    color: #707991;
}

.chat-section .chat-side-menu .chat-side-menu-box .chat-side-menu-contacts .chat-contact-box .content .message-info .chat-count {
    display: inline-block;
    min-width: 16px;
    width: 16px;
    height: 16px;
    line-height: 16px;
    border-radius: 50%;
    font-weight: 500;
    font-size: 11px;
    text-align: center;
    color: #FFFFFF;
    background-color: #10B251;
}

.chat-section .chat-content {
    width: 100%;
    border-inline-start: 1px solid #D9DCE0;
}

.chat-section .chat-content .head {
    display: flex;
    justify-content: space-between;
}

.chat-section .chat-content .head {
    display: flex;
    padding: 20px;
    background-color: #fff;
    justify-content: space-between;
}

.chat-section .chat-content .head .chat-user-box {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.chat-section .chat-content .head .chat-user-box .pic {
    min-width: 40px;
    width: 40px;
    height: 40px;
    /*line-height: 40px;*/
    border-radius: 50%;
    background-color: var(--main-color);
    color: #fff;
    text-align: center;
    font-weight: 800;
    font-size: 14px;
}

.chat-section .chat-content .head .chat-user-box .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chat-section .chat-content .head .chat-user-box .content .name {
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: #011627;
}

.chat-section .chat-content .head .chat-action {
    display: flex;
    gap: 0;
    align-items: center;
}

.chat-section .chat-content .head .chat-action .btn-action {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    overflow: hidden;
    display: block;
}

.chat-section .chat-content .head .chat-action .btn-action:hover,
.chat-section .chat-content .head .chat-action .btn-action:focus {
    background-color: #F5F5F5;
}

.chat-section .chat-content .policy-name {
    padding: 16px 20px;
    background-color: #ECEEF3;
}

.chat-section .chat-content .policy-name .policy-name-box {
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    display: flex;
    align-items: center;
    color: #43425D;
}

.chat-section .chat-content .chat-messages {
    position: relative;
    /*
    height: 650px;
    */
    height: calc(100vh - (230px - 1rem) - 60px);
    padding: 20px;
    background-color: #F5F6FA;
    overflow-y: scroll;
}

.chat-section .chat-content .chat-messages .date-tiem {
    display: inline-block;
    color: #fff;
    font-size: 16px;
    padding: 5px 15px;
    background: rgba(61, 112, 184, 0.6);
    border-radius: 12px;
    text-align: center;
    margin: auto;
    margin-bottom: 1rem;
}

.chat-section .chat-content .chat-messages .message-box {
    display: block;
    padding: 14px 32px;
    max-width: 584px;
    background: #FFFFFF;
    border-radius: 12px;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #011627;
    margin-bottom: 1rem;
}

.chat-section .chat-content .chat-messages .message-box .date {
    font-size: 12px;
    line-height: 20px;
    color: #011627;
    margin-top: .35rem;
}

.chat-section .chat-content .chat-messages .me .message-box {
    background: #43425D;
    color: #fff;
}

.chat-section .chat-content .chat-messages .me .message-box .date {
    color: #fff;
}

.chat-section .chat-content .chat-messages .attachment-content {
    display: flex;
    gap: 16px;
    max-width: 584px;
    flex-wrap: wrap;
    flex-direction: column;
}

.chat-section .chat-content .chat-messages .attachment-content .attachment-box-view {
    display: flex;
    gap: 16px;
    padding: 15px 20px;
    background-color: #fff;
    border-radius: 15px;
}

.chat-section .chat-content .chat-messages .attachment-content .attachment-box-view .pic {
    min-Width: 30px;
    Width: 30px;
}

.chat-section .chat-content .chat-messages .attachment-content .attachment-box-view .pic img {
    Width: 100%;
}

.chat-section .chat-content .chat-messages .attachment-content .attachment-box-view .content .file-name {
    font-size: 14px;
    font-weight: 800;
    color: var(--dark-color);
}

.chat-section .chat-content .chat-messages .attachment-content .attachment-box-view .content .file-size {
    font-size: 12px;
    font-weight: 300;
    color: var(--light-color);
}

.chat-section .chat-content .chat-messages .me .attachment-content .attachment-box-view {
    background-color: #43425D;
}

.chat-section .chat-content .chat-messages .me .attachment-content .attachment-box-view .content .file-name,
.chat-section .chat-content .chat-messages .me .attachment-content .attachment-box-view .content .file-size {
    color: #fff;
}

.chat-write-box {
    padding: 0 20px;
}

.chat-write-box .text-comment {
    position: relative;
    border-radius: 15px;
    background-color: #fff;
    padding-inline-start: 50px;
    padding-inline-end: 100px;
}

.chat-write-box .text-comment .form-control {
    border-color: transparent;
    height: 50px;
    padding: 14px 0 0;
    font-size: 14px;
    resize: none;
    box-shadow: none;
}

.chat-write-box .text-comment .attachment,
.chat-write-box .text-comment .send,
.chat-write-box .text-comment .emoji {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    cursor: pointer;
}

.chat-write-box .text-comment .attachment {
    right: 50px;
    left: auto;
}

.chat-write-box .text-comment .send {
    right: 0;
    left: auto;
    border: none;
    background: none;
    padding: 0;
}

[dir="rtl"] .chat-write-box .text-comment .attachment {
    left: 50px;
    right: auto;
}

[dir="rtl"] .chat-write-box .text-comment .send {
    right: auto;
    left: 0;
}

[dir="rtl"] .chat-write-box .text-comment .emoji {
    right: 0;
    left: auto;
}

.call-is-comming {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 3px 6px rgb(0, 0, 0, .16);
    padding: 2rem;
}

.call-is-comming .user {
    display: flex;
    align-items: center;
}

.call-is-comming .user .pic {
    min-width: 50px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    overflow: hidden;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    background-color: var(--main-color);
    margin-inline-end: 1rem;
}

.call-is-comming .user .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.call-is-comming .user .content .name {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0;
}

.call-is-comming .user .content .status {
    font-size: 14px;
    color: var(--light-color);
    margin-bottom: 0;
}

.call-is-comming .action .btn {
    margin: 0;
    box-shadow: none;
}

.alert-modal {
    text-align: center;
    padding: 2rem;
}

.alert-modal .btn-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    box-shadow: none;
}

[dir="rtl"] .alert-modal .btn-close {
    right: auto;
    left: 2rem;
}

.alert-modal .title {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 30px;
}

.alert-modal .pic {
    margin-bottom: 30px;
}

.alert-modal .info {
    font-size: 16px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 30px;
}

.alert-modal .action-btn {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.alert-modal .action-btn .btn-submit {
    border-color: #43425D;
    background: #43425D;
    color: #fff;
}


.upload-files-view {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 0;
    border-radius: 5px;
}

.upload-files-view .file-view {
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 4px 16px;
    font-size: 14px;
    border-radius: 5px;
    color: #000000;
    border: 1px solid #f2f2f2;
}

.upload-files-view .file-view .close {
    cursor: pointer;
    padding-inline-start: 1rem;
    font-size: 20px;
    color: #000000;
}

@media (max-width: 992px) {
    .chat-side-menu-box {
        margin-inline-start: -400px;
        z-index: 2;
    }

    .chat-side-menu-box.show {
        margin-inline-start: 0;
    }
}


/*
        scheduling-section
    */

.scheduling-section {
    padding: 2rem;
    background-color: #f5f6fa;
}

.scheduling-section .table-header {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: space-between;
    padding-bottom: 0.3rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #DDDDDD;
}

.scheduling-section .table-header .nav-scheduling-tab {
    border: none;
}

.scheduling-section .table-header .nav-scheduling-tab .nav-link {
    position: relative;
    background-color: transparent;
    border-color: transparent;
    font-weight: 700;
    font-size: 18px;
    line-height: 30px;
    color: #7E7E7E;
}

.scheduling-section .table-header .nav-scheduling-tab .nav-link::after {
    position: absolute;
    content: "";
    bottom: -.75rem;
    left: 50%;
    width: 0;
    height: 4px;
    border-radius: 5px;
    background-color: #0076A4;
    transform: translateX(-50%);
    transition: all .3s ease;
}

.scheduling-section .table-header .nav-scheduling-tab .nav-link:hover,
.scheduling-section .table-header .nav-scheduling-tab .nav-link.active {
    background-color: transparent;
    color: #0076A4;
}

.scheduling-section .table-header .nav-scheduling-tab .nav-link:hover::after,
.scheduling-section .table-header .nav-scheduling-tab .nav-link.active::after {
    width: 100%;
}

.scheduling-section .table-header .scheduling-fillter {
    display: flex;
    gap: 24px;
    margin-bottom: .75rem;
}

.scheduling-section .table-header .scheduling-fillter .daterange {
    display: flex;
    justify-content: space-between;
    align-items: center;
    Width: 240px;
    height: 45px;
    line-height: 45px;
    background: #FFFFFF;
    border: 1px solid #BDBDBD;
    border-radius: 10px;
    padding: 0 1rem;
    cursor: pointer;
}

.scheduling-section .table-header .scheduling-fillter .btn-theme {
    border-radius: 10px;
    height: 45px;
    line-height: 45px;
}

.daterangepicker .ranges li.active {
    background: rgba(0, 82, 114, 0.4) !important;
    color: #fff;
}

.daterangepicker .drp-buttons .btn {
    padding: 0 12px !important;
}

.scheduling-tab-content {
    border-radius: 10px;
    background-color: #fff;
}

.scheduling-tab-content tr th,
.scheduling-tab-content tr tr {
    line-height: 2;
    border-color: transparent;
}

.scheduling-tab-content tr th {
    background: #C7DBE3;
    border-color: transparent;
    font-weight: 700;
    font-size: 14px;
    line-height: 2;
    text-align: center;
    color: #0076A4;
    border-bottom-color: transparent !important;
}

.scheduling-tab-content thead tr th:first-child {
    border-start-start-radius: 10px;
    border-end-start-radius: 10px;
}

.scheduling-tab-content thead tr th:last-child {
    border-start-end-radius: 10px;
    border-end-end-radius: 10px;
}

.scheduling-tab-content tbody tr:first-child {
    border-top: none;
}

.scheduling-tab-content tbody tr td {
    text-align: center;
    vertical-align: middle;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #202020;
    border-color: #DDDDDD;
}

.scheduling-tab-content tbody tr td a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    overflow: hidden;
    text-align: center;
    transition: all .3s ease;
}

.scheduling-tab-content tbody tr td a:hover,
.scheduling-tab-content tbody tr td a:focus {
    background-color: #C7DBE3;
}

@media (max-width: 786px) {
    .scheduling-section .table-header {
        flex-direction: column;
    }
}

.scheduling-box {
    padding: 2rem;
    background-color: #fff;
    box-shadow: 0 3px 6px rgb(0, 0, 0, .16);
}

.scheduling-box .title {
    padding: 0 1rem 2rem;
    padding-inline-start: 0;
    border-bottom: 1px solid #DDDDDD;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 50px;
}

.scheduling-box .form {
    max-width: 600px;
    width: 100%;
    margin: auto;
    padding: 1rem;
}

.scheduling-box .row {
    align-items: center;
    margin-bottom: 1rem;
}

.scheduling-box .row .form-label {
    display: block;
    text-align: right;
    font-weight: 800;
}

[dir="rtl"] .scheduling-box .row .form-label {
    text-align: left;
}

.scheduling-box .have-icon {
    position: relative;
}

.scheduling-box .have-icon .icon {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
}

[dir="rtl"] .scheduling-box .have-icon .icon {
    right: auto;
    left: 0;
}

.scheduling-box .have-icon .form-control {
    min-height: 50px;
    border-radius: 6px;
    border: 1px solid #BDBDBD;
}

.scheduling-box .have-icon .btn-submit {
    margin-top: 2rem;
}

@media (max-width: 786px) {

    .scheduling-box .row .form-label,
    [dir="rtl"] .scheduling-box .row .form-label {
        text-align: inherit !important;
    }
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: var(--main-color);
    ;
    border: 1px solid var(--main-color);
    ;
    border-radius: 6px;
    padding: 4px 10px;
    color: #fff;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    font-size: 16px;
    margin-inline-end: .5rem;
}

.table-meeting {
    text-align: left;
    margin-bottom: 2rem;
}

.table-meeting tr td,
.table-meeting tr th {
    border-color: #ECECF0;
}

[dir="rtl"] .table-meeting {
    text-align: right
}

.table-meeting .url-copy,
.table-meeting .show-password {
    cursor: pointer;
}


.evidence-collaspe-card {
    width: 100%;
    background: #F8F8F8;
    border: 1px solid #DBDBDB;
    border-radius: 10px;
    padding: 24px;
    margin-top: 1rem;
}

.evidence-collaspe-card .title {
    font-family: 'Almarai';
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 24px;
    color: #3F3F3F;
}

.upload-files-view {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.file-uploader-view {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 224px;
    width: 100%;
    height: 61px;
    background: #FFFFFF;
    border: 1px solid #E9E9E9;
    border-radius: 10px;
    padding: 24px 12px;
    gap: 2rem;
}

.file-uploader-view .content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.file-uploader-view .content .title {
    font-weight: 700;
    font-size: 12px;
    margin: 0;
    color: #434750;
}

.file-uploader-view .content .size {
    font-weight: 400;
    font-size: 12px;
    color: #525661;
}

.file-uploader-view .close {
    color: #3F3F3F;
    font-size: 30px;
}

.upload-files {
    height: 61px;
    line-height: 61px;
    color: #434750 !important;
    background: #FFFFFF !important;
    border: 1px dashed #E9E9E9 !important;
    border-radius: 10px;
}

@media(max-width: 540px) {
    [dir="rtl"] .dropdown-menu-end[data-bs-popper] {
        left: 0;
        right: 50%;
        transform: translateX(60%);
    }

    [dir="ltr"] .dropdown-menu-end[data-bs-popper] {
        right: 50%;
        left: auto;
        transform: translateX(40%);
    }
}


@media (max-width: 600px) {
    .flags-priority .flag-container .flag-box {
        min-width: auto;
    }
}

.chat-section .chat-content .chat-messages .message-box {
    word-break: break-all;
}


.chat-section .chat-side-menu .chat-side-menu-box .chat-side-menu-contacts .chat-contact-box .pic,
.chat-section .chat-content .head .chat-user-box .pic {
    overflow: hidden;
}

.sidebar-wrapper .sidebar-header img {
    height: 33px;
}

.sidebar-wrapper .sidebar-header img {
    /* height: 25px; */
}

.sidebar-wrapper .menu .sidebar-link {
    color: var(--white-color);
}

.sidebar-wrapper .menu .sidebar-item svg path{
    stroke: #ffffff
}

.sidebar-wrapper .menu .sidebar-item.has-sub .sidebar-link:after{
    color: #ffffff;
}
.sidebar-wrapper .menu .submenu .submenu-item a{
    color: #ffffff;
}
.sidebar-wrapper .menu .submenu .submenu-item::before{
    background-color: var(--dark-color);
}
