:root {
    --primary-color: #c75741;
    --hoverred-primary-color: #a01313;
    --secondary-color: #9b1e11;
    --hoverred-secondary-color: #703407;
    --black-color: #242424;
    --white-color: #ffffff;
    --grey-color: #e5e5e5;
    --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: #f9fafb;
    --alert-color: #ff6363;
    --info-color: #f97b62;
    --success-color: #12b76a;
    --olive-color: #7b7e6b;
    --warning-color: #feae49;
    --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: #d9f4e7;
    --info-light-color: #d1dbfc;
    --warning-light-color: #f5d789;
    --purple-light-color: #fcbdfd;
    --primary-light-color: #c757416b;
    --danger-lighter-color: #ff8b8b14;
    --success-lighter-color: #d1fcd835;
    --info-lighter-color: #8bdcff14;
    --warning-lighter-color: #f5d78959;
}
body {
    font-family: "Poppins", sans-serif;
    background-color: var(--grey-color);
}
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);
}
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;
}
/* 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;
}
.fw-light-bold {
    font-weight: 500;
}
.bold-600 {
    font-weight: 600;
}
.bold {
    font-weight: 700;
}
.text-primary {
    color: var(--primary-color) !important;
}
.btn {
    border-radius: 6px;
    padding: 12px 24px;
    font-size: 14px;
    transition: ease-in-out all 0.25s;
}
.btn:focus {
    outline: 0;
    box-shadow: 0 0 0 0.25rem #611ad63f;
}
.btn.btn-icon {
    display: flex;
    align-items: center;
}
.btn.btn-icon img {
    padding-right: 5px;
}
.btn.btn-icon.btn-sm {
    padding: 4px 16px;
}
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
}
.btn-primary:disabled {
    background-color: var(--primary-color);
    border-color: var(--primary-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-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-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-blue-gradient {
    background-color: var(--primary-color);
    color: var(--white-color);
}
.btn-blue-gradient:hover {
    color: var(--white-color);
    background-color: var(--hoverred-primary-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-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-outline {
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    border: 1px solid #eaecf0;
}
.btn-sm {
    font-size: 12px;
    padding: 8px 16px;
}
.btn-group .dropdown-menu {
    padding: 10px 0;
    font-size: 12px;
}
.btn-group .dropdown-menu .dropdown-item {
    font-size: 14px;
    line-height: 14px;
    padding: 8px 20px;
}
.btn-group .dropdown-menu .dropdown-item.active,
.btn-group .dropdown-menu .dropdown-item:active {
    background-color: var(--grey-color);
}
.action-icon-button {
    border: none;
    background-color: transparent;
    border-radius: 12px;
    transition: ease-in-out all 0.2s;
    padding: 5px 15px;
}
.action-icon-button:hover {
    background-color: var(--primary-light-color);
}
.action-icon-button:hover svg path,
.action-icon-button:hover svg line,
.action-icon-button:hover svg circle,
.action-icon-button:hover svg rect {
    fill: var(--primary-color);
}
.action-icon-button.danger:hover {
    background-color: var(--danger-light-color);
}
.action-icon-button.danger:hover svg path,
.action-icon-button.danger:hover svg line,
.action-icon-button.danger:hover svg circle,
.action-icon-button.danger:hover svg rect {
    fill: var(--bs-danger);
}
.action-icon-button.warning:hover {
    background-color: var(--warning-light-color);
}
.action-icon-button.warning:hover svg path,
.action-icon-button.warning:hover svg line,
.action-icon-button.warning:hover svg circle,
.action-icon-button.warning:hover svg rect {
    fill: var(--bs-warning);
}
.action-icon-button.success:hover {
    background-color: var(--success-light-color);
}
.action-icon-button.success:hover svg path,
.action-icon-button.success:hover svg line,
.action-icon-button.success:hover svg circle,
.action-icon-button.success:hover svg rect {
    fill: var(--bs-success);
}
.action-icon-button.primary:hover {
    background-color: var(--primary-light-color);
}
.action-icon-button.primary:hover svg path,
.action-icon-button.primary:hover svg line,
.action-icon-button.primary:hover svg circle,
.action-icon-button.primary:hover svg rect {
    fill: var(--primary-color);
}
.link-primary {
    color: var(--primary-color) !important;
    text-decoration: none;
    cursor: pointer;
}
.link-primary:hover {
    color: var(--hoverred-primary-color);
    text-decoration: underline;
}
.link-secondary {
    text-decoration: none;
    cursor: pointer;
}
.link-secondary:hover {
    color: var(--primary-light-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: none;
    border-radius: 12px;
}

.form-control.login-form-email,
.form-control.login-form-password {
    border: 1px solid var(--black-color);
    border-radius: 0.25rem;
}

input.input-bordered,
select.select-bordered,
textarea.textarea-bordered {
    background: var(--white-color);
    border-radius: 8px;
    padding: 10px 10px;
    border: 1px solid #eaecf0;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
}
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;
}
.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: #f9f5ff;
    border-color: var(--primary-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: 0 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 {
    background: var(--white-color);
    border-radius: 8px;
}
.input-group.input-bordered {
    border: 1px solid #eaecf0;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
}
.input-group input {
    background-color: var(--white-color);
    border-radius: 12px;
    padding: 10px 20px 10px 5px;
    border: none;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #101828;
}
.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: var(--white-color);
    color: #475467;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    border-top: none;
    border-bottom: none;
    border-left: none;
    border-right: 1px solid #d0d5dd;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    padding: 10px 10px 10px 20px;
    height: 100%;
}
.input-group.small-icon .input-group-text {
    padding: 10px 0 10px 10px;
}
.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;
}
.input-group.no-outline input {
    box-shadow: none;
}
.input-group > input.form-control[readonly] + .input-group-text,
.input-group > textarea[readonly] + .input-group-text {
    border: none;
}
.breadcrumb {
    --bs-breadcrumb-divider: ">";
}
.breadcrumb .breadcrumb-item {
    font-size: 12px;
}
.tooltip {
    font-size: 12px;
    font-weight: 500;
    background-color: var(--white-color);
    border: 1px solid #eaecf0;
    box-shadow: -3px 4px 12px 2px rgba(0, 0, 0, 0.03);
    border-radius: 12px;
    padding: 10px;
}
.tooltip .tooltip-inner {
    background-color: var(--white-color);
    color: var(--black-color);
}
.tooltip .tooltip-arrow {
    display: none;
}
.popover {
    box-shadow: 0 20px 24px -4px rgba(16, 24, 40, 0.08),
        0px 8px 8px -4px rgba(16, 24, 40, 0.03);
    border-radius: 12px;
    border: none;
    z-index: 999999;
}
.popover > .popover-arrow {
    display: none;
}
.popover .popover-header {
    background-color: var(--white-color);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border: none;
    font-size: 18px;
    font-weight: 500;
    font-family: Poppins;
    display: flex;
    align-items: center;
    padding: 24px 24px 8px 24px;
}
.popover .popover-body {
    font-size: 12px;
}
.popover .popover-body .popover-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 10px;
    margin-top: 20px;
}
.popover .popover-body .popover-footer button {
    flex-grow: 1;
}
@media screen and (max-width: 767px) {
    .alert {
        position: fixed;
        bottom: -82vh;
        left: 0;
        width: 95% !important;
        margin: 0 auto;
        right: 0;
    }
}
header {
    height: 80px;
}
header .dropdown-toggle {
    border: none;
    box-shadow: none;
    background-color: transparent;
}
header .dropdown-toggle::after {
    content: none;
}
header .dropdown-item.active,
header .dropdown-item:active {
    background-color: var(--grey-color);
}
header .navbar {
    background-color: var(--primary-color);
    color: var(--white-color);
}
header .navbar .navbar-brand {
    padding: 0;
}

.navbar-content {
    gap: 1rem;
}

.navbar {
    padding-right: 10px;
}

header .navbar .navbar-content {
    display: flex;
    flex-grow: 1;
    justify-content: space-between;
    align-items: center;
}
@media screen and (max-width: 767px) {
    header .navbar .navbar-content {
        justify-content: flex-end;
    }
}
header .navbar .navbar-content .toolbar {
    display: flex;
    align-items: center;
}
@media screen and (max-width: 1032px) {
    header .navbar .navbar-content .toolbar {
        margin-left: 0;
    }
}
@media screen and (max-width: 767px) {
    header .navbar .navbar-content .toolbar {
        display: none;
    }
}
header .navbar .navbar-content .toolbar .form-select {
    padding: 10px 40px 10px 14px;
    font-size: 14px;
    max-width: 17rem;
}
@media screen and (max-width: 1032px) {
    header .navbar .navbar-content .toolbar .form-select {
        max-width: 8rem;
    }
}
header .navbar .navbar-content .toolbar .buttons {
    display: flex;
    align-items: center;
    align-content: center;
    column-gap: 1rem;
    margin-left: 3rem;
}
@media screen and (max-width: 1032px) {
    header .navbar .navbar-content .toolbar .buttons {
        margin-left: 0.5rem;
        column-gap: 0.2rem;
    }
}
header .navbar .navbar-content .toolbar .buttons .btn-nav-action {
    display: flex;
    background-color: rgba(255, 255, 255, 0.3);
    border-color: transparent;
    color: var(--white-color);
    white-space: nowrap;
    align-items: center;
    column-gap: 0.4rem;
    padding: 8px 24px;
}
@media screen and (max-width: 1032px) {
    header .navbar .navbar-content .toolbar .buttons .btn-nav-action {
        padding: 8px 12px;
    }
}
header .navbar .navbar-content .toolbar .buttons .btn-nav-action:hover,
header .navbar .navbar-content .toolbar .buttons .btn-nav-action:active {
    background-color: rgba(255, 255, 255, 0.4);
    border-color: transparent;
}
header .navbar .navbar-content .toolbar .buttons .btn-nav-action:focus,
header .navbar .navbar-content .toolbar .buttons .btn-nav-action:active:focus {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: transparent;
    box-shadow: 0 0 0 0.25rem rgba(214, 63, 26, 0.5);
}
header .navbar .navbar-content .icons-center {
    display: flex;
}
@media screen and (max-width: 767px) {
    header .navbar .navbar-content .icons-center {
        display: none;
    }
}
header .navbar .user-avatar button {
    z-index: 10;
}
header .navbar .dropdown-menu.show {
    z-index: 9;
    position: absolute;
    left: -18rem;
    top: 3rem;
}
header .navbar .navbar-toggler {
    outline: none;
}
header .navbar .navbar-toggler:focus {
    box-shadow: none;
}
main {
    position: relative;
    display: flex;
    flex-direction: column;
}
main:not(.no-sidebar) > .container-fluid {
    padding-left: 100px;
}
main.no-sidebar aside {
    display: none;
}
.main-page-content section.page-main-actions {
    background: rgba(214, 63, 26, 0.08);
    border-radius: 12px;
    padding: 7px 12px;
    display: flex;
    align-items: center;
}
.main-page-content .silae-sync-state-table {
    background-color: var(--white-color);
    border-radius: 12px;
}
.main-page-content .silae-sync-state-table p {
    margin-bottom: 0;
}
.main-page-content .silae-sync-state-table .headbox {
    padding: 12px 50px;
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    background-color: var(--grey-light-color);
    border-top-left-radius: 12px !important;
    border-top-right-radius: 12px !important;
    border-bottom: 1px solid #eaecf0;
}
.main-page-content .silae-sync-state-table .lines > .line:not(:last-child) {
    border-bottom: 1px solid #eaecf0;
}
.main-page-content .silae-sync-state-table .line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    white-space: nowrap;
    font-weight: 400;
    font-size: 14px;
    padding: 12px 20px;
    line-height: 21px;
}
.main-page-content .silae-sync-state-table .line.ok svg path,
.main-page-content .silae-sync-state-table .line.ok svg circle,
.main-page-content .silae-sync-state-table .line.ok svg rect,
.main-page-content .silae-sync-state-table .line.ok svg line {
    fill: var(--success-color);
}
.main-page-content .silae-sync-state-table .line.nok svg {
    cursor: pointer;
}
.main-page-content .silae-sync-state-table .line.nok svg path,
.main-page-content .silae-sync-state-table .line.nok svg circle,
.main-page-content .silae-sync-state-table .line.nok svg rect,
.main-page-content .silae-sync-state-table .line.nok svg line {
    fill: var(--bs-danger);
}
.main-page-content section.page-filters {
    background: #f4f4f4;
    border-radius: 12px;
    padding: 7px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.main-page-content section.page-filters .filters-container {
    display: flex;
    justify-content: flex-start;
}
.main-page-content
    section.page-filters
    .filters-container
    .search-input.large-content {
    width: 220px;
}
.main-page-content section.page-filters .filters-container .filters {
    display: flex;
    column-gap: 0.8rem;
}
.main-page-content section.page-filters .btn-filter {
    background-color: var(--white-color);
    border-radius: 6px;
    color: var(--black-color);
    font-weight: 500;
    font-size: 12px;
    padding: 0 10px;
    white-space: nowrap;
    transition: all ease-in-out 0.3s;
}
.main-page-content section.page-filters .btn-filter:hover {
    background-color: rgba(214, 63, 26, 0.1);
}
.main-page-content section.page-filters .btn-filter:active,
.main-page-content section.page-filters .btn-filter:focus {
    border: 1px solid var(--primary-color);
}
.main-page-content section.page-filters .actions-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.main-page-content section.page-content {
    background-color: var(--white-color);
    border: 1px solid #eaecf0;
    box-shadow: 0 1px 3px rgba(16, 24, 40, 0.1),
        0 1px 2px rgba(16, 24, 40, 0.06);
    border-radius: 12px;
}
.dropstart .dropdown-toggle::before {
    content: none;
}
.dropdown-menu.show {
    border: none;
    border-radius: 12px;
    padding: 24px 0;
    box-shadow: 0 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;
}

.user-card {
    position: relative;
    display: flex;
    align-items: center;
    border-radius: 12px;
    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;
}

.nav-tabs .nav-link,
.nav-tabs .nav-link.active {
    background-color: transparent;
    border-radius: 0 !important;
    border: none;
    font-size: 12px;
}
.nav-pills-tab {
    border-radius: 8px;
}
.nav-pills-tab .nav-item:first-of-type {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}
.nav-pills-tab .nav-item:first-of-type .nav-link {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}
.nav-pills-tab .nav-item:last-of-type {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}
.nav-pills-tab .nav-item:last-of-type .nav-link {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}
.nav-pills-tab .nav-item {
    background-color: var(--white-color);
    border: 1px solid #d0d5dd;
    filter: drop-shadow(0px 1px 2px rgba(16, 24, 40, 0.05));
    margin-left: 0;
}
.nav-pills-tab .nav-item .nav-link {
    background-color: var(--white-color);
    color: var(--black-color);
    font-size: 14px;
    border-radius: 0;
}
.nav-pills-tab .nav-item .nav-link.active,
.nav-pills-tab .nav-item .nav-link:hover {
    background-color: #d0d5dd;
}
/* Responsive Bootstrap table */
.table-responsive {
    border-radius: 12px;
}
.table-responsive .dataTables_info {
    display: none;
}
.table-responsive .dataTables_length {
    padding: 0 10px;
}
.table-responsive .dataTables_paginate {
    margin-bottom: 20px !important;
    padding: 0 10px;
    display: flex;
    align-items: center;
    column-gap: 10px;
    justify-content: flex-end;
}
.table-responsive a.paginate_button {
    background: var(--white-color);
    border: 1px solid #d0d5dd;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
    border-radius: 8px;
    padding: 8px 14px;
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
}
.table-responsive a.paginate_button:hover {
    background-color: rgba(214, 63, 26, 0.1);
}
.table-responsive a.paginate_button.previous:before {
    content: url("../svgs/arrow-left.svg");
    width: 14px;
    height: 14px;
    display: inline-block;
    margin-right: 10px;
}
.table-responsive a.paginate_button.next:after {
    content: url("../svgs/arrow-right.svg");
    width: 14px;
    height: 14px;
    display: inline-block;
    margin-left: 5px;
}
.table > thead {
    background-color: var(--grey-light-color);
    color: var(--black-color);
    line-height: 30px;
    border-radius: 4px;
    border-style: hidden;
}
.table > thead.bg-transparent {
    background-color: transparent;
}
.table > thead tr > th {
    border-bottom-width: 0;
    font-weight: 500;
    font-size: 12px;
}
.table > thead :first-child {
    padding-left: 1rem;
}
.table > thead :last-child {
    padding-right: 1rem;
}
.table > tbody {
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
}
.table > tbody > tr {
    line-height: 40px;
}
.table > tbody > tr td:first-child {
    padding-left: 1rem;
}
.table > tbody > tr td:last-child {
    padding-right: 1rem;
}
/* Badges design system */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border-radius: 16px;
    padding: 4px 12px 6px 10px;
    font-weight: 500;
    font-size: 12px;
    color: var(--black-color);
}
.badge.badge-dotted:before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
}
.badge.badge-selected {
    border: 1px solid #667085;
}
.badge.badge-primary {
    background-color: rgba(99, 96, 255, 0.2);
}
.badge.badge-secondary {
    background-color: rgba(96, 207, 255, 0.2);
}
.badge.badge-ternary {
    background-color: rgba(96, 255, 169, 0.2);
}
.badge.badge-upcoming {
    background: rgba(53, 45, 97, 0.08);
}
.badge.badge-upcoming:before {
    background-color: var(--black-color);
}
.badge.badge-inprogress {
    background-color: #fffaeb;
}
.badge.badge-inprogress:before {
    background-color: var(--warning-color);
}
.badge.badge-syncing {
    background-color: #fffaeb;
}
.badge.badge-syncing:before {
    background-color: var(--warning-color);
}
.badge.badge-warning {
    background-color: var(--success-light-color);
}
.badge.badge-warning:before {
    background-color: var(--warning-color);
}
.badge.badge-error {
    background-color: #fbcece;
}
.badge.badge-finished,
.badge.badge-enabled,
.badge.badge-validated {
    background-color: var(--success-light-color);
}
.badge.badge-finished:before,
.badge.badge-enabled:before,
.badge.badge-validated:before {
    margin-right: 0;
    width: 12px;
    height: 12px;
    content: url("/svgs/check-success.svg");
}
.badge.badge-error:before {
    content: "";
    margin-right: 0;
    width: 14px;
    height: 14px;
    background-image: url("/svgs/close-bold-red.svg");
    background-size: 14px 14px;
}
.badge.badge.badge-rejected,
.badge.badge.badge-disabled,
.badge.badge.badge-refused {
    background-color: #f4d9d9;
}
.badge.badge.badge-rejected:before,
.badge.badge.badge-disabled:before,
.badge.badge.badge-refused:before {
    background-color: var(--alert-color);
}
.badge.badge-not-rounded {
    border-radius: 6px;
}
/* Filters Popovers */
.custom-popover {
    --bs-popover-max-width: 200px;
    --bs-popover-border-color: var(--bs-primary);
    --bs-popover-header-bg: var(--bs-primary);
    --bs-popover-header-color: var(--bs-white);
    --bs-popover-body-padding-x: 1rem;
    --bs-popover-body-padding-y: 0.5rem;
    background: var(--white-color);
    box-shadow: 0 20px 24px -4px rgba(16, 24, 40, 0.08),
        0px 8px 8px -4px rgba(16, 24, 40, 0.03);
    border-radius: 12px;
}
.modal .modal-label-input {
    color: #344054;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
}
.modal .modal-content {
    border: none;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.13);
    backdrop-filter: blur(4px);
    border-radius: 12px;
    padding: 1rem;
}
.modal .modal-header {
    border-bottom: 2px solid #eaecf0;
}
.modal .modal-footer {
    border-top: none;
}

