/* Container */
.choices__inner {
    background-color: #e1e1e1;
    padding: 7.5px 7.5px 3.75px;
    border: 1px solid #ddd;
    border-radius: 2.5px;
}

/* Input zur Textsuche */
/* soll sich nicht von choices__inner unterscheiden*/
.choices__input {
    background-color: transparent;
}

/* Normales Element */
.choices__list--multiple .choices__item {
    background-color: var(--primaryCustom);
    border: 1px solid var(--primaryCustomBorder);
    color: var(--primaryCustomText);
}

/* Normales Element angeklickt */
.choices__list--multiple .choices__item.is-highlighted {
    background-color: var(--secondaryCustom);
    border: 1px solid var(--secondaryCustom);
    color: var(--secondaryCustomText);
}

/* Strich zwischen Text und X innerhalb eines Elements */
.choices[data-type*=select-multiple] .choices__button,
.choices[data-type*=text] .choices__button {
    border-left: 1px solid #e1e1e1;
}

/* Dropdown List */
.choices__list {
    z-index: 999;
}
