﻿@charset "UTF-8";

@font-face {
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 300;
    src: url("../fonts/NunitoSans.ttf");
}

@font-face {
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/NunitoSans.ttf");
}

@font-face {
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 500;
    src: url("../fonts/NunitoSans.ttf");
}

@font-face {
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 600;
    src: url("../fonts/NunitoSans.ttf");
}

@font-face {
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 700;
    src: url("../fonts/NunitoSans.ttf");
}

@font-face {
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 800;
    src: url("../fonts/NunitoSans.ttf");
}

@font-face {
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 900;
    src: url("../fonts/NunitoSans.ttf");
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/Manrope.ttf);
}

body {
    font-family: 'Nunito Sans', sans-serif !important;
    color: #242424;
    min-height: 100vh;
    -webkit-overflow-scrolling: touch;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #e9ecf5;
    font-size: 13px;
    font-weight: 500;
}

a:hover {
    text-decoration: none;
}

.app-header {
    margin: 0px 0px 12px;
    background-color: #1f3966;
}

body.smr-open {
    overflow: hidden;
}

.mask {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.slide-menu-left {
    left: -300px;
    top: 0;
    width: 300px;
    height: 100%;
}

.toggle-slide-left {
    margin: 0px 10px 0px 0px;
    padding: 5px;
    background: transparent;
    border: none;
    display: none;
}

    .toggle-slide-left i {
        display: block;
        width: 24px;
        height: 24px;
        background-size: 24px !important;
    }

button.close-menu {
    color: #fff;
    background: black;
    border: 1px solid grey;
    border-radius: 5px;
    display: block;
    margin: 40px auto;
    width: 100px;
}

body.smr-open .slide-menu-left {
    left: 0px
}

#nav1 li ul {
    display: none;
}

.app-mobile-menu {
    padding: 0px 0px 40px;
    position: fixed;
    z-index: 1000;
    background-color: #1f3966;
    overflow: hidden;
    overflow-y: auto;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

#accordian .app-brand {
    margin: 0px 0px 10px;
    padding: 20px 15px; /* border-bottom: 1px solid #355181; */
    background-color: #1e3257;
}

#accordian ul {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}

#accordian a {
    margin: 0px;
    padding: 5px 12px;
    display: block;
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    color: #c4cbd7;
    position: relative;
}

#accordian h3 a {
    border-left: 5px solid transparent;
}

#accordian li.active h3 a {
    color: #ffffff;
    font-weight: 700;
    background-color: rgb(44 73 124);
    border-left: 5px solid #ffffff;
}

#accordian li.dropdown h3 a::after {
    content: '';
    display: block;
    position: absolute;
    top: 15px;
    right: 20px;
    width: 10px;
    height: 10px;
    border-top: 2px solid #c4cbd7;
    border-left: 2px solid #c4cbd7;
    transform: rotate(135deg);
}

#accordian li.dropdown.show h3 a::after {
    top: 12px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    transform: rotate(225deg);
}

#accordian ul ul li a:hover {
    color: #fff;
    font-weight: 700;
}

#accordian ul ul {
    display: none;
}

#accordian li.show {
    padding: 0px 0px 10px;
    background-color: #1e3257;
}

    #accordian li.show > ul {
        padding: 0px 0px 0px 18px;
        display: block;
    }

    #accordian li.show h3 a {
        color: #fff;
        font-weight: 700;
    }

#accordian ul li ul li a:not([href]) {
    color: #c4cbd7;
    font-weight: 500;
}

#accordian ul li ul li.show a:not([href]) {
    color: #fff;
    font-weight: 700;
}

#accordian ul ul ul {
    margin-left: 15px;
    border-left: 1px dotted rgb(255 255 255 / 50%);
}

#accordian a:not([href]) {
    text-decoration: none;
    cursor: pointer;
}

    #accordian a:not([href]):after {
        content: '';
        display: block;
        position: absolute;
        top: 15px;
        right: 20px;
        width: 10px;
        height: 10px;
        border-top: 2px solid #c4cbd7;
        border-left: 2px solid #c4cbd7;
        transform: rotate(135deg);
    }

#accordian .show > a:not([href]):after {
    top: 12px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    transform: rotate(225deg);
}

.app-top-wrapper {
    padding: 0px 25px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    /*height: 40px;*/
}

    .app-top-wrapper .app-brand img {
        margin: 0px !important;
        padding: 0px !important;
        height: 50px !important;
        width: auto !important;
        background-size: auto !important;
    }

.app-brand img {
    /*height: auto;*/
    margin: 2px 0px;
    object-fit: contain;
    padding: 2px 0px;
}

.navbar-nav.app-top-right {
    margin: 0px -10px 0px auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-align: center;
    align-items: center;
}

    .navbar-nav.app-top-right .nav-item {
        position: relative;
        transition: all 200ms linear;
    }

        .navbar-nav.app-top-right .nav-item .nav-link {
            margin: 0px 5px;
            padding: 5px;
            line-height: 20px;
        }

            .navbar-nav.app-top-right .nav-item .nav-link i {
                margin: 0px;
                padding: 0px;
                display: inline-block;
                /*  width: 22px;
                height: 22px;
                background-size: 22px;*/
                font-size: 18px;
                color: #fff;
            }