@media screen and (max-width: 767px) {
    .modal.fade .modal-dialog {
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        transform: translateY(0px);
    }
    .modal .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 .modal-dialog > .modal-content {
        border-radius: 32px;
        border-bottom-left-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
    }
}

.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: 800px;
    }
}

.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-buttons-container {
    display: flex;
    align-items: center;
    align-self: center;
    gap: 10px;
}

/* Bootstrap Datepicker */
.datepicker-dropdown {
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.09) !important;
    border-radius: 16px !important;
    padding: 16px !important;
    border: none;
}
.datepicker-dropdown::before,
.datepicker-dropdown::after {
    display: none;
}
.datepicker-dropdown .datepicker-days {
    padding: 10px;
}
.datepicker-dropdown table tr th.prev {
    color: transparent;
    width: 30px;
}
.datepicker-dropdown table tr th.prev::before {
    content: url("/svgs/arrow-left.svg");
    width: 18px;
    height: 18px;
}
.datepicker-dropdown table tr th.next {
    color: transparent;
    width: 30px;
}
.datepicker-dropdown table tr th.next::after {
    content: url("/svgs/arrow-right.svg");
    width: 18px;
    height: 18px;
}
.datepicker-dropdown table tr th.datepicker-switch {
    font-family: "Poppins", serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 50px;
}
.datepicker-dropdown table tr td span {
    font-size: 14px;
}
.datepicker-dropdown table tr td span.active,
.datepicker-dropdown table tr td span.active:hover {
    background-color: var(--primary-color) !important;
    color: var(--white-color) !important;
    background-image: none;
    border-radius: 12px;
}
/* Common components */
.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;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: var(--success-lighter-color);
}
@media screen and (max-width: 767px) {
    .user-avatar {
        display: none;
    }
}
.user-avatar.rounded {
    border-radius: 50% !important;
}
.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: 30px;
    margin-left: 25px;
    border: none;
    border-radius: 50%;
    background-color: var(--grey-color);
    line-height: 1;
    box-shadow: 0 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(--white-color);
}
.user-notifications .dropdown-item {
    white-space: unset;
}
.user-notifications .dropdown-item:first-of-type {
    display: flex;
    align-items: center;
    column-gap: 10px;
}
.user-notifications .dropdown-item:first-of-type h3 {
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 0;
}
.user-notifications .dropdown-item:first-of-type:hover {
    background-color: var(--white-color);
}
.user-notifications .dropdown-item .user-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-radius: 50%;
    background-color: var(--success-lighter-color);
}
.user-notifications .dropdown-item > .content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: baseline;
    color: #475467;
}
.user-notifications .dropdown-item > .content p {
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    margin-bottom: 0;
}
.user-notifications .dropdown-item > .content b {
    font-weight: 500;
}
.user-notifications .dropdown-item > .content small {
    font-size: 10px;
    font-weight: 400;
}
.user-notifications .dropdown-item > .content button.see-more-button {
    padding: 6px 12px;
}
.user-notifications .dropdown-item > .content button.see-more-button svg {
    width: 16px;
    height: 16px;
}
.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 {
    overflow: auto;
    max-height: 50vh;
}
.facility-cards > .facility-card {
    display: flex;
    align-items: center;
    border-radius: 12px;
    padding: 12px;
    margin: 10px 0;
    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;
    width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.user-card--link {
    text-decoration: none;
}
.notifications-center:hover {
    cursor: grab;
}
.avatar-stack {
    display: flex;
    align-items: center;
}
.avatar-stack .avatar-item {
    height: 32px;
    width: 32px;
    display: flex;
    transition: margin 0.1s ease-in-out;
    text-decoration: none;
    filter: drop-shadow(0px 8px 16px rgba(32, 32, 64, 0.08));
}
.avatar-stack .avatar-item .avatar {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    border: 2px solid #fff;
}
.avatar-stack .avatar-item span.avatar {
    display: flex;
    align-items: center;
    justify-content: center;
}
.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);
}
.avatar-stack .avatar-item + .avatar-item {
    margin-left: -20px;
}
.avatar-stack .avatar-item:first-child {
    z-index: 4;
}
.avatar-stack .avatar-item:nth-child(2) {
    z-index: 5;
}
.avatar-stack .avatar-item:nth-child(3) {
    z-index: 6;
}

