:root {
    --clr-black: #000000;
    --clr-white: #ffffff;
    --clr-grey-1: #fafafa;
    --clr-grey-2: #f7f7f7;
    --clr-grey-3: #f0f0f0;
    --clr-grey-4: #e6e6e6;
    --clr-grey-5: #dddddd;
    --clr-grey-6: #bfbfbf;
    --clr-grey-7: #989898;
    --clr-grey-8: #7b7b7b;
    --clr-grey-9: #5d5d5d;
    --clr-grey-10: #494949;
    --clr-grey-11: #3b3b3b;
    --clr-grey-12: #2e2e2e;
    --clr-grey-13: #1c1c1c;
    --clr-primary: #a00095;
    --clr-secondary: #780096;
    --clr-additional-1: #ffb8dc;
    --clr-additional-2: #ff52ab;
    --clr-additional-3: #ff0082;
    --clr-additional-4: #e3008a;
    --clr-additional-5: #c30091;
    --clr-error-1: #ff7575;
    --clr-error-2: #ff0202;
    --clr-error-3: #eb0027;
    --clr-error-4: #cc0000;
    --clr-warning-1: #ffe4b3;
    --clr-warning-2: #ffc966;
    --clr-warning-3: #ff8f00;
    --clr-warning-4: #fe7e4b;
    --clr-warning-5: #ff6f00;
    --clr-warning-6: #cf402c;
    --clr-warning-7: #ae201a;
    --clr-alert-1: #ffe450;
    --clr-alert-2: #ffdd57;
    --clr-alert-3: #ffc502;
    --clr-alert-4: #ee8605;
    --clr-success-1: #8be4bf;
    --clr-success-2: #33cf8d;
    --clr-success-3: #04b469;
    --clr-content-1: #780096;
    --clr-content-2: #ff0082;
    --clr-content-3: #00ba96;
    --clr-content-4: #00d769;
    --clr-content-5: #3047b0;
    --clr-content-6: #0087ff;
    --clr-content-7: #ff5c00;
    --clr-content-8: #f5d200;
}

* {
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans';
}

    *,
    *::after,
    *::before {
        box-sizing: border-box;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
    }
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
    scroll-behavior: smooth;
}


body {
    color: var(--clr-grey-11);
    font-style: normal;
    font-weight: 400;
    font-size: 0.813rem;
    padding-bottom: 2.25rem
}

/*h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Sancoale Softened';
}*/

a {
    color: var(--clr-secondary);
    text-decoration: none;
}

    a:hover {
        color: var(--clr-primary);
    }
/*--------------------------------------------------------------
# Main
--------------------------------------------------------------*/
#main {
    margin-top: 60px;
    transition: all 0.3s;
    background-color: var(--clr-white);
    /*  border:1px red solid;*/
}

@media (max-width: 1199px) {
    #main {
        padding: 20px;
    }
}

/*--------------------------------------------------------------
# Page Title
--------------------------------------------------------------*/
.pagetitle {
   /* padding: 1rem 1rem 0.5rem 1rem;*/
   padding:0 15px;
    /*  background-color: var(--clr-grey-1);*/
    border-bottom: 1px solid var(--clr-grey-4);
}

    .pagetitle h1 {
        font-size: 16px;
        /* margin-bottom: 0; */
        font-weight: 600;
        color: #3047b0;
        font-weight: 400;
    }

    .pagetitle p {
        font-size: 13px;
        font-weight: 500;
        color: #2E2E2E;
        background-color: #DDDDDD;
        padding: 6px;
        text-align: center;
    }


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background: #4154f1;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

    .back-to-top i {
        font-size: 24px;
        color: var(--clr-white);
        line-height: 0;
    }

    .back-to-top:hover {
        background: #6776f4;
        color: var(--clr-white);
    }

    .back-to-top.active {
        visibility: visible;
        opacity: 0;
    }

/*--------------------------------------------------------------
# Override some default Bootstrap stylings
--------------------------------------------------------------*/
/* Dropdown menus */
.table-scroll {
    width: 100%;
    overflow-x: auto;
    overflow-y: auto;
    height: 400px;
}

