h3 {
    color: #343a40;
    margin-bottom: 20px;
}

.choices {
    border-radius: 1rem!important;
    border: 1px solid rgba(49, 85, 161, 0.3);
    overflow: hidden;

}
.choices.is-open {
    border-radius: 1rem!important;
    border: 1px solid rgba(49, 85, 161, 0.3);

}
.choices.is-open.is-focused {
    border-radius: 1rem!important;
    border: 1px solid var(--4)!important;

}
.choices.is-open.is-focused.isflipped {
    border-radius: 1rem!important;
    border: 1px solid var(--4)!important;
}

input.choices__input.choices__input--cloned{
    background-color: rgba(255, 255, 255, 0)!important;
}

/* Style the container */
.choices__inner {
    border-radius: 1rem!important;
    min-height: 45px;
    padding: 7px 10px;
    background-color: #fff;
    transition: border-color 0.3s ease;
}

.choices__inner:focus,
.choices__inner.is-focused {
    overflow: hidden;
    border-radius: 1rem!important;
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

/* Style selected items */
.choices__item--selectable {
    background-color: var(--2)!important;
    color: #fff;
    border-radius: 0.375rem;
    padding: 3px 8px;
    margin: 2px;
}
.choices__item--selectable.choices__item--choice {
    background-color: #f2f2f2!important;
    border-radius: 0.375rem;
    padding: 3px 8px;
    margin: 2px;
}
.choices__item{
    color: #000;
}
.choices__item:hover{
    color: var(--2)!important;
    background-color: var(--4)!important;
}

.choices__button {
    color: #737373;
    margin-left: 5px;
}

/* Placeholder text */
.choices__placeholder {
    color: #6c757d;
    background-color: rgba(10, 255, 217, 0);
}

/* Dropdown style */
.choices__list--dropdown,
.choices__list[aria-expanded] {
    border-radius: 1rem;
    border: 1px solid var(--4);
    padding: 5px 2px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.choices__list--dropdown .choices__item--selectable:hover {
    background-color: #deecff;
    color: #000;

}