.lightbox {
  display: none;
  z-index: 101;
  position: fixed;
  left: 0;
  top: 0;
  overflow: auto;
  background-color: #fefefe;
  margin: auto;
  padding: 15px;
  margin: 10px;
  width: calc(100vw - 20px);
  max-width: 700px;
  height: calc(100vh - 20px);
}

.lightbox-legend h5 {
  font-size: var(--bs-body-font-size);
  font-style: italic;
}

.lightbox-container {
  display: inline-flex;
  flex-wrap: wrap-reverse;
  justify-content: center;
  background-color: white;
}

.lightbox-image {
  padding: 10px 10px 10px 10px;
}

.lightbox-legend {
  padding: 10px 10px 10px 10px;
}

.lightbox-image img {
  max-height: calc(100vh - 40px);
  width: 100%;
}

#lightbox-background {
  display: none;
  position: fixed;
  z-index: 100;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
  opacity: 0.5;
}

#lightbox-close {
  display: none;
  content: url('../img/x-lg.svg');
  position: fixed;
  top: 15px;
  height: 30px;
  z-index: 102;
  cursor: pointer;
}