.gallery {
  position: relative;
  display: flex;
  flex-direction: row;
  width: 600px;
  height: 600px;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}
@media (max-width: 768px) {
  .gallery .slide-left, .gallery .slide-right {
    max-width: 10vw;
    width: 25%;
  }
}
@media (min-width: 769px) {
  .gallery .slide-left, .gallery .slide-right {
    width: 15%;
    max-width: 5vw;
  }
}
.gallery .slide-left, .gallery .slide-right {
  position: absolute;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  align-items: center;
  display: flex;
  justify-content: center;
  font-size: 2em;
  z-index: 1;
}
.gallery .slide-left {
  top: 0;
  left: 0;
}
.gallery .slide-right {
  top: 0;
  right: 0;
}
.gallery .gallery-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 100%;
  height: 100%;
  transition-duration: 0.7s;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 0;
}
.gallery .gallery-image-wrapper .gallery-image {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-cover-2 .gallery-image-wrapper {
  width: 50% !important;
  min-width: 50% !important;
}

.gallery-cover-3 .gallery-image-wrapper {
  width: 33.33% !important;
  min-width: 33.33% !important;
}

.gallery-cover-4 .gallery-image-wrapper {
  width: 25% !important;
  min-width: 25% !important;
}

.gallery :not(.looping) .slide-left {
  display: none;
}

/*# sourceMappingURL=gallery.css.map */