.app-breadcrumb ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: end;
}




    .app-breadcrumb ul li {
        font-size: 14px;
        font-weight: 500;
        line-height: 1.43;
        letter-spacing: 0.14px;
        text-align: center;
    }

        .app-breadcrumb ul li + li::before {
            content: '>';
            margin: 0px 15px;
        }

        .app-breadcrumb ul li a {
            color: #242424;
        }

        .app-breadcrumb ul li.active {
            color: #323232;
            font-weight: 700;
        }

.app-menu-desktop ul {
    margin: 0px;
    padding: 0px 0px 0px 2px;
    list-style: none;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

    .app-menu-desktop ul li {
        color: #fff;
        padding: 5px 0px 5px;
        font-weight: 700;
        /*height: 30px*/;
        position: relative;
    }

li.app-menu-dropdown.active {
    color: #242424;
}
/* .app-menu-desktop ul li:first-child:nth-last-child(n + 14),.app-menu-desktop ul li:first-child:nth-last-child(n + 14) ~ li {padding: 0px 5px ;} */
.app-menu-desktop ul li a {
    padding: 0px 8px;
    display: block;
    font-size: 12px;
    color: #fff;
    line-height: 22px;
    font-weight: 600;
    margin-bottom: 2px;
    cursor: pointer !important;
}

.tracking-wrapper .card.on-location .card-header {
    background-color: #E8F6FE;
}

.tracking-wrapper .card.outof-location .card-header {
    background-color: #FFF8EC;
}

.tracking-wrapper .card.not-reachable .card-header {
    background-color: #FDE8ED;
}

.tracking-wrapper .card .total-emp-count::before {
    content: '/';
    display: inline-block;
    vertical-align: middle;
}

.tracking-wrapper .card .emp-info span + span::before {
    content: '';
    margin: -3px 6px 0px 4px;
    display: inline-block;
    vertical-align: middle;
    width: 4px;
    height: 4px;
    background-color: #b9b9b9;
    border-radius: 100%;
}

.tracking-wrapper .card .list-group-item + .list-group-item {
    border-top: 1px solid #dee2e6 !important;
}

.tracking-wrapper .card-body {
    max-height: 340px;
    overflow-y: auto;
}



    .tracking-wrapper .card-body::-webkit-scrollbar {
        width: 4px;
        height: 4px;
    }

    .tracking-wrapper .card-body::-webkit-scrollbar-track {
        box-shadow: inset 0 0 10px #e6f9ff;
        border-radius: 10px;
    }

    .tracking-wrapper .card-body::-webkit-scrollbar-thumb {
        background: #606060;
        border-radius: 10px;
    }


/*.app-menu-desktop ul li.active a {
   font-weight: 700;
    background-color: #ffffff;
    border-top-right-radius: 6px;
    border-top-left-radius: 6px;
    height: inherit; 
    width: 100%;
    position: relative;
    opacity: 1;
    bottom: 0px;
    line-height: 30px;
    color: #242424
}*/
/**/
/**/
/*.app-menu-desktop ul li.active a::before {
        content: '';
        width: 0;
        height: 0;
        border-bottom: 28px solid #fff;
        border-left: 20px solid transparent;
        position: absolute;
        left: -18.6px;
        bottom: 0px;
    }

    .app-menu-desktop ul li.active a::after {
        content: '';
        width: 0;
        height: 0;
        border-bottom: 28px solid #fff;
        border-right: 20px solid transparent;
        position: absolute;
        right: -18.6px;
        bottom: 0px;
    }*/
.app-menu-desktop ul li.active a.menu-item {
    color: #ffffff;
    line-height: 22px;
    border-radius: 4px;
    background-color: #697b96;
    font-weight: 700;
}

.app-menu-desktop ul li a.menu-item:hover {
    color: #ffffff;
    line-height: 22px;
    border-radius: 4px;
    background-color: #697b96;
}

.app-menu-desktop ul li:first-child:nth-last-child(n + 14).active a::before, .app-menu-desktop ul li:first-child:nth-last-child(n + 14) ~ li.active a::before {
    border-left: 10px solid transparent;
    left: -8.7px;
}

.app-menu-desktop ul li:first-child:nth-last-child(n + 14).active a::after, .app-menu-desktop ul li:first-child:nth-last-child(n + 14) ~ li.active a::after {
    border-right: 10px solid transparent;
    right: -8.7px;
}
/* .app-menu-desktop ul li.active .menu-dropdown li a { color: #242424 !important;} */
.app-menu-desktop ul li.active .menu-dropdown li a:hover {
    color: #ffffff !important;
    background-color: #1f3966 !important;
}

.app-menu-desktop ul li .menu-dropdown li a:hover {
    color: #ffffff !important;
    background-color: #1f3966 !important;
}

.app-menu-dropdown .menu-dropdown {
    display: none;
    position: absolute;
    box-shadow: 0 4px 4px #0000001a;
    background-color: #fff;
    border-radius: 0 0 12px 12px;
    top: 100%;
    z-index: 1030;
}

.app-menu-dropdown:hover .menu-dropdown {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    z-index: 9999999;
}

.app-menu-dropdown .menu-dropdown .menu-dropdown-wrapper {
    position: relative;
    display: -ms-flexbox;
    display: inline; /*flex has changed as inline for dropdown send line issues*/
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.app-menu-dropdown .menu-dropdown .level-1 {
    padding: 0px;
    min-width: 300px;
    display: inline-block;
}

.app-menu-dropdown .menu-dropdown .level-2 {
    min-width: 290px;
    display: none;
    padding: 0px;
    border-left: 1px solid #e9e8e7;
    padding: 0px;
}

    .app-menu-dropdown .menu-dropdown .level-2 .title {
        margin: 0px;
        font-size: 14px;
        line-height: 32px;
        font-weight: 500;
        color: #323232;
        padding: 3px 8px;
        border-radius: 5px;
    }

        .app-menu-dropdown .menu-dropdown .level-2 .title:hover {
            color: #fff;
            background-color: #1f3966;
        }

.app-menu-dropdown .menu-dropdown li {
    padding: 0px;
}

    .app-menu-dropdown .menu-dropdown li a {
        font-weight: 500 !important;
        color: #242424;
        border-bottom: none !important;
        position: relative;
        opacity: 1;
        line-height: 30px;
        border-radius: 0px;
    }
/* .app-menu-desktop ul li.active .menu-dropdown li a { background-color: transparent;} */
.app-menu-desktop ul li.active .menu-dropdown li a::before, .app-menu-desktop ul li.active .menu-dropdown li a::after, .app-menu-desktop ul li.active .menu-dropdown li.sub-menu ul li a::after {
    display: none;
}

.app-menu-dropdown .menu-dropdown li a:hover {
    color: #fff !important;
    background-color: #1f3966 !important;
}

.app-menu-dropdown .menu-dropdown li:last-child > a {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px
}

.app-menu-dropdown li.sub-menu a::after, .app-menu-desktop ul li.active .menu-dropdown li.sub-menu a::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent !important;
    border-left: 5px solid #060606;
    border-right: none;
    position: absolute;
    right: 15px !important;
    top: 10px;
}

.app-menu-dropdown li.sub-menu.show a::after, .app-menu-desktop ul li.active .menu-dropdown li.sub-menu.show a::after {
    border-left: 5px solid #fff;
}

.app-menu-dropdown .menu-dropdown li.sub-menu:hover a::after {
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid #fff !important;
}

.menu-dropdown.menu-expand {
    width: 300px;
    min-height: auto !important;
}

.sub-menu.show {
    position: relative !important;
}

    .sub-menu.show .level-2 {
        display: inline-block;
        position: absolute;
        top: 0;
        left: 300px;
        height: auto !important;
        background: #fff;
        z-index: 99999;
        min-width: 300px !important;
        border-radius: 5px;
        box-shadow: 0 0px 20px 10px rgb(0 0 0 / 8%);
    }

.menu-dropdown.menu-expand .level-2 li a::after {
    display: none;
}

.menu-dropdown.menu-expand .sub-menu.show .level-2 a {
    color: #242424 !important;
    background-color: transparent !important;
}

    .menu-dropdown.menu-expand .sub-menu.show .level-2 a:hover {
        color: #fff !important;
        /*border-radius: 5px;*/
        background-color: #1f3966 !important;
    }

    .menu-dropdown.menu-expand .sub-menu.show .level-2 a::before {
        display: none;
    }
/* .menu-dropdown ul li:nth-child(n+14) .level-2 { bottom: -10px; top: auto;} */
.sub-menu.show a {
    color: #ffffff !important;
    border-radius: 5px;
    background-color: #1f3966 !important;
    cursor: pointer;
}

.app-menu-desktop ul li.sub-menu.active a::before {
    display: none;
}

.app-menu-desktop ul li.sub-menu.active a::after {
    border-right: 0px;
}

.app-content-wrapper {
    margin: 0px;
    padding: 0px 0px 30px;
    width: 100%;
    min-height: calc(100vh - 160px);
}

.app-title {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 800;
    font-size: 19px;
}

.app-content-header {
    margin: 0px 0px 10px;
    padding: 0px 20px;
    width: 100%;
}

.app-footer {
    padding: 12px 25px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    box-shadow: 0 2px 4px 0 rgb(0 0 0 / 10%);
    background-color: #e6eef6;
    z-index: 997;
}

.app-dev-name {
    margin: 0px auto;
    font-size: 12px;
    color: #3382bb;
    font-style: italic;
}

    .app-dev-name a {
        font-weight: 500;
        font-style: normal;
        color: #3382bb;
    }

.app-content-body {
    padding: 0px 4px;
}

.app-content {
    margin: 0px 15px;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}

    .app-content.box {
        padding: 0.5rem 1.5rem;
        border-radius: 8px;
        box-shadow: 0 4px 4px #00000014;
        background-color: #fff;
        border: 1px solid #c4c4c4;
    }

.dash-settings {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.43;
    letter-spacing: 0.14px;
    color: #3382bb;
}

    .dash-settings i {
        margin-right: 6px;
        display: inline-block;
        vertical-align: middle;
        width: 16px;
        height: 16px;
        background-size: 16px;
        position: relative;
        top: -2px;
    }

.app-notification-wrapper {
    padding: 20px 10px;
}

.app-notification-group-title {
    font-size: 11px;
    font-weight: 700;
    line-height: 1.43;
    letter-spacing: 0.14px;
    color: #323232;
}

.app-notification-header {
    padding: 5px 10px 15px 10px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #323232;
    border-bottom: 1px solid rgba(196, 196, 196, 0.75);
}

.removeCard {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 15px;
    height: 15px;
    color: #a9abac;
    font-weight: 500;
    font-size: 15px;
    line-height: 100%;
    border: none;
    text-decoration: none !important;
}

.ui-table-hide-info .row:nth-child(1), .ui-table-hide-info .row:nth-child(3) {
    display: none;
}

.app-menu-dropdown .menu-dropdown.right {
    right: 0;
    left: auto;
}

@media screen and (max-width: 767px) {
    .app-dev-name a {
        display: block;
    }

    .app-breadcrumb ul {
        margin: 10px 0px 0px 0px;
        justify-content: flex-start;
    }

    .app-content-wrapper {
        display: block;
    }
}

@media screen and (max-width: 991px) {
    .app-top-wrapper {
        padding: 0px 10px;
    }

    .dropdown-profile:hover .dropdown-menu {
        left: auto;
        right: 15px;
    }

    .app-sidebar {
        margin: 0px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        border-left: none;
    }

    .app-aside-wrapper {
        padding-left: 0px;
        margin: 0px 15px;
    }

    .app-top-wrapper {
        height: auto;
    }

    .navbar-nav.app-top-right {
        margin: 0px 0px 0px auto;
    }

        .navbar-nav.app-top-right .nav-item .nav-link {
            padding: 5px;
        }

        .navbar-nav.app-top-right .dropdown-menu {
            top: 58px;
        }

    .app-content-header {
        padding: 0px 15px;
    }

    .app-content-body {
        padding: 0px;
        display: block;
    }

    .app-dev-name {
        margin-right: auto;
        text-align: center;
    }

    .app-top-right .avatar {
        width: 38px;
        height: 38px;
        background-size: 38px;
    }

    .app-top-right .dropdown-menu {
        top: 53px !important;
    }
}



@media screen and (min-width: 992px) and (max-width: 1199px) {
    /*.app-menu-desktop ul li { padding: 0px 9px;} .app-menu-desktop ul li a { padding: 0px 12px;}*/ .app-top-right .dropdown-menu {
        top: 61px;
    }

    .ui-dropdown-profile .dropdown-menu {
        top: 68px;
    }
}


@media screen and (min-width: 1200px) and (max-width: 1439px) {
    /*.app-menu-desktop ul li a { padding: 0px 5px;font-size: 13px;}*/ .app-menu-dropdown.reports .menu-dropdown.menu-expand {
        right: 26px;
    }

    .app-menu-dropdown.atd:hover .menu-dropdown {
        right: 25px;
    }

    .app-menu-dropdown.myAttendance:hover .menu-dropdown {
        right: 25px;
    }

    .app-menu-dropdown.help:hover .menu-dropdown {
        right: 25px;
    }
}

@media screen and (min-width: 1200px) {
    .modal-xl {
        max-width: 1140px !important;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1199px) {
    .app-menu-desktop ul li:nth-child(5) .sub-menu.show .level-2, .app-menu-desktop ul li:nth-child(6) .sub-menu.show .level-2, .app-menu-desktop ul li:nth-child(7) .sub-menu.show .level-2, .app-menu-desktop ul li:nth-child(8) .sub-menu.show .level-2, .app-menu-desktop ul li:nth-child(9) .sub-menu.show .level-2 {
        left: -300px;
    }
}



@media screen and (min-width: 1200px) and (max-width: 1250.99px) {
    .app-menu-desktop ul li:nth-child(n+8) .sub-menu.show .level-2 {
        left: -300px;
    }
}

@media screen and (min-width: 1251px) and (max-width: 1350.99px) {
    .app-menu-desktop ul li:nth-child(n+8) .sub-menu.show .level-2 {
        left: -300px;
    }

    .menu-dropdown ul li:nth-child(n+10) .level-2 {
        bottom: -10px;
        top: auto;
    }
}

@media screen and (min-width: 1351px) and (max-width: 1439.99px) {
    .app-menu-desktop ul li:nth-child(n+8) .sub-menu.show .level-2 {
        left: -300px;
    }

    .menu-dropdown ul li:nth-child(n+10) .level-2 {
        bottom: -10px;
        top: auto;
    }
}


@media screen and (min-width: 1440px) and (max-width: 1490.99px) {
    .app-menu-desktop ul li:nth-child(n+9) .sub-menu.show .level-2 {
        left: -300px;
    }
}


/**sidebar menu style css**/

.sidebar-header .app-header {
    position: fixed;
    top: 0;
    z-index: 999;
    box-shadow: 0 4px 4px #00000014;
    width: 100%;
    background-color: #fff;
    transition: .6s;
}

.sidebar-header .app-top-wrapper {
    padding: 5px 10px;
    margin-left: 230px;
    transition: all .3s ease;
}

.sidebar-header .sidebar-menu {
    width: 230px;
    background-color: #005eb8;
    height: 100vh;
    position: fixed;
    top: 0px;
    z-index: 99;
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.08);
    /* animation: slideIn 0.6s forwards;*/
    overflow: visible;
    transition: all .3s ease;
}



.sidebar-header .app-menu-desktop {
    padding: 10px 0px;
}

    .sidebar-header .app-menu-desktop ul li a, .sidebar-header .app-menu-desktop ul li a.menu-item:hover, .sidebar-header .app-menu-desktop ul li.active a.menu-item {
        padding: 10px 10px 10px 15px;
        line-height: normal;
        border-radius: 0px;
    }

    .sidebar-header .app-menu-desktop ul li {
        padding: 0px;
    }

    .sidebar-header .app-menu-desktop ul.level-1 li a {
        padding: 7px 10px;
        color: #dfdede;
    }

    .sidebar-header .app-menu-desktop ul li a.menu-item:hover {
        border-radius: 0px;
        background-color: #fff3;
    }

.sidebar-header .sidebar-none {
    display: none;
}

.sidebar-header-mini .sidebar-header .sidebar-block {
    display: none !important;
}

.sidebar-header .sidebar-block {
    display: block !important;
    padding: 10px 10px;
}

    .sidebar-header .sidebar-block.app-brand img {
        display: block !important;
        height: auto;
        margin: 0;
        object-fit: contain;
        padding: 2px 0px;
        height: 50px !important;
        margin-left: 10px;
    }

.sidebar-header .app-content-wrapper {
    margin: 0px;
    padding: 80px 0px 50px 0px;
    width: Calc(100% - 230px);
    min-height: calc(100vh - 160px);
    margin-left: 230px;
    float: left;
    transition: all .3s ease;
}

.sidebar-header .app-footer {
    position: fixed;
    bottom: 0;
    width: 100%;
}

.sidebar-header .app-menu-dropdown .menu-dropdown .level-1 {
    padding: 0px 0px;
    min-width: 218px;
    display: inline-block;
}

.sidebar-header .app-menu-dropdown .menu-dropdown .level-2 {
    padding: 0px 0px;
    border-radius: 0px 5px 5px 0px;
}

.sidebar-header .menu-dropdown.menu-expand {
    width: 218px;
    min-height: auto !important;
}

.sidebar-header .app-menu-desktop ul {
    display: block;
}

/*.sidebar-header-mini .sidebar-header .app-menu-desktop {
    margin-top: 65px;
}*/

.sidebar-header .app-menu-dropdown .menu-dropdown {
    position: relative;
    box-shadow: none;
    background-color: #ffffff00;
    border-radius: 5px;
    top: 100%;
    z-index: 1030;
    margin: 10px 10px 10px 10px;
}

    .sidebar-header .app-menu-dropdown .menu-dropdown li a {
        color: #fff;
    }

.sidebar-header .app-menu-desktop ul li.active .menu-dropdown li a:hover {
    color: #f6b81c !important;
    background-color: #005eb8 !important;
}


.sidebar-header .app-menu-dropdown li.sub-menu a::after, .sidebar-header .app-menu-desktop ul li.active .menu-dropdown li.sub-menu a::after {
    border-left: 5px solid #ffffff;
}
/*.sidebar-header .sub-menu.show .level-2 {
    display: inline-block;
    position: relative;
    top: 0;
    left: 0;
    height: auto !important;
    background: #ced1d9;
    z-index: 99999;
    min-width: 210px !important;
    border-radius: 5px;
    box-shadow: 0 0px 20px 10px rgb(0 0 0 / 8%);
    padding: 8px;
}*/
.sidebar-header .app-menu-dropdown .menu-dropdown li:last-child > a {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.sidebar-header .navbar-nav.app-top-right .nav-item .nav-link i {
    margin: auto;
    display: block;
    width: 23px;
    height: 23px;
    background-size: 23px !important;
    /*  margin: 0px;
    padding: 0px;
    display: inline-block;
    color: #005eb8;
      width: 22px;
    height: 22px;
    background-size: 22px;
    filter: brightness(0) invert(0);*/
}

/*.sidebar-header .app-menu-dropdown:hover .menu-dropdown {
    display: none !important;
}
*/

.sidebar-header .company-text, .sidebar-header-mini .sidebar-header .company-text {
    color: #1f3966 !important;
}

/*.sidebar-header .toggle-sidebar-left {
    display: block;
}*/

.sidebar-header-mini .sidebar-header .toggle-sidebar-left i {
    filter: unset;
}

.sidebar-header .toggle-sidebar-left i {
    display: block;
    width: 24px;
    height: 24px;
    background-size: 24px !important;
    filter: brightness(0) invert(0);
}

/* Hide submenus by default */
.sidebar-header .menu-dropdown {
    display: none;
}



/* Optional styling */
.sidebar-header .menu-item {
    cursor: pointer;
}


.sidebar-header .app-menu-desktop {
    overflow-y: auto;
    height: 85%;
    padding-bottom: 50px;
}



/* Base submenu style */
.sidebar-header .sidebar-menu .level-2 {
    position: fixed !important;
    left: 240px; /* Adjust based on sidebar width */
    top: 0;
    display: none;
    background: #fff;
    z-index: 9999;
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    padding: 8px 0;
}

    /* Optional styling */
    .sidebar-header .sidebar-menu .level-2 li a {
        display: block;
        padding: 8px 12px;
        color: #333;
        text-decoration: none;
    }

        .sidebar-header .sidebar-menu .level-2 li a:hover {
            background: #f0f0f0;
        }




/* Chrome, Edge, Safari */
.sidebar-header .app-menu-desktop::-webkit-scrollbar {
    width: 0px; /* scrollbar width */
}

.sidebar-header .app-menu-desktop::-webkit-scrollbar-track {
    background: #f1f1f1; /* track (background) */
    border-radius: 5px;
}

.sidebar-header .app-menu-desktop::-webkit-scrollbar-thumb {
    background: #888; /* scrollbar color */
    border-radius: 5px;
}

    .sidebar-header .app-menu-desktop::-webkit-scrollbar-thumb:hover {
        background: #555; /* hover color */
    }

/* Firefox */
.sidebar-header .app-menu-desktop {
    scrollbar-width: none; /* “auto” | “thin” | “none” */
    scrollbar-color: #888 #f1f1f1; /* thumb color | track color */
}

.sidebar-header-mini .sidebar-header .app-menu-desktop {
    overflow: visible;
}

.sidebar-header .app-menu-dropdown:hover .menu-dropdown {
    display: none;
}

/* Show submenu when active */
.sidebar-header .app-menu-dropdown.active > .menu-dropdown {
    display: block;
}

.sidebar-header-mini .sidebar-header .app-content-wrapper {
    margin-left: 50px;
    width: Calc(100% - 50px);
    animation: slideOut 0.6s forwards;
    transition: all .3s ease;
}

.sidebar-header-mini .sidebar-header .app-top-wrapper {
    margin-left: 50px;
    animation: slideOut 0.6s forwards;
    z-index: 99;
    position: relative;
    transition: all .3s ease;
}

.sidebar-header-mini .sidebar-header .sidebar-menu {
    left: 0px;
    animation: slideOut 0.6s forwards;
    width: 50px;
    transition: all .3s ease;
}

.sidebar-header .sidebar-menu {
    left: 0px;
    animation: slideIn 0.3s forwards;
    transition: all .3s ease;
}

/* Slide in from left */
@keyframes slideIn {
    0% {
        left: 0px;
    }

    100% {
        left: 0;
    }
}

/* Slide out to left */
@keyframes slideOut {
    0% {
        left: 0;
    }

    100% {
        left: 0px;
    }
}


a.app-brand.sidebar-mini-brand {
    display: none;
}

a.app-brand.sidebar-mini-brand {
    display: none;
}

.sidebar-header-mini .sidebar-header a.app-brand.sidebar-mini-brand {
    display: block;
}

.sidebar-header-mini .sidebar-header .app-header {
    /*background-color: #1f3966;*/
    transition: .6s;
}

.sidebar-header-mini .sidebar-header .company-text {
    color: #3c527b !important;
}

/*.sidebar-header-mini .sidebar-header .navbar-nav.app-top-right .nav-item .nav-link i, .sidebar-header-mini .sidebar-header .toggle-sidebar-left i {
    filter: brightness(1) invert(0);
}*/

.toggle-sidebar-left {
    display: none;
}

.sidebar-header-mini .toggle-sidebar-left {
    display: block;
}

.toggle-sidebar-left .sidebar-header {
    display: block;
}

.app-menu-desktop ul li a i {
    display: none;
}

.sidebar-header .app-menu-desktop ul li a i {
    padding: 3px 0px;
    display: inline-block;
    width: 20px;
    height: 20px;
}

.sidebar-header .app-menu-desktop ul li a span.iconafter {
    padding-left: 10px;
}

.sidebar-header-mini .sidebar-header .app-menu-desktop ul li a span {
    display: none;
}

.sidebar-header-mini .sidebar-header .sidebar-menu {
    background-color: #005eb8;
}

.sidebar-header-mini .sidebar-header .app-menu-desktop ul li a, .sidebar-header-mini .sidebar-header .app-menu-desktop ul li a.menu-item:hover, .sidebar-header-mini .sidebar-header .app-menu-desktop ul li.active a.menu-item {
    padding: 10px 10px;
    border-radius: 0px;
}

.sidebar-header-mini .sidebar-header .app-menu-dropdown .menu-dropdown {
    display: none !important;
}

.sidebar-header b#B1 {
    left: 120px !important;
}

.sidebar-header-mini .sidebar-header b#B1 {
    display: none;
}

