:root {
    --blue-color: #2967AB;
    --dark-blue-color: #153456;
    --bg-color: #EEEFF5;
    --sidebar-width: 300px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: Poppins Regular;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Poppins Regular';
    font-style: normal;
    font-weight: normal;
    src: local('Poppins Regular'), url('../fonts/../fonts/Poppins-Regular.woff') format('woff');
}


@font-face {
    font-family: 'Poppins Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Poppins Italic'), url('../fonts/Poppins-Italic.woff') format('woff');
}


@font-face {
    font-family: 'Poppins Thin';
    font-style: normal;
    font-weight: normal;
    src: local('Poppins Thin'), url('../fonts/Poppins-Thin.woff') format('woff');
}


@font-face {
    font-family: 'Poppins Thin Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Poppins Thin Italic'), url('../fonts/Poppins-ThinItalic.woff') format('woff');
}


@font-face {
    font-family: 'Poppins ExtraLight';
    font-style: normal;
    font-weight: normal;
    src: local('Poppins ExtraLight'), url('../fonts/Poppins-ExtraLight.woff') format('woff');
}


@font-face {
    font-family: 'Poppins ExtraLight Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Poppins ExtraLight Italic'), url('../fonts/Poppins-ExtraLightItalic.woff') format('woff');
}


@font-face {
    font-family: 'Poppins Light';
    font-style: normal;
    font-weight: normal;
    src: local('Poppins Light'), url('../fonts/Poppins-Light.woff') format('woff');
}


@font-face {
    font-family: 'Poppins Light Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Poppins Light Italic'), url('../fonts/Poppins-LightItalic.woff') format('woff');
}


@font-face {
    font-family: 'Poppins Medium';
    font-style: normal;
    font-weight: normal;
    src: local('Poppins Medium'), url('../fonts/Poppins-Medium.woff') format('woff');
}


@font-face {
    font-family: 'Poppins Medium Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Poppins Medium Italic'), url('../fonts/Poppins-MediumItalic.woff') format('woff');
}


@font-face {
    font-family: 'Poppins SemiBold';
    font-style: normal;
    font-weight: normal;
    src: local('Poppins SemiBold'), url('../fonts/Poppins-SemiBold.woff') format('woff');
}


@font-face {
    font-family: 'Poppins SemiBold Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Poppins SemiBold Italic'), url('../fonts/Poppins-SemiBoldItalic.woff') format('woff');
}


@font-face {
    font-family: 'Poppins Bold';
    font-style: normal;
    font-weight: normal;
    src: local('Poppins Bold'), url('../fonts/Poppins-Bold.woff') format('woff');
}


@font-face {
    font-family: 'Poppins Bold Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Poppins Bold Italic'), url('../fonts/Poppins-BoldItalic.woff') format('woff');
}


@font-face {
    font-family: 'Poppins ExtraBold';
    font-style: normal;
    font-weight: normal;
    src: local('Poppins ExtraBold'), url('../fonts/Poppins-ExtraBold.woff') format('woff');
}


@font-face {
    font-family: 'Poppins ExtraBold Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Poppins ExtraBold Italic'), url('../fonts/Poppins-ExtraBoldItalic.woff') format('woff');
}


@font-face {
    font-family: 'Poppins Black';
    font-style: normal;
    font-weight: normal;
    src: local('Poppins Black'), url('../fonts/Poppins-Black.woff') format('woff');
}


@font-face {
    font-family: 'Poppins Black Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Poppins Black Italic'), url('../fonts/Poppins-BlackItalic.woff') format('woff');
}



.fullwidth {
    margin-left: var(--sidebar-width);
    transition: all .3s ease-in-out;
}

body.bg-ground {
    background-color: var(--bg-color);

}

.overflow-x {
    overflow-x: auto;
}


.fullwidth_div {
    transition: all .3s ease-in-out;
}

/** --------------------------------
-- Sidebar
-------------------------------- */
.sidebar {
    background: url(../img/menu-bg.png);
    width: var(--sidebar-width);
    transition: all .3s ease-in-out;
    transform: translateX(0);
    z-index: 999;
    position: fixed;
    height: -webkit-fill-available;
    background-color: var(--blue-color);
}

.navbar {
    position: sticky;
    top: 0;
    background: #ffff;
    z-index: 99;
}

.sidebar .close-aside {
    position: absolute;
    top: 7px;
    right: 7px;
    cursor: pointer;
    color: #EEE;
}

/* Start dropdown menu */
.sidebar ul .sidebar-dropdown {
    padding-top: 10px;
    padding-left: 30px;
    display: none;
}

.sidebar ul .sidebar-dropdown.active {
    display: block;
}

.sidebar ul .sidebar-dropdown>li>a {
    font-size: .85rem;
    padding: .5rem 0;
    display: block;
}

/* End dropdown menu */

.show-sidebar {
    transform: translateX(-300px);
}

.loin-bg {
    background: url(../img/login_bg.png);
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
}

.logo-section {
    display: flex;
    align-items: center;
    height: 100%;
    margin-left: 10%;
}

.logo-section img {
    margin-bottom: 20%;
}

.content-section {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-content {
    background: white;
    width: 100%;
    padding: 100px 80px;
    border-radius: 200px 20px 200px 20px;
    min-height: 800px;
    text-align: center;
    box-shadow: 0 0 20px #0823481a;
}

.login-heading input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ddd;
    padding: 15px 10px;
    transition: .35s;
    margin-bottom: 15px;
}

.login-heading input:focus {
    border-bottom: 1px solid var(--blue-color);
    outline: none;
    transition: .35s;
}

.login-heading h3 {
    color: var(--blue-color);
    font-size: 46px;
    font-weight: 700;
}

.fogotpass-secton {
    display: flex;
    justify-content: space-between;
}

