#cart-crossselling-products {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: white;
    padding: 0 15px;

    .swiper-wrapper {
        margin-top: 2rem;
    }

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

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

        .swiper-button-prev {
            left: calc(100% - 110px);
        }

        .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-slide {
            width: auto;
        }
    }

    @media screen and (min-width: 480px) {
        .swiper-slide {
            width: 274px !important;
        }
    }

    .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 {
        opacity: 0.4;
        cursor: not-allowed;
    }

    .swiper-container {
        padding-top: 30px;
        margin-bottom: 40px;
        width: 100%;
    }

}