.choices__inner {
    width: 100%;
    display: block;
    border-radius: 4px;
    border: 1px solid rgba(30, 60, 96, 0.2);
    padding: 12px 15px;
    font-size: 18px;
    color: #1E3C60;
    font-weight: 400;
    height: 52px;
    background-color: #fff;
    color: rgba(30, 60, 96, 0.6);
}

.choices {
    z-index: 2;
}

.choices__list--single {
    padding: 0;
}

.choices[data-type*='select-one']:after {
    content: '\e902';
    font-family: 'answerhero-icon';
    height: auto;
    width: auto;
    border: none;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translate(0, -50%);
    margin-top: 0;
    font-size: 12px;
    color: var(--c-blue);
}

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

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

.choices.is-focused {
    outline: none;
    border-color: var(--c-green);
    border-radius: 4px;
}

.is-open .choices__inner {
    border-radius: 4px;
    border-color: var(--c-green);
}

.choices__list--dropdown .choices__item {
    padding: 8px 18px;
    font-size: 14px;
    background-color: #e4e1e7;
    font-weight: 500;
    color: #000;
}

.choices__list--dropdown .choices__item--selectable.is-highlighted {
    color: #fff;
    background-color: var(--c-green);
}

.is-open .choices__list--dropdown {
    border: transparent;
    margin: 0;
    border-radius: 4px;
    padding: 0;
    background-color: #e4e1e7;
}

.is-open .choices__list--dropdown {
    border: none;
    margin: 0;
    border-radius: 4px;
}

.is-flipped.is-open .choices__list--dropdown {
    border-radius: 4px;
}

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

.choices__list--dropdown .choices__item--selectable:after {
    display: none !important;
}