.login-content button {
    background: var(--blue-color);
    border: none;
    width: 100%;
    margin-top: 2rem;
    color: #fff;
    font-size: 20px;
    padding: 15px;
    border-radius: 50px;
}

.login-heading h5 {
    font-size: 31px;
}

.fogotpass-secton label {
    font-size: 18px;
    font-weight: 500;
}

.fogotpass-secton label a {
    text-decoration: none;
    color: var(--blue-color);
    font-family: Poppins Medium;
}

p.switch-account a {
    text-decoration: none;
    font-weight: 500;
    color: var(--blue-color);
    font-family: Poppins Medium;
}

ul.profile_menu {
    padding: 15px 32px;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 3px 8px 0 rgb(0 0 0 / 12%);
    position: absolute;
    right: 0;
    display: none;
    min-width: 200px;
}

ul.profile_menu li a {
    color: inherit;
    display: inline-block;
    text-decoration: none;
    width: 100%;
}

ul.profile_menu li {
    padding: 0.5rem 1rem;
    list-style: none;
}

ul.navbar-nav.ms-auto a.nav-link i {
    color: #727272;
    font-size: 20px;
}

.navbar-collapse {
    align-items: center;
    width: 100%;
}

ul.navbar-nav.ms-auto a.nav-link {
    height: 100%;
    vertical-align: middle;
    margin: 0 0 0 25px;
    cursor: pointer;
    align-items: center;
    display: flex;
}

.checkbox-option {
    margin-bottom: 15px;
}

ul.side-menuv {
    list-style: none;
    padding: 0;
}

ul.navbar-nav a.nav-link img {
    width: 45px;
}

ul.side-menuv li {
    margin: 10px 0;
    white-space: nowrap;
}

ul.side-menuv li a {
    color: #fff;
    text-decoration: none;
    padding: 10px;
    padding-left: 45px;
    display: flex;
    align-items: center;
    width: 90%;
    font-size: 18px;
    border-radius: 0 50px 50px 0px;
}

span.side-menubg {
    background: #74a9e340;
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    border-radius: 5px;
}

span.side-menubg img {
    filter: brightness(100);
}

a.active_menu span.side-menubg img {
    filter: unset;
}

.ui-datepicker-title {
    font-family: 'Poppins Regular';
}

.ui-datepicker-prev:after {
    content: "<";
    font-size: 2rem;
    float: left;
    margin-left: 10px;
    cursor: pointer;
    font-family: 'Poppins';
    background: url(../img/chevron-left.svg);
    background-repeat: no-repeat;
    background-size: contain;
    color: transparent;
    position: absolute;
    left: 5px;
    top: 15px;
    font-size: 2.8rem !important;
}

.ui-datepicker-next:after {
    content: ">";
    float: right;
    font-size: 2rem;
    margin-right: 10px;
    cursor: pointer;
    font-family: 'Poppins';
    background: url(../img/chevron-right.svg);
    background-repeat: no-repeat;
    background-size: contain;
    color: transparent;
    position: absolute;
    right: 5px;
    top: 15px;
    font-size: 2.8rem !important;
}

.checkbox-option.checkbox-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.width-count i {
    cursor: pointer;
}

.img-fluid {
    max-width: 100%;
    height: auto;
    width: 221px;
}

.width-count {
    width: 22%;
}

a.active_menu {
    background: white;
}

a.active_menu span {
    color: var(--blue-color);
}

ul.side-menuv li a.active_menu svg {
    filter: initial;
}

