/*------------------------------------*\
    
    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__inner {
    width: 100%;
    display: block;
    height: 50px;
    background-color: var(--white);
    color: var(--body-color);
    border: var(--border);
    font-size: 16px;
    border-radius: 4px;
    font-family: var(--font-montserrat);
    padding: 7px 56px 7px 16px !important;
    font-weight: 400;
    transition: all ease 0.1s;  
    z-index: 3;
    position: relative;
}
.choices__list--dropdown .choices__item {
    height: 50px;
    display: flex;
    align-items: center;
    width: 100%;
}
.choices__placeholder{
    opacity: 1;
}
.choices[data-type*='select-one']:after {
    content: "\e906";
    font-family: 'rmfx-icon';
    width: 46px;
    height: 100%;
    border: none;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #DDDDDD;
    font-size: 12px;
    line-height: 1em;
    color: var(--primary-color);
    z-index: 3;
    padding-top: 5px;
}

.choices[data-type*='select-one'].is-open:after {
    content: "\e918";
    color: var(--medium);
    border-left: 1px solid #DDDDDD;
    margin-top: 0;
    padding-top: 0;
}

.is-open .choices__inner {
    border-radius: 4px 4px 0 0;
}

.is-focused .choices__inner, .is-open .choices__inner {
    border-color: var(--border-color);
    box-shadow: var(--drop-shadow);
}

.is-open .choices__list--dropdown[aria-expanded] {
    border-color: var(--border-color);
    box-shadow: var(--drop-shadow);
}

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

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

.choices__list--dropdown .choices__item {
    position: relative;
    padding: 10px 16px !important;
    font-size: 16px;
    color: var(--body-color);
    font-weight: 400;
}

.choices__list--dropdown .choices__item--selectable.is-highlighted {
    background-color: var(--light);
    color: var(--body-color);
}