@import url('https://fonts.googleapis.com/css?family=Nunito+Sans:300,400&display=swap');
@font-face {
  font-family: 'Glyphicons Halflings';

  src: url('../fonts/glyphicons-halflings-regular.eot');
  src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
}
.glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-weight: normal;
  line-height: 1;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}



.glyphicon-step-backward:before {
  content: "\e069";
}
.glyphicon-play:before {
  content: "\e072";
}
.glyphicon-pause:before {
  content: "\e073";
}
.glyphicon-stop:before {
  content: "\e074";
}
.glyphicon-step-forward:before {
  content: "\e077";
}

.glyphicon-repeat:before {
  content: "\e115";
}

.glyphicon-volume-up:before {
  content: "\e038";
}





html {
  width: 100%;
  height: 100%;  
  overflow: hidden;
  padding: 0;
  margin: 0;
  outline: 0;
}

body {
  width: 100%;
  height: 100%;
  font-size: 3vw;
  padding: 0;
  margin: 0;
  overflow: hidden;
  background: #815d2f;
  background: -moz-linear-gradient(45deg, #815d2f 0%, #be943a 100%);
  background: -webkit-linear-gradient(45deg, #815d2f 0%, #be943a 100%);
  background: linear-gradient(45deg, #815d2f 0%, #be943a 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#815d2f', endColorstr='#be943a', GradientType=1);
  font-family: "Nunito Sans", Arial;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

/* Top Info */
#title {
  position: absolute;
  width: 100%;
  top: 62%;
  height: 3vw;
  text-align: center;

  opacity: 0.9;
  font-weight: 400;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.33);
}

.timeDisplay {
  position: absolute;
  font-size: 3vh;
  line-height: 140%;
  left: 2%;
  text-align: left;
  opacity: 0.8;
  font-weight: 300;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.33);
  z-index: 10;
}

/* Controls */
.controlsOuter {
  position: absolute;
  width: 100%;
  height: 15%;
  bottom: 2%;
}
.controlsInner {
  position: absolute;
  width: 80%;
  height: 15%;
  left: 10%;
  margin: 0;

}

.btn {
  position: absolute;
  cursor: pointer;
  color: #fff;
  font-size: 1.4em;
  line-height: 0;
  text-shadow: 0 0 .2em rgba(0, 0, 0, 0.9);
  text-align: center;
  opacity: 0.9;
  padding: 0.25em 0.4em;
  border-radius: .3em;

  -webkit-user-select: none;
  user-select: none;
}
.btn:hover {
  opacity: 1;
}

.btn.btnOn {
  background-color: rgba(180,140,100,.3);
}


.controlsInner .btn {
  transform: translateX(-50%);
}

#playBtn {
  left: 25%;

}
#pauseBtn {
  left: 25%;
  display: none;

}
#prevBtn {
  left: 0;
}
#nextBtn {
  left: 50%;

}

#repeatBtn {
  left: 75%;

}

#volumeBtn {
  left: 100%;
}

/* Progress */
#waveform {
  width: 100%;
  height: 30%;
  position: absolute;
  left: 0;
  top: 50%;
  margin: -15% auto;
  display: none;
  cursor: pointer;
  opacity: 0.8;
  -webkit-user-select: none;
  user-select: none;
}
#waveform:hover {
  opacity: 1;
}
#bar {
  position: absolute;
  bottom: 20%;
  left: 0;
  width: 100%;
  height: 4%;
  background-color: rgba(255, 255, 255, 0.2);
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.33);
  opacity: 0.9;
}
#progress {
  position: absolute;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: rgba(77, 62, 31, 0.5);
  z-index: 3;
}

/* Loading */
#loading {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -35px;
  width: 70px;
  height: 70px;
  background-color: #fff;
  border-radius: 100%;  
  -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
  animation: sk-scaleout 1.0s infinite ease-in-out;
  display: none;
}
@-webkit-keyframes sk-scaleout {
  0% { -webkit-transform: scale(0) }
  100% {
    -webkit-transform: scale(1.0);
    opacity: 0;
  }
}
@keyframes sk-scaleout {
  0% { 
    -webkit-transform: scale(0);
    transform: scale(0);
  } 100% {
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
    opacity: 0;
  }
}

/* Plylist */
#playlist {
  width: 100%;
  height: 60%;
  position: absolute;
  top: 0;
  left: 0;
  overflow-y: scroll;
  box-shadow: 0 0 5px rgba(0,0,0,.5);
  background-color: rgba(114, 107, 89, 0.5);
  /*display: none;*/
}

#list {
  position: relative;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.list-song {
  width: 100%;
  font-size: 0.83em;
  text-align: center;
  font-weight: 300;
  color: #eee;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.33);
  border-bottom: 1px solid rgba(233,233,233,.1);
}
.list-song:hover {
  background-color: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

/* Volume */
#volume {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  touch-action: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  display: none;
}
.bar {
  position: absolute;
  top: 50%;
  left: 5%;
  margin: -5px auto;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.33);
}
#barEmpty {
  width: 90%;
  opacity: 0.5;
  box-shadow: none;
  cursor: pointer;
}
#barFull {
  width: 90%;
}
#sliderBtn {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 93.25%;
  margin: -25px auto;
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.33);
  border-radius: 25px;
  cursor: pointer;
}

/* Fade-In */
.fadeout {
  webkit-animation: fadeout 0.5s;
  -ms-animation: fadeout 0.5s;
  animation: fadeout 0.5s;
}
.fadein {
  webkit-animation: fadein 0.5s;
  -ms-animation: fadein 0.5s;
  animation: fadein 0.5s;
}
@keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@-webkit-keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@-ms-keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes fadeout {
  from { opacity: 1; }
  to   { opacity: 0; }
}
@-webkit-keyframes fadeout {
  from { opacity: 1; }
  to   { opacity: 0; }
}
@-ms-keyframes fadeout {
  from { opacity: 1; }
  to   { opacity: 0; }
}

@media only screen and (max-width: 800px) {
  body {
    font-size: 5vw;
  }
  .list-song {
    padding: .5vh 0;
  }

}
@media only screen and (min-width: 1280px) {
  body {
    font-size: 2vw;
  }
}