@import "vendor/choices.min.css";

:root {
    --choices-primary-color: rgb(255, 159, 159);
    --choices-item-color: rgb(113, 0, 0);
    --choices-bg-color: white;
    --choices-inner-padding: 0;
    --choices-input-margin-bottom: 0;
}

#dashboard-app {
    margin: 5em 0;
    display: flex;
    flex-direction: column;
    gap: 3em;
}

.choices {
    max-width: 320px;
    width: 320px;
}

.choices__input {
    width: 100% !important;
}

.choices__list:has(> *) {
    margin-bottom: 5px;
    display: block;
}

.choices__inner {
    flex-wrap: wrap;
    max-height: 120px;
    overflow-y: auto;
    border: none;
}

.choices:is([data-type*=select-multiple],[data-type*=text]) .choices__button {
    background-image: none;
    mask-image: var(--choices-icon-cross, url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg=="));
    mask-size: var(--choices-button-dimension, 8px);
    mask-position: center;
    mask-repeat: no-repeat;
    background-color: var(--choices-item-color);
}