.choices__inner {
    width: 100%;
    display: block;
    background-color: #F3F3ED;
    border-radius: 3px;
    padding: 6px 15px 6px 15px !important;
    color: #2D2F1A;
    font-size: 16px;
    font-weight: 400;
    border: none;
    border-bottom: 4px solid transparent;
    height: 43px;
}

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

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

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

.choices[data-type*='select-one']:after {
    content: "";
    border: none;
    right: 15px;
    font-weight: normal;
    width: 47px;
    top: 15px;
    border-left: none;
    height: 12px;
    width: 12px;
    border-style: solid;
    border-color: #413200;
    border-width: 0px 2px 2px 0px;
    transform: rotate(45deg);
    transition: border-width 150ms ease-in-out;
}

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

.choices__list--dropdown {
    margin-top: 0;
}

.is-flipped .choices__list--dropdown {
    margin-top: 0;
    margin-bottom: 0;
}

.choices[data-type*='select-one'].is-open:after {
    top: 20px;
    transform: rotate(-135deg);
    margin-top: 0;
    border-color: #413200;
}

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

.choices__list--dropdown {
    background-color: #ffffff;
    border: 1px solid #ffffff !important;
    border-top: none !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.choices__list--single {
    padding: 0px 16px 0px 4px;
}

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

.choices__list--dropdown .choices__item--selectable {
    padding-right: 0;
}