/*
* 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_steps {
  overflow: hidden;
}
.sn_slider_steps .swiper {
  overflow: visible;
}
.sn_slider_steps .swiper > .swiper-wrapper > .swiper-slide {
  width: calc((100% - 0px) / 2);
  margin-right: 0px;
}
@media only screen and (min-width: 62em) {
  .sn_slider_steps .swiper > .swiper-wrapper > .swiper-slide {
    width: calc((100% - 0px) / 4);
    margin-right: 0px;
  }
}
.sn_slider_steps__i {
  position: relative;
}
.sn_slider_steps__i:not(:last-child)::before {
  right: -0.625rem;
}
.sn_slider_steps__i::before {
  content: "";
  position: absolute;
  top: 1.8125rem;
  right: 0;
  left: 0;
  height: 0.5rem;
  background-color: #808080;
  border-radius: 12.5rem;
}
.sn_slider_steps__i .number {
  position: relative;
  z-index: 1;
  font-family: "League Gothic", sans-serif;
  width: 4.125rem;
  height: 4.125rem;
  background-color: #ff2424;
  color: #000;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sn_slider_steps__i .number {
  font-size: 3.375rem;
}