.choices__inner {
    width: 100%;
    display: block;
    background: #FFFFFF;
    border: 1px solid #DDDDDD;
    padding: 15px 15px;
    height: 53px;
    border-radius: 10px;
    font-size: 16px;
    color: var(--color-tertiary-gray);
    font-weight: 400;
}

.choices[data-type*='select-one']:after {
    content: "\e904";
    font-family: 'sauders-icon' !important;
    width: auto;
    height: auto;
    border: none;
    right: 15px;
    margin: 0;
    top: 50%;
    font-size: 16px;
    transform: translate(0, -50%);
    color: #EC7324;
    line-height: 1em;
}

.choices[data-type*='select-one'].is-open:after {
    content: "\e913";
    margin: 0;
}

.choices[data-type*='select-one']:before {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    background: #DDDDDD;
    right: 46px;
    top: 0;
}

.choices__list--single {
    padding: 0;
}

.choices[data-type*='select-one'] .choices__input {
    display: none !important;
}

.is-open .choices__list--dropdown {
    border-color: #DDDDDD;
    border-radius: 4px;
    z-index: 2;
}

.choices__list--dropdown .choices__item--selectable.is-highlighted {
    background-color: var(--color-orange);
    color: #FFFFFF;
}

.is-open .choices__inner {
    border-radius: 4px;
}

.choices__list--dropdown .choices__item {
    padding: 8.5px 15px !important;
    font-size: 16px;
    color: #000000;
}

.choices__list--dropdown .choices__list {
    max-height: 370px;
}

.choices__list--dropdown .choices__item--selectable.is-highlighted:after {
    display: none;
}

@media (min-width: 1200px) {
    .choices__list--dropdown .choices__item:hover {
        /* background-color: #C0D02F !important; */
        color: #fff;
    }
}