.heading-page {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.heading-page label {
    font-size: 1.9rem;
    font-family: 'Poppins medium';
}

.heading-page button, .filterButton {
    background: var(--blue-color);
    border: none;
    /* font-size: 20px;
    padding: 15px 35px; */
    font-size: 18px;
    padding: 10px 25px;
    color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 12px 0 #0f355e75;
}

.cards {
    border-radius: 10px;
    color: #fff;
    position: relative;
    padding: 20px;
    min-height: 200px;
    box-shadow: 0 0 12px #1b426e1a;
}

.cardblue {
    background: linear-gradient(45deg, var(--dark-blue-color), var(--blue-color));
}

.cardgreen {
    background: linear-gradient(45deg, #007E76, #31C7BC);
}

.cardorange {
    background: linear-gradient(45deg, #C76503, #BFAE13);
}

.cardblue1 {
    background: linear-gradient(45deg, #849d24, #099133);
}

.cardgreen1 {
    background: linear-gradient(45deg, #2c3d91, #a931c7);
}

.cardorange1 {
    background: linear-gradient(45deg, #19a399, #205085);
}

.cardorange2 {
    background: linear-gradient(45deg, #514fe1, #138fbf);
}

.cards p {
    font-size: 1.4rem;
}

.cards h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

.buttom-content {
    display: flex;
    margin-top: 15px;
    align-items: center;
}

.buttom-content label {
    font-size: 1.2rem;
    margin-left: 10px;
}

.cards::after {
    content: "";
    background: url(../img/cardtran.png);
    position: absolute;
    top: 0;
    height: 100%;
    right: 0;
    background-repeat: no-repeat;
    width: 172px;
    opacity: .5;
}

.graph-work {
    background: #fff;
    box-shadow: 0 0 12px #1b426e1a;
    border-radius: 10px;
    height: 100%;
    min-height: 450px;
}

.graph-work h3 {
    font-size: 20px;
    font-family: 'Poppins Medium';
    margin: 0;
    padding: 15px 0 0 20px;
}

.fc-toolbar .fc-left {
    float: right;
}

.fc-toolbar .fc-right {
    float: left;
}

.fc-view.fc-month-view.fc-basic-view {
    margin-bottom: 20px;
}

.fc-scroller.fc-day-grid-container {
    height: 100% !important;
    overflow: auto !important;
}

.fc-view-container {
    height: 100% !important;
}

.fc-ltr .fc-basic-view .fc-day-top .fc-day-number {
    float: initial;
    text-decoration: none;
    color: #333333;
}

.fc-row .fc-content-skeleton td, .fc-row .fc-helper-skeleton td {
    text-align: center;
}

.fc-row.fc-widget-header {
    background: #2967AB;
    padding: 15px 0;
    color: #fff;
    font-family: 'Poppins Regular';
    border-radius: 10px 10px 0 0;
}

.fc-row.fc-widget-header th.fc-day-header {
    border: none;
}

.fc-right .fc-state-default {
    background-color: #E2E8EF;
    background-image: initial;
    background-image: initial;
    background-image: initial;
    background-image: initial;
    background-image: initial;
    background-repeat: repeat-x;
    border-color: initial;
    color: #333;
    text-shadow: none;
    box-shadow: none;
    border: none;
}

.fc-right .fc-state-active {
    background: #2967AB;
    box-shadow: 0 0 12px #2967ab;
    color: #fff;
    border-radius: 5px;
}

.fc button {
    height: initial;
    padding: 10px 15px;
}

.fc-right .fc-button-group {
    background: #e2e8ef;
    padding: 5px;
    border-radius: 5px;
}

.ui.container {
    width: 100% !important;
}

.fc-basic-view .fc-body .fc-row {
    min-height: 2em;
}

button.fc-today-button.fc-button.fc-state-default.fc-corner-left.fc-corner-right {
    display: none;
}

.fc-left .fc-button-group button {
    background: #fff;
    margin: 0 4px;
    transition: .35s;
    border: 1px solid #707070;
    border-radius: 5px;
}

.fc-left .fc-button-group button:hover {
    background: #2967AB;
    color: #ffff;
    transition: .35s;
    border: 1px solid #2967AB;
}

.fc-row.fc-rigid .fc-content-skeleton {
    top: 30px;
}

.wrapperv {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.wrapperv .cardv .circle {
    position: relative;
    height: 220px;
    width: 220px;
    border-radius: 50%;
    cursor: default;
    margin: 15px 0;
}

.cardv .circle .box,
.cardv .circle .box span {
    position: absolute;
    top: 50%;
    left: 50%;
}

.cardv .circle .box {
    height: 100%;
    width: 100%;
    background: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    transition: all 0.2s;
}

.cardv {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    margin: auto;
    border-radius: 0.25rem;
}

.cardv .circle .box span,

.circle .box span {
    font-size: 38px;
    font-family: sans-serif;
    font-weight: 600;
    transform: translate(-45%, -45%);
    transition: all 0.1s;
}

.bg-shadow {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 12px #1b426e1a;
    padding: 20px;
    /* height: 100%; */
    row-gap: 1rem;
}

h4.font_same {
    font-size: 20px;
    font-family: 'Poppins Medium';
    margin: 0;
}

.box span {
    color: #2967ab;
}

.monthlyselect select {
    border: 1px solid #A3A3A3;
    padding: 10px;
    border-radius: 5px;
}

.monthlyselect select:focus {
    border: 1px solid #2967AB;
    outline: none;
}

.heading-user {
    background: var(--blue-color);
    padding: 10px;
    border-radius: 10px 10px 0 0;
    text-align: center;
    color: #fff;
}

.pending-list-client {
    border: 1px solid #93B2D5;
}

.pending-list-client ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.pending-list-client ul li {
    padding: 10px;
    font-size: 1rem;
}

canvas#canvas {
    padding-right: 10px;
}

.pending-list-client ul li span {
    margin: 0 0 0 14px;
}

.fc-center h2 {
    font-size: 20px;
    margin-top: 13px;
}

.fc-icon-left-single-arrow:after {
    content: "";
    background: url(../img/left-arrow.png);
    background-repeat: no-repeat;
    width: 10px;
    height: 19px;
    background-position: center;
    display: block;
}

.fc-icon-right-single-arrow:after {
    content: "";
    background: url(../img/right-arrow.png);
    background-repeat: no-repeat;
    width: 10px;
    height: 19px;
    background-position: center;
    display: block;
}

.fc-left .fc-button-group button:hover .fc-icon-left-single-arrow:after {
    filter: brightness(100);
}

.fc-left .fc-button-group button:hover .fc-icon-right-single-arrow:after {
    filter: brightness(100);
}

.pending-list-client ul li {
    padding: 10px;
    font-size: 1rem;
    border-bottom: 1px solid #93B2D5;
}

.pending-list-client ul li:last-child {
    border: none;
}

.fc-button-group button {
    font-size: 16px;
    font-family: 'Poppins Regular';
    text-transform: capitalize;
}

.fc-row.fc-widget-header th {
    font-weight: 400;
}

.checkbox-option ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.checkbox-option ul li {
    margin: 10px 30px 10px 0px;
    font-size: 18px;
    font-family: 'Poppins Medium';
    cursor: pointer;
}

.checkbox-option ul li label {
    cursor: pointer;
}

.label-box {
    display: grid;
    position: relative;
}

.calendar-icon {
    position: relative;
}

.calendar-icon svg {
    position: absolute;
    right: 15px;
    top: 25px;
}

.label-box input {
    margin-top: 10px;
    border: none;
    height: 55px;
    padding: 10px;
    border-radius: 5px;
    transition: .25s;
    background: #EBF2FC;
    width: 100%;
}

.label-box input:focus {
    border: 1px solid #2967AB;
    outline: none;
    transition: .25s;
    box-shadow: 4px 4px 5px #1137623d;
}

.label-box select {
    margin-top: 10px;
    border: none;
    height: 55px;
    padding: 10px;
    border-radius: 5px;
    transition: .25s;
    background-color: #EBF2FC;
    width: 100%;
}

.label-box select:focus {
    border: 1px solid #2967AB;
    outline: none;
    transition: .25s;
    box-shadow: 4px 4px 5px #1137623d;
}

.label-box textarea {
    margin-top: 10px;
    border: none;
    min-height: 105px;
    padding: 10px;
    border-radius: 5px;
    background: #EBF2FC;
}

.label-box textarea:focus {
    border: 1px solid #2967AB;
    outline: none;
    box-shadow: 4px 4px 5px #1137623d;
}

.checkbox-option input[type="checkbox"] {
    appearance: none;
    border: 1px solid #5077A1;
    width: 26px;
    height: 26px;
    border-radius: 5px;
    vertical-align: sub;
}

.checkbox-option input[type="checkbox"]:checked {
    appearance: none;
    border: 1px solid #5077A1;
    border-radius: 5px;
    vertical-align: sub;
    position: relative;
    width: 26px;
    background: url(../img/checkmark.png);
    height: 26px;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #2967AB;
}

h4.griswold {
    margin: 35px 0 0 0;
    font-family: 'Poppins Medium';
}

input#upload-files {
    font-size: 0;
    display: none;
}

label#upload-container, .qrscanbtn {
    background: #2967AB;
    color: #fff;
    min-height: 57px;
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    justify-content: center;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 2px 2px 12px #1b426e57;
}

.qrscanbtn:hover {
    color: #fff;
}

div#files-list-container {
    display: flex;
    flex-wrap: wrap;
}

.img-icons {
    display: flex;
    width: 55px;
    justify-content: space-between;
}

.form__files-container {
    width: 30.5%;
    margin: 8px 15px;
    display: flex;
    justify-content: space-between;
    border-bottom: 3px solid #2967AB;
    padding: 8px 0;
}


.ui-datepicker-header {
    background-color: #2967AB;
    color: white;
    text-align: center;
    font-family: 'poppins';
    padding: 5px 10px;
    border-radius: 8px 8px 0px 0px;
}

.ui-datepicker-header.ui-widget-header.ui-helper-clearfix.ui-corner-all a {
    color: #fff;
    opacity: .7;
}

.ui-datepicker-header.ui-widget-header.ui-helper-clearfix.ui-corner-all a:hover {
    color: #fff;
    opacity: 1;
}

.ui-datepicker-prev span,
.ui-datepicker-next span {
    display: none;
}

.ui-datepicker-prev:after {
    content: "<";
    font-size: 2rem;
    float: left;
    margin-left: 10px;
    cursor: pointer;
    font-family: 'Poppins';
}

.ui-datepicker-next:after {
    content: ">";
    float: right;
    font-size: 2rem;
    margin-right: 10px;
    cursor: pointer;
    font-family: 'Poppins';
}

.ui-datepicker-calendar th {
    padding: 10px;
    color: #333;
}

.ui-datepicker-calendar {
    text-align: center;
    margin: 0 auto;
    background: white;
    padding: 10px;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 1px 3px #00000036;
}

.ui-datepicker-title {
    padding: 10px;
}

.ui-datepicker-calendar td {
    padding: 4px 0px;
}

.ui-datepicker-calendar .ui-state-default {
    text-decoration: none;
    color: black;
}

.ui-datepicker-calendar .ui-state-active {
    color: #ffffff;
    background: #2967AB;
    width: 30px;
    border-radius: 50%;
    height: 30px;
    display: inline-block;
    padding: 3px;
}

.cancel-save {
    margin: 0 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cancel-save button:last-child {
    background: #2967AB;
    min-width: 220px;
    border: none;
    padding: 15px;
    border-radius: 5px;
    color: #fff;
    box-shadow: 0 0 12px 0 #0f355e75;
}

.cancel-save button {
    background: #E0E6EC;
    min-width: 220px;
    border: 1px solid #ADC2DB;
    padding: 14px 0px;
    border-radius: 5px;
    font-size: 18px;
    margin-left: 20px;
}

table.dataTable thead .sorting_asc:after {
    content: "m" !important;
    color: transparent;
    background-image: url(../img/compare-arrows.png);
    background-repeat: no-repeat;
    bottom: 10px !important;
    right: 5px !important;
    opacity: 1 !important;
}

table.dataTable thead .sorting:after {
    content: "m" !important;
    color: transparent;
    background-image: url(../img/compare-arrows.png);
    background-repeat: no-repeat;
    bottom: 10px !important;
    right: 5px !important;
    opacity: 1 !important;
}

table.dataTable thead .sorting_desc:after {
    content: "m" !important;
    color: transparent;
    background-image: url(../img/compare-arrows.png);
    background-repeat: no-repeat;
    bottom: 10px !important;
    right: 5px !important;
    opacity: 1 !important;
}

.work-list thead tr {
    background: #2967AB;
    border-radius: 20px 0 0 0;
    height: 55px;
}

.work-list thead tr th {
    vertical-align: middle;
    color: #ffff;
    font-weight: 500;
}

.dataTables_paginate {
    float: right;
}

div.dataTables_wrapper div.dataTables_info {
    padding-top: 0px !important;
}

.work-list-table .dataTables_wrapper .row:last-child {
    align-items: center;
    margin-top: 15px;
}

ul.pagination li a {
    margin: 0 0 0 10px;
    color: #333333;
    padding: 10px;
    text-decoration: none;
    font-size: 1rem;
}

ul.pagination li.active a {
    background: #2967AB;
    padding: 6px 18px;
    border-radius: 5px;
    color: #fff;
}

.work-list tbody tr td {
    padding: 12px 6px;
}

.dataTables_length, .dataTables_filter {
    margin-bottom: 10px;
}

span.active-t {
    background: #FFC2C2;
    display: block;
    padding: 5px 10px;
    text-align: center;
    border-radius: 4px;
}

span.progress-t {
    background: #f2f28d;
    display: block;
    padding: 5px 10px;
    text-align: center;
    border-radius: 4px;
}

span.pending-t {
    background: #FFE0B2;
    display: block;
    padding: 5px 10px;
    text-align: center;
    border-radius: 4px;
}

span.completed-t {
    background: #C8E9C6;
    display: block;
    padding: 5px 10px;
    text-align: center;
    border-radius: 4px;
}

span.edit_icon {
    margin: 0 4px;
    cursor: pointer;
}

.work-list tbody tr td:first-child {
    color: #2967ab;
    font-family: 'Poppins Medium';
}

.work-list-table .modal-body {
    text-align: center;
    margin: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.work-list-table .modal-header {
    border-bottom: none;
}

.work-list-table .modal-content {
    width: 610px;
    min-height: 335px;
}

.work-list-table .modal-body h5 {
    font-size: 22px;
    font-family: 'Poppins SemiBold';
}

.work-list-table .modal-body p {
    font-size: 20px;
    font-family: 'Poppins Regular';
    margin-top: 20px;
}

.cancel_save button {
    background: #FE3737;
    border: none;
    font-size: 19px;
    padding: 10px 35px;
    color: #fff;
    border-radius: 5px;
}

.cancel_save {
    text-align: center;
    width: 100%;
    margin-top: 30px;
}

span.active-content {
    display: flex;
    justify-content: space-between;
    color: #FF6384;
}

span.pending-content a {
    text-decoration: none;
    color: #2967AB;
}

span.active-content svg {
    cursor: pointer;
}

.img-icons a {
    cursor: pointer;
}

.work-list-table .modal-dialog {
    display: flex;
    align-items: center;
    height: 100vh;
    margin-top: 0;
    margin-bottom: 0;
}

.assignto h4 {
    text-align: center;
    margin: 0;
    font-family: 'Poppins Medium';
    color: #333333;
}

.search-staff {
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-staff h5.modal-title {
    margin-right: 15px;
    font-family: 'Poppins Medium';
    color: #333333;
}

.search-staff input {
    border: 1px solid #87A9D0;
    padding: 12px;
}

ul#tagList {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

ul#tagList li {
    margin: 10px;
}

ul#tagList li {
    margin: 10px 6px 0 0;
    background: #E5ECF5;
    padding: 5px 8px;
    border-radius: 5px;
    display: flex;
    align-items: center;
}

span.rmTag {
    display: inline-block;
    color: #616161;
    font-size: 25px;
    cursor: pointer;
    margin-left: 5px;
}

button.save-save {
    background: #2967AB;
}

.div-staff {
    width: 90%;
}

.search-staff input:focus {
    outline: none;
    border: 1px solid #2967ab;
}

.view-div-detail {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999;
    background: #00000026;
    height: 100vh;
    width: 100%;
}

.view-details {
    width: 40%;
    float: right;
    background: #fff;
    word-break: break-all;
}

.view-details {
    width: 40%;
    float: right;
    background: #fff;
    height: 100vh;
    padding: 20px;
}

.view-details-content label {
    font-size: 17px;
    padding: 15px 0;
    vertical-align: middle;
}

.view-details-content h4 {
    font-size: 18px;
    font-family: 'Poppins Medium';
    padding: 15px 0;
}

.view-details-content .row>div {
    border-bottom: 1px solid #BED1E6;
}

.close-view svg {
    background: #EEF6FF;
    width: 35px;
    height: 35px;
    transition: .35s;
    padding: 10px;
    border-radius: 50%;
}

.close-view svg:hover {
    transform: rotate(180deg);
    transition: 0.7s;
    cursor: pointer;
}

.view-detail-heading h4 {
    font-size: 23px;
    margin: 20px 0;
    font-family: 'Poppins Medium';
}

.view-details-content h3 {
    font-size: 20px;
    font-family: 'Poppins Medium';
    margin-bottom: 15px;
}

.view-details-content {
    overflow-y: auto;
    overflow-x: hidden;
}

.view-cont-auto {
    height: calc(100vh - 143px);
}

.image-file {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.content-file {
    margin-left: 7px;
}

.content-file label {
    padding: 2px;
}

.content-file p {
    margin: 0;
    font-size: 14px;
}

.table-v thead tr th {
    padding: 10px;
}

.service-list tbody tr td {
    padding: 12px 6px;
    white-space: wrap;
}

.service-list thead tr {
    background: #2967AB;
    border-radius: 20px 0 0 0;
    height: 55px;
}

.service-list thead tr th {
    vertical-align: middle;
    color: #ffff;
    font-weight: 500;
}

.bg-shadow-v {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 12px #1b426e1a;
    padding: 20px;
}

.bg-shadow-v h5 {
    font-size: 20px;
    font-family: 'Poppins Medium';
}

.create-service button {
    background: var(--blue-color);
    border: none;
    font-size: 20px;
    padding: 10px;
    color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 12px 0 #0f355e75;
    min-width: 200px;
}

.create-service input {
    display: block;
    margin: 30px 0 25px 0;
    border: none;
    background: #EBF2FC;
    border-radius: 5px;
    padding: 10px;
    min-height: 57px;
    width: 100%;
}

.create-service {
    text-align: right;
}

.show-sidebar {
    transform: translateX(0);
    width: 100px;
    transition: .35s;
}

.show-sidebar ul.side-menuv li span:last-child {
    display: none;
    transition: .35s;
}

.show-sidebar ul.side-menuv li a {
    padding-left: 25px;
    transition: .35s;
}

.widthmar-left {
    margin-left: 100px;
    transition: .35s;
}

.create-service input:focus {
    outline: none;
    border: 1px solid #2967ab;
}

.work-list-dash thead tr {
    background: #2967AB;
    border-radius: 20px 0 0 0;
    height: 55px;
}

.work-list-dash thead tr th {
    vertical-align: middle;
    color: #ffff;
    font-weight: 500;
}

.work-list-dash tbody tr td {
    padding: 12px 6px;
}

.work-pending-user.bg-shadow .font_same {
    margin-bottom: 15px;
}

.fc-unthemed td.fc-today {
    background: #e2e8ef;
}

td.fc-day-top.fc-wed.fc-today.fc-state-highlight a {
    color: #2967ab;
}

.work-pending-user.bg-shadow .modal-header {
    border: none;
}

::-webkit-scrollbar {
    width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #ccc;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #2967AB;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #2967AB;
}

.edit-serv button {
    padding: 10px 15px;
}

.div-staff .dropdown {
    position: relative;
    font-size: 14px;
    width: 100%;
}

.div-staff .dropdown .dropdown-list {
    padding: 12px;
    background: #fff;
    position: absolute;
    top: 30px;
    left: 2px;
    right: 2px;
    box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.15);
    transform-origin: 50% 0;
    transform: scale(1, 0);
    transition: transform 0.15s ease-in-out 0.15s;
    max-height: 66vh;
    overflow-y: scroll;
}

.div-staff .dropdown .dropdown-option {
    display: block;
    padding: 8px 12px;
    opacity: 0;
    transition: opacity 0.15s ease-in-out;
}

.div-staff .dropdown .dropdown-label {
    display: block;
    background: #fff;
    border: 1px solid #ccc;
    padding: 15px 12px;
    line-height: 1;
    cursor: pointer;
    text-align: left;
}

.div-staff .dropdown .dropdown-label:before {
    content: "▼";
    float: right;
    opacity: .5;
}

.div-staff .dropdown.on .dropdown-list {
    transform: scale(1, 1);
    text-align: left;
    transition-delay: 0s;
}

.div-staff .dropdown.on .dropdown-list .dropdown-option {
    opacity: 1;
    transition-delay: 0.2s;
    font-size: 1rem;
    cursor: pointer;
    color: #262626;
    text-decoration: none;
}

.div-staff .dropdown.on .dropdown-label:before {
    content: "▲";
    opacity: .5;
}

.div-staff .dropdown [type=checkbox] {
    position: relative;
    top: 3px;
    margin-right: 4px;
}

.profile-img {
    text-align: center;
    height: auto;
}

.profile-img h4 {
    font-family: 'Poppins Medium';
    margin: 10px 0;
}

.avatar-upload {
    position: relative;
    max-width: 250px;
    margin: 25px auto;
    /* margin-top: 2px auto; */
}

.avatar-upload .avatar-preview {
    width: 250px;
    height: 250px;
    position: relative;
    border-radius: 100%;
    border: 6px solid #f8f8f8;
    box-shadow: 0px 2px 4px 0px rgb(0 0 0 / 10%);
}

.avatar-upload .avatar-preview>div {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 2px;
}

.imagePreview {
    background: url(../img/defaultImg.png);
}

input#imageUpload {
    display: none;
}

.profile-buttons {
    display: flex;
    justify-content: center;
}

.profile-buttons>div {
    margin: 5px 8px;
}

.avatar-edit label {
    font-family: 'Poppins Medium';
    font-size: 16px;
    background: #2967AB;
    color: #fff;
    box-shadow: 0 0 12px #1b426e1a;
    padding: 8px 16px;
    border-radius: 5px;
    border: 1px solid #2967AB;
}

.remove-picture a {
    font-family: 'Poppins Medium';
    font-size: 16px;
    background: #E0E6EC;
    color: #333333;
    box-shadow: 0 0 12px #1b426e1a;
    padding: 8px 16px;
    display: block;
    border-radius: 5px;
    text-decoration: none;
    border: 1px solid #ADC2DB;
}

.profile-heading h4 {
    font-family: 'Poppins Medium';
    font-size: 20px;
}

.profile-heading p {
    font-size: 17px;
}

.profile-heading {
    border-bottom: 1px solid #93B2D5;
    padding-bottom: 16px;
}

.input-section input {
    display: block;
    padding: 12px;
    border: 1px solid #C4CBD3;
    width: 100%;
    font-family: 'Poppins Medium';
    margin-top: 6px;
    border-radius: 5px;
}

.input-section textarea {
    display: block;
    padding: 12px;
    border: 1px solid #C4CBD3;
    width: 100%;
    min-height: 80px;
    font-family: 'Poppins Medium';
    margin-top: 6px;
    border-radius: 5px;
}

.input-section label {
    font-size: 16px;
    color: #626262dd;
}

.input-section {
    position: relative;
}

.eye-show i {
    position: absolute;
    right: 15px;
    top: 44px;
    font-size: 18px;
    opacity: .8;
    transition: .35s;
}

.eye-show i:hover {
    cursor: pointer;
    opacity: 1;
    transition: .35s;
}

.changepassword a {
    position: absolute;
    right: 15px;
    top: 8px;
    z-index: 9;
    text-decoration: none;
}

.newpass-show {
    display: none;
}

.input-section input:focus, .input-section textarea:focus {
    border: 1px solid #2967AB;
    outline: none;
    transition: .25s;
    box-shadow: 4px 4px 5px #1137623d;
}

.showinput input, .showinput textarea {
    background: #f7f7f7;
    color: #999595;
}

.save-button {
    text-align: right;
}

.save-button button {
    background: #2967AB;
    font-size: 18px;
    color: #fff;
    padding: 10px 35px;
    border: none;
    border-radius: 5px;
    margin-top: 10px;
}

.option-tick ul {
    list-style: none;
    display: grid;
    padding: 20px 10px;
    grid-template-columns: auto auto;
    margin: 0;
    position: relative;
}

.service-box-tick {
    background: #eaf1f9;
    border-radius: 10px;
    transition: .2s;
    height: 100%;
    position: relative;
}

.service-box-tick>label {
    font-size: 20px;
    text-align: left;
    width: 100%;
    border-radius: 10px 10px 0 0;
    padding: 10px;
}

.service-enable>label {
    background: #2967ab;
    color: #fff;
}

.service-enable {
    box-shadow: 0 0 12px #1b426e5e;
    transition: .2s;
}

.option-tick {
    background: #fff;
    border: 1px solid #eaf1f9;
    position: relative;
}

.option-tick ul li {
    margin: 8px 0;
}

.option-tick ul li label {
    cursor: pointer;
    font-size: 1rem;
    padding: 10px;
    position: relative;
    width: 100%;
    border-radius: 5px;
}

.option-tick ul li label span {
    position: absolute;
    left: 34px;
}


.service-box-tick i.fa.fa-circle {
    position: absolute;
    right: 15px;
    font-size: 21px;
    top: 13px;
    cursor: pointer;
    background: #a5a5a5;
    color: #ffffff;
    transition: 0.5s;
    width: 52px;
    padding: 2px 5px;
    border-radius: 15px;
}

.service-enable i.fa.fa-circle {
    color: #ffffff;
    background: #04AA6C;
    text-align: right;
    transition: 0.5s;
}

.overlayopt {
    background: #ffffff7d;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 9;
}

.option-tick ul li label input[type="checkbox"] {
    appearance: none;
    border: 2px solid #5077A1;
    width: 20px;
    height: 20px;
    transition-delay: 0.15s;
    border-radius: 2px;
    vertical-align: sub;
}

.option-tick ul li label input[type="checkbox"]:checked {
    background: url(../img/checkmark-small.png);
    appearance: none;
    border: 2px solid #2967AB;
    border-radius: 2px;
    vertical-align: sub;
    position: relative;
    width: 20px;
    height: 20px;
    transition-delay: 0.15s;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #2967AB;
}

.invalid-feedback {
    position: absolute;
    bottom: -20px;
    left: 10px;
}

.checkhidden {
    width: 54px;
    height: 50px;
    position: absolute;
    z-index: 0;
    right: 0;
    top: -4px;
    cursor: pointer;
    opacity: 0;
}

.notification-popup {
    height: auto;
    position: absolute;
    right: 15px;
    width: 480px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 37px #1b426e6e;
    padding: 20px;
    margin-top: 10px;
}

.notification-popup::after {
    content: "";
    position: absolute;
    top: -19px;
    width: 0;
    height: 0;
    border-top: 13px solid #ff000000;
    border-right: 15px solid white;
    border-radius: 5px;
    border-bottom: 13px solid #ff000000;
    transform: rotate(90deg);
    right: 90px;
}

.notification-popup h3 {
    text-align: left;
    font-size: 1.4rem;
    width: 100%;
    font-family: 'Poppins Medium';
    color: #333;
    margin-bottom: 15px;
}

ul.list-notificationmsgs {
    padding-right: 10px !important;
}

ul.list-notification,
ul.list-notificationmsgs {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: calc(75rem - 600px);
    overflow-y: auto;
    overflow-x: hidden;
}

.notification-popup i {
    position: absolute;
    right: 20px;
    top: 17px;
    opacity: .7;
    transition: .25s;
    cursor: pointer;
}

span.badge {
    background: #2967ab;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    text-align: center;
    padding: 5px;
    font-size: 1rem;
}

.notification-click span.badge {
    position: absolute;
    top: 5px;
    right: -9px;
    width: 35px;
    border: 1px solid #fff;
    padding: 5px;
}

.notification-click {
    position: relative;
}

ul.list-notification li.newmsg h4,
ul.list-notificationmsgs li.newmsg h4 {
    color: #333;
    font-family: 'Poppins Medium';
}

.notification-popup i:hover {
    opacity: 1;
    transition: .25s;
}

ul.list-notification li a,
ul.list-notificationmsgs li a {
    display: flex;
    text-decoration: none;
    cursor: pointer;
}

ul.list-notification li,
ul.list-notificationmsgs li {
    transition: .5s;
    overflow: hidden;
    position: relative;
    margin-top: 10px;
    display: inline-block;
    background: #f7f7f7;
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border-left: 3px solid #f7f7f7;
}

ul.list-notification li.newmsg,
ul.list-notificationmsgs li.newmsg {
    border-left: 3px solid #3573ba;
    background: #fbfbfb;
    box-shadow: 0 2px 2px #0000001f;
}

ul.list-notification li.newmsg h2,
ul.list-notificationmsgs li.newmsg h2 {
    color: #3573ba;
}

ul.list-notification li.newmsg label,
ul.list-notificationmsgs li.newmsg label {
    color: #3472b9;
    font-size: 12px;
}

ul.list-notification li img,
ul.list-notificationmsgs li img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 2px 2px 2px #0000002e;
    margin-right: 10px;
}

.content-noti h2 {
    font-size: 1rem;
    font-family: 'Poppins Medium';
    margin: 0;
    color: #555;
}

.content-noti h4 {
    font-size: 0.95rem;
    color: #727272;
    margin-top: 2px;
}

ul.list-notification li label,
ul.list-notificationmsgs li label {
    position: absolute;
    right: 15px;
    top: 10px;
    font-style: italic;
    font-size: 12px;
}

.content-noti {
    width: 100%;
}

.content-noti h2, .content-noti h4 {
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    white-space: nowrap;
}

.search-notif input {
    margin-bottom: 10px;
    border: none;
    height: 55px;
    padding: 10px;
    border-radius: 5px;
    transition: .25s;
    background: #EBF2FC;
    width: 100%;
}

.search-notif input:focus {
    border: 1px solid #2967AB;
    outline: none;
    transition: .25s;
    box-shadow: 4px 4px 5px #1137623d;
}

.notification-detail-heading p {
    margin: 0;
    font-family: 'Poppins Medium';
    color: #333;
}

.notification-detail-heading h3 {
    font-family: 'Poppins Medium';
    font-size: 22px;
    margin-top: 8px;
}

.lists-user {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.notification-detail-heading {
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.notification-name-list h2 {
    font-size: 17px;
    color: #333;
}

.notification-name-list .content-noti {
    display: flex;
    align-items: center;
}

.notification-name-list .content-noti img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 2px 2px 2px #0000002e;
    margin-right: 10px;
}

.notification-paraghraph p {
    font-size: 16px;
    line-height: 30px;
    width: 90%;
    margin: 0;
    font-family: 'Poppins Medium';
    color: #333;
}

div.dataTables_wrapper div.dataTables_length select {
    appearance: auto;
}

div#datalist {
    padding: 10px 0;
    border: 1px solid #3370b752;
    background: #fff;
    box-shadow: 0px 2px 5px 0px #00000026;
    min-height: 250px;
    border-radius: 5px;
}

div#datalist p {
    padding: 5px 10px;
    transition: .25s;
}

div#datalist p:hover {
    background: #3370b7;
    color: #fff;
    transition: .25s;
}

#clickNotification {
    cursor: pointer;
}

