diff --git a/blocks/media/image/default/template.php b/blocks/media/image/default/template.php
index bae65d75..e0cc21b5 100644
--- a/blocks/media/image/default/template.php
+++ b/blocks/media/image/default/template.php
@@ -1,4 +1,4 @@
-
+
diff --git a/blocks/media/image/image.json b/blocks/media/image/image.json
index 8c037484..30fc1d1a 100644
--- a/blocks/media/image/image.json
+++ b/blocks/media/image/image.json
@@ -38,6 +38,19 @@
"16/9": "Horizontal (widescreen)",
"21/9": "Horizontal (cinema)"
}
+ },
+ {
+ "name": "Mobile: max width",
+ "id": "mobile_max_width",
+ "type": "select",
+ "default": "",
+ "sync": true,
+ "options": {
+ "": "Full width",
+ "icon": "Icon",
+ "tiny": "Tiny",
+ "xxs": "Small"
+ }
}
]
}
diff --git a/blocks/media/video/default/.eslintrc.js b/blocks/media/video/default/.eslintrc.js
new file mode 100644
index 00000000..6866271b
--- /dev/null
+++ b/blocks/media/video/default/.eslintrc.js
@@ -0,0 +1,61 @@
+module.exports = {
+ root: true,
+ extends: ["airbnb-base"],
+ parserOptions: {
+ parser: "babel-eslint",
+ sourceType: "module",
+ },
+ plugins: ["vue"],
+ settings: {
+ "html/indent": "+2",
+ "html/report-bad-indent": "error",
+ },
+ env: {
+ browser: true,
+ node: true,
+ es6: true,
+ },
+ rules: {
+ "no-multiple-empty-lines": [
+ "error",
+ {
+ max: 1,
+ maxBOF: 1,
+ },
+ ],
+ "comma-dangle": [1, {
+ objects: "always",
+ arrays: "ignore",
+ imports: "ignore",
+ exports: "ignore",
+ functions: "ignore",
+ }],
+ "max-len": "off",
+ quotes: ["error", "double"],
+ "no-restricted-syntax": 0,
+ "o-absolute-path": 0,
+ "no-new": 0,
+ "no-console": 0,
+ "no-bitwise": 0,
+ "no-useless-escape": 0,
+ "no-underscore-dangle": 0,
+ "global-require": 0,
+ "import/no-unresolved": 0,
+ "no-param-reassign": 0,
+ "no-shadow": 0,
+ "valid-jsdoc": ["error", {
+ requireReturn: true,
+ requireReturnType: true,
+ requireParamDescription: true,
+ requireReturnDescription: true,
+ }],
+ "import/extensions": 0,
+ "require-jsdoc": ["error", {
+ require: {
+ FunctionDeclaration: true,
+ MethodDefinition: true,
+ ClassDeclaration: true,
+ },
+ }],
+ },
+};
diff --git a/blocks/media/video/default/.parcel-cache/6db94a3c8b0074f3.txt b/blocks/media/video/default/.parcel-cache/6db94a3c8b0074f3.txt
new file mode 100644
index 00000000..cbfb925f
--- /dev/null
+++ b/blocks/media/video/default/.parcel-cache/6db94a3c8b0074f3.txt
@@ -0,0 +1,2 @@
+81479766
+1637157785455126000
\ No newline at end of file
diff --git a/blocks/media/video/default/.parcel-cache/78e7004d3b4e75e2.txt b/blocks/media/video/default/.parcel-cache/78e7004d3b4e75e2.txt
new file mode 100644
index 00000000..3933157a
--- /dev/null
+++ b/blocks/media/video/default/.parcel-cache/78e7004d3b4e75e2.txt
@@ -0,0 +1,2 @@
+78581015
+1637077310153504000
\ No newline at end of file
diff --git a/blocks/media/video/default/.parcel-cache/data.mdb b/blocks/media/video/default/.parcel-cache/data.mdb
new file mode 100644
index 00000000..c9a6bb2a
Binary files /dev/null and b/blocks/media/video/default/.parcel-cache/data.mdb differ
diff --git a/blocks/media/video/default/.parcel-cache/lock.mdb b/blocks/media/video/default/.parcel-cache/lock.mdb
new file mode 100644
index 00000000..0bfd1298
Binary files /dev/null and b/blocks/media/video/default/.parcel-cache/lock.mdb differ
diff --git a/blocks/media/video/default/assets/main.js b/blocks/media/video/default/assets/main.js
new file mode 100644
index 00000000..f3a02a84
--- /dev/null
+++ b/blocks/media/video/default/assets/main.js
@@ -0,0 +1,18 @@
+import "./plyr.css";
+
+import $ from "jquery";
+import Plyr from "plyr";
+
+$(".video-default video").each((i, el) => {
+ new Plyr($(el)[0], {
+ controls: [
+ "play-large",
+ "play",
+ "progress",
+ "current-time",
+ "mute",
+ "volume",
+ "fullscreen",
+ ],
+ });
+});
diff --git a/blocks/media/video/default/assets/plyr.css b/blocks/media/video/default/assets/plyr.css
new file mode 100644
index 00000000..cae8845a
--- /dev/null
+++ b/blocks/media/video/default/assets/plyr.css
@@ -0,0 +1,47 @@
+@keyframes plyr-progress{to{background-position:25px 0;background-position:var(--plyr-progress-loading-size,25px) 0;}}@keyframes plyr-popup{0%{opacity:0.5;transform:translateY(10px);}to{opacity:1;transform:translateY(0);}}@keyframes plyr-fade-in{from{opacity:0;}to{opacity:1;}}.plyr{position:relative;z-index:0;display:flex;flex-direction:column;align-items:center;min-width:200px;max-width:100%;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);text-shadow:none;transition:box-shadow 0.3s ease;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;direction:ltr;font-variant-numeric:tabular-nums;}.plyr audio,
+.plyr iframe,
+.plyr video{display:block;width:100%;height:100%;}.plyr button{width:auto;font:inherit;line-height:inherit;}.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{padding:3px 4px;font-size:9px;font-size:var(--plyr-font-size-badge,9px);line-height:1;color:#fff;color:var(--plyr-badge-text-color,#fff);background:#4a5464;background:var(--plyr-badge-background,#4a5464);border-radius:2px;border-radius:var(--plyr-badge-border-radius,2px);}.plyr--full-ui ::-webkit-media-text-track-container{display:none;}.plyr__captions{position:absolute;bottom:0;left:0;display:none;width:100%;padding:10px;padding:var(--plyr-control-spacing,10px);font-size:13px;font-size:var(--plyr-font-size-small,13px);text-align:center;transition:transform 0.4s ease-in-out;animation:plyr-fade-in 0.3s ease;}.plyr__captions span:empty{display:none;}@media (min-width:480px){.plyr__captions{padding:calc(10px * 2);padding:calc(var(--plyr-control-spacing,10px) * 2);font-size:15px;font-size:var(--plyr-font-size-base,15px);}}@media (min-width:768px){.plyr__captions{font-size:18px;font-size:var(--plyr-font-size-large,18px);}}.plyr--captions-active .plyr__captions{display:block;}.plyr:not(.plyr--hide-controls) .plyr__controls:not(:empty)~.plyr__captions{transform:translateY(calc(10px * -4));transform:translateY(calc(var(--plyr-control-spacing,10px) * -4));}.plyr__caption{padding:0.2em 0.5em;line-height:185%;color:#fff;color:var(--plyr-captions-text-color,#fff);white-space:pre-wrap;background:rgba(0,0,0,0.8);background:var(--plyr-captions-background,rgba(0,0,0,0.8));border-radius:2px;box-decoration-break:clone;box-decoration-break:clone;}.plyr__caption div{display:inline;}.plyr__control{position:relative;padding:calc(10px * 0.7);padding:calc(var(--plyr-control-spacing,10px) * 0.7);overflow:visible;color:inherit;cursor:pointer;background:0 0;border:0;border-radius:3px;border-radius:var(--plyr-control-radius,3px);transition:all 0.3s ease;flex-shrink:0;}.plyr__control svg{display:block;width:18px;width:var(--plyr-control-icon-size,18px);height:18px;height:var(--plyr-control-icon-size,18px);pointer-events:none;fill:currentColor;}.plyr__control:focus{outline:0;}.plyr__control.plyr__tab-focus{outline-width:3px;outline-style:dotted;outline-color:#d9010c;outline-color:var(--plyr-tab-focus-color,var(--plyr-color-main,var(--plyr-color-main,#d9010c)));outline-offset:2px;}a.plyr__control{text-decoration:none;}a.plyr__control::after,
+a.plyr__control::before{display: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{display:none;}.plyr--full-ui ::-webkit-media-controls{display:none;}.plyr__controls{display:flex;align-items:center;justify-content:flex-end;text-align:center;}.plyr__controls .plyr__progress__container{flex:1;min-width:0;}.plyr__controls .plyr__controls__item{margin-left:calc(10px / 4);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:calc(10px / 4);padding-left:calc(var(--plyr-control-spacing,10px)/ 4);}.plyr__controls .plyr__controls__item.plyr__time{padding:0 calc(10px / 2);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__controls:empty{display:none;}.plyr [data-plyr="airplay"],
+.plyr [data-plyr="captions"],
+.plyr [data-plyr="fullscreen"],
+.plyr [data-plyr="pip"]{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 0.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{position:absolute;right:-3px;bottom:100%;z-index:3;margin-bottom:10px;font-size:15px;font-size:var(--plyr-font-size-base,15px);color:#4a5464;color:var(--plyr-menu-color,#4a5464);text-align:left;white-space:nowrap;background:rgba(255,255,255,0.9);background:var(--plyr-menu-background,rgba(255,255,255,0.9));border-radius:4px;box-shadow:0 1px 2px rgba(0,0,0,0.15);box-shadow:var(--plyr-menu-shadow,0 1px 2px rgba(0,0,0,0.15));animation:plyr-popup 0.2s ease;}.plyr__menu__container>div{overflow:hidden;transition:height 0.35s cubic-bezier(0.4,0,0.2,1), width 0.35s cubic-bezier(0.4,0,0.2,1);}.plyr__menu__container::after{position:absolute;top:100%;right:calc(((18px / 2) + calc(10px * 0.7)) - (4px / 2));right:calc(((var(--plyr-control-icon-size,18px)/ 2) + calc(var(--plyr-control-spacing,10px) * 0.7)) - (var(--plyr-menu-arrow-size,4px)/ 2));width:0;height:0;content:"";border:4px solid transparent;border:var(--plyr-menu-arrow-size,4px) solid transparent;border-top-color:rgba(255,255,255,0.9);border-top-color:var(--plyr-menu-background,rgba(255,255,255,0.9));}.plyr__menu__container [role="menu"]{padding:calc(10px * 0.7);padding:calc(var(--plyr-control-spacing,10px) * 0.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{display:flex;align-items:center;width:100%;padding-top:calc(calc(10px * 0.7)/ 1.5);padding-top:calc(calc(var(--plyr-control-spacing,10px) * 0.7)/ 1.5);padding-right:calc(calc(10px * 0.7) * 1.5);padding-right:calc(calc(var(--plyr-control-spacing,10px) * 0.7) * 1.5);padding-bottom:calc(calc(10px * 0.7)/ 1.5);padding-bottom:calc(calc(var(--plyr-control-spacing,10px) * 0.7)/ 1.5);padding-left:calc(calc(10px * 0.7) * 1.5);padding-left:calc(calc(var(--plyr-control-spacing,10px) * 0.7) * 1.5);font-size:13px;font-size:var(--plyr-font-size-menu,var(--plyr-font-size-small,13px));color:#4a5464;color:var(--plyr-menu-color,#4a5464);user-select:none;user-select:none;user-select:none;}.plyr__menu__container .plyr__control>span{display:flex;align-items:inherit;width:100%;}.plyr__menu__container .plyr__control::after{position:absolute;top:50%;content:"";border:4px solid transparent;border:var(--plyr-menu-item-arrow-size,4px) solid transparent;transform:translateY(-50%);}.plyr__menu__container .plyr__control--forward{padding-right:calc(calc(10px * 0.7) * 4);padding-right:calc(calc(var(--plyr-control-spacing,10px) * 0.7) * 4);}.plyr__menu__container .plyr__control--forward::after{right:calc((calc(10px * 0.7) * 1.5) - 4px);right:calc((calc(var(--plyr-control-spacing,10px) * 0.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.plyr__tab-focus::after,
+.plyr__menu__container .plyr__control--forward:hover::after{border-left-color:currentColor;}.plyr__menu__container .plyr__control--back{position:relative;width:calc(100% - (calc(10px * 0.7) * 2));width:calc(100% - (calc(var(--plyr-control-spacing,10px) * 0.7) * 2));padding-left:calc(calc(10px * 0.7) * 4);padding-left:calc(calc(var(--plyr-control-spacing,10px) * 0.7) * 4);margin:calc(10px * 0.7);margin:calc(var(--plyr-control-spacing,10px) * 0.7);margin-bottom:calc(calc(10px * 0.7)/ 2);margin-bottom:calc(calc(var(--plyr-control-spacing,10px) * 0.7)/ 2);font-weight:400;font-weight:var(--plyr-font-weight-regular,400);}.plyr__menu__container .plyr__control--back::after{left:calc((calc(10px * 0.7) * 1.5) - 4px);left:calc((calc(var(--plyr-control-spacing,10px) * 0.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;height:1px;margin-top:calc(calc(10px * 0.7)/ 2);margin-top:calc(calc(var(--plyr-control-spacing,10px) * 0.7)/ 2);overflow:hidden;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.plyr__tab-focus::after,
+.plyr__menu__container .plyr__control--back:hover::after{border-right-color:currentColor;}.plyr__menu__container .plyr__control[role="menuitemradio"]{padding-left:calc(10px * 0.7);padding-left:calc(var(--plyr-control-spacing,10px) * 0.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:"";background:rgba(0,0,0,0.1);transition:all 0.3s ease;flex-shrink:0;}.plyr__menu__container .plyr__control[role="menuitemradio"]::after{top:50%;left:12px;width:6px;height:6px;background:#fff;border:0;opacity:0;transition:transform 0.3s ease, opacity 0.3s ease;transform:translateY(-50%) scale(0);}.plyr__menu__container .plyr__control[role="menuitemradio"][aria-checked="true"]::before{background:#d9010c;background:var(--plyr-control-toggle-checked-background,var(--plyr-color-main,var(--plyr-color-main,#d9010c)));}.plyr__menu__container .plyr__control[role="menuitemradio"][aria-checked="true"]::after{opacity:1;transform:translateY(-50%) scale(1);}.plyr__menu__container .plyr__control[role="menuitemradio"].plyr__tab-focus::before,
+.plyr__menu__container .plyr__control[role="menuitemradio"]:hover::before{background:rgba(35,40,47,0.1);}.plyr__menu__container .plyr__menu__value{display:flex;align-items:center;padding-left:calc(calc(10px * 0.7) * 3.5);padding-left:calc(calc(var(--plyr-control-spacing,10px) * 0.7) * 3.5);margin-right:calc((calc(10px * 0.7) - 2) * -1);margin-right:calc((calc(var(--plyr-control-spacing,10px) * 0.7) - 2) * -1);margin-left:auto;overflow:hidden;pointer-events:none;}.plyr--full-ui input[type="range"]{display:block;width:100%;min-width:0;height:calc((3px * 2) + 13px);height:calc((var(--plyr-range-thumb-active-shadow-width,3px) * 2) + var(--plyr-range-thumb-height,13px));padding:0;margin:0;color:#d9010c;color:var(--plyr-range-fill-background,var(--plyr-color-main,var(--plyr-color-main,#d9010c)));background:0 0;border:0;border-radius:calc(13px * 2);border-radius:calc(var(--plyr-range-thumb-height,13px) * 2);transition:box-shadow 0.3s ease;appearance:none;}.plyr--full-ui input[type="range"]::-webkit-slider-runnable-track{height:5px;height:var(--plyr-range-track-height,5px);user-select:none;user-select:none;background:0 0;background-image:linear-gradient(to right,currentColor 0,transparent 0);background-image:linear-gradient(to right,currentColor var(--value,0),transparent var(--value,0));border:0;border-radius:calc(5px / 2);border-radius:calc(var(--plyr-range-track-height,5px)/ 2);transition:box-shadow 0.3s ease;transition:box-shadow 0.3s ease;}.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:calc(((13px - 5px)/ 2) * -1);margin-top:calc(((var(--plyr-range-thumb-height,13px) - var(--plyr-range-track-height,5px))/ 2) * -1);background:#fff;background:var(--plyr-range-thumb-background,#fff);border:0;border-radius:100%;box-shadow:0 1px 1px rgba(35,40,47,0.15), 0 0 0 1px rgba(35,40,47,0.2);box-shadow:var(--plyr-range-thumb-shadow,0 1px 1px rgba(35,40,47,0.15),0 0 0 1px rgba(35,40,47,0.2));transition:all 0.2s ease;transition:all 0.2s ease;appearance:none;}.plyr--full-ui input[type="range"]::-moz-range-track{height:5px;height:var(--plyr-range-track-height,5px);user-select:none;background:0 0;border:0;border-radius:calc(5px / 2);border-radius:calc(var(--plyr-range-track-height,5px)/ 2);transition:box-shadow 0.3s ease;transition:box-shadow 0.3s ease;}.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);background:#fff;background:var(--plyr-range-thumb-background,#fff);border:0;border-radius:100%;box-shadow:0 1px 1px rgba(35,40,47,0.15), 0 0 0 1px rgba(35,40,47,0.2);box-shadow:var(--plyr-range-thumb-shadow,0 1px 1px rgba(35,40,47,0.15),0 0 0 1px rgba(35,40,47,0.2));transition:all 0.2s ease;transition:all 0.2s ease;}.plyr--full-ui input[type="range"]::-moz-range-progress{height:5px;height:var(--plyr-range-track-height,5px);background:currentColor;border-radius:calc(5px / 2);border-radius:calc(var(--plyr-range-track-height,5px)/ 2);}.plyr--full-ui input[type="range"]::-ms-track{height:5px;height:var(--plyr-range-track-height,5px);color:transparent;user-select:none;user-select:none;background:0 0;border:0;border-radius:calc(5px / 2);border-radius:calc(var(--plyr-range-track-height,5px)/ 2);transition:box-shadow 0.3s ease;transition:box-shadow 0.3s ease;}.plyr--full-ui input[type="range"]::-ms-fill-upper{height:5px;height:var(--plyr-range-track-height,5px);user-select:none;user-select:none;background:0 0;border:0;border-radius:calc(5px / 2);border-radius:calc(var(--plyr-range-track-height,5px)/ 2);transition:box-shadow 0.3s ease;transition:box-shadow 0.3s ease;}.plyr--full-ui input[type="range"]::-ms-fill-lower{height:5px;height:var(--plyr-range-track-height,5px);user-select:none;user-select:none;background:0 0;background:currentColor;border:0;border-radius:calc(5px / 2);border-radius:calc(var(--plyr-range-track-height,5px)/ 2);transition:box-shadow 0.3s ease;transition:box-shadow 0.3s ease;}.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;background:#fff;background:var(--plyr-range-thumb-background,#fff);border:0;border-radius:100%;box-shadow:0 1px 1px rgba(35,40,47,0.15), 0 0 0 1px rgba(35,40,47,0.2);box-shadow:var(--plyr-range-thumb-shadow,0 1px 1px rgba(35,40,47,0.15),0 0 0 1px rgba(35,40,47,0.2));transition:all 0.2s ease;transition:all 0.2s ease;}.plyr--full-ui input[type="range"]::-ms-tooltip{display:none;}.plyr--full-ui input[type="range"]:focus{outline:0;}.plyr--full-ui input[type="range"]::-moz-focus-outer{border:0;}.plyr--full-ui input[type="range"].plyr__tab-focus::-webkit-slider-runnable-track{outline-width:3px;outline-style:dotted;outline-color:#d9010c;outline-color:var(--plyr-tab-focus-color,var(--plyr-color-main,var(--plyr-color-main,#d9010c)));outline-offset:2px;}.plyr--full-ui input[type="range"].plyr__tab-focus::-moz-range-track{outline-width:3px;outline-style:dotted;outline-color:#d9010c;outline-color:var(--plyr-tab-focus-color,var(--plyr-color-main,var(--plyr-color-main,#d9010c)));outline-offset:2px;}.plyr--full-ui input[type="range"].plyr__tab-focus::-ms-track{outline-width:3px;outline-style:dotted;outline-color:#d9010c;outline-color:var(--plyr-tab-focus-color,var(--plyr-color-main,var(--plyr-color-main,#d9010c)));outline-offset:2px;}.plyr__poster{position:absolute;top:0;left:0;z-index:1;width:100%;height:100%;background-color:#000;background-repeat:no-repeat;background-position:50% 50%;background-size:contain;opacity:0;transition:opacity 0.2s ease;}.plyr--stopped.plyr__poster-enabled .plyr__poster{opacity:1;}.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:"\2044";}@media (max-width:calc(768px - 1px)){.plyr__time+.plyr__time{display:none;}}.plyr__tooltip{position:absolute;bottom:100%;left:50%;z-index:2;padding:calc(10px / 2) calc(calc(10px / 2) * 1.5);padding:calc(var(--plyr-control-spacing,10px)/ 2) calc(calc(var(--plyr-control-spacing,10px)/ 2) * 1.5);margin-bottom:calc(calc(10px / 2) * 2);margin-bottom:calc(calc(var(--plyr-control-spacing,10px)/ 2) * 2);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;color:#4a5464;color:var(--plyr-tooltip-color,#4a5464);white-space:nowrap;pointer-events:none;background:rgba(255,255,255,0.9);background:var(--plyr-tooltip-background,rgba(255,255,255,0.9));border-radius:3px;border-radius:var(--plyr-tooltip-radius,3px);box-shadow:0 1px 2px rgba(0,0,0,0.15);box-shadow:var(--plyr-tooltip-shadow,0 1px 2px rgba(0,0,0,0.15));opacity:0;transition:transform 0.2s 0.1s ease, opacity 0.2s 0.1s ease;transform:translate(-50%,10px) scale(0.8);transform-origin:50% 100%;}.plyr__tooltip::before{position:absolute;bottom:calc(4px * -1);bottom:calc(var(--plyr-tooltip-arrow-size,4px) * -1);left:50%;z-index:2;width:0;height:0;content:"";border-top:4px solid rgba(255,255,255,0.9);border-top:var(--plyr-tooltip-arrow-size,4px) solid var(--plyr-tooltip-background,rgba(255,255,255,0.9));border-right:4px solid transparent;border-right:var(--plyr-tooltip-arrow-size,4px) solid transparent;border-left:4px solid transparent;border-left:var(--plyr-tooltip-arrow-size,4px) solid transparent;transform:translateX(-50%);}.plyr .plyr__control.plyr__tab-focus .plyr__tooltip,
+.plyr .plyr__control:hover .plyr__tooltip,
+.plyr__tooltip--visible{opacity:1;transform:translate(-50%,0) scale(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:translate(0,10px) scale(0.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:calc((18px / 2) + calc(10px * 0.7));left:calc((var(--plyr-control-icon-size,18px)/ 2) + calc(var(--plyr-control-spacing,10px) * 0.7));}.plyr__controls>.plyr__control:last-child .plyr__tooltip{right:0;left:auto;transform:translate(0,10px) scale(0.8);transform-origin:100% 100%;}.plyr__controls>.plyr__control:last-child .plyr__tooltip::before{right:calc((18px / 2) + calc(10px * 0.7));right:calc((var(--plyr-control-icon-size,18px)/ 2) + calc(var(--plyr-control-spacing,10px) * 0.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.plyr__tab-focus .plyr__tooltip,
+.plyr__controls>.plyr__control:first-child+.plyr__control:hover .plyr__tooltip,
+.plyr__controls>.plyr__control:first-child.plyr__tab-focus .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.plyr__tab-focus .plyr__tooltip,
+.plyr__controls>.plyr__control:last-child:hover .plyr__tooltip{transform:translate(0,0) scale(1);}.plyr__progress{position:relative;left:calc(13px * 0.5);left:calc(var(--plyr-range-thumb-height,13px) * 0.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:calc(13px * -0.5);margin-right:calc(var(--plyr-range-thumb-height,13px) * -0.5);margin-left:calc(13px * -0.5);margin-left:calc(var(--plyr-range-thumb-height,13px) * -0.5);}.plyr__progress input[type="range"]{position:relative;z-index:2;}.plyr__progress .plyr__tooltip{left:0;font-size:13px;font-size:var(--plyr-font-size-time,var(--plyr-font-size-small,13px));}.plyr__progress__buffer{position:absolute;top:50%;left:0;height:5px;height:var(--plyr-range-track-height,5px);padding:0;margin-top:calc((5px / 2) * -1);margin-top:calc((var(--plyr-range-track-height,5px)/ 2) * -1);background:0 0;border:0;border-radius:100px;appearance:none;}.plyr__progress__buffer::-webkit-progress-bar{background:0 0;}.plyr__progress__buffer::-webkit-progress-value{min-width:5px;min-width:var(--plyr-range-track-height,5px);background:currentColor;border-radius:100px;transition:width 0.2s ease;transition:width 0.2s ease;}.plyr__progress__buffer::-moz-progress-bar{min-width:5px;min-width:var(--plyr-range-track-height,5px);background:currentColor;border-radius:100px;transition:width 0.2s ease;transition:width 0.2s ease;}.plyr__progress__buffer::-ms-fill{border-radius:100px;transition:width 0.2s ease;transition:width 0.2s ease;}.plyr--loading .plyr__progress__buffer{color:transparent;background-image:linear-gradient(-45deg,rgba(35,40,47,0.6) 25%,transparent 25%,transparent 50%,rgba(35,40,47,0.6) 50%,rgba(35,40,47,0.6) 75%,transparent 75%,transparent);background-image:linear-gradient(-45deg,var(--plyr-progress-loading-background,rgba(35,40,47,0.6)) 25%,transparent 25%,transparent 50%,var(--plyr-progress-loading-background,rgba(35,40,47,0.6)) 50%,var(--plyr-progress-loading-background,rgba(35,40,47,0.6)) 75%,transparent 75%,transparent);background-repeat:repeat-x;background-size:25px 25px;background-size:var(--plyr-progress-loading-size,25px) var(--plyr-progress-loading-size,25px);animation:plyr-progress 1s linear infinite;}.plyr--video.plyr--loading .plyr__progress__buffer{background-color:rgba(255,255,255,0.25);background-color:var(--plyr-video-progress-buffered-background,rgba(255,255,255,0.25));}.plyr--audio.plyr--loading .plyr__progress__buffer{background-color:rgba(193,200,209,0.6);background-color:var(--plyr-audio-progress-buffered-background,rgba(193,200,209,0.6));}.plyr__volume{position:relative;display:flex;align-items:center;width:20%;min-width:80px;max-width:110px;}.plyr__volume input[type="range"]{position:relative;z-index:2;margin-right:calc(10px / 2);margin-right:calc(var(--plyr-control-spacing,10px)/ 2);margin-left:calc(10px / 2);margin-left:calc(var(--plyr-control-spacing,10px)/ 2);}.plyr--is-ios .plyr__volume{width:auto;min-width:0;}.plyr--audio{display:block;}.plyr--audio .plyr__controls{padding:10px;padding:var(--plyr-control-spacing,10px);color:#4a5464;color:var(--plyr-audio-control-color,#4a5464);background:#fff;background:var(--plyr-audio-controls-background,#fff);border-radius:inherit;}.plyr--audio .plyr__control.plyr__tab-focus,
+.plyr--audio .plyr__control:hover,
+.plyr--audio .plyr__control[aria-expanded="true"]{color:#fff;color:var(--plyr-audio-control-color-hover,#fff);background:#d9010c;background:var(--plyr-audio-control-background-hover,var(--plyr-color-main,var(--plyr-color-main,#d9010c)));}.plyr--full-ui.plyr--audio input[type="range"]::-webkit-slider-runnable-track{background-color:rgba(193,200,209,0.6);background-color:var(--plyr-audio-range-track-background,var(--plyr-audio-progress-buffered-background,rgba(193,200,209,0.6)));}.plyr--full-ui.plyr--audio input[type="range"]::-moz-range-track{background-color:rgba(193,200,209,0.6);background-color:var(--plyr-audio-range-track-background,var(--plyr-audio-progress-buffered-background,rgba(193,200,209,0.6)));}.plyr--full-ui.plyr--audio input[type="range"]::-ms-track{background-color:rgba(193,200,209,0.6);background-color:var(--plyr-audio-range-track-background,var(--plyr-audio-progress-buffered-background,rgba(193,200,209,0.6)));}.plyr--full-ui.plyr--audio input[type="range"]:active::-webkit-slider-thumb{box-shadow:0 1px 1px rgba(35,40,47,0.15), 0 0 0 1px rgba(35,40,47,0.2), 0 0 0 3px rgba(35,40,47,0.1);box-shadow:var(--plyr-range-thumb-shadow,0 1px 1px rgba(35,40,47,0.15),0 0 0 1px rgba(35,40,47,0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width,3px) var(--plyr-audio-range-thumb-active-shadow-color,rgba(35,40,47,0.1));}.plyr--full-ui.plyr--audio input[type="range"]:active::-moz-range-thumb{box-shadow:0 1px 1px rgba(35,40,47,0.15), 0 0 0 1px rgba(35,40,47,0.2), 0 0 0 3px rgba(35,40,47,0.1);box-shadow:var(--plyr-range-thumb-shadow,0 1px 1px rgba(35,40,47,0.15),0 0 0 1px rgba(35,40,47,0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width,3px) var(--plyr-audio-range-thumb-active-shadow-color,rgba(35,40,47,0.1));}.plyr--full-ui.plyr--audio input[type="range"]:active::-ms-thumb{box-shadow:0 1px 1px rgba(35,40,47,0.15), 0 0 0 1px rgba(35,40,47,0.2), 0 0 0 3px rgba(35,40,47,0.1);box-shadow:var(--plyr-range-thumb-shadow,0 1px 1px rgba(35,40,47,0.15),0 0 0 1px rgba(35,40,47,0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width,3px) var(--plyr-audio-range-thumb-active-shadow-color,rgba(35,40,47,0.1));}.plyr--audio .plyr__progress__buffer{color:rgba(193,200,209,0.6);color:var(--plyr-audio-progress-buffered-background,rgba(193,200,209,0.6));}.plyr--video{overflow:hidden;background:#000;}.plyr--video.plyr--menu-open{overflow:visible;}.plyr__video-wrapper{position:relative;width:100%;height:100%;margin:auto;overflow:hidden;background:#000;}.plyr__video-embed,
+.plyr__video-wrapper--fixed-ratio{height:0;padding-bottom:56.25%;}.plyr__video-embed iframe,
+.plyr__video-wrapper--fixed-ratio video{position:absolute;top:0;left:0;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;right:0;bottom:0;left:0;z-index:3;padding:calc(10px / 2);padding:calc(var(--plyr-control-spacing,10px)/ 2);padding-top:calc(10px * 2);padding-top:calc(var(--plyr-control-spacing,10px) * 2);color:#fff;color:var(--plyr-video-control-color,#fff);background:linear-gradient(rgba(0,0,0,0),rgba(0,0,0,0.75));background:var(--plyr-video-controls-background,linear-gradient(rgba(0,0,0,0),rgba(0,0,0,0.75)));border-bottom-right-radius:inherit;border-bottom-left-radius:inherit;transition:opacity 0.4s ease-in-out, transform 0.4s ease-in-out;}@media (min-width:480px){.plyr--video .plyr__controls{padding:10px;padding:var(--plyr-control-spacing,10px);padding-top:calc(10px * 3.5);padding-top:calc(var(--plyr-control-spacing,10px) * 3.5);}}.plyr--video.plyr--hide-controls .plyr__controls{pointer-events:none;opacity:0;transform:translateY(100%);}.plyr--video .plyr__control.plyr__tab-focus,
+.plyr--video .plyr__control:hover,
+.plyr--video .plyr__control[aria-expanded="true"]{color:#fff;color:var(--plyr-video-control-color-hover,#fff);background:#d9010c;background:var(--plyr-video-control-background-hover,var(--plyr-color-main,var(--plyr-color-main,#d9010c)));}.plyr__control--overlaid{position:absolute;top:50%;left:50%;z-index:2;display:none;padding:calc(10px * 1.5);padding:calc(var(--plyr-control-spacing,10px) * 1.5);color:#fff;color:var(--plyr-video-control-color,#fff);background:#d9010c;background:var(--plyr-video-control-background-hover,var(--plyr-color-main,var(--plyr-color-main,#d9010c)));border:0;border-radius:100%;opacity:0.9;transition:0.3s;transform:translate(-50%,-50%);}.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,0.25);background-color:var(--plyr-video-range-track-background,var(--plyr-video-progress-buffered-background,rgba(255,255,255,0.25)));}.plyr--full-ui.plyr--video input[type="range"]::-moz-range-track{background-color:rgba(255,255,255,0.25);background-color:var(--plyr-video-range-track-background,var(--plyr-video-progress-buffered-background,rgba(255,255,255,0.25)));}.plyr--full-ui.plyr--video input[type="range"]::-ms-track{background-color:rgba(255,255,255,0.25);background-color:var(--plyr-video-range-track-background,var(--plyr-video-progress-buffered-background,rgba(255,255,255,0.25)));}.plyr--full-ui.plyr--video input[type="range"]:active::-webkit-slider-thumb{box-shadow:0 1px 1px rgba(35,40,47,0.15), 0 0 0 1px rgba(35,40,47,0.2), 0 0 0 3px rgba(255,255,255,0.5);box-shadow:var(--plyr-range-thumb-shadow,0 1px 1px rgba(35,40,47,0.15),0 0 0 1px rgba(35,40,47,0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width,3px) var(--plyr-audio-range-thumb-active-shadow-color,rgba(255,255,255,0.5));}.plyr--full-ui.plyr--video input[type="range"]:active::-moz-range-thumb{box-shadow:0 1px 1px rgba(35,40,47,0.15), 0 0 0 1px rgba(35,40,47,0.2), 0 0 0 3px rgba(255,255,255,0.5);box-shadow:var(--plyr-range-thumb-shadow,0 1px 1px rgba(35,40,47,0.15),0 0 0 1px rgba(35,40,47,0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width,3px) var(--plyr-audio-range-thumb-active-shadow-color,rgba(255,255,255,0.5));}.plyr--full-ui.plyr--video input[type="range"]:active::-ms-thumb{box-shadow:0 1px 1px rgba(35,40,47,0.15), 0 0 0 1px rgba(35,40,47,0.2), 0 0 0 3px rgba(255,255,255,0.5);box-shadow:var(--plyr-range-thumb-shadow,0 1px 1px rgba(35,40,47,0.15),0 0 0 1px rgba(35,40,47,0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width,3px) var(--plyr-audio-range-thumb-active-shadow-color,rgba(255,255,255,0.5));}.plyr--video .plyr__progress__buffer{color:rgba(255,255,255,0.25);color:var(--plyr-video-progress-buffered-background,rgba(255,255,255,0.25));}.plyr:full-screen{width:100%;height:100%;margin:0;background:#000;border-radius:0!important;}.plyr:fullscreen{width:100%;height:100%;margin:0;background:#000;border-radius:0!important;}.plyr:fullscreen{width:100%;height:100%;margin:0;background:#000;border-radius:0!important;}.plyr:full-screen video{height:100%;}.plyr:fullscreen video{height:100%;}.plyr:fullscreen video{height:100%;}.plyr:full-screen .plyr__video-wrapper{position:static;height:100%;}.plyr:fullscreen .plyr__video-wrapper{position:static;height:100%;}.plyr:fullscreen .plyr__video-wrapper{position:static;height:100%;}.plyr:full-screen.plyr--vimeo .plyr__video-wrapper{position:relative;height:0;}.plyr:fullscreen.plyr--vimeo .plyr__video-wrapper{position:relative;height:0;}.plyr:fullscreen.plyr--vimeo .plyr__video-wrapper{position:relative;height:0;}.plyr:full-screen .plyr__control .icon--exit-fullscreen{display:block;}.plyr:fullscreen .plyr__control .icon--exit-fullscreen{display:block;}.plyr:fullscreen .plyr__control .icon--exit-fullscreen{display:block;}.plyr:full-screen .plyr__control .icon--exit-fullscreen+svg{display:none;}.plyr:fullscreen .plyr__control .icon--exit-fullscreen+svg{display:none;}.plyr:fullscreen .plyr__control .icon--exit-fullscreen+svg{display:none;}.plyr:full-screen.plyr--hide-controls{cursor:none;}.plyr:fullscreen.plyr--hide-controls{cursor:none;}.plyr:fullscreen.plyr--hide-controls{cursor:none;}@media (min-width:1024px){.plyr:full-screen .plyr__captions{font-size:21px;font-size:var(--plyr-font-size-xlarge,21px);}.plyr:fullscreen .plyr__captions{font-size:21px;font-size:var(--plyr-font-size-xlarge,21px);}.plyr:fullscreen .plyr__captions{font-size:21px;font-size:var(--plyr-font-size-xlarge,21px);}}.plyr:full-screen{width:100%;height:100%;margin:0;background:#000;border-radius:0!important;}.plyr:full-screen video{height:100%;}.plyr:full-screen .plyr__video-wrapper{position:static;height:100%;}.plyr:full-screen.plyr--vimeo .plyr__video-wrapper{position:relative;height:0;}.plyr:full-screen .plyr__control .icon--exit-fullscreen{display:block;}.plyr:full-screen .plyr__control .icon--exit-fullscreen+svg{display:none;}.plyr:full-screen.plyr--hide-controls{cursor:none;}@media (min-width:1024px){.plyr:full-screen .plyr__captions{font-size:21px;font-size:var(--plyr-font-size-xlarge,21px);}}.plyr:full-screen{width:100%;height:100%;margin:0;background:#000;border-radius:0!important;}.plyr:full-screen video{height:100%;}.plyr:full-screen .plyr__video-wrapper{position:static;height:100%;}.plyr:full-screen.plyr--vimeo .plyr__video-wrapper{position:relative;height:0;}.plyr:full-screen .plyr__control .icon--exit-fullscreen{display:block;}.plyr:full-screen .plyr__control .icon--exit-fullscreen+svg{display:none;}.plyr:full-screen.plyr--hide-controls{cursor:none;}@media (min-width:1024px){.plyr:full-screen .plyr__captions{font-size:21px;font-size:var(--plyr-font-size-xlarge,21px);}}.plyr:fullscreen{width:100%;height:100%;margin:0;background:#000;border-radius:0!important;}.plyr:fullscreen video{height:100%;}.plyr:fullscreen .plyr__video-wrapper{position:static;height:100%;}.plyr:fullscreen.plyr--vimeo .plyr__video-wrapper{position:relative;height:0;}.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;}@media (min-width:1024px){.plyr:fullscreen .plyr__captions{font-size:21px;font-size:var(--plyr-font-size-xlarge,21px);}}.plyr--fullscreen-fallback{position:fixed;top:0;right:0;bottom:0;left:0;z-index:10000000;display:block;width:100%;height:100%;margin:0;background:#000;border-radius:0!important;}.plyr--fullscreen-fallback video{height:100%;}.plyr--fullscreen-fallback .plyr__video-wrapper{position:static;height:100%;}.plyr--fullscreen-fallback.plyr--vimeo .plyr__video-wrapper{position:relative;height:0;}.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;}@media (min-width:1024px){.plyr--fullscreen-fallback .plyr__captions{font-size:21px;font-size:var(--plyr-font-size-xlarge,21px);}}.plyr__ads{position:absolute;top:0;right:0;bottom:0;left:0;z-index:-1;overflow:hidden;cursor:pointer;border-radius:inherit;}.plyr__ads>div,
+.plyr__ads>div iframe{position:absolute;width:100%;height:100%;}.plyr__ads::after{position:absolute;right:10px;right:var(--plyr-control-spacing,10px);bottom:10px;bottom:var(--plyr-control-spacing,10px);z-index:3;padding:2px 6px;font-size:11px;color:#fff;pointer-events:none;content:attr(data-badge-text);background:#23282f;border-radius:2px;}.plyr__ads::after:empty{display:none;}.plyr__cues{position:absolute;top:50%;left:0;z-index:3;display:block;width:3px;height:5px;height:var(--plyr-range-track-height,5px);margin:-var(--plyr-range-track-height,5px)/2 0 0;background:currentColor;opacity:0.8;}.plyr__preview-thumb{position:absolute;bottom:100%;z-index:2;padding:3px;padding:var(--plyr-tooltip-radius,3px);margin-bottom:calc(calc(10px / 2) * 2);margin-bottom:calc(calc(var(--plyr-control-spacing,10px)/ 2) * 2);pointer-events:none;background-color:rgba(255,255,255,0.9);background-color:var(--plyr-tooltip-background,rgba(255,255,255,0.9));border-radius:3px;box-shadow:0 1px 2px rgba(0,0,0,0.15);box-shadow:var(--plyr-tooltip-shadow,0 1px 2px rgba(0,0,0,0.15));opacity:0;transition:transform 0.2s 0.1s ease, opacity 0.2s 0.1s ease;transform:translate(0,10px) scale(0.8);transform-origin:50% 100%;}.plyr__preview-thumb--is-shown{opacity:1;transform:translate(0,0) scale(1);}.plyr__preview-thumb::before{position:absolute;bottom:calc(4px * -1);bottom:calc(var(--plyr-tooltip-arrow-size,4px) * -1);left:50%;z-index:2;width:0;height:0;content:"";border-top:4px solid rgba(255,255,255,0.9);border-top:var(--plyr-tooltip-arrow-size,4px) solid var(--plyr-tooltip-background,rgba(255,255,255,0.9));border-right:4px solid transparent;border-right:var(--plyr-tooltip-arrow-size,4px) solid transparent;border-left:4px solid transparent;border-left:var(--plyr-tooltip-arrow-size,4px) solid transparent;transform:translateX(-50%);}.plyr__preview-thumb__image-container{position:relative;z-index:0;overflow:hidden;background:#c1c8d1;border-radius:calc(3px - 1px);border-radius:calc(var(--plyr-tooltip-radius,3px) - 1px);}.plyr__preview-thumb__image-container img{position:absolute;top:0;left:0;width:100%;max-width:none;height:100%;max-height:none;}.plyr__preview-thumb__time-container{position:absolute;right:0;bottom:6px;left:0;z-index:3;white-space:nowrap;}.plyr__preview-thumb__time-container span{padding:3px 6px;font-size:13px;font-size:var(--plyr-font-size-time,var(--plyr-font-size-small,13px));color:#fff;background-color:rgba(0,0,0,0.55);border-radius:calc(3px - 1px);border-radius:calc(var(--plyr-tooltip-radius,3px) - 1px);}.plyr__preview-scrubbing{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;width:100%;height:100%;margin:auto;overflow:hidden;pointer-events:none;filter:blur(1px);opacity:0;transition:opacity 0.3s ease;}.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;width:1px!important;height:1px!important;padding:0!important;overflow:hidden;clip:rect(1px,1px,1px,1px);border:0!important;}.plyr [hidden]{display:none!important;}
diff --git a/blocks/media/video/default/dist/main.css b/blocks/media/video/default/dist/main.css
new file mode 100644
index 00000000..aa4dff81
--- /dev/null
+++ b/blocks/media/video/default/dist/main.css
@@ -0,0 +1,2 @@
+@keyframes plyr-progress{to{background-position:25px 0;background-position:var(--plyr-progress-loading-size,25px) 0}}@keyframes plyr-popup{0%{opacity:.5;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}@keyframes plyr-fade-in{0%{opacity:0}to{opacity:1}}.plyr{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;align-items:center;direction:ltr;display:flex;flex-direction:column;font-family:inherit;font-family:var(--plyr-font-family,inherit);font-variant-numeric:tabular-nums;font-weight:400;font-weight:var(--plyr-font-weight-regular,400);line-height:1.7;line-height:var(--plyr-line-height,1.7);max-width:100%;min-width:200px;position:relative;text-shadow:none;transition:box-shadow .3s ease;z-index:0}.plyr audio,.plyr iframe,.plyr video{display:block;height:100%;width: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{background:#4a5464;background:var(--plyr-badge-background,#4a5464);border-radius:2px;border-radius:var(--plyr-badge-border-radius,2px);color:#fff;color:var(--plyr-badge-text-color,#fff);font-size:9px;font-size:var(--plyr-font-size-badge,9px);line-height:1;padding:3px 4px}.plyr--full-ui ::-webkit-media-text-track-container{display:none}.plyr__captions{animation:plyr-fade-in .3s ease;bottom:0;display:none;font-size:13px;font-size:var(--plyr-font-size-small,13px);left:0;padding:10px;padding:var(--plyr-control-spacing,10px);position:absolute;text-align:center;transition:transform .4s ease-in-out;width:100%}.plyr__captions span:empty{display:none}@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)}}@media (min-width:768px){.plyr__captions{font-size:18px;font-size:var(--plyr-font-size-large,18px)}}.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{background:rgba(0,0,0,.8);background:var(--plyr-captions-background,rgba(0,0,0,.8));border-radius:2px;box-decoration-break:clone;color:#fff;color:var(--plyr-captions-text-color,#fff);line-height:185%;padding:.2em .5em;white-space:pre-wrap}.plyr__caption div{display:inline}.plyr__control{background:0 0;border:0;border-radius:3px;border-radius:var(--plyr-control-radius,3px);color:inherit;cursor:pointer;flex-shrink:0;overflow:visible;padding:7px;padding:calc(var(--plyr-control-spacing,10px)*.7);position:relative;transition:all .3s ease}.plyr__control svg{fill:currentColor;display:block;height:18px;height:var(--plyr-control-icon-size,18px);pointer-events:none;width:18px;width:var(--plyr-control-icon-size,18px)}.plyr__control:focus{outline:0}.plyr__control.plyr__tab-focus{outline-color:#d9010c;outline-color:var(--plyr-tab-focus-color,var(--plyr-color-main,var(--plyr-color-main,#d9010c)));outline-offset:2px;outline-style:dotted;outline-width:3px}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{align-items:center;display:flex;justify-content:flex-end;text-align:center}.plyr__controls .plyr__progress__container{flex:1;min-width:0}.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-left:0;margin-right:auto}.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{display:flex;position:relative}.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{animation:plyr-popup .2s ease;background:hsla(0,0%,100%,.9);background:var(--plyr-menu-background,hsla(0,0%,100%,.9));border-radius:4px;bottom:100%;box-shadow:0 1px 2px rgba(0,0,0,.15);box-shadow:var(--plyr-menu-shadow,0 1px 2px rgba(0,0,0,.15));color:#4a5464;color:var(--plyr-menu-color,#4a5464);font-size:15px;font-size:var(--plyr-font-size-base,15px);margin-bottom:10px;position:absolute;right:-3px;text-align:left;white-space:nowrap;z-index:3}.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{border:4px solid transparent;border-top-color:hsla(0,0%,100%,.9);border:var(--plyr-menu-arrow-size,4px) solid transparent;border-top-color:var(--plyr-menu-background,hsla(0,0%,100%,.9));content:"";height:0;position:absolute;right:14px;right:calc(var(--plyr-control-icon-size,18px)/2 + var(--plyr-control-spacing,10px)*.7 - var(--plyr-menu-arrow-size,4px)/2);top:100%;width:0}.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{align-items:center;color:#4a5464;color:var(--plyr-menu-color,#4a5464);display:flex;font-size:13px;font-size:var(--plyr-font-size-menu,var(--plyr-font-size-small,13px));padding:4.66667px 10.5px;padding:calc(var(--plyr-control-spacing,10px)*.7/1.5) calc(var(--plyr-control-spacing,10px)*.7*1.5);user-select:none;width:100%}.plyr__menu__container .plyr__control>span{align-items:inherit;display:flex;width:100%}.plyr__menu__container .plyr__control:after{border:4px solid transparent;border:var(--plyr-menu-item-arrow-size,4px) solid transparent;content:"";position:absolute;top:50%;transform:translateY(-50%)}.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{border-left-color:#728197;border-left-color:var(--plyr-menu-arrow-color,#728197);right:6.5px;right:calc(var(--plyr-control-spacing,10px)*.7*1.5 - var(--plyr-menu-item-arrow-size,4px))}.plyr__menu__container .plyr__control--forward.plyr__tab-focus:after,.plyr__menu__container .plyr__control--forward:hover:after{border-left-color:currentColor}.plyr__menu__container .plyr__control--back{font-weight:400;font-weight:var(--plyr-font-weight-regular,400);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);position:relative;width:calc(100% - 14px);width:calc(100% - var(--plyr-control-spacing,10px)*.7*2)}.plyr__menu__container .plyr__control--back:after{border-right-color:#728197;border-right-color:var(--plyr-menu-arrow-color,#728197);left:6.5px;left:calc(var(--plyr-control-spacing,10px)*.7*1.5 - var(--plyr-menu-item-arrow-size,4px))}.plyr__menu__container .plyr__control--back:before{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);content:"";height:1px;left:0;margin-top:3.5px;margin-top:calc(var(--plyr-control-spacing,10px)*.7/2);overflow:hidden;position:absolute;right:0;top:100%}.plyr__menu__container .plyr__control--back.plyr__tab-focus:after,.plyr__menu__container .plyr__control--back:hover:after{border-right-color:currentColor}.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{background:rgba(0,0,0,.1);content:"";display:block;flex-shrink:0;height:16px;margin-right:10px;margin-right:var(--plyr-control-spacing,10px);transition:all .3s ease;width:16px}.plyr__menu__container .plyr__control[role=menuitemradio]:after{background:#fff;border:0;height:6px;left:12px;opacity:0;top:50%;transform:translateY(-50%) scale(0);transition:transform .3s ease,opacity .3s ease;width:6px}.plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]:before{background:#d9010c;background:var(--plyr-control-toggle-checked-background,var(--plyr-color-main,var(--plyr-color-main,#d9010c)))}.plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]:after{opacity:1;transform:translateY(-50%) scale(1)}.plyr__menu__container .plyr__control[role=menuitemradio].plyr__tab-focus:before,.plyr__menu__container .plyr__control[role=menuitemradio]:hover:before{background:rgba(35,40,47,.1)}.plyr__menu__container .plyr__menu__value{align-items:center;display:flex;margin-left:auto;margin-right:calc(-7px - -2);margin-right:calc(var(--plyr-control-spacing,10px)*.7*-1 - -2);overflow:hidden;padding-left:24.5px;padding-left:calc(var(--plyr-control-spacing,10px)*.7*3.5);pointer-events:none}.plyr--full-ui input[type=range]{appearance:none;background:0 0;border:0;border-radius:26px;border-radius:calc(var(--plyr-range-thumb-height,13px)*2);color:#d9010c;color:var(--plyr-range-fill-background,var(--plyr-color-main,var(--plyr-color-main,#d9010c)));display:block;height:19px;height:calc(var(--plyr-range-thumb-active-shadow-width,3px)*2 + var(--plyr-range-thumb-height,13px));margin:0;min-width:0;padding:0;transition:box-shadow .3s ease;width:100%}.plyr--full-ui input[type=range]::-webkit-slider-runnable-track{background:0 0;background-image:linear-gradient(90deg,currentColor 0,transparent 0);background-image:linear-gradient(to right,currentColor var(--value,0),transparent var(--value,0));border:0;border-radius:2.5px;border-radius:calc(var(--plyr-range-track-height,5px)/2);height:5px;height:var(--plyr-range-track-height,5px);transition:box-shadow .3s ease;user-select:none}.plyr--full-ui input[type=range]::-webkit-slider-thumb{appearance:none;background:#fff;background:var(--plyr-range-thumb-background,#fff);border:0;border-radius:100%;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));height:13px;height:var(--plyr-range-thumb-height,13px);margin-top:-4px;margin-top:calc(var(--plyr-range-thumb-height,13px)/2*-1 - var(--plyr-range-track-height,5px)/2*-1);position:relative;transition:all .2s ease;width:13px;width:var(--plyr-range-thumb-height,13px)}.plyr--full-ui input[type=range]::-moz-range-track{background:0 0;border:0;border-radius:2.5px;border-radius:calc(var(--plyr-range-track-height,5px)/2);height:5px;height:var(--plyr-range-track-height,5px);transition:box-shadow .3s ease;user-select:none}.plyr--full-ui input[type=range]::-moz-range-thumb{background:#fff;background:var(--plyr-range-thumb-background,#fff);border:0;border-radius:100%;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));height:13px;height:var(--plyr-range-thumb-height,13px);position:relative;transition:all .2s ease;width:13px;width:var(--plyr-range-thumb-height,13px)}.plyr--full-ui input[type=range]::-moz-range-progress{background:currentColor;border-radius:2.5px;border-radius:calc(var(--plyr-range-track-height,5px)/2);height:5px;height:var(--plyr-range-track-height,5px)}.plyr--full-ui input[type=range]::-ms-track{color:transparent}.plyr--full-ui input[type=range]::-ms-fill-upper,.plyr--full-ui input[type=range]::-ms-track{background:0 0;border:0;border-radius:2.5px;border-radius:calc(var(--plyr-range-track-height,5px)/2);height:5px;height:var(--plyr-range-track-height,5px);transition:box-shadow .3s ease;user-select:none}.plyr--full-ui input[type=range]::-ms-fill-lower{background:0 0;background:currentColor;border:0;border-radius:2.5px;border-radius:calc(var(--plyr-range-track-height,5px)/2);height:5px;height:var(--plyr-range-track-height,5px);transition:box-shadow .3s ease;user-select:none}.plyr--full-ui input[type=range]::-ms-thumb{background:#fff;background:var(--plyr-range-thumb-background,#fff);border:0;border-radius:100%;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));height:13px;height:var(--plyr-range-thumb-height,13px);margin-top:0;position:relative;transition:all .2s ease;width:13px;width:var(--plyr-range-thumb-height,13px)}.plyr--full-ui input[type=range]::-ms-tooltip{display:none}.plyr--full-ui input[type=range]:focus{outline:0}.plyr--full-ui input[type=range]::-moz-focus-outer{border:0}.plyr--full-ui input[type=range].plyr__tab-focus::-webkit-slider-runnable-track{outline-color:#d9010c;outline-color:var(--plyr-tab-focus-color,var(--plyr-color-main,var(--plyr-color-main,#d9010c)));outline-offset:2px;outline-style:dotted;outline-width:3px}.plyr--full-ui input[type=range].plyr__tab-focus::-moz-range-track{outline-color:#d9010c;outline-color:var(--plyr-tab-focus-color,var(--plyr-color-main,var(--plyr-color-main,#d9010c)));outline-offset:2px;outline-style:dotted;outline-width:3px}.plyr--full-ui input[type=range].plyr__tab-focus::-ms-track{outline-color:#d9010c;outline-color:var(--plyr-tab-focus-color,var(--plyr-color-main,var(--plyr-color-main,#d9010c)));outline-offset:2px;outline-style:dotted;outline-width:3px}.plyr__poster{background-color:#000;background-position:50% 50%;background-repeat:no-repeat;background-size:contain;height:100%;left:0;opacity:0;position:absolute;top:0;transition:opacity .2s ease;width:100%;z-index:1}.plyr--stopped.plyr__poster-enabled .plyr__poster{opacity:1}.plyr__time{font-size:13px;font-size:var(--plyr-font-size-time,var(--plyr-font-size-small,13px))}.plyr__time+.plyr__time:before{content:"\2044";margin-right:10px;margin-right:var(--plyr-control-spacing,10px)}@media (max-width:calc(768px - 1px)){.plyr__time+.plyr__time{display:none}}.plyr__tooltip{background:hsla(0,0%,100%,.9);background:var(--plyr-tooltip-background,hsla(0,0%,100%,.9));border-radius:3px;border-radius:var(--plyr-tooltip-radius,3px);bottom:100%;box-shadow:0 1px 2px rgba(0,0,0,.15);box-shadow:var(--plyr-tooltip-shadow,0 1px 2px rgba(0,0,0,.15));color:#4a5464;color:var(--plyr-tooltip-color,#4a5464);font-size:13px;font-size:var(--plyr-font-size-small,13px);font-weight:400;font-weight:var(--plyr-font-weight-regular,400);left:50%;line-height:1.3;margin-bottom:10px;margin-bottom:calc(var(--plyr-control-spacing,10px)/2*2);opacity:0;padding:5px 7.5px;padding:calc(var(--plyr-control-spacing,10px)/2) calc(var(--plyr-control-spacing,10px)/2*1.5);pointer-events:none;position:absolute;transform:translate(-50%,10px) scale(.8);transform-origin:50% 100%;transition:transform .2s ease .1s,opacity .2s ease .1s;white-space:nowrap;z-index:2}.plyr__tooltip:before{border-left:4px solid transparent;border-left:var(--plyr-tooltip-arrow-size,4px) solid transparent;border-right:4px solid transparent;border-right:var(--plyr-tooltip-arrow-size,4px) solid transparent;border-top:4px solid hsla(0,0%,100%,.9);border-top:var(--plyr-tooltip-arrow-size,4px) solid var(--plyr-tooltip-background,hsla(0,0%,100%,.9));bottom:-4px;bottom:calc(var(--plyr-tooltip-arrow-size,4px)*-1);content:"";height:0;left:50%;position:absolute;transform:translateX(-50%);width:0;z-index:2}.plyr .plyr__control.plyr__tab-focus .plyr__tooltip,.plyr .plyr__control:hover .plyr__tooltip,.plyr__tooltip--visible{opacity:1;transform:translate(-50%) scale(1)}.plyr .plyr__control:hover .plyr__tooltip{z-index:3}.plyr__controls>.plyr__control:first-child+.plyr__control .plyr__tooltip,.plyr__controls>.plyr__control:first-child .plyr__tooltip{left:0;transform:translateY(10px) scale(.8);transform-origin:0 100%}.plyr__controls>.plyr__control:first-child+.plyr__control .plyr__tooltip:before,.plyr__controls>.plyr__control:first-child .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{left:auto;right:0;transform:translateY(10px) scale(.8);transform-origin:100% 100%}.plyr__controls>.plyr__control:last-child .plyr__tooltip:before{left:auto;right:16px;right:calc(var(--plyr-control-icon-size,18px)/2 + var(--plyr-control-spacing,10px)*.7);transform:translateX(50%)}.plyr__controls>.plyr__control:first-child+.plyr__control.plyr__tab-focus .plyr__tooltip,.plyr__controls>.plyr__control:first-child+.plyr__control .plyr__tooltip--visible,.plyr__controls>.plyr__control:first-child+.plyr__control:hover .plyr__tooltip,.plyr__controls>.plyr__control:first-child.plyr__tab-focus .plyr__tooltip,.plyr__controls>.plyr__control:first-child .plyr__tooltip--visible,.plyr__controls>.plyr__control:first-child:hover .plyr__tooltip,.plyr__controls>.plyr__control:last-child.plyr__tab-focus .plyr__tooltip,.plyr__controls>.plyr__control:last-child .plyr__tooltip--visible,.plyr__controls>.plyr__control:last-child:hover .plyr__tooltip{transform:translate(0) scale(1)}.plyr__progress{left:6.5px;left:calc(var(--plyr-range-thumb-height,13px)*.5);margin-right:13px;margin-right:var(--plyr-range-thumb-height,13px);position:relative}.plyr__progress__buffer,.plyr__progress input[type=range]{margin-left:-6.5px;margin-left:calc(var(--plyr-range-thumb-height,13px)*-.5);margin-right:-6.5px;margin-right:calc(var(--plyr-range-thumb-height,13px)*-.5);width:calc(100% + 13px);width:calc(100% + var(--plyr-range-thumb-height,13px))}.plyr__progress input[type=range]{position:relative;z-index:2}.plyr__progress .plyr__tooltip{font-size:13px;font-size:var(--plyr-font-size-time,var(--plyr-font-size-small,13px));left:0}.plyr__progress__buffer{appearance:none;background:0 0;border:0;border-radius:100px;height:5px;height:var(--plyr-range-track-height,5px);left:0;margin-top:-2.5px;margin-top:calc(var(--plyr-range-track-height,5px)/2*-1);padding:0;position:absolute;top:50%}.plyr__progress__buffer::-webkit-progress-bar{background:0 0}.plyr__progress__buffer::-webkit-progress-value{background:currentColor;border-radius:100px;min-width:5px;min-width:var(--plyr-range-track-height,5px);transition:width .2s ease}.plyr__progress__buffer::-moz-progress-bar{background:currentColor;border-radius:100px;min-width:5px;min-width:var(--plyr-range-track-height,5px);transition:width .2s ease}.plyr__progress__buffer::-ms-fill{border-radius:100px;transition:width .2s ease}.plyr--loading .plyr__progress__buffer{animation:plyr-progress 1s linear infinite;background-image:linear-gradient(-45deg,rgba(35,40,47,.6) 25%,transparent 0,transparent 50%,rgba(35,40,47,.6) 0,rgba(35,40,47,.6) 75%,transparent 0,transparent);background-image:linear-gradient(-45deg,var(--plyr-progress-loading-background,rgba(35,40,47,.6)) 25%,transparent 25%,transparent 50%,var(--plyr-progress-loading-background,rgba(35,40,47,.6)) 50%,var(--plyr-progress-loading-background,rgba(35,40,47,.6)) 75%,transparent 75%,transparent);background-repeat:repeat-x;background-size:25px 25px;background-size:var(--plyr-progress-loading-size,25px) var(--plyr-progress-loading-size,25px);color:transparent}.plyr--video.plyr--loading .plyr__progress__buffer{background-color:hsla(0,0%,100%,.25);background-color:var(--plyr-video-progress-buffered-background,hsla(0,0%,100%,.25))}.plyr--audio.plyr--loading .plyr__progress__buffer{background-color:rgba(193,200,209,.6);background-color:var(--plyr-audio-progress-buffered-background,rgba(193,200,209,.6))}.plyr__volume{align-items:center;display:flex;max-width:110px;min-width:80px;position:relative;width:20%}.plyr__volume input[type=range]{margin-left:5px;margin-left:calc(var(--plyr-control-spacing,10px)/2);margin-right:5px;margin-right:calc(var(--plyr-control-spacing,10px)/2);position:relative;z-index:2}.plyr--is-ios .plyr__volume{min-width:0;width:auto}.plyr--audio{display:block}.plyr--audio .plyr__controls{background:#fff;background:var(--plyr-audio-controls-background,#fff);border-radius:inherit;color:#4a5464;color:var(--plyr-audio-control-color,#4a5464);padding:10px;padding:var(--plyr-control-spacing,10px)}.plyr--audio .plyr__control.plyr__tab-focus,.plyr--audio .plyr__control:hover,.plyr--audio .plyr__control[aria-expanded=true]{background:#d9010c;background:var(--plyr-audio-control-background-hover,var(--plyr-color-main,var(--plyr-color-main,#d9010c)));color:#fff;color:var(--plyr-audio-control-color-hover,#fff)}.plyr--full-ui.plyr--audio input[type=range]::-webkit-slider-runnable-track{background-color:rgba(193,200,209,.6);background-color:var(--plyr-audio-range-track-background,var(--plyr-audio-progress-buffered-background,rgba(193,200,209,.6)))}.plyr--full-ui.plyr--audio input[type=range]::-moz-range-track{background-color:rgba(193,200,209,.6);background-color:var(--plyr-audio-range-track-background,var(--plyr-audio-progress-buffered-background,rgba(193,200,209,.6)))}.plyr--full-ui.plyr--audio input[type=range]::-ms-track{background-color:rgba(193,200,209,.6);background-color:var(--plyr-audio-range-track-background,var(--plyr-audio-progress-buffered-background,rgba(193,200,209,.6)))}.plyr--full-ui.plyr--audio 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(35,40,47,.1);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(35,40,47,.1))}.plyr--full-ui.plyr--audio 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(35,40,47,.1);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(35,40,47,.1))}.plyr--full-ui.plyr--audio 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(35,40,47,.1);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(35,40,47,.1))}.plyr--audio .plyr__progress__buffer{color:rgba(193,200,209,.6);color:var(--plyr-audio-progress-buffered-background,rgba(193,200,209,.6))}.plyr--video{background:#000;overflow:hidden}.plyr--video.plyr--menu-open{overflow:visible}.plyr__video-wrapper{background:#000;height:100%;margin:auto;overflow:hidden;position:relative;width:100%}.plyr__video-embed,.plyr__video-wrapper--fixed-ratio{height:0;padding-bottom:56.25%}.plyr__video-embed iframe,.plyr__video-wrapper--fixed-ratio video{border:0;left:0;position:absolute;top:0}.plyr--full-ui .plyr__video-embed>.plyr__video-embed__container{padding-bottom:240%;position:relative;transform:translateY(-38.28125%)}.plyr--video .plyr__controls{background:linear-gradient(transparent,rgba(0,0,0,.75));background:var(--plyr-video-controls-background,linear-gradient(transparent,rgba(0,0,0,.75)));border-bottom-left-radius:inherit;border-bottom-right-radius:inherit;bottom:0;color:#fff;color:var(--plyr-video-control-color,#fff);left:0;padding:5px;padding:calc(var(--plyr-control-spacing,10px)/2);padding-top:20px;padding-top:calc(var(--plyr-control-spacing,10px)*2);position:absolute;right:0;transition:opacity .4s ease-in-out,transform .4s ease-in-out;z-index:3}@media (min-width:480px){.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)}}.plyr--video.plyr--hide-controls .plyr__controls{opacity:0;pointer-events:none;transform:translateY(100%)}.plyr--video .plyr__control.plyr__tab-focus,.plyr--video .plyr__control:hover,.plyr--video .plyr__control[aria-expanded=true]{background:#d9010c;background:var(--plyr-video-control-background-hover,var(--plyr-color-main,var(--plyr-color-main,#d9010c)));color:#fff;color:var(--plyr-video-control-color-hover,#fff)}.plyr__control--overlaid{background:#d9010c;background:var(--plyr-video-control-background-hover,var(--plyr-color-main,var(--plyr-color-main,#d9010c)));border:0;border-radius:100%;color:#fff;color:var(--plyr-video-control-color,#fff);display:none;left:50%;opacity:.9;padding:15px;padding:calc(var(--plyr-control-spacing,10px)*1.5);position:absolute;top:50%;transform:translate(-50%,-50%);transition:.3s;z-index:2}.plyr__control--overlaid svg{left:2px;position:relative}.plyr__control--overlaid:focus,.plyr__control--overlaid:hover{opacity:1}.plyr--playing .plyr__control--overlaid{opacity:0;visibility:hidden}.plyr--full-ui.plyr--video .plyr__control--overlaid{display:block}.plyr--full-ui.plyr--video input[type=range]::-webkit-slider-runnable-track{background-color:hsla(0,0%,100%,.25);background-color:var(--plyr-video-range-track-background,var(--plyr-video-progress-buffered-background,hsla(0,0%,100%,.25)))}.plyr--full-ui.plyr--video input[type=range]::-moz-range-track{background-color:hsla(0,0%,100%,.25);background-color:var(--plyr-video-range-track-background,var(--plyr-video-progress-buffered-background,hsla(0,0%,100%,.25)))}.plyr--full-ui.plyr--video input[type=range]::-ms-track{background-color:hsla(0,0%,100%,.25);background-color:var(--plyr-video-range-track-background,var(--plyr-video-progress-buffered-background,hsla(0,0%,100%,.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 hsla(0,0%,100%,.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,hsla(0,0%,100%,.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 hsla(0,0%,100%,.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,hsla(0,0%,100%,.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 hsla(0,0%,100%,.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,hsla(0,0%,100%,.5))}.plyr--video .plyr__progress__buffer{color:hsla(0,0%,100%,.25);color:var(--plyr-video-progress-buffered-background,hsla(0,0%,100%,.25))}@media (min-width:1024px){.plyr:full-screen .plyr__captions{font-size:21px;font-size:var(--plyr-font-size-xlarge,21px)}.plyr:fullscreen .plyr__captions{font-size:21px;font-size:var(--plyr-font-size-xlarge,21px)}}.plyr:full-screen{background:#000;border-radius:0!important;height:100%;margin:0;width:100%}.plyr:full-screen video{height:100%}.plyr:full-screen .plyr__video-wrapper{height:100%;position:static}.plyr:full-screen.plyr--vimeo .plyr__video-wrapper{height:0;position:relative}.plyr:full-screen .plyr__control .icon--exit-fullscreen{display:block}.plyr:full-screen .plyr__control .icon--exit-fullscreen+svg{display:none}.plyr:full-screen.plyr--hide-controls{cursor:none}@media (min-width:1024px){.plyr:full-screen .plyr__captions{font-size:21px;font-size:var(--plyr-font-size-xlarge,21px)}}.plyr:fullscreen{background:#000;border-radius:0!important;height:100%;margin:0;width:100%}.plyr:fullscreen video{height:100%}.plyr:fullscreen .plyr__video-wrapper{height:100%;position:static}.plyr:fullscreen.plyr--vimeo .plyr__video-wrapper{height:0;position:relative}.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}@media (min-width:1024px){.plyr:fullscreen .plyr__captions{font-size:21px;font-size:var(--plyr-font-size-xlarge,21px)}}.plyr--fullscreen-fallback{background:#000;border-radius:0!important;bottom:0;display:block;height:100%;left:0;margin:0;position:fixed;right:0;top:0;width:100%;z-index:10000000}.plyr--fullscreen-fallback video{height:100%}.plyr--fullscreen-fallback .plyr__video-wrapper{height:100%;position:static}.plyr--fullscreen-fallback.plyr--vimeo .plyr__video-wrapper{height:0;position:relative}.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}@media (min-width:1024px){.plyr--fullscreen-fallback .plyr__captions{font-size:21px;font-size:var(--plyr-font-size-xlarge,21px)}}.plyr__ads{border-radius:inherit;bottom:0;cursor:pointer;left:0;overflow:hidden;position:absolute;right:0;top:0;z-index:-1}.plyr__ads>div,.plyr__ads>div iframe{height:100%;position:absolute;width:100%}.plyr__ads:after{background:#23282f;border-radius:2px;bottom:10px;bottom:var(--plyr-control-spacing,10px);color:#fff;content:attr(data-badge-text);font-size:11px;padding:2px 6px;pointer-events:none;position:absolute;right:10px;right:var(--plyr-control-spacing,10px);z-index:3}.plyr__ads:after:empty{display:none}.plyr__cues{background:currentColor;display:block;height:5px;height:var(--plyr-range-track-height,5px);left:0;margin:-var(--plyr-range-track-height,5px)/2 0 0;opacity:.8;position:absolute;top:50%;width:3px;z-index:3}.plyr__preview-thumb{background-color:hsla(0,0%,100%,.9);background-color:var(--plyr-tooltip-background,hsla(0,0%,100%,.9));border-radius:3px;bottom:100%;box-shadow:0 1px 2px rgba(0,0,0,.15);box-shadow:var(--plyr-tooltip-shadow,0 1px 2px rgba(0,0,0,.15));margin-bottom:10px;margin-bottom:calc(var(--plyr-control-spacing,10px)/2*2);opacity:0;padding:3px;padding:var(--plyr-tooltip-radius,3px);pointer-events:none;position:absolute;transform:translateY(10px) scale(.8);transform-origin:50% 100%;transition:transform .2s ease .1s,opacity .2s ease .1s;z-index:2}.plyr__preview-thumb--is-shown{opacity:1;transform:translate(0) scale(1)}.plyr__preview-thumb:before{border-left:4px solid transparent;border-left:var(--plyr-tooltip-arrow-size,4px) solid transparent;border-right:4px solid transparent;border-right:var(--plyr-tooltip-arrow-size,4px) solid transparent;border-top:4px solid hsla(0,0%,100%,.9);border-top:var(--plyr-tooltip-arrow-size,4px) solid var(--plyr-tooltip-background,hsla(0,0%,100%,.9));bottom:-4px;bottom:calc(var(--plyr-tooltip-arrow-size,4px)*-1);content:"";height:0;left:50%;position:absolute;transform:translateX(-50%);width:0;z-index:2}.plyr__preview-thumb__image-container{background:#c1c8d1;border-radius:2px;border-radius:calc(var(--plyr-tooltip-radius,3px) - 1px);overflow:hidden;position:relative;z-index:0}.plyr__preview-thumb__image-container img{height:100%;left:0;max-height:none;max-width:none;position:absolute;top:0;width:100%}.plyr__preview-thumb__time-container{bottom:6px;left:0;position:absolute;right:0;white-space:nowrap;z-index:3}.plyr__preview-thumb__time-container span{background-color:rgba(0,0,0,.55);border-radius:2px;border-radius:calc(var(--plyr-tooltip-radius,3px) - 1px);color:#fff;font-size:13px;font-size:var(--plyr-font-size-time,var(--plyr-font-size-small,13px));padding:3px 6px}.plyr__preview-scrubbing{bottom:0;filter:blur(1px);height:100%;left:0;margin:auto;opacity:0;overflow:hidden;pointer-events:none;position:absolute;right:0;top:0;transition:opacity .3s ease;width:100%;z-index:1}.plyr__preview-scrubbing--is-shown{opacity:1}.plyr__preview-scrubbing img{height:100%;left:0;max-height:none;max-width:none;object-fit:contain;position:absolute;top:0;width:100%}.plyr--no-transition{transition:none!important}.plyr__sr-only{clip:rect(1px,1px,1px,1px);border:0!important;height:1px!important;overflow:hidden;padding:0!important;position:absolute!important;width:1px!important}.plyr [hidden]{display:none!important}
+/*# sourceMappingURL=main.css.map */
diff --git a/blocks/media/video/default/dist/main.css.map b/blocks/media/video/default/dist/main.css.map
new file mode 100644
index 00000000..0fa4e3cd
--- /dev/null
+++ b/blocks/media/video/default/dist/main.css.map
@@ -0,0 +1 @@
+{"mappings":"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","sources":["assets/plyr.css"],"sourcesContent":["@keyframes plyr-progress{to{background-position:25px 0;background-position:var(--plyr-progress-loading-size,25px) 0;}}@keyframes plyr-popup{0%{opacity:0.5;transform:translateY(10px);}to{opacity:1;transform:translateY(0);}}@keyframes plyr-fade-in{from{opacity:0;}to{opacity:1;}}.plyr{position:relative;z-index:0;display:flex;flex-direction:column;align-items:center;min-width:200px;max-width:100%;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);text-shadow:none;transition:box-shadow 0.3s ease;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;direction:ltr;font-variant-numeric:tabular-nums;}.plyr audio,\n.plyr iframe,\n.plyr video{display:block;width:100%;height:100%;}.plyr button{width:auto;font:inherit;line-height:inherit;}.plyr:focus{outline:0;}.plyr--full-ui{box-sizing:border-box;}.plyr--full-ui *,\n.plyr--full-ui ::after,\n.plyr--full-ui ::before{box-sizing:inherit;}.plyr--full-ui a,\n.plyr--full-ui button,\n.plyr--full-ui input,\n.plyr--full-ui label{touch-action:manipulation;}.plyr__badge{padding:3px 4px;font-size:9px;font-size:var(--plyr-font-size-badge,9px);line-height:1;color:#fff;color:var(--plyr-badge-text-color,#fff);background:#4a5464;background:var(--plyr-badge-background,#4a5464);border-radius:2px;border-radius:var(--plyr-badge-border-radius,2px);}.plyr--full-ui ::-webkit-media-text-track-container{display:none;}.plyr__captions{position:absolute;bottom:0;left:0;display:none;width:100%;padding:10px;padding:var(--plyr-control-spacing,10px);font-size:13px;font-size:var(--plyr-font-size-small,13px);text-align:center;transition:transform 0.4s ease-in-out;animation:plyr-fade-in 0.3s ease;}.plyr__captions span:empty{display:none;}@media (min-width:480px){.plyr__captions{padding:calc(10px * 2);padding:calc(var(--plyr-control-spacing,10px) * 2);font-size:15px;font-size:var(--plyr-font-size-base,15px);}}@media (min-width:768px){.plyr__captions{font-size:18px;font-size:var(--plyr-font-size-large,18px);}}.plyr--captions-active .plyr__captions{display:block;}.plyr:not(.plyr--hide-controls) .plyr__controls:not(:empty)~.plyr__captions{transform:translateY(calc(10px * -4));transform:translateY(calc(var(--plyr-control-spacing,10px) * -4));}.plyr__caption{padding:0.2em 0.5em;line-height:185%;color:#fff;color:var(--plyr-captions-text-color,#fff);white-space:pre-wrap;background:rgba(0,0,0,0.8);background:var(--plyr-captions-background,rgba(0,0,0,0.8));border-radius:2px;box-decoration-break:clone;box-decoration-break:clone;}.plyr__caption div{display:inline;}.plyr__control{position:relative;padding:calc(10px * 0.7);padding:calc(var(--plyr-control-spacing,10px) * 0.7);overflow:visible;color:inherit;cursor:pointer;background:0 0;border:0;border-radius:3px;border-radius:var(--plyr-control-radius,3px);transition:all 0.3s ease;flex-shrink:0;}.plyr__control svg{display:block;width:18px;width:var(--plyr-control-icon-size,18px);height:18px;height:var(--plyr-control-icon-size,18px);pointer-events:none;fill:currentColor;}.plyr__control:focus{outline:0;}.plyr__control.plyr__tab-focus{outline-width:3px;outline-style:dotted;outline-color:#d9010c;outline-color:var(--plyr-tab-focus-color,var(--plyr-color-main,var(--plyr-color-main,#d9010c)));outline-offset:2px;}a.plyr__control{text-decoration:none;}a.plyr__control::after,\na.plyr__control::before{display:none;}.plyr__control.plyr__control--pressed .icon--not-pressed,\n.plyr__control.plyr__control--pressed .label--not-pressed,\n.plyr__control:not(.plyr__control--pressed) .icon--pressed,\n.plyr__control:not(.plyr__control--pressed) .label--pressed{display:none;}.plyr--full-ui ::-webkit-media-controls{display:none;}.plyr__controls{display:flex;align-items:center;justify-content:flex-end;text-align:center;}.plyr__controls .plyr__progress__container{flex:1;min-width:0;}.plyr__controls .plyr__controls__item{margin-left:calc(10px / 4);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:calc(10px / 4);padding-left:calc(var(--plyr-control-spacing,10px)/ 4);}.plyr__controls .plyr__controls__item.plyr__time{padding:0 calc(10px / 2);padding:0 calc(var(--plyr-control-spacing,10px)/ 2);}.plyr__controls .plyr__controls__item.plyr__progress__container:first-child,\n.plyr__controls .plyr__controls__item.plyr__time+.plyr__time,\n.plyr__controls .plyr__controls__item.plyr__time:first-child{padding-left:0;}.plyr__controls:empty{display:none;}.plyr [data-plyr=\"airplay\"],\n.plyr [data-plyr=\"captions\"],\n.plyr [data-plyr=\"fullscreen\"],\n.plyr [data-plyr=\"pip\"]{display:none;}.plyr--airplay-supported [data-plyr=\"airplay\"],\n.plyr--captions-enabled [data-plyr=\"captions\"],\n.plyr--fullscreen-enabled [data-plyr=\"fullscreen\"],\n.plyr--pip-supported [data-plyr=\"pip\"]{display:inline-block;}.plyr__menu{position:relative;display:flex;}.plyr__menu .plyr__control svg{transition:transform 0.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{position:absolute;right:-3px;bottom:100%;z-index:3;margin-bottom:10px;font-size:15px;font-size:var(--plyr-font-size-base,15px);color:#4a5464;color:var(--plyr-menu-color,#4a5464);text-align:left;white-space:nowrap;background:rgba(255,255,255,0.9);background:var(--plyr-menu-background,rgba(255,255,255,0.9));border-radius:4px;box-shadow:0 1px 2px rgba(0,0,0,0.15);box-shadow:var(--plyr-menu-shadow,0 1px 2px rgba(0,0,0,0.15));animation:plyr-popup 0.2s ease;}.plyr__menu__container>div{overflow:hidden;transition:height 0.35s cubic-bezier(0.4,0,0.2,1), width 0.35s cubic-bezier(0.4,0,0.2,1);}.plyr__menu__container::after{position:absolute;top:100%;right:calc(((18px / 2) + calc(10px * 0.7)) - (4px / 2));right:calc(((var(--plyr-control-icon-size,18px)/ 2) + calc(var(--plyr-control-spacing,10px) * 0.7)) - (var(--plyr-menu-arrow-size,4px)/ 2));width:0;height:0;content:\"\";border:4px solid transparent;border:var(--plyr-menu-arrow-size,4px) solid transparent;border-top-color:rgba(255,255,255,0.9);border-top-color:var(--plyr-menu-background,rgba(255,255,255,0.9));}.plyr__menu__container [role=\"menu\"]{padding:calc(10px * 0.7);padding:calc(var(--plyr-control-spacing,10px) * 0.7);}.plyr__menu__container [role=\"menuitem\"],\n.plyr__menu__container [role=\"menuitemradio\"]{margin-top:2px;}.plyr__menu__container [role=\"menuitem\"]:first-child,\n.plyr__menu__container [role=\"menuitemradio\"]:first-child{margin-top:0;}.plyr__menu__container .plyr__control{display:flex;align-items:center;width:100%;padding-top:calc(calc(10px * 0.7)/ 1.5);padding-top:calc(calc(var(--plyr-control-spacing,10px) * 0.7)/ 1.5);padding-right:calc(calc(10px * 0.7) * 1.5);padding-right:calc(calc(var(--plyr-control-spacing,10px) * 0.7) * 1.5);padding-bottom:calc(calc(10px * 0.7)/ 1.5);padding-bottom:calc(calc(var(--plyr-control-spacing,10px) * 0.7)/ 1.5);padding-left:calc(calc(10px * 0.7) * 1.5);padding-left:calc(calc(var(--plyr-control-spacing,10px) * 0.7) * 1.5);font-size:13px;font-size:var(--plyr-font-size-menu,var(--plyr-font-size-small,13px));color:#4a5464;color:var(--plyr-menu-color,#4a5464);user-select:none;user-select:none;user-select:none;}.plyr__menu__container .plyr__control>span{display:flex;align-items:inherit;width:100%;}.plyr__menu__container .plyr__control::after{position:absolute;top:50%;content:\"\";border:4px solid transparent;border:var(--plyr-menu-item-arrow-size,4px) solid transparent;transform:translateY(-50%);}.plyr__menu__container .plyr__control--forward{padding-right:calc(calc(10px * 0.7) * 4);padding-right:calc(calc(var(--plyr-control-spacing,10px) * 0.7) * 4);}.plyr__menu__container .plyr__control--forward::after{right:calc((calc(10px * 0.7) * 1.5) - 4px);right:calc((calc(var(--plyr-control-spacing,10px) * 0.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.plyr__tab-focus::after,\n.plyr__menu__container .plyr__control--forward:hover::after{border-left-color:currentColor;}.plyr__menu__container .plyr__control--back{position:relative;width:calc(100% - (calc(10px * 0.7) * 2));width:calc(100% - (calc(var(--plyr-control-spacing,10px) * 0.7) * 2));padding-left:calc(calc(10px * 0.7) * 4);padding-left:calc(calc(var(--plyr-control-spacing,10px) * 0.7) * 4);margin:calc(10px * 0.7);margin:calc(var(--plyr-control-spacing,10px) * 0.7);margin-bottom:calc(calc(10px * 0.7)/ 2);margin-bottom:calc(calc(var(--plyr-control-spacing,10px) * 0.7)/ 2);font-weight:400;font-weight:var(--plyr-font-weight-regular,400);}.plyr__menu__container .plyr__control--back::after{left:calc((calc(10px * 0.7) * 1.5) - 4px);left:calc((calc(var(--plyr-control-spacing,10px) * 0.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;height:1px;margin-top:calc(calc(10px * 0.7)/ 2);margin-top:calc(calc(var(--plyr-control-spacing,10px) * 0.7)/ 2);overflow:hidden;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.plyr__tab-focus::after,\n.plyr__menu__container .plyr__control--back:hover::after{border-right-color:currentColor;}.plyr__menu__container .plyr__control[role=\"menuitemradio\"]{padding-left:calc(10px * 0.7);padding-left:calc(var(--plyr-control-spacing,10px) * 0.7);}.plyr__menu__container .plyr__control[role=\"menuitemradio\"]::after,\n.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:\"\";background:rgba(0,0,0,0.1);transition:all 0.3s ease;flex-shrink:0;}.plyr__menu__container .plyr__control[role=\"menuitemradio\"]::after{top:50%;left:12px;width:6px;height:6px;background:#fff;border:0;opacity:0;transition:transform 0.3s ease, opacity 0.3s ease;transform:translateY(-50%) scale(0);}.plyr__menu__container .plyr__control[role=\"menuitemradio\"][aria-checked=\"true\"]::before{background:#d9010c;background:var(--plyr-control-toggle-checked-background,var(--plyr-color-main,var(--plyr-color-main,#d9010c)));}.plyr__menu__container .plyr__control[role=\"menuitemradio\"][aria-checked=\"true\"]::after{opacity:1;transform:translateY(-50%) scale(1);}.plyr__menu__container .plyr__control[role=\"menuitemradio\"].plyr__tab-focus::before,\n.plyr__menu__container .plyr__control[role=\"menuitemradio\"]:hover::before{background:rgba(35,40,47,0.1);}.plyr__menu__container .plyr__menu__value{display:flex;align-items:center;padding-left:calc(calc(10px * 0.7) * 3.5);padding-left:calc(calc(var(--plyr-control-spacing,10px) * 0.7) * 3.5);margin-right:calc((calc(10px * 0.7) - 2) * -1);margin-right:calc((calc(var(--plyr-control-spacing,10px) * 0.7) - 2) * -1);margin-left:auto;overflow:hidden;pointer-events:none;}.plyr--full-ui input[type=\"range\"]{display:block;width:100%;min-width:0;height:calc((3px * 2) + 13px);height:calc((var(--plyr-range-thumb-active-shadow-width,3px) * 2) + var(--plyr-range-thumb-height,13px));padding:0;margin:0;color:#d9010c;color:var(--plyr-range-fill-background,var(--plyr-color-main,var(--plyr-color-main,#d9010c)));background:0 0;border:0;border-radius:calc(13px * 2);border-radius:calc(var(--plyr-range-thumb-height,13px) * 2);transition:box-shadow 0.3s ease;appearance:none;}.plyr--full-ui input[type=\"range\"]::-webkit-slider-runnable-track{height:5px;height:var(--plyr-range-track-height,5px);user-select:none;user-select:none;background:0 0;background-image:linear-gradient(to right,currentColor 0,transparent 0);background-image:linear-gradient(to right,currentColor var(--value,0),transparent var(--value,0));border:0;border-radius:calc(5px / 2);border-radius:calc(var(--plyr-range-track-height,5px)/ 2);transition:box-shadow 0.3s ease;transition:box-shadow 0.3s ease;}.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:calc(((13px - 5px)/ 2) * -1);margin-top:calc(((var(--plyr-range-thumb-height,13px) - var(--plyr-range-track-height,5px))/ 2) * -1);background:#fff;background:var(--plyr-range-thumb-background,#fff);border:0;border-radius:100%;box-shadow:0 1px 1px rgba(35,40,47,0.15), 0 0 0 1px rgba(35,40,47,0.2);box-shadow:var(--plyr-range-thumb-shadow,0 1px 1px rgba(35,40,47,0.15),0 0 0 1px rgba(35,40,47,0.2));transition:all 0.2s ease;transition:all 0.2s ease;appearance:none;}.plyr--full-ui input[type=\"range\"]::-moz-range-track{height:5px;height:var(--plyr-range-track-height,5px);user-select:none;background:0 0;border:0;border-radius:calc(5px / 2);border-radius:calc(var(--plyr-range-track-height,5px)/ 2);transition:box-shadow 0.3s ease;transition:box-shadow 0.3s ease;}.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);background:#fff;background:var(--plyr-range-thumb-background,#fff);border:0;border-radius:100%;box-shadow:0 1px 1px rgba(35,40,47,0.15), 0 0 0 1px rgba(35,40,47,0.2);box-shadow:var(--plyr-range-thumb-shadow,0 1px 1px rgba(35,40,47,0.15),0 0 0 1px rgba(35,40,47,0.2));transition:all 0.2s ease;transition:all 0.2s ease;}.plyr--full-ui input[type=\"range\"]::-moz-range-progress{height:5px;height:var(--plyr-range-track-height,5px);background:currentColor;border-radius:calc(5px / 2);border-radius:calc(var(--plyr-range-track-height,5px)/ 2);}.plyr--full-ui input[type=\"range\"]::-ms-track{height:5px;height:var(--plyr-range-track-height,5px);color:transparent;user-select:none;user-select:none;background:0 0;border:0;border-radius:calc(5px / 2);border-radius:calc(var(--plyr-range-track-height,5px)/ 2);transition:box-shadow 0.3s ease;transition:box-shadow 0.3s ease;}.plyr--full-ui input[type=\"range\"]::-ms-fill-upper{height:5px;height:var(--plyr-range-track-height,5px);user-select:none;user-select:none;background:0 0;border:0;border-radius:calc(5px / 2);border-radius:calc(var(--plyr-range-track-height,5px)/ 2);transition:box-shadow 0.3s ease;transition:box-shadow 0.3s ease;}.plyr--full-ui input[type=\"range\"]::-ms-fill-lower{height:5px;height:var(--plyr-range-track-height,5px);user-select:none;user-select:none;background:0 0;background:currentColor;border:0;border-radius:calc(5px / 2);border-radius:calc(var(--plyr-range-track-height,5px)/ 2);transition:box-shadow 0.3s ease;transition:box-shadow 0.3s ease;}.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;background:#fff;background:var(--plyr-range-thumb-background,#fff);border:0;border-radius:100%;box-shadow:0 1px 1px rgba(35,40,47,0.15), 0 0 0 1px rgba(35,40,47,0.2);box-shadow:var(--plyr-range-thumb-shadow,0 1px 1px rgba(35,40,47,0.15),0 0 0 1px rgba(35,40,47,0.2));transition:all 0.2s ease;transition:all 0.2s ease;}.plyr--full-ui input[type=\"range\"]::-ms-tooltip{display:none;}.plyr--full-ui input[type=\"range\"]:focus{outline:0;}.plyr--full-ui input[type=\"range\"]::-moz-focus-outer{border:0;}.plyr--full-ui input[type=\"range\"].plyr__tab-focus::-webkit-slider-runnable-track{outline-width:3px;outline-style:dotted;outline-color:#d9010c;outline-color:var(--plyr-tab-focus-color,var(--plyr-color-main,var(--plyr-color-main,#d9010c)));outline-offset:2px;}.plyr--full-ui input[type=\"range\"].plyr__tab-focus::-moz-range-track{outline-width:3px;outline-style:dotted;outline-color:#d9010c;outline-color:var(--plyr-tab-focus-color,var(--plyr-color-main,var(--plyr-color-main,#d9010c)));outline-offset:2px;}.plyr--full-ui input[type=\"range\"].plyr__tab-focus::-ms-track{outline-width:3px;outline-style:dotted;outline-color:#d9010c;outline-color:var(--plyr-tab-focus-color,var(--plyr-color-main,var(--plyr-color-main,#d9010c)));outline-offset:2px;}.plyr__poster{position:absolute;top:0;left:0;z-index:1;width:100%;height:100%;background-color:#000;background-repeat:no-repeat;background-position:50% 50%;background-size:contain;opacity:0;transition:opacity 0.2s ease;}.plyr--stopped.plyr__poster-enabled .plyr__poster{opacity:1;}.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:\"\\2044\";}@media (max-width:calc(768px - 1px)){.plyr__time+.plyr__time{display:none;}}.plyr__tooltip{position:absolute;bottom:100%;left:50%;z-index:2;padding:calc(10px / 2) calc(calc(10px / 2) * 1.5);padding:calc(var(--plyr-control-spacing,10px)/ 2) calc(calc(var(--plyr-control-spacing,10px)/ 2) * 1.5);margin-bottom:calc(calc(10px / 2) * 2);margin-bottom:calc(calc(var(--plyr-control-spacing,10px)/ 2) * 2);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;color:#4a5464;color:var(--plyr-tooltip-color,#4a5464);white-space:nowrap;pointer-events:none;background:rgba(255,255,255,0.9);background:var(--plyr-tooltip-background,rgba(255,255,255,0.9));border-radius:3px;border-radius:var(--plyr-tooltip-radius,3px);box-shadow:0 1px 2px rgba(0,0,0,0.15);box-shadow:var(--plyr-tooltip-shadow,0 1px 2px rgba(0,0,0,0.15));opacity:0;transition:transform 0.2s 0.1s ease, opacity 0.2s 0.1s ease;transform:translate(-50%,10px) scale(0.8);transform-origin:50% 100%;}.plyr__tooltip::before{position:absolute;bottom:calc(4px * -1);bottom:calc(var(--plyr-tooltip-arrow-size,4px) * -1);left:50%;z-index:2;width:0;height:0;content:\"\";border-top:4px solid rgba(255,255,255,0.9);border-top:var(--plyr-tooltip-arrow-size,4px) solid var(--plyr-tooltip-background,rgba(255,255,255,0.9));border-right:4px solid transparent;border-right:var(--plyr-tooltip-arrow-size,4px) solid transparent;border-left:4px solid transparent;border-left:var(--plyr-tooltip-arrow-size,4px) solid transparent;transform:translateX(-50%);}.plyr .plyr__control.plyr__tab-focus .plyr__tooltip,\n.plyr .plyr__control:hover .plyr__tooltip,\n.plyr__tooltip--visible{opacity:1;transform:translate(-50%,0) scale(1);}.plyr .plyr__control:hover .plyr__tooltip{z-index:3;}.plyr__controls>.plyr__control:first-child .plyr__tooltip,\n.plyr__controls>.plyr__control:first-child+.plyr__control .plyr__tooltip{left:0;transform:translate(0,10px) scale(0.8);transform-origin:0 100%;}.plyr__controls>.plyr__control:first-child .plyr__tooltip::before,\n.plyr__controls>.plyr__control:first-child+.plyr__control .plyr__tooltip::before{left:calc((18px / 2) + calc(10px * 0.7));left:calc((var(--plyr-control-icon-size,18px)/ 2) + calc(var(--plyr-control-spacing,10px) * 0.7));}.plyr__controls>.plyr__control:last-child .plyr__tooltip{right:0;left:auto;transform:translate(0,10px) scale(0.8);transform-origin:100% 100%;}.plyr__controls>.plyr__control:last-child .plyr__tooltip::before{right:calc((18px / 2) + calc(10px * 0.7));right:calc((var(--plyr-control-icon-size,18px)/ 2) + calc(var(--plyr-control-spacing,10px) * 0.7));left:auto;transform:translateX(50%);}.plyr__controls>.plyr__control:first-child .plyr__tooltip--visible,\n.plyr__controls>.plyr__control:first-child+.plyr__control .plyr__tooltip--visible,\n.plyr__controls>.plyr__control:first-child+.plyr__control.plyr__tab-focus .plyr__tooltip,\n.plyr__controls>.plyr__control:first-child+.plyr__control:hover .plyr__tooltip,\n.plyr__controls>.plyr__control:first-child.plyr__tab-focus .plyr__tooltip,\n.plyr__controls>.plyr__control:first-child:hover .plyr__tooltip,\n.plyr__controls>.plyr__control:last-child .plyr__tooltip--visible,\n.plyr__controls>.plyr__control:last-child.plyr__tab-focus .plyr__tooltip,\n.plyr__controls>.plyr__control:last-child:hover .plyr__tooltip{transform:translate(0,0) scale(1);}.plyr__progress{position:relative;left:calc(13px * 0.5);left:calc(var(--plyr-range-thumb-height,13px) * 0.5);margin-right:13px;margin-right:var(--plyr-range-thumb-height,13px);}.plyr__progress input[type=\"range\"],\n.plyr__progress__buffer{width:calc(100% + 13px);width:calc(100% + var(--plyr-range-thumb-height,13px));margin-right:calc(13px * -0.5);margin-right:calc(var(--plyr-range-thumb-height,13px) * -0.5);margin-left:calc(13px * -0.5);margin-left:calc(var(--plyr-range-thumb-height,13px) * -0.5);}.plyr__progress input[type=\"range\"]{position:relative;z-index:2;}.plyr__progress .plyr__tooltip{left:0;font-size:13px;font-size:var(--plyr-font-size-time,var(--plyr-font-size-small,13px));}.plyr__progress__buffer{position:absolute;top:50%;left:0;height:5px;height:var(--plyr-range-track-height,5px);padding:0;margin-top:calc((5px / 2) * -1);margin-top:calc((var(--plyr-range-track-height,5px)/ 2) * -1);background:0 0;border:0;border-radius:100px;appearance:none;}.plyr__progress__buffer::-webkit-progress-bar{background:0 0;}.plyr__progress__buffer::-webkit-progress-value{min-width:5px;min-width:var(--plyr-range-track-height,5px);background:currentColor;border-radius:100px;transition:width 0.2s ease;transition:width 0.2s ease;}.plyr__progress__buffer::-moz-progress-bar{min-width:5px;min-width:var(--plyr-range-track-height,5px);background:currentColor;border-radius:100px;transition:width 0.2s ease;transition:width 0.2s ease;}.plyr__progress__buffer::-ms-fill{border-radius:100px;transition:width 0.2s ease;transition:width 0.2s ease;}.plyr--loading .plyr__progress__buffer{color:transparent;background-image:linear-gradient(-45deg,rgba(35,40,47,0.6) 25%,transparent 25%,transparent 50%,rgba(35,40,47,0.6) 50%,rgba(35,40,47,0.6) 75%,transparent 75%,transparent);background-image:linear-gradient(-45deg,var(--plyr-progress-loading-background,rgba(35,40,47,0.6)) 25%,transparent 25%,transparent 50%,var(--plyr-progress-loading-background,rgba(35,40,47,0.6)) 50%,var(--plyr-progress-loading-background,rgba(35,40,47,0.6)) 75%,transparent 75%,transparent);background-repeat:repeat-x;background-size:25px 25px;background-size:var(--plyr-progress-loading-size,25px) var(--plyr-progress-loading-size,25px);animation:plyr-progress 1s linear infinite;}.plyr--video.plyr--loading .plyr__progress__buffer{background-color:rgba(255,255,255,0.25);background-color:var(--plyr-video-progress-buffered-background,rgba(255,255,255,0.25));}.plyr--audio.plyr--loading .plyr__progress__buffer{background-color:rgba(193,200,209,0.6);background-color:var(--plyr-audio-progress-buffered-background,rgba(193,200,209,0.6));}.plyr__volume{position:relative;display:flex;align-items:center;width:20%;min-width:80px;max-width:110px;}.plyr__volume input[type=\"range\"]{position:relative;z-index:2;margin-right:calc(10px / 2);margin-right:calc(var(--plyr-control-spacing,10px)/ 2);margin-left:calc(10px / 2);margin-left:calc(var(--plyr-control-spacing,10px)/ 2);}.plyr--is-ios .plyr__volume{width:auto;min-width:0;}.plyr--audio{display:block;}.plyr--audio .plyr__controls{padding:10px;padding:var(--plyr-control-spacing,10px);color:#4a5464;color:var(--plyr-audio-control-color,#4a5464);background:#fff;background:var(--plyr-audio-controls-background,#fff);border-radius:inherit;}.plyr--audio .plyr__control.plyr__tab-focus,\n.plyr--audio .plyr__control:hover,\n.plyr--audio .plyr__control[aria-expanded=\"true\"]{color:#fff;color:var(--plyr-audio-control-color-hover,#fff);background:#d9010c;background:var(--plyr-audio-control-background-hover,var(--plyr-color-main,var(--plyr-color-main,#d9010c)));}.plyr--full-ui.plyr--audio input[type=\"range\"]::-webkit-slider-runnable-track{background-color:rgba(193,200,209,0.6);background-color:var(--plyr-audio-range-track-background,var(--plyr-audio-progress-buffered-background,rgba(193,200,209,0.6)));}.plyr--full-ui.plyr--audio input[type=\"range\"]::-moz-range-track{background-color:rgba(193,200,209,0.6);background-color:var(--plyr-audio-range-track-background,var(--plyr-audio-progress-buffered-background,rgba(193,200,209,0.6)));}.plyr--full-ui.plyr--audio input[type=\"range\"]::-ms-track{background-color:rgba(193,200,209,0.6);background-color:var(--plyr-audio-range-track-background,var(--plyr-audio-progress-buffered-background,rgba(193,200,209,0.6)));}.plyr--full-ui.plyr--audio input[type=\"range\"]:active::-webkit-slider-thumb{box-shadow:0 1px 1px rgba(35,40,47,0.15), 0 0 0 1px rgba(35,40,47,0.2), 0 0 0 3px rgba(35,40,47,0.1);box-shadow:var(--plyr-range-thumb-shadow,0 1px 1px rgba(35,40,47,0.15),0 0 0 1px rgba(35,40,47,0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width,3px) var(--plyr-audio-range-thumb-active-shadow-color,rgba(35,40,47,0.1));}.plyr--full-ui.plyr--audio input[type=\"range\"]:active::-moz-range-thumb{box-shadow:0 1px 1px rgba(35,40,47,0.15), 0 0 0 1px rgba(35,40,47,0.2), 0 0 0 3px rgba(35,40,47,0.1);box-shadow:var(--plyr-range-thumb-shadow,0 1px 1px rgba(35,40,47,0.15),0 0 0 1px rgba(35,40,47,0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width,3px) var(--plyr-audio-range-thumb-active-shadow-color,rgba(35,40,47,0.1));}.plyr--full-ui.plyr--audio input[type=\"range\"]:active::-ms-thumb{box-shadow:0 1px 1px rgba(35,40,47,0.15), 0 0 0 1px rgba(35,40,47,0.2), 0 0 0 3px rgba(35,40,47,0.1);box-shadow:var(--plyr-range-thumb-shadow,0 1px 1px rgba(35,40,47,0.15),0 0 0 1px rgba(35,40,47,0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width,3px) var(--plyr-audio-range-thumb-active-shadow-color,rgba(35,40,47,0.1));}.plyr--audio .plyr__progress__buffer{color:rgba(193,200,209,0.6);color:var(--plyr-audio-progress-buffered-background,rgba(193,200,209,0.6));}.plyr--video{overflow:hidden;background:#000;}.plyr--video.plyr--menu-open{overflow:visible;}.plyr__video-wrapper{position:relative;width:100%;height:100%;margin:auto;overflow:hidden;background:#000;}.plyr__video-embed,\n.plyr__video-wrapper--fixed-ratio{height:0;padding-bottom:56.25%;}.plyr__video-embed iframe,\n.plyr__video-wrapper--fixed-ratio video{position:absolute;top:0;left:0;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;right:0;bottom:0;left:0;z-index:3;padding:calc(10px / 2);padding:calc(var(--plyr-control-spacing,10px)/ 2);padding-top:calc(10px * 2);padding-top:calc(var(--plyr-control-spacing,10px) * 2);color:#fff;color:var(--plyr-video-control-color,#fff);background:linear-gradient(rgba(0,0,0,0),rgba(0,0,0,0.75));background:var(--plyr-video-controls-background,linear-gradient(rgba(0,0,0,0),rgba(0,0,0,0.75)));border-bottom-right-radius:inherit;border-bottom-left-radius:inherit;transition:opacity 0.4s ease-in-out, transform 0.4s ease-in-out;}@media (min-width:480px){.plyr--video .plyr__controls{padding:10px;padding:var(--plyr-control-spacing,10px);padding-top:calc(10px * 3.5);padding-top:calc(var(--plyr-control-spacing,10px) * 3.5);}}.plyr--video.plyr--hide-controls .plyr__controls{pointer-events:none;opacity:0;transform:translateY(100%);}.plyr--video .plyr__control.plyr__tab-focus,\n.plyr--video .plyr__control:hover,\n.plyr--video .plyr__control[aria-expanded=\"true\"]{color:#fff;color:var(--plyr-video-control-color-hover,#fff);background:#d9010c;background:var(--plyr-video-control-background-hover,var(--plyr-color-main,var(--plyr-color-main,#d9010c)));}.plyr__control--overlaid{position:absolute;top:50%;left:50%;z-index:2;display:none;padding:calc(10px * 1.5);padding:calc(var(--plyr-control-spacing,10px) * 1.5);color:#fff;color:var(--plyr-video-control-color,#fff);background:#d9010c;background:var(--plyr-video-control-background-hover,var(--plyr-color-main,var(--plyr-color-main,#d9010c)));border:0;border-radius:100%;opacity:0.9;transition:0.3s;transform:translate(-50%,-50%);}.plyr__control--overlaid svg{position:relative;left:2px;}.plyr__control--overlaid:focus,\n.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,0.25);background-color:var(--plyr-video-range-track-background,var(--plyr-video-progress-buffered-background,rgba(255,255,255,0.25)));}.plyr--full-ui.plyr--video input[type=\"range\"]::-moz-range-track{background-color:rgba(255,255,255,0.25);background-color:var(--plyr-video-range-track-background,var(--plyr-video-progress-buffered-background,rgba(255,255,255,0.25)));}.plyr--full-ui.plyr--video input[type=\"range\"]::-ms-track{background-color:rgba(255,255,255,0.25);background-color:var(--plyr-video-range-track-background,var(--plyr-video-progress-buffered-background,rgba(255,255,255,0.25)));}.plyr--full-ui.plyr--video input[type=\"range\"]:active::-webkit-slider-thumb{box-shadow:0 1px 1px rgba(35,40,47,0.15), 0 0 0 1px rgba(35,40,47,0.2), 0 0 0 3px rgba(255,255,255,0.5);box-shadow:var(--plyr-range-thumb-shadow,0 1px 1px rgba(35,40,47,0.15),0 0 0 1px rgba(35,40,47,0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width,3px) var(--plyr-audio-range-thumb-active-shadow-color,rgba(255,255,255,0.5));}.plyr--full-ui.plyr--video input[type=\"range\"]:active::-moz-range-thumb{box-shadow:0 1px 1px rgba(35,40,47,0.15), 0 0 0 1px rgba(35,40,47,0.2), 0 0 0 3px rgba(255,255,255,0.5);box-shadow:var(--plyr-range-thumb-shadow,0 1px 1px rgba(35,40,47,0.15),0 0 0 1px rgba(35,40,47,0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width,3px) var(--plyr-audio-range-thumb-active-shadow-color,rgba(255,255,255,0.5));}.plyr--full-ui.plyr--video input[type=\"range\"]:active::-ms-thumb{box-shadow:0 1px 1px rgba(35,40,47,0.15), 0 0 0 1px rgba(35,40,47,0.2), 0 0 0 3px rgba(255,255,255,0.5);box-shadow:var(--plyr-range-thumb-shadow,0 1px 1px rgba(35,40,47,0.15),0 0 0 1px rgba(35,40,47,0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width,3px) var(--plyr-audio-range-thumb-active-shadow-color,rgba(255,255,255,0.5));}.plyr--video .plyr__progress__buffer{color:rgba(255,255,255,0.25);color:var(--plyr-video-progress-buffered-background,rgba(255,255,255,0.25));}.plyr:full-screen{width:100%;height:100%;margin:0;background:#000;border-radius:0!important;}.plyr:fullscreen{width:100%;height:100%;margin:0;background:#000;border-radius:0!important;}.plyr:fullscreen{width:100%;height:100%;margin:0;background:#000;border-radius:0!important;}.plyr:full-screen video{height:100%;}.plyr:fullscreen video{height:100%;}.plyr:fullscreen video{height:100%;}.plyr:full-screen .plyr__video-wrapper{position:static;height:100%;}.plyr:fullscreen .plyr__video-wrapper{position:static;height:100%;}.plyr:fullscreen .plyr__video-wrapper{position:static;height:100%;}.plyr:full-screen.plyr--vimeo .plyr__video-wrapper{position:relative;height:0;}.plyr:fullscreen.plyr--vimeo .plyr__video-wrapper{position:relative;height:0;}.plyr:fullscreen.plyr--vimeo .plyr__video-wrapper{position:relative;height:0;}.plyr:full-screen .plyr__control .icon--exit-fullscreen{display:block;}.plyr:fullscreen .plyr__control .icon--exit-fullscreen{display:block;}.plyr:fullscreen .plyr__control .icon--exit-fullscreen{display:block;}.plyr:full-screen .plyr__control .icon--exit-fullscreen+svg{display:none;}.plyr:fullscreen .plyr__control .icon--exit-fullscreen+svg{display:none;}.plyr:fullscreen .plyr__control .icon--exit-fullscreen+svg{display:none;}.plyr:full-screen.plyr--hide-controls{cursor:none;}.plyr:fullscreen.plyr--hide-controls{cursor:none;}.plyr:fullscreen.plyr--hide-controls{cursor:none;}@media (min-width:1024px){.plyr:full-screen .plyr__captions{font-size:21px;font-size:var(--plyr-font-size-xlarge,21px);}.plyr:fullscreen .plyr__captions{font-size:21px;font-size:var(--plyr-font-size-xlarge,21px);}.plyr:fullscreen .plyr__captions{font-size:21px;font-size:var(--plyr-font-size-xlarge,21px);}}.plyr:full-screen{width:100%;height:100%;margin:0;background:#000;border-radius:0!important;}.plyr:full-screen video{height:100%;}.plyr:full-screen .plyr__video-wrapper{position:static;height:100%;}.plyr:full-screen.plyr--vimeo .plyr__video-wrapper{position:relative;height:0;}.plyr:full-screen .plyr__control .icon--exit-fullscreen{display:block;}.plyr:full-screen .plyr__control .icon--exit-fullscreen+svg{display:none;}.plyr:full-screen.plyr--hide-controls{cursor:none;}@media (min-width:1024px){.plyr:full-screen .plyr__captions{font-size:21px;font-size:var(--plyr-font-size-xlarge,21px);}}.plyr:full-screen{width:100%;height:100%;margin:0;background:#000;border-radius:0!important;}.plyr:full-screen video{height:100%;}.plyr:full-screen .plyr__video-wrapper{position:static;height:100%;}.plyr:full-screen.plyr--vimeo .plyr__video-wrapper{position:relative;height:0;}.plyr:full-screen .plyr__control .icon--exit-fullscreen{display:block;}.plyr:full-screen .plyr__control .icon--exit-fullscreen+svg{display:none;}.plyr:full-screen.plyr--hide-controls{cursor:none;}@media (min-width:1024px){.plyr:full-screen .plyr__captions{font-size:21px;font-size:var(--plyr-font-size-xlarge,21px);}}.plyr:fullscreen{width:100%;height:100%;margin:0;background:#000;border-radius:0!important;}.plyr:fullscreen video{height:100%;}.plyr:fullscreen .plyr__video-wrapper{position:static;height:100%;}.plyr:fullscreen.plyr--vimeo .plyr__video-wrapper{position:relative;height:0;}.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;}@media (min-width:1024px){.plyr:fullscreen .plyr__captions{font-size:21px;font-size:var(--plyr-font-size-xlarge,21px);}}.plyr--fullscreen-fallback{position:fixed;top:0;right:0;bottom:0;left:0;z-index:10000000;display:block;width:100%;height:100%;margin:0;background:#000;border-radius:0!important;}.plyr--fullscreen-fallback video{height:100%;}.plyr--fullscreen-fallback .plyr__video-wrapper{position:static;height:100%;}.plyr--fullscreen-fallback.plyr--vimeo .plyr__video-wrapper{position:relative;height:0;}.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;}@media (min-width:1024px){.plyr--fullscreen-fallback .plyr__captions{font-size:21px;font-size:var(--plyr-font-size-xlarge,21px);}}.plyr__ads{position:absolute;top:0;right:0;bottom:0;left:0;z-index:-1;overflow:hidden;cursor:pointer;border-radius:inherit;}.plyr__ads>div,\n.plyr__ads>div iframe{position:absolute;width:100%;height:100%;}.plyr__ads::after{position:absolute;right:10px;right:var(--plyr-control-spacing,10px);bottom:10px;bottom:var(--plyr-control-spacing,10px);z-index:3;padding:2px 6px;font-size:11px;color:#fff;pointer-events:none;content:attr(data-badge-text);background:#23282f;border-radius:2px;}.plyr__ads::after:empty{display:none;}.plyr__cues{position:absolute;top:50%;left:0;z-index:3;display:block;width:3px;height:5px;height:var(--plyr-range-track-height,5px);margin:-var(--plyr-range-track-height,5px)/2 0 0;background:currentColor;opacity:0.8;}.plyr__preview-thumb{position:absolute;bottom:100%;z-index:2;padding:3px;padding:var(--plyr-tooltip-radius,3px);margin-bottom:calc(calc(10px / 2) * 2);margin-bottom:calc(calc(var(--plyr-control-spacing,10px)/ 2) * 2);pointer-events:none;background-color:rgba(255,255,255,0.9);background-color:var(--plyr-tooltip-background,rgba(255,255,255,0.9));border-radius:3px;box-shadow:0 1px 2px rgba(0,0,0,0.15);box-shadow:var(--plyr-tooltip-shadow,0 1px 2px rgba(0,0,0,0.15));opacity:0;transition:transform 0.2s 0.1s ease, opacity 0.2s 0.1s ease;transform:translate(0,10px) scale(0.8);transform-origin:50% 100%;}.plyr__preview-thumb--is-shown{opacity:1;transform:translate(0,0) scale(1);}.plyr__preview-thumb::before{position:absolute;bottom:calc(4px * -1);bottom:calc(var(--plyr-tooltip-arrow-size,4px) * -1);left:50%;z-index:2;width:0;height:0;content:\"\";border-top:4px solid rgba(255,255,255,0.9);border-top:var(--plyr-tooltip-arrow-size,4px) solid var(--plyr-tooltip-background,rgba(255,255,255,0.9));border-right:4px solid transparent;border-right:var(--plyr-tooltip-arrow-size,4px) solid transparent;border-left:4px solid transparent;border-left:var(--plyr-tooltip-arrow-size,4px) solid transparent;transform:translateX(-50%);}.plyr__preview-thumb__image-container{position:relative;z-index:0;overflow:hidden;background:#c1c8d1;border-radius:calc(3px - 1px);border-radius:calc(var(--plyr-tooltip-radius,3px) - 1px);}.plyr__preview-thumb__image-container img{position:absolute;top:0;left:0;width:100%;max-width:none;height:100%;max-height:none;}.plyr__preview-thumb__time-container{position:absolute;right:0;bottom:6px;left:0;z-index:3;white-space:nowrap;}.plyr__preview-thumb__time-container span{padding:3px 6px;font-size:13px;font-size:var(--plyr-font-size-time,var(--plyr-font-size-small,13px));color:#fff;background-color:rgba(0,0,0,0.55);border-radius:calc(3px - 1px);border-radius:calc(var(--plyr-tooltip-radius,3px) - 1px);}.plyr__preview-scrubbing{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;width:100%;height:100%;margin:auto;overflow:hidden;pointer-events:none;filter:blur(1px);opacity:0;transition:opacity 0.3s ease;}.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;width:1px!important;height:1px!important;padding:0!important;overflow:hidden;clip:rect(1px,1px,1px,1px);border:0!important;}.plyr [hidden]{display:none!important;}\n"],"names":[],"version":3,"file":"main.css.map"}
\ No newline at end of file
diff --git a/blocks/media/video/default/dist/main.js b/blocks/media/video/default/dist/main.js
new file mode 100644
index 00000000..170b46b6
--- /dev/null
+++ b/blocks/media/video/default/dist/main.js
@@ -0,0 +1,27 @@
+!function(){function e(e){return e&&e.__esModule?e.default:e}"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:"undefined"!=typeof window?window:"undefined"!=typeof global&&global;var t={};
+/*!
+ * jQuery JavaScript Library v3.6.0
+ * https://jquery.com/
+ *
+ * Includes Sizzle.js
+ * https://sizzlejs.com/
+ *
+ * Copyright OpenJS Foundation and other contributors
+ * Released under the MIT license
+ * https://jquery.org/license
+ *
+ * Date: 2021-03-02T17:08Z
+ */
+!function(e,i){"object"==typeof t?t=e.document?i(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return i(e)}:i(e)}("undefined"!=typeof window?window:t,(function(e,t){"use strict";var i=[],n=Object.getPrototypeOf,s=i.slice,r=i.flat?function(e){return i.flat.call(e)}:function(e){return i.concat.apply([],e)},o=i.push,a=i.indexOf,l={},c=l.toString,u=l.hasOwnProperty,d=u.toString,h=d.call(Object),p={},f=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType&&"function"!=typeof e.item},m=function(e){return null!=e&&e===e.window},g=e.document,y={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,i){var n,s,r=(i=i||g).createElement("script");if(r.text=e,t)for(n in y)(s=t[n]||t.getAttribute&&t.getAttribute(n))&&r.setAttribute(n,s);i.head.appendChild(r).parentNode.removeChild(r)}function v(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?l[c.call(e)]||"object":typeof e}var w="3.6.0",T=function(e,t){return new T.fn.init(e,t)};function x(e){var t=!!e&&"length"in e&&e.length,i=v(e);return!f(e)&&!m(e)&&("array"===i||0===t||"number"==typeof t&&t>0&&t-1 in e)}T.fn=T.prototype={jquery:w,constructor:T,length:0,toArray:function(){return s.call(this)},get:function(e){return null==e?s.call(this):e<0?this[e+this.length]:this[e]},pushStack:function(e){var t=T.merge(this.constructor(),e);return t.prevObject=this,t},each:function(e){return T.each(this,e)},map:function(e){return this.pushStack(T.map(this,(function(t,i){return e.call(t,i,t)})))},slice:function(){return this.pushStack(s.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},even:function(){return this.pushStack(T.grep(this,(function(e,t){return(t+1)%2})))},odd:function(){return this.pushStack(T.grep(this,(function(e,t){return t%2})))},eq:function(e){var t=this.length,i=+e+(e<0?t:0);return this.pushStack(i>=0&&i
+~]|[\\x20\\t\\r\\n\\f])[\\x20\\t\\r\\n\\f]*"),U=new RegExp(H+"|>"),z=new RegExp(R),X=new RegExp("^"+$+"$"),K={ID:new RegExp("^#("+$+")"),CLASS:new RegExp("^\\.("+$+")"),TAG:new RegExp("^("+$+"|[*])"),ATTR:new RegExp("^"+_),PSEUDO:new RegExp("^"+R),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\([\\x20\\t\\r\\n\\f]*(even|odd|(([+-]|)(\\d*)n|)[\\x20\\t\\r\\n\\f]*(?:([+-]|)[\\x20\\t\\r\\n\\f]*(\\d+)|))[\\x20\\t\\r\\n\\f]*\\)|)","i"),bool:new RegExp("^(?:"+O+")$","i"),needsContext:new RegExp("^[\\x20\\t\\r\\n\\f]*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\([\\x20\\t\\r\\n\\f]*((?:-\\d)?\\d*)[\\x20\\t\\r\\n\\f]*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,G=/^h\d$/i,J=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}[\\x20\\t\\r\\n\\f]?|\\\\([^\\r\\n\\f])","g"),ie=function(e,t){var i="0x"+e.slice(1)-65536;return t||(i<0?String.fromCharCode(i+65536):String.fromCharCode(i>>10|55296,1023&i|56320))},ne=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,se=function(e,t){return t?"\0"===e?"�":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},re=function(){h()},oe=we((function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()}),{dir:"parentNode",next:"legend"});try{M.apply(L=I.call(T.childNodes),T.childNodes),L[T.childNodes.length].nodeType}catch(e){M={apply:L.length?function(e,t){D.apply(e,I.call(t))}:function(e,t){for(var i=e.length,n=0;e[i++]=t[n++];);e.length=i-1}}}function ae(e,t,n,s){var r,a,c,u,d,f,y,b=t&&t.ownerDocument,T=t?t.nodeType:9;if(n=n||[],"string"!=typeof e||!e||1!==T&&9!==T&&11!==T)return n;if(!s&&(h(t),t=t||p,m)){if(11!==T&&(d=Z.exec(e)))if(r=d[1]){if(9===T){if(!(c=t.getElementById(r)))return n;if(c.id===r)return n.push(c),n}else if(b&&(c=b.getElementById(r))&&v(t,c)&&c.id===r)return n.push(c),n}else{if(d[2])return M.apply(n,t.getElementsByTagName(e)),n;if((r=d[3])&&i.getElementsByClassName&&t.getElementsByClassName)return M.apply(n,t.getElementsByClassName(r)),n}if(i.qsa&&!A[e+" "]&&(!g||!g.test(e))&&(1!==T||"object"!==t.nodeName.toLowerCase())){if(y=e,b=t,1===T&&(U.test(e)||V.test(e))){for((b=ee.test(e)&&ye(t.parentNode)||t)===t&&i.scope||((u=t.getAttribute("id"))?u=u.replace(ne,se):t.setAttribute("id",u=w)),a=(f=o(e)).length;a--;)f[a]=(u?"#"+u:":scope")+" "+ve(f[a]);y=f.join(",")}try{return M.apply(n,b.querySelectorAll(y)),n}catch(t){A(e,!0)}finally{u===w&&t.removeAttribute("id")}}}return l(e.replace(B,"$1"),t,n,s)}function le(){var e=[];return function t(i,s){return e.push(i+" ")>n.cacheLength&&delete t[e.shift()],t[i+" "]=s}}function ce(e){return e[w]=!0,e}function ue(e){var t=p.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function de(e,t){for(var i=e.split("|"),s=i.length;s--;)n.attrHandle[i[s]]=t}function he(e,t){var i=t&&e,n=i&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(n)return n;if(i)for(;i=i.nextSibling;)if(i===t)return-1;return e?1:-1}function pe(e){return function(t){return"input"===t.nodeName.toLowerCase()&&t.type===e}}function fe(e){return function(t){var i=t.nodeName.toLowerCase();return("input"===i||"button"===i)&&t.type===e}}function me(e){return function(t){return"form"in t?t.parentNode&&!1===t.disabled?"label"in t?"label"in t.parentNode?t.parentNode.disabled===e:t.disabled===e:t.isDisabled===e||t.isDisabled!==!e&&oe(t)===e:t.disabled===e:"label"in t&&t.disabled===e}}function ge(e){return ce((function(t){return t=+t,ce((function(i,n){for(var s,r=e([],i.length,t),o=r.length;o--;)i[s=r[o]]&&(i[s]=!(n[s]=i[s]))}))}))}function ye(e){return e&&void 0!==e.getElementsByTagName&&e}for(t in i=ae.support={},r=ae.isXML=function(e){var t=e&&e.namespaceURI,i=e&&(e.ownerDocument||e).documentElement;return!Y.test(t||i&&i.nodeName||"HTML")},h=ae.setDocument=function(e){var t,s,o=e?e.ownerDocument||e:T;return o!=p&&9===o.nodeType&&o.documentElement?(f=(p=o).documentElement,m=!r(p),T!=p&&(s=p.defaultView)&&s.top!==s&&(s.addEventListener?s.addEventListener("unload",re,!1):s.attachEvent&&s.attachEvent("onunload",re)),i.scope=ue((function(e){return f.appendChild(e).appendChild(p.createElement("div")),void 0!==e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length})),i.attributes=ue((function(e){return e.className="i",!e.getAttribute("className")})),i.getElementsByTagName=ue((function(e){return e.appendChild(p.createComment("")),!e.getElementsByTagName("*").length})),i.getElementsByClassName=J.test(p.getElementsByClassName),i.getById=ue((function(e){return f.appendChild(e).id=w,!p.getElementsByName||!p.getElementsByName(w).length})),i.getById?(n.filter.ID=function(e){var t=e.replace(te,ie);return function(e){return e.getAttribute("id")===t}},n.find.ID=function(e,t){if(void 0!==t.getElementById&&m){var i=t.getElementById(e);return i?[i]:[]}}):(n.filter.ID=function(e){var t=e.replace(te,ie);return function(e){var i=void 0!==e.getAttributeNode&&e.getAttributeNode("id");return i&&i.value===t}},n.find.ID=function(e,t){if(void 0!==t.getElementById&&m){var i,n,s,r=t.getElementById(e);if(r){if((i=r.getAttributeNode("id"))&&i.value===e)return[r];for(s=t.getElementsByName(e),n=0;r=s[n++];)if((i=r.getAttributeNode("id"))&&i.value===e)return[r]}return[]}}),n.find.TAG=i.getElementsByTagName?function(e,t){return void 0!==t.getElementsByTagName?t.getElementsByTagName(e):i.qsa?t.querySelectorAll(e):void 0}:function(e,t){var i,n=[],s=0,r=t.getElementsByTagName(e);if("*"===e){for(;i=r[s++];)1===i.nodeType&&n.push(i);return n}return r},n.find.CLASS=i.getElementsByClassName&&function(e,t){if(void 0!==t.getElementsByClassName&&m)return t.getElementsByClassName(e)},y=[],g=[],(i.qsa=J.test(p.querySelectorAll))&&(ue((function(e){var t;f.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&g.push("[*^$]=[\\x20\\t\\r\\n\\f]*(?:''|\"\")"),e.querySelectorAll("[selected]").length||g.push("\\[[\\x20\\t\\r\\n\\f]*(?:value|"+O+")"),e.querySelectorAll("[id~="+w+"-]").length||g.push("~="),(t=p.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||g.push("\\[[\\x20\\t\\r\\n\\f]*name[\\x20\\t\\r\\n\\f]*=[\\x20\\t\\r\\n\\f]*(?:''|\"\")"),e.querySelectorAll(":checked").length||g.push(":checked"),e.querySelectorAll("a#"+w+"+*").length||g.push(".#.+[+~]"),e.querySelectorAll("\\\f"),g.push("[\\r\\n\\f]")})),ue((function(e){e.innerHTML="";var t=p.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&g.push("name[\\x20\\t\\r\\n\\f]*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&g.push(":enabled",":disabled"),f.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&g.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),g.push(",.*:")}))),(i.matchesSelector=J.test(b=f.matches||f.webkitMatchesSelector||f.mozMatchesSelector||f.oMatchesSelector||f.msMatchesSelector))&&ue((function(e){i.disconnectedMatch=b.call(e,"*"),b.call(e,"[s!='']:x"),y.push("!=",R)})),g=g.length&&new RegExp(g.join("|")),y=y.length&&new RegExp(y.join("|")),t=J.test(f.compareDocumentPosition),v=t||J.test(f.contains)?function(e,t){var i=9===e.nodeType?e.documentElement:e,n=t&&t.parentNode;return e===n||!(!n||1!==n.nodeType||!(i.contains?i.contains(n):e.compareDocumentPosition&&16&e.compareDocumentPosition(n)))}:function(e,t){if(t)for(;t=t.parentNode;)if(t===e)return!0;return!1},N=t?function(e,t){if(e===t)return d=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!i.sortDetached&&t.compareDocumentPosition(e)===n?e==p||e.ownerDocument==T&&v(T,e)?-1:t==p||t.ownerDocument==T&&v(T,t)?1:u?q(u,e)-q(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return d=!0,0;var i,n=0,s=e.parentNode,r=t.parentNode,o=[e],a=[t];if(!s||!r)return e==p?-1:t==p?1:s?-1:r?1:u?q(u,e)-q(u,t):0;if(s===r)return he(e,t);for(i=e;i=i.parentNode;)o.unshift(i);for(i=t;i=i.parentNode;)a.unshift(i);for(;o[n]===a[n];)n++;return n?he(o[n],a[n]):o[n]==T?-1:a[n]==T?1:0},p):p},ae.matches=function(e,t){return ae(e,null,null,t)},ae.matchesSelector=function(e,t){if(h(e),i.matchesSelector&&m&&!A[t+" "]&&(!y||!y.test(t))&&(!g||!g.test(t)))try{var n=b.call(e,t);if(n||i.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){A(t,!0)}return ae(t,p,null,[e]).length>0},ae.contains=function(e,t){return(e.ownerDocument||e)!=p&&h(e),v(e,t)},ae.attr=function(e,t){(e.ownerDocument||e)!=p&&h(e);var s=n.attrHandle[t.toLowerCase()],r=s&&P.call(n.attrHandle,t.toLowerCase())?s(e,t,!m):void 0;return void 0!==r?r:i.attributes||!m?e.getAttribute(t):(r=e.getAttributeNode(t))&&r.specified?r.value:null},ae.escape=function(e){return(e+"").replace(ne,se)},ae.error=function(e){throw new Error("Syntax error, unrecognized expression: "+e)},ae.uniqueSort=function(e){var t,n=[],s=0,r=0;if(d=!i.detectDuplicates,u=!i.sortStable&&e.slice(0),e.sort(N),d){for(;t=e[r++];)t===e[r]&&(s=n.push(r));for(;s--;)e.splice(n[s],1)}return u=null,e},s=ae.getText=function(e){var t,i="",n=0,r=e.nodeType;if(r){if(1===r||9===r||11===r){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)i+=s(e)}else if(3===r||4===r)return e.nodeValue}else for(;t=e[n++];)i+=s(t);return i},(n=ae.selectors={cacheLength:50,createPseudo:ce,match:K,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ie),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ie),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||ae.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&ae.error(e[0]),e},PSEUDO:function(e){var t,i=!e[6]&&e[2];return K.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":i&&z.test(i)&&(t=o(i,!0))&&(t=i.indexOf(")",i.length-t)-i.length)&&(e[0]=e[0].slice(0,t),e[2]=i.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ie).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=C[e+" "];return t||(t=new RegExp("(^|[\\x20\\t\\r\\n\\f])"+e+"("+H+"|$)"),C(e,(function(e){return t.test("string"==typeof e.className&&e.className||void 0!==e.getAttribute&&e.getAttribute("class")||"")})))},ATTR:function(e,t,i){return function(n){var s=ae.attr(n,e);return null==s?"!="===t:!t||(s+="","="===t?s===i:"!="===t?s!==i:"^="===t?i&&0===s.indexOf(i):"*="===t?i&&s.indexOf(i)>-1:"$="===t?i&&s.slice(-i.length)===i:"~="===t?(" "+s.replace(F," ")+" ").indexOf(i)>-1:"|="===t&&(s===i||s.slice(0,i.length+1)===i+"-"))}},CHILD:function(e,t,i,n,s){var r="nth"!==e.slice(0,3),o="last"!==e.slice(-4),a="of-type"===t;return 1===n&&0===s?function(e){return!!e.parentNode}:function(t,i,l){var c,u,d,h,p,f,m=r!==o?"nextSibling":"previousSibling",g=t.parentNode,y=a&&t.nodeName.toLowerCase(),b=!l&&!a,v=!1;if(g){if(r){for(;m;){for(h=t;h=h[m];)if(a?h.nodeName.toLowerCase()===y:1===h.nodeType)return!1;f=m="only"===e&&!f&&"nextSibling"}return!0}if(f=[o?g.firstChild:g.lastChild],o&&b){for(v=(p=(c=(u=(d=(h=g)[w]||(h[w]={}))[h.uniqueID]||(d[h.uniqueID]={}))[e]||[])[0]===x&&c[1])&&c[2],h=p&&g.childNodes[p];h=++p&&h&&h[m]||(v=p=0)||f.pop();)if(1===h.nodeType&&++v&&h===t){u[e]=[x,p,v];break}}else if(b&&(v=p=(c=(u=(d=(h=t)[w]||(h[w]={}))[h.uniqueID]||(d[h.uniqueID]={}))[e]||[])[0]===x&&c[1]),!1===v)for(;(h=++p&&h&&h[m]||(v=p=0)||f.pop())&&((a?h.nodeName.toLowerCase()!==y:1!==h.nodeType)||!++v||(b&&((u=(d=h[w]||(h[w]={}))[h.uniqueID]||(d[h.uniqueID]={}))[e]=[x,v]),h!==t)););return(v-=s)===n||v%n==0&&v/n>=0}}},PSEUDO:function(e,t){var i,s=n.pseudos[e]||n.setFilters[e.toLowerCase()]||ae.error("unsupported pseudo: "+e);return s[w]?s(t):s.length>1?(i=[e,e,"",t],n.setFilters.hasOwnProperty(e.toLowerCase())?ce((function(e,i){for(var n,r=s(e,t),o=r.length;o--;)e[n=q(e,r[o])]=!(i[n]=r[o])})):function(e){return s(e,0,i)}):s}},pseudos:{not:ce((function(e){var t=[],i=[],n=a(e.replace(B,"$1"));return n[w]?ce((function(e,t,i,s){for(var r,o=n(e,null,s,[]),a=e.length;a--;)(r=o[a])&&(e[a]=!(t[a]=r))})):function(e,s,r){return t[0]=e,n(t,null,r,i),t[0]=null,!i.pop()}})),has:ce((function(e){return function(t){return ae(e,t).length>0}})),contains:ce((function(e){return e=e.replace(te,ie),function(t){return(t.textContent||s(t)).indexOf(e)>-1}})),lang:ce((function(e){return X.test(e||"")||ae.error("unsupported lang: "+e),e=e.replace(te,ie).toLowerCase(),function(t){var i;do{if(i=m?t.lang:t.getAttribute("xml:lang")||t.getAttribute("lang"))return(i=i.toLowerCase())===e||0===i.indexOf(e+"-")}while((t=t.parentNode)&&1===t.nodeType);return!1}})),target:function(t){var i=e.location&&e.location.hash;return i&&i.slice(1)===t.id},root:function(e){return e===f},focus:function(e){return e===p.activeElement&&(!p.hasFocus||p.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:me(!1),disabled:me(!0),checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,!0===e.selected},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType<6)return!1;return!0},parent:function(e){return!n.pseudos.empty(e)},header:function(e){return G.test(e.nodeName)},input:function(e){return Q.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||"text"===t.toLowerCase())},first:ge((function(){return[0]})),last:ge((function(e,t){return[t-1]})),eq:ge((function(e,t,i){return[i<0?i+t:i]})),even:ge((function(e,t){for(var i=0;it?t:i;--n>=0;)e.push(n);return e})),gt:ge((function(e,t,i){for(var n=i<0?i+t:i;++n1?function(t,i,n){for(var s=e.length;s--;)if(!e[s](t,i,n))return!1;return!0}:e[0]}function xe(e,t,i,n,s){for(var r,o=[],a=0,l=e.length,c=null!=t;a-1&&(r[c]=!(o[c]=d))}}else y=xe(y===o?y.splice(f,y.length):y),s?s(null,o,y,l):M.apply(o,y)}))}function Ce(e){for(var t,i,s,r=e.length,o=n.relative[e[0].type],a=o||n.relative[" "],l=o?1:0,u=we((function(e){return e===t}),a,!0),d=we((function(e){return q(t,e)>-1}),a,!0),h=[function(e,i,n){var s=!o&&(n||i!==c)||((t=i).nodeType?u(e,i,n):d(e,i,n));return t=null,s}];l1&&Te(h),l>1&&ve(e.slice(0,l-1).concat({value:" "===e[l-2].type?"*":""})).replace(B,"$1"),i,l0,s=e.length>0,r=function(r,o,a,l,u){var d,f,g,y=0,b="0",v=r&&[],w=[],T=c,k=r||s&&n.find.TAG("*",u),C=x+=null==T?1:Math.random()||.1,E=k.length;for(u&&(c=o==p||o||u);b!==E&&null!=(d=k[b]);b++){if(s&&d){for(f=0,o||d.ownerDocument==p||(h(d),a=!m);g=e[f++];)if(g(d,o||p,a)){l.push(d);break}u&&(x=C)}i&&((d=!g&&d)&&y--,r&&v.push(d))}if(y+=b,i&&b!==y){for(f=0;g=t[f++];)g(v,w,o,a);if(r){if(y>0)for(;b--;)v[b]||w[b]||(w[b]=j.call(l));w=xe(w)}M.apply(l,w),u&&!r&&w.length>0&&y+t.length>1&&ae.uniqueSort(l)}return u&&(x=C,c=T),v};return i?ce(r):r}(r,s)),a.selector=e}return a},l=ae.select=function(e,t,i,s){var r,l,c,u,d,h="function"==typeof e&&e,p=!s&&o(e=h.selector||e);if(i=i||[],1===p.length){if((l=p[0]=p[0].slice(0)).length>2&&"ID"===(c=l[0]).type&&9===t.nodeType&&m&&n.relative[l[1].type]){if(!(t=(n.find.ID(c.matches[0].replace(te,ie),t)||[])[0]))return i;h&&(t=t.parentNode),e=e.slice(l.shift().value.length)}for(r=K.needsContext.test(e)?0:l.length;r--&&(c=l[r],!n.relative[u=c.type]);)if((d=n.find[u])&&(s=d(c.matches[0].replace(te,ie),ee.test(l[0].type)&&ye(t.parentNode)||t))){if(l.splice(r,1),!(e=s.length&&ve(l)))return M.apply(i,s),i;break}}return(h||a(e,p))(s,t,!m,i,!t||ee.test(e)&&ye(t.parentNode)||t),i},i.sortStable=w.split("").sort(N).join("")===w,i.detectDuplicates=!!d,h(),i.sortDetached=ue((function(e){return 1&e.compareDocumentPosition(p.createElement("fieldset"))})),ue((function(e){return e.innerHTML="","#"===e.firstChild.getAttribute("href")}))||de("type|href|height|width",(function(e,t,i){if(!i)return e.getAttribute(t,"type"===t.toLowerCase()?1:2)})),i.attributes&&ue((function(e){return e.innerHTML="",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")}))||de("value",(function(e,t,i){if(!i&&"input"===e.nodeName.toLowerCase())return e.defaultValue})),ue((function(e){return null==e.getAttribute("disabled")}))||de(O,(function(e,t,i){var n;if(!i)return!0===e[t]?t.toLowerCase():(n=e.getAttributeNode(t))&&n.specified?n.value:null})),ae}(e);T.find=k,T.expr=k.selectors,T.expr[":"]=T.expr.pseudos,T.uniqueSort=T.unique=k.uniqueSort,T.text=k.getText,T.isXMLDoc=k.isXML,T.contains=k.contains,T.escapeSelector=k.escape;var C=function(e,t,i){for(var n=[],s=void 0!==i;(e=e[t])&&9!==e.nodeType;)if(1===e.nodeType){if(s&&T(e).is(i))break;n.push(e)}return n},E=function(e,t){for(var i=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&i.push(e);return i},S=T.expr.match.needsContext;function A(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()}var N=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function P(e,t,i){return f(t)?T.grep(e,(function(e,n){return!!t.call(e,n,e)!==i})):t.nodeType?T.grep(e,(function(e){return e===t!==i})):"string"!=typeof t?T.grep(e,(function(e){return a.call(t,e)>-1!==i})):T.filter(t,e,i)}T.filter=function(e,t,i){var n=t[0];return i&&(e=":not("+e+")"),1===t.length&&1===n.nodeType?T.find.matchesSelector(n,e)?[n]:[]:T.find.matches(e,T.grep(t,(function(e){return 1===e.nodeType})))},T.fn.extend({find:function(e){var t,i,n=this.length,s=this;if("string"!=typeof e)return this.pushStack(T(e).filter((function(){for(t=0;t1?T.uniqueSort(i):i},filter:function(e){return this.pushStack(P(this,e||[],!1))},not:function(e){return this.pushStack(P(this,e||[],!0))},is:function(e){return!!P(this,"string"==typeof e&&S.test(e)?T(e):e||[],!1).length}});var L,j=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/;(T.fn.init=function(e,t,i){var n,s;if(!e)return this;if(i=i||L,"string"==typeof e){if(!(n="<"===e[0]&&">"===e[e.length-1]&&e.length>=3?[null,e,null]:j.exec(e))||!n[1]&&t)return!t||t.jquery?(t||i).find(e):this.constructor(t).find(e);if(n[1]){if(t=t instanceof T?t[0]:t,T.merge(this,T.parseHTML(n[1],t&&t.nodeType?t.ownerDocument||t:g,!0)),N.test(n[1])&&T.isPlainObject(t))for(n in t)f(this[n])?this[n](t[n]):this.attr(n,t[n]);return this}return(s=g.getElementById(n[2]))&&(this[0]=s,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):f(e)?void 0!==i.ready?i.ready(e):e(T):T.makeArray(e,this)}).prototype=T.fn,L=T(g);var D=/^(?:parents|prev(?:Until|All))/,M={children:!0,contents:!0,next:!0,prev:!0};function I(e,t){for(;(e=e[t])&&1!==e.nodeType;);return e}T.fn.extend({has:function(e){var t=T(e,this),i=t.length;return this.filter((function(){for(var e=0;e-1:1===i.nodeType&&T.find.matchesSelector(i,e))){r.push(i);break}return this.pushStack(r.length>1?T.uniqueSort(r):r)},index:function(e){return e?"string"==typeof e?a.call(T(e),this[0]):a.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(T.uniqueSort(T.merge(this.get(),T(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),T.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return C(e,"parentNode")},parentsUntil:function(e,t,i){return C(e,"parentNode",i)},next:function(e){return I(e,"nextSibling")},prev:function(e){return I(e,"previousSibling")},nextAll:function(e){return C(e,"nextSibling")},prevAll:function(e){return C(e,"previousSibling")},nextUntil:function(e,t,i){return C(e,"nextSibling",i)},prevUntil:function(e,t,i){return C(e,"previousSibling",i)},siblings:function(e){return E((e.parentNode||{}).firstChild,e)},children:function(e){return E(e.firstChild)},contents:function(e){return null!=e.contentDocument&&n(e.contentDocument)?e.contentDocument:(A(e,"template")&&(e=e.content||e),T.merge([],e.childNodes))}},(function(e,t){T.fn[e]=function(i,n){var s=T.map(this,t,i);return"Until"!==e.slice(-5)&&(n=i),n&&"string"==typeof n&&(s=T.filter(n,s)),this.length>1&&(M[e]||T.uniqueSort(s),D.test(e)&&s.reverse()),this.pushStack(s)}}));var q=/[^\x20\t\r\n\f]+/g;function O(e){return e}function H(e){throw e}function $(e,t,i,n){var s;try{e&&f(s=e.promise)?s.call(e).done(t).fail(i):e&&f(s=e.then)?s.call(e,t,i):t.apply(void 0,[e].slice(n))}catch(e){i.apply(void 0,[e])}}T.Callbacks=function(e){e="string"==typeof e?function(e){var t={};return T.each(e.match(q)||[],(function(e,i){t[i]=!0})),t}(e):T.extend({},e);var t,i,n,s,r=[],o=[],a=-1,l=function(){for(s=s||e.once,n=t=!0;o.length;a=-1)for(i=o.shift();++a-1;)r.splice(i,1),i<=a&&a--})),this},has:function(e){return e?T.inArray(e,r)>-1:r.length>0},empty:function(){return r&&(r=[]),this},disable:function(){return s=o=[],r=i="",this},disabled:function(){return!r},lock:function(){return s=o=[],i||t||(r=i=""),this},locked:function(){return!!s},fireWith:function(e,i){return s||(i=[e,(i=i||[]).slice?i.slice():i],o.push(i),t||l()),this},fire:function(){return c.fireWith(this,arguments),this},fired:function(){return!!n}};return c},T.extend({Deferred:function(t){var i=[["notify","progress",T.Callbacks("memory"),T.Callbacks("memory"),2],["resolve","done",T.Callbacks("once memory"),T.Callbacks("once memory"),0,"resolved"],["reject","fail",T.Callbacks("once memory"),T.Callbacks("once memory"),1,"rejected"]],n="pending",s={state:function(){return n},always:function(){return r.done(arguments).fail(arguments),this},catch:function(e){return s.then(null,e)},pipe:function(){var e=arguments;return T.Deferred((function(t){T.each(i,(function(i,n){var s=f(e[n[4]])&&e[n[4]];r[n[1]]((function(){var e=s&&s.apply(this,arguments);e&&f(e.promise)?e.promise().progress(t.notify).done(t.resolve).fail(t.reject):t[n[0]+"With"](this,s?[e]:arguments)}))})),e=null})).promise()},then:function(t,n,s){var r=0;function o(t,i,n,s){return function(){var a=this,l=arguments,c=function(){var e,c;if(!(t=r&&(n!==H&&(a=void 0,l=[e]),i.rejectWith(a,l))}};t?u():(T.Deferred.getStackHook&&(u.stackTrace=T.Deferred.getStackHook()),e.setTimeout(u))}}return T.Deferred((function(e){i[0][3].add(o(0,e,f(s)?s:O,e.notifyWith)),i[1][3].add(o(0,e,f(t)?t:O)),i[2][3].add(o(0,e,f(n)?n:H))})).promise()},promise:function(e){return null!=e?T.extend(e,s):s}},r={};return T.each(i,(function(e,t){var o=t[2],a=t[5];s[t[1]]=o.add,a&&o.add((function(){n=a}),i[3-e][2].disable,i[3-e][3].disable,i[0][2].lock,i[0][3].lock),o.add(t[3].fire),r[t[0]]=function(){return r[t[0]+"With"](this===r?void 0:this,arguments),this},r[t[0]+"With"]=o.fireWith})),s.promise(r),t&&t.call(r,r),r},when:function(e){var t=arguments.length,i=t,n=Array(i),r=s.call(arguments),o=T.Deferred(),a=function(e){return function(i){n[e]=this,r[e]=arguments.length>1?s.call(arguments):i,--t||o.resolveWith(n,r)}};if(t<=1&&($(e,o.done(a(i)).resolve,o.reject,!t),"pending"===o.state()||f(r[i]&&r[i].then)))return o.then();for(;i--;)$(r[i],a(i),o.reject);return o.promise()}});var _=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;T.Deferred.exceptionHook=function(t,i){e.console&&e.console.warn&&t&&_.test(t.name)&&e.console.warn("jQuery.Deferred exception: "+t.message,t.stack,i)},T.readyException=function(t){e.setTimeout((function(){throw t}))};var R=T.Deferred();function F(){g.removeEventListener("DOMContentLoaded",F),e.removeEventListener("load",F),T.ready()}T.fn.ready=function(e){return R.then(e).catch((function(e){T.readyException(e)})),this},T.extend({isReady:!1,readyWait:1,ready:function(e){(!0===e?--T.readyWait:T.isReady)||(T.isReady=!0,!0!==e&&--T.readyWait>0||R.resolveWith(g,[T]))}}),T.ready.then=R.then,"complete"===g.readyState||"loading"!==g.readyState&&!g.documentElement.doScroll?e.setTimeout(T.ready):(g.addEventListener("DOMContentLoaded",F),e.addEventListener("load",F));var B=function(e,t,i,n,s,r,o){var a=0,l=e.length,c=null==i;if("object"===v(i))for(a in s=!0,i)B(e,t,a,i[a],!0,r,o);else if(void 0!==n&&(s=!0,f(n)||(o=!0),c&&(o?(t.call(e,n),t=null):(c=t,t=function(e,t,i){return c.call(T(e),i)})),t))for(;a1,null,!0)},removeData:function(e){return this.each((function(){Q.remove(this,e)}))}}),T.extend({queue:function(e,t,i){var n;if(e)return t=(t||"fx")+"queue",n=Y.get(e,t),i&&(!n||Array.isArray(i)?n=Y.access(e,t,T.makeArray(i)):n.push(i)),n||[]},dequeue:function(e,t){t=t||"fx";var i=T.queue(e,t),n=i.length,s=i.shift(),r=T._queueHooks(e,t);"inprogress"===s&&(s=i.shift(),n--),s&&("fx"===t&&i.unshift("inprogress"),delete r.stop,s.call(e,(function(){T.dequeue(e,t)}),r)),!n&&r&&r.empty.fire()},_queueHooks:function(e,t){var i=t+"queueHooks";return Y.get(e,i)||Y.access(e,i,{empty:T.Callbacks("once memory").add((function(){Y.remove(e,[t+"queue",i])}))})}}),T.fn.extend({queue:function(e,t){var i=2;return"string"!=typeof e&&(t=e,e="fx",i--),arguments.length\x20\t\r\n\f]*)/i,me=/^$|^module$|\/(?:java|ecma)script/i;de=g.createDocumentFragment().appendChild(g.createElement("div")),(he=g.createElement("input")).setAttribute("type","radio"),he.setAttribute("checked","checked"),he.setAttribute("name","t"),de.appendChild(he),p.checkClone=de.cloneNode(!0).cloneNode(!0).lastChild.checked,de.innerHTML="",p.noCloneChecked=!!de.cloneNode(!0).lastChild.defaultValue,de.innerHTML="",p.option=!!de.lastChild;var ge={thead:[1,""],col:[2,""],tr:[2,""],td:[3,""],_default:[0,"",""]};function ye(e,t){var i;return i=void 0!==e.getElementsByTagName?e.getElementsByTagName(t||"*"):void 0!==e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?T.merge([e],i):i}function be(e,t){for(var i=0,n=e.length;i",""]);var ve=/<|?\w+;/;function we(e,t,i,n,s){for(var r,o,a,l,c,u,d=t.createDocumentFragment(),h=[],p=0,f=e.length;p-1)s&&s.push(r);else if(c=se(r),o=ye(d.appendChild(r),"script"),c&&be(o),i)for(u=0;r=o[u++];)me.test(r.type||"")&&i.push(r);return d}var Te=/^([^.]*)(?:\.(.+)|)/;function xe(){return!0}function ke(){return!1}function Ce(e,t){return e===function(){try{return g.activeElement}catch(e){}}()==("focus"===t)}function Ee(e,t,i,n,s,r){var o,a;if("object"==typeof t){for(a in"string"!=typeof i&&(n=n||i,i=void 0),t)Ee(e,a,i,n,t[a],r);return e}if(null==n&&null==s?(s=i,n=i=void 0):null==s&&("string"==typeof i?(s=n,n=void 0):(s=n,n=i,i=void 0)),!1===s)s=ke;else if(!s)return e;return 1===r&&(o=s,s=function(e){return T().off(e),o.apply(this,arguments)},s.guid=o.guid||(o.guid=T.guid++)),e.each((function(){T.event.add(this,t,s,n,i)}))}function Se(e,t,i){i?(Y.set(e,t,!1),T.event.add(e,t,{namespace:!1,handler:function(e){var n,r,o=Y.get(this,t);if(1&e.isTrigger&&this[t]){if(o.length)(T.event.special[t]||{}).delegateType&&e.stopPropagation();else if(o=s.call(arguments),Y.set(this,t,o),n=i(this,t),this[t](),o!==(r=Y.get(this,t))||n?Y.set(this,t,!1):r={},o!==r)return e.stopImmediatePropagation(),e.preventDefault(),r&&r.value}else o.length&&(Y.set(this,t,{value:T.event.trigger(T.extend(o[0],T.Event.prototype),o.slice(1),this)}),e.stopImmediatePropagation())}})):void 0===Y.get(e,t)&&T.event.add(e,t,xe)}T.event={global:{},add:function(e,t,i,n,s){var r,o,a,l,c,u,d,h,p,f,m,g=Y.get(e);if(X(e))for(i.handler&&(i=(r=i).handler,s=r.selector),s&&T.find.matchesSelector(ne,s),i.guid||(i.guid=T.guid++),(l=g.events)||(l=g.events=Object.create(null)),(o=g.handle)||(o=g.handle=function(t){return void 0!==T&&T.event.triggered!==t.type?T.event.dispatch.apply(e,arguments):void 0}),c=(t=(t||"").match(q)||[""]).length;c--;)p=m=(a=Te.exec(t[c])||[])[1],f=(a[2]||"").split(".").sort(),p&&(d=T.event.special[p]||{},p=(s?d.delegateType:d.bindType)||p,d=T.event.special[p]||{},u=T.extend({type:p,origType:m,data:n,handler:i,guid:i.guid,selector:s,needsContext:s&&T.expr.match.needsContext.test(s),namespace:f.join(".")},r),(h=l[p])||((h=l[p]=[]).delegateCount=0,d.setup&&!1!==d.setup.call(e,n,f,o)||e.addEventListener&&e.addEventListener(p,o)),d.add&&(d.add.call(e,u),u.handler.guid||(u.handler.guid=i.guid)),s?h.splice(h.delegateCount++,0,u):h.push(u),T.event.global[p]=!0)},remove:function(e,t,i,n,s){var r,o,a,l,c,u,d,h,p,f,m,g=Y.hasData(e)&&Y.get(e);if(g&&(l=g.events)){for(c=(t=(t||"").match(q)||[""]).length;c--;)if(p=m=(a=Te.exec(t[c])||[])[1],f=(a[2]||"").split(".").sort(),p){for(d=T.event.special[p]||{},h=l[p=(n?d.delegateType:d.bindType)||p]||[],a=a[2]&&new RegExp("(^|\\.)"+f.join("\\.(?:.*\\.|)")+"(\\.|$)"),o=r=h.length;r--;)u=h[r],!s&&m!==u.origType||i&&i.guid!==u.guid||a&&!a.test(u.namespace)||n&&n!==u.selector&&("**"!==n||!u.selector)||(h.splice(r,1),u.selector&&h.delegateCount--,d.remove&&d.remove.call(e,u));o&&!h.length&&(d.teardown&&!1!==d.teardown.call(e,f,g.handle)||T.removeEvent(e,p,g.handle),delete l[p])}else for(p in l)T.event.remove(e,p+t[c],i,n,!0);T.isEmptyObject(l)&&Y.remove(e,"handle events")}},dispatch:function(e){var t,i,n,s,r,o,a=new Array(arguments.length),l=T.event.fix(e),c=(Y.get(this,"events")||Object.create(null))[l.type]||[],u=T.event.special[l.type]||{};for(a[0]=l,t=1;t=1))for(;c!==this;c=c.parentNode||this)if(1===c.nodeType&&("click"!==e.type||!0!==c.disabled)){for(r=[],o={},i=0;i-1:T.find(s,this,null,[c]).length),o[s]&&r.push(n);r.length&&a.push({elem:c,handlers:r})}return c=this,l\s*$/g;function Le(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&T(e).children("tbody")[0]||e}function je(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function De(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Me(e,t){var i,n,s,r,o,a;if(1===t.nodeType){if(Y.hasData(e)&&(a=Y.get(e).events))for(s in Y.remove(t,"handle events"),a)for(i=0,n=a[s].length;i1&&"string"==typeof g&&!p.checkClone&&Ne.test(g))return e.each((function(s){var r=e.eq(s);y&&(t[0]=g.call(this,s,r.html())),Ie(r,t,i,n)}));if(h&&(o=(s=we(t,e[0].ownerDocument,!1,e,n)).firstChild,1===s.childNodes.length&&(s=o),o||n)){for(l=(a=T.map(ye(s,"script"),je)).length;d0&&be(o,!d&&ye(e,"script")),u},cleanData:function(e){for(var t,i,n,s=T.event.special,r=0;void 0!==(i=e[r]);r++)if(X(i)){if(t=i[Y.expando]){if(t.events)for(n in t.events)s[n]?T.event.remove(i,n):T.removeEvent(i,n,t.handle);i[Y.expando]=void 0}i[Q.expando]&&(i[Q.expando]=void 0)}}}),T.fn.extend({detach:function(e){return qe(this,e,!0)},remove:function(e){return qe(this,e)},text:function(e){return B(this,(function(e){return void 0===e?T.text(this):this.empty().each((function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=e)}))}),null,e,arguments.length)},append:function(){return Ie(this,arguments,(function(e){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||Le(this,e).appendChild(e)}))},prepend:function(){return Ie(this,arguments,(function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=Le(this,e);t.insertBefore(e,t.firstChild)}}))},before:function(){return Ie(this,arguments,(function(e){this.parentNode&&this.parentNode.insertBefore(e,this)}))},after:function(){return Ie(this,arguments,(function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)}))},empty:function(){for(var e,t=0;null!=(e=this[t]);t++)1===e.nodeType&&(T.cleanData(ye(e,!1)),e.textContent="");return this},clone:function(e,t){return e=null!=e&&e,t=null==t?e:t,this.map((function(){return T.clone(this,e,t)}))},html:function(e){return B(this,(function(e){var t=this[0]||{},i=0,n=this.length;if(void 0===e&&1===t.nodeType)return t.innerHTML;if("string"==typeof e&&!Ae.test(e)&&!ge[(fe.exec(e)||["",""])[1].toLowerCase()]){e=T.htmlPrefilter(e);try{for(;i=0&&(l+=Math.max(0,Math.ceil(e["offset"+t[0].toUpperCase()+t.slice(1)]-r-l-a-.5))||0),l}function Je(e,t,i){var n=He(e),s=(!p.boxSizingReliable()||i)&&"border-box"===T.css(e,"boxSizing",!1,n),r=s,o=Re(e,t,n),a="offset"+t[0].toUpperCase()+t.slice(1);if(Oe.test(o)){if(!i)return o;o="auto"}return(!p.boxSizingReliable()&&s||!p.reliableTrDimensions()&&A(e,"tr")||"auto"===o||!parseFloat(o)&&"inline"===T.css(e,"display",!1,n))&&e.getClientRects().length&&(s="border-box"===T.css(e,"boxSizing",!1,n),(r=a in e)&&(o=e[a])),(o=parseFloat(o)||0)+Ge(e,t,i||(s?"border":"content"),r,n,o)+"px"}function Ze(e,t,i,n,s){return new Ze.prototype.init(e,t,i,n,s)}T.extend({cssHooks:{opacity:{get:function(e,t){if(t){var i=Re(e,"opacity");return""===i?"1":i}}}},cssNumber:{animationIterationCount:!0,columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,gridArea:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnStart:!0,gridRow:!0,gridRowEnd:!0,gridRowStart:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{},style:function(e,t,i,n){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var s,r,o,a=z(t),l=Xe.test(t),c=e.style;if(l||(t=Ue(a)),o=T.cssHooks[t]||T.cssHooks[a],void 0===i)return o&&"get"in o&&void 0!==(s=o.get(e,!1,n))?s:c[t];"string"===(r=typeof i)&&(s=te.exec(i))&&s[1]&&(i=ae(e,t,s),r="number"),null!=i&&i==i&&("number"!==r||l||(i+=s&&s[3]||(T.cssNumber[a]?"":"px")),p.clearCloneStyle||""!==i||0!==t.indexOf("background")||(c[t]="inherit"),o&&"set"in o&&void 0===(i=o.set(e,i,n))||(l?c.setProperty(t,i):c[t]=i))}},css:function(e,t,i,n){var s,r,o,a=z(t);return Xe.test(t)||(t=Ue(a)),(o=T.cssHooks[t]||T.cssHooks[a])&&"get"in o&&(s=o.get(e,!0,i)),void 0===s&&(s=Re(e,t,n)),"normal"===s&&t in Ye&&(s=Ye[t]),""===i||i?(r=parseFloat(s),!0===i||isFinite(r)?r||0:s):s}}),T.each(["height","width"],(function(e,t){T.cssHooks[t]={get:function(e,i,n){if(i)return!ze.test(T.css(e,"display"))||e.getClientRects().length&&e.getBoundingClientRect().width?Je(e,t,n):$e(e,Ke,(function(){return Je(e,t,n)}))},set:function(e,i,n){var s,r=He(e),o=!p.scrollboxSize()&&"absolute"===r.position,a=(o||n)&&"border-box"===T.css(e,"boxSizing",!1,r),l=n?Ge(e,t,n,a,r):0;return a&&o&&(l-=Math.ceil(e["offset"+t[0].toUpperCase()+t.slice(1)]-parseFloat(r[t])-Ge(e,t,"border",!1,r)-.5)),l&&(s=te.exec(i))&&"px"!==(s[3]||"px")&&(e.style[t]=i,i=T.css(e,t)),Qe(0,i,l)}}})),T.cssHooks.marginLeft=Fe(p.reliableMarginLeft,(function(e,t){if(t)return(parseFloat(Re(e,"marginLeft"))||e.getBoundingClientRect().left-$e(e,{marginLeft:0},(function(){return e.getBoundingClientRect().left})))+"px"})),T.each({margin:"",padding:"",border:"Width"},(function(e,t){T.cssHooks[e+t]={expand:function(i){for(var n=0,s={},r="string"==typeof i?i.split(" "):[i];n<4;n++)s[e+ie[n]+t]=r[n]||r[n-2]||r[0];return s}},"margin"!==e&&(T.cssHooks[e+t].set=Qe)})),T.fn.extend({css:function(e,t){return B(this,(function(e,t,i){var n,s,r={},o=0;if(Array.isArray(t)){for(n=He(e),s=t.length;o1)}}),T.Tween=Ze,Ze.prototype={constructor:Ze,init:function(e,t,i,n,s,r){this.elem=e,this.prop=i,this.easing=s||T.easing._default,this.options=t,this.start=this.now=this.cur(),this.end=n,this.unit=r||(T.cssNumber[i]?"":"px")},cur:function(){var e=Ze.propHooks[this.prop];return e&&e.get?e.get(this):Ze.propHooks._default.get(this)},run:function(e){var t,i=Ze.propHooks[this.prop];return this.options.duration?this.pos=t=T.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):this.pos=t=e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),i&&i.set?i.set(this):Ze.propHooks._default.set(this),this}},Ze.prototype.init.prototype=Ze.prototype,Ze.propHooks={_default:{get:function(e){var t;return 1!==e.elem.nodeType||null!=e.elem[e.prop]&&null==e.elem.style[e.prop]?e.elem[e.prop]:(t=T.css(e.elem,e.prop,""))&&"auto"!==t?t:0},set:function(e){T.fx.step[e.prop]?T.fx.step[e.prop](e):1!==e.elem.nodeType||!T.cssHooks[e.prop]&&null==e.elem.style[Ue(e.prop)]?e.elem[e.prop]=e.now:T.style(e.elem,e.prop,e.now+e.unit)}}},Ze.propHooks.scrollTop=Ze.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},T.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2},_default:"swing"},T.fx=Ze.prototype.init,T.fx.step={};var et,tt,it=/^(?:toggle|show|hide)$/,nt=/queueHooks$/;function st(){tt&&(!1===g.hidden&&e.requestAnimationFrame?e.requestAnimationFrame(st):e.setTimeout(st,T.fx.interval),T.fx.tick())}function rt(){return e.setTimeout((function(){et=void 0})),et=Date.now()}function ot(e,t){var i,n=0,s={height:e};for(t=t?1:0;n<4;n+=2-t)s["margin"+(i=ie[n])]=s["padding"+i]=e;return t&&(s.opacity=s.width=e),s}function at(e,t,i){for(var n,s=(lt.tweeners[t]||[]).concat(lt.tweeners["*"]),r=0,o=s.length;r1)},removeAttr:function(e){return this.each((function(){T.removeAttr(this,e)}))}}),T.extend({attr:function(e,t,i){var n,s,r=e.nodeType;if(3!==r&&8!==r&&2!==r)return void 0===e.getAttribute?T.prop(e,t,i):(1===r&&T.isXMLDoc(e)||(s=T.attrHooks[t.toLowerCase()]||(T.expr.match.bool.test(t)?ct:void 0)),void 0!==i?null===i?void T.removeAttr(e,t):s&&"set"in s&&void 0!==(n=s.set(e,i,t))?n:(e.setAttribute(t,i+""),i):s&&"get"in s&&null!==(n=s.get(e,t))?n:null==(n=T.find.attr(e,t))?void 0:n)},attrHooks:{type:{set:function(e,t){if(!p.radioValue&&"radio"===t&&A(e,"input")){var i=e.value;return e.setAttribute("type",t),i&&(e.value=i),t}}}},removeAttr:function(e,t){var i,n=0,s=t&&t.match(q);if(s&&1===e.nodeType)for(;i=s[n++];)e.removeAttribute(i)}}),ct={set:function(e,t,i){return!1===t?T.removeAttr(e,i):e.setAttribute(i,i),i}},T.each(T.expr.match.bool.source.match(/\w+/g),(function(e,t){var i=ut[t]||T.find.attr;ut[t]=function(e,t,n){var s,r,o=t.toLowerCase();return n||(r=ut[o],ut[o]=s,s=null!=i(e,t,n)?o:null,ut[o]=r),s}}));var dt=/^(?:input|select|textarea|button)$/i,ht=/^(?:a|area)$/i;function pt(e){return(e.match(q)||[]).join(" ")}function ft(e){return e.getAttribute&&e.getAttribute("class")||""}function mt(e){return Array.isArray(e)?e:"string"==typeof e&&e.match(q)||[]}T.fn.extend({prop:function(e,t){return B(this,T.prop,e,t,arguments.length>1)},removeProp:function(e){return this.each((function(){delete this[T.propFix[e]||e]}))}}),T.extend({prop:function(e,t,i){var n,s,r=e.nodeType;if(3!==r&&8!==r&&2!==r)return 1===r&&T.isXMLDoc(e)||(t=T.propFix[t]||t,s=T.propHooks[t]),void 0!==i?s&&"set"in s&&void 0!==(n=s.set(e,i,t))?n:e[t]=i:s&&"get"in s&&null!==(n=s.get(e,t))?n:e[t]},propHooks:{tabIndex:{get:function(e){var t=T.find.attr(e,"tabindex");return t?parseInt(t,10):dt.test(e.nodeName)||ht.test(e.nodeName)&&e.href?0:-1}}},propFix:{for:"htmlFor",class:"className"}}),p.optSelected||(T.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null},set:function(e){var t=e.parentNode;t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex)}}),T.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],(function(){T.propFix[this.toLowerCase()]=this})),T.fn.extend({addClass:function(e){var t,i,n,s,r,o,a,l=0;if(f(e))return this.each((function(t){T(this).addClass(e.call(this,t,ft(this)))}));if((t=mt(e)).length)for(;i=this[l++];)if(s=ft(i),n=1===i.nodeType&&" "+pt(s)+" "){for(o=0;r=t[o++];)n.indexOf(" "+r+" ")<0&&(n+=r+" ");s!==(a=pt(n))&&i.setAttribute("class",a)}return this},removeClass:function(e){var t,i,n,s,r,o,a,l=0;if(f(e))return this.each((function(t){T(this).removeClass(e.call(this,t,ft(this)))}));if(!arguments.length)return this.attr("class","");if((t=mt(e)).length)for(;i=this[l++];)if(s=ft(i),n=1===i.nodeType&&" "+pt(s)+" "){for(o=0;r=t[o++];)for(;n.indexOf(" "+r+" ")>-1;)n=n.replace(" "+r+" "," ");s!==(a=pt(n))&&i.setAttribute("class",a)}return this},toggleClass:function(e,t){var i=typeof e,n="string"===i||Array.isArray(e);return"boolean"==typeof t&&n?t?this.addClass(e):this.removeClass(e):f(e)?this.each((function(i){T(this).toggleClass(e.call(this,i,ft(this),t),t)})):this.each((function(){var t,s,r,o;if(n)for(s=0,r=T(this),o=mt(e);t=o[s++];)r.hasClass(t)?r.removeClass(t):r.addClass(t);else void 0!==e&&"boolean"!==i||((t=ft(this))&&Y.set(this,"__className__",t),this.setAttribute&&this.setAttribute("class",t||!1===e?"":Y.get(this,"__className__")||""))}))},hasClass:function(e){var t,i,n=0;for(t=" "+e+" ";i=this[n++];)if(1===i.nodeType&&(" "+pt(ft(i))+" ").indexOf(t)>-1)return!0;return!1}});var gt=/\r/g;T.fn.extend({val:function(e){var t,i,n,s=this[0];return arguments.length?(n=f(e),this.each((function(i){var s;1===this.nodeType&&(null==(s=n?e.call(this,i,T(this).val()):e)?s="":"number"==typeof s?s+="":Array.isArray(s)&&(s=T.map(s,(function(e){return null==e?"":e+""}))),(t=T.valHooks[this.type]||T.valHooks[this.nodeName.toLowerCase()])&&"set"in t&&void 0!==t.set(this,s,"value")||(this.value=s))}))):s?(t=T.valHooks[s.type]||T.valHooks[s.nodeName.toLowerCase()])&&"get"in t&&void 0!==(i=t.get(s,"value"))?i:"string"==typeof(i=s.value)?i.replace(gt,""):null==i?"":i:void 0}}),T.extend({valHooks:{option:{get:function(e){var t=T.find.attr(e,"value");return null!=t?t:pt(T.text(e))}},select:{get:function(e){var t,i,n,s=e.options,r=e.selectedIndex,o="select-one"===e.type,a=o?null:[],l=o?r+1:s.length;for(n=r<0?l:o?r:0;n-1)&&(i=!0);return i||(e.selectedIndex=-1),r}}}}),T.each(["radio","checkbox"],(function(){T.valHooks[this]={set:function(e,t){if(Array.isArray(t))return e.checked=T.inArray(T(e).val(),t)>-1}},p.checkOn||(T.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})})),p.focusin="onfocusin"in e;var yt=/^(?:focusinfocus|focusoutblur)$/,bt=function(e){e.stopPropagation()};T.extend(T.event,{trigger:function(t,i,n,s){var r,o,a,l,c,d,h,p,y=[n||g],b=u.call(t,"type")?t.type:t,v=u.call(t,"namespace")?t.namespace.split("."):[];if(o=p=a=n=n||g,3!==n.nodeType&&8!==n.nodeType&&!yt.test(b+T.event.triggered)&&(b.indexOf(".")>-1&&(v=b.split("."),b=v.shift(),v.sort()),c=b.indexOf(":")<0&&"on"+b,(t=t[T.expando]?t:new T.Event(b,"object"==typeof t&&t)).isTrigger=s?2:3,t.namespace=v.join("."),t.rnamespace=t.namespace?new RegExp("(^|\\.)"+v.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,t.result=void 0,t.target||(t.target=n),i=null==i?[t]:T.makeArray(i,[t]),h=T.event.special[b]||{},s||!h.trigger||!1!==h.trigger.apply(n,i))){if(!s&&!h.noBubble&&!m(n)){for(l=h.delegateType||b,yt.test(l+b)||(o=o.parentNode);o;o=o.parentNode)y.push(o),a=o;a===(n.ownerDocument||g)&&y.push(a.defaultView||a.parentWindow||e)}for(r=0;(o=y[r++])&&!t.isPropagationStopped();)p=o,t.type=r>1?l:h.bindType||b,(d=(Y.get(o,"events")||Object.create(null))[t.type]&&Y.get(o,"handle"))&&d.apply(o,i),(d=c&&o[c])&&d.apply&&X(o)&&(t.result=d.apply(o,i),!1===t.result&&t.preventDefault());return t.type=b,s||t.isDefaultPrevented()||h._default&&!1!==h._default.apply(y.pop(),i)||!X(n)||c&&f(n[b])&&!m(n)&&((a=n[c])&&(n[c]=null),T.event.triggered=b,t.isPropagationStopped()&&p.addEventListener(b,bt),n[b](),t.isPropagationStopped()&&p.removeEventListener(b,bt),T.event.triggered=void 0,a&&(n[c]=a)),t.result}},simulate:function(e,t,i){var n=T.extend(new T.Event,i,{type:e,isSimulated:!0});T.event.trigger(n,null,t)}}),T.fn.extend({trigger:function(e,t){return this.each((function(){T.event.trigger(e,t,this)}))},triggerHandler:function(e,t){var i=this[0];if(i)return T.event.trigger(e,t,i,!0)}}),p.focusin||T.each({focus:"focusin",blur:"focusout"},(function(e,t){var i=function(e){T.event.simulate(t,e.target,T.event.fix(e))};T.event.special[t]={setup:function(){var n=this.ownerDocument||this.document||this,s=Y.access(n,t);s||n.addEventListener(e,i,!0),Y.access(n,t,(s||0)+1)},teardown:function(){var n=this.ownerDocument||this.document||this,s=Y.access(n,t)-1;s?Y.access(n,t,s):(n.removeEventListener(e,i,!0),Y.remove(n,t))}}}));var vt=e.location,wt={guid:Date.now()},Tt=/\?/;T.parseXML=function(t){var i,n;if(!t||"string"!=typeof t)return null;try{i=(new e.DOMParser).parseFromString(t,"text/xml")}catch(e){}return n=i&&i.getElementsByTagName("parsererror")[0],i&&!n||T.error("Invalid XML: "+(n?T.map(n.childNodes,(function(e){return e.textContent})).join("\n"):t)),i};var xt=/\[\]$/,kt=/\r?\n/g,Ct=/^(?:submit|button|image|reset|file)$/i,Et=/^(?:input|select|textarea|keygen)/i;function St(e,t,i,n){var s;if(Array.isArray(t))T.each(t,(function(t,s){i||xt.test(e)?n(e,s):St(e+"["+("object"==typeof s&&null!=s?t:"")+"]",s,i,n)}));else if(i||"object"!==v(t))n(e,t);else for(s in t)St(e+"["+s+"]",t[s],i,n)}T.param=function(e,t){var i,n=[],s=function(e,t){var i=f(t)?t():t;n[n.length]=encodeURIComponent(e)+"="+encodeURIComponent(null==i?"":i)};if(null==e)return"";if(Array.isArray(e)||e.jquery&&!T.isPlainObject(e))T.each(e,(function(){s(this.name,this.value)}));else for(i in e)St(i,e[i],t,s);return n.join("&")},T.fn.extend({serialize:function(){return T.param(this.serializeArray())},serializeArray:function(){return this.map((function(){var e=T.prop(this,"elements");return e?T.makeArray(e):this})).filter((function(){var e=this.type;return this.name&&!T(this).is(":disabled")&&Et.test(this.nodeName)&&!Ct.test(e)&&(this.checked||!pe.test(e))})).map((function(e,t){var i=T(this).val();return null==i?null:Array.isArray(i)?T.map(i,(function(e){return{name:t.name,value:e.replace(kt,"\r\n")}})):{name:t.name,value:i.replace(kt,"\r\n")}})).get()}});var At=/%20/g,Nt=/#.*$/,Pt=/([?&])_=[^&]*/,Lt=/^(.*?):[ \t]*([^\r\n]*)$/gm,jt=/^(?:GET|HEAD)$/,Dt=/^\/\//,Mt={},It={},qt="*/".concat("*"),Ot=g.createElement("a");function Ht(e){return function(t,i){"string"!=typeof t&&(i=t,t="*");var n,s=0,r=t.toLowerCase().match(q)||[];if(f(i))for(;n=r[s++];)"+"===n[0]?(n=n.slice(1)||"*",(e[n]=e[n]||[]).unshift(i)):(e[n]=e[n]||[]).push(i)}}function $t(e,t,i,n){var s={},r=e===It;function o(a){var l;return s[a]=!0,T.each(e[a]||[],(function(e,a){var c=a(t,i,n);return"string"!=typeof c||r||s[c]?r?!(l=c):void 0:(t.dataTypes.unshift(c),o(c),!1)})),l}return o(t.dataTypes[0])||!s["*"]&&o("*")}function _t(e,t){var i,n,s=T.ajaxSettings.flatOptions||{};for(i in t)void 0!==t[i]&&((s[i]?e:n||(n={}))[i]=t[i]);return n&&T.extend(!0,e,n),e}Ot.href=vt.href,T.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:vt.href,type:"GET",isLocal:/^(?:about|app|app-storage|.+-extension|file|res|widget):$/.test(vt.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":qt,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":JSON.parse,"text xml":T.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?_t(_t(e,T.ajaxSettings),t):_t(T.ajaxSettings,e)},ajaxPrefilter:Ht(Mt),ajaxTransport:Ht(It),ajax:function(t,i){"object"==typeof t&&(i=t,t=void 0),i=i||{};var n,s,r,o,a,l,c,u,d,h,p=T.ajaxSetup({},i),f=p.context||p,m=p.context&&(f.nodeType||f.jquery)?T(f):T.event,y=T.Deferred(),b=T.Callbacks("once memory"),v=p.statusCode||{},w={},x={},k="canceled",C={readyState:0,getResponseHeader:function(e){var t;if(c){if(!o)for(o={};t=Lt.exec(r);)o[t[1].toLowerCase()+" "]=(o[t[1].toLowerCase()+" "]||[]).concat(t[2]);t=o[e.toLowerCase()+" "]}return null==t?null:t.join(", ")},getAllResponseHeaders:function(){return c?r:null},setRequestHeader:function(e,t){return null==c&&(e=x[e.toLowerCase()]=x[e.toLowerCase()]||e,w[e]=t),this},overrideMimeType:function(e){return null==c&&(p.mimeType=e),this},statusCode:function(e){var t;if(e)if(c)C.always(e[C.status]);else for(t in e)v[t]=[v[t],e[t]];return this},abort:function(e){var t=e||k;return n&&n.abort(t),E(0,t),this}};if(y.promise(C),p.url=((t||p.url||vt.href)+"").replace(Dt,vt.protocol+"//"),p.type=i.method||i.type||p.method||p.type,p.dataTypes=(p.dataType||"*").toLowerCase().match(q)||[""],null==p.crossDomain){l=g.createElement("a");try{l.href=p.url,l.href=l.href,p.crossDomain=Ot.protocol+"//"+Ot.host!=l.protocol+"//"+l.host}catch(e){p.crossDomain=!0}}if(p.data&&p.processData&&"string"!=typeof p.data&&(p.data=T.param(p.data,p.traditional)),$t(Mt,p,i,C),c)return C;for(d in(u=T.event&&p.global)&&0==T.active++&&T.event.trigger("ajaxStart"),p.type=p.type.toUpperCase(),p.hasContent=!jt.test(p.type),s=p.url.replace(Nt,""),p.hasContent?p.data&&p.processData&&0===(p.contentType||"").indexOf("application/x-www-form-urlencoded")&&(p.data=p.data.replace(At,"+")):(h=p.url.slice(s.length),p.data&&(p.processData||"string"==typeof p.data)&&(s+=(Tt.test(s)?"&":"?")+p.data,delete p.data),!1===p.cache&&(s=s.replace(Pt,"$1"),h=(Tt.test(s)?"&":"?")+"_="+wt.guid+++h),p.url=s+h),p.ifModified&&(T.lastModified[s]&&C.setRequestHeader("If-Modified-Since",T.lastModified[s]),T.etag[s]&&C.setRequestHeader("If-None-Match",T.etag[s])),(p.data&&p.hasContent&&!1!==p.contentType||i.contentType)&&C.setRequestHeader("Content-Type",p.contentType),C.setRequestHeader("Accept",p.dataTypes[0]&&p.accepts[p.dataTypes[0]]?p.accepts[p.dataTypes[0]]+("*"!==p.dataTypes[0]?", "+qt+"; q=0.01":""):p.accepts["*"]),p.headers)C.setRequestHeader(d,p.headers[d]);if(p.beforeSend&&(!1===p.beforeSend.call(f,C,p)||c))return C.abort();if(k="abort",b.add(p.complete),C.done(p.success),C.fail(p.error),n=$t(It,p,i,C)){if(C.readyState=1,u&&m.trigger("ajaxSend",[C,p]),c)return C;p.async&&p.timeout>0&&(a=e.setTimeout((function(){C.abort("timeout")}),p.timeout));try{c=!1,n.send(w,E)}catch(e){if(c)throw e;E(-1,e)}}else E(-1,"No Transport");function E(t,i,o,l){var d,h,g,w,x,k=i;c||(c=!0,a&&e.clearTimeout(a),n=void 0,r=l||"",C.readyState=t>0?4:0,d=t>=200&&t<300||304===t,o&&(w=function(e,t,i){for(var n,s,r,o,a=e.contents,l=e.dataTypes;"*"===l[0];)l.shift(),void 0===n&&(n=e.mimeType||t.getResponseHeader("Content-Type"));if(n)for(s in a)if(a[s]&&a[s].test(n)){l.unshift(s);break}if(l[0]in i)r=l[0];else{for(s in i){if(!l[0]||e.converters[s+" "+l[0]]){r=s;break}o||(o=s)}r=r||o}if(r)return r!==l[0]&&l.unshift(r),i[r]}(p,C,o)),!d&&T.inArray("script",p.dataTypes)>-1&&T.inArray("json",p.dataTypes)<0&&(p.converters["text script"]=function(){}),w=function(e,t,i,n){var s,r,o,a,l,c={},u=e.dataTypes.slice();if(u[1])for(o in e.converters)c[o.toLowerCase()]=e.converters[o];for(r=u.shift();r;)if(e.responseFields[r]&&(i[e.responseFields[r]]=t),!l&&n&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),l=r,r=u.shift())if("*"===r)r=l;else if("*"!==l&&l!==r){if(!(o=c[l+" "+r]||c["* "+r]))for(s in c)if((a=s.split(" "))[1]===r&&(o=c[l+" "+a[0]]||c["* "+a[0]])){!0===o?o=c[s]:!0!==c[s]&&(r=a[0],u.unshift(a[1]));break}if(!0!==o)if(o&&e.throws)t=o(t);else try{t=o(t)}catch(e){return{state:"parsererror",error:o?e:"No conversion from "+l+" to "+r}}}return{state:"success",data:t}}(p,w,C,d),d?(p.ifModified&&((x=C.getResponseHeader("Last-Modified"))&&(T.lastModified[s]=x),(x=C.getResponseHeader("etag"))&&(T.etag[s]=x)),204===t||"HEAD"===p.type?k="nocontent":304===t?k="notmodified":(k=w.state,h=w.data,d=!(g=w.error))):(g=k,!t&&k||(k="error",t<0&&(t=0))),C.status=t,C.statusText=(i||k)+"",d?y.resolveWith(f,[h,k,C]):y.rejectWith(f,[C,k,g]),C.statusCode(v),v=void 0,u&&m.trigger(d?"ajaxSuccess":"ajaxError",[C,p,d?h:g]),b.fireWith(f,[C,k]),u&&(m.trigger("ajaxComplete",[C,p]),--T.active||T.event.trigger("ajaxStop")))}return C},getJSON:function(e,t,i){return T.get(e,t,i,"json")},getScript:function(e,t){return T.get(e,void 0,t,"script")}}),T.each(["get","post"],(function(e,t){T[t]=function(e,i,n,s){return f(i)&&(s=s||n,n=i,i=void 0),T.ajax(T.extend({url:e,type:t,dataType:s,data:i,success:n},T.isPlainObject(e)&&e))}})),T.ajaxPrefilter((function(e){var t;for(t in e.headers)"content-type"===t.toLowerCase()&&(e.contentType=e.headers[t]||"")})),T._evalUrl=function(e,t,i){return T.ajax({url:e,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,converters:{"text script":function(){}},dataFilter:function(e){T.globalEval(e,t,i)}})},T.fn.extend({wrapAll:function(e){var t;return this[0]&&(f(e)&&(e=e.call(this[0])),t=T(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map((function(){for(var e=this;e.firstElementChild;)e=e.firstElementChild;return e})).append(this)),this},wrapInner:function(e){return f(e)?this.each((function(t){T(this).wrapInner(e.call(this,t))})):this.each((function(){var t=T(this),i=t.contents();i.length?i.wrapAll(e):t.append(e)}))},wrap:function(e){var t=f(e);return this.each((function(i){T(this).wrapAll(t?e.call(this,i):e)}))},unwrap:function(e){return this.parent(e).not("body").each((function(){T(this).replaceWith(this.childNodes)})),this}}),T.expr.pseudos.hidden=function(e){return!T.expr.pseudos.visible(e)},T.expr.pseudos.visible=function(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)},T.ajaxSettings.xhr=function(){try{return new e.XMLHttpRequest}catch(e){}};var Rt={0:200,1223:204},Ft=T.ajaxSettings.xhr();p.cors=!!Ft&&"withCredentials"in Ft,p.ajax=Ft=!!Ft,T.ajaxTransport((function(t){var i,n;if(p.cors||Ft&&!t.crossDomain)return{send:function(s,r){var o,a=t.xhr();if(a.open(t.type,t.url,t.async,t.username,t.password),t.xhrFields)for(o in t.xhrFields)a[o]=t.xhrFields[o];for(o in t.mimeType&&a.overrideMimeType&&a.overrideMimeType(t.mimeType),t.crossDomain||s["X-Requested-With"]||(s["X-Requested-With"]="XMLHttpRequest"),s)a.setRequestHeader(o,s[o]);i=function(e){return function(){i&&(i=n=a.onload=a.onerror=a.onabort=a.ontimeout=a.onreadystatechange=null,"abort"===e?a.abort():"error"===e?"number"!=typeof a.status?r(0,"error"):r(a.status,a.statusText):r(Rt[a.status]||a.status,a.statusText,"text"!==(a.responseType||"text")||"string"!=typeof a.responseText?{binary:a.response}:{text:a.responseText},a.getAllResponseHeaders()))}},a.onload=i(),n=a.onerror=a.ontimeout=i("error"),void 0!==a.onabort?a.onabort=n:a.onreadystatechange=function(){4===a.readyState&&e.setTimeout((function(){i&&n()}))},i=i("abort");try{a.send(t.hasContent&&t.data||null)}catch(e){if(i)throw e}},abort:function(){i&&i()}}})),T.ajaxPrefilter((function(e){e.crossDomain&&(e.contents.script=!1)})),T.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(e){return T.globalEval(e),e}}}),T.ajaxPrefilter("script",(function(e){void 0===e.cache&&(e.cache=!1),e.crossDomain&&(e.type="GET")})),T.ajaxTransport("script",(function(e){var t,i;if(e.crossDomain||e.scriptAttrs)return{send:function(n,s){t=T("
+
+
+
+
+
+
diff --git a/blocks/media/video/video.json b/blocks/media/video/video.json
new file mode 100644
index 00000000..fb3d7586
--- /dev/null
+++ b/blocks/media/video/video.json
@@ -0,0 +1,28 @@
+{
+ "name": "Video",
+ "id": "video",
+ "icon": "fad fa-play-circle",
+ "category": "media",
+ "fields": [
+ {
+ "name": "Video",
+ "id": "video",
+ "type": "upload_video",
+ "default": "https://file-examples-com.github.io/uploads/2017/04/file_example_MP4_1280_10MG.mp4"
+ },
+ {
+ "name": "Border radius",
+ "id": "border_radius",
+ "type": "select",
+ "default": "",
+ "sync": true,
+ "options": {
+ "": "None",
+ "rounded": "Small",
+ "rounded-lg": "Large",
+ "rounded-xl": "XL",
+ "rounded-full": "Full"
+ }
+ }
+ ]
+}
diff --git a/blocks/media/youtube/default/.eslintrc.js b/blocks/media/youtube/default/.eslintrc.js
new file mode 100644
index 00000000..6866271b
--- /dev/null
+++ b/blocks/media/youtube/default/.eslintrc.js
@@ -0,0 +1,61 @@
+module.exports = {
+ root: true,
+ extends: ["airbnb-base"],
+ parserOptions: {
+ parser: "babel-eslint",
+ sourceType: "module",
+ },
+ plugins: ["vue"],
+ settings: {
+ "html/indent": "+2",
+ "html/report-bad-indent": "error",
+ },
+ env: {
+ browser: true,
+ node: true,
+ es6: true,
+ },
+ rules: {
+ "no-multiple-empty-lines": [
+ "error",
+ {
+ max: 1,
+ maxBOF: 1,
+ },
+ ],
+ "comma-dangle": [1, {
+ objects: "always",
+ arrays: "ignore",
+ imports: "ignore",
+ exports: "ignore",
+ functions: "ignore",
+ }],
+ "max-len": "off",
+ quotes: ["error", "double"],
+ "no-restricted-syntax": 0,
+ "o-absolute-path": 0,
+ "no-new": 0,
+ "no-console": 0,
+ "no-bitwise": 0,
+ "no-useless-escape": 0,
+ "no-underscore-dangle": 0,
+ "global-require": 0,
+ "import/no-unresolved": 0,
+ "no-param-reassign": 0,
+ "no-shadow": 0,
+ "valid-jsdoc": ["error", {
+ requireReturn: true,
+ requireReturnType: true,
+ requireParamDescription: true,
+ requireReturnDescription: true,
+ }],
+ "import/extensions": 0,
+ "require-jsdoc": ["error", {
+ require: {
+ FunctionDeclaration: true,
+ MethodDefinition: true,
+ ClassDeclaration: true,
+ },
+ }],
+ },
+};
diff --git a/blocks/media/youtube/default/.parcel-cache/6bbf2fc08c5e58c7.txt b/blocks/media/youtube/default/.parcel-cache/6bbf2fc08c5e58c7.txt
new file mode 100644
index 00000000..0324e791
--- /dev/null
+++ b/blocks/media/youtube/default/.parcel-cache/6bbf2fc08c5e58c7.txt
@@ -0,0 +1,2 @@
+55643643
+1635433732733095000
\ No newline at end of file
diff --git a/blocks/media/youtube/default/.parcel-cache/data.mdb b/blocks/media/youtube/default/.parcel-cache/data.mdb
new file mode 100644
index 00000000..65658c2f
Binary files /dev/null and b/blocks/media/youtube/default/.parcel-cache/data.mdb differ
diff --git a/blocks/media/youtube/default/.parcel-cache/ff205cad7fd83eca.txt b/blocks/media/youtube/default/.parcel-cache/ff205cad7fd83eca.txt
new file mode 100644
index 00000000..aa7585a9
--- /dev/null
+++ b/blocks/media/youtube/default/.parcel-cache/ff205cad7fd83eca.txt
@@ -0,0 +1,2 @@
+55639155
+1635433708301116000
\ No newline at end of file
diff --git a/blocks/media/youtube/default/.parcel-cache/lock.mdb b/blocks/media/youtube/default/.parcel-cache/lock.mdb
new file mode 100644
index 00000000..138f4db6
Binary files /dev/null and b/blocks/media/youtube/default/.parcel-cache/lock.mdb differ
diff --git a/blocks/media/youtube/default/assets/main.js b/blocks/media/youtube/default/assets/main.js
new file mode 100644
index 00000000..e7b33238
--- /dev/null
+++ b/blocks/media/youtube/default/assets/main.js
@@ -0,0 +1,34 @@
+import "./plyr.css";
+
+import $ from "jquery";
+import Plyr from "plyr";
+
+$(".youtube-default").each((index, el) => {
+ const data = window[$(el).data("component")];
+
+ // Video
+ const youtubeParser = (url) => {
+ const regExp = /^.*((youtu.be\/)|(v\/)|(\/u\/\w\/)|(embed\/)|(watch\?))\??v?=?([^#&?]*).*/;
+ const match = url.match(regExp);
+ return match && match[7].length === 11 ? match[7] : false;
+ };
+
+ const video = `${youtubeParser($(el).find("iframe").attr("data-video"))}?amp;iv_load_policy=3&listType=user_uploads&controls=0&fs=0&modestbranding=1&playsinline=1&showinfo=0&rel=0&enablejsapi=1`;
+ $(el).find("iframe").attr("src", `https://www.youtube.com/embed/${video}`);
+
+ const hasAutoplay = data.autoplay === "enabled";
+
+ new Plyr($(el).find(".plyr__video-embed")[0], {
+ autoplay: hasAutoplay,
+ muted: hasAutoplay,
+ controls: [
+ "play-large",
+ "play",
+ "progress",
+ "current-time",
+ "mute",
+ "volume",
+ "fullscreen",
+ ],
+ });
+});
diff --git a/blocks/media/youtube/default/assets/plyr.css b/blocks/media/youtube/default/assets/plyr.css
new file mode 100644
index 00000000..cae8845a
--- /dev/null
+++ b/blocks/media/youtube/default/assets/plyr.css
@@ -0,0 +1,47 @@
+@keyframes plyr-progress{to{background-position:25px 0;background-position:var(--plyr-progress-loading-size,25px) 0;}}@keyframes plyr-popup{0%{opacity:0.5;transform:translateY(10px);}to{opacity:1;transform:translateY(0);}}@keyframes plyr-fade-in{from{opacity:0;}to{opacity:1;}}.plyr{position:relative;z-index:0;display:flex;flex-direction:column;align-items:center;min-width:200px;max-width:100%;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);text-shadow:none;transition:box-shadow 0.3s ease;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;direction:ltr;font-variant-numeric:tabular-nums;}.plyr audio,
+.plyr iframe,
+.plyr video{display:block;width:100%;height:100%;}.plyr button{width:auto;font:inherit;line-height:inherit;}.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{padding:3px 4px;font-size:9px;font-size:var(--plyr-font-size-badge,9px);line-height:1;color:#fff;color:var(--plyr-badge-text-color,#fff);background:#4a5464;background:var(--plyr-badge-background,#4a5464);border-radius:2px;border-radius:var(--plyr-badge-border-radius,2px);}.plyr--full-ui ::-webkit-media-text-track-container{display:none;}.plyr__captions{position:absolute;bottom:0;left:0;display:none;width:100%;padding:10px;padding:var(--plyr-control-spacing,10px);font-size:13px;font-size:var(--plyr-font-size-small,13px);text-align:center;transition:transform 0.4s ease-in-out;animation:plyr-fade-in 0.3s ease;}.plyr__captions span:empty{display:none;}@media (min-width:480px){.plyr__captions{padding:calc(10px * 2);padding:calc(var(--plyr-control-spacing,10px) * 2);font-size:15px;font-size:var(--plyr-font-size-base,15px);}}@media (min-width:768px){.plyr__captions{font-size:18px;font-size:var(--plyr-font-size-large,18px);}}.plyr--captions-active .plyr__captions{display:block;}.plyr:not(.plyr--hide-controls) .plyr__controls:not(:empty)~.plyr__captions{transform:translateY(calc(10px * -4));transform:translateY(calc(var(--plyr-control-spacing,10px) * -4));}.plyr__caption{padding:0.2em 0.5em;line-height:185%;color:#fff;color:var(--plyr-captions-text-color,#fff);white-space:pre-wrap;background:rgba(0,0,0,0.8);background:var(--plyr-captions-background,rgba(0,0,0,0.8));border-radius:2px;box-decoration-break:clone;box-decoration-break:clone;}.plyr__caption div{display:inline;}.plyr__control{position:relative;padding:calc(10px * 0.7);padding:calc(var(--plyr-control-spacing,10px) * 0.7);overflow:visible;color:inherit;cursor:pointer;background:0 0;border:0;border-radius:3px;border-radius:var(--plyr-control-radius,3px);transition:all 0.3s ease;flex-shrink:0;}.plyr__control svg{display:block;width:18px;width:var(--plyr-control-icon-size,18px);height:18px;height:var(--plyr-control-icon-size,18px);pointer-events:none;fill:currentColor;}.plyr__control:focus{outline:0;}.plyr__control.plyr__tab-focus{outline-width:3px;outline-style:dotted;outline-color:#d9010c;outline-color:var(--plyr-tab-focus-color,var(--plyr-color-main,var(--plyr-color-main,#d9010c)));outline-offset:2px;}a.plyr__control{text-decoration:none;}a.plyr__control::after,
+a.plyr__control::before{display: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{display:none;}.plyr--full-ui ::-webkit-media-controls{display:none;}.plyr__controls{display:flex;align-items:center;justify-content:flex-end;text-align:center;}.plyr__controls .plyr__progress__container{flex:1;min-width:0;}.plyr__controls .plyr__controls__item{margin-left:calc(10px / 4);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:calc(10px / 4);padding-left:calc(var(--plyr-control-spacing,10px)/ 4);}.plyr__controls .plyr__controls__item.plyr__time{padding:0 calc(10px / 2);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__controls:empty{display:none;}.plyr [data-plyr="airplay"],
+.plyr [data-plyr="captions"],
+.plyr [data-plyr="fullscreen"],
+.plyr [data-plyr="pip"]{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 0.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{position:absolute;right:-3px;bottom:100%;z-index:3;margin-bottom:10px;font-size:15px;font-size:var(--plyr-font-size-base,15px);color:#4a5464;color:var(--plyr-menu-color,#4a5464);text-align:left;white-space:nowrap;background:rgba(255,255,255,0.9);background:var(--plyr-menu-background,rgba(255,255,255,0.9));border-radius:4px;box-shadow:0 1px 2px rgba(0,0,0,0.15);box-shadow:var(--plyr-menu-shadow,0 1px 2px rgba(0,0,0,0.15));animation:plyr-popup 0.2s ease;}.plyr__menu__container>div{overflow:hidden;transition:height 0.35s cubic-bezier(0.4,0,0.2,1), width 0.35s cubic-bezier(0.4,0,0.2,1);}.plyr__menu__container::after{position:absolute;top:100%;right:calc(((18px / 2) + calc(10px * 0.7)) - (4px / 2));right:calc(((var(--plyr-control-icon-size,18px)/ 2) + calc(var(--plyr-control-spacing,10px) * 0.7)) - (var(--plyr-menu-arrow-size,4px)/ 2));width:0;height:0;content:"";border:4px solid transparent;border:var(--plyr-menu-arrow-size,4px) solid transparent;border-top-color:rgba(255,255,255,0.9);border-top-color:var(--plyr-menu-background,rgba(255,255,255,0.9));}.plyr__menu__container [role="menu"]{padding:calc(10px * 0.7);padding:calc(var(--plyr-control-spacing,10px) * 0.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{display:flex;align-items:center;width:100%;padding-top:calc(calc(10px * 0.7)/ 1.5);padding-top:calc(calc(var(--plyr-control-spacing,10px) * 0.7)/ 1.5);padding-right:calc(calc(10px * 0.7) * 1.5);padding-right:calc(calc(var(--plyr-control-spacing,10px) * 0.7) * 1.5);padding-bottom:calc(calc(10px * 0.7)/ 1.5);padding-bottom:calc(calc(var(--plyr-control-spacing,10px) * 0.7)/ 1.5);padding-left:calc(calc(10px * 0.7) * 1.5);padding-left:calc(calc(var(--plyr-control-spacing,10px) * 0.7) * 1.5);font-size:13px;font-size:var(--plyr-font-size-menu,var(--plyr-font-size-small,13px));color:#4a5464;color:var(--plyr-menu-color,#4a5464);user-select:none;user-select:none;user-select:none;}.plyr__menu__container .plyr__control>span{display:flex;align-items:inherit;width:100%;}.plyr__menu__container .plyr__control::after{position:absolute;top:50%;content:"";border:4px solid transparent;border:var(--plyr-menu-item-arrow-size,4px) solid transparent;transform:translateY(-50%);}.plyr__menu__container .plyr__control--forward{padding-right:calc(calc(10px * 0.7) * 4);padding-right:calc(calc(var(--plyr-control-spacing,10px) * 0.7) * 4);}.plyr__menu__container .plyr__control--forward::after{right:calc((calc(10px * 0.7) * 1.5) - 4px);right:calc((calc(var(--plyr-control-spacing,10px) * 0.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.plyr__tab-focus::after,
+.plyr__menu__container .plyr__control--forward:hover::after{border-left-color:currentColor;}.plyr__menu__container .plyr__control--back{position:relative;width:calc(100% - (calc(10px * 0.7) * 2));width:calc(100% - (calc(var(--plyr-control-spacing,10px) * 0.7) * 2));padding-left:calc(calc(10px * 0.7) * 4);padding-left:calc(calc(var(--plyr-control-spacing,10px) * 0.7) * 4);margin:calc(10px * 0.7);margin:calc(var(--plyr-control-spacing,10px) * 0.7);margin-bottom:calc(calc(10px * 0.7)/ 2);margin-bottom:calc(calc(var(--plyr-control-spacing,10px) * 0.7)/ 2);font-weight:400;font-weight:var(--plyr-font-weight-regular,400);}.plyr__menu__container .plyr__control--back::after{left:calc((calc(10px * 0.7) * 1.5) - 4px);left:calc((calc(var(--plyr-control-spacing,10px) * 0.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;height:1px;margin-top:calc(calc(10px * 0.7)/ 2);margin-top:calc(calc(var(--plyr-control-spacing,10px) * 0.7)/ 2);overflow:hidden;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.plyr__tab-focus::after,
+.plyr__menu__container .plyr__control--back:hover::after{border-right-color:currentColor;}.plyr__menu__container .plyr__control[role="menuitemradio"]{padding-left:calc(10px * 0.7);padding-left:calc(var(--plyr-control-spacing,10px) * 0.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:"";background:rgba(0,0,0,0.1);transition:all 0.3s ease;flex-shrink:0;}.plyr__menu__container .plyr__control[role="menuitemradio"]::after{top:50%;left:12px;width:6px;height:6px;background:#fff;border:0;opacity:0;transition:transform 0.3s ease, opacity 0.3s ease;transform:translateY(-50%) scale(0);}.plyr__menu__container .plyr__control[role="menuitemradio"][aria-checked="true"]::before{background:#d9010c;background:var(--plyr-control-toggle-checked-background,var(--plyr-color-main,var(--plyr-color-main,#d9010c)));}.plyr__menu__container .plyr__control[role="menuitemradio"][aria-checked="true"]::after{opacity:1;transform:translateY(-50%) scale(1);}.plyr__menu__container .plyr__control[role="menuitemradio"].plyr__tab-focus::before,
+.plyr__menu__container .plyr__control[role="menuitemradio"]:hover::before{background:rgba(35,40,47,0.1);}.plyr__menu__container .plyr__menu__value{display:flex;align-items:center;padding-left:calc(calc(10px * 0.7) * 3.5);padding-left:calc(calc(var(--plyr-control-spacing,10px) * 0.7) * 3.5);margin-right:calc((calc(10px * 0.7) - 2) * -1);margin-right:calc((calc(var(--plyr-control-spacing,10px) * 0.7) - 2) * -1);margin-left:auto;overflow:hidden;pointer-events:none;}.plyr--full-ui input[type="range"]{display:block;width:100%;min-width:0;height:calc((3px * 2) + 13px);height:calc((var(--plyr-range-thumb-active-shadow-width,3px) * 2) + var(--plyr-range-thumb-height,13px));padding:0;margin:0;color:#d9010c;color:var(--plyr-range-fill-background,var(--plyr-color-main,var(--plyr-color-main,#d9010c)));background:0 0;border:0;border-radius:calc(13px * 2);border-radius:calc(var(--plyr-range-thumb-height,13px) * 2);transition:box-shadow 0.3s ease;appearance:none;}.plyr--full-ui input[type="range"]::-webkit-slider-runnable-track{height:5px;height:var(--plyr-range-track-height,5px);user-select:none;user-select:none;background:0 0;background-image:linear-gradient(to right,currentColor 0,transparent 0);background-image:linear-gradient(to right,currentColor var(--value,0),transparent var(--value,0));border:0;border-radius:calc(5px / 2);border-radius:calc(var(--plyr-range-track-height,5px)/ 2);transition:box-shadow 0.3s ease;transition:box-shadow 0.3s ease;}.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:calc(((13px - 5px)/ 2) * -1);margin-top:calc(((var(--plyr-range-thumb-height,13px) - var(--plyr-range-track-height,5px))/ 2) * -1);background:#fff;background:var(--plyr-range-thumb-background,#fff);border:0;border-radius:100%;box-shadow:0 1px 1px rgba(35,40,47,0.15), 0 0 0 1px rgba(35,40,47,0.2);box-shadow:var(--plyr-range-thumb-shadow,0 1px 1px rgba(35,40,47,0.15),0 0 0 1px rgba(35,40,47,0.2));transition:all 0.2s ease;transition:all 0.2s ease;appearance:none;}.plyr--full-ui input[type="range"]::-moz-range-track{height:5px;height:var(--plyr-range-track-height,5px);user-select:none;background:0 0;border:0;border-radius:calc(5px / 2);border-radius:calc(var(--plyr-range-track-height,5px)/ 2);transition:box-shadow 0.3s ease;transition:box-shadow 0.3s ease;}.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);background:#fff;background:var(--plyr-range-thumb-background,#fff);border:0;border-radius:100%;box-shadow:0 1px 1px rgba(35,40,47,0.15), 0 0 0 1px rgba(35,40,47,0.2);box-shadow:var(--plyr-range-thumb-shadow,0 1px 1px rgba(35,40,47,0.15),0 0 0 1px rgba(35,40,47,0.2));transition:all 0.2s ease;transition:all 0.2s ease;}.plyr--full-ui input[type="range"]::-moz-range-progress{height:5px;height:var(--plyr-range-track-height,5px);background:currentColor;border-radius:calc(5px / 2);border-radius:calc(var(--plyr-range-track-height,5px)/ 2);}.plyr--full-ui input[type="range"]::-ms-track{height:5px;height:var(--plyr-range-track-height,5px);color:transparent;user-select:none;user-select:none;background:0 0;border:0;border-radius:calc(5px / 2);border-radius:calc(var(--plyr-range-track-height,5px)/ 2);transition:box-shadow 0.3s ease;transition:box-shadow 0.3s ease;}.plyr--full-ui input[type="range"]::-ms-fill-upper{height:5px;height:var(--plyr-range-track-height,5px);user-select:none;user-select:none;background:0 0;border:0;border-radius:calc(5px / 2);border-radius:calc(var(--plyr-range-track-height,5px)/ 2);transition:box-shadow 0.3s ease;transition:box-shadow 0.3s ease;}.plyr--full-ui input[type="range"]::-ms-fill-lower{height:5px;height:var(--plyr-range-track-height,5px);user-select:none;user-select:none;background:0 0;background:currentColor;border:0;border-radius:calc(5px / 2);border-radius:calc(var(--plyr-range-track-height,5px)/ 2);transition:box-shadow 0.3s ease;transition:box-shadow 0.3s ease;}.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;background:#fff;background:var(--plyr-range-thumb-background,#fff);border:0;border-radius:100%;box-shadow:0 1px 1px rgba(35,40,47,0.15), 0 0 0 1px rgba(35,40,47,0.2);box-shadow:var(--plyr-range-thumb-shadow,0 1px 1px rgba(35,40,47,0.15),0 0 0 1px rgba(35,40,47,0.2));transition:all 0.2s ease;transition:all 0.2s ease;}.plyr--full-ui input[type="range"]::-ms-tooltip{display:none;}.plyr--full-ui input[type="range"]:focus{outline:0;}.plyr--full-ui input[type="range"]::-moz-focus-outer{border:0;}.plyr--full-ui input[type="range"].plyr__tab-focus::-webkit-slider-runnable-track{outline-width:3px;outline-style:dotted;outline-color:#d9010c;outline-color:var(--plyr-tab-focus-color,var(--plyr-color-main,var(--plyr-color-main,#d9010c)));outline-offset:2px;}.plyr--full-ui input[type="range"].plyr__tab-focus::-moz-range-track{outline-width:3px;outline-style:dotted;outline-color:#d9010c;outline-color:var(--plyr-tab-focus-color,var(--plyr-color-main,var(--plyr-color-main,#d9010c)));outline-offset:2px;}.plyr--full-ui input[type="range"].plyr__tab-focus::-ms-track{outline-width:3px;outline-style:dotted;outline-color:#d9010c;outline-color:var(--plyr-tab-focus-color,var(--plyr-color-main,var(--plyr-color-main,#d9010c)));outline-offset:2px;}.plyr__poster{position:absolute;top:0;left:0;z-index:1;width:100%;height:100%;background-color:#000;background-repeat:no-repeat;background-position:50% 50%;background-size:contain;opacity:0;transition:opacity 0.2s ease;}.plyr--stopped.plyr__poster-enabled .plyr__poster{opacity:1;}.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:"\2044";}@media (max-width:calc(768px - 1px)){.plyr__time+.plyr__time{display:none;}}.plyr__tooltip{position:absolute;bottom:100%;left:50%;z-index:2;padding:calc(10px / 2) calc(calc(10px / 2) * 1.5);padding:calc(var(--plyr-control-spacing,10px)/ 2) calc(calc(var(--plyr-control-spacing,10px)/ 2) * 1.5);margin-bottom:calc(calc(10px / 2) * 2);margin-bottom:calc(calc(var(--plyr-control-spacing,10px)/ 2) * 2);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;color:#4a5464;color:var(--plyr-tooltip-color,#4a5464);white-space:nowrap;pointer-events:none;background:rgba(255,255,255,0.9);background:var(--plyr-tooltip-background,rgba(255,255,255,0.9));border-radius:3px;border-radius:var(--plyr-tooltip-radius,3px);box-shadow:0 1px 2px rgba(0,0,0,0.15);box-shadow:var(--plyr-tooltip-shadow,0 1px 2px rgba(0,0,0,0.15));opacity:0;transition:transform 0.2s 0.1s ease, opacity 0.2s 0.1s ease;transform:translate(-50%,10px) scale(0.8);transform-origin:50% 100%;}.plyr__tooltip::before{position:absolute;bottom:calc(4px * -1);bottom:calc(var(--plyr-tooltip-arrow-size,4px) * -1);left:50%;z-index:2;width:0;height:0;content:"";border-top:4px solid rgba(255,255,255,0.9);border-top:var(--plyr-tooltip-arrow-size,4px) solid var(--plyr-tooltip-background,rgba(255,255,255,0.9));border-right:4px solid transparent;border-right:var(--plyr-tooltip-arrow-size,4px) solid transparent;border-left:4px solid transparent;border-left:var(--plyr-tooltip-arrow-size,4px) solid transparent;transform:translateX(-50%);}.plyr .plyr__control.plyr__tab-focus .plyr__tooltip,
+.plyr .plyr__control:hover .plyr__tooltip,
+.plyr__tooltip--visible{opacity:1;transform:translate(-50%,0) scale(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:translate(0,10px) scale(0.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:calc((18px / 2) + calc(10px * 0.7));left:calc((var(--plyr-control-icon-size,18px)/ 2) + calc(var(--plyr-control-spacing,10px) * 0.7));}.plyr__controls>.plyr__control:last-child .plyr__tooltip{right:0;left:auto;transform:translate(0,10px) scale(0.8);transform-origin:100% 100%;}.plyr__controls>.plyr__control:last-child .plyr__tooltip::before{right:calc((18px / 2) + calc(10px * 0.7));right:calc((var(--plyr-control-icon-size,18px)/ 2) + calc(var(--plyr-control-spacing,10px) * 0.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.plyr__tab-focus .plyr__tooltip,
+.plyr__controls>.plyr__control:first-child+.plyr__control:hover .plyr__tooltip,
+.plyr__controls>.plyr__control:first-child.plyr__tab-focus .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.plyr__tab-focus .plyr__tooltip,
+.plyr__controls>.plyr__control:last-child:hover .plyr__tooltip{transform:translate(0,0) scale(1);}.plyr__progress{position:relative;left:calc(13px * 0.5);left:calc(var(--plyr-range-thumb-height,13px) * 0.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:calc(13px * -0.5);margin-right:calc(var(--plyr-range-thumb-height,13px) * -0.5);margin-left:calc(13px * -0.5);margin-left:calc(var(--plyr-range-thumb-height,13px) * -0.5);}.plyr__progress input[type="range"]{position:relative;z-index:2;}.plyr__progress .plyr__tooltip{left:0;font-size:13px;font-size:var(--plyr-font-size-time,var(--plyr-font-size-small,13px));}.plyr__progress__buffer{position:absolute;top:50%;left:0;height:5px;height:var(--plyr-range-track-height,5px);padding:0;margin-top:calc((5px / 2) * -1);margin-top:calc((var(--plyr-range-track-height,5px)/ 2) * -1);background:0 0;border:0;border-radius:100px;appearance:none;}.plyr__progress__buffer::-webkit-progress-bar{background:0 0;}.plyr__progress__buffer::-webkit-progress-value{min-width:5px;min-width:var(--plyr-range-track-height,5px);background:currentColor;border-radius:100px;transition:width 0.2s ease;transition:width 0.2s ease;}.plyr__progress__buffer::-moz-progress-bar{min-width:5px;min-width:var(--plyr-range-track-height,5px);background:currentColor;border-radius:100px;transition:width 0.2s ease;transition:width 0.2s ease;}.plyr__progress__buffer::-ms-fill{border-radius:100px;transition:width 0.2s ease;transition:width 0.2s ease;}.plyr--loading .plyr__progress__buffer{color:transparent;background-image:linear-gradient(-45deg,rgba(35,40,47,0.6) 25%,transparent 25%,transparent 50%,rgba(35,40,47,0.6) 50%,rgba(35,40,47,0.6) 75%,transparent 75%,transparent);background-image:linear-gradient(-45deg,var(--plyr-progress-loading-background,rgba(35,40,47,0.6)) 25%,transparent 25%,transparent 50%,var(--plyr-progress-loading-background,rgba(35,40,47,0.6)) 50%,var(--plyr-progress-loading-background,rgba(35,40,47,0.6)) 75%,transparent 75%,transparent);background-repeat:repeat-x;background-size:25px 25px;background-size:var(--plyr-progress-loading-size,25px) var(--plyr-progress-loading-size,25px);animation:plyr-progress 1s linear infinite;}.plyr--video.plyr--loading .plyr__progress__buffer{background-color:rgba(255,255,255,0.25);background-color:var(--plyr-video-progress-buffered-background,rgba(255,255,255,0.25));}.plyr--audio.plyr--loading .plyr__progress__buffer{background-color:rgba(193,200,209,0.6);background-color:var(--plyr-audio-progress-buffered-background,rgba(193,200,209,0.6));}.plyr__volume{position:relative;display:flex;align-items:center;width:20%;min-width:80px;max-width:110px;}.plyr__volume input[type="range"]{position:relative;z-index:2;margin-right:calc(10px / 2);margin-right:calc(var(--plyr-control-spacing,10px)/ 2);margin-left:calc(10px / 2);margin-left:calc(var(--plyr-control-spacing,10px)/ 2);}.plyr--is-ios .plyr__volume{width:auto;min-width:0;}.plyr--audio{display:block;}.plyr--audio .plyr__controls{padding:10px;padding:var(--plyr-control-spacing,10px);color:#4a5464;color:var(--plyr-audio-control-color,#4a5464);background:#fff;background:var(--plyr-audio-controls-background,#fff);border-radius:inherit;}.plyr--audio .plyr__control.plyr__tab-focus,
+.plyr--audio .plyr__control:hover,
+.plyr--audio .plyr__control[aria-expanded="true"]{color:#fff;color:var(--plyr-audio-control-color-hover,#fff);background:#d9010c;background:var(--plyr-audio-control-background-hover,var(--plyr-color-main,var(--plyr-color-main,#d9010c)));}.plyr--full-ui.plyr--audio input[type="range"]::-webkit-slider-runnable-track{background-color:rgba(193,200,209,0.6);background-color:var(--plyr-audio-range-track-background,var(--plyr-audio-progress-buffered-background,rgba(193,200,209,0.6)));}.plyr--full-ui.plyr--audio input[type="range"]::-moz-range-track{background-color:rgba(193,200,209,0.6);background-color:var(--plyr-audio-range-track-background,var(--plyr-audio-progress-buffered-background,rgba(193,200,209,0.6)));}.plyr--full-ui.plyr--audio input[type="range"]::-ms-track{background-color:rgba(193,200,209,0.6);background-color:var(--plyr-audio-range-track-background,var(--plyr-audio-progress-buffered-background,rgba(193,200,209,0.6)));}.plyr--full-ui.plyr--audio input[type="range"]:active::-webkit-slider-thumb{box-shadow:0 1px 1px rgba(35,40,47,0.15), 0 0 0 1px rgba(35,40,47,0.2), 0 0 0 3px rgba(35,40,47,0.1);box-shadow:var(--plyr-range-thumb-shadow,0 1px 1px rgba(35,40,47,0.15),0 0 0 1px rgba(35,40,47,0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width,3px) var(--plyr-audio-range-thumb-active-shadow-color,rgba(35,40,47,0.1));}.plyr--full-ui.plyr--audio input[type="range"]:active::-moz-range-thumb{box-shadow:0 1px 1px rgba(35,40,47,0.15), 0 0 0 1px rgba(35,40,47,0.2), 0 0 0 3px rgba(35,40,47,0.1);box-shadow:var(--plyr-range-thumb-shadow,0 1px 1px rgba(35,40,47,0.15),0 0 0 1px rgba(35,40,47,0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width,3px) var(--plyr-audio-range-thumb-active-shadow-color,rgba(35,40,47,0.1));}.plyr--full-ui.plyr--audio input[type="range"]:active::-ms-thumb{box-shadow:0 1px 1px rgba(35,40,47,0.15), 0 0 0 1px rgba(35,40,47,0.2), 0 0 0 3px rgba(35,40,47,0.1);box-shadow:var(--plyr-range-thumb-shadow,0 1px 1px rgba(35,40,47,0.15),0 0 0 1px rgba(35,40,47,0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width,3px) var(--plyr-audio-range-thumb-active-shadow-color,rgba(35,40,47,0.1));}.plyr--audio .plyr__progress__buffer{color:rgba(193,200,209,0.6);color:var(--plyr-audio-progress-buffered-background,rgba(193,200,209,0.6));}.plyr--video{overflow:hidden;background:#000;}.plyr--video.plyr--menu-open{overflow:visible;}.plyr__video-wrapper{position:relative;width:100%;height:100%;margin:auto;overflow:hidden;background:#000;}.plyr__video-embed,
+.plyr__video-wrapper--fixed-ratio{height:0;padding-bottom:56.25%;}.plyr__video-embed iframe,
+.plyr__video-wrapper--fixed-ratio video{position:absolute;top:0;left:0;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;right:0;bottom:0;left:0;z-index:3;padding:calc(10px / 2);padding:calc(var(--plyr-control-spacing,10px)/ 2);padding-top:calc(10px * 2);padding-top:calc(var(--plyr-control-spacing,10px) * 2);color:#fff;color:var(--plyr-video-control-color,#fff);background:linear-gradient(rgba(0,0,0,0),rgba(0,0,0,0.75));background:var(--plyr-video-controls-background,linear-gradient(rgba(0,0,0,0),rgba(0,0,0,0.75)));border-bottom-right-radius:inherit;border-bottom-left-radius:inherit;transition:opacity 0.4s ease-in-out, transform 0.4s ease-in-out;}@media (min-width:480px){.plyr--video .plyr__controls{padding:10px;padding:var(--plyr-control-spacing,10px);padding-top:calc(10px * 3.5);padding-top:calc(var(--plyr-control-spacing,10px) * 3.5);}}.plyr--video.plyr--hide-controls .plyr__controls{pointer-events:none;opacity:0;transform:translateY(100%);}.plyr--video .plyr__control.plyr__tab-focus,
+.plyr--video .plyr__control:hover,
+.plyr--video .plyr__control[aria-expanded="true"]{color:#fff;color:var(--plyr-video-control-color-hover,#fff);background:#d9010c;background:var(--plyr-video-control-background-hover,var(--plyr-color-main,var(--plyr-color-main,#d9010c)));}.plyr__control--overlaid{position:absolute;top:50%;left:50%;z-index:2;display:none;padding:calc(10px * 1.5);padding:calc(var(--plyr-control-spacing,10px) * 1.5);color:#fff;color:var(--plyr-video-control-color,#fff);background:#d9010c;background:var(--plyr-video-control-background-hover,var(--plyr-color-main,var(--plyr-color-main,#d9010c)));border:0;border-radius:100%;opacity:0.9;transition:0.3s;transform:translate(-50%,-50%);}.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,0.25);background-color:var(--plyr-video-range-track-background,var(--plyr-video-progress-buffered-background,rgba(255,255,255,0.25)));}.plyr--full-ui.plyr--video input[type="range"]::-moz-range-track{background-color:rgba(255,255,255,0.25);background-color:var(--plyr-video-range-track-background,var(--plyr-video-progress-buffered-background,rgba(255,255,255,0.25)));}.plyr--full-ui.plyr--video input[type="range"]::-ms-track{background-color:rgba(255,255,255,0.25);background-color:var(--plyr-video-range-track-background,var(--plyr-video-progress-buffered-background,rgba(255,255,255,0.25)));}.plyr--full-ui.plyr--video input[type="range"]:active::-webkit-slider-thumb{box-shadow:0 1px 1px rgba(35,40,47,0.15), 0 0 0 1px rgba(35,40,47,0.2), 0 0 0 3px rgba(255,255,255,0.5);box-shadow:var(--plyr-range-thumb-shadow,0 1px 1px rgba(35,40,47,0.15),0 0 0 1px rgba(35,40,47,0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width,3px) var(--plyr-audio-range-thumb-active-shadow-color,rgba(255,255,255,0.5));}.plyr--full-ui.plyr--video input[type="range"]:active::-moz-range-thumb{box-shadow:0 1px 1px rgba(35,40,47,0.15), 0 0 0 1px rgba(35,40,47,0.2), 0 0 0 3px rgba(255,255,255,0.5);box-shadow:var(--plyr-range-thumb-shadow,0 1px 1px rgba(35,40,47,0.15),0 0 0 1px rgba(35,40,47,0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width,3px) var(--plyr-audio-range-thumb-active-shadow-color,rgba(255,255,255,0.5));}.plyr--full-ui.plyr--video input[type="range"]:active::-ms-thumb{box-shadow:0 1px 1px rgba(35,40,47,0.15), 0 0 0 1px rgba(35,40,47,0.2), 0 0 0 3px rgba(255,255,255,0.5);box-shadow:var(--plyr-range-thumb-shadow,0 1px 1px rgba(35,40,47,0.15),0 0 0 1px rgba(35,40,47,0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width,3px) var(--plyr-audio-range-thumb-active-shadow-color,rgba(255,255,255,0.5));}.plyr--video .plyr__progress__buffer{color:rgba(255,255,255,0.25);color:var(--plyr-video-progress-buffered-background,rgba(255,255,255,0.25));}.plyr:full-screen{width:100%;height:100%;margin:0;background:#000;border-radius:0!important;}.plyr:fullscreen{width:100%;height:100%;margin:0;background:#000;border-radius:0!important;}.plyr:fullscreen{width:100%;height:100%;margin:0;background:#000;border-radius:0!important;}.plyr:full-screen video{height:100%;}.plyr:fullscreen video{height:100%;}.plyr:fullscreen video{height:100%;}.plyr:full-screen .plyr__video-wrapper{position:static;height:100%;}.plyr:fullscreen .plyr__video-wrapper{position:static;height:100%;}.plyr:fullscreen .plyr__video-wrapper{position:static;height:100%;}.plyr:full-screen.plyr--vimeo .plyr__video-wrapper{position:relative;height:0;}.plyr:fullscreen.plyr--vimeo .plyr__video-wrapper{position:relative;height:0;}.plyr:fullscreen.plyr--vimeo .plyr__video-wrapper{position:relative;height:0;}.plyr:full-screen .plyr__control .icon--exit-fullscreen{display:block;}.plyr:fullscreen .plyr__control .icon--exit-fullscreen{display:block;}.plyr:fullscreen .plyr__control .icon--exit-fullscreen{display:block;}.plyr:full-screen .plyr__control .icon--exit-fullscreen+svg{display:none;}.plyr:fullscreen .plyr__control .icon--exit-fullscreen+svg{display:none;}.plyr:fullscreen .plyr__control .icon--exit-fullscreen+svg{display:none;}.plyr:full-screen.plyr--hide-controls{cursor:none;}.plyr:fullscreen.plyr--hide-controls{cursor:none;}.plyr:fullscreen.plyr--hide-controls{cursor:none;}@media (min-width:1024px){.plyr:full-screen .plyr__captions{font-size:21px;font-size:var(--plyr-font-size-xlarge,21px);}.plyr:fullscreen .plyr__captions{font-size:21px;font-size:var(--plyr-font-size-xlarge,21px);}.plyr:fullscreen .plyr__captions{font-size:21px;font-size:var(--plyr-font-size-xlarge,21px);}}.plyr:full-screen{width:100%;height:100%;margin:0;background:#000;border-radius:0!important;}.plyr:full-screen video{height:100%;}.plyr:full-screen .plyr__video-wrapper{position:static;height:100%;}.plyr:full-screen.plyr--vimeo .plyr__video-wrapper{position:relative;height:0;}.plyr:full-screen .plyr__control .icon--exit-fullscreen{display:block;}.plyr:full-screen .plyr__control .icon--exit-fullscreen+svg{display:none;}.plyr:full-screen.plyr--hide-controls{cursor:none;}@media (min-width:1024px){.plyr:full-screen .plyr__captions{font-size:21px;font-size:var(--plyr-font-size-xlarge,21px);}}.plyr:full-screen{width:100%;height:100%;margin:0;background:#000;border-radius:0!important;}.plyr:full-screen video{height:100%;}.plyr:full-screen .plyr__video-wrapper{position:static;height:100%;}.plyr:full-screen.plyr--vimeo .plyr__video-wrapper{position:relative;height:0;}.plyr:full-screen .plyr__control .icon--exit-fullscreen{display:block;}.plyr:full-screen .plyr__control .icon--exit-fullscreen+svg{display:none;}.plyr:full-screen.plyr--hide-controls{cursor:none;}@media (min-width:1024px){.plyr:full-screen .plyr__captions{font-size:21px;font-size:var(--plyr-font-size-xlarge,21px);}}.plyr:fullscreen{width:100%;height:100%;margin:0;background:#000;border-radius:0!important;}.plyr:fullscreen video{height:100%;}.plyr:fullscreen .plyr__video-wrapper{position:static;height:100%;}.plyr:fullscreen.plyr--vimeo .plyr__video-wrapper{position:relative;height:0;}.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;}@media (min-width:1024px){.plyr:fullscreen .plyr__captions{font-size:21px;font-size:var(--plyr-font-size-xlarge,21px);}}.plyr--fullscreen-fallback{position:fixed;top:0;right:0;bottom:0;left:0;z-index:10000000;display:block;width:100%;height:100%;margin:0;background:#000;border-radius:0!important;}.plyr--fullscreen-fallback video{height:100%;}.plyr--fullscreen-fallback .plyr__video-wrapper{position:static;height:100%;}.plyr--fullscreen-fallback.plyr--vimeo .plyr__video-wrapper{position:relative;height:0;}.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;}@media (min-width:1024px){.plyr--fullscreen-fallback .plyr__captions{font-size:21px;font-size:var(--plyr-font-size-xlarge,21px);}}.plyr__ads{position:absolute;top:0;right:0;bottom:0;left:0;z-index:-1;overflow:hidden;cursor:pointer;border-radius:inherit;}.plyr__ads>div,
+.plyr__ads>div iframe{position:absolute;width:100%;height:100%;}.plyr__ads::after{position:absolute;right:10px;right:var(--plyr-control-spacing,10px);bottom:10px;bottom:var(--plyr-control-spacing,10px);z-index:3;padding:2px 6px;font-size:11px;color:#fff;pointer-events:none;content:attr(data-badge-text);background:#23282f;border-radius:2px;}.plyr__ads::after:empty{display:none;}.plyr__cues{position:absolute;top:50%;left:0;z-index:3;display:block;width:3px;height:5px;height:var(--plyr-range-track-height,5px);margin:-var(--plyr-range-track-height,5px)/2 0 0;background:currentColor;opacity:0.8;}.plyr__preview-thumb{position:absolute;bottom:100%;z-index:2;padding:3px;padding:var(--plyr-tooltip-radius,3px);margin-bottom:calc(calc(10px / 2) * 2);margin-bottom:calc(calc(var(--plyr-control-spacing,10px)/ 2) * 2);pointer-events:none;background-color:rgba(255,255,255,0.9);background-color:var(--plyr-tooltip-background,rgba(255,255,255,0.9));border-radius:3px;box-shadow:0 1px 2px rgba(0,0,0,0.15);box-shadow:var(--plyr-tooltip-shadow,0 1px 2px rgba(0,0,0,0.15));opacity:0;transition:transform 0.2s 0.1s ease, opacity 0.2s 0.1s ease;transform:translate(0,10px) scale(0.8);transform-origin:50% 100%;}.plyr__preview-thumb--is-shown{opacity:1;transform:translate(0,0) scale(1);}.plyr__preview-thumb::before{position:absolute;bottom:calc(4px * -1);bottom:calc(var(--plyr-tooltip-arrow-size,4px) * -1);left:50%;z-index:2;width:0;height:0;content:"";border-top:4px solid rgba(255,255,255,0.9);border-top:var(--plyr-tooltip-arrow-size,4px) solid var(--plyr-tooltip-background,rgba(255,255,255,0.9));border-right:4px solid transparent;border-right:var(--plyr-tooltip-arrow-size,4px) solid transparent;border-left:4px solid transparent;border-left:var(--plyr-tooltip-arrow-size,4px) solid transparent;transform:translateX(-50%);}.plyr__preview-thumb__image-container{position:relative;z-index:0;overflow:hidden;background:#c1c8d1;border-radius:calc(3px - 1px);border-radius:calc(var(--plyr-tooltip-radius,3px) - 1px);}.plyr__preview-thumb__image-container img{position:absolute;top:0;left:0;width:100%;max-width:none;height:100%;max-height:none;}.plyr__preview-thumb__time-container{position:absolute;right:0;bottom:6px;left:0;z-index:3;white-space:nowrap;}.plyr__preview-thumb__time-container span{padding:3px 6px;font-size:13px;font-size:var(--plyr-font-size-time,var(--plyr-font-size-small,13px));color:#fff;background-color:rgba(0,0,0,0.55);border-radius:calc(3px - 1px);border-radius:calc(var(--plyr-tooltip-radius,3px) - 1px);}.plyr__preview-scrubbing{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;width:100%;height:100%;margin:auto;overflow:hidden;pointer-events:none;filter:blur(1px);opacity:0;transition:opacity 0.3s ease;}.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;width:1px!important;height:1px!important;padding:0!important;overflow:hidden;clip:rect(1px,1px,1px,1px);border:0!important;}.plyr [hidden]{display:none!important;}
diff --git a/blocks/media/youtube/default/dist/main.css b/blocks/media/youtube/default/dist/main.css
new file mode 100644
index 00000000..fd114d95
--- /dev/null
+++ b/blocks/media/youtube/default/dist/main.css
@@ -0,0 +1,2 @@
+@keyframes plyr-progress{to{background-position:25px 0;background-position:var(--plyr-progress-loading-size,25px) 0}}@keyframes plyr-popup{0%{opacity:.5;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}@keyframes plyr-fade-in{0%{opacity:0}to{opacity:1}}.plyr{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;align-items:center;direction:ltr;display:flex;flex-direction:column;font-family:inherit;font-family:var(--plyr-font-family,inherit);font-variant-numeric:tabular-nums;font-weight:400;font-weight:var(--plyr-font-weight-regular,400);line-height:1.7;line-height:var(--plyr-line-height,1.7);max-width:100%;min-width:200px;position:relative;text-shadow:none;transition:box-shadow .3s ease;z-index:0}.plyr audio,.plyr iframe,.plyr video{display:block;height:100%;width: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{background:#4a5464;background:var(--plyr-badge-background,#4a5464);border-radius:2px;border-radius:var(--plyr-badge-border-radius,2px);color:#fff;color:var(--plyr-badge-text-color,#fff);font-size:9px;font-size:var(--plyr-font-size-badge,9px);line-height:1;padding:3px 4px}.plyr--full-ui ::-webkit-media-text-track-container{display:none}.plyr__captions{animation:plyr-fade-in .3s ease;bottom:0;display:none;font-size:13px;font-size:var(--plyr-font-size-small,13px);left:0;padding:10px;padding:var(--plyr-control-spacing,10px);position:absolute;text-align:center;transition:transform .4s ease-in-out;width:100%}.plyr__captions span:empty{display:none}@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)}}@media (min-width:768px){.plyr__captions{font-size:18px;font-size:var(--plyr-font-size-large,18px)}}.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{background:rgba(0,0,0,.8);background:var(--plyr-captions-background,rgba(0,0,0,.8));border-radius:2px;box-decoration-break:clone;color:#fff;color:var(--plyr-captions-text-color,#fff);line-height:185%;padding:.2em .5em;white-space:pre-wrap}.plyr__caption div{display:inline}.plyr__control{background:0 0;border:0;border-radius:3px;border-radius:var(--plyr-control-radius,3px);color:inherit;cursor:pointer;flex-shrink:0;overflow:visible;padding:7px;padding:calc(var(--plyr-control-spacing,10px)*.7);position:relative;transition:all .3s ease}.plyr__control svg{fill:currentColor;display:block;height:18px;height:var(--plyr-control-icon-size,18px);pointer-events:none;width:18px;width:var(--plyr-control-icon-size,18px)}.plyr__control:focus{outline:0}.plyr__control.plyr__tab-focus{outline-color:#d9010c;outline-color:var(--plyr-tab-focus-color,var(--plyr-color-main,var(--plyr-color-main,#d9010c)));outline-offset:2px;outline-style:dotted;outline-width:3px}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{align-items:center;display:flex;justify-content:flex-end;text-align:center}.plyr__controls .plyr__progress__container{flex:1;min-width:0}.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-left:0;margin-right:auto}.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{display:flex;position:relative}.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{animation:plyr-popup .2s ease;background:rgba(255,255,255,.9);background:var(--plyr-menu-background,rgba(255,255,255,.9));border-radius:4px;bottom:100%;box-shadow:0 1px 2px rgba(0,0,0,.15);box-shadow:var(--plyr-menu-shadow,0 1px 2px rgba(0,0,0,.15));color:#4a5464;color:var(--plyr-menu-color,#4a5464);font-size:15px;font-size:var(--plyr-font-size-base,15px);margin-bottom:10px;position:absolute;right:-3px;text-align:left;white-space:nowrap;z-index:3}.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{border:4px solid transparent;border-top-color:rgba(255,255,255,.9);border:var(--plyr-menu-arrow-size,4px) solid transparent;border-top-color:var(--plyr-menu-background,rgba(255,255,255,.9));content:"";height:0;position:absolute;right:14px;right:calc(var(--plyr-control-icon-size,18px)/2 + var(--plyr-control-spacing,10px)*.7 - var(--plyr-menu-arrow-size,4px)/2);top:100%;width:0}.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{align-items:center;color:#4a5464;color:var(--plyr-menu-color,#4a5464);display:flex;font-size:13px;font-size:var(--plyr-font-size-menu,var(--plyr-font-size-small,13px));padding:4.66667px 10.5px;padding:calc(var(--plyr-control-spacing,10px)*.7/1.5) calc(var(--plyr-control-spacing,10px)*.7*1.5);user-select:none;width:100%}.plyr__menu__container .plyr__control>span{align-items:inherit;display:flex;width:100%}.plyr__menu__container .plyr__control:after{border:4px solid transparent;border:var(--plyr-menu-item-arrow-size,4px) solid transparent;content:"";position:absolute;top:50%;transform:translateY(-50%)}.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{border-left-color:#728197;border-left-color:var(--plyr-menu-arrow-color,#728197);right:6.5px;right:calc(var(--plyr-control-spacing,10px)*.7*1.5 - var(--plyr-menu-item-arrow-size,4px))}.plyr__menu__container .plyr__control--forward.plyr__tab-focus:after,.plyr__menu__container .plyr__control--forward:hover:after{border-left-color:currentColor}.plyr__menu__container .plyr__control--back{font-weight:400;font-weight:var(--plyr-font-weight-regular,400);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);position:relative;width:calc(100% - 14px);width:calc(100% - var(--plyr-control-spacing,10px)*.7*2)}.plyr__menu__container .plyr__control--back:after{border-right-color:#728197;border-right-color:var(--plyr-menu-arrow-color,#728197);left:6.5px;left:calc(var(--plyr-control-spacing,10px)*.7*1.5 - var(--plyr-menu-item-arrow-size,4px))}.plyr__menu__container .plyr__control--back:before{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);content:"";height:1px;left:0;margin-top:3.5px;margin-top:calc(var(--plyr-control-spacing,10px)*.7/2);overflow:hidden;position:absolute;right:0;top:100%}.plyr__menu__container .plyr__control--back.plyr__tab-focus:after,.plyr__menu__container .plyr__control--back:hover:after{border-right-color:currentColor}.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{background:rgba(0,0,0,.1);content:"";display:block;flex-shrink:0;height:16px;margin-right:10px;margin-right:var(--plyr-control-spacing,10px);transition:all .3s ease;width:16px}.plyr__menu__container .plyr__control[role=menuitemradio]:after{background:#fff;border:0;height:6px;left:12px;opacity:0;top:50%;transform:translateY(-50%) scale(0);transition:transform .3s ease,opacity .3s ease;width:6px}.plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]:before{background:#d9010c;background:var(--plyr-control-toggle-checked-background,var(--plyr-color-main,var(--plyr-color-main,#d9010c)))}.plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]:after{opacity:1;transform:translateY(-50%) scale(1)}.plyr__menu__container .plyr__control[role=menuitemradio].plyr__tab-focus:before,.plyr__menu__container .plyr__control[role=menuitemradio]:hover:before{background:rgba(35,40,47,.1)}.plyr__menu__container .plyr__menu__value{align-items:center;display:flex;margin-left:auto;margin-right:calc(-7px - -2);margin-right:calc(var(--plyr-control-spacing,10px)*.7*-1 - -2);overflow:hidden;padding-left:24.5px;padding-left:calc(var(--plyr-control-spacing,10px)*.7*3.5);pointer-events:none}.plyr--full-ui input[type=range]{appearance:none;background:0 0;border:0;border-radius:26px;border-radius:calc(var(--plyr-range-thumb-height,13px)*2);color:#d9010c;color:var(--plyr-range-fill-background,var(--plyr-color-main,var(--plyr-color-main,#d9010c)));display:block;height:19px;height:calc(var(--plyr-range-thumb-active-shadow-width,3px)*2 + var(--plyr-range-thumb-height,13px));margin:0;min-width:0;padding:0;transition:box-shadow .3s ease;width:100%}.plyr--full-ui input[type=range]::-webkit-slider-runnable-track{background:0 0;background-image:linear-gradient(90deg,currentColor 0,transparent 0);background-image:linear-gradient(to right,currentColor var(--value,0),transparent var(--value,0));border:0;border-radius:2.5px;border-radius:calc(var(--plyr-range-track-height,5px)/2);height:5px;height:var(--plyr-range-track-height,5px);transition:box-shadow .3s ease;user-select:none}.plyr--full-ui input[type=range]::-webkit-slider-thumb{appearance:none;background:#fff;background:var(--plyr-range-thumb-background,#fff);border:0;border-radius:100%;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));height:13px;height:var(--plyr-range-thumb-height,13px);margin-top:-4px;margin-top:calc(var(--plyr-range-thumb-height,13px)/2*-1 - var(--plyr-range-track-height,5px)/2*-1);position:relative;transition:all .2s ease;width:13px;width:var(--plyr-range-thumb-height,13px)}.plyr--full-ui input[type=range]::-moz-range-track{background:0 0;border:0;border-radius:2.5px;border-radius:calc(var(--plyr-range-track-height,5px)/2);height:5px;height:var(--plyr-range-track-height,5px);transition:box-shadow .3s ease;user-select:none}.plyr--full-ui input[type=range]::-moz-range-thumb{background:#fff;background:var(--plyr-range-thumb-background,#fff);border:0;border-radius:100%;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));height:13px;height:var(--plyr-range-thumb-height,13px);position:relative;transition:all .2s ease;width:13px;width:var(--plyr-range-thumb-height,13px)}.plyr--full-ui input[type=range]::-moz-range-progress{background:currentColor;border-radius:2.5px;border-radius:calc(var(--plyr-range-track-height,5px)/2);height:5px;height:var(--plyr-range-track-height,5px)}.plyr--full-ui input[type=range]::-ms-track{color:transparent}.plyr--full-ui input[type=range]::-ms-fill-upper,.plyr--full-ui input[type=range]::-ms-track{background:0 0;border:0;border-radius:2.5px;border-radius:calc(var(--plyr-range-track-height,5px)/2);height:5px;height:var(--plyr-range-track-height,5px);transition:box-shadow .3s ease;user-select:none}.plyr--full-ui input[type=range]::-ms-fill-lower{background:0 0;background:currentColor;border:0;border-radius:2.5px;border-radius:calc(var(--plyr-range-track-height,5px)/2);height:5px;height:var(--plyr-range-track-height,5px);transition:box-shadow .3s ease;user-select:none}.plyr--full-ui input[type=range]::-ms-thumb{background:#fff;background:var(--plyr-range-thumb-background,#fff);border:0;border-radius:100%;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));height:13px;height:var(--plyr-range-thumb-height,13px);margin-top:0;position:relative;transition:all .2s ease;width:13px;width:var(--plyr-range-thumb-height,13px)}.plyr--full-ui input[type=range]::-ms-tooltip{display:none}.plyr--full-ui input[type=range]:focus{outline:0}.plyr--full-ui input[type=range]::-moz-focus-outer{border:0}.plyr--full-ui input[type=range].plyr__tab-focus::-webkit-slider-runnable-track{outline-color:#d9010c;outline-color:var(--plyr-tab-focus-color,var(--plyr-color-main,var(--plyr-color-main,#d9010c)));outline-offset:2px;outline-style:dotted;outline-width:3px}.plyr--full-ui input[type=range].plyr__tab-focus::-moz-range-track{outline-color:#d9010c;outline-color:var(--plyr-tab-focus-color,var(--plyr-color-main,var(--plyr-color-main,#d9010c)));outline-offset:2px;outline-style:dotted;outline-width:3px}.plyr--full-ui input[type=range].plyr__tab-focus::-ms-track{outline-color:#d9010c;outline-color:var(--plyr-tab-focus-color,var(--plyr-color-main,var(--plyr-color-main,#d9010c)));outline-offset:2px;outline-style:dotted;outline-width:3px}.plyr__poster{background-color:#000;background-position:50% 50%;background-repeat:no-repeat;background-size:contain;height:100%;left:0;opacity:0;position:absolute;top:0;transition:opacity .2s ease;width:100%;z-index:1}.plyr--stopped.plyr__poster-enabled .plyr__poster{opacity:1}.plyr__time{font-size:13px;font-size:var(--plyr-font-size-time,var(--plyr-font-size-small,13px))}.plyr__time+.plyr__time:before{content:"\2044";margin-right:10px;margin-right:var(--plyr-control-spacing,10px)}@media (max-width:calc(768px - 1px)){.plyr__time+.plyr__time{display:none}}.plyr__tooltip{background:rgba(255,255,255,.9);background:var(--plyr-tooltip-background,rgba(255,255,255,.9));border-radius:3px;border-radius:var(--plyr-tooltip-radius,3px);bottom:100%;box-shadow:0 1px 2px rgba(0,0,0,.15);box-shadow:var(--plyr-tooltip-shadow,0 1px 2px rgba(0,0,0,.15));color:#4a5464;color:var(--plyr-tooltip-color,#4a5464);font-size:13px;font-size:var(--plyr-font-size-small,13px);font-weight:400;font-weight:var(--plyr-font-weight-regular,400);left:50%;line-height:1.3;margin-bottom:10px;margin-bottom:calc(var(--plyr-control-spacing,10px)/2*2);opacity:0;padding:5px 7.5px;padding:calc(var(--plyr-control-spacing,10px)/2) calc(var(--plyr-control-spacing,10px)/2*1.5);pointer-events:none;position:absolute;transform:translate(-50%,10px) scale(.8);transform-origin:50% 100%;transition:transform .2s ease .1s,opacity .2s ease .1s;white-space:nowrap;z-index:2}.plyr__tooltip:before{border-left:4px solid transparent;border-left:var(--plyr-tooltip-arrow-size,4px) solid transparent;border-right:4px solid transparent;border-right:var(--plyr-tooltip-arrow-size,4px) solid transparent;border-top:4px solid rgba(255,255,255,.9);border-top:var(--plyr-tooltip-arrow-size,4px) solid var(--plyr-tooltip-background,rgba(255,255,255,.9));bottom:-4px;bottom:calc(var(--plyr-tooltip-arrow-size,4px)*-1);content:"";height:0;left:50%;position:absolute;transform:translateX(-50%);width:0;z-index:2}.plyr .plyr__control.plyr__tab-focus .plyr__tooltip,.plyr .plyr__control:hover .plyr__tooltip,.plyr__tooltip--visible{opacity:1;transform:translate(-50%) scale(1)}.plyr .plyr__control:hover .plyr__tooltip{z-index:3}.plyr__controls>.plyr__control:first-child+.plyr__control .plyr__tooltip,.plyr__controls>.plyr__control:first-child .plyr__tooltip{left:0;transform:translateY(10px) scale(.8);transform-origin:0 100%}.plyr__controls>.plyr__control:first-child+.plyr__control .plyr__tooltip:before,.plyr__controls>.plyr__control:first-child .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{left:auto;right:0;transform:translateY(10px) scale(.8);transform-origin:100% 100%}.plyr__controls>.plyr__control:last-child .plyr__tooltip:before{left:auto;right:16px;right:calc(var(--plyr-control-icon-size,18px)/2 + var(--plyr-control-spacing,10px)*.7);transform:translateX(50%)}.plyr__controls>.plyr__control:first-child+.plyr__control.plyr__tab-focus .plyr__tooltip,.plyr__controls>.plyr__control:first-child+.plyr__control .plyr__tooltip--visible,.plyr__controls>.plyr__control:first-child+.plyr__control:hover .plyr__tooltip,.plyr__controls>.plyr__control:first-child.plyr__tab-focus .plyr__tooltip,.plyr__controls>.plyr__control:first-child .plyr__tooltip--visible,.plyr__controls>.plyr__control:first-child:hover .plyr__tooltip,.plyr__controls>.plyr__control:last-child.plyr__tab-focus .plyr__tooltip,.plyr__controls>.plyr__control:last-child .plyr__tooltip--visible,.plyr__controls>.plyr__control:last-child:hover .plyr__tooltip{transform:translate(0) scale(1)}.plyr__progress{left:6.5px;left:calc(var(--plyr-range-thumb-height,13px)*.5);margin-right:13px;margin-right:var(--plyr-range-thumb-height,13px);position:relative}.plyr__progress__buffer,.plyr__progress input[type=range]{margin-left:-6.5px;margin-left:calc(var(--plyr-range-thumb-height,13px)*-.5);margin-right:-6.5px;margin-right:calc(var(--plyr-range-thumb-height,13px)*-.5);width:calc(100% + 13px);width:calc(100% + var(--plyr-range-thumb-height,13px))}.plyr__progress input[type=range]{position:relative;z-index:2}.plyr__progress .plyr__tooltip{font-size:13px;font-size:var(--plyr-font-size-time,var(--plyr-font-size-small,13px));left:0}.plyr__progress__buffer{appearance:none;background:0 0;border:0;border-radius:100px;height:5px;height:var(--plyr-range-track-height,5px);left:0;margin-top:-2.5px;margin-top:calc(var(--plyr-range-track-height,5px)/2*-1);padding:0;position:absolute;top:50%}.plyr__progress__buffer::-webkit-progress-bar{background:0 0}.plyr__progress__buffer::-webkit-progress-value{background:currentColor;border-radius:100px;min-width:5px;min-width:var(--plyr-range-track-height,5px);transition:width .2s ease}.plyr__progress__buffer::-moz-progress-bar{background:currentColor;border-radius:100px;min-width:5px;min-width:var(--plyr-range-track-height,5px);transition:width .2s ease}.plyr__progress__buffer::-ms-fill{border-radius:100px;transition:width .2s ease}.plyr--loading .plyr__progress__buffer{animation:plyr-progress 1s linear infinite;background-image:linear-gradient(-45deg,rgba(35,40,47,.6) 25%,transparent 0,transparent 50%,rgba(35,40,47,.6) 0,rgba(35,40,47,.6) 75%,transparent 0,transparent);background-image:linear-gradient(-45deg,var(--plyr-progress-loading-background,rgba(35,40,47,.6)) 25%,transparent 25%,transparent 50%,var(--plyr-progress-loading-background,rgba(35,40,47,.6)) 50%,var(--plyr-progress-loading-background,rgba(35,40,47,.6)) 75%,transparent 75%,transparent);background-repeat:repeat-x;background-size:25px 25px;background-size:var(--plyr-progress-loading-size,25px) var(--plyr-progress-loading-size,25px);color:transparent}.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--audio.plyr--loading .plyr__progress__buffer{background-color:rgba(193,200,209,.6);background-color:var(--plyr-audio-progress-buffered-background,rgba(193,200,209,.6))}.plyr__volume{align-items:center;display:flex;max-width:110px;min-width:80px;position:relative;width:20%}.plyr__volume input[type=range]{margin-left:5px;margin-left:calc(var(--plyr-control-spacing,10px)/2);margin-right:5px;margin-right:calc(var(--plyr-control-spacing,10px)/2);position:relative;z-index:2}.plyr--is-ios .plyr__volume{min-width:0;width:auto}.plyr--audio{display:block}.plyr--audio .plyr__controls{background:#fff;background:var(--plyr-audio-controls-background,#fff);border-radius:inherit;color:#4a5464;color:var(--plyr-audio-control-color,#4a5464);padding:10px;padding:var(--plyr-control-spacing,10px)}.plyr--audio .plyr__control.plyr__tab-focus,.plyr--audio .plyr__control:hover,.plyr--audio .plyr__control[aria-expanded=true]{background:#d9010c;background:var(--plyr-audio-control-background-hover,var(--plyr-color-main,var(--plyr-color-main,#d9010c)));color:#fff;color:var(--plyr-audio-control-color-hover,#fff)}.plyr--full-ui.plyr--audio input[type=range]::-webkit-slider-runnable-track{background-color:rgba(193,200,209,.6);background-color:var(--plyr-audio-range-track-background,var(--plyr-audio-progress-buffered-background,rgba(193,200,209,.6)))}.plyr--full-ui.plyr--audio input[type=range]::-moz-range-track{background-color:rgba(193,200,209,.6);background-color:var(--plyr-audio-range-track-background,var(--plyr-audio-progress-buffered-background,rgba(193,200,209,.6)))}.plyr--full-ui.plyr--audio input[type=range]::-ms-track{background-color:rgba(193,200,209,.6);background-color:var(--plyr-audio-range-track-background,var(--plyr-audio-progress-buffered-background,rgba(193,200,209,.6)))}.plyr--full-ui.plyr--audio 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(35,40,47,.1);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(35,40,47,.1))}.plyr--full-ui.plyr--audio 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(35,40,47,.1);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(35,40,47,.1))}.plyr--full-ui.plyr--audio 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(35,40,47,.1);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(35,40,47,.1))}.plyr--audio .plyr__progress__buffer{color:rgba(193,200,209,.6);color:var(--plyr-audio-progress-buffered-background,rgba(193,200,209,.6))}.plyr--video{background:#000;overflow:hidden}.plyr--video.plyr--menu-open{overflow:visible}.plyr__video-wrapper{background:#000;height:100%;margin:auto;overflow:hidden;position:relative;width:100%}.plyr__video-embed,.plyr__video-wrapper--fixed-ratio{height:0;padding-bottom:56.25%}.plyr__video-embed iframe,.plyr__video-wrapper--fixed-ratio video{border:0;left:0;position:absolute;top:0}.plyr--full-ui .plyr__video-embed>.plyr__video-embed__container{padding-bottom:240%;position:relative;transform:translateY(-38.28125%)}.plyr--video .plyr__controls{background:linear-gradient(transparent,rgba(0,0,0,.75));background:var(--plyr-video-controls-background,linear-gradient(transparent,rgba(0,0,0,.75)));border-bottom-left-radius:inherit;border-bottom-right-radius:inherit;bottom:0;color:#fff;color:var(--plyr-video-control-color,#fff);left:0;padding:5px;padding:calc(var(--plyr-control-spacing,10px)/2);padding-top:20px;padding-top:calc(var(--plyr-control-spacing,10px)*2);position:absolute;right:0;transition:opacity .4s ease-in-out,transform .4s ease-in-out;z-index:3}@media (min-width:480px){.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)}}.plyr--video.plyr--hide-controls .plyr__controls{opacity:0;pointer-events:none;transform:translateY(100%)}.plyr--video .plyr__control.plyr__tab-focus,.plyr--video .plyr__control:hover,.plyr--video .plyr__control[aria-expanded=true]{background:#d9010c;background:var(--plyr-video-control-background-hover,var(--plyr-color-main,var(--plyr-color-main,#d9010c)));color:#fff;color:var(--plyr-video-control-color-hover,#fff)}.plyr__control--overlaid{background:#d9010c;background:var(--plyr-video-control-background-hover,var(--plyr-color-main,var(--plyr-color-main,#d9010c)));border:0;border-radius:100%;color:#fff;color:var(--plyr-video-control-color,#fff);display:none;left:50%;opacity:.9;padding:15px;padding:calc(var(--plyr-control-spacing,10px)*1.5);position:absolute;top:50%;transform:translate(-50%,-50%);transition:.3s;z-index:2}.plyr__control--overlaid svg{left:2px;position:relative}.plyr__control--overlaid:focus,.plyr__control--overlaid:hover{opacity:1}.plyr--playing .plyr__control--overlaid{opacity:0;visibility:hidden}.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))}@media (min-width:1024px){.plyr:full-screen .plyr__captions{font-size:21px;font-size:var(--plyr-font-size-xlarge,21px)}.plyr:fullscreen .plyr__captions{font-size:21px;font-size:var(--plyr-font-size-xlarge,21px)}}.plyr:full-screen{background:#000;border-radius:0!important;height:100%;margin:0;width:100%}.plyr:full-screen video{height:100%}.plyr:full-screen .plyr__video-wrapper{height:100%;position:static}.plyr:full-screen.plyr--vimeo .plyr__video-wrapper{height:0;position:relative}.plyr:full-screen .plyr__control .icon--exit-fullscreen{display:block}.plyr:full-screen .plyr__control .icon--exit-fullscreen+svg{display:none}.plyr:full-screen.plyr--hide-controls{cursor:none}@media (min-width:1024px){.plyr:full-screen .plyr__captions{font-size:21px;font-size:var(--plyr-font-size-xlarge,21px)}}.plyr:fullscreen{background:#000;border-radius:0!important;height:100%;margin:0;width:100%}.plyr:fullscreen video{height:100%}.plyr:fullscreen .plyr__video-wrapper{height:100%;position:static}.plyr:fullscreen.plyr--vimeo .plyr__video-wrapper{height:0;position:relative}.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}@media (min-width:1024px){.plyr:fullscreen .plyr__captions{font-size:21px;font-size:var(--plyr-font-size-xlarge,21px)}}.plyr--fullscreen-fallback{background:#000;border-radius:0!important;bottom:0;display:block;height:100%;left:0;margin:0;position:fixed;right:0;top:0;width:100%;z-index:10000000}.plyr--fullscreen-fallback video{height:100%}.plyr--fullscreen-fallback .plyr__video-wrapper{height:100%;position:static}.plyr--fullscreen-fallback.plyr--vimeo .plyr__video-wrapper{height:0;position:relative}.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}@media (min-width:1024px){.plyr--fullscreen-fallback .plyr__captions{font-size:21px;font-size:var(--plyr-font-size-xlarge,21px)}}.plyr__ads{border-radius:inherit;bottom:0;cursor:pointer;left:0;overflow:hidden;position:absolute;right:0;top:0;z-index:-1}.plyr__ads>div,.plyr__ads>div iframe{height:100%;position:absolute;width:100%}.plyr__ads:after{background:#23282f;border-radius:2px;bottom:10px;bottom:var(--plyr-control-spacing,10px);color:#fff;content:attr(data-badge-text);font-size:11px;padding:2px 6px;pointer-events:none;position:absolute;right:10px;right:var(--plyr-control-spacing,10px);z-index:3}.plyr__ads:after:empty{display:none}.plyr__cues{background:currentColor;display:block;height:5px;height:var(--plyr-range-track-height,5px);left:0;margin:-var(--plyr-range-track-height,5px)/2 0 0;opacity:.8;position:absolute;top:50%;width:3px;z-index:3}.plyr__preview-thumb{background-color:rgba(255,255,255,.9);background-color:var(--plyr-tooltip-background,rgba(255,255,255,.9));border-radius:3px;bottom:100%;box-shadow:0 1px 2px rgba(0,0,0,.15);box-shadow:var(--plyr-tooltip-shadow,0 1px 2px rgba(0,0,0,.15));margin-bottom:10px;margin-bottom:calc(var(--plyr-control-spacing,10px)/2*2);opacity:0;padding:3px;padding:var(--plyr-tooltip-radius,3px);pointer-events:none;position:absolute;transform:translateY(10px) scale(.8);transform-origin:50% 100%;transition:transform .2s ease .1s,opacity .2s ease .1s;z-index:2}.plyr__preview-thumb--is-shown{opacity:1;transform:translate(0) scale(1)}.plyr__preview-thumb:before{border-left:4px solid transparent;border-left:var(--plyr-tooltip-arrow-size,4px) solid transparent;border-right:4px solid transparent;border-right:var(--plyr-tooltip-arrow-size,4px) solid transparent;border-top:4px solid rgba(255,255,255,.9);border-top:var(--plyr-tooltip-arrow-size,4px) solid var(--plyr-tooltip-background,rgba(255,255,255,.9));bottom:-4px;bottom:calc(var(--plyr-tooltip-arrow-size,4px)*-1);content:"";height:0;left:50%;position:absolute;transform:translateX(-50%);width:0;z-index:2}.plyr__preview-thumb__image-container{background:#c1c8d1;border-radius:2px;border-radius:calc(var(--plyr-tooltip-radius,3px) - 1px);overflow:hidden;position:relative;z-index:0}.plyr__preview-thumb__image-container img{height:100%;left:0;max-height:none;max-width:none;position:absolute;top:0;width:100%}.plyr__preview-thumb__time-container{bottom:6px;left:0;position:absolute;right:0;white-space:nowrap;z-index:3}.plyr__preview-thumb__time-container span{background-color:rgba(0,0,0,.55);border-radius:2px;border-radius:calc(var(--plyr-tooltip-radius,3px) - 1px);color:#fff;font-size:13px;font-size:var(--plyr-font-size-time,var(--plyr-font-size-small,13px));padding:3px 6px}.plyr__preview-scrubbing{bottom:0;filter:blur(1px);height:100%;left:0;margin:auto;opacity:0;overflow:hidden;pointer-events:none;position:absolute;right:0;top:0;transition:opacity .3s ease;width:100%;z-index:1}.plyr__preview-scrubbing--is-shown{opacity:1}.plyr__preview-scrubbing img{height:100%;left:0;max-height:none;max-width:none;object-fit:contain;position:absolute;top:0;width:100%}.plyr--no-transition{transition:none!important}.plyr__sr-only{clip:rect(1px,1px,1px,1px);border:0!important;height:1px!important;overflow:hidden;padding:0!important;position:absolute!important;width:1px!important}.plyr [hidden]{display:none!important}
+/*# sourceMappingURL=main.css.map */
diff --git a/blocks/media/youtube/default/dist/main.css.map b/blocks/media/youtube/default/dist/main.css.map
new file mode 100644
index 00000000..16bda37a
--- /dev/null
+++ b/blocks/media/youtube/default/dist/main.css.map
@@ -0,0 +1 @@
+{"mappings":"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","sources":["assets/plyr.css"],"sourcesContent":["@keyframes plyr-progress{to{background-position:25px 0;background-position:var(--plyr-progress-loading-size,25px) 0;}}@keyframes plyr-popup{0%{opacity:0.5;transform:translateY(10px);}to{opacity:1;transform:translateY(0);}}@keyframes plyr-fade-in{from{opacity:0;}to{opacity:1;}}.plyr{position:relative;z-index:0;display:flex;flex-direction:column;align-items:center;min-width:200px;max-width:100%;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);text-shadow:none;transition:box-shadow 0.3s ease;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;direction:ltr;font-variant-numeric:tabular-nums;}.plyr audio,\n.plyr iframe,\n.plyr video{display:block;width:100%;height:100%;}.plyr button{width:auto;font:inherit;line-height:inherit;}.plyr:focus{outline:0;}.plyr--full-ui{box-sizing:border-box;}.plyr--full-ui *,\n.plyr--full-ui ::after,\n.plyr--full-ui ::before{box-sizing:inherit;}.plyr--full-ui a,\n.plyr--full-ui button,\n.plyr--full-ui input,\n.plyr--full-ui label{touch-action:manipulation;}.plyr__badge{padding:3px 4px;font-size:9px;font-size:var(--plyr-font-size-badge,9px);line-height:1;color:#fff;color:var(--plyr-badge-text-color,#fff);background:#4a5464;background:var(--plyr-badge-background,#4a5464);border-radius:2px;border-radius:var(--plyr-badge-border-radius,2px);}.plyr--full-ui ::-webkit-media-text-track-container{display:none;}.plyr__captions{position:absolute;bottom:0;left:0;display:none;width:100%;padding:10px;padding:var(--plyr-control-spacing,10px);font-size:13px;font-size:var(--plyr-font-size-small,13px);text-align:center;transition:transform 0.4s ease-in-out;animation:plyr-fade-in 0.3s ease;}.plyr__captions span:empty{display:none;}@media (min-width:480px){.plyr__captions{padding:calc(10px * 2);padding:calc(var(--plyr-control-spacing,10px) * 2);font-size:15px;font-size:var(--plyr-font-size-base,15px);}}@media (min-width:768px){.plyr__captions{font-size:18px;font-size:var(--plyr-font-size-large,18px);}}.plyr--captions-active .plyr__captions{display:block;}.plyr:not(.plyr--hide-controls) .plyr__controls:not(:empty)~.plyr__captions{transform:translateY(calc(10px * -4));transform:translateY(calc(var(--plyr-control-spacing,10px) * -4));}.plyr__caption{padding:0.2em 0.5em;line-height:185%;color:#fff;color:var(--plyr-captions-text-color,#fff);white-space:pre-wrap;background:rgba(0,0,0,0.8);background:var(--plyr-captions-background,rgba(0,0,0,0.8));border-radius:2px;box-decoration-break:clone;box-decoration-break:clone;}.plyr__caption div{display:inline;}.plyr__control{position:relative;padding:calc(10px * 0.7);padding:calc(var(--plyr-control-spacing,10px) * 0.7);overflow:visible;color:inherit;cursor:pointer;background:0 0;border:0;border-radius:3px;border-radius:var(--plyr-control-radius,3px);transition:all 0.3s ease;flex-shrink:0;}.plyr__control svg{display:block;width:18px;width:var(--plyr-control-icon-size,18px);height:18px;height:var(--plyr-control-icon-size,18px);pointer-events:none;fill:currentColor;}.plyr__control:focus{outline:0;}.plyr__control.plyr__tab-focus{outline-width:3px;outline-style:dotted;outline-color:#d9010c;outline-color:var(--plyr-tab-focus-color,var(--plyr-color-main,var(--plyr-color-main,#d9010c)));outline-offset:2px;}a.plyr__control{text-decoration:none;}a.plyr__control::after,\na.plyr__control::before{display:none;}.plyr__control.plyr__control--pressed .icon--not-pressed,\n.plyr__control.plyr__control--pressed .label--not-pressed,\n.plyr__control:not(.plyr__control--pressed) .icon--pressed,\n.plyr__control:not(.plyr__control--pressed) .label--pressed{display:none;}.plyr--full-ui ::-webkit-media-controls{display:none;}.plyr__controls{display:flex;align-items:center;justify-content:flex-end;text-align:center;}.plyr__controls .plyr__progress__container{flex:1;min-width:0;}.plyr__controls .plyr__controls__item{margin-left:calc(10px / 4);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:calc(10px / 4);padding-left:calc(var(--plyr-control-spacing,10px)/ 4);}.plyr__controls .plyr__controls__item.plyr__time{padding:0 calc(10px / 2);padding:0 calc(var(--plyr-control-spacing,10px)/ 2);}.plyr__controls .plyr__controls__item.plyr__progress__container:first-child,\n.plyr__controls .plyr__controls__item.plyr__time+.plyr__time,\n.plyr__controls .plyr__controls__item.plyr__time:first-child{padding-left:0;}.plyr__controls:empty{display:none;}.plyr [data-plyr=\"airplay\"],\n.plyr [data-plyr=\"captions\"],\n.plyr [data-plyr=\"fullscreen\"],\n.plyr [data-plyr=\"pip\"]{display:none;}.plyr--airplay-supported [data-plyr=\"airplay\"],\n.plyr--captions-enabled [data-plyr=\"captions\"],\n.plyr--fullscreen-enabled [data-plyr=\"fullscreen\"],\n.plyr--pip-supported [data-plyr=\"pip\"]{display:inline-block;}.plyr__menu{position:relative;display:flex;}.plyr__menu .plyr__control svg{transition:transform 0.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{position:absolute;right:-3px;bottom:100%;z-index:3;margin-bottom:10px;font-size:15px;font-size:var(--plyr-font-size-base,15px);color:#4a5464;color:var(--plyr-menu-color,#4a5464);text-align:left;white-space:nowrap;background:rgba(255,255,255,0.9);background:var(--plyr-menu-background,rgba(255,255,255,0.9));border-radius:4px;box-shadow:0 1px 2px rgba(0,0,0,0.15);box-shadow:var(--plyr-menu-shadow,0 1px 2px rgba(0,0,0,0.15));animation:plyr-popup 0.2s ease;}.plyr__menu__container>div{overflow:hidden;transition:height 0.35s cubic-bezier(0.4,0,0.2,1), width 0.35s cubic-bezier(0.4,0,0.2,1);}.plyr__menu__container::after{position:absolute;top:100%;right:calc(((18px / 2) + calc(10px * 0.7)) - (4px / 2));right:calc(((var(--plyr-control-icon-size,18px)/ 2) + calc(var(--plyr-control-spacing,10px) * 0.7)) - (var(--plyr-menu-arrow-size,4px)/ 2));width:0;height:0;content:\"\";border:4px solid transparent;border:var(--plyr-menu-arrow-size,4px) solid transparent;border-top-color:rgba(255,255,255,0.9);border-top-color:var(--plyr-menu-background,rgba(255,255,255,0.9));}.plyr__menu__container [role=\"menu\"]{padding:calc(10px * 0.7);padding:calc(var(--plyr-control-spacing,10px) * 0.7);}.plyr__menu__container [role=\"menuitem\"],\n.plyr__menu__container [role=\"menuitemradio\"]{margin-top:2px;}.plyr__menu__container [role=\"menuitem\"]:first-child,\n.plyr__menu__container [role=\"menuitemradio\"]:first-child{margin-top:0;}.plyr__menu__container .plyr__control{display:flex;align-items:center;width:100%;padding-top:calc(calc(10px * 0.7)/ 1.5);padding-top:calc(calc(var(--plyr-control-spacing,10px) * 0.7)/ 1.5);padding-right:calc(calc(10px * 0.7) * 1.5);padding-right:calc(calc(var(--plyr-control-spacing,10px) * 0.7) * 1.5);padding-bottom:calc(calc(10px * 0.7)/ 1.5);padding-bottom:calc(calc(var(--plyr-control-spacing,10px) * 0.7)/ 1.5);padding-left:calc(calc(10px * 0.7) * 1.5);padding-left:calc(calc(var(--plyr-control-spacing,10px) * 0.7) * 1.5);font-size:13px;font-size:var(--plyr-font-size-menu,var(--plyr-font-size-small,13px));color:#4a5464;color:var(--plyr-menu-color,#4a5464);user-select:none;user-select:none;user-select:none;}.plyr__menu__container .plyr__control>span{display:flex;align-items:inherit;width:100%;}.plyr__menu__container .plyr__control::after{position:absolute;top:50%;content:\"\";border:4px solid transparent;border:var(--plyr-menu-item-arrow-size,4px) solid transparent;transform:translateY(-50%);}.plyr__menu__container .plyr__control--forward{padding-right:calc(calc(10px * 0.7) * 4);padding-right:calc(calc(var(--plyr-control-spacing,10px) * 0.7) * 4);}.plyr__menu__container .plyr__control--forward::after{right:calc((calc(10px * 0.7) * 1.5) - 4px);right:calc((calc(var(--plyr-control-spacing,10px) * 0.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.plyr__tab-focus::after,\n.plyr__menu__container .plyr__control--forward:hover::after{border-left-color:currentColor;}.plyr__menu__container .plyr__control--back{position:relative;width:calc(100% - (calc(10px * 0.7) * 2));width:calc(100% - (calc(var(--plyr-control-spacing,10px) * 0.7) * 2));padding-left:calc(calc(10px * 0.7) * 4);padding-left:calc(calc(var(--plyr-control-spacing,10px) * 0.7) * 4);margin:calc(10px * 0.7);margin:calc(var(--plyr-control-spacing,10px) * 0.7);margin-bottom:calc(calc(10px * 0.7)/ 2);margin-bottom:calc(calc(var(--plyr-control-spacing,10px) * 0.7)/ 2);font-weight:400;font-weight:var(--plyr-font-weight-regular,400);}.plyr__menu__container .plyr__control--back::after{left:calc((calc(10px * 0.7) * 1.5) - 4px);left:calc((calc(var(--plyr-control-spacing,10px) * 0.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;height:1px;margin-top:calc(calc(10px * 0.7)/ 2);margin-top:calc(calc(var(--plyr-control-spacing,10px) * 0.7)/ 2);overflow:hidden;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.plyr__tab-focus::after,\n.plyr__menu__container .plyr__control--back:hover::after{border-right-color:currentColor;}.plyr__menu__container .plyr__control[role=\"menuitemradio\"]{padding-left:calc(10px * 0.7);padding-left:calc(var(--plyr-control-spacing,10px) * 0.7);}.plyr__menu__container .plyr__control[role=\"menuitemradio\"]::after,\n.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:\"\";background:rgba(0,0,0,0.1);transition:all 0.3s ease;flex-shrink:0;}.plyr__menu__container .plyr__control[role=\"menuitemradio\"]::after{top:50%;left:12px;width:6px;height:6px;background:#fff;border:0;opacity:0;transition:transform 0.3s ease, opacity 0.3s ease;transform:translateY(-50%) scale(0);}.plyr__menu__container .plyr__control[role=\"menuitemradio\"][aria-checked=\"true\"]::before{background:#d9010c;background:var(--plyr-control-toggle-checked-background,var(--plyr-color-main,var(--plyr-color-main,#d9010c)));}.plyr__menu__container .plyr__control[role=\"menuitemradio\"][aria-checked=\"true\"]::after{opacity:1;transform:translateY(-50%) scale(1);}.plyr__menu__container .plyr__control[role=\"menuitemradio\"].plyr__tab-focus::before,\n.plyr__menu__container .plyr__control[role=\"menuitemradio\"]:hover::before{background:rgba(35,40,47,0.1);}.plyr__menu__container .plyr__menu__value{display:flex;align-items:center;padding-left:calc(calc(10px * 0.7) * 3.5);padding-left:calc(calc(var(--plyr-control-spacing,10px) * 0.7) * 3.5);margin-right:calc((calc(10px * 0.7) - 2) * -1);margin-right:calc((calc(var(--plyr-control-spacing,10px) * 0.7) - 2) * -1);margin-left:auto;overflow:hidden;pointer-events:none;}.plyr--full-ui input[type=\"range\"]{display:block;width:100%;min-width:0;height:calc((3px * 2) + 13px);height:calc((var(--plyr-range-thumb-active-shadow-width,3px) * 2) + var(--plyr-range-thumb-height,13px));padding:0;margin:0;color:#d9010c;color:var(--plyr-range-fill-background,var(--plyr-color-main,var(--plyr-color-main,#d9010c)));background:0 0;border:0;border-radius:calc(13px * 2);border-radius:calc(var(--plyr-range-thumb-height,13px) * 2);transition:box-shadow 0.3s ease;appearance:none;}.plyr--full-ui input[type=\"range\"]::-webkit-slider-runnable-track{height:5px;height:var(--plyr-range-track-height,5px);user-select:none;user-select:none;background:0 0;background-image:linear-gradient(to right,currentColor 0,transparent 0);background-image:linear-gradient(to right,currentColor var(--value,0),transparent var(--value,0));border:0;border-radius:calc(5px / 2);border-radius:calc(var(--plyr-range-track-height,5px)/ 2);transition:box-shadow 0.3s ease;transition:box-shadow 0.3s ease;}.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:calc(((13px - 5px)/ 2) * -1);margin-top:calc(((var(--plyr-range-thumb-height,13px) - var(--plyr-range-track-height,5px))/ 2) * -1);background:#fff;background:var(--plyr-range-thumb-background,#fff);border:0;border-radius:100%;box-shadow:0 1px 1px rgba(35,40,47,0.15), 0 0 0 1px rgba(35,40,47,0.2);box-shadow:var(--plyr-range-thumb-shadow,0 1px 1px rgba(35,40,47,0.15),0 0 0 1px rgba(35,40,47,0.2));transition:all 0.2s ease;transition:all 0.2s ease;appearance:none;}.plyr--full-ui input[type=\"range\"]::-moz-range-track{height:5px;height:var(--plyr-range-track-height,5px);user-select:none;background:0 0;border:0;border-radius:calc(5px / 2);border-radius:calc(var(--plyr-range-track-height,5px)/ 2);transition:box-shadow 0.3s ease;transition:box-shadow 0.3s ease;}.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);background:#fff;background:var(--plyr-range-thumb-background,#fff);border:0;border-radius:100%;box-shadow:0 1px 1px rgba(35,40,47,0.15), 0 0 0 1px rgba(35,40,47,0.2);box-shadow:var(--plyr-range-thumb-shadow,0 1px 1px rgba(35,40,47,0.15),0 0 0 1px rgba(35,40,47,0.2));transition:all 0.2s ease;transition:all 0.2s ease;}.plyr--full-ui input[type=\"range\"]::-moz-range-progress{height:5px;height:var(--plyr-range-track-height,5px);background:currentColor;border-radius:calc(5px / 2);border-radius:calc(var(--plyr-range-track-height,5px)/ 2);}.plyr--full-ui input[type=\"range\"]::-ms-track{height:5px;height:var(--plyr-range-track-height,5px);color:transparent;user-select:none;user-select:none;background:0 0;border:0;border-radius:calc(5px / 2);border-radius:calc(var(--plyr-range-track-height,5px)/ 2);transition:box-shadow 0.3s ease;transition:box-shadow 0.3s ease;}.plyr--full-ui input[type=\"range\"]::-ms-fill-upper{height:5px;height:var(--plyr-range-track-height,5px);user-select:none;user-select:none;background:0 0;border:0;border-radius:calc(5px / 2);border-radius:calc(var(--plyr-range-track-height,5px)/ 2);transition:box-shadow 0.3s ease;transition:box-shadow 0.3s ease;}.plyr--full-ui input[type=\"range\"]::-ms-fill-lower{height:5px;height:var(--plyr-range-track-height,5px);user-select:none;user-select:none;background:0 0;background:currentColor;border:0;border-radius:calc(5px / 2);border-radius:calc(var(--plyr-range-track-height,5px)/ 2);transition:box-shadow 0.3s ease;transition:box-shadow 0.3s ease;}.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;background:#fff;background:var(--plyr-range-thumb-background,#fff);border:0;border-radius:100%;box-shadow:0 1px 1px rgba(35,40,47,0.15), 0 0 0 1px rgba(35,40,47,0.2);box-shadow:var(--plyr-range-thumb-shadow,0 1px 1px rgba(35,40,47,0.15),0 0 0 1px rgba(35,40,47,0.2));transition:all 0.2s ease;transition:all 0.2s ease;}.plyr--full-ui input[type=\"range\"]::-ms-tooltip{display:none;}.plyr--full-ui input[type=\"range\"]:focus{outline:0;}.plyr--full-ui input[type=\"range\"]::-moz-focus-outer{border:0;}.plyr--full-ui input[type=\"range\"].plyr__tab-focus::-webkit-slider-runnable-track{outline-width:3px;outline-style:dotted;outline-color:#d9010c;outline-color:var(--plyr-tab-focus-color,var(--plyr-color-main,var(--plyr-color-main,#d9010c)));outline-offset:2px;}.plyr--full-ui input[type=\"range\"].plyr__tab-focus::-moz-range-track{outline-width:3px;outline-style:dotted;outline-color:#d9010c;outline-color:var(--plyr-tab-focus-color,var(--plyr-color-main,var(--plyr-color-main,#d9010c)));outline-offset:2px;}.plyr--full-ui input[type=\"range\"].plyr__tab-focus::-ms-track{outline-width:3px;outline-style:dotted;outline-color:#d9010c;outline-color:var(--plyr-tab-focus-color,var(--plyr-color-main,var(--plyr-color-main,#d9010c)));outline-offset:2px;}.plyr__poster{position:absolute;top:0;left:0;z-index:1;width:100%;height:100%;background-color:#000;background-repeat:no-repeat;background-position:50% 50%;background-size:contain;opacity:0;transition:opacity 0.2s ease;}.plyr--stopped.plyr__poster-enabled .plyr__poster{opacity:1;}.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:\"\\2044\";}@media (max-width:calc(768px - 1px)){.plyr__time+.plyr__time{display:none;}}.plyr__tooltip{position:absolute;bottom:100%;left:50%;z-index:2;padding:calc(10px / 2) calc(calc(10px / 2) * 1.5);padding:calc(var(--plyr-control-spacing,10px)/ 2) calc(calc(var(--plyr-control-spacing,10px)/ 2) * 1.5);margin-bottom:calc(calc(10px / 2) * 2);margin-bottom:calc(calc(var(--plyr-control-spacing,10px)/ 2) * 2);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;color:#4a5464;color:var(--plyr-tooltip-color,#4a5464);white-space:nowrap;pointer-events:none;background:rgba(255,255,255,0.9);background:var(--plyr-tooltip-background,rgba(255,255,255,0.9));border-radius:3px;border-radius:var(--plyr-tooltip-radius,3px);box-shadow:0 1px 2px rgba(0,0,0,0.15);box-shadow:var(--plyr-tooltip-shadow,0 1px 2px rgba(0,0,0,0.15));opacity:0;transition:transform 0.2s 0.1s ease, opacity 0.2s 0.1s ease;transform:translate(-50%,10px) scale(0.8);transform-origin:50% 100%;}.plyr__tooltip::before{position:absolute;bottom:calc(4px * -1);bottom:calc(var(--plyr-tooltip-arrow-size,4px) * -1);left:50%;z-index:2;width:0;height:0;content:\"\";border-top:4px solid rgba(255,255,255,0.9);border-top:var(--plyr-tooltip-arrow-size,4px) solid var(--plyr-tooltip-background,rgba(255,255,255,0.9));border-right:4px solid transparent;border-right:var(--plyr-tooltip-arrow-size,4px) solid transparent;border-left:4px solid transparent;border-left:var(--plyr-tooltip-arrow-size,4px) solid transparent;transform:translateX(-50%);}.plyr .plyr__control.plyr__tab-focus .plyr__tooltip,\n.plyr .plyr__control:hover .plyr__tooltip,\n.plyr__tooltip--visible{opacity:1;transform:translate(-50%,0) scale(1);}.plyr .plyr__control:hover .plyr__tooltip{z-index:3;}.plyr__controls>.plyr__control:first-child .plyr__tooltip,\n.plyr__controls>.plyr__control:first-child+.plyr__control .plyr__tooltip{left:0;transform:translate(0,10px) scale(0.8);transform-origin:0 100%;}.plyr__controls>.plyr__control:first-child .plyr__tooltip::before,\n.plyr__controls>.plyr__control:first-child+.plyr__control .plyr__tooltip::before{left:calc((18px / 2) + calc(10px * 0.7));left:calc((var(--plyr-control-icon-size,18px)/ 2) + calc(var(--plyr-control-spacing,10px) * 0.7));}.plyr__controls>.plyr__control:last-child .plyr__tooltip{right:0;left:auto;transform:translate(0,10px) scale(0.8);transform-origin:100% 100%;}.plyr__controls>.plyr__control:last-child .plyr__tooltip::before{right:calc((18px / 2) + calc(10px * 0.7));right:calc((var(--plyr-control-icon-size,18px)/ 2) + calc(var(--plyr-control-spacing,10px) * 0.7));left:auto;transform:translateX(50%);}.plyr__controls>.plyr__control:first-child .plyr__tooltip--visible,\n.plyr__controls>.plyr__control:first-child+.plyr__control .plyr__tooltip--visible,\n.plyr__controls>.plyr__control:first-child+.plyr__control.plyr__tab-focus .plyr__tooltip,\n.plyr__controls>.plyr__control:first-child+.plyr__control:hover .plyr__tooltip,\n.plyr__controls>.plyr__control:first-child.plyr__tab-focus .plyr__tooltip,\n.plyr__controls>.plyr__control:first-child:hover .plyr__tooltip,\n.plyr__controls>.plyr__control:last-child .plyr__tooltip--visible,\n.plyr__controls>.plyr__control:last-child.plyr__tab-focus .plyr__tooltip,\n.plyr__controls>.plyr__control:last-child:hover .plyr__tooltip{transform:translate(0,0) scale(1);}.plyr__progress{position:relative;left:calc(13px * 0.5);left:calc(var(--plyr-range-thumb-height,13px) * 0.5);margin-right:13px;margin-right:var(--plyr-range-thumb-height,13px);}.plyr__progress input[type=\"range\"],\n.plyr__progress__buffer{width:calc(100% + 13px);width:calc(100% + var(--plyr-range-thumb-height,13px));margin-right:calc(13px * -0.5);margin-right:calc(var(--plyr-range-thumb-height,13px) * -0.5);margin-left:calc(13px * -0.5);margin-left:calc(var(--plyr-range-thumb-height,13px) * -0.5);}.plyr__progress input[type=\"range\"]{position:relative;z-index:2;}.plyr__progress .plyr__tooltip{left:0;font-size:13px;font-size:var(--plyr-font-size-time,var(--plyr-font-size-small,13px));}.plyr__progress__buffer{position:absolute;top:50%;left:0;height:5px;height:var(--plyr-range-track-height,5px);padding:0;margin-top:calc((5px / 2) * -1);margin-top:calc((var(--plyr-range-track-height,5px)/ 2) * -1);background:0 0;border:0;border-radius:100px;appearance:none;}.plyr__progress__buffer::-webkit-progress-bar{background:0 0;}.plyr__progress__buffer::-webkit-progress-value{min-width:5px;min-width:var(--plyr-range-track-height,5px);background:currentColor;border-radius:100px;transition:width 0.2s ease;transition:width 0.2s ease;}.plyr__progress__buffer::-moz-progress-bar{min-width:5px;min-width:var(--plyr-range-track-height,5px);background:currentColor;border-radius:100px;transition:width 0.2s ease;transition:width 0.2s ease;}.plyr__progress__buffer::-ms-fill{border-radius:100px;transition:width 0.2s ease;transition:width 0.2s ease;}.plyr--loading .plyr__progress__buffer{color:transparent;background-image:linear-gradient(-45deg,rgba(35,40,47,0.6) 25%,transparent 25%,transparent 50%,rgba(35,40,47,0.6) 50%,rgba(35,40,47,0.6) 75%,transparent 75%,transparent);background-image:linear-gradient(-45deg,var(--plyr-progress-loading-background,rgba(35,40,47,0.6)) 25%,transparent 25%,transparent 50%,var(--plyr-progress-loading-background,rgba(35,40,47,0.6)) 50%,var(--plyr-progress-loading-background,rgba(35,40,47,0.6)) 75%,transparent 75%,transparent);background-repeat:repeat-x;background-size:25px 25px;background-size:var(--plyr-progress-loading-size,25px) var(--plyr-progress-loading-size,25px);animation:plyr-progress 1s linear infinite;}.plyr--video.plyr--loading .plyr__progress__buffer{background-color:rgba(255,255,255,0.25);background-color:var(--plyr-video-progress-buffered-background,rgba(255,255,255,0.25));}.plyr--audio.plyr--loading .plyr__progress__buffer{background-color:rgba(193,200,209,0.6);background-color:var(--plyr-audio-progress-buffered-background,rgba(193,200,209,0.6));}.plyr__volume{position:relative;display:flex;align-items:center;width:20%;min-width:80px;max-width:110px;}.plyr__volume input[type=\"range\"]{position:relative;z-index:2;margin-right:calc(10px / 2);margin-right:calc(var(--plyr-control-spacing,10px)/ 2);margin-left:calc(10px / 2);margin-left:calc(var(--plyr-control-spacing,10px)/ 2);}.plyr--is-ios .plyr__volume{width:auto;min-width:0;}.plyr--audio{display:block;}.plyr--audio .plyr__controls{padding:10px;padding:var(--plyr-control-spacing,10px);color:#4a5464;color:var(--plyr-audio-control-color,#4a5464);background:#fff;background:var(--plyr-audio-controls-background,#fff);border-radius:inherit;}.plyr--audio .plyr__control.plyr__tab-focus,\n.plyr--audio .plyr__control:hover,\n.plyr--audio .plyr__control[aria-expanded=\"true\"]{color:#fff;color:var(--plyr-audio-control-color-hover,#fff);background:#d9010c;background:var(--plyr-audio-control-background-hover,var(--plyr-color-main,var(--plyr-color-main,#d9010c)));}.plyr--full-ui.plyr--audio input[type=\"range\"]::-webkit-slider-runnable-track{background-color:rgba(193,200,209,0.6);background-color:var(--plyr-audio-range-track-background,var(--plyr-audio-progress-buffered-background,rgba(193,200,209,0.6)));}.plyr--full-ui.plyr--audio input[type=\"range\"]::-moz-range-track{background-color:rgba(193,200,209,0.6);background-color:var(--plyr-audio-range-track-background,var(--plyr-audio-progress-buffered-background,rgba(193,200,209,0.6)));}.plyr--full-ui.plyr--audio input[type=\"range\"]::-ms-track{background-color:rgba(193,200,209,0.6);background-color:var(--plyr-audio-range-track-background,var(--plyr-audio-progress-buffered-background,rgba(193,200,209,0.6)));}.plyr--full-ui.plyr--audio input[type=\"range\"]:active::-webkit-slider-thumb{box-shadow:0 1px 1px rgba(35,40,47,0.15), 0 0 0 1px rgba(35,40,47,0.2), 0 0 0 3px rgba(35,40,47,0.1);box-shadow:var(--plyr-range-thumb-shadow,0 1px 1px rgba(35,40,47,0.15),0 0 0 1px rgba(35,40,47,0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width,3px) var(--plyr-audio-range-thumb-active-shadow-color,rgba(35,40,47,0.1));}.plyr--full-ui.plyr--audio input[type=\"range\"]:active::-moz-range-thumb{box-shadow:0 1px 1px rgba(35,40,47,0.15), 0 0 0 1px rgba(35,40,47,0.2), 0 0 0 3px rgba(35,40,47,0.1);box-shadow:var(--plyr-range-thumb-shadow,0 1px 1px rgba(35,40,47,0.15),0 0 0 1px rgba(35,40,47,0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width,3px) var(--plyr-audio-range-thumb-active-shadow-color,rgba(35,40,47,0.1));}.plyr--full-ui.plyr--audio input[type=\"range\"]:active::-ms-thumb{box-shadow:0 1px 1px rgba(35,40,47,0.15), 0 0 0 1px rgba(35,40,47,0.2), 0 0 0 3px rgba(35,40,47,0.1);box-shadow:var(--plyr-range-thumb-shadow,0 1px 1px rgba(35,40,47,0.15),0 0 0 1px rgba(35,40,47,0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width,3px) var(--plyr-audio-range-thumb-active-shadow-color,rgba(35,40,47,0.1));}.plyr--audio .plyr__progress__buffer{color:rgba(193,200,209,0.6);color:var(--plyr-audio-progress-buffered-background,rgba(193,200,209,0.6));}.plyr--video{overflow:hidden;background:#000;}.plyr--video.plyr--menu-open{overflow:visible;}.plyr__video-wrapper{position:relative;width:100%;height:100%;margin:auto;overflow:hidden;background:#000;}.plyr__video-embed,\n.plyr__video-wrapper--fixed-ratio{height:0;padding-bottom:56.25%;}.plyr__video-embed iframe,\n.plyr__video-wrapper--fixed-ratio video{position:absolute;top:0;left:0;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;right:0;bottom:0;left:0;z-index:3;padding:calc(10px / 2);padding:calc(var(--plyr-control-spacing,10px)/ 2);padding-top:calc(10px * 2);padding-top:calc(var(--plyr-control-spacing,10px) * 2);color:#fff;color:var(--plyr-video-control-color,#fff);background:linear-gradient(rgba(0,0,0,0),rgba(0,0,0,0.75));background:var(--plyr-video-controls-background,linear-gradient(rgba(0,0,0,0),rgba(0,0,0,0.75)));border-bottom-right-radius:inherit;border-bottom-left-radius:inherit;transition:opacity 0.4s ease-in-out, transform 0.4s ease-in-out;}@media (min-width:480px){.plyr--video .plyr__controls{padding:10px;padding:var(--plyr-control-spacing,10px);padding-top:calc(10px * 3.5);padding-top:calc(var(--plyr-control-spacing,10px) * 3.5);}}.plyr--video.plyr--hide-controls .plyr__controls{pointer-events:none;opacity:0;transform:translateY(100%);}.plyr--video .plyr__control.plyr__tab-focus,\n.plyr--video .plyr__control:hover,\n.plyr--video .plyr__control[aria-expanded=\"true\"]{color:#fff;color:var(--plyr-video-control-color-hover,#fff);background:#d9010c;background:var(--plyr-video-control-background-hover,var(--plyr-color-main,var(--plyr-color-main,#d9010c)));}.plyr__control--overlaid{position:absolute;top:50%;left:50%;z-index:2;display:none;padding:calc(10px * 1.5);padding:calc(var(--plyr-control-spacing,10px) * 1.5);color:#fff;color:var(--plyr-video-control-color,#fff);background:#d9010c;background:var(--plyr-video-control-background-hover,var(--plyr-color-main,var(--plyr-color-main,#d9010c)));border:0;border-radius:100%;opacity:0.9;transition:0.3s;transform:translate(-50%,-50%);}.plyr__control--overlaid svg{position:relative;left:2px;}.plyr__control--overlaid:focus,\n.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,0.25);background-color:var(--plyr-video-range-track-background,var(--plyr-video-progress-buffered-background,rgba(255,255,255,0.25)));}.plyr--full-ui.plyr--video input[type=\"range\"]::-moz-range-track{background-color:rgba(255,255,255,0.25);background-color:var(--plyr-video-range-track-background,var(--plyr-video-progress-buffered-background,rgba(255,255,255,0.25)));}.plyr--full-ui.plyr--video input[type=\"range\"]::-ms-track{background-color:rgba(255,255,255,0.25);background-color:var(--plyr-video-range-track-background,var(--plyr-video-progress-buffered-background,rgba(255,255,255,0.25)));}.plyr--full-ui.plyr--video input[type=\"range\"]:active::-webkit-slider-thumb{box-shadow:0 1px 1px rgba(35,40,47,0.15), 0 0 0 1px rgba(35,40,47,0.2), 0 0 0 3px rgba(255,255,255,0.5);box-shadow:var(--plyr-range-thumb-shadow,0 1px 1px rgba(35,40,47,0.15),0 0 0 1px rgba(35,40,47,0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width,3px) var(--plyr-audio-range-thumb-active-shadow-color,rgba(255,255,255,0.5));}.plyr--full-ui.plyr--video input[type=\"range\"]:active::-moz-range-thumb{box-shadow:0 1px 1px rgba(35,40,47,0.15), 0 0 0 1px rgba(35,40,47,0.2), 0 0 0 3px rgba(255,255,255,0.5);box-shadow:var(--plyr-range-thumb-shadow,0 1px 1px rgba(35,40,47,0.15),0 0 0 1px rgba(35,40,47,0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width,3px) var(--plyr-audio-range-thumb-active-shadow-color,rgba(255,255,255,0.5));}.plyr--full-ui.plyr--video input[type=\"range\"]:active::-ms-thumb{box-shadow:0 1px 1px rgba(35,40,47,0.15), 0 0 0 1px rgba(35,40,47,0.2), 0 0 0 3px rgba(255,255,255,0.5);box-shadow:var(--plyr-range-thumb-shadow,0 1px 1px rgba(35,40,47,0.15),0 0 0 1px rgba(35,40,47,0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width,3px) var(--plyr-audio-range-thumb-active-shadow-color,rgba(255,255,255,0.5));}.plyr--video .plyr__progress__buffer{color:rgba(255,255,255,0.25);color:var(--plyr-video-progress-buffered-background,rgba(255,255,255,0.25));}.plyr:full-screen{width:100%;height:100%;margin:0;background:#000;border-radius:0!important;}.plyr:fullscreen{width:100%;height:100%;margin:0;background:#000;border-radius:0!important;}.plyr:fullscreen{width:100%;height:100%;margin:0;background:#000;border-radius:0!important;}.plyr:full-screen video{height:100%;}.plyr:fullscreen video{height:100%;}.plyr:fullscreen video{height:100%;}.plyr:full-screen .plyr__video-wrapper{position:static;height:100%;}.plyr:fullscreen .plyr__video-wrapper{position:static;height:100%;}.plyr:fullscreen .plyr__video-wrapper{position:static;height:100%;}.plyr:full-screen.plyr--vimeo .plyr__video-wrapper{position:relative;height:0;}.plyr:fullscreen.plyr--vimeo .plyr__video-wrapper{position:relative;height:0;}.plyr:fullscreen.plyr--vimeo .plyr__video-wrapper{position:relative;height:0;}.plyr:full-screen .plyr__control .icon--exit-fullscreen{display:block;}.plyr:fullscreen .plyr__control .icon--exit-fullscreen{display:block;}.plyr:fullscreen .plyr__control .icon--exit-fullscreen{display:block;}.plyr:full-screen .plyr__control .icon--exit-fullscreen+svg{display:none;}.plyr:fullscreen .plyr__control .icon--exit-fullscreen+svg{display:none;}.plyr:fullscreen .plyr__control .icon--exit-fullscreen+svg{display:none;}.plyr:full-screen.plyr--hide-controls{cursor:none;}.plyr:fullscreen.plyr--hide-controls{cursor:none;}.plyr:fullscreen.plyr--hide-controls{cursor:none;}@media (min-width:1024px){.plyr:full-screen .plyr__captions{font-size:21px;font-size:var(--plyr-font-size-xlarge,21px);}.plyr:fullscreen .plyr__captions{font-size:21px;font-size:var(--plyr-font-size-xlarge,21px);}.plyr:fullscreen .plyr__captions{font-size:21px;font-size:var(--plyr-font-size-xlarge,21px);}}.plyr:full-screen{width:100%;height:100%;margin:0;background:#000;border-radius:0!important;}.plyr:full-screen video{height:100%;}.plyr:full-screen .plyr__video-wrapper{position:static;height:100%;}.plyr:full-screen.plyr--vimeo .plyr__video-wrapper{position:relative;height:0;}.plyr:full-screen .plyr__control .icon--exit-fullscreen{display:block;}.plyr:full-screen .plyr__control .icon--exit-fullscreen+svg{display:none;}.plyr:full-screen.plyr--hide-controls{cursor:none;}@media (min-width:1024px){.plyr:full-screen .plyr__captions{font-size:21px;font-size:var(--plyr-font-size-xlarge,21px);}}.plyr:full-screen{width:100%;height:100%;margin:0;background:#000;border-radius:0!important;}.plyr:full-screen video{height:100%;}.plyr:full-screen .plyr__video-wrapper{position:static;height:100%;}.plyr:full-screen.plyr--vimeo .plyr__video-wrapper{position:relative;height:0;}.plyr:full-screen .plyr__control .icon--exit-fullscreen{display:block;}.plyr:full-screen .plyr__control .icon--exit-fullscreen+svg{display:none;}.plyr:full-screen.plyr--hide-controls{cursor:none;}@media (min-width:1024px){.plyr:full-screen .plyr__captions{font-size:21px;font-size:var(--plyr-font-size-xlarge,21px);}}.plyr:fullscreen{width:100%;height:100%;margin:0;background:#000;border-radius:0!important;}.plyr:fullscreen video{height:100%;}.plyr:fullscreen .plyr__video-wrapper{position:static;height:100%;}.plyr:fullscreen.plyr--vimeo .plyr__video-wrapper{position:relative;height:0;}.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;}@media (min-width:1024px){.plyr:fullscreen .plyr__captions{font-size:21px;font-size:var(--plyr-font-size-xlarge,21px);}}.plyr--fullscreen-fallback{position:fixed;top:0;right:0;bottom:0;left:0;z-index:10000000;display:block;width:100%;height:100%;margin:0;background:#000;border-radius:0!important;}.plyr--fullscreen-fallback video{height:100%;}.plyr--fullscreen-fallback .plyr__video-wrapper{position:static;height:100%;}.plyr--fullscreen-fallback.plyr--vimeo .plyr__video-wrapper{position:relative;height:0;}.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;}@media (min-width:1024px){.plyr--fullscreen-fallback .plyr__captions{font-size:21px;font-size:var(--plyr-font-size-xlarge,21px);}}.plyr__ads{position:absolute;top:0;right:0;bottom:0;left:0;z-index:-1;overflow:hidden;cursor:pointer;border-radius:inherit;}.plyr__ads>div,\n.plyr__ads>div iframe{position:absolute;width:100%;height:100%;}.plyr__ads::after{position:absolute;right:10px;right:var(--plyr-control-spacing,10px);bottom:10px;bottom:var(--plyr-control-spacing,10px);z-index:3;padding:2px 6px;font-size:11px;color:#fff;pointer-events:none;content:attr(data-badge-text);background:#23282f;border-radius:2px;}.plyr__ads::after:empty{display:none;}.plyr__cues{position:absolute;top:50%;left:0;z-index:3;display:block;width:3px;height:5px;height:var(--plyr-range-track-height,5px);margin:-var(--plyr-range-track-height,5px)/2 0 0;background:currentColor;opacity:0.8;}.plyr__preview-thumb{position:absolute;bottom:100%;z-index:2;padding:3px;padding:var(--plyr-tooltip-radius,3px);margin-bottom:calc(calc(10px / 2) * 2);margin-bottom:calc(calc(var(--plyr-control-spacing,10px)/ 2) * 2);pointer-events:none;background-color:rgba(255,255,255,0.9);background-color:var(--plyr-tooltip-background,rgba(255,255,255,0.9));border-radius:3px;box-shadow:0 1px 2px rgba(0,0,0,0.15);box-shadow:var(--plyr-tooltip-shadow,0 1px 2px rgba(0,0,0,0.15));opacity:0;transition:transform 0.2s 0.1s ease, opacity 0.2s 0.1s ease;transform:translate(0,10px) scale(0.8);transform-origin:50% 100%;}.plyr__preview-thumb--is-shown{opacity:1;transform:translate(0,0) scale(1);}.plyr__preview-thumb::before{position:absolute;bottom:calc(4px * -1);bottom:calc(var(--plyr-tooltip-arrow-size,4px) * -1);left:50%;z-index:2;width:0;height:0;content:\"\";border-top:4px solid rgba(255,255,255,0.9);border-top:var(--plyr-tooltip-arrow-size,4px) solid var(--plyr-tooltip-background,rgba(255,255,255,0.9));border-right:4px solid transparent;border-right:var(--plyr-tooltip-arrow-size,4px) solid transparent;border-left:4px solid transparent;border-left:var(--plyr-tooltip-arrow-size,4px) solid transparent;transform:translateX(-50%);}.plyr__preview-thumb__image-container{position:relative;z-index:0;overflow:hidden;background:#c1c8d1;border-radius:calc(3px - 1px);border-radius:calc(var(--plyr-tooltip-radius,3px) - 1px);}.plyr__preview-thumb__image-container img{position:absolute;top:0;left:0;width:100%;max-width:none;height:100%;max-height:none;}.plyr__preview-thumb__time-container{position:absolute;right:0;bottom:6px;left:0;z-index:3;white-space:nowrap;}.plyr__preview-thumb__time-container span{padding:3px 6px;font-size:13px;font-size:var(--plyr-font-size-time,var(--plyr-font-size-small,13px));color:#fff;background-color:rgba(0,0,0,0.55);border-radius:calc(3px - 1px);border-radius:calc(var(--plyr-tooltip-radius,3px) - 1px);}.plyr__preview-scrubbing{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;width:100%;height:100%;margin:auto;overflow:hidden;pointer-events:none;filter:blur(1px);opacity:0;transition:opacity 0.3s ease;}.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;width:1px!important;height:1px!important;padding:0!important;overflow:hidden;clip:rect(1px,1px,1px,1px);border:0!important;}.plyr [hidden]{display:none!important;}\n"],"names":[],"version":3,"file":"main.css.map"}
\ No newline at end of file
diff --git a/blocks/media/youtube/default/dist/main.js b/blocks/media/youtube/default/dist/main.js
new file mode 100644
index 00000000..ebb06aa8
--- /dev/null
+++ b/blocks/media/youtube/default/dist/main.js
@@ -0,0 +1,27 @@
+!function(){function e(e){return e&&e.__esModule?e.default:e}"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:"undefined"!=typeof window?window:"undefined"!=typeof global&&global;var t={};
+/*!
+ * jQuery JavaScript Library v3.6.0
+ * https://jquery.com/
+ *
+ * Includes Sizzle.js
+ * https://sizzlejs.com/
+ *
+ * Copyright OpenJS Foundation and other contributors
+ * Released under the MIT license
+ * https://jquery.org/license
+ *
+ * Date: 2021-03-02T17:08Z
+ */
+!function(e,i){"object"==typeof t?t=e.document?i(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return i(e)}:i(e)}("undefined"!=typeof window?window:t,(function(e,t){"use strict";var i=[],n=Object.getPrototypeOf,s=i.slice,r=i.flat?function(e){return i.flat.call(e)}:function(e){return i.concat.apply([],e)},o=i.push,a=i.indexOf,l={},c=l.toString,u=l.hasOwnProperty,d=u.toString,h=d.call(Object),p={},f=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType&&"function"!=typeof e.item},m=function(e){return null!=e&&e===e.window},g=e.document,y={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,i){var n,s,r=(i=i||g).createElement("script");if(r.text=e,t)for(n in y)(s=t[n]||t.getAttribute&&t.getAttribute(n))&&r.setAttribute(n,s);i.head.appendChild(r).parentNode.removeChild(r)}function v(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?l[c.call(e)]||"object":typeof e}var w="3.6.0",T=function(e,t){return new T.fn.init(e,t)};function x(e){var t=!!e&&"length"in e&&e.length,i=v(e);return!f(e)&&!m(e)&&("array"===i||0===t||"number"==typeof t&&t>0&&t-1 in e)}T.fn=T.prototype={jquery:w,constructor:T,length:0,toArray:function(){return s.call(this)},get:function(e){return null==e?s.call(this):e<0?this[e+this.length]:this[e]},pushStack:function(e){var t=T.merge(this.constructor(),e);return t.prevObject=this,t},each:function(e){return T.each(this,e)},map:function(e){return this.pushStack(T.map(this,(function(t,i){return e.call(t,i,t)})))},slice:function(){return this.pushStack(s.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},even:function(){return this.pushStack(T.grep(this,(function(e,t){return(t+1)%2})))},odd:function(){return this.pushStack(T.grep(this,(function(e,t){return t%2})))},eq:function(e){var t=this.length,i=+e+(e<0?t:0);return this.pushStack(i>=0&&i+~]|[\\x20\\t\\r\\n\\f])[\\x20\\t\\r\\n\\f]*"),U=new RegExp(H+"|>"),z=new RegExp(R),X=new RegExp("^"+$+"$"),K={ID:new RegExp("^#("+$+")"),CLASS:new RegExp("^\\.("+$+")"),TAG:new RegExp("^("+$+"|[*])"),ATTR:new RegExp("^"+_),PSEUDO:new RegExp("^"+R),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\([\\x20\\t\\r\\n\\f]*(even|odd|(([+-]|)(\\d*)n|)[\\x20\\t\\r\\n\\f]*(?:([+-]|)[\\x20\\t\\r\\n\\f]*(\\d+)|))[\\x20\\t\\r\\n\\f]*\\)|)","i"),bool:new RegExp("^(?:"+O+")$","i"),needsContext:new RegExp("^[\\x20\\t\\r\\n\\f]*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\([\\x20\\t\\r\\n\\f]*((?:-\\d)?\\d*)[\\x20\\t\\r\\n\\f]*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,G=/^h\d$/i,J=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}[\\x20\\t\\r\\n\\f]?|\\\\([^\\r\\n\\f])","g"),ie=function(e,t){var i="0x"+e.slice(1)-65536;return t||(i<0?String.fromCharCode(i+65536):String.fromCharCode(i>>10|55296,1023&i|56320))},ne=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,se=function(e,t){return t?"\0"===e?"�":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},re=function(){h()},oe=we((function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()}),{dir:"parentNode",next:"legend"});try{M.apply(L=I.call(T.childNodes),T.childNodes),L[T.childNodes.length].nodeType}catch(e){M={apply:L.length?function(e,t){D.apply(e,I.call(t))}:function(e,t){for(var i=e.length,n=0;e[i++]=t[n++];);e.length=i-1}}}function ae(e,t,n,s){var r,a,c,u,d,f,y,b=t&&t.ownerDocument,T=t?t.nodeType:9;if(n=n||[],"string"!=typeof e||!e||1!==T&&9!==T&&11!==T)return n;if(!s&&(h(t),t=t||p,m)){if(11!==T&&(d=Z.exec(e)))if(r=d[1]){if(9===T){if(!(c=t.getElementById(r)))return n;if(c.id===r)return n.push(c),n}else if(b&&(c=b.getElementById(r))&&v(t,c)&&c.id===r)return n.push(c),n}else{if(d[2])return M.apply(n,t.getElementsByTagName(e)),n;if((r=d[3])&&i.getElementsByClassName&&t.getElementsByClassName)return M.apply(n,t.getElementsByClassName(r)),n}if(i.qsa&&!A[e+" "]&&(!g||!g.test(e))&&(1!==T||"object"!==t.nodeName.toLowerCase())){if(y=e,b=t,1===T&&(U.test(e)||V.test(e))){for((b=ee.test(e)&&ye(t.parentNode)||t)===t&&i.scope||((u=t.getAttribute("id"))?u=u.replace(ne,se):t.setAttribute("id",u=w)),a=(f=o(e)).length;a--;)f[a]=(u?"#"+u:":scope")+" "+ve(f[a]);y=f.join(",")}try{return M.apply(n,b.querySelectorAll(y)),n}catch(t){A(e,!0)}finally{u===w&&t.removeAttribute("id")}}}return l(e.replace(B,"$1"),t,n,s)}function le(){var e=[];return function t(i,s){return e.push(i+" ")>n.cacheLength&&delete t[e.shift()],t[i+" "]=s}}function ce(e){return e[w]=!0,e}function ue(e){var t=p.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function de(e,t){for(var i=e.split("|"),s=i.length;s--;)n.attrHandle[i[s]]=t}function he(e,t){var i=t&&e,n=i&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(n)return n;if(i)for(;i=i.nextSibling;)if(i===t)return-1;return e?1:-1}function pe(e){return function(t){return"input"===t.nodeName.toLowerCase()&&t.type===e}}function fe(e){return function(t){var i=t.nodeName.toLowerCase();return("input"===i||"button"===i)&&t.type===e}}function me(e){return function(t){return"form"in t?t.parentNode&&!1===t.disabled?"label"in t?"label"in t.parentNode?t.parentNode.disabled===e:t.disabled===e:t.isDisabled===e||t.isDisabled!==!e&&oe(t)===e:t.disabled===e:"label"in t&&t.disabled===e}}function ge(e){return ce((function(t){return t=+t,ce((function(i,n){for(var s,r=e([],i.length,t),o=r.length;o--;)i[s=r[o]]&&(i[s]=!(n[s]=i[s]))}))}))}function ye(e){return e&&void 0!==e.getElementsByTagName&&e}for(t in i=ae.support={},r=ae.isXML=function(e){var t=e&&e.namespaceURI,i=e&&(e.ownerDocument||e).documentElement;return!Y.test(t||i&&i.nodeName||"HTML")},h=ae.setDocument=function(e){var t,s,o=e?e.ownerDocument||e:T;return o!=p&&9===o.nodeType&&o.documentElement?(f=(p=o).documentElement,m=!r(p),T!=p&&(s=p.defaultView)&&s.top!==s&&(s.addEventListener?s.addEventListener("unload",re,!1):s.attachEvent&&s.attachEvent("onunload",re)),i.scope=ue((function(e){return f.appendChild(e).appendChild(p.createElement("div")),void 0!==e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length})),i.attributes=ue((function(e){return e.className="i",!e.getAttribute("className")})),i.getElementsByTagName=ue((function(e){return e.appendChild(p.createComment("")),!e.getElementsByTagName("*").length})),i.getElementsByClassName=J.test(p.getElementsByClassName),i.getById=ue((function(e){return f.appendChild(e).id=w,!p.getElementsByName||!p.getElementsByName(w).length})),i.getById?(n.filter.ID=function(e){var t=e.replace(te,ie);return function(e){return e.getAttribute("id")===t}},n.find.ID=function(e,t){if(void 0!==t.getElementById&&m){var i=t.getElementById(e);return i?[i]:[]}}):(n.filter.ID=function(e){var t=e.replace(te,ie);return function(e){var i=void 0!==e.getAttributeNode&&e.getAttributeNode("id");return i&&i.value===t}},n.find.ID=function(e,t){if(void 0!==t.getElementById&&m){var i,n,s,r=t.getElementById(e);if(r){if((i=r.getAttributeNode("id"))&&i.value===e)return[r];for(s=t.getElementsByName(e),n=0;r=s[n++];)if((i=r.getAttributeNode("id"))&&i.value===e)return[r]}return[]}}),n.find.TAG=i.getElementsByTagName?function(e,t){return void 0!==t.getElementsByTagName?t.getElementsByTagName(e):i.qsa?t.querySelectorAll(e):void 0}:function(e,t){var i,n=[],s=0,r=t.getElementsByTagName(e);if("*"===e){for(;i=r[s++];)1===i.nodeType&&n.push(i);return n}return r},n.find.CLASS=i.getElementsByClassName&&function(e,t){if(void 0!==t.getElementsByClassName&&m)return t.getElementsByClassName(e)},y=[],g=[],(i.qsa=J.test(p.querySelectorAll))&&(ue((function(e){var t;f.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&g.push("[*^$]=[\\x20\\t\\r\\n\\f]*(?:''|\"\")"),e.querySelectorAll("[selected]").length||g.push("\\[[\\x20\\t\\r\\n\\f]*(?:value|"+O+")"),e.querySelectorAll("[id~="+w+"-]").length||g.push("~="),(t=p.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||g.push("\\[[\\x20\\t\\r\\n\\f]*name[\\x20\\t\\r\\n\\f]*=[\\x20\\t\\r\\n\\f]*(?:''|\"\")"),e.querySelectorAll(":checked").length||g.push(":checked"),e.querySelectorAll("a#"+w+"+*").length||g.push(".#.+[+~]"),e.querySelectorAll("\\\f"),g.push("[\\r\\n\\f]")})),ue((function(e){e.innerHTML="";var t=p.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&g.push("name[\\x20\\t\\r\\n\\f]*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&g.push(":enabled",":disabled"),f.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&g.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),g.push(",.*:")}))),(i.matchesSelector=J.test(b=f.matches||f.webkitMatchesSelector||f.mozMatchesSelector||f.oMatchesSelector||f.msMatchesSelector))&&ue((function(e){i.disconnectedMatch=b.call(e,"*"),b.call(e,"[s!='']:x"),y.push("!=",R)})),g=g.length&&new RegExp(g.join("|")),y=y.length&&new RegExp(y.join("|")),t=J.test(f.compareDocumentPosition),v=t||J.test(f.contains)?function(e,t){var i=9===e.nodeType?e.documentElement:e,n=t&&t.parentNode;return e===n||!(!n||1!==n.nodeType||!(i.contains?i.contains(n):e.compareDocumentPosition&&16&e.compareDocumentPosition(n)))}:function(e,t){if(t)for(;t=t.parentNode;)if(t===e)return!0;return!1},N=t?function(e,t){if(e===t)return d=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!i.sortDetached&&t.compareDocumentPosition(e)===n?e==p||e.ownerDocument==T&&v(T,e)?-1:t==p||t.ownerDocument==T&&v(T,t)?1:u?q(u,e)-q(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return d=!0,0;var i,n=0,s=e.parentNode,r=t.parentNode,o=[e],a=[t];if(!s||!r)return e==p?-1:t==p?1:s?-1:r?1:u?q(u,e)-q(u,t):0;if(s===r)return he(e,t);for(i=e;i=i.parentNode;)o.unshift(i);for(i=t;i=i.parentNode;)a.unshift(i);for(;o[n]===a[n];)n++;return n?he(o[n],a[n]):o[n]==T?-1:a[n]==T?1:0},p):p},ae.matches=function(e,t){return ae(e,null,null,t)},ae.matchesSelector=function(e,t){if(h(e),i.matchesSelector&&m&&!A[t+" "]&&(!y||!y.test(t))&&(!g||!g.test(t)))try{var n=b.call(e,t);if(n||i.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){A(t,!0)}return ae(t,p,null,[e]).length>0},ae.contains=function(e,t){return(e.ownerDocument||e)!=p&&h(e),v(e,t)},ae.attr=function(e,t){(e.ownerDocument||e)!=p&&h(e);var s=n.attrHandle[t.toLowerCase()],r=s&&P.call(n.attrHandle,t.toLowerCase())?s(e,t,!m):void 0;return void 0!==r?r:i.attributes||!m?e.getAttribute(t):(r=e.getAttributeNode(t))&&r.specified?r.value:null},ae.escape=function(e){return(e+"").replace(ne,se)},ae.error=function(e){throw new Error("Syntax error, unrecognized expression: "+e)},ae.uniqueSort=function(e){var t,n=[],s=0,r=0;if(d=!i.detectDuplicates,u=!i.sortStable&&e.slice(0),e.sort(N),d){for(;t=e[r++];)t===e[r]&&(s=n.push(r));for(;s--;)e.splice(n[s],1)}return u=null,e},s=ae.getText=function(e){var t,i="",n=0,r=e.nodeType;if(r){if(1===r||9===r||11===r){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)i+=s(e)}else if(3===r||4===r)return e.nodeValue}else for(;t=e[n++];)i+=s(t);return i},n=ae.selectors={cacheLength:50,createPseudo:ce,match:K,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ie),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ie),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||ae.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&ae.error(e[0]),e},PSEUDO:function(e){var t,i=!e[6]&&e[2];return K.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":i&&z.test(i)&&(t=o(i,!0))&&(t=i.indexOf(")",i.length-t)-i.length)&&(e[0]=e[0].slice(0,t),e[2]=i.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ie).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=C[e+" "];return t||(t=new RegExp("(^|[\\x20\\t\\r\\n\\f])"+e+"("+H+"|$)"),C(e,(function(e){return t.test("string"==typeof e.className&&e.className||void 0!==e.getAttribute&&e.getAttribute("class")||"")})))},ATTR:function(e,t,i){return function(n){var s=ae.attr(n,e);return null==s?"!="===t:!t||(s+="","="===t?s===i:"!="===t?s!==i:"^="===t?i&&0===s.indexOf(i):"*="===t?i&&s.indexOf(i)>-1:"$="===t?i&&s.slice(-i.length)===i:"~="===t?(" "+s.replace(F," ")+" ").indexOf(i)>-1:"|="===t&&(s===i||s.slice(0,i.length+1)===i+"-"))}},CHILD:function(e,t,i,n,s){var r="nth"!==e.slice(0,3),o="last"!==e.slice(-4),a="of-type"===t;return 1===n&&0===s?function(e){return!!e.parentNode}:function(t,i,l){var c,u,d,h,p,f,m=r!==o?"nextSibling":"previousSibling",g=t.parentNode,y=a&&t.nodeName.toLowerCase(),b=!l&&!a,v=!1;if(g){if(r){for(;m;){for(h=t;h=h[m];)if(a?h.nodeName.toLowerCase()===y:1===h.nodeType)return!1;f=m="only"===e&&!f&&"nextSibling"}return!0}if(f=[o?g.firstChild:g.lastChild],o&&b){for(v=(p=(c=(u=(d=(h=g)[w]||(h[w]={}))[h.uniqueID]||(d[h.uniqueID]={}))[e]||[])[0]===x&&c[1])&&c[2],h=p&&g.childNodes[p];h=++p&&h&&h[m]||(v=p=0)||f.pop();)if(1===h.nodeType&&++v&&h===t){u[e]=[x,p,v];break}}else if(b&&(v=p=(c=(u=(d=(h=t)[w]||(h[w]={}))[h.uniqueID]||(d[h.uniqueID]={}))[e]||[])[0]===x&&c[1]),!1===v)for(;(h=++p&&h&&h[m]||(v=p=0)||f.pop())&&((a?h.nodeName.toLowerCase()!==y:1!==h.nodeType)||!++v||(b&&((u=(d=h[w]||(h[w]={}))[h.uniqueID]||(d[h.uniqueID]={}))[e]=[x,v]),h!==t)););return(v-=s)===n||v%n==0&&v/n>=0}}},PSEUDO:function(e,t){var i,s=n.pseudos[e]||n.setFilters[e.toLowerCase()]||ae.error("unsupported pseudo: "+e);return s[w]?s(t):s.length>1?(i=[e,e,"",t],n.setFilters.hasOwnProperty(e.toLowerCase())?ce((function(e,i){for(var n,r=s(e,t),o=r.length;o--;)e[n=q(e,r[o])]=!(i[n]=r[o])})):function(e){return s(e,0,i)}):s}},pseudos:{not:ce((function(e){var t=[],i=[],n=a(e.replace(B,"$1"));return n[w]?ce((function(e,t,i,s){for(var r,o=n(e,null,s,[]),a=e.length;a--;)(r=o[a])&&(e[a]=!(t[a]=r))})):function(e,s,r){return t[0]=e,n(t,null,r,i),t[0]=null,!i.pop()}})),has:ce((function(e){return function(t){return ae(e,t).length>0}})),contains:ce((function(e){return e=e.replace(te,ie),function(t){return(t.textContent||s(t)).indexOf(e)>-1}})),lang:ce((function(e){return X.test(e||"")||ae.error("unsupported lang: "+e),e=e.replace(te,ie).toLowerCase(),function(t){var i;do{if(i=m?t.lang:t.getAttribute("xml:lang")||t.getAttribute("lang"))return(i=i.toLowerCase())===e||0===i.indexOf(e+"-")}while((t=t.parentNode)&&1===t.nodeType);return!1}})),target:function(t){var i=e.location&&e.location.hash;return i&&i.slice(1)===t.id},root:function(e){return e===f},focus:function(e){return e===p.activeElement&&(!p.hasFocus||p.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:me(!1),disabled:me(!0),checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,!0===e.selected},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType<6)return!1;return!0},parent:function(e){return!n.pseudos.empty(e)},header:function(e){return G.test(e.nodeName)},input:function(e){return Q.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||"text"===t.toLowerCase())},first:ge((function(){return[0]})),last:ge((function(e,t){return[t-1]})),eq:ge((function(e,t,i){return[i<0?i+t:i]})),even:ge((function(e,t){for(var i=0;it?t:i;--n>=0;)e.push(n);return e})),gt:ge((function(e,t,i){for(var n=i<0?i+t:i;++n1?function(t,i,n){for(var s=e.length;s--;)if(!e[s](t,i,n))return!1;return!0}:e[0]}function xe(e,t,i,n,s){for(var r,o=[],a=0,l=e.length,c=null!=t;a-1&&(r[c]=!(o[c]=d))}}else y=xe(y===o?y.splice(f,y.length):y),s?s(null,o,y,l):M.apply(o,y)}))}function Ce(e){for(var t,i,s,r=e.length,o=n.relative[e[0].type],a=o||n.relative[" "],l=o?1:0,u=we((function(e){return e===t}),a,!0),d=we((function(e){return q(t,e)>-1}),a,!0),h=[function(e,i,n){var s=!o&&(n||i!==c)||((t=i).nodeType?u(e,i,n):d(e,i,n));return t=null,s}];l1&&Te(h),l>1&&ve(e.slice(0,l-1).concat({value:" "===e[l-2].type?"*":""})).replace(B,"$1"),i,l0,s=e.length>0,r=function(r,o,a,l,u){var d,f,g,y=0,b="0",v=r&&[],w=[],T=c,k=r||s&&n.find.TAG("*",u),C=x+=null==T?1:Math.random()||.1,E=k.length;for(u&&(c=o==p||o||u);b!==E&&null!=(d=k[b]);b++){if(s&&d){for(f=0,o||d.ownerDocument==p||(h(d),a=!m);g=e[f++];)if(g(d,o||p,a)){l.push(d);break}u&&(x=C)}i&&((d=!g&&d)&&y--,r&&v.push(d))}if(y+=b,i&&b!==y){for(f=0;g=t[f++];)g(v,w,o,a);if(r){if(y>0)for(;b--;)v[b]||w[b]||(w[b]=j.call(l));w=xe(w)}M.apply(l,w),u&&!r&&w.length>0&&y+t.length>1&&ae.uniqueSort(l)}return u&&(x=C,c=T),v};return i?ce(r):r}(r,s)),a.selector=e}return a},l=ae.select=function(e,t,i,s){var r,l,c,u,d,h="function"==typeof e&&e,p=!s&&o(e=h.selector||e);if(i=i||[],1===p.length){if((l=p[0]=p[0].slice(0)).length>2&&"ID"===(c=l[0]).type&&9===t.nodeType&&m&&n.relative[l[1].type]){if(!(t=(n.find.ID(c.matches[0].replace(te,ie),t)||[])[0]))return i;h&&(t=t.parentNode),e=e.slice(l.shift().value.length)}for(r=K.needsContext.test(e)?0:l.length;r--&&(c=l[r],!n.relative[u=c.type]);)if((d=n.find[u])&&(s=d(c.matches[0].replace(te,ie),ee.test(l[0].type)&&ye(t.parentNode)||t))){if(l.splice(r,1),!(e=s.length&&ve(l)))return M.apply(i,s),i;break}}return(h||a(e,p))(s,t,!m,i,!t||ee.test(e)&&ye(t.parentNode)||t),i},i.sortStable=w.split("").sort(N).join("")===w,i.detectDuplicates=!!d,h(),i.sortDetached=ue((function(e){return 1&e.compareDocumentPosition(p.createElement("fieldset"))})),ue((function(e){return e.innerHTML="","#"===e.firstChild.getAttribute("href")}))||de("type|href|height|width",(function(e,t,i){if(!i)return e.getAttribute(t,"type"===t.toLowerCase()?1:2)})),i.attributes&&ue((function(e){return e.innerHTML="",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")}))||de("value",(function(e,t,i){if(!i&&"input"===e.nodeName.toLowerCase())return e.defaultValue})),ue((function(e){return null==e.getAttribute("disabled")}))||de(O,(function(e,t,i){var n;if(!i)return!0===e[t]?t.toLowerCase():(n=e.getAttributeNode(t))&&n.specified?n.value:null})),ae}(e);T.find=k,T.expr=k.selectors,T.expr[":"]=T.expr.pseudos,T.uniqueSort=T.unique=k.uniqueSort,T.text=k.getText,T.isXMLDoc=k.isXML,T.contains=k.contains,T.escapeSelector=k.escape;var C=function(e,t,i){for(var n=[],s=void 0!==i;(e=e[t])&&9!==e.nodeType;)if(1===e.nodeType){if(s&&T(e).is(i))break;n.push(e)}return n},E=function(e,t){for(var i=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&i.push(e);return i},S=T.expr.match.needsContext;function A(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()}var N=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function P(e,t,i){return f(t)?T.grep(e,(function(e,n){return!!t.call(e,n,e)!==i})):t.nodeType?T.grep(e,(function(e){return e===t!==i})):"string"!=typeof t?T.grep(e,(function(e){return a.call(t,e)>-1!==i})):T.filter(t,e,i)}T.filter=function(e,t,i){var n=t[0];return i&&(e=":not("+e+")"),1===t.length&&1===n.nodeType?T.find.matchesSelector(n,e)?[n]:[]:T.find.matches(e,T.grep(t,(function(e){return 1===e.nodeType})))},T.fn.extend({find:function(e){var t,i,n=this.length,s=this;if("string"!=typeof e)return this.pushStack(T(e).filter((function(){for(t=0;t1?T.uniqueSort(i):i},filter:function(e){return this.pushStack(P(this,e||[],!1))},not:function(e){return this.pushStack(P(this,e||[],!0))},is:function(e){return!!P(this,"string"==typeof e&&S.test(e)?T(e):e||[],!1).length}});var L,j=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/;(T.fn.init=function(e,t,i){var n,s;if(!e)return this;if(i=i||L,"string"==typeof e){if(!(n="<"===e[0]&&">"===e[e.length-1]&&e.length>=3?[null,e,null]:j.exec(e))||!n[1]&&t)return!t||t.jquery?(t||i).find(e):this.constructor(t).find(e);if(n[1]){if(t=t instanceof T?t[0]:t,T.merge(this,T.parseHTML(n[1],t&&t.nodeType?t.ownerDocument||t:g,!0)),N.test(n[1])&&T.isPlainObject(t))for(n in t)f(this[n])?this[n](t[n]):this.attr(n,t[n]);return this}return(s=g.getElementById(n[2]))&&(this[0]=s,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):f(e)?void 0!==i.ready?i.ready(e):e(T):T.makeArray(e,this)}).prototype=T.fn,L=T(g);var D=/^(?:parents|prev(?:Until|All))/,M={children:!0,contents:!0,next:!0,prev:!0};function I(e,t){for(;(e=e[t])&&1!==e.nodeType;);return e}T.fn.extend({has:function(e){var t=T(e,this),i=t.length;return this.filter((function(){for(var e=0;e-1:1===i.nodeType&&T.find.matchesSelector(i,e))){r.push(i);break}return this.pushStack(r.length>1?T.uniqueSort(r):r)},index:function(e){return e?"string"==typeof e?a.call(T(e),this[0]):a.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(T.uniqueSort(T.merge(this.get(),T(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),T.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return C(e,"parentNode")},parentsUntil:function(e,t,i){return C(e,"parentNode",i)},next:function(e){return I(e,"nextSibling")},prev:function(e){return I(e,"previousSibling")},nextAll:function(e){return C(e,"nextSibling")},prevAll:function(e){return C(e,"previousSibling")},nextUntil:function(e,t,i){return C(e,"nextSibling",i)},prevUntil:function(e,t,i){return C(e,"previousSibling",i)},siblings:function(e){return E((e.parentNode||{}).firstChild,e)},children:function(e){return E(e.firstChild)},contents:function(e){return null!=e.contentDocument&&n(e.contentDocument)?e.contentDocument:(A(e,"template")&&(e=e.content||e),T.merge([],e.childNodes))}},(function(e,t){T.fn[e]=function(i,n){var s=T.map(this,t,i);return"Until"!==e.slice(-5)&&(n=i),n&&"string"==typeof n&&(s=T.filter(n,s)),this.length>1&&(M[e]||T.uniqueSort(s),D.test(e)&&s.reverse()),this.pushStack(s)}}));var q=/[^\x20\t\r\n\f]+/g;function O(e){return e}function H(e){throw e}function $(e,t,i,n){var s;try{e&&f(s=e.promise)?s.call(e).done(t).fail(i):e&&f(s=e.then)?s.call(e,t,i):t.apply(void 0,[e].slice(n))}catch(e){i.apply(void 0,[e])}}T.Callbacks=function(e){e="string"==typeof e?function(e){var t={};return T.each(e.match(q)||[],(function(e,i){t[i]=!0})),t}(e):T.extend({},e);var t,i,n,s,r=[],o=[],a=-1,l=function(){for(s=s||e.once,n=t=!0;o.length;a=-1)for(i=o.shift();++a-1;)r.splice(i,1),i<=a&&a--})),this},has:function(e){return e?T.inArray(e,r)>-1:r.length>0},empty:function(){return r&&(r=[]),this},disable:function(){return s=o=[],r=i="",this},disabled:function(){return!r},lock:function(){return s=o=[],i||t||(r=i=""),this},locked:function(){return!!s},fireWith:function(e,i){return s||(i=[e,(i=i||[]).slice?i.slice():i],o.push(i),t||l()),this},fire:function(){return c.fireWith(this,arguments),this},fired:function(){return!!n}};return c},T.extend({Deferred:function(t){var i=[["notify","progress",T.Callbacks("memory"),T.Callbacks("memory"),2],["resolve","done",T.Callbacks("once memory"),T.Callbacks("once memory"),0,"resolved"],["reject","fail",T.Callbacks("once memory"),T.Callbacks("once memory"),1,"rejected"]],n="pending",s={state:function(){return n},always:function(){return r.done(arguments).fail(arguments),this},catch:function(e){return s.then(null,e)},pipe:function(){var e=arguments;return T.Deferred((function(t){T.each(i,(function(i,n){var s=f(e[n[4]])&&e[n[4]];r[n[1]]((function(){var e=s&&s.apply(this,arguments);e&&f(e.promise)?e.promise().progress(t.notify).done(t.resolve).fail(t.reject):t[n[0]+"With"](this,s?[e]:arguments)}))})),e=null})).promise()},then:function(t,n,s){var r=0;function o(t,i,n,s){return function(){var a=this,l=arguments,c=function(){var e,c;if(!(t=r&&(n!==H&&(a=void 0,l=[e]),i.rejectWith(a,l))}};t?u():(T.Deferred.getStackHook&&(u.stackTrace=T.Deferred.getStackHook()),e.setTimeout(u))}}return T.Deferred((function(e){i[0][3].add(o(0,e,f(s)?s:O,e.notifyWith)),i[1][3].add(o(0,e,f(t)?t:O)),i[2][3].add(o(0,e,f(n)?n:H))})).promise()},promise:function(e){return null!=e?T.extend(e,s):s}},r={};return T.each(i,(function(e,t){var o=t[2],a=t[5];s[t[1]]=o.add,a&&o.add((function(){n=a}),i[3-e][2].disable,i[3-e][3].disable,i[0][2].lock,i[0][3].lock),o.add(t[3].fire),r[t[0]]=function(){return r[t[0]+"With"](this===r?void 0:this,arguments),this},r[t[0]+"With"]=o.fireWith})),s.promise(r),t&&t.call(r,r),r},when:function(e){var t=arguments.length,i=t,n=Array(i),r=s.call(arguments),o=T.Deferred(),a=function(e){return function(i){n[e]=this,r[e]=arguments.length>1?s.call(arguments):i,--t||o.resolveWith(n,r)}};if(t<=1&&($(e,o.done(a(i)).resolve,o.reject,!t),"pending"===o.state()||f(r[i]&&r[i].then)))return o.then();for(;i--;)$(r[i],a(i),o.reject);return o.promise()}});var _=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;T.Deferred.exceptionHook=function(t,i){e.console&&e.console.warn&&t&&_.test(t.name)&&e.console.warn("jQuery.Deferred exception: "+t.message,t.stack,i)},T.readyException=function(t){e.setTimeout((function(){throw t}))};var R=T.Deferred();function F(){g.removeEventListener("DOMContentLoaded",F),e.removeEventListener("load",F),T.ready()}T.fn.ready=function(e){return R.then(e).catch((function(e){T.readyException(e)})),this},T.extend({isReady:!1,readyWait:1,ready:function(e){(!0===e?--T.readyWait:T.isReady)||(T.isReady=!0,!0!==e&&--T.readyWait>0||R.resolveWith(g,[T]))}}),T.ready.then=R.then,"complete"===g.readyState||"loading"!==g.readyState&&!g.documentElement.doScroll?e.setTimeout(T.ready):(g.addEventListener("DOMContentLoaded",F),e.addEventListener("load",F));var B=function(e,t,i,n,s,r,o){var a=0,l=e.length,c=null==i;if("object"===v(i))for(a in s=!0,i)B(e,t,a,i[a],!0,r,o);else if(void 0!==n&&(s=!0,f(n)||(o=!0),c&&(o?(t.call(e,n),t=null):(c=t,t=function(e,t,i){return c.call(T(e),i)})),t))for(;a1,null,!0)},removeData:function(e){return this.each((function(){Q.remove(this,e)}))}}),T.extend({queue:function(e,t,i){var n;if(e)return t=(t||"fx")+"queue",n=Y.get(e,t),i&&(!n||Array.isArray(i)?n=Y.access(e,t,T.makeArray(i)):n.push(i)),n||[]},dequeue:function(e,t){t=t||"fx";var i=T.queue(e,t),n=i.length,s=i.shift(),r=T._queueHooks(e,t);"inprogress"===s&&(s=i.shift(),n--),s&&("fx"===t&&i.unshift("inprogress"),delete r.stop,s.call(e,(function(){T.dequeue(e,t)}),r)),!n&&r&&r.empty.fire()},_queueHooks:function(e,t){var i=t+"queueHooks";return Y.get(e,i)||Y.access(e,i,{empty:T.Callbacks("once memory").add((function(){Y.remove(e,[t+"queue",i])}))})}}),T.fn.extend({queue:function(e,t){var i=2;return"string"!=typeof e&&(t=e,e="fx",i--),arguments.length\x20\t\r\n\f]*)/i,me=/^$|^module$|\/(?:java|ecma)script/i;de=g.createDocumentFragment().appendChild(g.createElement("div")),(he=g.createElement("input")).setAttribute("type","radio"),he.setAttribute("checked","checked"),he.setAttribute("name","t"),de.appendChild(he),p.checkClone=de.cloneNode(!0).cloneNode(!0).lastChild.checked,de.innerHTML="",p.noCloneChecked=!!de.cloneNode(!0).lastChild.defaultValue,de.innerHTML="",p.option=!!de.lastChild;var ge={thead:[1,""],col:[2,""],tr:[2,""],td:[3,""],_default:[0,"",""]};function ye(e,t){var i;return i=void 0!==e.getElementsByTagName?e.getElementsByTagName(t||"*"):void 0!==e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?T.merge([e],i):i}function be(e,t){for(var i=0,n=e.length;i",""]);var ve=/<|?\w+;/;function we(e,t,i,n,s){for(var r,o,a,l,c,u,d=t.createDocumentFragment(),h=[],p=0,f=e.length;p-1)s&&s.push(r);else if(c=se(r),o=ye(d.appendChild(r),"script"),c&&be(o),i)for(u=0;r=o[u++];)me.test(r.type||"")&&i.push(r);return d}var Te=/^([^.]*)(?:\.(.+)|)/;function xe(){return!0}function ke(){return!1}function Ce(e,t){return e===function(){try{return g.activeElement}catch(e){}}()==("focus"===t)}function Ee(e,t,i,n,s,r){var o,a;if("object"==typeof t){for(a in"string"!=typeof i&&(n=n||i,i=void 0),t)Ee(e,a,i,n,t[a],r);return e}if(null==n&&null==s?(s=i,n=i=void 0):null==s&&("string"==typeof i?(s=n,n=void 0):(s=n,n=i,i=void 0)),!1===s)s=ke;else if(!s)return e;return 1===r&&(o=s,s=function(e){return T().off(e),o.apply(this,arguments)},s.guid=o.guid||(o.guid=T.guid++)),e.each((function(){T.event.add(this,t,s,n,i)}))}function Se(e,t,i){i?(Y.set(e,t,!1),T.event.add(e,t,{namespace:!1,handler:function(e){var n,r,o=Y.get(this,t);if(1&e.isTrigger&&this[t]){if(o.length)(T.event.special[t]||{}).delegateType&&e.stopPropagation();else if(o=s.call(arguments),Y.set(this,t,o),n=i(this,t),this[t](),o!==(r=Y.get(this,t))||n?Y.set(this,t,!1):r={},o!==r)return e.stopImmediatePropagation(),e.preventDefault(),r&&r.value}else o.length&&(Y.set(this,t,{value:T.event.trigger(T.extend(o[0],T.Event.prototype),o.slice(1),this)}),e.stopImmediatePropagation())}})):void 0===Y.get(e,t)&&T.event.add(e,t,xe)}T.event={global:{},add:function(e,t,i,n,s){var r,o,a,l,c,u,d,h,p,f,m,g=Y.get(e);if(X(e))for(i.handler&&(i=(r=i).handler,s=r.selector),s&&T.find.matchesSelector(ne,s),i.guid||(i.guid=T.guid++),(l=g.events)||(l=g.events=Object.create(null)),(o=g.handle)||(o=g.handle=function(t){return void 0!==T&&T.event.triggered!==t.type?T.event.dispatch.apply(e,arguments):void 0}),c=(t=(t||"").match(q)||[""]).length;c--;)p=m=(a=Te.exec(t[c])||[])[1],f=(a[2]||"").split(".").sort(),p&&(d=T.event.special[p]||{},p=(s?d.delegateType:d.bindType)||p,d=T.event.special[p]||{},u=T.extend({type:p,origType:m,data:n,handler:i,guid:i.guid,selector:s,needsContext:s&&T.expr.match.needsContext.test(s),namespace:f.join(".")},r),(h=l[p])||((h=l[p]=[]).delegateCount=0,d.setup&&!1!==d.setup.call(e,n,f,o)||e.addEventListener&&e.addEventListener(p,o)),d.add&&(d.add.call(e,u),u.handler.guid||(u.handler.guid=i.guid)),s?h.splice(h.delegateCount++,0,u):h.push(u),T.event.global[p]=!0)},remove:function(e,t,i,n,s){var r,o,a,l,c,u,d,h,p,f,m,g=Y.hasData(e)&&Y.get(e);if(g&&(l=g.events)){for(c=(t=(t||"").match(q)||[""]).length;c--;)if(p=m=(a=Te.exec(t[c])||[])[1],f=(a[2]||"").split(".").sort(),p){for(d=T.event.special[p]||{},h=l[p=(n?d.delegateType:d.bindType)||p]||[],a=a[2]&&new RegExp("(^|\\.)"+f.join("\\.(?:.*\\.|)")+"(\\.|$)"),o=r=h.length;r--;)u=h[r],!s&&m!==u.origType||i&&i.guid!==u.guid||a&&!a.test(u.namespace)||n&&n!==u.selector&&("**"!==n||!u.selector)||(h.splice(r,1),u.selector&&h.delegateCount--,d.remove&&d.remove.call(e,u));o&&!h.length&&(d.teardown&&!1!==d.teardown.call(e,f,g.handle)||T.removeEvent(e,p,g.handle),delete l[p])}else for(p in l)T.event.remove(e,p+t[c],i,n,!0);T.isEmptyObject(l)&&Y.remove(e,"handle events")}},dispatch:function(e){var t,i,n,s,r,o,a=new Array(arguments.length),l=T.event.fix(e),c=(Y.get(this,"events")||Object.create(null))[l.type]||[],u=T.event.special[l.type]||{};for(a[0]=l,t=1;t=1))for(;c!==this;c=c.parentNode||this)if(1===c.nodeType&&("click"!==e.type||!0!==c.disabled)){for(r=[],o={},i=0;i-1:T.find(s,this,null,[c]).length),o[s]&&r.push(n);r.length&&a.push({elem:c,handlers:r})}return c=this,l\s*$/g;function Le(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&T(e).children("tbody")[0]||e}function je(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function De(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Me(e,t){var i,n,s,r,o,a;if(1===t.nodeType){if(Y.hasData(e)&&(a=Y.get(e).events))for(s in Y.remove(t,"handle events"),a)for(i=0,n=a[s].length;i1&&"string"==typeof g&&!p.checkClone&&Ne.test(g))return e.each((function(s){var r=e.eq(s);y&&(t[0]=g.call(this,s,r.html())),qe(r,t,i,n)}));if(h&&(o=(s=we(t,e[0].ownerDocument,!1,e,n)).firstChild,1===s.childNodes.length&&(s=o),o||n)){for(l=(a=T.map(ye(s,"script"),je)).length;d0&&be(o,!l&&ye(e,"script")),a},cleanData:function(e){for(var t,i,n,s=T.event.special,r=0;void 0!==(i=e[r]);r++)if(X(i)){if(t=i[Y.expando]){if(t.events)for(n in t.events)s[n]?T.event.remove(i,n):T.removeEvent(i,n,t.handle);i[Y.expando]=void 0}i[Q.expando]&&(i[Q.expando]=void 0)}}}),T.fn.extend({detach:function(e){return Oe(this,e,!0)},remove:function(e){return Oe(this,e)},text:function(e){return B(this,(function(e){return void 0===e?T.text(this):this.empty().each((function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=e)}))}),null,e,arguments.length)},append:function(){return qe(this,arguments,(function(e){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||Le(this,e).appendChild(e)}))},prepend:function(){return qe(this,arguments,(function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=Le(this,e);t.insertBefore(e,t.firstChild)}}))},before:function(){return qe(this,arguments,(function(e){this.parentNode&&this.parentNode.insertBefore(e,this)}))},after:function(){return qe(this,arguments,(function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)}))},empty:function(){for(var e,t=0;null!=(e=this[t]);t++)1===e.nodeType&&(T.cleanData(ye(e,!1)),e.textContent="");return this},clone:function(e,t){return e=null!=e&&e,t=null==t?e:t,this.map((function(){return T.clone(this,e,t)}))},html:function(e){return B(this,(function(e){var t=this[0]||{},i=0,n=this.length;if(void 0===e&&1===t.nodeType)return t.innerHTML;if("string"==typeof e&&!Ae.test(e)&&!ge[(fe.exec(e)||["",""])[1].toLowerCase()]){e=T.htmlPrefilter(e);try{for(;i=0&&(l+=Math.max(0,Math.ceil(e["offset"+t[0].toUpperCase()+t.slice(1)]-r-l-a-.5))||0),l}function Ze(e,t,i){var n=$e(e),s=(!p.boxSizingReliable()||i)&&"border-box"===T.css(e,"boxSizing",!1,n),r=s,o=Fe(e,t,n),a="offset"+t[0].toUpperCase()+t.slice(1);if(He.test(o)){if(!i)return o;o="auto"}return(!p.boxSizingReliable()&&s||!p.reliableTrDimensions()&&A(e,"tr")||"auto"===o||!parseFloat(o)&&"inline"===T.css(e,"display",!1,n))&&e.getClientRects().length&&(s="border-box"===T.css(e,"boxSizing",!1,n),(r=a in e)&&(o=e[a])),(o=parseFloat(o)||0)+Je(e,t,i||(s?"border":"content"),r,n,o)+"px"}function et(e,t,i,n,s){return new et.prototype.init(e,t,i,n,s)}T.extend({cssHooks:{opacity:{get:function(e,t){if(t){var i=Fe(e,"opacity");return""===i?"1":i}}}},cssNumber:{animationIterationCount:!0,columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,gridArea:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnStart:!0,gridRow:!0,gridRowEnd:!0,gridRowStart:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{},style:function(e,t,i,n){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var s,r,o,a=z(t),l=Ke.test(t),c=e.style;if(l||(t=ze(a)),o=T.cssHooks[t]||T.cssHooks[a],void 0===i)return o&&"get"in o&&void 0!==(s=o.get(e,!1,n))?s:c[t];"string"===(r=typeof i)&&(s=te.exec(i))&&s[1]&&(i=ae(e,t,s),r="number"),null!=i&&i==i&&("number"!==r||l||(i+=s&&s[3]||(T.cssNumber[a]?"":"px")),p.clearCloneStyle||""!==i||0!==t.indexOf("background")||(c[t]="inherit"),o&&"set"in o&&void 0===(i=o.set(e,i,n))||(l?c.setProperty(t,i):c[t]=i))}},css:function(e,t,i,n){var s,r,o,a=z(t);return Ke.test(t)||(t=ze(a)),(o=T.cssHooks[t]||T.cssHooks[a])&&"get"in o&&(s=o.get(e,!0,i)),void 0===s&&(s=Fe(e,t,n)),"normal"===s&&t in Qe&&(s=Qe[t]),""===i||i?(r=parseFloat(s),!0===i||isFinite(r)?r||0:s):s}}),T.each(["height","width"],(function(e,t){T.cssHooks[t]={get:function(e,i,n){if(i)return!Xe.test(T.css(e,"display"))||e.getClientRects().length&&e.getBoundingClientRect().width?Ze(e,t,n):_e(e,Ye,(function(){return Ze(e,t,n)}))},set:function(e,i,n){var s,r=$e(e),o=!p.scrollboxSize()&&"absolute"===r.position,a=(o||n)&&"border-box"===T.css(e,"boxSizing",!1,r),l=n?Je(e,t,n,a,r):0;return a&&o&&(l-=Math.ceil(e["offset"+t[0].toUpperCase()+t.slice(1)]-parseFloat(r[t])-Je(e,t,"border",!1,r)-.5)),l&&(s=te.exec(i))&&"px"!==(s[3]||"px")&&(e.style[t]=i,i=T.css(e,t)),Ge(0,i,l)}}})),T.cssHooks.marginLeft=Be(p.reliableMarginLeft,(function(e,t){if(t)return(parseFloat(Fe(e,"marginLeft"))||e.getBoundingClientRect().left-_e(e,{marginLeft:0},(function(){return e.getBoundingClientRect().left})))+"px"})),T.each({margin:"",padding:"",border:"Width"},(function(e,t){T.cssHooks[e+t]={expand:function(i){for(var n=0,s={},r="string"==typeof i?i.split(" "):[i];n<4;n++)s[e+ie[n]+t]=r[n]||r[n-2]||r[0];return s}},"margin"!==e&&(T.cssHooks[e+t].set=Ge)})),T.fn.extend({css:function(e,t){return B(this,(function(e,t,i){var n,s,r={},o=0;if(Array.isArray(t)){for(n=$e(e),s=t.length;o1)}}),T.Tween=et,et.prototype={constructor:et,init:function(e,t,i,n,s,r){this.elem=e,this.prop=i,this.easing=s||T.easing._default,this.options=t,this.start=this.now=this.cur(),this.end=n,this.unit=r||(T.cssNumber[i]?"":"px")},cur:function(){var e=et.propHooks[this.prop];return e&&e.get?e.get(this):et.propHooks._default.get(this)},run:function(e){var t,i=et.propHooks[this.prop];return this.options.duration?this.pos=t=T.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):this.pos=t=e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),i&&i.set?i.set(this):et.propHooks._default.set(this),this}},et.prototype.init.prototype=et.prototype,et.propHooks={_default:{get:function(e){var t;return 1!==e.elem.nodeType||null!=e.elem[e.prop]&&null==e.elem.style[e.prop]?e.elem[e.prop]:(t=T.css(e.elem,e.prop,""))&&"auto"!==t?t:0},set:function(e){T.fx.step[e.prop]?T.fx.step[e.prop](e):1!==e.elem.nodeType||!T.cssHooks[e.prop]&&null==e.elem.style[ze(e.prop)]?e.elem[e.prop]=e.now:T.style(e.elem,e.prop,e.now+e.unit)}}},et.propHooks.scrollTop=et.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},T.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2},_default:"swing"},T.fx=et.prototype.init,T.fx.step={};var tt,it,nt=/^(?:toggle|show|hide)$/,st=/queueHooks$/;function rt(){it&&(!1===g.hidden&&e.requestAnimationFrame?e.requestAnimationFrame(rt):e.setTimeout(rt,T.fx.interval),T.fx.tick())}function ot(){return e.setTimeout((function(){tt=void 0})),tt=Date.now()}function at(e,t){var i,n=0,s={height:e};for(t=t?1:0;n<4;n+=2-t)s["margin"+(i=ie[n])]=s["padding"+i]=e;return t&&(s.opacity=s.width=e),s}function lt(e,t,i){for(var n,s=(ct.tweeners[t]||[]).concat(ct.tweeners["*"]),r=0,o=s.length;r1)},removeAttr:function(e){return this.each((function(){T.removeAttr(this,e)}))}}),T.extend({attr:function(e,t,i){var n,s,r=e.nodeType;if(3!==r&&8!==r&&2!==r)return void 0===e.getAttribute?T.prop(e,t,i):(1===r&&T.isXMLDoc(e)||(s=T.attrHooks[t.toLowerCase()]||(T.expr.match.bool.test(t)?ut:void 0)),void 0!==i?null===i?void T.removeAttr(e,t):s&&"set"in s&&void 0!==(n=s.set(e,i,t))?n:(e.setAttribute(t,i+""),i):s&&"get"in s&&null!==(n=s.get(e,t))?n:null==(n=T.find.attr(e,t))?void 0:n)},attrHooks:{type:{set:function(e,t){if(!p.radioValue&&"radio"===t&&A(e,"input")){var i=e.value;return e.setAttribute("type",t),i&&(e.value=i),t}}}},removeAttr:function(e,t){var i,n=0,s=t&&t.match(q);if(s&&1===e.nodeType)for(;i=s[n++];)e.removeAttribute(i)}}),ut={set:function(e,t,i){return!1===t?T.removeAttr(e,i):e.setAttribute(i,i),i}},T.each(T.expr.match.bool.source.match(/\w+/g),(function(e,t){var i=dt[t]||T.find.attr;dt[t]=function(e,t,n){var s,r,o=t.toLowerCase();return n||(r=dt[o],dt[o]=s,s=null!=i(e,t,n)?o:null,dt[o]=r),s}}));var ht=/^(?:input|select|textarea|button)$/i,pt=/^(?:a|area)$/i;function ft(e){return(e.match(q)||[]).join(" ")}function mt(e){return e.getAttribute&&e.getAttribute("class")||""}function gt(e){return Array.isArray(e)?e:"string"==typeof e&&e.match(q)||[]}T.fn.extend({prop:function(e,t){return B(this,T.prop,e,t,arguments.length>1)},removeProp:function(e){return this.each((function(){delete this[T.propFix[e]||e]}))}}),T.extend({prop:function(e,t,i){var n,s,r=e.nodeType;if(3!==r&&8!==r&&2!==r)return 1===r&&T.isXMLDoc(e)||(t=T.propFix[t]||t,s=T.propHooks[t]),void 0!==i?s&&"set"in s&&void 0!==(n=s.set(e,i,t))?n:e[t]=i:s&&"get"in s&&null!==(n=s.get(e,t))?n:e[t]},propHooks:{tabIndex:{get:function(e){var t=T.find.attr(e,"tabindex");return t?parseInt(t,10):ht.test(e.nodeName)||pt.test(e.nodeName)&&e.href?0:-1}}},propFix:{for:"htmlFor",class:"className"}}),p.optSelected||(T.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null},set:function(e){var t=e.parentNode;t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex)}}),T.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],(function(){T.propFix[this.toLowerCase()]=this})),T.fn.extend({addClass:function(e){var t,i,n,s,r,o,a,l=0;if(f(e))return this.each((function(t){T(this).addClass(e.call(this,t,mt(this)))}));if((t=gt(e)).length)for(;i=this[l++];)if(s=mt(i),n=1===i.nodeType&&" "+ft(s)+" "){for(o=0;r=t[o++];)n.indexOf(" "+r+" ")<0&&(n+=r+" ");s!==(a=ft(n))&&i.setAttribute("class",a)}return this},removeClass:function(e){var t,i,n,s,r,o,a,l=0;if(f(e))return this.each((function(t){T(this).removeClass(e.call(this,t,mt(this)))}));if(!arguments.length)return this.attr("class","");if((t=gt(e)).length)for(;i=this[l++];)if(s=mt(i),n=1===i.nodeType&&" "+ft(s)+" "){for(o=0;r=t[o++];)for(;n.indexOf(" "+r+" ")>-1;)n=n.replace(" "+r+" "," ");s!==(a=ft(n))&&i.setAttribute("class",a)}return this},toggleClass:function(e,t){var i=typeof e,n="string"===i||Array.isArray(e);return"boolean"==typeof t&&n?t?this.addClass(e):this.removeClass(e):f(e)?this.each((function(i){T(this).toggleClass(e.call(this,i,mt(this),t),t)})):this.each((function(){var t,s,r,o;if(n)for(s=0,r=T(this),o=gt(e);t=o[s++];)r.hasClass(t)?r.removeClass(t):r.addClass(t);else void 0!==e&&"boolean"!==i||((t=mt(this))&&Y.set(this,"__className__",t),this.setAttribute&&this.setAttribute("class",t||!1===e?"":Y.get(this,"__className__")||""))}))},hasClass:function(e){var t,i,n=0;for(t=" "+e+" ";i=this[n++];)if(1===i.nodeType&&(" "+ft(mt(i))+" ").indexOf(t)>-1)return!0;return!1}});var yt=/\r/g;T.fn.extend({val:function(e){var t,i,n,s=this[0];return arguments.length?(n=f(e),this.each((function(i){var s;1===this.nodeType&&(null==(s=n?e.call(this,i,T(this).val()):e)?s="":"number"==typeof s?s+="":Array.isArray(s)&&(s=T.map(s,(function(e){return null==e?"":e+""}))),(t=T.valHooks[this.type]||T.valHooks[this.nodeName.toLowerCase()])&&"set"in t&&void 0!==t.set(this,s,"value")||(this.value=s))}))):s?(t=T.valHooks[s.type]||T.valHooks[s.nodeName.toLowerCase()])&&"get"in t&&void 0!==(i=t.get(s,"value"))?i:"string"==typeof(i=s.value)?i.replace(yt,""):null==i?"":i:void 0}}),T.extend({valHooks:{option:{get:function(e){var t=T.find.attr(e,"value");return null!=t?t:ft(T.text(e))}},select:{get:function(e){var t,i,n,s=e.options,r=e.selectedIndex,o="select-one"===e.type,a=o?null:[],l=o?r+1:s.length;for(n=r<0?l:o?r:0;n-1)&&(i=!0);return i||(e.selectedIndex=-1),r}}}}),T.each(["radio","checkbox"],(function(){T.valHooks[this]={set:function(e,t){if(Array.isArray(t))return e.checked=T.inArray(T(e).val(),t)>-1}},p.checkOn||(T.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})})),p.focusin="onfocusin"in e;var bt=/^(?:focusinfocus|focusoutblur)$/,vt=function(e){e.stopPropagation()};T.extend(T.event,{trigger:function(t,i,n,s){var r,o,a,l,c,d,h,p,y=[n||g],b=u.call(t,"type")?t.type:t,v=u.call(t,"namespace")?t.namespace.split("."):[];if(o=p=a=n=n||g,3!==n.nodeType&&8!==n.nodeType&&!bt.test(b+T.event.triggered)&&(b.indexOf(".")>-1&&(v=b.split("."),b=v.shift(),v.sort()),c=b.indexOf(":")<0&&"on"+b,(t=t[T.expando]?t:new T.Event(b,"object"==typeof t&&t)).isTrigger=s?2:3,t.namespace=v.join("."),t.rnamespace=t.namespace?new RegExp("(^|\\.)"+v.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,t.result=void 0,t.target||(t.target=n),i=null==i?[t]:T.makeArray(i,[t]),h=T.event.special[b]||{},s||!h.trigger||!1!==h.trigger.apply(n,i))){if(!s&&!h.noBubble&&!m(n)){for(l=h.delegateType||b,bt.test(l+b)||(o=o.parentNode);o;o=o.parentNode)y.push(o),a=o;a===(n.ownerDocument||g)&&y.push(a.defaultView||a.parentWindow||e)}for(r=0;(o=y[r++])&&!t.isPropagationStopped();)p=o,t.type=r>1?l:h.bindType||b,(d=(Y.get(o,"events")||Object.create(null))[t.type]&&Y.get(o,"handle"))&&d.apply(o,i),(d=c&&o[c])&&d.apply&&X(o)&&(t.result=d.apply(o,i),!1===t.result&&t.preventDefault());return t.type=b,s||t.isDefaultPrevented()||h._default&&!1!==h._default.apply(y.pop(),i)||!X(n)||c&&f(n[b])&&!m(n)&&((a=n[c])&&(n[c]=null),T.event.triggered=b,t.isPropagationStopped()&&p.addEventListener(b,vt),n[b](),t.isPropagationStopped()&&p.removeEventListener(b,vt),T.event.triggered=void 0,a&&(n[c]=a)),t.result}},simulate:function(e,t,i){var n=T.extend(new T.Event,i,{type:e,isSimulated:!0});T.event.trigger(n,null,t)}}),T.fn.extend({trigger:function(e,t){return this.each((function(){T.event.trigger(e,t,this)}))},triggerHandler:function(e,t){var i=this[0];if(i)return T.event.trigger(e,t,i,!0)}}),p.focusin||T.each({focus:"focusin",blur:"focusout"},(function(e,t){var i=function(e){T.event.simulate(t,e.target,T.event.fix(e))};T.event.special[t]={setup:function(){var n=this.ownerDocument||this.document||this,s=Y.access(n,t);s||n.addEventListener(e,i,!0),Y.access(n,t,(s||0)+1)},teardown:function(){var n=this.ownerDocument||this.document||this,s=Y.access(n,t)-1;s?Y.access(n,t,s):(n.removeEventListener(e,i,!0),Y.remove(n,t))}}}));var wt=e.location,Tt={guid:Date.now()},xt=/\?/;T.parseXML=function(t){var i,n;if(!t||"string"!=typeof t)return null;try{i=(new e.DOMParser).parseFromString(t,"text/xml")}catch(e){}return n=i&&i.getElementsByTagName("parsererror")[0],i&&!n||T.error("Invalid XML: "+(n?T.map(n.childNodes,(function(e){return e.textContent})).join("\n"):t)),i};var kt=/\[\]$/,Ct=/\r?\n/g,Et=/^(?:submit|button|image|reset|file)$/i,St=/^(?:input|select|textarea|keygen)/i;function At(e,t,i,n){var s;if(Array.isArray(t))T.each(t,(function(t,s){i||kt.test(e)?n(e,s):At(e+"["+("object"==typeof s&&null!=s?t:"")+"]",s,i,n)}));else if(i||"object"!==v(t))n(e,t);else for(s in t)At(e+"["+s+"]",t[s],i,n)}T.param=function(e,t){var i,n=[],s=function(e,t){var i=f(t)?t():t;n[n.length]=encodeURIComponent(e)+"="+encodeURIComponent(null==i?"":i)};if(null==e)return"";if(Array.isArray(e)||e.jquery&&!T.isPlainObject(e))T.each(e,(function(){s(this.name,this.value)}));else for(i in e)At(i,e[i],t,s);return n.join("&")},T.fn.extend({serialize:function(){return T.param(this.serializeArray())},serializeArray:function(){return this.map((function(){var e=T.prop(this,"elements");return e?T.makeArray(e):this})).filter((function(){var e=this.type;return this.name&&!T(this).is(":disabled")&&St.test(this.nodeName)&&!Et.test(e)&&(this.checked||!pe.test(e))})).map((function(e,t){var i=T(this).val();return null==i?null:Array.isArray(i)?T.map(i,(function(e){return{name:t.name,value:e.replace(Ct,"\r\n")}})):{name:t.name,value:i.replace(Ct,"\r\n")}})).get()}});var Nt=/%20/g,Pt=/#.*$/,Lt=/([?&])_=[^&]*/,jt=/^(.*?):[ \t]*([^\r\n]*)$/gm,Dt=/^(?:GET|HEAD)$/,Mt=/^\/\//,It={},qt={},Ot="*/".concat("*"),Ht=g.createElement("a");function $t(e){return function(t,i){"string"!=typeof t&&(i=t,t="*");var n,s=0,r=t.toLowerCase().match(q)||[];if(f(i))for(;n=r[s++];)"+"===n[0]?(n=n.slice(1)||"*",(e[n]=e[n]||[]).unshift(i)):(e[n]=e[n]||[]).push(i)}}function _t(e,t,i,n){var s={},r=e===qt;function o(a){var l;return s[a]=!0,T.each(e[a]||[],(function(e,a){var c=a(t,i,n);return"string"!=typeof c||r||s[c]?r?!(l=c):void 0:(t.dataTypes.unshift(c),o(c),!1)})),l}return o(t.dataTypes[0])||!s["*"]&&o("*")}function Rt(e,t){var i,n,s=T.ajaxSettings.flatOptions||{};for(i in t)void 0!==t[i]&&((s[i]?e:n||(n={}))[i]=t[i]);return n&&T.extend(!0,e,n),e}Ht.href=wt.href,T.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:wt.href,type:"GET",isLocal:/^(?:about|app|app-storage|.+-extension|file|res|widget):$/.test(wt.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Ot,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":JSON.parse,"text xml":T.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?Rt(Rt(e,T.ajaxSettings),t):Rt(T.ajaxSettings,e)},ajaxPrefilter:$t(It),ajaxTransport:$t(qt),ajax:function(t,i){"object"==typeof t&&(i=t,t=void 0),i=i||{};var n,s,r,o,a,l,c,u,d,h,p=T.ajaxSetup({},i),f=p.context||p,m=p.context&&(f.nodeType||f.jquery)?T(f):T.event,y=T.Deferred(),b=T.Callbacks("once memory"),v=p.statusCode||{},w={},x={},k="canceled",C={readyState:0,getResponseHeader:function(e){var t;if(c){if(!o)for(o={};t=jt.exec(r);)o[t[1].toLowerCase()+" "]=(o[t[1].toLowerCase()+" "]||[]).concat(t[2]);t=o[e.toLowerCase()+" "]}return null==t?null:t.join(", ")},getAllResponseHeaders:function(){return c?r:null},setRequestHeader:function(e,t){return null==c&&(e=x[e.toLowerCase()]=x[e.toLowerCase()]||e,w[e]=t),this},overrideMimeType:function(e){return null==c&&(p.mimeType=e),this},statusCode:function(e){var t;if(e)if(c)C.always(e[C.status]);else for(t in e)v[t]=[v[t],e[t]];return this},abort:function(e){var t=e||k;return n&&n.abort(t),E(0,t),this}};if(y.promise(C),p.url=((t||p.url||wt.href)+"").replace(Mt,wt.protocol+"//"),p.type=i.method||i.type||p.method||p.type,p.dataTypes=(p.dataType||"*").toLowerCase().match(q)||[""],null==p.crossDomain){l=g.createElement("a");try{l.href=p.url,l.href=l.href,p.crossDomain=Ht.protocol+"//"+Ht.host!=l.protocol+"//"+l.host}catch(e){p.crossDomain=!0}}if(p.data&&p.processData&&"string"!=typeof p.data&&(p.data=T.param(p.data,p.traditional)),_t(It,p,i,C),c)return C;for(d in(u=T.event&&p.global)&&0==T.active++&&T.event.trigger("ajaxStart"),p.type=p.type.toUpperCase(),p.hasContent=!Dt.test(p.type),s=p.url.replace(Pt,""),p.hasContent?p.data&&p.processData&&0===(p.contentType||"").indexOf("application/x-www-form-urlencoded")&&(p.data=p.data.replace(Nt,"+")):(h=p.url.slice(s.length),p.data&&(p.processData||"string"==typeof p.data)&&(s+=(xt.test(s)?"&":"?")+p.data,delete p.data),!1===p.cache&&(s=s.replace(Lt,"$1"),h=(xt.test(s)?"&":"?")+"_="+Tt.guid+++h),p.url=s+h),p.ifModified&&(T.lastModified[s]&&C.setRequestHeader("If-Modified-Since",T.lastModified[s]),T.etag[s]&&C.setRequestHeader("If-None-Match",T.etag[s])),(p.data&&p.hasContent&&!1!==p.contentType||i.contentType)&&C.setRequestHeader("Content-Type",p.contentType),C.setRequestHeader("Accept",p.dataTypes[0]&&p.accepts[p.dataTypes[0]]?p.accepts[p.dataTypes[0]]+("*"!==p.dataTypes[0]?", "+Ot+"; q=0.01":""):p.accepts["*"]),p.headers)C.setRequestHeader(d,p.headers[d]);if(p.beforeSend&&(!1===p.beforeSend.call(f,C,p)||c))return C.abort();if(k="abort",b.add(p.complete),C.done(p.success),C.fail(p.error),n=_t(qt,p,i,C)){if(C.readyState=1,u&&m.trigger("ajaxSend",[C,p]),c)return C;p.async&&p.timeout>0&&(a=e.setTimeout((function(){C.abort("timeout")}),p.timeout));try{c=!1,n.send(w,E)}catch(e){if(c)throw e;E(-1,e)}}else E(-1,"No Transport");function E(t,i,o,l){var d,h,g,w,x,k=i;c||(c=!0,a&&e.clearTimeout(a),n=void 0,r=l||"",C.readyState=t>0?4:0,d=t>=200&&t<300||304===t,o&&(w=function(e,t,i){for(var n,s,r,o,a=e.contents,l=e.dataTypes;"*"===l[0];)l.shift(),void 0===n&&(n=e.mimeType||t.getResponseHeader("Content-Type"));if(n)for(s in a)if(a[s]&&a[s].test(n)){l.unshift(s);break}if(l[0]in i)r=l[0];else{for(s in i){if(!l[0]||e.converters[s+" "+l[0]]){r=s;break}o||(o=s)}r=r||o}if(r)return r!==l[0]&&l.unshift(r),i[r]}(p,C,o)),!d&&T.inArray("script",p.dataTypes)>-1&&T.inArray("json",p.dataTypes)<0&&(p.converters["text script"]=function(){}),w=function(e,t,i,n){var s,r,o,a,l,c={},u=e.dataTypes.slice();if(u[1])for(o in e.converters)c[o.toLowerCase()]=e.converters[o];for(r=u.shift();r;)if(e.responseFields[r]&&(i[e.responseFields[r]]=t),!l&&n&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),l=r,r=u.shift())if("*"===r)r=l;else if("*"!==l&&l!==r){if(!(o=c[l+" "+r]||c["* "+r]))for(s in c)if((a=s.split(" "))[1]===r&&(o=c[l+" "+a[0]]||c["* "+a[0]])){!0===o?o=c[s]:!0!==c[s]&&(r=a[0],u.unshift(a[1]));break}if(!0!==o)if(o&&e.throws)t=o(t);else try{t=o(t)}catch(e){return{state:"parsererror",error:o?e:"No conversion from "+l+" to "+r}}}return{state:"success",data:t}}(p,w,C,d),d?(p.ifModified&&((x=C.getResponseHeader("Last-Modified"))&&(T.lastModified[s]=x),(x=C.getResponseHeader("etag"))&&(T.etag[s]=x)),204===t||"HEAD"===p.type?k="nocontent":304===t?k="notmodified":(k=w.state,h=w.data,d=!(g=w.error))):(g=k,!t&&k||(k="error",t<0&&(t=0))),C.status=t,C.statusText=(i||k)+"",d?y.resolveWith(f,[h,k,C]):y.rejectWith(f,[C,k,g]),C.statusCode(v),v=void 0,u&&m.trigger(d?"ajaxSuccess":"ajaxError",[C,p,d?h:g]),b.fireWith(f,[C,k]),u&&(m.trigger("ajaxComplete",[C,p]),--T.active||T.event.trigger("ajaxStop")))}return C},getJSON:function(e,t,i){return T.get(e,t,i,"json")},getScript:function(e,t){return T.get(e,void 0,t,"script")}}),T.each(["get","post"],(function(e,t){T[t]=function(e,i,n,s){return f(i)&&(s=s||n,n=i,i=void 0),T.ajax(T.extend({url:e,type:t,dataType:s,data:i,success:n},T.isPlainObject(e)&&e))}})),T.ajaxPrefilter((function(e){var t;for(t in e.headers)"content-type"===t.toLowerCase()&&(e.contentType=e.headers[t]||"")})),T._evalUrl=function(e,t,i){return T.ajax({url:e,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,converters:{"text script":function(){}},dataFilter:function(e){T.globalEval(e,t,i)}})},T.fn.extend({wrapAll:function(e){var t;return this[0]&&(f(e)&&(e=e.call(this[0])),t=T(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map((function(){for(var e=this;e.firstElementChild;)e=e.firstElementChild;return e})).append(this)),this},wrapInner:function(e){return f(e)?this.each((function(t){T(this).wrapInner(e.call(this,t))})):this.each((function(){var t=T(this),i=t.contents();i.length?i.wrapAll(e):t.append(e)}))},wrap:function(e){var t=f(e);return this.each((function(i){T(this).wrapAll(t?e.call(this,i):e)}))},unwrap:function(e){return this.parent(e).not("body").each((function(){T(this).replaceWith(this.childNodes)})),this}}),T.expr.pseudos.hidden=function(e){return!T.expr.pseudos.visible(e)},T.expr.pseudos.visible=function(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)},T.ajaxSettings.xhr=function(){try{return new e.XMLHttpRequest}catch(e){}};var Ft={0:200,1223:204},Bt=T.ajaxSettings.xhr();p.cors=!!Bt&&"withCredentials"in Bt,p.ajax=Bt=!!Bt,T.ajaxTransport((function(t){var i,n;if(p.cors||Bt&&!t.crossDomain)return{send:function(s,r){var o,a=t.xhr();if(a.open(t.type,t.url,t.async,t.username,t.password),t.xhrFields)for(o in t.xhrFields)a[o]=t.xhrFields[o];for(o in t.mimeType&&a.overrideMimeType&&a.overrideMimeType(t.mimeType),t.crossDomain||s["X-Requested-With"]||(s["X-Requested-With"]="XMLHttpRequest"),s)a.setRequestHeader(o,s[o]);i=function(e){return function(){i&&(i=n=a.onload=a.onerror=a.onabort=a.ontimeout=a.onreadystatechange=null,"abort"===e?a.abort():"error"===e?"number"!=typeof a.status?r(0,"error"):r(a.status,a.statusText):r(Ft[a.status]||a.status,a.statusText,"text"!==(a.responseType||"text")||"string"!=typeof a.responseText?{binary:a.response}:{text:a.responseText},a.getAllResponseHeaders()))}},a.onload=i(),n=a.onerror=a.ontimeout=i("error"),void 0!==a.onabort?a.onabort=n:a.onreadystatechange=function(){4===a.readyState&&e.setTimeout((function(){i&&n()}))},i=i("abort");try{a.send(t.hasContent&&t.data||null)}catch(e){if(i)throw e}},abort:function(){i&&i()}}})),T.ajaxPrefilter((function(e){e.crossDomain&&(e.contents.script=!1)})),T.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(e){return T.globalEval(e),e}}}),T.ajaxPrefilter("script",(function(e){void 0===e.cache&&(e.cache=!1),e.crossDomain&&(e.type="GET")})),T.ajaxTransport("script",(function(e){var t,i;if(e.crossDomain||e.scriptAttrs)return{send:function(n,s){t=T("
+
+
+
+
diff --git a/blocks/media/youtube/youtube.json b/blocks/media/youtube/youtube.json
new file mode 100644
index 00000000..9add3f4f
--- /dev/null
+++ b/blocks/media/youtube/youtube.json
@@ -0,0 +1,40 @@
+{
+ "name": "YouTube",
+ "id": "youtube",
+ "icon": "fab fa-youtube",
+ "category": "media",
+ "fields": [
+ {
+ "name": "YouTube Link",
+ "id": "link",
+ "type": "text",
+ "sync": true,
+ "default": "https://www.youtube.com/watch?v=9ZfN87gSjvI"
+ },
+ {
+ "name": "Border radius",
+ "id": "border_radius",
+ "type": "select",
+ "default": "",
+ "sync": true,
+ "options": {
+ "": "None",
+ "rounded": "Small",
+ "rounded-lg": "Large",
+ "rounded-xl": "XL",
+ "rounded-full": "Full"
+ }
+ },
+ {
+ "name": "Autoplay",
+ "id": "autoplay",
+ "type": "select",
+ "default": "",
+ "sync": true,
+ "options": {
+ "": "Disabled",
+ "enabled": "Enabled"
+ }
+ }
+ ]
+}
diff --git a/blocks/sweepbright/banner/banner.json b/blocks/sweepbright/banner/banner.json
index 826e1f2b..fa32472e 100644
--- a/blocks/sweepbright/banner/banner.json
+++ b/blocks/sweepbright/banner/banner.json
@@ -13,11 +13,38 @@
"type": "text",
"default": "Find your next home."
},
+ {
+ "name": "Media",
+ "id": "media",
+ "type": "select",
+ "default": "image",
+ "sync": true,
+ "options": {
+ "image": "Image",
+ "video": "Video"
+ }
+ },
+ {
+ "name": "Video",
+ "id": "video",
+ "type": "upload_video",
+ "default": "https://file-examples-com.github.io/uploads/2017/04/file_example_MP4_1280_10MG.mp4",
+ "condition": {
+ "media": [
+ "video"
+ ]
+ }
+ },
{
"name": "Image",
"id": "image",
"type": "upload_single",
- "default": "https://images.unsplash.com/photo-1493663284031-b7e3aefcae8e?ixid=MXwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHw%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=2250&q=80"
+ "default": "https://images.unsplash.com/photo-1493663284031-b7e3aefcae8e?ixid=MXwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHw%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=2250&q=80",
+ "condition": {
+ "media": [
+ "image"
+ ]
+ }
},
{
"name": "Search country",
diff --git a/blocks/sweepbright/banner/default/template.php b/blocks/sweepbright/banner/default/template.php
index 23bc5928..166c0afc 100644
--- a/blocks/sweepbright/banner/default/template.php
+++ b/blocks/sweepbright/banner/default/template.php
@@ -28,7 +28,14 @@