.ova-video-popup .ova-video-popup-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.ova-video-popup .ova-video-popup-container:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: transparent;
}
.ova-video-popup .ova-video-popup-container img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.ova-video-popup .ova-video-popup-container .video-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  background-color: #ff00de;
  border-radius: 50%;
  z-index: 1;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ova-video-popup .ova-video-popup-container .video-content i {
  color: #fff;
  font-size: 45px;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ova-video-popup .ova-video-popup-container .video-content .text-play {
  font-family: DM Sans;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
}
.ova-video-popup .ova-video-popup-container .video-content:hover {
  background-color: #040404;
}
.ova-video-popup .ova-video-popup-container .video-content.video-image {
  position: absolute;
}
.ova-video-popup .modal-container {
  display: none;
  background-color: rgba(0, 0, 0, 0.2);
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 10;
}
.ova-video-popup .modal-container .modal {
  width: 900px;
  height: 500px;
  position: relative;
}
@media screen and (max-width: 900px) {
  .ova-video-popup .modal-container .modal {
    width: 768px;
    height: 450px;
  }
}
@media screen and (max-width: 788px) {
  .ova-video-popup .modal-container .modal {
    width: 600px;
    height: 350px;
  }
}
@media screen and (max-width: 620px) {
  .ova-video-popup .modal-container .modal {
    width: 400px;
    height: 250px;
  }
}
@media screen and (max-width: 420px) {
  .ova-video-popup .modal-container .modal {
    width: 320px;
    height: 200px;
  }
}
@media screen and (max-width: 330px) {
  .ova-video-popup .modal-container .modal {
    width: 300px;
    height: 180px;
  }
}
.ova-video-popup .modal-container .modal i {
  position: absolute;
  right: -10px;
  top: -35px;
  padding: 10px;
  cursor: pointer;
  font-size: 12px;
  color: #fff;
  font-weight: 600;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ova-video-popup .modal-container .modal i:hover {
  color: #000;
}
.ova-video-popup .modal-container .modal .modal-video {
  width: 100%;
  height: 100%;
}