.rtc-hotel-gallery-lightbox-ready {
  cursor: zoom-in;
}
.rtc-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(4, 14, 30, .86);
  padding: 24px;
}
.rtc-lightbox.is-open {
  display: flex;
}
.rtc-lightbox__image {
  max-width: min(1180px, 94vw);
  max-height: 86vh;
  border-radius: 18px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .42);
  object-fit: contain;
  background: #fff;
}
.rtc-lightbox__close,
.rtc-lightbox__prev,
.rtc-lightbox__next {
  position: fixed;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: #06152c;
  cursor: pointer;
  box-shadow: 0 12px 36px rgba(0, 0, 0, .25);
}
.rtc-lightbox__close {
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  font-size: 28px;
  line-height: 44px;
}
.rtc-lightbox__prev,
.rtc-lightbox__next {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  font-size: 34px;
  line-height: 48px;
}
.rtc-lightbox__prev {
  left: 18px;
}
.rtc-lightbox__next {
  right: 18px;
}
.rtc-lightbox__counter {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: #06152c;
  font-size: 14px;
  font-weight: 700;
}
@media (max-width: 700px) {
  .rtc-lightbox {
    padding: 12px;
  }
  .rtc-lightbox__image {
    max-width: 96vw;
    max-height: 82vh;
    border-radius: 14px;
  }
  .rtc-lightbox__prev,
  .rtc-lightbox__next {
    width: 42px;
    height: 42px;
    font-size: 28px;
  }
}
