
  
  a.channel {
    color: inherit;
    text-decoration: none;
  }
  a.channel:hover {
    text-decoration: underline;
  }
  
  .title {
    color: #767777;
    font-size: 15px;
    font-weight: bold;
  }
  .sub-title {
    color: #8a8b8b;
    font-size: 13px;
  }
  .icon-active {
    filter: sepia(100%) hue-rotate(150deg) saturate(400%);
  }
  
  /*#playlist {
    position: relative;
    width: 100%;
    height: 60vh;
    display: flex;
    transition: all ease 0.3s;
  }*/
  #playlist {
    top: 50%;
    left: 50%;
    width: 100%;
    height: auto;
    display: flex;
    
    transition: all ease 0.3s;
  }
  #video-dis {
    flex: 6.5;
    margin-right: 20px;
    background: black;
  }
  #video-dis iframe {
    width: 100%;
    height: 100%;
  }
  .video-li {
    flex: 3.5;
    display: flex;
    padding: 10px;
    border-radius: 3px;
    flex-direction: column;
    background: #fbfcfc;
  }
  .li-collapsed {
    overflow: hidden;
    height: 40px;
  }
  #vli-info {
    flex: 3;
    padding: 0 10px 0 10px;
  }
  
  #upper-info {
    display: flex;
  }
  
  #li-titles {
    flex: 9;
  }
  #li-titles div {
    padding-bottom: 5px;
  }
  
  #drop-icon {
    flex: 1;
    cursor: pointer;
    background: url(https://user-images.githubusercontent.com/50569315/118832584-92350500-b8e2-11eb-8398-9a90a4615b98.png)
      no-repeat center;
    background-size: 50%;
  }
  
  #lower-info {
    display: flex;
    padding-top: 10px;
  }
  #lower-info div {
    width: 40px;
    height: 40px;
    cursor: pointer;
  }
  #btn-repeat {
    margin-right: 10px;
    background: url(https://user-images.githubusercontent.com/50569315/118832591-93663200-b8e2-11eb-8b98-3b177304b555.png)
      no-repeat left;
    background-size: 50%;
  }
  #btn-suffle {
    margin-right: 10px;
    background: url(https://user-images.githubusercontent.com/50569315/118832597-93fec880-b8e2-11eb-9146-f978064eddb1.png)
      no-repeat left;
    background-size: 45%;
  }
  #btn-save {
    margin-left: auto;
    order: 2;
    right: 10px;
    margin-right: 10px;
    background: url(https://user-images.githubusercontent.com/50569315/118832594-93fec880-b8e2-11eb-8201-12cb52be231f.png)
      no-repeat right;
    background-size: 60%;
  }
  
  #vli-videos {
    flex: 7;
    overflow: auto;
  }
  
  .video-con {
    display: flex;
    cursor: pointer;
    padding: 5px;
    column-gap: 5px;
    margin-bottom: 10px;
  }
  .video-con:hover,
  .active-con {
    background: #f1f1f1;
  }
  .index {
    min-width: 15px;
    align-self: center;
  }
  .thumb {
    width: 100px;
    height: 60px;
    background: #767777;
  }
  .thumb img {
    width: 100%;
  }
  .v-titles {
    flex: 6;
  }
  .v-titles div:nth-child(2) {
    margin-top: 5px;
  }
  
  @media only screen and (max-width: 1150px) {
    #playlist {
      width: 95vw;
      height: 60vh;
    }
  }
  @media only screen and (max-width: 950px) {
    #playlist {
      top: 10%;
      width: 50vw;
      margin: 0 auto;
      display: block;
      align-items: center;
      transform: translate(-50%, 0%);
    }
    #video-dis {
      margin-bottom: 10px;
      width: 100%;
      height: 300px;
    }
  }
  @media only screen and (max-width: 800px) {
    #playlist {
      width: 60vw;
    }
  }
  @media only screen and (max-width: 650px) {
    #playlist {
      width: 80vw;
    }
  }
  