.fixTableHead {
    overflow-y: auto;
}

    .fixTableHead thead th {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .fixTableHead tbody {
        position: relative;
        z-index: 0;
    }


/*.table-responsive {
    overflow-x: auto;
    -ms-overflow-style: auto;
}*/

.btn-flex {
    display: flex;
    align-items: center;
    justify-content: center
}

    .btn-flex span {
        margin-right: 0.5rem;
    }

.btn-sm {
    font-size: 0.813rem;
}

/*.btn-primary {
    --bs-btn-color: var(--clr-white);
    --bs-btn-bg: var(--clr-primary);
    --bs-btn-border-color: var(--clr-primary);
    --bs-btn-hover-color: var(--clr-white);
    --bs-btn-hover-bg: var(--clr-secondary);
    --bs-btn-hover-border-color: var(--clr-secondary);
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: var(--clr-white);
    --bs-btn-active-bg: var(--clr-primary);
    --bs-btn-active-border-color: var(--clr-primary);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--clr-white);
    --bs-btn-disabled-bg: #0d6efd;
    --bs-btn-disabled-border-color: #0d6efd;
}*/
.btn-primary {
    --bs-btn-color: var(--clr-white);
    --bs-btn-bg: #3047b0;
    --bs-btn-border-color: #3047b0;
    --bs-btn-hover-color: #ffffff;
    --bs-btn-hover-bg: #12288b;
    --bs-btn-hover-border-color: #0b228b;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: var(--clr-white);
    --bs-btn-active-bg: #3047b0;
    --bs-btn-active-border-color: #12288d;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--clr-white);
}

.btn-secondary {
    --bs-btn-color: var(--clr-white);
    --bs-btn-bg: var(--clr-grey-8);
    --bs-btn-border-color: var(--clr-grey-8);
    --bs-btn-hover-color: var(--clr-white);
    --bs-btn-hover-bg: var(--clr-grey-9);
    --bs-btn-hover-border-color: var(--clr-grey-9);
    --bs-btn-focus-shadow-rgb: 130, 138, 145;
    --bs-btn-active-color: var(--clr-white);
    --bs-btn-active-bg: #565e64;
    --bs-btn-active-border-color: #51585e;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--clr-white);
    --bs-btn-disabled-bg: #6c757d;
    --bs-btn-disabled-border-color: #6c757d;
}

.form-label, form-check-label {
    color: var(--clr-grey-13);
    font-size: 0.813rem;
}

.form-select {
    font-size: 0.813rem !important;
    color: var(--clr-grey-13);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23a00095' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    border: 1px solid var(--clr-grey-6);
}

.form-check-input:checked {
    background-color: var(--clr-secondary);
    border-color: var(--clr-secondary);
}

.form-check-input:focus {
    border-color: var(--clr-primary);
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(255,82,171,.25);
}

.form-control {
    font-size: 0.813rem;
    border: 1px solid var(--clr-grey-6);
    color: var(--clr-grey-13);
    appearance: auto !important;
}

    .form-control:focus {
        background-color: var(--clr-white) !important;
        border-color: #bbc0ed !important;
        box-shadow: 0 0 0 0.2rem #d4d7f1 !important;
    }

/*.form-select:focus {
    border-color: var(--clr-additional-1) !important;
    box-shadow: 0 0 0 0.2rem rgba(255, 82, 171, 0.25) !important;
}*/
.form-select:focus {
    border-color: #bbc0ed !important;
    box-shadow: 0 0 0 0.2rem #d4d7f1 !important;
}
.link-primary {
    color: #3047B0 !important;
    text-decoration: none;
}

    .link-primary:hover, .link-primary:focus {
        color: var(--clr-primary) !important;
    }

.text-primary {
    color: var(--clr-primary) !important;
}

.btn-group-zoom btn i {
    font-size: 1rem;
}

/*.pagination {
    --bs-pagination-padding-x: 0.75rem;
    --bs-pagination-padding-y: 0.375rem;
    --bs-pagination-font-size: 0.813rem;
    --bs-pagination-color: var(--clr-secondary);
    --bs-pagination-bg: var(--clr-white);
    --bs-pagination-border-width: 1px;
    --bs-pagination-border-color: #dee2e6;
    --bs-pagination-border-radius: 0.375rem;
    --bs-pagination-hover-color: var(--clr-secondary);
    --bs-pagination-hover-bg: #e9ecef;
    --bs-pagination-hover-border-color: #dee2e6;
    --bs-pagination-focus-color: var(--clr-secondary);
    --bs-pagination-focus-bg: #e9ecef;*/
/*--bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);*/
/*--bs-pagination-focus-box-shadow: none;
    --bs-pagination-active-color: var(--clr-white);
    --bs-pagination-active-bg: var(--clr-primary);
    --bs-pagination-active-border-color: var(--clr-primary);
    --bs-pagination-disabled-color: var(--clr-primary);
    --bs-pagination-disabled-bg: var(--clr-white);
    --bs-pagination-disabled-border-color: #dee2e6;
    list-style: none;
}*/
.pagination {
    --bs-pagination-padding-x: 0.75rem;
    --bs-pagination-padding-y: 0.375rem;
    --bs-pagination-font-size: 0.813rem;
    --bs-pagination-color: #3047b0;
    --bs-pagination-bg: var(--clr-white);
    --bs-pagination-border-width: 1px;
    --bs-pagination-border-color: #dee2e6;
    --bs-pagination-border-radius: 0.375rem;
    --bs-pagination-hover-color: #3047b0;
    --bs-pagination-hover-bg: #e9ecef;
    --bs-pagination-hover-border-color: #dee2e6;
    --bs-pagination-focus-color: #3047b0;
    --bs-pagination-focus-bg: #e9ecef;
    /* --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); */
    --bs-pagination-focus-box-shadow: none;
    --bs-pagination-active-color: var(--clr-white);
    --bs-pagination-active-bg: #3047b0;
    --bs-pagination-active-border-color: #3047b0;
    --bs-pagination-disabled-color: #3047b0;
    --bs-pagination-disabled-bg: var(--clr-white);
    --bs-pagination-disabled-border-color: #dee2e6;
    list-style: none;
}

textarea {
    resize: none
}

.modal-header {
    background-color: var(--clr-grey-3);
}

    .modal-header .modal-title {
        font-size: 1rem;
        font-weight: 600;
    }

.modal-body .lead {
    font-size: 1rem;
    font-weight: 500;
    color: var(--clr-warning-5);
}

.modal-footer {
    background-color: var(--clr-grey-2);
}
/* Dropdown menus */
.dropdown-menu {
    border-radius: 4px;
    padding: 10px 0;
    -webkit-animation-name: dropdown-animate;
    animation-name: dropdown-animate;
    -webkit-animation-duration: 0.2s;
    animation-duration: 0.2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    border: 0;
    box-shadow: 0 5px 30px 0 rgba(82, 63, 105, 0.2);
}

    .dropdown-menu .dropdown-header,
    .dropdown-menu .dropdown-footer {
        text-align: center;
        font-size: 15px;
        padding: 10px 25px;
    }

        .dropdown-menu .dropdown-footer a {
            color: #444444;
            text-decoration: underline;
        }

            .dropdown-menu .dropdown-footer a:hover {
                text-decoration: none;
            }

    .dropdown-menu .dropdown-divider {
        color: #a5c5fe;
        margin: 0;
    }

    .dropdown-menu .dropdown-item {
        font-size: 14px;
        padding: 10px 15px;
        transition: 0.3s;
    }

        .dropdown-menu .dropdown-item i {
            margin-right: 10px;
            font-size: 18px;
            line-height: 0;
        }

        .dropdown-menu .dropdown-item:hover {
            background-color: #f6f9ff;
        }

@media (min-width: 768px) {

    .dropdown-menu-arrow::before {
        content: "";
        width: 13px;
        height: 13px;
        background: #fff;
        position: absolute;
        top: -7px;
        right: 20px;
        transform: rotate(45deg);
        border-top: 1px solid #eaedf1;
        border-left: 1px solid #eaedf1;
    }
}

@-webkit-keyframes dropdown-animate {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }

    0% {
        opacity: 0;
    }
}

@keyframes dropdown-animate {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }

    0% {
        opacity: 0;
    }
}

/* Light Backgrounds */
.bg-primary-light {
    background-color: #cfe2ff;
    border-color: #cfe2ff;
}

.bg-secondary-light {
    background-color: #e2e3e5;
    border-color: #e2e3e5;
}

.bg-success-light {
    background-color: #d1e7dd;
    border-color: #d1e7dd;
}

.bg-danger-light {
    background-color: #f8d7da;
    border-color: #f8d7da;
}

.bg-warning-light {
    background-color: #fff3cd;
    border-color: #fff3cd;
}

.bg-info-light {
    background-color: #cff4fc;
    border-color: #cff4fc;
}

.bg-dark-light {
    background-color: #d3d3d4;
    border-color: #d3d3d4;
}




.card-img-overlay {
    background-color: rgba(255, 255, 255, 0.6);
}

.search-card {
    background-color: var(--clr-grey-2)
}

.data-table-card .card-body {
    position: relative;
    /*padding-top: 0rem;*/
    /*padding-bottom:1.25rem;*/
}
/*    .data-table-card .card-body > .dataTables_wrapper {
        width:100% !important;
        position: relative;
        border: 1px solid #ff0000;

    }
        .data-table-card .card-body > .dataTables_wrapper .dataTables_paginate {
            position:absolute !important;
            right:0px !important;
            border: 1px solid #ff0000;
        }*/
.dataTable-btn-group {
    position: absolute;
    z-index: 2;
    top: 0rem;
    right: 260px;
    display: flex;
    justify-content: end;
    align-items: center;
}

    .dataTable-btn-group .btn-sm {
        font-size: 13px;
    }

.dataTable-btn-group-2 {
    right: 0;
}

@media screen and (max-width:991px) {
    .dataTable-btn-group {
        position: relative;
        right: 0;
        flex-wrap: wrap;
    }

        .dataTable-btn-group .btn {
            margin-bottom: 5px;
        }
}

#TableEmployee_wrapper .row:nth-of-type(2) .col-sm-12 {
    min-height: 400px;
    width: 100%;
    /*   height:450px;*/
    overflow: auto;
}

