@charset 'UTF-8';
.evp-video-player
{
    /* Define the scrollbar thumb (the draggable part) */
    /* Define scrollbar behavior on hover */
    /* Hide the default scrollbar */
    /* Define the scrollbar track */
    /* Define the scrollbar thumb (the draggable part) */
    /* Define scrollbar behavior on hover */
    margin-bottom: 20px;

    animation-name: evpPlaylistAdded;
    animation-duration: .001s;
}

.evp-video-player *,
.evp-video-player *:before,
.evp-video-player *:after
{
    box-sizing: inherit;
    min-width: 0;
}

.evp-video-player input[type='range']::-webkit-slider-runnable-track,
.evp-video-player input[type='range']::-moz-range-track
{
    box-shadow: none !important;
}

.evp-video-player scrollbar
{
    width: 6px;
    /* Adjust the width as needed */

    background-color: #f0f0f0;
    /* Set the background color of the track */
}

.evp-video-player scrollbar thumb
{
    background-color: #888;
    /* Set the color of the scrollbar thumb */
}

.evp-video-player scrollbar:hover thumb
{
    background-color: #555;
    /* Change color on hover if desired */
}

.evp-video-player ::-webkit-scrollbar
{
    width: 6px;
    /* Adjust this width as needed */
}

.evp-video-player ::-webkit-scrollbar-track
{
    background: transparent;
    /* You can set a background color if desired */
}

.evp-video-player ::-webkit-scrollbar-thumb
{
    /* Set the color of the scrollbar thumb */
    border-radius: 3px;
    background: #888;
    /* Rounded corners for the thumb */
}

.evp-video-player ::-webkit-scrollbar-thumb:hover
{
    background: #555;
    /* Change color on hover if desired */
}

.evp-video-player embed,
.evp-video-player iframe,
.evp-video-player object,
.evp-video-player video
{
    margin: 0 !important;
    padding: 0 !important;
}

.evp-video-player .icon
{
    position: relative;
    top: -.0625em;

    display: inline-block;

    width: 1em;
    height: 1em;

    vertical-align: middle;

    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
}

.evp__offscreen
{
    position: absolute;

    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);

    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;

    word-wrap: normal;

    border: 0;

    clip-path: inset(50%);
}

.evp-playlist__wrapper
{
    display: none;
}

.evp-playlist__loading
{
    display: flex;

    width: 100%;
    height: 400px;

    align-items: center;
    justify-content: center;
}

.evp-playlist__loading:before
{
    width: 25px;
    height: 25px;

    content: '';
    animation: spin 1s linear infinite;

    border: 4px solid #f2f2f2;
    border-top-color: #00b2ff;
    border-radius: 100%;
}

.evp-single-video__content
{
    overflow: hidden;

    border: 0;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
}

@keyframes spin
{
    0%
    {
        transform: rotate(0deg);
    }
    100%
    {
        transform: rotate(360deg);
    }
}

@keyframes evpPlaylistAdded
{
    from
    {
        opacity: .01;
    }
    to
    {
        opacity: 0;
    }
}

.evp-single-video__header
{
    margin: 15px 0;
}

.evp-single-video__title
{
    font-size: 17px;
    font-weight: 600;
    line-height: 1.25;

    margin-bottom: 10px;

    white-space: normal;
    word-break: break-word;
}

.evp-single-video__title a
{
    color: currentColor;
}

.evp-single-video__meta
{
    font-size: 14px;
    line-height: 1.25;
}

.evp-single-video__meta a
{
    color: #999;
}

.evp-playlist-video
{
    overflow: hidden;

    padding: 10px 0 10px 0;

    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 12px;
}

