.wbk_categories {
    &__wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    &__items {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 4px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: auto;

        &::-webkit-scrollbar {
            display: none;
        }
        -ms-overflow-style: none;
        scrollbar-width: none;

        &__item {
            padding: 4px 12px;
            border-radius: 100px;
            font-weight: 400;
            font-size: 14px;
            line-height: 22px;
            letter-spacing: 1%;
            text-align: center;
            color: #22292f;
            background-color: #edeff2;
            cursor: pointer;
            border: 1.5px solid #edeff2;
            white-space: nowrap;

            &--selected {
                border-color: colors.$wbk-primary-500;
                background-color: colors.$wbk-primary-50;
                color: colors.$wbk-primary-500;
            }
        }
    }

    &__navigation-button {
        background-color: #ffffff;
        box-shadow: 0px 0px 16px 0px #3f3f4629;
        width: 24px;
        height: 24px;
        min-width: 24px;
        min-height: 24px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 1;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);

        &--prev {
            left: -12px;
        }

        &--next {
            right: -12px;
        }
    }
}