.dataTables_wrapper .row:nth-of-type(2) .col-sm-12 {
    /*min-height: 400px;*/
    width: 100%;
    /*   height:450px;*/
    overflow: auto;
}
/* Alerts */
.alert-heading {
    font-weight: 500;
    font-size: 20px;
}

/* Close Button */

.btn-close:focus {
    outline: 0;
    box-shadow: none;
}

/* Accordion */
.accordion-item {
    border: 1px solid #ebeef4;
}

.accordion-button:focus {
    outline: 0;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: #012970;
    background-color: #f6f9ff;
}

.accordion-flush .accordion-button {
    padding: 15px 0;
    background: none;
    border: 0;
}

    .accordion-flush .accordion-button:not(.collapsed) {
        box-shadow: none;
        color: #4154f1;
    }


.accordion-flush .accordion-body {
    padding: 0 0 15px 0;
    color: #3e4f6f;
    font-size: 15px;
}

/* Breadcrumbs */
.breadcrumb {
    font-size: 14px;
    color: #899bbd;
    font-weight: 600;
}

    .breadcrumb a {
        color: #899bbd;
        transition: 0.3s;
    }

        .breadcrumb a:hover {
            color: #51678f;
        }

    .breadcrumb .breadcrumb-item::before {
        color: #899bbd;
    }

    .breadcrumb .active {
        color: #51678f;
        font-weight: 600;
    }

/* Bordered Tabs */
.nav-tabs-bordered {
    border-bottom: 2px solid #ebeef4;
}

    .nav-tabs-bordered .nav-link {
        margin-bottom: -2px;
        border: none;
        color: #2c384e;
    }

        .nav-tabs-bordered .nav-link:hover,
        .nav-tabs-bordered .nav-link:focus {
            color: #4154f1;
        }

        .nav-tabs-bordered .nav-link.active {
            background-color: var(--clr-white);
            color: #4154f1;
            border-bottom: 2px solid #4154f1;
        }

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.logo {
    line-height: 1;
}

@media (min-width: 1200px) {
    .logo {
        width: 170px;
    }
}

.logo img {
    max-height: 40px;
    margin-left: 6px;
}

.logo span {
    font-size: 26px;
    font-weight: 700;
    color: #012970;
}

.header {
    transition: all 0.5s;
    z-index: 997;
    height: 60px;
    box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
    /* background-color: var(--clr-white);*/
    background-color: #3047B0; /*padding-left: 20px;*/
    color: white;
    /* Toggle Sidebar Button */
    /* Search Bar */
}

    .header .toggle-sidebar-btn {
        font-size: 28px;
        padding-left: 5px;
        cursor: pointer;
        color: #2E2E2E;
        font-weight: bold;
        padding-right: 10px;
    }

    .header .search-bar {
        min-width: 360px;
        padding: 0 20px;
    }

@media (max-width: 1199px) {
    .header .search-bar {
        position: fixed;
        top: 50px;
        left: 0;
        right: 0;
        padding: 20px;
        box-shadow: 0px 0px 15px 0px rgba(1, 41, 112, 0.1);
        background: white;
        z-index: 9999;
        transition: 0.3s;
        visibility: hidden;
        opacity: 0;
    }

    .header .search-bar-show {
        top: 60px;
        visibility: visible;
        opacity: 1;
    }
}

.header .search-form {
    width: 100%;
}

    .header .search-form input {
        border: 0;
        font-size: 14px;
        color: #012970;
        border: 1px solid rgba(1, 41, 112, 0.2);
        padding: 7px 38px 7px 8px;
        border-radius: 3px;
        transition: 0.3s;
        width: 100%;
    }

        .header .search-form input:focus,
        .header .search-form input:hover {
            outline: none;
            box-shadow: 0 0 10px 0 rgba(1, 41, 112, 0.15);
            border: 1px solid rgba(1, 41, 112, 0.3);
        }

    .header .search-form button {
        border: 0;
        padding: 0;
        margin-left: -30px;
        background: none;
    }

        .header .search-form button i {
            color: #012970;
        }

/*--------------------------------------------------------------
# Header Nav
--------------------------------------------------------------*/
.header-nav ul {
    list-style: none;
}

.header-nav > ul {
    margin: 0;
    padding: 0;
}

.header-nav .nav-icon {
    font-size: 22px;
    color: #012970;
    margin-right: 25px;
    position: relative;
}

.header-nav .nav-profile {
    color: #2e2e2e;
}

    .header-nav .nav-profile img {
        max-height: 36px;
    }

    .header-nav .nav-profile span {
        font-size: 12px;
        /*  font-weight: 600;*/
    }

.header-nav .badge-number {
    position: absolute;
    inset: -2px -5px auto auto;
    font-weight: normal;
    font-size: 12px;
    padding: 3px 6px;
    background-color: purple !important;
    border-radius: 10px;
}

.header-nav .notifications {
    inset: 8px -15px auto auto !important;
}

    .header-nav .notifications .notification-item {
        display: flex;
        align-items: center;
        padding: 15px 10px;
        transition: 0.3s;
    }

        .header-nav .notifications .notification-item i {
            margin: 0 20px 0 10px;
            font-size: 24px;
        }

        .header-nav .notifications .notification-item h4 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .header-nav .notifications .notification-item p {
            font-size: 13px;
            margin-bottom: 3px;
            color: #919191;
        }

        .header-nav .notifications .notification-item:hover {
            background-color: #f6f9ff;
        }

.header-nav .messages {
    inset: 8px -15px auto auto !important;
}

    .header-nav .messages .message-item {
        padding: 15px 10px;
        transition: 0.3s;
    }

        .header-nav .messages .message-item a {
            display: flex;
        }

        .header-nav .messages .message-item img {
            margin: 0 20px 0 10px;
            max-height: 40px;
        }

        .header-nav .messages .message-item h4 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 5px;
            color: #444444;
        }

        .header-nav .messages .message-item p {
            font-size: 13px;
            margin-bottom: 3px;
            color: #919191;
        }

        .header-nav .messages .message-item:hover {
            background-color: #f6f9ff;
        }

.header-nav .profile {
    /*min-width: 240px;*/
    /* padding-bottom: 0;*/
    top: 8px !important;
}

    .header-nav .profile .dropdown-header h6 {
        font-size: 18px;
        margin-bottom: 0;
        font-weight: 600;
        color: #444444;
    }

    .header-nav .profile .dropdown-header span {
        font-size: 14px;
    }

    .header-nav .profile .dropdown-item {
        font-size: 12px;
        padding: 10px 15px;
        transition: 0.3s;
    }

        .header-nav .profile .dropdown-item i {
            margin-right: 10px;
            font-size: 18px;
            line-height: 0;
        }

        .header-nav .profile .dropdown-item:hover {
            background-color: #f6f9ff;
        }

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
.sidebar {
    position: fixed;
    top: 60px;
    left: 0;
    bottom: 0;
    width: 232px;
    z-index: 996;
    transition: all 0.3s;
    /*    padding: 10px;*/
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--clr-grey-4) transparent;
    /*  box-shadow: 0px 0px 20px rgba(1, 41, 112, 0.1);*/
    background-color: var(--clr-white);
    border-right: 1px var(--clr-grey-5) solid;
    font-size: 0.875rem
}

