h3 {
    color: #343a40;
    margin-bottom: 20px;
}

.choices {
    border-radius: 1rem!important;
    border: 1px solid rgba(49, 85, 161, 0.3);
    overflow: hidden;

}
.choices__item.choices__placeholder.choices__item--selectable{
    background-color: rgba(255, 255, 255, 0)!important;
    color: rgb(3, 26, 172) !important;
}
.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: rgba(255, 255, 255, 0) !important;
    color: #000cff !important;
    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(--8)!important;
    background-color: #fdbd5a!important;

}

button.choices__button {
    color: #120000 !important;
    background-color: rgba(251, 38, 38, 0.59);
    margin-left: 5px;
    border-radius: 50%!important;
    padding: 0;
    border: none!important;
    width: 8px;
    height: 16px;
}

/* 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!important;
    border: 1px solid var(--4);
    padding: 10px 2px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    opacity: 1;

}

.choices__list--dropdown .choices__item--selectable:hover {
    background-color: #deecff;
    color: #000;

}


