
.mini_video:not(.is-fullscreen){
    animation-name: minimize_animation;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    z-index: 999999999999999999999999999;
    position: fixed;

}


.youtubeWrap .fa-times{
  display: none;
  position: fixed;
  bottom: 227px;
  left: 10px;
  font-size: 30px;
  cursor: pointer;
}

.video_wrap .fa-times{
  display: none;
  position: fixed;
  bottom: 208px;
  left: 10px;
  font-size: 30px;
  cursor: pointer;
}





@keyframes minimize_animation {
    0%{
      position:fixed; 
      height: 0px;
      width: 0px;
    }
    100% {
      position:fixed; 
      bottom:10px; 
      left:10px; 
      width:350px;
      max-height:215px;
    }
}