:root {
    --primary-color: #c75741;
    --hoverred-primary-color: #a01313;
    --secondary-color: #9b1e11;
    --hoverred-secondary-color: #703407;
    --black-color: #242424;
    --white-color: #ffffff;
    --grey-color: #efefef;
    --grey-darker-color: rgba(36, 36, 36, 0.48);
    --grey-middle-color: rgba(36, 36, 36, 0.18);
    --grey-lighter-color: rgba(36, 36, 36, 0.08);
    --grey-6: #e5e5e5;
    --grey-light-color: #ededed;
    --alert-color: #ff6363;
    --info-color: #f97b62;
    --success-color: #12b76a;
    --olive-color: #7b7e6b;
    --primary-gradient: linear-gradient(180deg, #6360ff 0%, #5653dc 100%);
    --yellow-gradient: linear-gradient(180deg, #faba17 0%, #e3a202 100%);
    --gray-gradient: linear-gradient(180deg, #d5d5d5 0%, #b4b4b4 100%);
    --default-box-shadow: 0px 8px 16px rgba(32, 32, 64, 0.08);
    --danger-light-color: #fcdbd1;
    --success-light-color: #d1fcd8;
    --info-light-color: #d1dbfc;
    --warning-light-color: #f5d789;
    --purple-light-color: #fcbdfd;
    --danger-lighter-color: #ff8b8b14;
    --success-lighter-color: #d1fcd835;
    --info-lighter-color: #8bdcff14;
    --warning-lighter-color: #f5d78959;
    --benefits-color: #ebffdb;
    --benefits-text-color: #328400;
    --prime-color: #c3f1ff;
    --prime-text-color: #017194;
    --charges-color: #fac3ff;
    --charges-text-color: #940174;
    --account-color: #ffebc3;
    --account-text-color: #966300;
}

body {
    font-family: "Poppins", sans-serif;
}

a {
    color: var(--black-color);
}

a:hover {
    color: var(--hoverred-primary-color);
}

p {
    font-size: 14px;
}

hr {
    margin: 0;
    background-color: rgba(32, 32, 64, 0.3);
}

.info-user {
    text-overflow: ellipsis;
    max-width: 200px;
    overflow: hidden;
}

a,
small,
label {
    font-size: 12px;
    font-weight: 500;
}
/* Hide input number arrows for Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.counter-span-error {
    text-transform: none;
    color: rgba(var(--bs-danger-rgb)) !important;
    font-weight: 400;
}
/* Hide input number arrows for Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}
/* Altered bootstrap components */
.bg-danger {
    background-color: var(--alert-color) !important;
}

.bg-success {
    background-color: var(--success-color) !important;
}

.bg-warning {
    background-color: var(--alert-color) !important;
}

.bg-info {
    background-color: var(--info-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-blur-effect {
    backdrop-filter: blur(2.5px);
    -webkit-backdrop-filter: blur(2.5px);
    background-color: #efefef00;
}

.bg-grey {
    background-color: var(--grey-color) !important;
}

.bg-grey-light {
    background-color: var(--grey-light-color) !important;
}

.bg-grey-lighter {
    background-color: var(--grey-lighter-color) !important;
}

.bg-grey-dark {
    background-color: var(--grey-darker-color) !important;
}

.bg-success-secondary {
    background-color: #f3f7f0;
    color: var(--olive-color);
}

.bg-danger-light {
    background-color: var(--danger-light-color) !important;
}

.bg-success-light {
    background-color: var(--success-light-color) !important;
}

.bg-info-light {
    background-color: var(--info-light-color) !important;
}

.bg-warning-light {
    background-color: var(--warning-light-color) !important;
}

.bg-purple-light {
    background-color: var(--purple-light-color) !important;
}

.bg-danger-lighter {
    background-color: var(--danger-lighter-color) !important;
}

.bg-success-lighter {
    background-color: var(--success-lighter-color) !important;
}

.bg-info-lighter {
    background-color: var(--info-lighter-color) !important;
}

.bg-warning-lighter {
    background-color: var(--warning-lighter-color) !important;
}

.bold {
    font-weight: 700;
}

.fw-light-bold {
    font-weight: 500;
}
.text-primary {
    color: var(--primary-color) !important;
}
.btn {
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 14px;
}

.btn:focus {
    outline: 0;
    box-shadow: 0 0 0 0.25rem #611ad63f;
}

.btn-status {
    outline: none;
    border: none;
    outline: 0;
    box-shadow: 0 0 0 0.25rem #611ad63f;
}

.x {
    margin-left: 5px;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
}

.btn-primary:hover,
.btn-primary:active {
    background-color: var(--hoverred-primary-color);
    border-color: var(--hoverred-primary-color);
}

.btn-primary:focus,
.btn-primary:active:focus {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(214, 63, 26, 0.5);
}

.btn-primary[disabled] {
    background-color: var(--secondary-color);
}

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white-color);
}

.btn-secondary:hover,
.btn-secondary:active {
    background-color: var(--hoverred-secondary-color);
    border-color: var(--hoverred-secondary-color);
}

.btn-secondary:focus,
.btn-secondary:active:focus {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.25rem rgba(214, 63, 26, 0.5);
}

.btn-cancel {
    background-color: #a0a0a0;
    color: var(--white-color);
}

.btn-cancel:focus {
    box-shadow: none;
}

.btn-cancel:hover {
    color: var(--white-color);
    background-color: #7f7f7f;
}

.btn-primary-outline {
    background-color: var(--white-color);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-primary-outline:hover,
.btn-primary-outline:active {
    background-color: var(--hoverred-primary-color);
    border-color: var(--hoverred-primary-color);
    color: var(--white-color);
}

.btn-primary-outline:focus,
.btn-primary-outline:active:focus {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(214, 63, 26, 0.5);
    color: var(--white-color);
}

.btn-outline-secondary:hover {
    background-color: var(--grey-lighter-color);
}

.btn-danger {
    background-color: var(--alert-color);
    border-color: var(--alert-color);
}

.btn-neutral {
    background-color: var(--grey-color);
    border-color: var(--grey-color);
}

.btn-info {
    background-color: var(--info-color);
    border-color: var(--info-color);
}

.btn-success {
    background-color: var(--success-color);
    border-color: var(--success-color);
}

.btn-sm {
    font-size: 12px;
    padding: 8px 16px;
}

.link-primary {
    color: var(--primary-color);
    text-decoration: none;
}

.link-primary:hover {
    color: var(--hoverred-primary-color);
    text-decoration: underline;
}

.alert {
    margin-bottom: 0;
    font-size: 14px;
    border-radius: 8px;
}

.alert-success {
    background-color: #effff1;
    border: 1px solid #41c086;
}

.alert-success:before {
    content: "";
    background-image: url("../svgs/alert-success-icon.svg");
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    padding-right: 30px;
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.alert-danger {
    background-color: #fff8f8;
    border: 1px solid #ff6363;
}

.alert-danger:before {
    content: "";
    background-image: url("../svgs/alert-danger-icon.svg");
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.alert-warning {
    background-color: #fffbef;
    border: 1px solid #ffca42;
}

.alert-warning:before {
    content: "";
    background-image: url("../svgs/alert-warning-icon.svg");
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.alert-info {
    background-color: #f1f5ff;
    border: 1px solid #4a7dff;
}

.alert-info:before {
    content: "";
    background-image: url("../svgs/alert-info-icon.svg");
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.form-control,
.form-select {
    font-size: 14px;
    border: 1px solid var(--black-color);
}

input.form-control[readonly] {
    font-size: 14px;
    position: relative;
    border-radius: 4px;
    border: none;
    padding: 0.375rem 0.75rem;
    background-color: transparent;
}

input.form-control[readonly]:focus {
    border: none;
    box-shadow: none;
}

.input-group > input.form-control[readonly] + .input-group-text,
.input-group > textarea[readonly] + .input-group-text {
    border: none;
}

.form-group.unread-content::before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: var(--alert-color);
    border-radius: 50%;
    display: inline-block;
}

::placeholder {
    color: #242424a3;
    opacity: 65%;
    font-size: 12px;
}

.form-control:focus,
.form-check-input:focus,
.form-select:focus {
    border-color: var(--black-color);
    box-shadow: 0 0 0 0.25rem rgba(214, 63, 26, 0.25);
}

.form-select.border-less {
    border: none;
}

.form-select:disabled {
    background-color: var(--white-color);
    background-image: none;
    border: none;
    cursor: not-allowed;
}

.form-control-feedback {
    font-size: 11px;
}

.form-check-input:checked[type="checkbox"] {
    background-color: transparent;
    border-color: var(--black-color);
}

.form-check-input:checked[type="checkbox"] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

.form-check-input:checked[type="radio"] {
    background-color: var(--white-color);
    box-shadow: 0px 8px 16px rgba(32, 32, 64, 0.08);
    border-color: var(--black-color);
}

.form-check-input:checked[type="radio"] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23000'/%3e%3c/svg%3e");
}

.form-switch .form-check-input {
    width: 3.5rem;
    height: 1.7rem;
}

.form-switch .form-check-input:focus {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23611ad6'/%3e%3c/svg%3e");
    box-shadow: none;
}

.form-switch .form-check-input:checked {
    background-color: #00b64e;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
    border: none;
}

.input-group > .form-control,
.input-group > .form-select {
    border-right: none;
}

.input-group .input-group-append button {
    border-left: none !important;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.input-group .input-group-text {
    background-color: inherit;
    border: 1px solid var(--black-color);
    line-height: 18px;
    font-size: 12px;
    font-weight: 500;
    border-top-right-radius: 4px !important;
    border-bottom-right-radius: 4px !important;
}

.input-group > .form-control.is-valid + .input-group-text {
    border: 1px solid #198754;
    color: #198754;
}

.input-group > .form-control.is-invalid + .input-group-text {
    border: 1px solid #dc3545;
    color: #dc3545;
}

.breadcrumb {
    --bs-breadcrumb-divider: ">";
}

.breadcrumb .breadcrumb-item {
    font-size: 12px;
}

.tooltip {
    font-size: 12px;
}

.popover {
    border-radius: 8px;
    box-shadow: 0px 16px 16px rgba(32, 32, 64, 0.24);
    border: none;
    z-index: 999999;
}

.popover > .popover-arrow {
    border: none;
}

.popover .popover-header {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border: none;
    font-size: 12px;
    display: flex;
    align-items: center;
}

.popover.fullcalendar-popover {
    box-shadow: 0px 16px 16px rgba(32, 32, 64, 0.24);
}

.popover.fullcalendar-popover .popover-arrow {
    display: none;
}

.popover.fullcalendar-popover.success .popover-header {
    background-color: #74f5b1;
    color: var(--black-color);
}

.popover.fullcalendar-popover.warning .popover-header {
    background-color: var(--warning-light-color);
}

.popover.fullcalendar-popover.danger .popover-header {
    background-color: var(--alert-color);
}

.popover.fullcalendar-popover.info .popover-header {
    background-color: var(--info-color);
}

.popover.fullcalendar-popover .popover-header {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.popover.fullcalendar-popover .popover-header::before {
    content: none;
}

.popover .popover-header {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.popover .popover-header::before {
    content: url("../svgs/information-white.svg");
    margin-right: 10px;
}

.popover .popover-body {
    font-size: 12px;
}

@media screen and (max-width: 767px) {
    .alert {
        position: fixed;
        bottom: -82vh;
        left: 0;
        width: 95% !important;
        margin: 0 auto;
        right: 0;
    }
}

.dropstart .dropdown-toggle::before {
    content: none;
}

.dropdown-menu.show {
    border: none;
    border-radius: 12px;
    padding: 24px 0;
    box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.16);
}

.dropdown-menu.show li > a {
    font-size: 14px;
    line-height: 21px;
    padding: 10px 44px;
}

.dropdown-menu.show li > a > img {
    width: 20px;
}

.dropdown-toggle {
    border: none;
    box-shadow: none;
    background-color: transparent;
}
.dropdown-toggle2 {
    border: none;
    box-shadow: none;
}

*:not(.employees-selector) + .dropdown-toggle::after {
    content: none;
}

.employees-selector + .dropdown-toggle {
    border: 1px solid var(--black-color);
    border-radius: 0.25rem;
    padding: 0.375rem 0.75rem;
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: var(--grey-color);
}

.navbar-desktop .dropdown-menu.show {
    border: none;
    border-radius: 12px;
    padding: 24px 0;
    box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.16);
    position: relative;
    left: -260px;
    top: 5px;
    display: inline-block;
}

.navbar-desktop .dropdown-menu.show li > a {
    font-size: 14px;
    line-height: 21px;
    padding: 10px 44px;
}

.navbar-desktop .dropdown-menu.show li > a > img {
    width: 20px;
}

.navbar-desktop .dropdown-profil-menu.show {
    border: none;
    border-radius: 12px;
    padding: 24px 0;
    box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.16);
    position: absolute;
    left: -250px;
    top: 50px;
    display: inline-block;
}

.nav-pills .nav-link,
.nav-pills > .nav-link {
    background-color: var(--grey-color);
    color: var(--black-color);
    border-radius: 8px;
    font-size: 12px;
    line-height: 18px;
}

.nav-pills .nav-link.active {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.nav-pills > .nav-item {
    position: relative;
}

.nav-pills > .nav-item.unread-content::after {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    background-color: var(--alert-color);
    border-radius: 50%;
    top: 8px;
    right: 8px;
}

.nav-pills > .nav-item:not(:first-child) {
    margin-left: 15px;
}

.nav-tabs {
    border-bottom: none;
}

.nav-tabs.nav-justified .nav-link {
    height: 100%;
}

.nav-tabs .nav-link,
.nav-tabs .nav-link.active {
    background-color: transparent;
    border-radius: 0 !important;
    border: none;
    font-size: 12px;
}

.nav-tabs .nav-link.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.nav-tabs .nav-link:not(.active) {
    color: var(--grey-darker-color);
    border-bottom: 2px solid var(--grey-lighter-color);
}

.nav-link {
    font-size: 14px;
    color: var(--black-color);
}

.nav-link.active,
.nav-link:hover {
    color: var(--primary-color);
}

.sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    padding: 48px 0 0;
}

@media (max-width: 767.98px) {
    .sidebar {
        top: 5rem;
    }
}

.sidebar-sticky {
    position: relative;
    top: 0;
    height: calc(100vh - 48px);
    padding-top: 0.5rem;
    overflow-x: hidden;
    overflow-y: auto;
}

.sidebar .nav-link {
    font-weight: 500;
    color: #333;
}

.sidebar .nav-link .feather {
    margin-right: 4px;
    color: #727272;
}

.sidebar .nav-link.active {
    color: #2470dc;
}

.sidebar .nav-link:hover .feather,
.sidebar .nav-link.active .feather {
    color: inherit;
}

.sidebar-heading {
    font-size: 0.75rem;
    text-transform: uppercase;
}

.state-item span:hover {
    cursor: pointer;
}

.img-white {
    margin-right: 6px;
    filter: invert(100%);
}

.navbar-brand {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    font-size: 1rem;
    background-color: var(--white-color);
}

#chart {
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 800px) {
    .navbar-brand {
        padding: 30px 0 !important;
    }

    .navbar-brand > img {
        width: 75%;
    }
}

.navbar .navbar-toggler {
    top: auto;
    right: revert !important;
    outline: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar .form-control {
    padding: 0.75rem 1rem;
    border-width: 0;
    border-radius: 0;
}

.navbar-dark .navbar-toggler {
    border-color: transparent;
}

.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='#9b1e11' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav {
    flex-direction: row;
    justify-content: flex-end;
}

@media screen and (max-width: 767px) {
    .navbar {
        background-color: var(--white-color);
    }

    .navbar .navbar-toggler {
        top: auto;
        right: 10rem;
    }
}

.table > thead {
    background-color: var(--grey-color);
    color: var(--black-color);
    font-weight: 500;
    font-size: 14px;
    line-height: 30px;
    border-radius: 4px;
    border-style: hidden;
}

.table > thead.bg-transparent {
    background-color: transparent;
}

.table > thead tr > th {
    border-bottom-width: 0;
}

.table > thead :first-child:not(input[type="checkbox"]) {
    padding-left: 1rem;
}

.table > thead :last-child:not(input[type="checkbox"]) {
    padding-right: 1rem;
}

.table-last-child > thead :last-child {
    padding-right: 0 !important;
}

.table > tbody {
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
}

.table > tbody > tr {
    line-height: 40px;
    vertical-align: middle;
}

.table > tbody > tr td:first-child {
    padding-left: 1rem;
}

.table > tbody > tr td:last-child {
    padding-right: 1rem;
}

.table > tbody > tr td.max12rem {
    max-width: 12rem;
    overflow: hidden;
    text-overflow: ellipsis;
}

.countryAutoComplete + .bootstrap-autocomplete {
    margin-top: 30px;
}

.nafCodeAutoComplete + .bootstrap-autocomplete {
    margin-top: 30px;
}

.collectiveAgreementAutoComplete + .bootstrap-autocomplete {
    margin-top: 35px;
}

.badge {
    border-radius: 8px;
    text-transform: uppercase;
    padding: 7px 10px;
    font-weight: 500;
}

.modal-backdrop.show {
    opacity: 0.5;
}

.modal-backdrop {
    background-color: #9b1e11;
    width: 150vw;
    height: 150vh;
}

.modal-dialog {
    width: 100%;
    max-width: 100%;
    min-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px;
}

@media (min-width: 576px) {
    .modal-content {
        max-width: 500px;
    }
}

.modal-title {
    font-size: 26px;
    font-weight: 600;
    text-align: center;
    margin: 0;
}

.modal-title::after {
    content: ".";
    line-height: 0;
    font-size: 48px;
    color: var(--primary-color);
}

.modal-textarea {
    width: 100%;
    border: 1px solid #afafaf;
    border-radius: 6px;
    outline: none;
    font-size: 14px;
}

.modal-buttons-container {
    display: flex;
    align-items: center;
    align-self: center;
    gap: 10px;
}

@media screen and (max-width: 767px) {
    .modal.fade .modal-dialog {
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        transform: translateY(0px);
    }

    .modal-dialog {
        position: absolute;
        width: 100%;
        margin: 0;
        bottom: 0;
        left: 0 !important;
        align-items: end;
        -webkit-transform: translateY(-15px);
        -moz-transform: translateY(-15px);
        transform: translateY(-15px);
    }

    .modal-dialog > .modal-content {
        border-radius: 32px;
        border-bottom-left-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
    }
}

.modal-content {
    border: none;
    border-radius: 12px;
    box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.08);
    padding: 1rem;
}
/* Bootstrap Datepicker */
.datepicker {
    box-shadow: 0px 8px 16px rgba(32, 32, 64, 0.08);
    border-radius: 12px;
    border: none;
    font-size: 12px;
}

.datepicker::before {
    border-top: none;
}

.datepicker .datepicker-days {
    padding: 10px;
}

.datepicker table tr td.today,
.datepicker table tr td.today:hover {
    background-color: var(--primary-color) !important;
    color: var(--white-color) !important;
    background-image: none;
}

.datepicker table tr td.active,
.datepicker table tr td.active:hover {
    background-color: var(--secondary-color) !important;
    color: var(--white-color) !important;
    background-image: none;
}
/* Altered Dropzone.JS components */
.dropzone {
    min-height: unset;
    border-radius: 8px;
    border: 2px dashed var(--grey-darker-color);
}
/* Datatables */
div.dataTables_wrapper div.dataTables_info {
    font-size: 12px;
}

.dataTables_paginate .paginate_button.previous,
.dataTables_paginate .paginate_button.next {
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding: 8px 16px;
    border-radius: 12px;
    text-decoration: none;
    cursor: pointer;
    margin: 10px;
}
/* FullCalendar JS */
.fc .fc-toolbar-title {
    font-size: 12px;
    font-weight: 300;
}

.fc .fc-daygrid-event {
    border-radius: 50px;
    margin: 10px 0;
}

.fc .fc-event-title.fc-sticky,
.fc .fc-daygrid-dot-event .fc-event-title {
    background: var(--info-light-color);
    border: 2px solid var(--white-color);
    color: var(--white-color);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    box-shadow: 0px 8px 16px rgba(32, 32, 64, 0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 0;
}

.fc .fc-daygrid-body table {
    border-spacing: 10px 0;
    border-collapse: separate;
}

.fc .fc-daygrid-body table tbody .fc-bg-event.fc-event {
    border-radius: 8px;
}

.fc .fc-daygrid-body table tbody .bg-birthday {
    background-color: var(--purple-light-color);
}

.fc td.fc-day {
    border-radius: 8px;
}

.fc td.fc-day .fc-daygrid-day-number {
    font-size: 16px;
}

.fc .fc-daygrid-day.fc-day-today {
    background-color: transparent;
}

.fc .fc-daygrid-day.fc-day-today .fc-daygrid-day-number {
    background-color: var(--secondary-color);
    border-radius: 8px;
    color: var(--white-color);
    padding: 0 10px;
}

.fc .fc-prev-button,
.fc .fc-next-button {
    background-color: transparent !important;
    color: var(--black-color) !important;
    border: none;
}

.fc .fc-prev-button:focus,
.fc .fc-next-button:focus {
    color: var(--primary-color);
    box-shadow: none;
}

.fc .fc-daygrid-dot-event .fc-daygrid-event-dot {
    display: none;
}

.fc .half-day .fc-event-time {
    display: none;
}

.fc .fc-daygrid-dot-event.fc-event-mirror,
.fc .fc-daygrid-dot-event {
    background: rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 767px) {
    .fc .fc-event-start.half-day-at-start {
        margin-left: 25px !important;
    }

    .fc .fc-event-end.half-day-at-end {
        margin-right: 25px !important;
    }
}

@media screen and (max-width: 996px) {
    .fc .fc-event-start.half-day-at-start {
        margin-left: 36px !important;
    }

    .fc .fc-event-end.half-day-at-end {
        margin-right: 36px !important;
    }
}

.fc .fc-event-start.half-day-at-start {
    margin-left: 45px !important;
}

.fc .fc-event-end.half-day-at-end {
    margin-right: 45px !important;
}

.fc-direction-ltr .fc-daygrid-block-event:not(.fc-event-start),
.fc-direction-rtl .fc-daygrid-block-event:not(.fc-event-end) {
    border-top-left-radius: 50px !important;
    border-bottom-left-radius: 50px !important;
}

.fc-theme-bootstrap5 .fc-list,
.fc-theme-bootstrap5 .fc-scrollgrid,
.fc-theme-bootstrap5 td,
.fc-theme-bootstrap5 th {
    border: none;
}
/* Common components */
.shrink-layout {
    max-width: 1500px;
}

@media screen and (max-width: 767px) {
    .shrink-layout header.navbar {
        position: fixed;
        left: 0;
        width: 100%;
        flex-wrap: nowrap;
    }

    .shrink-layout .sidebar {
        left: 0 !important;
    }

    .shrink-layout #sidebarMenu {
        background-color: var(--white-color);
        left: auto;
    }

    .shrink-layout #sidebarMenu .sidebar-link a {
        font-size: 18px;
    }
}

#sidebarMenu .sidebar-menu-list {
    height: calc(100vh - 141px);
    overflow: auto;
    direction: rtl;
    padding-bottom: 20px;
}

@media screen and (max-height: 768px) {
    #sidebarMenu .sidebar-menu-list {
        height: calc((111vh - 141px));
    }
}

#sidebarMenu .sidebar-menu-list li {
    direction: ltr;
    width: 100%;
    text-align: start;
}

#sidebarMenu .sidebar-menu-list li.patch-note-list-item {
    width: unset;
}

