.ova-video .ova-video-container {
  position: relative;
}
.ova-video .ova-video-container .video-js {
  width: 100%;
  height: 518px;
}
@media (max-width: 767px) {
  .ova-video .ova-video-container .video-js {
    height: 360px;
  }
}
.ova-video .ova-video-container .video-js .vjs-tech {
  object-fit: cover;
}
.ova-video .ova-video-container .video-js .vjs-poster {
  background-size: cover;
}
.ova-video .ova-video-container .video-js .vjs-big-play-button, .ova-video .ova-video-container .video-js .vjs-volume-panel, .ova-video .ova-video-container .video-js .vjs-fullscreen-control, .ova-video .ova-video-container .video-js .vjs-picture-in-picture-control {
  display: none;
}
.ova-video .ova-video-container .video-js .vjs-control-bar {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(20px);
  border-radius: 28.5px;
  bottom: 28px;
  left: 28px;
  width: 85%;
  height: 50px;
}
.ova-video .ova-video-container .video-js .vjs-play-progress {
  background-color: #ff00de;
  border-radius: 4px;
}
.ova-video .ova-video-container .video-js .vjs-play-progress:before {
  content: none;
}
.ova-video .ova-video-container .video-js .vjs-slider {
  background-color: #fff;
  border-radius: 4px;
  height: 7px;
}
.ova-video .ova-video-container .video-js .vjs-load-progress div {
  background-color: #fff;
}
.ova-video .ova-video-container .video-js .vjs-play-control .vjs-icon-placeholder {
  color: #ff00de;
  display: inline-flex;
  background-color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.ova-video .ova-video-container .video-js .vjs-play-control .vjs-icon-placeholder:before {
  top: 8px;
  font-size: 20px;
}
.ova-video .ova-video-container .video-js .vjs-time-control {
  color: #000;
  padding-left: 5px;
  padding-right: 21px;
  top: 6px;
  font-size: 12px;
}
.ova-video .ova-video-container .overlay-video {
  cursor: pointer;
  transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.ova-video .ova-video-container .overlay-video .overlay-video-wrapper {
  transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  text-align: center;
  position: relative;
  width: 100%;
  height: 100%;
}
.ova-video .ova-video-container .overlay-video .overlay-video-wrapper .title {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  transform: translate(-50%, -50%);
  font-family: Zen Dots;
  font-style: normal;
  font-weight: normal;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: 0.01em;
  color: #FFFFFF;
  text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}
@media (max-width: 767px) {
  .ova-video .ova-video-container .overlay-video .overlay-video-wrapper .title {
    width: 100%;
  }
}
.ova-video .ova-video-container .overlay-video .overlay-video-wrapper .play-icon {
  transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: #ff00de;
  border-radius: 50%;
  z-index: 1;
  opacity: 0;
  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 .ova-video-container .overlay-video .overlay-video-wrapper .play-icon i {
  color: #fff;
  font-size: 32px;
  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 .ova-video-container .overlay-video .overlay-video-wrapper:hover .play-icon {
  transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  opacity: 1;
  top: 50%;
}