@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito-BoldItalic.woff2') format('woff2'),
    url('../fonts/Nunito-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito-ExtraLight.woff2') format('woff2'),
    url('../fonts/Nunito-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito-ExtraBold.woff2') format('woff2'),
    url('../fonts/Nunito-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito-Bold.woff2') format('woff2'),
    url('../fonts/Nunito-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito-Black.woff2') format('woff2'),
    url('../fonts/Nunito-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito-Light.woff2') format('woff2'),
    url('../fonts/Nunito-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito-SemiBold.woff2') format('woff2'),
    url('../fonts/Nunito-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito-Regular.woff2') format('woff2'),
    url('../fonts/Nunito-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito-Medium.woff2') format('woff2'),
    url('../fonts/Nunito-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bodyBg-color: #f6f7fb !important;

    --primary-color: #4990FF !important;
    --darkLightBlue-color: #207cb9 !important;
    --secondary-color: #FFC000 !important;
    --darkLightBlue-color: #d6a206 !important;
    --light-color1: #dbeaff !important;
    --lightBlue-color: #e8f1ff !important;

    --red-color: #FF394B !important;
    --darkRed-color: #e01c2d !important;

    --green-color: #04d36a !important;

    --black-color: #011E45 !important;
    --white-color: #ffffff !important;
    --white-color1: #ffffff !important;
    --gray-color: #627792 !important;

    --disabled-color: #dedede !important;
    --border-color: #d0d9e0 !important;
    --cardShadow-color: #d3d9e5 !important;
}

html.light-theme {
    --bodyBg-color: #f6f7fb !important;

    --primary-color: #4990FF !important;
    --darkLightBlue-color: #207cb9 !important;
    --secondary-color: #FFC000 !important;
    --darkLightBlue-color: #d6a206 !important;
    --light-color1: #dbeaff !important;
    --lightBlue-color: #e8f1ff !important;

    --red-color: #FF394B !important;
    --darkRed-color: #e01c2d !important;

    --green-color: #04d36a !important;

    --black-color: #011E45 !important;
    --white-color: #ffffff !important;
    --white-color1: #ffffff !important;
    --gray-color: #627792 !important;

    --disabled-color: #dedede !important;
    --border-color: #d0d9e0 !important;
    --cardShadow-color: #d3d9e5 !important;
    --table-bg-color: #ffffff !important;
}

html.dark-theme {
    --bodyBg-color: #171d25 !important;
    --primary-color: #3eb9ff !important;
    --darkLightBlue-color: #4fb3f4 !important;
    --secondary-color: #ffd044 !important;
    --light-color1: #303640 !important;
    --lightBlue-color: #2f3e46 !important;
    --red-color: #ff7e8a !important;
    --darkRed-color: #FF394B !important;
    --green-color: #04d36a !important;
    --black-color: #ffffff !important;
    --white-color: #1e242d !important;
    --white-color1: #ffffff !important;
    --gray-color: #d3deec !important;
    --disabled-color: #dedede !important;
    --border-color: #647078 !important;
    --cardShadow-color: #171a22 !important;
    --table-bg-color: #222832 !important;
}


body {
    font-family: 'Nunito';
    background-color: var(--bodyBg-color);
    color: var(--black-color);
}

::-webkit-scrollbar,
::-webkit-scrollbar-thumb,
::-webkit-scrollbar-track {
    width: 0.3125rem;
    height: 0.3125rem;
    border: none;
    background: transparent;
}

::-webkit-scrollbar-button,
::-webkit-scrollbar-track-piece,
::-webkit-scrollbar-corner,
::-webkit-resizer {
    display: none;
}

::-webkit-scrollbar-thumb {
    border-radius: 0.375rem;
    background-color: var(--black-color);
}

::-webkit-scrollbar-track {
    background-color: var(--light-color1);
    border: 0.0625rem solid transparent;
    background-clip: content-box;
}


html {
    font-size: 16px;
}

body .fi {
    display: inline-flex;
    position: relative;
    top: 2px;
}

body .blue-color {
    color: var(--primary-color) !important;
}

body .darkBlue-color {
    color: var(--darkLightBlue-color) !important;
}

body .lightBlue-color {
    color: var(--LightBlue-color) !important;
}

body .Yellow-color {
    color: var(--secondary-color) !important;
}

body .black-color {
    color: var(--black-color) !important;
}

body .white-color {
    color: var(--white-color) !important;
}

body .gray-color {
    color: var(--gray-color) !important;
}

body .border-bottom {
    border-bottom: 1px solid var(--border-color);

}

.weight-400 {
    font-weight: 400 !important;
}

.weight-500 {
    font-weight: 500 !important;
}

.weight-600 {
    font-weight: 600 !important;
}

.weight-700 {
    font-weight: 700 !important;
}


a {
    text-decoration: none;
    outline: none;
    cursor: pointer;
}

ul {
    list-style-type: none;
}

body .font-12 {
    font-size: 12px !important;
}

body .font-13 {
    font-size: 13px !important;
}

body .font-14 {
    font-size: 14px !important;
}

body .font-15 {
    font-size: 15px !important;
}

body .font-16 {
    font-size: 16px !important;
}

body .font-18 {
    font-size: 18px !important;
}

body .font-18 {
    font-size: 18px !important;
}

body .font-20 {
    font-size: 20px !important;
}

body .font-22 {
    font-size: 22px !important;
}


body h2 {
    font-size: 20px;
    color: var(--black-color);
    font-weight: 700;
}

body h3 {
    font-size: 24px;
    color: var(--black-color);
    font-weight: 700;
}

body h5 {
    font-size: 20px;
    color: var(--black-color);
    font-weight: 700;
    margin-bottom: 0;
}

body h6 {
    font-size: 16px;
    color: var(--black-color);
    font-weight: 700;
}

body p {
    font-size: 14px;
    color: var(--gray-color);
    font-weight: 600;
}

body .asteric {
    color: var(--red-color);

}

body .label,
body label,
body .form-label {
    font-size: 13px;
    color: var(--black-color);
    margin-bottom: 3px;
    font-weight: 600;
}

body .form-control {
    border: 1px solid var(--border-color);
    font-size: 14px;
    font-weight: 600;
    color: var(--black-color);
    width: 100%;
    padding: 9px 16px;
    border-radius: 5px;
    -webkit-appearance: auto;
    -moz-appearance: auto;
    appearance: auto;
    background-color: var(--white-color);
    transition: all 0.3s ease-in-out;
    -webkit-box-shadow: 2px 5px 4px 0px var(--cardShadow-color);
    box-shadow: 2px 5px 4px 0px var(--cardShadow-color);
}

body .form-control::placeholder {
    color: var(--gray-color);
}

body .form-control:hover {
    border-color: var(--primary-color);
    background-color: var(--white-color);
}

body .form-control:focus {
    border-color: var(--primary-color);
    background-color: var(--white-color);
    color: var(--black-color);
    box-shadow: none;
}

body .password-show-icon {
    position: absolute;
    top: 34px;
    right: 10px;
    color: var(--gray-color);
    cursor: pointer;
}

body .text-control {
    font-size: 14px;
    font-weight: 600;
    color: var(--black-color);
    width: 100%;
    padding: 6px 12px;
    border-radius: 5px;
    background-color: var(--light-color1);
    min-height: 40px;
}

body .search-wrapper {
    position: relative;
}

body .search-wrapper .search-control {
    border-radius: 12px;
    -webkit-box-shadow: 2px 5px 4px 0px var(--cardShadow-color);
    box-shadow: 2px 5px 4px 0px var(--cardShadow-color);
    padding-left: 35px;
}

