<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.btn-groups .btn-sm {
    width: 100%;
    margin-bottom: 2px;
}

/*the container must be positioned relative:*/
.custom-select, .custom-select-small {
    position: relative;
}

.custom-select select,.custom-select-small select {
    display: none; /*hide original SELECT element:*/
}

.select-selected, .select-selected-small {
    background-color: #fff;
}
/*style the arrow inside the select element:*/
.select-selected:after,.select-selected-small:after {
    position: absolute;
    content: "";
    top: 14px;
    right: 18px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #555 transparent transparent transparent;
}
/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after, .select-selected-small.select-arrow-active:after {
    border-color: transparent transparent #555 transparent;
    top: 7px;
}
/*style the items (options), including the selected item:*/
.select-items div, .select-selected {
    color: #555;
    padding: 6px 14px;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
    border-color: #ccc;
    cursor: pointer;
    user-select: none;

}
.select-selected-small {
    color: #555;
    padding: 1px 5px;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
    border-color: #ccc;
    cursor: pointer;
    user-select: none;
}
/*style items (options):*/
.select-items {
    position: absolute;
    background-color: #fff;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
}
/*hide the items when the select box is closed:*/
.select-hide {
    display: none;
}

.select-items div:hover, .same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
}
</pre></body></html>