.heading-page select {
    border: 1px solid #fff;
    padding: 14px 10px;
    border-radius: 6px;
    cursor: pointer;
}

.heading-page select:focus {
    border: 1px solid var(--blue-color);
    box-shadow: none;
    outline: none;
}

.checkbox-option label input[type="checkbox"] {
    box-shadow: none;
    transition: unset;
}

.checkbox-option label {
    margin: 10px 30px 10px 0px;
    font-size: 18px;
    font-family: 'Poppins Medium';
    cursor: pointer;
}

.checkbox-option .width75p {
    width: 65%;
}

.datposition {
    position: absolute;
    left: 12px;
    top: -20px;
}

.check-pf {
    display: contents;
}

.check-pf span {
    width: 50px;
    display: inline-block;
    text-align: center;
    border: 1px solid #707070;
    transition: .35s;
    border-radius: 5px;
}

.check-pf span.factive {
    background: #FE3737;
    border: 1px solid #FE3737;
    transition: .35s;
    color: #fff;
}

.check-pf span.pactive {
    background: #29AB54;
    border: 1px solid #29AB54;
    color: #fff;
    transition: .35s;
}

.checkbox-option .width60p {
    width: 60%;
    margin: 0;
}

.checkbox-option .width50p {
    width: 50%;
    margin: 0;
}

