@charset "UTF-8";
main .item {
  padding-top: 40px;
}
main .item a.order {
  background: #007AFF;
  padding: 25px 30px 25px 65px;
  color: #fff;
  font-size: 18px;
  line-height: 18px;
  font-weight: 600;
  border-radius: 5px;
  letter-spacing: 1px;
  display: block;
  transition: all 0.3s;
  box-shadow: 0 5px 2px 0px rgba(0, 0, 0, 0);
  position: relative;
}
main .item a.order:hover {
  background: #0062cc;
  box-shadow: 0 5px 2px 0px rgba(0, 0, 0, 0.1);
}
main .item a.order:before {
  content: "";
  position: absolute;
  top: 22px;
  left: 30px;
  width: 24px;
  height: 24px;
  background: url(/images/icons/calendar.svg) no-repeat center/cover;
}
main .item .top {
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
}
main .item .top .right {
  margin-left: auto;
}
main .item .top h3 {
  font-family: "Montserrat Alternates", serif;
  font-weight: 600;
  font-size: 34px;
  color: #333940;
  letter-spacing: -0.5px;
  margin: 0 0 15px 0;
}
main .item .top ul.features {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-right: 20px;
}
main .item .top ul.features li {
  font-size: 18px;
  color: #333940;
  position: relative;
  padding-left: 30px;
}
main .item .top ul.features li:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0px;
  width: 20px;
  height: 20px;
}
main .item .top ul.features li.banya:before {
  background: url(/images/icons/banya.svg) no-repeat center/cover;
}
main .item .top ul.features li.livingroom:before {
  width: 24px;
  background: url(/images/icons/livingroom.svg) no-repeat center/cover;
}
main .item .top ul.features li.beds:before {
  background: url(/images/icons/beds.svg) no-repeat center/cover;
}
main .item .top ul.features li.fairplace:before {
  background: url(/images/icons/fairplace.svg) no-repeat center/cover;
}
main .item .top ul.features li.chan:before {
  background: url(/images/icons/chan.svg) no-repeat center/cover;
}
main .item .gallery {
  display: grid;
  gap: 5px;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  margin: 0 auto 5px;
}
main .item .gallery .gallery-item {
  position: relative;
}
main .item .gallery .gallery-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
main .item .gallery .gallery-item.image-0 {
  grid-column: span 2;
  grid-row: span 2;
}
main .item .gallery-bottom {
  display: flex;
  gap: 5px;
}
main .item .gallery-bottom .gallery-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
main .item .desc {
  margin-bottom: 15px;
}
main .item .desc ul {
  column-count: 2;
  column-gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
}
main .item .desc ul li {
  break-inside: avoid;
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}
main .item .desc ul li:before {
  content: "•";
  position: absolute;
  top: 0;
  left: 5px;
}
main .item .booking {
  margin: 0 0 50px;
  border-bottom: 1px solid #ccc;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
}
main .item .booking .booking-link, main .item .booking .booking-order {
  padding: 8px 20px;
  border: 1px solid #5aa3f2;
  color: #5aa3f2;
  border-radius: 5px;
  font-weight: 700;
  font-size: 16px;
  background-color: #fff;
  white-space: nowrap;
  margin-bottom: -20px;
  position: relative;
}
main .item .booking .booking-link:hover, main .item .booking .booking-order:hover {
  background-color: #007AFF;
  color: #fff;
}
main .item .booking .booking-link:before, main .item .booking .booking-order:before {
  content: "";
  width: 12px;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  right: -13px;
}
main .item .booking .booking-link:after, main .item .booking .booking-order:after {
  content: "";
  width: 12px;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: -13px;
}
main .item .bottom p {
  color: #000;
  font-size: 18px;
  font-weight: 600;
  margin: 30px 0;
}

#booking-iframe, #popup-booking {
  display: none;
  width: 80%;
  margin: 50px auto 0;
  top: 37%;
  left: 50%;
  height: auto;
  transform: translate(-50%, -50%);
  position: fixed;
  border-radius: 5px;
  overflow: hidden;
  transition: opacity 0.3s;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.5);
  border: 5px solid #fff;
  opacity: 0;
  pointer-events: none;
  height: 430px;
  z-index: 10;
  background: #fff url("/images/loading.gif") no-repeat center;
}
#booking-iframe.show, #popup-booking.show {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