.sidebar-header .menu-item {
    position: relative; /* for popover positioning */
}

.app-menu-desktop ul li a.menu-item .popover-right {
    display: none;
}
/* The hidden popover */
.sidebar-header-mini .sidebar-header .menu-item .popover-right {
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    background: #ffffff;
    color: #1f3966;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    padding: 5px 10px;
    white-space: nowrap;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 9;
    display: none !important;
}

/* Show popover when hovering the link */
.sidebar-header-mini .sidebar-header .menu-item:hover .popover-right {
    display: none !important;
}

/* Optional arrow */
.sidebar-header-mini .sidebar-header .menu-item .popover-right::before {
    content: '';
    position: absolute;
    left: -11px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent #fff transparent transparent;
    display: none;
}

.sidebar-header .menu-item .popover-right {
    display: none !important;
}

.sidebar-header .app-menu-desktop ul li#mnyRefer i {
    display: none;
}

.sidebar-header-mini .sidebar-header .app-menu-desktop ul li#mnyRefer i {
    display: block;
}

.sidebar-header-mini .sidebar-header .app-menu-desktop ul li#mnyRefer img {
    display: none;
}

.sidebar-bottom {
    display: none;
    position: absolute;
    bottom: 0px;
    background-color: #ffffff1a;
    width: 100%;
}

