.store-gallery {
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-slider {
    position: relative;
    margin: 2px 40px;
    width: 100%;
}

.store-slider-sprite-block {
    overflow: hidden;
}

.sprite {
    display: flex;
    align-items: center;
    height: 100px;
}

.justify-center {
    justify-content: center;
}

.store-slide {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    line-height: 0;
    margin-right: 2%;
    height: 100px;
    min-width: 32%;
}

@media (max-width: 700px) {
    .store-slide {
        margin-right: 2%;
        min-width: 49%;
    }
}

@media (min-width: 1000px) {
    .store-slide {
        margin-right: 1.3%;
        min-width: 24.1%;
    }
}

.sprite .store-slide:last-child {
    margin-right: 0;
}

.store-slider-button {
    display:inline-flex;
    vertical-align:top;
    justify-content:center;
    align-items:center;
    position: absolute;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 0;
    background: #fff;
    top: 30px;
    box-shadow: 2px 3px 20px rgb(0 0 0 / 10%),
    2px 3px 7px rgb(0 0 0 / 20%),
    1px 1px 1px rgb(0 0 0 / 10%);
    opacity: 0.6;
}

.store-slider-button:hover {
    opacity: 1;
}

#next_slide_button svg {
    transform: rotate(180deg);
}

#next_slide_button {
    z-index: 5;
    right: -50px;
}

#prev_slide_button {
    z-index: 5;
    left: -50px;
}
