:root {
    --top-menu-background: #eee;
    --top-menu-border: #FFE121;
    --top-menu-font: #000;
    --top-menu-active: #eee;
    --highlight-background: #f2f7f0;
    --highlight-border: #ccc;
    --highlight-font: #000;
    --body-font-color: #020047;
    --font-red: #ff4545;
    /* --btn-background: #CEF0B9; */
    --btn-background: #005dff;
    --page-bg: #ffffff;
    --body-bg: #fff;
    /* --new-pri:#246BFD; */
    --new-pri: #006dff;
    --btn-hover-new-pri: #7ba5fa;
    --new-pri-shade: #d9e5ff;
    --new-pri-shade-1: #f6f9ff;
    --li-title-color: #041330;
    --top-header-back: #1b52c3;
    --list-card-back: #ffdeb2;
    --list-li-bottom-border: #e2e2e2;
    --menu-back: #004F9A;
    --menu-li-hover: #041f38;
    --modal-header-color:#bdd5f5;
    --new-primary-dark-shade:#042d7e;
    --dropdown-open-color:#e6f0fd;
    

}





/*  new CSS Class Start  */



/* scrollbar CSS Start*/


::-webkit-scrollbar {
    display: none; /* Hide scrollbar */
  }



  :hover::-webkit-scrollbar {
    display: block; /* Show scrollbar on hover */
  }

/* scrollbar CSS End*/

.scrollable-table{
    height: 270px;
    overflow-y: auto;
}

.sticky-table-header{
    position: sticky;
    top: 0px;
}



.standard-dropdown{
    /* border: 1px solid #ccc; */
    background-color: rgb(235, 235, 235);
    padding: 6px;
    margin-top: 12px;
    border-radius: 6px;
    margin-bottom: 6px;
}

.quicklinks-list{
    list-style-type: none;
    padding-left: 0;
}

.quicklinks-list li{
    color: var(--new-pri);
}

.table-links{
    
    color: var(--new-pri);
    cursor: pointer;

}


.count-box {
    padding: 4px 12px;
    background-color: var(--new-pri-shade) !important;
    margin: 4px 0 !important;
    font-weight: 500;
    border-radius: 16px;
    color: #041330 !important;
    font-size: 16px !important;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.table-main-header{
    background-color: var(--new-pri-shade);
    color: black;
}

.table-header-1{
    background-color: #ddd;
}

.table-header-2{
    background-color: #f0e68c;
}
.count-card-inner {
    display: flex;
    gap: 4px;
    height: 115px;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    padding: 12px !important;
    margin-bottom: 12px;
    /* margin-left: 8px;
    margin-right: 8px; */
    border-radius: 6px;
    /* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
    border: 1px solid #f1f1f1;
    /* height: 90%; */

}

.count-card {
    padding-right: 12px !important;
    padding-left: 0 !important;

}


.count-card-1 {
    padding-right: 0px !important;
    padding-left: 0 !important;
}

.count-box-1{
    padding: 4px 20px;
    /* background-color: var(--new-pri-shade) !important; */
    margin: 4px 0 !important;
    font-weight: 500;
    border-radius: 16px;
    color: #041330 !important;
    font-size: 24px !important;
    display: flex;
    align-items: baseline;
    gap: 4px;
}





.count-box-1 span {
    font-size: 12px !important;
    font-weight: 400 !important;

}

.count-box span {
    font-size: 12px !important;
    font-weight: 400 !important;

}


.list-li-bottom-border {
    border-bottom: 1px solid var(--list-li-bottom-border) !important;
    padding: 4px 8px !important;
}




.list-li-bottom-border-tickets {
    border-bottom: 1px solid var(--list-li-bottom-border) !important;
    padding: 6px 8px !important;
}




.list-li-bottom-border:hover {
    background-color: var(--new-pri-shade-1);
    border-radius: 6px !important;
}




.list-li-bottom-border-tickets:hover {
    background-color: var(--new-pri-shade-1);
    border-radius: 6px !important;
}



.list-li-bottom-border p {
    margin-bottom: 0 !important;
}

.login-footer-link {
    color: var(--new-pri);
}

.navbar-right {
    margin-top: 10px !important;

}

.apps {
    display: flex !important;
    align-items: center !important;
    gap: 6px;

}

.apps-li {
    /* background-color: #06b906; */
    background-color: var(--new-pri);
    

}

.is-Active-menu {
    background-color: red !important;
}



.tickets-td-label{
    font-size: 12px !important;
    font-weight: 300 !important;
}


a{
    color: var(--new-pri);
}

.tickets-td{
    border: none !important;
}

.custom-container-1{
    height: 100vh;
    overflow-y: auto;

}





.loading{
    background-color: rgb(255, 255, 255);
    width: 100%;
    height: 100vh;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
}


.notes-btn{
    background-color: var(--modal-header-color) !important;
}


 .loader {
    width: 48px;
    height: 48px;
    display: inline-block;
    position: relative;
    border: 3px solid;
    border-color:#de3500 #0000 #fff #0000;
    border-radius: 50%;
    box-sizing: border-box;
    animation: 1s rotate linear infinite;
 }
  
 .loading:before , .loader:after{
    content: '';
    top: 0;
    left: 0;
    position: absolute;
    border: 10px solid transparent;
    border-bottom-color:#fff;
    transform: translate(-10px, 19px) rotate(-35deg);
  }
 .loading:after {
    border-color: #de3500 #0000 #0000 #0000 ;
    transform: translate(32px, 3px) rotate(-35deg);
  }
   @keyframes rotate {
    100%{    transform: rotate(360deg)}
  }



.shift-info{
    background-color: rgb(227 227 227);
    padding-top: 12px;
}

.profile-background{

    /* color: #041330; */


    /* background-image: url("/public/profile-back.jpg") !important;
  */

    
  /* background: rgb(8,92,191);
  background: linear-gradient(180deg, rgba(8,92,191,1) 0%, rgba(17,111,223,1) 46%, rgba(0,185,255,1) 100%); */
    color: white !important;
    /* background-color: rgb(237, 248, 214); */
    /* padding-bottom: 0 !important; */
    /* background-color: var(--new-pri); */
}

/* .avtive-tab{
    color: white !important;
    background-color: var(--new-pri) !important;
}
 */

.divider-1{
/* width: 2px !important; */
color: rgb(177, 177, 177);
height: 14px;
border-radius: 3px;
display: flex;
justify-content: center;
align-items: center;

}





.dashboard-tabs span{
    /* color: rgb(59, 59, 59); */
    font-family: 'Poppins',sans-serif;
    font-weight: 500 !important;
}




.tickets-td-count{
    font-size: 18px;
    font-weight: 600;
}

.list-card {
    height: 44px;
    width: 44px;
    border-radius: 8%;
    background-color: var(--list-card-back);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--li-title-color);
    /* border: 1px solid rgb(216, 229, 255); */
    flex-direction: column;
}


