#qs_selector_search {
    margin-left: 7px;
    width: calc(100% - 20px);
    height: 30px;
    border: 1px solid black;
    border-radius: 3px;
    text-align: center;
    color: black;
}

.qs_selector {
    display: inline-block;
    position: relative;
    width: 250px;
}

#qs_datalist {
    position: fixed;
    right: 12px;
    display: none;
    list-style-type: none;
    padding: 0 0 10px 0;
    margin: 0px;
    background-color: white;
    max-height: 380px;
    overflow-y: auto;
    width: 400px;
    scrollbar-width: thin;
}


/* #qs_datalist::-webkit-scrollbar {
    width: 5px;
} */

.qs_search_container {
    position: sticky;
    top: 0;
    padding: 10px 0;
    background-color: white;
}

.qs_datalist_item {
    padding: 3px 20px;
    user-select: none;
    margin-bottom: 0 !important;
    color: black !important;
    background-color: white !important;
}

.qs_datalist_item:hover {
    cursor: pointer;
    color: white !important;
    background-color: #3598dc !important;
}

.qs_preview {
    background-color: white;
    color: black;
    padding: 6px 8px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.qs_preview:hover {
    cursor: pointer;
}

.qs_preview>span.fa-sort-down {
    position: absolute;
    right: 2px;
}

.qs_active {
    display: block !important;
}