/* select-searchable start */
.select-searchable {
    position: relative;
}
.select-searchable .selected {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.select-searchable .inner {
    display: none;
    z-index: 3;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    max-height: 25.5rem;
    padding: 1rem;
    overflow: hidden;
    /* background-color: #fff; */
    background-color: var(--bs-card-bg);
    border-radius: 5px;
    box-shadow: var(--bs-box-shadow);
}
.select-searchable .inner input {
    width: 100%;
    height: 2.5rem;
    padding: 0 1rem;
    border: 1px solid var(--bs-card-border-color);
    border-radius: 5px;
}
.select-searchable .inner ul {
    height: 235px;
    padding: 0;
    margin: 10px 0;
    border: 1px solid var(--bs-card-border-color);
    border-radius: 5px;
    overflow-y: auto;
}
.select-searchable .inner li {
    height: auto;
    min-height: 2.5rem;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    line-height: 1.5rem;
    list-style: none;
    cursor: pointer;
    transition: all 0.2s;
}
.select-searchable .inner li:hover,
.select-searchable .inner li.hover {
    background-color: var(--bs-secondary-bg);
}
.select-searchable .inner li.selected-option {
    color: #0d6efd;
}
.select-searchable.readonly {
    cursor: not-allowed;
}
/* select-searchable end */