body .search-wrapper .search-icon {
    position: absolute;
    top: 12px;
    left: 10px;
    font-size: 18px;
    color: var(--gray-color);
}


body .btn {
    font-size: 15px;
    color: var(--black-color);
    /*padding: 8px 24px;*/
    padding: 8px 15px;
    background-color: transparent;
    border-radius: 10px;
    border: 0;
    font-weight: 600;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

body .btn:disabled {
    background-color: var(--disabled-color);
    color: var(--gray-color);
}

body .btn.disabled {
    background-color: var(--disabled-color);
    color: var(--gray-color);
}

body .btn:disabled:hover,
body .btn.disabled:hover {
    background-color: var(--disabled-color);
    color: var(--gray-color);
}

body .btn:disabled:hover:after,
body .btn.disabled:hover:after {
    display: none;
}

body .btn:focus {
    box-shadow: none;
    outline: none;
}

body .btn i {
    margin-right: 5px;
}

body .btn-primary {
    background-color: var(--primary-color);
    color: var(--white-color1);
    transition: all 0.3s ease-in-out;
}

body .btn-primary:hover {
    background-color: var(--darkLightBlue-color);
    color: var(--white-color1);
}

body .btn-primary:focus {
    background-color: var(--darkLightBlue-color);
    box-shadow: none;
    outline: none;
}

body .btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white-color1);
    transition: all 0.3s ease-in-out;
}

body .btn-secondary:hover {
    background-color: var(--darkLightBlue-color);
    color: var(--white-color);
}

body .btn-secondary:focus {
    background-color: var(--darkLightBlue-color);
    box-shadow: none;
    outline: none;
}

body .btn-danger {
    background-color: var(--red-color);
    color: var(--white-color1);
    transition: all 0.3s ease-in-out;
}

body .btn-danger:hover {
    background-color: var(--darkRed-color);
    color: var(--white-color1);
}

body .btn-back {
    background-color: var(--primary-color);
    color: var(--white-color1);
    padding: 8px 12px;
    text-align: center;
    margin-right: 16px;
    transition: all 0.3s ease-in-out;
}

body .btn-back i {
    margin: 0;
}

body .btn-top-spacing {
    margin-top: 25px;
}

.separator {
    display: block;
    width: 100%;
    height: 0.0625rem;
    border-bottom: 0.0625rem solid var(--secondary-color);
    margin-bottom: 0.625rem;
    margin-top: 0.625rem;
}

body .optionBox {
    padding: 7px 15px;
    font-size: 15px;
    background-color: var(--light-color1);
    display: inline-block;
    border-radius: 8px;
    font-weight: 600;
    color: var(--black-color);
}


/* -------------------------------- Common Control start -------------------------------- */


body .card-box {
    width: 100%;
    border-radius: 10px;
    padding: 16px;
    background-color: var(--white-color);
    -webkit-box-shadow: 2px 4px 14px 0px var(--cardShadow-color);
    box-shadow: 2px 4px 14px 0px var(--cardShadow-color);
    transition: all 0.3s ease-in-out;
}

body .breadcrumb-box .breadcrumb {
    margin: 0;
}

body .breadcrumb-box .breadcrumb .breadcrumb-item {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-color);
}

body .breadcrumb-box .breadcrumb .breadcrumb-item a {
    color: var(--primary-color);
}


body .customTable table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 16px;
    padding: 10px;
    margin: 0;
}

body .customTable table thead tr th {
    font-size: 14px;
    color: var(--black-color);
    font-weight: 700;
    text-align: left;
    border-bottom: 0;
    padding: 0 12px;
    background-color: var(--white-color);
    border: 0;
}

body .customTable table tbody {
    border-top: 0 !important;
}

body .customTable table tbody tr {
    -webkit-box-shadow: 1px 2px 14px 0px var(--cardShadow-color);
    box-shadow: 1px 2px 8px 0px var(--cardShadow-color);
    border-radius: 16px;
    overflow: hidden;
}

body .customTable table tbody tr td {
    font-size: 14px;
    color: var(--black-color);
    background-color: var(--table-bg-color);
    text-align: left;
    padding: 12px;
    font-weight: 600;
    border: 0;
    vertical-align: middle;
}

body .customTable table tbody tr td:first-child {
    border-radius: 16px 0 0 16px;
}

body .customTable table tbody tr td:last-child {
    border-radius: 0 16px 16px 0;
}

body .customTable table tbody tr td .status-round {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--black-color);
    display: inline-block;
    margin-right: 7px;
}

body .customTable table tbody tr td .status-round.green-color {
    background-color: var(--green-color);
}

body .customTable table tbody tr td .status-round.red-color {
    background-color: var(--red-color);
}

body .customTable table tbody tr td .table-control:disabled {
    background-color: var(--white-color);
    border: 0;
    border-bottom: 1px solid var(--border-color);
    box-shadow: none;
}


body .action-icons {
    margin-bottom: 0;
    padding-left: 0;
    list-style-type: none;
    display: flex;
    align-items: center;
}

body .action-icons a {
    padding: 6px 12px;
    background-color: var(--light-color1);
    border-radius: 7px;
    font-size: 16px;
    font-weight: 600;
    color: var(--black-color) !important;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    margin: 0 3px;
}

body .action-icons a:hover {
    background-color: var(--primary-color);
    color: var(--white-color) !important;
}

body .action-icons a.cancel-icon {
    background-color: var(--red-color);
    color: var(--white-color) !important;
}


body .custom-pagination .pagination {
    margin: 0;
    width: fit-content;
}

body .custom-pagination .page-item {
    margin: 0 3px;
}

body .custom-pagination .page-item .page-link {
    font-size: 14px;
    padding: 6px 14px;
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    color: var(--black-color);
    border-radius: 7px;
    transition: all 0.3s ease-in-out;
}

body .custom-pagination .page-item .page-link.icon-btn {
    font-size: 14px;
    padding: 6px 14px;
    background-color: var(--white-color);
    color: var(--black-color);
    border-radius: 7px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease-in-out;
}

body .custom-pagination .page-item .page-link:hover {
    background-color: var(--light-color1);
    color: var(--black-color);
    transition: all 0.3s ease-in-out;
}

body .custom-pagination .page-item .page-link:focus {
    outline: none;
    box-shadow: none;
    transition: all 0.3s ease-in-out;
}

body .custom-pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    color: var(--white-color);
    box-shadow: none;
    transition: all 0.3s ease-in-out;
}

div.dataTables_wrapper {
    padding-bottom: 10px;
}

body .dataTables_wrapper .dataTables_info {
    font-size: 12px;
    padding-top: 15px;
}

body .dataTables_wrapper .dataTables_paginate .paginate_button {
    font-size: 14px;
    padding: 6px 14px;
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    color: var(--black-color);
    border-radius: 7px;
    transition: all 0.3s ease-in-out;
}

body .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background-color: var(--light-color1);
    color: var(--black-color) !important;
    border-color: var(--border-color) !important;
    background-image: none;
    transition: all 0.3s ease-in-out;
}

body .dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background-color: var(--primary-color);
    color: var(--white-color) !important;
    box-shadow: none;
    background-image: none;
    transition: all 0.3s ease-in-out;
}

body .dataTables_wrapper .dataTables_filter {
    float: inherit;
    text-align: left;
}

