
.jp-jplayer, .jp-audio {
    width: 100%;
}

.jp-gui {
    position: relative;
    overflow: hidden;
    padding: 25px;
}

.jp-player {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.jp-controls {
    padding: 0;
    margin: 0;
    list-style: none;
}

.jp-controls li {
    display: inline;
}

.jp-controls a {
    color: #fff;
}

.jp-play, .jp-pause {
    width: 60px;
    height: 60px;
    display: flex;
    text-align: center;
    line-height: 43px;
}

.jp-play {
    background-image: url("../img/play-circle.svg");
}

.jp-pause {
    background-image: url("../img/Icon_Pause.svg");
}

.jp-controls .jp-play:hover, .jp-controls .jp-pause:hover {
    background-color: var(--color-grey);
}

.jp-mute, .jp-unmute {
    display: flex;
    cursor: pointer;
    background-image: url("../img/Icon_lautstaerke.svg");
    background-repeat: no-repeat;
    background-position: center left;
    padding-left: 40px;
}

.jp-mute {
    text-align: left;
}

.jp-time-holder {
    display: flex;
    flex-direction: row;
    color: var(--color-black);
    margin-top: 30px;
}

.jp-progress {
    background-color: var(--color-white);
    overflow: hidden;
    width: 210px;
    margin-left: auto;
    -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2) inset;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2) inset;
}

.jp-play-bar {
    height: 8px;
    background-color: var(--color-dark-grey);
}

.jp-volume-control {
    display: flex;
    flex-direction: row;
    align-items: center;
    color: var(--color-dark-grey);
}

.jp-volume-bar {
    width: 50px;
    margin-left: 20px;
    background-color: var(--color-white);
}

.jp-volume-bar-value {
    background-color: var(--color-dark-grey);
    height: 8px;
}

.jp-caption {
    margin-top: 20px;
}

@media all and (max-width: 1199px) {
    .jp-progress {
        width: 160px;
    }
}

@media all and (max-width: 1100px) {
    .jp-progress {
        width: 90px;
    }
}

@media all and (max-width: 767px) {
    .jp-progress {
        width: 80%;
    }
}

@media all and (max-width: 470px) {
    .jp-progress {
        width: 70%;
    }
}

@media all and (max-width: 400px) {
    .jp-progress {
        width: 70%;
    }
}