#popup-booking {
  background: #333940;
  border: 5px solid #333940;
  color: #fff;
  max-width: 500px;
  text-align: center;
  display: flex !important;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
  align-items: center;
  height: 450px;
  border-radius: 20px;
}
#popup-booking p.title {
  font-family: "Montserrat Alternates", serif;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  border-bottom: 1px solid #a2845e;
  margin-top: -20px;
  padding-bottom: 10px;
}
#popup-booking a {
  padding: 10px 10px 10px 80px;
  border-radius: 5px;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  display: block;
  position: relative;
  min-height: 24px;
  text-align: left;
  width: 50%;
  min-width: 185px;
}
#popup-booking a p {
  opacity: 0.7;
  margin: 0;
}
#popup-booking a p.number {
  opacity: 1;
}
#popup-booking a:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  opacity: 0.05;
  transition: opacity 0.3s;
  border-radius: 5px;
}
#popup-booking a:hover:after {
  opacity: 0.2;
}
#popup-booking a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 64px;
  height: 64px;
  border-radius: 5px;
}
#popup-booking a.tel:before {
  background: #A2845E url(/images/icons/phone-white.svg) no-repeat center/cover;
  background-size: 24px;
}
#popup-booking a.viber:before {
  background: #7D3DAF url(/images/icons/viber-white.svg) no-repeat center/cover;
  background-size: 24px;
}
#popup-booking a.tg:before {
  background: #61A8DE url(/images/icons/tg-white.svg) no-repeat center/cover;
  background-size: 26px 24px;
}

#overscreen {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  transition: opacity 0.3s;
  opacity: 0;
  pointer-events: none;
  z-index: 5;
}
#overscreen.show {
  opacity: 1;
  pointer-events: auto;
}

@media only screen and (max-width: 1000px) {
  main .item .top h3 {
    font-size: 20px;
  }
  main .item .top .right a {
    padding: 25px 15px 25px 45px;
    font-size: 14px;
  }
  main .item .top .right a:before {
    top: 24px;
    left: 18px;
    width: 20px;
    height: 20px;
  }
  main .item .top ul.features {
    flex-wrap: wrap;
    gap: 5px;
    column-gap: 10px;
  }
  main .item .top ul.features li {
    font-size: 14px;
  }
  main .item .top ul.features.before {
    width: 16px;
    height: 16px;
  }
}
@media only screen and (max-width: 600px) {
  #booking-iframe {
    width: 100%;
  }
  #popup-booking {
    width: 100%;
    border-radius: 0;
  }
  main .item .top {
    margin-bottom: 15px;
  }
  main .item .bottom p {
    margin: 15px 0;
  }
  main .item .bottom .desc ul {
    column-count: 1;
  }
  main .item .bottom .desc ul li {
    font-size: 14px;
    margin-bottom: 8px;
  }
  main .item .bottom .booking a:hover {
    background-color: #fff;
    color: #5aa3f2;
  }
  main .item .bottom .dates-gal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
  }
  main .item .bottom .dates-gal a.gallery {
    color: #333940;
    font-weight: 600;
    text-decoration: none;
    display: block;
    height: 62px;
    text-align: center;
    line-height: 104px;
    position: relative;
    transition: opacity 0.5s;
    background-image: url(/images/icons/photos-black.svg);
    background-size: 40px;
    background-position: center top;
    background-repeat: no-repeat;
    margin-left: 20px;
  }
  main .item .bottom .dates-gal a.gallery:after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 70px;
    transform: translateX(-50%);
    border-bottom: 1px solid;
    opacity: 1;
    transition: opacity 0.3s;
    pointer-events: none;
  }
  main .item .bottom .dates-gal a.order {
    flex-grow: 1;
    padding: 25px 15px 25px 45px;
    font-size: 16px;
  }
  main .item .bottom .dates-gal a.order:before {
    top: 24px;
    left: 18px;
    width: 20px;
    height: 20px;
  }
}

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