/*------------------------------------*\
    
    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 {
    content: '\e903';
    font-family: 'bcd';
    height: initial;
    color: var(--color-quaternary);
    width: initial;
    border-style: initial;
    border-color: initial;
    border-width: initial;
    position: absolute;
    right: 11.5px;
    top: 50%;
    margin-top: -7.5px;
    pointer-events: none;
}

/* Match global.css default text inputs ([type="text"], etc.) */
.choices__inner {
    border-radius: 600px;
    border: 0.5px solid var(--color-tertiary);
    background: var(--color-white);
    min-height: 44px;
    box-sizing: border-box;
    padding: 11px 40px 11px 20px !important;
    font-size: var(--font-size-input);
    font-weight: 400;
    line-height: 0.9;
    color: var(--color-primary);
}

@media (min-width: 1200px) {
    .choices__inner {
        padding: 15px 40px 15px 20px !important;
    }
}
.choices__list {
    padding: 0;
}
.choices__input  {
    border-radius: 20px  !important;
}
.is-open .choices__inner {
    border-radius: 20px 20px 0 0 ;
}
.choices__list--dropdown {
    border-radius: 0 0 20px 20px ;
}

.choices__list--dropdown .choices__input {
    border-radius: 20px ;
}