
.popup_wrapper {
  background: rgba(0, 0, 0, 0.4) none repeat scroll 0 0;
  height: 100%;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
  visibility: hidden;
  width: 100%;
  z-index: 9999999;
}
.popup_wrapper .popup_content {
  top: 50%;
  left: 50%;
  right: 0;
  transform: translate(-50%, -50%);
  position: absolute;
  width: 630px;
}
.popup_wrapper .popup_content video{
  width: 100%;
  height: auto;
  border:5px solid #fff;
}
@media (max-width: 991px) {
  .popup_wrapper .popup_content {
  width: 80%;
}
}



.popup_wrapper .popup_close {
  color: #ffffff;
  cursor: pointer;
  display: block;
  text-align: center;
  text-decoration: none;
  background: #66097b;
  width: 53px;
  height: 25px;
  line-height: 27px;
  position: absolute;
  top: -25px;
  right: 0;
  font-size: 13px;
  font-weight: 700;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.popup_wrapper .popup_close:hover {
  background: #d65a84;
}