/*-------------- AUDIO PLAYER --------------*/



.jp-loader{

    width: 52px;

    height: 52px;

    margin: 0 10px;

    text-align: center;

    line-height: 52px;

    margin: 0 10px;

    display: none;

}

.fa-spinner{

    color: white;

    font-size: 30px;

}



.audio-player {

    position: fixed;

    bottom: 0;

    left: 0;

    right: 0;

}



.no-flexbox .audio-player {

    display: none;

}



.flex-wrap {

    display: flex;

    flex-wrap: nowrap;

    align-items: center;

}





.flex-item {}



.jp-controls.flex-item {

}



.jp-cover{

    margin: 0 15px;

}



.jp-progress-container.flex-item {

    flex-basis: 350px;

    flex-grow: 2;

    flex-shrink: 2;

}



.jp-now-playing.flex-item {

    flex-basis: 145px;

}



.jp-toggles.flex-item {

    flex-basis: 130px;

}



.jp-volume-controls.flex-item {

    flex-basis: 155px;

    order: 2;

    margin-left: auto;

}



.jp-audio,

.jp-audio-stream,

.jp-video {

    background: rgb(51, 51, 51);

    padding: 0 15px;

    position: relative;

}



/*Controls*/



.jp-playlist {

    display: none;

}



.jp-interface .jp-controls button,

.jp-interface .jp-toggles button,

.jp-interface .jp-volume-controls button {

    background: none;

    border: none;

    outline: none;

    color: #ffffff;

    line-height: 24px;

    font-weight: 600;

    -webkit-transition-delay: 0;

    transition-delay: 0;

    -webkit-transition-property: all;

    -webkit-transition-duration: 0.2s;

    -webkit-transition-timing-function: ease-in-out;

    transition-property: all;

    transition-duration: 0.2s;

    transition-timing-function: ease-in-out;

    -webkit-transition: all 0.2s linear;

    -moz-transition: all 0.2s linear;

    -ms-transition: all 0.2s linear;

    -o-transition: all 0.2s linear;

    transition: all 0.2s linear;

    font-size: 20px;

    padding: 0 5px;

}



.jp-interface .jp-controls .jp-play i,

.jp-interface .jp-controls .jp-previous i,

.jp-interface .jp-controls .jp-next i {

    font-size: 23px;

    color: #FFF;

}



.jp-interface .jp-controls .jp-play,

.jp-interface .jp-controls .jp-pause {

    border: solid 3px #FFF;

    border-radius: 50%;

    width: 52px;

    height: 52px;

    margin: 0 10px;

}



.jp-interface .jp-controls .jp-play i{

    padding-left: 5px;

    padding-top: 5px;

}



.jp-audio.jp-state-playing .jp-play i {

    padding-left: 0px;

}



.jp-audio.jp-state-playing .jp-play i:before {

    content: "\f04c" !important;

}





/*Progress bars*/



.jp-progress-container,

.jp-volume-bar-container {

    height: 30px;

    padding: 10px;

}



.jp-progress,

.jp-seek-bar,

.jp-play-bar,

.jp-volume-bar,

.jp-volume-bar-value {

    height: 4px;

    -webkit-border-radius: 1px;

    -moz-border-radius: 1px;

    border-radius: 1px;

}



.jp-progress {

    margin: 0 50px;

    background-color: #2b2b2b;

    border-radius: 5px;

}



.jp-seek-bar,

.jp-volume-bar {

    cursor: pointer;

    background-color: #2b2b2b;

    border-radius: 5px;

}



.jp-play-bar {

    float: left;

    position: relative;

    background-color: #00c85f;

    border-radius: 5px;

    overflow: visible!important;

}



.jp-volume-bar-value {

    float: left;

    position: relative;

    background-color: #ffffff;

}



.jp-progress .bullet,

