.lightbox {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 100;
}
.lightbox .closer {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  color: white;
  background: rgba(0, 0, 0, 0.3);
  width: 50px;
  height: 50px;
  text-align: center;
  transition: background-color, color;
  transition-duration: 100ms;
  transition-timing-function: linear;
}
.lightbox .closer:hover {
  color: #393939;
  background: #dbdbdb;
}
.lightbox .lightbox-content {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 80vw;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .lightbox .lightbox-content {
    max-width: 100vw;
  }
}
.lightbox .lightbox-content-inner {
  padding: 56.25% 0 0 0;
  position: relative;
}
.lightbox .lightbox-content-inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.lightbox .lightbox-content-inner iframe.bg-white {
  background-color: #ffffff;
}

.lightbox-blocked {
  overflow: hidden;
}

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