#sidebarMenu .sidebar-menu-list::-webkit-scrollbar {
    width: 24px;
}

#sidebarMenu .sidebar-menu-list::-webkit-scrollbar-thumb {
    border-right: 18px solid rgba(0, 0, 0, 0);
    background-clip: padding-box;
    background-color: #c1c1c1;
}

#sidebarMenu .sidebar-menu-list::-webkit-scrollbar-thumb:hover {
    background-color: #b1b1b1;
}

.shrink-layout .sidebar {
    background-color: transparent;
    left: auto;
}

.shrink-layout .navbar-brand {
    background-color: transparent;
}

.max-vh-50 {
    max-height: 50vh;
}

.max-vh-60 {
    max-height: 60vh;
}

.max-vh-75 {
    max-height: 75vh;
}

@media screen and (max-width: 800px) {
    #mainContent {
        margin-top: 8rem;
    }
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.user-avatar.large {
    width: 64px !important;
    height: 64px !important;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.user-avatar button {
    position: absolute;
    margin-top: -10px;
    margin-left: 25px;
    border: none;
    border-radius: 50%;
    background-color: var(--grey-color);
    line-height: 1;
    box-shadow: 0px 8px 16px rgba(32, 32, 64, 0.08);
    width: 20px;
    height: 20px;
}

.user-avatar button.shrink-header {
    margin-top: 30px;
    margin-left: -10px;
}

.user-avatar > span.letters {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.user-notifications {
    width: 40px;
    height: 40px;
    background-color: var(--white-color);
    border-radius: 12px;
    transition: ease-in-out all 0.2s;
}

.user-notifications:hover {
    background-color: var(--grey-lighter-color);
}

.user-notifications .dropdown-item {
    white-space: unset;
}

.user-notifications .dropdown-item > .icon .status {
    width: 14px;
    height: 14px;
    background-color: transparent;
    border-radius: 50%;
}

.user-notifications .dropdown-item > .icon .status.new {
    background-color: var(--alert-color);
}

.user-notifications .dropdown-item > .content p {
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 0;
}

.user-notifications .dropdown-item > .content small {
    font-size: 12px;
}

.user-notifications .dropdown-item > .close-button button {
    border: none;
    box-shadow: none;
    background-color: transparent;
    border-radius: 50%;
    padding: 10px;
}

.user-notifications .dropdown-item > .close-button button svg {
    width: 16px;
    height: 16px;
}

.user-notifications .dropdown-item > .close-button button svg path {
    stroke: var(--alert-color);
}

.user-notifications .dropdown-item > .close-button button:hover {
    background-color: var(--danger-light-color);
}

.user-notifications .dropdown-item:last-child,
.user-notifications .dropdown-item:last-child:hover {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.user-notifications > .dropdown-menu.show {
    padding: 0;
    min-width: 350px;
    max-height: 65vh;
    overflow-y: auto;
}

.user-notifications.has-notifications::after {
    content: "";
    width: 12px;
    height: 12px;
    background-color: var(--alert-color);
    border: 2px solid var(--white-color);
    border-radius: 50%;
    position: absolute;
    left: 20px;
    top: 10px;
}

.facility-cards-container {
    flex: 1;
    overflow: auto;
}

.facility-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.facility-cards p {
    margin: 0;
}

.facility-cards > .facility-card {
    display: flex;
    align-items: center;
    border-radius: 12px;
    padding: 12px;
    transition: ease-in-out all 0.2s;
}

.facility-cards > .facility-card:hover {
    background-color: var(--secondary-color) !important;
    cursor: pointer;
    color: var(--white-color);
}

.facility-cards > .facility-card .letters-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.facility-cards > .facility-card .letters-icon div {
    display: flex;
    font-size: 14px;
    font-weight: 500;
    padding: 10px;
    height: 46px;
    width: 46px;
    align-items: center;
    justify-content: center;
}

.facility-cards > .facility-card .letters-icon span {
    text-transform: uppercase;
}

.facility-cards > .facility-card .details {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-left: 15px;
}

.facility-cards > .facility-card .details p {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0;
    overflow: hidden;
    white-space: normal;
}

.facility-cards > .facility-card .details p:first-child {
    text-transform: uppercase;
}

.facility-cards > .facility-card .details p:last-child {
    font-size: 12px;
    font-weight: 400;
}

.user-card {
    position: relative;
    display: flex;
    align-items: center;
    border-radius: 12px;
    padding: 12px;
    margin: 10px 0;
    transition: ease-in-out all 0.2s;
}

.user-card.unread-content::after {
    content: "";
    width: 14px;
    height: 14px;
    background-color: var(--alert-color);
    border-radius: 50%;
    border: 2px solid var(--grey-color);
    position: absolute;
    top: 10px;
    left: 10px;
}

.user-card:not(.user-card.no-hover-effect):hover {
    background-color: var(--secondary-color) !important;
    cursor: pointer;
    color: var(--white-color);
}

.user-card .letters-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 500;
    padding: 10px;
    height: 38px;
    width: 38px;
    text-align: center;
}

.user-card .letters-icon span {
    text-transform: uppercase;
}

.user-card .details {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-left: 15px;
}

.user-card .details p {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 0;
    text-transform: capitalize;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-card--link {
    text-decoration: none;
}

.notifications-center:hover {
    cursor: grab;
}

.notification-card {
    position: relative;
    display: flex;
    align-items: center;
    border-radius: 12px;
    padding: 12px;
    margin: 10px 0;
    transition: ease-in-out all 0.2s;
    min-width: 250px;
}

.notification-card.unread-content::after {
    content: "";
    width: 14px;
    height: 14px;
    background-color: var(--alert-color);
    border-radius: 50%;
    border: 2px solid var(--grey-color);
    position: absolute;
    top: 10px;
    left: 10px;
}

.notification-card.large-height {
    height: 110px;
}

.notification-card .close {
    width: 14px;
    height: 14px;
    position: absolute;
    top: 2px;
    right: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url("../svgs/close.svg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

.notification-card .close:hover {
    cursor: pointer;
}

.notification-card:not(.notification-card.no-hover-effect):hover {
    cursor: pointer;
}

.notification-card .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    padding: 10px;
    height: 38px;
    width: 38px;
    text-align: center;
}

.notification-card .icon span {
    text-transform: uppercase;
}

.notification-card .avatar-stack {
    display: flex;
}

.notification-card .avatar-stack .avatar-item {
    height: 32px;
    width: 32px;
    display: inline-block;
    transition: margin 0.1s ease-in-out;
    text-decoration: none;
    filter: drop-shadow(0px 8px 16px rgba(32, 32, 64, 0.08));
}

.notification-card .avatar-stack .avatar-item .avatar {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    border: 2px solid #fff;
}

.notification-card .avatar-stack .avatar-item.last-item-overlap {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    margin-left: -10px;
    border-radius: 50%;
    border: 2px solid #fff;
    text-decoration: none;
    color: var(--white-color);
}

.notification-card .avatar-stack .avatar-item + .avatar-item {
    margin-left: -20px;
}

.notification-card .avatar-stack .avatar-item:first-child {
    z-index: 4;
}

.notification-card .avatar-stack .avatar-item:nth-child(2) {
    z-index: 5;
}

.notification-card .avatar-stack .avatar-item:last-child {
    z-index: 7;
}

.notification-card .avatar-stack .avatar-item:last-child .avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    border-radius: 50%;
    border: 2px solid #fff;
    background-color: var(--primary-color);
    text-decoration: none;
    color: var(--white-color);
}

.notification-card .details {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-left: 15px;
}

.notification-card .details p {
    font-size: 13px;
    margin-bottom: 0;
    white-space: normal;
    text-transform: capitalize;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notification-card .link {
    color: var(--primary-color);
}

.onboarding-centered-container {
    width: 400px;
    padding: 60px 30px 30px 30px;
}

.login-page {
    padding: 60px 30px 30px 30px;
}

.select-company-container {
    width: 400px;
    max-height: min(calc(100vh - 180px), 600px);
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 30px;
    padding-top: 5px;
    margin: auto;
    margin-top: 0;
    margin-bottom: 0;
}

.shadowed-section {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0px 8px 16px rgba(32, 32, 64, 0.08);
}

.header-top {
    height: 150px;
    display: flex;
    align-items: center;
    background-color: var(--grey-color);
}

.cursor-pointer {
    cursor: pointer;
}

.padding-top-150 {
    padding-top: 150px;
}

.padding-top-300 {
    padding-top: 300px;
}

.margin-top-150 {
    margin-top: 150px;
}

.margin-top-300 {
    margin-top: 300px;
}

.title {
    font-size: 24px;
    font-weight: 600;
    color: var(--secondary-color);
}

.title::after {
    content: ".";
    color: var(--primary-color);
    font-size: 2em;
}

.title-secondary {
    font-weight: 500;
    font-size: 24px;
    line-height: 36px;
    color: var(--black-color);
}

.title-tertiary {
    font-weight: 500;
    font-size: 16px;
    line-height: 27px;
    color: var(--black-color);
}

.title-form-separator {
    font-weight: 500;
    font-size: 16px;
    color: var(--black-color);
}

.title-form-separator::after {
    content: ".";
    color: var(--primary-color);
    font-size: 2.5em;
}

.title-form-separator.no-after::after {
    content: none;
}

.sidebar {
    background-color: var(--white-color);
}

.sidebar-menu-list {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 30px;
    margin-top: 40px;
    padding-right: 0;
}

.left-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 320px;
    padding: 30px;
    background-color: var(--white-color);
}

.sidebar-link {
    font-weight: 400;
    line-height: 21px;
}

.sidebar-link.active > a {
    color: var(--primary-color);
    font-weight: 600;
}

.sidebar-link a {
    font-size: 14px;
    text-decoration: none;
}

.sidebar-link.active > a img {
    filter: invert(0) sepia(1) saturate(10) hue-rotate(300deg);
}

.icon-link-container {
    min-width: 25px;
    width: 25px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.btn-rounded {
    border-radius: 12px !important;
}

.search-header-field input {
    background-color: var(--white-color);
    border-radius: 12px;
    padding: 10px 20px 10px 5px;
    border: none;
}

.search-header-field .input-group-text {
    background-color: var(--white-color);
    border: none;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    padding: 10px 10px 10px 20px;
    height: 100%;
}

.discuss-messages-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.discuss-messages-container .discuss-message {
    width: 100%;
}

.discuss-messages-container .discuss-message .wrapper {
    padding: 1rem;
    border-radius: 12px;
    width: 80%;
}

.discuss-messages-container .discuss-message .wrapper .user-card small {
    font-style: italic;
    font-weight: 300;
    font-size: 10px;
}

.discuss-messages-container .discuss-message .wrapper .body p {
    font-weight: 300;
    font-size: 12px;
}

.discuss-messages-container .discuss-message.left {
    display: flex;
    justify-content: flex-start;
}

.discuss-messages-container .discuss-message.right {
    display: flex;
    justify-content: flex-end;
}

.discuss-messages-sender-input-group textarea {
    resize: none;
    line-height: 1;
    padding: 15px 0 0 10px;
    border: 1px solid #24242452;
}

.discuss-messages-sender-input-group .input-group-append button {
    border: 1px solid #24242452;
}

.border-grey {
    border-color: var(--grey-color) !important;
}

.custom-input-group .custom-input-group-text {
    padding-bottom: 9px;
    position: absolute;
    border-left: none;
    right: -34px;
}

.custom-input-group-text-invalid {
    border-color: #dc3545 !important;
    color: #dc3545 !important;
}
.custom-input-group-text-valid {
    border-color: #28a745 !important;
    color: #28a745 !important;
}

.custom-input-group {
    width: 385px;
}

.state-label,
.statusFilterOption {
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    border-radius: 8px;
    border: 1px solid transparent;
    opacity: 0.5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
    gap: 2.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.state-label.border-less {
    border: none !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.state-label span,
.statusFilterOption span {
    color: var(--black-color);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.state-label.state-label-neutral {
    background-color: #efefef !important;
}

.statusFilterOption-warning {
    background-color: #fbeedd !important;
    border-color: #dcb545;
}

.statusFilterOption-success {
    background-color: #d9f4e7 !important;
    border-color: #79cda5;
}
.statusFilterOption-neutral {
    background-color: #efefef !important;
    border-color: #949494;
}
.statusFilterOption-danger {
    background-color: #fbcece !important;
    border-color: #e76767;
}

.statusFilterOption-danger.active {
    box-shadow: 0 0 0 0.15rem #e76767;
    opacity: 1;
}
.statusFilterOption-neutral.active {
    box-shadow: 0 0 0 0.15rem #949494;
    opacity: 1;
}
.statusFilterOption-success.active {
    box-shadow: 0 0 0 0.15rem #79cda5;
    opacity: 1;
}
.statusFilterOption-warning.active {
    box-shadow: 0 0 0 0.15rem #dcb545;
    opacity: 1;
}

.state-label.state-label-success {
    background-color: #d9f4e7 !important;
    border-color: #79cda5;
}

.state-label.state-label-success.selected,
.state-label.state-label-success:hover {
    border: 1px solid #79cda5;
}

.state-label.state-label-success span {
    background-color: #79cda5;
}

.state-label.state-label-warning,
.state-label.state-label-warning:hover {
    background-color: #fbeedd !important;
}

.state-label.state-label-warning.selected,
.state-label.state-label-warning:hover.selected,
.state-label.state-label-warning:hover,
.state-label.state-label-warning:hover:hover {
    border: 1px solid #dcb545;
}

.state-label-neutral.selected,
.state-label-neutral.selected:hover {
    border: 1px solid #949494 !important;
}

.state-label.state-label-warning span,
.state-label.state-label-warning:hover span {
    background-color: var(--warning-light-color);
}

.state-label.state-label-danger,
.state-label.state-label-danger:hover {
    background-color: #fbcece !important;
}

.state-label.state-label-danger.selected,
.state-label.state-label-danger:hover.selected,
.state-label.state-label-danger:hover,
.state-label.state-label-danger:hover:hover {
    border: 1px solid #e76767;
}

.state-label.state-label-danger span,
.state-label.state-label-danger:hover span {
    background-color: #e76767;
}

.state-label:hover,
.state-label.border-less {
    opacity: 1;
}

.state-label.selected {
    opacity: 1;
}

.statusFilterOption-active,
.state-label.selected:hover {
    opacity: 1 !important;
    box-shadow: 0 0 0 0.25rem #611ad63f;
}
.state-label.state-label-sm {
    padding: 3px 8px;
}

.btn-sm-padding-shrink {
    padding: 12px;
}

.border-less {
    border: none !important;
}

.employee-state-container {
    display: flex;
}

.employee-state-container > .state-label {
    padding: 4px 15px;
    border-radius: 16px;
}

.btn-circle {
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    transition: ease-in-out all 0.2s;
}

.btn-circle img {
    width: 14px;
    height: 14px;
}

.btn-circle:hover {
    filter: brightness(85%);
}

.btn-slim {
    background-color: var(--grey-color);
    padding: 0 10px;
}

@media screen and (max-width: 767px) {
    .w-100-sm {
        width: 100% !important;
    }
}

.timeline-container {
    border-radius: 12px;
    background-color: var(--white-color);
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 2rem 0;
    overflow-y: auto;
}

.timeline {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
}

.timeline > .timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.timeline > .timeline-item .icon {
    position: relative;
    font-size: 14px;
    font-weight: 500;
    padding: 12px;
    text-align: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--secondary-color);
    border: 5px solid transparent;
    z-index: 2;
}

.timeline > .timeline-item .icon::after {
    content: "";
    width: 3px;
    background-color: var(--grey-light-color);
    height: 35px;
    bottom: -40px;
    left: 10px;
    position: absolute;
    z-index: 1;
}

.timeline > .timeline-item:last-child .icon::after {
    background-color: transparent;
}

.timeline > .timeline-item.active .icon {
    border: 5px solid #e6daf8;
    background-color: var(--primary-color);
    padding: 16px;
    margin-left: -4px;
}

.timeline > .timeline-item.active .icon::after {
    left: 14px;
}

.timeline > .timeline-item.active .details {
    color: var(--primary-color);
    font-weight: 600;
}

.timeline > .timeline-item.todo .icon {
    border: 5px solid transparent;
    background-color: #9e9ab3;
}

.timeline > .timeline-item .details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.timeline > .timeline-item .details p {
    margin-bottom: 0;
}

@media screen and (max-height: 768px) {
    body {
        zoom: 90%;
    }
}

.btn-thread {
    display: none !important;
}

.history-popover {
    max-width: 100%;
}

.timeline-container {
    overflow-y: auto;
    height: 400px;
}

div.dts div.dataTables_scrollBody {
    background: inherit !important;
}

.timeline-actions-history {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
}
.timeline-actions-history > .timeline-item {
    display: flex;
    justify-content: space-between;
    /*height: 100%;*/
}
.timeline-actions-history > .timeline-item .icon-container {
    height: 100%;
    position: relative;
}
.timeline-actions-history > .timeline-item .icon-container .icon {
    font-size: 14px;
    font-weight: 500;
    color: var(--white-color);
    padding: 15px;
    text-align: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--secondary-color);
    border: 5px solid transparent;
    z-index: 2;
}
.timeline-actions-history > .timeline-item .icon-container::after {
    content: "";
    border: 1px dashed #667085;
    background-color: var(--grey-light-color);
    height: 67px;
    left: 19px;
    position: absolute;
    z-index: 1;
}
.timeline-actions-history > .timeline-item:last-child .icon-container::after {
    border: none;
}
.timeline-actions-history > .timeline-item.active .icon {
    border: 5px solid #e6daf8;
    background-color: var(--primary-color);
    padding: 16px;
}
.timeline-actions-history > .timeline-item.active .icon::after {
    left: 14px;
}
.timeline-actions-history > .timeline-item.active .details {
    color: var(--primary-color);
    font-weight: 600;
}
.timeline-actions-history > .timeline-item.todo .icon {
    border: 5px solid transparent;
    background-color: #9e9ab3;
}
.timeline-actions-history > .timeline-item .details {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.timeline-actions-history > .timeline-item .details p {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
}
.timeline-actions-history > .timeline-item .details small {
    font-weight: 400;
    font-size: 10px;
    line-height: 15px;
    color: #667085;
}
.timeline-actions-history > .timeline-item .details ul {
    padding-left: 15px;
    margin-top: 10px;
}
.timeline-actions-history > .timeline-item .details ul li {
    font-weight: 400;
    font-size: 10px;
    line-height: 15px;
    color: var(--black-color);
}
section.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

section.disabled input,
section.disabled textarea {
    pointer-events: none;
}

.scrollable-small-content {
    max-height: 200px;
    overflow-y: auto;
}

.row-with-unified-height {
    height: 60vh;
}

.row-with-unified-height:first-child {
    height: 60vh;
}

.row-with-unified-height:last-child {
    height: 60vh;
}

.quick-access-header {
    position: relative;
}

.quick-access-add {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.employee-table-container {
    display: flex;
    overflow: auto;
}

.employee-table {
    border-spacing: 0;
    border-collapse: separate;
    overflow: hidden;
    height: 1px;
}

.employee-table tr {
    height: 100%;
}

.employee-table .first-column {
    min-width: 250px;
    border-left: 1px solid var(--grey-color);
}

.employee-table .has-border-top {
    border-top: 1px solid var(--grey-color);
}

.employee-table th,
.employee-table td {
    border-right: 1px solid var(--grey-color);
    border-bottom: 1px solid var(--grey-color);
}

.employee-table .upper-left {
    border-top-left-radius: 8px;
}

.employee-table .upper-right {
    border-top-right-radius: 8px;
}

.employee-table .bottom-left {
    border-bottom-left-radius: 8px;
}

.employee-table .bottom-right {
    border-bottom-right-radius: 8px;
}

.employee-table tr th.last-upper-right:last-of-type {
    border-top-right-radius: 8px;
}

.employee-table tr td.last-bottom-right:last-of-type {
    border-bottom-right-radius: 8px;
}

.employee-table .empty-placeholder {
    border: none;
}

.employee-table .frequency-row {
    border: none;
    border-right: 1px solid var(--grey-color);
    border-top: 1px solid var(--grey-color);
}

.employee-table .frequency-row:nth-of-type(2) {
    border-left: 1px solid var(--grey-color);
    border-top-left-radius: 8px;
}

.employee-table .frequency-row:last-of-type {
    border-top-right-radius: 8px;
}

.employee-table .frequency-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.employee-table .frequency-row label {
    font-size: 12px;
    font-weight: 400;
    margin-top: 2px;
    cursor: pointer;
    white-space: nowrap;
}

.employee-table .frequency-row input {
    cursor: pointer;
}

.employee-table .frequency-row input:disabled + label {
    cursor: default;
}

.employee-table th {
    padding: 10px;
    font-size: 16px;
    height: 60px;
    min-width: 200px;
    white-space: nowrap;
    background-color: var(--account-color);
}

.employee-table p {
    margin: 0;
}

.employee-table th.pay-variable-header-0 {
    background-color: var(--benefits-color);
}

.employee-table th.pay-variable-header-1 {
    background-color: var(--prime-color);
}

.employee-table th.pay-variable-header-2 {
    background-color: var(--charges-color);
}

.employee-table th.pay-variable-header-3 {
    background-color: var(--account-color);
}

.employee-table th p.category-header {
    font-size: 11px;
    font-weight: 400;
    color: var(--account-text-color);
}

.employee-table th p.category-header-0 {
    color: var(--benefits-text-color);
}

.employee-table th p.category-header-1 {
    color: var(--prime-text-color);
}

.employee-table th p.category-header-2 {
    color: var(--charges-text-color);
}

.employee-table th p.category-header-3 {
    color: var(--account-text-color);
}

.employee-header {
    background-color: var(--grey-color) !important;
}

.employee-table .total-row {
    font-weight: 600;
}

.employee-table td {
    padding: 10px;
    font-size: 14px;
    height: 100%;
}

.employee-table .mass-add-container {
    padding: 0;
    border: none;
    border-radius: 0 8px 8px 0;
}

.quick-access-add-column {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    background-color: var(--primary-color);
    border-radius: 0 8px 8px 0;
    padding: 5px;
}

.quick-access-add-column > img {
    width: 16px;
    height: 16px;
}

.monthlyCheckboxLabel {
    font-size: 14px;
    font-weight: 400;
}

#massAddElementModal a:not(.advance-payment-button, .modal-back-button),
#massAddElementModal .buttons-container button {
    background-color: var(--grey-6);
    font-size: 16px;
    font-weight: 500;
}

#massAddElementModal .advance-payment-button {
    font-size: 16px;
}

.employee-table .pay-variable-amount {
    padding: 0;
}

.employee-table .pay-variable-input {
    width: 100%;
    height: 100%;
    padding: 10px;
    border: none;
}

.employee-table .qa-value-updated {
    background-color: var(--success-lighter-color);
    color: var(--success-color);
    font-weight: bold;
}

.employee-table .pay-variable-input:disabled {
    background-color: var(--white);
}

.employee-table .employee-startdate-container {
    display: flex;
    flex-direction: column;
}

.employee-table .employee-startdate {
    height: 0;
    border: none;
}

.modal-head {
    padding-left: 1rem;
}

.modal-head .modal-buttons {
    position: relative;
    height: 20px;
}

.modal-head .modal-close-button {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0;
    width: 20px;
    height: 20px;
    border: none;
    background-color: transparent;
}

.modal-head .modal-close-button > img {
    width: 100%;
    height: 100%;
    vertical-align: super;
}

.modal-head .modal-back-button {
    display: flex;
    align-items: center;
    gap: 5px;
    background-color: transparent;
}

#manageRightSelectedEmployees {
    margin-right: 20px;
}

.purple-checkbox {
    accent-color: #c75741;
    width: 16px;
    height: 16px;
}

.divInviter {
    text-align: center;
    margin-top: 30px;
}

.document-upload-preview-image {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: 8px;
    background-color: var(--grey-color);
}

.preview-container-inner {
    cursor: zoom-in;
}

.access-mass-button {
    display: flex;
    align-items: center;
    border: none;
}

.access-mass-button:disabled {
    border: none;
}

.access-mass-button > p {
    font-size: 12px;
}

.subscription-choice-container,
.sendmode-choice-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    border-radius: 32px;
    padding: 10px 50px 25px 50px;
    margin-top: 50px;
    background-color: var(--white-color);
    box-shadow: var(--default-box-shadow);
}

.subscription-choice-container p,
.sendmode-choice-container p {
    margin: 0;
}

.subscription-choice-container .title {
    font-size: 30px;
}

.subscription-choice-container .subscription-logo {
    width: 120px;
    height: 40px;
}

.subscription-choice-container .subscription-box-container {
    display: flex;
    gap: 35px;
}

.subscription-choice-container .subscription-box {
    width: 450px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px;
    border-radius: 17px;
    border: 1px solid var(--secondary-color);
}

.subscription-choice-container
    .subscription-box.free-subscription.single-option {
    gap: 60px;
}

.subscription-choice-container .pricing-container {
    text-align: center;
    border-radius: 5px;
    padding: 8px;
    background-color: var(--secondary-color);
}

.subscription-choice-container .pricing {
    font-size: 20px;
    font-weight: 700;
    color: var(--white-color);
}

.subscription-choice-container .subscription-included-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.subscription-choice-container .subscription-included-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.subscription-choice-container .subscription-included {
    font-size: 15px;
}

.subscription-choice-container .choose-subscription-button {
    font-size: 16px;
    font-weight: 500;
    border-radius: 13px;
    padding: 10px 30px;
    margin-top: 10px;
}

.subscription-choice-container .paid-subscription,
.selected-setting-box {
    background: linear-gradient(var(--secondary-color), var(--primary-color));
}

.subscription-choice-container .paid-subscription .pricing-container {
    background-color: var(--white-color);
}

.subscription-choice-container .paid-subscription .pricing {
    color: var(--secondary-color);
}

.subscription-choice-container .paid-subscription .subscription-included {
    color: var(--white-color);
}

.subscription-choice-container .paid-subscription .choose-subscription-button {
    background-color: var(--white-color);
    color: var(--secondary-color);
}

.subscription-choice-container .choose-subscription-button-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex: 1;
}

.active-employee-definition {
    color: var(--white-color);
    font-size: 12px;
}

.sendmode-box-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sendmode-box {
    display: flex;
    align-items: center;
    gap: 45px;
    padding: 20px 45px;
    border-radius: 17px;
    border: 1px solid var(--secondary-color);
}

.sendmode-box-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.sendmode-box-title {
    font-size: 20px;
    font-weight: 700;
}

.sendmode-included-wrapper {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.sendmode-included-container {
    display: flex;
    align-items: center;
    gap: 7px;
}

.sendmode-button {
    margin-top: 10px;
    padding: 8px 20px;
}

.create-simply-container {
    padding: 30px;
}

.create-simply-container p {
    margin: 0;
}

.create-simply-container .col-form-label {
    font-size: 14px;
    padding-bottom: 5px;
}

.create-simply-container .create-simply-subtitle {
    font-size: 18px;
}

.simply-table .simply-select-checkbox {
    width: 16px;
    height: 16px;
    margin: 0;
    padding: 0 !important;
    margin-bottom: 1px;
}

.simply-payslips-buttons-container {
    display: flex;
    gap: 10px;
}

@media screen and (min-width: 768px) {
    .simply-payslips-buttons-container {
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
    }
}

@media screen and (max-width: 767px) {
    .simply-payslips-top-section {
        flex-direction: column;
        gap: 5px;
    }
}

.simply-employee-email-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
    padding: 7px 0;
    border-radius: 5px;
}

.simply-employee-email-label:not(.disabled-email):hover,
.simply-employee-email-label:not(.disabled-email):has(> input:focus) {
    background-color: var(--bs-table-hover-bg);
}

.simply-employee-email-label:not(.disabled-email):has(> input:focus) > img {
    opacity: 0;
}

.simply-employee-email {
    border: none;
    outline: none;
    height: 100%;
    width: 100%;
    background-color: transparent;
    font-size: 14px;
}

.simply-employee-email::placeholder {
    font-size: 14px;
    opacity: 0.6;
    color: red;
}

.simply-employee-email:disabled {
    color: initial;
}

.simply-edit-email-icon {
    cursor: pointer;
    margin-right: 10px;
}

.simply-table .qa-value-updated {
    color: var(--success-color);
    font-weight: bold;
}

.settings-choice-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.settings-choice-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
    border-radius: 17px;
    border: 1px solid var(--secondary-color);
}

.settings-choice-box p {
    margin: 0;
}

p.settings-choice-title {
    margin-top: 20px;
    font-size: 26px;
    font-weight: 600;
}

.settings-choice-title::after {
    content: ".";
    color: var(--primary-color);
    font-size: 26px;
}

.settings-choice-text {
    margin-top: 10px;
    font-size: 16px;
}

.settings-choice-button {
    margin-top: 20px;
    padding: 8px 20px;
}

.settings-choice-button:disabled,
.simply-send-invite:disabled {
    border: none;
}

.simply-send-invite {
    white-space: nowrap;
    margin-left: 10%;
}

#confirm-settings-choice p {
    margin: 0;
}

