
/* Overwrite Select2 color */
.select2-container--default .select2-selection--single,
.select2-selection__rendered,
.select2-dropdown,
.select2-container--default .select2-selection--single .select2-selection__rendered,
.select2-results__option {
    font-family: "Roboto Mono", monospace;
    color: #9090af;
    background-color: #121212;
    border: 0;
}
/* Selection in select2 */
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    font-family: "Roboto Mono", monospace;
    color: white;
    background: #444;
}
/* Active selected element in select2 */
.select2-container--default .select2-results__option--selected {
    background-color: #888;
    color: white;
    font-family: "Roboto Mono", monospace;
}
/* x - deselect */
.select2-container--default .select2-selection--single .select2-selection__clear {
    color: #888;
}
/* Frame in text input field */
.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #444;
}
/* Text if no element selected */
.select2-container--default .select2-selection--single .select2-selection__placeholder {
    font-family: "Roboto Mono", monospace;
    color: #444;
}