.video_content_full_player {
  padding: 15px 0;
}
.video_content_full_player .anim-width {
  transition: all 0.3s ease-in-out;
}
.video_content_full_player .videoClose {
  display: none;
}
.video_content_full_player .active .videoClose {
  display: block;
  position: absolute;
  right: -10px;
  cursor: pointer;
}
.video_content_full_player .active .videoClose:hover {
  transform: scale(1.2);
}
.video_content_full_player .videoWrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  text-align: center;
  cursor: pointer;
}
.video_content_full_player .videoWrapper .video-load {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.video_content_full_player .col-md-6.text-center {
  margin-bottom: 30px;
}
.video_content_full_player .videoWrapper iframe  {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video_content_full_player .play-button {
  position: absolute;
  height: 60px;
  width: 60px;
  background: rgba(0,0,0,0.5);
  top: 50%;
  transform: translateY(-50%);
  margin: 0 auto;
  left: 0;
  right: 0;
  border-radius: 100%;
  transition: all 0.1s ease-in-out;
}
.video_content_full_player .play-button .play-triangle {
  margin-left: 23px;
  margin-top: 15px;
  border-width: 15px 20px;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
}
.video_content_full_player .videoWrapper:hover .play-button {
  background-color: #00a9f2;
}
