<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
.preroll-skip-button, .advertisement-box, .remaining-time {
    display: block;
    position: absolute;
    bottom: 32px;
    right: 0;
    width: auto;
    background-color: rgba(113, 28, 127, 0.4);
    color: #fff;
    font-size: 12px;
    /*font-style: italic;*/
    font-weight: bold;
    line-height: 12px;
    padding: 10px;
    z-index: 2;
    /*border: 1px solid rgba(255,255,255,.35);*/
    /*border-right: none;*/
}

.advertisement-box {
    display: inline-block;
    right: auto;
    bottom: 0;
    left: 0;
    top: 0;
    font-style: normal;
    /*border-right: 1px solid rgba(255,255,255,.35);*/
    /*border-left: none;*/
}

.preroll-skip-button.enabled {
    cursor: pointer;
    color: #fff;
}

.preroll-skip-button.enabled:hover {
    cursor: pointer;
    background: #333;
}

.preroll-blocker {
    display: block;
    position: absolute;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.vjs-ad-playing div.vjs-control.vjs-playback-rate {
    display: none;
}

/*speaker*/
.speaker {
    height: 30px;
    width: 30px;
    position: relative;
    bottom: 62px;
    left: 10px;
    overflow: hidden;
    display: inline-block;
    background-color: rgba(113, 28, 127, 0.4);
    cursor: pointer;

}
.speaker span {
    display: block;
    width: 8px;
    height: 8px;
    background: #fff;
    margin: 11px 0 0 2px;
    cursor: pointer;
}
.speaker span:after {
content: "";
position: absolute;
width: 0;
height: 0;
border-style: solid;
border-color: transparent #fff transparent transparent;
border-width: 10px 14px 10px 15px;
left: -13px;
top: 5px;
}
.speaker span:before {
transform: rotate(45deg);
border-radius: 0 50px 0 0;
content: "";
position: absolute;
width: 5px;
height: 5px;
border-style: double;
border-color: #fff;
border-width: 7px 7px 0 0;
left: 18px;
top: 11px;
transition: all 0.2s ease-out;
}
.speaker:hover span:before {
transform: scale(0.8) translate(-3px, 0) rotate(42deg);
}
.speaker.mute span:before {
transform: scale(0.5) translate(-15px, 0) rotate(36deg);
opacity: 0;
}</pre></body></html>