.tabs-header {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scrollbar-width: none;
}

.tabs-header-item {
    background: var(--tabs-bg-color);
    color: var(--tabs-color);
    border-radius: 20px;
    padding: 4px 15px;
    cursor: pointer;
    font-size: 12px;
    display: flex;
    align-items: center;
    text-align: center;
    transition: all 150ms linear;
    line-height: 18px;
    white-space: nowrap;
}

.tabs-header-item.active {
    background: var(--tabs-bg-active-color);
    color: var(--color-white);
    font-weight: var(--font-weight-semibold);
}


.tabs-header::-webkit-scrollbar {
    display: none;
}