/*------------------------------------*\
    
    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 {
    padding: 10px 19px 10px;
    background-color: #fff;
    border: 1px solid #EBEDF4;
    color: rgba(68,68,68,0.60);
    font-family: 'Barlow', sans-serif;
    height: 50px;
    font-size: 16px;
}

.choices__list--single {
    display: inline-block;
    padding: 2px 0 0 0;
    width: 100%;
}

.choices[data-type*='select-one']:after {
    border: none;
    content: '\e906';
    font-family: 'msec';
    position: absolute;
    top: 50%;
    right: 19px;
    font-size: 11px;
    font-weight: normal;
    transform: translate(0, -50%);
    letter-spacing: 0em;
    color: #394C93;
    height: auto;
    width: auto;
    margin: 0;
}

.choices[data-type*="select-one"].is-open::after {
    margin-top: 0px;
    content: '\e919';
}

.choices[data-type*="select-one"] .choices__input {
    display: block;
}

.choices[data-type*="select-one"] .choices__input:active,
.choices[data-type*="select-one"] .choices__input:focus {
	border: none;
	border-bottom: 1px solid #dddddd;
}

.choices__list--dropdown {
    /*border: none;*/
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-color: rgb(183 183 183 / 40%) !important;
    border-top: none;
}

.is-open .choices__inner {
    border: 1px solid #EBEDF4;
    padding: 10px 19px 10px;
}

.choices__list--dropdown .choices__item--selectable {
    padding-right: 20px;
}

.choices__list--dropdown .choices__item {
    padding: 12px 19px;
}

.choices__list--dropdown .choices__item--selectable::after {
    display: none;
}

.is-focused .choices__inner,
.is-open .choices__inner {
    border: none;
}

.choices__list--dropdown .choices__list {
    background: #EEF0F9;
}