@import "variables.css";
@import "fonts.css";
@import "menu.css";
@import "preloader.css";
@import "filter.css";
@import "components/tooltip.css";
@import "components/icons.css";
@import "components/checkbox.css";
@import "components/toast.css";
@import "components/nav-bar.css";
@import "components/modal.css";

body {
    font-family: "Source Sans Pro", sans-serif;
    background-color: #f4f6f9;
}

.opacity-0 {
    pointer-events: none;
    opacity: 0;
}

.cursor-pointer {
    cursor: pointer;
}

.text-bold {
    font-weight: 600 !important;
}

.app-main__inner {
    padding: 2rem;
}

.header.navbar {
    margin-bottom: 2rem;
}

.nav-item .nav-link {
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 600;
}

.card-tools .navbar-nav .dropdown span.dropdown-toggle-split {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #8F9498;
}

.card-tools .navbar-nav .dropdown a.dropdown-item {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #212529;
}

.navbar-nav .dropdown span.dropdown-toggle-split,
.card-header > .nav .nav-link {
    color: rgba(143, 148, 152, 1);
}

.card-header > .nav .nav-link.active {
    color: rgba(108, 117, 125, 1);
}

.card-header > .nav .nav-link.active:hover {
    color: #6C757D;
}

.card-header > .nav .nav-link:hover {
    color: #6C757D;
}

.card-header .nav-tabs {
    border-bottom: 0;
}

.card-header .nav-tabs .nav-item {
    margin-bottom: 0;
}

.card-header .nav-tabs .nav-link {
    border: 0;
    padding: 0.75rem 1rem;
}

.card-header .nav-tabs .nav-link.active {
    background-color: transparent;
}

.kpr-card-tabs-header {
    height: auto;
    padding: 0 24px;
}

.kpr-card-tabs-header > .nav {
    height: auto;
    padding: 0.75rem 0;
}

.kpr-card-tabs-header > .nav .nav-item {
    height: auto;
}

nav.card-header {
    box-sizing: border-box;
    height: 60px;
    padding: 0 calc(2rem - 4px) 0 2rem;
    border: unset;
    background: #FAFBFC;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.card-header.card-header-tab > .nav {
    flex: 1 1 auto;
    min-width: 0;
}

.card-header.card-header-tab > .nav .nav-link {
    white-space: nowrap;
}

@media (min-width: 769px) {
    .card-header.card-header-tab > .nav {
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: thin;
        scrollbar-color: #d0d4d9 transparent;
    }

    .card-header.card-header-tab > .nav::-webkit-scrollbar {
        height: 6px;
    }

    .card-header.card-header-tab > .nav::-webkit-scrollbar-thumb {
        background: #d0d4d9;
        border-radius: 999px;
    }

    .card-header.card-header-tab > .navbar-nav {
        flex-shrink: 0;
    }
}

