/*------------------------------------*\
    
    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 { margin-bottom: 0; }

.choices__inner,
.is-open .choices__inner {
    background-color: var(--white);
    border: 1px solid var(--aqua-blue);
    padding: 4px 80px 4px 10px;
    background-color: var(--white);
    font-size: 18px;
    font-weight: 400;
    color: #343434;
    height: 45px;
    border-radius: 6px;
    transition: all ease 0.3s;
    width: 100%;
}

.choices[data-type*="select-one"]::after {
    display: inline-block;
    content: '\e907';
    font-family: 'icomoon';
    position: absolute;
    top: 14px;
    right: 14px;
    border: none;
    margin: 0;
    width: 14px;
    height: 8px;
    font-weight: normal;
    font-size: 13px;
    color: var(--loyal-blue);
}

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

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

.choices__list--dropdown .choices__item--selectable.is-highlighted {
    background-color: #F5FCFF;
}

.is-open .choices__list--dropdown {
    border-color: var(--loyal-blue);
}

@media(min-width:600px) {
    
    .choices__inner,
    .is-open .choices__inner,
    .is-focused .choices__inner {
        border: 1px solid var(--loyal-blue);
        padding: 8px 80px 8px 8px;
        height: 45px;
    }

    .choices[data-type*="select-one"]::after {
        top: 12px;
        right: 20px;
        width: 14px;
        height: 8px;
        font-size: 15px;
    }

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

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

    .choices__list--dropdown .choices__item {
        padding: 10px 15px;
        font-size: 16px;
    }

    
}