:root {
    --bs-blue: #0d6efd;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-white: #fff;
    --bs-gray: #556478;
    --bs-brown: #003232;
    --bs-gray-dark: rgb(28, 31, 34);
    --bs-gray-100: #f8f9fa;
    --bs-gray-200: #e9ecef;
    --bs-gray-300: #dee2e6;
    --bs-gray-400: #ced4da;
    --bs-gray-500: #adb5bd;
    --bs-gray-600: #6c757d;
    --bs-gray-700: #495057;
    --bs-gray-800: #343a40;
    --bs-gray-900: #212529;
    --bs-primary: #003232;
    --bs-secondary: #343a40;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #212529;
    --bs-dark-green: #003232;
    --bs-mid-green: #007846;
    --bs-green: #00a000;
    --bs-light-green: #8cdc50;
    --bs-light-aqua: #32d2a0;
    --bs-aqua: #009696;
    --bs-aqua-rgb: 0, 150, 150;
    --bs-purple: #785fdc;
    --bs-light-purple: #96affa;
    --bs-primary-rgb: 0, 150, 150;
    --bs-secondary-rgb: 50, 210, 160;
    --bs-success-rgb: 25, 135, 84;
    --bs-info-rgb: 13, 202, 240;
    --bs-warning-rgb: 255, 193, 7;
    --bs-danger-rgb: 220, 53, 69;
    --bs-light-rgb: 248, 249, 250;
    --bs-dark-rgb: 33, 37, 41;
    --bs-white-rgb: 255, 255, 255;
    --bs-black-rgb: 0, 0, 0;
    --bs-body-color-rgb: 33, 37, 41;
    --bs-body-bg-rgb: 255, 255, 255;
    --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --bs-gradient: linear-gradient( 180deg, rgb(255 255 255 / 31%), rgb(0 0 0 / 0%) );
    --bs-body-font-family: var(--bs-font-sans-serif);
    --bs-body-font-size: 13px;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.5;
    --bs-body-color: #ececec;
    --bs-body-bg: rgb(240, 240, 240);
    --bs-dark-gray: rgb(125,129,130);
}

.bg-dark-green {
    background-color: var(--bs-dark-green) !important;
}

.bg-light-green {
    background-color: var(--bs-light-green) !important;
}

.bg-light-aqua {
    background-color: var(--bs-light-aqua) !important;
}

.bg-light-light-aqua {
    background-color: #ddf7ef !important;
}

.bg-light-red {
    background-color: var(--bs-danger) !important;
}


.bg-aqua {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-aqua-rgb), var(--bs-bg-opacity)) !important
}

.bg-aqua-dark {
    background-color: #006060;
    color:white ;
}

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

.bg-light-purple {
    background-color: var(--bs-light-purple) !important;
}

.text-dark-green {
    color: var(--bs-dark-green) !important;
}

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

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

.text-aqua {
    color: var(--bs-aqua) !important;
}

.text-purple {
    color: var(--bs-purple) !important;
}

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

.accordion-button {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    padding: 0rem 0rem;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    background-color: rgba(255, 255, 255, 0);
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, border-radius 0.15s ease, -webkit-box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, border-radius 0.15s ease, -webkit-box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease, -webkit-box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .accordion-button {
        -webkit-transition: none;
        transition: none;
    }
}

.accordion-button:not(.collapsed) {
    color: black;
    background-color: transparent;
    -webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.125);
}

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

.accordion-button::after {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    content: "";
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 1.25rem;
    -webkit-transition: -webkit-transform 0.2s ease-in-out;
    transition: -webkit-transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
    background-color: #003232;
    padding: 15px;
    border-radius: 5px;
    background-position: center;
}

@media (prefers-reduced-motion: reduce) {
    .accordion-button::after {
        -webkit-transition: none;
        transition: none;
    }
}

.accordion-button:hover {
    z-index: 2;
}

.accordion-button:focus {
    z-index: 3;
    border-color: rgba(255, 255, 255, 0);
    outline: 0;
    -webkit-box-shadow: 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
}

.accordion-button {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    padding: 0rem 0rem;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    background-color: rgba(255, 255, 255, 0);
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, border-radius 0.15s ease, -webkit-box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, border-radius 0.15s ease, -webkit-box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease, -webkit-box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .accordion-button {
        -webkit-transition: none;
        transition: none;
    }
}

.accordion-button:not(.collapsed) {
    color: black;
    background-color: transparent;
    -webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.125);
}

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

.accordion-button::after {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    content: "";
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 1.25rem;
    -webkit-transition: -webkit-transform 0.2s ease-in-out;
    transition: -webkit-transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .accordion-button::after {
        -webkit-transition: none;
        transition: none;
    }
}