.card {
    margin-bottom: 2rem;
    color: var(--gray-font-color);
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.px-2 {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
}

.px-3 {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
}

.px-4 {
    padding-right: 1rem;
    padding-left: 1rem;
}

.py-15 {
    padding-top: 15px;
    padding-bottom: 15px;
}

.mr-2 {
    margin-right: 0.5rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.ml-3 {
    margin-left: 0.75rem;
}

.ml-4 {
    margin-left: 1rem;
}

.p-5 {
    padding: 2rem !important;
}

.gap-1 {
    gap: 0.5rem;
}

.gap-2 {
    gap: 1rem;
}

.gap-3 {
    gap: 1.5rem;
}

.gap-4 {
    gap: 2rem;
}

.gap-4px {
    gap: 4px;
}

.gap-6px {
    gap: 6px;
}

.mt-2rem {
    margin-top: 2rem;
}

.flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.justify-around {
    justify-content: space-around;
}

.justify-center {
    justify-content: center;
}

.items-center {
    place-items: center;
}

.h-screen {
    height: 100vh;
}

/*noinspection CssNegativeValue*/
.shadow {
    box-shadow: 0 7px -1px rgba(0, 0, 0, 0.3);
}

.grid {
    display: grid;
}

.block {
    display: block;
}

.w-auto {
    width: auto;
}

.whitespace-nowrap {
    white-space: nowrap;
}

.rounded-sm {
    border-radius: 0.125rem;
}

.rounded-md {
    border-radius: 0.375rem;
}

.border-1 {
    border-width: 1px;
}


.border-top-1 {
    border-top-width: 1px;
}

.border-2 {
    border-width: 2px;
}

.font-semibold {
    font-weight: 600;
}

.blue-btn {
    color: #ffffff;
    border-color: var(--primary-color);
    background-color: var(--primary-color);
}

.blue-btn:hover {
    color: var(--primary-color);
    background-color: #ffffff;
}

.btn {
    font-weight: 600;
    box-sizing: border-box;
    max-height: 40px;
    padding: 10px 48px;
    border-radius: 2px !important;
}


.signup_btn {
    font-weight: 600;
    margin-left: 0.75rem;
    color: #ffffff;

    border-width: 2px;
    border-color: var(--primary-color);
    border-radius: 0.125rem;

    background-color: var(--primary-color);
}

.filter-icon svg {
    width: 17px;
    height: 9px;
    fill: #ced4da;
}

.filter-icon.sort_desc svg g path:nth-child(2),
.filter-icon.sort_asc svg g path:nth-child(1) {
    fill: black;
}

.pr-column {
    margin-right: 71px;
}

.filter-icon:hover svg g path {
    fill: var(--primary-color) !important;
}

.apply_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 40px;
    padding: 10px 44px;
    cursor: pointer;
    transition: 200ms;
    color: #ffffff;
    border: 1px solid white;
    border-radius: 4px;
    background: var(--primary-color);
}

.apply_btn[type="submit"] {
    width: 178px;
}

.apply_btn:hover {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    background-color: #ffffff;
}

.table th,
.table td {
    vertical-align: middle !important;
}

.table-header-span {
    font-size: 15px;
    font-weight: 600;
    color: #495057;
    margin-right: 8px;
}

.card-table-header {
    height: 70px;
}

.w-full {
    width: 100%;
}

.form-group {
    margin-bottom: 0;
}

.card-body, .card-header, .card-footer {
    padding: 24px;
}

.card-footer {
    padding: 0.75em 1.5em 1em 1.5em;
}

.card-body-filter {
    padding: 1em 1.5em 0.75em 1.5em;
}

.roadmap .card-header {
    height: 4.5rem;
    padding: 12px 1.5rem;
    justify-content: normal;
    display: grid;
    grid-template-columns: repeat(3, minmax(100px, 364px)) 1fr auto;
    gap: 1.5rem;
}

.roadmap .card-header select,
.roadmap .card-header input {
    width: 100%;
}

.bootstrap-select.form-control.dropdown {
    max-width: 100% !important;
    height: 3rem;
}

button.btn.dropdown-toggle {
    display: flex;
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: 100%;
    padding: 0 1rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    outline: none !important;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #CED4DA;
    border-radius: 5px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

button.btn.dropdown-toggle .filter-option {
    display: flex;
    align-items: center;
}

button.btn.dropdown-toggle:focus {
    color: #495057;
    background-color: #fff;
    border-color: #a9bcee;
    outline: 0 !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
}

.card-body-roadmap {
    padding: 1.5rem;
}

.card-body-roadmap .events {
    padding: 2rem;
    min-height: 700px;
}

.card-body-roadmap .events .event > div {
    white-space: nowrap;
}

.card-body-roadmap .events .event > div:last-child {
    justify-self: end;
}

.card-body-roadmap .events .event > div > span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-body-roadmap .events .event {
    width: calc(100% - 41px) !important;
    display: grid;
    grid-template-columns: calc(10% - 3rem) calc(28% - 3rem) calc(28% - 3rem) calc(28% - 3rem) 1fr;
    grid-gap: 3rem;
    padding: 1em 1.5em 1em 2em;
    min-height: 87px;
}

.card-body-roadmap .events > div:not(:last-child) {
    margin-bottom: 1.5rem;
}

.card-body-roadmap .events .circle {
    position: relative;
    height: 25px;
    width: 25px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    background: white;
}

.card-body-roadmap .events .circle:not(.event-open)::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    height: 17px;
    width: 17px;
    background: var(--primary-color);
    border-radius: 50%;
}

.card-body-roadmap .events .event-container:not(:nth-last-child(1 of .d-flex)) .circle::after {
    content: '';
    position: absolute;
    top: 23px;
    left: 8.5px;
    height: 86px;
    width: 4px;
    background: var(--primary-color);
}

.event-modal {
    max-width: 580px;
}

.event-show-modal {
    max-width: 580px;
}

.event-modal .modal-body {
    padding: 1rem 1.5rem;
}

.event-modal .modal-footer {
    height: 4rem;
}

.event-destroy-modal .modal-body > div > div,
.event-store-modal .modal-body > div > div,
.event-update-modal .modal-body > div,
.event-modal .modal-body > div > div {
    display: grid;
    grid-template-columns: 167px calc(100% - 167px);
    align-items: center;
    min-height: 47px;
}
.event-show-modal div {
    display: grid;
    grid-template-columns: 167px calc(100% - 167px);
    align-items: center;
    text-wrap: wrap;
    min-height: 47px;
}

.event-store-modal .modal-body > div > div:not(:last-child),
.event-update-modal .modal-body > div:not(:last-child) {
    margin-bottom: 1rem;
}

.event-update-modal .modal-body > div > span:last-child,
.event-modal .modal-body > div > div > span:last-child {
    padding: 1em;
}

.schedule #filters .card-body {
    padding: 1rem 1.5rem;
}

