<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*====================================================
	overwrite
=====================================================*/

.vjs-controls &gt; li.vjs-play-control {
    left: 1.3% !important;
}




/* REQUIRED STYLES (be careful overriding)
================================================================================ */

/* Box containing audio, controls, and download links.
   If you want to add some kind of frame, use another containing element, not this one. */

.audio-js-box {
    text-align: left;
    position: relative;
    background: #465599;
    border-radius: 2em;
    /*    border: #f00 thin solid;*/
}

/* Will be set to the width of the audio element */

/* Video Element */

audio.audio-js {
    /*    background-color: #000;*/
    position: relative;
    display: none;
}

/* DEFAULT SKIN (override in another file)
================================================================================
Using all CSS to draw the controls. Images could be used if desired.
Instead of editing this file, I recommend creating your own skin CSS file to be included after this file,
so you can upgrade to newer versions easier. */

/* Controls Layout
   Using a Holy Grail type method to allow the progress bar holder to expand into all available space,
   but using abosolute positioning for individual controls. http://www.alistapart.com/articles/holygrail */

.vjs-controls {
    width: 100% !important;
    height: 35px;
    list-style: none;
    position: relative;
    border: none;
    /*    opacity: 0.85;*/
    color: #fff;

    /* Including any margin you want above or below control items */
    padding-left: 8%;
    /* Width of play button + margin */
    padding-right: 135px;
    /* Width of all the controls to the right of the progress control + margins */
}

/* Controls styles when below the audio */

.audio-js-box.vjs-controls-below .vjs-controls {
    background-color: #000;
}

.vjs-controls &gt; li {
    /* Direct li children of control bar */
    position: absolute;
    list-style: none;
    float: left;
    padding: 0;
    text-align: center;
    height: 25px;
    margin: 5px 0 0 0;
}

/* Placement of Control Items */

.vjs-controls &gt; li.vjs-play-control {
    width: 25px;
    width: 5%;
    left: 8px;
    /*    border: #f00 thin solid;*/
}

.vjs-controls &gt; li.vjs-progress-control {
    width: 100%;
    position: relative;
    /*     border: #f00 thin solid;*/
}

.vjs-controls &gt; li.vjs-time-control {
    width: 75px;
    right: 60px;
}

.vjs-controls &gt; li.vjs-volume-control {
    width: 50px;
    right: 10px;
}

/* Removing curves on progress control and time control to join them. */

.vjs-controls &gt; li.vjs-progress-control {
    border-top-right-radius: 0;
    -webkit-border-top-right-radius: 0;
    -moz-border-radius-topright: 0;
    border-bottom-right-radius: 0;
    -webkit-border-bottom-right-radius: 0;
    -moz-border-radius-bottomright: 0;
}

.vjs-controls &gt; li.vjs-time-control {
    border-top-left-radius: 0;
    -webkit-border-top-left-radius: 0;
    -moz-border-radius-topleft: 0;
    border-bottom-left-radius: 0;
    -webkit-border-bottom-left-radius: 0;
    -moz-border-radius-bottomleft: 0;
}

/* Play/Pause
-------------------------------------------------------------------------------- */

.vjs-play-control {
    cursor: pointer !important;
}

.vjs-play-control span {
    display: block;
    font-size: 0;
    line-height: 0;
}

.vjs-play-control.vjs-play span {
    width: 0;
    height: 0;
    margin: 8px 0 0 8px;
    /* Drawing the play triangle with borders - http://www.infimum.dk/HTML/slantinfo.html */
    border-left: 10px solid #fff;
    /* Width &amp; Color of play icon */
    /* Height of play icon is total top &amp; bottom border widths. Color is transparent. */
    border-top: 5px solid rgba(0, 0, 0, 0);
    border-bottom: 5px solid rgba(0, 0, 0, 0);
}





.vjs-play-control.vjs-pause span {
    /*    width: 3px;*/
    width: 10px;
    height: 10px;
    margin: 8px auto 0;
    /* Drawing the pause bars with borders */
    border-top: 0px;
    border-left: 3px solid #fff;
    border-bottom: 0px;
    border-right: 3px solid #fff;
}

/* Progress
-------------------------------------------------------------------------------- */

.vjs-progress-holder {
    /* Box containing play and load progresses */
    position: relative;
    list-style: none;
    padding: 0;
    overflow: hidden;
    cursor: pointer !important;
    height: 9px;
    /*    border: 1px solid #777;*/
    margin: 7px 1px 0 5px;
    /* Placement within the progress control item */
    /*
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
*/
}

.vjs-progress-holder li {
    /* Progress Bars */
    position: absolute;
    display: block;
    width: 0;
    height: 9px;
    /*
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
*/
}

.vjs-play-progress {
    /* Default */
    background: #9b92e8;

}

.vjs-load-progress {
    /*    opacity: 0.8;*/
    /* Default */
    background-color: #d9d5ff;

}

/* Time Display
-------------------------------------------------------------------------------- */

.vjs-controls .vjs-time-control {
    font-size: 10px;
    line-height: 1;
    font-weight: normal;
    font-family: Helvetica, Arial, sans-serif;
}

.vjs-controls .vjs-time-control span {
    line-height: 25px;
    /* Centering vertically */
}

/* Volume
-------------------------------------------------------------------------------- */

.vjs-volume-control {
    cursor: pointer !important;
}

.vjs-volume-control ul {
    list-style: none;
    display: block;
    margin: 0 5px 0 5px;
    padding: 2px 0 0 0;
}

/* Drawing the volume icon using 6 li elements */

.vjs-volume-control ul li {
    /* Individual volume bars */
    list-style: none;
    float: left;
    padding: 0;
    margin: 0 2px 0 0;
    /* Space between */
    width: 5px;
    height: 0px;
    /* Total height is height + bottom border */
    border-bottom: 20px solid #fff;
    /* Default (off) color and height of visible portion */
}

.vjs-volume-control ul li.vjs-volume-level-on {
    border-color: #9b92e8;
    /* Volume on bar color */
}

/* Creating differnt bar heights through height (transparent) and bottom border (visible). */

.vjs-volume-control ul li:nth-child(1) {
    border-bottom-width: 4px;
    height: 16px;
    height: 20px;
}

.vjs-volume-control ul li:nth-child(2) {
    border-bottom-width: 6px;
    height: 14px;
    height: 20px;
}

.vjs-volume-control ul li:nth-child(3) {
    border-bottom-width: 10px;
    height: 11px;
    height: 20px;
}

.vjs-volume-control ul li:nth-child(4) {
    border-bottom-width: 12px;
    height: 8px;
    height: 20px;
}

.vjs-volume-control ul li:nth-child(5) {
    border-bottom-width: 16px;
    height: 4px;
    height: 20px;
}

.vjs-volume-control ul li:nth-child(6) {
    margin-right: 0;
}


/* Download Links - Used for browsers that don't support any audio.
-------------------------------------------------------------------------------- */

.vjs-no-audio {
    font-size: small;
}

@media screen and (max-width: 768px) {
    /* ///////// mobile /////////// */
    .vjs-controls {
        padding-right: 25%;
    }
    .vjs-progress-holder {
        background: #d9d5ff;
    }
    .vjs-controls &gt; li.vjs-play-control.vjs-pause {
        margin-left: 5px;
    }
    .vjs-volume-control {
        display: none !important;
    }
    .vjs-controls &gt; li.vjs-time-control {
        width: 75px;
        right: 5px;
    }
}
</pre></body></html>