.avatar-stack .avatar-item:nth-child(4) {
    z-index: 6;
}

.avatar-stack .avatar-item:nth-child(5) {
    z-index: 7;
}

.avatar-stack .avatar-item:nth-child(6) {
    z-index: 8;
}

.avatar-stack .avatar-item:nth-child(7) {
    z-index: 9;
}

.avatar-stack .avatar-item:nth-child(8) {
    z-index: 10;
}

.avatar-stack .avatar-item:nth-child(9) {
    z-index: 11;
}

.avatar-stack .avatar-item:last-child {
    z-index: 12;
}

.avatar-stack .avatar-item .avatar {
    background-color: var(--grey-color);
}

.avatar-stack .avatar-item:last-child .avatar {
    z-index: 2;
    border-radius: 50%;
    border: 2px solid #fff;
    background-color: var(--primary-color);
    text-decoration: none;
    color: var(--white-color);
}
.onboarding-centered-container {
    width: 400px;
    padding: 60px 30px 30px 30px;
}
.shadowed-section {
    background-color: var(--white-color);
    border-radius: 12px;
    box-shadow: 0 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;
}
.page-title {
    font-size: 20px;
    font-weight: 500;
    font-family: "Poppins", serif;
    color: var(--primary-color);
}
.title-secondary {
    font-size: 18px;
    font-weight: 500;
    color: #242424;
}
.left-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    padding: 110px 20px 30px;
    background-color: var(--white-color);
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    z-index: 100;
    box-shadow: 3px 0 7px rgba(0, 0, 0, 0.04);
}
.left-sidebar nav .navbar-nav {
    row-gap: 1rem;
}
.left-sidebar nav .navbar-nav .nav-item {
    display: flex;
    justify-content: center;
    background-color: var(--grey-light-color);
    border-radius: 6px;
    position: relative;
    width: 48px;
    height: 48px;
}
.left-sidebar nav .navbar-nav .nav-item-disabled a {
    opacity: 0.5;
    cursor: default;
}
.left-sidebar nav .navbar-nav .nav-item:not(.nav-item-disabled):hover {
    cursor: pointer;
    background-color: var(--grey-lighter-color);
}
.left-sidebar
    nav
    .navbar-nav
    .nav-item:not(.nav-item-disabled):hover
    > .collapsable-menu {
    visibility: visible;
    transform: translateX(3px);
}
.left-sidebar nav .navbar-nav .nav-item.active {
    color: var(--primary-color);
    background: rgba(214, 63, 26, 0.08);
}
.left-sidebar nav .navbar-nav .nav-item.active:not(.stroke) svg path,
.left-sidebar nav .navbar-nav .nav-item.active:not(.stroke) svg circle,
.left-sidebar nav .navbar-nav .nav-item.active:not(.stroke) svg rect,
.left-sidebar nav .navbar-nav .nav-item.active:not(.stroke) svg line {
    fill: var(--primary-color);
}
.left-sidebar nav .navbar-nav .nav-item.active.stroke svg path,
.left-sidebar nav .navbar-nav .nav-item.active.stroke svg circle,
.left-sidebar nav .navbar-nav .nav-item.active.stroke svg rect,
.left-sidebar nav .navbar-nav .nav-item.active.stroke svg line {
    stroke: var(--primary-color);
    stroke-width: 2;
}
.left-sidebar nav .navbar-nav .nav-item .nav-link {
    display: flex;
    justify-content: center;
    align-items: center;
}
.left-sidebar .collapsable-menu {
    position: absolute;
    visibility: hidden;
    min-width: 250px;
    top: -20px;
    left: -15px;
    padding: 15px 20px;
    margin-left: 60px;
    background-color: var(--white-color);
    flex-direction: column;
    box-shadow: 0 20px 24px -4px rgba(16, 24, 40, 0.08),
        0px 8px 8px -4px rgba(16, 24, 40, 0.03);
    border-radius: 12px;
    transition: all ease-in 150ms;
    transform: translateX(-3px);
    z-index: 100;
    white-space: nowrap;
}
.left-sidebar .collapsable-menu h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 18px;
}
.left-sidebar .collapsable-menu a {
    text-decoration: none;
    font-weight: 400;
    line-height: 20px;
    font-size: 14px;
}
.left-sidebar .collapsable-menu a:hover {
    font-weight: 500;
}
.left-sidebar .collapsable-menu ul {
    margin-top: 10px;
    list-style: none;
    padding-left: 0;
    font-size: 14px;
}
.left-sidebar .collapsable-menu ul li {
    padding-bottom: 5px;
}
.sidebar-link {
    font-weight: 400;
    line-height: 21px;
    margin: 30px 0;
}
.sidebar-link.active > a {
    color: var(--white-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(233deg);
}
.icon-link-container {
    width: 25px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.btn-rounded {
    border-radius: 12px !important;
}
.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;
}
.state-label {
    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;
    cursor: pointer;
    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 {
    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-success {
    background-color: var(--success-light-color) !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.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.selected,
.state-label:hover,
.state-label.border-less {
    opacity: 1;
}
.state-label.state-label-sm {
    padding: 3px 8px;
}
.btn-sm-padding-shrink {
    padding: 12px;
}
.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 {
    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;
}
.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: 110px;
    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);
}
.file-upload {
    border-radius: 12px;
    background-color: var(--white-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
    color: var(--primary-color);
    padding: 15px 50px;
}
.file-upload .icon {
    width: 40px;
    height: 40px;
    background: #f2f4f7;
    border: 6px solid #f9fafb;
    border-radius: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.file-upload p {
    margin-top: 10px;
    margin-bottom: 0;
}
.file-upload.finished {
    color: var(--success-color);
}
.file-upload.finished .icon {
    background: #d1fadf;
    border: 6px solid #ecfdf3;
    border-radius: 28px;
}
/* Altered Dropzone.JS components */
.dropzone {
    min-height: unset;
    border-radius: 8px;
    border: 2px dashed var(--grey-darker-color);
}
/* Select2 theme override as "popay" */
.select2-container--popay {
    font-size: 14px;
    border: none;
    background: var(--white-color);
    border-radius: 10px;
    padding: 7px 10px;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    color: #101828;
    min-width: 230px;
}
.select2-container--popay .select2-selection--single {
    display: flex;
    align-items: center;
}
.select2-container--popay
    .select2-selection--single
    .select2-selection__arrow
    b {
    border-color: #888 transparent transparent transparent;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    height: 0;
    right: 5%;
    margin-left: -4px;
    margin-top: -2px;
    position: absolute;
    top: 50%;
    width: 0;
}
.select2-container--popay
    .select2-selection--single
    .select2-selection__rendered {
    padding: 0;
}
.select2-container--popay .select2-dropdown {
    background: var(--white-color);
    border-radius: 8px;
    padding: 10px 10px;
    border: 1px solid #eaecf0;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    width: 100%;
    z-index: 1051;
}
.select2-container--popay .select2-dropdown .select2-search__field {
    border-color: transparent;
    background-color: #f4f4f4;
    border-radius: 12px;
    padding: 10px 20px;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #101828;
    outline: none;
}
.select2-container--popay
    .select2-dropdown
    .select2-results__option--highlighted:hover {
    border-radius: 8px;
    background-color: var(--primary-light-color);
}
.disabled {
    pointer-events: none;
    cursor: not-allowed;
    opacity: 0.6;
}

.centered-svg {
    width: 24px; /* ajustez la taille selon vos besoins */
    height: 24px;
    margin-right: 5px; /* espace entre l'image et le texte */
}

/*# sourceMappingURL=main.css.map */

.mass-select-checkbox {
    margin-top: 13px;
}

.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");
}

.global-checkbox {
    width: 14px;
    height: 14px;
    margin-top: 8px;
    padding: 0 !important;
}

ul.navbar-nav li.nav-item.patch-note-button {
    background-color: var(--primary-color);
}

ul.navbar-nav li.nav-item.patch-note-button:not(.nav-item-disabled):hover {
    background-color: var(--primary-color);
}

.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;
}

.variables-action-button {
    display: flex;
    align-items: center;
    gap: 7px;
    font-weight: 500;
    color: black;
    border-radius: 6px;
    padding: 6px 14px;
    background-color: white;
    border: none;
}

.variables-action-button:not(:disabled):hover {
    background-color: rgba(214, 63, 26, 0.1);
}

.variables-action-button:disabled {
    color: black;
    background-color: #d4d4d4;
}

#allCheckbox: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");
}

#allCheckbox:indeterminate {
    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");
}

