
@media screen and (min-width: 62.5em) {
  .lightbox {
    margin: 10rem;
  }
}
.lightbox__iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.lightbox__closeCross {
  font-size: 0;
  cursor: pointer;
  position: absolute;
  top: 16px;
  top: 1rem;
  right: 16px;
  right: 1rem;
  height: 32px;
  width: 32px;
  background: url(images/close-x.png) no-repeat center;
}
.lightboxOpen\* .bodyContentWrapper {
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.lightboxOpen\* .lightbox {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
