.egp-no-scroll { overflow: hidden; }
.egp-lightbox{
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
}
.egp-lightbox__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.72);
}
.egp-lightbox__content{
  position: relative;
  z-index: 1;
  max-width: min(1100px, 92vw);
  max-height: 88vh;
  display: grid;
  place-items: center;
}
.egp-lightbox__img{
  max-width: 100%;
  max-height: 88vh;
  border-radius: 14px;
  box-shadow: 0 12px 50px rgba(0,0,0,.45);
}
.egp-lightbox__close{
  position: absolute;
  top: -12px;
  right: -12px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
  background: #fff;
  box-shadow: 0 8px 25px rgba(0,0,0,.35);
}
