/*------------------------------------*\
    
    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: 45px;
    background-color: #fff;
    color: #23345C;
    border: 1px solid #D9D9D9;
    font-size: 18px;
    border-radius: 4px;
    padding: 6px 35px 9px 12px !important;
    font-weight: 400;
    transition: all ease 0.1s;  
    position: relative;
    font-family: "Exo 2", sans-serif;
}

.choices[data-type*='select-one']:after {
    content: "\e900";
    font-family: 'visionx-icon';
    width: 35px;
    height: 100%;
    border: none;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    color: #041746;
    font-size: 9px;
    padding-top: 7px;
}

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

.choices__list--single {
    padding: 0;
}

.choices__list--dropdown .choices__item {
    font-size: 18px;
    color: #23345C;
}

.choices[data-type*="select-one"] .choices__input,
.choices__list--dropdown .choices__item--selectable.is-highlighted::after {
    display: none !important;
}