.ei-lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 9999;
}
.ei-lightbox-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.ei-lightbox-overlay:after {
  content: "✕";
  position: absolute;
  top: 30px;
  right: 30px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}
.kb-advanced-image-link img,
.ei-swiper-parent img {
  cursor: zoom-in;
}
.ei-lightbox-overlay .swiper-wrapper {
  align-items: center;
}
.ei-lightbox-swiper {
  margin-inline: auto;
  max-width: 75vw;
  overflow: hidden;
  margin-top: 15vh;
  height: calc(100vh - 30vh);
  --swiper-navigation-sides-offset: calc(25vw / 2 - 50px);
}
.ei-lightbox-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  img {
    background-color: white;
    height: 100%;
    user-select: none;
    border-radius: 4px;
    object-fit: contain;
  }
}
