.resorts-list {
  width: 100%;
  overflow: hidden;
}
.resorts-list:before,
.resorts-list:after {
  content: " ";
  display: table;
}
.resorts-list:after {
  clear: both;
}
.resorts-list:before,
.resorts-list:after {
  content: " ";
  display: table;
}
.resorts-list:after {
  clear: both;
}
.resorts-list .list-item {
  transition: opacity 0.5s;
  transform: translate3d(0, 0, 0);
  float: left;
  cursor: pointer;
  position: relative;
  height: 0;
  opacity: 0;
  /* one item */
  padding-bottom: calc(50%);
}
.resorts-list .list-item.adjusted {
  opacity: 1;
}
.resorts-list .list-item .sub-container {
  transition: all 0.3s;
  transform: translate3d(0, 0, 0);
  position: absolute;
  box-sizing: border-box;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.resorts-list .list-item .sub-container .event-overlay {
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.35;
  transition: margin 0.3s, width 0.3s, height 0.3s, opacity 1s;
  transform: translate3d(0, 0, 0);
}
.resorts-list .list-item .sub-container .event-overlay.summer-high {
  background-image: linear-gradient(to top, #c18d0e 0%, #e9c01e 100%);
}
.resorts-list .list-item .sub-container .event-overlay.summer-medium {
  background-image: linear-gradient(to top, #6b8305 0%, #a0c54c 100%);
}
.resorts-list .list-item .sub-container .event-overlay.summer-low {
  background-image: linear-gradient(to top, #444646 0%, #bababa 100%);
}
.resorts-list .list-item .sub-container .event-overlay.winter-high {
  background-image: linear-gradient(to top, #178899 0%, #82e4f3 100%);
}
.resorts-list .list-item .sub-container .event-overlay.winter-medium {
  background-image: linear-gradient(to top, #037080 0%, #3ecbe0 100%);
}
.resorts-list .list-item .sub-container .event-overlay.winter-low {
  background-image: linear-gradient(to top, #014d58 0%, #0ebed9 100%);
}
.resorts-list .list-item .sub-container .event-overlay.test-grad {
  background-image: linear-gradient(to top, #c18d0e 0%, #e9c01e 100%);
}
.resorts-list .list-item .sub-container .image-block {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  -webkit-mask-size: cover;
  -webkit-mask-size: contain;
}
.resorts-list .list-item .sub-container .image-new {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-fit: contain;
}
.resorts-list .list-item .sub-container .image {
  width: 100%;
  height: 100%;
  opacity: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50%;
  position: absolute;
}
.resorts-list .list-item .sub-container .image.active.loaded {
  opacity: 1;
}
.resorts-list .list-item.hovered .event-overlay {
  height: 40%;
  opacity: 0.7;
}
.resorts-list .list-item .resort-info {
  width: calc(20%);
  height: 100px;
  position: absolute;
  left: 40px;
  bottom: 20px;
  /*color: #ffffff;*/
}
.resorts-list .list-item .resort-info .title {
  max-width: 340px;
  font-family: LatoBold;
  font-size: 33px;
  line-height: normal;
  position: absolute;
  left: 0px;
  top: 10px;
  color: #ffffff;
  white-space: nowrap;
}
.resorts-list .list-item .resort-info .country {
  font-family: LatoRegular;
  font-size: 14px;
  position: absolute;
  left: 0px;
  bottom: 10px;
  color: #ffffff;
  white-space: nowrap;
}
.resorts-list .list-item .event-info {
  position: absolute;
  top: 20px;
  right: 40px;
}
.resorts-list .list-item .event-info .event-icon-border {
  border-radius: 50%;
  width: 56px;
  height: 56px;
  border: 2px solid white;
  float: left;
}
.resorts-list .list-item .event-info .event-icon-border .event-icon {
  text-align: center;
  font-size: 30px;
  color: #ffffff;
  line-height: 52px;
}
.resorts-list .list-item .event-info .text-content {
  float: left;
  margin-left: 10px;
}
.resorts-list .list-item .event-info .text-content .event-comrot-level {
  color: #ffffff;
  font-family: LatoLight;
  font-size: 42px;
  line-height: 42px;
}
.resorts-list .list-item .event-info .text-content .comfort-level-definition {
  color: #ffffff;
  font-family: LatoBold;
  font-size: 14px;
  line-height: 14px;
  margin-top: 3px;
}
.resorts-list .list-item .follow {
  display: none;
  position: absolute;
  right: 40px;
  bottom: 20px;
}
.resorts-list .list-item .follow .followers {
  margin: 34px 10px 0 9px;
}
.resorts-list .list-item .follow .followers .follower {
  display: block;
  float: left;
  margin: 0 6px;
  border-radius: 50%;
  width: 23px;
  height: 23px;
}
.resorts-list .list-item.wide {
  width: calc(100%);
}
.resorts-list .list-item.narrow {
  width: calc(66.66666667%);
}
@media (min-width: 1001px) {
  .resorts-list .list-item {
    /* two items */
    padding-bottom: calc(30%);
  }
  .resorts-list .list-item .follow {
    display: none;
  }
  .resorts-list .list-item.wide {
    width: calc(60%);
  }
  .resorts-list .list-item.narrow {
    width: calc(40%);
  }
}
@media (min-width: 1441px) {
  .resorts-list .list-item {
    /* three items */
    padding-bottom: calc(21.42857143%);
  }
  .resorts-list .list-item.wide {
    width: calc(42.85714286%);
  }
  .resorts-list .list-item.narrow {
    width: calc(28.57142857%);
  }
}
@media (min-width: 2001px) {
  .resorts-list .list-item {
    /* four items */
    padding-bottom: calc(15%);
  }
  .resorts-list .list-item.wide {
    width: calc(30%);
  }
  .resorts-list .list-item.narrow {
    width: calc(20%);
  }
}
div.wide > div.narrow-images {
  display: none;
}
div.narrow > div.wide-images {
  display: none;
}
div.filtered > div.preloaded {
  display: none;
}
/* ###### Mobile resolution styles ###### */
@media (max-width: 767px) {
  .resorts-list .list-item.full-width {
    padding-bottom: 50%;
  }
  .resorts-list .list-item.full-width .infobox {
    height: 70%;
  }
}