.checkbox-option .width60p select {
    margin: 0;
    height: 100%;
    font-size: initial;
}

.absolute-date {
    position: absolute;
    top: -15px;
    left: 15px;
}

input[type="text"]::placeholder {
    font-size: 1rem;
}

.img-product img {
    border-radius: 50%;
    width: 46px;
    height: 46px;
}

.select-img {
    position: absolute;
    background: #FE3737;
    top: 66%;
    right: 0;
    padding: 10px;
    border-radius: 50%;
    padding: 20px;
}

.avatar-preview label {
    text-align: center;
    width: 100%;
    margin-top: 15px;
    font-size: 1.2rem;
}

.width30p {
    width: 40%;
}

.margin-dec h4 {
    padding-top: 0;
}

.new-invalid-feedback {
    width: 100% !important;
    margin-top: 0.25rem !important;
    font-size: .875rem !important;
    color: #dc3545 !important;

}

div#files-list-containersec {
    display: flex;
    flex-wrap: wrap;

}


#upload-containersec {
    background: #2967AB;
    color: #fff;
    min-height: 57px;
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    justify-content: center;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 2px 2px 12px #1b426e57;
}

div#files-list-containerthi {
    display: flex;
    flex-wrap: wrap;

}


#upload-containerthi {
    background: #2967AB;
    color: #fff;
    min-height: 57px;
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    justify-content: center;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 2px 2px 12px #1b426e57;
}