body .dataTables_wrapper .dataTables_filter input {
    border: 1px solid var(--border-color);
    font-size: 14px;
    font-weight: 600;
    color: var(--black-color);
    width: 100%;
    padding: 9px 16px;
    border-radius: 5px;
    -webkit-appearance: auto;
    -moz-appearance: auto;
    appearance: auto;
    background-color: var(--white-color);
    transition: all 0.3s ease-in-out;
    -webkit-box-shadow: 2px 5px 4px 0px var(--cardShadow-color);
    box-shadow: 2px 5px 4px 0px var(--cardShadow-color);
}

body .dataTables_wrapper .dataTables_filter input:hover {
    border-color: var(--primary-color);
    background-color: var(--white-color);
}

body .dataTables_wrapper .dataTables_filter input:focus {
    border-color: var(--primary-color);
    background-color: var(--white-color);
    color: var(--black-color);
    box-shadow: none;
}


body .custom-Calender .year-header {
    text-align: center;
    padding: 10px;
    position: relative;
}

body .custom-Calender .year-header .left-button,
body .custom-Calender .year-header .right-button {
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: block;
    border-radius: 5px;
    border: 1px solid var(--light-color1);
    background-color: var(--light-color1);
}

body .custom-Calender .year-header .left-button,
body .custom-Calender .year-header .right-button {
    cursor: pointer;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    display: block;
    border-radius: 5px;
    border: 1px solid var(--light-color1);
    background-color: var(--light-color1);
}

body .custom-Calender .year-header .left-button {
    position: absolute;
    left: 0;
    top: 6px;
}

body .custom-Calender .year-header .right-button {
    position: absolute;
    right: 0;
    top: 6px;
}

body .custom-Calender .months-table tbody tr td {
    font-size: 14px;
    color: var(--black-color);
    text-align: left;
    padding: 10px;
    font-weight: 600;
    vertical-align: middle;
    background-color: var(--light-color1);
    text-align: center;
}

body .custom-Calender .months-table tbody tr td.active-month {
    background-color: var(--primary-color);
    color: var(--white-color1);
    transition: all 0.3s ease-in-out;
}

body .custom-Calender .days-table .day {
    font-size: 14px;
    color: var(--black-color);
    text-align: left;
    padding: 10px;
    font-weight: 600;
    vertical-align: middle;
    text-align: center;
}

body .custom-Calender .dates-table tbody tr td {
    font-size: 14px;
    color: var(--black-color);
    text-align: center;
    padding: 10px;
    font-weight: 600;
    border: 1px solid var(--border-color);
    vertical-align: middle;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

body .custom-Calender .dates-table tbody tr td:hover {
    background-color: var(--light-color1);
    color: var(--blue-color);
    transition: all 0.3s ease-in-out;
}

body .custom-Calender .dates-table tbody tr td.active-date {
    background-color: var(--primary-color);
    color: var(--white-color1);
    transition: all 0.3s ease-in-out;
}

body .menu-action-icons {
    padding: 0;
}

body .menu-action-icons li a {
    display: block;
    padding: 2px 7px;
    font-size: 26px;
    color: var(--black-color) !important;
    transition: all 0.3s ease-in-out;
}

body .menu-action-icons li a:hover {
    color: var(--secondary-color) !important;
    transition: all 0.3s ease-in-out;
}

body .menu-action-icons li a img {
    width: 20px;
}


body .custom-tab .nav-pills {
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

body .custom-tab .nav-pills .nav-item {
    padding-right: 3px;
}

body .custom-tab .nav-pills .nav-item .nav-link {
    font-size: 15px;
    color: var(--gray-color);
    font-weight: 600;
    background-color: var(--light-color1);
    border-radius: 20px 20px 0 0;
    padding: 10px 40px;
    transition: all 0.3s ease-in-out;
}

body .custom-tab .nav-pills .nav-item .nav-link:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
    transition: all 0.3s ease-in-out;
}

body .custom-tab .nav-pills .nav-item .nav-link.active {
    background-color: var(--primary-color);
    color: var(--white-color);
    transition: all 0.3s ease-in-out;
}

body .custom-tab .tab-content {
    width: 100%;
    border-radius: 0;
    padding: 0;
    background-color: var(--white-color);
    transition: all 0.3s ease-in-out;
}

body .custom-tab .tab-content .tab-body {
    padding: 12px 25px;
}

body .custom-tab .nav-pills .tab-add-btn {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 7px 20px;
    transition: all 0.3s ease-in-out;
}

body .custom-tab .nav-pills .tab-add-btn:hover {
    background-color: var(--darkLightBlue-color);
    color: var(--white-color);
    transition: all 0.3s ease-in-out;
}


body .modal .modal-dialog .modal-content .modal-header .btn-close {
    background-image: url('../images/icons/close-icon.png');
    background-color: var(--red-color);
    opacity: 1;
}

body .modal .modal-dialog .modal-content .modal-body {
    /*background-color: var(--bodyBg-color);*/
}

body .modal .modal-dialog .modal-content .modal-header {
    background-color: var(--white-color);
}

body .modal .modal-dialog .modal-content .modal-footer {
    background-color: var(--white-color);
}

/* -------------------------------- Common Control end -------------------------------- */


body .banner {
    position: relative;
}

body .banner .banner-info .banner-title {
    font-size: 45px;
    color: var(--black-color);
    font-weight: 700;
}

body .banner .btn-login {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 999;
}

body .banner .image-slide-1 {
    background-image: url('../images/bg-imgs/MAIN-2-min.png');
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}


body .banner .image-slide-2 {
    background-image: url('../images/bg-imgs/MAIN-3-min.png');
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}


body .banner .image-slide-3 {
    background-image: url('../images/bg-imgs/MAIN-5-min.png');
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}

/* start css for index and login pages - AM* */
body .mb-logo {
    margin-bottom: 20px !important;
}

body .mt-logo {
    margin-top: 20px !important;
}

body .header-login {
    position: absolute;
    width: 100%;
    height: 120px;
    top: 0px;
}

body .btn-login {
    position: absolute;
    height: 25px;
    right: 40px;
    top: 12px;
    width: 160px;
}

body .btn-login a {
    text-decoration: none;
    color: var(--white-color);
}

body .bg-nector {
    width: 100%;
    height: 100vh;
    background-image: url(../images/bg-imgs/MAIN-3-min.png);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-color: var(--bodyBg-color);
    background-size: cover;
    background-position: center;
    animation: change 15s infinite alternate;
    display: flex;
    align-items: center;
    justify-content: center;
}

body form {
    width: 100%;
    /* max-width: 600px; */
    /* padding: 25px 50px 20px; */
    background: var(--white-color);
    border-radius: 10px;
}

body .input_box {
    border-radius: 5px;
    background: var(--white-color);
    position: relative;
    margin-bottom: 25px;
    width: 100%;
    height: 40px;
    border: 1px solid var(--border-color);
}

body .input_box input {
    height: 100%;
    width: 100%;
    padding: 0 30px;
    padding-left: 40px;
    color: var(--black-color);
    transition: all 0.2s ease;
    border: 1px solid var(--white-color);
    border-radius: 5px;
}

body .input_box input:focus {

    border-color: var(--darkLightBlue-color);
}

body .input_box i {
    padding-left: 15px;
    position: absolute;
    top: 50%;
    left: -5px;
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--primary-color);
}

body .input_box .pwd-icon i {
    position: absolute;
    left: 87%;
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--primary-color);
}

body .input_box i.email,
body .input_box i.password {
    left: 0;
}

body .input_box input:focus ~ i.email,
body .input_box input:focus ~ i.password {
    color: var(--darkLightBlue-color);
}

body .input_box i.pw_hide {
    right: 0;
    font-size: 18px;
    cursor: pointer;
}

