

.choices[data-type*="select-one"] .choices__input { 
    display: none;
}

.choices__inner {
    width: 100%;
    display: block;
    border-radius: 0;
    background-color: transparent;
    border: none;
    padding:  0 0 5px;
    border-bottom: 1px solid rgba( 0, 0, 0, .50 );
    height: 25px;
    min-height: 25px;
    font-size: 18px;
    color: #000000;
    font-family: "Montserrat", serif; 
    font-weight: normal;
}

.choices__list--single {
    padding: 0 !important;
}

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

.choices[data-type*="select-one"]::after {
    border: none;
    content: "\e970";
    font-family: 'york-building-products-icons';
    right: 0;
    font-size: 16px;
    color: #000000;
    top: 50%;
    transform: translate(0, -50%);
    width: auto;
    height: auto;
    margin: 0;
    z-index: 2;
}

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

.choices__list--dropdown .choices__item {
    position: relative;
    padding: 7px 20px;
    font-size: 16px;
    color: #1B1B1B;
}

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

.is-focused .choices__inner,
.is-open .choices__inner {
    border-color: rgba( 0, 0, 0, .50 );
}

.choices__list--dropdown {
    background-color: #ffffff;
    border: none;
    border-radius: 0;
    padding: 0;
    z-index: 3;
    margin-top: 0;
}

.choices__list--dropdown .choices__item {
    padding: 6px 9px;
    font-size: 16px;
    color: #000;
    font-weight: 400;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}

.choices__list--dropdown .choices__item:last-child {
    border-bottom: none;
}


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

.choices[data-type*='select-one'] .choices__inner {
    position: relative;
    z-index: 2;
}

@media (min-width: 1200px) {

    .choices__list--dropdown .choices__item:hover {
        font-weight: 700;
        color: #001489;
    }
}