/* css/lightbox.css - v5 */
.lb-modal{
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  border: 1px solid rgba(2,10,28,.10);
  box-shadow: 0 30px 90px rgba(2,10,28,.20);
}
.lb-stage{
  position: relative;
  width: 100%;
  height: min(72vh, 720px);
  background: rgba(2,10,28,.04);
  border: 1px solid rgba(2,10,28,.10);
  border-radius: 22px;
  overflow: hidden;
  display: grid;
  place-items: center;
  user-select: none;
  touch-action: none;
}
.lb-stage img{
  max-width: 100%;
  max-height: 100%;
  transform-origin: center center;
  will-change: transform;
  cursor: grab;
}
.lb-stage img:active{
  cursor: grabbing;
}
.lb-range{
  width: min(420px, 52vw);
  margin: 0;
}
.lb-hint{
  position: absolute;
  left: 12px;
  bottom: 10px;
  font-size: 12px;
  color: rgba(15,23,42,.62);
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(2,10,28,.10);
  padding: 6px 10px;
  border-radius: 999px;
}
.lb-close{
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(2,10,28,.10);
}
.lb-close:hover{
  background: #fff;
}
