.custom-categories-list {
    /*.swiper-wrapper {*/
    /*    display: flex;*/
    /*    flex-direction: row;*/
    /*}*/

    .custom-categories-list-item {
        a {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;

            img {
                width: 128px;
                height: 128px;
                margin-bottom: 10px;
            }

            @media screen and (min-width: 480px) {
                img {
                    width: 192px;
                    height: 192px;
                }
            }
        }

        span, h3 {
            color: black;
            text-decoration: none;
            width: 75%;
            text-align: center;
            margin: 0;
            font-size: 16px;
            line-height: 19px;
            font-weight: 400;
        }
    }

    .swiper-navigation-button {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 20px;

        .swiper-button-prev, .swiper-button-next {
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: rgba(235, 105, 9, 1);
            border-radius: 50%;
            width: 48px;
            height: 48px;
        }
    }

    .swiper-button-prev svg, .swiper-button-next svg {
        width: 16px !important;
        height: 16px !important;
    }
    .swiper-button-disabled{
        display: none !important;
    }

    @media screen and (min-width: 480px) {
        .swiper-navigation-button {
            display: flex;
        }
        .swiper-button-next, .swiper-button-prev {
            display: block;
            position: absolute;
            top: 30%;
        }

        .swiper-button-next {
            right: 0;
        }

        .swiper-button-prev {
            left: 0;
        }

        .swiper-button-next, .swiper-button-prev {
            margin-top: -15px;
            z-index: 10;
            cursor: pointer;
            background-size: 30px 30px;
            background-position: center;
            background-repeat: no-repeat;
        }
    }

    @media screen and (max-width: 480px) {
        .swiper-navigation-button {
            display: none;
        }
    }

    .swiper-scrollbar {
        margin: 36px auto 20px auto;
        width: 75%;
        display: flex;
        position: inherit;

        .swiper-scrollbar-drag {
            background: #EB6909;
        }
    }
}