/* .fa-envelope{
    color: var(--new-pri);  
} */

.StatusPending {
    padding: 4px 8px;
    background-color: #FFF5DE;
    color: #ff9a02;
    border-radius: 12px;

}

.StatusApproved {
    padding: 4px 8px;
    background-color: #E4FFD5;
    color: #48B50B;
    border-radius: 12px;

}

.StatusRejected {
    padding: 4px 8px;
    background-color: #FFE5E5;
    color: #FF3838;
    border-radius: 12px;


}

.StatusUnknown {
    padding: 4px 8px;
    background-color: #dddddd;
    color: #474747;
    border-radius: 12px;



}




.leave-balance {
    margin: 20px 0;
    font-size: 18px;
}

.leave-container {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap;
}

.leave-item {
    text-align: center;
    font-size: 14px;
    flex: 1;
}

.leave-item p {
    padding: 0 !important;

}

.leave-item svg {
    width: 120px;
    height: 120px;
    /* transform: rotate(-90deg); */
}

circle {
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
}

.bg {
    stroke: #e6e6e6;
}

.progress {
    stroke-dasharray: 63;
    stroke-dashoffset: 50;
    /* 50% progress */
}

.casual {
    stroke: #8a4fff;
}

.earned {
    stroke: #2fb1d2;
}

.birthday {
    stroke: #24b14c;
}

.paternity {
    stroke: #26c3b0;
}

.maternity {
    stroke: #9fdd3d;
}

text {
    font-size: 10px;
    fill: black;
}




.document-name {
    color: var(--li-title-color) !important;
    font-weight: 500 !important;
    font-size: 14px !important;

}

.employee-name {
    font-size: 14px;
    color: rgb(0, 0, 0);


}

.exp-date {
    font-size: 12px;
    color: rgb(114, 114, 114);

}


.summary-card-1 {
    flex: 1;
    /* aspect-ratio: 1 / 1;  */
    padding: 0;
    margin-bottom: 12px;


}


.LeaveStatus {
    border-radius: 14px;
    padding: 4px 12px;
    background-color: #FFF5DE;
    color: #FFB302;

}



.announcement-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #D9D9D9;
}

