/* --------------------------------------------------------------
   Rotech Global Lightbox
   -------------------------------------------------------------- */
.rr-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(2px);
}
.rr-lightbox.active {
  display: block;
  animation: rr-lightbox-fade 0.18s ease-out;
}
.rr-lightbox__inner {
  position: relative;
  max-width: 95%;
  max-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}
.rr-lightbox__image {
  max-width: 100%;
  max-height: 94vh;
  background: #fff;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.35);
  pointer-events: auto;
  border-radius: 4px;
}
.rr-lightbox__backdrop {
  position: absolute;
  inset: 0;
  cursor: zoom-out;
}
.rr-lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.6);
  color: #fff;
  border: 0;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 22px;
  line-height: 38px;
  text-align: center;
  cursor: pointer;
  z-index: 10000;
  transition: background 0.2s;
}
.rr-lightbox__close:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* --------------------------------------------------------------
   Keyframes
   -------------------------------------------------------------- */
@keyframes rr-lightbox-fade {
  from {
    opacity: 0;
    transform: scale(0.97);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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