.bd-right {
    border-right: 1px #DDDDDD solid;
    background-color: white;
    margin: 0;
    padding: 0;
    height: 60px;
}

@media (max-width: 1199px) {
    .sidebar {
        left: -300px;
    }
}

.sidebar::-webkit-scrollbar {
    width: 5px;
    height: 8px;
    background-color: var(--clr-white);
}

.sidebar::-webkit-scrollbar-thumb {
    background-color: #aab7cf;
}

@media (min-width: 1200px) {

    #main,
    #footer {
        margin-left: 231px;
    }
}

@media (max-width: 1199px) {
    .toggle-sidebar .sidebar {
        left: 0;
        margin-top:80px;
    }
}

@media (min-width: 1200px) {

    .toggle-sidebar #main,
    .toggle-sidebar #footer {
        margin-left: 0;
        margin-top: 80px;
    }

    .toggle-sidebar .sidebar {
        left: -300px;
    }
}

.sidebar-nav {
    padding: 0;
    margin: 0;
    list-style: none;
}

    .sidebar-nav li {
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .sidebar-nav .nav-item {
        margin-bottom: 0.25rem;
    }

    .sidebar-nav .nav-heading {
        text-transform: uppercase;
        color: #899bbd;
        font-weight: 600;
        margin: 10px 0 5px 15px;
    }

    .sidebar-nav .nav-link {
        display: flex;
        align-items: center;
        /*        font-weight: 600;*/
        color: var(--clr-grey-13);
        transition: 0.3;
        background: var(--clr-white);
        padding: 10px 15px;
        /*        border-radius: 4px;*/
    }

        .sidebar-nav .nav-link i {
            font-size: 16px;
            margin-right: 10px;
            color: var(--clr-secondary);
        }

        .sidebar-nav .nav-link.collapsed {
            /*color: #2e2e2e;*/
            background: var(--clr-white);
        }

            .sidebar-nav .nav-link.collapsed i {
                color: var(--clr-secondary);
            }

        .sidebar-nav .nav-link:hover {
            color: var(--clr-white);
            /* background: var(--clr-primary);*/
            background: #3047B0;
        }

        .sidebar-nav .nav-link:focus {
            color: var(--clr-white);
            background: #3047B0;
        }

            .sidebar-nav .nav-link:focus i {
                color: var(--clr-white);
            }

        .sidebar-nav .nav-link:hover i {
            color: var(--clr-white);
        }

        .sidebar-nav .nav-link .bi-chevron-down {
            margin-right: 0;
            transition: transform 0.2s ease-in-out;
        }

        .sidebar-nav .nav-link:not(.collapsed) .bi-chevron-down {
            transform: rotate(180deg);
        }

    .sidebar-nav .nav-content {
        padding: 5px 0 0 0;
        margin: 0;
        list-style: none;
    }

        .sidebar-nav .nav-content a {
            display: flex;
            align-items: center;
            font-size: 14px;
            /*  font-weight: 600;*/
            color: var(--clr-grey-13);
            transition: 0.3;
            padding: 0.5rem 0rem 0.5rem 2.5rem;
            transition: 0.3s;
            text-decoration: none;
        }

            .sidebar-nav .nav-content a i {
                font-size: 0.5rem;
                margin-right: 0.5rem;
                line-height: 0;
                border-radius: 50%;
                border: 1px solid var(--clr-secondary)
            }

            .sidebar-nav .nav-content a:hover {
                background-color: var(--clr-grey-3)
            }

            .sidebar-nav .nav-content a:hover,
            .sidebar-nav .nav-content a.active {
                color: var(--clr-secondary);
            }

                .sidebar-nav .nav-content a.active i {
                    background-color: var(--clr-secondary);
                }

/*--------------------------------------------------------------
# Dashboard
--------------------------------------------------------------*/
/* Filter dropdown */
.dashboard .filter {
    position: absolute;
    right: 0px;
    top: 15px;
}

    .dashboard .filter .icon {
        color: #aab7cf;
        padding-right: 20px;
        padding-bottom: 5px;
        transition: 0.3s;
        font-size: 16px;
    }

        .dashboard .filter .icon:hover,
        .dashboard .filter .icon:focus {
            color: #4154f1;
        }

    .dashboard .filter .dropdown-header {
        padding: 8px 15px;
    }

        .dashboard .filter .dropdown-header h6 {
            text-transform: uppercase;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1px;
            color: #aab7cf;
            margin-bottom: 0;
            padding: 0;
        }

    .dashboard .filter .dropdown-item {
        padding: 8px 15px;
    }

/* Info Cards */
.dashboard .info-card {
    padding-bottom: 10px;
}

    .dashboard .info-card h6 {
        font-size: 28px;
        color: #012970;
        font-weight: 700;
        margin: 0;
        padding: 0;
    }

.dashboard .card-icon {
    font-size: 32px;
    line-height: 0;
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    flex-grow: 0;
}

.dashboard .sales-card .card-icon {
    color: #4154f1;
    background: #f6f6fe;
}

.dashboard .revenue-card .card-icon {
    color: #2eca6a;
    background: #e0f8e9;
}

.dashboard .customers-card .card-icon {
    color: #ff771d;
    background: #ffecdf;
}

/* Activity */
.dashboard .activity {
    font-size: 14px;
}

    .dashboard .activity .activity-item .activite-label {
        color: #888;
        position: relative;
        flex-shrink: 0;
        flex-grow: 0;
        min-width: 64px;
    }

        .dashboard .activity .activity-item .activite-label::before {
            content: "";
            position: absolute;
            right: -11px;
            width: 4px;
            top: 0;
            bottom: 0;
            background-color: #eceefe;
        }

    .dashboard .activity .activity-item .activity-badge {
        margin-top: 3px;
        z-index: 1;
        font-size: 11px;
        line-height: 0;
        border-radius: 50%;
        flex-shrink: 0;
        border: 3px solid #fff;
        flex-grow: 0;
    }

    .dashboard .activity .activity-item .activity-content {
        padding-left: 10px;
        padding-bottom: 20px;
    }

    .dashboard .activity .activity-item:first-child .activite-label::before {
        top: 5px;
    }

    .dashboard .activity .activity-item:last-child .activity-content {
        padding-bottom: 0;
    }

/* News & Updates */
.dashboard .news .post-item + .post-item {
    margin-top: 15px;
}

.dashboard .news img {
    width: 80px;
    float: left;
    border-radius: 5px;
}

.dashboard .news h4 {
    font-size: 15px;
    margin-left: 95px;
    font-weight: bold;
    margin-bottom: 5px;
}

    .dashboard .news h4 a {
        color: #012970;
        transition: 0.3s;
    }

        .dashboard .news h4 a:hover {
            color: #4154f1;
        }

.dashboard .news p {
    font-size: 14px;
    color: #777777;
    margin-left: 95px;
}

/* Recent Sales */
/*.dashboard .recent-sales {
    font-size: 14px;
}

    .dashboard .recent-sales .table thead {
        background: #f6f6fe;
    }

        .dashboard .recent-sales .table thead th {
            border: 0;
        }

    .dashboard .recent-sales .dataTable-top {
        padding: 0 0 10px 0;
    }

    .dashboard .recent-sales .dataTable-bottom {
        padding: 10px 0 0 0;
    }*/

/* Top Selling */
.dashboard .top-selling {
    font-size: 14px;
}

    .dashboard .top-selling .table thead {
        background: #f6f6fe;
    }

        .dashboard .top-selling .table thead th {
            border: 0;
        }

    .dashboard .top-selling .table tbody td {
        vertical-align: middle;
    }

    .dashboard .top-selling img {
        border-radius: 5px;
        max-width: 60px;
    }

/*--------------------------------------------------------------
# Icons list page
--------------------------------------------------------------*/
.iconslist {
    display: grid;
    max-width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem;
    padding-top: 15px;
}

    .iconslist .icon {
        background-color: var(--clr-white);
        border-radius: 0.25rem;
        text-align: center;
        color: #012970;
        padding: 15px 0;
    }

    .iconslist i {
        margin: 0.25rem;
        font-size: 2.5rem;
    }

    .iconslist .label {
        font-family: var(--bs-font-monospace);
        display: inline-block;
        width: 100%;
        overflow: hidden;
        padding: 0.25rem;
        font-size: 12px;
        text-overflow: ellipsis;
        white-space: nowrap;
        color: #666;
    }

/*--------------------------------------------------------------
# Profie Page
--------------------------------------------------------------*/
.profile .profile-card img {
    max-width: 120px;
}

.profile .profile-card h2 {
    font-size: 24px;
    font-weight: 700;
    color: #2c384e;
    margin: 10px 0 0 0;
}

.profile .profile-card h3 {
    font-size: 18px;
}

.profile .profile-card .social-links a {
    font-size: 20px;
    display: inline-block;
    color: rgba(1, 41, 112, 0.5);
    line-height: 0;
    margin-right: 10px;
    transition: 0.3s;
}

    .profile .profile-card .social-links a:hover {
        color: #012970;
    }

.profile .profile-overview .row {
    margin-bottom: 20px;
    font-size: 15px;
}

.profile .profile-overview .card-title {
    color: #012970;
}

.profile .profile-overview .label {
    font-weight: 600;
    color: rgba(1, 41, 112, 0.6);
}

.profile .profile-edit label {
    font-weight: 600;
    color: rgba(1, 41, 112, 0.6);
}

.profile .profile-edit img {
    max-width: 120px;
}

/*--------------------------------------------------------------
# F.A.Q Page
--------------------------------------------------------------*/
.faq .basic h6 {
    font-size: 18px;
    font-weight: 600;
    color: #4154f1;
}

.faq .basic p {
    color: #6980aa;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
    padding: 28px 30px;
}

    .contact .info-box i {
        font-size: 38px;
        line-height: 0;
        color: #4154f1;
    }

    .contact .info-box h3 {
        font-size: 20px;
        color: #012970;
        font-weight: 700;
        margin: 20px 0 10px 0;
    }

    .contact .info-box p {
        padding: 0;
        line-height: 24px;
        font-size: 14px;
        margin-bottom: 0;
    }

.contact .php-email-form .error-message {
    display: none;
    color: var(--clr-white);
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.contact .php-email-form .sent-message {
    display: none;
    color: var(--clr-white);
    background: #18d26e;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}

    .contact .php-email-form .loading:before {
        content: "";
        display: inline-block;
        border-radius: 50%;
        width: 24px;
        height: 24px;
        margin: 0 10px -6px 0;
        border: 3px solid #18d26e;
        border-top-color: #eee;
        -webkit-animation: animate-loading 1s linear infinite;
        animation: animate-loading 1s linear infinite;
    }

.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    border-radius: 0;
}

    .contact .php-email-form input:focus,
    .contact .php-email-form textarea:focus {
        border-color: #4154f1;
    }

.contact .php-email-form input {
    padding: 10px 15px;
}

.contact .php-email-form textarea {
    padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
    background: #4154f1;
    border: 0;
    padding: 10px 30px;
    color: var(--clr-white);
    transition: 0.4s;
    border-radius: 4px;
}

    .contact .php-email-form button[type=submit]:hover {
        background: #5969f3;
    }

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Error 404
--------------------------------------------------------------*/
.error-404 {
    padding: 30px;
}

    .error-404 h1 {
        font-size: 180px;
        font-weight: 700;
        color: #4154f1;
        margin-bottom: 0;
        line-height: 150px;
    }

    .error-404 h2 {
        font-size: 24px;
        font-weight: 700;
        color: #012970;
        margin-bottom: 30px;
    }

    .error-404 .btn {
        background: #51678f;
        color: var(--clr-white);
        padding: 8px 30px;
    }

        .error-404 .btn:hover {
            background: #3e4f6f;
        }

@media (min-width: 992px) {
    .error-404 img {
        max-width: 50%;
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    padding: 20px 0;
    font-size: 14px;
    transition: all 0.3s;
    border-top: 1px solid #cddfff;
    position: absolute;
    bottom: 0;
    width: 83%;
}

    .footer .copyright {
        text-align: center;
        color: #012970;
    }

    .footer .credits {
        padding-top: 5px;
        text-align: center;
        font-size: 13px;
        color: #012970;
    }

.f-fix {
    position: absolute;
    bottom: 0;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.pb-0 {
    margin-bottom: 0 !important;
}

.footer-fix {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0px;
    width: 100%;
    color: white;
    text-align: center;
    z-index: 99;
    background-color: var(--clr-grey-2);
    padding: 0.5rem;
    border-top: 1px solid var(--clr-grey-4);
}

    .footer-fix p {
        color: var(--clr-grey-10);
        font-size: 12px;
    }



.login-bg {
    background-image: url(../img/login-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom
}

.login-card .credits p {
    font-size: 12px;
    text-align: right
}

.login-card .dnt-text-box {
    border-radius: 0.375rem !important;
}

.login-card .dntCaptcha {
    display: flex;
}

.login-card .form-control, .label-auth {
    font-size: 0.875rem;
}

.pass-info {
    list-style: none;
}

    .pass-info li {
        padding: 0.5rem 0rem;
        position: relative;
        display: flex;
    }

        .pass-info li span {
            padding-left: 0.5rem;
        }

        .pass-info li::before {
            content: "\ebe7";
            font-family: 'boxicons';
            color: var(--clr-primary);
            left: 0rem
        }
/*.btn-group-sm > .btn, .btn-sm {
    --bs-btn-padding-y: 0.25rem;
    --bs-btn-padding-x: 0.5rem;
    --bs-btn-font-size: 0.75rem;
    --bs-btn-border-radius: 0.25rem;
}*/
.view-seats-list .dropdown-toggle::after {
    display: none;
}

.view-seats-list .dropdown-menu {
    width: 200px;
}

    .view-seats-list .dropdown-menu button {
        display: flex;
        align-items: center;
        justify-content: start;
    }

#Div_Menu .card {
    border: 1px solid var(--clr-grey-3);
    margin-bottom: 1rem !important;
}

    #Div_Menu .card .card-header {
        background-color: var(--clr-grey-1);
        border-bottom: 1px solid var(--clr-grey-3);
    }

        #Div_Menu .card .card-header .card-title {
            font-weight: 600;
        }

    #Div_Menu .card .card-body table td {
        padding: 0.5rem;
    }

.seat_modal .modal-header h5 {
    font-size: 1rem;
    font-weight: 600;
}

.seat_modal .dd-btns button {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.seat_modal .dd-btns {
    display: flex;
    flex-direction: column;
    width: 300px;
}

    .seat_modal .dd-btns button {
        font-size: 13px;
    }

        .seat_modal .dd-btns button b {
            font-size: 14px;
            margin-left: 0.5rem;
        }

.dynamic-table-seats {
    border-collapse: collapse;
    background-color: var(--clr-grey-3);
}

    .dynamic-table-seats tr td {
        border: 1px solid var(--clr-grey-5);
    }

        .dynamic-table-seats tr td .desk-image {
            max-height: 1.25rem;
            width: auto;
        }
/*
#TestDynamicTableSeats {
    border: 1px solid #ff0000;
}
    #TestDynamicTableSeats tr:first-child td:first-child {
        background-color: var(--clr-grey-10);
    }
    #TestDynamicTableSeats tr:first-child {
        background-color: var(--clr-grey-9);
    }
    #TestDynamicTableSeats tr td:first-child {
        background-color: var(--clr-grey-9);
    }

        #TestDynamicTableSeats tr:first-child a, #TestDynamicTableSeats tr td:first-child a {
            color:var(--clr-white)
        }
        #TestDynamicTableSeats tr:first-child td {
            padding: 0.5rem 0rem;
        }
*/
.nav-tabs-style {
    --bs-nav-tabs-border-width: 1px;
    --bs-nav-tabs-border-color: #dee2e6;
    --bs-nav-tabs-border-radius: 0.375rem;
    --bs-nav-tabs-link-hover-border-color: #e9ecef #e9ecef #dee2e6;
    --bs-nav-tabs-link-active-color: #495057;
    --bs-nav-tabs-link-active-bg: #fff;
    --bs-nav-tabs-link-active-border-color: #dee2e6 #dee2e6 var(--clr-secondary);
    border-bottom: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color);
}

    .nav-tabs-style .nav-link.active {
        color: var(--clr-white);
        background-color: #3047b0;
        border-color: #dee2e6 #dee2e6 #fff;
    }

    .nav-tabs-style .nav-link {
        color: #3047b0;
        /* font-weight: 600;*/
    }


.seat-view-accordion .accordion-button::after {
    width: 1rem;
    height: 1rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235d5d5d'%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") !important;
    background-size: 1rem;
}

.seat-view-accordion .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='%23ffffff'%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") !important;
}