.evp-playlist-video-index-item
{
    display: flex;

    padding: 10px;

    border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.evp-playlist-video-index-item:last-of-type
{
    margin-bottom: 0;

    border-bottom: none;
}

.evp-playlist-video-index-item.is-hidden
{
    display: none !important;
}

.evp-playlist-video-index-item.evp-currently-playing
{
    background-color: var(--plyr-color-bg, #fff);
}

.evp-playlist-video-header
{
    margin-bottom: 5px;
    padding: 0;

    border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.evp-playlist-video-header-title
{
    font-weight: bold;

    margin-bottom: 5px;
    padding: 0 10px;
}

.evp-playlist-video__content
{
    flex: 1;
}

.evp-playlist-video__image
{
    position: relative;

    width: 100px;
    margin-right: 10px;

    cursor: pointer;

    align-self: start;
}

.evp-playlist-video__image:after
{
    display: block;

    width: 100%;
    padding-top: 56.25%;

    content: '';
}

.evp-playlist-video .evp-playlist-thumbnail-image
{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    overflow: hidden;

    border-radius: 5px;
}

.evp-playlist-video .evp-playlist-thumbnail-image img
{
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.evp-playlist-video__title
{
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;

    display: block;
    display: flex;
    overflow: hidden;

    max-height: 42px;
    margin: 0 0 4px 0;

    cursor: pointer;
    white-space: normal;
    text-overflow: ellipsis;

    -webkit-line-clamp: 2;
}

.evp-playlist-video__meta
{
    font-size: 13px;
    font-weight: 400;
    line-height: 1.25;

    display: block;
    display: block;
    overflow: hidden;
    overflow-x: hidden;

    max-height: 17px;
    margin-right: 8px;

    white-space: nowrap;
    text-overflow: ellipsis;

    -webkit-line-clamp: 1;
}

.evp-playlist-video__meta a
{
    color: #999;
}

.evp-playlist-video-more-wrapper
{
    margin: 5px 5px 0;
}

.evp-wide.evp-video-player .evp-playlist__container
{
    display: flex;

    justify-content: space-between;
}

.evp-wide.evp-video-player .evp-single-video
{
    flex-basis: calc(100% - 375px);
}

.evp-wide.evp-video-player .evp-playlist-video
{
    width: 360px;
}

.evp-wide.evp-video-player .evp-playlist-video-index
{
    overflow-y: scroll;

    height: auto;
    min-height: 360px;
}

.evp-narrow-list .evp-playlist-video-index-item
{
    display: none;
}

.evp-narrow-list .evp-playlist-video-index-item:nth-child(-n+5),
.evp-narrow-list .evp-playlist-video-index-item.evp-item-visible
{
    display: flex;
}

button.evp-playlist-load-more
{
    line-height: 1 !important;

    width: 100%;
    min-height: none !important;
    max-height: none !important;
    padding: 15px !important;

    cursor: pointer !important;
    text-align: center !important;

    color: currentColor !important;
    border: 1px solid rgba(0, 0, 0, .1) !important;
    border-radius: 4px !important;
    background: transparent !important;
    box-shadow: none !important;
}

button.evp-playlist-load-more:hover,
button.evp-playlist-load-more:focus
{
    color: currentColor !important;
    border: 1px solid rgba(0, 0, 0, .1) !important;
    background: transparent !important;
    box-shadow: none !important;
}

.evp-list__search
{
    position: relative;

    width: 100%;
    min-width: 300px;
    padding: 8px 10px;

    border: none !important;
    border-radius: 0;
    background-color: #f7f7f7;
}

.evp-list__search input[type='text']
{
    padding: 7px !important;

    border: none !important;
    border-radius: 0 !important;
    outline: none !important;
    background: transparent !important;
    box-shadow: none !important;
}

.evp-list__search label
{
    margin: 0 0 0 20px !important;
}

.evp-list__search .evp-list__search-icon
{
    font-size: 17px;

    position: absolute;
    top: 50%;
    left: 10px;

    transform: translateY(-50%);

    color: #aaa;
}

.evp-list__search button
{
    font-size: 17px;

    position: absolute;
    top: 50%;
    right: 10px;

    display: none;

    width: 40px;
    height: 40px;
    padding: 0;

    transform: translateY(-50%);

    color: #aaa !important;
    border: none !important;
    outline: none !important;
    background-color: transparent !important;
    box-shadow: none !important;
}

.evp-list__search button:hover
{
    color: #222;
}

.evp-search-opened .evp-list__search button
{
    display: block;
}

@keyframes plyr-progress
{
    to
    {
        background-position: 25px 0;
        background-position: var(--plyr-progress-loading-size, 25px) 0;
    }
}

@keyframes plyr-popup
{
    0%
    {
        transform: translateY(10px);

        opacity: .5;
    }
    to
    {
        transform: translateY(0);

        opacity: 1;
    }
}

@keyframes plyr-fade-in
{
    0%
    {
        opacity: 0;
    }
    to
    {
        opacity: 1;
    }
}

.plyr
{
    font-family: inherit;
    font-family: var(--plyr-font-family, inherit);
    font-weight: 400;
    font-weight: var(--plyr-font-weight-regular, 400);
    line-height: 1.7;
    line-height: var(--plyr-line-height, 1.7);

    position: relative;
    z-index: 0;

    display: flex;
    flex-direction: column;

    min-width: 200px;
    max-width: 100%;

    transition: box-shadow .3s ease;

    text-shadow: none;

    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    align-items: center;
    direction: ltr;
    font-variant-numeric: tabular-nums;
}

.plyr audio,
.plyr iframe,
.plyr video
{
    display: block;

    width: 100%;
    height: 100%;
}

.plyr button
{
    font: inherit;
    line-height: inherit;

    width: auto;
}

.plyr:focus
{
    outline: 0;
}

.plyr--full-ui
{
    box-sizing: border-box;
}

.plyr--full-ui *,
.plyr--full-ui :after,
.plyr--full-ui :before
{
    box-sizing: inherit;
}

.plyr--full-ui a,
.plyr--full-ui button,
.plyr--full-ui input,
.plyr--full-ui label
{
    touch-action: manipulation;
}

.plyr__badge
{
    font-size: 9px;
    font-size: var(--plyr-font-size-badge, 9px);
    line-height: 1;

    padding: 3px 4px;

    color: #fff;
    color: var(--plyr-badge-text-color, #fff);
    border-radius: 2px;
    border-radius: var(--plyr-badge-border-radius, 2px);
    background: #4a5464;
    background: var(--plyr-badge-background, #4a5464);
}

.plyr--full-ui ::-webkit-media-text-track-container
{
    display: none;
}

.plyr__captions
{
    font-size: 13px;
    font-size: var(--plyr-font-size-small, 13px);

    position: absolute;
    bottom: 0;
    left: 0;

    display: none;

    width: 100%;
    padding: 10px;
    padding: var(--plyr-control-spacing, 10px);

    transition: transform .4s ease-in-out;
    animation: plyr-fade-in .3s ease;
    text-align: center;
}

.plyr__captions span:empty
{
    display: none;
}

.plyr--captions-active .plyr__captions
{
    display: block;
}

.plyr:not(.plyr--hide-controls) .plyr__controls:not(:empty) ~ .plyr__captions
{
    transform: translateY(-40px);
    transform: translateY(calc(var(--plyr-control-spacing, 10px)*-4));
}

.plyr__caption
{
    line-height: 185%;

    padding: .2em .5em;

    white-space: pre-wrap;

    color: #fff;
    color: var(--plyr-captions-text-color, #fff);
    border-radius: 2px;
    background: #000c;
    background: var(--plyr-captions-background, #000c);
            box-decoration-break: clone;

    -webkit-box-decoration-break: clone;
}

.plyr__caption div
{
    display: inline;
}

.plyr__control
{
    position: relative;

    overflow: visible !important;

    padding: 7px !important;
    padding: calc(var(--plyr-control-spacing, 10px)*.7) !important;

    cursor: pointer !important;
    transition: all .3s ease;

    color: inherit !important;
    border: 0 !important;
    border-radius: 4px !important;
    border-radius: var(--plyr-control-radius, 4px) !important;
    background: #0000 !important;

    flex-shrink: 0 !important;
}

.plyr__control svg
{
    display: block;

    width: 18px !important;
    width: var(--plyr-control-icon-size, 18px) !important;
    height: 18px !important;
    height: var(--plyr-control-icon-size, 18px) !important;

    pointer-events: none;

    fill: currentColor !important;
}

.plyr__control:focus
{
    outline: 0;
}

.plyr__control:focus-visible
{
    outline: 2px dashed #00b2ff;
    outline: 2px dashed var(--plyr-focus-visible-color, var(--plyr-color-main, var(--plyr-color-main, #00b2ff)));
    outline-offset: 2px;
}

a.plyr__control
{
    text-decoration: none;
}

.plyr__control.plyr__control--pressed .icon--not-pressed,
.plyr__control.plyr__control--pressed .label--not-pressed,
.plyr__control:not(.plyr__control--pressed) .icon--pressed,
.plyr__control:not(.plyr__control--pressed) .label--pressed,
a.plyr__control:after,
a.plyr__control:before
{
    display: none;
}

.plyr--full-ui ::-webkit-media-controls
{
    display: none;
}

.plyr__controls
{
    display: flex;

    text-align: center;

    align-items: center;
    justify-content: flex-end;
}

.plyr__controls .plyr__progress__container
{
    min-width: 0;

    flex: 1;
}

.plyr__controls .plyr__controls__item
{
    margin-left: 2.5px;
    margin-left: calc(var(--plyr-control-spacing, 10px)/4);
}

.plyr__controls .plyr__controls__item:first-child
{
    margin-right: auto;
    margin-left: 0;
}

.plyr__controls .plyr__controls__item.plyr__progress__container
{
    padding-left: 2.5px;
    padding-left: calc(var(--plyr-control-spacing, 10px)/4);
}

.plyr__controls .plyr__controls__item.plyr__time
{
    padding: 0 5px;
    padding: 0 calc(var(--plyr-control-spacing, 10px)/2);
}

.plyr__controls .plyr__controls__item.plyr__progress__container:first-child,
.plyr__controls .plyr__controls__item.plyr__time + .plyr__time,
.plyr__controls .plyr__controls__item.plyr__time:first-child
{
    padding-left: 0;
}

.plyr [data-plyr=airplay],
.plyr [data-plyr=captions],
.plyr [data-plyr=fullscreen],
.plyr [data-plyr=pip],
.plyr__controls:empty
{
    display: none;
}

.plyr--airplay-supported [data-plyr=airplay],
.plyr--captions-enabled [data-plyr=captions],
.plyr--fullscreen-enabled [data-plyr=fullscreen],
.plyr--pip-supported [data-plyr=pip]
{
    display: inline-block;
}

.plyr__menu
{
    position: relative;

    display: flex;
}

.plyr__menu .plyr__control svg
{
    transition: transform .3s ease;
}

.plyr__menu .plyr__control[aria-expanded=true] svg
{
    transform: rotate(90deg);
}

.plyr__menu .plyr__control[aria-expanded=true] .plyr__tooltip
{
    display: none;
}

.plyr__menu__container
{
    font-size: 15px;
    font-size: var(--plyr-font-size-base, 15px);

    position: absolute;
    z-index: 3;
    right: -3px;
    bottom: 100%;

    margin-bottom: 10px;

    animation: plyr-popup .2s ease;
    text-align: left;
    white-space: nowrap;

    color: #4a5464;
    color: var(--plyr-menu-color, #4a5464);
    border-radius: 8px;
    border-radius: var(--plyr-menu-radius, 8px);
    background: rgba(255, 255, 255, .9);
    background: var(--plyr-menu-background, rgba(255, 255, 255, .9));
    box-shadow: 0 1px 2px rgba(0, 0, 0, .15);
    box-shadow: var(--plyr-menu-shadow, 0 1px 2px rgba(0, 0, 0, .15));
}

.plyr__menu__container > div
{
    overflow: hidden;

    transition: height .35s cubic-bezier(.4, 0, .2, 1), width .35s cubic-bezier(.4, 0, .2, 1);
}

.plyr__menu__container:after
{
    position: absolute;
    top: 100%;
    right: 14px;
    right: calc(var(--plyr-control-icon-size, 18px)/2 + var(--plyr-control-spacing, 10px)*.7 - var(--plyr-menu-arrow-size, 4px)/2);

    width: 0;
    height: 0;

    content: '';

    border: 4px solid #0000;
    border: var(--plyr-menu-arrow-size, 4px) solid #0000;
    border-top-color: rgba(255, 255, 255, .9);
    border-top-color: var(--plyr-menu-background, rgba(255, 255, 255, .9));
}

.plyr__menu__container [role=menu]
{
    padding: 7px;
    padding: calc(var(--plyr-control-spacing, 10px)*.7);
}

.plyr__menu__container [role=menuitem],
.plyr__menu__container [role=menuitemradio]
{
    margin-top: 2px;
}

.plyr__menu__container [role=menuitem]:first-child,
.plyr__menu__container [role=menuitemradio]:first-child
{
    margin-top: 0;
}

.plyr__menu__container .plyr__control
{
    font-size: 13px;
    font-size: var(--plyr-font-size-menu, var(--plyr-font-size-small, 13px));

    display: flex;

    width: 100%;
    padding: 4.66667px 10.5px;
    padding: calc(var(--plyr-control-spacing, 10px)*.7/1.5) calc(var(--plyr-control-spacing, 10px)*.7*1.5);

    -webkit-user-select: none;
            user-select: none;

    color: #4a5464;
    color: var(--plyr-menu-color, #4a5464);

    align-items: center;
}

.plyr__menu__container .plyr__control > span
{
    display: flex;

    width: 100%;

    align-items: inherit;
}

.plyr__menu__container .plyr__control:after
{
    position: absolute;
    top: 50%;

    content: '';
    transform: translateY(-50%);

    border: 4px solid #0000;
    border: var(--plyr-menu-item-arrow-size, 4px) solid #0000;
}

.plyr__menu__container .plyr__control--forward
{
    padding-right: 28px;
    padding-right: calc(var(--plyr-control-spacing, 10px)*.7*4);
}

.plyr__menu__container .plyr__control--forward:after
{
    right: 6.5px;
    right: calc(var(--plyr-control-spacing, 10px)*.7*1.5 - var(--plyr-menu-item-arrow-size, 4px));

    border-left-color: #728197;
    border-left-color: var(--plyr-menu-arrow-color, #728197);
}

.plyr__menu__container .plyr__control--forward:focus-visible:after,
.plyr__menu__container .plyr__control--forward:hover:after
{
    border-left-color: initial;
}

.plyr__menu__container .plyr__control--back
{
    font-weight: 400;
    font-weight: var(--plyr-font-weight-regular, 400);

    position: relative;

    width: calc(100% - 14px);
    width: calc(100% - var(--plyr-control-spacing, 10px)*.7*2);
    margin: 7px;
    margin: calc(var(--plyr-control-spacing, 10px)*.7);
    margin-bottom: 3.5px;
    margin-bottom: calc(var(--plyr-control-spacing, 10px)*.7/2);
    padding-left: 28px;
    padding-left: calc(var(--plyr-control-spacing, 10px)*.7*4);
}

.plyr__menu__container .plyr__control--back:after
{
    left: 6.5px;
    left: calc(var(--plyr-control-spacing, 10px)*.7*1.5 - var(--plyr-menu-item-arrow-size, 4px));

    border-right-color: #728197;
    border-right-color: var(--plyr-menu-arrow-color, #728197);
}

.plyr__menu__container .plyr__control--back:before
{
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;

    overflow: hidden;

    height: 1px;
    margin-top: 3.5px;
    margin-top: calc(var(--plyr-control-spacing, 10px)*.7/2);

    content: '';

    background: #dcdfe5;
    background: var(--plyr-menu-back-border-color, #dcdfe5);
    box-shadow: 0 1px 0 #fff;
    box-shadow: 0 1px 0 var(--plyr-menu-back-border-shadow-color, #fff);
}

.plyr__menu__container .plyr__control--back:focus-visible:after,
.plyr__menu__container .plyr__control--back:hover:after
{
    border-right-color: initial;
}

.plyr__menu__container .plyr__control[role=menuitemradio]
{
    padding-left: 7px;
    padding-left: calc(var(--plyr-control-spacing, 10px)*.7);
}

.plyr__menu__container .plyr__control[role=menuitemradio]:after,
.plyr__menu__container .plyr__control[role=menuitemradio]:before
{
    border-radius: 100%;
}

.plyr__menu__container .plyr__control[role=menuitemradio]:before
{
    display: block;

    width: 16px;
    height: 16px;
    margin-right: 10px;
    margin-right: var(--plyr-control-spacing, 10px);

    content: '';
    transition: all .3s ease;

    background: rgba(0, 0, 0, .1);

    flex-shrink: 0;
}

.plyr__menu__container .plyr__control[role=menuitemradio]:after
{
    top: 50%;
    left: 12px;

    width: 6px;
    height: 6px;

    transition: transform .3s ease, opacity .3s ease;
    transform: translateY(-50%) scale(0);

    opacity: 0;
    border: 0;
    background: #fff;
}

.plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]:before
{
    background: #00b2ff;
    background: var(--plyr-control-toggle-checked-background, var(--plyr-color-main, var(--plyr-color-main, #00b2ff)));
}

.plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]:after
{
    transform: translateY(-50%) scale(1);

    opacity: 1;
}

.plyr__menu__container .plyr__control[role=menuitemradio]:focus-visible:before,
.plyr__menu__container .plyr__control[role=menuitemradio]:hover:before
{
    background: rgba(35, 40, 47, .1);
}

.plyr__menu__container .plyr__menu__value
{
    display: flex;
    overflow: hidden;

    margin-right: -5px;
    margin-right: calc(var(--plyr-control-spacing, 10px)*.7*-1 - -2px);
    margin-left: auto;
    padding-left: 24.5px;
    padding-left: calc(var(--plyr-control-spacing, 10px)*.7*3.5);

    pointer-events: none;

    align-items: center;
}

.plyr--full-ui input[type=range]
{
    display: block;

    width: 100%;
    min-width: 0;
    height: 19px;
    height: calc(var(--plyr-range-thumb-active-shadow-width, 3px)*2 + var(--plyr-range-thumb-height, 13px));
    margin: 0;
    padding: 0;

    transition: box-shadow .3s ease;

    color: #00b2ff;
    color: var(--plyr-range-fill-background, var(--plyr-color-main, var(--plyr-color-main, #00b2ff)));
    border: 0;
    border-radius: 26px;
    border-radius: calc(var(--plyr-range-thumb-height, 13px)*2);
    background: #0000;

    -webkit-appearance: none;
            appearance: none;
}

.plyr--full-ui input[type=range]::-webkit-slider-runnable-track
{
    height: 5px;
    height: var(--plyr-range-track-height, 5px);

    -webkit-user-select: none;
            user-select: none;
    -webkit-transition: box-shadow .3s ease;
            transition: box-shadow .3s ease;

    border: 0;
    border-radius: 2.5px;
    border-radius: calc(var(--plyr-range-track-height, 5px)/2);
    background: #0000;
    background-image: linear-gradient(90deg, currentColor 0, #0000 0);
    background-image: linear-gradient(to right, currentColor var(--value, 0), #0000 var(--value, 0));
}

.plyr--full-ui input[type=range]::-webkit-slider-thumb
{
    position: relative;

    width: 13px;
    width: var(--plyr-range-thumb-height, 13px);
    height: 13px;
    height: var(--plyr-range-thumb-height, 13px);
    margin-top: -4px;
    margin-top: calc((var(--plyr-range-thumb-height, 13px) - var(--plyr-range-track-height, 5px))/2*-1);

    -webkit-transition: all .2s ease;
            transition: all .2s ease;

    border: 0;
    border-radius: 100%;
    background: #fff;
    background: var(--plyr-range-thumb-background, #fff);
    box-shadow: 0 1px 1px rgba(35, 40, 47, .15), 0 0 0 1px rgba(35, 40, 47, .2);
    box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, .15), 0 0 0 1px rgba(35, 40, 47, .2));

    -webkit-appearance: none;
            appearance: none;
}

.plyr--full-ui input[type=range]::-moz-range-track
{
    height: 5px;
    height: var(--plyr-range-track-height, 5px);

    user-select: none;
    -moz-transition: box-shadow .3s ease;
         transition: box-shadow .3s ease;

    border: 0;
    border-radius: 2.5px;
    border-radius: calc(var(--plyr-range-track-height, 5px)/2);
    background: #0000;
}

.plyr--full-ui input[type=range]::-moz-range-thumb
{
    position: relative;

    width: 13px;
    width: var(--plyr-range-thumb-height, 13px);
    height: 13px;
    height: var(--plyr-range-thumb-height, 13px);

    -moz-transition: all .2s ease;
         transition: all .2s ease;

    border: 0;
    border-radius: 100%;
    background: #fff;
    background: var(--plyr-range-thumb-background, #fff);
    box-shadow: 0 1px 1px rgba(35, 40, 47, .15), 0 0 0 1px rgba(35, 40, 47, .2);
    box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, .15), 0 0 0 1px rgba(35, 40, 47, .2));
}

.plyr--full-ui input[type=range]::-moz-range-progress
{
    height: 5px;
    height: var(--plyr-range-track-height, 5px);

    border-radius: 2.5px;
    border-radius: calc(var(--plyr-range-track-height, 5px)/2);
    background: currentColor;
}

.plyr--full-ui input[type=range]::-ms-track
{
    color: #0000;
}

.plyr--full-ui input[type=range]::-ms-fill-upper,
.plyr--full-ui input[type=range]::-ms-track
{
    height: 5px;
    height: var(--plyr-range-track-height, 5px);

    user-select: none;
    -ms-transition: box-shadow .3s ease;
        transition: box-shadow .3s ease;

    border: 0;
    border-radius: 2.5px;
    border-radius: calc(var(--plyr-range-track-height, 5px)/2);
    background: #0000;
}

.plyr--full-ui input[type=range]::-ms-fill-lower
{
    height: 5px;
    height: var(--plyr-range-track-height, 5px);

    user-select: none;
    -ms-transition: box-shadow .3s ease;
        transition: box-shadow .3s ease;

    border: 0;
    border-radius: 2.5px;
    border-radius: calc(var(--plyr-range-track-height, 5px)/2);
    background: #0000;
    background: currentColor;
}

.plyr--full-ui input[type=range]::-ms-thumb
{
    position: relative;

    width: 13px;
    width: var(--plyr-range-thumb-height, 13px);
    height: 13px;
    height: var(--plyr-range-thumb-height, 13px);
    margin-top: 0;

    -ms-transition: all .2s ease;
        transition: all .2s ease;

    border: 0;
    border-radius: 100%;
    background: #fff;
    background: var(--plyr-range-thumb-background, #fff);
    box-shadow: 0 1px 1px rgba(35, 40, 47, .15), 0 0 0 1px rgba(35, 40, 47, .2);
    box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, .15), 0 0 0 1px rgba(35, 40, 47, .2));
}

.plyr--full-ui input[type=range]::-ms-tooltip
{
    display: none;
}

.plyr--full-ui input[type=range]::-moz-focus-outer
{
    border: 0;
}

.plyr--full-ui input[type=range]:focus
{
    outline: 0;
}

.plyr--full-ui input[type=range]:focus-visible::-webkit-slider-runnable-track
{
    outline: 2px dashed #00b2ff;
    outline: 2px dashed var(--plyr-focus-visible-color, var(--plyr-color-main, var(--plyr-color-main, #00b2ff)));
    outline-offset: 2px;
}

.plyr--full-ui input[type=range]:focus-visible::-moz-range-track
{
    outline: 2px dashed #00b2ff;
    outline: 2px dashed var(--plyr-focus-visible-color, var(--plyr-color-main, var(--plyr-color-main, #00b2ff)));
    outline-offset: 2px;
}

.plyr--full-ui input[type=range]:focus-visible::-ms-track
{
    outline: 2px dashed #00b2ff;
    outline: 2px dashed var(--plyr-focus-visible-color, var(--plyr-color-main, var(--plyr-color-main, #00b2ff)));
    outline-offset: 2px;
}

.plyr__poster
{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    transition: opacity .2s ease;

    opacity: 0;
    background-color: #000;
    background-color: var(--plyr-video-background, var(--plyr-video-background, #000));
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
}

.plyr--stopped.plyr__poster-enabled .plyr__poster
{
    opacity: 1;
}

.plyr--youtube.plyr--paused.plyr__poster-enabled:not(.plyr--stopped) .plyr__poster
{
    display: none;
}

.plyr__time
{
    font-size: 13px;
    font-size: var(--plyr-font-size-time, var(--plyr-font-size-small, 13px));
}

.plyr__time + .plyr__time:before
{
    margin-right: 10px;
    margin-right: var(--plyr-control-spacing, 10px);

    content: '⁄';
}

.plyr__tooltip
{
    font-size: 13px;
    font-size: var(--plyr-font-size-small, 13px);
    font-weight: 400;
    font-weight: var(--plyr-font-weight-regular, 400);
    line-height: 1.3;

    position: absolute;
    z-index: 2;
    bottom: 100%;
    left: 50%;

    margin-bottom: 10px;
    margin-bottom: calc(var(--plyr-control-spacing, 10px)/2*2);
    padding: 5px 7.5px;
    padding: calc(var(--plyr-control-spacing, 10px)/2) calc(var(--plyr-control-spacing, 10px)/2*1.5);

    transition: transform .2s ease .1s, opacity .2s ease .1s;
    transform: translate(-50%, 10px) scale(.8);
    transform-origin: 50% 100%;
    white-space: nowrap;
    pointer-events: none;

    opacity: 0;
    color: #4a5464;
    color: var(--plyr-tooltip-color, #4a5464);
    border-radius: 5px;
    border-radius: var(--plyr-tooltip-radius, 5px);
    background: #fff;
    background: var(--plyr-tooltip-background, #fff);
    box-shadow: 0 1px 2px rgba(0, 0, 0, .15);
    box-shadow: var(--plyr-tooltip-shadow, 0 1px 2px rgba(0, 0, 0, .15));
}

.plyr__tooltip:before
{
    position: absolute;
    z-index: 2;
    bottom: -4px;
    bottom: calc(var(--plyr-tooltip-arrow-size, 4px)*-1);
    left: 50%;

    width: 0;
    height: 0;

    content: '';
    transform: translateX(-50%);

    border-top: 4px solid #fff;
    border-top: var(--plyr-tooltip-arrow-size, 4px) solid var(--plyr-tooltip-background, #fff);
    border-right: 4px solid #0000;
    border-right: var(--plyr-tooltip-arrow-size, 4px) solid #0000;
    border-left: 4px solid #0000;
    border-left: var(--plyr-tooltip-arrow-size, 4px) solid #0000;
}

.plyr .plyr__control:focus-visible .plyr__tooltip,
.plyr .plyr__control:hover .plyr__tooltip,
.plyr__tooltip--visible
{
    transform: translate(-50%) scale(1);

    opacity: 1;
}

.plyr .plyr__control:hover .plyr__tooltip
{
    z-index: 3;
}

.plyr__controls > .plyr__control:first-child .plyr__tooltip,
.plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip
{
    left: 0;

    transform: translateY(10px) scale(.8);
    transform-origin: 0 100%;
}

.plyr__controls > .plyr__control:first-child .plyr__tooltip:before,
.plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip:before
{
    left: 16px;
    left: calc(var(--plyr-control-icon-size, 18px)/2 + var(--plyr-control-spacing, 10px)*.7);
}

.plyr__controls > .plyr__control:last-child .plyr__tooltip
{
    right: 0;
    left: auto;

    transform: translateY(10px) scale(.8);
    transform-origin: 100% 100%;
}

.plyr__controls > .plyr__control:last-child .plyr__tooltip:before
{
    right: 16px;
    right: calc(var(--plyr-control-icon-size, 18px)/2 + var(--plyr-control-spacing, 10px)*.7);
    left: auto;

    transform: translateX(50%);
}

.plyr__controls > .plyr__control:first-child .plyr__tooltip--visible,
.plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip--visible,
.plyr__controls > .plyr__control:first-child + .plyr__control:focus-visible .plyr__tooltip,
.plyr__controls > .plyr__control:first-child + .plyr__control:hover .plyr__tooltip,
.plyr__controls > .plyr__control:first-child:focus-visible .plyr__tooltip,
.plyr__controls > .plyr__control:first-child:hover .plyr__tooltip,
.plyr__controls > .plyr__control:last-child .plyr__tooltip--visible,
.plyr__controls > .plyr__control:last-child:focus-visible .plyr__tooltip,
.plyr__controls > .plyr__control:last-child:hover .plyr__tooltip
{
    transform: translate(0) scale(1);
}

.plyr__progress
{
    position: relative;
    left: 6.5px;
    left: calc(var(--plyr-range-thumb-height, 13px)*.5);

    margin-right: 13px;
    margin-right: var(--plyr-range-thumb-height, 13px);
}

.plyr__progress input[type=range],
.plyr__progress__buffer
{
    width: calc(100% + 13px);
    width: calc(100% + var(--plyr-range-thumb-height, 13px));
    margin-right: -6.5px;
    margin-right: calc(var(--plyr-range-thumb-height, 13px)*-.5);
    margin-left: -6.5px;
    margin-left: calc(var(--plyr-range-thumb-height, 13px)*-.5);
}

.plyr__progress input[type=range]
{
    position: relative;
    z-index: 2;
}

.plyr__progress .plyr__tooltip
{
    left: 0;

    max-width: 120px;

    overflow-wrap: break-word;
}

.plyr__progress__buffer
{
    position: absolute;
    top: 50%;
    left: 0;

    height: 5px;
    height: var(--plyr-range-track-height, 5px);
    margin-top: -2.5px;
    margin-top: calc((var(--plyr-range-track-height, 5px)/2)*-1);
    padding: 0;

    border: 0;
    border-radius: 100px;
    background: #0000;

    -webkit-appearance: none;
}

.plyr__progress__buffer::-webkit-progress-bar
{
    background: #0000;
}

.plyr__progress__buffer::-webkit-progress-value
{
    min-width: 5px;
    min-width: var(--plyr-range-track-height, 5px);

    -webkit-transition: width .2s ease;
            transition: width .2s ease;

    border-radius: 100px;
    background: currentColor;
}

.plyr__progress__buffer::-moz-progress-bar
{
    min-width: 5px;
    min-width: var(--plyr-range-track-height, 5px);

    -moz-transition: width .2s ease;
         transition: width .2s ease;

    border-radius: 100px;
    background: currentColor;
}

.plyr__progress__buffer::-ms-fill
{
    -ms-transition: width .2s ease;
        transition: width .2s ease;

    border-radius: 100px;
}

.plyr--loading .plyr__progress__buffer
{
    animation: plyr-progress 1s linear infinite;

    color: #0000;
    background-image: linear-gradient(-45deg, rgba(35, 40, 47, .6) 25%, #0000 0, #0000 50%, rgba(35, 40, 47, .6) 0, rgba(35, 40, 47, .6) 75%, #0000 0, #0000);
    background-image: linear-gradient(-45deg, var(--plyr-progress-loading-background, rgba(35, 40, 47, .6)) 25%, #0000 25%, #0000 50%, var(--plyr-progress-loading-background, rgba(35, 40, 47, .6)) 50%, var(--plyr-progress-loading-background, rgba(35, 40, 47, .6)) 75%, #0000 75%, #0000);
    background-repeat: repeat-x;
    background-size: 25px 25px;
    background-size: var(--plyr-progress-loading-size, 25px) var(--plyr-progress-loading-size, 25px);
}

.plyr--video.plyr--loading .plyr__progress__buffer
{
    background-color: rgba(255, 255, 255, .25);
    background-color: var(--plyr-video-progress-buffered-background, rgba(255, 255, 255, .25));
}

.plyr__progress__marker
{
    position: absolute;
    z-index: 3;
    top: 50%;

    width: 3px;
    width: var(--plyr-progress-marker-width, 3px);
    height: 5px;
    height: var(--plyr-range-track-height, 5px);

    transform: translate(-50%, -50%);

    border-radius: 1px;
    background-color: #fff;
    background-color: var(--plyr-progress-marker-background, #fff);
}

.plyr__volume
{
    position: relative;

    display: flex;

    align-items: center;
}

.evp-narrow .plyr__volume
{
    display: none;
}

.plyr__volume input[type=range]
{
    position: relative;
    z-index: 2;

    min-width: 60px;
    max-width: 90px;
    margin-right: 5px;
    margin-right: calc(var(--plyr-control-spacing, 10px)/2);
    margin-left: 5px;
    margin-left: calc(var(--plyr-control-spacing, 10px)/2);
}

.plyr--video
{
    overflow: hidden;
}

.plyr--video.plyr--menu-open
{
    overflow: visible;
}

.plyr__video-wrapper
{
    position: relative;

    overflow: hidden;

    width: 100%;
    height: 100%;
    margin: auto;

    border-radius: inherit;
    background: #000;
    background: var(--plyr-video-background, var(--plyr-video-background, #000));
}

.plyr__video-embed,
.plyr__video-wrapper--fixed-ratio
{
    aspect-ratio: 16/9;
}

@supports not (aspect-ratio: 16/9)
{
    .plyr__video-embed,
    .plyr__video-wrapper--fixed-ratio
    {
        position: relative;

        height: 0;
        padding-bottom: 56.25%;
    }
}

.plyr__video-embed iframe,
.plyr__video-wrapper--fixed-ratio video
{
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    border: 0;
}

.plyr--full-ui .plyr__video-embed > .plyr__video-embed__container
{
    position: relative;

    padding-bottom: 240%;

    transform: translateY(-38.28125%);
}

.plyr--video .plyr__controls
{
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 0;
    left: 0;

    padding: 5px;
    padding: calc(var(--plyr-control-spacing, 10px)/2);
    padding-top: 20px;
    padding-top: calc(var(--plyr-control-spacing, 10px)*2);

    transition: opacity .4s ease-in-out, transform .4s ease-in-out;

    color: #fff;
    color: var(--plyr-video-control-color, #fff);
    border-bottom-right-radius: inherit;
    border-bottom-left-radius: inherit;
    background: linear-gradient(#0000, rgba(0, 0, 0, .75));
    background: var(--plyr-video-controls-background, linear-gradient(#0000, rgba(0, 0, 0, .75)));
}

.plyr--video.plyr--hide-controls .plyr__controls
{
    transform: translateY(100%);
    pointer-events: none;

    opacity: 0;
}

.plyr--video .plyr__control:focus-visible,
.plyr--video .plyr__control:hover,
.plyr--video .plyr__control[aria-expanded=true]
{
    color: #fff;
    color: var(--plyr-video-control-color-hover, #fff);
    background: #00b2ff;
    background: var(--plyr-video-control-background-hover, var(--plyr-color-main, var(--plyr-color-main, #00b2ff)));
}

.plyr__control--overlaid
{
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;

    display: none;

    padding: 15px 25px !important;

    transition: .3s;
    transform: translate(-50%, -50%);

    opacity: .9;
    color: #fff !important;
    color: var(--plyr-video-control-color, #fff) !important;
    border: 0 !important;
    border-radius: 2px !important;
    background: #00b2ff !important;
    background: var(--plyr-video-control-background-hover, var(--plyr-color-main, var(--plyr-color-main, #00b2ff))) !important;
}

.plyr__control--overlaid svg
{
    position: relative;
    left: 2px;
}

.plyr__control--overlaid:focus,
.plyr__control--overlaid:hover
{
    opacity: 1;
}

.plyr--playing .plyr__control--overlaid
{
    visibility: hidden;

    opacity: 0;
}

.plyr--full-ui.plyr--video .plyr__control--overlaid
{
    display: block;
}

.plyr--full-ui.plyr--video input[type=range]::-webkit-slider-runnable-track
{
    background-color: rgba(255, 255, 255, .25);
    background-color: var(--plyr-video-range-track-background, var(--plyr-video-progress-buffered-background, rgba(255, 255, 255, .25)));
}

.plyr--full-ui.plyr--video input[type=range]::-moz-range-track
{
    background-color: rgba(255, 255, 255, .25);
    background-color: var(--plyr-video-range-track-background, var(--plyr-video-progress-buffered-background, rgba(255, 255, 255, .25)));
}

.plyr--full-ui.plyr--video input[type=range]::-ms-track
{
    background-color: rgba(255, 255, 255, .25);
    background-color: var(--plyr-video-range-track-background, var(--plyr-video-progress-buffered-background, rgba(255, 255, 255, .25)));
}

.plyr--full-ui.plyr--video input[type=range]:active::-webkit-slider-thumb
{
    box-shadow: 0 1px 1px rgba(35, 40, 47, .15), 0 0 0 1px rgba(35, 40, 47, .2), 0 0 0 3px rgba(255, 255, 255, .5);
    box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, .15), 0 0 0 1px rgba(35, 40, 47, .2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, rgba(255, 255, 255, .5));
}

.plyr--full-ui.plyr--video input[type=range]:active::-moz-range-thumb
{
    box-shadow: 0 1px 1px rgba(35, 40, 47, .15), 0 0 0 1px rgba(35, 40, 47, .2), 0 0 0 3px rgba(255, 255, 255, .5);
    box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, .15), 0 0 0 1px rgba(35, 40, 47, .2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, rgba(255, 255, 255, .5));
}

.plyr--full-ui.plyr--video input[type=range]:active::-ms-thumb
{
    box-shadow: 0 1px 1px rgba(35, 40, 47, .15), 0 0 0 1px rgba(35, 40, 47, .2), 0 0 0 3px rgba(255, 255, 255, .5);
    box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, .15), 0 0 0 1px rgba(35, 40, 47, .2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, rgba(255, 255, 255, .5));
}

.plyr--video .plyr__progress__buffer
{
    color: rgba(255, 255, 255, .25);
    color: var(--plyr-video-progress-buffered-background, rgba(255, 255, 255, .25));
}

.plyr:fullscreen
{
    width: 100%;
    height: 100%;
    margin: 0;

    border-radius: 0 !important;
    background: #000;
}

.plyr:fullscreen video
{
    height: 100%;
}

.plyr:fullscreen .plyr__control .icon--exit-fullscreen
{
    display: block;
}

.plyr:fullscreen .plyr__control .icon--exit-fullscreen + svg
{
    display: none;
}

.plyr:fullscreen.plyr--hide-controls
{
    cursor: none;
}

.plyr--fullscreen-fallback
{
    position: fixed;
    z-index: 10000000;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    width: 100%;
    height: 100%;
    margin: 0;

    border-radius: 0 !important;
    background: #000;
}

.plyr--fullscreen-fallback video
{
    height: 100%;
}

.plyr--fullscreen-fallback .plyr__control .icon--exit-fullscreen
{
    display: block;
}

.plyr--fullscreen-fallback .plyr__control .icon--exit-fullscreen + svg
{
    display: none;
}

.plyr--fullscreen-fallback.plyr--hide-controls
{
    cursor: none;
}

.plyr__cues
{
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 0;

    display: block;

    width: 3px;
    height: 5px;
    height: var(--plyr-range-track-height, 5px);

    transform: translateY(-50%);

    opacity: .8;
    background: currentColor;
}

.plyr__preview-thumb
{
    position: absolute;
    z-index: 2;
    bottom: 100%;

    margin-bottom: 10px;
    margin-bottom: calc(var(--plyr-control-spacing, 10px)/2*2);
    padding: 3px;

    transition: transform .2s ease .1s, opacity .2s ease .1s;
    transform: translateY(10px) scale(.8);
    transform-origin: 50% 100%;
    pointer-events: none;

    opacity: 0;
    border-radius: 8px;
    border-radius: var(--plyr-menu-radius, 8px);
    background-color: #fff;
    background-color: var(--plyr-tooltip-background, #fff);
    box-shadow: 0 1px 2px rgba(0, 0, 0, .15);
    box-shadow: var(--plyr-tooltip-shadow, 0 1px 2px rgba(0, 0, 0, .15));
}

.plyr__preview-thumb--is-shown
{
    transform: translate(0) scale(1);

    opacity: 1;
}

.plyr__preview-thumb:before
{
    position: absolute;
    z-index: 2;
    bottom: -4px;
    bottom: calc(var(--plyr-tooltip-arrow-size, 4px)*-1);
    left: calc(50% + var(--preview-arrow-offset));

    width: 0;
    height: 0;

    content: '';
    transform: translateX(-50%);

    border-top: 4px solid #fff;
    border-top: var(--plyr-tooltip-arrow-size, 4px) solid var(--plyr-tooltip-background, #fff);
    border-right: 4px solid #0000;
    border-right: var(--plyr-tooltip-arrow-size, 4px) solid #0000;
    border-left: 4px solid #0000;
    border-left: var(--plyr-tooltip-arrow-size, 4px) solid #0000;
}

.plyr__preview-thumb__image-container
{
    position: relative;
    z-index: 0;

    overflow: hidden;

    border-radius: 7px;
    border-radius: calc(var(--plyr-menu-radius, 8px) - 1px);
    background: #c1c8d1;
}

.plyr__preview-thumb__image-container img,
.plyr__preview-thumb__image-container:after
{
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;
}

.plyr__preview-thumb__image-container:after
{
    content: '';
    pointer-events: none;

    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .15);
}

.plyr__preview-thumb__image-container img
{
    max-width: none;
    max-height: none;
}

.plyr__preview-thumb__time-container
{
    line-height: 1.1;

    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 0;
    left: 0;

    padding: 20px 6px 6px;

    border-bottom-right-radius: 7px;
    border-bottom-right-radius: calc(var(--plyr-menu-radius, 8px) - 1px);
    border-bottom-left-radius: 7px;
    border-bottom-left-radius: calc(var(--plyr-menu-radius, 8px) - 1px);
    background: linear-gradient(#0000, rgba(0, 0, 0, .75));
    background: var(--plyr-video-controls-background, linear-gradient(#0000, rgba(0, 0, 0, .75)));
}

.plyr__preview-thumb__time-container span
{
    font-size: 13px;
    font-size: var(--plyr-font-size-time, var(--plyr-font-size-small, 13px));

    color: #fff;
}

.plyr__preview-scrubbing
{
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    overflow: hidden;

    width: 100%;
    height: 100%;
    margin: auto;

    transition: opacity .3s ease;
    pointer-events: none;

    opacity: 0;

    filter: blur(1px);
}

.plyr__preview-scrubbing--is-shown
{
    opacity: 1;
}

.plyr__preview-scrubbing img
{
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    max-width: none;
    height: 100%;
    max-height: none;

    object-fit: contain;
}

.plyr--no-transition
{
    transition: none !important;
}

.plyr__sr-only
{
    position: absolute !important;

    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);

    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;

    border: 0 !important;
}

.plyr [hidden]
{
    display: none !important;
}

@media (min-width: 480px)
{
    .plyr__captions
    {
        font-size: 15px;
        font-size: var(--plyr-font-size-base, 15px);

        padding: 20px;
        padding: calc(var(--plyr-control-spacing, 10px)*2);
    }
    .plyr--video .plyr__controls
    {
        padding: 10px;
        padding: var(--plyr-control-spacing, 10px);
        padding-top: 35px;
        padding-top: calc(var(--plyr-control-spacing, 10px)*3.5);
    }
}

@media (min-width: 768px)
{
    .plyr__captions
    {
        font-size: 18px;
        font-size: var(--plyr-font-size-large, 18px);
    }
}

@media (min-width: 1024px)
{
    .plyr:fullscreen .plyr__captions
    {
        font-size: 21px;
        font-size: var(--plyr-font-size-xlarge, 21px);
    }
    .plyr--fullscreen-fallback .plyr__captions
    {
        font-size: 21px;
        font-size: var(--plyr-font-size-xlarge, 21px);
    }
}

@media (max-width: 767px)
{
    .plyr__time + .plyr__time
    {
        display: none;
    }
}