.sidebar-header .sidebar-bottom {
    display: block;
}

.sidebar-bottom .dropdown-toggle::after {
    display: none;
}

.sidebar-bottom .dropdown-menu.show {
    display: block;
    width: 220px;
    top: -20px !important;
    border-radius: 20px;
    z-index: 9999;
}

.sidebar-header .user-manage {
    display: none;
}

.sidebar-bottom-inner {
    padding: 5px 10px;
}

.sidebar-header-mini .sidebar-bottom-inner {
    padding: 5px 10px;
}

.sidebar-header-mini .show-side {
    display: none;
}

.icon-menu-alt {
    background: url(../img/icons/menu-alt.svg) no-repeat;
}

.sidebar-header .navbar-nav.app-top-right {
    margin: 0px 0px 0px auto;
}

.dropdown-menu.app-nav {
    border-radius: 4px;
    transform: translate3d(0px, 30px, 0px) !important;
    width: 200px;
    padding: 0px 0px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    border: none;
}

    .dropdown-menu.app-nav .dropdown-item {
        border-bottom: 1px solid #c8c8c8;
    }

        .dropdown-menu.app-nav .dropdown-item:last-child {
            border-bottom: 0px solid #c8c8c8;
        }

        .dropdown-menu.app-nav .dropdown-item:focus, .dropdown-menu.app-nav .dropdown-item:hover {
            background-color: transparent;
        }

