/* ================= LIGHTBOX ================= */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);

  display: flex;
  justify-content: center;
  align-items: center;

  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;

  z-index: 4000;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

/* IMAGE */
.lightbox img {
  max-width: 90%;
  max-height: 85%;

  border-radius: 10px;

  transform: scale(0.9);
  transition: 0.3s ease;
}

.lightbox.active img {
  transform: scale(1);
}

/* CLOSE BTN */
.lightbox span {
  position: absolute;
  top: 25px;
  right: 35px;

  color: white;
  font-size: 32px;
  cursor: pointer;

  transition: 0.2s;
}

.lightbox span:hover {
  transform: scale(1.2);
}