* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --theme-color: #003398;
    --white-color: #ffffff;
    --black-color: #202224;
}

body {
    font-family: "Nunito Sans";
    background-color: #f5f6fa;
}

.login-sec {
    background-image: url("../images/login-bg.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-sec-box {
    border: 0.3px solid #b9b9b9;
    background-color: var(--white-color);
    padding: 24px 60px 102px 60px;
    border-radius: 20px;
    width: 630px;
    margin: 0 auto;
}

.login-box-content .login-forms-div input {
    width: 100%;
    border: 1px solid #d8d8d8;
    height: 50px;
    border-radius: 7px;
    outline: none;
    padding: 10px;
    background-color: #f1f4f9;
    color: #a6a6a6;
}

.login-box-content .login-forms-div input[type="checkbox"] {
    width: unset;
    height: unset;
    margin: 0 auto;
}

.login-box-content {
    margin-top: 26px;
}

.login-box-content h3 {
    margin-bottom: 15px;
    color: var(--black-color);
    font-size: 32px;
    font-weight: 700;
}

.login-sec-box form {
    margin-top: 40px;
}

.login-box-content p {
    margin: unset;
    font-size: 18px;
    font-weight: 400;
    color: var(--black-color);
}

.login-sec form .login-forms-div label {
    font-size: 18px;
    font-weight: 500;
}

.login-box-image {
    text-align: center;
}

.login-box-head {
    text-align: center;
}

.login-forms-labels {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.login-forms-div1 {
    margin-bottom: 40px;
}

.login-forms-div2 {
    margin-bottom: 24px;
}

.login-forms-div1 label {
    margin-bottom: 15px;
}

.login-forms-div2 .login-forms-labels label {
    margin-bottom: unset;
}

.login-forms-div2 .login-forms-labels a {
    text-decoration: none;
    color: #202224;
    font-size: 18px;
    font-weight: 500;
}

.remember-forms-div {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.remember-forms-div label {
    margin-left: 20px;
}

.forms-login-div {
    margin-top: 55px;
    text-align: center;
}

.forms-login-div button {
    background-color: var(--theme-color);
    color: var(--white-color);
    border: none;
    outline: none;
    height: 56px;
    width: 420px;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 400;
}

.dashboard-sec .col-lg-2 {
    background-color: var(--white-color);
}

.sidebar {
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    border-right: 1px solid #dee2e6;
    padding-top: 20px;
    overflow-y: scroll;
}

.sidebar .nav-link {
    color: var(--black-color);
    font-size: 14px;
    padding: 15px 8px;
    font-weight: 600;
    border-radius: 10px;
    white-space: nowrap;
}

.sidebar .nav-link.active {
    color: var(--white-color);
    background-color: var(--theme-color);
}

.sidebar .nav-link:hover {
    background-color: var(--theme-color);
    color: var(--white-color);
}

.sidebar .nav-item {
    margin-bottom: 10px;
}

.sidebar .sidebar-logo img {
    width: 100%;
}

.sidebar .sidebar-logo {
    margin-bottom: 20px;
}

.sidebar .nav-link i {
    margin-right: 16px;
}

.sidebar .dropdown-divider {
    margin: unset;
    border: 1px solid #e0e0e0;
}

.sidebar span {
    margin: 10px 20px;
    font-size: 16px;
    font-weight: 700;
    color: #000000ad;
}

.dashboard-sec .main-board.col-lg-10 {
    padding: unset;
}

.dashboard-sec .main-board.col-lg-12 {
    padding: unset;
}

.sidebar::-webkit-scrollbar {
    width: 4px;
}

/* Track */
.sidebar::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
.sidebar::-webkit-scrollbar-thumb {
    background: var(--theme-color);
}

.header-left button {
    background-color: transparent;
    border: none;
    outline: none;
}

.header-left button i {
    font-size: 20px;
    color: var(--black-color);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-left .search-input input {
    border: 1px solid #d5d5d5;
    outline: none;
    padding: 12px 20px 12px 45px;
    border-radius: 100px;
    background-color: #f5f6fa;
    width: 388px;
}

.header-left .search-input i {
    position: absolute;
    left: 20px;
    font-size: 16px;
    color: #888;
    pointer-events: none;
}

.search-input {
    position: relative;
    display: flex;
    align-items: center;
}

.dashboard-sec .main-board .navbar {
    padding-top: 16px;
    padding-bottom: 16px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 45px;
}

.header-right .notification-div .bell-btn {
    background-color: transparent;
    border: none;
    outline: none;
    position: relative;
}

.header-right .notification-div .bell-btn span {
    position: absolute;
    background-color: #f93c65;
    width: 18px;
    height: 18px;
    top: -8px;
    right: -4px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 100px;
    color: var(--white-color);
}

.user-div {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-div .user-div-name h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: unset;
}

.user-div .user-div-name h5 {
    font-size: 12px;
    font-weight: 600;
    color: #565656;
    margin-bottom: unset;
}

.user-settings-div button {
    border: 1px solid;
    outline: none;
    background-color: transparent;
}

.user-settings-div button i {
    color: #565656;
}

.user-settings-div button {
    border: 1px solid #565656;
    width: 30px;
    height: 30px;
    border-radius: 100px;
}

.main-boxes {
    margin: 30px 0px;
}

.add-employee-div {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.add-employee-div a {
    background-color: var(--theme-color);
    color: var(--white-color);
    border: none;
    outline: none;
    padding: 12px 36px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
}

.add-employee-heading h1 {
    margin-bottom: unset;
    color: #ff0000;
    font-size: 32px;
    font-weight: 700;
}

.filter-main {
    margin: 24px 0px;
    border: 1px solid #d5d5d5;
    border-radius: 10px;
    display: flex;
    align-items: center;
}

.filter-main .filter-boxes {
    padding: 26px 24px;
}

.filters-main {
    display: flex;
    align-items: center;
    border: 1px solid #d5d5d5;
    border-radius: 12px;
    margin-top: 24px;
}

.filters-box {
    padding: 20px 32px;
    border-right: 1px solid #d5d5d5;
    position: relative;
}

.filters-box p {
    margin-bottom: unset;
    font-size: 16px;
    color: var(--black-color);
    font-weight: 600;
}

.filters-box:last-child {
    border-right: none;
}

.filters-box select {
    background-color: transparent;
    border: none;
    padding: unset;
    outline: none;
}

.filters-box button.reset-btn {
    background-color: transparent;
    border: none;
    outline: none;
    color: #ea0234;
    font-size: 16px;
    font-weight: 600;
}

.filters-box button.submit-btn {
    background-color: transparent;
    border: none;
    outline: none;
    color: #28a745;
    font-size: 16px;
    font-weight: 600;
}

.filters-box i {
    font-size: 16px;
}

.custom-select {
    width: 150px;
    padding: 8px;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
}

.filters-box input[type="date"] {
    background: transparent;
    border: none;
    outline: none;
}

.table-main-div {
    margin-top: 24px;
}

.table-main-div .table thead th,
.table-main-div .table tfoot th {
    font-weight: 800;
    font-size: 14px;
}

.table-main-div .table thead {
    background-color: #fcfdfd;
}

.table-main-div .table {
    border-radius: 15px;
    overflow: hidden;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #ddd;
}

.table-main-div .table tbody td {
    font-size: 14px;
    font-weight: 400;
}

.table-main-div .table tbody th {
    font-size: 14px;
    font-weight: 400;
}

.table-main-div .table tbody .edit-delete-td .flex-edit button {
    font-size: 16px;
    color: var(--black-color);
    width: 100%;
    border-right: 1px solid #d5d5d5;
    padding: 3px;
    outline: none;
    background-color: transparent;
    border-top: none;
    border-bottom: none;
    border-left: none;
}

.table-main-div .table tbody .edit-delete-td .flex-edit {
    display: flex;
    align-items: center;
    background-color: #fafbfd;
    border: 1px solid #d5d5d5;
    border-radius: 8px;
}

.table-main-div .table tbody .edit-delete-td .flex-edit button:nth-child(2) {
    border-right: none;
}

.table-main-div .table tbody .edit-delete-td .flex-edit button:hover {
    background: #d5d5d5;
}

.table-main-div .table tbody .edit-delete-td .flex-edit button .red-bin {
    color: #ef3826;
}

.onpages-div p {
    margin-bottom: unset;
    font-size: 14px;
    font-weight: 500;
    color: var(--black-color);
}

.onpages-move {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.onpages-move .flex-edit button {
    font-size: 14px;
    color: var(--black-color);
    width: 100%;
    border-right: 1px solid #d5d5d5;
    padding: 4px 16px;
    outline: none;
    background-color: transparent;
    border-top: none;
    border-bottom: none;
    border-left: none;
}

.onpages-move .flex-edit {
    display: flex;
    align-items: center;
    background-color: #fafbfd;
    border: 1px solid #d5d5d5;
    border-radius: 8px;
}

.onpages-move .flex-edit button:nth-child(2) {
    border-right: none;
}

.onpages-move .flex-edit button:hover {
    background: #d5d5d5;
}

.table-main-div .table tbody {
    background: #fff;
}

.form-main-div {
    margin-top: 40px;
    background-color: var(--white-color);
    border-radius: 15px 15px 15px 15px;
    padding: 42px 48px;
    border: 1px solid #d5d5d5;
}

.form-main-div.mark_attendance {
    margin-top: 40px;
    background-color: var(--white-color);
    border-radius: 15px 15px 15px 15px;
    border: 1px solid #d5d5d5;
    padding: 0px 0px 50px 0px;
}

.form-main-div form label input {
    width: 100%;
    height: 52px;
    border: 1px solid #d5d5d5;
    border-radius: 8px;
    padding: 15px;
    outline: none;
    background: #f5f6fa;
    color: #a6a6a6;
    margin-top: 10px;
}

.form-main-div form label {
    width: 100%;
    margin-bottom: 30px;
}

.form-main-div form label select {
    width: 100%;
    height: 52px;
    border: 1px solid #d5d5d5;
    outline: none;
    border-radius: 8px;
    padding: 15px;
    background: #f5f6fa;
    color: #a6a6a6;
    margin-top: 10px;
}

.form-main-div form button {
    background-color: var(--theme-color);
    color: var(--white-color);
    height: 56px;
    width: 274px;
    outline: none;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
}

.form-main-div form .form-btn-div {
    display: flex;
    align-items: center;
    justify-content: center;
}

.total-box-main {
    background-color: var(--white-color);
    padding: 17px 17px;
    border-radius: 22px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.total-box-main.work {
    height: 250px;
}

.total-box-main.work .total-box-content p {
    font-size: 18px;
    margin-bottom: 32px;
}

/* .total-box-main.work .total-box-content h4 {
} */

.total-box-main .total-box-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--black-color);
    margin-bottom: 32px;
}

.total-box-main .total-box-content p {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: unset;
}

.total-box-content ul li {
    list-style: none;
}

.dashboard-chart-main {
    margin-top: 30px;
    padding: 38px 32px;
    background-color: var(--white-color);
    border-radius: 22px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.dashboard-chart-main .dashboard-chart-drop {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.mainHeading {
    font-size: 24px;
    font-weight: 700;
}

.dashboard-chart-drop select {
    background-color: #fcfdfd;
    border: 1px solid #d5d5d5;
    width: 150px;
    color: var(--black-color);
    outline: none;
}

.table-main-div-main-dashboard .table thead {
    background-color: #f1f4f9;
}

.table-main-div-main-dashboard .table thead th {
    border-bottom: unset;
}

.table-main-div-main-dashboard .table {
    border: unset;
}

.table-main-div-main-dashboard .table thead tr th {
    border-top: unset;
}

/* New Cs */
.form-main-div form label textarea {
    width: 100%;
    border: 1px solid #d5d5d5;
    border-radius: 8px;
    padding: 15px;
    outline: none;
    background: #f5f6fa;
    color: #a6a6a6;
    margin-top: 10px;
}

/* Profile */
.file-wrapper {
    width: 90px;
    height: 90px;
    position: relative;
    margin: auto;
    border-radius: 92px;
    background-color: #f5f6fa;
    margin-bottom: 10px;
}

.file-wrapper:after {
    content: "\f030";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: max-content;
    height: max-content;
    display: block;
    font-size: 30px;
    color: gray;
}

.file-wrapper:before {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 35px;
    width: max-content;
    height: max-content;
    font-size: 0.75em;
    color: gray;
}

.file-wrapper .close-btn {
    display: none;
}

input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 99999;
    cursor: pointer;
}

.file-set {
    background-size: cover;
    background-repeat: no-repeat;
    color: transparent;
    padding: 10px;
    border-width: 0px;
}

.file-set:before {
    color: transparent;
}

.file-set:after {
    color: transparent;
}

.file-set .close-btn {
    position: absolute;
    width: 30px;
    height: 30px;
    display: block;
    background: #000;
    color: #fff;
    top: 0;
    right: 0;
    font-size: 20px;
    text-align: center;
    line-height: 1.5;
    cursor: pointer;
    opacity: 0.8;
    border-radius: 50px;
}

.file-set>input {
    pointer-events: none;
}

.btnfooter {
    margin: 0 auto;
    display: table;
}

.UploadPht {
    text-align: center;
    color: #003398;
    margin-top: 0px;
}

/* Invoice */
.invoiceHeader {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.invoicedes ul li {
    list-style: none;
}

.invoicefooter {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.noteBox {
    width: 700px;
    background-color: #f0f0f0;
    padding: 25px;
    border-radius: 16px;
}

.totalamt ul li {
    list-style: none;
    font-weight: 700;
    text-align: end;
}

li.amt {
    color: var(--white-color);
    background-color: var(--theme-color);
    padding: 10px;
}

.printbtn {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 104px;
    margin-bottom: 63px;
}

.printbtn button {
    background-color: var(--theme-color);
    color: var(--white-color);
    border: none;
    outline: none;
    padding: 12px 15px 12px 25px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 175px;
}

i.fas.fa-location-arrow {
    background-color: lightblue;
    padding: 7px 10px;
    border-radius: 6px;
}

.bottomCont p {
    display: inline-block;
    position: relative;
    width: 100%;
}

.bottomCont p::after {
    content: " ";
    display: block;
    height: 9px;
    width: 1045px;
    background-color: red;
    position: absolute;
    top: 9px;
    right: 0;
}

@media print {
    .bottomCont p::after {
        content: none;
    }
}

input[type="file"] {
    position: relative !important;
    opacity: 1;
}

/*  */
/* Style for the dropdown container */
.user-settings-div {
    position: relative;
    display: inline-block;
}

/* Button styling */
.user-settings-div button {
    background-color: #fff;
    border: 1px solid;
    cursor: pointer;
}

/* Hide the dropdown content by default */
.user-settings-div .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    min-width: 160px;
    right: 0px;
}

/* Dropdown links styling */
.user-settings-div .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s ease;
}

/* Hover effect on dropdown links */
.user-settings-div .dropdown-content a:hover {
    background-color: #003398;
    color: #fff;
}

/* Show the dropdown content when hovered over the button */
.user-settings-div:hover .dropdown-content {
    display: block;
}

/* Attendence Top Main */

.attendence_top_main {
    padding: 110px 50px 50px 100px;
    background-color: #003398;
    border-radius: 15px 15px 0px 155px;
}

.attendence_top_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.attendence_top_inner .left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.attendence_top_inner .left img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: contain;
    margin-right: 25px;
}

.attendence_top_inner .left .inner h4 {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    margin: 0px;
}

.attendence_top_inner .left .inner span {
    font-size: 18px;
    color: #fff;
    font-weight: 400;
}

.attendence_top_inner .right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.attendence_top_inner .right strong {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
}

.attendence_top_inner .right span {
    font-size: 35px;
    font-weight: 700;
    color: #fff;
}

.attendence_type_main {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 30px;
}

.attendence_type_main p {
    font-size: 20px;
    color: #fff;
    font-weight: 500;
    margin: 0px;
}

.attendence_type_main span.present {
    width: 10px;
    height: 10px;
    background-color: #00ff00;
    border-radius: 50%;
    margin-left: 10px;
}

.attendence_type_main span.absent {
    width: 10px;
    height: 10px;
    background-color: #ff0000;
    border-radius: 50%;
    margin-left: 10px;
}

.attendence_fields_main {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0px 250px;
    margin-top: 50px;
}

.thankyou_main {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 20px 0px 40px 0px;
}

.thankyou_main strong {
    font-size: 25px;
    font-weight: 700;
    color: #ff3f3f;
}

span.select2-selection.select2-selection--single {
    background-color: transparent;
    border: none;
}

.date-filter {
    background-color: transparent;
    border: none;
    width: 100%;
}

.date-filter:focus-visible {
    outline: none;
}

.date-filter-icon {
    position: absolute;
    top: 20px;
    right: 30px;
}

.filters-box.dateFilter {
    width: 25%;
}

span.select2.select2-container.select2-container--default {
    width: 230px !important;
}

.vehicleFilterBox .filters-box {
    padding: 18px;
}

.payroll-filters-main {
    background-color: #fff;
    padding: 40px;
    border: 1px solid #B9B9B9;
    border-radius: 15px;
    margin-top: 30px;
}

.payroll-filters-main .payroll-filters-box label {
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    color: #606060;
}

.payroll-filters-main .payroll-filter-buttons {
    display: flex;
    align-items: center;
    justify-content: end;
    margin-top: 30px;
}

.payroll-filters-main .payroll-filters-box .submit-btn {
    background-color: #ff0000;
    color: #ffffff;
    border: 1px solid #ff0000;
    border-radius: 12px;
    height: 56px;
    width: 274px;
    margin-left: 10px;
}

.payroll-filters-main .payroll-filters-box .reset-btn {
    background-color: #003398;
    color: #ffffff;
    border: 1px solid #003398;
    border-radius: 12px;
    height: 56px;
    width: 274px;
}

.payroll-filters-box span.select2.select2-container.select2-container--default {
    display: block;
    width: 100% !important;
}

.payroll-filters-box span.select2-selection.select2-selection--single {
    border: 1px solid #D5D5D5;
    border-radius: 5px;
    background-color: #F5F6FA;
    height: 52px;
}

.payroll-filters-box span#select2-employeeFilter-container {
    height: 100%;
    align-items: center;
    display: flex;
}

.payroll-filters-box span.select2-selection__arrow {
    top: 14px !important;
    right: 9px !important;
}

.payroll-filters-box .date-filter {
    border: 1px solid #D5D5D5;
    border-radius: 5px;
    background-color: #F5F6FA;
    height: 52px;
    padding: 10px;
}

.payroll-filters-box .date-filter-icon {
    top: 45px !important;
    right: 30px !important;
}

.leaveFilter span.select2.select2-container.select2-container--default {
    width: 130px !important;
}

.statusFilter span.select2.select2-container.select2-container--default {
    width: 110px !important;
}

.notification-div .dropdown-toggle::after {
    display: none;
}

.notification-div .dropdown-menu {
    left: -310px;
    width: 350px;
    overflow-x: hidden;
    height: 420px;
    padding: 0px;
}

.notification-div .dropdown-menu .dropdown-item.notifications-box {
    border-bottom: 1px solid #cecece;
    margin: 0px;
    padding: 20px;
    transition: all 0.3s ease-in-out;
}

.notification-div .dropdown-menu .dropdown-item.notifications-box:last-child {
    border-bottom: none;
}

.notification-div .dropdown-menu .dropdown-item.notifications-box:hover {
    background-color: #00339826;
}

.notification-div .dropdown-menu .dropdown-item.notifications-box h5 {
    font-size: 16px;
    font-weight: 700;
    color: #ff0000;
    margin-bottom: 2px;
}

.notification-div .dropdown-menu .dropdown-item.notifications-box p {
    font-size: 14px;
    font-weight: 500;
    white-space: break-spaces;
    color: #003398;
    margin: 0px;
    line-height: 20px;
}

.notification-div .dropdown-menu .showAllNotiBtn {
    background-color: #003398;
    padding: 10px 20px;
    width: max-content;
    display: block;
    margin: 10px auto;
    border-radius: 30px;
    color: #ffffff;
    border: 1px solid #003398;
    transition: all 0.3s ease-in-out;
}

.notification-div .dropdown-menu .showAllNotiBtn:hover {
    background-color: #fff;
    color: #003398;
    text-decoration: none;
}

.notification-div .dropdown-menu .notifications-header {
    padding: 10px 0px;
    border-bottom: 1px solid #003398;
    background-color: #003398;
    text-align: center;
}

.notification-div .dropdown-menu .notifications-header h5 {
    color: #fff;
    margin: 0px;
}

.notification-div .dropdown-menu .notifications-body {
    overflow-y: auto;
    overflow-x: hidden;
    height: 306px;
}

.notification-div .dropdown-menu .notifications-footer {
    border-top: 1px solid #cecece;
}

.notification-div .dropdown-menu .notifications-body p.no-noti {
    margin-top: 20px;
    font-size: 20px;
    font-weight: 600;
    color: #ff0000;
    text-align: center;
}

#fileUploadModal .modal-header {
    background-color: #003398;
}

#fileUploadModal .modal-header .modal-title {
    color: #fff;
}

#fileUploadModal .modal-header .close {
    color: #fff;
    opacity: 1;
}

#fileUploadModal form .modal-body label #userFile {
    display: none;
}

