.spoiler__button {
  margin-top: 24px;
  height: 40px;
  border-radius: 5px;
  background-color: #ededee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color .2s;
}
.hovered .spoiler__button {
  z-index: 0;
}
.spoiler__button:hover {
  background-color: #dddee0;
}
.spoiler__button span {
  position: relative;
  padding-right: 19px;
  display: flex;
  align-items: center;
}
.spoiler__button .icon {
  position: absolute;
  right: 0;
  font-size: 11px;
  margin-top: 1px;
}
.spoiler__button.active:not(.not-toggable) .icon {
  transform: rotate(-180deg);
  margin-top: 0;
}
.spoiler__body {
  margin-top: 16px;
  height: 0;
  overflow: hidden;
}
.spoiler__button.active + .spoiler__body {
  display: block;
  height: auto;
  overflow: visible;
}
.show-more-tours-button {
  position: relative;
  z-index: 1;
  margin-top: -20px;
  color: #0063d7;
}
.show-more-tours-button {
  display: none;
}
.resort-list__dropdown-view .swiper-scrollbar {
  bottom: 22px;
  height: 24px;
  background: transparent;
  cursor: pointer;
  display: none;
}
.swiper-container-initialized.resort-list__dropdown-view .swiper-scrollbar {
  display: block;
}
.resort-list__dropdown-view .swiper-scrollbar::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: calc(50% - 1px);
  height: 2px;
  border-radius: 4px;
  display: block;
  background-color: #e7ecef;
  pointer-events: none;
}
.resort-list__dropdown-view .swiper-scrollbar-drag,
.resort-list__dropdown-view.withoutSpoiler .swiper-scrollbar-drag {
  box-shadow: 0 2px 24px 0 rgba(0,0,0,.07);
  background-color: #fff;
  transition: box-shadow .2s;
  z-index: 1;
}
.resort-list__dropdown-view .swiper-scrollbar-drag:hover,
.resort-list__dropdown-view.withoutSpoiler .swiper-scrollbar-drag:hover {
  box-shadow: 0 2px 16px 0 rgba(0,0,0,.04);
}
.resort-list__dropdown-view .swiper-scrollbar-drag::before,
.resort-list__dropdown-view .swiper-scrollbar-drag::after {
  content: '';
  position: absolute;
  width: 50%;
  top: 0;
  bottom: 0;
  display: block;
  background: url(../icons/svg/other/darr.svg) no-repeat center;
}
.resort-list__dropdown-view .swiper-scrollbar-drag::before {
  transform: rotate(90deg);
  left: 0;
}
.resort-list__dropdown-view .swiper-scrollbar-drag::after {
  transform: rotate(-90deg);
  right: 0;
}

@media (max-width: 1176px) {
  .tour-slider.more-then-2 ~ .spoiler__container .show-more-tours-button {
    display: flex;
  }
  .show-more-tours.show-all-tours .tour-slider ~ .spoiler__container .show-more-tours-button,
  .show-more-tours .tour-slider.less-then-9 ~ .spoiler__container .show-more-tours-button {
    display: none !important;
  }
  .tour-slider .swiper-slide:nth-child(n+3) {
    display: none;
  }
  .show-more-tours .swiper-slide:nth-child(n+3) {
    display: inline-block;
  }
  .show-more-tours .swiper-slide:nth-child(n+9) {
    display: none;
  }
  .show-all-tours .swiper-slide:nth-child(n+9) {
    display: inline-block;
  }
}

/*MEDIA DONE*/
