/* CARAUSEL */
.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-wrapper {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
}

.carousel-card {
    /* min-width: 200px; */
    /* width: 20%; */
    /* background: #ddd; */
    /* padding: 20px; */
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    flex-shrink: 0;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.carousel-button.prev {
    left: 10px;
}

.carousel-button.next {
    right: 10px;
}

/* CARAUSEL */

/* LAYOUTS */

.wrapper {
    /* height: 100vh;
    position: relative;
    overflow: hidden; */
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.main-nav--bg {
    height: fit-content;
}

.page-flex {
    /* height: 93vh; */
    display: flex;
    flex: 1;
    min-height: 0;
    overflow: hidden;
}

.main-wrapper {
    /* position: relative; */

    overflow-y: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

.main {
    /* min-height: 80%; */
    flex: 1;
    display: flex;
    /* align-items: center; */
    /* justify-content: center; */
    /* overflow: auto; */
}

.main-page {
    min-height: 100%;
    margin: 0;
}

.main-container {
    margin-bottom: 60px;
}

.footer {
    position: relative !important;
    /* margin-top: -5% !important; */
}

/* END LAYOUTS */

/* TOPBAR  */

.user-info {
    width: 100px;
}

.sidebar-toggle {
    width: 35px;
    height: 35px;
    background-color: #ffffff;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #f3efef;
    font-size: 20px;
    color: #8016eb;
}

.main-nav {
    padding-top: 10px;
    padding-bottom: 10px;
}

.main-nav-start>.sidebar-toggle {
    display: unset;
}

/* END TOPBAR  */

/* SIDEBAR */

.show-cat-btn.active span {
    color: var(--purple-color);
}

.show-cat-btn.active {
    border: 1px solid var(--color-purple-100);
}

.sidebar-start {
    height: 85%;
    position: relative;
    padding: 10px 0px;
}

.sidebar-head {
    height: 10%;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-top: solid 1px #f4f4f4;
    border-bottom: solid 1px #f4f4f4;
    padding: 0px;
    font-size: 17px;
    margin: 0px 16px;
}

.sidebar-body {
    height: 100%;
    padding: 0px 20px;
    overflow-y: hidden;
    overflow-x: hidden;
}

.sidebar-body:hover {
    overflow-y: auto;
}

.sidebar-footer {
    height: fit-content;
    margin-bottom: 1.5rem;
}

.sidebar .sidebar-body-menu a>.icon {
    font-size: 19px;
}

.cat-sub-menu {
    padding-left: 0px;
}

.cat-sub-menu a {
    padding-left: 25px !important;
}

.cat-sub-menu.hidden {
    display: none;
}

.sidebar-body-menu a::after {
    left: -19px;
    height: 35px;
    background-color: var(--purple-color);
}

.sidebar-body-menu a {
    padding-top: 5px;
    padding-bottom: 5px;
}

.sidebar {
    width: 260px;
    padding: 0px;
    height: 100%;
    min-height: 100%;
    background-color: #fff !important;
}

.sidebar-menu {
    padding: 0px 0px;
}

.sidebar-menu .show-cat-btn.active {
    color: var(--purple-color);
    font-size: 12px;
    background-color: var(--light-purple-color);
    border-radius: 8px;
    padding: 2px 15px;
}

.sidebar-menu .show-cat-btn {
    padding: 2px 15px;
}

.sidebar-menu a.active {
    border-radius: 8px;
    background-color: var(--light-purple-color);
    color: var(--purple-color);
}

.sidebar-menu a {
    color: var(--color-black-500);
    font-size: 12px;
    padding-left: 16px;
}

.sidebar.hidden .cat-sub-menu.visible a {
    padding: 0px !important;
    color: #000000;
}


.system-menu__title {
    color: var(--color-black-500);
    font-size: 10px;
    letter-spacing: 0px;
}

.title-role-short {
    display: none;
}

.content-mode {
    gap: 5px;
}

.icon-company {
    display: none;
}

.toggle-mobile {
    display: none;
}

@media (min-width: 1200px) {
    .sidebar.hidden {
        padding: 0px;
        width: 72px;
    }

    .sidebar.hidden * {
        font-size: 0;
        padding: 0px;
    }

    .sidebar.hidden .sidebar-menu a {
        font-size: 0px;
        padding: 7px;
        width: 34px;
        height: 35px;
    }

    .sidebar.hidden .sidebar-menu {
        padding: 5px 0px;
    }

    .sidebar.hidden .sidebar-body {
        display: flex;
        justify-content: center;
    }

    /* .sidebar.hidden .sidebar-body-menu a::after {
        left: -16px;
    } */

    /* Default: sembunyikan semua ::after */
    .sidebar .sidebar-menu>.menu-item-wrapper>a::after {
        content: none;
    }

    /* Tampilkan ::after hanya jika menu punya submenu */
    .sidebar .sidebar-menu:has(.cat-sub-menu)>.menu-item-wrapper>a::after {
        content: '';
        left: -16px;
    }

    .tooltip-bubble {
        position: absolute;
        background: var(--color-purple-500);
        color: #fff;
        padding: 5px 10px;
        font-size: 12px;
        border-radius: 5px;
        white-space: nowrap;
        z-index: 1000;
        pointer-events: none;
        opacity: 0;
        transform: scale(0.95);
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .tooltip-bubble.show {
        opacity: 1;
        transform: scale(1);
    }

    .tooltip-bubble::before {
        content: '';
        position: absolute;
        top: 50%;
        left: -6px;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        border-top: 6px solid transparent;
        border-bottom: 6px solid transparent;
        border-right: 6px solid var(--color-purple-500);
        ;
        /* warna sama dengan background tooltip */
    }

    .sidebar.hidden .title-role {
        display: none !important;
    }

    .sidebar.hidden .title-role-short {
        display: unset !important;
    }

    .sidebar.hidden .title-role-short h6 {
        font-size: 12px !important;
    }

    .sidebar.hidden .sidebar-head {
        margin-top: 0px;
        padding-bottom: 0px;
    }

    .sidebar.hidden .content-mode {
        gap: 0px;
    }

    .sidebar.hidden .icon-company {
        display: unset !important;
    }

    .sidebar.hidden .card-footer-company {
        display: none !important;
    }

    .sidebar.hidden .sidebar-footer {
        display: grid;
        gap: 3px;
    }
}

@media (max-width: 767.98px) {
    .toggle-mobile {
        display: unset;
    }

    .sidebar-toggle-button {
        display: none !important;
    }
}

/* END SIDEBAR */

/* AUTH CONTENT */

.auth-wrapper {
    width: 100%;
    height: 100vh;
    background: linear-gradient(155.29deg, #ffffff 60.64%, #8117eb 223.11%);
    display: grid;
    align-content: space-between;
}

.auth-wrapper-nonbg {
    width: 100%;
    height: 100vh;
    display: grid;
    background: #fefdff;
    align-content: space-between;
}

.card-sasi-login {
    width: 355px;
    height: 400px;
    border-radius: 18px;
    box-shadow: 3px 8px 16px -1px #0000000a;
    padding: 40px;
    background: #fff;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-login {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    padding: 0 40px;
    color: #8f8f8f;
    font-size: 0.8rem;
    font-weight: 500;
}

/* END AUTH CONTENT */

.mini-circle {
    border-radius: 30px;
    width: 10px;
    height: 10px;
}

.extra-small-circle {
    border-radius: 30px;
    width: 18px;
    height: 18px;
}

.sasi.badge.badge-success {
    display: inline-block !important;
    min-width: 18px;
    width: auto;
    background-color: var(--purple-color);
    color: #fff;
    font-size: 9px;
}

.info.badge.badge-success {
    display: inline-block !important;
    min-width: 18px;
    width: auto;
    background-color: var(--light-purple-color);
    color: var(--purple-color);
    font-size: 9px;
    padding-left: 5px;
    padding-right: 5px;
}

/* FORM WIZARD */

a.nav-link.wizard-button.active {
    color: var(--black-color);
    font-weight: 600;
}

a.nav-link.wizard-button {
    color: var(--grey-color);
}

.wizard-progress {
    width: 3px;
    background: #8016eb;
    height: 33%;
}

/* .wizard-button::before {
        position: absolute;
        content: "";
        height: 22px;
        width: 3px;
        left: 22px;
        background-color: #8016eb;
        transition: 0.3s all;
        top: 51px;
    } */

/* END FORM WIZARD */

/* SEARCH  */

.search-icon {
    position: absolute;
    top: 11px;
    left: 11px;
    color: #e1e1e1;
}

/* END SEARCH  */

/* LABEL PILLS */

.label-pills {
    border-radius: 30px;
    padding: 10px;
}

.label-info-sasi {
    font-size: 10px !important;
    color: #777 !important;
    margin: 0px;
}

/* END LABEL PILLS */

/* RADIO-BUTTON */

.radio-button {
    width: 20px !important;
    height: 20px !important;
}

.btn-accordion:hover {
    background: #e3e4e5 !important;
    color: #fff;
    border-color: #fff;
}

/* END RADIO-BUTTON */

/* FORM INPUT */
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
    box-shadow: 0 0 0 30px white inset !important;
}

.form-input {
    height: 34px !important;
    margin: 0px;
}

.form-input.form-control-sasi {
    height: 34px;
    margin: 0px;
}

.form-input.form-size-sm {
    height: 20px !important;
}

.form-control-sasi {
    padding: 0.55rem 0.5rem;
    border-radius: var(--bs-border-radius-sm);
}

.form-label.required:after {
    content: "*";
    color: red;
    padding-left: 2px;
}

.date-picker {
    height: 34px;
}

input[type="checkbox"] {
    accent-color: #6200ee;
    border: 1px solid #ebebeb;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
}

input[type="checkbox"]:checked {
    accent-color: #6200ee;
    border-color: #6200ee;
}

/* END FORM INPUT */

/* OVERFLOW SCROLL BAR */

/* width */

::-webkit-scrollbar {
    width: 5px;
    height: 8px;
}

/* Track */

::-webkit-scrollbar-track {
    box-shadow: unset;
    border-radius: 7px;
}

/* Handle */

::-webkit-scrollbar-thumb {
    background: var(--purple-color);
    border-radius: 7px;
}

/* Handle on hover */

::-webkit-scrollbar-thumb:hover {
    background: var(--purple-color);
}

/* END OVERFLOW SCROLL BAR */

/* SWEET ALERT */

.swal2-show {
    border-radius: 20px;
    height: 330px;
    width: 343px;
}

.swal2-question {
    background: var(--light-purple-color);
    color: var(--purple-color) !important;
    border-color: var(--purple-color) !important;
}

.swal2-success {
    background: var(--light-green-color) !important;
}

/* END SWEET ALERT */

/* table */

/* td {
        vertical-align: middle;
    } */

table.table-sasi tbody td {
    vertical-align: middle;
    line-height: 1.2;
    padding: 5px 8px;
}

/* END table */

/* IMAGE TOOLTIP */

.image-round-row img {
    border-radius: 50%;
    /* Membuat gambar menjadi bulat */
    margin: 0 -7px;
    /* Memberi jarak antar gambar */
    border: 2px solid #e4e3e3;
    /* Memberi border putih */
    background-color: #cfcfcf;
}

.image-container {
    display: flex;
    align-items: center;
    position: relative;
}

.image-round {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1.8px solid;
    background-size: cover;
    background-position: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 0 -4px;
}

.more-images {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #ede7ff;
    border: 2px solid #fff;
    color: #7954e9;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
}

.tooltip-image {
    display: none;
    position: absolute;
    top: -36px;
    left: 26px;
    background-color: white;
    padding: 4px 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.more-images:hover .tooltip-image {
    display: flex;
}

.tooltip-image .image {
    width: 30px;
    height: 30px;
}

/* END IMAGE TOOLTIP */

/* IMAGE UPLOADER */

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    background: #fff;
    border: unset;
    border-radius: 50%;
    /* padding: 5px 8px; */
    font-size: 10px;
    color: #f82a54;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
}

.card-no-image {
    height: 100%;
    display: inline;
    text-align: center;
}

p.upload-instruction {
    color: #777777;
    font-size: 11px;
    margin: 8px 0;
}

p.upload-requirement {
    color: #9e9e9e;
    font-size: 10px;
    font-weight: 100;
    margin-top: 11px 0;
}

svg {
    width: 55%;
}

/* END IMAGE UPLOADER */

/* SELECT 2 -- SELECT SEARCH */

span.select2-container--default .select2-selection--single,
span.select2-container--default .select2-selection--multiple,
span.select2-container--default.select2-container--focus .select2-selection--multiple,
span.select2-dropdown {
    border-color: #f0f2f5;
    background: #fbfbfb;
    color: #333333;
}

span.select2-results {
    background-color: #ffffff;
}

/* .select2-selection__rendered {
    line-height: 32px !important;
}

.select2-container .select2-selection--single {
    height: 34px !important;
}

.select2-container .select2-selection--multiple {
    height: 34px !important;
}

.select2-selection__arrow {
    height: 32px !important;
} */

textarea.select2-search__field {
    border: none !important;
}

li.select2-results__option.select2-results__option--selectable.select2-results__option--highlighted {
    background-color: var(--primary-light-color);
    color: #000000;
}

.select2-results__option.select2-results__option--selectable.select2-results__option--selected,
.select2-results__option.select2-results__option--selectable.select2-results__option--selected.select2-results__option--highlighted {
    background-color: var(--primary-color);
    color: #fff;
}

.select2-results__option.select2-results__option--selectable.select2-results__option--selected::after {
    font-family: "Font Awesome 6 Free";
    content: "\f058";
    display: inline-block;
    padding-right: 3px;
    vertical-align: middle;
    font-weight: 900;
    float: right;
}

.select2-container--default .select2-selection--multiple li.select2-selection__choice {
    background-color: var(--primary-light-color);
    color: var(--primary-color);
    border: var(--primary-color);
    border-radius: 20px;
    padding: 5px 10px 5px 20px;
}

.select2-container--default .select2-selection--multiple button.select2-selection__choice__remove {
    color: var(--primary-color);
    border-color: var(--primary-color);
    border: 0;
    padding: 5px;
}

.select2-container {
    width: 100% !important;
    margin-bottom: 15px;
}

.select2-results__option.select2-results__option--selectable.select2-results__option--selected::after {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    content: "";
    background-color: currentColor;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9 16.17L5.53 12.7a.996.996 0 1 0-1.41 1.41l4.18 4.18c.39.39 1.02.39 1.41 0L20.29 7.71a.996.996 0 1 0-1.41-1.41z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9 16.17L5.53 12.7a.996.996 0 1 0-1.41 1.41l4.18 4.18c.39.39 1.02.39 1.41 0L20.29 7.71a.996.996 0 1 0-1.41-1.41z'/%3E%3C/svg%3E");
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-size: 100% 100%;
    -webkit-mask-size: 100% 100%;
}

/* END SELECT 2 -- SELECT SEARCH */

/* FORM GROUP  */

.input-group-label {
    height: 34px;
    background-color: #fbfbfb;
    border-color: #f0f2f5;
}

/* END FORM GROUP  */

/* IMAGE UPLOADER */

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    background: #fff;
    border: unset;
    border-radius: 50%;
    /* padding: 5px 8px; */
    font-size: 10px;
    color: #f82a54;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
}

.card-no-image {
    height: 100%;
    display: inline;
    text-align: center;
}

p.upload-instruction {
    color: #777777;
    font-size: 11px;
    margin: 8px 0;
}

p.upload-requirement {
    color: #9e9e9e;
    font-size: 10px;
    font-weight: 100;
    margin-top: 11px 0;
}

svg {
    width: 55%;
}

/* END IMAGE UPLOADER */

/* SELECT 2 -- SELECT SEARCH */

span.select2-container--default .select2-selection--single,
span.select2-container--default .select2-selection--multiple,
span.select2-container--default.select2-container--focus .select2-selection--multiple,
span.select2-dropdown {
    border-color: #f0f2f5;
    background: #fbfbfb;
    color: #333333;
    min-height: 34px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 32px !important;
}

/* .select2-container .select2-selection--single {
    height: 34px !important;
} */

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 32px !important;
}

textarea.select2-search__field {
    border: none !important;
}

li.select2-results__option.select2-results__option--selectable.select2-results__option--highlighted {
    background-color: var(--primary-light-color);
    color: #000000;
}

.select2-results__option.select2-results__option--selectable.select2-results__option--selected,
.select2-results__option.select2-results__option--selectable.select2-results__option--selected.select2-results__option--highlighted {
    background-color: var(--primary-color);
    color: #fff;
}

.select2-results__option.select2-results__option--selectable.select2-results__option--selected::after {
    font-family: "Font Awesome 6 Free";
    content: "\f058";
    display: inline-block;
    padding-right: 3px;
    vertical-align: middle;
    font-weight: 900;
    float: right;
}

.select2-container {
    width: 100% !important;
    margin-bottom: 15px;
}

.select2-results__option.select2-results__option--selectable.select2-results__option--selected::after {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    content: "";
    background-color: currentColor;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9 16.17L5.53 12.7a.996.996 0 1 0-1.41 1.41l4.18 4.18c.39.39 1.02.39 1.41 0L20.29 7.71a.996.996 0 1 0-1.41-1.41z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9 16.17L5.53 12.7a.996.996 0 1 0-1.41 1.41l4.18 4.18c.39.39 1.02.39 1.41 0L20.29 7.71a.996.996 0 1 0-1.41-1.41z'/%3E%3C/svg%3E");
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-size: 100% 100%;
    -webkit-mask-size: 100% 100%;
}

/* END SELECT 2 -- SELECT SEARCH */

/* FORM GROUP  */

.input-group-label {
    height: 34px;
    background-color: #fbfbfb;
    border-color: #f0f2f5;
}

/* END FORM GROUP  */

/* IMAGE TOOLTIP */

.image-round-row img {
    border-radius: 50%;
    margin: 0 -7px;
    border: 2px solid #e4e3e3;
    background-color: #cfcfcf;
}

.image-container {
    display: flex;
    align-items: center;
    position: relative;
}

.more-images {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #ede7ff;
    border: 2px solid #fff;
    color: #7954e9;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
}

.tooltip-image {
    display: none;
    position: absolute;
    top: -36px;
    left: 26px;
    background-color: white;
    padding: 4px 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.more-images:hover .tooltip-image {
    display: flex;
}

.tooltip-image .image {
    width: 30px;
    height: 30px;
}

/* END IMAGE TOOLTIP */

/* Tabs */

.badge-tab-active,
.nav-tabs>.active .badge-tab {
    color: var(--purple-color);
    border: 1px solid var(--purple-color);
    background-color: var(--light-purple-color);
}

.badge-tab {
    color: var(--grey-color);
    border: 1px solid var(--grey-color);
    background-color: var(--light-grey-color);
}

.badge-tab-active,
.badge-tab {
    padding: 2px 7px;
    font-weight: 500;
    font-size: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: inline-block;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-radius: 100px;
    text-align: center;
}

/* END Tabs */

/* VIEW */

.content-info-overflow {
    height: 260px;
    overflow-y: auto;
    margin-left: -10px;
    margin-right: -10px;
    padding: 5px;
}

.content-info-overflow::-webkit-scrollbar {
    width: 1px;
    display: none;
}

/* END VIEW */

/* DivTable.com */

.divTable {
    display: table;
    width: 100%;
}

.divTableRow {
    display: table-row;
}

.divTableHeading {
    background-color: #eee;
    display: table-header-group;
}

.divTableCell,
.divTableHead {
    display: table-cell;
    padding: 3px 10px;
}

.divTableHeading {
    background-color: #eee;
    display: table-header-group;
    font-weight: bold;
}

.divTableFoot {
    background-color: #eee;
    display: table-footer-group;
    font-weight: bold;
}

.divTableBody {
    display: table-row-group;
}

.divTable {
    border-collapse: collapse;
    width: 100%;
}

.divTableHead {
    background-color: #eee;
    font-weight: bold;
}

.divTableHead,
.divTableCell {
    line-height: 1.5;
    padding: 17px 5px;
    text-align: left;
}

.divTable .divTableBody .divTableRow:last-child {
    border-bottom: none;
    /* menghapus border pada baris terakhir */
}

.divTableRow {
    border-bottom: 1px solid;
    border-color: #dee2e6;
}

/* Stack rows vertically on small screens */

/* Navbar Clock */

.clock-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.clock {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    position: relative;
}

.hand {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform-origin: bottom;
    /* background: black; */
}

.hour-hand {
    width: 1px;
    height: 5px;
}

.minute-hand {
    width: 1px;
    height: 6px;
}

.second-hand {
    width: 0.5px;
    height: 7px;
    background: red;
}

.separator {
    transition: opacity 0.5s ease-in-out;
}

/* End Navbar Clock */

@media (max-width: 30em) {

    /* Hide column labels */
    .divTableHeading>.divTableRow {
        position: absolute;
        top: -9999em;
        left: -9999em;
    }

    .divTableRow {
        border: 1px solid #333;
        border-bottom: 0;
    }

    /* Leave a space between table rows */
    .divTableRow+.divTableRow {
        margin-top: 1.5em;
    }

    /* Get table cells to act like rows */
    .divTableRow,
    .divTableCell {
        display: block;
    }

    .divTableCell {
        border: none;
        border-bottom: 1px solid var(--grey-color);
        /* Leave a space for data labels */
        padding-left: 50%;
    }

    /* Add data labels */
    .divTableCell:before {
        content: attr(data-label);
        display: inline-block;
        font-weight: bold;
        line-height: 1.5;
        margin-left: -100%;
        width: 100%;
    }
}

/* Stack labels vertically on smaller screens */

@media (max-width: 20em) {
    .divTableCell {
        padding-left: 0.75em;
    }

    .divTableCell:before {
        display: block;
        margin-bottom: 0.75em;
        margin-left: 0;
    }
}

/* SELECT OPTION SASI */

.select-option-component {
    position: relative;
    display: block;
    width: 100%;
}

.search-box {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 300px;
    margin-bottom: 20px;
    position: relative;
}

.search-input {
    border: none;
    flex: 1;
    outline: none;
    min-height: 32px !important;
    width: -webkit-fill-available;
    position: absolute;
    background-color: transparent;
}

.search-input-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border: 1px solid #f0f2f5;
    border-radius: 4px;
    /* padding: 5px; */
    background-color: #fbfbfb;
    min-height: 34px;
}

.search-results {
    width: 100%;
    list-style-type: none;
    padding: 0;
    margin: 0;
    overflow-y: auto;
    max-height: 130px;
}

.result-item {
    background-color: #fff;
    padding: 10px;
    /* border: 1px solid #ccc; */
    /* border-radius: 10px !important; */
    margin-bottom: 10px;
    cursor: pointer;
    color: #969696;
    width: 100%;
}

.result-item:hover {
    background: #f8ebff;
    width: 100%;
}

.card-list-search {
    background-color: #fff;
    border-radius: 8px !important;
    padding: 0px;
    display: none;
    position: absolute;
    /* top: 110px; */
    width: 100%;
    z-index: 999;
    box-shadow: 0px 4px 16px 0px #0000000a;
}

.btn-inner-searchlist {
    width: 100%;
    background-color: #fff;
    padding: 10px;
    display: inline-block;
    text-align: left;
    color: #009ef7;
    border-top: 1px solid var(--light-grey-color);
}

.btn-inner-searchlist:hover {
    background-color: #009ef7;
    color: #ebf7ff;
}

.selected-items {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 5px;
}

.selected-item-btn {
    background-color: var(--light-purple-color);
    color: var(--purple-color);
    padding: 2px 5px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    margin: 5px 0px 0px 5px;
}

.selected-item-btn:hover {
    background-color: var(--purple-color);
    color: #fff;
}

.remove-btn {
    background: none;
    border: none;
    /* color: var(--purple-color); */
    margin-left: 5px;
    cursor: pointer;
}

.search-input-container:focus-within {
    border: 1px solid var(--purple-color);
}

.input-group:focus-within span {
    border: 1.5px solid var(--purple-color);
    transition: none;
}

.input-group:focus-within svg {
    color: var(--purple-color);
}

.search-input-container input:focus {
    border: 1px solid var(--purple-color);
    position: unset;
    background-color: #fff;
}

.search-input-container:hover input {
    position: unset;
    background-color: #fff;
    width: 100%;
}

.search-input:focus {
    border: unset !important;
    box-shadow: unset !important;
    width: 100%;
}

.rotate180 {
    transform: rotate(180deg);
}

li.result-item.selected-item {
    background-color: var(--purple-color);
    color: #fff;
}

/* END SELECT OPTION SASI */

/* TABLE ROUNDED BORDER */

.table-rounded-border {
    border: 1px solid #f0f2f5;
    border-collapse: separate;
    border-left: 0;
    border-radius: 10px;
    border-spacing: 0px;
    widows: 100%;
    width: 100%;
    color: #333333;
    font-size: 10px;
}

.table-rounded-border thead {
    display: table-header-group;
    vertical-align: middle;
    border-color: inherit;
    border-collapse: separate;
}

.table-rounded-border tr {
    display: table-row;
    vertical-align: inherit;
    border-color: inherit;
}

.table-rounded-border th,
.table-rounded-border td {
    padding: 5px 4px 6px 4px;
    text-align: left;
    vertical-align: top;
    border-left: 1px solid #f0f2f5;
}

.table-rounded-border td {
    border-top: 1px solid #f0f2f5;
}

.table-rounded-border thead:first-child tr:first-child th:first-child,
.table-rounded-border tbody:first-child tr:first-child td:first-child {
    border-radius: 10px 0 0 0;
}

.table-rounded-border thead:last-child tr:last-child th:first-child,
.table-rounded-border tbody:last-child tr:last-child td:first-child {
    border-radius: 0 0 0 10px;
}

/* END TABLE ROUNDED BORDER */

/* DATE PICKER */
.air-datepicker-body--day-names,
.air-datepicker-nav--title {
    background: #f5f7fa;
    border-radius: 5px;
    padding-top: 3px;
    padding-bottom: 3px;
}

div.air-datepicker-body--day-name {
    color: #333333;
}

div.air-datepicker-cell.-current-,
div.air-datepicker-cell.-current-.-in-range- {
    color: var(--primary-color);
}

div.air-datepicker-cell.-selected-.-current-,
div.air-datepicker-cell.-selected- {
    background: var(--primary-color);
}

div.air-datepicker-cell.-selected-.-focus- {
    background: #0066fe;
}

div.air-datepicker-cell.-in-range- {
    background: var(--primary-light-color);
}

/* END DATE PICKER */

/* DATE PICKER */
.air-datepicker-body--day-names,
.air-datepicker-nav--title {
    background: #f5f7fa;
    border-radius: 5px;
    padding-top: 3px;
    padding-bottom: 3px;
}

div.air-datepicker-body--day-name {
    color: #333333;
}

div.air-datepicker-cell.-current-,
div.air-datepicker-cell.-current-.-in-range- {
    color: var(--primary-color);
}

div.air-datepicker-cell.-selected-.-current-,
div.air-datepicker-cell.-selected- {
    background: var(--primary-color);
}

div.air-datepicker-cell.-selected-.-focus- {
    background: #0066fe;
}

div.air-datepicker-cell.-in-range- {
    background: var(--primary-light-color);
}

/* END DATE PICKER */

#chat-notif-info {
    top: 11px;
    right: 21rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 11px;
    font-weight: bold;
    padding: 2px 6px;
    min-width: 20px;
    border-radius: 999px;
    transform: translateX(50%);
    z-index: 1;
    white-space: nowrap;
}

/* END NOTIF ANIMATION */

.btn:disabled svg {
    color: var(--bs-btn-disabled-color);
}

/* RESPONSIVE TABLET */
@media (max-width: 1024px) {
    nav.main-nav--bg .sasi-navbar {
        flex-flow: revert;
    }

    .button-sidebar {
        display: unset !important;
    }

    .sidebar.hidden {
        display: none;
    }

    .clock {
        width: 14px;
        height: 14px;
        border-radius: 50%;
        position: relative;
    }

    .hour-hand {
        width: 1px;
        height: 3px;
    }

    .minute-hand {
        width: 1px;
        height: 4px;
    }

    .second-hand {
        width: 0.5px;
        height: 5px;
        background: red;
    }
}

/* END RESPONSIVE TABLET */