.choices__inner {
    width: 100%;
    display: block;
    background: #fff;
    padding: 0 15px;
    height: 50px;
    border-radius: 4px;
    font-size: 20px;
    color: rgba(47, 47, 47, 0.5);
    font-weight: 400;
    border: 1px solid #F5F5F5;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

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

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

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

.choices__list--single {
    padding: 0;
}

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

.is-open .choices__list--dropdown {
    border-color: #F5F5F5;
}

.is-focused .choices__inner {
    border-color: #F5F5F5 !important;
}

.choices__list--dropdown .choices__item--selectable.is-highlighted {
    background-color: #E6F0F7;
}

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


.choices__list--dropdown .choices__item {
    padding: 10px 15px !important;
    font-size: 18px;
}

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

.choices__list--dropdown {
    z-index: 3;
}

