.lite-selector {
    height: 37px;
}

.lite-selector.active {
    z-index: 1000;
}

.select-field-wrapper {
    min-width: 60px;
    height: 37px;
    position: relative;
    background-color: white;
    border-radius: 5px;
}

.select-field-wrapper.focused-bottom {
    border-bottom: none !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}
.select-field-wrapper.focused-top{
    border-top: none !important;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
}

.inner-select-field-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.inner-select-field-wrapper .select-field {
    width: 100%;
    outline: none !important;
    background-color: transparent;
    padding: 1px 4px;
    font-size: 13px;
    cursor: text;
}

.inner-select-field-wrapper .material-symbols-outlined {
    font-size: 17px;
    color: gray;
    transition: 1.3s;
    cursor: pointer;
}

.inner-select-field-wrapper .material-symbols-outlined.rotate {
    transform: rotate(-180deg);
    color: red !important;
}

.select-options-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    overflow: hidden;
    background-color: white;
    border-radius: 5px;
    transition: .5s;
    z-index: -1;
    display: flex;
    flex-direction: column;
    border: 1px solid #d1d5db;
    box-shadow: 0 12px 30px -18px rgba(15, 23, 42, 0.45);

}

.wrapper-expand-top{
    z-index: 200 !important;
}
.table-row-expanded{
    z-index: 200 !important;
}

.select-options-wrapper.expanded-bottom {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.select-options-wrapper.expanded-top {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 5px !important;
    border-top-right-radius: 5px !important;
    border-left: 1px #cecdcd solid !important;
    border-right: 1px #cecdcd solid !important;
    border-top: 1px #cecdcd solid !important;
    box-shadow: none !important;
}

.select-field-wrapper[data-arial-expand="true"] .select-options-wrapper {
    height: 200px;
    z-index: 1;
    /* border-top: none !important; */
}

.select-field-wrapper .select-options-wrapper .select-options-list {
    list-style: none;
    font-size: 13px;
    color: #393939;
    margin: 0;
    padding: 0;
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
}

.lite-selector.active .select-options-wrapper {
    width: calc(100% + 2px);
}

.select-field-wrapper .select-options-wrapper .select-options-list .option {
    width: 100%;
    min-height: 35px;
    transition: .3s;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5px;
}

.select-field-wrapper .select-options-wrapper .select-options-list .option.active {
    background-color: #000000;
    color: white;
    border-radius: 5px;
}

.select-field-wrapper .select-options-wrapper .select-options-list .option.active .material-symbols-outlined {
    color: white;
}

.select-field-wrapper .select-options-wrapper .select-options-list .option.hidden {
    display: none !important;
}

.select-field-wrapper .select-options-wrapper .select-options-list .option:hover {
    border: none !important;
    border-radius: 6px;
    margin: 2px 0;
}


.select-options-list .option .material-symbols-outlined {
    /* color: #393939; */
    font-size: 18px;
    transition: .1s;
    animation: option-check .1s ease-in;
    margin-right: 4px;
}

@keyframes option-check {
    from {

        transform: translateX(-200px) scale(0);
    }
}

.select-options-list .option:hover .material-symbols-outlined {
    color: white !important;
}

.select-options-wrapper .select-options-pagination {
    width: 100%;
    min-height: 42px;
    border-top: 1px solid #e5e7eb;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 8px;
}

.select-options-wrapper .select-options-pagination.hidden {
    display: none !important;
}

.select-options-wrapper .selector-pagination-shell {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 8px;
}

.select-options-wrapper .selector-page-summary {
    font-size: 11px;
    color: #6b7280;
    font-weight: 600;
    white-space: nowrap;
}

.select-options-wrapper .selector-pagination-actions {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    padding: 2px 6px;
}

.select-options-wrapper .selector-page-numbers {
    display: flex;
    align-items: center;
    gap: 3px;
}

.select-options-wrapper .selector-page-btn {
    border: 1px solid transparent;
    background: #fff;
    color: #4b5563;
    min-width: 24px;
    height: 24px;
    border-radius: 999px;
    font-size: 11px;
    padding: 0 4px;
    line-height: 1;
    cursor: pointer;
    font-weight: 600;
}

.select-options-wrapper .selector-page-btn:hover:not([disabled]) {
    border-color: #cbd5e1;
    background: #eef2ff;
    color: #111827;
}

.select-options-wrapper .selector-page-btn.active {
    border-color: #1f2937;
    background: #1f2937;
    color: #fff;
}

.select-options-wrapper .selector-page-btn[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}

.select-options-wrapper .selector-page-icon {
    min-width: 22px;
    padding: 0;
}

.select-options-wrapper .selector-page-icon .material-symbols-outlined {
    font-size: 15px !important;
    margin-right: 0 !important;
}

.select-options-wrapper .selector-page-meta {
    font-size: 11px;
    color: #475569;
    font-weight: 600;
    white-space: nowrap;
}

@media (max-width: 640px) {
    .select-options-wrapper .selector-pagination-shell {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .select-options-wrapper .selector-page-meta {
        justify-self: flex-end;
    }

    .select-options-wrapper .selector-pagination-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
}

.apexcharts-legend.apx-legend-position-bottom{
    display: flex !important;
    justify-content: center !important;
    align-items: flex-start !important;
    flex-direction: column !important;
}
