/*
* 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_cards {
  overflow: hidden;
}
.sn_slider_cards .swiper {
  overflow: visible;
}
.sn_slider_cards .swiper > .swiper-wrapper > .swiper-slide {
  width: calc((100% - 12px) / 1.75);
  margin-right: 16px;
}
@media only screen and (min-width: 36em) {
  .sn_slider_cards .swiper > .swiper-wrapper > .swiper-slide {
    width: calc((100% - 20.8px) / 2.3);
    margin-right: 16px;
  }
}
@media only screen and (min-width: 48em) {
  .sn_slider_cards .swiper > .swiper-wrapper > .swiper-slide {
    width: calc((100% - 12.8px) / 1.8);
    margin-right: 16px;
  }
}
@media only screen and (min-width: 62em) {
  .sn_slider_cards .swiper > .swiper-wrapper > .swiper-slide {
    width: calc((100% - 28.8px) / 2.8);
    margin-right: 16px;
  }
}
@media only screen and (min-width: 81.25em) {
  .sn_slider_cards .swiper > .swiper-wrapper > .swiper-slide {
    width: calc((100% - 32px) / 3);
    margin-right: 16px;
  }
}
.sn_slider_cards.__small .swiper > .swiper-wrapper > .swiper-slide {
  width: calc((100% - 16px) / 2);
  margin-right: 16px;
}
@media only screen and (min-width: 36em) {
  .sn_slider_cards.__small .swiper > .swiper-wrapper > .swiper-slide {
    width: calc((100% - 32px) / 3);
    margin-right: 16px;
  }
}
@media only screen and (min-width: 62em) {
  .sn_slider_cards.__small .swiper > .swiper-wrapper > .swiper-slide {
    width: calc((100% - 48px) / 4);
    margin-right: 16px;
  }
}