.choices__inner {
    width: 100%;
    display: block;
    padding: 15px;
    height: 43px;
    background: #FFFFFF;
    border: 1px solid #ADD5F4;
    backdrop-filter: blur(10px);
    border-radius: 4px;
    padding: 8px 15px;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--navy);
    font-family: "Montserrat", sans-serif;
}

.choices__list--single {
    padding: 0;
}

.choices[data-type*='select-one']:after {
    content: '\e908';
    border: none;
    font-family: 'ettinger-icon';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translate(0, -50%);
    margin-top: 0;
    pointer-events: none;
    font-size: 1rem;
    color: var(--navy);
    font-weight: 700;
    width: auto;
    height: auto;
}

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

.choices[data-type*='select-one'].is-open:after {
    transform: translate(0, -50%) rotate(180deg);
    margin-top: 0;
}

.is-focused .choices__inner,
.is-open .choices__inner {
    border-radius: 4px;
    border-color: #ADD5F4;
}

.choices__list input {
    display: none !important;
}

.choices__list--dropdown .choices__item--selectable {
    padding-right: 0 !important;
    color: var(--navy);
}

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