/* Gallery Lightbox (theme) */
.gwl-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1050;
  display: none;
}
.gwl-lightbox.is-open {
  display: block;
}
.gwl-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}
.gwl-lightbox__dialog {
  position: relative;
  height: 100%;
  width: 100%;
  display: grid;
  place-items: center;
  padding: 20px;
}
.gwl-lightbox__img {
  max-width: min(1100px, 96vw);
  max-height: 86vh;
  width: auto;
  height: auto;
  border-radius: 12px;
  background: #111;
}
.gwl-lightbox__close,
.gwl-lightbox__prev,
.gwl-lightbox__next {
  position: absolute;
  border: 0;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  cursor: pointer;
  border-radius: 999px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  font-size: 20px;
  line-height: 1;
}
.gwl-lightbox__close {
  top: 16px;
  right: 16px;
  font-size: 28px;
}
.gwl-lightbox__prev {
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.gwl-lightbox__next {
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
body.gwl-lightbox-open {
  overflow: hidden;
}