.switch-subscription-button {
    border-radius: 8px;
    background-color: black;
    padding: 9px 17px;
    color: white;
    font-size: 13px;
    border: none;
}

.switch-subscription-button:hover {
    background-color: #222;
}

#switch-subscription-modal-dialog,
#switch-subscription-success-modal-dialog,
#switch-accounting-software-modal-dialog,
#establishment-settings-modal-dialog,
#add-api-domain-modal-dialog {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    height: 100%;
}

#switch-subscription-modal-content {
    width: 580px;
}

.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;
}

.switch-subscription-modal-content-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 30px;
}

.subscription-modal-title {
    margin: 0;
    font-weight: 600;
    font-size: 28px;
}

.popay-dot {
    line-height: 0;
    font-size: 48px;
    color: var(--primary-color);
}

.exclamation-mark {
    height: 30px;
    margin-bottom: 7px;
    margin-left: 10px;
}

.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);
}

.switch-subscription-info {
    border: 1px solid var(--primary-color);
    background-color: #faf7ff;
    border-radius: 9px;
    padding: 15px;
    margin-top: 20px;
}

.switch-subscription-info p {
    font-size: 14px;
}

.confirm-switch-subscription-button {
    margin-top: 20px;
    border: none;
    background-color: var(--primary-color);
    color: white;
    border-radius: 8px;
    padding: 8px 24px;
    font-size: 16px;
    text-decoration: none;
    transition: background-color 0.3s;
    cursor: pointer;
}

