.play-pause-wrapper {
    position: relative;
    width: 100%;
    height: 100%;

}

play-pause {
    padding: 7px;
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    box-sizing: initial;
    margin: 0;
    /* float: left; */
    /*display: none;*/
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    border-radius: initial;
    left: initial;
    top: initial;
    background: initial;
    z-index: 1;
}

/*.play-pause[bp-active]{*/
/*    display: inline-block;*/
/*}*/
.play-pause .play {
    display: block;
    width: 31px;
}

.play-pause .pause {
    display: none;
    width: 31px;
}

.play-pause.play .play {
    display: none;
}

.play-pause.play .pause {
    display: block;
}

player-wrapper {
    position: absolute;
    width: 100%;
    height: 45px;
    display: flex;
    background-color: #0088e8;
}

/*player-wrapper[bp-active] {*/
/*    display: flex;*/
/*}*/

.progress-wrapper {
    position: absolute;
    width: 100%;
    height: 4px;
    /* padding: 100%; */
    border-radius: 5px;
    /* bottom: 0; */
    left: 0;
    top: 50%;
    z-index: 1;
    box-sizing: border-box;
    /* padding: 19.5px 17px; */
    padding: 0 9px;
    margin-top: -2px;
}

.progress.fill {
    position: relative;
    width: 100%;
    height: 100%;
    background: #003f82;
    border-radius: 5px;
    cursor: pointer;

}

.progress .progress-current {
    position: absolute;
    height: 100%;
    left: 0;
    background: white;
    border-radius: 5px;

    width: var(--data-progress)
}

.progress .progress-current[by-media-stream] {
    -webkit-transition: width 0.2s;
    -moz-transition: width 0.2s;
    -ms-transition: width 0.2s;
    -o-transition: width 0.2s;
    transition: width 0.2s;
}

.progress .progress-draggable {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.progress .progress-draggable:after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    margin-left: -5px;
    margin-top: -3px;
    border-radius: 50%;
    background: white;
    left: var(--data-progress);
}

.progress .progress-draggable[drag-start]:after {
    left: var(--drag-x);
}

.volume.fill {
    position: relative;
    width: 100%;
    height: 100%;
    background: #003f82;
    border-radius: 5px;
    cursor: pointer;

}

.volume .progress-current {
    position: absolute;
    height: 100%;
    left: 0;
    background: white;
    border-radius: 5px;

    width: var(--data-volume)
}

.volume .progress-draggable {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.volume .progress-draggable:after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    margin-left: -5px;
    margin-top: -3px;
    border-radius: 50%;
    background: white;
    left: var(--data-volume);
}

.volume .progress-draggable[drag-start]:after {
    left: var(--drag-x);
}


.mute-unmute {
    height: 14px;
    padding: 4px 9px;
    position: absolute;
    background-repeat: no-repeat;
    background-position: center center;
    box-sizing: initial;
    width: 14px;
    margin: 0;
    /* float: left; */
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    border-radius: initial;
    left: 50%;
    top: 50%;
    background: initial;
    z-index: 1;
    transform: translate(-50%, -50%);
}

/*.mute-unmute[bp-active]{*/
/*    display: inline-block;*/
/*}*/

.mute-unmute[muted] .sound-on {
    display: none;
}

.mute-unmute[muted] .sound-off {
    display: block;
}

.sound-on {
    fill: white;
    display: block;
}

.sound-off {
    fill: white;
    display: none;
}


.skip {
    position: absolute;
    font-size: 12px;
    line-height: 12px;
    z-index: 1;
    left: 50%;
    top: 10px;
    font-family: Arial, sans-serif;
    color: white;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    overflow: hidden;
    white-space: nowrap;
}

.skip .bp-skip[time-remain]:after {
    content: 'пропустити через ' attr(time-remain);
    display: block;
}

.skip .bp-skip[skip-allow]:after {
    content: 'пропустити >';
    display: block;
    cursor: pointer;
}

.goto {
    position: absolute;
    bottom: 14px;
    z-index: 1;
    left: 50%;
    transform: translateX(-50%);
    font-family: Arial, sans-serif;
    color: white;
    cursor: pointer;
    font-size: 10px;
    line-height: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.goto .click:after {
    content: attr(advertiser-text);
    display: block;
}
