#popup{
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1001;
}
#popup .popup-bg{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #000;
  opacity: 0.8;
}
#popup .popup-content{
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  max-width: 1160px;
  padding: 0 20px;
  margin: 0 auto;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
#popup .popup-content .movie_wrapper{
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    z-index: 1;
}

#popup .popup-content  .movie_wrapper iframe{
    position: absolute;
    top: 0 ;
    left: 0 ;
    height: 100% ;
    width: 100% ;
}
#popup .popup-close{
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
}
#popup .popup-close span{
  opacity: 0;
}
#popup .popup-close:before,
#popup .popup-close:after{
  content: "";
  display: block;
  height: 2px;
  width: 40px;
  border-radius: 3px;
  background: #FFF;
  position: absolute;
  top: 19px;
  left: 0px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
#popup .popup-close:after{
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}