.jp-volume-bar .bullet {

    position: absolute;

    content: "";

    top: -4px;

    right: -7px;

    height: 13px;

    width: 13px;

    background: #ffffff;

    border-radius: 50%;

}



.jp-time-holder {

    position: relative;

    top: 0;

    color: #ffffff;

    font-size: 12px;

}



.jp-time-holder .jp-current-time {

    position: absolute;

    left: 0;

    top: -3px;

}



.jp-time-holder .jp-duration {

    position: absolute;

    right: 0;

    top: -3px;

}





/* Track & Artist */



.jp-now-playing {

    padding: 0 10px;

}



.jp-track-name {

    color: #ffffff;

    font-size: 16px;

    overflow: hidden;

    white-space: nowrap;

    text-overflow: ellipsis;

}



.jp-artist-name {

    color: #ffffff;

    font-size: 14px;

    overflow: hidden;

    white-space: nowrap;

    text-overflow: ellipsis;

}





/* Toggles */



.jp-toggles button {

    margin: 0 3px;

}



.jp-toggles button:hover {

    color: #FFF;

}



.jp-state-looped .jp-toggles .jp-repeat,

.jp-state-shuffled .jp-toggles .jp-shuffle,

.jp-interface .jp-toggles .playlist-is-visible.jp-show-playlist {

    color: #00c85f;

}





/* Volume Controls */



.jp-volume-controls button {

    float: left;

}



.jp-volume-controls .jp-volume-bar {

    margin-left: 40px;

    margin-top: 10px;

}



.jp-state-muted .jp-mute i:before {

    content: "\f026" !important;

}



.jp-volume-bar,

.jp-volume-bar-value {

    border-radius: 5px;

}



.jp-state-no-volume .jp-volume-controls {

    display: none;

}





/* Playlist  */



.jp-playlist {

    position: absolute;

    right: 65px;

    bottom: 100%;

    background: rgba(0, 0, 0, 0.8);

    padding: 20px 25px;

    width: 400px;

}



.jp-playlist ul {

    padding: 0;

    margin: 0;

    max-height: 200px;

    overflow: auto;

}



.jp-playlist li {

    list-style: none;

}



.jp-playlist li a {

    color: #c9c9c9;

    display: block;

    padding: 10px 0;

    outline: none;

    border-bottom: 1px solid #1F1F1F;

}



.jp-playlist li:last-child a {

    border-bottom: 0;

}



.jp-playlist li a:hover,

.jp-playlist li a:focus,

.jp-playlist li a:active {

    color: #00c85f;

    text-decoration: none;

}



.jp-playlist li a span {

    color: #6d6d6d;

}





/* ==================== Media Query ==================== */



@media (max-width:992px) {

    .jp-now-playing {

        display: none;

    }

}



@media (max-width:767px) {

    .jp-volume-bar,

    .jp-volume-bar .bullet,

    .jp-time-holder {

        display: none!important;

    }

    .jp-volume-controls:hover .jp-volume-bar{

        display: block !important;

    }

    .jp-progress-container.flex-item {

        flex-basis: 140px;

        padding: 12px 15px;

    }

    .jp-progress .bullet {

        right: -10px;

    }

    .jp-volume-controls.flex-item {

        flex-basis: 33px;

    }

    .jp-progress {

        margin: 0;

    }

    .jp-interface .jp-controls .jp-play {

        margin: 0 3px;

    }

    .jp-interface .jp-controls .jp-play i,

    .jp-interface .jp-controls .jp-previous i,

    .jp-interface .jp-controls .jp-next i {

        font-size: 16px;

    }

    .jp-interface .jp-controls .jp-play i {

        padding-left: 3px;

        padding-top: 0;

    }

    .jp-state-playing .jp-interface .jp-controls .jp-play i {

        padding-left: 0;

    }

    .jp-controls.flex-item {

    }

}



@media (max-width:480px) {

    .jp-toggles,

    .jp-playlist {

        display: none!important;

    }

}