.choices__inner {
    border: 1px solid #D9D9D9;
    border-radius: 0 !important;
    background: #FFFFFF;
    width: 100%;
    height: 51px;
    display: block;
    padding: 14px 55px 14px 15px !important;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.3em;
    color: #101010;
    font-family: 'urw_form_condregular';
}

.is-open .choices__inner {
    border: 2px solid #777777;
}

.choices__list {
    padding: 0 !important;
}

.choices[data-type*='select-one']:after {
    content: "\e90b";
    font-family: 'arnold-machinery-construction' !important;
    width: auto;
    height: auto;
    border: none;
    margin: 0;
    top: 50%;
    transform: translate(0, -50%);
    color: #C80F2E;
    right: 16px;
    font-weight: normal;
}

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

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

.choices[data-type*='select-one'].is-open::before {
    width: 2px;
    background: #777777;
}


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

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

.choices__list--single .choices__item {
    display: flex;
    gap: 4px;
}

.choices__list--single .choices__item span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

.choices__list--dropdown .choices__item:nth-child(even) {
    background: #D9D9D9;
}

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

.choices__list--dropdown {
    border: none;
}

.choices__list--dropdown .choices__item:hover,
.choices__list--dropdown .choices__item.is-selected {
    background: #940B22;
    color: #fff;
}

.choices__list--dropdown {
    margin-top: 0;
    border-radius: 0 !important;
}

.form-col:has(.choices):after {
    right: 48px;
}

.form-col:has(.is-open):after {
    width: 184px;
}

.form-col:has(.is-open):before {
    right: 231px;
    opacity: 1;
}

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

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