/* Dropdown menu background + text */
.select2-results {
    background-color: rgb(29, 52, 76);
}

/* Highlighted  option */
.select2-container--default .select2-results__option--selected {
    background-color: #3a3a5a !important;
}

/* Hover highlight option */
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #5897fb !important;
    color: white;
}

/* Dropdown panel itself */
.select2-container--default .select2-dropdown {
    background-color: rgba(44, 66, 94, 0.69);
    border: 1px solid #444;
}

/* Multi-select selected item background and text */
.select2-container--default .select2-selection--multiple {
    background-color: rgba(44, 66, 94, 0.69);
    border: 1px solid #444;
    color: #fff;
}

.select2-selection__choice {
    background-color: #1f3247 !important;
    /* dark blue like the Climate button */
    border: none;
    color: white;
    padding: 2px 8px;
    margin-top: 4px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
}

.select2-selection__choice__remove {
    color: white;
    margin-right: 4px;
    font-weight: bold;
}

.select2-selection__choice__remove:hover {
    color: #ff5555 !important;
}