diff --git a/docs/assets/css/style.css b/docs/assets/css/style.css
index dad67c7..5dcc9f1 100644
--- a/docs/assets/css/style.css
+++ b/docs/assets/css/style.css
@@ -44,6 +44,11 @@ a:hover {
opacity: 1;
}
+.justified-text {
+ text-align: justify;
+ text-justify: inter-word;
+}
+
/* Header */
#header {
@@ -59,7 +64,17 @@ a:hover {
#footer{
background: rgba(40, 58, 90, 0.9);
+}
+
+#footer a{
color: #fff;
+ text-decoration: none;
+ padding: 5px 0px;
+ font-size: 20px;
+}
+
+#footer a:hover{
+ color: rgb(226, 199, 119);
}
/* Navigation Menu - Desktop Navigation */
@@ -248,6 +263,10 @@ a:hover {
color: #47b2e4;
}
+#home .animated {
+ animation: up-down 2s ease-in-out infinite alternate-reverse both;
+}
+
@media (max-width: 991px) {
#home {
height: 100vh;
diff --git a/docs/assets/js/main.js b/docs/assets/js/main.js
index bcc3bc8..7f714b6 100644
--- a/docs/assets/js/main.js
+++ b/docs/assets/js/main.js
@@ -27,6 +27,13 @@
}
}
+ /**
+ * Initiate glightbox
+ */
+ const glightbox = GLightbox({
+ selector: '.glightbox'
+ });
+
/**
* Easy on scroll event listener
*/
diff --git a/docs/assets/vendor/glightbox/css/glightbox.css b/docs/assets/vendor/glightbox/css/glightbox.css
new file mode 100644
index 0000000..120aa43
--- /dev/null
+++ b/docs/assets/vendor/glightbox/css/glightbox.css
@@ -0,0 +1,939 @@
+.glightbox-container {
+ width: 100%;
+ height: 100%;
+ position: fixed;
+ top: 0;
+ left: 0;
+ z-index: 999999 !important;
+ overflow: hidden;
+ -ms-touch-action: none;
+ touch-action: none;
+ -webkit-text-size-adjust: 100%;
+ -moz-text-size-adjust: 100%;
+ -ms-text-size-adjust: 100%;
+ text-size-adjust: 100%;
+ -webkit-backface-visibility: hidden;
+ backface-visibility: hidden;
+ outline: none;
+}
+
+.glightbox-container.inactive {
+ display: none;
+}
+
+.glightbox-container .gcontainer {
+ position: relative;
+ width: 100%;
+ height: 100%;
+ z-index: 9999;
+ overflow: hidden;
+}
+
+.glightbox-container .gslider {
+ -webkit-transition: -webkit-transform 0.4s ease;
+ transition: -webkit-transform 0.4s ease;
+ transition: transform 0.4s ease;
+ transition: transform 0.4s ease, -webkit-transform 0.4s ease;
+ height: 100%;
+ left: 0;
+ top: 0;
+ width: 100%;
+ position: relative;
+ overflow: hidden;
+ display: -webkit-box !important;
+ display: -ms-flexbox !important;
+ display: flex !important;
+ -webkit-box-pack: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+}
+
+.glightbox-container .gslide {
+ width: 100%;
+ position: absolute;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-box-pack: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+ opacity: 0;
+}
+
+.glightbox-container .gslide.current {
+ opacity: 1;
+ z-index: 99999;
+ position: relative;
+}
+
+.glightbox-container .gslide.prev {
+ opacity: 1;
+ z-index: 9999;
+}
+
+.glightbox-container .gslide-inner-content {
+ width: 100%;
+}
+
+.glightbox-container .ginner-container {
+ position: relative;
+ width: 100%;
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-pack: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: column;
+ flex-direction: column;
+ max-width: 100%;
+ margin: auto;
+ height: 100vh;
+}
+
+.glightbox-container .ginner-container.gvideo-container {
+ width: 100%;
+}
+
+.glightbox-container .ginner-container.desc-bottom,
+ .glightbox-container .ginner-container.desc-top {
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: column;
+ flex-direction: column;
+}
+
+.glightbox-container .ginner-container.desc-left,
+ .glightbox-container .ginner-container.desc-right {
+ max-width: 100% !important;
+}
+
+.gslide iframe,
+ .gslide video {
+ outline: none !important;
+ border: none;
+ min-height: 165px;
+ -webkit-overflow-scrolling: touch;
+ -ms-touch-action: auto;
+ touch-action: auto;
+}
+
+.gslide:not(.current) {
+ pointer-events: none;
+}
+
+.gslide-image {
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+}
+
+.gslide-image img {
+ max-height: 100vh;
+ display: block;
+ padding: 0;
+ float: none;
+ outline: none;
+ border: none;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+ max-width: 100vw;
+ width: auto;
+ height: auto;
+ -o-object-fit: cover;
+ object-fit: cover;
+ -ms-touch-action: none;
+ touch-action: none;
+ margin: auto;
+ min-width: 200px;
+}
+
+.desc-top .gslide-image img,
+ .desc-bottom .gslide-image img {
+ width: auto;
+}
+
+.desc-left .gslide-image img,
+ .desc-right .gslide-image img {
+ width: auto;
+ max-width: 100%;
+}
+
+.gslide-image img.zoomable {
+ position: relative;
+}
+
+.gslide-image img.dragging {
+ cursor: -webkit-grabbing !important;
+ cursor: grabbing !important;
+ -webkit-transition: none;
+ transition: none;
+}
+
+.gslide-video {
+ position: relative;
+ max-width: 100vh;
+ width: 100% !important;
+}
+
+.gslide-video .plyr__poster-enabled.plyr--loading .plyr__poster {
+ display: none;
+}
+
+.gslide-video .gvideo-wrapper {
+ width: 100%;
+ /* max-width: 160vmin; */
+ margin: auto;
+}
+
+.gslide-video::before {
+ content: '';
+ position: absolute;
+ width: 100%;
+ height: 100%;
+ background: rgba(255, 0, 0, 0.34);
+ display: none;
+}
+
+.gslide-video.playing::before {
+ display: none;
+}
+
+.gslide-video.fullscreen {
+ max-width: 100% !important;
+ min-width: 100%;
+ height: 75vh;
+}
+
+.gslide-video.fullscreen video {
+ max-width: 100% !important;
+ width: 100% !important;
+}
+
+.gslide-inline {
+ background: #fff;
+ text-align: left;
+ max-height: calc(100vh - 40px);
+ overflow: auto;
+ max-width: 100%;
+ margin: auto;
+}
+
+.gslide-inline .ginlined-content {
+ padding: 20px;
+ width: 100%;
+}
+
+.gslide-inline .dragging {
+ cursor: -webkit-grabbing !important;
+ cursor: grabbing !important;
+ -webkit-transition: none;
+ transition: none;
+}
+
+.ginlined-content {
+ overflow: auto;
+ display: block !important;
+ opacity: 1;
+}
+
+.gslide-external {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ width: 100%;
+ min-width: 100%;
+ background: #fff;
+ padding: 0;
+ overflow: auto;
+ max-height: 75vh;
+ height: 100%;
+}
+
+.gslide-media {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ width: auto;
+}
+
+.zoomed .gslide-media {
+ -webkit-box-shadow: none !important;
+ box-shadow: none !important;
+}
+
+.desc-top .gslide-media,
+ .desc-bottom .gslide-media {
+ margin: 0 auto;
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: column;
+ flex-direction: column;
+}
+
+.gslide-description {
+ position: relative;
+ -webkit-box-flex: 1;
+ -ms-flex: 1 0 100%;
+ flex: 1 0 100%;
+}
+
+.gslide-description.description-left,
+ .gslide-description.description-right {
+ max-width: 100%;
+}
+
+.gslide-description.description-bottom,
+ .gslide-description.description-top {
+ margin: 0 auto;
+ width: 100%;
+}
+
+.gslide-description p {
+ margin-bottom: 12px;
+}
+
+.gslide-description p:last-child {
+ margin-bottom: 0;
+}
+
+.zoomed .gslide-description {
+ display: none;
+}
+
+.glightbox-button-hidden {
+ display: none;
+}
+
+
+/*
+ * Description for mobiles
+ * something like facebook does the description
+ * for the photos
+*/
+
+.glightbox-mobile .glightbox-container .gslide-description {
+ height: auto !important;
+ width: 100%;
+ position: absolute;
+ bottom: 0;
+ padding: 19px 11px;
+ max-width: 100vw !important;
+ -webkit-box-ordinal-group: 3 !important;
+ -ms-flex-order: 2 !important;
+ order: 2 !important;
+ max-height: 78vh;
+ overflow: auto !important;
+ background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.75)));
+ background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
+ -webkit-transition: opacity 0.3s linear;
+ transition: opacity 0.3s linear;
+ padding-bottom: 50px;
+}
+
+.glightbox-mobile .glightbox-container .gslide-title {
+ color: #fff;
+ font-size: 1em;
+}
+
+.glightbox-mobile .glightbox-container .gslide-desc {
+ color: #a1a1a1;
+}
+
+.glightbox-mobile .glightbox-container .gslide-desc a {
+ color: #fff;
+ font-weight: bold;
+}
+
+.glightbox-mobile .glightbox-container .gslide-desc * {
+ color: inherit;
+}
+
+.glightbox-mobile .glightbox-container .gslide-desc .desc-more {
+ color: #fff;
+ opacity: 0.4;
+}
+
+.gdesc-open .gslide-media {
+ -webkit-transition: opacity 0.5s ease;
+ transition: opacity 0.5s ease;
+ opacity: 0.4;
+}
+
+.gdesc-open .gdesc-inner {
+ padding-bottom: 30px;
+}
+
+.gdesc-closed .gslide-media {
+ -webkit-transition: opacity 0.5s ease;
+ transition: opacity 0.5s ease;
+ opacity: 1;
+}
+
+.greset {
+ -webkit-transition: all 0.3s ease;
+ transition: all 0.3s ease;
+}
+
+.gabsolute {
+ position: absolute;
+}
+
+.grelative {
+ position: relative;
+}
+
+.glightbox-desc {
+ display: none !important;
+}
+
+.glightbox-open {
+ overflow: hidden;
+}
+
+.gloader {
+ height: 25px;
+ width: 25px;
+ -webkit-animation: lightboxLoader 0.8s infinite linear;
+ animation: lightboxLoader 0.8s infinite linear;
+ border: 2px solid #fff;
+ border-right-color: transparent;
+ border-radius: 50%;
+ position: absolute;
+ display: block;
+ z-index: 9999;
+ left: 0;
+ right: 0;
+ margin: 0 auto;
+ top: 47%;
+}
+
+.goverlay {
+ width: 100%;
+ height: calc(100vh + 1px);
+ position: fixed;
+ top: -1px;
+ left: 0;
+ background: #000;
+ will-change: opacity;
+}
+
+.glightbox-mobile .goverlay {
+ background: #000;
+}
+
+.gprev,
+.gnext,
+.gclose {
+ z-index: 99999;
+ cursor: pointer;
+ width: 26px;
+ height: 44px;
+ border: none;
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-pack: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: column;
+ flex-direction: column;
+}
+
+.gprev svg,
+.gnext svg,
+.gclose svg {
+ display: block;
+ width: 25px;
+ height: auto;
+ margin: 0;
+ padding: 0;
+}
+
+.gprev.disabled,
+.gnext.disabled,
+.gclose.disabled {
+ opacity: 0.1;
+}
+
+.gprev .garrow,
+.gnext .garrow,
+.gclose .garrow {
+ stroke: #fff;
+}
+
+.gbtn.focused {
+ outline: 2px solid #0f3d81;
+}
+
+iframe.wait-autoplay {
+ opacity: 0;
+}
+
+.glightbox-closing .gnext,
+ .glightbox-closing .gprev,
+ .glightbox-closing .gclose {
+ opacity: 0 !important;
+}
+
+
+/*Skin */
+
+.glightbox-clean .gslide-description {
+ background: #fff;
+}
+
+.glightbox-clean .gdesc-inner {
+ padding: 22px 20px;
+}
+
+.glightbox-clean .gslide-title {
+ font-size: 1em;
+ font-weight: normal;
+ font-family: arial;
+ color: #000;
+ margin-bottom: 19px;
+ line-height: 1.4em;
+}
+
+.glightbox-clean .gslide-desc {
+ font-size: 0.86em;
+ margin-bottom: 0;
+ font-family: arial;
+ line-height: 1.4em;
+}
+
+.glightbox-clean .gslide-video {
+ background: #000;
+}
+
+.glightbox-clean .gprev,
+ .glightbox-clean .gnext,
+ .glightbox-clean .gclose {
+ background-color: rgba(0, 0, 0, 0.75);
+ border-radius: 4px;
+}
+
+.glightbox-clean .gprev path,
+.glightbox-clean .gnext path,
+.glightbox-clean .gclose path {
+ fill: #fff;
+}
+
+.glightbox-clean .gprev {
+ position: absolute;
+ top: -100%;
+ left: 30px;
+ width: 40px;
+ height: 50px;
+}
+
+.glightbox-clean .gnext {
+ position: absolute;
+ top: -100%;
+ right: 30px;
+ width: 40px;
+ height: 50px;
+}
+
+.glightbox-clean .gclose {
+ width: 35px;
+ height: 35px;
+ top: 15px;
+ right: 10px;
+ position: absolute;
+}
+
+.glightbox-clean .gclose svg {
+ width: 18px;
+ height: auto;
+}
+
+.glightbox-clean .gclose:hover {
+ opacity: 1;
+}
+
+
+/*CSS Animations*/
+
+.gfadeIn {
+ -webkit-animation: gfadeIn 0.5s ease;
+ animation: gfadeIn 0.5s ease;
+}
+
+.gfadeOut {
+ -webkit-animation: gfadeOut 0.5s ease;
+ animation: gfadeOut 0.5s ease;
+}
+
+.gslideOutLeft {
+ -webkit-animation: gslideOutLeft 0.3s ease;
+ animation: gslideOutLeft 0.3s ease;
+}
+
+.gslideInLeft {
+ -webkit-animation: gslideInLeft 0.3s ease;
+ animation: gslideInLeft 0.3s ease;
+}
+
+.gslideOutRight {
+ -webkit-animation: gslideOutRight 0.3s ease;
+ animation: gslideOutRight 0.3s ease;
+}
+
+.gslideInRight {
+ -webkit-animation: gslideInRight 0.3s ease;
+ animation: gslideInRight 0.3s ease;
+}
+
+.gzoomIn {
+ -webkit-animation: gzoomIn 0.5s ease;
+ animation: gzoomIn 0.5s ease;
+}
+
+.gzoomOut {
+ -webkit-animation: gzoomOut 0.5s ease;
+ animation: gzoomOut 0.5s ease;
+}
+
+@-webkit-keyframes lightboxLoader {
+ 0% {
+ -webkit-transform: rotate(0deg);
+ transform: rotate(0deg);
+ }
+ 100% {
+ -webkit-transform: rotate(360deg);
+ transform: rotate(360deg);
+ }
+}
+
+@keyframes lightboxLoader {
+ 0% {
+ -webkit-transform: rotate(0deg);
+ transform: rotate(0deg);
+ }
+ 100% {
+ -webkit-transform: rotate(360deg);
+ transform: rotate(360deg);
+ }
+}
+
+@-webkit-keyframes gfadeIn {
+ from {
+ opacity: 0;
+ }
+ to {
+ opacity: 1;
+ }
+}
+
+@keyframes gfadeIn {
+ from {
+ opacity: 0;
+ }
+ to {
+ opacity: 1;
+ }
+}
+
+@-webkit-keyframes gfadeOut {
+ from {
+ opacity: 1;
+ }
+ to {
+ opacity: 0;
+ }
+}
+
+@keyframes gfadeOut {
+ from {
+ opacity: 1;
+ }
+ to {
+ opacity: 0;
+ }
+}
+
+@-webkit-keyframes gslideInLeft {
+ from {
+ opacity: 0;
+ -webkit-transform: translate3d(-60%, 0, 0);
+ transform: translate3d(-60%, 0, 0);
+ }
+ to {
+ visibility: visible;
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ opacity: 1;
+ }
+}
+
+@keyframes gslideInLeft {
+ from {
+ opacity: 0;
+ -webkit-transform: translate3d(-60%, 0, 0);
+ transform: translate3d(-60%, 0, 0);
+ }
+ to {
+ visibility: visible;
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ opacity: 1;
+ }
+}
+
+@-webkit-keyframes gslideOutLeft {
+ from {
+ opacity: 1;
+ visibility: visible;
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ }
+ to {
+ -webkit-transform: translate3d(-60%, 0, 0);
+ transform: translate3d(-60%, 0, 0);
+ opacity: 0;
+ visibility: hidden;
+ }
+}
+
+@keyframes gslideOutLeft {
+ from {
+ opacity: 1;
+ visibility: visible;
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ }
+ to {
+ -webkit-transform: translate3d(-60%, 0, 0);
+ transform: translate3d(-60%, 0, 0);
+ opacity: 0;
+ visibility: hidden;
+ }
+}
+
+@-webkit-keyframes gslideInRight {
+ from {
+ opacity: 0;
+ visibility: visible;
+ -webkit-transform: translate3d(60%, 0, 0);
+ transform: translate3d(60%, 0, 0);
+ }
+ to {
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ opacity: 1;
+ }
+}
+
+@keyframes gslideInRight {
+ from {
+ opacity: 0;
+ visibility: visible;
+ -webkit-transform: translate3d(60%, 0, 0);
+ transform: translate3d(60%, 0, 0);
+ }
+ to {
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ opacity: 1;
+ }
+}
+
+@-webkit-keyframes gslideOutRight {
+ from {
+ opacity: 1;
+ visibility: visible;
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ }
+ to {
+ -webkit-transform: translate3d(60%, 0, 0);
+ transform: translate3d(60%, 0, 0);
+ opacity: 0;
+ }
+}
+
+@keyframes gslideOutRight {
+ from {
+ opacity: 1;
+ visibility: visible;
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ }
+ to {
+ -webkit-transform: translate3d(60%, 0, 0);
+ transform: translate3d(60%, 0, 0);
+ opacity: 0;
+ }
+}
+
+@-webkit-keyframes gzoomIn {
+ from {
+ opacity: 0;
+ -webkit-transform: scale3d(0.3, 0.3, 0.3);
+ transform: scale3d(0.3, 0.3, 0.3);
+ }
+ to {
+ opacity: 1;
+ }
+}
+
+@keyframes gzoomIn {
+ from {
+ opacity: 0;
+ -webkit-transform: scale3d(0.3, 0.3, 0.3);
+ transform: scale3d(0.3, 0.3, 0.3);
+ }
+ to {
+ opacity: 1;
+ }
+}
+
+@-webkit-keyframes gzoomOut {
+ from {
+ opacity: 1;
+ }
+ 50% {
+ opacity: 0;
+ -webkit-transform: scale3d(0.3, 0.3, 0.3);
+ transform: scale3d(0.3, 0.3, 0.3);
+ }
+ to {
+ opacity: 0;
+ }
+}
+
+@keyframes gzoomOut {
+ from {
+ opacity: 1;
+ }
+ 50% {
+ opacity: 0;
+ -webkit-transform: scale3d(0.3, 0.3, 0.3);
+ transform: scale3d(0.3, 0.3, 0.3);
+ }
+ to {
+ opacity: 0;
+ }
+}
+
+@media (min-width: 769px) {
+ .glightbox-container .ginner-container {
+ width: auto;
+ height: auto;
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: row;
+ flex-direction: row;
+ }
+ .glightbox-container .ginner-container.desc-top .gslide-description {
+ -webkit-box-ordinal-group: 1;
+ -ms-flex-order: 0;
+ order: 0;
+ }
+ .glightbox-container .ginner-container.desc-top .gslide-image,
+ .glightbox-container .ginner-container.desc-top .gslide-image img {
+ -webkit-box-ordinal-group: 2;
+ -ms-flex-order: 1;
+ order: 1;
+ }
+ .glightbox-container .ginner-container.desc-left .gslide-description {
+ -webkit-box-ordinal-group: 1;
+ -ms-flex-order: 0;
+ order: 0;
+ }
+ .glightbox-container .ginner-container.desc-left .gslide-image {
+ -webkit-box-ordinal-group: 2;
+ -ms-flex-order: 1;
+ order: 1;
+ }
+ .gslide-image img {
+ max-height: 97vh;
+ max-width: 100%;
+ }
+ .gslide-image img.zoomable {
+ cursor: -webkit-zoom-in;
+ cursor: zoom-in;
+ }
+ .zoomed .gslide-image img.zoomable {
+ cursor: -webkit-grab;
+ cursor: grab;
+ }
+ .gslide-inline {
+ max-height: 95vh;
+ }
+ .gslide-external {
+ max-height: 100vh;
+ }
+ .gslide-description.description-left,
+ .gslide-description.description-right {
+ max-width: 275px;
+ }
+ .glightbox-open {
+ height: auto;
+ }
+ .goverlay {
+ background: rgba(0, 0, 0, 0.92);
+ }
+ .glightbox-clean .gslide-media {
+ -webkit-box-shadow: 1px 2px 9px 0px rgba(0, 0, 0, 0.65);
+ box-shadow: 1px 2px 9px 0px rgba(0, 0, 0, 0.65);
+ }
+ .glightbox-clean .description-left .gdesc-inner,
+.glightbox-clean .description-right .gdesc-inner {
+ position: absolute;
+ height: 100%;
+ overflow-y: auto;
+ }
+ .glightbox-clean .gprev,
+ .glightbox-clean .gnext,
+ .glightbox-clean .gclose {
+ background-color: rgba(0, 0, 0, 0.32);
+ }
+ .glightbox-clean .gprev:hover,
+.glightbox-clean .gnext:hover,
+.glightbox-clean .gclose:hover {
+ background-color: rgba(0, 0, 0, 0.7);
+ }
+ .glightbox-clean .gprev {
+ top: 45%;
+ }
+ .glightbox-clean .gnext {
+ top: 45%;
+ }
+}
+
+@media (min-width: 992px) {
+ .glightbox-clean .gclose {
+ opacity: 0.7;
+ right: 20px;
+ }
+}
+
+@media screen and (max-height: 420px) {
+ .goverlay {
+ background: #000;
+ }
+}
diff --git a/docs/assets/vendor/glightbox/css/glightbox.min.css b/docs/assets/vendor/glightbox/css/glightbox.min.css
new file mode 100644
index 0000000..3c9ff87
--- /dev/null
+++ b/docs/assets/vendor/glightbox/css/glightbox.min.css
@@ -0,0 +1 @@
+.glightbox-container{width:100%;height:100%;position:fixed;top:0;left:0;z-index:999999!important;overflow:hidden;-ms-touch-action:none;touch-action:none;-webkit-text-size-adjust:100%;-moz-text-size-adjust:100%;-ms-text-size-adjust:100%;text-size-adjust:100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;outline:0}.glightbox-container.inactive{display:none}.glightbox-container .gcontainer{position:relative;width:100%;height:100%;z-index:9999;overflow:hidden}.glightbox-container .gslider{-webkit-transition:-webkit-transform .4s ease;transition:-webkit-transform .4s ease;transition:transform .4s ease;transition:transform .4s ease,-webkit-transform .4s ease;height:100%;left:0;top:0;width:100%;position:relative;overflow:hidden;display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.glightbox-container .gslide{width:100%;position:absolute;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;opacity:0}.glightbox-container .gslide.current{opacity:1;z-index:99999;position:relative}.glightbox-container .gslide.prev{opacity:1;z-index:9999}.glightbox-container .gslide-inner-content{width:100%}.glightbox-container .ginner-container{position:relative;width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;max-width:100%;margin:auto;height:100vh}.glightbox-container .ginner-container.gvideo-container{width:100%}.glightbox-container .ginner-container.desc-bottom,.glightbox-container .ginner-container.desc-top{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.glightbox-container .ginner-container.desc-left,.glightbox-container .ginner-container.desc-right{max-width:100%!important}.gslide iframe,.gslide video{outline:0!important;border:none;min-height:165px;-webkit-overflow-scrolling:touch;-ms-touch-action:auto;touch-action:auto}.gslide:not(.current){pointer-events:none}.gslide-image{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.gslide-image img{max-height:100vh;display:block;padding:0;float:none;outline:0;border:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;max-width:100vw;width:auto;height:auto;-o-object-fit:cover;object-fit:cover;-ms-touch-action:none;touch-action:none;margin:auto;min-width:200px}.desc-bottom .gslide-image img,.desc-top .gslide-image img{width:auto}.desc-left .gslide-image img,.desc-right .gslide-image img{width:auto;max-width:100%}.gslide-image img.zoomable{position:relative}.gslide-image img.dragging{cursor:-webkit-grabbing!important;cursor:grabbing!important;-webkit-transition:none;transition:none}.gslide-video{position:relative;max-width:100vh;width:100%!important}.gslide-video .plyr__poster-enabled.plyr--loading .plyr__poster{display:none}.gslide-video .gvideo-wrapper{width:100%;margin:auto}.gslide-video::before{content:'';position:absolute;width:100%;height:100%;background:rgba(255,0,0,.34);display:none}.gslide-video.playing::before{display:none}.gslide-video.fullscreen{max-width:100%!important;min-width:100%;height:75vh}.gslide-video.fullscreen video{max-width:100%!important;width:100%!important}.gslide-inline{background:#fff;text-align:left;max-height:calc(100vh - 40px);overflow:auto;max-width:100%;margin:auto}.gslide-inline .ginlined-content{padding:20px;width:100%}.gslide-inline .dragging{cursor:-webkit-grabbing!important;cursor:grabbing!important;-webkit-transition:none;transition:none}.ginlined-content{overflow:auto;display:block!important;opacity:1}.gslide-external{display:-webkit-box;display:-ms-flexbox;display:flex;width:100%;min-width:100%;background:#fff;padding:0;overflow:auto;max-height:75vh;height:100%}.gslide-media{display:-webkit-box;display:-ms-flexbox;display:flex;width:auto}.zoomed .gslide-media{-webkit-box-shadow:none!important;box-shadow:none!important}.desc-bottom .gslide-media,.desc-top .gslide-media{margin:0 auto;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.gslide-description{position:relative;-webkit-box-flex:1;-ms-flex:1 0 100%;flex:1 0 100%}.gslide-description.description-left,.gslide-description.description-right{max-width:100%}.gslide-description.description-bottom,.gslide-description.description-top{margin:0 auto;width:100%}.gslide-description p{margin-bottom:12px}.gslide-description p:last-child{margin-bottom:0}.zoomed .gslide-description{display:none}.glightbox-button-hidden{display:none}.glightbox-mobile .glightbox-container .gslide-description{height:auto!important;width:100%;position:absolute;bottom:0;padding:19px 11px;max-width:100vw!important;-webkit-box-ordinal-group:3!important;-ms-flex-order:2!important;order:2!important;max-height:78vh;overflow:auto!important;background:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,0)),to(rgba(0,0,0,.75)));background:linear-gradient(to bottom,rgba(0,0,0,0) 0,rgba(0,0,0,.75) 100%);-webkit-transition:opacity .3s linear;transition:opacity .3s linear;padding-bottom:50px}.glightbox-mobile .glightbox-container .gslide-title{color:#fff;font-size:1em}.glightbox-mobile .glightbox-container .gslide-desc{color:#a1a1a1}.glightbox-mobile .glightbox-container .gslide-desc a{color:#fff;font-weight:700}.glightbox-mobile .glightbox-container .gslide-desc *{color:inherit}.glightbox-mobile .glightbox-container .gslide-desc .desc-more{color:#fff;opacity:.4}.gdesc-open .gslide-media{-webkit-transition:opacity .5s ease;transition:opacity .5s ease;opacity:.4}.gdesc-open .gdesc-inner{padding-bottom:30px}.gdesc-closed .gslide-media{-webkit-transition:opacity .5s ease;transition:opacity .5s ease;opacity:1}.greset{-webkit-transition:all .3s ease;transition:all .3s ease}.gabsolute{position:absolute}.grelative{position:relative}.glightbox-desc{display:none!important}.glightbox-open{overflow:hidden}.gloader{height:25px;width:25px;-webkit-animation:lightboxLoader .8s infinite linear;animation:lightboxLoader .8s infinite linear;border:2px solid #fff;border-right-color:transparent;border-radius:50%;position:absolute;display:block;z-index:9999;left:0;right:0;margin:0 auto;top:47%}.goverlay{width:100%;height:calc(100vh + 1px);position:fixed;top:-1px;left:0;background:#000;will-change:opacity}.glightbox-mobile .goverlay{background:#000}.gclose,.gnext,.gprev{z-index:99999;cursor:pointer;width:26px;height:44px;border:none;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.gclose svg,.gnext svg,.gprev svg{display:block;width:25px;height:auto;margin:0;padding:0}.gclose.disabled,.gnext.disabled,.gprev.disabled{opacity:.1}.gclose .garrow,.gnext .garrow,.gprev .garrow{stroke:#fff}.gbtn.focused{outline:2px solid #0f3d81}iframe.wait-autoplay{opacity:0}.glightbox-closing .gclose,.glightbox-closing .gnext,.glightbox-closing .gprev{opacity:0!important}.glightbox-clean .gslide-description{background:#fff}.glightbox-clean .gdesc-inner{padding:22px 20px}.glightbox-clean .gslide-title{font-size:1em;font-weight:400;font-family:arial;color:#000;margin-bottom:19px;line-height:1.4em}.glightbox-clean .gslide-desc{font-size:.86em;margin-bottom:0;font-family:arial;line-height:1.4em}.glightbox-clean .gslide-video{background:#000}.glightbox-clean .gclose,.glightbox-clean .gnext,.glightbox-clean .gprev{background-color:rgba(0,0,0,.75);border-radius:4px}.glightbox-clean .gclose path,.glightbox-clean .gnext path,.glightbox-clean .gprev path{fill:#fff}.glightbox-clean .gprev{position:absolute;top:-100%;left:30px;width:40px;height:50px}.glightbox-clean .gnext{position:absolute;top:-100%;right:30px;width:40px;height:50px}.glightbox-clean .gclose{width:35px;height:35px;top:15px;right:10px;position:absolute}.glightbox-clean .gclose svg{width:18px;height:auto}.glightbox-clean .gclose:hover{opacity:1}.gfadeIn{-webkit-animation:gfadeIn .5s ease;animation:gfadeIn .5s ease}.gfadeOut{-webkit-animation:gfadeOut .5s ease;animation:gfadeOut .5s ease}.gslideOutLeft{-webkit-animation:gslideOutLeft .3s ease;animation:gslideOutLeft .3s ease}.gslideInLeft{-webkit-animation:gslideInLeft .3s ease;animation:gslideInLeft .3s ease}.gslideOutRight{-webkit-animation:gslideOutRight .3s ease;animation:gslideOutRight .3s ease}.gslideInRight{-webkit-animation:gslideInRight .3s ease;animation:gslideInRight .3s ease}.gzoomIn{-webkit-animation:gzoomIn .5s ease;animation:gzoomIn .5s ease}.gzoomOut{-webkit-animation:gzoomOut .5s ease;animation:gzoomOut .5s ease}@-webkit-keyframes lightboxLoader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes lightboxLoader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@-webkit-keyframes gfadeIn{from{opacity:0}to{opacity:1}}@keyframes gfadeIn{from{opacity:0}to{opacity:1}}@-webkit-keyframes gfadeOut{from{opacity:1}to{opacity:0}}@keyframes gfadeOut{from{opacity:1}to{opacity:0}}@-webkit-keyframes gslideInLeft{from{opacity:0;-webkit-transform:translate3d(-60%,0,0);transform:translate3d(-60%,0,0)}to{visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes gslideInLeft{from{opacity:0;-webkit-transform:translate3d(-60%,0,0);transform:translate3d(-60%,0,0)}to{visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@-webkit-keyframes gslideOutLeft{from{opacity:1;visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{-webkit-transform:translate3d(-60%,0,0);transform:translate3d(-60%,0,0);opacity:0;visibility:hidden}}@keyframes gslideOutLeft{from{opacity:1;visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{-webkit-transform:translate3d(-60%,0,0);transform:translate3d(-60%,0,0);opacity:0;visibility:hidden}}@-webkit-keyframes gslideInRight{from{opacity:0;visibility:visible;-webkit-transform:translate3d(60%,0,0);transform:translate3d(60%,0,0)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes gslideInRight{from{opacity:0;visibility:visible;-webkit-transform:translate3d(60%,0,0);transform:translate3d(60%,0,0)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@-webkit-keyframes gslideOutRight{from{opacity:1;visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{-webkit-transform:translate3d(60%,0,0);transform:translate3d(60%,0,0);opacity:0}}@keyframes gslideOutRight{from{opacity:1;visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{-webkit-transform:translate3d(60%,0,0);transform:translate3d(60%,0,0);opacity:0}}@-webkit-keyframes gzoomIn{from{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:1}}@keyframes gzoomIn{from{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:1}}@-webkit-keyframes gzoomOut{from{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}@keyframes gzoomOut{from{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}@media (min-width:769px){.glightbox-container .ginner-container{width:auto;height:auto;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.glightbox-container .ginner-container.desc-top .gslide-description{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.glightbox-container .ginner-container.desc-top .gslide-image,.glightbox-container .ginner-container.desc-top .gslide-image img{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.glightbox-container .ginner-container.desc-left .gslide-description{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.glightbox-container .ginner-container.desc-left .gslide-image{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.gslide-image img{max-height:97vh;max-width:100%}.gslide-image img.zoomable{cursor:-webkit-zoom-in;cursor:zoom-in}.zoomed .gslide-image img.zoomable{cursor:-webkit-grab;cursor:grab}.gslide-inline{max-height:95vh}.gslide-external{max-height:100vh}.gslide-description.description-left,.gslide-description.description-right{max-width:275px}.glightbox-open{height:auto}.goverlay{background:rgba(0,0,0,.92)}.glightbox-clean .gslide-media{-webkit-box-shadow:1px 2px 9px 0 rgba(0,0,0,.65);box-shadow:1px 2px 9px 0 rgba(0,0,0,.65)}.glightbox-clean .description-left .gdesc-inner,.glightbox-clean .description-right .gdesc-inner{position:absolute;height:100%;overflow-y:auto}.glightbox-clean .gclose,.glightbox-clean .gnext,.glightbox-clean .gprev{background-color:rgba(0,0,0,.32)}.glightbox-clean .gclose:hover,.glightbox-clean .gnext:hover,.glightbox-clean .gprev:hover{background-color:rgba(0,0,0,.7)}.glightbox-clean .gprev{top:45%}.glightbox-clean .gnext{top:45%}}@media (min-width:992px){.glightbox-clean .gclose{opacity:.7;right:20px}}@media screen and (max-height:420px){.goverlay{background:#000}}
\ No newline at end of file
diff --git a/docs/assets/vendor/glightbox/css/plyr.css b/docs/assets/vendor/glightbox/css/plyr.css
new file mode 100644
index 0000000..e4f616d
--- /dev/null
+++ b/docs/assets/vendor/glightbox/css/plyr.css
@@ -0,0 +1,1799 @@
+@charset "UTF-8";
+
+@-webkit-keyframes plyr-progress {
+ to {
+ background-position: 25px 0;
+ background-position: 25px 0;
+ background-position: var(--plyr-progress-loading-size, 25px) 0;
+ }
+}
+
+@keyframes plyr-progress {
+ to {
+ background-position: 25px 0;
+ background-position: 25px 0;
+ background-position: var(--plyr-progress-loading-size, 25px) 0;
+ }
+}
+
+@-webkit-keyframes plyr-popup {
+ 0% {
+ opacity: 0.5;
+ -webkit-transform: translateY(10px);
+ transform: translateY(10px);
+ }
+ to {
+ opacity: 1;
+ -webkit-transform: translateY(0);
+ transform: translateY(0);
+ }
+}
+
+@keyframes plyr-popup {
+ 0% {
+ opacity: 0.5;
+ -webkit-transform: translateY(10px);
+ transform: translateY(10px);
+ }
+ to {
+ opacity: 1;
+ -webkit-transform: translateY(0);
+ transform: translateY(0);
+ }
+}
+
+@-webkit-keyframes plyr-fade-in {
+ 0% {
+ opacity: 0;
+ }
+ to {
+ opacity: 1;
+ }
+}
+
+@keyframes plyr-fade-in {
+ 0% {
+ opacity: 0;
+ }
+ to {
+ opacity: 1;
+ }
+}
+
+.plyr {
+ -moz-osx-font-smoothing: grayscale;
+ -webkit-font-smoothing: antialiased;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ direction: ltr;
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: column;
+ flex-direction: column;
+ font-family: inherit;
+ font-family: inherit;
+ font-family: var(--plyr-font-family, inherit);
+ -webkit-font-feature-settings: "tnum";
+ font-feature-settings: "tnum";
+ font-variant-numeric: tabular-nums;
+ font-weight: 400;
+ font-weight: 400;
+ font-weight: var(--plyr-font-weight-regular, 400);
+ line-height: 1.7;
+ line-height: 1.7;
+ line-height: var(--plyr-line-height, 1.7);
+ max-width: 100%;
+ min-width: 200px;
+ position: relative;
+ text-shadow: none;
+ -webkit-transition: -webkit-box-shadow 0.3s ease;
+ transition: -webkit-box-shadow 0.3s ease;
+ transition: box-shadow 0.3s ease;
+ transition: box-shadow 0.3s ease, -webkit-box-shadow 0.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 {
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+}
+
+.plyr--full-ui *,
+.plyr--full-ui :after,
+.plyr--full-ui :before {
+ -webkit-box-sizing: inherit;
+ box-sizing: inherit;
+}
+
+.plyr--full-ui a,
+.plyr--full-ui button,
+.plyr--full-ui input,
+.plyr--full-ui label {
+ -ms-touch-action: manipulation;
+ touch-action: manipulation;
+}
+
+.plyr__badge {
+ background: #4a5464;
+ background: #4a5464;
+ background: var(--plyr-badge-background, #4a5464);
+ border-radius: 2px;
+ border-radius: 2px;
+ border-radius: var(--plyr-badge-border-radius, 2px);
+ color: #fff;
+ color: #fff;
+ color: var(--plyr-badge-text-color, #fff);
+ font-size: 9px;
+ 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 {
+ -webkit-animation: plyr-fade-in 0.3s ease;
+ animation: plyr-fade-in 0.3s ease;
+ bottom: 0;
+ display: none;
+ font-size: 13px;
+ font-size: 13px;
+ font-size: var(--plyr-font-size-small, 13px);
+ left: 0;
+ padding: 10px;
+ padding: 10px;
+ padding: var(--plyr-control-spacing, 10px);
+ position: absolute;
+ text-align: center;
+ -webkit-transition: -webkit-transform 0.4s ease-in-out;
+ transition: -webkit-transform 0.4s ease-in-out;
+ transition: transform 0.4s ease-in-out;
+ transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
+ width: 100%;
+}
+
+.plyr__captions span:empty {
+ display: none;
+}
+
+.plyr--captions-active .plyr__captions {
+ display: block;
+}
+
+.plyr:not(.plyr--hide-controls) .plyr__controls:not(:empty) ~ .plyr__captions {
+ -webkit-transform: translateY(-40px);
+ transform: translateY(-40px);
+ -webkit-transform: translateY(calc(10px * -4));
+ transform: translateY(calc(10px * -4));
+ -webkit-transform: translateY(calc(var(--plyr-control-spacing, 10px) * -4));
+ transform: translateY(calc(var(--plyr-control-spacing, 10px) * -4));
+}
+
+.plyr__caption {
+ background: rgba(0, 0, 0, 0.8);
+ background: rgba(0, 0, 0, 0.8);
+ background: var(--plyr-captions-background, rgba(0, 0, 0, 0.8));
+ border-radius: 2px;
+ -webkit-box-decoration-break: clone;
+ box-decoration-break: clone;
+ color: #fff;
+ color: #fff;
+ color: var(--plyr-captions-text-color, #fff);
+ line-height: 185%;
+ padding: 0.2em 0.5em;
+ white-space: pre-wrap;
+}
+
+.plyr__caption div {
+ display: inline;
+}
+
+.plyr__control {
+ background: 0 0;
+ border: 0;
+ border-radius: 3px;
+ border-radius: 3px;
+ border-radius: var(--plyr-control-radius, 3px);
+ color: inherit;
+ cursor: pointer;
+ -ms-flex-negative: 0;
+ flex-shrink: 0;
+ overflow: visible;
+ padding: 7px;
+ padding: calc(10px * 0.7);
+ padding: calc(var(--plyr-control-spacing, 10px) * 0.7);
+ position: relative;
+ -webkit-transition: all 0.3s ease;
+ transition: all 0.3s ease;
+}
+
+.plyr__control svg {
+ fill: currentColor;
+ display: block;
+ height: 18px;
+ height: 18px;
+ height: var(--plyr-control-icon-size, 18px);
+ pointer-events: none;
+ width: 18px;
+ width: 18px;
+ width: var(--plyr-control-icon-size, 18px);
+}
+
+.plyr__control:focus {
+ outline: 0;
+}
+
+.plyr__control.plyr__tab-focus {
+ outline: 3px dotted #00b3ff;
+ outline: #00b3ff dotted 3px;
+ outline: var(--plyr-tab-focus-color, var(--plyr-color-main, var(--plyr-color-main, #00b3ff))) dotted 3px;
+ outline-offset: 2px;
+}
+
+a.plyr__control {
+ text-decoration: none;
+}
+
+.plyr__control.plyr__control--pressed .icon--not-pressed,
+.plyr__control.plyr__control--pressed .label--not-pressed,
+.plyr__control:not(.plyr__control--pressed) .icon--pressed,
+.plyr__control:not(.plyr__control--pressed) .label--pressed,
+a.plyr__control:after,
+a.plyr__control:before {
+ display: none;
+}
+
+.plyr--full-ui ::-webkit-media-controls {
+ display: none;
+}
+
+.plyr__controls {
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-pack: end;
+ -ms-flex-pack: end;
+ justify-content: flex-end;
+ text-align: center;
+}
+
+.plyr__controls .plyr__progress__container {
+ -webkit-box-flex: 1;
+ -ms-flex: 1;
+ flex: 1;
+ min-width: 0;
+}
+
+.plyr__controls .plyr__controls__item {
+ margin-left: 2.5px;
+ margin-left: calc(10px / 4);
+ 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(10px / 4);
+ padding-left: calc(var(--plyr-control-spacing, 10px) / 4);
+}
+
+.plyr__controls .plyr__controls__item.plyr__time {
+ padding: 0 5px;
+ 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 [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: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ position: relative;
+}
+
+.plyr__menu .plyr__control svg {
+ -webkit-transition: -webkit-transform 0.3s ease;
+ transition: -webkit-transform 0.3s ease;
+ transition: transform 0.3s ease;
+ transition: transform 0.3s ease, -webkit-transform 0.3s ease;
+}
+
+.plyr__menu .plyr__control[aria-expanded='true'] svg {
+ -webkit-transform: rotate(90deg);
+ transform: rotate(90deg);
+}
+
+.plyr__menu .plyr__control[aria-expanded='true'] .plyr__tooltip {
+ display: none;
+}
+
+.plyr__menu__container {
+ -webkit-animation: plyr-popup 0.2s ease;
+ animation: plyr-popup 0.2s ease;
+ background: hsla(0, 0%, 100%, 0.9);
+ background: hsla(0, 0%, 100%, 0.9);
+ background: var(--plyr-menu-background, hsla(0, 0%, 100%, 0.9));
+ border-radius: 4px;
+ bottom: 100%;
+ -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
+ -webkit-box-shadow: var(--plyr-menu-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));
+ color: #4a5464;
+ color: #4a5464;
+ color: var(--plyr-menu-color, #4a5464);
+ font-size: 15px;
+ 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;
+ -webkit-transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1), width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
+ 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 {
+ border: 4px solid transparent;
+ border-top-color: hsla(0, 0%, 100%, 0.9);
+ border: 4px solid transparent;
+ border: var(--plyr-menu-arrow-size, 4px) solid transparent;
+ border-top-color: hsla(0, 0%, 100%, 0.9);
+ border-top-color: var(--plyr-menu-background, hsla(0, 0%, 100%, 0.9));
+ content: '';
+ height: 0;
+ position: absolute;
+ right: 14px;
+ right: calc(18px / 2 + 10px * 0.7 - 4px / 2);
+ right: calc(var(--plyr-control-icon-size, 18px) / 2 + var(--plyr-control-spacing, 10px) * 0.7 - var(--plyr-menu-arrow-size, 4px) / 2);
+ top: 100%;
+ width: 0;
+}
+
+.plyr__menu__container [role='menu'] {
+ padding: 7px;
+ 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 {
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ color: #4a5464;
+ color: #4a5464;
+ color: var(--plyr-menu-color, #4a5464);
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ font-size: 13px;
+ font-size: 13px;
+ font-size: var(--plyr-font-size-menu, var(--plyr-font-size-small, 13px));
+ padding: 4.66667px 10.5px;
+ padding: calc(10px * 0.7/1.5) calc(10px * 0.7 * 1.5);
+ padding: calc(var(--plyr-control-spacing, 10px) * 0.7/1.5) calc(var(--plyr-control-spacing, 10px) * 0.7 * 1.5);
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+ width: 100%;
+}
+
+.plyr__menu__container .plyr__control > span {
+ -webkit-box-align: inherit;
+ -ms-flex-align: inherit;
+ align-items: inherit;
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ width: 100%;
+}
+
+.plyr__menu__container .plyr__control:after {
+ border: 4px solid transparent;
+ border: 4px solid transparent;
+ border: var(--plyr-menu-item-arrow-size, 4px) solid transparent;
+ content: '';
+ position: absolute;
+ top: 50%;
+ -webkit-transform: translateY(-50%);
+ transform: translateY(-50%);
+}
+
+.plyr__menu__container .plyr__control--forward {
+ padding-right: 28px;
+ padding-right: calc(10px * 0.7 * 4);
+ padding-right: calc(var(--plyr-control-spacing, 10px) * 0.7 * 4);
+}
+
+.plyr__menu__container .plyr__control--forward:after {
+ border-left-color: #728197;
+ border-left-color: #728197;
+ border-left-color: var(--plyr-menu-arrow-color, #728197);
+ right: 6.5px;
+ right: calc(10px * 0.7 * 1.5 - 4px);
+ right: calc(var(--plyr-control-spacing, 10px) * 0.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: 400;
+ font-weight: var(--plyr-font-weight-regular, 400);
+ margin: 7px;
+ margin: calc(10px * 0.7);
+ margin: calc(var(--plyr-control-spacing, 10px) * 0.7);
+ margin-bottom: 3.5px;
+ margin-bottom: calc(10px * 0.7/2);
+ margin-bottom: calc(var(--plyr-control-spacing, 10px) * 0.7/2);
+ padding-left: 28px;
+ padding-left: calc(10px * 0.7 * 4);
+ padding-left: calc(var(--plyr-control-spacing, 10px) * 0.7 * 4);
+ position: relative;
+ width: calc(100% - 14px);
+ width: calc(100% - 10px * 0.7 * 2);
+ width: calc(100% - var(--plyr-control-spacing, 10px) * 0.7 * 2);
+}
+
+.plyr__menu__container .plyr__control--back:after {
+ border-right-color: #728197;
+ border-right-color: #728197;
+ border-right-color: var(--plyr-menu-arrow-color, #728197);
+ left: 6.5px;
+ left: calc(10px * 0.7 * 1.5 - 4px);
+ left: calc(var(--plyr-control-spacing, 10px) * 0.7 * 1.5 - var(--plyr-menu-item-arrow-size, 4px));
+}
+
+.plyr__menu__container .plyr__control--back:before {
+ background: #dcdfe5;
+ background: #dcdfe5;
+ background: var(--plyr-menu-back-border-color, #dcdfe5);
+ -webkit-box-shadow: 0 1px 0 #fff;
+ box-shadow: 0 1px 0 #fff;
+ box-shadow: 0 1px 0 #fff;
+ -webkit-box-shadow: 0 1px 0 var(--plyr-menu-back-border-shadow-color, #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(10px * 0.7/2);
+ margin-top: calc(var(--plyr-control-spacing, 10px) * 0.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(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 {
+ background: rgba(0, 0, 0, 0.1);
+ content: '';
+ display: block;
+ -ms-flex-negative: 0;
+ flex-shrink: 0;
+ height: 16px;
+ margin-right: 10px;
+ margin-right: 10px;
+ margin-right: var(--plyr-control-spacing, 10px);
+ -webkit-transition: all 0.3s ease;
+ transition: all 0.3s ease;
+ width: 16px;
+}
+
+.plyr__menu__container .plyr__control[role='menuitemradio']:after {
+ background: #fff;
+ border: 0;
+ height: 6px;
+ left: 12px;
+ opacity: 0;
+ top: 50%;
+ -webkit-transform: translateY(-50%) scale(0);
+ transform: translateY(-50%) scale(0);
+ -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
+ transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
+ transition: transform 0.3s ease, opacity 0.3s ease;
+ transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
+ width: 6px;
+}
+
+.plyr__menu__container .plyr__control[role='menuitemradio'][aria-checked='true']:before {
+ background: #00b3ff;
+ background: #00b3ff;
+ background: var(--plyr-control-toggle-checked-background, var(--plyr-color-main, var(--plyr-color-main, #00b3ff)));
+}
+
+.plyr__menu__container .plyr__control[role='menuitemradio'][aria-checked='true']:after {
+ opacity: 1;
+ -webkit-transform: translateY(-50%) scale(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 {
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ margin-left: auto;
+ margin-right: calc(-7px - -2);
+ margin-right: calc(10px * 0.7 * -1 - -2);
+ margin-right: calc(var(--plyr-control-spacing, 10px) * 0.7 * -1 - -2);
+ overflow: hidden;
+ padding-left: 24.5px;
+ padding-left: calc(10px * 0.7 * 3.5);
+ padding-left: calc(var(--plyr-control-spacing, 10px) * 0.7 * 3.5);
+ pointer-events: none;
+}
+
+.plyr--full-ui input[type='range'] {
+ -webkit-appearance: none;
+ -moz-appearance: none;
+ appearance: none;
+ background: 0 0;
+ border: 0;
+ border-radius: 26px;
+ border-radius: calc(13px * 2);
+ border-radius: calc(var(--plyr-range-thumb-height, 13px) * 2);
+ color: #00b3ff;
+ color: #00b3ff;
+ color: var(--plyr-range-fill-background, var(--plyr-color-main, var(--plyr-color-main, #00b3ff)));
+ display: block;
+ height: 19px;
+ height: calc(3px * 2 + 13px);
+ height: calc(var(--plyr-range-thumb-active-shadow-width, 3px) * 2 + var(--plyr-range-thumb-height, 13px));
+ margin: 0;
+ min-width: 0;
+ padding: 0;
+ -webkit-transition: -webkit-box-shadow 0.3s ease;
+ transition: -webkit-box-shadow 0.3s ease;
+ transition: box-shadow 0.3s ease;
+ transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
+ width: 100%;
+}
+
+.plyr--full-ui input[type='range']::-webkit-slider-runnable-track {
+ background: 0 0;
+ background-image: -webkit-gradient(linear, left top, right top, color-stop(0, currentColor), color-stop(0, transparent));
+ background-image: linear-gradient(90deg, currentColor 0, transparent 0);
+ background-image: linear-gradient(to right, currentColor 0, transparent 0);
+ background-image: -webkit-gradient(linear, left top, right top, from(currentColor), to(transparent));
+ background-image: linear-gradient(to right, currentColor var(--value, 0), transparent var(--value, 0));
+ border: 0;
+ border-radius: 2.5px;
+ border-radius: calc(5px / 2);
+ border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
+ height: 5px;
+ height: 5px;
+ height: var(--plyr-range-track-height, 5px);
+ -webkit-transition: box-shadow 0.3s ease;
+ -webkit-transition: -webkit-box-shadow 0.3s ease;
+ transition: -webkit-box-shadow 0.3s ease;
+ transition: box-shadow 0.3s ease;
+ transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
+ -webkit-user-select: none;
+ user-select: none;
+}
+
+.plyr--full-ui input[type='range']::-webkit-slider-thumb {
+ -webkit-appearance: none;
+ appearance: none;
+ background: #fff;
+ background: #fff;
+ background: var(--plyr-range-thumb-background, #fff);
+ border: 0;
+ border-radius: 100%;
+ -webkit-box-shadow: 0 1px 1px 0 0 0 1px rgba(35, 40, 47, 0.15) rgba(35, 40, 47, 0.2);
+ box-shadow: 0 1px 1px 0 0 0 1px rgba(35, 40, 47, 0.15) rgba(35, 40, 47, 0.2);
+ -webkit-box-shadow: 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2);
+ box-shadow: 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2);
+ -webkit-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));
+ 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));
+ height: 13px;
+ height: 13px;
+ height: var(--plyr-range-thumb-height, 13px);
+ margin-top: -4px;
+ margin-top: calc(13px / 2 * -1 - 5px / 2 * -1);
+ margin-top: calc(var(--plyr-range-thumb-height, 13px) / 2 * -1 - var(--plyr-range-track-height, 5px) / 2 * -1);
+ position: relative;
+ -webkit-transition: all 0.2s ease;
+ transition: all 0.2s ease;
+ width: 13px;
+ 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(5px / 2);
+ border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
+ height: 5px;
+ height: 5px;
+ height: var(--plyr-range-track-height, 5px);
+ -moz-transition: box-shadow 0.3s ease;
+ transition: box-shadow 0.3s ease;
+ -moz-user-select: none;
+ user-select: none;
+}
+
+.plyr--full-ui input[type='range']::-moz-range-thumb {
+ background: #fff;
+ background: #fff;
+ background: var(--plyr-range-thumb-background, #fff);
+ border: 0;
+ border-radius: 100%;
+ box-shadow: 0 1px 1px 0 0 0 1px rgba(35, 40, 47, 0.15) rgba(35, 40, 47, 0.2);
+ 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));
+ height: 13px;
+ height: 13px;
+ height: var(--plyr-range-thumb-height, 13px);
+ position: relative;
+ -moz-transition: all 0.2s ease;
+ transition: all 0.2s ease;
+ width: 13px;
+ 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(5px / 2);
+ border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
+ height: 5px;
+ 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(5px / 2);
+ border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
+ height: 5px;
+ height: 5px;
+ height: var(--plyr-range-track-height, 5px);
+ -ms-transition: box-shadow 0.3s ease;
+ transition: box-shadow 0.3s ease;
+ -ms-user-select: none;
+ 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(5px / 2);
+ border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
+ height: 5px;
+ height: 5px;
+ height: var(--plyr-range-track-height, 5px);
+ -ms-transition: box-shadow 0.3s ease;
+ transition: box-shadow 0.3s ease;
+ -ms-user-select: none;
+ user-select: none;
+}
+
+.plyr--full-ui input[type='range']::-ms-thumb {
+ background: #fff;
+ background: #fff;
+ background: var(--plyr-range-thumb-background, #fff);
+ border: 0;
+ border-radius: 100%;
+ box-shadow: 0 1px 1px 0 0 0 1px rgba(35, 40, 47, 0.15) rgba(35, 40, 47, 0.2);
+ 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));
+ height: 13px;
+ height: 13px;
+ height: var(--plyr-range-thumb-height, 13px);
+ margin-top: 0;
+ position: relative;
+ -ms-transition: all 0.2s ease;
+ transition: all 0.2s ease;
+ width: 13px;
+ 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']::-moz-focus-outer {
+ border: 0;
+}
+
+.plyr--full-ui input[type='range']:focus {
+ outline: 0;
+}
+
+.plyr--full-ui input[type='range'].plyr__tab-focus::-webkit-slider-runnable-track {
+ outline: 3px dotted #00b3ff;
+ outline: #00b3ff dotted 3px;
+ outline: var(--plyr-tab-focus-color, var(--plyr-color-main, var(--plyr-color-main, #00b3ff))) dotted 3px;
+ outline-offset: 2px;
+}
+
+.plyr--full-ui input[type='range'].plyr__tab-focus::-moz-range-track {
+ outline: 3px dotted #00b3ff;
+ outline: #00b3ff dotted 3px;
+ outline: var(--plyr-tab-focus-color, var(--plyr-color-main, var(--plyr-color-main, #00b3ff))) dotted 3px;
+ outline-offset: 2px;
+}
+
+.plyr--full-ui input[type='range'].plyr__tab-focus::-ms-track {
+ outline: 3px dotted #00b3ff;
+ outline: #00b3ff dotted 3px;
+ outline: var(--plyr-tab-focus-color, var(--plyr-color-main, var(--plyr-color-main, #00b3ff))) dotted 3px;
+ outline-offset: 2px;
+}
+
+.plyr__poster {
+ background-color: #000;
+ background-color: #000;
+ background-color: var(--plyr-video-background, var(--plyr-video-background, #000));
+ background-position: 50% 50%;
+ background-repeat: no-repeat;
+ background-size: contain;
+ height: 100%;
+ left: 0;
+ opacity: 0;
+ position: absolute;
+ top: 0;
+ -webkit-transition: opacity 0.2s ease;
+ transition: opacity 0.2s ease;
+ width: 100%;
+ z-index: 1;
+}
+
+.plyr--stopped.plyr__poster-enabled .plyr__poster {
+ opacity: 1;
+}
+
+.plyr--youtube.plyr--paused.plyr__poster-enabled:not(.plyr--stopped) .plyr__poster {
+ display: none;
+}
+
+.plyr__time {
+ font-size: 13px;
+ font-size: 13px;
+ font-size: var(--plyr-font-size-time, var(--plyr-font-size-small, 13px));
+}
+
+.plyr__time + .plyr__time:before {
+ content: '⁄';
+ margin-right: 10px;
+ margin-right: 10px;
+ margin-right: var(--plyr-control-spacing, 10px);
+}
+
+.plyr__tooltip {
+ background: hsla(0, 0%, 100%, 0.9);
+ background: hsla(0, 0%, 100%, 0.9);
+ background: var(--plyr-tooltip-background, hsla(0, 0%, 100%, 0.9));
+ border-radius: 3px;
+ border-radius: 3px;
+ border-radius: var(--plyr-tooltip-radius, 3px);
+ bottom: 100%;
+ -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
+ -webkit-box-shadow: var(--plyr-tooltip-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));
+ color: #4a5464;
+ color: #4a5464;
+ color: var(--plyr-tooltip-color, #4a5464);
+ font-size: 13px;
+ font-size: 13px;
+ font-size: var(--plyr-font-size-small, 13px);
+ font-weight: 400;
+ font-weight: 400;
+ font-weight: var(--plyr-font-weight-regular, 400);
+ left: 50%;
+ line-height: 1.3;
+ margin-bottom: 10px;
+ margin-bottom: calc(10px / 2 * 2);
+ margin-bottom: calc(var(--plyr-control-spacing, 10px) / 2 * 2);
+ opacity: 0;
+ padding: 5px 7.5px;
+ padding: calc(10px / 2) calc(10px / 2 * 1.5);
+ padding: calc(var(--plyr-control-spacing, 10px) / 2) calc(var(--plyr-control-spacing, 10px) / 2 * 1.5);
+ pointer-events: none;
+ position: absolute;
+ -webkit-transform: translate(-50%, 10px) scale(0.8);
+ transform: translate(-50%, 10px) scale(0.8);
+ -webkit-transform-origin: 50% 100%;
+ transform-origin: 50% 100%;
+ -webkit-transition: opacity 0.2s ease 0.1s, -webkit-transform 0.2s ease 0.1s;
+ transition: opacity 0.2s ease 0.1s, -webkit-transform 0.2s ease 0.1s;
+ transition: transform 0.2s ease 0.1s, opacity 0.2s ease 0.1s;
+ transition: transform 0.2s ease 0.1s, opacity 0.2s ease 0.1s, -webkit-transform 0.2s ease 0.1s;
+ white-space: nowrap;
+ z-index: 2;
+}
+
+.plyr__tooltip:before {
+ border-left: 4px solid transparent;
+ border-left: 4px solid transparent;
+ border-left: var(--plyr-tooltip-arrow-size, 4px) solid transparent;
+ border-right: 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%, 0.9);
+ border-top: 4px solid hsla(0, 0%, 100%, 0.9);
+ border-top: var(--plyr-tooltip-arrow-size, 4px) solid var(--plyr-tooltip-background, hsla(0, 0%, 100%, 0.9));
+ bottom: -4px;
+ bottom: calc(4px * -1);
+ bottom: calc(var(--plyr-tooltip-arrow-size, 4px) * -1);
+ content: '';
+ height: 0;
+ left: 50%;
+ position: absolute;
+ -webkit-transform: translateX(-50%);
+ 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;
+ -webkit-transform: translate(-50%) scale(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;
+ -webkit-transform: translateY(10px) scale(0.8);
+ transform: translateY(10px) scale(0.8);
+ -webkit-transform-origin: 0 100%;
+ 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(18px / 2 + 10px * 0.7);
+ left: calc(var(--plyr-control-icon-size, 18px) / 2 + var(--plyr-control-spacing, 10px) * 0.7);
+}
+
+.plyr__controls > .plyr__control:last-child .plyr__tooltip {
+ left: auto;
+ right: 0;
+ -webkit-transform: translateY(10px) scale(0.8);
+ transform: translateY(10px) scale(0.8);
+ -webkit-transform-origin: 100% 100%;
+ transform-origin: 100% 100%;
+}
+
+.plyr__controls > .plyr__control:last-child .plyr__tooltip:before {
+ left: auto;
+ right: 16px;
+ right: calc(18px / 2 + 10px * 0.7);
+ right: calc(var(--plyr-control-icon-size, 18px) / 2 + var(--plyr-control-spacing, 10px) * 0.7);
+ -webkit-transform: translateX(50%);
+ 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 {
+ -webkit-transform: translate(0) scale(1);
+ transform: translate(0) scale(1);
+}
+
+.plyr__progress {
+ left: 6.5px;
+ left: calc(13px * 0.5);
+ left: calc(var(--plyr-range-thumb-height, 13px) * 0.5);
+ margin-right: 13px;
+ 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(13px * -0.5);
+ margin-left: calc(var(--plyr-range-thumb-height, 13px) * -0.5);
+ margin-right: -6.5px;
+ margin-right: calc(13px * -0.5);
+ margin-right: calc(var(--plyr-range-thumb-height, 13px) * -0.5);
+ width: calc(100% + 13px);
+ 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: 13px;
+ font-size: var(--plyr-font-size-time, var(--plyr-font-size-small, 13px));
+ left: 0;
+}
+
+.plyr__progress__buffer {
+ -webkit-appearance: none;
+ background: 0 0;
+ border: 0;
+ border-radius: 100px;
+ height: 5px;
+ height: 5px;
+ height: var(--plyr-range-track-height, 5px);
+ left: 0;
+ margin-top: -2.5px;
+ margin-top: calc(5px / 2 * -1);
+ 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: 5px;
+ min-width: var(--plyr-range-track-height, 5px);
+ -webkit-transition: width 0.2s ease;
+ transition: width 0.2s ease;
+}
+
+.plyr__progress__buffer::-moz-progress-bar {
+ background: currentColor;
+ border-radius: 100px;
+ min-width: 5px;
+ min-width: 5px;
+ min-width: var(--plyr-range-track-height, 5px);
+ -moz-transition: width 0.2s ease;
+ transition: width 0.2s ease;
+}
+
+.plyr__progress__buffer::-ms-fill {
+ border-radius: 100px;
+ -ms-transition: width 0.2s ease;
+ transition: width 0.2s ease;
+}
+
+.plyr--loading .plyr__progress__buffer {
+ -webkit-animation: plyr-progress 1s linear infinite;
+ animation: plyr-progress 1s linear infinite;
+ background-image: linear-gradient(-45deg, rgba(35, 40, 47, 0.6) 25%, transparent 0, transparent 50%, rgba(35, 40, 47, 0.6) 0, rgba(35, 40, 47, 0.6) 75%, transparent 0, 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: 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%, 0.25);
+ background-color: hsla(0, 0%, 100%, 0.25);
+ background-color: var(--plyr-video-progress-buffered-background, hsla(0, 0%, 100%, 0.25));
+}
+
+.plyr--audio.plyr--loading .plyr__progress__buffer {
+ background-color: rgba(193, 200, 209, 0.6);
+ background-color: rgba(193, 200, 209, 0.6);
+ background-color: var(--plyr-audio-progress-buffered-background, rgba(193, 200, 209, 0.6));
+}
+
+.plyr__volume {
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ max-width: 110px;
+ min-width: 80px;
+ position: relative;
+ width: 20%;
+}
+
+.plyr__volume input[type='range'] {
+ margin-left: 5px;
+ margin-left: calc(10px / 2);
+ margin-left: calc(var(--plyr-control-spacing, 10px) / 2);
+ margin-right: 5px;
+ margin-right: calc(10px / 2);
+ 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: #fff;
+ background: var(--plyr-audio-controls-background, #fff);
+ border-radius: inherit;
+ color: #4a5464;
+ color: #4a5464;
+ color: var(--plyr-audio-control-color, #4a5464);
+ padding: 10px;
+ 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: #00b3ff;
+ background: #00b3ff;
+ background: var(--plyr-audio-control-background-hover, var(--plyr-color-main, var(--plyr-color-main, #00b3ff)));
+ color: #fff;
+ 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, 0.6);
+ 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: 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: 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 {
+ -webkit-box-shadow: 0 1px 1px 0 0 0 1px rgba(35, 40, 47, 0.15) rgba(35, 40, 47, 0.2), 0 0 0 3px rgba(35, 40, 47, 0.1);
+ box-shadow: 0 1px 1px 0 0 0 1px rgba(35, 40, 47, 0.15) rgba(35, 40, 47, 0.2), 0 0 0 3px rgba(35, 40, 47, 0.1);
+ -webkit-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: 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);
+ -webkit-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));
+ 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 0 0 0 1px rgba(35, 40, 47, 0.15) rgba(35, 40, 47, 0.2), 0 0 0 3px rgba(35, 40, 47, 0.1);
+ 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 0 0 0 1px rgba(35, 40, 47, 0.15) rgba(35, 40, 47, 0.2), 0 0 0 3px rgba(35, 40, 47, 0.1);
+ 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: rgba(193, 200, 209, 0.6);
+ color: var(--plyr-audio-progress-buffered-background, rgba(193, 200, 209, 0.6));
+}
+
+.plyr--video {
+ background: #000;
+ background: #000;
+ background: var(--plyr-video-background, var(--plyr-video-background, #000));
+ overflow: hidden;
+}
+
+.plyr--video.plyr--menu-open {
+ overflow: visible;
+}
+
+.plyr__video-wrapper {
+ background: #000;
+ background: #000;
+ background: var(--plyr-video-background, var(--plyr-video-background, #000));
+ height: 100%;
+ margin: auto;
+ overflow: hidden;
+ position: relative;
+ width: 100%;
+}
+
+.plyr__video-embed,
+.plyr__video-wrapper--fixed-ratio {
+ aspect-ratio: 16/9;
+}
+
+@supports not (aspect-ratio: 16/9) {
+ .plyr__video-embed,
+ .plyr__video-wrapper--fixed-ratio {
+ height: 0;
+ padding-bottom: 56.25%;
+ position: relative;
+ }
+}
+
+.plyr__video-embed iframe,
+.plyr__video-wrapper--fixed-ratio video {
+ border: 0;
+ height: 100%;
+ left: 0;
+ position: absolute;
+ top: 0;
+ width: 100%;
+}
+
+.plyr--full-ui .plyr__video-embed > .plyr__video-embed__container {
+ padding-bottom: 240%;
+ position: relative;
+ -webkit-transform: translateY(-38.28125%);
+ transform: translateY(-38.28125%);
+}
+
+.plyr--video .plyr__controls {
+ background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.75)));
+ background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
+ background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
+ background: var(--plyr-video-controls-background, linear-gradient(transparent, rgba(0, 0, 0, 0.75)));
+ border-bottom-left-radius: inherit;
+ border-bottom-right-radius: inherit;
+ bottom: 0;
+ color: #fff;
+ color: #fff;
+ color: var(--plyr-video-control-color, #fff);
+ left: 0;
+ padding: 5px;
+ padding: calc(10px / 2);
+ padding: calc(var(--plyr-control-spacing, 10px) / 2);
+ padding-top: 20px;
+ padding-top: calc(10px * 2);
+ padding-top: calc(var(--plyr-control-spacing, 10px) * 2);
+ position: absolute;
+ right: 0;
+ -webkit-transition: opacity 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
+ transition: opacity 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
+ transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
+ transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
+ z-index: 3;
+}
+
+.plyr--video.plyr--hide-controls .plyr__controls {
+ opacity: 0;
+ pointer-events: none;
+ -webkit-transform: translateY(100%);
+ transform: translateY(100%);
+}
+
+.plyr--video .plyr__control.plyr__tab-focus,
+.plyr--video .plyr__control:hover,
+.plyr--video .plyr__control[aria-expanded='true'] {
+ background: #00b3ff;
+ background: #00b3ff;
+ background: var(--plyr-video-control-background-hover, var(--plyr-color-main, var(--plyr-color-main, #00b3ff)));
+ color: #fff;
+ color: #fff;
+ color: var(--plyr-video-control-color-hover, #fff);
+}
+
+.plyr__control--overlaid {
+ background: #00b3ff;
+ background: #00b3ff;
+ background: var(--plyr-video-control-background-hover, var(--plyr-color-main, var(--plyr-color-main, #00b3ff)));
+ border: 0;
+ border-radius: 100%;
+ color: #fff;
+ color: #fff;
+ color: var(--plyr-video-control-color, #fff);
+ display: none;
+ left: 50%;
+ opacity: 0.9;
+ padding: 15px;
+ padding: calc(10px * 1.5);
+ padding: calc(var(--plyr-control-spacing, 10px) * 1.5);
+ position: absolute;
+ top: 50%;
+ -webkit-transform: translate(-50%, -50%);
+ transform: translate(-50%, -50%);
+ -webkit-transition: 0.3s;
+ transition: 0.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%, 0.25);
+ background-color: hsla(0, 0%, 100%, 0.25);
+ background-color: var(--plyr-video-range-track-background, var(--plyr-video-progress-buffered-background, hsla(0, 0%, 100%, 0.25)));
+}
+
+.plyr--full-ui.plyr--video input[type='range']::-moz-range-track {
+ background-color: hsla(0, 0%, 100%, 0.25);
+ background-color: hsla(0, 0%, 100%, 0.25);
+ background-color: var(--plyr-video-range-track-background, var(--plyr-video-progress-buffered-background, hsla(0, 0%, 100%, 0.25)));
+}
+
+.plyr--full-ui.plyr--video input[type='range']::-ms-track {
+ background-color: hsla(0, 0%, 100%, 0.25);
+ background-color: hsla(0, 0%, 100%, 0.25);
+ background-color: var(--plyr-video-range-track-background, var(--plyr-video-progress-buffered-background, hsla(0, 0%, 100%, 0.25)));
+}
+
+.plyr--full-ui.plyr--video input[type='range']:active::-webkit-slider-thumb {
+ -webkit-box-shadow: 0 1px 1px 0 0 0 1px rgba(35, 40, 47, 0.15) rgba(35, 40, 47, 0.2), 0 0 0 3px rgba(255, 255, 255, 0.5);
+ box-shadow: 0 1px 1px 0 0 0 1px rgba(35, 40, 47, 0.15) rgba(35, 40, 47, 0.2), 0 0 0 3px rgba(255, 255, 255, 0.5);
+ -webkit-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 hsla(0, 0%, 100%, 0.5);
+ 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 hsla(0, 0%, 100%, 0.5);
+ -webkit-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, hsla(0, 0%, 100%, 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, hsla(0, 0%, 100%, 0.5));
+}
+
+.plyr--full-ui.plyr--video input[type='range']:active::-moz-range-thumb {
+ box-shadow: 0 1px 1px 0 0 0 1px rgba(35, 40, 47, 0.15) rgba(35, 40, 47, 0.2), 0 0 0 3px rgba(255, 255, 255, 0.5);
+ 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 hsla(0, 0%, 100%, 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, hsla(0, 0%, 100%, 0.5));
+}
+
+.plyr--full-ui.plyr--video input[type='range']:active::-ms-thumb {
+ box-shadow: 0 1px 1px 0 0 0 1px rgba(35, 40, 47, 0.15) rgba(35, 40, 47, 0.2), 0 0 0 3px rgba(255, 255, 255, 0.5);
+ 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 hsla(0, 0%, 100%, 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, hsla(0, 0%, 100%, 0.5));
+}
+
+.plyr--video .plyr__progress__buffer {
+ color: hsla(0, 0%, 100%, 0.25);
+ color: hsla(0, 0%, 100%, 0.25);
+ color: var(--plyr-video-progress-buffered-background, hsla(0, 0%, 100%, 0.25));
+}
+
+.plyr:-webkit-full-screen {
+ background: #000;
+ border-radius: 0 !important;
+ height: 100%;
+ margin: 0;
+ width: 100%;
+}
+
+.plyr:-ms-fullscreen {
+ background: #000;
+ border-radius: 0 !important;
+ height: 100%;
+ margin: 0;
+ width: 100%;
+}
+
+.plyr:fullscreen {
+ background: #000;
+ border-radius: 0 !important;
+ height: 100%;
+ margin: 0;
+ width: 100%;
+}
+
+.plyr:-webkit-full-screen video {
+ height: 100%;
+}
+
+.plyr:-ms-fullscreen video {
+ height: 100%;
+}
+
+.plyr:fullscreen video {
+ height: 100%;
+}
+
+.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen {
+ display: block;
+}
+
+.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen {
+ display: block;
+}
+
+.plyr:fullscreen .plyr__control .icon--exit-fullscreen {
+ display: block;
+}
+
+.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen + svg {
+ display: none;
+}
+
+.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen + svg {
+ display: none;
+}
+
+.plyr:fullscreen .plyr__control .icon--exit-fullscreen + svg {
+ display: none;
+}
+
+.plyr:-webkit-full-screen.plyr--hide-controls {
+ cursor: none;
+}
+
+.plyr:-ms-fullscreen.plyr--hide-controls {
+ cursor: none;
+}
+
+.plyr:fullscreen.plyr--hide-controls {
+ cursor: none;
+}
+
+.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__control .icon--exit-fullscreen {
+ display: block;
+}
+
+.plyr--fullscreen-fallback .plyr__control .icon--exit-fullscreen + svg {
+ display: none;
+}
+
+.plyr--fullscreen-fallback.plyr--hide-controls {
+ cursor: none;
+}
+
+.plyr__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: 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: 10px;
+ right: var(--plyr-control-spacing, 10px);
+ z-index: 3;
+}
+
+.plyr__ads:empty:after {
+ display: none;
+}
+
+.plyr__cues {
+ background: currentColor;
+ display: block;
+ height: 5px;
+ height: 5px;
+ height: var(--plyr-range-track-height, 5px);
+ left: 0;
+ opacity: 0.8;
+ position: absolute;
+ top: 50%;
+ -webkit-transform: translateY(-50%);
+ transform: translateY(-50%);
+ width: 3px;
+ z-index: 3;
+}
+
+.plyr__preview-thumb {
+ background-color: hsla(0, 0%, 100%, 0.9);
+ background-color: hsla(0, 0%, 100%, 0.9);
+ background-color: var(--plyr-tooltip-background, hsla(0, 0%, 100%, 0.9));
+ border-radius: 3px;
+ bottom: 100%;
+ -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
+ -webkit-box-shadow: var(--plyr-tooltip-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));
+ margin-bottom: 10px;
+ margin-bottom: calc(10px / 2 * 2);
+ margin-bottom: calc(var(--plyr-control-spacing, 10px) / 2 * 2);
+ opacity: 0;
+ padding: 3px;
+ padding: 3px;
+ padding: var(--plyr-tooltip-radius, 3px);
+ pointer-events: none;
+ position: absolute;
+ -webkit-transform: translateY(10px) scale(0.8);
+ transform: translateY(10px) scale(0.8);
+ -webkit-transform-origin: 50% 100%;
+ transform-origin: 50% 100%;
+ -webkit-transition: opacity 0.2s ease 0.1s, -webkit-transform 0.2s ease 0.1s;
+ transition: opacity 0.2s ease 0.1s, -webkit-transform 0.2s ease 0.1s;
+ transition: transform 0.2s ease 0.1s, opacity 0.2s ease 0.1s;
+ transition: transform 0.2s ease 0.1s, opacity 0.2s ease 0.1s, -webkit-transform 0.2s ease 0.1s;
+ z-index: 2;
+}
+
+.plyr__preview-thumb--is-shown {
+ opacity: 1;
+ -webkit-transform: translate(0) scale(1);
+ transform: translate(0) scale(1);
+}
+
+.plyr__preview-thumb:before {
+ border-left: 4px solid transparent;
+ border-left: 4px solid transparent;
+ border-left: var(--plyr-tooltip-arrow-size, 4px) solid transparent;
+ border-right: 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%, 0.9);
+ border-top: 4px solid hsla(0, 0%, 100%, 0.9);
+ border-top: var(--plyr-tooltip-arrow-size, 4px) solid var(--plyr-tooltip-background, hsla(0, 0%, 100%, 0.9));
+ bottom: -4px;
+ bottom: calc(4px * -1);
+ bottom: calc(var(--plyr-tooltip-arrow-size, 4px) * -1);
+ content: '';
+ height: 0;
+ left: 50%;
+ position: absolute;
+ -webkit-transform: translateX(-50%);
+ transform: translateX(-50%);
+ width: 0;
+ z-index: 2;
+}
+
+.plyr__preview-thumb__image-container {
+ background: #c1c8d1;
+ border-radius: 2px;
+ border-radius: calc(3px - 1px);
+ 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, 0.55);
+ border-radius: 2px;
+ border-radius: calc(3px - 1px);
+ border-radius: calc(var(--plyr-tooltip-radius, 3px) - 1px);
+ color: #fff;
+ font-size: 13px;
+ font-size: 13px;
+ font-size: var(--plyr-font-size-time, var(--plyr-font-size-small, 13px));
+ padding: 3px 6px;
+}
+
+.plyr__preview-scrubbing {
+ bottom: 0;
+ -webkit-filter: blur(1px);
+ filter: blur(1px);
+ height: 100%;
+ left: 0;
+ margin: auto;
+ opacity: 0;
+ overflow: hidden;
+ pointer-events: none;
+ position: absolute;
+ right: 0;
+ top: 0;
+ -webkit-transition: opacity 0.3s ease;
+ transition: opacity 0.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;
+ -o-object-fit: contain;
+ object-fit: contain;
+ position: absolute;
+ top: 0;
+ width: 100%;
+}
+
+.plyr--no-transition {
+ -webkit-transition: none !important;
+ 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;
+}
+
+@media (min-width: 480px) {
+ .plyr__captions {
+ font-size: 15px;
+ font-size: 15px;
+ font-size: var(--plyr-font-size-base, 15px);
+ padding: 20px;
+ padding: calc(10px * 2);
+ padding: calc(var(--plyr-control-spacing, 10px) * 2);
+ }
+ .plyr--video .plyr__controls {
+ padding: 10px;
+ padding: 10px;
+ padding: var(--plyr-control-spacing, 10px);
+ padding-top: 35px;
+ padding-top: calc(10px * 3.5);
+ padding-top: calc(var(--plyr-control-spacing, 10px) * 3.5);
+ }
+}
+
+@media (min-width: 768px) {
+ .plyr__captions {
+ font-size: 18px;
+ font-size: 18px;
+ font-size: var(--plyr-font-size-large, 18px);
+ }
+}
+
+@media (min-width: 1024px) {
+ .plyr:-webkit-full-screen .plyr__captions {
+ font-size: 21px;
+ font-size: 21px;
+ font-size: var(--plyr-font-size-xlarge, 21px);
+ }
+ .plyr:-ms-fullscreen .plyr__captions {
+ font-size: 21px;
+ font-size: 21px;
+ font-size: var(--plyr-font-size-xlarge, 21px);
+ }
+ .plyr:fullscreen .plyr__captions {
+ font-size: 21px;
+ font-size: 21px;
+ font-size: var(--plyr-font-size-xlarge, 21px);
+ }
+ .plyr--fullscreen-fallback .plyr__captions {
+ font-size: 21px;
+ font-size: 21px;
+ font-size: var(--plyr-font-size-xlarge, 21px);
+ }
+}
+
+@media (max-width: 767px) {
+ .plyr__time + .plyr__time {
+ display: none;
+ }
+}
diff --git a/docs/assets/vendor/glightbox/css/plyr.min.css b/docs/assets/vendor/glightbox/css/plyr.min.css
new file mode 100644
index 0000000..4867c86
--- /dev/null
+++ b/docs/assets/vendor/glightbox/css/plyr.min.css
@@ -0,0 +1 @@
+@charset "UTF-8";@-webkit-keyframes plyr-progress{to{background-position:25px 0;background-position:25px 0;background-position:var(--plyr-progress-loading-size,25px) 0}}@keyframes plyr-progress{to{background-position:25px 0;background-position:25px 0;background-position:var(--plyr-progress-loading-size,25px) 0}}@-webkit-keyframes plyr-popup{0%{opacity:.5;-webkit-transform:translateY(10px);transform:translateY(10px)}to{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes plyr-popup{0%{opacity:.5;-webkit-transform:translateY(10px);transform:translateY(10px)}to{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@-webkit-keyframes plyr-fade-in{0%{opacity:0}to{opacity:1}}@keyframes plyr-fade-in{0%{opacity:0}to{opacity:1}}.plyr{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;-webkit-box-align:center;-ms-flex-align:center;align-items:center;direction:ltr;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;font-family:inherit;font-family:inherit;font-family:var(--plyr-font-family,inherit);-webkit-font-feature-settings:"tnum";font-feature-settings:"tnum";font-variant-numeric:tabular-nums;font-weight:400;font-weight:400;font-weight:var(--plyr-font-weight-regular,400);line-height:1.7;line-height:1.7;line-height:var(--plyr-line-height,1.7);max-width:100%;min-width:200px;position:relative;text-shadow:none;-webkit-transition:-webkit-box-shadow .3s ease;transition:-webkit-box-shadow .3s ease;transition:box-shadow .3s ease;transition:box-shadow .3s ease,-webkit-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{-webkit-box-sizing:border-box;box-sizing:border-box}.plyr--full-ui *,.plyr--full-ui :after,.plyr--full-ui :before{-webkit-box-sizing:inherit;box-sizing:inherit}.plyr--full-ui a,.plyr--full-ui button,.plyr--full-ui input,.plyr--full-ui label{-ms-touch-action:manipulation;touch-action:manipulation}.plyr__badge{background:#4a5464;background:#4a5464;background:var(--plyr-badge-background,#4a5464);border-radius:2px;border-radius:2px;border-radius:var(--plyr-badge-border-radius,2px);color:#fff;color:#fff;color:var(--plyr-badge-text-color,#fff);font-size:9px;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{-webkit-animation:plyr-fade-in .3s ease;animation:plyr-fade-in .3s ease;bottom:0;display:none;font-size:13px;font-size:13px;font-size:var(--plyr-font-size-small,13px);left:0;padding:10px;padding:10px;padding:var(--plyr-control-spacing,10px);position:absolute;text-align:center;-webkit-transition:-webkit-transform .4s ease-in-out;transition:-webkit-transform .4s ease-in-out;transition:transform .4s ease-in-out;transition:transform .4s ease-in-out,-webkit-transform .4s ease-in-out;width:100%}.plyr__captions span:empty{display:none}.plyr--captions-active .plyr__captions{display:block}.plyr:not(.plyr--hide-controls) .plyr__controls:not(:empty)~.plyr__captions{-webkit-transform:translateY(-40px);transform:translateY(-40px);-webkit-transform:translateY(calc(10px * -4));transform:translateY(calc(10px * -4));-webkit-transform:translateY(calc(var(--plyr-control-spacing,10px) * -4));transform:translateY(calc(var(--plyr-control-spacing,10px) * -4))}.plyr__caption{background:rgba(0,0,0,.8);background:rgba(0,0,0,.8);background:var(--plyr-captions-background,rgba(0,0,0,.8));border-radius:2px;-webkit-box-decoration-break:clone;box-decoration-break:clone;color:#fff;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:3px;border-radius:var(--plyr-control-radius,3px);color:inherit;cursor:pointer;-ms-flex-negative:0;flex-shrink:0;overflow:visible;padding:7px;padding:calc(10px * .7);padding:calc(var(--plyr-control-spacing,10px) * .7);position:relative;-webkit-transition:all .3s ease;transition:all .3s ease}.plyr__control svg{fill:currentColor;display:block;height:18px;height:18px;height:var(--plyr-control-icon-size,18px);pointer-events:none;width:18px;width:18px;width:var(--plyr-control-icon-size,18px)}.plyr__control:focus{outline:0}.plyr__control.plyr__tab-focus{outline:3px dotted #00b3ff;outline:#00b3ff dotted 3px;outline:var(--plyr-tab-focus-color,var(--plyr-color-main,var(--plyr-color-main,#00b3ff))) dotted 3px;outline-offset:2px}a.plyr__control{text-decoration:none}.plyr__control.plyr__control--pressed .icon--not-pressed,.plyr__control.plyr__control--pressed .label--not-pressed,.plyr__control:not(.plyr__control--pressed) .icon--pressed,.plyr__control:not(.plyr__control--pressed) .label--pressed,a.plyr__control:after,a.plyr__control:before{display:none}.plyr--full-ui ::-webkit-media-controls{display:none}.plyr__controls{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:center}.plyr__controls .plyr__progress__container{-webkit-box-flex:1;-ms-flex:1;flex:1;min-width:0}.plyr__controls .plyr__controls__item{margin-left:2.5px;margin-left:calc(10px / 4);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(10px / 4);padding-left:calc(var(--plyr-control-spacing,10px)/ 4)}.plyr__controls .plyr__controls__item.plyr__time{padding:0 5px;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 [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:-webkit-box;display:-ms-flexbox;display:flex;position:relative}.plyr__menu .plyr__control svg{-webkit-transition:-webkit-transform .3s ease;transition:-webkit-transform .3s ease;transition:transform .3s ease;transition:transform .3s ease,-webkit-transform .3s ease}.plyr__menu .plyr__control[aria-expanded=true] svg{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.plyr__menu .plyr__control[aria-expanded=true] .plyr__tooltip{display:none}.plyr__menu__container{-webkit-animation:plyr-popup .2s ease;animation:plyr-popup .2s ease;background:hsla(0,0%,100%,.9);background:hsla(0,0%,100%,.9);background:var(--plyr-menu-background,hsla(0,0%,100%,.9));border-radius:4px;bottom:100%;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.15);box-shadow:0 1px 2px rgba(0,0,0,.15);box-shadow:0 1px 2px rgba(0,0,0,.15);-webkit-box-shadow:var(--plyr-menu-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:#4a5464;color:var(--plyr-menu-color,#4a5464);font-size:15px;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;-webkit-transition:height .35s cubic-bezier(.4,0,.2,1),width .35s cubic-bezier(.4,0,.2,1);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:4px solid transparent;border:var(--plyr-menu-arrow-size,4px) solid transparent;border-top-color:hsla(0,0%,100%,.9);border-top-color:var(--plyr-menu-background,hsla(0,0%,100%,.9));content:'';height:0;position:absolute;right:14px;right:calc(18px / 2 + 10px * .7 - 4px / 2);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(10px * .7);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{-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#4a5464;color:#4a5464;color:var(--plyr-menu-color,#4a5464);display:-webkit-box;display:-ms-flexbox;display:flex;font-size:13px;font-size:13px;font-size:var(--plyr-font-size-menu,var(--plyr-font-size-small,13px));padding:4.66667px 10.5px;padding:calc(10px * .7/1.5) calc(10px * .7 * 1.5);padding:calc(var(--plyr-control-spacing,10px) * .7/1.5) calc(var(--plyr-control-spacing,10px) * .7 * 1.5);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:100%}.plyr__menu__container .plyr__control>span{-webkit-box-align:inherit;-ms-flex-align:inherit;align-items:inherit;display:-webkit-box;display:-ms-flexbox;display:flex;width:100%}.plyr__menu__container .plyr__control:after{border:4px solid transparent;border:4px solid transparent;border:var(--plyr-menu-item-arrow-size,4px) solid transparent;content:'';position:absolute;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.plyr__menu__container .plyr__control--forward{padding-right:28px;padding-right:calc(10px * .7 * 4);padding-right:calc(var(--plyr-control-spacing,10px) * .7 * 4)}.plyr__menu__container .plyr__control--forward:after{border-left-color:#728197;border-left-color:#728197;border-left-color:var(--plyr-menu-arrow-color,#728197);right:6.5px;right:calc(10px * .7 * 1.5 - 4px);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:400;font-weight:var(--plyr-font-weight-regular,400);margin:7px;margin:calc(10px * .7);margin:calc(var(--plyr-control-spacing,10px) * .7);margin-bottom:3.5px;margin-bottom:calc(10px * .7/2);margin-bottom:calc(var(--plyr-control-spacing,10px) * .7/2);padding-left:28px;padding-left:calc(10px * .7 * 4);padding-left:calc(var(--plyr-control-spacing,10px) * .7 * 4);position:relative;width:calc(100% - 14px);width:calc(100% - 10px * .7 * 2);width:calc(100% - var(--plyr-control-spacing,10px) * .7 * 2)}.plyr__menu__container .plyr__control--back:after{border-right-color:#728197;border-right-color:#728197;border-right-color:var(--plyr-menu-arrow-color,#728197);left:6.5px;left:calc(10px * .7 * 1.5 - 4px);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:#dcdfe5;background:var(--plyr-menu-back-border-color,#dcdfe5);-webkit-box-shadow:0 1px 0 #fff;box-shadow:0 1px 0 #fff;box-shadow:0 1px 0 #fff;-webkit-box-shadow:0 1px 0 var(--plyr-menu-back-border-shadow-color,#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(10px * .7/2);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(10px * .7);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;-ms-flex-negative:0;flex-shrink:0;height:16px;margin-right:10px;margin-right:10px;margin-right:var(--plyr-control-spacing,10px);-webkit-transition:all .3s ease;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%;-webkit-transform:translateY(-50%) scale(0);transform:translateY(-50%) scale(0);-webkit-transition:opacity .3s ease,-webkit-transform .3s ease;transition:opacity .3s ease,-webkit-transform .3s ease;transition:transform .3s ease,opacity .3s ease;transition:transform .3s ease,opacity .3s ease,-webkit-transform .3s ease;width:6px}.plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]:before{background:#00b3ff;background:#00b3ff;background:var(--plyr-control-toggle-checked-background,var(--plyr-color-main,var(--plyr-color-main,#00b3ff)))}.plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]:after{opacity:1;-webkit-transform:translateY(-50%) scale(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{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:auto;margin-right:calc(-7px - -2);margin-right:calc(10px * .7 * -1 - -2);margin-right:calc(var(--plyr-control-spacing,10px) * .7 * -1 - -2);overflow:hidden;padding-left:24.5px;padding-left:calc(10px * .7 * 3.5);padding-left:calc(var(--plyr-control-spacing,10px) * .7 * 3.5);pointer-events:none}.plyr--full-ui input[type=range]{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:0 0;border:0;border-radius:26px;border-radius:calc(13px * 2);border-radius:calc(var(--plyr-range-thumb-height,13px) * 2);color:#00b3ff;color:#00b3ff;color:var(--plyr-range-fill-background,var(--plyr-color-main,var(--plyr-color-main,#00b3ff)));display:block;height:19px;height:calc(3px * 2 + 13px);height:calc(var(--plyr-range-thumb-active-shadow-width,3px) * 2 + var(--plyr-range-thumb-height,13px));margin:0;min-width:0;padding:0;-webkit-transition:-webkit-box-shadow .3s ease;transition:-webkit-box-shadow .3s ease;transition:box-shadow .3s ease;transition:box-shadow .3s ease,-webkit-box-shadow .3s ease;width:100%}.plyr--full-ui input[type=range]::-webkit-slider-runnable-track{background:0 0;background-image:-webkit-gradient(linear,left top,right top,color-stop(0,currentColor),color-stop(0,transparent));background-image:linear-gradient(90deg,currentColor 0,transparent 0);background-image:linear-gradient(to right,currentColor 0,transparent 0);background-image:-webkit-gradient(linear,left top,right top,from(currentColor),to(transparent));background-image:linear-gradient(to right,currentColor var(--value,0),transparent var(--value,0));border:0;border-radius:2.5px;border-radius:calc(5px / 2);border-radius:calc(var(--plyr-range-track-height,5px)/ 2);height:5px;height:5px;height:var(--plyr-range-track-height,5px);-webkit-transition:box-shadow .3s ease;-webkit-transition:-webkit-box-shadow .3s ease;transition:-webkit-box-shadow .3s ease;transition:box-shadow .3s ease;transition:box-shadow .3s ease,-webkit-box-shadow .3s ease;-webkit-user-select:none;user-select:none}.plyr--full-ui input[type=range]::-webkit-slider-thumb{-webkit-appearance:none;appearance:none;background:#fff;background:#fff;background:var(--plyr-range-thumb-background,#fff);border:0;border-radius:100%;-webkit-box-shadow:0 1px 1px 0 0 0 1px rgba(35,40,47,.15) rgba(35,40,47,.2);box-shadow:0 1px 1px 0 0 0 1px rgba(35,40,47,.15) rgba(35,40,47,.2);-webkit-box-shadow:0 1px 1px rgba(35,40,47,.15),0 0 0 1px rgba(35,40,47,.2);box-shadow:0 1px 1px rgba(35,40,47,.15),0 0 0 1px rgba(35,40,47,.2);-webkit-box-shadow:var(--plyr-range-thumb-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:13px;height:var(--plyr-range-thumb-height,13px);margin-top:-4px;margin-top:calc(13px / 2 * -1 - 5px / 2 * -1);margin-top:calc(var(--plyr-range-thumb-height,13px)/ 2 * -1 - var(--plyr-range-track-height,5px)/ 2 * -1);position:relative;-webkit-transition:all .2s ease;transition:all .2s ease;width:13px;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(5px / 2);border-radius:calc(var(--plyr-range-track-height,5px)/ 2);height:5px;height:5px;height:var(--plyr-range-track-height,5px);-moz-transition:box-shadow .3s ease;transition:box-shadow .3s ease;-moz-user-select:none;user-select:none}.plyr--full-ui input[type=range]::-moz-range-thumb{background:#fff;background:#fff;background:var(--plyr-range-thumb-background,#fff);border:0;border-radius:100%;box-shadow:0 1px 1px 0 0 0 1px rgba(35,40,47,.15) rgba(35,40,47,.2);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:13px;height:var(--plyr-range-thumb-height,13px);position:relative;-moz-transition:all .2s ease;transition:all .2s ease;width:13px;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(5px / 2);border-radius:calc(var(--plyr-range-track-height,5px)/ 2);height:5px;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(5px / 2);border-radius:calc(var(--plyr-range-track-height,5px)/ 2);height:5px;height:5px;height:var(--plyr-range-track-height,5px);-ms-transition:box-shadow .3s ease;transition:box-shadow .3s ease;-ms-user-select:none;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(5px / 2);border-radius:calc(var(--plyr-range-track-height,5px)/ 2);height:5px;height:5px;height:var(--plyr-range-track-height,5px);-ms-transition:box-shadow .3s ease;transition:box-shadow .3s ease;-ms-user-select:none;user-select:none}.plyr--full-ui input[type=range]::-ms-thumb{background:#fff;background:#fff;background:var(--plyr-range-thumb-background,#fff);border:0;border-radius:100%;box-shadow:0 1px 1px 0 0 0 1px rgba(35,40,47,.15) rgba(35,40,47,.2);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:13px;height:var(--plyr-range-thumb-height,13px);margin-top:0;position:relative;-ms-transition:all .2s ease;transition:all .2s ease;width:13px;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]::-moz-focus-outer{border:0}.plyr--full-ui input[type=range]:focus{outline:0}.plyr--full-ui input[type=range].plyr__tab-focus::-webkit-slider-runnable-track{outline:3px dotted #00b3ff;outline:#00b3ff dotted 3px;outline:var(--plyr-tab-focus-color,var(--plyr-color-main,var(--plyr-color-main,#00b3ff))) dotted 3px;outline-offset:2px}.plyr--full-ui input[type=range].plyr__tab-focus::-moz-range-track{outline:3px dotted #00b3ff;outline:#00b3ff dotted 3px;outline:var(--plyr-tab-focus-color,var(--plyr-color-main,var(--plyr-color-main,#00b3ff))) dotted 3px;outline-offset:2px}.plyr--full-ui input[type=range].plyr__tab-focus::-ms-track{outline:3px dotted #00b3ff;outline:#00b3ff dotted 3px;outline:var(--plyr-tab-focus-color,var(--plyr-color-main,var(--plyr-color-main,#00b3ff))) dotted 3px;outline-offset:2px}.plyr__poster{background-color:#000;background-color:#000;background-color:var(--plyr-video-background,var(--plyr-video-background,#000));background-position:50% 50%;background-repeat:no-repeat;background-size:contain;height:100%;left:0;opacity:0;position:absolute;top:0;-webkit-transition:opacity .2s ease;transition:opacity .2s ease;width:100%;z-index:1}.plyr--stopped.plyr__poster-enabled .plyr__poster{opacity:1}.plyr--youtube.plyr--paused.plyr__poster-enabled:not(.plyr--stopped) .plyr__poster{display:none}.plyr__time{font-size:13px;font-size:13px;font-size:var(--plyr-font-size-time,var(--plyr-font-size-small,13px))}.plyr__time+.plyr__time:before{content:'⁄';margin-right:10px;margin-right:10px;margin-right:var(--plyr-control-spacing,10px)}.plyr__tooltip{background:hsla(0,0%,100%,.9);background:hsla(0,0%,100%,.9);background:var(--plyr-tooltip-background,hsla(0,0%,100%,.9));border-radius:3px;border-radius:3px;border-radius:var(--plyr-tooltip-radius,3px);bottom:100%;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.15);box-shadow:0 1px 2px rgba(0,0,0,.15);box-shadow:0 1px 2px rgba(0,0,0,.15);-webkit-box-shadow:var(--plyr-tooltip-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:#4a5464;color:var(--plyr-tooltip-color,#4a5464);font-size:13px;font-size:13px;font-size:var(--plyr-font-size-small,13px);font-weight:400;font-weight:400;font-weight:var(--plyr-font-weight-regular,400);left:50%;line-height:1.3;margin-bottom:10px;margin-bottom:calc(10px / 2 * 2);margin-bottom:calc(var(--plyr-control-spacing,10px)/ 2 * 2);opacity:0;padding:5px 7.5px;padding:calc(10px / 2) calc(10px / 2 * 1.5);padding:calc(var(--plyr-control-spacing,10px)/ 2) calc(var(--plyr-control-spacing,10px)/ 2 * 1.5);pointer-events:none;position:absolute;-webkit-transform:translate(-50%,10px) scale(.8);transform:translate(-50%,10px) scale(.8);-webkit-transform-origin:50% 100%;transform-origin:50% 100%;-webkit-transition:opacity .2s ease .1s,-webkit-transform .2s ease .1s;transition:opacity .2s ease .1s,-webkit-transform .2s ease .1s;transition:transform .2s ease .1s,opacity .2s ease .1s;transition:transform .2s ease .1s,opacity .2s ease .1s,-webkit-transform .2s ease .1s;white-space:nowrap;z-index:2}.plyr__tooltip:before{border-left:4px solid transparent;border-left:4px solid transparent;border-left:var(--plyr-tooltip-arrow-size,4px) solid transparent;border-right: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: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(4px * -1);bottom:calc(var(--plyr-tooltip-arrow-size,4px) * -1);content:'';height:0;left:50%;position:absolute;-webkit-transform:translateX(-50%);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;-webkit-transform:translate(-50%) scale(1);transform:translate(-50%) 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;-webkit-transform:translateY(10px) scale(.8);transform:translateY(10px) scale(.8);-webkit-transform-origin:0 100%;transform-origin:0 100%}.plyr__controls>.plyr__control:first-child .plyr__tooltip:before,.plyr__controls>.plyr__control:first-child+.plyr__control .plyr__tooltip:before{left:16px;left:calc(18px / 2 + 10px * .7);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;-webkit-transform:translateY(10px) scale(.8);transform:translateY(10px) scale(.8);-webkit-transform-origin:100% 100%;transform-origin:100% 100%}.plyr__controls>.plyr__control:last-child .plyr__tooltip:before{left:auto;right:16px;right:calc(18px / 2 + 10px * .7);right:calc(var(--plyr-control-icon-size,18px)/ 2 + var(--plyr-control-spacing,10px) * .7);-webkit-transform:translateX(50%);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{-webkit-transform:translate(0) scale(1);transform:translate(0) scale(1)}.plyr__progress{left:6.5px;left:calc(13px * .5);left:calc(var(--plyr-range-thumb-height,13px) * .5);margin-right:13px;margin-right:13px;margin-right:var(--plyr-range-thumb-height,13px);position:relative}.plyr__progress input[type=range],.plyr__progress__buffer{margin-left:-6.5px;margin-left:calc(13px * -.5);margin-left:calc(var(--plyr-range-thumb-height,13px) * -.5);margin-right:-6.5px;margin-right:calc(13px * -.5);margin-right:calc(var(--plyr-range-thumb-height,13px) * -.5);width:calc(100% + 13px);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:13px;font-size:var(--plyr-font-size-time,var(--plyr-font-size-small,13px));left:0}.plyr__progress__buffer{-webkit-appearance:none;background:0 0;border:0;border-radius:100px;height:5px;height:5px;height:var(--plyr-range-track-height,5px);left:0;margin-top:-2.5px;margin-top:calc(5px / 2 * -1);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:5px;min-width:var(--plyr-range-track-height,5px);-webkit-transition:width .2s ease;transition:width .2s ease}.plyr__progress__buffer::-moz-progress-bar{background:currentColor;border-radius:100px;min-width:5px;min-width:5px;min-width:var(--plyr-range-track-height,5px);-moz-transition:width .2s ease;transition:width .2s ease}.plyr__progress__buffer::-ms-fill{border-radius:100px;-ms-transition:width .2s ease;transition:width .2s ease}.plyr--loading .plyr__progress__buffer{-webkit-animation:plyr-progress 1s linear infinite;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,rgba(35,40,47,.6) 25%,transparent 25%,transparent 50%,rgba(35,40,47,.6) 50%,rgba(35,40,47,.6) 75%,transparent 75%,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: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: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:rgba(193,200,209,.6);background-color:var(--plyr-audio-progress-buffered-background,rgba(193,200,209,.6))}.plyr__volume{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;max-width:110px;min-width:80px;position:relative;width:20%}.plyr__volume input[type=range]{margin-left:5px;margin-left:calc(10px / 2);margin-left:calc(var(--plyr-control-spacing,10px)/ 2);margin-right:5px;margin-right:calc(10px / 2);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:#fff;background:var(--plyr-audio-controls-background,#fff);border-radius:inherit;color:#4a5464;color:#4a5464;color:var(--plyr-audio-control-color,#4a5464);padding:10px;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:#00b3ff;background:#00b3ff;background:var(--plyr-audio-control-background-hover,var(--plyr-color-main,var(--plyr-color-main,#00b3ff)));color:#fff;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: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: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: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{-webkit-box-shadow:0 1px 1px 0 0 0 1px rgba(35,40,47,.15) rgba(35,40,47,.2),0 0 0 3px rgba(35,40,47,.1);box-shadow:0 1px 1px 0 0 0 1px rgba(35,40,47,.15) rgba(35,40,47,.2),0 0 0 3px rgba(35,40,47,.1);-webkit-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: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);-webkit-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));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 0 0 0 1px rgba(35,40,47,.15) rgba(35,40,47,.2),0 0 0 3px rgba(35,40,47,.1);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 0 0 0 1px rgba(35,40,47,.15) rgba(35,40,47,.2),0 0 0 3px rgba(35,40,47,.1);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:rgba(193,200,209,.6);color:var(--plyr-audio-progress-buffered-background,rgba(193,200,209,.6))}.plyr--video{background:#000;background:#000;background:var(--plyr-video-background,var(--plyr-video-background,#000));overflow:hidden}.plyr--video.plyr--menu-open{overflow:visible}.plyr__video-wrapper{background:#000;background:#000;background:var(--plyr-video-background,var(--plyr-video-background,#000));height:100%;margin:auto;overflow:hidden;position:relative;width:100%}.plyr__video-embed,.plyr__video-wrapper--fixed-ratio{aspect-ratio:16/9}@supports not (aspect-ratio:16/9){.plyr__video-embed,.plyr__video-wrapper--fixed-ratio{height:0;padding-bottom:56.25%;position:relative}}.plyr__video-embed iframe,.plyr__video-wrapper--fixed-ratio video{border:0;height:100%;left:0;position:absolute;top:0;width:100%}.plyr--full-ui .plyr__video-embed>.plyr__video-embed__container{padding-bottom:240%;position:relative;-webkit-transform:translateY(-38.28125%);transform:translateY(-38.28125%)}.plyr--video .plyr__controls{background:-webkit-gradient(linear,left top,left bottom,from(transparent),to(rgba(0,0,0,.75)));background:linear-gradient(transparent,rgba(0,0,0,.75));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:#fff;color:var(--plyr-video-control-color,#fff);left:0;padding:5px;padding:calc(10px / 2);padding:calc(var(--plyr-control-spacing,10px)/ 2);padding-top:20px;padding-top:calc(10px * 2);padding-top:calc(var(--plyr-control-spacing,10px) * 2);position:absolute;right:0;-webkit-transition:opacity .4s ease-in-out,-webkit-transform .4s ease-in-out;transition:opacity .4s ease-in-out,-webkit-transform .4s ease-in-out;transition:opacity .4s ease-in-out,transform .4s ease-in-out;transition:opacity .4s ease-in-out,transform .4s ease-in-out,-webkit-transform .4s ease-in-out;z-index:3}.plyr--video.plyr--hide-controls .plyr__controls{opacity:0;pointer-events:none;-webkit-transform:translateY(100%);transform:translateY(100%)}.plyr--video .plyr__control.plyr__tab-focus,.plyr--video .plyr__control:hover,.plyr--video .plyr__control[aria-expanded=true]{background:#00b3ff;background:#00b3ff;background:var(--plyr-video-control-background-hover,var(--plyr-color-main,var(--plyr-color-main,#00b3ff)));color:#fff;color:#fff;color:var(--plyr-video-control-color-hover,#fff)}.plyr__control--overlaid{background:#00b3ff;background:#00b3ff;background:var(--plyr-video-control-background-hover,var(--plyr-color-main,var(--plyr-color-main,#00b3ff)));border:0;border-radius:100%;color:#fff;color:#fff;color:var(--plyr-video-control-color,#fff);display:none;left:50%;opacity:.9;padding:15px;padding:calc(10px * 1.5);padding:calc(var(--plyr-control-spacing,10px) * 1.5);position:absolute;top:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);-webkit-transition:.3s;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: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: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: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{-webkit-box-shadow:0 1px 1px 0 0 0 1px rgba(35,40,47,.15) rgba(35,40,47,.2),0 0 0 3px rgba(255,255,255,.5);box-shadow:0 1px 1px 0 0 0 1px rgba(35,40,47,.15) rgba(35,40,47,.2),0 0 0 3px rgba(255,255,255,.5);-webkit-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: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);-webkit-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));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 0 0 0 1px rgba(35,40,47,.15) rgba(35,40,47,.2),0 0 0 3px rgba(255,255,255,.5);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 0 0 0 1px rgba(35,40,47,.15) rgba(35,40,47,.2),0 0 0 3px rgba(255,255,255,.5);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:hsla(0,0%,100%,.25);color:var(--plyr-video-progress-buffered-background,hsla(0,0%,100%,.25))}.plyr:-webkit-full-screen{background:#000;border-radius:0!important;height:100%;margin:0;width:100%}.plyr:-ms-fullscreen{background:#000;border-radius:0!important;height:100%;margin:0;width:100%}.plyr:fullscreen{background:#000;border-radius:0!important;height:100%;margin:0;width:100%}.plyr:-webkit-full-screen video{height:100%}.plyr:-ms-fullscreen video{height:100%}.plyr:fullscreen video{height:100%}.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen{display:block}.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen{display:block}.plyr:fullscreen .plyr__control .icon--exit-fullscreen{display:block}.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen+svg{display:none}.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen+svg{display:none}.plyr:fullscreen .plyr__control .icon--exit-fullscreen+svg{display:none}.plyr:-webkit-full-screen.plyr--hide-controls{cursor:none}.plyr:-ms-fullscreen.plyr--hide-controls{cursor:none}.plyr:fullscreen.plyr--hide-controls{cursor:none}.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__control .icon--exit-fullscreen{display:block}.plyr--fullscreen-fallback .plyr__control .icon--exit-fullscreen+svg{display:none}.plyr--fullscreen-fallback.plyr--hide-controls{cursor:none}.plyr__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: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:10px;right:var(--plyr-control-spacing,10px);z-index:3}.plyr__ads:empty:after{display:none}.plyr__cues{background:currentColor;display:block;height:5px;height:5px;height:var(--plyr-range-track-height,5px);left:0;opacity:.8;position:absolute;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);width:3px;z-index:3}.plyr__preview-thumb{background-color:hsla(0,0%,100%,.9);background-color:hsla(0,0%,100%,.9);background-color:var(--plyr-tooltip-background,hsla(0,0%,100%,.9));border-radius:3px;bottom:100%;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.15);box-shadow:0 1px 2px rgba(0,0,0,.15);box-shadow:0 1px 2px rgba(0,0,0,.15);-webkit-box-shadow:var(--plyr-tooltip-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(10px / 2 * 2);margin-bottom:calc(var(--plyr-control-spacing,10px)/ 2 * 2);opacity:0;padding:3px;padding:3px;padding:var(--plyr-tooltip-radius,3px);pointer-events:none;position:absolute;-webkit-transform:translateY(10px) scale(.8);transform:translateY(10px) scale(.8);-webkit-transform-origin:50% 100%;transform-origin:50% 100%;-webkit-transition:opacity .2s ease .1s,-webkit-transform .2s ease .1s;transition:opacity .2s ease .1s,-webkit-transform .2s ease .1s;transition:transform .2s ease .1s,opacity .2s ease .1s;transition:transform .2s ease .1s,opacity .2s ease .1s,-webkit-transform .2s ease .1s;z-index:2}.plyr__preview-thumb--is-shown{opacity:1;-webkit-transform:translate(0) scale(1);transform:translate(0) scale(1)}.plyr__preview-thumb:before{border-left:4px solid transparent;border-left:4px solid transparent;border-left:var(--plyr-tooltip-arrow-size,4px) solid transparent;border-right: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: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(4px * -1);bottom:calc(var(--plyr-tooltip-arrow-size,4px) * -1);content:'';height:0;left:50%;position:absolute;-webkit-transform:translateX(-50%);transform:translateX(-50%);width:0;z-index:2}.plyr__preview-thumb__image-container{background:#c1c8d1;border-radius:2px;border-radius:calc(3px - 1px);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(3px - 1px);border-radius:calc(var(--plyr-tooltip-radius,3px) - 1px);color:#fff;font-size:13px;font-size:13px;font-size:var(--plyr-font-size-time,var(--plyr-font-size-small,13px));padding:3px 6px}.plyr__preview-scrubbing{bottom:0;-webkit-filter:blur(1px);filter:blur(1px);height:100%;left:0;margin:auto;opacity:0;overflow:hidden;pointer-events:none;position:absolute;right:0;top:0;-webkit-transition:opacity .3s ease;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;-o-object-fit:contain;object-fit:contain;position:absolute;top:0;width:100%}.plyr--no-transition{-webkit-transition:none!important;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}@media (min-width:480px){.plyr__captions{font-size:15px;font-size:15px;font-size:var(--plyr-font-size-base,15px);padding:20px;padding:calc(10px * 2);padding:calc(var(--plyr-control-spacing,10px) * 2)}.plyr--video .plyr__controls{padding:10px;padding:10px;padding:var(--plyr-control-spacing,10px);padding-top:35px;padding-top:calc(10px * 3.5);padding-top:calc(var(--plyr-control-spacing,10px) * 3.5)}}@media (min-width:768px){.plyr__captions{font-size:18px;font-size:18px;font-size:var(--plyr-font-size-large,18px)}}@media (min-width:1024px){.plyr:-webkit-full-screen .plyr__captions{font-size:21px;font-size:21px;font-size:var(--plyr-font-size-xlarge,21px)}.plyr:-ms-fullscreen .plyr__captions{font-size:21px;font-size:21px;font-size:var(--plyr-font-size-xlarge,21px)}.plyr:fullscreen .plyr__captions{font-size:21px;font-size:21px;font-size:var(--plyr-font-size-xlarge,21px)}.plyr--fullscreen-fallback .plyr__captions{font-size:21px;font-size:21px;font-size:var(--plyr-font-size-xlarge,21px)}}@media (max-width:767px){.plyr__time+.plyr__time{display:none}}
\ No newline at end of file
diff --git a/docs/assets/vendor/glightbox/js/glightbox.js b/docs/assets/vendor/glightbox/js/glightbox.js
new file mode 100644
index 0000000..1761dc6
--- /dev/null
+++ b/docs/assets/vendor/glightbox/js/glightbox.js
@@ -0,0 +1,3655 @@
+(function (global, factory) {
+ typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
+ typeof define === 'function' && define.amd ? define(factory) :
+ (global = global || self, global.GLightbox = factory());
+}(this, (function () { 'use strict';
+
+ function _typeof(obj) {
+ "@babel/helpers - typeof";
+
+ if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") {
+ _typeof = function (obj) {
+ return typeof obj;
+ };
+ } else {
+ _typeof = function (obj) {
+ return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj;
+ };
+ }
+
+ return _typeof(obj);
+ }
+
+ function _classCallCheck(instance, Constructor) {
+ if (!(instance instanceof Constructor)) {
+ throw new TypeError("Cannot call a class as a function");
+ }
+ }
+
+ function _defineProperties(target, props) {
+ for (var i = 0; i < props.length; i++) {
+ var descriptor = props[i];
+ descriptor.enumerable = descriptor.enumerable || false;
+ descriptor.configurable = true;
+ if ("value" in descriptor) descriptor.writable = true;
+ Object.defineProperty(target, descriptor.key, descriptor);
+ }
+ }
+
+ function _createClass(Constructor, protoProps, staticProps) {
+ if (protoProps) _defineProperties(Constructor.prototype, protoProps);
+ if (staticProps) _defineProperties(Constructor, staticProps);
+ return Constructor;
+ }
+
+ var uid = Date.now();
+ function extend() {
+ var extended = {};
+ var deep = true;
+ var i = 0;
+ var length = arguments.length;
+
+ if (Object.prototype.toString.call(arguments[0]) === '[object Boolean]') {
+ deep = arguments[0];
+ i++;
+ }
+
+ var merge = function merge(obj) {
+ for (var prop in obj) {
+ if (Object.prototype.hasOwnProperty.call(obj, prop)) {
+ if (deep && Object.prototype.toString.call(obj[prop]) === '[object Object]') {
+ extended[prop] = extend(true, extended[prop], obj[prop]);
+ } else {
+ extended[prop] = obj[prop];
+ }
+ }
+ }
+ };
+
+ for (; i < length; i++) {
+ var obj = arguments[i];
+ merge(obj);
+ }
+
+ return extended;
+ }
+ function each(collection, callback) {
+ if (isNode(collection) || collection === window || collection === document) {
+ collection = [collection];
+ }
+
+ if (!isArrayLike(collection) && !isObject(collection)) {
+ collection = [collection];
+ }
+
+ if (size(collection) == 0) {
+ return;
+ }
+
+ if (isArrayLike(collection) && !isObject(collection)) {
+ var l = collection.length,
+ i = 0;
+
+ for (; i < l; i++) {
+ if (callback.call(collection[i], collection[i], i, collection) === false) {
+ break;
+ }
+ }
+ } else if (isObject(collection)) {
+ for (var key in collection) {
+ if (has(collection, key)) {
+ if (callback.call(collection[key], collection[key], key, collection) === false) {
+ break;
+ }
+ }
+ }
+ }
+ }
+ function getNodeEvents(node) {
+ var name = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null;
+ var fn = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : null;
+ var cache = node[uid] = node[uid] || [];
+ var data = {
+ all: cache,
+ evt: null,
+ found: null
+ };
+
+ if (name && fn && size(cache) > 0) {
+ each(cache, function (cl, i) {
+ if (cl.eventName == name && cl.fn.toString() == fn.toString()) {
+ data.found = true;
+ data.evt = i;
+ return false;
+ }
+ });
+ }
+
+ return data;
+ }
+ function addEvent(eventName) {
+ var _ref = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {},
+ onElement = _ref.onElement,
+ withCallback = _ref.withCallback,
+ _ref$avoidDuplicate = _ref.avoidDuplicate,
+ avoidDuplicate = _ref$avoidDuplicate === void 0 ? true : _ref$avoidDuplicate,
+ _ref$once = _ref.once,
+ once = _ref$once === void 0 ? false : _ref$once,
+ _ref$useCapture = _ref.useCapture,
+ useCapture = _ref$useCapture === void 0 ? false : _ref$useCapture;
+
+ var thisArg = arguments.length > 2 ? arguments[2] : undefined;
+ var element = onElement || [];
+
+ if (isString(element)) {
+ element = document.querySelectorAll(element);
+ }
+
+ function handler(event) {
+ if (isFunction(withCallback)) {
+ withCallback.call(thisArg, event, this);
+ }
+
+ if (once) {
+ handler.destroy();
+ }
+ }
+
+ handler.destroy = function () {
+ each(element, function (el) {
+ var events = getNodeEvents(el, eventName, handler);
+
+ if (events.found) {
+ events.all.splice(events.evt, 1);
+ }
+
+ if (el.removeEventListener) {
+ el.removeEventListener(eventName, handler, useCapture);
+ }
+ });
+ };
+
+ each(element, function (el) {
+ var events = getNodeEvents(el, eventName, handler);
+
+ if (el.addEventListener && avoidDuplicate && !events.found || !avoidDuplicate) {
+ el.addEventListener(eventName, handler, useCapture);
+ events.all.push({
+ eventName: eventName,
+ fn: handler
+ });
+ }
+ });
+ return handler;
+ }
+ function addClass(node, name) {
+ each(name.split(' '), function (cl) {
+ return node.classList.add(cl);
+ });
+ }
+ function removeClass(node, name) {
+ each(name.split(' '), function (cl) {
+ return node.classList.remove(cl);
+ });
+ }
+ function hasClass(node, name) {
+ return node.classList.contains(name);
+ }
+ function closest(elem, selector) {
+ while (elem !== document.body) {
+ elem = elem.parentElement;
+
+ if (!elem) {
+ return false;
+ }
+
+ var matches = typeof elem.matches == 'function' ? elem.matches(selector) : elem.msMatchesSelector(selector);
+
+ if (matches) {
+ return elem;
+ }
+ }
+ }
+ function animateElement(element) {
+ var animation = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : '';
+ var callback = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;
+
+ if (!element || animation === '') {
+ return false;
+ }
+
+ if (animation === 'none') {
+ if (isFunction(callback)) {
+ callback();
+ }
+
+ return false;
+ }
+
+ var animationEnd = whichAnimationEvent();
+ var animationNames = animation.split(' ');
+ each(animationNames, function (name) {
+ addClass(element, 'g' + name);
+ });
+ addEvent(animationEnd, {
+ onElement: element,
+ avoidDuplicate: false,
+ once: true,
+ withCallback: function withCallback(event, target) {
+ each(animationNames, function (name) {
+ removeClass(target, 'g' + name);
+ });
+
+ if (isFunction(callback)) {
+ callback();
+ }
+ }
+ });
+ }
+ function cssTransform(node) {
+ var translate = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : '';
+
+ if (translate === '') {
+ node.style.webkitTransform = '';
+ node.style.MozTransform = '';
+ node.style.msTransform = '';
+ node.style.OTransform = '';
+ node.style.transform = '';
+ return false;
+ }
+
+ node.style.webkitTransform = translate;
+ node.style.MozTransform = translate;
+ node.style.msTransform = translate;
+ node.style.OTransform = translate;
+ node.style.transform = translate;
+ }
+ function show(element) {
+ element.style.display = 'block';
+ }
+ function hide(element) {
+ element.style.display = 'none';
+ }
+ function createHTML(htmlStr) {
+ var frag = document.createDocumentFragment(),
+ temp = document.createElement('div');
+ temp.innerHTML = htmlStr;
+
+ while (temp.firstChild) {
+ frag.appendChild(temp.firstChild);
+ }
+
+ return frag;
+ }
+ function windowSize() {
+ return {
+ width: window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth,
+ height: window.innerHeight || document.documentElement.clientHeight || document.body.clientHeight
+ };
+ }
+ function whichAnimationEvent() {
+ var t,
+ el = document.createElement('fakeelement');
+ var animations = {
+ animation: 'animationend',
+ OAnimation: 'oAnimationEnd',
+ MozAnimation: 'animationend',
+ WebkitAnimation: 'webkitAnimationEnd'
+ };
+
+ for (t in animations) {
+ if (el.style[t] !== undefined) {
+ return animations[t];
+ }
+ }
+ }
+ function whichTransitionEvent() {
+ var t,
+ el = document.createElement('fakeelement');
+ var transitions = {
+ transition: 'transitionend',
+ OTransition: 'oTransitionEnd',
+ MozTransition: 'transitionend',
+ WebkitTransition: 'webkitTransitionEnd'
+ };
+
+ for (t in transitions) {
+ if (el.style[t] !== undefined) {
+ return transitions[t];
+ }
+ }
+ }
+ function createIframe(config) {
+ var url = config.url,
+ allow = config.allow,
+ callback = config.callback,
+ appendTo = config.appendTo;
+ var iframe = document.createElement('iframe');
+ iframe.className = 'vimeo-video gvideo';
+ iframe.src = url;
+ iframe.style.width = '100%';
+ iframe.style.height = '100%';
+
+ if (allow) {
+ iframe.setAttribute('allow', allow);
+ }
+
+ iframe.onload = function () {
+ iframe.onload = null;
+ addClass(iframe, 'node-ready');
+
+ if (isFunction(callback)) {
+ callback();
+ }
+ };
+
+ if (appendTo) {
+ appendTo.appendChild(iframe);
+ }
+
+ return iframe;
+ }
+ function waitUntil(check, onComplete, delay, timeout) {
+ if (check()) {
+ onComplete();
+ return;
+ }
+
+ if (!delay) {
+ delay = 100;
+ }
+
+ var timeoutPointer;
+ var intervalPointer = setInterval(function () {
+ if (!check()) {
+ return;
+ }
+
+ clearInterval(intervalPointer);
+
+ if (timeoutPointer) {
+ clearTimeout(timeoutPointer);
+ }
+
+ onComplete();
+ }, delay);
+
+ if (timeout) {
+ timeoutPointer = setTimeout(function () {
+ clearInterval(intervalPointer);
+ }, timeout);
+ }
+ }
+ function injectAssets(url, waitFor, callback) {
+ if (isNil(url)) {
+ console.error('Inject assets error');
+ return;
+ }
+
+ if (isFunction(waitFor)) {
+ callback = waitFor;
+ waitFor = false;
+ }
+
+ if (isString(waitFor) && waitFor in window) {
+ if (isFunction(callback)) {
+ callback();
+ }
+
+ return;
+ }
+
+ var found;
+
+ if (url.indexOf('.css') !== -1) {
+ found = document.querySelectorAll('link[href="' + url + '"]');
+
+ if (found && found.length > 0) {
+ if (isFunction(callback)) {
+ callback();
+ }
+
+ return;
+ }
+
+ var head = document.getElementsByTagName('head')[0];
+ var headStyles = head.querySelectorAll('link[rel="stylesheet"]');
+ var link = document.createElement('link');
+ link.rel = 'stylesheet';
+ link.type = 'text/css';
+ link.href = url;
+ link.media = 'all';
+
+ if (headStyles) {
+ head.insertBefore(link, headStyles[0]);
+ } else {
+ head.appendChild(link);
+ }
+
+ if (isFunction(callback)) {
+ callback();
+ }
+
+ return;
+ }
+
+ found = document.querySelectorAll('script[src="' + url + '"]');
+
+ if (found && found.length > 0) {
+ if (isFunction(callback)) {
+ if (isString(waitFor)) {
+ waitUntil(function () {
+ return typeof window[waitFor] !== 'undefined';
+ }, function () {
+ callback();
+ });
+ return false;
+ }
+
+ callback();
+ }
+
+ return;
+ }
+
+ var script = document.createElement('script');
+ script.type = 'text/javascript';
+ script.src = url;
+
+ script.onload = function () {
+ if (isFunction(callback)) {
+ if (isString(waitFor)) {
+ waitUntil(function () {
+ return typeof window[waitFor] !== 'undefined';
+ }, function () {
+ callback();
+ });
+ return false;
+ }
+
+ callback();
+ }
+ };
+
+ document.body.appendChild(script);
+ }
+ function isMobile() {
+ return 'navigator' in window && window.navigator.userAgent.match(/(iPad)|(iPhone)|(iPod)|(Android)|(PlayBook)|(BB10)|(BlackBerry)|(Opera Mini)|(IEMobile)|(webOS)|(MeeGo)/i);
+ }
+ function isTouch() {
+ return isMobile() !== null || document.createTouch !== undefined || 'ontouchstart' in window || 'onmsgesturechange' in window || navigator.msMaxTouchPoints;
+ }
+ function isFunction(f) {
+ return typeof f === 'function';
+ }
+ function isString(s) {
+ return typeof s === 'string';
+ }
+ function isNode(el) {
+ return !!(el && el.nodeType && el.nodeType == 1);
+ }
+ function isArray(ar) {
+ return Array.isArray(ar);
+ }
+ function isArrayLike(ar) {
+ return ar && ar.length && isFinite(ar.length);
+ }
+ function isObject(o) {
+ var type = _typeof(o);
+
+ return type === 'object' && o != null && !isFunction(o) && !isArray(o);
+ }
+ function isNil(o) {
+ return o == null;
+ }
+ function has(obj, key) {
+ return obj !== null && hasOwnProperty.call(obj, key);
+ }
+ function size(o) {
+ if (isObject(o)) {
+ if (o.keys) {
+ return o.keys().length;
+ }
+
+ var l = 0;
+
+ for (var k in o) {
+ if (has(o, k)) {
+ l++;
+ }
+ }
+
+ return l;
+ } else {
+ return o.length;
+ }
+ }
+ function isNumber(n) {
+ return !isNaN(parseFloat(n)) && isFinite(n);
+ }
+
+ function getNextFocusElement() {
+ var current = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : -1;
+ var btns = document.querySelectorAll('.gbtn[data-taborder]:not(.disabled)');
+
+ if (!btns.length) {
+ return false;
+ }
+
+ if (btns.length == 1) {
+ return btns[0];
+ }
+
+ if (typeof current == 'string') {
+ current = parseInt(current);
+ }
+
+ var orders = [];
+ each(btns, function (btn) {
+ orders.push(btn.getAttribute('data-taborder'));
+ });
+ var highestOrder = Math.max.apply(Math, orders.map(function (order) {
+ return parseInt(order);
+ }));
+ var newIndex = current < 0 ? 1 : current + 1;
+
+ if (newIndex > highestOrder) {
+ newIndex = '1';
+ }
+
+ var nextOrders = orders.filter(function (el) {
+ return el >= parseInt(newIndex);
+ });
+ var nextFocus = nextOrders.sort()[0];
+ return document.querySelector(".gbtn[data-taborder=\"".concat(nextFocus, "\"]"));
+ }
+
+ function keyboardNavigation(instance) {
+ if (instance.events.hasOwnProperty('keyboard')) {
+ return false;
+ }
+
+ instance.events['keyboard'] = addEvent('keydown', {
+ onElement: window,
+ withCallback: function withCallback(event, target) {
+ event = event || window.event;
+ var key = event.keyCode;
+
+ if (key == 9) {
+ var focusedButton = document.querySelector('.gbtn.focused');
+
+ if (!focusedButton) {
+ var activeElement = document.activeElement && document.activeElement.nodeName ? document.activeElement.nodeName.toLocaleLowerCase() : false;
+
+ if (activeElement == 'input' || activeElement == 'textarea' || activeElement == 'button') {
+ return;
+ }
+ }
+
+ event.preventDefault();
+ var btns = document.querySelectorAll('.gbtn[data-taborder]');
+
+ if (!btns || btns.length <= 0) {
+ return;
+ }
+
+ if (!focusedButton) {
+ var first = getNextFocusElement();
+
+ if (first) {
+ first.focus();
+ addClass(first, 'focused');
+ }
+
+ return;
+ }
+
+ var currentFocusOrder = focusedButton.getAttribute('data-taborder');
+ var nextFocus = getNextFocusElement(currentFocusOrder);
+ removeClass(focusedButton, 'focused');
+
+ if (nextFocus) {
+ nextFocus.focus();
+ addClass(nextFocus, 'focused');
+ }
+ }
+
+ if (key == 39) {
+ instance.nextSlide();
+ }
+
+ if (key == 37) {
+ instance.prevSlide();
+ }
+
+ if (key == 27) {
+ instance.close();
+ }
+ }
+ });
+ }
+
+ function getLen(v) {
+ return Math.sqrt(v.x * v.x + v.y * v.y);
+ }
+
+ function dot(v1, v2) {
+ return v1.x * v2.x + v1.y * v2.y;
+ }
+
+ function getAngle(v1, v2) {
+ var mr = getLen(v1) * getLen(v2);
+
+ if (mr === 0) {
+ return 0;
+ }
+
+ var r = dot(v1, v2) / mr;
+
+ if (r > 1) {
+ r = 1;
+ }
+
+ return Math.acos(r);
+ }
+
+ function cross(v1, v2) {
+ return v1.x * v2.y - v2.x * v1.y;
+ }
+
+ function getRotateAngle(v1, v2) {
+ var angle = getAngle(v1, v2);
+
+ if (cross(v1, v2) > 0) {
+ angle *= -1;
+ }
+
+ return angle * 180 / Math.PI;
+ }
+
+ var EventsHandlerAdmin = function () {
+ function EventsHandlerAdmin(el) {
+ _classCallCheck(this, EventsHandlerAdmin);
+
+ this.handlers = [];
+ this.el = el;
+ }
+
+ _createClass(EventsHandlerAdmin, [{
+ key: "add",
+ value: function add(handler) {
+ this.handlers.push(handler);
+ }
+ }, {
+ key: "del",
+ value: function del(handler) {
+ if (!handler) {
+ this.handlers = [];
+ }
+
+ for (var i = this.handlers.length; i >= 0; i--) {
+ if (this.handlers[i] === handler) {
+ this.handlers.splice(i, 1);
+ }
+ }
+ }
+ }, {
+ key: "dispatch",
+ value: function dispatch() {
+ for (var i = 0, len = this.handlers.length; i < len; i++) {
+ var handler = this.handlers[i];
+
+ if (typeof handler === 'function') {
+ handler.apply(this.el, arguments);
+ }
+ }
+ }
+ }]);
+
+ return EventsHandlerAdmin;
+ }();
+
+ function wrapFunc(el, handler) {
+ var EventshandlerAdmin = new EventsHandlerAdmin(el);
+ EventshandlerAdmin.add(handler);
+ return EventshandlerAdmin;
+ }
+
+ var TouchEvents = function () {
+ function TouchEvents(el, option) {
+ _classCallCheck(this, TouchEvents);
+
+ this.element = typeof el == 'string' ? document.querySelector(el) : el;
+ this.start = this.start.bind(this);
+ this.move = this.move.bind(this);
+ this.end = this.end.bind(this);
+ this.cancel = this.cancel.bind(this);
+ this.element.addEventListener('touchstart', this.start, false);
+ this.element.addEventListener('touchmove', this.move, false);
+ this.element.addEventListener('touchend', this.end, false);
+ this.element.addEventListener('touchcancel', this.cancel, false);
+ this.preV = {
+ x: null,
+ y: null
+ };
+ this.pinchStartLen = null;
+ this.zoom = 1;
+ this.isDoubleTap = false;
+
+ var noop = function noop() {};
+
+ this.rotate = wrapFunc(this.element, option.rotate || noop);
+ this.touchStart = wrapFunc(this.element, option.touchStart || noop);
+ this.multipointStart = wrapFunc(this.element, option.multipointStart || noop);
+ this.multipointEnd = wrapFunc(this.element, option.multipointEnd || noop);
+ this.pinch = wrapFunc(this.element, option.pinch || noop);
+ this.swipe = wrapFunc(this.element, option.swipe || noop);
+ this.tap = wrapFunc(this.element, option.tap || noop);
+ this.doubleTap = wrapFunc(this.element, option.doubleTap || noop);
+ this.longTap = wrapFunc(this.element, option.longTap || noop);
+ this.singleTap = wrapFunc(this.element, option.singleTap || noop);
+ this.pressMove = wrapFunc(this.element, option.pressMove || noop);
+ this.twoFingerPressMove = wrapFunc(this.element, option.twoFingerPressMove || noop);
+ this.touchMove = wrapFunc(this.element, option.touchMove || noop);
+ this.touchEnd = wrapFunc(this.element, option.touchEnd || noop);
+ this.touchCancel = wrapFunc(this.element, option.touchCancel || noop);
+ this.translateContainer = this.element;
+ this._cancelAllHandler = this.cancelAll.bind(this);
+ window.addEventListener('scroll', this._cancelAllHandler);
+ this.delta = null;
+ this.last = null;
+ this.now = null;
+ this.tapTimeout = null;
+ this.singleTapTimeout = null;
+ this.longTapTimeout = null;
+ this.swipeTimeout = null;
+ this.x1 = this.x2 = this.y1 = this.y2 = null;
+ this.preTapPosition = {
+ x: null,
+ y: null
+ };
+ }
+
+ _createClass(TouchEvents, [{
+ key: "start",
+ value: function start(evt) {
+ if (!evt.touches) {
+ return;
+ }
+
+ var ignoreDragFor = ['a', 'button', 'input'];
+
+ if (evt.target && evt.target.nodeName && ignoreDragFor.indexOf(evt.target.nodeName.toLowerCase()) >= 0) {
+ console.log('ignore drag for this touched element', evt.target.nodeName.toLowerCase());
+ return;
+ }
+
+ this.now = Date.now();
+ this.x1 = evt.touches[0].pageX;
+ this.y1 = evt.touches[0].pageY;
+ this.delta = this.now - (this.last || this.now);
+ this.touchStart.dispatch(evt, this.element);
+
+ if (this.preTapPosition.x !== null) {
+ this.isDoubleTap = this.delta > 0 && this.delta <= 250 && Math.abs(this.preTapPosition.x - this.x1) < 30 && Math.abs(this.preTapPosition.y - this.y1) < 30;
+
+ if (this.isDoubleTap) {
+ clearTimeout(this.singleTapTimeout);
+ }
+ }
+
+ this.preTapPosition.x = this.x1;
+ this.preTapPosition.y = this.y1;
+ this.last = this.now;
+ var preV = this.preV,
+ len = evt.touches.length;
+
+ if (len > 1) {
+ this._cancelLongTap();
+
+ this._cancelSingleTap();
+
+ var v = {
+ x: evt.touches[1].pageX - this.x1,
+ y: evt.touches[1].pageY - this.y1
+ };
+ preV.x = v.x;
+ preV.y = v.y;
+ this.pinchStartLen = getLen(preV);
+ this.multipointStart.dispatch(evt, this.element);
+ }
+
+ this._preventTap = false;
+ this.longTapTimeout = setTimeout(function () {
+ this.longTap.dispatch(evt, this.element);
+ this._preventTap = true;
+ }.bind(this), 750);
+ }
+ }, {
+ key: "move",
+ value: function move(evt) {
+ if (!evt.touches) {
+ return;
+ }
+
+ var preV = this.preV,
+ len = evt.touches.length,
+ currentX = evt.touches[0].pageX,
+ currentY = evt.touches[0].pageY;
+ this.isDoubleTap = false;
+
+ if (len > 1) {
+ var sCurrentX = evt.touches[1].pageX,
+ sCurrentY = evt.touches[1].pageY;
+ var v = {
+ x: evt.touches[1].pageX - currentX,
+ y: evt.touches[1].pageY - currentY
+ };
+
+ if (preV.x !== null) {
+ if (this.pinchStartLen > 0) {
+ evt.zoom = getLen(v) / this.pinchStartLen;
+ this.pinch.dispatch(evt, this.element);
+ }
+
+ evt.angle = getRotateAngle(v, preV);
+ this.rotate.dispatch(evt, this.element);
+ }
+
+ preV.x = v.x;
+ preV.y = v.y;
+
+ if (this.x2 !== null && this.sx2 !== null) {
+ evt.deltaX = (currentX - this.x2 + sCurrentX - this.sx2) / 2;
+ evt.deltaY = (currentY - this.y2 + sCurrentY - this.sy2) / 2;
+ } else {
+ evt.deltaX = 0;
+ evt.deltaY = 0;
+ }
+
+ this.twoFingerPressMove.dispatch(evt, this.element);
+ this.sx2 = sCurrentX;
+ this.sy2 = sCurrentY;
+ } else {
+ if (this.x2 !== null) {
+ evt.deltaX = currentX - this.x2;
+ evt.deltaY = currentY - this.y2;
+ var movedX = Math.abs(this.x1 - this.x2),
+ movedY = Math.abs(this.y1 - this.y2);
+
+ if (movedX > 10 || movedY > 10) {
+ this._preventTap = true;
+ }
+ } else {
+ evt.deltaX = 0;
+ evt.deltaY = 0;
+ }
+
+ this.pressMove.dispatch(evt, this.element);
+ }
+
+ this.touchMove.dispatch(evt, this.element);
+
+ this._cancelLongTap();
+
+ this.x2 = currentX;
+ this.y2 = currentY;
+
+ if (len > 1) {
+ evt.preventDefault();
+ }
+ }
+ }, {
+ key: "end",
+ value: function end(evt) {
+ if (!evt.changedTouches) {
+ return;
+ }
+
+ this._cancelLongTap();
+
+ var self = this;
+
+ if (evt.touches.length < 2) {
+ this.multipointEnd.dispatch(evt, this.element);
+ this.sx2 = this.sy2 = null;
+ }
+
+ if (this.x2 && Math.abs(this.x1 - this.x2) > 30 || this.y2 && Math.abs(this.y1 - this.y2) > 30) {
+ evt.direction = this._swipeDirection(this.x1, this.x2, this.y1, this.y2);
+ this.swipeTimeout = setTimeout(function () {
+ self.swipe.dispatch(evt, self.element);
+ }, 0);
+ } else {
+ this.tapTimeout = setTimeout(function () {
+ if (!self._preventTap) {
+ self.tap.dispatch(evt, self.element);
+ }
+
+ if (self.isDoubleTap) {
+ self.doubleTap.dispatch(evt, self.element);
+ self.isDoubleTap = false;
+ }
+ }, 0);
+
+ if (!self.isDoubleTap) {
+ self.singleTapTimeout = setTimeout(function () {
+ self.singleTap.dispatch(evt, self.element);
+ }, 250);
+ }
+ }
+
+ this.touchEnd.dispatch(evt, this.element);
+ this.preV.x = 0;
+ this.preV.y = 0;
+ this.zoom = 1;
+ this.pinchStartLen = null;
+ this.x1 = this.x2 = this.y1 = this.y2 = null;
+ }
+ }, {
+ key: "cancelAll",
+ value: function cancelAll() {
+ this._preventTap = true;
+ clearTimeout(this.singleTapTimeout);
+ clearTimeout(this.tapTimeout);
+ clearTimeout(this.longTapTimeout);
+ clearTimeout(this.swipeTimeout);
+ }
+ }, {
+ key: "cancel",
+ value: function cancel(evt) {
+ this.cancelAll();
+ this.touchCancel.dispatch(evt, this.element);
+ }
+ }, {
+ key: "_cancelLongTap",
+ value: function _cancelLongTap() {
+ clearTimeout(this.longTapTimeout);
+ }
+ }, {
+ key: "_cancelSingleTap",
+ value: function _cancelSingleTap() {
+ clearTimeout(this.singleTapTimeout);
+ }
+ }, {
+ key: "_swipeDirection",
+ value: function _swipeDirection(x1, x2, y1, y2) {
+ return Math.abs(x1 - x2) >= Math.abs(y1 - y2) ? x1 - x2 > 0 ? 'Left' : 'Right' : y1 - y2 > 0 ? 'Up' : 'Down';
+ }
+ }, {
+ key: "on",
+ value: function on(evt, handler) {
+ if (this[evt]) {
+ this[evt].add(handler);
+ }
+ }
+ }, {
+ key: "off",
+ value: function off(evt, handler) {
+ if (this[evt]) {
+ this[evt].del(handler);
+ }
+ }
+ }, {
+ key: "destroy",
+ value: function destroy() {
+ if (this.singleTapTimeout) {
+ clearTimeout(this.singleTapTimeout);
+ }
+
+ if (this.tapTimeout) {
+ clearTimeout(this.tapTimeout);
+ }
+
+ if (this.longTapTimeout) {
+ clearTimeout(this.longTapTimeout);
+ }
+
+ if (this.swipeTimeout) {
+ clearTimeout(this.swipeTimeout);
+ }
+
+ this.element.removeEventListener('touchstart', this.start);
+ this.element.removeEventListener('touchmove', this.move);
+ this.element.removeEventListener('touchend', this.end);
+ this.element.removeEventListener('touchcancel', this.cancel);
+ this.rotate.del();
+ this.touchStart.del();
+ this.multipointStart.del();
+ this.multipointEnd.del();
+ this.pinch.del();
+ this.swipe.del();
+ this.tap.del();
+ this.doubleTap.del();
+ this.longTap.del();
+ this.singleTap.del();
+ this.pressMove.del();
+ this.twoFingerPressMove.del();
+ this.touchMove.del();
+ this.touchEnd.del();
+ this.touchCancel.del();
+ this.preV = this.pinchStartLen = this.zoom = this.isDoubleTap = this.delta = this.last = this.now = this.tapTimeout = this.singleTapTimeout = this.longTapTimeout = this.swipeTimeout = this.x1 = this.x2 = this.y1 = this.y2 = this.preTapPosition = this.rotate = this.touchStart = this.multipointStart = this.multipointEnd = this.pinch = this.swipe = this.tap = this.doubleTap = this.longTap = this.singleTap = this.pressMove = this.touchMove = this.touchEnd = this.touchCancel = this.twoFingerPressMove = null;
+ window.removeEventListener('scroll', this._cancelAllHandler);
+ return null;
+ }
+ }]);
+
+ return TouchEvents;
+ }();
+
+ function resetSlideMove(slide) {
+ var transitionEnd = whichTransitionEvent();
+ var windowWidth = window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth;
+ var media = hasClass(slide, 'gslide-media') ? slide : slide.querySelector('.gslide-media');
+ var container = closest(media, '.ginner-container');
+ var desc = slide.querySelector('.gslide-description');
+
+ if (windowWidth > 769) {
+ media = container;
+ }
+
+ addClass(media, 'greset');
+ cssTransform(media, 'translate3d(0, 0, 0)');
+ addEvent(transitionEnd, {
+ onElement: media,
+ once: true,
+ withCallback: function withCallback(event, target) {
+ removeClass(media, 'greset');
+ }
+ });
+ media.style.opacity = '';
+
+ if (desc) {
+ desc.style.opacity = '';
+ }
+ }
+
+ function touchNavigation(instance) {
+ if (instance.events.hasOwnProperty('touch')) {
+ return false;
+ }
+
+ var winSize = windowSize();
+ var winWidth = winSize.width;
+ var winHeight = winSize.height;
+ var process = false;
+ var currentSlide = null;
+ var media = null;
+ var mediaImage = null;
+ var doingMove = false;
+ var initScale = 1;
+ var maxScale = 4.5;
+ var currentScale = 1;
+ var doingZoom = false;
+ var imageZoomed = false;
+ var zoomedPosX = null;
+ var zoomedPosY = null;
+ var lastZoomedPosX = null;
+ var lastZoomedPosY = null;
+ var hDistance;
+ var vDistance;
+ var hDistancePercent = 0;
+ var vDistancePercent = 0;
+ var vSwipe = false;
+ var hSwipe = false;
+ var startCoords = {};
+ var endCoords = {};
+ var xDown = 0;
+ var yDown = 0;
+ var isInlined;
+ var sliderWrapper = document.getElementById('glightbox-slider');
+ var overlay = document.querySelector('.goverlay');
+ var touchInstance = new TouchEvents(sliderWrapper, {
+ touchStart: function touchStart(e) {
+ process = true;
+
+ if (hasClass(e.targetTouches[0].target, 'ginner-container') || closest(e.targetTouches[0].target, '.gslide-desc') || e.targetTouches[0].target.nodeName.toLowerCase() == 'a') {
+ process = false;
+ }
+
+ if (closest(e.targetTouches[0].target, '.gslide-inline') && !hasClass(e.targetTouches[0].target.parentNode, 'gslide-inline')) {
+ process = false;
+ }
+
+ if (process) {
+ endCoords = e.targetTouches[0];
+ startCoords.pageX = e.targetTouches[0].pageX;
+ startCoords.pageY = e.targetTouches[0].pageY;
+ xDown = e.targetTouches[0].clientX;
+ yDown = e.targetTouches[0].clientY;
+ currentSlide = instance.activeSlide;
+ media = currentSlide.querySelector('.gslide-media');
+ isInlined = currentSlide.querySelector('.gslide-inline');
+ mediaImage = null;
+
+ if (hasClass(media, 'gslide-image')) {
+ mediaImage = media.querySelector('img');
+ }
+
+ var windowWidth = window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth;
+
+ if (windowWidth > 769) {
+ media = currentSlide.querySelector('.ginner-container');
+ }
+
+ removeClass(overlay, 'greset');
+
+ if (e.pageX > 20 && e.pageX < window.innerWidth - 20) {
+ return;
+ }
+
+ e.preventDefault();
+ }
+ },
+ touchMove: function touchMove(e) {
+ if (!process) {
+ return;
+ }
+
+ endCoords = e.targetTouches[0];
+
+ if (doingZoom || imageZoomed) {
+ return;
+ }
+
+ if (isInlined && isInlined.offsetHeight > winHeight) {
+ var moved = startCoords.pageX - endCoords.pageX;
+
+ if (Math.abs(moved) <= 13) {
+ return false;
+ }
+ }
+
+ doingMove = true;
+ var xUp = e.targetTouches[0].clientX;
+ var yUp = e.targetTouches[0].clientY;
+ var xDiff = xDown - xUp;
+ var yDiff = yDown - yUp;
+
+ if (Math.abs(xDiff) > Math.abs(yDiff)) {
+ vSwipe = false;
+ hSwipe = true;
+ } else {
+ hSwipe = false;
+ vSwipe = true;
+ }
+
+ hDistance = endCoords.pageX - startCoords.pageX;
+ hDistancePercent = hDistance * 100 / winWidth;
+ vDistance = endCoords.pageY - startCoords.pageY;
+ vDistancePercent = vDistance * 100 / winHeight;
+ var opacity;
+
+ if (vSwipe && mediaImage) {
+ opacity = 1 - Math.abs(vDistance) / winHeight;
+ overlay.style.opacity = opacity;
+
+ if (instance.settings.touchFollowAxis) {
+ hDistancePercent = 0;
+ }
+ }
+
+ if (hSwipe) {
+ opacity = 1 - Math.abs(hDistance) / winWidth;
+ media.style.opacity = opacity;
+
+ if (instance.settings.touchFollowAxis) {
+ vDistancePercent = 0;
+ }
+ }
+
+ if (!mediaImage) {
+ return cssTransform(media, "translate3d(".concat(hDistancePercent, "%, 0, 0)"));
+ }
+
+ cssTransform(media, "translate3d(".concat(hDistancePercent, "%, ").concat(vDistancePercent, "%, 0)"));
+ },
+ touchEnd: function touchEnd() {
+ if (!process) {
+ return;
+ }
+
+ doingMove = false;
+
+ if (imageZoomed || doingZoom) {
+ lastZoomedPosX = zoomedPosX;
+ lastZoomedPosY = zoomedPosY;
+ return;
+ }
+
+ var v = Math.abs(parseInt(vDistancePercent));
+ var h = Math.abs(parseInt(hDistancePercent));
+
+ if (v > 29 && mediaImage) {
+ instance.close();
+ return;
+ }
+
+ if (v < 29 && h < 25) {
+ addClass(overlay, 'greset');
+ overlay.style.opacity = 1;
+ return resetSlideMove(media);
+ }
+ },
+ multipointEnd: function multipointEnd() {
+ setTimeout(function () {
+ doingZoom = false;
+ }, 50);
+ },
+ multipointStart: function multipointStart() {
+ doingZoom = true;
+ initScale = currentScale ? currentScale : 1;
+ },
+ pinch: function pinch(evt) {
+ if (!mediaImage || doingMove) {
+ return false;
+ }
+
+ doingZoom = true;
+ mediaImage.scaleX = mediaImage.scaleY = initScale * evt.zoom;
+ var scale = initScale * evt.zoom;
+ imageZoomed = true;
+
+ if (scale <= 1) {
+ imageZoomed = false;
+ scale = 1;
+ lastZoomedPosY = null;
+ lastZoomedPosX = null;
+ zoomedPosX = null;
+ zoomedPosY = null;
+ mediaImage.setAttribute('style', '');
+ return;
+ }
+
+ if (scale > maxScale) {
+ scale = maxScale;
+ }
+
+ mediaImage.style.transform = "scale3d(".concat(scale, ", ").concat(scale, ", 1)");
+ currentScale = scale;
+ },
+ pressMove: function pressMove(e) {
+ if (imageZoomed && !doingZoom) {
+ var mhDistance = endCoords.pageX - startCoords.pageX;
+ var mvDistance = endCoords.pageY - startCoords.pageY;
+
+ if (lastZoomedPosX) {
+ mhDistance = mhDistance + lastZoomedPosX;
+ }
+
+ if (lastZoomedPosY) {
+ mvDistance = mvDistance + lastZoomedPosY;
+ }
+
+ zoomedPosX = mhDistance;
+ zoomedPosY = mvDistance;
+ var style = "translate3d(".concat(mhDistance, "px, ").concat(mvDistance, "px, 0)");
+
+ if (currentScale) {
+ style += " scale3d(".concat(currentScale, ", ").concat(currentScale, ", 1)");
+ }
+
+ cssTransform(mediaImage, style);
+ }
+ },
+ swipe: function swipe(evt) {
+ if (imageZoomed) {
+ return;
+ }
+
+ if (doingZoom) {
+ doingZoom = false;
+ return;
+ }
+
+ if (evt.direction == 'Left') {
+ if (instance.index == instance.elements.length - 1) {
+ return resetSlideMove(media);
+ }
+
+ instance.nextSlide();
+ }
+
+ if (evt.direction == 'Right') {
+ if (instance.index == 0) {
+ return resetSlideMove(media);
+ }
+
+ instance.prevSlide();
+ }
+ }
+ });
+ instance.events['touch'] = touchInstance;
+ }
+
+ var ZoomImages = function () {
+ function ZoomImages(el, slide) {
+ var _this = this;
+
+ var onclose = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : null;
+
+ _classCallCheck(this, ZoomImages);
+
+ this.img = el;
+ this.slide = slide;
+ this.onclose = onclose;
+
+ if (this.img.setZoomEvents) {
+ return false;
+ }
+
+ this.active = false;
+ this.zoomedIn = false;
+ this.dragging = false;
+ this.currentX = null;
+ this.currentY = null;
+ this.initialX = null;
+ this.initialY = null;
+ this.xOffset = 0;
+ this.yOffset = 0;
+ this.img.addEventListener('mousedown', function (e) {
+ return _this.dragStart(e);
+ }, false);
+ this.img.addEventListener('mouseup', function (e) {
+ return _this.dragEnd(e);
+ }, false);
+ this.img.addEventListener('mousemove', function (e) {
+ return _this.drag(e);
+ }, false);
+ this.img.addEventListener('click', function (e) {
+ if (_this.slide.classList.contains('dragging-nav')) {
+ _this.zoomOut();
+
+ return false;
+ }
+
+ if (!_this.zoomedIn) {
+ return _this.zoomIn();
+ }
+
+ if (_this.zoomedIn && !_this.dragging) {
+ _this.zoomOut();
+ }
+ }, false);
+ this.img.setZoomEvents = true;
+ }
+
+ _createClass(ZoomImages, [{
+ key: "zoomIn",
+ value: function zoomIn() {
+ var winWidth = this.widowWidth();
+
+ if (this.zoomedIn || winWidth <= 768) {
+ return;
+ }
+
+ var img = this.img;
+ img.setAttribute('data-style', img.getAttribute('style'));
+ img.style.maxWidth = img.naturalWidth + 'px';
+ img.style.maxHeight = img.naturalHeight + 'px';
+
+ if (img.naturalWidth > winWidth) {
+ var centerX = winWidth / 2 - img.naturalWidth / 2;
+ this.setTranslate(this.img.parentNode, centerX, 0);
+ }
+
+ this.slide.classList.add('zoomed');
+ this.zoomedIn = true;
+ }
+ }, {
+ key: "zoomOut",
+ value: function zoomOut() {
+ this.img.parentNode.setAttribute('style', '');
+ this.img.setAttribute('style', this.img.getAttribute('data-style'));
+ this.slide.classList.remove('zoomed');
+ this.zoomedIn = false;
+ this.currentX = null;
+ this.currentY = null;
+ this.initialX = null;
+ this.initialY = null;
+ this.xOffset = 0;
+ this.yOffset = 0;
+
+ if (this.onclose && typeof this.onclose == 'function') {
+ this.onclose();
+ }
+ }
+ }, {
+ key: "dragStart",
+ value: function dragStart(e) {
+ e.preventDefault();
+
+ if (!this.zoomedIn) {
+ this.active = false;
+ return;
+ }
+
+ if (e.type === 'touchstart') {
+ this.initialX = e.touches[0].clientX - this.xOffset;
+ this.initialY = e.touches[0].clientY - this.yOffset;
+ } else {
+ this.initialX = e.clientX - this.xOffset;
+ this.initialY = e.clientY - this.yOffset;
+ }
+
+ if (e.target === this.img) {
+ this.active = true;
+ this.img.classList.add('dragging');
+ }
+ }
+ }, {
+ key: "dragEnd",
+ value: function dragEnd(e) {
+ var _this2 = this;
+
+ e.preventDefault();
+ this.initialX = this.currentX;
+ this.initialY = this.currentY;
+ this.active = false;
+ setTimeout(function () {
+ _this2.dragging = false;
+ _this2.img.isDragging = false;
+
+ _this2.img.classList.remove('dragging');
+ }, 100);
+ }
+ }, {
+ key: "drag",
+ value: function drag(e) {
+ if (this.active) {
+ e.preventDefault();
+
+ if (e.type === 'touchmove') {
+ this.currentX = e.touches[0].clientX - this.initialX;
+ this.currentY = e.touches[0].clientY - this.initialY;
+ } else {
+ this.currentX = e.clientX - this.initialX;
+ this.currentY = e.clientY - this.initialY;
+ }
+
+ this.xOffset = this.currentX;
+ this.yOffset = this.currentY;
+ this.img.isDragging = true;
+ this.dragging = true;
+ this.setTranslate(this.img, this.currentX, this.currentY);
+ }
+ }
+ }, {
+ key: "onMove",
+ value: function onMove(e) {
+ if (!this.zoomedIn) {
+ return;
+ }
+
+ var xOffset = e.clientX - this.img.naturalWidth / 2;
+ var yOffset = e.clientY - this.img.naturalHeight / 2;
+ this.setTranslate(this.img, xOffset, yOffset);
+ }
+ }, {
+ key: "setTranslate",
+ value: function setTranslate(node, xPos, yPos) {
+ node.style.transform = 'translate3d(' + xPos + 'px, ' + yPos + 'px, 0)';
+ }
+ }, {
+ key: "widowWidth",
+ value: function widowWidth() {
+ return window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth;
+ }
+ }]);
+
+ return ZoomImages;
+ }();
+
+ var DragSlides = function () {
+ function DragSlides() {
+ var _this = this;
+
+ var config = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
+
+ _classCallCheck(this, DragSlides);
+
+ var dragEl = config.dragEl,
+ _config$toleranceX = config.toleranceX,
+ toleranceX = _config$toleranceX === void 0 ? 40 : _config$toleranceX,
+ _config$toleranceY = config.toleranceY,
+ toleranceY = _config$toleranceY === void 0 ? 65 : _config$toleranceY,
+ _config$slide = config.slide,
+ slide = _config$slide === void 0 ? null : _config$slide,
+ _config$instance = config.instance,
+ instance = _config$instance === void 0 ? null : _config$instance;
+ this.el = dragEl;
+ this.active = false;
+ this.dragging = false;
+ this.currentX = null;
+ this.currentY = null;
+ this.initialX = null;
+ this.initialY = null;
+ this.xOffset = 0;
+ this.yOffset = 0;
+ this.direction = null;
+ this.lastDirection = null;
+ this.toleranceX = toleranceX;
+ this.toleranceY = toleranceY;
+ this.toleranceReached = false;
+ this.dragContainer = this.el;
+ this.slide = slide;
+ this.instance = instance;
+ this.el.addEventListener('mousedown', function (e) {
+ return _this.dragStart(e);
+ }, false);
+ this.el.addEventListener('mouseup', function (e) {
+ return _this.dragEnd(e);
+ }, false);
+ this.el.addEventListener('mousemove', function (e) {
+ return _this.drag(e);
+ }, false);
+ }
+
+ _createClass(DragSlides, [{
+ key: "dragStart",
+ value: function dragStart(e) {
+ if (this.slide.classList.contains('zoomed')) {
+ this.active = false;
+ return;
+ }
+
+ if (e.type === 'touchstart') {
+ this.initialX = e.touches[0].clientX - this.xOffset;
+ this.initialY = e.touches[0].clientY - this.yOffset;
+ } else {
+ this.initialX = e.clientX - this.xOffset;
+ this.initialY = e.clientY - this.yOffset;
+ }
+
+ var clicked = e.target.nodeName.toLowerCase();
+ var exludeClicks = ['input', 'select', 'textarea', 'button', 'a'];
+
+ if (e.target.classList.contains('nodrag') || closest(e.target, '.nodrag') || exludeClicks.indexOf(clicked) !== -1) {
+ this.active = false;
+ return;
+ }
+
+ e.preventDefault();
+
+ if (e.target === this.el || clicked !== 'img' && closest(e.target, '.gslide-inline')) {
+ this.active = true;
+ this.el.classList.add('dragging');
+ this.dragContainer = closest(e.target, '.ginner-container');
+ }
+ }
+ }, {
+ key: "dragEnd",
+ value: function dragEnd(e) {
+ var _this2 = this;
+
+ e && e.preventDefault();
+ this.initialX = 0;
+ this.initialY = 0;
+ this.currentX = null;
+ this.currentY = null;
+ this.initialX = null;
+ this.initialY = null;
+ this.xOffset = 0;
+ this.yOffset = 0;
+ this.active = false;
+
+ if (this.doSlideChange) {
+ this.instance.preventOutsideClick = true;
+ this.doSlideChange == 'right' && this.instance.prevSlide();
+ this.doSlideChange == 'left' && this.instance.nextSlide();
+ }
+
+ if (this.doSlideClose) {
+ this.instance.close();
+ }
+
+ if (!this.toleranceReached) {
+ this.setTranslate(this.dragContainer, 0, 0, true);
+ }
+
+ setTimeout(function () {
+ _this2.instance.preventOutsideClick = false;
+ _this2.toleranceReached = false;
+ _this2.lastDirection = null;
+ _this2.dragging = false;
+ _this2.el.isDragging = false;
+
+ _this2.el.classList.remove('dragging');
+
+ _this2.slide.classList.remove('dragging-nav');
+
+ _this2.dragContainer.style.transform = '';
+ _this2.dragContainer.style.transition = '';
+ }, 100);
+ }
+ }, {
+ key: "drag",
+ value: function drag(e) {
+ if (this.active) {
+ e.preventDefault();
+ this.slide.classList.add('dragging-nav');
+
+ if (e.type === 'touchmove') {
+ this.currentX = e.touches[0].clientX - this.initialX;
+ this.currentY = e.touches[0].clientY - this.initialY;
+ } else {
+ this.currentX = e.clientX - this.initialX;
+ this.currentY = e.clientY - this.initialY;
+ }
+
+ this.xOffset = this.currentX;
+ this.yOffset = this.currentY;
+ this.el.isDragging = true;
+ this.dragging = true;
+ this.doSlideChange = false;
+ this.doSlideClose = false;
+ var currentXInt = Math.abs(this.currentX);
+ var currentYInt = Math.abs(this.currentY);
+
+ if (currentXInt > 0 && currentXInt >= Math.abs(this.currentY) && (!this.lastDirection || this.lastDirection == 'x')) {
+ this.yOffset = 0;
+ this.lastDirection = 'x';
+ this.setTranslate(this.dragContainer, this.currentX, 0);
+ var doChange = this.shouldChange();
+
+ if (!this.instance.settings.dragAutoSnap && doChange) {
+ this.doSlideChange = doChange;
+ }
+
+ if (this.instance.settings.dragAutoSnap && doChange) {
+ this.instance.preventOutsideClick = true;
+ this.toleranceReached = true;
+ this.active = false;
+ this.instance.preventOutsideClick = true;
+ this.dragEnd(null);
+ doChange == 'right' && this.instance.prevSlide();
+ doChange == 'left' && this.instance.nextSlide();
+ return;
+ }
+ }
+
+ if (this.toleranceY > 0 && currentYInt > 0 && currentYInt >= currentXInt && (!this.lastDirection || this.lastDirection == 'y')) {
+ this.xOffset = 0;
+ this.lastDirection = 'y';
+ this.setTranslate(this.dragContainer, 0, this.currentY);
+ var doClose = this.shouldClose();
+
+ if (!this.instance.settings.dragAutoSnap && doClose) {
+ this.doSlideClose = true;
+ }
+
+ if (this.instance.settings.dragAutoSnap && doClose) {
+ this.instance.close();
+ }
+
+ return;
+ }
+ }
+ }
+ }, {
+ key: "shouldChange",
+ value: function shouldChange() {
+ var doChange = false;
+ var currentXInt = Math.abs(this.currentX);
+
+ if (currentXInt >= this.toleranceX) {
+ var dragDir = this.currentX > 0 ? 'right' : 'left';
+
+ if (dragDir == 'left' && this.slide !== this.slide.parentNode.lastChild || dragDir == 'right' && this.slide !== this.slide.parentNode.firstChild) {
+ doChange = dragDir;
+ }
+ }
+
+ return doChange;
+ }
+ }, {
+ key: "shouldClose",
+ value: function shouldClose() {
+ var doClose = false;
+ var currentYInt = Math.abs(this.currentY);
+
+ if (currentYInt >= this.toleranceY) {
+ doClose = true;
+ }
+
+ return doClose;
+ }
+ }, {
+ key: "setTranslate",
+ value: function setTranslate(node, xPos, yPos) {
+ var animated = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : false;
+
+ if (animated) {
+ node.style.transition = 'all .2s ease';
+ } else {
+ node.style.transition = '';
+ }
+
+ node.style.transform = "translate3d(".concat(xPos, "px, ").concat(yPos, "px, 0)");
+ }
+ }]);
+
+ return DragSlides;
+ }();
+
+ function slideImage(slide, data, index, callback) {
+ var slideMedia = slide.querySelector('.gslide-media');
+ var img = new Image();
+ var titleID = 'gSlideTitle_' + index;
+ var textID = 'gSlideDesc_' + index;
+ img.addEventListener('load', function () {
+ if (isFunction(callback)) {
+ callback();
+ }
+ }, false);
+ img.src = data.href;
+
+ if (data.sizes != '' && data.srcset != '') {
+ img.sizes = data.sizes;
+ img.srcset = data.srcset;
+ }
+
+ img.alt = '';
+
+ if (!isNil(data.alt) && data.alt !== '') {
+ img.alt = data.alt;
+ }
+
+ if (data.title !== '') {
+ img.setAttribute('aria-labelledby', titleID);
+ }
+
+ if (data.description !== '') {
+ img.setAttribute('aria-describedby', textID);
+ }
+
+ if (data.hasOwnProperty('_hasCustomWidth') && data._hasCustomWidth) {
+ img.style.width = data.width;
+ }
+
+ if (data.hasOwnProperty('_hasCustomHeight') && data._hasCustomHeight) {
+ img.style.height = data.height;
+ }
+
+ slideMedia.insertBefore(img, slideMedia.firstChild);
+ return;
+ }
+
+ function slideVideo(slide, data, index, callback) {
+ var _this = this;
+
+ var slideContainer = slide.querySelector('.ginner-container');
+ var videoID = 'gvideo' + index;
+ var slideMedia = slide.querySelector('.gslide-media');
+ var videoPlayers = this.getAllPlayers();
+ addClass(slideContainer, 'gvideo-container');
+ slideMedia.insertBefore(createHTML('
'), slideMedia.firstChild);
+ var videoWrapper = slide.querySelector('.gvideo-wrapper');
+ injectAssets(this.settings.plyr.css, 'Plyr');
+ var url = data.href;
+ var provider = data === null || data === void 0 ? void 0 : data.videoProvider;
+ var customPlaceholder = false;
+ slideMedia.style.maxWidth = data.width;
+ injectAssets(this.settings.plyr.js, 'Plyr', function () {
+ if (!provider && url.match(/vimeo\.com\/([0-9]*)/)) {
+ provider = 'vimeo';
+ }
+
+ if (!provider && (url.match(/(youtube\.com|youtube-nocookie\.com)\/watch\?v=([a-zA-Z0-9\-_]+)/) || url.match(/youtu\.be\/([a-zA-Z0-9\-_]+)/) || url.match(/(youtube\.com|youtube-nocookie\.com)\/embed\/([a-zA-Z0-9\-_]+)/))) {
+ provider = 'youtube';
+ }
+
+ if (provider === 'local' || !provider) {
+ provider = 'local';
+ var html = '';
+ html += "");
+ html += ' ';
+ customPlaceholder = createHTML(html);
+ }
+
+ var placeholder = customPlaceholder ? customPlaceholder : createHTML("
"));
+ addClass(videoWrapper, "".concat(provider, "-video gvideo"));
+ videoWrapper.appendChild(placeholder);
+ videoWrapper.setAttribute('data-id', videoID);
+ videoWrapper.setAttribute('data-index', index);
+ var playerConfig = has(_this.settings.plyr, 'config') ? _this.settings.plyr.config : {};
+ var player = new Plyr('#' + videoID, playerConfig);
+ player.on('ready', function (event) {
+ videoPlayers[videoID] = event.detail.plyr;
+
+ if (isFunction(callback)) {
+ callback();
+ }
+ });
+ waitUntil(function () {
+ return slide.querySelector('iframe') && slide.querySelector('iframe').dataset.ready == 'true';
+ }, function () {
+ _this.resize(slide);
+ });
+ player.on('enterfullscreen', handleMediaFullScreen);
+ player.on('exitfullscreen', handleMediaFullScreen);
+ });
+ }
+
+ function handleMediaFullScreen(event) {
+ var media = closest(event.target, '.gslide-media');
+
+ if (event.type === 'enterfullscreen') {
+ addClass(media, 'fullscreen');
+ }
+
+ if (event.type === 'exitfullscreen') {
+ removeClass(media, 'fullscreen');
+ }
+ }
+
+ function slideInline(slide, data, index, callback) {
+ var _this = this;
+
+ var slideMedia = slide.querySelector('.gslide-media');
+ var hash = has(data, 'href') && data.href ? data.href.split('#').pop().trim() : false;
+ var content = has(data, 'content') && data.content ? data.content : false;
+ var innerContent;
+
+ if (content) {
+ if (isString(content)) {
+ innerContent = createHTML("".concat(content, "
"));
+ }
+
+ if (isNode(content)) {
+ if (content.style.display == 'none') {
+ content.style.display = 'block';
+ }
+
+ var container = document.createElement('div');
+ container.className = 'ginlined-content';
+ container.appendChild(content);
+ innerContent = container;
+ }
+ }
+
+ if (hash) {
+ var div = document.getElementById(hash);
+
+ if (!div) {
+ return false;
+ }
+
+ var cloned = div.cloneNode(true);
+ cloned.style.height = data.height;
+ cloned.style.maxWidth = data.width;
+ addClass(cloned, 'ginlined-content');
+ innerContent = cloned;
+ }
+
+ if (!innerContent) {
+ console.error('Unable to append inline slide content', data);
+ return false;
+ }
+
+ slideMedia.style.height = data.height;
+ slideMedia.style.width = data.width;
+ slideMedia.appendChild(innerContent);
+ this.events['inlineclose' + hash] = addEvent('click', {
+ onElement: slideMedia.querySelectorAll('.gtrigger-close'),
+ withCallback: function withCallback(e) {
+ e.preventDefault();
+
+ _this.close();
+ }
+ });
+
+ if (isFunction(callback)) {
+ callback();
+ }
+
+ return;
+ }
+
+ function slideIframe(slide, data, index, callback) {
+ var slideMedia = slide.querySelector('.gslide-media');
+ var iframe = createIframe({
+ url: data.href,
+ callback: callback
+ });
+ slideMedia.parentNode.style.maxWidth = data.width;
+ slideMedia.parentNode.style.height = data.height;
+ slideMedia.appendChild(iframe);
+ return;
+ }
+
+ var SlideConfigParser = function () {
+ function SlideConfigParser() {
+ var slideParamas = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
+
+ _classCallCheck(this, SlideConfigParser);
+
+ this.defaults = {
+ href: '',
+ sizes: '',
+ srcset: '',
+ title: '',
+ type: '',
+ videoProvider: '',
+ description: '',
+ alt: '',
+ descPosition: 'bottom',
+ effect: '',
+ width: '',
+ height: '',
+ content: false,
+ zoomable: true,
+ draggable: true
+ };
+
+ if (isObject(slideParamas)) {
+ this.defaults = extend(this.defaults, slideParamas);
+ }
+ }
+
+ _createClass(SlideConfigParser, [{
+ key: "sourceType",
+ value: function sourceType(url) {
+ var origin = url;
+ url = url.toLowerCase();
+
+ if (url.match(/\.(jpeg|jpg|jpe|gif|png|apn|webp|avif|svg)/) !== null) {
+ return 'image';
+ }
+
+ if (url.match(/(youtube\.com|youtube-nocookie\.com)\/watch\?v=([a-zA-Z0-9\-_]+)/) || url.match(/youtu\.be\/([a-zA-Z0-9\-_]+)/) || url.match(/(youtube\.com|youtube-nocookie\.com)\/embed\/([a-zA-Z0-9\-_]+)/)) {
+ return 'video';
+ }
+
+ if (url.match(/vimeo\.com\/([0-9]*)/)) {
+ return 'video';
+ }
+
+ if (url.match(/\.(mp4|ogg|webm|mov)/) !== null) {
+ return 'video';
+ }
+
+ if (url.match(/\.(mp3|wav|wma|aac|ogg)/) !== null) {
+ return 'audio';
+ }
+
+ if (url.indexOf('#') > -1) {
+ var hash = origin.split('#').pop();
+
+ if (hash.trim() !== '') {
+ return 'inline';
+ }
+ }
+
+ if (url.indexOf('goajax=true') > -1) {
+ return 'ajax';
+ }
+
+ return 'external';
+ }
+ }, {
+ key: "parseConfig",
+ value: function parseConfig(element, settings) {
+ var _this = this;
+
+ var data = extend({
+ descPosition: settings.descPosition
+ }, this.defaults);
+
+ if (isObject(element) && !isNode(element)) {
+ if (!has(element, 'type')) {
+ if (has(element, 'content') && element.content) {
+ element.type = 'inline';
+ } else if (has(element, 'href')) {
+ element.type = this.sourceType(element.href);
+ }
+ }
+
+ var objectData = extend(data, element);
+ this.setSize(objectData, settings);
+ return objectData;
+ }
+
+ var url = '';
+ var config = element.getAttribute('data-glightbox');
+ var nodeType = element.nodeName.toLowerCase();
+
+ if (nodeType === 'a') {
+ url = element.href;
+ }
+
+ if (nodeType === 'img') {
+ url = element.src;
+ data.alt = element.alt;
+ }
+
+ data.href = url;
+ each(data, function (val, key) {
+ if (has(settings, key) && key !== 'width') {
+ data[key] = settings[key];
+ }
+
+ var nodeData = element.dataset[key];
+
+ if (!isNil(nodeData)) {
+ data[key] = _this.sanitizeValue(nodeData);
+ }
+ });
+
+ if (data.content) {
+ data.type = 'inline';
+ }
+
+ if (!data.type && url) {
+ data.type = this.sourceType(url);
+ }
+
+ if (!isNil(config)) {
+ var cleanKeys = [];
+ each(data, function (v, k) {
+ cleanKeys.push(';\\s?' + k);
+ });
+ cleanKeys = cleanKeys.join('\\s?:|');
+
+ if (config.trim() !== '') {
+ each(data, function (val, key) {
+ var str = config;
+ var match = 's?' + key + 's?:s?(.*?)(' + cleanKeys + 's?:|$)';
+ var regex = new RegExp(match);
+ var matches = str.match(regex);
+
+ if (matches && matches.length && matches[1]) {
+ var value = matches[1].trim().replace(/;\s*$/, '');
+ data[key] = _this.sanitizeValue(value);
+ }
+ });
+ }
+ } else {
+ if (!data.title && nodeType == 'a') {
+ var title = element.title;
+
+ if (!isNil(title) && title !== '') {
+ data.title = title;
+ }
+ }
+
+ if (!data.title && nodeType == 'img') {
+ var alt = element.alt;
+
+ if (!isNil(alt) && alt !== '') {
+ data.title = alt;
+ }
+ }
+ }
+
+ if (data.description && data.description.substring(0, 1) === '.') {
+ var description;
+
+ try {
+ description = document.querySelector(data.description).innerHTML;
+ } catch (error) {
+ if (!(error instanceof DOMException)) {
+ throw error;
+ }
+ }
+
+ if (description) {
+ data.description = description;
+ }
+ }
+
+ if (!data.description) {
+ var nodeDesc = element.querySelector('.glightbox-desc');
+
+ if (nodeDesc) {
+ data.description = nodeDesc.innerHTML;
+ }
+ }
+
+ this.setSize(data, settings, element);
+ this.slideConfig = data;
+ return data;
+ }
+ }, {
+ key: "setSize",
+ value: function setSize(data, settings) {
+ var element = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : null;
+ var defaultWith = data.type == 'video' ? this.checkSize(settings.videosWidth) : this.checkSize(settings.width);
+ var defaultHeight = this.checkSize(settings.height);
+ data.width = has(data, 'width') && data.width !== '' ? this.checkSize(data.width) : defaultWith;
+ data.height = has(data, 'height') && data.height !== '' ? this.checkSize(data.height) : defaultHeight;
+
+ if (element && data.type == 'image') {
+ data._hasCustomWidth = element.dataset.width ? true : false;
+ data._hasCustomHeight = element.dataset.height ? true : false;
+ }
+
+ return data;
+ }
+ }, {
+ key: "checkSize",
+ value: function checkSize(size) {
+ return isNumber(size) ? "".concat(size, "px") : size;
+ }
+ }, {
+ key: "sanitizeValue",
+ value: function sanitizeValue(val) {
+ if (val !== 'true' && val !== 'false') {
+ return val;
+ }
+
+ return val === 'true';
+ }
+ }]);
+
+ return SlideConfigParser;
+ }();
+
+ var Slide = function () {
+ function Slide(el, instance, index) {
+ _classCallCheck(this, Slide);
+
+ this.element = el;
+ this.instance = instance;
+ this.index = index;
+ }
+
+ _createClass(Slide, [{
+ key: "setContent",
+ value: function setContent() {
+ var _this = this;
+
+ var slide = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null;
+ var callback = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;
+
+ if (hasClass(slide, 'loaded')) {
+ return false;
+ }
+
+ var settings = this.instance.settings;
+ var slideConfig = this.slideConfig;
+ var isMobileDevice = isMobile();
+
+ if (isFunction(settings.beforeSlideLoad)) {
+ settings.beforeSlideLoad({
+ index: this.index,
+ slide: slide,
+ player: false
+ });
+ }
+
+ var type = slideConfig.type;
+ var position = slideConfig.descPosition;
+ var slideMedia = slide.querySelector('.gslide-media');
+ var slideTitle = slide.querySelector('.gslide-title');
+ var slideText = slide.querySelector('.gslide-desc');
+ var slideDesc = slide.querySelector('.gdesc-inner');
+ var finalCallback = callback;
+ var titleID = 'gSlideTitle_' + this.index;
+ var textID = 'gSlideDesc_' + this.index;
+
+ if (isFunction(settings.afterSlideLoad)) {
+ finalCallback = function finalCallback() {
+ if (isFunction(callback)) {
+ callback();
+ }
+
+ settings.afterSlideLoad({
+ index: _this.index,
+ slide: slide,
+ player: _this.instance.getSlidePlayerInstance(_this.index)
+ });
+ };
+ }
+
+ if (slideConfig.title == '' && slideConfig.description == '') {
+ if (slideDesc) {
+ slideDesc.parentNode.parentNode.removeChild(slideDesc.parentNode);
+ }
+ } else {
+ if (slideTitle && slideConfig.title !== '') {
+ slideTitle.id = titleID;
+ slideTitle.innerHTML = slideConfig.title;
+ } else {
+ slideTitle.parentNode.removeChild(slideTitle);
+ }
+
+ if (slideText && slideConfig.description !== '') {
+ slideText.id = textID;
+
+ if (isMobileDevice && settings.moreLength > 0) {
+ slideConfig.smallDescription = this.slideShortDesc(slideConfig.description, settings.moreLength, settings.moreText);
+ slideText.innerHTML = slideConfig.smallDescription;
+ this.descriptionEvents(slideText, slideConfig);
+ } else {
+ slideText.innerHTML = slideConfig.description;
+ }
+ } else {
+ slideText.parentNode.removeChild(slideText);
+ }
+
+ addClass(slideMedia.parentNode, "desc-".concat(position));
+ addClass(slideDesc.parentNode, "description-".concat(position));
+ }
+
+ addClass(slideMedia, "gslide-".concat(type));
+ addClass(slide, 'loaded');
+
+ if (type === 'video') {
+ slideVideo.apply(this.instance, [slide, slideConfig, this.index, finalCallback]);
+ return;
+ }
+
+ if (type === 'external') {
+ slideIframe.apply(this, [slide, slideConfig, this.index, finalCallback]);
+ return;
+ }
+
+ if (type === 'inline') {
+ slideInline.apply(this.instance, [slide, slideConfig, this.index, finalCallback]);
+
+ if (slideConfig.draggable) {
+ new DragSlides({
+ dragEl: slide.querySelector('.gslide-inline'),
+ toleranceX: settings.dragToleranceX,
+ toleranceY: settings.dragToleranceY,
+ slide: slide,
+ instance: this.instance
+ });
+ }
+
+ return;
+ }
+
+ if (type === 'image') {
+ slideImage(slide, slideConfig, this.index, function () {
+ var img = slide.querySelector('img');
+
+ if (slideConfig.draggable) {
+ new DragSlides({
+ dragEl: img,
+ toleranceX: settings.dragToleranceX,
+ toleranceY: settings.dragToleranceY,
+ slide: slide,
+ instance: _this.instance
+ });
+ }
+
+ if (slideConfig.zoomable && img.naturalWidth > img.offsetWidth) {
+ addClass(img, 'zoomable');
+ new ZoomImages(img, slide, function () {
+ _this.instance.resize();
+ });
+ }
+
+ if (isFunction(finalCallback)) {
+ finalCallback();
+ }
+ });
+ return;
+ }
+
+ if (isFunction(finalCallback)) {
+ finalCallback();
+ }
+ }
+ }, {
+ key: "slideShortDesc",
+ value: function slideShortDesc(string) {
+ var n = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 50;
+ var wordBoundary = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;
+ var div = document.createElement('div');
+ div.innerHTML = string;
+ var cleanedString = div.innerText;
+ var useWordBoundary = wordBoundary;
+ string = cleanedString.trim();
+
+ if (string.length <= n) {
+ return string;
+ }
+
+ var subString = string.substr(0, n - 1);
+
+ if (!useWordBoundary) {
+ return subString;
+ }
+
+ div = null;
+ return subString + '... ' + wordBoundary + ' ';
+ }
+ }, {
+ key: "descriptionEvents",
+ value: function descriptionEvents(desc, data) {
+ var _this2 = this;
+
+ var moreLink = desc.querySelector('.desc-more');
+
+ if (!moreLink) {
+ return false;
+ }
+
+ addEvent('click', {
+ onElement: moreLink,
+ withCallback: function withCallback(event, target) {
+ event.preventDefault();
+ var body = document.body;
+ var desc = closest(target, '.gslide-desc');
+
+ if (!desc) {
+ return false;
+ }
+
+ desc.innerHTML = data.description;
+ addClass(body, 'gdesc-open');
+ var shortEvent = addEvent('click', {
+ onElement: [body, closest(desc, '.gslide-description')],
+ withCallback: function withCallback(event, target) {
+ if (event.target.nodeName.toLowerCase() !== 'a') {
+ removeClass(body, 'gdesc-open');
+ addClass(body, 'gdesc-closed');
+ desc.innerHTML = data.smallDescription;
+
+ _this2.descriptionEvents(desc, data);
+
+ setTimeout(function () {
+ removeClass(body, 'gdesc-closed');
+ }, 400);
+ shortEvent.destroy();
+ }
+ }
+ });
+ }
+ });
+ }
+ }, {
+ key: "create",
+ value: function create() {
+ return createHTML(this.instance.settings.slideHTML);
+ }
+ }, {
+ key: "getConfig",
+ value: function getConfig() {
+ if (!isNode(this.element) && !this.element.hasOwnProperty('draggable')) {
+ this.element.draggable = this.instance.settings.draggable;
+ }
+
+ var parser = new SlideConfigParser(this.instance.settings.slideExtraAttributes);
+ this.slideConfig = parser.parseConfig(this.element, this.instance.settings);
+ return this.slideConfig;
+ }
+ }]);
+
+ return Slide;
+ }();
+
+ var _version = '3.1.0';
+
+ var isMobile$1 = isMobile();
+
+ var isTouch$1 = isTouch();
+
+ var html = document.getElementsByTagName('html')[0];
+ var defaults = {
+ selector: '.glightbox',
+ elements: null,
+ skin: 'clean',
+ theme: 'clean',
+ closeButton: true,
+ startAt: null,
+ autoplayVideos: true,
+ autofocusVideos: true,
+ descPosition: 'bottom',
+ width: '900px',
+ height: '506px',
+ videosWidth: '960px',
+ beforeSlideChange: null,
+ afterSlideChange: null,
+ beforeSlideLoad: null,
+ afterSlideLoad: null,
+ slideInserted: null,
+ slideRemoved: null,
+ slideExtraAttributes: null,
+ onOpen: null,
+ onClose: null,
+ loop: false,
+ zoomable: true,
+ draggable: true,
+ dragAutoSnap: false,
+ dragToleranceX: 40,
+ dragToleranceY: 65,
+ preload: true,
+ oneSlidePerOpen: false,
+ touchNavigation: true,
+ touchFollowAxis: true,
+ keyboardNavigation: true,
+ closeOnOutsideClick: true,
+ plugins: false,
+ plyr: {
+ css: 'https://cdn.plyr.io/3.6.12/plyr.css',
+ js: 'https://cdn.plyr.io/3.6.12/plyr.js',
+ config: {
+ ratio: '16:9',
+ fullscreen: {
+ enabled: true,
+ iosNative: true
+ },
+ youtube: {
+ noCookie: true,
+ rel: 0,
+ showinfo: 0,
+ iv_load_policy: 3
+ },
+ vimeo: {
+ byline: false,
+ portrait: false,
+ title: false,
+ transparent: false
+ }
+ }
+ },
+ openEffect: 'zoom',
+ closeEffect: 'zoom',
+ slideEffect: 'slide',
+ moreText: 'See more',
+ moreLength: 60,
+ cssEfects: {
+ fade: {
+ "in": 'fadeIn',
+ out: 'fadeOut'
+ },
+ zoom: {
+ "in": 'zoomIn',
+ out: 'zoomOut'
+ },
+ slide: {
+ "in": 'slideInRight',
+ out: 'slideOutLeft'
+ },
+ slideBack: {
+ "in": 'slideInLeft',
+ out: 'slideOutRight'
+ },
+ none: {
+ "in": 'none',
+ out: 'none'
+ }
+ },
+ svg: {
+ close: ' ',
+ next: ' ',
+ prev: ' '
+ }
+ };
+ defaults.slideHTML = "";
+ defaults.lightboxHTML = "\n
\n
\n
\n
\n
{closeSVG} \n
{prevSVG} \n
{nextSVG} \n
\n
";
+
+ var GlightboxInit = function () {
+ function GlightboxInit() {
+ var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
+
+ _classCallCheck(this, GlightboxInit);
+
+ this.customOptions = options;
+ this.settings = extend(defaults, options);
+ this.effectsClasses = this.getAnimationClasses();
+ this.videoPlayers = {};
+ this.apiEvents = [];
+ this.fullElementsList = false;
+ }
+
+ _createClass(GlightboxInit, [{
+ key: "init",
+ value: function init() {
+ var _this = this;
+
+ var selector = this.getSelector();
+
+ if (selector) {
+ this.baseEvents = addEvent('click', {
+ onElement: selector,
+ withCallback: function withCallback(e, target) {
+ e.preventDefault();
+
+ _this.open(target);
+ }
+ });
+ }
+
+ this.elements = this.getElements();
+ }
+ }, {
+ key: "open",
+ value: function open() {
+ var element = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null;
+ var startAt = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null;
+
+ if (this.elements.length === 0) {
+ return false;
+ }
+
+ this.activeSlide = null;
+ this.prevActiveSlideIndex = null;
+ this.prevActiveSlide = null;
+ var index = isNumber(startAt) ? startAt : this.settings.startAt;
+
+ if (isNode(element)) {
+ var gallery = element.getAttribute('data-gallery');
+
+ if (gallery) {
+ this.fullElementsList = this.elements;
+ this.elements = this.getGalleryElements(this.elements, gallery);
+ }
+
+ if (isNil(index)) {
+ index = this.getElementIndex(element);
+
+ if (index < 0) {
+ index = 0;
+ }
+ }
+ }
+
+ if (!isNumber(index)) {
+ index = 0;
+ }
+
+ this.build();
+
+ animateElement(this.overlay, this.settings.openEffect === 'none' ? 'none' : this.settings.cssEfects.fade["in"]);
+
+ var body = document.body;
+ var scrollBar = window.innerWidth - document.documentElement.clientWidth;
+
+ if (scrollBar > 0) {
+ var styleSheet = document.createElement('style');
+ styleSheet.type = 'text/css';
+ styleSheet.className = 'gcss-styles';
+ styleSheet.innerText = ".gscrollbar-fixer {margin-right: ".concat(scrollBar, "px}");
+ document.head.appendChild(styleSheet);
+
+ addClass(body, 'gscrollbar-fixer');
+ }
+
+ addClass(body, 'glightbox-open');
+
+ addClass(html, 'glightbox-open');
+
+ if (isMobile$1) {
+ addClass(document.body, 'glightbox-mobile');
+
+ this.settings.slideEffect = 'slide';
+ }
+
+ this.showSlide(index, true);
+
+ if (this.elements.length === 1) {
+ addClass(this.prevButton, 'glightbox-button-hidden');
+
+ addClass(this.nextButton, 'glightbox-button-hidden');
+ } else {
+ removeClass(this.prevButton, 'glightbox-button-hidden');
+
+ removeClass(this.nextButton, 'glightbox-button-hidden');
+ }
+
+ this.lightboxOpen = true;
+ this.trigger('open');
+
+ if (isFunction(this.settings.onOpen)) {
+ this.settings.onOpen();
+ }
+
+ if (isTouch$1 && this.settings.touchNavigation) {
+ touchNavigation(this);
+ }
+
+ if (this.settings.keyboardNavigation) {
+ keyboardNavigation(this);
+ }
+ }
+ }, {
+ key: "openAt",
+ value: function openAt() {
+ var index = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 0;
+ this.open(null, index);
+ }
+ }, {
+ key: "showSlide",
+ value: function showSlide() {
+ var _this2 = this;
+
+ var index = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 0;
+ var first = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;
+
+ show(this.loader);
+
+ this.index = parseInt(index);
+ var current = this.slidesContainer.querySelector('.current');
+
+ if (current) {
+ removeClass(current, 'current');
+ }
+
+ this.slideAnimateOut();
+ var slideNode = this.slidesContainer.querySelectorAll('.gslide')[index];
+
+ if (hasClass(slideNode, 'loaded')) {
+ this.slideAnimateIn(slideNode, first);
+
+ hide(this.loader);
+ } else {
+ show(this.loader);
+
+ var slide = this.elements[index];
+ var slideData = {
+ index: this.index,
+ slide: slideNode,
+ slideNode: slideNode,
+ slideConfig: slide.slideConfig,
+ slideIndex: this.index,
+ trigger: slide.node,
+ player: null
+ };
+ this.trigger('slide_before_load', slideData);
+ slide.instance.setContent(slideNode, function () {
+ hide(_this2.loader);
+
+ _this2.resize();
+
+ _this2.slideAnimateIn(slideNode, first);
+
+ _this2.trigger('slide_after_load', slideData);
+ });
+ }
+
+ this.slideDescription = slideNode.querySelector('.gslide-description');
+ this.slideDescriptionContained = this.slideDescription && hasClass(this.slideDescription.parentNode, 'gslide-media');
+
+ if (this.settings.preload) {
+ this.preloadSlide(index + 1);
+ this.preloadSlide(index - 1);
+ }
+
+ this.updateNavigationClasses();
+ this.activeSlide = slideNode;
+ }
+ }, {
+ key: "preloadSlide",
+ value: function preloadSlide(index) {
+ var _this3 = this;
+
+ if (index < 0 || index > this.elements.length - 1) {
+ return false;
+ }
+
+ if (isNil(this.elements[index])) {
+ return false;
+ }
+
+ var slideNode = this.slidesContainer.querySelectorAll('.gslide')[index];
+
+ if (hasClass(slideNode, 'loaded')) {
+ return false;
+ }
+
+ var slide = this.elements[index];
+ var type = slide.type;
+ var slideData = {
+ index: index,
+ slide: slideNode,
+ slideNode: slideNode,
+ slideConfig: slide.slideConfig,
+ slideIndex: index,
+ trigger: slide.node,
+ player: null
+ };
+ this.trigger('slide_before_load', slideData);
+
+ if (type === 'video' || type === 'external') {
+ setTimeout(function () {
+ slide.instance.setContent(slideNode, function () {
+ _this3.trigger('slide_after_load', slideData);
+ });
+ }, 200);
+ } else {
+ slide.instance.setContent(slideNode, function () {
+ _this3.trigger('slide_after_load', slideData);
+ });
+ }
+ }
+ }, {
+ key: "prevSlide",
+ value: function prevSlide() {
+ this.goToSlide(this.index - 1);
+ }
+ }, {
+ key: "nextSlide",
+ value: function nextSlide() {
+ this.goToSlide(this.index + 1);
+ }
+ }, {
+ key: "goToSlide",
+ value: function goToSlide() {
+ var index = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false;
+ this.prevActiveSlide = this.activeSlide;
+ this.prevActiveSlideIndex = this.index;
+
+ if (!this.loop() && (index < 0 || index > this.elements.length - 1)) {
+ return false;
+ }
+
+ if (index < 0) {
+ index = this.elements.length - 1;
+ } else if (index >= this.elements.length) {
+ index = 0;
+ }
+
+ this.showSlide(index);
+ }
+ }, {
+ key: "insertSlide",
+ value: function insertSlide() {
+ var config = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
+ var index = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : -1;
+
+ if (index < 0) {
+ index = this.elements.length;
+ }
+
+ var slide = new Slide(config, this, index);
+ var data = slide.getConfig();
+
+ var slideInfo = extend({}, data);
+
+ var newSlide = slide.create();
+ var totalSlides = this.elements.length - 1;
+ slideInfo.index = index;
+ slideInfo.node = false;
+ slideInfo.instance = slide;
+ slideInfo.slideConfig = data;
+ this.elements.splice(index, 0, slideInfo);
+ var addedSlideNode = null;
+ var addedSlidePlayer = null;
+
+ if (this.slidesContainer) {
+ if (index > totalSlides) {
+ this.slidesContainer.appendChild(newSlide);
+ } else {
+ var existingSlide = this.slidesContainer.querySelectorAll('.gslide')[index];
+ this.slidesContainer.insertBefore(newSlide, existingSlide);
+ }
+
+ if (this.settings.preload && this.index == 0 && index == 0 || this.index - 1 == index || this.index + 1 == index) {
+ this.preloadSlide(index);
+ }
+
+ if (this.index === 0 && index === 0) {
+ this.index = 1;
+ }
+
+ this.updateNavigationClasses();
+ addedSlideNode = this.slidesContainer.querySelectorAll('.gslide')[index];
+ addedSlidePlayer = this.getSlidePlayerInstance(index);
+ slideInfo.slideNode = addedSlideNode;
+ }
+
+ this.trigger('slide_inserted', {
+ index: index,
+ slide: addedSlideNode,
+ slideNode: addedSlideNode,
+ slideConfig: data,
+ slideIndex: index,
+ trigger: null,
+ player: addedSlidePlayer
+ });
+
+ if (isFunction(this.settings.slideInserted)) {
+ this.settings.slideInserted({
+ index: index,
+ slide: addedSlideNode,
+ player: addedSlidePlayer
+ });
+ }
+ }
+ }, {
+ key: "removeSlide",
+ value: function removeSlide() {
+ var index = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : -1;
+
+ if (index < 0 || index > this.elements.length - 1) {
+ return false;
+ }
+
+ var slide = this.slidesContainer && this.slidesContainer.querySelectorAll('.gslide')[index];
+
+ if (slide) {
+ if (this.getActiveSlideIndex() == index) {
+ if (index == this.elements.length - 1) {
+ this.prevSlide();
+ } else {
+ this.nextSlide();
+ }
+ }
+
+ slide.parentNode.removeChild(slide);
+ }
+
+ this.elements.splice(index, 1);
+ this.trigger('slide_removed', index);
+
+ if (isFunction(this.settings.slideRemoved)) {
+ this.settings.slideRemoved(index);
+ }
+ }
+ }, {
+ key: "slideAnimateIn",
+ value: function slideAnimateIn(slide, first) {
+ var _this4 = this;
+
+ var slideMedia = slide.querySelector('.gslide-media');
+ var slideDesc = slide.querySelector('.gslide-description');
+ var prevData = {
+ index: this.prevActiveSlideIndex,
+ slide: this.prevActiveSlide,
+ slideNode: this.prevActiveSlide,
+ slideIndex: this.prevActiveSlide,
+ slideConfig: isNil(this.prevActiveSlideIndex) ? null : this.elements[this.prevActiveSlideIndex].slideConfig,
+ trigger: isNil(this.prevActiveSlideIndex) ? null : this.elements[this.prevActiveSlideIndex].node,
+ player: this.getSlidePlayerInstance(this.prevActiveSlideIndex)
+ };
+ var nextData = {
+ index: this.index,
+ slide: this.activeSlide,
+ slideNode: this.activeSlide,
+ slideConfig: this.elements[this.index].slideConfig,
+ slideIndex: this.index,
+ trigger: this.elements[this.index].node,
+ player: this.getSlidePlayerInstance(this.index)
+ };
+
+ if (slideMedia.offsetWidth > 0 && slideDesc) {
+ hide(slideDesc);
+
+ slideDesc.style.display = '';
+ }
+
+ removeClass(slide, this.effectsClasses);
+
+ if (first) {
+ animateElement(slide, this.settings.cssEfects[this.settings.openEffect]["in"], function () {
+ if (_this4.settings.autoplayVideos) {
+ _this4.slidePlayerPlay(slide);
+ }
+
+ _this4.trigger('slide_changed', {
+ prev: prevData,
+ current: nextData
+ });
+
+ if (isFunction(_this4.settings.afterSlideChange)) {
+ _this4.settings.afterSlideChange.apply(_this4, [prevData, nextData]);
+ }
+ });
+ } else {
+ var effectName = this.settings.slideEffect;
+ var animIn = effectName !== 'none' ? this.settings.cssEfects[effectName]["in"] : effectName;
+
+ if (this.prevActiveSlideIndex > this.index) {
+ if (this.settings.slideEffect == 'slide') {
+ animIn = this.settings.cssEfects.slideBack["in"];
+ }
+ }
+
+ animateElement(slide, animIn, function () {
+ if (_this4.settings.autoplayVideos) {
+ _this4.slidePlayerPlay(slide);
+ }
+
+ _this4.trigger('slide_changed', {
+ prev: prevData,
+ current: nextData
+ });
+
+ if (isFunction(_this4.settings.afterSlideChange)) {
+ _this4.settings.afterSlideChange.apply(_this4, [prevData, nextData]);
+ }
+ });
+ }
+
+ setTimeout(function () {
+ _this4.resize(slide);
+ }, 100);
+
+ addClass(slide, 'current');
+ }
+ }, {
+ key: "slideAnimateOut",
+ value: function slideAnimateOut() {
+ if (!this.prevActiveSlide) {
+ return false;
+ }
+
+ var prevSlide = this.prevActiveSlide;
+
+ removeClass(prevSlide, this.effectsClasses);
+
+ addClass(prevSlide, 'prev');
+
+ var animation = this.settings.slideEffect;
+ var animOut = animation !== 'none' ? this.settings.cssEfects[animation].out : animation;
+ this.slidePlayerPause(prevSlide);
+ this.trigger('slide_before_change', {
+ prev: {
+ index: this.prevActiveSlideIndex,
+ slide: this.prevActiveSlide,
+ slideNode: this.prevActiveSlide,
+ slideIndex: this.prevActiveSlideIndex,
+ slideConfig: isNil(this.prevActiveSlideIndex) ? null : this.elements[this.prevActiveSlideIndex].slideConfig,
+ trigger: isNil(this.prevActiveSlideIndex) ? null : this.elements[this.prevActiveSlideIndex].node,
+ player: this.getSlidePlayerInstance(this.prevActiveSlideIndex)
+ },
+ current: {
+ index: this.index,
+ slide: this.activeSlide,
+ slideNode: this.activeSlide,
+ slideIndex: this.index,
+ slideConfig: this.elements[this.index].slideConfig,
+ trigger: this.elements[this.index].node,
+ player: this.getSlidePlayerInstance(this.index)
+ }
+ });
+
+ if (isFunction(this.settings.beforeSlideChange)) {
+ this.settings.beforeSlideChange.apply(this, [{
+ index: this.prevActiveSlideIndex,
+ slide: this.prevActiveSlide,
+ player: this.getSlidePlayerInstance(this.prevActiveSlideIndex)
+ }, {
+ index: this.index,
+ slide: this.activeSlide,
+ player: this.getSlidePlayerInstance(this.index)
+ }]);
+ }
+
+ if (this.prevActiveSlideIndex > this.index && this.settings.slideEffect == 'slide') {
+ animOut = this.settings.cssEfects.slideBack.out;
+ }
+
+ animateElement(prevSlide, animOut, function () {
+ var container = prevSlide.querySelector('.ginner-container');
+ var media = prevSlide.querySelector('.gslide-media');
+ var desc = prevSlide.querySelector('.gslide-description');
+ container.style.transform = '';
+ media.style.transform = '';
+
+ removeClass(media, 'greset');
+
+ media.style.opacity = '';
+
+ if (desc) {
+ desc.style.opacity = '';
+ }
+
+ removeClass(prevSlide, 'prev');
+ });
+ }
+ }, {
+ key: "getAllPlayers",
+ value: function getAllPlayers() {
+ return this.videoPlayers;
+ }
+ }, {
+ key: "getSlidePlayerInstance",
+ value: function getSlidePlayerInstance(index) {
+ var id = 'gvideo' + index;
+ var videoPlayers = this.getAllPlayers();
+
+ if (has(videoPlayers, id) && videoPlayers[id]) {
+ return videoPlayers[id];
+ }
+
+ return false;
+ }
+ }, {
+ key: "stopSlideVideo",
+ value: function stopSlideVideo(slide) {
+ if (isNode(slide)) {
+ var node = slide.querySelector('.gvideo-wrapper');
+
+ if (node) {
+ slide = node.getAttribute('data-index');
+ }
+ }
+
+ console.log('stopSlideVideo is deprecated, use slidePlayerPause');
+ var player = this.getSlidePlayerInstance(slide);
+
+ if (player && player.playing) {
+ player.pause();
+ }
+ }
+ }, {
+ key: "slidePlayerPause",
+ value: function slidePlayerPause(slide) {
+ if (isNode(slide)) {
+ var node = slide.querySelector('.gvideo-wrapper');
+
+ if (node) {
+ slide = node.getAttribute('data-index');
+ }
+ }
+
+ var player = this.getSlidePlayerInstance(slide);
+
+ if (player && player.playing) {
+ player.pause();
+ }
+ }
+ }, {
+ key: "playSlideVideo",
+ value: function playSlideVideo(slide) {
+ if (isNode(slide)) {
+ var node = slide.querySelector('.gvideo-wrapper');
+
+ if (node) {
+ slide = node.getAttribute('data-index');
+ }
+ }
+
+ console.log('playSlideVideo is deprecated, use slidePlayerPlay');
+ var player = this.getSlidePlayerInstance(slide);
+
+ if (player && !player.playing) {
+ player.play();
+ }
+ }
+ }, {
+ key: "slidePlayerPlay",
+ value: function slidePlayerPlay(slide) {
+ var _this$settings$plyr$c;
+
+ if (isMobile$1 && !((_this$settings$plyr$c = this.settings.plyr.config) !== null && _this$settings$plyr$c !== void 0 && _this$settings$plyr$c.muted)) {
+ return;
+ }
+
+ if (isNode(slide)) {
+ var node = slide.querySelector('.gvideo-wrapper');
+
+ if (node) {
+ slide = node.getAttribute('data-index');
+ }
+ }
+
+ var player = this.getSlidePlayerInstance(slide);
+
+ if (player && !player.playing) {
+ player.play();
+
+ if (this.settings.autofocusVideos) {
+ player.elements.container.focus();
+ }
+ }
+ }
+ }, {
+ key: "setElements",
+ value: function setElements(elements) {
+ var _this5 = this;
+
+ this.settings.elements = false;
+ var newElements = [];
+
+ if (elements && elements.length) {
+ each(elements, function (el, i) {
+ var slide = new Slide(el, _this5, i);
+ var data = slide.getConfig();
+
+ var slideInfo = extend({}, data);
+
+ slideInfo.slideConfig = data;
+ slideInfo.instance = slide;
+ slideInfo.index = i;
+ newElements.push(slideInfo);
+ });
+ }
+
+ this.elements = newElements;
+
+ if (this.lightboxOpen) {
+ this.slidesContainer.innerHTML = '';
+
+ if (this.elements.length) {
+ each(this.elements, function () {
+ var slide = createHTML(_this5.settings.slideHTML);
+
+ _this5.slidesContainer.appendChild(slide);
+ });
+
+ this.showSlide(0, true);
+ }
+ }
+ }
+ }, {
+ key: "getElementIndex",
+ value: function getElementIndex(node) {
+ var index = false;
+
+ each(this.elements, function (el, i) {
+ if (has(el, 'node') && el.node == node) {
+ index = i;
+ return true;
+ }
+ });
+
+ return index;
+ }
+ }, {
+ key: "getElements",
+ value: function getElements() {
+ var _this6 = this;
+
+ var list = [];
+ this.elements = this.elements ? this.elements : [];
+
+ if (!isNil(this.settings.elements) && isArray(this.settings.elements) && this.settings.elements.length) {
+ each(this.settings.elements, function (el, i) {
+ var slide = new Slide(el, _this6, i);
+ var elData = slide.getConfig();
+
+ var slideInfo = extend({}, elData);
+
+ slideInfo.node = false;
+ slideInfo.index = i;
+ slideInfo.instance = slide;
+ slideInfo.slideConfig = elData;
+ list.push(slideInfo);
+ });
+ }
+
+ var nodes = false;
+ var selector = this.getSelector();
+
+ if (selector) {
+ nodes = document.querySelectorAll(this.getSelector());
+ }
+
+ if (!nodes) {
+ return list;
+ }
+
+ each(nodes, function (el, i) {
+ var slide = new Slide(el, _this6, i);
+ var elData = slide.getConfig();
+
+ var slideInfo = extend({}, elData);
+
+ slideInfo.node = el;
+ slideInfo.index = i;
+ slideInfo.instance = slide;
+ slideInfo.slideConfig = elData;
+ slideInfo.gallery = el.getAttribute('data-gallery');
+ list.push(slideInfo);
+ });
+
+ return list;
+ }
+ }, {
+ key: "getGalleryElements",
+ value: function getGalleryElements(list, gallery) {
+ return list.filter(function (el) {
+ return el.gallery == gallery;
+ });
+ }
+ }, {
+ key: "getSelector",
+ value: function getSelector() {
+ if (this.settings.elements) {
+ return false;
+ }
+
+ if (this.settings.selector && this.settings.selector.substring(0, 5) == 'data-') {
+ return "*[".concat(this.settings.selector, "]");
+ }
+
+ return this.settings.selector;
+ }
+ }, {
+ key: "getActiveSlide",
+ value: function getActiveSlide() {
+ return this.slidesContainer.querySelectorAll('.gslide')[this.index];
+ }
+ }, {
+ key: "getActiveSlideIndex",
+ value: function getActiveSlideIndex() {
+ return this.index;
+ }
+ }, {
+ key: "getAnimationClasses",
+ value: function getAnimationClasses() {
+ var effects = [];
+
+ for (var key in this.settings.cssEfects) {
+ if (this.settings.cssEfects.hasOwnProperty(key)) {
+ var effect = this.settings.cssEfects[key];
+ effects.push("g".concat(effect["in"]));
+ effects.push("g".concat(effect.out));
+ }
+ }
+
+ return effects.join(' ');
+ }
+ }, {
+ key: "build",
+ value: function build() {
+ var _this7 = this;
+
+ if (this.built) {
+ return false;
+ }
+
+ var children = document.body.childNodes;
+ var bodyChildElms = [];
+
+ each(children, function (el) {
+ if (el.parentNode == document.body && el.nodeName.charAt(0) !== '#' && el.hasAttribute && !el.hasAttribute('aria-hidden')) {
+ bodyChildElms.push(el);
+ el.setAttribute('aria-hidden', 'true');
+ }
+ });
+
+ var nextSVG = has(this.settings.svg, 'next') ? this.settings.svg.next : '';
+ var prevSVG = has(this.settings.svg, 'prev') ? this.settings.svg.prev : '';
+ var closeSVG = has(this.settings.svg, 'close') ? this.settings.svg.close : '';
+ var lightboxHTML = this.settings.lightboxHTML;
+ lightboxHTML = lightboxHTML.replace(/{nextSVG}/g, nextSVG);
+ lightboxHTML = lightboxHTML.replace(/{prevSVG}/g, prevSVG);
+ lightboxHTML = lightboxHTML.replace(/{closeSVG}/g, closeSVG);
+ lightboxHTML = createHTML(lightboxHTML);
+ document.body.appendChild(lightboxHTML);
+ var modal = document.getElementById('glightbox-body');
+ this.modal = modal;
+ var closeButton = modal.querySelector('.gclose');
+ this.prevButton = modal.querySelector('.gprev');
+ this.nextButton = modal.querySelector('.gnext');
+ this.overlay = modal.querySelector('.goverlay');
+ this.loader = modal.querySelector('.gloader');
+ this.slidesContainer = document.getElementById('glightbox-slider');
+ this.bodyHiddenChildElms = bodyChildElms;
+ this.events = {};
+
+ addClass(this.modal, 'glightbox-' + this.settings.skin);
+
+ if (this.settings.closeButton && closeButton) {
+ this.events['close'] = addEvent('click', {
+ onElement: closeButton,
+ withCallback: function withCallback(e, target) {
+ e.preventDefault();
+
+ _this7.close();
+ }
+ });
+ }
+
+ if (closeButton && !this.settings.closeButton) {
+ closeButton.parentNode.removeChild(closeButton);
+ }
+
+ if (this.nextButton) {
+ this.events['next'] = addEvent('click', {
+ onElement: this.nextButton,
+ withCallback: function withCallback(e, target) {
+ e.preventDefault();
+
+ _this7.nextSlide();
+ }
+ });
+ }
+
+ if (this.prevButton) {
+ this.events['prev'] = addEvent('click', {
+ onElement: this.prevButton,
+ withCallback: function withCallback(e, target) {
+ e.preventDefault();
+
+ _this7.prevSlide();
+ }
+ });
+ }
+
+ if (this.settings.closeOnOutsideClick) {
+ this.events['outClose'] = addEvent('click', {
+ onElement: modal,
+ withCallback: function withCallback(e, target) {
+ if (!_this7.preventOutsideClick && !hasClass(document.body, 'glightbox-mobile') && !closest(e.target, '.ginner-container')) {
+ if (!closest(e.target, '.gbtn') && !hasClass(e.target, 'gnext') && !hasClass(e.target, 'gprev')) {
+ _this7.close();
+ }
+ }
+ }
+ });
+ }
+
+ each(this.elements, function (slide, i) {
+ _this7.slidesContainer.appendChild(slide.instance.create());
+
+ slide.slideNode = _this7.slidesContainer.querySelectorAll('.gslide')[i];
+ });
+
+ if (isTouch$1) {
+ addClass(document.body, 'glightbox-touch');
+ }
+
+ this.events['resize'] = addEvent('resize', {
+ onElement: window,
+ withCallback: function withCallback() {
+ _this7.resize();
+ }
+ });
+ this.built = true;
+ }
+ }, {
+ key: "resize",
+ value: function resize() {
+ var slide = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null;
+ slide = !slide ? this.activeSlide : slide;
+
+ if (!slide || hasClass(slide, 'zoomed')) {
+ return;
+ }
+
+ var winSize = windowSize();
+
+ var video = slide.querySelector('.gvideo-wrapper');
+ var image = slide.querySelector('.gslide-image');
+ var description = this.slideDescription;
+ var winWidth = winSize.width;
+ var winHeight = winSize.height;
+
+ if (winWidth <= 768) {
+ addClass(document.body, 'glightbox-mobile');
+ } else {
+ removeClass(document.body, 'glightbox-mobile');
+ }
+
+ if (!video && !image) {
+ return;
+ }
+
+ var descriptionResize = false;
+
+ if (description && (hasClass(description, 'description-bottom') || hasClass(description, 'description-top')) && !hasClass(description, 'gabsolute')) {
+ descriptionResize = true;
+ }
+
+ if (image) {
+ if (winWidth <= 768) {
+ var imgNode = image.querySelector('img');
+ } else if (descriptionResize) {
+ var descHeight = description.offsetHeight;
+
+ var _imgNode = image.querySelector('img');
+
+ _imgNode.setAttribute('style', "max-height: calc(100vh - ".concat(descHeight, "px)"));
+
+ description.setAttribute('style', "max-width: ".concat(_imgNode.offsetWidth, "px;"));
+ }
+ }
+
+ if (video) {
+ var ratio = has(this.settings.plyr.config, 'ratio') ? this.settings.plyr.config.ratio : '';
+
+ if (!ratio) {
+ var containerWidth = video.clientWidth;
+ var containerHeight = video.clientHeight;
+ var divisor = containerWidth / containerHeight;
+ ratio = "".concat(containerWidth / divisor, ":").concat(containerHeight / divisor);
+ }
+
+ var videoRatio = ratio.split(':');
+ var videoWidth = this.settings.videosWidth;
+ var maxWidth = this.settings.videosWidth;
+
+ if (isNumber(videoWidth) || videoWidth.indexOf('px') !== -1) {
+ maxWidth = parseInt(videoWidth);
+ } else {
+ if (videoWidth.indexOf('vw') !== -1) {
+ maxWidth = winWidth * parseInt(videoWidth) / 100;
+ } else if (videoWidth.indexOf('vh') !== -1) {
+ maxWidth = winHeight * parseInt(videoWidth) / 100;
+ } else if (videoWidth.indexOf('%') !== -1) {
+ maxWidth = winWidth * parseInt(videoWidth) / 100;
+ } else {
+ maxWidth = parseInt(video.clientWidth);
+ }
+ }
+
+ var maxHeight = maxWidth / (parseInt(videoRatio[0]) / parseInt(videoRatio[1]));
+ maxHeight = Math.floor(maxHeight);
+
+ if (descriptionResize) {
+ winHeight = winHeight - description.offsetHeight;
+ }
+
+ if (maxWidth > winWidth || maxHeight > winHeight || winHeight < maxHeight && winWidth > maxWidth) {
+ var vwidth = video.offsetWidth;
+ var vheight = video.offsetHeight;
+
+ var _ratio = winHeight / vheight;
+
+ var vsize = {
+ width: vwidth * _ratio,
+ height: vheight * _ratio
+ };
+ video.parentNode.setAttribute('style', "max-width: ".concat(vsize.width, "px"));
+
+ if (descriptionResize) {
+ description.setAttribute('style', "max-width: ".concat(vsize.width, "px;"));
+ }
+ } else {
+ video.parentNode.style.maxWidth = "".concat(videoWidth);
+
+ if (descriptionResize) {
+ description.setAttribute('style', "max-width: ".concat(videoWidth, ";"));
+ }
+ }
+ }
+ }
+ }, {
+ key: "reload",
+ value: function reload() {
+ this.init();
+ }
+ }, {
+ key: "updateNavigationClasses",
+ value: function updateNavigationClasses() {
+ var loop = this.loop();
+
+ removeClass(this.nextButton, 'disabled');
+
+ removeClass(this.prevButton, 'disabled');
+
+ if (this.index == 0 && this.elements.length - 1 == 0) {
+ addClass(this.prevButton, 'disabled');
+
+ addClass(this.nextButton, 'disabled');
+ } else if (this.index === 0 && !loop) {
+ addClass(this.prevButton, 'disabled');
+ } else if (this.index === this.elements.length - 1 && !loop) {
+ addClass(this.nextButton, 'disabled');
+ }
+ }
+ }, {
+ key: "loop",
+ value: function loop() {
+ var loop = has(this.settings, 'loopAtEnd') ? this.settings.loopAtEnd : null;
+ loop = has(this.settings, 'loop') ? this.settings.loop : loop;
+ return loop;
+ }
+ }, {
+ key: "close",
+ value: function close() {
+ var _this8 = this;
+
+ if (!this.lightboxOpen) {
+ if (this.events) {
+ for (var key in this.events) {
+ if (this.events.hasOwnProperty(key)) {
+ this.events[key].destroy();
+ }
+ }
+
+ this.events = null;
+ }
+
+ return false;
+ }
+
+ if (this.closing) {
+ return false;
+ }
+
+ this.closing = true;
+ this.slidePlayerPause(this.activeSlide);
+
+ if (this.fullElementsList) {
+ this.elements = this.fullElementsList;
+ }
+
+ if (this.bodyHiddenChildElms.length) {
+ each(this.bodyHiddenChildElms, function (el) {
+ el.removeAttribute('aria-hidden');
+ });
+ }
+
+ addClass(this.modal, 'glightbox-closing');
+
+ animateElement(this.overlay, this.settings.openEffect == 'none' ? 'none' : this.settings.cssEfects.fade.out);
+
+ animateElement(this.activeSlide, this.settings.cssEfects[this.settings.closeEffect].out, function () {
+ _this8.activeSlide = null;
+ _this8.prevActiveSlideIndex = null;
+ _this8.prevActiveSlide = null;
+ _this8.built = false;
+
+ if (_this8.events) {
+ for (var _key in _this8.events) {
+ if (_this8.events.hasOwnProperty(_key)) {
+ _this8.events[_key].destroy();
+ }
+ }
+
+ _this8.events = null;
+ }
+
+ var body = document.body;
+
+ removeClass(html, 'glightbox-open');
+
+ removeClass(body, 'glightbox-open touching gdesc-open glightbox-touch glightbox-mobile gscrollbar-fixer');
+
+ _this8.modal.parentNode.removeChild(_this8.modal);
+
+ _this8.trigger('close');
+
+ if (isFunction(_this8.settings.onClose)) {
+ _this8.settings.onClose();
+ }
+
+ var styles = document.querySelector('.gcss-styles');
+
+ if (styles) {
+ styles.parentNode.removeChild(styles);
+ }
+
+ _this8.lightboxOpen = false;
+ _this8.closing = null;
+ });
+ }
+ }, {
+ key: "destroy",
+ value: function destroy() {
+ this.close();
+ this.clearAllEvents();
+
+ if (this.baseEvents) {
+ this.baseEvents.destroy();
+ }
+ }
+ }, {
+ key: "on",
+ value: function on(evt, callback) {
+ var once = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;
+
+ if (!evt || !isFunction(callback)) {
+ throw new TypeError('Event name and callback must be defined');
+ }
+
+ this.apiEvents.push({
+ evt: evt,
+ once: once,
+ callback: callback
+ });
+ }
+ }, {
+ key: "once",
+ value: function once(evt, callback) {
+ this.on(evt, callback, true);
+ }
+ }, {
+ key: "trigger",
+ value: function trigger(eventName) {
+ var _this9 = this;
+
+ var data = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null;
+ var onceTriggered = [];
+
+ each(this.apiEvents, function (event, i) {
+ var evt = event.evt,
+ once = event.once,
+ callback = event.callback;
+
+ if (evt == eventName) {
+ callback(data);
+
+ if (once) {
+ onceTriggered.push(i);
+ }
+ }
+ });
+
+ if (onceTriggered.length) {
+ each(onceTriggered, function (i) {
+ return _this9.apiEvents.splice(i, 1);
+ });
+ }
+ }
+ }, {
+ key: "clearAllEvents",
+ value: function clearAllEvents() {
+ this.apiEvents.splice(0, this.apiEvents.length);
+ }
+ }, {
+ key: "version",
+ value: function version() {
+ return _version;
+ }
+ }]);
+
+ return GlightboxInit;
+ }();
+
+ function glightbox () {
+ var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
+ var instance = new GlightboxInit(options);
+ instance.init();
+ return instance;
+ }
+
+ return glightbox;
+
+})));
diff --git a/docs/assets/vendor/glightbox/js/glightbox.min.js b/docs/assets/vendor/glightbox/js/glightbox.min.js
new file mode 100644
index 0000000..997908b
--- /dev/null
+++ b/docs/assets/vendor/glightbox/js/glightbox.min.js
@@ -0,0 +1 @@
+!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):(e=e||self).GLightbox=t()}(this,(function(){"use strict";function e(t){return(e="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(t)}function t(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function i(e,t){for(var i=0;i1&&void 0!==arguments[1]?arguments[1]:null,i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null,n=e[s]=e[s]||[],l={all:n,evt:null,found:null};return t&&i&&P(n)>0&&o(n,(function(e,n){if(e.eventName==t&&e.fn.toString()==i.toString())return l.found=!0,l.evt=n,!1})),l}function a(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},i=t.onElement,n=t.withCallback,s=t.avoidDuplicate,l=void 0===s||s,a=t.once,h=void 0!==a&&a,d=t.useCapture,c=void 0!==d&&d,u=arguments.length>2?arguments[2]:void 0,g=i||[];function v(e){T(n)&&n.call(u,e,this),h&&v.destroy()}return C(g)&&(g=document.querySelectorAll(g)),v.destroy=function(){o(g,(function(t){var i=r(t,e,v);i.found&&i.all.splice(i.evt,1),t.removeEventListener&&t.removeEventListener(e,v,c)}))},o(g,(function(t){var i=r(t,e,v);(t.addEventListener&&l&&!i.found||!l)&&(t.addEventListener(e,v,c),i.all.push({eventName:e,fn:v}))})),v}function h(e,t){o(t.split(" "),(function(t){return e.classList.add(t)}))}function d(e,t){o(t.split(" "),(function(t){return e.classList.remove(t)}))}function c(e,t){return e.classList.contains(t)}function u(e,t){for(;e!==document.body;){if(!(e=e.parentElement))return!1;if("function"==typeof e.matches?e.matches(t):e.msMatchesSelector(t))return e}}function g(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"",i=arguments.length>2&&void 0!==arguments[2]&&arguments[2];if(!e||""===t)return!1;if("none"===t)return T(i)&&i(),!1;var n=x(),s=t.split(" ");o(s,(function(t){h(e,"g"+t)})),a(n,{onElement:e,avoidDuplicate:!1,once:!0,withCallback:function(e,t){o(s,(function(e){d(t,"g"+e)})),T(i)&&i()}})}function v(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"";if(""===t)return e.style.webkitTransform="",e.style.MozTransform="",e.style.msTransform="",e.style.OTransform="",e.style.transform="",!1;e.style.webkitTransform=t,e.style.MozTransform=t,e.style.msTransform=t,e.style.OTransform=t,e.style.transform=t}function f(e){e.style.display="block"}function p(e){e.style.display="none"}function m(e){var t=document.createDocumentFragment(),i=document.createElement("div");for(i.innerHTML=e;i.firstChild;)t.appendChild(i.firstChild);return t}function y(){return{width:window.innerWidth||document.documentElement.clientWidth||document.body.clientWidth,height:window.innerHeight||document.documentElement.clientHeight||document.body.clientHeight}}function x(){var e,t=document.createElement("fakeelement"),i={animation:"animationend",OAnimation:"oAnimationEnd",MozAnimation:"animationend",WebkitAnimation:"webkitAnimationEnd"};for(e in i)if(void 0!==t.style[e])return i[e]}function b(e,t,i,n){if(e())t();else{var s;i||(i=100);var l=setInterval((function(){e()&&(clearInterval(l),s&&clearTimeout(s),t())}),i);n&&(s=setTimeout((function(){clearInterval(l)}),n))}}function S(e,t,i){if(I(e))console.error("Inject assets error");else if(T(t)&&(i=t,t=!1),C(t)&&t in window)T(i)&&i();else{var n;if(-1!==e.indexOf(".css")){if((n=document.querySelectorAll('link[href="'+e+'"]'))&&n.length>0)return void(T(i)&&i());var s=document.getElementsByTagName("head")[0],l=s.querySelectorAll('link[rel="stylesheet"]'),o=document.createElement("link");return o.rel="stylesheet",o.type="text/css",o.href=e,o.media="all",l?s.insertBefore(o,l[0]):s.appendChild(o),void(T(i)&&i())}if((n=document.querySelectorAll('script[src="'+e+'"]'))&&n.length>0){if(T(i)){if(C(t))return b((function(){return void 0!==window[t]}),(function(){i()})),!1;i()}}else{var r=document.createElement("script");r.type="text/javascript",r.src=e,r.onload=function(){if(T(i)){if(C(t))return b((function(){return void 0!==window[t]}),(function(){i()})),!1;i()}},document.body.appendChild(r)}}}function w(){return"navigator"in window&&window.navigator.userAgent.match(/(iPad)|(iPhone)|(iPod)|(Android)|(PlayBook)|(BB10)|(BlackBerry)|(Opera Mini)|(IEMobile)|(webOS)|(MeeGo)/i)}function T(e){return"function"==typeof e}function C(e){return"string"==typeof e}function k(e){return!(!e||!e.nodeType||1!=e.nodeType)}function E(e){return Array.isArray(e)}function A(e){return e&&e.length&&isFinite(e.length)}function L(t){return"object"===e(t)&&null!=t&&!T(t)&&!E(t)}function I(e){return null==e}function O(e,t){return null!==e&&hasOwnProperty.call(e,t)}function P(e){if(L(e)){if(e.keys)return e.keys().length;var t=0;for(var i in e)O(e,i)&&t++;return t}return e.length}function M(e){return!isNaN(parseFloat(e))&&isFinite(e)}function z(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:-1,t=document.querySelectorAll(".gbtn[data-taborder]:not(.disabled)");if(!t.length)return!1;if(1==t.length)return t[0];"string"==typeof e&&(e=parseInt(e));var i=[];o(t,(function(e){i.push(e.getAttribute("data-taborder"))}));var n=Math.max.apply(Math,i.map((function(e){return parseInt(e)}))),s=e<0?1:e+1;s>n&&(s="1");var l=i.filter((function(e){return e>=parseInt(s)})),r=l.sort()[0];return document.querySelector('.gbtn[data-taborder="'.concat(r,'"]'))}function X(e){if(e.events.hasOwnProperty("keyboard"))return!1;e.events.keyboard=a("keydown",{onElement:window,withCallback:function(t,i){var n=(t=t||window.event).keyCode;if(9==n){var s=document.querySelector(".gbtn.focused");if(!s){var l=!(!document.activeElement||!document.activeElement.nodeName)&&document.activeElement.nodeName.toLocaleLowerCase();if("input"==l||"textarea"==l||"button"==l)return}t.preventDefault();var o=document.querySelectorAll(".gbtn[data-taborder]");if(!o||o.length<=0)return;if(!s){var r=z();return void(r&&(r.focus(),h(r,"focused")))}var a=z(s.getAttribute("data-taborder"));d(s,"focused"),a&&(a.focus(),h(a,"focused"))}39==n&&e.nextSlide(),37==n&&e.prevSlide(),27==n&&e.close()}})}function Y(e){return Math.sqrt(e.x*e.x+e.y*e.y)}function q(e,t){var i=function(e,t){var i=Y(e)*Y(t);if(0===i)return 0;var n=function(e,t){return e.x*t.x+e.y*t.y}(e,t)/i;return n>1&&(n=1),Math.acos(n)}(e,t);return function(e,t){return e.x*t.y-t.x*e.y}(e,t)>0&&(i*=-1),180*i/Math.PI}var N=function(){function e(i){t(this,e),this.handlers=[],this.el=i}return n(e,[{key:"add",value:function(e){this.handlers.push(e)}},{key:"del",value:function(e){e||(this.handlers=[]);for(var t=this.handlers.length;t>=0;t--)this.handlers[t]===e&&this.handlers.splice(t,1)}},{key:"dispatch",value:function(){for(var e=0,t=this.handlers.length;e=0)console.log("ignore drag for this touched element",e.target.nodeName.toLowerCase());else{this.now=Date.now(),this.x1=e.touches[0].pageX,this.y1=e.touches[0].pageY,this.delta=this.now-(this.last||this.now),this.touchStart.dispatch(e,this.element),null!==this.preTapPosition.x&&(this.isDoubleTap=this.delta>0&&this.delta<=250&&Math.abs(this.preTapPosition.x-this.x1)<30&&Math.abs(this.preTapPosition.y-this.y1)<30,this.isDoubleTap&&clearTimeout(this.singleTapTimeout)),this.preTapPosition.x=this.x1,this.preTapPosition.y=this.y1,this.last=this.now;var t=this.preV;if(e.touches.length>1){this._cancelLongTap(),this._cancelSingleTap();var i={x:e.touches[1].pageX-this.x1,y:e.touches[1].pageY-this.y1};t.x=i.x,t.y=i.y,this.pinchStartLen=Y(t),this.multipointStart.dispatch(e,this.element)}this._preventTap=!1,this.longTapTimeout=setTimeout(function(){this.longTap.dispatch(e,this.element),this._preventTap=!0}.bind(this),750)}}}},{key:"move",value:function(e){if(e.touches){var t=this.preV,i=e.touches.length,n=e.touches[0].pageX,s=e.touches[0].pageY;if(this.isDoubleTap=!1,i>1){var l=e.touches[1].pageX,o=e.touches[1].pageY,r={x:e.touches[1].pageX-n,y:e.touches[1].pageY-s};null!==t.x&&(this.pinchStartLen>0&&(e.zoom=Y(r)/this.pinchStartLen,this.pinch.dispatch(e,this.element)),e.angle=q(r,t),this.rotate.dispatch(e,this.element)),t.x=r.x,t.y=r.y,null!==this.x2&&null!==this.sx2?(e.deltaX=(n-this.x2+l-this.sx2)/2,e.deltaY=(s-this.y2+o-this.sy2)/2):(e.deltaX=0,e.deltaY=0),this.twoFingerPressMove.dispatch(e,this.element),this.sx2=l,this.sy2=o}else{if(null!==this.x2){e.deltaX=n-this.x2,e.deltaY=s-this.y2;var a=Math.abs(this.x1-this.x2),h=Math.abs(this.y1-this.y2);(a>10||h>10)&&(this._preventTap=!0)}else e.deltaX=0,e.deltaY=0;this.pressMove.dispatch(e,this.element)}this.touchMove.dispatch(e,this.element),this._cancelLongTap(),this.x2=n,this.y2=s,i>1&&e.preventDefault()}}},{key:"end",value:function(e){if(e.changedTouches){this._cancelLongTap();var t=this;e.touches.length<2&&(this.multipointEnd.dispatch(e,this.element),this.sx2=this.sy2=null),this.x2&&Math.abs(this.x1-this.x2)>30||this.y2&&Math.abs(this.y1-this.y2)>30?(e.direction=this._swipeDirection(this.x1,this.x2,this.y1,this.y2),this.swipeTimeout=setTimeout((function(){t.swipe.dispatch(e,t.element)}),0)):(this.tapTimeout=setTimeout((function(){t._preventTap||t.tap.dispatch(e,t.element),t.isDoubleTap&&(t.doubleTap.dispatch(e,t.element),t.isDoubleTap=!1)}),0),t.isDoubleTap||(t.singleTapTimeout=setTimeout((function(){t.singleTap.dispatch(e,t.element)}),250))),this.touchEnd.dispatch(e,this.element),this.preV.x=0,this.preV.y=0,this.zoom=1,this.pinchStartLen=null,this.x1=this.x2=this.y1=this.y2=null}}},{key:"cancelAll",value:function(){this._preventTap=!0,clearTimeout(this.singleTapTimeout),clearTimeout(this.tapTimeout),clearTimeout(this.longTapTimeout),clearTimeout(this.swipeTimeout)}},{key:"cancel",value:function(e){this.cancelAll(),this.touchCancel.dispatch(e,this.element)}},{key:"_cancelLongTap",value:function(){clearTimeout(this.longTapTimeout)}},{key:"_cancelSingleTap",value:function(){clearTimeout(this.singleTapTimeout)}},{key:"_swipeDirection",value:function(e,t,i,n){return Math.abs(e-t)>=Math.abs(i-n)?e-t>0?"Left":"Right":i-n>0?"Up":"Down"}},{key:"on",value:function(e,t){this[e]&&this[e].add(t)}},{key:"off",value:function(e,t){this[e]&&this[e].del(t)}},{key:"destroy",value:function(){return this.singleTapTimeout&&clearTimeout(this.singleTapTimeout),this.tapTimeout&&clearTimeout(this.tapTimeout),this.longTapTimeout&&clearTimeout(this.longTapTimeout),this.swipeTimeout&&clearTimeout(this.swipeTimeout),this.element.removeEventListener("touchstart",this.start),this.element.removeEventListener("touchmove",this.move),this.element.removeEventListener("touchend",this.end),this.element.removeEventListener("touchcancel",this.cancel),this.rotate.del(),this.touchStart.del(),this.multipointStart.del(),this.multipointEnd.del(),this.pinch.del(),this.swipe.del(),this.tap.del(),this.doubleTap.del(),this.longTap.del(),this.singleTap.del(),this.pressMove.del(),this.twoFingerPressMove.del(),this.touchMove.del(),this.touchEnd.del(),this.touchCancel.del(),this.preV=this.pinchStartLen=this.zoom=this.isDoubleTap=this.delta=this.last=this.now=this.tapTimeout=this.singleTapTimeout=this.longTapTimeout=this.swipeTimeout=this.x1=this.x2=this.y1=this.y2=this.preTapPosition=this.rotate=this.touchStart=this.multipointStart=this.multipointEnd=this.pinch=this.swipe=this.tap=this.doubleTap=this.longTap=this.singleTap=this.pressMove=this.touchMove=this.touchEnd=this.touchCancel=this.twoFingerPressMove=null,window.removeEventListener("scroll",this._cancelAllHandler),null}}]),e}();function W(e){var t=function(){var e,t=document.createElement("fakeelement"),i={transition:"transitionend",OTransition:"oTransitionEnd",MozTransition:"transitionend",WebkitTransition:"webkitTransitionEnd"};for(e in i)if(void 0!==t.style[e])return i[e]}(),i=window.innerWidth||document.documentElement.clientWidth||document.body.clientWidth,n=c(e,"gslide-media")?e:e.querySelector(".gslide-media"),s=u(n,".ginner-container"),l=e.querySelector(".gslide-description");i>769&&(n=s),h(n,"greset"),v(n,"translate3d(0, 0, 0)"),a(t,{onElement:n,once:!0,withCallback:function(e,t){d(n,"greset")}}),n.style.opacity="",l&&(l.style.opacity="")}function B(e){if(e.events.hasOwnProperty("touch"))return!1;var t,i,n,s=y(),l=s.width,o=s.height,r=!1,a=null,g=null,f=null,p=!1,m=1,x=1,b=!1,S=!1,w=null,T=null,C=null,k=null,E=0,A=0,L=!1,I=!1,O={},P={},M=0,z=0,X=document.getElementById("glightbox-slider"),Y=document.querySelector(".goverlay"),q=new _(X,{touchStart:function(t){if(r=!0,(c(t.targetTouches[0].target,"ginner-container")||u(t.targetTouches[0].target,".gslide-desc")||"a"==t.targetTouches[0].target.nodeName.toLowerCase())&&(r=!1),u(t.targetTouches[0].target,".gslide-inline")&&!c(t.targetTouches[0].target.parentNode,"gslide-inline")&&(r=!1),r){if(P=t.targetTouches[0],O.pageX=t.targetTouches[0].pageX,O.pageY=t.targetTouches[0].pageY,M=t.targetTouches[0].clientX,z=t.targetTouches[0].clientY,a=e.activeSlide,g=a.querySelector(".gslide-media"),n=a.querySelector(".gslide-inline"),f=null,c(g,"gslide-image")&&(f=g.querySelector("img")),(window.innerWidth||document.documentElement.clientWidth||document.body.clientWidth)>769&&(g=a.querySelector(".ginner-container")),d(Y,"greset"),t.pageX>20&&t.pageXo){var a=O.pageX-P.pageX;if(Math.abs(a)<=13)return!1}p=!0;var h,d=s.targetTouches[0].clientX,c=s.targetTouches[0].clientY,u=M-d,m=z-c;if(Math.abs(u)>Math.abs(m)?(L=!1,I=!0):(I=!1,L=!0),t=P.pageX-O.pageX,E=100*t/l,i=P.pageY-O.pageY,A=100*i/o,L&&f&&(h=1-Math.abs(i)/o,Y.style.opacity=h,e.settings.touchFollowAxis&&(E=0)),I&&(h=1-Math.abs(t)/l,g.style.opacity=h,e.settings.touchFollowAxis&&(A=0)),!f)return v(g,"translate3d(".concat(E,"%, 0, 0)"));v(g,"translate3d(".concat(E,"%, ").concat(A,"%, 0)"))}},touchEnd:function(){if(r){if(p=!1,S||b)return C=w,void(k=T);var t=Math.abs(parseInt(A)),i=Math.abs(parseInt(E));if(!(t>29&&f))return t<29&&i<25?(h(Y,"greset"),Y.style.opacity=1,W(g)):void 0;e.close()}},multipointEnd:function(){setTimeout((function(){b=!1}),50)},multipointStart:function(){b=!0,m=x||1},pinch:function(e){if(!f||p)return!1;b=!0,f.scaleX=f.scaleY=m*e.zoom;var t=m*e.zoom;if(S=!0,t<=1)return S=!1,t=1,k=null,C=null,w=null,T=null,void f.setAttribute("style","");t>4.5&&(t=4.5),f.style.transform="scale3d(".concat(t,", ").concat(t,", 1)"),x=t},pressMove:function(e){if(S&&!b){var t=P.pageX-O.pageX,i=P.pageY-O.pageY;C&&(t+=C),k&&(i+=k),w=t,T=i;var n="translate3d(".concat(t,"px, ").concat(i,"px, 0)");x&&(n+=" scale3d(".concat(x,", ").concat(x,", 1)")),v(f,n)}},swipe:function(t){if(!S)if(b)b=!1;else{if("Left"==t.direction){if(e.index==e.elements.length-1)return W(g);e.nextSlide()}if("Right"==t.direction){if(0==e.index)return W(g);e.prevSlide()}}}});e.events.touch=q}var H=function(){function e(i,n){var s=this,l=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null;if(t(this,e),this.img=i,this.slide=n,this.onclose=l,this.img.setZoomEvents)return!1;this.active=!1,this.zoomedIn=!1,this.dragging=!1,this.currentX=null,this.currentY=null,this.initialX=null,this.initialY=null,this.xOffset=0,this.yOffset=0,this.img.addEventListener("mousedown",(function(e){return s.dragStart(e)}),!1),this.img.addEventListener("mouseup",(function(e){return s.dragEnd(e)}),!1),this.img.addEventListener("mousemove",(function(e){return s.drag(e)}),!1),this.img.addEventListener("click",(function(e){return s.slide.classList.contains("dragging-nav")?(s.zoomOut(),!1):s.zoomedIn?void(s.zoomedIn&&!s.dragging&&s.zoomOut()):s.zoomIn()}),!1),this.img.setZoomEvents=!0}return n(e,[{key:"zoomIn",value:function(){var e=this.widowWidth();if(!(this.zoomedIn||e<=768)){var t=this.img;if(t.setAttribute("data-style",t.getAttribute("style")),t.style.maxWidth=t.naturalWidth+"px",t.style.maxHeight=t.naturalHeight+"px",t.naturalWidth>e){var i=e/2-t.naturalWidth/2;this.setTranslate(this.img.parentNode,i,0)}this.slide.classList.add("zoomed"),this.zoomedIn=!0}}},{key:"zoomOut",value:function(){this.img.parentNode.setAttribute("style",""),this.img.setAttribute("style",this.img.getAttribute("data-style")),this.slide.classList.remove("zoomed"),this.zoomedIn=!1,this.currentX=null,this.currentY=null,this.initialX=null,this.initialY=null,this.xOffset=0,this.yOffset=0,this.onclose&&"function"==typeof this.onclose&&this.onclose()}},{key:"dragStart",value:function(e){e.preventDefault(),this.zoomedIn?("touchstart"===e.type?(this.initialX=e.touches[0].clientX-this.xOffset,this.initialY=e.touches[0].clientY-this.yOffset):(this.initialX=e.clientX-this.xOffset,this.initialY=e.clientY-this.yOffset),e.target===this.img&&(this.active=!0,this.img.classList.add("dragging"))):this.active=!1}},{key:"dragEnd",value:function(e){var t=this;e.preventDefault(),this.initialX=this.currentX,this.initialY=this.currentY,this.active=!1,setTimeout((function(){t.dragging=!1,t.img.isDragging=!1,t.img.classList.remove("dragging")}),100)}},{key:"drag",value:function(e){this.active&&(e.preventDefault(),"touchmove"===e.type?(this.currentX=e.touches[0].clientX-this.initialX,this.currentY=e.touches[0].clientY-this.initialY):(this.currentX=e.clientX-this.initialX,this.currentY=e.clientY-this.initialY),this.xOffset=this.currentX,this.yOffset=this.currentY,this.img.isDragging=!0,this.dragging=!0,this.setTranslate(this.img,this.currentX,this.currentY))}},{key:"onMove",value:function(e){if(this.zoomedIn){var t=e.clientX-this.img.naturalWidth/2,i=e.clientY-this.img.naturalHeight/2;this.setTranslate(this.img,t,i)}}},{key:"setTranslate",value:function(e,t,i){e.style.transform="translate3d("+t+"px, "+i+"px, 0)"}},{key:"widowWidth",value:function(){return window.innerWidth||document.documentElement.clientWidth||document.body.clientWidth}}]),e}(),V=function(){function e(){var i=this,n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};t(this,e);var s=n.dragEl,l=n.toleranceX,o=void 0===l?40:l,r=n.toleranceY,a=void 0===r?65:r,h=n.slide,d=void 0===h?null:h,c=n.instance,u=void 0===c?null:c;this.el=s,this.active=!1,this.dragging=!1,this.currentX=null,this.currentY=null,this.initialX=null,this.initialY=null,this.xOffset=0,this.yOffset=0,this.direction=null,this.lastDirection=null,this.toleranceX=o,this.toleranceY=a,this.toleranceReached=!1,this.dragContainer=this.el,this.slide=d,this.instance=u,this.el.addEventListener("mousedown",(function(e){return i.dragStart(e)}),!1),this.el.addEventListener("mouseup",(function(e){return i.dragEnd(e)}),!1),this.el.addEventListener("mousemove",(function(e){return i.drag(e)}),!1)}return n(e,[{key:"dragStart",value:function(e){if(this.slide.classList.contains("zoomed"))this.active=!1;else{"touchstart"===e.type?(this.initialX=e.touches[0].clientX-this.xOffset,this.initialY=e.touches[0].clientY-this.yOffset):(this.initialX=e.clientX-this.xOffset,this.initialY=e.clientY-this.yOffset);var t=e.target.nodeName.toLowerCase();e.target.classList.contains("nodrag")||u(e.target,".nodrag")||-1!==["input","select","textarea","button","a"].indexOf(t)?this.active=!1:(e.preventDefault(),(e.target===this.el||"img"!==t&&u(e.target,".gslide-inline"))&&(this.active=!0,this.el.classList.add("dragging"),this.dragContainer=u(e.target,".ginner-container")))}}},{key:"dragEnd",value:function(e){var t=this;e&&e.preventDefault(),this.initialX=0,this.initialY=0,this.currentX=null,this.currentY=null,this.initialX=null,this.initialY=null,this.xOffset=0,this.yOffset=0,this.active=!1,this.doSlideChange&&(this.instance.preventOutsideClick=!0,"right"==this.doSlideChange&&this.instance.prevSlide(),"left"==this.doSlideChange&&this.instance.nextSlide()),this.doSlideClose&&this.instance.close(),this.toleranceReached||this.setTranslate(this.dragContainer,0,0,!0),setTimeout((function(){t.instance.preventOutsideClick=!1,t.toleranceReached=!1,t.lastDirection=null,t.dragging=!1,t.el.isDragging=!1,t.el.classList.remove("dragging"),t.slide.classList.remove("dragging-nav"),t.dragContainer.style.transform="",t.dragContainer.style.transition=""}),100)}},{key:"drag",value:function(e){if(this.active){e.preventDefault(),this.slide.classList.add("dragging-nav"),"touchmove"===e.type?(this.currentX=e.touches[0].clientX-this.initialX,this.currentY=e.touches[0].clientY-this.initialY):(this.currentX=e.clientX-this.initialX,this.currentY=e.clientY-this.initialY),this.xOffset=this.currentX,this.yOffset=this.currentY,this.el.isDragging=!0,this.dragging=!0,this.doSlideChange=!1,this.doSlideClose=!1;var t=Math.abs(this.currentX),i=Math.abs(this.currentY);if(t>0&&t>=Math.abs(this.currentY)&&(!this.lastDirection||"x"==this.lastDirection)){this.yOffset=0,this.lastDirection="x",this.setTranslate(this.dragContainer,this.currentX,0);var n=this.shouldChange();if(!this.instance.settings.dragAutoSnap&&n&&(this.doSlideChange=n),this.instance.settings.dragAutoSnap&&n)return this.instance.preventOutsideClick=!0,this.toleranceReached=!0,this.active=!1,this.instance.preventOutsideClick=!0,this.dragEnd(null),"right"==n&&this.instance.prevSlide(),void("left"==n&&this.instance.nextSlide())}if(this.toleranceY>0&&i>0&&i>=t&&(!this.lastDirection||"y"==this.lastDirection)){this.xOffset=0,this.lastDirection="y",this.setTranslate(this.dragContainer,0,this.currentY);var s=this.shouldClose();return!this.instance.settings.dragAutoSnap&&s&&(this.doSlideClose=!0),void(this.instance.settings.dragAutoSnap&&s&&this.instance.close())}}}},{key:"shouldChange",value:function(){var e=!1;if(Math.abs(this.currentX)>=this.toleranceX){var t=this.currentX>0?"right":"left";("left"==t&&this.slide!==this.slide.parentNode.lastChild||"right"==t&&this.slide!==this.slide.parentNode.firstChild)&&(e=t)}return e}},{key:"shouldClose",value:function(){var e=!1;return Math.abs(this.currentY)>=this.toleranceY&&(e=!0),e}},{key:"setTranslate",value:function(e,t,i){var n=arguments.length>3&&void 0!==arguments[3]&&arguments[3];e.style.transition=n?"all .2s ease":"",e.style.transform="translate3d(".concat(t,"px, ").concat(i,"px, 0)")}}]),e}();function j(e,t,i,n){var s=e.querySelector(".gslide-media"),l=new Image,o="gSlideTitle_"+i,r="gSlideDesc_"+i;l.addEventListener("load",(function(){T(n)&&n()}),!1),l.src=t.href,""!=t.sizes&&""!=t.srcset&&(l.sizes=t.sizes,l.srcset=t.srcset),l.alt="",I(t.alt)||""===t.alt||(l.alt=t.alt),""!==t.title&&l.setAttribute("aria-labelledby",o),""!==t.description&&l.setAttribute("aria-describedby",r),t.hasOwnProperty("_hasCustomWidth")&&t._hasCustomWidth&&(l.style.width=t.width),t.hasOwnProperty("_hasCustomHeight")&&t._hasCustomHeight&&(l.style.height=t.height),s.insertBefore(l,s.firstChild)}function F(e,t,i,n){var s=this,l=e.querySelector(".ginner-container"),o="gvideo"+i,r=e.querySelector(".gslide-media"),a=this.getAllPlayers();h(l,"gvideo-container"),r.insertBefore(m('
'),r.firstChild);var d=e.querySelector(".gvideo-wrapper");S(this.settings.plyr.css,"Plyr");var c=t.href,u=null==t?void 0:t.videoProvider,g=!1;r.style.maxWidth=t.width,S(this.settings.plyr.js,"Plyr",(function(){if(!u&&c.match(/vimeo\.com\/([0-9]*)/)&&(u="vimeo"),!u&&(c.match(/(youtube\.com|youtube-nocookie\.com)\/watch\?v=([a-zA-Z0-9\-_]+)/)||c.match(/youtu\.be\/([a-zA-Z0-9\-_]+)/)||c.match(/(youtube\.com|youtube-nocookie\.com)\/embed\/([a-zA-Z0-9\-_]+)/))&&(u="youtube"),"local"===u||!u){u="local";var l='',l+=''),g=m(l+=" ")}var r=g||m('
'));h(d,"".concat(u,"-video gvideo")),d.appendChild(r),d.setAttribute("data-id",o),d.setAttribute("data-index",i);var v=O(s.settings.plyr,"config")?s.settings.plyr.config:{},f=new Plyr("#"+o,v);f.on("ready",(function(e){a[o]=e.detail.plyr,T(n)&&n()})),b((function(){return e.querySelector("iframe")&&"true"==e.querySelector("iframe").dataset.ready}),(function(){s.resize(e)})),f.on("enterfullscreen",R),f.on("exitfullscreen",R)}))}function R(e){var t=u(e.target,".gslide-media");"enterfullscreen"===e.type&&h(t,"fullscreen"),"exitfullscreen"===e.type&&d(t,"fullscreen")}function G(e,t,i,n){var s,l=this,o=e.querySelector(".gslide-media"),r=!(!O(t,"href")||!t.href)&&t.href.split("#").pop().trim(),d=!(!O(t,"content")||!t.content)&&t.content;if(d&&(C(d)&&(s=m(''.concat(d,"
"))),k(d))){"none"==d.style.display&&(d.style.display="block");var c=document.createElement("div");c.className="ginlined-content",c.appendChild(d),s=c}if(r){var u=document.getElementById(r);if(!u)return!1;var g=u.cloneNode(!0);g.style.height=t.height,g.style.maxWidth=t.width,h(g,"ginlined-content"),s=g}if(!s)return console.error("Unable to append inline slide content",t),!1;o.style.height=t.height,o.style.width=t.width,o.appendChild(s),this.events["inlineclose"+r]=a("click",{onElement:o.querySelectorAll(".gtrigger-close"),withCallback:function(e){e.preventDefault(),l.close()}}),T(n)&&n()}function Z(e,t,i,n){var s=e.querySelector(".gslide-media"),l=function(e){var t=e.url,i=e.allow,n=e.callback,s=e.appendTo,l=document.createElement("iframe");return l.className="vimeo-video gvideo",l.src=t,l.style.width="100%",l.style.height="100%",i&&l.setAttribute("allow",i),l.onload=function(){l.onload=null,h(l,"node-ready"),T(n)&&n()},s&&s.appendChild(l),l}({url:t.href,callback:n});s.parentNode.style.maxWidth=t.width,s.parentNode.style.height=t.height,s.appendChild(l)}var U=function(){function e(){var i=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};t(this,e),this.defaults={href:"",sizes:"",srcset:"",title:"",type:"",videoProvider:"",description:"",alt:"",descPosition:"bottom",effect:"",width:"",height:"",content:!1,zoomable:!0,draggable:!0},L(i)&&(this.defaults=l(this.defaults,i))}return n(e,[{key:"sourceType",value:function(e){var t=e;if(null!==(e=e.toLowerCase()).match(/\.(jpeg|jpg|jpe|gif|png|apn|webp|avif|svg)/))return"image";if(e.match(/(youtube\.com|youtube-nocookie\.com)\/watch\?v=([a-zA-Z0-9\-_]+)/)||e.match(/youtu\.be\/([a-zA-Z0-9\-_]+)/)||e.match(/(youtube\.com|youtube-nocookie\.com)\/embed\/([a-zA-Z0-9\-_]+)/))return"video";if(e.match(/vimeo\.com\/([0-9]*)/))return"video";if(null!==e.match(/\.(mp4|ogg|webm|mov)/))return"video";if(null!==e.match(/\.(mp3|wav|wma|aac|ogg)/))return"audio";if(e.indexOf("#")>-1&&""!==t.split("#").pop().trim())return"inline";return e.indexOf("goajax=true")>-1?"ajax":"external"}},{key:"parseConfig",value:function(e,t){var i=this,n=l({descPosition:t.descPosition},this.defaults);if(L(e)&&!k(e)){O(e,"type")||(O(e,"content")&&e.content?e.type="inline":O(e,"href")&&(e.type=this.sourceType(e.href)));var s=l(n,e);return this.setSize(s,t),s}var r="",a=e.getAttribute("data-glightbox"),h=e.nodeName.toLowerCase();if("a"===h&&(r=e.href),"img"===h&&(r=e.src,n.alt=e.alt),n.href=r,o(n,(function(s,l){O(t,l)&&"width"!==l&&(n[l]=t[l]);var o=e.dataset[l];I(o)||(n[l]=i.sanitizeValue(o))})),n.content&&(n.type="inline"),!n.type&&r&&(n.type=this.sourceType(r)),I(a)){if(!n.title&&"a"==h){var d=e.title;I(d)||""===d||(n.title=d)}if(!n.title&&"img"==h){var c=e.alt;I(c)||""===c||(n.title=c)}}else{var u=[];o(n,(function(e,t){u.push(";\\s?"+t)})),u=u.join("\\s?:|"),""!==a.trim()&&o(n,(function(e,t){var s=a,l=new RegExp("s?"+t+"s?:s?(.*?)("+u+"s?:|$)"),o=s.match(l);if(o&&o.length&&o[1]){var r=o[1].trim().replace(/;\s*$/,"");n[t]=i.sanitizeValue(r)}}))}if(n.description&&"."===n.description.substring(0,1)){var g;try{g=document.querySelector(n.description).innerHTML}catch(e){if(!(e instanceof DOMException))throw e}g&&(n.description=g)}if(!n.description){var v=e.querySelector(".glightbox-desc");v&&(n.description=v.innerHTML)}return this.setSize(n,t,e),this.slideConfig=n,n}},{key:"setSize",value:function(e,t){var i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null,n="video"==e.type?this.checkSize(t.videosWidth):this.checkSize(t.width),s=this.checkSize(t.height);return e.width=O(e,"width")&&""!==e.width?this.checkSize(e.width):n,e.height=O(e,"height")&&""!==e.height?this.checkSize(e.height):s,i&&"image"==e.type&&(e._hasCustomWidth=!!i.dataset.width,e._hasCustomHeight=!!i.dataset.height),e}},{key:"checkSize",value:function(e){return M(e)?"".concat(e,"px"):e}},{key:"sanitizeValue",value:function(e){return"true"!==e&&"false"!==e?e:"true"===e}}]),e}(),$=function(){function e(i,n,s){t(this,e),this.element=i,this.instance=n,this.index=s}return n(e,[{key:"setContent",value:function(){var e=this,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null,i=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(c(t,"loaded"))return!1;var n=this.instance.settings,s=this.slideConfig,l=w();T(n.beforeSlideLoad)&&n.beforeSlideLoad({index:this.index,slide:t,player:!1});var o=s.type,r=s.descPosition,a=t.querySelector(".gslide-media"),d=t.querySelector(".gslide-title"),u=t.querySelector(".gslide-desc"),g=t.querySelector(".gdesc-inner"),v=i,f="gSlideTitle_"+this.index,p="gSlideDesc_"+this.index;if(T(n.afterSlideLoad)&&(v=function(){T(i)&&i(),n.afterSlideLoad({index:e.index,slide:t,player:e.instance.getSlidePlayerInstance(e.index)})}),""==s.title&&""==s.description?g&&g.parentNode.parentNode.removeChild(g.parentNode):(d&&""!==s.title?(d.id=f,d.innerHTML=s.title):d.parentNode.removeChild(d),u&&""!==s.description?(u.id=p,l&&n.moreLength>0?(s.smallDescription=this.slideShortDesc(s.description,n.moreLength,n.moreText),u.innerHTML=s.smallDescription,this.descriptionEvents(u,s)):u.innerHTML=s.description):u.parentNode.removeChild(u),h(a.parentNode,"desc-".concat(r)),h(g.parentNode,"description-".concat(r))),h(a,"gslide-".concat(o)),h(t,"loaded"),"video"!==o){if("external"!==o)return"inline"===o?(G.apply(this.instance,[t,s,this.index,v]),void(s.draggable&&new V({dragEl:t.querySelector(".gslide-inline"),toleranceX:n.dragToleranceX,toleranceY:n.dragToleranceY,slide:t,instance:this.instance}))):void("image"!==o?T(v)&&v():j(t,s,this.index,(function(){var i=t.querySelector("img");s.draggable&&new V({dragEl:i,toleranceX:n.dragToleranceX,toleranceY:n.dragToleranceY,slide:t,instance:e.instance}),s.zoomable&&i.naturalWidth>i.offsetWidth&&(h(i,"zoomable"),new H(i,t,(function(){e.instance.resize()}))),T(v)&&v()})));Z.apply(this,[t,s,this.index,v])}else F.apply(this.instance,[t,s,this.index,v])}},{key:"slideShortDesc",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:50,i=arguments.length>2&&void 0!==arguments[2]&&arguments[2],n=document.createElement("div");n.innerHTML=e;var s=n.innerText,l=i;if((e=s.trim()).length<=t)return e;var o=e.substr(0,t-1);return l?(n=null,o+'... '+i+" "):o}},{key:"descriptionEvents",value:function(e,t){var i=this,n=e.querySelector(".desc-more");if(!n)return!1;a("click",{onElement:n,withCallback:function(e,n){e.preventDefault();var s=document.body,l=u(n,".gslide-desc");if(!l)return!1;l.innerHTML=t.description,h(s,"gdesc-open");var o=a("click",{onElement:[s,u(l,".gslide-description")],withCallback:function(e,n){"a"!==e.target.nodeName.toLowerCase()&&(d(s,"gdesc-open"),h(s,"gdesc-closed"),l.innerHTML=t.smallDescription,i.descriptionEvents(l,t),setTimeout((function(){d(s,"gdesc-closed")}),400),o.destroy())}})}})}},{key:"create",value:function(){return m(this.instance.settings.slideHTML)}},{key:"getConfig",value:function(){k(this.element)||this.element.hasOwnProperty("draggable")||(this.element.draggable=this.instance.settings.draggable);var e=new U(this.instance.settings.slideExtraAttributes);return this.slideConfig=e.parseConfig(this.element,this.instance.settings),this.slideConfig}}]),e}(),J=w(),K=null!==w()||void 0!==document.createTouch||"ontouchstart"in window||"onmsgesturechange"in window||navigator.msMaxTouchPoints,Q=document.getElementsByTagName("html")[0],ee={selector:".glightbox",elements:null,skin:"clean",theme:"clean",closeButton:!0,startAt:null,autoplayVideos:!0,autofocusVideos:!0,descPosition:"bottom",width:"900px",height:"506px",videosWidth:"960px",beforeSlideChange:null,afterSlideChange:null,beforeSlideLoad:null,afterSlideLoad:null,slideInserted:null,slideRemoved:null,slideExtraAttributes:null,onOpen:null,onClose:null,loop:!1,zoomable:!0,draggable:!0,dragAutoSnap:!1,dragToleranceX:40,dragToleranceY:65,preload:!0,oneSlidePerOpen:!1,touchNavigation:!0,touchFollowAxis:!0,keyboardNavigation:!0,closeOnOutsideClick:!0,plugins:!1,plyr:{css:"https://cdn.plyr.io/3.6.12/plyr.css",js:"https://cdn.plyr.io/3.6.12/plyr.js",config:{ratio:"16:9",fullscreen:{enabled:!0,iosNative:!0},youtube:{noCookie:!0,rel:0,showinfo:0,iv_load_policy:3},vimeo:{byline:!1,portrait:!1,title:!1,transparent:!1}}},openEffect:"zoom",closeEffect:"zoom",slideEffect:"slide",moreText:"See more",moreLength:60,cssEfects:{fade:{in:"fadeIn",out:"fadeOut"},zoom:{in:"zoomIn",out:"zoomOut"},slide:{in:"slideInRight",out:"slideOutLeft"},slideBack:{in:"slideInLeft",out:"slideOutRight"},none:{in:"none",out:"none"}},svg:{close:' ',next:' ',prev:' '},slideHTML:'',lightboxHTML:'\n
\n
\n
\n
\n
{closeSVG} \n
{prevSVG} \n
{nextSVG} \n
\n
'},te=function(){function e(){var i=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};t(this,e),this.customOptions=i,this.settings=l(ee,i),this.effectsClasses=this.getAnimationClasses(),this.videoPlayers={},this.apiEvents=[],this.fullElementsList=!1}return n(e,[{key:"init",value:function(){var e=this,t=this.getSelector();t&&(this.baseEvents=a("click",{onElement:t,withCallback:function(t,i){t.preventDefault(),e.open(i)}})),this.elements=this.getElements()}},{key:"open",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null,t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;if(0===this.elements.length)return!1;this.activeSlide=null,this.prevActiveSlideIndex=null,this.prevActiveSlide=null;var i=M(t)?t:this.settings.startAt;if(k(e)){var n=e.getAttribute("data-gallery");n&&(this.fullElementsList=this.elements,this.elements=this.getGalleryElements(this.elements,n)),I(i)&&(i=this.getElementIndex(e))<0&&(i=0)}M(i)||(i=0),this.build(),g(this.overlay,"none"===this.settings.openEffect?"none":this.settings.cssEfects.fade.in);var s=document.body,l=window.innerWidth-document.documentElement.clientWidth;if(l>0){var o=document.createElement("style");o.type="text/css",o.className="gcss-styles",o.innerText=".gscrollbar-fixer {margin-right: ".concat(l,"px}"),document.head.appendChild(o),h(s,"gscrollbar-fixer")}h(s,"glightbox-open"),h(Q,"glightbox-open"),J&&(h(document.body,"glightbox-mobile"),this.settings.slideEffect="slide"),this.showSlide(i,!0),1===this.elements.length?(h(this.prevButton,"glightbox-button-hidden"),h(this.nextButton,"glightbox-button-hidden")):(d(this.prevButton,"glightbox-button-hidden"),d(this.nextButton,"glightbox-button-hidden")),this.lightboxOpen=!0,this.trigger("open"),T(this.settings.onOpen)&&this.settings.onOpen(),K&&this.settings.touchNavigation&&B(this),this.settings.keyboardNavigation&&X(this)}},{key:"openAt",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0;this.open(null,e)}},{key:"showSlide",value:function(){var e=this,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,i=arguments.length>1&&void 0!==arguments[1]&&arguments[1];f(this.loader),this.index=parseInt(t);var n=this.slidesContainer.querySelector(".current");n&&d(n,"current"),this.slideAnimateOut();var s=this.slidesContainer.querySelectorAll(".gslide")[t];if(c(s,"loaded"))this.slideAnimateIn(s,i),p(this.loader);else{f(this.loader);var l=this.elements[t],o={index:this.index,slide:s,slideNode:s,slideConfig:l.slideConfig,slideIndex:this.index,trigger:l.node,player:null};this.trigger("slide_before_load",o),l.instance.setContent(s,(function(){p(e.loader),e.resize(),e.slideAnimateIn(s,i),e.trigger("slide_after_load",o)}))}this.slideDescription=s.querySelector(".gslide-description"),this.slideDescriptionContained=this.slideDescription&&c(this.slideDescription.parentNode,"gslide-media"),this.settings.preload&&(this.preloadSlide(t+1),this.preloadSlide(t-1)),this.updateNavigationClasses(),this.activeSlide=s}},{key:"preloadSlide",value:function(e){var t=this;if(e<0||e>this.elements.length-1)return!1;if(I(this.elements[e]))return!1;var i=this.slidesContainer.querySelectorAll(".gslide")[e];if(c(i,"loaded"))return!1;var n=this.elements[e],s=n.type,l={index:e,slide:i,slideNode:i,slideConfig:n.slideConfig,slideIndex:e,trigger:n.node,player:null};this.trigger("slide_before_load",l),"video"===s||"external"===s?setTimeout((function(){n.instance.setContent(i,(function(){t.trigger("slide_after_load",l)}))}),200):n.instance.setContent(i,(function(){t.trigger("slide_after_load",l)}))}},{key:"prevSlide",value:function(){this.goToSlide(this.index-1)}},{key:"nextSlide",value:function(){this.goToSlide(this.index+1)}},{key:"goToSlide",value:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];if(this.prevActiveSlide=this.activeSlide,this.prevActiveSlideIndex=this.index,!this.loop()&&(e<0||e>this.elements.length-1))return!1;e<0?e=this.elements.length-1:e>=this.elements.length&&(e=0),this.showSlide(e)}},{key:"insertSlide",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:-1;t<0&&(t=this.elements.length);var i=new $(e,this,t),n=i.getConfig(),s=l({},n),o=i.create(),r=this.elements.length-1;s.index=t,s.node=!1,s.instance=i,s.slideConfig=n,this.elements.splice(t,0,s);var a=null,h=null;if(this.slidesContainer){if(t>r)this.slidesContainer.appendChild(o);else{var d=this.slidesContainer.querySelectorAll(".gslide")[t];this.slidesContainer.insertBefore(o,d)}(this.settings.preload&&0==this.index&&0==t||this.index-1==t||this.index+1==t)&&this.preloadSlide(t),0===this.index&&0===t&&(this.index=1),this.updateNavigationClasses(),a=this.slidesContainer.querySelectorAll(".gslide")[t],h=this.getSlidePlayerInstance(t),s.slideNode=a}this.trigger("slide_inserted",{index:t,slide:a,slideNode:a,slideConfig:n,slideIndex:t,trigger:null,player:h}),T(this.settings.slideInserted)&&this.settings.slideInserted({index:t,slide:a,player:h})}},{key:"removeSlide",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:-1;if(e<0||e>this.elements.length-1)return!1;var t=this.slidesContainer&&this.slidesContainer.querySelectorAll(".gslide")[e];t&&(this.getActiveSlideIndex()==e&&(e==this.elements.length-1?this.prevSlide():this.nextSlide()),t.parentNode.removeChild(t)),this.elements.splice(e,1),this.trigger("slide_removed",e),T(this.settings.slideRemoved)&&this.settings.slideRemoved(e)}},{key:"slideAnimateIn",value:function(e,t){var i=this,n=e.querySelector(".gslide-media"),s=e.querySelector(".gslide-description"),l={index:this.prevActiveSlideIndex,slide:this.prevActiveSlide,slideNode:this.prevActiveSlide,slideIndex:this.prevActiveSlide,slideConfig:I(this.prevActiveSlideIndex)?null:this.elements[this.prevActiveSlideIndex].slideConfig,trigger:I(this.prevActiveSlideIndex)?null:this.elements[this.prevActiveSlideIndex].node,player:this.getSlidePlayerInstance(this.prevActiveSlideIndex)},o={index:this.index,slide:this.activeSlide,slideNode:this.activeSlide,slideConfig:this.elements[this.index].slideConfig,slideIndex:this.index,trigger:this.elements[this.index].node,player:this.getSlidePlayerInstance(this.index)};if(n.offsetWidth>0&&s&&(p(s),s.style.display=""),d(e,this.effectsClasses),t)g(e,this.settings.cssEfects[this.settings.openEffect].in,(function(){i.settings.autoplayVideos&&i.slidePlayerPlay(e),i.trigger("slide_changed",{prev:l,current:o}),T(i.settings.afterSlideChange)&&i.settings.afterSlideChange.apply(i,[l,o])}));else{var r=this.settings.slideEffect,a="none"!==r?this.settings.cssEfects[r].in:r;this.prevActiveSlideIndex>this.index&&"slide"==this.settings.slideEffect&&(a=this.settings.cssEfects.slideBack.in),g(e,a,(function(){i.settings.autoplayVideos&&i.slidePlayerPlay(e),i.trigger("slide_changed",{prev:l,current:o}),T(i.settings.afterSlideChange)&&i.settings.afterSlideChange.apply(i,[l,o])}))}setTimeout((function(){i.resize(e)}),100),h(e,"current")}},{key:"slideAnimateOut",value:function(){if(!this.prevActiveSlide)return!1;var e=this.prevActiveSlide;d(e,this.effectsClasses),h(e,"prev");var t=this.settings.slideEffect,i="none"!==t?this.settings.cssEfects[t].out:t;this.slidePlayerPause(e),this.trigger("slide_before_change",{prev:{index:this.prevActiveSlideIndex,slide:this.prevActiveSlide,slideNode:this.prevActiveSlide,slideIndex:this.prevActiveSlideIndex,slideConfig:I(this.prevActiveSlideIndex)?null:this.elements[this.prevActiveSlideIndex].slideConfig,trigger:I(this.prevActiveSlideIndex)?null:this.elements[this.prevActiveSlideIndex].node,player:this.getSlidePlayerInstance(this.prevActiveSlideIndex)},current:{index:this.index,slide:this.activeSlide,slideNode:this.activeSlide,slideIndex:this.index,slideConfig:this.elements[this.index].slideConfig,trigger:this.elements[this.index].node,player:this.getSlidePlayerInstance(this.index)}}),T(this.settings.beforeSlideChange)&&this.settings.beforeSlideChange.apply(this,[{index:this.prevActiveSlideIndex,slide:this.prevActiveSlide,player:this.getSlidePlayerInstance(this.prevActiveSlideIndex)},{index:this.index,slide:this.activeSlide,player:this.getSlidePlayerInstance(this.index)}]),this.prevActiveSlideIndex>this.index&&"slide"==this.settings.slideEffect&&(i=this.settings.cssEfects.slideBack.out),g(e,i,(function(){var t=e.querySelector(".ginner-container"),i=e.querySelector(".gslide-media"),n=e.querySelector(".gslide-description");t.style.transform="",i.style.transform="",d(i,"greset"),i.style.opacity="",n&&(n.style.opacity=""),d(e,"prev")}))}},{key:"getAllPlayers",value:function(){return this.videoPlayers}},{key:"getSlidePlayerInstance",value:function(e){var t="gvideo"+e,i=this.getAllPlayers();return!(!O(i,t)||!i[t])&&i[t]}},{key:"stopSlideVideo",value:function(e){if(k(e)){var t=e.querySelector(".gvideo-wrapper");t&&(e=t.getAttribute("data-index"))}console.log("stopSlideVideo is deprecated, use slidePlayerPause");var i=this.getSlidePlayerInstance(e);i&&i.playing&&i.pause()}},{key:"slidePlayerPause",value:function(e){if(k(e)){var t=e.querySelector(".gvideo-wrapper");t&&(e=t.getAttribute("data-index"))}var i=this.getSlidePlayerInstance(e);i&&i.playing&&i.pause()}},{key:"playSlideVideo",value:function(e){if(k(e)){var t=e.querySelector(".gvideo-wrapper");t&&(e=t.getAttribute("data-index"))}console.log("playSlideVideo is deprecated, use slidePlayerPlay");var i=this.getSlidePlayerInstance(e);i&&!i.playing&&i.play()}},{key:"slidePlayerPlay",value:function(e){var t;if(!J||null!==(t=this.settings.plyr.config)&&void 0!==t&&t.muted){if(k(e)){var i=e.querySelector(".gvideo-wrapper");i&&(e=i.getAttribute("data-index"))}var n=this.getSlidePlayerInstance(e);n&&!n.playing&&(n.play(),this.settings.autofocusVideos&&n.elements.container.focus())}}},{key:"setElements",value:function(e){var t=this;this.settings.elements=!1;var i=[];e&&e.length&&o(e,(function(e,n){var s=new $(e,t,n),o=s.getConfig(),r=l({},o);r.slideConfig=o,r.instance=s,r.index=n,i.push(r)})),this.elements=i,this.lightboxOpen&&(this.slidesContainer.innerHTML="",this.elements.length&&(o(this.elements,(function(){var e=m(t.settings.slideHTML);t.slidesContainer.appendChild(e)})),this.showSlide(0,!0)))}},{key:"getElementIndex",value:function(e){var t=!1;return o(this.elements,(function(i,n){if(O(i,"node")&&i.node==e)return t=n,!0})),t}},{key:"getElements",value:function(){var e=this,t=[];this.elements=this.elements?this.elements:[],!I(this.settings.elements)&&E(this.settings.elements)&&this.settings.elements.length&&o(this.settings.elements,(function(i,n){var s=new $(i,e,n),o=s.getConfig(),r=l({},o);r.node=!1,r.index=n,r.instance=s,r.slideConfig=o,t.push(r)}));var i=!1;return this.getSelector()&&(i=document.querySelectorAll(this.getSelector())),i?(o(i,(function(i,n){var s=new $(i,e,n),o=s.getConfig(),r=l({},o);r.node=i,r.index=n,r.instance=s,r.slideConfig=o,r.gallery=i.getAttribute("data-gallery"),t.push(r)})),t):t}},{key:"getGalleryElements",value:function(e,t){return e.filter((function(e){return e.gallery==t}))}},{key:"getSelector",value:function(){return!this.settings.elements&&(this.settings.selector&&"data-"==this.settings.selector.substring(0,5)?"*[".concat(this.settings.selector,"]"):this.settings.selector)}},{key:"getActiveSlide",value:function(){return this.slidesContainer.querySelectorAll(".gslide")[this.index]}},{key:"getActiveSlideIndex",value:function(){return this.index}},{key:"getAnimationClasses",value:function(){var e=[];for(var t in this.settings.cssEfects)if(this.settings.cssEfects.hasOwnProperty(t)){var i=this.settings.cssEfects[t];e.push("g".concat(i.in)),e.push("g".concat(i.out))}return e.join(" ")}},{key:"build",value:function(){var e=this;if(this.built)return!1;var t=document.body.childNodes,i=[];o(t,(function(e){e.parentNode==document.body&&"#"!==e.nodeName.charAt(0)&&e.hasAttribute&&!e.hasAttribute("aria-hidden")&&(i.push(e),e.setAttribute("aria-hidden","true"))}));var n=O(this.settings.svg,"next")?this.settings.svg.next:"",s=O(this.settings.svg,"prev")?this.settings.svg.prev:"",l=O(this.settings.svg,"close")?this.settings.svg.close:"",r=this.settings.lightboxHTML;r=m(r=(r=(r=r.replace(/{nextSVG}/g,n)).replace(/{prevSVG}/g,s)).replace(/{closeSVG}/g,l)),document.body.appendChild(r);var d=document.getElementById("glightbox-body");this.modal=d;var g=d.querySelector(".gclose");this.prevButton=d.querySelector(".gprev"),this.nextButton=d.querySelector(".gnext"),this.overlay=d.querySelector(".goverlay"),this.loader=d.querySelector(".gloader"),this.slidesContainer=document.getElementById("glightbox-slider"),this.bodyHiddenChildElms=i,this.events={},h(this.modal,"glightbox-"+this.settings.skin),this.settings.closeButton&&g&&(this.events.close=a("click",{onElement:g,withCallback:function(t,i){t.preventDefault(),e.close()}})),g&&!this.settings.closeButton&&g.parentNode.removeChild(g),this.nextButton&&(this.events.next=a("click",{onElement:this.nextButton,withCallback:function(t,i){t.preventDefault(),e.nextSlide()}})),this.prevButton&&(this.events.prev=a("click",{onElement:this.prevButton,withCallback:function(t,i){t.preventDefault(),e.prevSlide()}})),this.settings.closeOnOutsideClick&&(this.events.outClose=a("click",{onElement:d,withCallback:function(t,i){e.preventOutsideClick||c(document.body,"glightbox-mobile")||u(t.target,".ginner-container")||u(t.target,".gbtn")||c(t.target,"gnext")||c(t.target,"gprev")||e.close()}})),o(this.elements,(function(t,i){e.slidesContainer.appendChild(t.instance.create()),t.slideNode=e.slidesContainer.querySelectorAll(".gslide")[i]})),K&&h(document.body,"glightbox-touch"),this.events.resize=a("resize",{onElement:window,withCallback:function(){e.resize()}}),this.built=!0}},{key:"resize",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null;if((e=e||this.activeSlide)&&!c(e,"zoomed")){var t=y(),i=e.querySelector(".gvideo-wrapper"),n=e.querySelector(".gslide-image"),s=this.slideDescription,l=t.width,o=t.height;if(l<=768?h(document.body,"glightbox-mobile"):d(document.body,"glightbox-mobile"),i||n){var r=!1;if(s&&(c(s,"description-bottom")||c(s,"description-top"))&&!c(s,"gabsolute")&&(r=!0),n)if(l<=768)n.querySelector("img");else if(r){var a=s.offsetHeight,u=n.querySelector("img");u.setAttribute("style","max-height: calc(100vh - ".concat(a,"px)")),s.setAttribute("style","max-width: ".concat(u.offsetWidth,"px;"))}if(i){var g=O(this.settings.plyr.config,"ratio")?this.settings.plyr.config.ratio:"";if(!g){var v=i.clientWidth,f=i.clientHeight,p=v/f;g="".concat(v/p,":").concat(f/p)}var m=g.split(":"),x=this.settings.videosWidth,b=this.settings.videosWidth,S=(b=M(x)||-1!==x.indexOf("px")?parseInt(x):-1!==x.indexOf("vw")?l*parseInt(x)/100:-1!==x.indexOf("vh")?o*parseInt(x)/100:-1!==x.indexOf("%")?l*parseInt(x)/100:parseInt(i.clientWidth))/(parseInt(m[0])/parseInt(m[1]));if(S=Math.floor(S),r&&(o-=s.offsetHeight),b>l||S>o||ob){var w=i.offsetWidth,T=i.offsetHeight,C=o/T,k={width:w*C,height:T*C};i.parentNode.setAttribute("style","max-width: ".concat(k.width,"px")),r&&s.setAttribute("style","max-width: ".concat(k.width,"px;"))}else i.parentNode.style.maxWidth="".concat(x),r&&s.setAttribute("style","max-width: ".concat(x,";"))}}}}},{key:"reload",value:function(){this.init()}},{key:"updateNavigationClasses",value:function(){var e=this.loop();d(this.nextButton,"disabled"),d(this.prevButton,"disabled"),0==this.index&&this.elements.length-1==0?(h(this.prevButton,"disabled"),h(this.nextButton,"disabled")):0!==this.index||e?this.index!==this.elements.length-1||e||h(this.nextButton,"disabled"):h(this.prevButton,"disabled")}},{key:"loop",value:function(){var e=O(this.settings,"loopAtEnd")?this.settings.loopAtEnd:null;return e=O(this.settings,"loop")?this.settings.loop:e,e}},{key:"close",value:function(){var e=this;if(!this.lightboxOpen){if(this.events){for(var t in this.events)this.events.hasOwnProperty(t)&&this.events[t].destroy();this.events=null}return!1}if(this.closing)return!1;this.closing=!0,this.slidePlayerPause(this.activeSlide),this.fullElementsList&&(this.elements=this.fullElementsList),this.bodyHiddenChildElms.length&&o(this.bodyHiddenChildElms,(function(e){e.removeAttribute("aria-hidden")})),h(this.modal,"glightbox-closing"),g(this.overlay,"none"==this.settings.openEffect?"none":this.settings.cssEfects.fade.out),g(this.activeSlide,this.settings.cssEfects[this.settings.closeEffect].out,(function(){if(e.activeSlide=null,e.prevActiveSlideIndex=null,e.prevActiveSlide=null,e.built=!1,e.events){for(var t in e.events)e.events.hasOwnProperty(t)&&e.events[t].destroy();e.events=null}var i=document.body;d(Q,"glightbox-open"),d(i,"glightbox-open touching gdesc-open glightbox-touch glightbox-mobile gscrollbar-fixer"),e.modal.parentNode.removeChild(e.modal),e.trigger("close"),T(e.settings.onClose)&&e.settings.onClose();var n=document.querySelector(".gcss-styles");n&&n.parentNode.removeChild(n),e.lightboxOpen=!1,e.closing=null}))}},{key:"destroy",value:function(){this.close(),this.clearAllEvents(),this.baseEvents&&this.baseEvents.destroy()}},{key:"on",value:function(e,t){var i=arguments.length>2&&void 0!==arguments[2]&&arguments[2];if(!e||!T(t))throw new TypeError("Event name and callback must be defined");this.apiEvents.push({evt:e,once:i,callback:t})}},{key:"once",value:function(e,t){this.on(e,t,!0)}},{key:"trigger",value:function(e){var t=this,i=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,n=[];o(this.apiEvents,(function(t,s){var l=t.evt,o=t.once,r=t.callback;l==e&&(r(i),o&&n.push(s))})),n.length&&o(n,(function(e){return t.apiEvents.splice(e,1)}))}},{key:"clearAllEvents",value:function(){this.apiEvents.splice(0,this.apiEvents.length)}},{key:"version",value:function(){return"3.1.0"}}]),e}();return function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=new te(e);return t.init(),t}}));
\ No newline at end of file
diff --git a/docs/index.html b/docs/index.html
index 976ceae..2c6992b 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -28,8 +28,8 @@ ARCombat
@@ -57,24 +57,35 @@ Level Up Your Health, Augment Your Reality: Play Smart, M
-
-
+
+
About
-
-
- Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore
- magna aliqua.
+
+
Real World Problem 🌎
+
+ Many people spend too much time playing video games and not enough time exercising , especially in cities where
+ there's not much space for physical activity. The gaming industry is growing fast, with new technologies like VR
+ and AR making games more popular.
-
-
- Ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate
- velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in
- culpa qui officia deserunt mollit anim id est laborum.
+
+
Proposed Solution💡
+
+ Making video games that involve physical activity , like using VR to move around, can help.
+ Also, creating special places in cities where people can play these games and exercise at the same time is a good idea.
+ Teaching people about balancing gaming and staying active is important.
+
+
+
+
Potential Impact 🚀
+
+ Creating games that involve physical activity and providing spaces for gaming and exercise can help more people stay
+ ealthy while enjoying games. It could reduce health issues like obesity, related to not moving enough.
+ This approach uses technology and gaming to encourage a healthier lifestyle.
@@ -157,6 +168,76 @@
Hardware Architecture
+
+
+
+
Security
+
+
+
+
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore
+ magna aliqua.
+
+
+
+
+ Ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate
+ velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in
+ culpa qui officia deserunt mollit anim id est laborum.
+
+
+
+
+
+ Ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate
+ velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in
+ culpa qui officia deserunt mollit anim id est laborum.
+
+
+
+
+
+
+
+
+
Budget
+
+
+
+
+
+ Component
+ Quantity
+ Price(LKR)
+
+
+
+
+ 1
+ ESP32 - WiFi Module
+ 2
+ 3,000
+
+
+ 2
+ VR Headset
+ 2
+ 6,000
+
+
+ 3
+ Jumper Wires
+
+ 400
+
+
+
+
+
+
+
+
@@ -211,7 +292,7 @@
Eshan Jayasundara
E/19/163
@@ -227,7 +308,7 @@ Lahiru Menikdiwela
E/19/236
@@ -260,11 +341,22 @@
Dasun Theekshana