body .logo-imgs {

    text-align: center;
    margin-bottom: 10px;
}

body .links {
    font-size: 13px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    margin-bottom: 20px;
}

@media (max-width: 458px) {
    form {
        background: var(--white-color);
        border: none;
        box-shadow: none;
        padding: 20px 0;
    }

}

body .banner-carousel .owl-nav,
body .banner-carousel .owl-dots {
    display: none;
}

/* end css for index and login pages - AM* */
/* style for help desk map */
.facility-img {
    position: relative;
    width: 549px;
    height: 281px;
    margin: 0 auto;
    margin-top: 140px;
}

.police {
    position: absolute;
    width: 200px;
    left: -150px;
    top: 173px;
    text-align: left;
}

.police img {
    position: absolute;
    left: 51px;
    top: -82px;
    background-color: var(--white-color);
    border: 2px solid var(--primary-color);
    border-radius: 100px;
    padding: 10px;
}

.firebrigade {
    position: absolute;
    width: 200px;
    left: 100px;
    top: -100px;
    text-align: left;
}

.firebrigade img {
    position: absolute;
    left: -107px;
    background-color: var(--white-color);
    border: 2px solid var(--primary-color);
    border-radius: 100px;
    padding: 10px;
}

.Hospital {
    position: absolute;
    width: 200px;
    right: -4px;
    top: -100px;
    text-align: left;
}

.Hospital img {
    position: absolute;
    right: -3px;
    background-color: var(--white-color);
    border: 2px solid var(--primary-color);
    border-radius: 100px;
    padding: 10px;
}

.Emergency {
    position: absolute;
    width: 200px;
    right: -298px;
    top: 145px;
    text-align: left;
}

.Emergency img {
    position: absolute;
    top: -82px;
    background-color: var(--white-color);
    border: 2px solid var(--primary-color);
    border-radius: 100px;
    padding: 10px;
}

/* end style for help desk map */


/* header css */

body header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 16px;
    padding-left: 330px;
    min-height: 70px;
    z-index: 100;
    background-color: var(--bodyBg-color);
    transition: all 0.3s ease-in-out;
}

body.show header {
    padding-left: 100px;
    transition: all 0.3s ease-in-out;
}

body header .navbar-custom {
    padding: 10px;
    background-color: var(--white-color);
    -webkit-box-shadow: 2px 5px 16px 0px var(--cardShadow-color);
    box-shadow: 2px 5px 16px 0px var(--cardShadow-color);
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
}

body header .navbar-nav {
    flex-direction: row;
}

body header .navbar-custom .navbar-brand {
    margin-right: 30px;
}

body header .navbar-custom .navbar-brand img {
    width: auto;
    max-width: 120px;
}

body header .navbar-custom .navbar-toggler {
    border-color: transparent;
    background-color: var(--bodyBg-color);
}

body header .navbar-custom .navbar-toggler:focus,
.sidenav .sidenav-header .close-toggler:focus {
    outline: none;
    box-shadow: none;
}

body header .navbar-custom .navbar-toggler .navbar-toggler-icon,
body .sidenav .sidenav-header .close-toggler .navbar-toggler-icon {
    font-size: 24px;
    height: auto;
}

body .sidenav .sidenav-header .close-toggler {
    display: none;
}

body header .navbar-custom .clinetLogo img {
    max-height: 36px;
}

header .navbar-custom .navbar-nav .nav-item {
    margin: 0 13px;
}

header .navbar-custom .navbar-nav .nav-item .nav-link {
    font-size: 20px;
    color: var(--black-color);
    font-weight: 600;
    padding: 0;
    border-radius: 10px 12px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

header .navbar-custom .navbar-nav .nav-item .nav-link:hover {
    color: var(--primary-color);
    transition: all 0.3s ease-in-out;
}

body header .navbar-custom .nav-item.profile-dropdown .nav-link {
    border: 0;
    box-shadow: none;
    font-size: 12px;
}

body header .navbar-custom .nav-item.profile-dropdown .nav-link .user-title {
    font-weight: 600;
    font-size: 14px;
    color: var(--black-color);
    display: block;
}

body header .navbar-custom .nav-item.profile-dropdown .nav-link .role-title {
    font-weight: 400;
    font-size: 14px;
    color: var(--gray-color);
    display: block;
}

body header .navbar-custom .nav-item.profile-dropdown .nav-link .user-image {
    height: 40px;
    width: 40px;
    margin-right: 8px;
    text-align: center;
    overflow: hidden;
    margin-left: 7px;
}

body header .navbar-custom .nav-item.dropdown .dropdown-menu {
    position: absolute;
    right: 0;
    left: auto;
    border-radius: 10px;
    border-color: var(--bodyBg-color);
    padding: 10px;
    background-color: var(--white-color);
    -webkit-box-shadow: 2px 4px 14px 0px var(--cardShadow-color);
    box-shadow: 2px 4px 14px 0px var(--cardShadow-color);
    transition: all 0.3s ease-in-out;
    margin-top: 10px;
    min-width: 190px;
}

body header .navbar-custom .nav-item.dropdown .dropdown-menu::before {
    content: "";
    position: absolute;
    right: 18px;
    top: -10px;
    width: 0;
    height: 0;
    border-right: 0.5rem solid transparent;
    border-left: 0.5rem solid transparent;
    border-bottom: 0.625rem solid var(--white-color);
}

body header .navbar-custom .nav-item.dropdown .dropdown-menu li a {
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-color);
    padding: 10px 10px;
    transition: all 0.3s ease-in-out;
}

body header .navbar-custom .nav-item.dropdown .dropdown-menu li a i {
    color: var(--primary-color);
    margin-right: 5px;
}

body header .navbar-custom .nav-item.dropdown .dropdown-menu li a:hover {
    color: var(--primary-color);
    background-color: var(--white-color);
    transition: all 0.3s ease-in-out;
}

header .navbar-custom .navbar-nav .nav-item .nav-link .form-switch .form-check-input {
    padding: 11px;
    width: 50px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease-in-out;
}

header .navbar-custom .navbar-nav .nav-item .nav-link .language-control {
    border: 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--black-color);
    width: 100%;
    padding: 8px 20px;
    border-radius: 5px;
    background-color: var(--light-color1);
}

body header .navbar-custom .btn-toggle {
    color: var(--white-color);
    height: 40px;
    width: 40px;
    background-color: var(--primary-color);
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    outline: none;
    border: 0;
    color: var(--white-color1);
}

body header .navbar-custom .btn-toggle:hover {
    background-color: var(--darkLightBlue-color);
    transition: all 0.3s ease-in-out;
}

body .desktop-slide-btn {
    display: block;
}

body header .navbar-custom .action-dropdown {
    display: none;
}

body header .navbar-custom .action-dropdown .action-control {
    color: var(--black-color);
    height: 40px;
    width: 40px;
    line-height: 40px;
    background-color: var(--light-color1);
    border-radius: 35px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    outline: none;
    display: block;
    -webkit-box-shadow: 1px 2px 8px 0px var(--cardShadow-color);
    box-shadow: 1px 2px 8px 0px var(--cardShadow-color);
}

body header .navbar-custom .action-dropdown .dropdown-menu {
    right: 0 !important;
    z-index: 9999 !important;
    width: max-content;
    min-width: inherit;
    max-width: 400px;
}

body header .navbar-custom .action-dropdown .dropdown-menu li a {
    white-space: wrap;
}

body header .navbar-custom .action-dropdown.dropdown-menu::before {
    left: auto;
    right: 10px;
}

