#video {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 200;
}
#video .back-drop {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
}
#video .popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  background: black;
  width: 700px;
  height: 430px;
  z-index: 1;
  transition: height 0.3s;
  /* padding: 30px 30px 100px 30px; */
}
#video .popup-content .exit {
  position: absolute;
  top: -70px;
  right: 5px;
  width: 60px;
  opacity: 0.3;
  padding: 10px;
  cursor: pointer;
}
#video .player-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*******************************/
/* 반응형 */
/*******************************/

/* 모바일 */
@media screen and (max-width: 450px) {
  #video .popup-content {
    width: 350px;
    height: 270px;
  }}
/* 테블릿 */
@media screen and (min-width: 451px) and (max-width: 1023px) {
}
/* PC */
@media screen and (min-width: 1024px) {
}