.seat-view-accordion .accordion-button {
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.75rem 1rem;
    background-color: var(--clr-grey-2);
}

    .seat-view-accordion .accordion-button:not(.collapsed) {
        box-shadow: none;
        color: var(--clr-white);
        background-color: var(--clr-primary);
    }

.seat-view-accordion .accordion-body {
    padding: 1rem;
}

.seatCounter {
    display: flex;
    justify-content: start;
    flex-direction: column;
}

    .seatCounter .seatCounter-item {
        display: flex;
        justify-content: space-between;
        padding: 0.75rem 1rem;
    }

.tdSeat {
    background-color: var(--clr-grey-3);
}

    .tdSeat span {
        font-weight: 600;
        color: var(--clr-grey-11);
        font-size: 13px;
    }
/*-------------------------Area Configuration css*/

.seat-view-table {
    border-collapse: collapse;
    width: 100%;
}

    .seat-view-table th,
    .seat-view-table td {
        border: 1px solid var(--clr-grey-3);
    }

    .seat-view-table thead th {
        border-bottom: 3px solid var(--clr-grey-5);
        background-color: var(--clr-grey-2);
    }

    .seat-view-table tbody th {
        border-right: 3px solid var(--clr-grey-5);
        background-color: var(--clr-grey-2);
    }

    .seat-view-table thead th:first-child {
        background-color: var(--clr-grey-5);
    }

    .seat-view-table thead .action-link a,
    .seat-view-table tbody .action-link a {
        color: var(--clr-primary);
        font-size: 1.25rem;
        font-weight: 100;
    }

    .seat-view-table thead .action-link .form-check-input,
    .seat-view-table tbody .action-link .form-check-input {
        color: var(--clr-primary) !important;
        font-size: 1rem !important;
        font-weight: 100;
    }

    .seat-view-table thead th a:hover,
    .seat-view-table tbody th a:hover {
        color: var(--clr-secondary) !important;
    }

    .seat-view-table .action-link a {
        text-decoration: none;
    }

