.choices__inner {
    width: 100%;
    display: block;
    background: #fff;
    padding: 14px 35px 14px 11px !important;
    color: #000;
    border: none;
    font-size: 16px;
    font-weight: 400;
    border-radius: 4px;
    transition: all ease 0.3s;
    border-left: 4px solid #fff;
}

.choices__list--single {
    padding: 0;
}

.choices {
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

.choices[data-type*='select-one']:after {
    content: "\e901";
    font-family: 'fosterfuels-icon';
    font-size: 16px;
    right: 15px;
    color: #000;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    border: none;
    margin: 0;
    width: auto;
    height: auto;
    font-weight: 700;
}

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

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

.is-focused .choices__inner,
.is-open .choices__inner {
    border-color: #000;
}

.choices__list--dropdown input {
    display: none !important;
}

.choices__list--dropdown {
    z-index: 2;
    border: none !important;
}


.choices__list--dropdown .choices__list .choices__item:first-child {
    display: none !important;
}

.choices__list--dropdown .choices__item {
    padding: 9px 15px;
    font-size: 16px;
    color: #000;
}

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

.choices__list--dropdown .choices__item:hover,
.choices__list--dropdown .choices__item--selectable.is-highlighted {
    background-color: #DCDDDE;
}

.choices__list--dropdown.is-active {
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.25);
}

.choices.is-open .choices__inner {
    z-index: 3;
    position: relative;
}

.choices.is-open[data-type*='select-one']:after {
    z-index: 4;
}

.choices.is-open[data-type*='select-one']:before {
    z-index: 4;
}