body header .navbar-custom .toggle-button .theme-button {
    padding: 18px;
    border-radius: 5px;
    background-color: var(--light-color1);
    border: none;
    cursor: pointer;
    background-image: url('../images/icons/dark-theme-icon.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
}

html.dark-theme header .navbar-custom .toggle-button .theme-button {
    background-image: url('../images/icons/light-theme-icon.png');
}


body .sidenav {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 999;
    width: 330px;
    border-radius: 0;
    padding: 16px;
    transition: all 0.3s ease-in-out;
}

body .sidenav-wrapper {
    height: calc(100vh - 30px);
    border-radius: 10px;
    padding: 10px;
    background-color: var(--white-color);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-box-shadow: 2px 4px 14px 0px rgb(0 0 0 / 15%);
    box-shadow: 2px 4px 14px 0px rgb(0 0 0 / 15%);
}

body.show .sidenav {
    width: 100px;
    transition: all 0.3s ease-in-out;
}

body.show .sidenav .sidenav-body .sidenav-list li a .list-icon {
    background-color: transparent;
    box-shadow: none;
    margin-right: 0;
    transition: all 0.3s ease-in-out;
}

body.show .sidenav .sidenav-header {
    padding: 6px;
    transition: all 0.3s ease-in-out;
}

body.show .sidenav .sidenav-header img {
    width: 30px;
    transition: all 0.3s ease-in-out;
}

body.show .sidenav .sidenav-footer {
    display: none;
}

body.show .sidenav .sidenav-body .sidenav-list {
    width: 48px;
    transition: all 0.3s ease-in-out;
}

body.show .sidenav .sidenav-body .sidenav-list li.sidenav-dropdown .dropdown-nav-link .list-title,
body.show .sidenav .sidenav-body .sidenav-list li a .list-title {
    display: none;
    transition: all 0.3s ease-in-out;
}

body.show .sidenav .sidenav-body .sidenav-list li.sidenav-dropdown .dropdown-nav-link,
body.show .sidenav .sidenav-body .sidenav-list li a {
    padding: 4px 12px;
    transition: all 0.3s ease-in-out;
}

body.show .sidenav .sidenav-body .sidenav-list li.sidenav-dropdown .dropdown-nav-link.dropdown-toggle::after {
    display: none;
    transition: all 0.3s ease-in-out;
}

body .sidenav:hover {
    width: 330px;
    transition: all 0.3s ease-in-out;
}

body .sidenav:hover .sidenav-body .sidenav-list li a .list-icon {
    background-color: transparent;
    box-shadow: none;
    margin-right: 10px;
    transition: all 0.3s ease-in-out;
}

body .sidenav:hover .sidenav-header {
    padding: 20px;
    transition: all 0.3s ease-in-out;
}

body .sidenav:hover .sidenav-header img {
    width: 150px;
    transition: all 0.3s ease-in-out;
}

body .sidenav:hover .sidenav-footer {
    display: none;
}

body .sidenav:hover .sidenav-body .sidenav-list {
    width: auto;
    transition: all 0.3s ease-in-out;
}

body .sidenav:hover .sidenav-body .sidenav-list li.sidenav-dropdown .dropdown-nav-link .list-title,
body .sidenav:hover .sidenav-body .sidenav-list li a .list-title {
    display: block;
    transition: all 0.3s ease-in-out;
}

body .sidenav:hover .sidenav-body .sidenav-list li.sidenav-dropdown .dropdown-nav-link,
body .sidenav:hover .sidenav-body .sidenav-list li a {
    padding: 5px 10px;
    transition: all 0.3s ease-in-out;
}

body .sidenav:hover .sidenav-body .sidenav-list li.sidenav-dropdown .dropdown-nav-link.dropdown-toggle::after {
    display: block;
    transition: all 0.3s ease-in-out;
}

body .sidenav .sidenav-header {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 10px;
    position: relative;
}

body .sidenav .sidenav-header img {
    width: 150px;
    transition: all 0.3s ease-in-out;
}

body .sidenav .sidenav-header .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
    padding: 5px;
    color: red;
    font-size: 20px;
    cursor: pointer;
    display: none;
}

body .sidenav .sidenav-body {
    padding: 0px;
}

body .sidenav .sidenav-body .sidenav-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 10px;
}

body .sidenav .sidenav-body .sidenav-list li a {
    font-size: 13px;
    color: var(--black-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    padding: 5px 10px;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
}

body .sidenav .sidenav-body .sidenav-list li a .list-icon {
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    margin-right: 10px;
    border-radius: 5px;
    color: var(--black-color);
    transition: all 0.3s ease-in-out;
}

body .sidenav .sidenav-body .sidenav-list li a .list-icon i {
    font-size: 20px;
    top: 4px;
    display: inline-block;
}

body .sidenav .sidenav-body .sidenav-list li a .list-title {
    transition: all 0.3s ease-in-out;
}

body .sidenav .sidenav-body .sidenav-list li a:hover {
    color: var(--black-color);
    background-color: var(--lightBlue-color);
    transition: all 0.3s ease-in-out;
}

body .sidenav .sidenav-body .sidenav-list li a:hover .list-icon {
    color: var(--black-color);
    transition: all 0.3s ease-in-out;
}

body .sidenav .sidenav-body .sidenav-list li a.active {
    color: var(--white-color1);
    background-color: var(--primary-color);
    transition: all 0.3s ease-in-out;
}

body .sidenav .sidenav-body .sidenav-list li a.active .list-icon {
    color: var(--white-color);
    transition: all 0.3s ease-in-out;
}

body .sidenav .sidenav-body .sidenav-list li.sidenav-dropdown {
    background-color: transparent;
    transition: all 0.3s ease-in-out;
    border-radius: 10px;
}

body .sidenav .sidenav-body .sidenav-list li a.dropdown-toggle::after {
    position: absolute;
    top: 20px;
    right: 16px;
}

body .sidenav .sidenav-body .sidenav-list li.sidenav-dropdown .dropdown-nav-link {
    position: relative;
    background-color: var(--white-color);
    padding-right: 40px;
    transition: all 0.3s ease-in-out;
}

body.show .sidenav .sidenav-body .sidenav-list li.sidenav-dropdown .dropdown-nav-link .list-title {
    transition: all 0.3s ease-in-out;
}

body .sidenav .sidenav-body .sidenav-list li.sidenav-dropdown .dropdown-nav-link:hover {
    color: var(--black-color1);
    background-color: var(--lightBlue-color);
    transition: all 0.3s ease-in-out;
}

body .sidenav .sidenav-body .sidenav-list li.sidenav-dropdown .dropdown-nav-link:hover .list-icon {
    color: var(--black-color);
    transition: all 0.3s ease-in-out;
}

body .sidenav .sidenav-body .sidenav-list li.sidenav-dropdown .dropdown-nav-link.show {
    color: var(--white-color1);
    background-color: var(--primary-color);
    -webkit-box-shadow: 2px 4px 10px 0px var(--cardShadow-color);
    box-shadow: 2px 4px 10px 0px var(--cardShadow-color);
    transition: all 0.3s ease-in-out;
}

body .sidenav .sidenav-body .sidenav-list li.sidenav-dropdown .dropdown-nav-link.show .list-icon {
    background-color: transparent;
    color: var(--white-color1);
    box-shadow: none;
}

body .sidenav .sidenav-body .sidenav-list li.sidenav-dropdown .dropdown-nav-link.active {
    color: var(--white-color);
    background-color: var(--primary-color);
    -webkit-box-shadow: 2px 4px 10px 0px var(--cardShadow-color);
    box-shadow: 2px 4px 10px 0px var(--cardShadow-color);
    transition: all 0.3s ease-in-out;
}

body .sidenav .sidenav-body .sidenav-list li.sidenav-dropdown .dropdown-nav-link.active:hover .list-icon {
    color: var(--white-color);
    transition: all 0.3s ease-in-out;
}

body .sidenav .sidenav-body .sidenav-list li.sidenav-dropdown .dropdown-menu {
    position: inherit !important;
    transform: inherit !important;
    border: 0;
    border-radius: 0;
    padding: 0;
    padding-left: 12px;
    width: 250px;
    background-color: var(--white-color);
    transition: all 0.3s ease-in-out;
    list-style-type: none;
    margin-top: 10px !important;
    margin-left: 20px !important;
}

body .sidenav .sidenav-body .sidenav-list li.sidenav-dropdown .dropdown-menu.show {
    transition: all 0.3s ease-in-out;
}

body .sidenav .sidenav-body .sidenav-list li.sidenav-dropdown .dropdown-menu .dropdown-item {
    font-size: 13px;
    color: var(--gray-color);
    font-weight: 600;
    padding: 8px 10px;
    border-radius: 7px;
    transition: all 0.3s ease-in-out;
    /*white-space: break-spaces;*/
}

body .sidenav .sidenav-body .sidenav-list li.sidenav-dropdown .dropdown-menu .dropdown-item span {
    display: inline-block;
    min-width: 18px;
    text-align: center;
}

body .sidenav .sidenav-body .sidenav-list li.sidenav-dropdown .dropdown-menu .dropdown-item:hover {
    color: var(--primary-color);
    background-color: var(--white-color);
    box-shadow: none;
    background-image: none;
    /* padding-left: 20px; */
}

body .sidenav .sidenav-body .sidenav-list li.sidenav-dropdown .dropdown-menu .dropdown-item.active {
    color: var(--primary-color);
    background-color: var(--lightBlue-color);
    box-shadow: none;
    background-image: none;
}

body .sidenav .sidenav-body .sidenav-list li.sidenav-dropdown .dropdown-menu .sub-Dropdown .dropdown-item {
    width: 100%;
    white-space: normal;
}

body .sidenav .sidenav-body .sidenav-list li.sidenav-dropdown .dropdown-menu .sub-Dropdown a.dropdown-toggle::after {
    top: 16px;
}

body .sidenav .sidenav-body .sidenav-list li.sidenav-dropdown .dropdown-menu .sub-Dropdown .dropdown-item.show {
    color: var(--primary-color);
    background-color: var(--lightBlue-color);
}

body .sidenav .sidenav-body .sidenav-list li.sidenav-dropdown .dropdown-menu .sub-Dropdown .dropdown-menu {
    padding: 0;
}

body .sidenav .sidenav-footer {
    padding: 30px;
    display: block;
}

.sidenav-list .show {
    color: var(--black-color);
    background-color: var(--lightBlue-color);
    transition: all 0.3s ease-in-out;
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--bodyBg-color);
    padding: 14px;
    /* text-align: center; */
    z-index: 90;
    padding-left: 330px;
    transition: all 0.3s ease-in-out;
}