.action-link {
    display: flex;
    align-items: center;
    justify-content: start;
}

.seat-view-table tbody td:hover {
    background-color: var(--clr-grey-3);
}

.action-link .form-check-input {
    margin-top: 0rem;
}

.action-link .action-link-icon {
    margin-right: 0.5rem;
    position: relative;
    z-index: 0;
}

.action-link .link-icon-close::before {
    content: "\eb97";
    font-family: "remixicon";
    color: var(--clr-error-4);
    position: absolute;
    top: -7px;
    right: -7px;
    font-size: 14px;
    z-index: 999;
}

.action-link .link-icon-block::before {
    content: "\f3a1";
    font-family: "remixicon";
    color: var(--clr-error-4);
    position: absolute;
    top: -7px;
    right: -7px;
    font-size: 14px;
    z-index: 999;
}

.action-link .seat-count {
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--clr-grey-11);
}

.selectedRowCol {
    background-color: var(--clr-grey-5) !important;
}

.current {
    color: var(--clr-content-6) !important;
}

    .current a,
    .current span {
        color: var(--clr-content-6) !important;
    }

.booked {
    color: var(--clr-content-7) !important;
}

    .booked a,
    .booked span {
        color: var(--clr-content-7) !important;
    }

.available {
    color: var(--clr-primary) !important;
}

    .available a,
    .available span {
        color: var(--clr-primary) !important;
    }

.request {
    color: var(--clr-content-8) !important;
}

    .request a,
    .request span {
        color: var(--clr-content-8) !important;
    }

.release {
    color: var(--clr-content-2) !important;
}

    .release a,
    .release span {
        color: var(--clr-content-2) !important;
    }

.request-blocked {
    color: var(--clr-warning-6) !important;
}

    .request-blocked a,
    .request-blocked span {
        color: var(--clr-warning-6) !important;
    }

.process-selected {
    background-color: var(--clr-secondary) !important;
}

    .process-selected a,
    .process-selected span {
        color: var(--clr-white) !important;
    }

.seatCounter .seatCounter-item span {
    font-size: 13px;
}

.seatCounter .seatCounter-item .seatCounter-counter {
    font-weight: 600;
}

.seatCounter .seatCounter-item:nth-of-type(odd) {
    background-color: var(--clr-white)
}

.seatCounter .seatCounter-item:nth-of-type(even) {
    background-color: var(--clr-grey-2)
}

.seatCounter .seatCounter-item:not(:last-child) {
    border-bottom: 1px solid var(--clr-grey-5);
}