.schedule #filter_form {
    display: grid;
    grid-template-columns: repeat(2, minmax(100px, 586px)) 1fr auto;
    grid-gap: 1.5rem;
}

.schedule #filter_form {
    display: grid;
    grid-template-columns: repeat(2, minmax(100px, 586px)) 1fr auto;
    grid-gap: 1.5rem;
}

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

.card-header-title {
    font-size: 14px;
    font-weight: bold;
    color: #555F78;
}

.card-footer {
    height: 70px;
}

.card .card-footer {
    height: 68px;
}

.card .card-footer div form ~ label {
    font-size: 15px;
    font-weight: 400;
    color: #6c757d;
}

.card .card-footer .pagination {
    font-size: 15px;
    font-weight: 400;
    color: #007BFF;
}

.card .card-footer .pagination .page-item.active {
    font-size: 15px;
    font-weight: 400;
    color: #FFF;
    background: var(--primary-color);
}

.card-header::after,
.card-body::after,
.card-footer::after {
    display: block;
    clear: both;
    content: unset !important;
}

.card-header > .card-tools {
    margin: unset;
}

.filter-card-header {
    padding: 1rem 24px;
}

.grid-row {
    display: grid;
    margin-right: unset;
    margin-left: unset;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 16px;
    column-gap: 24px;
}

button.control {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;
    font-style: normal;
    line-height: normal;
    width: 178px;
    height: 40px;
    text-align: center;
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    max-height: 38px;
}

.reset_btn {
    padding: 10px 48px;
    transition: 200ms;
    color: rgb(63, 106, 216);
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    background: #fff;
}

.reset_btn:hover {
    padding: 10px 48px;
    color: white;
    border-radius: 2px;
    background: var(--primary-color);
}

.text-center {
    text-align: center;
}

.rounded {
    border-radius: 0.25rem;
}

.focus:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
}

.create_btn[type="submit"] {
    width: 154px;
    height: 40px;
    padding: 10px 44px;
    color: #ffffff;
    border: 1px solid white;
    border-radius: 4px;
    background: var(--primary-color);
}

.create_btn:hover {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    background-color: #ffffff;
}

.login__title {
    font-size: 28px;
    font-weight: 600;
    font-style: normal;
    line-height: normal;
    text-align: center;
    letter-spacing: -0.28px;
    text-transform: capitalize !important;
    color: #495057;
}

.login-card-header {
    height: 64px !important;
}

.login_btn {
    font-size: 16px;
    width: 140px;
    height: 40px;
    transition: 200ms;
    color: white;
    border: 2px solid var(--primary-color);
    border-radius: 2px;
    background: var(--primary-color);
}

.login_btn:hover {
    color: var(--primary-color);
    border-radius: 2px;
    background: white;
}

.user-card-dropdown {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    line-height: normal;
}

.user-card-dropdown hr {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.open-dropdown-user {
    position: relative;
}

.open-dropdown-user .notification-dropdown-container {
    position: absolute;
    top: 100%;
    right: 0;
    left: auto;
    margin-top: 0.75rem;
    z-index: 1050;
    width: min(100vw - 32px, 404px);
    max-height: min(80vh, 635px);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.open-dropdown-user .notification-dropdown-container.show {
    display: flex;
}

.user-card-dropdown .messages-circle {
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 14px;
}

.open-dropdown-user svg,
.filter-open-arrow svg {
    transition: 200ms;
}

.open-dropdown-user.show svg,
.filter-open-arrow svg {
    rotate: 180deg;
}

.filter-open-arrow.collapsed svg {
    rotate: 0deg;
}

#logout > button {
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: unset;
    height: unset;
    padding: 9px 18px;
}

.download_btn {
    font-weight: 600;
    display: block;
    width: 11.3rem;
    margin: 0 auto;
    color: white;
    border-width: 2px;
    border-color: var(--primary-color);
    border-radius: 0.125rem;

    background: var(--primary-color);
}

.download_btn:hover {
    color: var(--primary-color);
    background: white;
}

select:not([multiple]) {
    background-image: url("../images/select_arrow.svg");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    appearance: none;
    padding-right: 2.5rem !important;
}

.daterangepicker select {
    background-image: none !important;
    padding-right: 0.75rem !important;
}

.daterangepicker select.yearselect,
.daterangepicker select.monthselect {
    width: auto !important;
    min-width: 80px;
}

.daterangepicker select.monthselect {
    min-width: 110px;
}


input[type="date"]::-webkit-calendar-picker-indicator {
    display: block;
    width: 20px;
    height: 20px;
    opacity: 1;
    color: red;
    border-width: thin;
    background: url("../images/calendar_icon.svg") no-repeat center;
    background-size: 18px;
}

.form-control {
    height: 48px;
    padding: 0 1rem;
    border: 1px solid #CED4DA;
    border-radius: 5px;
}

.multi-select {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    min-height: 48px;
    width: 100%;
    padding: 6px 44px 6px 12px;
    border: 1px solid #CED4DA;
    border-radius: 5px;
    background-color: #fff;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.multi-select.is-open,
.multi-select.is-focused {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(128, 189, 255, 0.25);
    outline: none;
}

.multi-select__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
}

.multi-select__placeholder {
    color: #6C757D;
    font-size: 14px;
}

.multi-select__tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--primary-color, #007bff);
    color: #fff;
    font-size: 13px;
    line-height: 1;
    white-space: nowrap;
}

