* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container-player {
  height: auto;
  display: block;
}

#mediaPlayer {
  position: relative;
  width: 100%;
  height: 100%;
  /* background: red; */
  display: flex;
  justify-content: center;
}

#controls {
  position: absolute;
  width: 100%;
  height: 12%;
  bottom: 0px;
  color: white;
  opacity: 7;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  /* padding: 5px 10px;   */
}

#controls > button {
  outline: inherit;
  border: none;
  cursor: pointer;
  background-color: transparent;
  color: white;
}

#progressBar {
  height: 5px;
  width: 70%;
  display: flex;
  background: white;
  border-radius: 30px;
  overflow: hidden;
}

#progressBar > #progress {
  height: 100%;
  width: 0%;
  background: #00a8ff;
}
#media-video {
  width: 100%;
  height: 100%;
  box-shadow: 0 7px 14px rgba(0, 0, 0, 0.25), 0 6px 4px rgba(0, 0, 0, 0.21);
}

#playlist {
  width: 100%;
  height: 220px;
  padding: 0 10px;
  background: white;
  overflow: auto;
  overflow-x: hidden;
  box-shadow: 0 7px 14px rgba(0, 0, 0, 0.25), 0 6px 4px rgba(0, 0, 0, 0.21);
}
.video {
  width: 100%;
  height: 11vh;
  display: inline-block;
  display: flex;
  cursor: pointer;
  padding: 2.0vh;
}

.video-imagen {
position: relative;	
  width: 15%;
  height: 100%;
  /* background-color: black; */
}

.video-imagen > img {
position: absolute;
    height: 140%;
    left: -12px;
    top: -10px;
}

.video-information {
	line-height: 30px;
    width: 80%;
    height: 100%;
    text-align: left;

     font-size: 1.3vw;
}
.video-information p{
	margin-bottom:0px;
}
.playing {
  background-color: #dadada;
  color: black;
}

/** Spinneer*/
.lds-ring {
  display: inline-block;
  position: absolute;
  top: 40%;
  width: 64px;
  height: 64px;
  z-index: 100000;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* scroll bar configuration */

#playlist::-webkit-scrollbar {
  width: 4px;
  background-color: gray;
}

#playlist::-webkit-scrollbar-thumb {
  width: 3 px;
  background-color: transparent;
}

#playlist::-webkit-scrollbar-track {
  width: 4px;
  background-color: transparent;
}

media-video::-webkit-media-controls {
  display: none !important;
}

media-video::-webkit-media-controls-overlay-enclosure {
  display: none !important;
}

media-video::-webkit-media-controls-enclosure {
  display: none !important;
}

video::-webkit-media-controls {
  display: none !important;
}

/* 650 */

@media only screen and (max-width: 650px) {
  .container-player {
    flex-wrap: wrap;
    height: auto;
  }
  #mediaPlayer {
    width: 100%;
  }

  #playlist {
    width: 100%;
  }
}
@media(max-width: 480px){
	.video-information {
		padding-left: 25px;
		overflow: hidden;
	}
	.video-imagen > img {
		height: 100%;
		top: 0px;
	}	
}

