.PDP-PopinInVideo {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
  z-index: 100;
}
.PDP-PopinInVideo[data-open="0"] {
  pointer-events: none;
  opacity: 0;
}
.PDP-PopinInVideo[data-open="1"] {
  display: block;
  opacity: 1;
}
.PDP-PopinInVideo__video {
  padding: 2.32vw;
  padding-top: 20px;
  width: 90vw;
  height: calc(90vw * 518 / 920);
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 100;
  transform: translateX(-50%) translateY(-50%);
}
@media (min-width: 1000px) {
  .PDP-PopinInVideo__video {
    padding: 20px;
    width: 920px;
    height: 518px;
  }
}
.PDP-PopinInVideo__video-iframe {
  width: 100%;
  height: 100%;
}
.PDP-PopinInVideo__close-btn {
  width: 14px;
  height: 14px;
  font-size: 0px;
  position: absolute;
  right: 4px;
  top: 4px;
  cursor: pointer;
  z-index: 2;
}