.confirm-switch-subscription-button:hover {
    background-color: var(--hoverred-primary-color);
    color: white;
}

#switch-subscription-success-modal-content {
    position: relative;
    width: 650px;
    height: 380px;
}

.balloons-image {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 350px;
}

.switch-subscription-success-modal-content-inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.subscription-success-modal-title {
    font-size: 36px;
    font-weight: bold;
    margin-top: 15px;
    margin-bottom: 20px;
}

.subscription-success-modal-text {
    width: 400px;
    font-size: 18px;
    text-align: center;
    margin-bottom: 30px;
}

.mass-action-buttons {
    display: none;
}

.dashboard-mass-action-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 6px;
    border: none;
    outline: none;
    background-color: #6c757d;
    color: white;
    padding: 7px 11px;
}

.dashboard-mass-action-button p {
    font-size: 12px;
}

.dashboard-mass-action-button:not(:disabled):hover {
    background-color: #5c656c;
}

#switch-accounting-software-modal-content {
    width: 600px;
    max-height: 90vh;
    overflow: auto;
}

.switch-accounting-software-modal-content-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 35px;
}

.accounting-software-modal-title,
.establishment-settings-modal-title {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    align-self: center;
}

.accounting-software-modal-text {
    font-size: 16px;
}

.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.disabled {
    opacity: 0.7;
}

