/*------------------------------------*\
    
    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 {
    border: 1px solid #c4c4c4;
    background: #fafafa;
    color: var(--brand-dark-gray);
    opacity: 1;
    font-size: 13px;
    font-weight: 300;
    font-family: 'Roboto Condensed', sans-serif;
    padding: 8px 35px 12px 22px!important;
    height: 48px;
    position: relative;
}

.product-filter .choices__inner {
    background: #ffffff;
    font-family: 'Open Sans', sans-serif;
    padding: 12px 48px 12px 22px!important;
    height: 60px;
}

.choices[data-type*='select-one']:after {
    content: "\e918";
    display: block;
    font-family: 'icomoon';
    font-size: 12px;
    position: absolute;
    right: 16px;
    padding: 16px;
    top: 2px;
    pointer-events: none;

    border-style: none;
    border-color: unset;
    border-width: unset;
    margin-top: 0;
}

.choices[data-type*='select-one'].is-open:after {
    content: "\e91b";
    border-color: unset;
    margin-top: 0;
}

.product-filter .choices__inner:after {
    content: '';
    display: block;
    position: absolute;
    top: calc(50% - 20px);
    right: 48px;
    width: 1px;
    height: 40px;
    background-color: #c4c4c4;
}

.request-col .choices__inner {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}

.is-open .choices__list--dropdown {
    border-color: #c4c4c4;
}

.choices__placeholder,
.choices__item--selectable {
    opacity: 0.5;
}

.choices__item--selectable{
    font-size:18px;
}