.overlay-carousel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 16;
  opacity: 0;
  display: none;
  pointer-events: none;
}
.overlay-carousel .swiper {
  width: 100%;
  height: 100%;
}
.overlay-carousel .swiper .swiper-slide {
  display: flex;
  align-items: center;
  padding: 0;
}
.overlay-carousel .swiper .swiper-slide img,
.overlay-carousel .swiper .swiper-slide video,
.overlay-carousel .swiper .swiper-slide iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 90%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 470px) {
  .overlay-carousel .swiper .swiper-slide img,
  .overlay-carousel .swiper .swiper-slide video,
  .overlay-carousel .swiper .swiper-slide iframe {
    width: 100%;
  }
}
.overlay-carousel .ui-close {
  position: fixed;
  top: 29px;
  right: 32px;
  width: 22px;
  z-index: 2;
  cursor: pointer;
  background: transparent;
  padding: 0;
  border: none;
}
@media (max-width: 900px) {
  .overlay-carousel .ui-close {
    top: 26px;
    right: 25px;
  }
}
@media (max-width: 600px) {
  .overlay-carousel .ui-close {
    width: 20px;
    right: 20px;
    top: 20px;
  }
}
.overlay-carousel .carousel-btn {
  position: fixed;
  top: 50%;
  width: 40px;
  cursor: pointer;
  z-index: 10;
}
@media (max-width: 900px) {
  .overlay-carousel .carousel-btn {
    width: 30px;
  }
}
.overlay-carousel .carousel-btn.carousel-prev {
  left: 32px;
  transform: translateY(-50%) scaleX(-1);
}
@media (max-width: 900px) {
  .overlay-carousel .carousel-btn.carousel-prev {
    left: 25px;
  }
}
@media (max-width: 600px) {
  .overlay-carousel .carousel-btn.carousel-prev {
    left: 10px;
  }
}
.overlay-carousel .carousel-btn.carousel-next {
  position: fixed;
  right: 32px;
  transform: translateY(-50%);
}
@media (max-width: 900px) {
  .overlay-carousel .carousel-btn.carousel-next {
    right: 25px;
  }
}
@media (max-width: 600px) {
  .overlay-carousel .carousel-btn.carousel-next {
    right: 10px;
  }
}/*# sourceMappingURL=interaction_carousel.css.map */