.switch-accounting-software-option.checked {
    background-color: #fcf9ff;
    border: 1px solid var(--primary-color);
}

.switch-accounting-software-radio {
    accent-color: var(--primary-color);
}

.confirm-switch-accounting-software-button {
    background-color: var(--primary-color);
    color: white;
    font-size: 16px;
    border-radius: 12px;
    border: none;
    padding: 8px 20px;
    margin-top: 40px;
    margin-bottom: 10px;
}

.confirm-switch-accounting-software-button:disabled {
    color: #777;
    background-color: #d4d4d4;
}

#selection-section,
#confirmation-section,
#error-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.establishments-not-found-list {
    width: 100%;
    border: 1px solid #dcdcdc;
    border-radius: 6px;
    padding-top: 5px;
    padding-bottom: 5px;
    max-height: 20vh;
    overflow: auto;
}

.accounting-software-error-tip {
    display: flex;
    align-items: center;
    gap: 25px;
    border: 1px solid var(--primary-color);
    border-radius: 9px;
    padding: 10px 15px;

    p {
        font-size: 16px;
        margin: 0;
    }
}

#establishment-settings-modal-content {
    width: 500px;
}

.establishment-settings-modal-content-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 35px;
}

.establishment-settings-modal-subtitle {
    font-size: 14px;
    font-weight: 500;
}