.multi-select__tag-remove {
    border: 0;
    background: transparent;
    color: inherit;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}

.multi-select__tag-remove:hover {
    opacity: 0.75;
}

.multi-select__caret {
    position: absolute;
    top: 50%;
    right: 16px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #6C757D;
    transform: translateY(-50%);
    pointer-events: none;
}

.multi-select.is-open .multi-select__caret {
    border-top: none;
    border-bottom: 6px solid #6C757D;
}

.multi-select__dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    z-index: 60;
    display: none;
    max-height: 260px;
    overflow-y: auto;
    border: 1px solid #CED4DA;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    padding: 8px 0;
}

.multi-select.is-open .multi-select__dropdown {
    display: block;
}

.multi-select__group-label {
    font-weight: 600;
    font-size: 14px;
    padding: 6px 16px;
    color: #495057;
}

.multi-select__group-label:not(:first-child) {
    margin-top: 4px;
    padding-top: 10px;
    border-top: 1px solid #f1f3f5;
}

.multi-select__option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    font-size: 14px;
    color: #495057;
    cursor: pointer;
}

.multi-select__option:hover {
    background: #f1f3f5;
}

.multi-select__checkbox {
    margin: 0;
}

.multi-select__option span {
    flex: 1;
}

.form-control[name="perPage"] {
    padding: 0 3em 0 1em;
    padding-right: unset !important;
}

textarea.form-control {
    padding: 10px 1rem;
}

.w-7 {
    width: 1.75rem;
}

.h-7 {
    height: 1.75rem;
}

table.ardirp-table {
    font-family: Source Sans Pro, sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    line-height: normal;
    letter-spacing: -0.16px;
    color: #495057;
}

table.ardirp-table thead {
    height: 37px;
}

.table-responsive table.ardirp-table thead th {
    position: sticky;
    top: 0;
    z-index: 2;
    background-color: #f8f9fa;
}

.table.ardirp-table tr th {
    font-size: 15px;
    padding: 0.5em 0;
}

table.ardirp-table thead tr th:first-child,
table.ardirp-table tbody tr td:first-child,
table.ardirp-table tbody tr th:first-child {
    padding-left: 48px !important;
}

table.ardirp-table thead tr th:last-child,
table.ardirp-table tbody tr td:last-child {
    padding-right: 48px !important;
}

.table.ardirp-table tr td p.fio-td {
    font-weight: 600;
    font-size: 1em;
    color: #495057;
}

.table.ardirp-table tr td p.diagnosis-td {
    font-weight: 400;
    font-size: 15px;
    color: #7D8287;
}

.table.ardirp-table tr td span.not-found-td {
    font-weight: 400;
    font-size: 1em;
    color: #495057;
}

.table.ardirp-table tbody {
    font-weight: 400;
    font-size: 1em;
    color: #495057;
}

nav[aria-label="breadcrumb"] {
    /*height: 100%;*/
}

.breadcrumb-header {
    font-size: 22px;
    font-weight: 400;
    color: #495057;
}

.breadcrumb-description {
    font-size: 1rem;
    font-weight: 400;
    color: #8F9498;
}

.breadcrumb {
    align-items: center;
    /*justify-content: end;*/
    height: 100%;
    margin-bottom: unset;
    padding: unset;
    background: unset;
    font-size: 14px;
    font-weight: 400;
}

