/* Выпадающий список */
.choices {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #CCB26E;
    font-size: 14px;
    line-height: 19px;
    color: #f2c40f;
    z-index: 1050;

}

.choices__inner {
    border: 1px solid #f2c40f;
    border-radius: 10px;
    background: #1E2023;
    color: #f2c40f;
}

.is-open .choices__inner {
    border: 1px solid #f2c40f;
    border-radius: 10px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background: #1E2023;
}

.is-open .choices__list--dropdown {
    border: 1px solid #CCB26E;
    border-radius: 10px;
    background: #1E2023;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.choices__list--dropdown .choices__item--selectable {
    padding: 8px 12px;
    background: #1E2023;
    color: #f2c40f;
    cursor: pointer;
}

.choices__list--dropdown .choices__item--selectable:hover {
    background-color: #f2c40f !important;
    color: #000 !important;
    border-radius: 10px;
    margin: 0 2px;
    border: 1px solid transparent;
}

/* Активный элемент */
.choices__list--dropdown .choices__item--selectable.is-highlighted {
    background-color: #f2c40f !important;
    color: #000 !important;
    font-weight: 500;
    margin: 0 2px;
    border-radius: 10px;
}

.choices__list--dropdown .choices__item--selectable.is-highlighted:hover {
    background-color: #f2c40f !important;
    color: #000 !important;
}

/* Поле поиска */
.choices__list--dropdown .choices__input {
    background-color: #1E2023 !important;
    color: #f2c40f !important;
    border: none;
    outline: none;
    padding: 8px 12px;
    font-size: 14px;
}

.choices__list--dropdown .choices__input::placeholder {
    color: #a0a0a0;
}

.choices__list--dropdown .choices__input:focus {
    color: #f2c40f !important;
}

/* Скроллбар  */
.choices__list--dropdown {
    scrollbar-width: thin;
    scrollbar-color: #f2c40f #1E2023;
}

.choices__list--dropdown::-webkit-scrollbar {
    width: 8px;
}

.choices__list--dropdown::-webkit-scrollbar-track {
    background: #1E2023;
    border-radius: 10px;
}

.choices__list--dropdown::-webkit-scrollbar-thumb {
    background-color: #f2c40f;
    border-radius: 10px;
}

.choices__list--dropdown::-webkit-scrollbar-thumb:hover {
    background-color: #e0b50e;
}