/*.sidebar-header .app-nav-top .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0;
    vertical-align: 0;
    border-top: 0em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 6px;
    content: "\f13a";
    color: #005eb8;
}*/
.sidebar-header .app-nav-top .dropdown-toggle::after {
    content: "";
    display: inline-block;
    width: 18px !important;
    height: 18px !important;
    margin-left: 6px;
    vertical-align: middle;
    background: url(../../../shared/assets/img/icons/down-arrow.svg) no-repeat center;
    /* background-size: contain; */
    border-top: 0;
}

.sidebar-header .ui-company-dropdown .dropdown-menu {
    border-radius: 20px;
    border: 1px solid #697b9685;
}

.sidebar-header .app-top-right .dropdown-menu {
    border-radius: 6px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    border: none !important;
}

.sidebar-header-open .sidebar-header .app-menu-desktop ul li a span {
    display: inline-block;
}

.sidebar-header-open .sidebar-menu {
    width: 230px !important;
    z-index: 99;
    background-color: #005eb8 !important;
}

.sidebar-header-open .sidebar-header .sidebar-block {
    display: block !important;
    padding: 10px 10px;
}

.sidebar-header-open .sidebar-header .app-menu-desktop {
    margin-top: 0px;
}

.sidebar-header-open .app-menu-desktop ul li {
    white-space: nowrap;
}