.announcement-dot-active {

    background-color: var(--new-pri);
}

.summary-card img {
    width: 20%;
    /* height: 20%; */
    position: absolute;
    top: -10px;
    right: 10px;
}






.summary-card {
    margin-top: 12px;
    margin-top: 12px;
    position: relative;
    height: 100%;
    padding: 5px;
    border-radius: 8px;
    text-align: center;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}


.summary-card-tickets {
    margin-top: 12px;
    margin-top: 12px;
    position: relative;
    height: 100%;
    padding: 5px;
    border-radius: 10px;
    text-align: center;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 1px solid rgb(241, 241, 241);
}

.summary-card h3 {
    color: #002366;
    font-size: 28px;

}

.summary-card p {
    color: #333;
    font-weight: 500;
    font-size: 14px;
}

.bg-light-yellow {
    background-color: #FFFBE6;
}

.bg-light-blue {
    background-color: #F0F8FF;
}

.bg-light-pink {
    background-color: #FFF0F5;
}

.bg-light-green {
    background-color: #F0FFF0;
}

.bg-light-peach {
    background-color: #FFF5F0;
}

.bg-light-purple {
    background-color: #F5F0FF;
}






.li-title {
    color: var(--li-title-color) !important;
    font-weight: 500 !important;
    font-size: 14px !important;

}

.newDashboardTitleAction {
    color: var(--new-pri) !important;
    font-weight: 500 !important;
    font-size: 18px !important;
}


.navbar-left li a:hover {
    font-weight: 500 !important;
    background-color: var(--menu-li-hover) !important;
    color: white !important;

}





.is-Active {
    background-color: var(--new-pri) !important;
}



.shift-card {
    background-color: white;
    color: rgb(0, 0, 0);
    border: 2px solid #fde86d;
    border-radius: 15px;
    padding: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.divider {
    border-left: 2px solid #fde86d;
    height: 50px;
}





/* .btn-primary i{
   
    color: #cedeff !important;
}
 */




/* .btn-secondary :hover{
    background-color: var(--new-pri) !important;
    color: white !important;
} */



/*  new CSS Class End  */







.page-parent,
body {
    background-color: var(--body-bg);
}

.container-fluid {
    background-color: transparent;
}

.list-group-item.list-group-item-action {
    background-color: var(--btn-background) !important;
    border: solid 1px var(--top-menu-border);
    color: var(--body-font-color) !important;
}

.navbar-header {

    position: fixed;
}


.navbar-top-menu {
    z-index: 999 !important;
}

.navbar.navbar-default,
.navbar-top-menu {
    /* min-height: 37px; */
}



.top-menu ul li a {
    color: white !important;
    padding: 4px 8px;
    display: flex;
    /* font-weight: 500 !important; */
    gap: 6px;
    align-items: center;
    border-right: 1px solid #a2b2d1;
}








.bg-title small,
.bg-title small a {
    color: #bbb !important;
}

.bg-title small {
    margin-top: -5px !important;
    display: block;
}

.bg-title small a:hover {
    color: #337ab7 !important;
}

.top-left-part {
    /* background: var(--btn-background); */
    margin-top: 10px !important;
}

.top-left-part a {
    color: #ffffff;
    font-size: 22px;
    padding-left: 0px;


}

.custom-table thead {
    background-color: var(--new-pri-shade);
    color: var(--highlight-font);
    border: 1px solid var(--highlight-border);
}

.custom-table tbody,
.custom-table thead tr th {
    border: 1px solid var(--highlight-border);
}



.dropdown-menu li a {
    border: none !important;
}



.neo-pagination .btn-info {
    background-color: var(--highlight-background);
    font-weight: 800;
}

.sttabs nav li.tab-current a {
    background-color: var(--highlight-background);
    font-weight: 800;
    border: 1px solid var(--highlight-border);
}

.sttabs nav li.tab-current a {
    background: #CEF0B9;
    border: 1px solid var(--highlight-border);
    color: var(--highlight-font);
}

.tabs-style-linebox nav a:hover::after,
.tabs-style-linebox nav a:focus::after,
.tabs-style-linebox nav li.tab-current a::after {
    background: var(--highlight-background);
    border: 1px solid var(--highlight-border);
    color: var(--highlight-font);
}

.tabs-style-linebox nav a:hover,
.tabs-style-linebox nav a:focus {
    color: #000;
}

#page-wrapper {
    margin-top: -16px;
    margin-left: 0;
    background: transparent;
}

.sidebar {
    background: #f2f7f0;
    box-shadow: none;
    border-right: solid 1px #ccc;
    position: fixed;
}

