.swiper_controls {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
    user-select: none;
    pointer-events: none;
}
.swiper_left,
.swiper_right {
    user-select: all;
    pointer-events: all;
    cursor: pointer;

    background-image: url("/assets/sliderArrow.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 58px;
    height: 58px;
}
.swiper_right {
}
.swiper_left {
    scale: -1 1;
}