#confirm-settings-choice .modal-dialog {
    position: absolute;
    top: 200px;
    left: 50%;
    transform: translateX(-50%) !important;
    margin: 0;
    max-width: 600px;
}

#confirm-settings-choice .modal-content {
    gap: 20px;
    padding: 20px 50px;
}

#confirm-settings-choice .modal-close-button {
    position: absolute;
    top: 10px;
    right: 15px;
    z-index: 9999;
}

.settings-modal-buttons-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.settings-modal-buttons-container .btn {
    padding: 7px 35px;
}

.selected-setting-box {
    border-color: transparent;
}

.selected-setting-box p {
    color: white;
}

p.selected-setting-text {
    margin-top: 30px;
    font-size: 16px;
    font-weight: 600;
}

p.selected-employee-space-text {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-color);
}

.disabled-setting-box {
    color: #b7b7b7;
    background-color: #f2f2f2;
    border-color: #d7d7d7;
}

.disabled-setting-box .settings-choice-title::after {
    color: #b7b7b7;
}

.dropdown-select-employees-btn {
    width: 100%;
    background: #fff;
    color: #212529;
    padding: 8px 10px;
    border-radius: 5px;
    border: 1px solid;
}

.dropdown-select-employees ul {
    width: 100%;
}

.select-user-container {
    display: flex;
    align-items: center;
    margin: 0 20px;
}

