/*------------------------------------*\
    
    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%;
    height: 50px;
    border: 2px solid #F4F4F4!important;
    border-radius: 30px!important;
    color: #B9B9B9;
    font-size: 16px;
    background: #ffffff;
    padding: 12px 54px 10px 20px !important;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    transition: all .4s ease-in-out;
}

.choices__list--single {
    padding: 0;
}

.choices__input {
    display: none!important;
}

.choices__list--single .choices__item {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.choices[data-type*='select-one']:after {
    content: "\e901";
    position: absolute;
    top: 0;
    right: 28px;
    width: auto;
    height: auto;
    margin: 0;
    color: #B9B9B9;
    border: none;
    font-family: 'icomoon';
    font-size: 35px;
    line-height: 50px;
    margin: 0!important;
}

.is-open .choices__list--dropdown {
    border-color: #F4F4F4;
    border-radius: 14px;
    margin-top: 4px;
}

@media (min-width: 600px) {
    .choices__list--dropdown .choices__item--selectable {
        padding-right: 0;
    }

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

@media (min-width: 1025px) {
    .choices__inner {
        height: 60px;
        padding: 16px 54px 12px 30px !important;
    }

    .choices[data-type*='select-one']:after {
        line-height: 60px;
    }
}