* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Roboto', sans-serif;
}
body::-webkit-scrollbar {
  width: 12px;               /* width of the entire scrollbar */
}

body::-webkit-scrollbar-track {
  background-color: #181818;       /* color of the tracking area */
}

body::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.1);    /* color of the scroll thumb */
  border-radius: 20px;       /* roundness of the scroll thumb */
  border: 1px solid rgba(255, 255, 255, 0.1);  /* creates padding around scroll thumb */
}
#wrapperPlayer{
  background-color: #181818;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100vh;
}
#mainContentPlayer {
  display: flex;
  padding: 10px;
  width: 100%;
  height: 410px;
  margin: 0px auto;
  
}
#tutVidTitle {
  font-weight: 100;
  font-size: 14px;
  background: rgba(34, 32, 36, 0);
  color: #fff;
  padding: 5px;
  margin-top: 4px;
  margin-bottom: 15px;
  position: relative;
  z-index: 99;
}
#videoSizer {
  flex: 2;
  width: 100%;
}
#videoWrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
}
iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; 
 height: 100%;
}
#videoListContent {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0px;
  background: #181818;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0px 5px 0px 15px;
  align-items: center;
 
}
#videoListContent .VideoListName{
  padding: 12px 6px 16px 16px;
  background: rgba(33, 33, 33, 0.98);
  width: 100%;
  color:#fff;
}

#videoListContent .VideoListName .title{
  font-size: 1.2rem;
  color:#fff;
}

#videoListContent .VideoListName .description{
  font-size: 1rem;
  color:#aaa;
    padding-top: 0.2em;
}
#videoList {
  /* flex: 1; */
  /* display: flex; */
  /* flex-direction: column; */
  width: 100%;
  padding: 0px;
  /* background: #181818; */
  /* border: 1px solid rgba(255, 255, 255, 0.1); */
  /* margin: 0px 5px 0px 15px; */
  /* align-items: center; */
  height: 300px;
  overflow-y: scroll;
}
#videoList::-webkit-scrollbar {
  width: 12px;               /* width of the entire scrollbar */
}
#videoList::-webkit-scrollbar-track {
  background-color: #181818;       /* color of the tracking area */
}

#videoList::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.1);    /* color of the scroll thumb */
  border-radius: 20px;       /* roundness of the scroll thumb */
  border: 1px solid rgba(255, 255, 255, 0.1);  /* creates padding around scroll thumb */
}

#videoList a {
  text-decoration: none;
  color:#fff;
  display: block;
  padding: 10px;
  background: transparent;
  /*margin: 4px;*/
  width: 100%;
  transition: .4s;
  /*border: 1px white solid; */
}
#videoList a:hover, #videoList a:active,
#videoList a.active {
  background-color: rgba(255, 255, 255, 0.1);
}

input:checked ~ a {
  color: #fff;
  background: #cccccc;
  border: 1px black solid;
  text-shadow: .5px .5px black;
}


@media screen and (max-width: 767px){
  #wrapperPlayer{
    height: 100%;
  }
}




@media screen and (max-width: 767px) and (max-height: 800px){
  #mainContentPlayer {
    flex-direction: column;
    height: 100%;
  }
  #videoList {
    padding-top: 0px;
    margin: 0px 0;
  }
  #videoSizer {
    flex: inherit;
    width: 100%;
}
}


@media (min-height: 0px)and (max-height: 399px){
  #mainContentPlayer {
    height: 100%;
  }
  #wrapperPlayer {
    height: 100%;
  }

}

/*
@media screen and (max-width: 700px){
  
}

@media (max-height: 600px){

}*/