.select-user-container input[type="checkbox"] {
    cursor: pointer;
    margin-right: 10px;
}

.select-user-container .user-card {
    margin: 0;
    padding: 5px;
    font-size: 14px;
}

.dropdown-select-employees li {
    border-bottom: 1px solid #d9d9d9;
}

.dropdown-select-employees li:last-child {
    border: none;
}

.dropdown-select-employees ul {
    padding: 5px 0 !important;
}

#chooseLeaveModal button {
    width: 45%;
}

.eventMultipleFormClass .dropdown-menu {
    max-height: 400px;
    overflow: auto;
}

.patch-note-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    padding: 7px 10px;
    border-radius: 4px;
    background-color: #eee4ff;
}

.patch-note-container p {
    margin: 0;
}

.patch-note-title {
    font-weight: 700;
}

.patch-note-subtext {
    font-size: 12px;
}

.patch-note-button {
    font-weight: 500;
    font-size: 12px;
    border-radius: 5px;
    padding: 5px 15px;
}

#editProfileForm input:disabled {
    color: #777;
}

.lockout-message-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px 40px;
}

.lockout-message {
    margin: 0;
    font-size: 16px;
}

.lockout-popay-logo {
    width: 114px;
}

.lockout-back-button {
    font-size: 14px;
}

