.vt_overlay{
    position: absolute;
    top: 0;
    left: 0; 
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    cursor: pointer;
  
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: all 0.5s ease-in-out;
  }
  .vt_overlay:hover{
    opacity: 1;
  }
  @media (max-width: 1050px) {
    .vt_overlay{
        opacity: 1;
    }
  }
  
  .video_player_cont_overlay{
    position: fixed;
    top: 0;
    left: 0; 
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 50;
    pointer-events: all;
  
    transition: all 0.3s ease-in-out;
  }
  .video_player_cont_overlay_inner{
    width: 75%;
  }
  @media (max-width: 500px) {
    .video_player_cont_overlay_inner{
        width: 95% !important;
    }
  }
  .vpco_hidden{
    background-color: rgba(0, 0, 0, 0);
    z-index: -50;
    pointer-events: none;
  
  }
  
  .video_player_cont{
    z-index: 60;
  }

  .vid_close{
    display: none;
  }