/* --- Lightbox --- */
.im-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.im-lightbox.active {
  display: flex;
}
.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}
#lightboxImage {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 10px;
  display: block;
  margin: auto;
}
.im-lightbox .im-map-btn {
  position: absolute;
  color: #000;
  background: #fff;
}
.im-lightbox .im-map-btn.nav.prev {
  left: -56px;
  top: 50%;
  transform: translateY(-50%);
}
.im-lightbox .im-map-btn.nav.next {
  right: -56px;
  top: 50%;
  transform: translateY(-50%);
}
.close-lightbox {
  top: 12px;
  right: 12px;
}
