a.lightbox {
  display: block;
}
a.lightbox img {
  transition: 0.3s ease;
}
a.lightbox:hover img {
  opacity: 0.8;
}
#lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(233, 242, 254, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease;
}
#lightbox-modal.show {
  opacity: 1;
  visibility: visible;
}
#lightbox-modal img {
  max-width: 80vw;
  max-height: 80vh;
  transform: scale(.9);
  transition: transform .35s ease;
}
#lightbox-modal.show img {
  transform: scale(1);
}
@media all and (max-width: 767px) {
  #lightbox-modal img {
    max-width: 80vw;
    max-height: 80vh;
  }
}
