

#audio-info .artist{
	font-weight:bold;
}
#audio-player {
	position: fixed;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	/* width: 100%; */
	text-align: center;
	background: #011137;
	border: 3px spo;
	border: 3px solid white;
	padding: 0px;
}
#buttons {/* margin: auto; */}
.cover{
	width:100%;
	z-index:1;
}

input#volume {
	width:95%;
	margin-left:2%;
	-webkit-appearance: none !important;
	background: #fff;
	height:1px;
	margin-bottom:20px;
	border-radius: 5px;
}
input#volume::-webkit-slider-thumb {
    -webkit-appearance: none !important;
    background:url(../images/knob.png) no-repeat;
    height:12px;
    width:12px;
}

#buttons{
	width: 100%;
	display: inline-flex;
	/* margin-left:23px; */
	overflow:auto;
	line-height: 30px;
	flex-direction: column;
	/* flex-wrap: nowrap; */
	align-content: space-around;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
}


button#play{
	width: 30px;
	height: 30px;
	background: url(../images/play1.png) no-repeat;
	float:left;
	background-size: contain;
	border: none;
	margin-left: 3px;
}

button#pause{
	width: 30px;
	height: 30px;
	background: url(../images/pause1.png) no-repeat;
	float:left;
	background-size: contain;
	border: none;
}

button#stop{
	width: 30px;
	height: 30px;
	background: url(../images/stop-button.png) no-repeat;
	float:left;
	background-size: contain;
	border: none;
}

button#prev{
	width: 20px;
	height: 20px;
	background: url(../images/previous1.png) no-repeat;
	float:left;
	/* position: absolute; */
	margin-top: 5px;
	/* bottom:  0; */
	background-size: contain;
	border: none;
	/* padding: 30px; */
}

button#next{
	width: 20px;
	height: 20px;
	background: url(../images/forward-button.png) no-repeat;
	float: left;
	margin-top: 3px;
	border: none;
	background-size: contain;
}

#playlist {
    list-style-type: none;
    padding: 0px;
    text-align: center;
    color: white;
    font-family: roboto;
    margin-top: 20px;
}

#playlist li {
    cursor: pointer;
    /* margin: auto; */
    color: white;
    font-size: 14px;
}

#tracker{
	position:relative;
	width:100%;
}

#playlist li.active {
    font-weight: bold;
    /* padding:3px; */
    background: #074bcc;
    /* text-align: center; */
    /* width: 100%; */
    text-align: center;
    color: white;
}
#playlist li:hover{
    color: white;
    /* width: 100px; */
    margin: auto;
}
#playlist img:hover{
    color: white;
    width: 100px;
    height: 100px;
    /* margin: auto; */
    text-align: center;
}
#progressBar {
   width:80%;
   margin-left:2%;
   margin-bottom:20px;
   margin-top:9px;
   height:10px;
   background:url(../images/progress_bg.png) no-repeat;
   /* float:left; */
   display: none;
}

#progress {
   background:url(../images/progress.png) no-repeat;
   height:10px;
   display:inline-block;
}

#duration{
	/* top:0; */
	/* right:10px; */
	padding:4px 8px;
	background:#000;
	border-radius:5px;
	color: white;
}