.add-so-contract-button {
    font-size: 13px;
    padding: 8px 16px;
}

.ignore-so-step-button {
    background-color: #d5d5d5;
    border: none;
    border-radius: 12px;
    margin-left: 10px;
    color: var(--black-color);
    font-size: 14px;
    padding: 12px 24px;
}

.ignore-so-step-button:hover {
    background-color: #e5e5e5;
    color: var(--black-color);
}

.active-nav-link {
    font-weight: bold;
    color: var(--primary-color);
}

.exclamation-mark {
    height: 30px;
    margin-bottom: 8px;
    margin-left: 10px;
}

#switch-subscription-info-modal-dialog {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    height: 100%;
}

#switch-subscription-info-modal-content {
    max-width: 550px;
}

.switch-subscription-info-modal-content-inner > div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.switch-subscription-info-modal-content-inner p {
    font-size: 16px;
}

p.switch-subscription-info-title {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
}

.premium-advantage {
    list-style-type: none;
    display: flex;
    align-items: center;
    line-height: 1.2;
}

.premium-advantage::before {
    content: "●";
    margin-right: 10px;
    color: var(--primary-color);
}

p.subscription-info-2-title {
    font-size: 18px;
    font-weight: bold;
}

.modal-info-container {
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    padding: 6px 14px;
}

