.gl-button-filter {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.gl-button-filter [data-buttonfilter] {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 12px;
    gap: 12px;
    width: fit-content;
    width: -moz-fit-content;
    min-width: 30px;
    outline: none;
    border: 1px solid transparent;
    border-radius: 20px;
    background-color: var(--colors-bg-component-bg-grey-regular, #F0F3FA);
    white-space: nowrap;
    color: var(--colors-text-text-terciary, #8193A8);
    transition: all 0.2s ease-in-out;
}

.gl-button-filter [data-buttonfilter][data-buttonfilter-active="true"],
.gl-button-filter [data-buttonfilter]:hover {
    background-color: var(--colors-content-content-2);
    color: var(--ro-colors-white);
}

[data-buttonfilter-item][data-buttonfilter-item-active="false"] {
    display: none !important;
}

[data-buttonfilter-item][data-buttonfilter-item-active="true"] {
    display: flex !important;
}