/**
 * The jplayer.css with style sheets all jPlayers
 * 
 * @author Cesar Augustus Silva <cesar@infoartweb.com>
 * @copyright Copyright (c) 2015, InfoArt
 * @license http://www.gnu.org/licenses/gpl.html GNU GPL v3.0
 * 
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 * 
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <-http://www.gnu.org/licenses/>.
 */

.jp-jplayer, .jp-jplayer audio {height: 0;width: 0;}
.jp-audio, .jp-audio-stream {overflow: hidden;}
.jp-interface {position: relative;width: 100%;}
.jp-controls-holder {margin: 3px 0 0 3px;}
.jp-controls-holder.radio {margin: 0;}
.jp-audio-stream .jp-controls-holder .jp-volume-controls {position: relative;}
.jp-audio-stream .jp-controls-holder .jp-volume-controls button {
    border: 0;
    cursor: pointer;
    height: 10px;
    outline-color: #FFC000;
    position: absolute;
}
.jp-audio-stream .jp-controls-holder .jp-volume-controls .jp-mute {
    background: url('../img/jplayer/icon-volume_min.png') no-repeat;
    left: 0;
}
.jp-state-muted .jp-controls-holder .jp-volume-controls .jp-mute {
    background-image: url('../img/jplayer/icon-volume_min.png');
}
.jp-audio-stream .jp-controls-holder .jp-volume-controls .jp-volume-max {
    background: url('../img/jplayer/icon-volume_max.png') no-repeat;
    right: 0;
}
.jp-audio-stream .jp-controls-holder .jp-volume-controls .jp-volume-bar {
    background-color: #ffffff;
    border: 1px solid #ffffff;
    cursor: pointer;
    display: block;
    height: 6px;
    position: relative;
    width: 100%;
}
.jp-audio-stream .jp-controls-holder .jp-volume-controls .jp-volume-bar-value {
    background-color: #cb060f;
    height: 100%;
    position: absolute;
}
.jp-controls-holder .jp-controls {float: left;height: 26px;margin: 5px 5px 5px 0;width: 30px;}
.jp-controls-holder .jp-controls button {
    background-color: transparent;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    float: left;
    height: 25px;
    margin-right: 4px;
    position: relative;
    width: 25px;
}
.jp-controls-holder .jp-controls button:focus {
    box-shadow: 0 0 1px 2px #CB060F;
    outline: none;
}
.jp-controls-holder.radio .jp-controls button:focus {
    box-shadow: 0 0 0 0;
}
.jp-state-playing .jp-controls-holder .jp-controls .jp-play {display: none;}
.jp-controls-holder .jp-controls button[disabled] {cursor: default;}
.jp-controls-holder.radio .jp-controls button {background-color: transparent;height: 50px;width: 50px;}
.jp-controls-holder .jp-controls button:before {content: "";position: absolute;}
.jp-controls-holder .jp-controls .jp-play:before {
    background: url('../img/jplayer/icon-play2.png') 50% no-repeat;
    background-size: 100%;
    height: 25px;
    left: 0;
    top: 0;
    width: 25px;
}
.jp-controls-holder .jp-controls .jp-stop {display: none;}
.jp-state-playing .jp-controls-holder .jp-controls .jp-stop {display: inline-block;}
.jp-controls-holder .jp-controls .jp-pause:before {
    background: url('../img/jplayer/icon-stop2.png') 0 50% no-repeat;
    background-size: 100%;
    height: 25px;
    left: 0px;
    top: 0px;
    width: 25px;
}
.jp-controls-holder .jp-controls .jp-stop:before {
    background: url('../img/jplayer/icon-stop2.png') 0 50% no-repeat;
    background-size: 100%;
    height: 25px;
    left: 0px;
    top: 0px;
    width: 25px;
}
.jp-controls-holder.radio .jp-controls .jp-play:before {
    background-image: url('../img/jplayer/icon-play.png');
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
}
.jp-controls-holder.radio .jp-controls .jp-stop:before {
    background-image: url('../img/jplayer/icon-stop.png');
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
}
.seeking .jp-controls-holder .jp-controls .jp-play:before,
.seeking .jp-controls-holder .jp-controls .jp-pause:before,
.jp-audio-stream.seeking .jp-controls-holder .jp-controls .jp-stop:before {
    background: url('../img/jplayer/icon-load.gif') no-repeat;
    height: 16px;
    left: 3px;
    top: 3px;
    width: 16px;
}
.seeking .jp-controls-holder.radio .jp-controls .jp-play:before,
.seeking .jp-controls-holder.radio .jp-controls .jp-stop:before {
    height: 50px;
    left: 0px;
    top: 0px;
    width: 50px;
}
.jp-controls-holder .jp-progress {
    height: 35px;
    float: left;
    padding: 16px 0;
    margin: 0px 7px 0;
    position: relative;
}
.jp-state-playing .jp-controls-holder .jp-progress:hover {
    margin-top: -1px;
    height: 37px;
}
.jp-controls-holder .jp-progress .jp-seek-bar {
    background-color: #373435;
    cursor: default;
    height: 100%;
    position: relative;
    width: 100% !important;
}
.jp-state-playing .jp-controls-holder .jp-progress .jp-seek-bar {cursor: pointer;}
.jp-controls-holder .jp-progress .jp-play-bar {
    background-color: #ED3237;
    height: 100%;
    overflow: visible !important;
    position: relative;
    width: 0%;
}
.jp-controls-holder .jp-progress .jp-play-bar:before {
    -webkit-transition: all 0.1s linear;
    background-color: #2957A4;
    border: 1px solid #14489E;
    border-radius: 10px;
    content: "";
    height: 3px;
    margin-right: -11px;
    position: absolute;
    right: 10px;
    top: 0px;
    transition: all 0.1s linear;
    width: 3px;
}
.jp-state-playing .jp-controls-holder .jp-progress:hover .jp-play-bar:before {
    height: 13px;
    margin-right: -16px;
    top: -4px;
    width: 13px;
}
.jp-controls-holder .jp-current-time,
.jp-controls-holder .jp-duration {
    cursor: default;
    float: left;
    font-size: 12px;
    margin: 10px 10px 0 0;
    width: auto;
}
.jp-controls-holder .jp-current-time {display: none;}