.music-player {
    display: inline-block;
    width: 100%;
    max-width: 600px;
    border: 2px solid #fa0;
    border-radius: 3px;
    /* offset-x | offset-y | blur-radius | color */
    box-shadow: 1px 1px 5px #222;
    margin: 10px 0;
}
.music-player .top-section {
    background-color: #eee;
    border-bottom: 1px solid #aaa;
}
.music-player .jp-controls {
    display: inline-block;
    width: 30%;
    text-align: center;
    vertical-align: top;
    height: 40px;
    margin-top: 2px;
}
.music-player .jp-controls button {
    display: inline-block;
    width: 40px;
    height: 40px;   
    background-size: 30px 30px;
    background-position: 5px 5px;        
}
.music-player .jp-play {
    margin-right: 5px;
    background: url("../images/jplayer/play.svg") 0 0 no-repeat;
}
.music-player .jp-stop {
    background: url("../images/jplayer/stop.svg") 0 0 no-repeat;
}
.music-player .jp-play:focus {
    color: #fa0;
}
.jp-state-playing .jp-play {
    background: url("../images/jplayer/pause.svg") 0 0 no-repeat;
    background-size: 30px 30px;
    background-position: 5px 5px;
}
.music-player .jp-progress {
    display: inline-block;
    width: 37%;
    margin-top: 5px;
    line-height: 10px;
}    
.music-player .jp-seek-bar {
    width: 100%;
    background-color: #aaa;
    height: 10px;
    margin: 5px 0;
}
.music-player .jp-play-bar {
    background-color: #fa0;
    height: 10px;
}
.music-player .jp-time-holder {
}
.music-player .jp-current-time, .music-player .jp-duration {
    display: inline-block;
    width: 40%;
    margin: 0;
    color: #666;
    border: none;
    border-collapse: collapse;
    font-size: 10px;
    font-style: oblique;
    vertical-align: top;
}
.music-player .jp-current-time {
    text-align: left;
}
.music-player .jp-duration {
    text-align: right;
}
.music-player .jp-toggles {
    display: inline-block;
    width: 20%;
    text-align: center;
}
.music-player .jp-repeat {
    display: inline-block;
    text-align: center;
    width: 20%;
    height: 16px;
    margin: -3px 0 0 0;
    border: none;
    border-collapse: collapse;
    background: url(../images/jplayer/repeat.svg) 0 0 no-repeat;
    background-position: center;
    background-size: 15px 15px;
    opacity: 0.5;
    vertical-align: top;
    padding: 9px;
}
.music-player .jp-volume-controls {
    display: inline-block;
    width: 30%;
    vertical-align: top;
    margin-top: 10px;
    padding: 0 5px;
}    
.music-player .player-bottom {
    background-color: #fff;
    padding: 10px;
    text-align: center;
}
.jp-details {
    font-weight: bold;
    text-align: center;
    cursor: default;
}
.jp-details, .jp-playlist {
    width: 100%;
    background-color: #fff;
    color: #222;
}

.jp-details .jp-title {
    margin: 0;
    padding: 5px 20px;
    font-size: 12px;
    font-weight: normal;
}    
.jp-mute, .jp-volume-max {
    width: 20%;
    height: 15px;
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
}
.jp-mute {
    background-position: right;
    background-image: url("../images/jplayer/volume-mute.svg");
}
.jp-state-muted .jp-mute {
    background: url("../images/jplayer/volume-mute2.svg") 0 0  no-repeat;
    background-size: 15px 18px;
    background-position: right;
}
.jp-volume-max {
    background-position: center;        
    background-image: url("../images/jplayer/volume-high.svg");
}
.jp-volume-bar {
    width: 60%;
    padding: 0;
    background-color: #aaa;
    cursor: pointer;
    display: inline-block;
    vertical-align: top;
    margin-top: 10px;
}
.jp-volume-bar-value {
    background-color: #fa0;
    width: 0px;
    height: 5px;
}
.music-player button {
    border: none;
    background-color: unset;
}
.jp-audio *:focus, .jp-audio-stream *:focus, .jp-video *:focus {
   outline: none;
}
.jp-state-looped .jp-repeat {
    background-color: #fa0;
    border-radius: 3px;
    opacity: 1;
}