footer .footer-info p {
    font-size: 13px;
    margin-bottom: 0;
}

footer .footer-info p .link-text {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: underline;
}

body.show footer {
    padding-left: 90px;
    transition: all 0.3s ease-in-out;
}


body .main-content {
    padding-top: 100px;
    padding-left: 330px;
    padding-bottom: 90px;
    padding-right: 16px;
    transition: all 0.3s ease-in-out;
}

body.show .main-content {
    padding-left: 100px;
    transition: all 0.3s ease-in-out;
}


body .statistic-box {
    text-align: center;
    padding: 20px;
    margin-bottom: 24px;
}

body .statistic-box img {
    width: 70px;
    margin-bottom: 10px;
}

body .statistic-box h5 {
    font-size: 28px;
    font-weight: 700;
}

body .statistic-box p {
    font-size: 16px;
    margin-bottom: 0;
}

body .statistic-box p span {
    font-size: 20px;
    font-weight: 700;
    color: var(--black-color);
}


body .RecentNews-box-wrapper {
    overflow: auto;
    height: 319px;
}

body .RecentNews-box {
    margin-left: 50px;
    position: relative;
    padding-bottom: 30px;
}

body .RecentNews-box::before {
    content: "";
    position: absolute;
    left: -38px;
    top: 0px;
    width: 18px;
    height: 18px;
    border-radius: 50px;
    background-color: var(--white-color);
    border: 3px solid var(--primary-color);
    z-index: 1;
}

body .RecentNews-box::after {
    content: "";
    position: absolute;
    left: -30px;
    top: 0px;
    width: 2px;
    height: 100%;
    background-color: var(--border-color);
}

body .RecentNews-box .date-title {
    color: var(--primary-color);
}


body .RecentNews-box .RecentNews-img {
    width: 100px;
    margin-right: 10px;
    border-radius: 10px;
    overflow: hidden;
}

body .noticeboard-box-wrapper {
    overflow: auto;
    height: 353px;
}


body .NoticeBoard-box-wrapper {
    overflow: auto;
    /* height: 412px; */
    height: 317px;

}

body .NoticeBoard-box {
    position: relative;
    padding-bottom: 30px;
    padding-right: 16px;
}

body .NoticeBoard-box .NoticeBoard-count {
    font-size: 20px;
    font-weight: 700;
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 35px;
    background-color: var(--primary-color);
    color: var(--white-color1);
    margin-right: 20px;
}

body .NoticeBoard-box .NoticeBoard-info {
    border-radius: 10px;
    padding: 16px;
    background-color: var(--white-color);
    -webkit-box-shadow: 2px 4px 14px 0px var(--cardShadow-color);
    box-shadow: 2px 4px 14px 0px var(--cardShadow-color);
    transition: all 0.3s ease-in-out;
}

body .Attendance-report-box {
    padding: 100px 30px;
}

body .custom-stapper {
    padding: 50px 0;
}

body .custom-stapper .stepper {
    list-style: none;
    display: flex;
    flex-direction: row;
    padding: 0;
}

body .custom-stapper .stepper .step {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

body .custom-stapper .stepper .step.active .dot {
    background-color: #3cd580;
    border-color: #3cd580;
}

body .custom-stapper .stepper .step.active .lower-text {
    color: #26a55e;
}

body .custom-stapper .stepper .step.active:after {
    background-color: #3cd580;
}

body .custom-stapper .stepper .step:last-child:after {
    width: 50%;
    transform: translateX(-50%);
}

body .custom-stapper .stepper .step:first-child:after {
    width: 50%;
    transform: translateX(50%);
}

body .custom-stapper .stepper .step:after {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    top: 38px;
    background-color: #d5d5d5;
    z-index: 0;
}

body .custom-stapper .stepper .step .upper-text {
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
    color: #011E45;
    height: 20px;
    display: block;
    font-weight: 700;
    margin-bottom: 7px;
}

body .custom-stapper .stepper .step .lower-text {
    font-size: 18px;
    line-height: 1.57;
    text-align: center;
    color: #828e9d;
    display: block;
    font-weight: 700;
    margin-top: 10px;
}

body .custom-stapper .stepper .step .dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    display: inline-block;
    background-color: #d7dae3;
    border: 1px solid #d5d5d5;
}

body .custom-stapper .stepper .step .count-info {
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
    color: #748395;
    height: 20px;
    display: block;
    font-weight: 700;
}

