.jp-player {
    background: #03111d;
    color: #444;
    width: 100%;
    height: auto;
    border-radius: 10px;
    border: 1px solid #fff;
    padding: 10px 10px 14px 10px;
    position: relative;
    margin: 1em 0;
}

.jp-player ul {margin: 0; padding: 0;}
.jp-player li {list-style: none; list-style-type: none; margin: 0; padding: 0;}

.jp-player a {
    color: #fff;
    text-decoration: none;
}
.jp-player a.jp-button {
    color: #fff;
    font-size: 16px;
    line-height: 1.1;
    display: block;
    height: 24px;
    width: 24px;
    padding: 5px;
    overflow: hidden;
    text-decoration: none;
    z-index: 99;
    transition: color 0.25s linear;
}
.jp-player a.jp-button:hover {
    color: #ddd;
}
.jp-play {
    position: absolute;
    left: 10px;
    top: 10px;
}

.jp-previous {
    position: absolute;
    right: 40px;
    top: 10px;
}
.jp-next {
    position: absolute;
    right: 10px;
    top: 10px;
}


.jp-progress {
    position: absolute;
    width: 100%;
    top: 50px;
    left: 0;
    height: 16px;
    display: block;
    overflow: hidden;
    border-top:1px solid #777;
    border-bottom:1px solid #777;
}
.jp-seek-bar {
    /* background: #dcfa68; */
    height: 16px;
}
.jp-play-bar {
    background: #bbb;
    height: 16px;
}

.jp-current-time, .jp-duration {
    font-size: 9px;
    font-weight: bold;
    line-height: 1;
    color: #777;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 53px;
}
.jp-current-time {
    left: 3px;
}
.jp-duration {
    right: 3px;
}

/* the playlist */

.jp-interface, .jp-controls {font-size: 1px; line-height: 0; height: 0;}
.jp-playlist a {
  display: block;
  line-height: 1.3;
  padding: 3px 3px 3px 29px;
  text-indent: -29px;
}


/* homepage mini player */
.front .jp-playlist {margin: 7px 80px 8px 45px;}
.front .jp-playlist li {display: none; line-height: 1;}
.front .jp-playlist li a {cursor: default;}
.front .jp-playlist li.jp-playlist-current {display: block;}
.front .jp-current-time, .front .jp-duration {display: none;}
.front .jp-progress, .front .jp-seek-bar, .front .jp-play-bar {height: 5px; border: none;}
.front .jp-player {padding-bottom: 10px;}

.front .jp-progress {
    top: auto;
    bottom: 0;
    border-radius: 0 0 5px 5px;
    overflow: hidden;
}

/* inner page full playlist */
.not-front .jp-playlist {margin-top: 70px;}
.not-front .jp-playlist li {
    padding: 1px 6px;
    display: block;
    margin-bottom: 2px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.25s linear;
}
.not-front .jp-playlist li:hover,
.not-front .jp-playlist li.jp-playlist-current {
    background: #5795c3;
}
