/* Lightbox CSS */
.lightboxOverlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: black;
  opacity: 0.8;
  display: none;
}

.lightbox {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 10000;
  display: none;
  transform: translate(-50%, -50%);
}

.lightbox .lb-image {
  display: block;
  max-width: 90%;
  max-height: 90vh;
  border: 4px solid white;
  border-radius: 4px;
}

.lb-outerContainer {
  position: relative;
  background-color: white;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 4px;
}

.lb-container {
  padding: 4px;
}

.lb-data .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
