.ql {
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #fafafa;
}

.ql__wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8125rem;
    align-self: stretch;
    display: flex;
}

.ql__items {
    width: max-content;
    display: flex;
    gap: 1rem;
}

.ql__items__wrapper {
    width: auto;
    overflow-x: scroll;
    padding: 1rem;
}

.ql__title {
    align-self: center;
    color: var(--text-normal);
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    /* 0.875rem */
    letter-spacing: -0.00875rem;
}

.ql__item {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    /* 0.875rem */
    letter-spacing: -0.00875rem;
    transition: color 350ms ease-out;
}

.ql__item:hover {
    color: var(--primary-color);
}