  /* HEADER */
  .page_heading {
    display: flex;
    flex-direction: column;
    padding: 50px 0 10px 0;
  }
  .breadcrumb {
    display: flex;
    padding-left: 10px;
    color: #D61F29;
    text-transform: uppercase;
    font-weight: 700;
  }
  .heading {
    font-weight: 600;
    font-size: 2em;
    line-height: 2rem;
    padding: 0 25px ;
  }

  /* HEADER END */

  /*  VIDEO  */
  .video_main {
    display: flex;
    flex-direction: column;
  }
  .videoTitle {
    display: inline-block;
    font-size: 1em;
    padding: 0 1%;
  }
  .video_player {
    width: calc(100% - 2%);
    aspect-ratio: 2/1.2;
    padding: 1%;
  }

  .video_playlist {
    display: flex;
    flex-direction: column;
    column-gap: 1%;
    row-gap: 10px;
  }
  .video_playlist .item {
    display: flex;
    column-gap: 5%;
    padding: 10px 0;
    border-bottom: 1px solid #efefef;
    cursor: pointer;
  }
  .video_playlist .item:hover {
    background: #efefef;
  }

  .video_playlist .item:last-child {
    /*border-bottom: none;*/
  }
  .video_playlist .item:first-child {
  }

  .video_title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }

    .item img {
      width: 40%;
    }
    .item .item_meta {
      display: flex;
      flex-direction: column;
      justify-content: center;
      width: 100%;
    }
    .video_duration, .video_date {
      font-size: 0.7em;
      color: #919191;
    }
    .active {
      background: #efefef;
      border: 1px solid black !important;
    }
  /*  VIDEO END  */



@media only screen and (min-width: 768px) {

  .page_heading {
    margin: 0 auto;
    padding: 25px 0;
    width: 80%;
  }

  .breadcrumb {
/*    padding-left: 1%;*/
  }

  .video_main {
    width: 80%;
    display: flex;
    margin: 0 auto;
  }
  .videoTitle {
    font-size: 2em;
  }

  .video_playback {
    width: 100%;
  }

  .video_playlist {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 25px 0;
  }
  .video_playlist .item {
    width: calc(30% - 1%);
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #ccc;
  }

  .item img {
    border-radius: 10px;
    border: 1px solid #efefef;
  }

  .video_player {
    padding: 0 1%;
  }


} 

  /* GRID END */