.container-fluid {
    padding: 0px;
    margin-top: 16px;
}

.bg-title {
    padding-left: 15px !important;
    padding-right: 5px !important;
    padding-top: 0 !important;
    padding-bottom: 5px !important;
    margin: 16px 3px 0px 3px !important;
    border: solid 1px #ccc !important;
    color: var(--body-font-color) !important;
    overflow: visible;
}

.sttabs .bg-title {
    margin: 8px 0 0 0 !important;
}

.bg-title .btn {
    margin-top: 10px;
}

.tabs-style-linebox nav a:hover::after {
    background: var(--top-menu-background);
}

.page-title {
    color: #000 !important;
}

.footer {
    left: 0;
    z-index: 9999999;
}

.nav a {
    font-weight: 400;
    color: var(--body-font-color) !important;
}

.sidebar-nav select {
    background-color: #f2f7f0;
    font-weight: 400;
}

.white-box {
    padding: 0px 0 40px 0px;
    background: #ffffff !important;
    margin: 0 10px;
}

.box-border {
    padding: 15px 15px;
    border: solid 1px #ccc;
}

form {
    padding: 15px 15px;
    border: solid 1px #ccc;
}





.content-wrap .bg-title {
    border: none;
}

.l-0 {
    left: 0;
}

.r-icon-stats i {
    background: var(--top-menu-background);
    color: var(--highlight-font);
}

body,
tbody,
table,
thead,
td,
th {
    color: #000;
}

.modal-header .modal-title {

    color: var(--body-font-color);
    font-weight: 400;
    font-size: medium;
}

.modal-header {
    background: var(--modal-header-color);
    color: var(--highlight-font);
}

.react-confirm-alert-button-group button:first-child {
    background-color: var(--font-red);
}

.react-confirm-alert .react-confirm-alert-body h1 {
    font-size: 20px;
    font-weight: 400;
    padding: 15px 20px;
    margin: -20px -20px 10px -20px;
    background: var(--top-menu-background);
    color: var(--body-font-color);
    border-radius: 10px 10px 0px 0px;
    line-height: 25px;
}

.react-confirm-alert .react-confirm-alert-body {
    padding: 20px;
    /* border: solid 1px var(--top-menu-border); */
    font-size: medium;
    font-weight: 400;
    color: var(--body-font-color);
    box-shadow: rgba(0, 0, 0, 0.3) 0px 22px 70px 4px;
}

.react-confirm-alert-body p {
    line-height: 1;
}

.react-confirm-alert-overlay {

    background-color: rgba(0, 0, 0, 0.6) !important;
}

.react-confirm-alert-body {
    overflow: hidden;
    border-radius: 6px !important;
}


@media (min-width: 768px) {
    .content-wrapper #page-wrapper {
        margin-left: 0px;
        /* margin-top: 60px; */
    }





    /* 
    .EmployeeeInfo{
        display: flex;
        flex-direction: column;
    } */



}

@media only screen and (max-width: 768px) {
    .navbar-top-links>li>a {
        padding: 0 12px;
        line-height: 35px;
        min-height: 35px;
    }

    .footer {
        display: none !important;
    }

    .navbar-header .top-left-part {
        width: 90%;
        text-align: center;
        margin-top: 0px !important;
    }

    .sidebar {
        position: relative;
        top: 90px;
        z-index: 9999;
    }

    .navbar-header .navbar-toggle {
        line-height: 35px;
        color: var(--body-font-color);
        width: 10%;
        float: left;
    }

    .nav.navbar-top-links.navbar-right {
        width: 60%;
    }

    #page-wrapper {
        margin-top: 80px !important;
        margin-left: 0 !important;
    }

    table {
        display: block;
        width: 100%;
        overflow-x: auto;
        -ms-overflow-style: -ms-autohiding-scrollbar;
        overflow-y: hidden;
    }

    .bg-title {
        margin: 130px 10px 0px 10px !important;
    }

}

nav ul.dropdown-menu a {
    color: var(--body-font-color) !important;
}

nav ul.dropdown-menu {
    /* border: solid 2px var(--top-menu-border); */
    /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
    border-radius: 4px;
    border: 1px solid var(--btn-background);
    background-color: var(--dropdown-open-color);
}

section .bg-title,
.container-fluid:first-child(.bg-title) {
    padding-left: 15px !important;
}

.bg-title .sttabs.tabs-style-linebox {
    margin-left: -10px;
}



.content-wrapper .top-left-part {
    width: 40%;
    text-align: left;
}

