.gc-slide {
    margin-top: 30px;
}

.gc-slide__button {
    z-index: 2;
    border: none;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 33%;
    transform: translateY(-50%);
    background: url(/media/icons/arrow-slider-left.svg) no-repeat center / cover;
}
.gc-slide__button.disabled {
    visibility: hidden;
}

.gc-slide__button-prev {
    left: -22px;
}

.gc-slide__button-next, .gc-slide__button--next {
    right: -22px;
    background: url(/media/icons/arrow-slider-right.svg) no-repeat center / cover;
}

.gc-slide__track-wrapper {
    flex-wrap: nowrap;
    gap: 15px;
    transition: transform 0.5s;
}

.gc-slide__track-wrapper .product-list-item {
    width: calc((100% - 45px) / 4);
}

@media only screen and (max-width: 768px) {
    .gc-slide__outercontainer {
        padding: 0;
    }
    .gc-slide {
        margin-top: 15px;
    }
    .gc-slide__track-wrapper {
        gap: inherit;
        overflow-x: scroll;
        scrollbar-width: none;
    }
    .gc-horizontal-scroll-container {
        margin-top: 25px;
        margin-bottom: 20px;
    }
    .gc-slide__track-wrapper .product-list-item {
        width: calc((100% - 40px) / 2);
        padding: 0 8px;
    }
    .gc-slide__track-wrapper .product-list-item:first-of-type {
        padding-left: 16px;
    }
    .gc-slide__track-wrapper .product-list-item:last-of-type {
        padding-right: 16px;
    }

    .gc-horizontal-scroll-wrapper {
        background: #f5f5f5;
        outline: none;
        height: 4px;
        display: flex;
        position: relative;
        border-radius: 5px;
    }

    .gc-horizontal-scroll-indicator {
        /* pointer-events: none; */
        background: #000;
        position: absolute;
        top: 0;
        bottom: 0;
        /* left: 70px; */
        width: 60px;
        border-radius: 5px;
    }
}