#fileUploadModal form .modal-body label {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    background-color: #e9e9e9;
    border: 2px dashed #b3b3b3;
    border-radius: 5px;
    color: #b3b3b3;
    cursor: pointer;
}

#fileUploadModal form .modal-body .fileImage {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#fileUploadModal form .modal-body .fileImage img {
    width: 100px;
    height: 100px;
}

#fileUploadModal form .modal-body .fileImage span {
    display: block;
    font-size: 14px;
    color: #7a7a7a;
    margin-top: 10px;
}

#fileUploadModal form .modal-footer button {
    background-color: var(--theme-color);
    color: var(--white-color);
    border: none;
    outline: none;
    padding: 10px 25px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
}

@media screen and (max-width: 1366px) {
    .main-boxes {

        overflow-x: auto;
    }
}


.employee_attendance label {
    display: flex;
    flex-direction: column;
}

.employee_attendance label span.select2.select2-container.select2-container--default {
    width: 100% !important;
}

.employee_attendance label span.select2.select2-container.select2-container--default span.select2-selection {
    width: 100%;
    border: 1px solid #d5d5d5;
    border-radius: 8px;
    padding: 8px;
    outline: none;
    background: #f5f6fa;
    color: #a6a6a6;
    margin-top: 10px;
    min-height: 52px;
}