/*----- Tab Links -----*/
/* Clearfix */
.tabs-style .tab-links {
    padding: 0px;
    margin: 0rem;
    display: flex;
    align-items: center;
    list-style: none;
    border-bottom: 2px solid var(--clr-secondary);
}

    .tabs-style .tab-links:after {
        content: '';
        display: block;
        clear: both;
    }

    .tabs-style .tab-links li {
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 0.25rem 0.25rem 0rem 0rem;
    }

        .tabs-style .tab-links li:not(:last-child) {
            margin-right: 0.25rem;
        }

    .tabs-style .tab-links a {
        padding: 0.5rem 1rem;
        border-radius: 0.25rem 0.25rem 0rem 0rem;
        background-color: var(--clr-grey-9);
        font-size: 0.875rem;
        color: var(--clr-white);
        transition: all linear 0.15s;
    }

        .tabs-style .tab-links a:hover {
            background-color: var(--clr-grey-8);
            text-decoration: none;
            color: var(--clr-white);
        }

.tabs-style li.active a, .tabs-style li.active a:hover {
    background-color: var(--clr-secondary);
    color: var(--clr-white);
}

.tabs-style .tab-content {
    background-color: var(--clr-grey-2);
    padding: 1rem;
}
/*----- Content of Tabs -----
    .tab-content {
        padding: 15px;
        border-radius: 3px;
        box-shadow: -1px 1px 1px rgba(0,0,0,0.15);
        background: #fff;
    }*/
.tab {
    display: none;
}

    .tab.active {
        display: block;
    }



.seatszoomer {
    position: absolute;
    right: 2rem;
    top: .5rem;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    z-index: 10;
}

    .seatszoomer a {
        font-size: 1rem;
        cursor: pointer;
        padding: 0.5rem 0.8rem;
    }

.table-meeting {
    width: 100%;
    vertical-align: top;
    border-collapse: collapse;
    background-color: var(--clr-white);
}

    .table-meeting tbody {
        position: relative;
    }

        .table-meeting thead th,
        .table-meeting tbody th,
        .table-meeting tbody td {
            padding: 1rem;
            position: relative;
        }

        .table-meeting thead th,
        .table-meeting tbody th {
            background-color: var(--clr-grey-1);
            font-size: 1rem;
            color: var(--clr-grey-13)
        }

        .table-meeting thead th,
        .table-meeting tbody th,
        .table-meeting tbody td {
            border: 2px solid var(--clr-grey-3);
        }

        .table-meeting thead th,
        .table-meeting tbody td {
            text-align: center;
        }


    .table-meeting thead th {
        width: 4.5rem;
    }


.datepicker-style .ui-datepicker {
    width: 100%;
}

.datepicker-style .ui-widget.ui-widget-content {
    background-color: var(--clr-grey-10);
}

.datepicker-style .ui-datepicker-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px;
    line-height: 50px;
    color: var(--clr-white);
    background: var(--clr-grey-13);
    margin-bottom: 1rem;
    border-radius: 0px;
    border: none;
}

.datepicker-style .ui-datepicker-prev,
.datepicker-style .ui-datepicker-next {
    width: 20px;
    height: 20px;
    text-indent: 9999px;
    border: 2px solid #b0aead;
    border-radius: 100%;
    cursor: pointer;
    overflow: hidden;
    margin-top: 12px;
}

.datepicker-style .ui-datepicker-prev {
    float: left;
    margin-left: 12px;
}

    .datepicker-style .ui-datepicker-prev:after {
        transform: rotate(45deg);
        margin: -43px 0px 0px 8px;
    }

.datepicker-style .ui-datepicker-next {
    float: right;
    margin-right: 12px;
}

    .datepicker-style .ui-datepicker-next:after {
        transform: rotate(-135deg);
        margin: -43px 0px 0px 6px;
    }

    .datepicker-style .ui-datepicker-prev:after,
    .datepicker-style .ui-datepicker-next:after {
        content: '';
        position: absolute;
        display: block;
        width: 4px;
        height: 4px;
        border-left: 2px solid #b0aead;
        border-bottom: 2px solid #b0aead;
    }

    .datepicker-style .ui-datepicker-prev:hover,
    .datepicker-style .ui-datepicker-next:hover,
    .datepicker-style .ui-datepicker-prev:hover:after,
    .datepicker-style .ui-datepicker-next:hover:after {
        border-color: #5ed1cc;
    }

.datepicker-style .ui-datepicker-title {
    text-align: center;
}

.datepicker-style .ui-datepicker-calendar {
    width: 100%;
    text-align: center;
}
    /*.datepicker-style .ui-datepicker-calendar thead tr th span {
        border: 1px solid #ffffff;
        display: flex;
        justify-content: center;
        align-items: center;*/
    /*display: block;*/
    /*width: 40px;
        color: var(--clr-white);
        margin-bottom: 5px;
        font-size: 16px;
        font-weight: 500;
    }*/
    .datepicker-style .ui-datepicker-calendar thead tr th span {
        display: flex;
        justify-content: center;
        align-items: center;
        /*display: block;*/
        color: var(--clr-white);
        margin-bottom: 5px;
        font-size: 16px;
        font-weight: 500;
    }



.datepicker-style .ui-state-default {
    /*display: block;*/
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--clr-white) !important;
    line-height: 40px;
    font-size: 0.875rem;
    font-weight: 600 !important;
    border: 1px solid var(--clr-grey-9) !important;
    background-color: var(--clr-grey-10) !important;
}

    .datepicker-style .ui-state-default:hover {
        color: var(--clr-white) !important;
        background-color: var(--clr-success-2) !important;
    }

.datepicker-style .ui-state-highlight {
    color: var(--clr-white) !important;
    background-color: var(--clr-success-3) !important;
}

.datepicker-style .ui-state-active {
    color: var(--clr-white) !important;
    background-color: var(--clr-success-3) !important;
}

.table-meeting {
    width: 100%;
    vertical-align: top;
    border-collapse: collapse;
    background-color: var(--clr-white);
}

    .table-meeting tbody td {
        position: relative;
        z-index: 0;
    }

    .table-meeting thead th,
    .table-meeting tbody th,
    .table-meeting tbody td {
        /*  height: 4rem;*/
        height: 60px;
        text-align: center;
        border: 2px solid var(--clr-grey-3);
    }

    .table-meeting thead th,
    .table-meeting tbody th {
        background-color: var(--clr-grey-1);
        font-size: 1rem;
        color: var(--clr-grey-13);
    }

    .table-meeting thead th,
    .table-meeting tbody td {
        text-align: center;
    }

        .table-meeting thead th:first-child {
            width: 6.75rem;
        }

        .table-meeting thead th:not(:first-child) {
            width: calc(100% / 7 - 6.75rem);
        }

    .table-meeting .metting-details {
        position: absolute;
        /*border-bottom: 1px solid var(--clr-white);*/
        z-index: 999999;
        width: 100%;
        display: flex;
        flex-direction: column;
        color: var(--clr-grey-13);
        padding: 0.5rem 0.25rem;
        font-size: 0.625rem;
        font-weight: 600;
    }

.meeting-bg-green {
    background-color: var(--clr-content-4);
}

.meeting-bg-red {
    background-color: var(--clr-error-2);
}

.meeting-bg-yellow {
    background-color: var(--clr-alert-3);
}

.meeting-bg-blue {
    background-color: var(--clr-content-6);
}

/* New Dashboard style */

