.slider {
  width: 100%;
  height: 500px;
  margin: 0 auto;
}

.slider-top {
  width: 100%;
  height: 410px;
}

.slider-thumbs {
  height: 90px;
  padding: 10px 0 15px;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.slider-thumbs .swiper-slide {
  width: 100px;
  height: 100%;
  opacity: 0.6;
  transition: opacity 0.5s ease;
}

.slider-thumbs .swiper-slide.swiper-slide-active {
  opacity: 1;
}

.slider .swiper-slide {
  background-size: cover;
  background-position: center;
}

.slider .swiper-slide img:not([src]) {
  opacity: 0;
}

.slider .swiper-button-prev {
  left: 7%;
  width: 13px;
  height: 22px;
  margin-top: -11px;
  background-size: cover;
}

.slider .swiper-button-next {
  right: 7%;
  width: 13px;
  height: 22px;
  margin-top: -11px;
  background-size: cover;
}

@media (min-width: 900px) {
  .slider .swiper-button-prev {
    left: 48px;
    width: 27px;
    height: 44px;
    margin-top: -22px;
  }

  .slider .swiper-button-next {
    right: 48px;
    width: 27px;
    height: 44px;
    margin-top: -22px;
  }
}

@media (min-width: 1200px) {
  .slider {
    height: 700px;
  }

  .slider-top {
    height: 610px;
  }
}