.gallery.swiper {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

/* FONTOS */
.gallery.swiper .swiper-wrapper {
    display: flex;
    align-items: center;
}

/* egy slide = teljes szélesség */
.gallery.swiper .swiper-slide {
    flex-shrink: 0;
    width: 100% !important;

    display: flex;
    justify-content: center;
    align-items: center;

    margin: 0 !important;
    box-sizing: border-box;
}

/* kép középen */
.gallery.swiper .gallery-icon {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* maga a kép */
.gallery.swiper img {
    display: block;
    max-width: 100%;
    width: auto;
    height: auto;
}

/* nyilak */
.gallery.swiper .swiper-button-prev,
.gallery.swiper .swiper-button-next {
    color: #2196f3;

    width: 44px;
    height: 44px;

    top: 50%;
    transform: translateY(-50%);
}

/* bal */
.gallery.swiper .swiper-button-prev {
    left: 10px;
}

/* jobb */
.gallery.swiper .swiper-button-next {
    right: 10px;
}