/*------------------------------------*\
    
    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

\*------------------------------------*/


.choices__inner {
    background: transparent;
    border: 1px solid #ddd;
    padding: 0;
    height: 20px;
    border: none;
    border-radius: 0;
    color: #000;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
}

.is-open .choices__inner {
    border-radius: 30px;
    padding-bottom: 10px;
    border-color: #C8D7EF;
}

.choices__placeholder {
    opacity: 1;
}

.choices__list--single {
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 0;
    align-items: center;
}

.choices[data-type*="select-one"]::after {
    /* content: "\f078";
    font-family: "Font Awesome 5 Free";
    border: 0;
    height: auto;
    width: auto; */
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: 2px;
    pointer-events: none;
    color: #000;
    font-size: 16px;
}

.choices__list--dropdown {
    z-index: 2;
}

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

.choices[data-type*="select-one"].is-open::after {
    transform: rotate(-180deg) translateY(20%);
    margin-top: -1px;
}

.choices__list--dropdown .choices__item--selectable {
    padding-right: 10px !important;
}

.choices__list--dropdown .choices__item {
    position: relative;
    padding: 10px;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    word-break: break-word;
}

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

.choices[data-type*='select-one'] .icon {
    background: var(--c-purple);
    border-radius: 100%;
    height: 1.500em;
    width: 1.500em;
    position: absolute;
    top: 50%;
    right: 25px;
    padding: 0 5px;
    transform: translateY(-50%);
    text-align: center;
}

.choices[data-type*='select-one'] .icon svg {
    fill: var(--c-white);
    max-height: none;
}

.choices[data-type*='select-one'] .choices__inner {
    padding-bottom: 0;
    padding-right: 15px;
    width: 150px;
}

.choices__list--single .choices__item {
    flex: 1;
    padding-left: 5px;
}

@media (max-width: 480px) {
    .choices__list--single {
        line-height: 1;
        padding: 15px 0;
    }
}