.accordion-button:hover {
    z-index: 2;
}

.accordion-button:focus {
    z-index: 3;
    border-color: rgba(255, 255, 255, 0);
    outline: 0;
    -webkit-box-shadow: 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
}

.accordion-header {
    margin-bottom: 0;
}

.accordion-item {
    background-color: rgba(255, 255, 255, 0);
    border: 0 solid rgba(0, 0, 0, 0.125);
}

    .accordion-item:first-of-type {
        border-top-left-radius: 0.25rem;
        border-top-right-radius: 0.25rem;
    }

        .accordion-item:first-of-type .accordion-button {
            border-top-left-radius: 0.25rem;
            border-top-right-radius: 0.25rem;
        }

    .accordion-item:not(:first-of-type) {
        border-top: 0;
    }

    .accordion-item:last-of-type {
        border-bottom-right-radius: 0.25rem;
        border-bottom-left-radius: 0.25rem;
    }

        .accordion-item:last-of-type .accordion-button.collapsed {
            border-bottom-right-radius: 0.25rem;
            border-bottom-left-radius: 0.25rem;
        }

        .accordion-item:last-of-type .accordion-collapse {
            border-bottom-right-radius: 0.25rem;
            border-bottom-left-radius: 0.25rem;
        }

.accordion-body {
    padding: 0rem 0rem;
}

.accordion-flush .accordion-collapse {
    border-width: 0;
}

.accordion-flush .accordion-item {
    border-right: 0;
    border-left: 0;
    border-radius: 0;
}

    .accordion-flush .accordion-item:first-child {
        border-top: 0;
    }

    .accordion-flush .accordion-item:last-child {
        border-bottom: 0;
    }

    .accordion-flush .accordion-item .accordion-button {
        border-radius: 0;
    }

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
    box-shadow: 0 0 0 30px white inset !important;
}

.btn-primary {
    background-color: #003232;
    border-color: #003232;
}

    .btn-primary:hover {
        background-color: #003232;
        border-color: #003232;
        -webkit-filter: brightness(110%);
        filter: brightness(110%);
    }

    .btn-primary:focus {
        background-color: #003232;
        border-color: #003232;
        -webkit-filter: brightness(110%);
        filter: brightness(110%);
    }

.btn-secondary {
    background-color: #343a40;
    border-color: #343a40;
}

    .btn-secondary:hover {
        background-color: #343a40;
        border-color: #343a40;
        -webkit-filter: brightness(110%);
        filter: brightness(110%);
    }

    .btn-secondary:focus {
        background-color: #343a40;
        border-color: #343a40;
        -webkit-filter: brightness(110%);
        filter: brightness(110%);
    }

.border-primary {
    border-color: #003232 !important;
}

.form-control:focus {
    -webkit-box-shadow: 0 0 0;
    box-shadow: 0 0 0;
}

.text-gray {
    color: #ced4da;
}


.text-dark-gray {
    color: var(--bs-dark-gray);
}
/*# sourceMappingURL=theme.css.map */

.popover-header {
    background-color: #ffffff;
    color: #000;
}

.header i:hover {
    color: #32d2a0;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    color: #009696;
    background-color: transparent;
    border-bottom: 3px solid #009696;
    border-radius: 0;
}

.nav-pills .nav-link {
    color: var(--bs-gray-400);
}

.circular-chart.red .circle {
    stroke: var(--bs-red);
}

.circular-chart.green .circle {
    stroke: var(--bs-light-green);
}

.circular-chart.teal .circle {
    stroke: var(--bs-teal:);
}

.circular-chart.light-purple .circle {
    stroke: var(--bs-light-purple);
}

.circular-chart.purple .circle {
    stroke: var(--bs-purple);
}

.circular-chart.orange .circle {
    stroke: var(--bs-orange);
}



.chartCir.red .circle {
    stroke: var(--bs-red);
}

.chartCir.green .circle {
    stroke: var(--bs-light-green);
}

.chartCir.teal .circle {
    stroke: var(--bs-teal:);
}

.chartCir.light-purple .circle {
    stroke: var(--bs-light-purple);
}

.chartCir.purple .circle {
    stroke: var(--bs-purple);
}

.chartCir.orange .circle {
    stroke: var(--bs-orange);
}

.chartCir .percentage {
    fill: #dbdbdb;
    font-family: inherit;
}

.activeCard {
    background: #f0f0f0 !important;
    border: 3px solid #fff;
    border-radius: 7px;
    margin: 3px;
    position: relative;
    transition: 0.3s;
}

.activeTab {
    color: rgba(0, 0, 0, 0.5) !important;
    background: #f0f0f0 !important;
    border: 3px solid #fff;
    margin: 3px;
    position: relative;
    transition: 0.3s;
}

