/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v2.0.0
* Docs at http://ramseyinhouse.github.io/scut
*/
.sn_slider_gallery {
  overflow: hidden;
}
.sn_slider_gallery.__content .sn_slider_gallery__panel {
  position: absolute;
  top: 0;
  right: 100%;
  bottom: 0;
  width: 100vw;
  background-color: #fff;
  z-index: 2;
  display: none;
}
@media only screen and (min-width: 62em) {
  .sn_slider_gallery.__content .sn_slider_gallery__panel {
    display: block;
  }
}
.sn_slider_gallery__content {
  position: relative;
  z-index: 10;
}
.sn_slider_gallery__swiper {
  overflow: visible;
}
.sn_slider_gallery__swiper > .swiper-wrapper > .swiper-slide {
  width: calc((100% - 0.1rem) / 1.1);
  margin-right: 1rem;
}
@media only screen and (min-width: 62em) {
  .sn_slider_gallery__swiper > .swiper-wrapper > .swiper-slide {
    width: calc((100% - 0.4rem) / 1.4);
    margin-right: 1rem;
  }
}
.sn_slider_gallery__swiper__i figure {
  border-radius: 0.5rem;
  overflow: hidden;
  position: relative;
  aspect-ratio: 900/600;
  position: relative;
  width: 100%;
}