
* {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
}

body {
  font-family: monospace;
  font-size: 1.2em;
/*   line-height: 1.5em; */
  color: cyan;
/*   color: #fff;  */
/*   background: #665266; /* Old browsers */
  background: url(../images/tron-sunset.jpg) center no-repeat;
/*   background: url(../images/audio-meter.jpg) no-repeat; */
  background-size: cover;
  background-color: #333;

}

/* navigation bars */

#nav ul {
  list-style-type: none;
  margin: 0;
  padding-right: 3%;
  overflow: hidden;
  background-color: #333;
}

#nav li {
  float: right;
}

#nav a {
  display: block;
/*   color: teal; */
  color: orange;
  font-family: monospace;
  font-size: 1.12em;
  text-align: center;
  padding: 4px 6px;
  text-decoration: none;
}

#nav a:hover {
  background-color: #111;
  color: white;
}

header {
	font-size: 20px;
	text-align: center;
	margin-top: 15px;
	color: turquoise;
	text-shadow: black 2px 2px;
	float: center;
}

footer {
  background-color: #333; 
  color: orange;
  text-align: center;
  padding-top: 2%;
  padding-bottom: 2%;
}

.clearfix { clear: both; }

#container {
  width: 320px;
  min-height: 400px;
  background: url(../images/circuit.jpg);
  /*background: -webkit-linear-gradient(90deg, #1F1C2C 10%, #928DAB 90%); /* Chrome 10+, Saf5.1+ */
  /*background: -moz-linear-gradient(90deg, #1F1C2C 10%, #928DAB 90%); /* FF3.6+ */
  /*background: -ms-linear-gradient(90deg, #1F1C2C 10%, #928DAB 90%); /* IE10 */
  /*background: -o-linear-gradient(90deg, #1F1C2C 10%, #928DAB 90%); /* Opera 11.10+ */
  /*background: linear-gradient(90deg, #1F1C2C 10%, #928DAB 90%); /* W3C */
  overflow: auto;
  margin: 50px auto;
  border-radius: 13px;
  outline-color: black;
  outline-style: solid;
  /*outline-radius: 13px;*/
  box-shadow: 0 10px 8px -8px #333;
}

#audio-image {
  position: relative;
  overflow: hidden;
  height: 320px;
  margin-bottom: 15px;
}

#audio-image .cover { width: 100%; }

#audio-info { 
	text-align: center; 
	font-size: 1.12em; 
	font-family: monospace; 
	font-weight: bold; 
	color: aqua; 
	text-shadow: 2px 2px 2px black; }

#audio-info .artist { 
/* 	font-size: 1.33em; */
	font-family: monospace; 
	font-weight: bold; 
/* 	color: red; */
	}

input#volume {
  width: 95%;
  margin-left: 2%;
  -webkit-appearance: none !important;
/*   background: #ccc; */
  background: turquoise;
  height: 10px;
  margin-bottom: 20px;
  border-radius: 5px;
}
input#volume::-webkit-slider-thumb {
 -webkit-appearance:none !important;
 background:url(../images/knob2.png) cover;
 height:12px;
 width:12px;
 border-radius: 3px;
}

#buttons {
  width: 80%;
  display: block;
  margin: 15px auto;
  margin-left: 35px;
  overflow: auto;
  zoom: 80%;
  
}

button#play {
  width: 70px;
  height: 70px;
  background: url(../images/play.png) no-repeat;
  float: center;
/*   margin-left: -2px; */
}

button#pause {
  width: 70px;
  height: 70px;
  background: url(../images/pause.png) no-repeat;
  float: center;
/*   margin-left: -2px; */
}

button#stop {
  width: 70px;
  height: 70px;
  background: url(../images/stop.png) no-repeat;
  float: center;
  margin-left: 12px;
}

button#prev {
  width: 70px;
  height: 70px;
  background: url(../images/prev.png) no-repeat;
  float: left;
  margin-top: 15px;
  margin-left: 10px;
}

button#next {
  width: 70px;
  height: 70px;
  background: url(../images/next.png) no-repeat;
  float: right;
  margin-top: 15px;
  margin-left: 5px;
}

#tracker {
  position: relative;
  width: 100%;
  color: red;
}

#progress-bar {
  width: 80%;
  margin-left: 2%;
  margin-bottom: 20px;
  margin-top: 9px;
  height: 10px;
  background: url(../images/progress_bg.png) no-repeat;
  float: left;
}

#progress {
  background: url(../images/progress-other.png) no-repeat;
  height: 13px;
  display: inline-block;
}

#duration {
  position: absolute;
  top: 0;
  right: 10px;
  padding: 4px 8px;
  background: #000;
  border-radius: 5px;
}

#showButton { 
  background-color: black;
  color: orange;
  height: 30px;
  width: auto;
  border-radius: 5px;
  margin: 10px;
  opacity: 95%;
  font-family: monospace;
  padding: 5px;
  float: right;
}

#playlist { list-style: none; overflow: auto; max-height: 400px; }

#playlist li {
  cursor: pointer;
  margin: 25px;
  align: center;
  text-shadow: black 3px 2px;
  overflow: auto;
  font-weight: bold; 
  /*color: aqua;*/
}

#playlist li:hover {
  color: gold;
}

#playlist li.active {
  font-weight: bold;
  padding: 3px;
  color: red;
/*   background: #666; */
  background: black;
}
