﻿.choices .choices__inner {
    padding: 0 !important;
    background-color: transparent;
    font-size: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
    min-height: 2.625rem;
    text-align: left;
    color: #061B2B;
    font-style: normal;
    font-variant: normal;
    font-family: "D-DIN-PRO", sans-serif;
    font-weight: 400;
}
.choices .choices__list--single {
    padding: .5rem;
}
.choices .choices__list .choices__item {
    font-size: 1rem;
    color: #061B2B;
}
.choices .choices__list.choices__list--dropdown {
    max-height: 200px;
    overflow: auto;
    background: #fff;
    min-width: auto;
    border-radius: 0;
    z-index: 50;
    text-align: left;
}
.choices .choices__list--dropdown,
.choices .choices__list[aria-expanded] {
    margin-top: .125rem;
}

.choices .is-flipped .choices__list--dropdown,
.choices .is-flipped .choices__list[aria-expanded] {
    margin-top: 0;
    margin-bottom: .125rem;
}
.choices .choices__list.choices__list--dropdown .is-highlighted {
    background: #C7DAE7 !important;
}
.choices:focus-within {
    outline: 2px solid #007cad !important;
    outline-offset: 2px !important;
}
.choices.disabled {
    background: #AEB6BC !important;
}
.choices.disabled .choices__inner {
    background: #AEB6BC !important;
}
.choices[data-type*=select-one]::after {
    content: '\e900';
    font-family: icons, sans-serif;
    font-weight: 400;
    font-size: 11px;
    position: absolute;
    top: 50%;
    right: 9px;
    color: #0092CB !important;
    box-sizing: border-box;
    border: 0;
    margin: 0;
    height: 1rem;
    width: auto;
    margin-top: -.5rem;
}
.choices[data-type*=select-one].is-open::after{
    content: '\e901';
}
.choices select::-ms-expand {
    display: none;
}
.choices select {
    font-family: 'D-DIN-PRO', sans-serif;
    font-weight: 400;
    background: #fff !important;
    cursor: pointer;
    border: none !important;
    outline: none !important;
    padding-left: 9px;
    min-height: 42px;
    line-height: 1.5 !important;
    font-size: 16px !important;
    font-style: normal;
    font-variant: normal;
    width: 100%;
    color: #061B2B !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
@media screen and (max-width: 767px) {

    .choices[data-type*=select-one]::after {
        right: 5px !important;
    }
}
