.choices[role="combobox"] {
    width: 60%;
    border: 1px solid var(--secondary-color);
    border-radius: 5px;
    background: var(--secondary-color-lightest);
}

@media (max-width: 600px) {
    .choices[role="combobox"] {
        width: 100%;
    }
}

.choices__input[type="search"] {
    color: var(--primary-color);
}

.choices .choices__inner {
    background-color: var(--secondary-color-lightest);
    border-radius: 5px;
    min-height: 48px;
    color: var(--primary-color-light);
    text-align: center;
    height: 50px;
    font-size: 18px;
    font-weight: normal;
}

.choices__list.choices__list.choices__list--dropdown {
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    z-index: 98;
}

.choices__item.choices__item--choice.choices__item--selectable.is-highlighted {
    color: var(--primary-color-light);
    background: var(--secondary-color-lightest);
    font-size: 18px;
    font-weight: normal;
}

.choices__item.choices__item--choice.choices__item--selectable {
    color: var(--primary-color-light);
    background: white;
    font-size: 18px;
    font-weight: normal;
}


/* choices__item choices__item--choice is-selected choices__item--selectable is-highlighted */