.chip {
    font-size: 1.6rem;
    /*background-color: var(--grey-200);*/
    border: .2rem solid var(--grey-500);
    border-radius: 0.2em;
    display: inline-flex;
    height: 2.5em;
    outline: 0;
    padding: 0 .75em 0 .75em;
    position: relative;
    align-items: center;
    gap: 1em;
    cursor: pointer;
}

.l-chip__container {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    margin: 2em 0;
    /* overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none; */
}

@media (max-width: 1199.8px) {
    .l-chip__container {
        overflow-x: auto;
        white-space: nowrap;
        scrollbar-width: none;
        flex-wrap: nowrap;
        padding: 0rem 4rem;
    }
}

.chip__label {}


.chip--del {
    border-color: var(--red-500);
    color: var(--red-500);
    font-weight: bold;
}

.chip--del::after {
    content: '';
    height: 2em;
    aspect-ratio: 1 / 2;
    background: url('../img/del_icon.svg') no-repeat center center / cover;
}

/* Navigationsbuttons mobile Ansicht (wird über javascript gesteuert, wann diese angezeigt werden*/
.chip-nav-wrapper {
    position: relative;
    /* display: flex; */
    display: none;
    align-items: center;
    margin-top: 2em;
    margin-bottom: 1em;
}

.l-chip__container {
    overflow-x: auto;
    scroll-behavior: smooth;
    white-space: nowrap;
    width: 100%;
}

.chip-scroll-btn--left {
    margin-right: 5px;
}

.chip-scroll-btn--right {
    margin-left: 5px;
}