
* {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
}



.clearfix { clear: both; }

#container {
  max-width: 330px;
  background: -webkit-linear-gradient(90deg, #080808 10%, #505050 90%); /* Chrome 10+, Saf5.1+ */
  background: -moz-linear-gradient(90deg, #080808 10%, #505050 90%); /* FF3.6+ */
  background: -ms-linear-gradient(90deg, #080808 10%, #505050 90%); /* IE10 */
  background: -o-linear-gradient(90deg, #080808 10%, #505050 90%); /* Opera 11.10+ */
  background: linear-gradient(90deg, #080808 10%, #505050 90%); /* W3C */
  overflow: auto;
  border-radius: 13px;
  border: 2px solid #BB9955;
  font-family: Arial;
  font-size: 13px;
  line-height: 1.5em;
  color: #BB9955;
  
}

#audio-image {
  position: relative;
  overflow: hidden;
  max-height: 200px;
  margin-bottom: 15px;
}

#audio-image .cover { max-width: 100%; }

#audio-info { text-align: center; }

#audio-info .artist { font-weight: bold; }
#audio-info .duration { font-weight: normal; }


#buttons {
  width: 90%;
  display: block;
  margin: 19px auto;
  
  overflow: auto;
  
}
button#play {
  width: 30px;
  height: 30px;
  background: url(../images/play30.png) no-repeat;
  border: 1px solid #BB9955;
}

button#pause {
  width: 30px;
  height: 30px;
  background: url(../images/pause30.png) no-repeat;
  border: 1px solid #BB9955;
}

button#stop {
  width: 30px;
  height: 30px;
  background: url(../images/stop30.png) no-repeat;
  border: 1px solid #BB9955;
}

button#prev {
  width: 30px;
  height: 30px;
  background: url(../images/prev30.png) no-repeat;
  border: 1px solid #BB9955;
}

button#next {
  width: 30px;
  height: 30px;
  background: url(../images/next30.png) no-repeat;
  border: 1px solid #BB9955;
}
#tracker {
  position: relative;
  max-width: 100%;
}

#progress-bar {
  width: 70%;
  margin-left: 5%;
  margin-bottom: 10px;
  margin-top: 10px;
  height: 8px;
  background: #BB9955;
}

#progress {
  background: #080808;
  margin-top: 2px;
  margin-bottom: 2px;
  height: 4px;
  display: inline-block;
}

#duration {
  position: absolute;
  top: -10px;
  right: 10px;
  padding: 4px 8px;
  background: #080808;
  border-radius: 5px;
}
#playlist {
  list-style: none;
  margin-bottom: 30px;  
}

#playlist li {
  cursor: pointer;
  margin: 10px;
  padding-left: 10px;
}

#playlist li.active {
  padding-left: 10px;
  background: #BB9955;
  color: #080808;
  font-weight: bold;
}
