.searchable-select-wrap{
    position:relative;
    display:inline-flex;
    width:100%;
}

.searchable-select-wrap .searchable-select-native{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    opacity:0;
    pointer-events:none;
}

.searchable-select-input{
    width:100%;
}

.searchable-select-dropdown{
    display:none;
    position:absolute;
    top:calc(100% + 2px);
    left:0;
    right:0;
    z-index:50;
    max-height:240px;
    overflow-y:auto;
    background:#fff;
    border:1px solid #d9dee6;
    border-radius:6px;
    box-shadow:0 8px 24px rgba(15, 23, 42, 0.12);
}

.searchable-select-dropdown.open{
    display:block;
}

.searchable-select-option{
    padding:7px 10px;
    font-size:13px;
    cursor:pointer;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.searchable-select-option:hover,
.searchable-select-option.active{
    background:#eef3fb;
}

.searchable-select-empty{
    padding:7px 10px;
    font-size:13px;
    color:#94a3b8;
}