.sidebar-header-open .app-menu-desktop ul.level-1 li {
    white-space: normal;
}

.sidebar-header-open.sidebar-header-mini .show-side {
    display: block !important;
}


.sidebar-header .h-70 {
    height: 55px;
}

.sidebar-header-open .toggle-sidebar-left {
    display: none;
}

.sidebar-header-mini .sidebar-header #arrow-open i {
    transform: rotate(0deg) !important;
    transition: .5s !important;
}


.sidebar-header #arrow-open i {
    transform: rotate(180deg);
    transition: .5s;
}

.show-mini {
    display: none;
}

.sidebar-header-mini .sidebar-header .show-mini {
    display: flex;
    align-items: center;
}

.sidebar-header .tooltip-box {
    position: relative;
    cursor: pointer;
}

.sidebar-header .tooltip-text {
    visibility: hidden;
    opacity: 0;
    background: #858181;
    color: #fff;
    padding: 5px 8px;
    border-radius: 4px;
    position: absolute;
    top: 115%;
    left: 0%;
    transform: translateY(-50%);
    white-space: nowrap;
    transition: opacity .2s ease;
    font-size: 12px;
}

.sidebar-header .tooltip-box:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}


.sidebar-only {
    display: none !important;
}

.sidebar-header .sidebar-only {
    display: flex !important;
}


