/* Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  display: block;
  z-index: 1000000000;
  animation: fade-in 0.4s;
}
.lightbox-modal video {
  max-width: 80vw;
  max-height: 94%;
  width: auto;
  height: auto;
}
.lightbox-modal figure {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 80vw;
  max-height: 80vh;
}
.lightbox-modal img {
  max-width: 80vw;
  max-height: 80vh;
}
.lightbox-modal figcaption {
  margin-top: 8px;
  color: #eee;
  font-style: italic;
  font-size: 1.2rem;
  text-align: center;
}
.lightbox-modal button {
  position: absolute;
  top: 20px;
  right: 20px;
  display: block;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  border: none;
  z-index: 10000000;
  cursor: pointer;
}
.lightbox-modal button svg {
  display: block;
  fill: #eee;
}

.video-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/*# sourceMappingURL=lightbox.css.map */