.employee-space-progress-text {
    font-size: 16px;
    font-weight: 500;
    color: #404040;
}

@media screen and (max-width: 767px) {
    .absence-types-container {
        flex-direction: column;
    }
}

.switch-accounting-software-option {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    padding: 10px;
    cursor: pointer;
}

.switch-accounting-software-option.checked {
    background-color: #fcf9ff;
    border: 1px solid var(--primary-color);
}

.switch-accounting-software-radio {
    accent-color: var(--primary-color);
}

#customAlertBanner {
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    height: fit-content;
}

.pay-campaign-page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pay-campaign-links-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.pay-campaign-links-container .nav-link {
    cursor: pointer;
}

.pay-campaign-comments-button {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #3f6cff;
    border-radius: 8px;
    background-color: #d1dbfc;
    border: none;
    outline: none;
    font-size: 12px;
    font-weight: 500;
    padding: 0.5rem 1rem;
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
    transition: 0.2s;
}

.pay-campaign-comments-button:hover {
    color: #4f7cff;
    background-color: #c1cbfc;
}

.pay-campaign-content {
    display: flex;
    flex-direction: column;
    padding: 25px;
}

.pay-campaign-content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pay-campaign-period-selector {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.popay-dot {
    line-height: 0;
    font-size: 48px;
    color: var(--primary-color);
}

.pay-campaign-content-title {
    font-size: 16px;
    font-weight: 500;
}

.selected-employee-navigation {
    display: flex;
    align-items: center;
    gap: 30px;
}

.selected-employee-navigation > p {
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.selected-employee-navigation-buttons {
    display: flex;
    gap: 7px;
}

.selected-employee-navigation-button {
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 5px;
    padding: 8px;
    background-color: #e8e8e8;
}

.border-class {
    box-shadow: 0 0 0 0.25rem rgba(214, 63, 26, 0.5);
}

.selected-employee-navigation-button:disabled {
    opacity: 0.5;
}

.employee-variables-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.employee-variables-payslips-container {
    width: 100%;
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.employee-variables-payslips-container p {
    margin: 0;
}

.employee-variable-details {
    display: flex;
    align-items: center;
}

.employee-variable-name {
    font-weight: 700;
    width: 60%;
}

.employee-variable-amount-label {
    font-size: 12px;
    font-weight: 500;
    width: 25%;
}

.employee-variable-amount {
    font-size: 14px;
    font-weight: 700;
    width: 15%;
    text-align: end;
}

input.employee-variable-amount {
    border: 1px solid #e2e2e2;
    border-radius: 4px;
}

input.employee-variable-amount:disabled {
    border: none;
    background: none;
    padding: 0;
    color: inherit;
}

.employee-variable-amount-euro {
    font-size: 14px;
    font-weight: 700;
}

p.employee-variable-comment {
    margin-top: 5px;
    font-size: 12px;
}

.employee-events-section-title,
.employee-payslips-section-title {
    font-size: 16px;
    font-weight: 700;
}

.employee-events-container {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.employee-event-details {
    border-radius: 5px;
    background-color: #f3f3f3;
    padding: 7px;
}

.employee-event-item-table {
    width: 100%;
}

.employee-event-item-table th {
    font-size: 12px;
    font-weight: 400;
    white-space: nowrap;
}

.employee-event-item-table td {
    font-size: 14px;
    font-weight: 500;

    &:not(:first-child) {
        white-space: nowrap;
    }
}

.employee-event-item-table th:not(:last-of-type),
.employee-event-item-table td:not(:last-of-type) {
    padding-right: 40px;
}

.no-variables-placeholder {
    margin-top: 15px;
    width: 100%;
    text-align: center;
    color: #c1c1c1;
}
.employee-payslip-container {
    border-left: 1px solid rgba(32, 32, 64, 0.3);
    padding-left: 15px;
    flex: 1;
}

.employee-payslip-preview {
    width: 100%;
    aspect-ratio: 0.67;
    margin-top: 15px;
}

.collapse-employee-variables-button {
    border: none;
    background: none;
    outline: none;
    padding: 0;
    transition: 0.5s;
}

.collapse-employee-variables-button.rotated {
    rotate: 180deg;
}

.employee-variables-list {
    width: 41%;
    transition: 0.5s;
}

.employee-variables-list.hidden {
    width: 0;
    opacity: 0;
}

#send-payslips-modal .modal-content {
    max-width: 600px;
}

.pay-campaign-comments-title {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.no-pay-campaign-comments-placeholder {
    margin: 0;
    text-align: center;
    color: #c1c1c1;
}

.pay-campaign-comments-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pay-campaign-comment {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
    border-radius: 10px;
    padding: 10px;
}

.pay-campaign-comment.establishment-comment {
    background-color: #e9eeff;
}

.pay-campaign-comment.accounting-comment {
    background-color: #ece0ff;
}

.pay-campaign-comment p {
    margin: 0;
}

.pay-campaign-comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pay-campaign-comment-date {
    font-size: 12px;
}

.pay-campaign-comment-textarea,
textarea.employee-variable-comment {
    width: 100%;
    border-radius: 5px;
    border-color: var(--grey-color);
    font-size: 14px;
    outline: none;
    padding: 4px;
}

textarea.employee-variable-comment {
    overflow: hidden;
    resize: none;
}

.pay-campaign-comment-textarea:focus,
textarea.employee-variable-comment:focus {
    border-color: black;
}

textarea.employee-variable-comment:disabled {
    background: none;
    color: inherit;
    border: none;
    height: auto;
    padding: 0;
}

.add-pay-campaign-comment-button {
    align-self: flex-end;
    border: none;
    outline: none;
}

.add-pay-campaign-comment-button:disabled {
    background-color: var(--grey-color);
    color: #a2a2a2;
}

.add-employee-comment-container {
    display: flex;
    flex-direction: column;
}

.employee-comments-container {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.employee-comments-container p {
    margin: 0;
}

.employee-comment {
    background-color: #d1dbfc;
}

.employee-comment p {
    margin: 0;
}

.pay-campaign-employee-comments-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.pay-campaign-employee-comments-container p {
    margin: 0;
}

.pay-campaign-employee-comment {
    display: flex;
    flex-direction: column;
    background-color: #f4f4f4;
    border-radius: 15px;
}

.pay-campaign-employee-comment-header {
    display: flex;
    gap: 20px;
    align-items: center;
}

.pay-campaign-employee-comment-header p {
    margin: 0;
}

.pay-campaign-employee-comment-jobname {
    font-size: 11px;
    font-weight: 500;
}

.pay-campaign-employee-comment-jobtype {
    font-size: 11px;
}

.pay-campaign-employee-comments-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 3px 12px 12px 12px;
}

.employee-comments-count-container {
    width: fit-content;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 8px;
    background-color: var(--grey-color);
    padding: 0 20px;
}

#confirm-all-payslips-button p {
    font-size: 12px;
}

.pay-slip-comment-reject-label,
.pay-slip-rejection-comment {
    font-weight: 700;
    color: var(--alert-color);
    margin: 0;
}

.icon-button {
    display: inline-flex;
    background: none;
    border: none;
    outline: none;
    padding: 0;
}

.pay-campaign-comment-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}

.comment-buttons,
.edit-comment-buttons {
    display: flex;
    align-items: center;
    gap: 10px;

    img {
        width: 15px;
        height: 15px;
    }
}

.edit-comment-textarea {
    width: 100%;
    background: none;
    border: 1px solid var(--black-color);
    outline: none;
    border-radius: 5px;
    padding: 4px;
    font-size: 14px;
}

#pay-variable-selection-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.select-pay-variable-button {
    font-size: 14px;
}

#add-pay-variable-form {
    display: flex;
    flex-direction: column;
    gap: 10px;

    p {
        margin: 0;
    }
}