.establishment-settings-modal-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    outline: none;
    border-radius: 10px;
    padding: 7px 14px;
    font-size: 14px;
    transition: all 0.2s;
}

.establishment-settings-edit-buttons {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

#establishment-settings-confirm-buttons {
    display: none;
}

#customAlertBanner {
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    height: fit-content;
}

.delete-api-domain-button {
    border: none;
    outline: none;
    padding: 0;
    background: none;
    margin-bottom: 3px;
}

.api-domain-select {
    border: 1px solid var(--grey-darker-color);
    border-radius: 8px;
    padding: 9px;
}

.api-domain-select:disabled {
    background-color: #e9ecef;
    padding: 10px;
}

#add-api-domain-modal-content {
    width: 600px;
    max-height: 90%;
    overflow: auto;
}

.campaign-comments-button-container {
    position: relative;
}

.campaign-comments-button {
    display: flex;
    gap: 8px;
    background-color: var(--primary-color);
    color: white;
}

.campaign-comments-button:hover {
    color: white;
    background-color: var(--hoverred-primary-color);
}

.new-comments-badge {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: red;
    position: absolute;
    top: -3px;
    right: -3px;
}

.pay-campaign-comments-back-button {
    font-size: 14px;
    text-decoration: none;
}

.main-pay-campaign-comments-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 12px;
    background-color: white;
    padding: 20px;
    margin-top: 15px;
    margin-bottom: 30px;
}

