.popupDiv {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(48, 48, 48, 0.9);
  color: #000;
  text-align: left;
  bottom: 0;
  overflow: hidden;
  display: none;
  z-index: 208;
}
.popupDiv__content {
  display: block;
  width: 95%;
  max-width: 1200px;
  text-align: center;
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.popupDiv .closeX {
  display: block;
  position: fixed;
  color: #ffffff;
  font-size: 30px;
  font-weight: 300;
  right: 30px;
  top: 10px;
  z-index: 100;
  cursor: pointer;
  -webkit-transition: all ease-in 0.3s;
  transition: all ease-in 0.3s;
}
.popupDiv .closeX:hover {
  text-shadow: 1px 1px 10px #fff;
}
.popupDiv .videoMain video {
  width: 100%;
  max-height: 100%;
}

@media (min-width: 996px) {
  .popupDiv__content {
    width: 90%;
  }
  .popupDiv .closeX {
    position: absolute;
    right: 20px;
    top: 0px;
    font-size: 50px;
  }
}/*# sourceMappingURL=popupDiv.css.map */