/*!
 * Lightbox v2.11.3
 * by Lokesh Dhakar - http://lokeshdhakar.com
 *
 * More info: https://github.com/lokesh/lightbox2
 */
.lightboxOverlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: black;
  opacity: 0.8;
  z-index: 9999;
  display: none;
}
.lightbox {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10000;
  display: none;
}
.lb-image {
  display: block;
  max-width: 100%;
  height: auto;
  border: 4px solid white;
}
.lb-close {
  position: absolute;
  top: -12px;
  right: -12px;
  background: #fff;
  border-radius: 12px;
  width: 24px;
  height: 24px;
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
