.choices__inner {
    border: none;
    border-radius: 10px !important;
    background: rgba(239, 239, 240, 0.75);
    width: 100%;
    height: 51px;
    display: block;
    padding: 14px 52px 12px 15px !important;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.3em;
    color: #474747;
    font-family: var(--primary-font)
}

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

.choices__list {
    padding: 0 !important;
}

.choices[data-type*='select-one']:after {
    content: "\e907";
    font-family: 'harris-water-icons' !important;
    width: auto;
    height: auto;
    border: none;
    margin: 0;
    top: 50%;
    transform: translate(0, -50%);
    color: #00223F;
    right: 15px;
    font-weight: normal;
    font-size: 16px;
}

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

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

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

.choices__list--dropdown .choices__item {
    padding: 9px 15px !important;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.3em;
    color: #00223F;
    font-family: var(--primary-font)
}

.choices__list--dropdown .choices__item:nth-child(even) {
    background: var(--white);
}

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

.is-open .choices__list--dropdown {
    border-radius: 10px !important;
    background: rgba(239, 239, 240, 1);
    margin-top: -1px;
}

.choices__list--dropdown .choices__item:nth-child(2n) {
    background: rgba(239, 239, 240, 1);
}

.choices__list--dropdown {
    border: none;
}

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

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

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