input#upload-filessec {
    font-size: 0;
    display: none;
}

input#upload-filesthi {
    font-size: 0;
    display: none;
}

.display-unset {
    display: unset;
}


label.hoursWorked {
    text-align: left;
    width: unset;
}

form.productReportFilter .label-box {
    padding: 0 5px;
}




/*22-08-2023 Css Here*/
.customCol_width100 {
    width: 100%;
}

.removeCls .delNot,
.removeCls .confirm-delete {
    left: initial;
    right: 0;
    transform: translateY(-50%);
}

span#assignBox {
    text-transform: capitalize;
}


.actionBTNBox {
    display: flex;
    align-items: center;
}

.actionBTNBox .dwnldBtn {
    display: flex;
    align-items: center;
    gap: 5px;
}


.cstmScrollTable tr td{
    white-space: nowrap;    
}

.FilterBtnBox {
    display: flex;
}


@media screen and (max-width:768px) {
    .cancel-save {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .cstmBTNBox {
        display: flex;
        justify-content: space-between;
        gap: 15px;
    }

    .cancel-save .cstmBTNBox button {
        width: 100%;
        margin: 0px;
    }
}

@media screen and (max-width:450px) {
    .FilterBtnBox {
        flex-direction: column;
        gap: 10px;
    }

    .FilterBtnBox button {
        width: 100% !important;
        margin: 0 !important;
        padding: 10px;
    }
}
