@charset 'utf-8';

.boxVideoPopupBg {
  overflow: hidden;
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
@media all and (max-width: 750px){

}

.boxVideoPopup {
  cursor: pointer;
}

.boxVideoPopup > .boxVideo {
  /*overflow-y: auto;*/
  position: fixed;
  z-index: 1001;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  width: 70%;
  height: auto;
  max-height: 90%;
  margin: 0 auto;
  /*background-color: rgba(0,0,0,0.7);*/
}
@media all and (max-width: 750px){
  .boxVideoPopup > .boxVideo {
    width: 90%;
    height: auto;
    max-height: 90%;
    margin: 0 auto;
  }
}

.boxVideoPopup > .boxVideo video {
  width: 100%;
}

.btnVideoClose {
  position: absolute;
  z-index: 3;
  top: 25px;
  right: 25px;
  cursor: pointer;
}

.btnVideoPlay {
  cursor: pointer;
}