.activeCard .bg-light {
    color: #fff;
    background: #785fdc !important;
}

.activetab-sub {
    --bs-text-opacity: 1 !important;
    color: rgba(0, 0, 0, 0.5) !important;
}

.activeCard .bg-light h6 {
    color: #fff !important;
}

.activeCard:after {
    content: "\f146";
    font-family: "selfservices";
    position: absolute;
    left: -13px;
    font-size: 24px;
    top: 43%;
    height: 14px;
    width: 22px;
    line-height: 14px;
    overflow: hidden;
    color: #dee2e6;
}

.activeCard:before {
    content: " ";
    position: absolute;
    left: -5px;
    top: 46%;
    height: 6px;
    width: 4px;
    background: #f0f0f0;
}

.activeCard:before {
    content: " ";
    position: absolute;
    left: -5px;
    top: 46%;
    height: 6px;
    width: 4px;
    background: #f0f0f0;
}

.accordion-button::after {
    background-color: #009696;
}

button.bg-aqua.active {
    background: #32d2a0 !important;
}

button.bg-aqua:hover {
    background: #32d2a0 !important;
}

button.bg-white.active {
    background: var(--bs-aqua) !important;
    color: #fff !important;
}

button.bg-white:hover {
}



.chk-item.chosen {
    background: #009696 !important;
    color: #fff !important;
}

.actions-window .chk-item.chosen {
    background: #32d2a0 !important;
    color: #fff !important;
}

.tabs .chk-item.chosen {
    background: #ffffff !important;
    color: #009696 !important;
}

.tabs .chk-item {
    background: #f8f9fa;
}

.bg-light .bg-light h5.bg-aqua {
    background: transparent !important;
    color: #003232 !important;
    font-size: 14px;
}

.bg-light .row h5.bg-aqua {
    background: transparent !important;
    color: #003232 !important;
    font-size: 14px;
}

.form-check-input:checked {
    background-color: #32d2a0;
    border-color: #32d2a0;
}


@media screen and (-webkit-min-device-pixel-ratio:0) {


    input[type='range']::-webkit-slider-thumb {
        background: #009696;
    }
}





.new-nav-style
{

}

    .new-nav-style li.nav-item {
        background: #fdfdfd;
        border: 1px solid #e9e9e9;
        padding: 0 20px;
        border-radius: 50rem !important;
        font-weight: bold;
    }

        .new-nav-style li.nav-item.active {
            background: #009696;
        }

        .new-nav-style li.nav-item span.nav-link {
            color: #009696;
        }


        .new-nav-style li.nav-item.active span.nav-link {
            color: #fff;
        }


.Attendance-CheckOut-Icon {
    top: 16px;
}





.height-lineHeight-10 {
    height: 10px;
    line-height: 10px
}
.height-lineHeight-20 {
    height: 20px;
    line-height: 20px
}
.height-lineHeight-30 {
    height: 30px;
    line-height: 30px
}
.height-lineHeight-40 {
    height: 40px;
    line-height: 40px
}
.height-lineHeight-50 {
    height: 50px;
    line-height: 50px
}
.height-lineHeight-60 {
    height: 60px;
    line-height: 60px
}
.height-lineHeight-70 {
    height: 70px;
    line-height: 70px
}


.min-height-150px
{
    min-height:150px
}




.bg-opacity-10 {
    --bs-bg-opacity: 0.1;
}

.bg-opacity-25 {
    --bs-bg-opacity: 0.25;
}

.bg-opacity-50 {
    --bs-bg-opacity: 0.5;
}

.bg-opacity-75 {
    --bs-bg-opacity: 0.75;
}

.bg-opacity-100 {
    --bs-bg-opacity: 1;
}


.svg-attendance {
    height: calc(100% - 320px);
}

.svg-attendance > img {
    width: calc(100% - 246px);
    max-width: 380px;
    min-width: 260px;
}






.circle-strock-custom {
    stroke-width: 4.5px !important;
    stroke-linecap: butt !important;
}


.table-striped-aqua > tbody > tr:nth-of-type(even) {
    --bs-table-accent-bg: #f5fefe;
    color: var(--bs-table-striped-color);
}

.table-striped-aqua > tbody > tr:nth-of-type(odd) {
    --bs-table-accent-bg: #fff;
}

.bg-f7f7f7 {
    background: #f7f7f7;
}

.bg-f0f0f0 {
    background: #f0f0f0;
}

.bg-fbf4ee {
    background: #fbf4ee;
}

.bg-darkblue {
    background: #0e77d3 !important;
}


.fill-dark-gray {
    fill: #9a9a9a !important
}


.modal-fullscreen .modal-content .modal-content {
    height: 94%;
}

.p-2px {
    padding: 2px;
}