#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #000000;
  width: 100vw;
  height: 100%;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  z-index: 9999;
  padding: 2rem;
}
#lightbox #lightboxContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: auto;
}
#lightbox img {
  height: 80vh;
  max-height: 80vh;
  width: auto;
}
#lightbox p {
  color: #ffffff;
  width: 100%;
  padding: 2rem 2rem 0;
  text-align: center;
}
#lightbox #closelightBox {
  position: absolute;
  top: 2rem;
  right: 2rem;
  cursor: pointer;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  z-index: 9999;
  width: fit-content;
}
#lightbox #lightboxPrev {
  position: absolute;
  top: 50%;
  left: 1rem;
  cursor: pointer;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  width: fit-content;
}
#lightbox #lightboxNext {
  position: absolute;
  top: 50%;
  right: 1rem;
  cursor: pointer;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  width: fit-content;
}
@media (max-width: 991px) {
  #lightbox #closelightBox {
    top: 6px;
    right: 6px;
  }
  #lightbox #lightboxNext,
  #lightbox #lightboxPrev {
    top: 1vh;
  }
}