.breadcrumb-item a {
    transition: 200ms;
    color: #474E56;
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #474E56;
}

.container-fluid {
    padding: 0 !important;
}

.side-nav-bg {
    display: none;
}

.pagination {
    border-radius: 0 0 2px 2px;
}

.pagination .page-item {
    max-height: 35px !important;
}

.pagination .page-item .page-link {
    display: flex;
    align-items: center;
    height: 35px !important;
    padding-top: 0;
    padding-bottom: 0;
    max-height: 35px !important;
}

.action-button, .delete-button {
    width: 28px;
    height: 28px;
    border-radius: 4px;
    background: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    outline: none;
    cursor: pointer;
    border: none;
    color: #fff;
}

.delete-button {
    background: var(--danger);
}

.action-button img,
.action-button svg,
.delete-button img,
.delete-button svg {
    max-height: 100%;
    max-width: 100%;
    color: inherit;
}

.modal.show {
    display: block;
}

@media (max-width: 900px) {
    .grid-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-link {
        line-height: 1.25;
        position: relative;
        display: flex !important;
        align-items: center;
        justify-content: center;
        max-width: 50px;
        margin-left: -1px;
        padding: .5rem !important;
        color: #007bff;
        border: 1px solid #dee2e6;
        background-color: #fff;
    }

    .card-header.card-header-tab > .nav {
        position: fixed;
        z-index: 15;
        top: 0;
        left: 0;
        display: none !important;
        flex-direction: column;
        width: 300px;
        height: 100vh;
        margin: 0;
        padding: 20px;
        background: #FAFBFC;
    }

    .card-header.card-header-tab > .nav.d-flex {
        display: flex !important;
    }

    .side-nav-bg {
        position: fixed;
        z-index: 9;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(38, 38, 38, 0.31);
    }

    .card-header > .nav .nav-item {
        height: auto;
    }

    .card-footer {
        height: auto !important;
    }

    .card-header {
        display: flex !important;
    }

    .pagination li.page-item {
        display: none;
    }


    .pagination li.page-item:last-child,
    .pagination li.page-item:first-child {
        display: inline-block;
    }

    .card-header-tab .nav.mx-0 {
        display: none !important;
    }

    .card-header-tab,
    .card-header-tab .d-block.d-sm-none {
        display: flex !important;
    }
}

/*!* Hamburgers
* @description Tasty CSS-animated hamburgers
* @author Jonathan Suh @jonsuh
* @site https://jonsuh.com/hamburgers
* @link https://github.com/jonsuh/hamburgers*/
.hamburger {
    font: inherit;
    display: inline-block;
    overflow: visible;
    margin: 0;
    padding: 0;
    cursor: pointer;
    transition-timing-function: linear;
    transition-duration: .15s;
    transition-property: opacity, filter;
    text-transform: none;
    color: inherit;
    border: 0;
    background-color: transparent;
}

.hamburger:hover {
    opacity: .7
}

.hamburger.is-active:hover {
    opacity: .7
}

.hamburger.is-active .hamburger-inner, .hamburger.is-active .hamburger-inner::before, .hamburger.is-active .hamburger-inner::after {
    background-color: var(--primary-color)
}

.hamburger-box {
    position: relative;
    display: inline-block;
    width: 24px;
    height: 14px;
}

.hamburger-inner {
    top: 50%;
    display: block;
    margin-top: -1px
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    position: absolute;
    width: 24px;
    height: 2px;
    transition-timing-function: ease;
    transition-duration: .15s;
    transition-property: transform;
    border-radius: 10px;
    background-color: var(--primary-color);
}

.hamburger-inner::before, .hamburger-inner::after {
    display: block;
    content: "";
}

.hamburger-inner::before {
    top: -6px
}

.hamburger-inner::after {
    bottom: -6px
}

.hamburger--elastic .hamburger-inner {
    top: 1px;
    transition-timing-function: cubic-bezier(.68, -.55, .265, 1.55);
    transition-duration: .275s;
}

.hamburger--elastic .hamburger-inner::before {
    top: 6px;
    transition: opacity .125s .275s ease
}

.hamburger--elastic .hamburger-inner::after {
    top: 12px;
    transition: transform .275s cubic-bezier(.68, -.55, .265, 1.55)
}

.hamburger--elastic.is-active .hamburger-inner {
    transition-delay: .075s;
    transform: translate3d(0, 6px, 0) rotate(135deg);
}

.hamburger--elastic.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0
}

.hamburger--elastic.is-active .hamburger-inner::after {
    transition-delay: .075s;
    transform: translate3d(0, -12px, 0) rotate(-270deg);
}

.card-footer nav {
    display: flex !important;
}