.no-pay-campaign-comments-placeholder {
    margin: 0;
    text-align: center;
    color: #c1c1c1;
}

.pay-campaign-comments-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pay-campaign-comment {
    display: flex;
    flex-direction: column;
    gap: 5px;
    border-radius: 10px;
    padding: 10px;
    position: relative;
}

.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-container {
    width: 100%;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
}

.pay-campaign-comment-textarea {
    width: 100%;
    border-radius: 5px;
    border-color: var(--grey-color);
    font-size: 14px;
    outline: none;
    padding: 4px;
}

.pay-campaign-comment-textarea:focus {
    border-color: black;
}

.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;
}

.pay-campaign-employee-comments {
    width: 100%;
    white-space: nowrap;
}

.spacing-table-row {
    height: 10px;
}

.pay-campaign-employee-comments p {
    margin: 0;
}

.pay-campaign-employee-comments td {
    font-size: 14px;
}

.pay-campaign-employee-comments td:first-child {
    padding: 15px 40px 15px 15px;
    border-radius: 14px 0 0 14px;
}

.pay-campaign-employee-comments td:not(:first-child):not(:last-child) {
    padding: 15px 40px;
}

.pay-campaign-employee-comments td:last-child {
    padding: 15px 15px 15px 40px;
    border-radius: 0 14px 14px 0;
}

.pay-campaign-employee-comment-user-card {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    font-weight: 500;

    p {
        font-size: 15px;
    }

    .initials {
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-size: 14px;
        height: 38px;
        width: 38px;
    }
}

.pay-campaign-employee-comment-content {
    width: 100%;
    white-space: normal;
}

.pay-slip-comment-reject-label {
    font-weight: 700;
    color: var(--alert-color);
}

.read-employee-comment td {
    background-color: #f5f5f5;
    color: #949494;
}

.mark-read-comment-button {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    background-color: var(--secondary-color);
    border: none;
    outline: none;
    border-radius: 6px;
    padding: 4px 14px;

    img {
        width: 12px;
        height: 12px;
    }
}

.mark-read-comment-button:disabled {
    background-color: var(--grey-color);
    color: black;
}

.mark-all-comments-read-button {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;

    img {
        width: 12px;
        height: 12px;
    }
}

.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;
}

.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);
    z-index: 999;
}

.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;
    margin-left: 5px;
    text-align: center;
}

.tooltip-error-message {
    color: var(--alert-color);
    font-weight: 600;
}

.build-version {
    text-align: center;
    color: #bbb;
    margin-top: 20px;
}

#pay-campaign-error-message {
    margin-bottom: 10px;
    color: var(--alert-color);
    font-weight: 600;
}

#provide-pay-slips-button-text,
#resync-variables-button-text {
    font-size: 12px;
}

#PayCampaignDataTable table thead {
    background-color: none;
    tr {
        th {
            background-color: var(--grey-light-color);
        }

        th:first-child {
            border-top-left-radius: 12px;
        }

        th:last-child {
            border-top-right-radius: 12px;
        }
    }
}

#DashboardGrid tr {
    cursor: pointer;
}

#confirm-resync-modal {
    .modal-content {
        max-width: 500px;
    }
}

.subscription-tier-checkbox-label {
    font-size: 14px;
}

.missing-sick-leave-justification-message {
    color: var(--alert-color);
    font-weight: 500;
    white-space: nowrap;
    margin: 0;

    span {
        font-size: 18px;
    }
}

#sync-errors-list {
    font-size: 14px;
}

.registration-error-warning {
    display: flex;
    align-items: center;
    gap: 15px;
    border: 2px solid #ffca42;
    border-radius: 10px;
    background-color: #ffca4226;
    padding: 15px;

    p {
        font-size: 12px;
        margin: 0;
    }
}
