/*------------------------------------*\
    
    WebFX Choices.js Customizations - Global styling for select box/text inputs using Choices.js

    Add custom Choices.js select input styling to this file if it should be applied to all Choices.js select inputs on the site
    Otherwise, put your styles in individual block stylesheets

\*------------------------------------*/


.choices[data-type*='select-one']:after,
.choices[data-type*='select-multiple']:after{
    content: "\e975";
    font-family: 'colorado-shade-icon';
    height: auto;
    width: auto;
    border: none;
    position: absolute;
    right: 15px;
    font-weight: normal;
    font-size: 12px;
    color: #F10018;
    top: 50%;
    margin-top: 0;
    transform: translate(0, -50%);
}

.choices__inner {
    vertical-align: middle;
    padding: 12px 38px 8px 15px !important;
    height: 56px;
    background: #EEEEEE;
    border-radius: 4px;
    font-size: 16px;
    color: #000;
    border: none;
    font-weight: 400;
}

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

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

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

.choices {
    text-align: left;
}

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

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

.choices__list--dropdown .choices__list {
    color: #000;
}

.choices__list--dropdown.is-active {
    z-index: 333;
}

.choices__list--multiple .choices__item {
    background-color: #c30013;
    border-color: #c30013;
}

.choices__list--multiple + .choices__input {
    height: auto;
    margin: 0;
    border: none !important;
    background: none !important;
}

@media(min-width: 1200px) {
    .choices[data-type*='select-one']:after,
    .choices[data-type*='select-multiple']:after{
        font-size: 19px;
    }
}