input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-clear-button {
    display: none;
}

input[type="search"] {
    -webkit-appearance: none;
    appearance: none;
}

.radio-button {
    margin-right: 16px;
    --radio-button-primary: var(--primary);
}

.radio-button.color-primary {
    --radio-button-primary: var(--primary) !important;
}

.radio-button.color-secondary {
    --radio-button-primary: var(--secondary) !important;
}

.radio-button.color-warning {
    --radio-button-primary: var(--warning) !important;
}

.radio-button.color-danger {
    --radio-button-primary: var(--danger) !important;
}

.radio-button.color-success {
    --radio-button-primary: var(--success) !important;
}

.radio-button.color-info {
    --radio-button-primary: var(--info) !important;
}

.radio-button.color-light {
    --radio-button-primary: var(--light) !important;
}

.radio-button.color-dark {
    --radio-button-primary: var(--dark) !important;
}

.radio-button input[type="radio"]:disabled {
    --radio-button-primary: var(--gray-color) !important;
}

.radio-button label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
}

.radio-button input[type="radio"] {
    --s: 16px; /* control the size */

    height: var(--s);
    aspect-ratio: 1;
    border: 1px solid var(--gray-color);
    border-radius: 50%;
    outline-offset: calc(var(--s) / 10);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    font-size: inherit;
    transition: 50ms;
}

.radio-button input[type="radio"]:checked,
.radio-button.color-primary input[type="radio"]:checked {
    border: 5px solid var(--radio-button-primary);
}

.radio-button input[type="radio"]:hover {
    border: 2px solid var(--radio-button-primary);
}

.radio-button input[type="radio"]:disabled:hover {
    border: 1px solid var(--gray-color);
    cursor: not-allowed;
}

.radio-button input[type="radio"]:checked:hover {
    border: 5px solid var(--radio-button-primary);
}

.col-05 {
    flex: 0 0 3.75%;
    max-width: 3.75%;
}

.col-15 {
    flex: 0 0 11.25%;
    max-width: 11.25%;
}

.col-55 {
    flex: 0 0 43.5%;
    max-width: 43.5%;
}

.fs-15 {
    font-size: 15px;
}

.h-fit-content {
    height: fit-content !important;
}

.row-bg-color-ntn-2-grey > div:nth-child(2n) {
    background: var(--table-second-bg);
}

.min-width-5 {
    min-width: 5rem;
}

.flex-1 {
    flex: 1;
}

.notification-span {
    font-size: 14px;
    font-weight: 700;
}
.unread-notification .notification-circle {
    display:flex;
}
.notification-circle {
    width: 8px;
    height: 8px;
    border-radius: 14px;
    background: #f7b924;
    display:none;
}