.sidebar-header .app-menu-desktop ul li.active a.menu-item {
    border-left: 3px solid #f4b929;
    background-color: #fff3;
}


.sidebar-header .app-menu-desktop ul li a.menu-item {
    border-left: 3px solid #f4b92900;
}

.masonry {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)) !important;
}

    .masonry .item {
        margin-bottom: 10px;
    }

.swiper-slide {
    width: auto !important
}


.sidebar-header-mini.sidebar-header-open .sidebar-header .app-menu-desktop {
    overflow-y: auto;
}


.sidebar-header-mini .submenuindigator {
    opacity: 0;
}

.sidebar-header-mini.sidebar-header-open .submenuindigator {
    opacity: 1;
}

.sidebar-header .app-menu-desktop ul li.app-menu-dropdown.active .submenuindigator {
    transform: rotate(180deg);
    transition: .5s;
}

.submenuindigator {
    transition: .5s;
    position: absolute;
    right: 10px;
}

.icon-home {
    background: url(../../../shared/assets/img/icons/home.svg) no-repeat;
}

.icon-general-setup {
    background: url(../../../shared/assets/img/icons/general-setup.svg) no-repeat;
}

.icon-employee-setup {
    background: url(../../../shared/assets/img/icons/employee-setup.svg) no-repeat;
}

.icon-attendance-adjustment {
    background: url(../../../shared/assets/img/icons/attendance-adjustment.svg) no-repeat;
}

.icon-timesheet {
    background: url(../../../shared/assets/img/icons/timesheet.svg) no-repeat;
}

.icon-field-tracking {
    background: url(../../../shared/assets/img/icons/field-tracking.svg) no-repeat;
}

.icon-administration {
    background: url(../../../shared/assets/img/icons/administration.svg) no-repeat;
}

.icon-transaction {
    background: url(../../../shared/assets/img/icons/transaction.svg) no-repeat;
}

