.lightbox,
.lightbox .backdrop {
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
}

.lightbox {
  display: none;
  opacity: 0;
  position: fixed;
  transition: opacity .2s linear;
  z-index: 999;
}

.lightbox .backdrop,
.lightbox .content {
  position: absolute;
}

.lightbox .backdrop {
  background: #000;
  cursor: pointer;
  opacity: 0.7;
  z-index: 1;
}

.lightbox .content {
  bottom: 0;
  box-shadow: 1px 1px 5px #000;
  height: 580px;
  left: 0;
  margin: auto;
  right: 0;
  top: 0;
  width: 1024px;
  z-index: 2;
}

.lightbox .body,
.lightbox iframe {
  height: 100%;
  width: 100%;
}

.lightbox iframe {
  border: 0;
  display: block;
}

.lightbox img {
  max-height: 100%;
  max-width: 100%;
}

.lightbox video {
  max-height: 100%;
  max-width: 100%;
}

.lightbox .close {
  background: #000;
  border: 2px #FFF solid;
  border-radius: 50%;
  box-shadow: 2px 2px 5px #000;
  color: #FFF;
  cursor: pointer;
  font-size: 18px;
  padding: 1px 5px 2px 5px;
  position: absolute;
  right: -15px;
  top: -15px;
  z-index: 3;
}

.lightbox.show {
  display: block;
}

.lightbox.open {
  opacity: 1;
}