.notification-circle-bell {
    min-width: 0;
    height: auto;
    padding: 0;
    border-radius: 0;
    background: transparent;
    position: absolute;
    top: -6px;
    left: -6px;
    right: auto;
    color: var(--primary-color, #3f6ad8);
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    pointer-events: none;
}

.notification-bell-trigger.notification-bell--active img {
    filter: drop-shadow(0 0 6px var(--primary-color, #3f6ad8)) brightness(1.05);
}

.notification-window {
    width: 100%;
    max-width: 404px;
    overflow-y: auto;
    overflow-x: hidden;
    flex: 1 1 auto;
    min-height: 0;
}

.notification-item {
    cursor: pointer;
    padding-bottom: 12px;
}

.notification-item .notification-link {
    color: #3f6ad8;
    text-decoration: underline;
}

.notification-item .notification-link:hover {
    text-decoration: none;
}

.notification-text {
    white-space: pre-line;
    overflow-wrap: break-word;
}

.notification-list-container {
    max-height: calc(80vh - 180px);
    min-height: 320px;
    overflow-y: auto;
    padding-right: 8px;
}

@media (max-width: 576px) {
    .notification-list-container {
        max-height: 60vh;
        min-height: 0;
    }
}

.notification-broadcast-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.notification-broadcast-form .form-group {
    margin-bottom: 0;
}

.notification-broadcast-form .form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-right: 0;
    margin-left: 0;
}

.notification-broadcast-form .form-row .form-group {
    flex: 1 1 240px;
    padding: 0;
}

@media (max-width: 575.98px) {
    .notification-broadcast-form .form-row {
        flex-direction: column;
    }
}

.notification-window::-webkit-scrollbar {
    display: none;
}

.notification-window {
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding-bottom: 5px;
}

.toast-notification-text {
    display: flex;
    flex-direction: column;
    color: #333B42;
    width: fit-content;
    font-size: 14px;
    word-break: normal;
}

.toast-notification-span {
    font-weight: 700;
}


input[type="date"]::-webkit-calendar-picker-indicator {
    display: block;
    width: 20px;
    height: 20px;
    opacity: 1;
    color: red;
    border-width: thin;
    background: url("../../../images/calendar_icon.svg") no-repeat center;
    background-size: 18px;
}

input[type="time"]::-webkit-calendar-picker-indicator {
    display: block;
    width: 20px;
    height: 20px;
    opacity: 1;
    color: red;
    border-width: thin;
    background: url("../../../images/select_arrow.svg") no-repeat center;
    background-size: 18px;
}
html .select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none;
}
html .select2-container--default .select2-selection--single .select2-selection__arrow,
.select2-selection--multiple:before {
    display: block;
    width: 20px;
    height: 20px;
    opacity: 1;
    border-width: thin;
    background: url("../../../images/select_arrow.svg") no-repeat center;
    background-size: 18px;
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

select:not([multiple]) {
    background-image: url("../images/select_arrow.svg");
    background-repeat: no-repeat;
    background-position: right 1.3rem center;
    background-size: 18px;
    appearance: none;
}

.select2-container .select2-selection--multiple .select2-selection__choice {
    max-width: 93%;
    white-space: normal;
}


.schedule-content .event-names {
    margin-right: 5px;
    margin-top: 5px;
    display: flex;
    flex-wrap: wrap;
}

.schedule-content .name {
    border-radius: 3px;
    padding: 5px;
    margin-right: 5px;
    margin-top: 3px;
    color: #3D6AD8;
    background-color: #ffffff;
    width: fit-content;
}

.schedule-content .event-desc {
    margin-top: 5px;
    font-weight: 700;
    font-size: 14px;
    line-height: 22px;
}

.schedule-content .radio-btns {
    display: flex;
    flex-direction: column;
}

.schedule-content .filter-close {
    padding: 0 10px;
}

.schedule-content .select2 {
    width: 100% !important;
}

#fullcalendar {
    background-color: #fff;
    box-shadow: 0 0.46875rem 2.1875rem rgba(4,9,20,.03), 0 0.9375rem 1.40625rem rgba(4,9,20,.03), 0 0.25rem 0.53125rem rgba(4,9,20,.05), 0 0.125rem 0.1875rem rgba(4,9,20,.03);
    border-width: 0;
    transition: all .2s;
}

.fc-createButton-button {
    color: #fff !important;
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    padding: 0.4em 2.5em !important;
}

.fc .fc-toolbar.fc-header-toolbar {
    margin: 1em 1.7em 1em 1.7em;
}

.fc-prev-button, .fc-next-button {
    color: #495057 !important;
    background-color: #fff !important;
    border-color: #CED4DA !important;
    padding: 0 0.25em !important;
}

.fc-today-button {
    color: #495057 !important;
    background-color: #fff !important;
    border-color: #CED4DA !important;
    padding: 0.4em 0.75em !important;
}

.fc-prev-button:hover,
.fc-next-button:hover,
.fc-today-button:hover {
    background-color: #E2E6EF !important;
}

.fc-weekBtn-button {
    margin-left: 1em !important;
}

.fc-weekBtn-button,
.fc-monthBtn-button {
    color: #495057 !important;
    background-color: #fff !important;
    border-color: #CED4DA !important;
    padding: 0.4em 1em !important;
}

.fc-weekBtn-button:hover,
.fc-monthBtn-button:hover {
    background-color: #E2E6EF !important;
}

.schedule-content .view-active {
    background-color: #E2E6EF !important;
}

.fc-day-today {
    background: none !important;
}

.fc-filterBtn-button {
    background-color: #fff !important;
    border-color: #fff !important;
    background-image: url('../../../images/filter.svg');
    background-repeat: no-repeat;
    background-position: center center;
}

.schedule-content thead .fc-scrollgrid-sync-inner {
    height: 100%;
    display: flex;
    align-items: center;
    margin-left: 1em;
}

.schedule-content tr {
    height: 150px !important;
}

.schedule-content thead tr{
    height: 100px !important;
}

.schedule-content .icons-group {
    display: flex;
}

.schedule-content .event-close {
    margin-left: 5px;
}

.fc-event-title-container {
    margin: 0px 5px;
}


/* Event Content */

.schedule-content .event-content {
    height: 102%;
    width: 104%;
    /* background: transparent; */
    margin: -12px -2px 0px -2px;
    border-radius: 3px;
    position: relative;
    color: #1f1f1f;
}

.schedule-content .event-time {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 7px;
    margin: 10px 7px 0px 7px;
    font-weight: 700 !important;
    font-size: 14px !important;
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 22px;
}

.schedule-content .time {
    width: fit-content;
}

.schedule-content .event-body {
    margin: 10px 7px 0px 7px;
}

.schedule-content .event-planned {
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.schedule-content .event-held {
    box-shadow: inset 0 0 0 2px rgba(46, 160, 67, 0.5);
}

.schedule-content .event-status-indicator {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.85);
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    padding: 0;
}

.schedule-content .event-status-indicator--held {
    background-color: #2ea043;
}

.schedule-content .event-status-indicator--interactive {
    cursor: pointer;
}

.schedule-content .event-status-indicator.is-loading {
    position: absolute;
    opacity: 0.7;
}

.schedule-content .event-status-indicator:disabled {
    cursor: default;
    opacity: 0.6;
}

.schedule-content colgroup col{
    width: 75px !important;
}

.fc-timegrid-slot-label {
    vertical-align: baseline !important;
    padding-top: 10px !important;
}

.fc-timegrid-slot-label-frame {
    text-align: center !important;
}

/* month event */
.fc-daygrid-event-harness .event-content {
    margin: -13px -2px -3px -1px;
    width: 101%;
    color: #fff;
}

.fc-daygrid-event-harness .event-body {
    overflow: hidden;
}

.fc-time-grid-event .fc-content {
    overflow: hidden;
    max-height: 100%;
}


.fc-timegrid-event-harness.fc-timegrid-event-harness-inset {
    overflow: hidden;
}

.event-delete,
.edit-event {
    cursor:pointer;
}
.event-relatives.current {
    opacity: 0.9;
    cursor: not-allowed;
    pointer-events: none;
}
.event-relatives {
    border: none;
    border-radius: 5px;
    background: var(--primary-color);
    display: inline-flex;
    padding: 8px 8px;
    align-items: center;
    gap: 16px;
    margin: 5px 5px 0 0;
    color: #FFF;
    font-size: 14px;
    letter-spacing: -0.14px;
    line-height: 100%;
}
.schedule-content .is-loading.card .external-link,
.schedule-content .is-loading.card .card-header-title {
    position: relative;
}

.schedule-content .is-loading.card .external-link:after,
.schedule-content .is-loading.card .card-header-title:after {
    content: '';
    position: absolute;
    top:calc(50% - 15px);
    background: #eee;
    height:30px;
    background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
    border-radius: 5px;
    background-size: 200% 100%;
    animation: 1.5s shine linear infinite;
}

.schedule-content .is-loading.card .external-link:after{
    min-width: 120px;
    width: 15vw;
    right: 0;
}

.schedule-content .is-loading.card .card-header-title:after {
    min-width: 320px;
    width: 50vw;
    left:0;
}

.schedule-content .skeleton-schedule-btn,
.schedule-content .skeleton-schedule {
    display: none;
}

.schedule-content .skeleton-schedule-btn.is-loading,
.schedule-content .skeleton-schedule.is-loading{
    display: grid;
    grid-template-columns: repeat(7, 1fr);

    gap: 12px;
    padding: 12px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}
.schedule-content .skeleton-schedule-btn.is-loading span,
.schedule-content .skeleton-schedule.is-loading span {
    display:block;
    background: #eee;
    background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
    border-radius: 5px;
    background-size: 200% 100%;
    animation: 1.5s shine linear infinite;
}

.schedule-content .skeleton-schedule-btn.is-loading :nth-child(1){
    grid-column: span 1;
}

.schedule-content .skeleton-schedule-btn.is-loading :nth-child(2){
    grid-column: span 1;
}

.schedule-content .skeleton-schedule-btn.is-loading :nth-child(3){
    grid-column: span 1;
    width: 30px;
}

.schedule-content .skeleton-schedule-btn.is-loading :nth-child(4){
    grid-column: span 1;
    grid-column-start: 7;
    grid-column-end: 7;
}

.schedule-content .skeleton-schedule-btn.is-loading span{
    height: 30px;
}
.schedule-content .skeleton-schedule.is-loading span {
    height: 150px;
}

#confirmation-event-modal {
    z-index: 1100;
    margin: auto 0;
}
#confirmation-event-modal.modal.show:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #0000008a;
}
#confirmation-event-modal.modal.show .modal-dialog {
    top: calc(50% - 200px);
    z-index:1;
}

.schedule-create-form {
    display: grid;
    grid-template-columns: 1fr;
}

.schedule-create-form_row {
    display: grid;
    grid-template-columns: 20% 80%;
    grid-auto-rows: auto;
}

.icon-filter {
    background-image: url('../images/filter.svg');
}

.icon-download {
    background-image: url('../images/li_download.svg');

}
