/*-------------------------------------------------*/
*[data-popinyoutube] {
  cursor: pointer;
}

.PopinInVideo {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 100;
}

.PopinInVideoBackground {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
  z-index: 99;
}

.PopinInVideo[data-open="0"] {
  pointer-events: none;
  opacity: 0;
}

.PopinInVideo[data-open="1"] {
  display: block;
  opacity: 1;
}

.PopinInVideo .Video {
  padding: 2.32vw;
  padding-top: 20px;
  width: 90vw;
  height: calc(90vw * 518 / 920);
  background-color: #212121;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 100;
  transform: translateX(-50%) translateY(-50%);
}

@media (min-width: 1000px) {
  .PopinInVideo .Video {
    padding: 20px;

    width: 920px;
    height: 518px;
  }
}

.PopinInVideo .video-iframe {
  width: 100%;
  height: 100%;
  position: relative;
}

.ClosePopinVideo {
  width: 14px;
  height: 14px;
  font-size: 0px;
  position: absolute;
  right: 4px;
  top: 4px;
  cursor: pointer;
  background-image: url(./close.svg);
  background-size: 100% 100%;
  z-index: 2;
  filter: invert();
}