.icon-monthly-activity {
    background: url(../../../shared/assets/img/icons/monthly-activity.svg) no-repeat;
}

.icon-incometax {
    background: url(../../../shared/assets/img/icons/incometax.svg) no-repeat;
}

.icon-grievance-manager {
    background: url(../../../shared/assets/img/icons/grievance-manager.svg) no-repeat;
}

.icon-human-resource {
    background: url(../../../shared/assets/img/human-resource.svg) no-repeat;
}

.icon-onboarding {
    background: url(../../../shared/assets/img/icons/onboarding.svg) no-repeat;
}

.icon-meetingroom {
    background: url(../../../shared/assets/img/icons/meetingroom.svg) no-repeat;
}

.icon-training {
    background: url(../../../shared/assets/img/icons/training.svg) no-repeat;
}

.icon-requirement-request {
    background: url(../../../shared/assets/img/icons/requirement-request.svg) no-repeat;
}

.icon-reports {
    background: url(../../../shared/assets/img/icons/reports.svg) no-repeat;
}

.icon-infotech-support {
    background: url(../../../shared/assets/img/icons/infotech-support.svg) no-repeat;
}

.icon-help-support {
    background: url(../../../shared/assets/img/icons/help-support.svg) no-repeat;
}

.sidebar-header .app-top-right .nav-item.dropdown.icon-users {
    background: url(../../../shared/assets/img/icons/users.svg) no-repeat;
}

.sidebar-header .app-top-right .nav-item.dropdown .icon-notification {
    background: url(../../../shared/assets/img/icons/notification.svg) no-repeat;
}

.icon-notification {
    background: url(../../../shared/assets/img/icons/notification-white.svg) no-repeat;
}

.icon-users {
    background: url(../../../shared/assets/img/icons/users-white.svg) no-repeat;
}

.icon-logout {
    background: url(../../../shared/assets/img/icons/logout-white.svg) no-repeat;
}

.icon-company {
    background: url(../../../shared/assets/img/icons/company-white.svg) no-repeat;
}

.icon-user-change {
    background: url(../../../shared/assets/img/icons/user-change-white.svg) no-repeat;
}

.icon-apps {
    background: url(../../../shared/assets/img/icons/apps.svg) no-repeat;
}

.icon-billing {
    background: url(../../../shared/assets/img/icons/billing.svg) no-repeat;
}

.icon-company-policy {
    background: url(../../../shared/assets/img/icons/company-policy.svg) no-repeat;
}

.icon-digi-ai {
    background: url(../../../shared/assets/img/icons/digi-ai.svg) no-repeat;
}

.icon-master {
    background: url(../../../shared/assets/img/icons/master.svg) no-repeat;
}

.icon-my-appraisal {
    background: url(../../../shared/assets/img/icons/my-appraisal.svg) no-repeat;
}

.icon-my-attendance {
    background: url(../../../shared/assets/img/icons/my-attendance.svg) no-repeat;
}

.icon-my-claim {
    background: url(../../../shared/assets/img/icons/my-claim.svg) no-repeat;
}

.icon-my-details {
    background: url(../../../shared/assets/img/icons/my-details.svg) no-repeat;
}

.icon-my-leave {
    background: url(../../../shared/assets/img/icons/my-leave.svg) no-repeat;
}

.icon-my-payroll {
    background: url(../../../shared/assets/img/icons/my-payroll.svg) no-repeat;
}

.icon-my-training {
    background: url(../../../shared/assets/img/icons/my-training.svg) no-repeat;
}

.icon-referandearn {
    background: url(../../../shared/assets/img/icons/referandearn.svg) no-repeat;
}


.navbar-nav.app-top-right .nav-item .nav-link i {
    margin: auto;
    display: block;
    width: 23px;
    height: 23px;
    background-size: 23px !important;
}


.sidebar-header .app-top-right .icon-logout {
    background: url(../../../shared/assets/img/icons/logout.svg) no-repeat;
}

.sidebar-header .app-top-right .nav-item.dropdown .icon-users {
    background: url(../../../shared/assets/img/icons/users.svg) no-repeat !important;
}

.sidebar-header .app-top-right .nav-item.dropdown .icon-apps {
    background: url(../../../shared/assets/img/icons/apps.svg) no-repeat;
}

.sidebar-header .app-top-right .nav-item.dropdown .icon-company {
    background: url(../../../shared/assets/img/icons/company.svg) no-repeat;
}
/*JJ*/
.sidebar-header .app-top-right .nav-item.dropdown .icon-user-change {
    background: url(../../../shared/assets/img/icons/user-change.svg) no-repeat;
}

.sidebar-header .app-top-right .nav-item.dropdown .icon-down-arrow {
    background: url(../../../shared/assets/img/icons/down-arrow.svg) no-repeat;
}

.sidebar-header .app-top-right .nav-item.dropdown.show .icon-notification {
    background: url(../img/icons/notification.svg) no-repeat;
}

.sidebar-header .app-top-right .nav-item.dropdown.show .icon-users {
    background: url(../img/icons/users.svg) no-repeat;
}

.sidebar-header #lblApp {
    color: #1f3966;
}

.sidebar-header .app-logo {
    display: none
}

.app-top-right .nav-item.dropdown.show .icon-users {
    background: url(../img/icons/users-white.svg) no-repeat;
}

.app-top-right .nav-item.dropdown.show .icon-notification {
    background: url(../img/icons/notification-white.svg) no-repeat;
}
