.choices {
    overflow: unset;
    z-index: 2;
}
.choices__inner {
    height: 52px;
    background-color: #FFFFFF;
    border-radius: 0px;
    padding: 0;
    border: none;
    color: rgba(16, 16, 16, 0.60);
    font-size: 16px;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    border-bottom: 3px solid transparent;
}

.choices__list--single {
    padding: 13px 16px;
}

.choices[data-type*="select-one"]::after {
    content: '\e900';
    font-family: 'icomoon';
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: auto;
    padding-right: 15px;
    font-size: 15px;
    color: #002855;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1em;
    border: none;
    margin: 0;
}

.choices[data-type*="select-one"].is-open::after {
    border: none;
    transform: rotate(180deg);
    padding: 0 0 0 15px;
    margin-top: 0;
}

.choices[data-type*="select-one"] .choices__inner {
    padding-bottom: 0;
}

.is-open .choices__inner {
    border-radius: 0px;
    color: #101010;
}

.choices__input {
    display: none !important;
}

.is-focused .choices__inner,
.is-open .choices__inner {
    border-bottom: 3px solid #0078FF;
}