.choices {
    border: 1px solid #D8D2D2;
    z-index: 3;
}

.choices__inner {
    vertical-align: middle;
    background-color: #fff;
    padding: 7px 20px;
    border: none;
    border-radius: 0;
    font-size: 16px;
    min-height: 50px;
}


.choices[data-type*='select-one']:after {
    content: "\e917";
    font-family: 'icomoon';
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translate(0, -50%) rotate(180deg);
    font-size: 15px;
    color: #990033;
    line-height: 1em;
    font-weight: normal;
    z-index: 2;
    border: none;
    width: auto;
    height: auto;
    margin-top: 0;
}

.choices[data-type*='select-one'].is-open:after {
    transform: translate(0, -50%);
    top: 50%;
    margin-top: 0;
}

.choices[data-type*='select-one'] .choices__inner {
    padding-bottom: 8px;
}

.choices[data-type*="select-one"] .choices__input {
    display: none;
}

.choices__item {
    word-break: break-word;
}

.choices__list--dropdown .choices__item--selectable {
    padding-right: 10px;
}

.choices__list--dropdown .choices__item--selectable::after {
    display: none;
}

.choices__list--single .choices__item {
    color: #7B7474;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.choices__placeholder {
    opacity: 1;
}

@media (min-width: 768px) {
    .choices[data-type*='select-one'] .choices__inner {
        padding-bottom: 3px;
    }

    .choices__inner {
        padding: 3px 15px;
        min-height: 40px;
    }

    .choices[data-type*='select-one']:after {
        right: 15px;
    }

    
}

@media (min-width: 768px) {
    .choices__list--dropdown .choices__item {
        padding-left: 20px;
    }
}