﻿@import url(css-Roboto400500.css);
@keyframes notyf-fadeinup
{
    0%
    {
        opacity: 0;
        transform: translateY(25%);
    }
    to
    {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes notyf-fadeinleft
{
    0%
    {
        opacity: 0;
        transform: translateX(25%);
    }
    to
    {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes notyf-fadeoutright
{
    0%
    {
        opacity: 1;
        transform: translateX(0);
    }
    to
    {
        opacity: 0;
        transform: translateX(25%);
    }
}
@keyframes notyf-fadeoutdown
{
    0%
    {
        opacity: 1;
        transform: translateY(0);
    }
    to
    {
        opacity: 0;
        transform: translateY(25%);
    }
}
@keyframes ripple
{
    0%
    {
        transform: scale(0) translateY(-45%) translateX(13%);
    }
    to
    {
        transform: scale(1) translateY(-45%) translateX(13%);
    }
}
.notyf
{
    align-items: flex-end;
    box-sizing: border-box;
    color: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-end;
    left: 0;
    padding: 20px;
    pointer-events: none;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
}
.notyf__icon--error, .notyf__icon--success
{
    background: #fff;
    border-radius: 50%;
    display: block;
    height: 21px;
    margin: 0 auto;
    position: relative;
    width: 21px;
}
.notyf__icon--error:after, .notyf__icon--error:before
{
    background: currentColor;
    border-radius: 3px;
    content: "";
    display: block;
    height: 12px;
    left: 9px;
    position: absolute;
    top: 5px;
    width: 3px;
}
.notyf__icon--error:after
{
    transform: rotate(-45deg);
}
.notyf__icon--error:before
{
    transform: rotate(45deg);
}
.notyf__icon--success:after, .notyf__icon--success:before
{
    background: currentColor;
    border-radius: 3px;
    content: "";
    display: block;
    position: absolute;
    width: 3px;
}
.notyf__icon--success:after
{
    height: 6px;
    left: 6px;
    top: 9px;
    transform: rotate(-45deg);
}
.notyf__icon--success:before
{
    height: 11px;
    left: 10px;
    top: 5px;
    transform: rotate(45deg);
}
.notyf__toast
{
    animation: notyf-fadeinup .3s ease-in forwards;
    border-radius: 2px;
    box-shadow: 0 3px 7px 0 rgba(0,0,0,.25);
    box-sizing: border-box;
    display: block;
    flex-shrink: 0;
    max-width: 300px;
    overflow: hidden;
    padding: 0 15px;
    pointer-events: auto;
    position: relative;
    transform: translateY(25%);
}
.notyf__toast--disappear
{
    animation: notyf-fadeoutdown .3s forwards;
    animation-delay: .25s;
    transform: translateY(0);
}
.notyf__toast--disappear .notyf__icon, .notyf__toast--disappear .notyf__message
{
    animation: notyf-fadeoutdown .3s forwards;
    opacity: 1;
    transform: translateY(0);
}
.notyf__toast--disappear .notyf__dismiss
{
    animation: notyf-fadeoutright .3s forwards;
    opacity: 1;
    transform: translateX(0);
}
.notyf__toast--disappear .notyf__message
{
    animation-delay: .05s;
}
.notyf__toast--upper
{
    margin-bottom: 20px;
}
.notyf__toast--lower
{
    margin-top: 20px;
}
.notyf__toast--dismissible .notyf__wrapper
{
    padding-right: 30px;
}
.notyf__ripple
{
    animation: ripple .4s ease-out forwards;
    border-radius: 50%;
    height: 400px;
    position: absolute;
    right: 0;
    top: 0;
    transform: scale(0) translateY(-51%) translateX(13%);
    transform-origin: bottom right;
    width: 400px;
    z-index: 5;
}
.notyf__wrapper
{
    align-items: center;
    border-radius: 3px;
    display: flex;
    padding-bottom: 17px;
    padding-right: 15px;
    padding-top: 17px;
    position: relative;
    z-index: 10;
}
.notyf__icon
{
    animation: notyf-fadeinup .3s forwards;
    animation-delay: .3s;
    font-size: 1.3em;
    margin-right: 13px;
    opacity: 0;
    text-align: center;
    width: 22px;
}
.notyf__dismiss
{
    animation: notyf-fadeinleft .3s forwards;
    animation-delay: .35s;
    height: 100%;
    margin-right: -15px;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 26px;
}
.notyf__dismiss-btn
{
    background-color: rgba(0,0,0,.25);
    border: none;
    cursor: pointer;
    height: 100%;
    opacity: .35;
    outline: none;
    transition: opacity .2s ease,background-color .2s ease;
    width: 100%;
}
.notyf__dismiss-btn:after, .notyf__dismiss-btn:before
{
    background: #fff;
    border-radius: 3px;
    content: "";
    height: 12px;
    left: calc(50% - 1px);
    position: absolute;
    top: calc(50% - 5px);
    width: 2px;
}
.notyf__dismiss-btn:after
{
    transform: rotate(-45deg);
}
.notyf__dismiss-btn:before
{
    transform: rotate(45deg);
}
.notyf__dismiss-btn:hover
{
    background-color: rgba(0,0,0,.15);
    opacity: .7;
}
.notyf__dismiss-btn:active
{
    opacity: .8;
}
.notyf__message
{
    animation: notyf-fadeinup .3s forwards;
    animation-delay: .25s;
    line-height: 1.5em;
    opacity: 0;
    position: relative;
    vertical-align: middle;
}
@media only screen and (max-width: 480px)
{
    .notyf
    {
        padding: 0;
    }
    .notyf__ripple
    {
        animation-duration: .5s;
        height: 600px;
        width: 600px;
    }
    .notyf__toast
    {
        border-radius: 0;
        box-shadow: 0 -2px 7px 0 rgba(0,0,0,.13);
        max-width: none;
        width: 100%;
    }
    .notyf__dismiss
    {
        width: 56px;
    }
}
.video-js .vjs-big-play-button .vjs-icon-placeholder:before, .video-js .vjs-modal-dialog, .vjs-button>.vjs-icon-placeholder:before, .vjs-modal-dialog .vjs-modal-dialog-content
{
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.video-js .vjs-big-play-button .vjs-icon-placeholder:before, .vjs-button>.vjs-icon-placeholder:before
{
    text-align: center;
}
@font-face
{
    font-family: VideoJS;
    font-style: normal;
    font-weight: 400;
    src: url(data:application/font-woff;charset=utf-8;base64,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) format("woff");
}
.video-js .vjs-big-play-button .vjs-icon-placeholder:before, .video-js .vjs-play-control .vjs-icon-placeholder, .vjs-icon-play
{
    font-family: VideoJS;
    font-style: normal;
    font-weight: 400;
}
.video-js .vjs-big-play-button .vjs-icon-placeholder:before, .video-js .vjs-play-control .vjs-icon-placeholder:before, .vjs-icon-play:before
{
    content: "";
}
.vjs-icon-play-circle
{
    font-family: VideoJS;
    font-style: normal;
    font-weight: 400;
}
.vjs-icon-play-circle:before
{
    content: "";
}
.video-js .vjs-play-control.vjs-playing .vjs-icon-placeholder, .vjs-icon-pause
{
    font-family: VideoJS;
    font-style: normal;
    font-weight: 400;
}
.video-js .vjs-play-control.vjs-playing .vjs-icon-placeholder:before, .vjs-icon-pause:before
{
    content: "";
}
.video-js .vjs-mute-control.vjs-vol-0 .vjs-icon-placeholder, .vjs-icon-volume-mute
{
    font-family: VideoJS;
    font-style: normal;
    font-weight: 400;
}
.video-js .vjs-mute-control.vjs-vol-0 .vjs-icon-placeholder:before, .vjs-icon-volume-mute:before
{
    content: "";
}
.video-js .vjs-mute-control.vjs-vol-1 .vjs-icon-placeholder, .vjs-icon-volume-low
{
    font-family: VideoJS;
    font-style: normal;
    font-weight: 400;
}
.video-js .vjs-mute-control.vjs-vol-1 .vjs-icon-placeholder:before, .vjs-icon-volume-low:before
{
    content: "";
}
.video-js .vjs-mute-control.vjs-vol-2 .vjs-icon-placeholder, .vjs-icon-volume-mid
{
    font-family: VideoJS;
    font-style: normal;
    font-weight: 400;
}
.video-js .vjs-mute-control.vjs-vol-2 .vjs-icon-placeholder:before, .vjs-icon-volume-mid:before
{
    content: "";
}
.video-js .vjs-mute-control .vjs-icon-placeholder, .vjs-icon-volume-high
{
    font-family: VideoJS;
    font-style: normal;
    font-weight: 400;
}
.video-js .vjs-mute-control .vjs-icon-placeholder:before, .vjs-icon-volume-high:before
{
    content: "";
}
.video-js .vjs-fullscreen-control .vjs-icon-placeholder, .vjs-icon-fullscreen-enter
{
    font-family: VideoJS;
    font-style: normal;
    font-weight: 400;
}
.video-js .vjs-fullscreen-control .vjs-icon-placeholder:before, .vjs-icon-fullscreen-enter:before
{
    content: "";
}
.video-js.vjs-fullscreen .vjs-fullscreen-control .vjs-icon-placeholder, .vjs-icon-fullscreen-exit
{
    font-family: VideoJS;
    font-style: normal;
    font-weight: 400;
}
.video-js.vjs-fullscreen .vjs-fullscreen-control .vjs-icon-placeholder:before, .vjs-icon-fullscreen-exit:before
{
    content: "";
}
.vjs-icon-square
{
    font-family: VideoJS;
    font-style: normal;
    font-weight: 400;
}
.vjs-icon-square:before
{
    content: "";
}
.vjs-icon-spinner
{
    font-family: VideoJS;
    font-style: normal;
    font-weight: 400;
}
.vjs-icon-spinner:before
{
    content: "";
}
.video-js .vjs-subs-caps-button .vjs-icon-placeholder, .video-js .vjs-subtitles-button .vjs-icon-placeholder, .video-js.video-js:lang(en-AU) .vjs-subs-caps-button .vjs-icon-placeholder, .video-js.video-js:lang(en-GB) .vjs-subs-caps-button .vjs-icon-placeholder, .video-js.video-js:lang(en-IE) .vjs-subs-caps-button .vjs-icon-placeholder, .video-js.video-js:lang(en-NZ) .vjs-subs-caps-button .vjs-icon-placeholder, .vjs-icon-subtitles
{
    font-family: VideoJS;
    font-style: normal;
    font-weight: 400;
}
.video-js .vjs-subs-caps-button .vjs-icon-placeholder:before, .video-js .vjs-subtitles-button .vjs-icon-placeholder:before, .video-js.video-js:lang(en-AU) .vjs-subs-caps-button .vjs-icon-placeholder:before, .video-js.video-js:lang(en-GB) .vjs-subs-caps-button .vjs-icon-placeholder:before, .video-js.video-js:lang(en-IE) .vjs-subs-caps-button .vjs-icon-placeholder:before, .video-js.video-js:lang(en-NZ) .vjs-subs-caps-button .vjs-icon-placeholder:before, .vjs-icon-subtitles:before
{
    content: "";
}
.video-js .vjs-captions-button .vjs-icon-placeholder, .video-js:lang(en) .vjs-subs-caps-button .vjs-icon-placeholder, .video-js:lang(fr-CA) .vjs-subs-caps-button .vjs-icon-placeholder, .vjs-icon-captions
{
    font-family: VideoJS;
    font-style: normal;
    font-weight: 400;
}
.video-js .vjs-captions-button .vjs-icon-placeholder:before, .video-js:lang(en) .vjs-subs-caps-button .vjs-icon-placeholder:before, .video-js:lang(fr-CA) .vjs-subs-caps-button .vjs-icon-placeholder:before, .vjs-icon-captions:before
{
    content: "";
}
.video-js .vjs-chapters-button .vjs-icon-placeholder, .vjs-icon-chapters
{
    font-family: VideoJS;
    font-style: normal;
    font-weight: 400;
}
.video-js .vjs-chapters-button .vjs-icon-placeholder:before, .vjs-icon-chapters:before
{
    content: "";
}
.vjs-icon-share
{
    font-family: VideoJS;
    font-style: normal;
    font-weight: 400;
}
.vjs-icon-share:before
{
    content: "";
}
.vjs-icon-cog
{
    font-family: VideoJS;
    font-style: normal;
    font-weight: 400;
}
.vjs-icon-cog:before
{
    content: "";
}
.video-js .vjs-play-progress, .video-js .vjs-volume-level, .vjs-icon-circle, .vjs-seek-to-live-control .vjs-icon-placeholder
{
    font-family: VideoJS;
    font-style: normal;
    font-weight: 400;
}
.video-js .vjs-play-progress:before, .video-js .vjs-volume-level:before, .vjs-icon-circle:before, .vjs-seek-to-live-control .vjs-icon-placeholder:before
{
    content: "";
}
.vjs-icon-circle-outline
{
    font-family: VideoJS;
    font-style: normal;
    font-weight: 400;
}
.vjs-icon-circle-outline:before
{
    content: "";
}
.vjs-icon-circle-inner-circle
{
    font-family: VideoJS;
    font-style: normal;
    font-weight: 400;
}
.vjs-icon-circle-inner-circle:before
{
    content: "";
}
.vjs-icon-hd
{
    font-family: VideoJS;
    font-style: normal;
    font-weight: 400;
}
.vjs-icon-hd:before
{
    content: "";
}
.video-js .vjs-control.vjs-close-button .vjs-icon-placeholder, .vjs-icon-cancel
{
    font-family: VideoJS;
    font-style: normal;
    font-weight: 400;
}
.video-js .vjs-control.vjs-close-button .vjs-icon-placeholder:before, .vjs-icon-cancel:before
{
    content: "";
}
.video-js .vjs-play-control.vjs-ended .vjs-icon-placeholder, .vjs-icon-replay
{
    font-family: VideoJS;
    font-style: normal;
    font-weight: 400;
}
.video-js .vjs-play-control.vjs-ended .vjs-icon-placeholder:before, .vjs-icon-replay:before
{
    content: "";
}
.vjs-icon-facebook
{
    font-family: VideoJS;
    font-style: normal;
    font-weight: 400;
}
.vjs-icon-facebook:before
{
    content: "";
}
.vjs-icon-gplus
{
    font-family: VideoJS;
    font-style: normal;
    font-weight: 400;
}
.vjs-icon-gplus:before
{
    content: "";
}
.vjs-icon-linkedin
{
    font-family: VideoJS;
    font-style: normal;
    font-weight: 400;
}
.vjs-icon-linkedin:before
{
    content: "";
}
.vjs-icon-twitter
{
    font-family: VideoJS;
    font-style: normal;
    font-weight: 400;
}
.vjs-icon-twitter:before
{
    content: "";
}
.vjs-icon-tumblr
{
    font-family: VideoJS;
    font-style: normal;
    font-weight: 400;
}
.vjs-icon-tumblr:before
{
    content: "";
}
.vjs-icon-pinterest
{
    font-family: VideoJS;
    font-style: normal;
    font-weight: 400;
}
.vjs-icon-pinterest:before
{
    content: "";
}
.video-js .vjs-descriptions-button .vjs-icon-placeholder, .vjs-icon-audio-description
{
    font-family: VideoJS;
    font-style: normal;
    font-weight: 400;
}
.video-js .vjs-descriptions-button .vjs-icon-placeholder:before, .vjs-icon-audio-description:before
{
    content: "";
}
.video-js .vjs-audio-button .vjs-icon-placeholder, .vjs-icon-audio
{
    font-family: VideoJS;
    font-style: normal;
    font-weight: 400;
}
.video-js .vjs-audio-button .vjs-icon-placeholder:before, .vjs-icon-audio:before
{
    content: "";
}
.vjs-icon-next-item
{
    font-family: VideoJS;
    font-style: normal;
    font-weight: 400;
}
.vjs-icon-next-item:before
{
    content: "";
}
.vjs-icon-previous-item
{
    font-family: VideoJS;
    font-style: normal;
    font-weight: 400;
}
.vjs-icon-previous-item:before
{
    content: "";
}
.video-js .vjs-picture-in-picture-control .vjs-icon-placeholder, .vjs-icon-picture-in-picture-enter
{
    font-family: VideoJS;
    font-style: normal;
    font-weight: 400;
}
.video-js .vjs-picture-in-picture-control .vjs-icon-placeholder:before, .vjs-icon-picture-in-picture-enter:before
{
    content: "";
}
.video-js.vjs-picture-in-picture .vjs-picture-in-picture-control .vjs-icon-placeholder, .vjs-icon-picture-in-picture-exit
{
    font-family: VideoJS;
    font-style: normal;
    font-weight: 400;
}
.video-js.vjs-picture-in-picture .vjs-picture-in-picture-control .vjs-icon-placeholder:before, .vjs-icon-picture-in-picture-exit:before
{
    content: "";
}
.video-js
{
    background-color: #000;
    box-sizing: border-box;
    color: #fff;
    display: block;
    font-family: Arial,Helvetica,sans-serif;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    padding: 0;
    position: relative;
    vertical-align: top;
    word-break: normal;
}
.video-js:-moz-full-screen
{
    position: absolute;
}
.video-js:-webkit-full-screen
{
    height: 100%!important;
    width: 100%!important;
}
.video-js[tabindex="-1"]
{
    outline: none;
}
.video-js *, .video-js :after, .video-js :before
{
    box-sizing: inherit;
}
.video-js ul
{
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    list-style-position: outside;
    margin: 0;
}
.video-js.vjs-1-1, .video-js.vjs-16-9, .video-js.vjs-4-3, .video-js.vjs-9-16, .video-js.vjs-fluid
{
    max-width: 100%;
    width: 100%;
}
.video-js.vjs-1-1:not(.vjs-audio-only-mode), .video-js.vjs-16-9:not(.vjs-audio-only-mode), .video-js.vjs-4-3:not(.vjs-audio-only-mode), .video-js.vjs-9-16:not(.vjs-audio-only-mode), .video-js.vjs-fluid:not(.vjs-audio-only-mode)
{
    height: 0;
}
.video-js.vjs-16-9:not(.vjs-audio-only-mode)
{
    padding-top: 56.25%;
}
.video-js.vjs-4-3:not(.vjs-audio-only-mode)
{
    padding-top: 75%;
}
.video-js.vjs-9-16:not(.vjs-audio-only-mode)
{
    padding-top: 177.7777777778%;
}
.video-js.vjs-1-1:not(.vjs-audio-only-mode)
{
    padding-top: 100%;
}
.video-js .vjs-tech, .video-js.vjs-fill:not(.vjs-audio-only-mode)
{
    height: 100%;
    width: 100%;
}
.video-js .vjs-tech
{
    left: 0;
    position: absolute;
    top: 0;
}
.video-js.vjs-audio-only-mode .vjs-tech
{
    display: none;
}
body.vjs-full-window
{
    height: 100%;
    margin: 0;
    padding: 0;
}
.vjs-full-window .video-js.vjs-fullscreen
{
    bottom: 0;
    left: 0;
    overflow: hidden;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1000;
}
.video-js.vjs-fullscreen:not(.vjs-ios-native-fs)
{
    height: 100%!important;
    padding-top: 0!important;
    width: 100%!important;
}
.video-js.vjs-fullscreen.vjs-user-inactive
{
    cursor: none;
}
.vjs-hidden
{
    display: none!important;
}
.vjs-disabled
{
    cursor: default;
    opacity: .5;
}
.video-js .vjs-offscreen
{
    height: 1px;
    left: -9999px;
    position: absolute;
    top: 0;
    width: 1px;
}
.vjs-lock-showing
{
    display: block!important;
    opacity: 1!important;
    visibility: visible!important;
}
.vjs-no-js
{
    background-color: #000;
    color: #fff;
    font-family: Arial,Helvetica,sans-serif;
    font-size: 18px;
    height: 150px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    width: 300px;
}
.vjs-no-js a, .vjs-no-js a:visited
{
    color: #66a8cc;
}
.video-js .vjs-big-play-button
{
    background-color: #2b333f;
    background-color: rgba(43,51,63,.7);
    border: .06666em solid #fff;
    border-radius: .3em;
    cursor: pointer;
    display: block;
    font-size: 3em;
    height: 1.63332em;
    left: 10px;
    line-height: 1.5em;
    opacity: 1;
    padding: 0;
    position: absolute;
    top: 10px;
    transition: all .4s;
    width: 3em;
}
.vjs-big-play-centered .vjs-big-play-button
{
    left: 50%;
    margin-left: -1.5em;
    margin-top: -.81666em;
    top: 50%;
}
.video-js .vjs-big-play-button:focus, .video-js:hover .vjs-big-play-button
{
    background-color: #73859f;
    background-color: rgba(115,133,159,.5);
    border-color: #fff;
    transition: all 0s;
}
.vjs-controls-disabled .vjs-big-play-button, .vjs-error .vjs-big-play-button, .vjs-has-started .vjs-big-play-button, .vjs-using-native-controls .vjs-big-play-button
{
    display: none;
}
.vjs-has-started.vjs-paused.vjs-show-big-play-button-on-pause .vjs-big-play-button
{
    display: block;
}
.video-js button
{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
    border: none;
    color: inherit;
    display: inline-block;
    font-size: inherit;
    line-height: inherit;
    text-decoration: none;
    text-transform: none;
    transition: none;
}
.vjs-control .vjs-button
{
    height: 100%;
    width: 100%;
}
.video-js .vjs-control.vjs-close-button
{
    cursor: pointer;
    height: 3em;
    position: absolute;
    right: 0;
    top: .5em;
    z-index: 2;
}
.video-js .vjs-modal-dialog
{
    background: rgba(0,0,0,.8);
    background: linear-gradient(180deg,rgba(0,0,0,.8),hsla(0,0%,100%,0));
    overflow: auto;
}
.video-js .vjs-modal-dialog>*
{
    box-sizing: border-box;
}
.vjs-modal-dialog .vjs-modal-dialog-content
{
    font-size: 1.2em;
    line-height: 1.5;
    padding: 20px 24px;
    z-index: 1;
}
.vjs-menu-button
{
    cursor: pointer;
}
.vjs-menu-button.vjs-disabled
{
    cursor: default;
}
.vjs-workinghover .vjs-menu-button.vjs-disabled:hover .vjs-menu
{
    display: none;
}
.vjs-menu .vjs-menu-content
{
    display: block;
    font-family: Arial,Helvetica,sans-serif;
    margin: 0;
    overflow: auto;
    padding: 0;
}
.vjs-menu .vjs-menu-content>*
{
    box-sizing: border-box;
}
.vjs-scrubbing .vjs-control.vjs-menu-button:hover .vjs-menu
{
    display: none;
}
.vjs-menu li
{
    font-size: 1.2em;
    line-height: 1.4em;
    list-style: none;
    margin: 0;
    padding: .2em 0;
    text-align: center;
    text-transform: lowercase;
}
.js-focus-visible .vjs-menu li.vjs-menu-item:hover, .vjs-menu li.vjs-menu-item:focus, .vjs-menu li.vjs-menu-item:hover
{
    background-color: #73859f;
    background-color: rgba(115,133,159,.5);
}
.js-focus-visible .vjs-menu li.vjs-selected:hover, .vjs-menu li.vjs-selected, .vjs-menu li.vjs-selected:focus, .vjs-menu li.vjs-selected:hover
{
    background-color: #fff;
    color: #2b333f;
}
.js-focus-visible .vjs-menu :not(.vjs-selected):focus:not(.focus-visible), .video-js .vjs-menu :not(.vjs-selected):focus:not(.focus-visible)
{
    background: none;
}
.js-focus-visible .vjs-menu :not(.vjs-selected):focus:not(.focus-visible), .video-js .vjs-menu :not(.vjs-selected):focus:not(:focus-visible)
{
    background: none;
}
.vjs-menu li.vjs-menu-title
{
    cursor: default;
    font-size: 1em;
    font-weight: 700;
    line-height: 2em;
    margin: 0 0 .3em;
    padding: 0;
    text-align: center;
    text-transform: uppercase;
}
.vjs-menu-button-popup .vjs-menu
{
    border-top-color: rgba(43,51,63,.7);
    bottom: 0;
    display: none;
    height: 0;
    left: -3em;
    margin-bottom: 1.5em;
    position: absolute;
    width: 10em;
}
.vjs-menu-button-popup .vjs-menu .vjs-menu-content
{
    background-color: #2b333f;
    background-color: rgba(43,51,63,.7);
    bottom: 1.5em;
    max-height: 15em;
    position: absolute;
    width: 100%;
}
.vjs-layout-tiny .vjs-menu-button-popup .vjs-menu .vjs-menu-content, .vjs-layout-x-small .vjs-menu-button-popup .vjs-menu .vjs-menu-content
{
    max-height: 5em;
}
.vjs-layout-small .vjs-menu-button-popup .vjs-menu .vjs-menu-content
{
    max-height: 10em;
}
.vjs-layout-medium .vjs-menu-button-popup .vjs-menu .vjs-menu-content
{
    max-height: 14em;
}
.vjs-layout-huge .vjs-menu-button-popup .vjs-menu .vjs-menu-content, .vjs-layout-large .vjs-menu-button-popup .vjs-menu .vjs-menu-content, .vjs-layout-x-large .vjs-menu-button-popup .vjs-menu .vjs-menu-content
{
    max-height: 25em;
}
.vjs-menu-button-popup .vjs-menu.vjs-lock-showing, .vjs-workinghover .vjs-menu-button-popup.vjs-hover .vjs-menu
{
    display: block;
}
.video-js .vjs-menu-button-inline
{
    overflow: hidden;
    transition: all .4s;
}
.video-js .vjs-menu-button-inline:before
{
    width: 2.222222222em;
}
.video-js .vjs-menu-button-inline.vjs-slider-active, .video-js .vjs-menu-button-inline:focus, .video-js .vjs-menu-button-inline:hover, .video-js.vjs-no-flex .vjs-menu-button-inline
{
    width: 12em;
}
.vjs-menu-button-inline .vjs-menu
{
    height: 100%;
    left: 4em;
    margin: 0;
    opacity: 0;
    padding: 0;
    position: absolute;
    top: 0;
    transition: all .4s;
    width: auto;
}
.vjs-menu-button-inline.vjs-slider-active .vjs-menu, .vjs-menu-button-inline:focus .vjs-menu, .vjs-menu-button-inline:hover .vjs-menu
{
    display: block;
    opacity: 1;
}
.vjs-no-flex .vjs-menu-button-inline .vjs-menu
{
    display: block;
    opacity: 1;
    position: relative;
    width: auto;
}
.vjs-no-flex .vjs-menu-button-inline.vjs-slider-active .vjs-menu, .vjs-no-flex .vjs-menu-button-inline:focus .vjs-menu, .vjs-no-flex .vjs-menu-button-inline:hover .vjs-menu
{
    width: auto;
}
.vjs-menu-button-inline .vjs-menu-content
{
    height: 100%;
    margin: 0;
    overflow: hidden;
    width: auto;
}
.video-js .vjs-control-bar
{
    background-color: #2b333f;
    background-color: rgba(43,51,63,.7);
    bottom: 0;
    display: none;
    height: 3em;
    left: 0;
    position: absolute;
    right: 0;
    width: 100%;
}
.vjs-audio-only-mode .vjs-control-bar, .vjs-has-started .vjs-control-bar
{
    display: flex;
    opacity: 1;
    transition: visibility .1s,opacity .1s;
    visibility: visible;
}
.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar
{
    opacity: 0;
    pointer-events: none;
    transition: visibility 1s,opacity 1s;
    visibility: visible;
}
.vjs-controls-disabled .vjs-control-bar, .vjs-error .vjs-control-bar, .vjs-using-native-controls .vjs-control-bar
{
    display: none!important;
}
.vjs-audio-only-mode.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar, .vjs-audio.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar
{
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}
.vjs-has-started.vjs-no-flex .vjs-control-bar
{
    display: table;
}
.video-js .vjs-control
{
    flex: none;
    height: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    text-align: center;
    width: 4em;
}
.video-js .vjs-control.vjs-visible-text
{
    padding-left: 1em;
    padding-right: 1em;
    width: auto;
}
.vjs-button>.vjs-icon-placeholder:before
{
    font-size: 1.8em;
    line-height: 1.67;
}
.vjs-button>.vjs-icon-placeholder
{
    display: block;
}
.video-js .vjs-control:focus, .video-js .vjs-control:focus:before, .video-js .vjs-control:hover:before
{
    text-shadow: 0 0 1em #fff;
}
.video-js :not(.vjs-visible-text)>.vjs-control-text
{
    clip: rect(0 0 0 0);
    border: 0;
    height: 1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}
.vjs-no-flex .vjs-control
{
    display: table-cell;
    vertical-align: middle;
}
.video-js .vjs-custom-control-spacer
{
    display: none;
}
.video-js .vjs-progress-control
{
    align-items: center;
    cursor: pointer;
    display: flex;
    flex: auto;
    min-width: 4em;
    touch-action: none;
}
.video-js .vjs-progress-control.disabled
{
    cursor: default;
}
.vjs-live .vjs-progress-control
{
    display: none;
}
.vjs-liveui .vjs-progress-control
{
    align-items: center;
    display: flex;
}
.vjs-no-flex .vjs-progress-control
{
    width: auto;
}
.video-js .vjs-progress-holder
{
    flex: auto;
    height: .3em;
    transition: all .2s;
}
.video-js .vjs-progress-control .vjs-progress-holder
{
    margin: 0 10px;
}
.video-js .vjs-progress-control:hover .vjs-progress-holder
{
    font-size: 1.6666666667em;
}
.video-js .vjs-progress-control:hover .vjs-progress-holder.disabled
{
    font-size: 1em;
}
.video-js .vjs-progress-holder .vjs-load-progress, .video-js .vjs-progress-holder .vjs-load-progress div, .video-js .vjs-progress-holder .vjs-play-progress
{
    display: block;
    height: 100%;
    margin: 0;
    padding: 0;
    position: absolute;
    width: 0;
}
.video-js .vjs-play-progress
{
    background-color: #fff;
}
.video-js .vjs-play-progress:before
{
    font-size: .9em;
    position: absolute;
    right: -.5em;
    top: -.3333333333em;
    z-index: 1;
}
.video-js .vjs-load-progress
{
    background: rgba(115,133,159,.5);
}
.video-js .vjs-load-progress div
{
    background: rgba(115,133,159,.75);
}
.video-js .vjs-time-tooltip
{
    background-color: #fff;
    background-color: hsla(0,0%,100%,.8);
    border-radius: .3em;
    color: #000;
    float: right;
    font-family: Arial,Helvetica,sans-serif;
    font-size: 1em;
    padding: 6px 8px 8px;
    pointer-events: none;
    position: absolute;
    top: -3.4em;
    visibility: hidden;
    z-index: 1;
}
.video-js .vjs-progress-holder:focus .vjs-time-tooltip
{
    display: none;
}
.video-js .vjs-progress-control:hover .vjs-progress-holder:focus .vjs-time-tooltip, .video-js .vjs-progress-control:hover .vjs-time-tooltip
{
    display: block;
    font-size: .6em;
    visibility: visible;
}
.video-js .vjs-progress-control.disabled:hover .vjs-time-tooltip
{
    font-size: 1em;
}
.video-js .vjs-progress-control .vjs-mouse-display
{
    background-color: #000;
    display: none;
    height: 100%;
    position: absolute;
    width: 1px;
    z-index: 1;
}
.vjs-no-flex .vjs-progress-control .vjs-mouse-display
{
    z-index: 0;
}
.video-js .vjs-progress-control:hover .vjs-mouse-display
{
    display: block;
}
.video-js.vjs-user-inactive .vjs-progress-control .vjs-mouse-display
{
    opacity: 0;
    transition: visibility 1s,opacity 1s;
    visibility: hidden;
}
.video-js.vjs-user-inactive.vjs-no-flex .vjs-progress-control .vjs-mouse-display
{
    display: none;
}
.vjs-mouse-display .vjs-time-tooltip
{
    background-color: #000;
    background-color: rgba(0,0,0,.8);
    color: #fff;
}
.video-js .vjs-slider
{
    -webkit-touch-callout: none;
    background-color: #73859f;
    background-color: rgba(115,133,159,.5);
    cursor: pointer;
    margin: 0 .45em;
    padding: 0;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
.video-js .vjs-slider.disabled
{
    cursor: default;
}
.video-js .vjs-slider:focus
{
    box-shadow: 0 0 1em #fff;
    text-shadow: 0 0 1em #fff;
}
.video-js .vjs-mute-control
{
    cursor: pointer;
    flex: none;
}
.video-js .vjs-volume-control
{
    cursor: pointer;
    display: flex;
    margin-right: 1em;
}
.video-js .vjs-volume-control.vjs-volume-horizontal
{
    width: 5em;
}
.video-js .vjs-volume-panel .vjs-volume-control
{
    height: 1px;
    margin-left: -1px;
    opacity: 0;
    visibility: visible;
    width: 1px;
}
.video-js .vjs-volume-panel
{
    transition: width 1s;
}
.video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active, .video-js .vjs-volume-panel .vjs-volume-control:active, .video-js .vjs-volume-panel.vjs-hover .vjs-mute-control~.vjs-volume-control, .video-js .vjs-volume-panel.vjs-hover .vjs-volume-control, .video-js .vjs-volume-panel:active .vjs-volume-control, .video-js .vjs-volume-panel:focus .vjs-volume-control
{
    opacity: 1;
    position: relative;
    transition: visibility .1s,opacity .1s,height .1s,width .1s,left 0s,top 0s;
    visibility: visible;
}
.video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active.vjs-volume-horizontal, .video-js .vjs-volume-panel .vjs-volume-control:active.vjs-volume-horizontal, .video-js .vjs-volume-panel.vjs-hover .vjs-mute-control~.vjs-volume-control.vjs-volume-horizontal, .video-js .vjs-volume-panel.vjs-hover .vjs-volume-control.vjs-volume-horizontal, .video-js .vjs-volume-panel:active .vjs-volume-control.vjs-volume-horizontal, .video-js .vjs-volume-panel:focus .vjs-volume-control.vjs-volume-horizontal
{
    height: 3em;
    margin-right: 0;
    width: 5em;
}
.video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active.vjs-volume-vertical, .video-js .vjs-volume-panel .vjs-volume-control:active.vjs-volume-vertical, .video-js .vjs-volume-panel.vjs-hover .vjs-mute-control~.vjs-volume-control.vjs-volume-vertical, .video-js .vjs-volume-panel.vjs-hover .vjs-volume-control.vjs-volume-vertical, .video-js .vjs-volume-panel:active .vjs-volume-control.vjs-volume-vertical, .video-js .vjs-volume-panel:focus .vjs-volume-control.vjs-volume-vertical
{
    left: -3.5em;
    transition: left 0s;
}
.video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover, .video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active, .video-js .vjs-volume-panel.vjs-volume-panel-horizontal:active
{
    transition: width .1s;
    width: 10em;
}
.video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-mute-toggle-only
{
    width: 4em;
}
.video-js .vjs-volume-panel .vjs-volume-control.vjs-volume-vertical
{
    height: 8em;
    left: -3000em;
    transition: visibility 1s,opacity 1s,height 1s 1s,width 1s 1s,left 1s 1s,top 1s 1s;
    width: 3em;
}
.video-js .vjs-volume-panel .vjs-volume-control.vjs-volume-horizontal
{
    transition: visibility 1s,opacity 1s,height 1s 1s,width 1s,left 1s 1s,top 1s 1s;
}
.video-js.vjs-no-flex .vjs-volume-panel .vjs-volume-control.vjs-volume-horizontal
{
    height: 3em;
    opacity: 1;
    position: relative;
    transition: none;
    visibility: visible;
    width: 5em;
}
.video-js.vjs-no-flex .vjs-volume-control.vjs-volume-vertical, .video-js.vjs-no-flex .vjs-volume-panel .vjs-volume-control.vjs-volume-vertical
{
    bottom: 3em;
    left: .5em;
    position: absolute;
}
.video-js .vjs-volume-panel
{
    display: flex;
}
.video-js .vjs-volume-bar
{
    margin: 1.35em .45em;
}
.vjs-volume-bar.vjs-slider-horizontal
{
    height: .3em;
    width: 5em;
}
.vjs-volume-bar.vjs-slider-vertical
{
    height: 5em;
    margin: 1.35em auto;
    width: .3em;
}
.video-js .vjs-volume-level
{
    background-color: #fff;
    bottom: 0;
    left: 0;
    position: absolute;
}
.video-js .vjs-volume-level:before
{
    font-size: .9em;
    position: absolute;
    z-index: 1;
}
.vjs-slider-vertical .vjs-volume-level
{
    width: .3em;
}
.vjs-slider-vertical .vjs-volume-level:before
{
    left: -.3em;
    top: -.5em;
    z-index: 1;
}
.vjs-slider-horizontal .vjs-volume-level
{
    height: .3em;
}
.vjs-slider-horizontal .vjs-volume-level:before
{
    right: -.5em;
    top: -.3em;
}
.video-js .vjs-volume-panel.vjs-volume-panel-vertical
{
    width: 4em;
}
.vjs-volume-bar.vjs-slider-vertical .vjs-volume-level
{
    height: 100%;
}
.vjs-volume-bar.vjs-slider-horizontal .vjs-volume-level
{
    width: 100%;
}
.video-js .vjs-volume-vertical
{
    background-color: #2b333f;
    background-color: rgba(43,51,63,.7);
    bottom: 8em;
    height: 8em;
    width: 3em;
}
.video-js .vjs-volume-horizontal .vjs-menu
{
    left: -2em;
}
.video-js .vjs-volume-tooltip
{
    background-color: #fff;
    background-color: hsla(0,0%,100%,.8);
    border-radius: .3em;
    color: #000;
    float: right;
    font-family: Arial,Helvetica,sans-serif;
    font-size: 1em;
    padding: 6px 8px 8px;
    pointer-events: none;
    position: absolute;
    top: -3.4em;
    visibility: hidden;
    z-index: 1;
}
.video-js .vjs-volume-control:hover .vjs-progress-holder:focus .vjs-volume-tooltip, .video-js .vjs-volume-control:hover .vjs-volume-tooltip
{
    display: block;
    font-size: 1em;
    visibility: visible;
}
.video-js .vjs-volume-vertical:hover .vjs-progress-holder:focus .vjs-volume-tooltip, .video-js .vjs-volume-vertical:hover .vjs-volume-tooltip
{
    left: 1em;
    top: -12px;
}
.video-js .vjs-volume-control.disabled:hover .vjs-volume-tooltip
{
    font-size: 1em;
}
.video-js .vjs-volume-control .vjs-mouse-display
{
    background-color: #000;
    display: none;
    height: 1px;
    position: absolute;
    width: 100%;
    z-index: 1;
}
.video-js .vjs-volume-horizontal .vjs-mouse-display
{
    height: 100%;
    width: 1px;
}
.vjs-no-flex .vjs-volume-control .vjs-mouse-display
{
    z-index: 0;
}
.video-js .vjs-volume-control:hover .vjs-mouse-display
{
    display: block;
}
.video-js.vjs-user-inactive .vjs-volume-control .vjs-mouse-display
{
    opacity: 0;
    transition: visibility 1s,opacity 1s;
    visibility: hidden;
}
.video-js.vjs-user-inactive.vjs-no-flex .vjs-volume-control .vjs-mouse-display
{
    display: none;
}
.vjs-mouse-display .vjs-volume-tooltip
{
    background-color: #000;
    background-color: rgba(0,0,0,.8);
    color: #fff;
}
.vjs-poster
{
    background-color: #000;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: contain;
    bottom: 0;
    cursor: pointer;
    display: inline-block;
    height: 100%;
    left: 0;
    margin: 0;
    padding: 0;
    position: absolute;
    right: 0;
    top: 0;
    vertical-align: middle;
}
.vjs-has-started .vjs-poster, .vjs-using-native-controls .vjs-poster
{
    display: none;
}
.vjs-audio.vjs-has-started .vjs-poster, .vjs-has-started.vjs-audio-poster-mode .vjs-poster
{
    display: block;
}
.video-js .vjs-live-control
{
    align-items: flex-start;
    display: flex;
    flex: auto;
    font-size: 1em;
    line-height: 3em;
}
.vjs-no-flex .vjs-live-control
{
    display: table-cell;
    text-align: left;
    width: auto;
}
.video-js.vjs-liveui .vjs-live-control, .video-js:not(.vjs-live) .vjs-live-control
{
    display: none;
}
.video-js .vjs-seek-to-live-control
{
    align-items: center;
    cursor: pointer;
    display: inline-flex;
    flex: none;
    font-size: 1em;
    height: 100%;
    line-height: 3em;
    min-width: 4em;
    padding-left: .5em;
    padding-right: .5em;
    width: auto;
}
.vjs-no-flex .vjs-seek-to-live-control
{
    display: table-cell;
    text-align: left;
    width: auto;
}
.video-js.vjs-live:not(.vjs-liveui) .vjs-seek-to-live-control, .video-js:not(.vjs-live) .vjs-seek-to-live-control
{
    display: none;
}
.vjs-seek-to-live-control.vjs-control.vjs-at-live-edge
{
    cursor: auto;
}
.vjs-seek-to-live-control .vjs-icon-placeholder
{
    color: #888;
    margin-right: .5em;
}
.vjs-seek-to-live-control.vjs-control.vjs-at-live-edge .vjs-icon-placeholder
{
    color: #f00;
}
.video-js .vjs-time-control
{
    flex: none;
    font-size: 1em;
    line-height: 3em;
    min-width: 2em;
    padding-left: 1em;
    padding-right: 1em;
    width: auto;
}
.video-js .vjs-current-time, .video-js .vjs-duration, .vjs-live .vjs-time-control, .vjs-no-flex .vjs-current-time, .vjs-no-flex .vjs-duration
{
    display: none;
}
.vjs-time-divider
{
    display: none;
    line-height: 3em;
}
.vjs-live .vjs-time-divider
{
    display: none;
}
.video-js .vjs-play-control
{
    cursor: pointer;
}
.video-js .vjs-play-control .vjs-icon-placeholder
{
    flex: none;
}
.vjs-text-track-display
{
    bottom: 3em;
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
}
.video-js.vjs-controls-disabled .vjs-text-track-display, .video-js.vjs-user-inactive.vjs-playing .vjs-text-track-display
{
    bottom: 1em;
}
.video-js .vjs-text-track
{
    font-size: 1.4em;
    margin-bottom: .1em;
    text-align: center;
}
.vjs-subtitles
{
    color: #fff;
}
.vjs-captions
{
    color: #fc6;
}
.vjs-tt-cue
{
    display: block;
}
video::-webkit-media-text-track-display
{
    transform: translateY(-3em);
}
.video-js.vjs-controls-disabled video::-webkit-media-text-track-display, .video-js.vjs-user-inactive.vjs-playing video::-webkit-media-text-track-display
{
    transform: translateY(-1.5em);
}
.video-js .vjs-picture-in-picture-control
{
    cursor: pointer;
    flex: none;
}
.video-js.vjs-audio-only-mode .vjs-picture-in-picture-control
{
    display: none;
}
.video-js .vjs-fullscreen-control
{
    cursor: pointer;
    flex: none;
}
.video-js.vjs-audio-only-mode .vjs-fullscreen-control
{
    display: none;
}
.vjs-playback-rate .vjs-playback-rate-value, .vjs-playback-rate>.vjs-menu-button
{
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.vjs-playback-rate .vjs-playback-rate-value
{
    font-size: 1.5em;
    line-height: 2;
    pointer-events: none;
    text-align: center;
}
.vjs-playback-rate .vjs-menu
{
    left: 0;
    width: 4em;
}
.vjs-error .vjs-error-display .vjs-modal-dialog-content
{
    font-size: 1.4em;
    text-align: center;
}
.vjs-error .vjs-error-display:before
{
    color: #fff;
    content: "X";
    font-family: Arial,Helvetica,sans-serif;
    font-size: 4em;
    left: 0;
    line-height: 1;
    margin-top: -.5em;
    position: absolute;
    text-align: center;
    text-shadow: .05em .05em .1em #000;
    top: 50%;
    vertical-align: middle;
    width: 100%;
}
.vjs-loading-spinner
{
    background-clip: padding-box;
    border: 6px solid rgba(43,51,63,.7);
    border-radius: 25px;
    box-sizing: border-box;
    display: none;
    height: 50px;
    left: 50%;
    margin: -25px 0 0 -25px;
    opacity: .85;
    position: absolute;
    text-align: left;
    top: 50%;
    visibility: hidden;
    width: 50px;
}
.vjs-seeking .vjs-loading-spinner, .vjs-waiting .vjs-loading-spinner
{
    animation: vjs-spinner-show 0s linear .3s forwards;
    display: block;
}
.vjs-loading-spinner:after, .vjs-loading-spinner:before
{
    border: inherit;
    border-color: #fff transparent transparent;
    border-radius: inherit;
    box-sizing: inherit;
    content: "";
    height: inherit;
    margin: -6px;
    opacity: 1;
    position: absolute;
    width: inherit;
}
.vjs-seeking .vjs-loading-spinner:after, .vjs-seeking .vjs-loading-spinner:before, .vjs-waiting .vjs-loading-spinner:after, .vjs-waiting .vjs-loading-spinner:before
{
    animation: vjs-spinner-spin 1.1s cubic-bezier(.6,.2,0,.8) infinite,vjs-spinner-fade 1.1s linear infinite;
}
.vjs-seeking .vjs-loading-spinner:before, .vjs-waiting .vjs-loading-spinner:before
{
    border-top-color: #fff;
}
.vjs-seeking .vjs-loading-spinner:after, .vjs-waiting .vjs-loading-spinner:after
{
    animation-delay: .44s;
    border-top-color: #fff;
}
@keyframes vjs-spinner-show
{
    to
    {
        visibility: visible;
    }
}
@keyframes vjs-spinner-spin
{
    to
    {
        transform: rotate(1turn);
    }
}
@keyframes vjs-spinner-fade
{
    0%
    {
        border-top-color: #73859f;
    }
    20%
    {
        border-top-color: #73859f;
    }
    35%
    {
        border-top-color: #fff;
    }
    60%
    {
        border-top-color: #73859f;
    }
    to
    {
        border-top-color: #73859f;
    }
}
.video-js.vjs-audio-only-mode .vjs-captions-button
{
    display: none;
}
.vjs-chapters-button .vjs-menu ul
{
    width: 24em;
}
.video-js.vjs-audio-only-mode .vjs-descriptions-button
{
    display: none;
}
.video-js .vjs-subs-caps-button+.vjs-menu .vjs-captions-menu-item .vjs-menu-item-text .vjs-icon-placeholder
{
    display: inline-block;
    margin-bottom: -.1em;
    vertical-align: middle;
}
.video-js .vjs-subs-caps-button+.vjs-menu .vjs-captions-menu-item .vjs-menu-item-text .vjs-icon-placeholder:before
{
    content: "";
    font-family: VideoJS;
    font-size: 1.5em;
    line-height: inherit;
}
.video-js.vjs-audio-only-mode .vjs-subs-caps-button
{
    display: none;
}
.video-js .vjs-audio-button+.vjs-menu .vjs-main-desc-menu-item .vjs-menu-item-text .vjs-icon-placeholder
{
    display: inline-block;
    margin-bottom: -.1em;
    vertical-align: middle;
}
.video-js .vjs-audio-button+.vjs-menu .vjs-main-desc-menu-item .vjs-menu-item-text .vjs-icon-placeholder:before
{
    content: " ";
    font-family: VideoJS;
    font-size: 1.5em;
    line-height: inherit;
}
.video-js.vjs-layout-small .vjs-current-time, .video-js.vjs-layout-small .vjs-duration, .video-js.vjs-layout-small .vjs-playback-rate, .video-js.vjs-layout-small .vjs-remaining-time, .video-js.vjs-layout-small .vjs-time-divider, .video-js.vjs-layout-small .vjs-volume-control, .video-js.vjs-layout-tiny .vjs-current-time, .video-js.vjs-layout-tiny .vjs-duration, .video-js.vjs-layout-tiny .vjs-playback-rate, .video-js.vjs-layout-tiny .vjs-remaining-time, .video-js.vjs-layout-tiny .vjs-time-divider, .video-js.vjs-layout-tiny .vjs-volume-control, .video-js.vjs-layout-x-small .vjs-current-time, .video-js.vjs-layout-x-small .vjs-duration, .video-js.vjs-layout-x-small .vjs-playback-rate, .video-js.vjs-layout-x-small .vjs-remaining-time, .video-js.vjs-layout-x-small .vjs-time-divider, .video-js.vjs-layout-x-small .vjs-volume-control
{
    display: none;
}
.video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover, .video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active, .video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal:active, .video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal:hover, .video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover, .video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active, .video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal:active, .video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal:hover, .video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover, .video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active, .video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal:active, .video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal:hover
{
    width: auto;
}
.video-js.vjs-layout-tiny .vjs-progress-control, .video-js.vjs-layout-x-small .vjs-progress-control
{
    display: none;
}
.video-js.vjs-layout-x-small .vjs-custom-control-spacer
{
    display: block;
    flex: auto;
}
.video-js.vjs-layout-x-small.vjs-no-flex .vjs-custom-control-spacer
{
    width: auto;
}
.vjs-modal-dialog.vjs-text-track-settings
{
    background-color: #2b333f;
    background-color: rgba(43,51,63,.75);
    color: #fff;
    height: 70%;
}
.vjs-text-track-settings .vjs-modal-dialog-content
{
    display: table;
}
.vjs-text-track-settings .vjs-track-settings-colors, .vjs-text-track-settings .vjs-track-settings-controls, .vjs-text-track-settings .vjs-track-settings-font
{
    display: table-cell;
}
.vjs-text-track-settings .vjs-track-settings-controls
{
    text-align: right;
    vertical-align: bottom;
}
@supports(
display: grid)
{
.vjs-text-track-settings .vjs-modal-dialog-content
{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    padding: 20px 24px 0;
}
.vjs-track-settings-controls .vjs-default-button
{
    margin-bottom: 20px;
}
.vjs-text-track-settings .vjs-track-settings-controls
{
    grid-column: 1/-1;
}
.vjs-layout-small .vjs-text-track-settings .vjs-modal-dialog-content, .vjs-layout-tiny .vjs-text-track-settings .vjs-modal-dialog-content, .vjs-layout-x-small .vjs-text-track-settings .vjs-modal-dialog-content
{
    grid-template-columns: 1fr;
}
}
.vjs-track-setting>select
{
    margin-bottom: .5em;
    margin-right: 1em;
}
.vjs-text-track-settings fieldset
{
    border: none;
    margin: 5px;
    padding: 3px;
}
.vjs-text-track-settings fieldset span
{
    display: inline-block;
}
.vjs-text-track-settings fieldset span>select
{
    max-width: 7.3em;
}
.vjs-text-track-settings legend
{
    color: #fff;
    margin: 0 0 5px;
}
.vjs-text-track-settings .vjs-label
{
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px,1px,1px,1px);
    border: 0;
    display: block;
    height: 1px;
    margin: 0 0 5px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}
.vjs-track-settings-controls button:active, .vjs-track-settings-controls button:focus
{
    background-image: linear-gradient(0deg,#fff 88%,#73859f);
    outline-style: solid;
    outline-width: medium;
}
.vjs-track-settings-controls button:hover
{
    color: rgba(43,51,63,.75);
}
.vjs-track-settings-controls button
{
    background-color: #fff;
    background-image: linear-gradient(-180deg,#fff 88%,#73859f);
    border-radius: 2px;
    color: #2b333f;
    cursor: pointer;
}
.vjs-track-settings-controls .vjs-default-button
{
    margin-right: 1em;
}
@media print
{
    .video-js>:not(.vjs-tech):not(.vjs-poster)
    {
        visibility: hidden;
    }
}
.vjs-resize-manager
{
    border: none;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1000;
}
.js-focus-visible .video-js :focus:not(.focus-visible), .video-js :focus:not(.focus-visible)
{
    outline: none;
}
.video-js :focus:not(:focus-visible)
{
    outline: none;
}
/*!Don't remove this!
 * duDialog plugin styles
 * 
 * Author: Dionlee Uy
 * Email: dionleeuy@gmail.com
 */
.du-dialog
{
    align-items: center;
    background-color: transparent;
    display: flex;
    font-family: Roboto,sans-serif;
    height: 100%;
    justify-content: center;
    left: 0;
    opacity: 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    transition: background-color .2s linear,opacity .2s ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    visibility: hidden;
    width: 100%;
    will-change: background-color,visibility,opacity;
    z-index: 999999;
}
.du-dialog .dlg-wrapper
{
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 11px 15px -7px rgba(0,0,0,.2),0 24px 38px 3px rgba(0,0,0,.14),0 9px 46px 8px rgba(0,0,0,.12);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    max-height: 90%;
    max-width: 90%;
    min-width: 280px;
    outline: none;
    overflow: hidden;
    position: relative;
    transform: scale(.8);
    transition: transform .18s cubic-bezier(.4,0,.2,1);
}
.du-dialog .dlg-wrapper .dlg-loader
{
    height: 4px;
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .2s linear;
}
.du-dialog .dlg-wrapper .dlg-loader .loader-wrapper
{
    display: flex;
    height: 100%;
    position: relative;
}
.du-dialog .dlg-wrapper .dlg-loader .loader-wrapper .loading-buffer
{
    background-color: rgba(30,136,229,.4);
    height: 100%;
    width: 100%;
}
.du-dialog .dlg-wrapper .dlg-loader .loader-wrapper .loading-indicator
{
    background-color: #1e88e5;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transform: translateX(-100%);
    width: 46.67%;
}
.du-dialog .dlg-header
{
    font-size: 20px;
    font-weight: 500;
    letter-spacing: .02em;
    line-height: 32px;
    padding: 16px 24px 8px;
}
.du-dialog .dlg-header .dlg-search
{
    background-color: transparent;
    border: none;
    color: inherit;
    display: block;
    font-family: inherit;
    font-size: 16px;
    font-weight: 400;
    height: 36px;
    line-height: 36px;
    margin-top: 8px;
    outline: none;
    width: 100%;
}
.du-dialog .dlg-content
{
    border-top: 1px solid transparent;
    color: #757575;
    flex: 1 auto;
    font-size: 16px;
    letter-spacing: .03em;
    line-height: 24px;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0 24px 20px;
}
.du-dialog .dlg-content.content--scrolled
{
    border-top: 1px solid #e0e0e0;
}
.du-dialog .dlg-select-item
{
    cursor: pointer;
    margin: 0 -24px;
    padding: 0 24px;
    position: relative;
    transition: background-color .2s linear;
}
.du-dialog .dlg-select-item.select--group
{
    font-weight: 500;
    line-height: 36px;
    margin-top: 8px;
    pointer-events: none;
}
.du-dialog .dlg-select-item:not(.select-group):hover
{
    background-color: #f5f5f5;
}
.du-dialog .dlg-select-item:not(.select-group):active
{
    background-color: #e0e0e0;
}
.du-dialog .dlg-select-item .dlg-select-checkbox, .du-dialog .dlg-select-item .dlg-select-radio
{
    height: 18px;
    opacity: 0;
    position: absolute;
    top: 12px;
    width: 18px;
}
.du-dialog .dlg-select-item .dlg-select-lbl
{
    cursor: pointer;
    display: inline-block;
    margin: 0;
    padding-left: 40px;
    position: relative;
}
.du-dialog .dlg-select-item .dlg-select-lbl .select-item
{
    display: block;
    line-height: 48px;
}
.du-dialog .dlg-select-item .dlg-select-checkbox+.dlg-select-lbl:before
{
    border: 2px solid #757575;
    border-radius: 2px;
    box-sizing: content-box;
    content: "";
    cursor: pointer;
    display: block;
    height: 16px;
    left: 6px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all .2s cubic-bezier(0,0,.2,1);
    width: 16px;
    will-change: border-color;
}
.du-dialog .dlg-select-item .dlg-select-checkbox:checked+.dlg-select-lbl:before
{
    background-color: #1e88e5;
    border-color: #1e88e5;
}
.du-dialog .dlg-select-item .dlg-select-checkbox+.dlg-select-lbl:after
{
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    box-sizing: content-box;
    content: "";
    cursor: pointer;
    display: block;
    height: 6px;
    left: 9px;
    margin-top: -6px;
    position: absolute;
    top: 50%;
    transform: rotate(-45deg) scale(0);
    transition: all .2s cubic-bezier(0,0,.2,1);
    width: 12px;
    will-change: transform;
}
.du-dialog .dlg-select-item .dlg-select-checkbox:checked+.dlg-select-lbl:after
{
    transform: rotate(-45deg) scale(1);
}
.du-dialog .dlg-select-item.item--nomatch
{
    display: none;
}
.du-dialog .dlg-select-item.item--disabled, .du-dialog .dlg-select-item.item--disabled .dlg-select-lbl, .du-dialog .dlg-select-item.item--disabled .dlg-select-lbl:after, .du-dialog .dlg-select-item.item--disabled .dlg-select-lbl:before
{
    cursor: default;
}
.du-dialog .dlg-select-item .dlg-select-radio+.dlg-select-lbl:before
{
    border: 2px solid #757575;
    border-radius: 50%;
    box-sizing: content-box;
    content: "";
    cursor: pointer;
    display: block;
    height: 16px;
    left: 6px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all .2s cubic-bezier(0,0,.2,1);
    width: 16px;
    will-change: border-color;
}
.du-dialog .dlg-select-item .dlg-select-radio:checked+.dlg-select-lbl:before
{
    border-color: #1e88e5;
}
.du-dialog .dlg-select-item .dlg-select-radio+.dlg-select-lbl:after
{
    background-color: #1e88e5;
    border-radius: 50%;
    box-sizing: content-box;
    content: "";
    cursor: pointer;
    height: 10px;
    left: 11px;
    margin-top: -5px;
    position: absolute;
    top: 50%;
    transform: scale(0);
    transform-origin: center;
    transition: transform .28s cubic-bezier(.4,0,.2,1);
    width: 10px;
    will-change: transform,background-color;
}
.du-dialog .dlg-select-item .dlg-select-radio:checked+.dlg-select-lbl:after
{
    transform: scale(1);
}
.du-dialog .dlg-actions
{
    padding: 8px;
    text-align: right;
}
.du-dialog .dlg-actions .opt-out-grp
{
    color: #757575;
    display: flex;
    margin: 0 16px 12px;
    position: relative;
}
.du-dialog .dlg-actions .opt-out-grp label
{
    align-items: center;
    display: flex;
    height: 20px;
    margin: 0;
    padding-left: 16px;
}
.du-dialog .dlg-actions .opt-out-grp input[type=checkbox]
{
    height: 18px;
    margin: 0;
    opacity: 0;
    width: 18px;
}
.du-dialog .dlg-actions .opt-out-grp input[type=checkbox]+label:before
{
    border: 2px solid #757575;
    border-radius: 2px;
    box-sizing: content-box;
    content: "";
    cursor: pointer;
    display: block;
    height: 16px;
    left: 6px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all .2s cubic-bezier(0,0,.2,1);
    width: 16px;
    will-change: border-color;
}
.du-dialog .dlg-actions .opt-out-grp input[type=checkbox]:checked+label:before
{
    background-color: #1e88e5;
    border-color: #1e88e5;
}
.du-dialog .dlg-actions .opt-out-grp input[type=checkbox]+label:after
{
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    box-sizing: content-box;
    content: "";
    cursor: pointer;
    display: block;
    height: 6px;
    left: 9px;
    margin-top: -6px;
    position: absolute;
    top: 50%;
    transform: rotate(-45deg) scale(0);
    transition: all .2s cubic-bezier(0,0,.2,1);
    width: 12px;
    will-change: transform;
}
.du-dialog .dlg-actions .opt-out-grp input[type=checkbox]:checked+label:after
{
    transform: rotate(-45deg) scale(1);
}
.du-dialog .dlg-action
{
    background-color: transparent;
    border: none;
    border-radius: 4px;
    color: #3f51b5;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .07em;
    line-height: 36px;
    min-width: 72px;
    outline: none;
    padding: 0 12px;
    text-transform: uppercase;
    transition: background-color .28s linear;
    will-change: background-color;
}
.du-dialog .dlg-action:not(:disabled):focus, .du-dialog .dlg-action:not(:disabled):hover
{
    background-color: #f5f5f5;
}
.du-dialog .dlg-action:not(:disabled):active
{
    background-color: #e0e0e0;
}
.du-dialog .dlg-action:disabled
{
    cursor: default;
    opacity: .5;
}
.du-dialog .dlg-action+.dlg-action
{
    margin-left: 8px;
}
.du-dialog.dlg--open
{
    background-color: rgba(0,0,0,.35);
    opacity: 1;
    visibility: visible;
}
.du-dialog.dlg--open .dlg-wrapper
{
    transform: scale(1);
}
.du-dialog.dlg--closing
{
    background-color: transparent;
    opacity: 0;
}
.du-dialog.dlg--pulse
{
    animation: dlgPulse .2s;
}
.du-dialog.dlg--no-title .dlg-content
{
    margin-top: 20px;
}
.du-dialog[dark=true] .dlg-wrapper
{
    background-color: #1d1d1d;
}
.du-dialog[dark=true] .dlg-content, .du-dialog[dark=true] .dlg-header
{
    color: hsla(0,0%,100%,.75);
}
.du-dialog[dark=true][selection=true] .dlg-header
{
    background-color: #121212;
}
.du-dialog[dark=true] .dlg-content.content--scrolled
{
    border-top: 1px solid hsla(0,0%,100%,.1);
}
.du-dialog[dark=true] .opt-out-grp
{
    color: hsla(0,0%,100%,.75);
}
.du-dialog[dark=true] .dlg-action
{
    color: #2196f3;
}
.du-dialog[dark=true] .dlg-action:not(:disabled):focus, .du-dialog[dark=true] .dlg-action:not(:disabled):hover, .du-dialog[dark=true] .dlg-select-item:hover
{
    background-color: hsla(0,0%,100%,.06);
}
.du-dialog[dark=true] .dlg-action:not(:disabled):active, .du-dialog[dark=true] .dlg-select-item:active
{
    background-color: hsla(0,0%,100%,.1);
}
.du-dialog.dlg--loading .dlg-wrapper .dlg-loader
{
    transform: scaleY(1);
}
.du-dialog.dlg--loading .dlg-wrapper .dlg-loader .loader-wrapper .loading-indicator
{
    animation: dlgLoading 1.45s linear infinite;
}
@media(min-width: 600px)
{
    .du-dialog .dlg-wrapper
    {
        max-width: 560px;
    }
}
@keyframes dlgPulse
{
    0%
    {
        transform: scale(1);
    }
    50%
    {
        transform: scale(1.05);
    }
    to
    {
        transform: scale(1);
    }
}
@keyframes dlgLoading
{
    0%
    {
        transform: translateX(-100%);
    }
    50%
    {
        transform: translateX(25%);
    }
    to
    {
        transform: translateX(225%);
    }
}
.vs-carousel
{
    position: relative;
}
.vs-carousel__wrapper
{
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    display: flex;
    list-style: none;
    margin: 0;
    overflow-x: scroll;
    overflow-y: hidden;
    padding: 0;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}
.vs-carousel__wrapper::-webkit-scrollbar
{
    display: none;
}
.vs-carousel__slide
{
    align-items: center;
    display: flex;
    flex: 0 0 100%;
    height: 100%;
    justify-content: center;
    outline: none;
    scroll-snap-align: start;
}
.vs-carousel__arrows
{
    bottom: 0;
    cursor: pointer;
    height: 48px;
    margin: auto;
    padding: 0;
    position: absolute;
    top: 0;
    width: 48px;
}
.vs-carousel__arrows:disabled
{
    cursor: not-allowed;
}
.vs-carousel__arrows--left
{
    left: 0;
}
.vs-carousel__arrows--right
{
    right: 0;
}