body .status-box1 {
    padding: 30px 30px;
    font-size: 18px;
    font-weight: 700;
    background-color: #eaf2ff;
    text-align: center;
    border: 1px solid #eaf2ff;
    text-align: center;
}


body .status-box .status-title {
    padding: 14px 30px;
    font-size: 18px;
    font-weight: 700;
    background-color: #c0d9ff;
    text-align: center;
    border: 1px solid #c0d9ff;
}

body .status-box .status-value {
    padding: 14px 30px;
    font-size: 18px;
    font-weight: 700;
    border: 1px solid #627792;
    margin-bottom: 0;
}


@media (min-width: 767px) and (max-width: 992px) {
    body .desktop-slide-btn {
        display: none !important;
    }

    body header {
        padding-left: 16px;
    }

    body header .navbar-custom {
        padding-left: 0;
    }

    body .sidenav .sidenav-header .close-toggler {
        display: block;
    }

    body header .navbar-custom .btn-toggle {
        display: block;
    }

    body header .navbar-custom .navbar-brand img {
        max-width: 100px;
    }

    header .navbar-custom .navbar-nav .nav-item {
        margin: 0 8px;
    }

    body header .navbar-custom .nav-item.profile-dropdown .nav-link span {
        display: none !important;
    }

    body header .navbar-custom .nav-item.profile-dropdown .nav-link {
        margin-left: 0;
    }

    body header .navbar-custom .header-search {
        display: none;
    }

    body header .navbar-custom .action-dropdown.notification-ActiondDropdown .dropdown-menu {
        max-width: 350px;
    }

    body .sidenav {
        transform: translateX(-100%);
        height: 100%;
        box-shadow: none;
    }

    body .sidenav.collapse {
        transform: translateX(0);
        width: 40%;
        height: 100%;
    }

    body .sidenav:hover {
        width: 40%;
    }

    body.show .sidenav {
        width: 40%;
    }

    body .sidenav .sidenav-header .close-btn {
        display: block;
    }

    body .sidenav .sidenav-body .sidenav-list {
        width: 270px;
    }

    body .sidenav:hover .sidenav-body .sidenav-list {
        width: 270px;
    }

    body .main-content {
        padding-top: 90px;
        padding-left: 16px;
        padding-right: 16px;
    }

    body footer {
        padding-left: 0;
    }
}

@media (min-width: 576px) and (max-width: 767px) {

    body .desktop-slide-btn {
        display: none !important;
    }

    body header {
        padding-left: 16px;
    }

    body header .navbar-custom {
        padding-left: 0;
    }

    body header .navbar-custom .btn-toggle {
        display: block;
    }

    body .sidenav .sidenav-header .close-toggler {
        display: block;
    }

    body header .navbar-custom .navbar-brand img {
        max-width: 100px;
    }

    header .navbar-custom .navbar-nav .nav-item {
        margin: 0 8px;
    }

    body header .navbar-custom .nav-item.profile-dropdown .nav-link span {
        display: none !important;
    }

    body header .navbar-custom .nav-item.profile-dropdown .nav-link {
        margin-left: 0;
    }

    body header .navbar-custom .header-search {
        display: none;
    }

    body header .navbar-custom .action-dropdown.notification-ActiondDropdown .dropdown-menu {
        max-width: 350px;
    }

    body .sidenav {
        transform: translateX(-100%);
        height: 100%;
        box-shadow: none;
    }

    body .sidenav.collapse {
        transform: translateX(0);
        width: 40%;
        height: 100%;
    }

    body .sidenav:hover {
        width: 40%;
    }

    body.show .sidenav {
        width: 40%;
    }

    body .sidenav .sidenav-header .close-btn {
        display: block;
    }

    body .sidenav .sidenav-body .sidenav-list {
        width: 270px;
    }

    body .sidenav:hover .sidenav-body .sidenav-list {
        width: 270px;
    }

    body .main-content {
        padding-top: 90px;
        padding-left: 16px;
        padding-right: 16px;
    }

    body footer {
        padding-left: 0;
    }

    body .custom-tab .nav-pills {
        padding-top: 50px;
    }

    body .custom-tab .nav-pills .nav-item {
        width: 100%;
    }

    body .custom-tab .nav-pills .nav-item .nav-link {
        width: 100%;
        border-radius: 5px;
        margin-bottom: 5px;
    }
}

@media (min-width: 320px) and (max-width: 578px) {

    body .desktop-slide-btn {
        display: none;
    }

    body header {
        padding-left: 16px;
    }

    body header .navbar-custom {
        padding-left: 0;
    }

    body .sidenav .sidenav-header .close-toggler {
        display: block;
    }

    body header .navbar-custom .navbar-brand {
        margin-right: 10px;
    }

    body header .navbar-custom .navbar-brand img {
        max-width: 80px;
    }

    header .navbar-custom .navbar-nav .nav-item {
        margin: 0 8px;
    }

    body header .navbar-custom .nav-item.profile-dropdown .nav-link .user-image {
        height: 36px;
        width: 36px;
        line-height: 36px;
        margin: 0;
    }

    body header .navbar-custom .nav-item.profile-dropdown .nav-link span {
        display: none !important;
    }

    body header .navbar-custom .nav-item.profile-dropdown .nav-link {
        margin-left: 0;
    }

    header .navbar-custom .navbar-nav .nav-item .nav-link .language-control {
        padding: 8px;
    }

    body header .navbar-custom .btn-toggle {
        font-size: 16px;
        padding: 0;
        height: 36px;
        width: 36px;
        margin-top: 2px;
    }

    body header .navbar-custom .Theme-dropdown {
        display: none;
    }

    body header .navbar-custom .action-dropdown .action-control,
    body .color-mode-btn {
        height: 36px;
        width: 36px;
        line-height: 36px;
    }

    body header .navbar-custom .action-dropdown .dropdown-menu {
        max-width: 250px;
    }

    body .sidenav {
        transform: translateX(-100%);
        height: 100%;
        box-shadow: none;
    }

    body .sidenav.collapse {
        transform: translateX(0);
        width: 80%;
        height: 100%;
    }

    body .sidenav:hover {
        width: 80%;
    }

    body.show .sidenav {
        width: 80%;
    }

    body .sidenav .sidenav-header .close-btn {
        display: block;
    }

    body .sidenav .sidenav-body .sidenav-list {
        width: 270px;
    }

    body .sidenav:hover .sidenav-body .sidenav-list {
        width: 270px;
    }

    body.show footer {
        padding-left: 0;
        transition: all 0.3s ease-in-out;
    }

    body.show .main-content {
        padding-left: 0;
        transition: all 0.3s ease-in-out;
    }

    body .main-content {
        padding-bottom: 134px;
        padding-top: 90px;
        padding-left: 16px;
        padding-right: 16px;
    }

    body footer {
        padding-left: 0;
    }

    body footer .text-end {
        text-align: left !important;
    }

    footer .footer-info p {
        font-size: 13px;
        margin-bottom: 7px;
    }

    body .custom-tab .nav-pills {
        padding-top: 50px;
    }

    body .custom-tab .nav-pills .nav-item {
        width: 100%;
    }

    body .custom-tab .nav-pills .nav-item .nav-link {
        width: 100%;
        border-radius: 5px;
        margin-bottom: 5px;
    }
}

#dt-length-0 {
    margin-right: 10px;
}

div.dt-container .dt-paging .dt-paging-button.current, div.dt-container .dt-paging .dt-paging-button.current {
    color: #fff !important;
    font-size: 14px !important;;
    padding: 6px 14px !important;
    border-radius: 7px !important;
    margin-left: 7px !important;
}

