/* Choices.js global styles */
.choices__list--dropdown { z-index: 9999 !important; }
.choices { width: 100%; }
.choices__inner {
    height: 38px;
    min-height: 38px;
    border: 1.5px solid #ced4da;
    border-radius: .25rem;
    background-color: #fff;
    padding: 0 12px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    flex-wrap: nowrap;
    overflow: hidden;
}
.choices.is-open .choices__inner,
.choices__inner:hover {
    border-color: #86b7fe;
}
.choices.is-focused .choices__inner {
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.choices__list--single { padding: 0; }
.choices__placeholder { color: #6c757d; opacity: 1; }
.choices__input {
    flex: 1 1 auto;
    min-width: 0;
    width: 100% !important;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    font-size: 1rem;
}
.choices__list--dropdown .choices__input {
    border: 1px solid #ced4da !important;
    border-radius: .25rem !important;
    padding: 6px 10px !important;
    margin: 8px !important;
    width: calc(100% - 16px) !important;
    font-size: 0.9rem !important;
    background: #fff !important;
    box-sizing: border-box !important;
}
.choices__list--dropdown .choices__input:focus {
    border-color: #86b7fe !important;
    outline: 0 !important;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.2) !important;
}
.choices__list--single .choices__item {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}
.choices__list--dropdown .choices__list,
.choices__list[aria-expanded] .choices__list {
    max-height: 300px !important;
    overflow-y: auto !important;
}
