/* ===== Choices.js Custom Theme ===== */

.choices {
    margin-bottom: 0;
    font-size: 14px;
}

.choices__inner {
    min-height: 44px;
    padding: 6px 10px;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #ced4da;
}

.choices__inner:hover {
    border-color: #0d6efd;
}

/* Selected pills */
.choices__list--multiple .choices__item {
    background-color: #0d6efd;
    border: none;
    color: #fff;
    border-radius: 20px;
    padding: 4px 10px;
    margin: 4px 4px 0 0;
    font-size: 13px;
}

/* Remove button */
.choices__list--multiple .choices__item .choices__button {
    border-left: none;
    margin-left: 6px;
    opacity: 0.8;
}

/* Dropdown */
.choices__list--dropdown {
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.choices__list--dropdown .choices__item {
    padding: 10px;
}

/* Active option */
.choices__list--dropdown .choices__item--selectable.is-highlighted {
    background-color: #f1f5ff;
}

/* Placeholder */
.choices__placeholder {
    opacity: 0.6;
}

/* Search input inside dropdown */
.choices__input--cloned {
    padding: 6px;
    font-size: 14px;
}
