/* Absolute Center */
.abs-center{
    margin: auto;
    position: fixed;
    top:0; right:0; bottom:0; left:0;
}
/*Container for audio player*/
#audioplayer{
    padding: 10px 0;
    background: rgba(0,0,0,0.8);
    position: fixed;
    z-index: 999;
    bottom: 10px;
    left: 0;
    width: 98%;
    margin-left: 1%;
    border-radius: 100px;
}
#audioplayer:before{
    content: url('../images/logo-radio-espaco-gospel.png?v=2');
    width: 250px;
    height: 47px;
    position: absolute;
    left: 50px;
    top: 15px;
}
#audioplayer h3{color: #fff;font-size: 14px;position: relative;margin-top: 23px;}
/* Play/Pause Button */
#pButton{
    height:53px;
    width: 53px;
    border: none;
    outline:none;
    display: inline-block;

}
/*Classes for play/pause button background*/
.play{background: url('../images/icon-player.png?v=2') ;}
.pause{background: url('../images/icon-pause.png?v=2') ;}

#prev{
    height:14px;
    width:16px;
    border: none;
    float:left;
    outline:none;
    background: url('../images/icon-voltar.png?v=2') no-repeat center;
    padding: 26px 25px;
}

#next{
    height:14px;
    width:16px;
    border: none;
    float:left;
    outline:none;
    background: url('../images/icon-avancar.png?v=2') no-repeat center;
    padding: 26px 25px;
}
#prev[rel=""],#next[rel=""]  {
    display: none;
}

#timeline{
    width: 100%;
    height: 5px;
    background: #666;
    margin-top: 26px;
    float: left;
    border-radius: 15px;
}
/*Grabable Playhead*/
#playhead{
    cursor: pointer;
    width: 30px;
    height: 14px;
    border-radius: 20px;
    margin-top: -5px;
    background: #fff;
}
.close-player{
    position: absolute;right: 0;top:0;height: 100%;background-color: #000;
    background-image: url('../images/fechar-player.png');
    background-repeat:no-repeat;
    background-position: center center;
    width: 80px;
    border-radius: 0 50px 50px 0;
}
input[type=range]:before{
    content: url('../images/icon-volume.png');
    width: 34px;
    height: 24px;
    position: absolute;
    left: -33px;
    top: 16px;
}
input[type=range] {
    -webkit-appearance: none;
    margin-top: 26px;
    width: 100%;
    background: transparent!important;
}
input[type=range]:focus {
    outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 5px;
    cursor: pointer;
    animate: 0.2s;
    background: #666666;
    border-radius: 20px;
}
input[type=range]::-webkit-slider-thumb {
    height: 14px;
    border-radius: 20px;
    margin-top: -5px;
    background: #fff;
    width: 16px;
    cursor: pointer;
    -webkit-appearance: none;
}
