/* @group General */

[id^="jquery_jplayer"], .jp-audio, .jp-video video, .jp-video {
    width: 100% !important;
    height: auto !important;
    overflow: hidden;
}

.jp-jplayer video {
    width: 100% !important;
    height: auto !important;
    display: none;
}

.jp-jplayer video.show-video {
    display: block;
}

.jp-jplayer img {
    width: 100% !important;
    height: auto !important;
}

.jp-audio {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    border: 1px solid #CCCCCC;
    background-color: #FFFFFF;
}

.jp-interface {
    position: relative;
    width: 100%;
    z-index: 999;
}

.jp-audio .jp-interface {
    height: 32px;
}

.jp-video-full .jp-interface {
    position: absolute !important;
    bottom: 0;
    left: 0;
}

.jp-video-full .jp-video-play {
    height: 100%;
}

.jp-video-full div div {
    z-index: 1000;
}

.jp-video-full .jp-gui {
    position: fixed !important;
    position: static;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1001;
}

.jp-video-full .jp-playlist {
    display: none;
}

/* @end */

/* @group Controls */

.jp-controls-holder {
    clear: both;
    width: 100%;
    position: absolute;
    overflow: hidden;
    top: 0;
    margin: 0;
    height: 32px;
}

.jp-interface .jp-controls {
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.jp-audio .jp-controls {
    width: 100%;
    padding: 0 0 0 0;
    margin: 0 auto;
}

.jp-controls > div {
    display: inline-block;
    overflow: hidden;
    cursor: pointer;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    transition: opacity .6s ease-in-out 0s;
}

.jp-controls > div:focus {
    outline: none;
}

.jp-play {
    margin-left: 12px;
    margin-top: 4px;
    top: 0;
    width: 28px;
    height: 24px;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

.jp-play:after {
    content: "\f04b";
    font-size: 16px;
}

.jp-play:hover:after {}

.jp-state-playing .jp-play:after {
    margin-left: 0px;
    content: "\f04c";
}

.jp-play:hover:after, .jp-state-playing:hover .jp-play, .jp-stop:hover:after {}

/* @end */

/* @group Progress Bar */

.jp-progress {
    z-index: 999;
    overflow: hidden;
    background: #444;
    border-radius: 4px;
}

.jp-audio .jp-progress {
    position: absolute;
    margin-top: 13px;
    height: 6px;
}

.jp-audio .jp-type-playlist .jp-progress {
    left: 78px;
    width: calc(100% - 300px);
}

.jp-progress.full-width {
    width: calc(100% - 160px)!important;
}

@media (max-width: 1024px) {
    .jp-progress {
        width: calc(100% - 160px)!important;
    }
}

/*seek bar*/

.jp-seek-bar {
    width: 200px;
    height: 100%;
    cursor: pointer;
}

.jp-play-bar {
    background: #EEE;
    left: -200px;
    width: 0px;
    height: 100%;
    z-index: 999;
}

/* @end */

/* @group Volume controls */

.jp-state-no-volume .jp-volume-controls {
    display: none;
}

.jp-volume-controls {
    position: absolute;
    margin-top: 3px;
    right: 82px;
    width: 75px;
}

.jp-volume-controls .hidden {
    visibility: hidden!important;
}

@media (max-width: 1024px) {
    .jp-volume-controls {
        visibility: hidden!important;
    }
}

.jp-volume-controls > div {
    display: inline-block;
    overflow: hidden;
    cursor: pointer;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    transition: opacity .6s ease-in-out 0s;
}

.jp-mute, .jp-volume-max {
    width: 18px;
    height: 50px;
}

.jp-volume-max {
    display: inline-block;
    overflow: hidden;
    cursor: pointer;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

.jp-volume-max:after {
    content: "\f028";
    font-size: 16px;
}

.jp-volume-max:focus {
    outline: none;
}

.jp-volume-bar {
    position: absolute;
    overflow: hidden;
    background: #444;
    top: 10px;
    margin-left: 8px;
    width: 118px;
    height: 6px;
    cursor: pointer;
    z-index: 200;
    border-radius: 4px;
    transition: all .2s ease-in-out 0s;
}

.jp-volume-bar.player-video {
    width: 80px!important;
}

.jp-volume-bar-value {
    background: #EEE;
    width: 0px;
    height: 6px;
    transition: all .2s ease-in-out 0s;
}

/* @end */

/* @group Current time and duration */

.jp-audio .jp-time-holder {
    position: absolute;
    top: 50px;
}

.jp-audio .jp-type-single .jp-time-holder {
    left: 110px;
    width: 186px;
}

.jp-audio .jp-type-playlist .jp-time-holder {
    left: 0px;
    width: 130px;
}

.jp-current-time, .jp-duration {
    width: 60px;
    font-size: .64em;
}

.jp-current-time {
    position: absolute;
    margin-left: 36px;
    margin-top: 8px;
    display: inline;
    cursor: default;
}

.jp-duration {
    float: right;
    margin-right: 180px;
    margin-top: 8px;
    display: inline;
    text-align: right;
    cursor: pointer;
}

.jp-duration.player-video {
    margin-right: 120px;
}

.jp-duration.full-width {
    margin-right: 40px !important;
}

@media (max-width: 1024px) {
    .jp-duration {
        margin-right: 40px;
    }
}

/* @end */

/* @group Playlist */

.jp-title {
    visibility: hidden;
}

.jp-details {
    font-weight: bold;
    text-align: center;
    cursor: default;
}

.jp-details, .jp-playlist {
    width: 100%;
    border-top: 1px solid #ccc;
}

.jp-type-single .jp-details, .jp-type-playlist .jp-details {
    border-top: none;
}

.jp-details .jp-title {
    margin: 0;
    padding: 5px 20px;
    font-size: .72em;
    font-weight: bold;
}

.jp-playlist ul {
    list-style-type: none!important;
    margin: 0;
    padding: 0 5px;
    font-size: .72em;
}

.jp-playlist li {
    padding: 5px 0 4px 20px;
    border-bottom: 1px solid;
    border-bottom-color: #ccc;
}

.jp-playlist li div {
    display: inline;
}

div.jp-type-playlist div.jp-playlist li:last-child {
    padding: 5px 0 5px 20px;
    border-bottom: none;
}

div.jp-type-playlist div.jp-playlist li.jp-playlist-current {
    list-style-type: square;
    list-style-position: inside;
    padding-left: 8px;
}

div.jp-type-playlist div.jp-playlist a {
    text-decoration: none;
}

div.jp-type-playlist div.jp-playlist a:hover {
    
}

div.jp-type-playlist div.jp-playlist a.jp-playlist-current {
    
}

div.jp-type-playlist div.jp-playlist a.jp-playlist-item-remove {
    float: right;
    display: inline;
    text-align: right;
    margin-right: 10px;
    font-weight: bold;
}

.jp-playlist-item {
    color: #666
}

div.jp-type-playlist div.jp-playlist span.jp-free-media {
    float: right;
    display: inline;
    text-align: right;
    margin-right: 10px;
}

span.jp-artist {
    font-size: .8em;
    opacity: .9;
}

/* @group TOGGLES */

/* The audio toggles are nested inside jp-time-holder */

.jp-toggles {
    position: absolute;
    margin-top: 0px;
    right: 10px;
    width: 10px;
}

.jp-audio .jp-type-single .jp-toggles {
    width: 10px;
}

.jp-audio .jp-type-playlist .jp-toggles {
    width: 20px;
    margin: 0;
    position: absolute;
    right: 10px;
    top: 4px;
}

.jp-video .jp-toggles {
    position: absolute;
    right: 0px;
    margin: 0;
    margin-top: 10px;
    width: 20px;
}

.jp-toggles > div {
    display: block;
    border: none;
    cursor: pointer;
}

.jp-toggles > div:focus {
    outline: none;
}

.jp-full-screen {
    display: inline-block;
    overflow: hidden;
    cursor: pointer;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    visibility: hidden;
}

.jp-full-screen.player-video {
    visibility: visible!important;
}

.jp-full-screen:after {
    content: "\f0b2";
    font-size: 16px;
}

/* @end */

/* @group No solution error feedback */

.jp-no-solution {
    padding: 5px;
    font-size: .8em;
    background-color: #eee;
    border: 2px solid #009be3;
    color: #000;
    display: none;
}

.jp-no-solution a {
    color: #000;
}

.jp-no-solution span {
    font-size: 1em;
    display: block;
    text-align: center;
    font-weight: bold;
}

.jplayer-error-message {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    right: 0;
    margin: -20px auto;
    /*margin-left: -60px;*/
    font-size: .75em;
    color: #fff;
    font-weight: bold;
    text-align: center;
    text-shadow: 2px 10px #000;
}

/* @end */