.lite-selector {
    height: 40px;
}

.lite-selector.active {
    position: relative;
    z-index: 2147482000 !important;
}

.select-field-wrapper {
    min-width: 60px;
    height: 40px;
    position: relative;
    background-color: #fff;
    border-radius: 8px;
    border-color: rgba(148, 163, 184, .55) !important;
    box-shadow: 0 4px 14px rgba(15, 23, 42, .07);
}

.select-field-wrapper.focused-bottom {
    border-bottom-left-radius: 8px !important;
    border-bottom-right-radius: 8px !important;
}

.select-field-wrapper.focused-top{
    border-top-left-radius: 8px !important;
    border-top-right-radius: 8px !important;
}

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

.inner-select-field-wrapper .select-field {
    width: 100%;
    outline: none !important;
    background-color: transparent;
    border: 0 !important;
    box-shadow: none !important;
    padding: 1px 2px;
    font-size: 13px;
    cursor: text;
    color: #1f2937;
    min-width: 0;
}

.inner-select-field-wrapper .select-field:focus,
.inner-select-field-wrapper .select-field.form-control:focus,
.inner-select-field-wrapper .select-field.table-field:focus {
    outline: none !important;
    border: 0 !important;
    box-shadow: none !important;
    background-color: transparent !important;
}

.inner-select-field-wrapper .material-symbols-outlined {
    font-size: 18px;
    color: #64748b;
    transition: .25s;
    cursor: pointer;
    flex-shrink: 0;
}

.inner-select-field-wrapper .select-search-icon {
    color: #94a3b8;
    cursor: text;
}

.select-selected-count {
    min-width: 24px;
    height: 20px;
    border-radius: 999px;
    padding: 0 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary_color, #4f7cff);
    color: #fff;
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
}

.inner-select-field-wrapper .material-symbols-outlined.rotate {
    transform: rotate(-180deg);
    color: var(--secondary_color, #4f7cff) !important;
}

.select-options-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    overflow: hidden;
    overflow-y: auto;
    background-color: #fff;
    border-radius: 10px;
    transition: opacity .12s ease, box-shadow .12s ease;
    z-index: -1;
    box-shadow: 0 18px 42px rgba(15, 23, 42, .16);
}

.select-options-wrapper.is-portaled {
    position: fixed !important;
    min-width: 160px;
    max-height: min(230px, calc(100vh - 16px));
    overflow-y: auto;
    z-index: 2147482001 !important;
}

.select-options-wrapper.is-portaled.expanded-bottom {
    animation: lite-select-menu-in-bottom .16s cubic-bezier(.2, 0, .2, 1) both;
    transform-origin: top center;
}

.select-options-wrapper.is-portaled.expanded-top {
    animation: lite-select-menu-in-top .16s cubic-bezier(.2, 0, .2, 1) both;
    transform-origin: bottom center;
}