.employee_attendance label span.select2.select2-container.select2-container--default span.select2-selection button.select2-selection__choice__remove {
    background-color: transparent !important;
    color: #000 !important;
    width: max-content;
    height: unset;
    border-radius: 0px;
}

button#fetchList {
    width: 100%;
    margin-top: 30px;
}

.edit-payroll-modal .modal-dialog {
    max-width: 600px;
}

.edit-payroll-modal .modal-dialog .modal-header {
    flex-direction: column;
}

.edit-payroll-modal .modal-dialog .modal-header div {
    width: 100%;
}

.edit-payroll-modal .modal-dialog .modal-header .header-heading {
    display: flex;
    margin-bottom: 10px;
}

.edit-payroll-modal .modal-dialog .modal-header h5 {
    margin-bottom: unset;
    color: #ff0000;
    font-size: 32px;
    font-weight: 700;
}

.edit-payroll-modal .modal-dialog .modal-header button.close {
    width: auto;
    height: auto;
    background-color: transparent;
    color: #000;
    font-size: 30px;
    font-weight: 900;
}

.edit-payroll-modal .modal-dialog .fields input.form-control {
    border: 0px;
    border-radius: 0px;
    border-bottom: 1px solid #c3c3c3;
    outline: none;
    box-shadow: none;
}

.edit-payroll-modal .modal-dialog .fields select.form-control {
    border: 0px;
    border-radius: 0px;
    border-bottom: 1px solid #c3c3c3;
    outline: none;
    box-shadow: none;
}

.edit-payroll-modal .modal-dialog .fields textarea.form-control {
    border: 0px;
    border-radius: 0px;
    border-bottom: 1px solid #c3c3c3;
    outline: none;
    box-shadow: none;
}

.edit-payroll-modal .fields label {
    font-weight: 600;
    width: 65%;
}

.bottom-fields label {
    width: 30% !important;
    font-weight: 600;
}

.bottom-fields .form-control {
    border: 0px;
    border-radius: 0px;
    border-bottom: 1px solid #c3c3c3;
    outline: none;
    box-shadow: none;
    width: 30%;
}