.main-card {
    border-radius: 0rem;
    border: none;
}

    .main-card .card-header {
        padding: 1rem;
        background-color: var(--clr-white);
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid var(--clr-grey-4);
    }

        .main-card .card-header h5 {
            font-size: 1rem;
            font-weight: 800;
            margin-bottom: 0rem;
            text-transform: uppercase;
            color: var(--clr-grey-13);
            letter-spacing: 0.5px;
        }


/* Contracts widgets */
.widget-contract {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

    .widget-contract .widget-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .widget-contract .widget-content {
        padding: 0.75rem;
        width: calc((100% / 6) - 0.75rem);
        border-radius: 0.25rem;
        box-shadow: 0 .375rem 0.75rem rgba(0,0,0,.15);
    }

.ceoContent {
    width: calc((100% / 5) - 0.75rem) !important;
}

.widget-contract .widget-content .widget-info .count {
    margin-bottom: 0rem;
    font-size: 2rem;
    font-weight: 600;
    color: var(--clr-white)
}

.widget-contract .widget-content .descr {
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    color: var(--clr-white);
    letter-spacing: 0.5px;
}

.widget-contract .widget-content .widget-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    font-weight: 100;
    color: rgba(255,255,255,0.5);
}

.widget-contract .widget-content:nth-of-type(1) {
    background-color: var(--clr-content-1);
}

.widget-contract .widget-content:nth-of-type(2) {
    background-color: var(--clr-content-2);
}

.widget-contract .widget-content:nth-of-type(3) {
    background-color: var(--clr-content-3);
}

.widget-contract .widget-content:nth-of-type(4) {
    background-color: var(--clr-content-4);
}

.widget-contract .widget-content:nth-of-type(5) {
    background-color: var(--clr-content-5);
}

.widget-contract .widget-content:nth-of-type(6) {
    background-color: var(--clr-content-6);
}

/* Compliance widgets */
.widget-compliance {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .widget-compliance .widget-content {
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: space-between;
        padding: 0.75rem;
        width: calc((100% / 9) - 0.5rem);
        border-radius: 0.25rem;
        box-shadow: 0 .375rem 0.75rem rgba(0,0,0,.15);
    }

        .widget-compliance .widget-content .widget-info {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            margin-bottom: 0.5rem;
        }

            .widget-compliance .widget-content .widget-info .count {
                margin-bottom: 0rem;
                font-size: 2rem;
                font-weight: 600;
                color: var(--clr-white)
            }

        .widget-compliance .widget-content .descr {
            font-weight: 600;
            font-size: 11px;
            text-transform: uppercase;
            color: var(--clr-white);
            letter-spacing: 0.5px;
        }

        .widget-compliance .widget-content .widget-icon {
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 2rem;
            font-weight: 100;
            color: rgba(255,255,255,0.5);
        }

        .widget-compliance .widget-content:nth-of-type(1) {
            background-color: var(--clr-content-1);
        }

        .widget-compliance .widget-content:nth-of-type(2) {
            background-color: var(--clr-content-2);
        }

        .widget-compliance .widget-content:nth-of-type(3) {
            background-color: var(--clr-content-3);
        }

        .widget-compliance .widget-content:nth-of-type(4) {
            background-color: var(--clr-content-4);
        }

        .widget-compliance .widget-content:nth-of-type(5) {
            background-color: var(--clr-content-5);
        }

        .widget-compliance .widget-content:nth-of-type(6) {
            background-color: var(--clr-content-6);
        }

        .widget-compliance .widget-content:nth-of-type(7) {
            background-color: var(--clr-content-7);
        }

        .widget-compliance .widget-content:nth-of-type(8) {
            background-color: var(--clr-content-8);
        }

        .widget-compliance .widget-content:nth-of-type(9) {
            background-color: var(--clr-content-6);
        }
/* Audit widgets */
.widget-audit, .widget-audit .widget-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .widget-audit .widget-content {
        padding: 0.75rem;
        width: calc((100% / 6) - 0.75rem);
        border-radius: 0.25rem;
        box-shadow: 0 .375rem 0.75rem rgba(0,0,0,.15);
    }

        .widget-audit .widget-content .widget-info .count {
            margin-bottom: 0rem;
            font-size: 2rem;
            font-weight: 600;
            color: var(--clr-white)
        }

        .widget-audit .widget-content .descr {
            font-weight: 600;
            font-size: 11px;
            text-transform: uppercase;
            color: var(--clr-white);
            letter-spacing: 0.5px;
        }

        .widget-audit .widget-content .widget-icon {
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 2rem;
            font-weight: 100;
            color: rgba(255,255,255,0.5);
        }

        .widget-audit .widget-content:nth-of-type(1) {
            background-color: var(--clr-content-1);
        }

        .widget-audit .widget-content:nth-of-type(2) {
            background-color: var(--clr-content-2);
        }

        .widget-audit .widget-content:nth-of-type(3) {
            background-color: var(--clr-content-3);
        }

        .widget-audit .widget-content:nth-of-type(4) {
            background-color: var(--clr-content-4);
        }

        .widget-audit .widget-content:nth-of-type(5) {
            background-color: var(--clr-content-5);
        }

        .widget-audit .widget-content:nth-of-type(6) {
            background-color: var(--clr-content-6);
        }

        .widget-contract .widget-content .widget-icon,
        .widget-compliance .widget-content .widget-icon,
        .widget-audit .widget-content .widget-icon {
            color: white;
        }

    .widget-contract .widget-content, .widget-compliance .widget-content, .widget-audit .widget-content {
        padding: 0.5rem;
    }

        .widget-contract .widget-content .widget-info .count, .widget-compliance .widget-content .widget-info .count, .widget-audit .widget-content .widget-info .count {
            font-size: 1.5rem;
        }

.m-t-10 {
    margin-top: 10px !important;
}

#ddlDeptSearch + #ms-list-4.ms-options-wrap > .ms-options {
    right: 0;
}

.shadow {
    /*   display: flex;*/
    border-radius: 12px;
    background-color: #fff;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,.15)) drop-shadow(0 1px 3px rgba(0,0,0,.3));
    /*left: calc(15% - 326px);*/
    /* position: fixed;*/
    /*  z-index: 129;
    bottom: 51px;*/
    padding: 24px;
    margin: 20px;
    /*gap: 24px;*/
}

.psc-logo {
    width: 100px;
}

.left-img {
    width: 90%;
}

.login-box-w {
    margin: auto 0;
    padding: 5%
}

.text-box-gray {
    background-color: #F7F7F7;
    border: #dddddd;
}

.blue-btn {
    background-color: #3047B0;
    border: 0;
}

.heading-lft-img {
    color: #3047B0 !important;
    text-decoration: none;
}

.blue-head {
    background-color: #3047B0;
}

.gray_label {
    background-color: #e7e7e7;
    border: 1px solid #ced4da;
    padding: 6px;
}

.active > .page-link, .page-link.active {
    background-color: #3047b0 !important;
    border-color: #3047b0 !important;
}
/*
.container {
    display: flex;
    max-width: 100% !important;
}

.table-container {
    flex: 1;
    margin: 10px;
}

th {
    position: relative;
}

th span {
    display: block;
    font-size: 0.8em;
    margin-top: 5px;
}*/