#audioPlayer, #audioPlayer *{
    box-sizing: border-box;
}
#audioPlayer {
    font-size: 15px;
    line-height: 1;
    width: 100%;
    font-family: 'Arial Black', Arial, Helvetica, sans-serif;
    color: #fff;
    padding: 2%;
    text-align: center;
    background: #1f1e1e;
    background: linear-gradient(135deg,  #1f1e1e 10%, #1f1e1e 30%, #1f1e1e 50%, #1f1e1e 70%, #1f1e1e 90%);
    border: none;
    border-radius: 6px;
    box-shadow: -2px -2px 5px 3px rgba(0,0,0,0.5) inset, 0px 0px 14px 8px rgba(255,255,255,0.3) inset, 7px 7px 10px rgba(0,0,0,0.1);
}

#audioPlayer #trackList {
    font-size:16px;
    line-height: 30px;
    text-align:left;
    border:1px solid #aaa;
    border-top-color: #363434;
    border-left-color: #363434;
    width:95%;
    max-height:300px;
    overflow-y:auto;
    margin:10px auto;
    padding:2%;
    background: #363434;
    background: linear-gradient(135deg,  #363434 29%, #1f1e1e 50%, #1f1e1e 69%, #222 90%);
    box-shadow: inset 0px 0px 9px 2px rgba(0,0,0,0.7);
    border-radius:4px;
}
#audioPlayer #trackList a {
    color: #fff;
    text-decoration:none;
    display:list-item;
    list-style:none;
    list-style-position: inside;
}
#audioPlayer #trackList a:hover{
    color: #ffa;
}
#audioPlayer #messages {
    width:90%;
    margin:0 auto;
    padding:10px 5%;
}

#audioPlayer button {
    display:block;
    font-weight:bold;
    width:44%;
    max-width:80px;
    line-height: 26px;
    margin:10px auto;
    border:1px solid #999;
    border-bottom-color:#363434;
    border-right-color:#363434;
    background:#777;
    color:#fff;

cursor:pointer;
}
#audioPlayer button:hover{
    background:#363434;
    border:1px solid #363434;
    border-bottom-color:#666;
    border-right-color:#666;
}
#audioPlayer audio {
    display: none;
}
#audioPlayer #controls{
    line-height:35px;
}
#audioPlayer label{

}
#audioPlayer input[type='range'] {

    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background: #111;
    height: 10px;
    width: 60%;
    padding:0;
    cursor:pointer;

}
#audioPlayer input[type='range']::-moz-range-track {
    -moz-appearance: none;
    background: #000;
    height:100%;
    border:none;
}
#audioPlayer input[type='range']::-webkit-slider{
    -webkit-appearance: none !important;
    background: #000;
    height:100%;
    border:none;
}

#audioPlayer input[type='range']::-webkit-slider-thumb {
    -webkit-appearance: none !important;	 
    height:10px;
    background: #777;
    border: none;
    border-radius:0;

    width: 20px;
}
#audioPlayer input[type='range']::-moz-range-thumb {
    -moz-appearance: none !important;	
    background: #777;
    border: none;
    border-radius:0;
    width: 20px;
}
#audioPlayer input[type='range']::-ms-fill-lower{
    -ms-appearance: none !important;
    background: #000;
}
#audioPlayer input[type='range']::-ms-fill-upper{
    -ms-appearance: none !important;
    background: #000;
}
#audioPlayer input[type='range']::-ms-thumb{
    -ms-appearance: none !important;
    background: #777;
    border: none;
    height: 10px;
    width: 20px;
}
#audioPlayer input[type='range']::-ms-ticks-before{
    -ms-appearance: none !important;
    display: none;
}
#audioPlayer input[type='range']::-ms-ticks-after{
    -ms-appearance: none !important;
    display: none;
}