.tooltip-anchor {
    position: relative;
    overflow: visible;
}

.custom-tooltip {
    display: none;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, calc(-100% - 5px));
    background-color: var(--grey-6);
    border-radius: 4px;
    padding: 2px 5px;
    border: 1px solid #d0d0d0;
    transition: 0.2s;
    white-space: pre;
    line-height: initial;
    font-size: 12px;
    text-align: center;
    font-weight: 400;
    color: var(--black-color);
}

.tooltip-anchor:hover .custom-tooltip,
.tooltip-anchor:focus .custom-tooltip {
    display: block;
}

.tooltip-info-icon {
    width: 15px;
    height: 15px;
    border: 1px solid #808080;
    border-radius: 50%;
    background-color: transparent;
    line-height: 15px;
    font-size: 10px;
    color: #808080;
    cursor: default;
    text-align: center;
}

.state-label.pay-campaign-status-label {
    display: inline-flex;
}

.build-version {
    text-align: center;
    color: #bbb;
}

.pending-requests-warning-container {
    display: flex;
    flex-direction: column;
    background-color: #f8f4ff;
    border-radius: 10px;
    padding: 14px 8px;
}

.pending-requests-warning-text {
    margin: 0;
    color: var(--primary-color);
    font-weight: 500;
}

a.pending-requests-warning-text {
    text-align: center;
    font-size: 14px;
}

.pending-requests-warning-checkbox-container {
    display: flex;
    align-items: center;
    gap: 5px;

    label {
        color: var(--black-color);
        font-size: 14px;
    }

    input[type="checkbox"] {
        margin-top: 0;
    }
}

.mass-select-checkbox {
    width: 14px;
    height: 14px;
    padding: 0;
    margin: 0;
    margin-bottom: 2px;
    vertical-align: middle;
}

.mass-select-checkbox:checked[type="checkbox"] {
    background-color: var(--primary-color);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

.mass-select-checkbox:indeterminate[type="checkbox"] {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}

.validation-table-container {
    max-height: 380px;
    overflow-y: auto;
}

.events-validation-table,
.pay-variables-validation-table {
    thead tr th:first-child {
        width: 40px;
    }

    div.user-card {
        padding-left: 0;
    }
}

#addManagerModal .modal-content {
    max-width: 900px;
}

.payslip-variables-container,
.employee-event-wrapper {
    display: flex;
    align-items: start;
    gap: 15px;

    & > div:first-child {
        flex: 1;
    }

    .delete-payslip-variable-button {
        width: 20px;
        height: 20px;

        img {
            width: 100%;
            height: 100%;
        }
    }
}

.employee-event-wrapper {
    align-items: center;
}