.top-menu-child {
    position: relative;
    border: none !important;
    background-color: #f7fafc !important;
}

.super-admin-company-selector select {
    width: 10px !important;
    height: 10px !important;
    margin-top: 25px;
    padding: 0;
    margin-right: 5px;
    background: var(--top-menu-background);
    border: none;
    color: #fff;
}














.super-admin-company-selector select:focus,
.super-admin-company-selector select:active {
    background: var(--top-menu-background);
    border: none;
    color: #fff;
}


.table-col-alt-color tr :nth-child(odd) {
    background-color: #f5f5f5;

}

.payslip .modal-content {
    width: 690px !important;
}

.custom-table.alternate-col tbody tr td:nth-child(odd) {
    background-color: #ECF9FF !important;
    color: var(--highlight-font) !important;
}

.m--10 {
    margin: 0 -10px !important;
}

.search-section {
    border-left: solid 1px var(--highlight-border);
    border-right: solid 1px var(--highlight-border);
    border-top: solid 1px var(--highlight-border);
}


.left-menu ul {
    list-style-type: none;
    margin: 7px 0 !important;
    padding: 0;
    position: fixed;
    width: 100%;
    height: auto;
    overflow-y: auto;
    background: var(--top-menu-background);
    border: solid 1px #ccc !important;
    border-right: none !important;
    overflow-x: hidden;
}

.left-menu ul li {
    padding: 0px;
    color: #fff;
    cursor: pointer;
    border: none !important;
    min-width: 98%;
    margin: 0 !important;
}

.left-menu ul li a {
    border: none !important;
    padding: 0 10px !important;
    text-align: left;
}

.left-menu ul li a::after {
    border: none !important;
    background: none !important;

}

.left-menu .tab-current a {
    background: #cccccc79 !important;
    font-weight: 800;
}

.left-menu ul li:hover {
    background-color: var(--highlight-border);
}

span.user-section {
    display: block;
    padding: 10px;
    text-align: center;
    background: var(--modal-header-color);
    color: #312f69;
    font-weight: 400;
    margin-top: -5px;
}

.full-width-left-menu {
    margin: 0px -17px 0px -7px;
}

.profile-box {
    margin-left: 4px;
    margin-top: 10px;
}

.page-title-mb-0 .page-title {
    margin-top: 15px !important;
}

.left-menu .tab-current {
    background-color: var(--new-pri) !important;
}

.left-menu .tab-current a {
    background-color: var(--body-bg) !important;
    left: 7px;
    border-top: solid 1px #ccc !important;
    border-bottom: solid 1px #ccc !important;
}

.left-menu li:not(.tab-current) {
    border-right: solid 1px #ccc !important;
    left: 5px;
}

.left-menu li.title h4 {
    font-size: 16px;
    text-align: left;
    color: #000 !important;
    margin: 0 !important;
    font-weight: 600;
    padding-left: 20px;
}

.left-menu li.title {
    border-bottom: #ccc solid 1px !important;
    height: 55px;
    align-content: center;
    align-items: center;
}

li.title {
    left: 0px !important;
    width: 100%;
    background: #fff;
}

.list-style-none {
    list-style: none;
}



.v2-bg {
    /* background-color: #f0f1f7; */
    /* margin-top: -10px; */
    height: auto;
}

.dashboard-v2-box {
    background-color: #fff;
    margin: 10px;
    border-radius: 10px;
    /* box-shadow: #ccc 0px 1px 0px 1px; */
    /* box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px; */
    /* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
    /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
    /* box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px; */
    box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
}

.dashboard-v2-body {
    height: 172px;
    overflow-y: auto;
    overflow-x: hidden;
    width: 100%;
}

.dashboard-vh2-body {
    height: 250px;
    overflow-y: auto;
    overflow-x: hidden;
    width: 100%;
}

.dashboard-vh2-body-1 {

    height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
    width: 100%;

}



.full-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: white;
    margin-top: 80px;
}

.full-screen-style {
    width: 100%;
    height: 80vh;
    margin-right: 0;
    overflow-y: auto;
    overflow-x: hidden;
}

.days-container {
    display: flex;
    justify-content: space-between;
}

.days-container .form-check {
    margin-right: 15px;
}

.date-checkbox-container {
    display: grid;
    grid-template-columns: repeat(15, 1fr);
    gap: 30px;
}

.date-checkbox {
    display: flex;
    align-items: center;
}


.canva-1{
    height: 210px !important;
    width: 210px !important;
}

.sticky-header{
    position: sticky !important;
    top: 0 !important;
}




