/* VIDEO light box */
.lightbox {
  background-color: rgba(0, 0, 0, 0.8);
  overflow: scroll;
  position: fixed;
  display: none;
  z-index: 20;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
  z-index: 999;
}

.lightbox-container {
  position: relative;
  max-width: 960px;
  margin: 10% auto;
  display: block;
  padding: 0 3%;
  height: auto;
  z-index: 0;
}

.ll-page-abs__sec7 {
  position: relative;
}

.AnchorKV {
  position: absolute;
  top: -100px;
  left: 0;
  border: 1px solid #000;
}

.o2oAnchor {
  position: absolute;
  top: -100px;
  left: 0;
  border: 1px solid #000;
}

@media screen and (max-width: 768px) {
  .lightbox-container {
    margin-top: 40%;
  }
}

@media screen and (max-width: 414px) {
  .lightbox-container {
    margin-top: 55%;
  }

  .AnchorKV {
    top: -158px;
  }

  .o2oAnchor {
    top: -158px;
  }
}

@media screen and (max-width: 320px) {
  .lightbox-container {
    margin-top: 45%;
  }
}

.lightbox-content {
  -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
}

.lightbox-close {
  text-transform: uppercase;
  background: transparent;
  position: absolute;
  font-weight: 300;
  font-size: 12px;
  display: block;
  border: none;
  color: white;
  top: -22px;
  right: 3%;
  z-index: 3;
}

.video-container {
  padding-bottom: 56.25%;
  position: relative;
  padding-top: 30px;
  overflow: hidden;
  height: 0;
}

.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}

.video_play {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  display: block;
  overflow: hidden;
}

@media (min-width: 992px) {
  .video_play {
    display: block;
  }
}

.video_play img {
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  -o-transition: -o-transform 0.5s;
  -moz-transition: transform 0.5s, -moz-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s, -moz-transform 0.5s,
    -o-transform 0.5s;
}

.video_play:before {
  content: "";
  width: 100%;
  height: 100%;
  display: inline-block;
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

.video_play:hover img {
  -webkit-transform: scale(1.03);
  -moz-transform: scale(1.03);
  -ms-transform: scale(1.03);
  -o-transform: scale(1.03);
  transform: scale(1.03);
}

.video_play:hover:before {
  content: "";
  opacity: 1;
}
