/* === popup media player === */

/* background overlay */

#YTPlayer {
  display: none;
  background: rgba(0, 0, 0, .8);
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 20;
  left: 0;
  top: 0;
}

/* video player */

#YTPlayer DIV {
  position: fixed;
  background: #000;

  width: calc(80vw);
  left: calc(10vw);

  height: calc(80vw * 9 / 16);
  top:    calc((100vh - (80vw * 9 / 16)) / 2);

  border: 5px solid #df4b42;
}
