.resort-list__slider-wrapper {
  width: calc(100% + 48px);
  position: relative;
  margin: -30px -24px -46px;
  padding: 30px 24px 46px;
  overflow: hidden;
}
.resort-list__slider-wrapper .swiper-container {
  overflow: visible;
}
.resort-list__slider-wrapper .swiper-button-prev,
.resort-list__slider-wrapper .swiper-button-next {
  position: absolute;
  top: 90px;
  margin-top: 0;
}
.resort-list__item {
  display: flex;
  flex-direction: column;
  width: calc(100%/3 - 16px);
  margin-right: 24px;
  border-radius: 5px;
  overflow: hidden;
  background-color: #fff;
  margin-bottom: 24px;
  transition: box-shadow .2s;
}
.resort-list__item:hover {
   box-shadow: 0 20px 24px 0 rgba(0, 0, 0, 0.04);
 }
.resort-list__item,
.resort-list__item:hover {
  text-decoration: none;
}
.resort-list__item-photo {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 160px;
  padding: 16px 20px;
  color: #fff;
  position: relative;
  background: no-repeat center / cover;
}
.resort-list__item-photo::before {
  content: "";
  width: 100%;
  height: 55px;
  border-radius: 3px;
  background-image: linear-gradient(180deg,transparent,#000);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.resort-list__item-photo-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  z-index: 1;
}
.resort-list__item-photo-name {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  line-height: 1;
}
.resort-list__item-photo-details {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 600; font-family: 'Proxima Nova Lt', sans-serif;
  flex-shrink: 0;
}
.resort-list__item-photo-details i {
  filter: brightness(500%);
  margin-right: 8px;
}
.resort-list__item-photo-details span:not(:last-child) {
  margin-right: 16px;
}
.resort-list__item-info {
  padding: 16px;
  overflow: hidden;
  position: relative;
  max-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  min-height: 70px;
}
.resort-list__item-info p {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  color: #474f55;
}
.resort-list__dropdown-container {
  overflow: hidden;
  padding: 0 20px 70px;
  margin: 0 -19px -14px;
}
.resort-list__dropdown-view {
  padding: 0 0 70px;
  margin: 0 0 -70px;
}
.resort-list__dropdown-list {
  display: flex;
  height: auto;
  top: 0;
}
.resort-list__dropdown-wrapper:not(:last-child) {
  margin-right: 20px;
}
.resort-list__dropdown-wrapper {
  width: 220px;
  flex-shrink: 0;
}
.resort-list__dropdown-item {
  background: #fff;
  font-size: 16px;
  font-weight: 600; font-family: 'Proxima Nova Lt', sans-serif;
  border-radius: 5px;
  color: #474f55;
  transition: box-shadow .2s;
  text-decoration: none;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0 10px;
  min-height: 52px;
}
.resort-list__dropdown-item:hover {
  text-decoration: none;
  box-shadow: 0 20px 24px 0 rgba(0,0,0,.04);
}
.resort-list__dropdown-item:nth-child(2n+1) {
  margin-bottom: 10px;
}
.resort-list__dropdown-item i {
  margin-right: 20px;
}
.resort-list__item-price {
  font-size: 18px;
  font-weight: bold;
  color: #474f55;
  margin-top: 15px;
}
.resort-list__item-price span {
  color: #10a000;
}
.resort-list__item-price::after {
  content: '';
  display: inline-flex;
  width: 10px;
  height: 8px;
  transform: rotate(-90deg);
  position: relative;
  top: -1px;
  left: 1px;
  background: url(../icons/svg/other/darr.svg) no-repeat center bottom;
}
@media (min-width: 768px) {
  .resort-list__item-info p {
    height: 120px;
  }
}

/*tablet*/
@media (max-width: 1024px) and (min-width: 768px) {
  .resort-list__item {
    width: calc(100% / 2 - 12px);
  }
  .resort-list__item:not(:nth-child(3n)) {
    margin-right: 0;
  }
  .resort-list__item:nth-child(odd) {
    margin-right: 24px;
  }
}
/*mobile*/
@media (max-width: 767px) {
  .resort-list__item {
    width: calc(50% - 7.5px);
    margin-bottom: 15px;
  }
  .resort-list__item-photo {
    height: 116px;
  }
  .resort-list__item-info {
    height: 52px;
    min-height: 1px;
  }
  .resort-list__item-photo-details,
  .resort-list__item-photo::before,
  .resort-list__item-info p {
    display: none;
  }
  .resort-list__item-photo-row {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 52px;
    justify-content: center;
    align-items: center;
  }
  .resort-list__item-photo-name {
    white-space: nowrap;
    overflow: hidden;
    padding: 0 20px;
    text-overflow: ellipsis;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .08px;
    color: #474f55;
  }
  .resort-list__slider-wrapper {
    width: calc(100% + 40px);
    position: relative;
    margin: -30px -20px -46px;
    padding: 30px 20px 46px;
    overflow: hidden;
  }
  .resort-list__slider-wrapper .swiper-button,
  .resort-list__item-price {
    display: none !important;
  }
}

/*MEDIA DONE*/