div.dt-container .dt-length, div.dt-container .dt-search, div.dt-container .dt-info, div.dt-container .dt-processing, div.dt-container .dt-paging {
    color: #011E45 !important;
    font-size: 14px !important;
    padding: 6px 14px !important;
}

div.dt-container .dt-paging .dt-paging-button {
    border: 1px solid #d0d9e0 !important;
    border-radius: 7px !important;
    padding: 6px 14px !important;
}

div.dt-container .dt-paging .dt-paging-button:hover {
    color: #011E45 !important;
    background: #dbeaff !important;
}

div.dt-container .dt-paging .dt-paging-button.current, div.dt-container .dt-paging .dt-paging-button.current:hover {
    color: #fff !important;
    font-size: 14px !important;
    padding: 6px 14px !important;
    border-radius: 7px !important;
    border: 1px solid rgba(0, 0, 0, 0.3);
    background: #4990FF !important;
    margin-left: 7px !important;
}

div.dt-container .dt-paging .dt-paging-button.disabled, div.dt-container .dt-paging .dt-paging-button.disabled:hover, div.dt-container .dt-paging .dt-paging-button.disabled:active {
    border: 1px solid #d0d9e0 !important;
    border-radius: 7px !important;
    font-size: 14px !important;
    padding: 6px 14px !important;
    margin-left: 7px !important;
}

div.dt-container .dt-paging .dt-paging-button {
    box-sizing: border-box;
    display: inline-block;
    min-width: 1.5em;
    padding: .5em 1em;
    margin-left: 2px;
    text-align: center;
    text-decoration: none !important;
    cursor: pointer;
    color: inherit !important;
    border: 1px solid transparent;
    border-radius: 2px;
    background: transparent;
}

table.dataTable thead > tr > td.dt-orderable-asc:hover, table.dataTable thead > tr > td.dt-orderable-desc:hover, table.dataTable thead > tr > th.dt-orderable-asc:hover, table.dataTable thead > tr > th.dt-orderable-desc:hover {
    outline: rgba(0, 0, 0, 0.05) solid 0px !important;
    outline-offset: -2px;
}

.required {
    color: red;
    margin-left: 2px;
}


/*addding toast view css by siddharth*/
.custom-alert {
    padding: 15px;
    border-radius: 5px;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    width: auto;
    max-width: 300px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s ease;
}

/* Style for the message text */
.alert-message {
    font-size: 12px;
    font-weight: 300;
}

.custom-alert.success {
    background-color: #26bc6a;
    color: white;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.custom-alert.error {
    background-color: #ff3333;
    color: white;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

/* Style for warning messages (yellow background) */
.custom-alert.warning {
    background-color: #ff9966;
    color: black;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

/* Style for informational messages (blue background) */
.custom-alert.info {
    background-color: #0059FF;
    color: white;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

/* Close button styling */
.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    margin-left: 10px;
}

/* Close button hover effect */
.close-btn:hover {
    opacity: 0.7;
}

/*end Toast View Css*/

/* button.dt-button.buttons-excel.buttons-html5.btn.btn-success.btn-sm.mx-1  */
.buttons-html5, .buttons-print {
    border: none !important;
    background: none !important;
    padding: 0px !important;
    color: black !important;
}

.buttons-html5:hover,
.buttons-print:hover {
    color: #FFC000 !important;
    cursor: pointer;
    text-decoration: none;
}

.fi.fi-rr-file-excel, .fi.fi-rr-file-csv, .fi.fi-rr-file-pdf, .fi.fi-rr-print, .fi.fi-rr-copy-alt {
    font-size: 26px;
}

.dt-buttons {
    float: left;
    margin-top: 8px;
}

body .multiselect {
    padding: 5px 16px;
}

.ss-main .ss-multi-selected {
    min-height: 1.5 !important;
    width: 100%;
    padding: 0 0 0 3px;
    border: none !important;
}

/* body .multiselect {
    padding: 5px 16px;
} */

.ss-main .ss-single-selected {
    min-height: 1.5 !important;
    width: 100%;
    padding: 0 0 0 3px;
    border: none !important;
}

.ss-main .ss-single-selected .placeholder {
    background: none !important;
    color: var(--black-color) !important;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding: 5px 16px;
}

.select2-container .select2-selection--single {
    height: 40px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    font-size: 14px;
    font-weight: 600;
    color: var(--black-color);
}

.accordion-button:not(.collapsed) {
    background: var(--light-color1) !important;
    color: #011E45 !important;
}


.accordion {
    background: var(--white-color) !important;
}

.accordion-item {
    background: var(--white-color) !important;
}

.accordion-button {
    background: var(--white-color) !important;
    font-weight: 600 !important;
    color: var(--black-color) !important;
}

.accordion-button:focus {
    box-shadow: none !important;
}

.card-img, .card-img-top {
    width: 50%;
}

.accordion table th, .accordion table td {
    background: var(--white-color) !important;
    color: var(--black-color) !important;
}

.select2-container {
    box-shadow: 2px 5px 4px 0px var(--cardShadow-color);
    z-index: 9999 !important;
}
.fc-toolbar-chunk{
    display: flex;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 28px;
    padding-left: 14px !important;
}
.statusHead{
    font-size: 14px;
    color: var(--black-color);
    font-weight: 700;
    text-align: left;
}

/*
    Attendance Report CSS
 */

.report-title {
    font-weight: bold;
    font-size: 20px;
    color: #0047ab;
}

.date-range {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.student-info {
    margin-bottom: 20px;
}

.student-info img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.student-name {
    font-size: 18px;
    font-weight: bold;
    margin-top: 8px;
}

.summary {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.summary-box {
    width: 100px;
    padding: 10px;
    border-radius: 10px;
    font-weight: bold;
    color: #000;
}

.present-box {
    background: #d1f7d6;
}

.absent-box {
    background: #fff4cc;
}

.holiday-box {
    background: #fddada;
}

.calendar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    /*max-width: 700px;*/
    margin: 0 auto 30px;
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 20px;
}

.day {
    width: 40px;
    height: 40px;
    border: 2px solid #ccc;
    border-radius: 50%;
    margin: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-weight: bold;
    font-size: 14px;
    color: #333;
}

.present {
    background-color: #d1f7d6;
    color: black;
    border-color: #d1f7d6;
}

.holiday {
    background-color: #fddada;
    color: black;
    border-color: #fddada;
}

.absent {
    background-color: #fff4cc;
    color: black;
    border-color: #fff4cc;
}

.legend {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}

.legend-color {
    width: 14px;
    height: 14px;
    border-radius: 3px;
}

.legend-present { background: #d1f7d6; }
.legend-holiday { background: #fddada; }
.legend-absent { background: #fff4cc; }
/*.legend-present { background: #4CAF50; }
.legend-holiday { background: #f44336; }
.legend-absent { background: #FFC107; }*/
.date-title{
        color: var(--primary-color) !important;
}
.btn-top-spacing1{
     margin-top: 25px !important;
}
button.fc-prev-button.fc-button.fc-button-primary,button.fc-next-button.fc-button.fc-button-primary {
    background-color: var(--primary-color);
}
button.fc-today-button.fc-button.fc-button-primary{
    background-color: var(--primary-color);
}
.fc .fc-button-primary:not(:disabled).fc-button-active, .fc .fc-button-primary:not(:disabled):active{
    background-color: var(--primary-color);
}
.fc .fc-button-primary:not(:disabled).fc-button-active, .fc .fc-button-primary:not(:disabled):active{
     background-color: var(--primary-color);
}
