@charset "UTF-8";
.pagination-container {
  margin-top: 40px;
  text-align: center;
}

.pagination-item {
  min-width: 50px;
  height: 50px;
  line-height: 50px;
  display: inline-block;
  margin: 0 9px;
  text-align: center;
  background-color: #fff;
  border: 1px solid #d1c1e1;
  font-size: 14px;
  color: #484682;
  position: relative;
}
@media all and (max-width: 640px) {
  .pagination-item {
    min-width: 30px;
    height: 30px;
    line-height: 30px;
    margin: 0 5px;
    font-size: 15px;
    vertical-align: top;
  }
}
@media all and (max-width: 425px) {
  .pagination-item {
    margin: 0 3px;
  }
}
.pagination-item.active {
  background-color: #484682;
  color: #fff;
}
.pagination-item.pagination-prev {
  padding-left: 50px;
  padding-right: 28px;
  border-bottom-left-radius: 25px;
  border-top-left-radius: 25px;
}
.pagination-item.pagination-prev:before {
  content: url(../img/pagination-prev.svg);
  position: absolute;
  top: 11px;
  left: 24px;
}
@media all and (max-width: 640px) {
  .pagination-item.pagination-prev {
    font-size: 0;
    padding: 0 3px;
  }
  .pagination-item.pagination-prev > span {
    display: none;
  }
  .pagination-item.pagination-prev:before {
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media all and (max-width: 425px) {
  .pagination-item.pagination-prev {
    padding: 0;
  }
}
.pagination-item.pagination-next {
  padding-left: 28px;
  padding-right: 50px;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
}
.pagination-item.pagination-next:after {
  content: url(../img/pagination-next.svg);
  position: absolute;
  top: 11px;
  right: 24px;
}
@media all and (max-width: 640px) {
  .pagination-item.pagination-next {
    font-size: 0;
    padding: 0 3px;
  }
  .pagination-item.pagination-next > span {
    display: none;
  }
  .pagination-item.pagination-next:after {
    top: 0;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
  }
}
@media all and (max-width: 425px) {
  .pagination-item.pagination-next {
    padding: 0;
  }
}

.hotels__filter {
  display: flex;
  align-items: center;
  position: relative;
  background-color: #4c49a9;
  margin-bottom: -50px;
  padding: 25px 30px 25px 0;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}
.hotels__filter:before {
  content: "";
  width: 1500px;
  height: 100%;
  display: block;
  background-color: #4c49a9;
  position: absolute;
  right: 100%;
  top: 0;
}
@media (max-width: 1366px) {
  .hotels__filter {
    flex-wrap: wrap;
  }
}
@media all and (max-width: 1024px) {
  .hotels__filter {
    flex-direction: column;
    align-items: initial;
    margin-left: -66px;
    padding-left: 66px;
  }
  .hotels__filter:before {
    display: none;
  }
}
@media all and (max-width: 768px) {
  .hotels__filter {
    margin-left: -45px;
    padding-left: 45px;
  }
}
@media all and (max-width: 640px) {
  .hotels__filter {
    margin-left: -28px;
    padding-left: 28px;
  }
}

.custom-select-container {
  flex: 2;
  min-width: 140px;
  margin-right: 13px;
  text-transform: initial;
  font-size: 14px;
  color: #494949;
}
@media all and (max-width: 1024px) {
  .custom-select-container {
    margin: 0 0 13px 0;
  }
}

.hotels-form-submit {
  width: 100%;
  max-width: 170px;
  height: 50px;
  line-height: 50px;
  align-self: center;
  background-color: #f9a018;
  border: none;
  padding: 0 10px;
  border-radius: 25px;
  outline: none;
  color: #fff;
  font-size: 18px;
  text-align: center;
  cursor: pointer;
}

.custom-select-opener {
  background: #fff;
  border: 1px solid #d1c1e1;
  border-radius: 25px;
  padding-left: 23px;
  z-index: 100;
}
.custom-select-opener > span {
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  width: 100%;
  line-height: 31px;
  padding-right: 40px;
  text-overflow: ellipsis;
}

.custom-select-container:before {
  display: none;
}

.custom-select-option[data-value=default] {
  color: #a0a0a0;
}

.filter-stars {
  color: #fff;
  font-size: 14px;
  margin: 0 13px 0 0;
  min-width: 220px;
}
@media all and (max-width: 1024px) {
  .filter-stars {
    margin: 0 0 25px 0;
  }
}
.filter-stars p {
  margin-bottom: 6px;
}

.filter-stars-list {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
}
.filter-stars-list > label {
  margin: 0 17px 1px 4px;
}
@media all and (max-width: 640px) {
  .filter-stars-list > label {
    margin-bottom: 3px;
  }
}
.filter-stars-list > input, .filter-stars-list > label {
  cursor: pointer;
}

.hotels__container {
  background-color: #f1ecf6;
  padding: 90px 0 50px 0;
}

.hotels__list {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 25px);
}
@media all and (max-width: 640px) {
  .hotels__list {
    width: 100%;
  }
}

.hotels__item {
  display: flex;
  width: calc(100% / 2 - 25px);
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 35px;
  box-shadow: 0 4px 20px 0 rgba(72, 70, 130, 0.2);
  transition-duration: 0.3s;
  margin-right: 25px;
}
@media all and (max-width: 768px) {
  .hotels__item {
    width: 100%;
    margin: 0 0 25px 0;
    flex-direction: column;
  }
}
.hotels__item:hover {
  box-shadow: initial;
  transition-duration: 0.3s;
}

.hotels__img {
  width: 40%;
  height: 100%;
}
@media all and (max-width: 768px) {
  .hotels__img {
    width: 100%;
    height: 180px;
  }
}

.hotels__services {
  width: 60%;
  padding: 25px 29px 35px 23px;
}
@media all and (max-width: 768px) {
  .hotels__services {
    width: 100%;
    text-align: center;
  }
}

.hotels__name {
  margin-bottom: 7px;
  font-size: 20px;
  font-weight: 700;
  color: #515050;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.hotels__location {
  font-size: 14px;
  color: #a0a0a0;
}

.hotels__tour-info {
  border-top: 1px solid #d1c1e1;
  margin-top: 10px;
  padding-top: 30px;
}
.hotels__tour-info p {
  font-size: 14px;
  line-height: 1.41;
  color: #494949;
}
.hotels__tour-info .hotels__category {
  height: 25px;
  width: 25px;
  margin-right: 5px;
  display: inline-block;
  position: relative;
  top: -15px;
}
.hotels__tour-info .hotels__category span {
  position: absolute;
  opacity: 0;
  height: 0;
  font-size: 12px;
  color: #a0a0a0;
  top: -30px;
  background: #fff;
  padding: 5px;
  border-radius: 3px;
}
.hotels__tour-info .hotels__category:hover span {
  opacity: 1;
  height: 100%;
  left: 50%;
  transform: translate(-50%, 0);
}
.hotels__tour-info .spa {
  background: url("../img/icons/spa.svg") no-repeat center/contain;
}
.hotels__tour-info .active {
  background: url("../img/icons/active.svg") no-repeat center/contain;
}
.hotels__tour-info .beach {
  background: url("../img/icons/beach.svg") no-repeat center/contain;
}
.hotels__tour-info .city {
  background: url("../img/icons/city.svg") no-repeat center/contain;
}
.hotels__tour-info .cheap {
  background: url("../img/icons/economy.svg") no-repeat center/contain;
}
.hotels__tour-info .family {
  background: url("../img/icons/family.svg") no-repeat center/contain;
}
.hotels__tour-info .recommended {
  background: url("../img/icons/recommend.svg") no-repeat center/contain;
}
.hotels__tour-info .ski {
  background: url("../img/icons/ski.svg") no-repeat center/contain;
}
.hotels__tour-info .vip {
  background: url("../img/icons/vip.svg") no-repeat center/contain;
}
.hotels__tour-info .youth {
  background: url("../img/icons/youth.svg") no-repeat center/contain;
}

.hotels__tour-info-item > p {
  font-size: 14px;
  color: #a0a0a0;
  margin-bottom: 3px;
}
.hotels__tour-info-item > span {
  font-size: 14px;
  color: #515050;
}

.hotels__stars {
  width: 73px;
  height: 13px;
  background: url(../img/stars.svg) no-repeat;
  background-size: 73px;
  margin: 5px 0 7px 0;
}
@media all and (max-width: 640px) {
  .hotels__stars {
    margin-right: auto;
    margin-left: auto;
  }
}
.hotels__stars.stars-1, .hotels__stars[class*="stars-1+"] {
  background-position-y: -55px;
}
.hotels__stars.stars-2, .hotels__stars[class*="stars-2+"] {
  background-position-y: -41px;
}
.hotels__stars.stars-3, .hotels__stars[class*="stars-3+"] {
  background-position-y: -28px;
}
.hotels__stars.stars-4, .hotels__stars[class*=stars-¾], .hotels__stars[class*="stars-4+"] {
  background-position-y: -14px;
}
.hotels__stars.stars-5, .hotels__stars[class*="stars-5+"] {
  background-position-y: 0;
}

.filter-stars-list label:first-of-type {
  display: none !important;
}

#search_hotels_stars_0,
#search_hotels_stars_0 + label {
  display: none;
  margin: 0 !important;
}

#search_hotels_regions [for=search_hotels_regions_placeholder] {
  display: block !important;
}

/*# sourceMappingURL=hotels.css.map */