@keyframes lite-select-menu-in-bottom {
    from {
        opacity: 0;
        transform: translateY(-4px) scale(.99);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes lite-select-menu-in-top {
    from {
        opacity: 0;
        transform: translateY(4px) scale(.99);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .select-options-wrapper.is-portaled.expanded-bottom,
    .select-options-wrapper.is-portaled.expanded-top {
        animation: none;
    }
}

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

.select-options-wrapper.expanded-bottom {
    border-radius: 10px;
    margin-top: 4px;
}

.select-options-wrapper.expanded-top {
    border-radius: 10px !important;
    border: 1px solid rgba(148, 163, 184, .45) !important;
    box-shadow: 0 18px 42px rgba(15, 23, 42, .16) !important;
}

.select-options-title {
    min-height: 38px;
    padding: 9px 10px 7px;
    border-bottom: 1px solid #e2e8f0;
    color: #475569;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.select-options-mode {
    height: 20px;
    padding: 0 8px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--secondary_color, #4f7cff) 11%, white);
    color: var(--secondary_color, #4f7cff);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
}

.select-field-wrapper[data-arial-expand="true"] .select-options-wrapper {
    height: 230px;
    z-index: 2147482001 !important;
}

.select-options-wrapper .select-options-list,
.select-field-wrapper .select-options-wrapper .select-options-list {
    list-style: none;
    font-size: 13px;
    color: #1f2937;
    padding-top: 6px;
    padding-bottom: 6px;
}

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

.select-options-wrapper .select-options-list .option,
.select-field-wrapper .select-options-wrapper .select-options-list .option {
    width: 100%;
    min-height: 40px;
    transition: background-color .12s ease, color .12s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 8px;
    border: none !important;
    color: #334155;
    position: relative;
    animation: none !important;
}

.select-options-wrapper .select-options-list .option.active,
.select-field-wrapper .select-options-wrapper .select-options-list .option.active {
    background: color-mix(in srgb, var(--secondary_color, #4f7cff) 10%, transparent);
    color: #1f2937;
    font-weight: 700;
    box-shadow: none;
}

.select-options-wrapper .select-options-list .option.active .material-symbols-outlined,
.select-field-wrapper .select-options-wrapper .select-options-list .option.active .material-symbols-outlined {
    color: var(--secondary_color, #4f7cff);
}

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

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

.select-options-wrapper .select-options-list .option:hover,
.select-field-wrapper .select-options-wrapper .select-options-list .option:hover {
    background: #f1f5f9;
}

.select-options-wrapper .select-options-list .option.active:hover,
.select-field-wrapper .select-options-wrapper .select-options-list .option.active:hover {
    background: color-mix(in srgb, var(--secondary_color, #4f7cff) 14%, transparent);
    color: #1f2937;
}


.select-option-check {
    width: 18px;
    height: 18px;
    border-radius: 5px;
    border: 1px solid #94a3b8;
    display: none;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #fff;
}

.select-field-wrapper.is-multiselect .select-option-check {
    display: inline-flex;
}

.select-option-check .material-symbols-outlined {
    font-size: 15px !important;
    line-height: 1;
    margin: 0 !important;
}

.option.active .select-option-check {
    border-color: rgba(255, 255, 255, .82);
    background: rgba(255, 255, 255, .18);
}

.select-option-content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    flex: 1;
    line-height: 1.25;
}

.select-option-label {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.select-option-description {
    margin-top: 2px;
    color: #64748b;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 2px;
}

.option.active .select-option-description {
    color: #64748b;
}

.select-option-description .material-symbols-outlined {
    color: var(--secondary_color, #4f7cff);
    font-size: 14px !important;
}

html[data-lite-theme="dark"] .select-field-wrapper {
    background-color: rgba(15, 23, 42, .86);
    border-color: rgba(148, 163, 184, .18) !important;
    box-shadow: 0 12px 26px rgba(0, 0, 0, .22);
}

html[data-lite-theme="dark"] .inner-select-field-wrapper .select-field,
html[data-lite-theme="dark"] .select-options-wrapper .select-options-list,
html[data-lite-theme="dark"] .select-field-wrapper .select-options-wrapper .select-options-list {
    color: var(--lite-text, #e5f0ff);
}

html[data-lite-theme="dark"] .inner-select-field-wrapper .material-symbols-outlined,
html[data-lite-theme="dark"] .select-option-description {
    color: rgba(226, 232, 240, .58);
}

html[data-lite-theme="dark"] .select-options-wrapper {
    background-color: rgba(15, 23, 42, .96);
    border: 1px solid rgba(148, 163, 184, .18);
    box-shadow: 0 22px 48px rgba(0, 0, 0, .35);
}

html[data-lite-theme="dark"] .select-options-title {
    border-bottom-color: rgba(148, 163, 184, .16);
    color: rgba(226, 232, 240, .72);
}

html[data-lite-theme="dark"] .select-options-mode {
    background: color-mix(in srgb, var(--secondary_color, var(--default, #151030)) 16%, transparent);
    color: var(--secondary_color, var(--theme_text_color, #ffffff));
}

html[data-lite-theme="dark"] .select-options-wrapper .select-options-list .option,
html[data-lite-theme="dark"] .select-field-wrapper .select-options-wrapper .select-options-list .option {
    color: rgba(226, 232, 240, .78);
}

html[data-lite-theme="dark"] .select-options-wrapper .select-options-list .option:hover,
html[data-lite-theme="dark"] .select-field-wrapper .select-options-wrapper .select-options-list .option:hover {
    background: color-mix(in srgb, var(--secondary_color, var(--default, #151030)) 10%, transparent);
}

html[data-lite-theme="dark"] .select-options-wrapper .select-options-list .option.active,
html[data-lite-theme="dark"] .select-field-wrapper .select-options-wrapper .select-options-list .option.active {
    background: color-mix(in srgb, var(--secondary_color, var(--default, #151030)) 14%, transparent);
    color: var(--lite-text, #e5f0ff);
    box-shadow: none;
}

html[data-lite-theme="dark"] .select-option-check {
    background: rgba(15, 23, 42, .72);
    border-color: rgba(148, 163, 184, .28);
}

.option.active .select-option-description .material-symbols-outlined {
    color: var(--secondary_color, #4f7cff);
}

.select-option-active-icon {
    margin-left: auto;
    display: none;
    font-size: 18px !important;
    color: var(--secondary_color, #4f7cff);
    flex-shrink: 0;
}

.option.active .select-option-active-icon {
    display: inline-flex;
}

@keyframes option-check {
    from {

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

.select-options-list .option:hover .material-symbols-outlined {
    color: inherit;
}

.lite-selector-quick-form-btn {
    width: calc(100% - 16px);
    min-height: 34px;
    margin: 8px 8px 4px;
    border-radius: 8px;
    border: 1px dashed color-mix(in srgb, var(--secondary_color, #4f7cff) 45%, #cbd5e1);
    background: color-mix(in srgb, var(--secondary_color, #4f7cff) 7%, white);
    color: var(--secondary_color, #4f7cff);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-weight: 700;
    font-size: 12px;
}

.lite-selector-quick-form-btn:hover {
    background: color-mix(in srgb, var(--secondary_color, #4f7cff) 12%, white);
}

.lite-selector-quick-form-btn .material-symbols-outlined {
    font-size: 18px;
}

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