/*******************************************************************
 * Hebu Music - Player                                             *
 *-----------------------------------------------------------------*
 * 02.03.2016 | Michael Hack Software | www.michaelhacksoftware.de *
 *******************************************************************/

/* === Container === */
#jp-player {
    display: none;
    position: fixed;
    top: 50px;
    background-color: #808080;
    padding: 20px;
    z-index: 9999;
}

@media (max-width:  768px)                         { #jp-player { width: 100%; } }
@media (min-width:  768px) and (max-width:  991px) { #jp-player { left: 50%; margin-left: -375px; } }
@media (min-width:  992px) and (max-width: 1199px) { #jp-player { left: 50%; margin-left: -485px; } }
@media (min-width: 1200px)                         { #jp-player { left: 50%; margin-left: -585px; } }

/* === Elemente === */
#jp-player .title {
    background-color: #FFFFFF;
    width: 100%;
    height: 30px;
    line-height: 30px;
    overflow: hidden;
}

#jp-player .clef {
    float: left;
    background-image: url("../img/player/clef.png");
    background-size: 100%;
    width: 30px;
    height: 30px;
}

#jp-player .jp-progress {
    height: 5px;
    background-color: #ABABAB;
    margin: 25px 0 10px 0;
    overflow: visible;
    width: 100%;
}

#jp-player .jp-seek-bar {
    height: 100%;
    cursor: pointer;
    overflow: visible;
}

#jp-player .jp-play-bar {
    height: 100%;
    position: relative;
    overflow: visible;
}

#jp-player .jp-play-knob {
    position: absolute;
    top: -8px;
    right: -10px;
    margin-left: -10px;
    height: 20px;
    width: 20px;
    border-radius: 40px 40px 40px 40px;
}

#jp-player .time {
    color: #DDDDDD;
    font-size: 12px;
    font-weight: lighter;
    margin-bottom: 10px;
}

#jp-player .buttons div {
    padding: 0;
}

#jp-player .jp-volume-bar {
    background-color: #ABABAB;
    margin-top: 12px;
    border-top: 10px solid #808080;
    border-bottom: 10px solid #808080;
    cursor: pointer;
}

#jp-player .jp-volume-bar-value {
    height: 3px;
    width: 80%;
}

/* === Buttons === */
.player-btn {
    background-color: #ABABAB;
    max-width: 100%;
    max-height: 50px;
}

/* === Playlist === */
#jp-player .background {
    background-color: #404040;
    padding: 5px 10px 5px 0;
}

#playlist {
    position: relative;
    height: 130px;
    color: #FFFFFF;
}

#playlist ul {
    list-style: none;
    padding: 0 0 0 15px;
}

#playlist li {
    margin-right: 20px;
}

#playlist a {
    color: #FFFFFF;
}

.jp-playlist-item-remove {
    float: right;
}

.ps-theme-playlist.ps-active-y > .ps-scrollbar-y-rail {
    opacity: 0.85;
    background-color: #ABABAB !important;
    width: 3px;
}

.ps-theme-playlist > .ps-scrollbar-y-rail > .ps-scrollbar-y {
    left: -3px;
}