{"version":3,"file":"vendor/gs-lightgallery-video.css","mappings":";;;AAGI;EACI;EACA;EACA;EACA;AAFR;AAGQ;EACI;EACA;AADZ;AAMQ;EACI;EACA;AAJZ;AAOI;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AALR;AAOI;EACI;AALR;AASQ;EACI;EACA;EC0LR,gCDzLQ;AALZ;AASY;;EAEI;AAPhB;AAUY;EACI;AARhB;;AAcA;EACI;IACI;IACA;EAXN;EAcE;IACI;IACA;EAZN;EAeE;IACI;IACA;EAbN;AACF;AAgBA;EACI;IAEI;EAdN;AACF;AAiBA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;ECoNA,8EDnNA;AAZJ;AAiBQ;;EAEI;AAfZ;;AAmBA;EACI;EACA;EACA;EACA;EACA;ECuHA,iCDtHA;AAdJ;;AAgBA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AAbJ;;AAgBA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EC6FA,iCD5FA;AAXJ;AAYI;EACI;AAVR;;AAeI;EACI;AAZR;;AAiBI;EACI;EACA;AAdR,C","sources":["webpack://gutenslider/./node_modules/lightgallery/scss/lg-video.scss","webpack://gutenslider/./node_modules/lightgallery/scss/_lg-mixins.scss"],"sourcesContent":["@import 'lg-variables';\n@import 'lg-mixins';\n.lg-outer {\n    .lg-video-cont {\n        text-align: center;\n        display: inline-block;\n        vertical-align: middle;\n        position: relative;\n        .lg-object {\n            width: 100% !important;\n            height: 100% !important;\n        }\n    }\n\n    .lg-has-iframe {\n        .lg-video-cont {\n            -webkit-overflow-scrolling: touch;\n            overflow: auto;\n        }\n    }\n    .lg-video-object {\n        position: absolute;\n        left: 0;\n        right: 0;\n        width: 100%;\n        height: 100%;\n        top: 0;\n        bottom: 0;\n        z-index: 3;\n    }\n    .lg-video-poster {\n        z-index: 1;\n    }\n\n    .lg-has-video {\n        .lg-video-object {\n            opacity: 0;\n            will-change: opacity;\n            @include transition(opacity 0.3s ease-in);\n        }\n\n        &.lg-video-loaded {\n            .lg-video-poster,\n            .lg-video-play-button {\n                opacity: 0 !important;\n            }\n\n            .lg-video-object {\n                opacity: 1;\n            }\n        }\n    }\n}\n\n@keyframes lg-play-stroke {\n    0% {\n        stroke-dasharray: 1, 200;\n        stroke-dashoffset: 0;\n    }\n\n    50% {\n        stroke-dasharray: 89, 200;\n        stroke-dashoffset: -35px;\n    }\n\n    100% {\n        stroke-dasharray: 89, 200;\n        stroke-dashoffset: -124px;\n    }\n}\n\n@keyframes lg-play-rotate {\n    100% {\n        -webkit-transform: rotate(360deg);\n        transform: rotate(360deg);\n    }\n}\n\n.lg-video-play-button {\n    width: 18%;\n    max-width: 140px;\n    position: absolute;\n    top: 50%;\n    left: 50%;\n    z-index: 2;\n    cursor: pointer;\n    transform: translate(-50%, -50%) scale(1);\n    will-change: opacity, transform;\n    @include transitionCustom(\n        transform 0.25s cubic-bezier(0.17, 0.88, 0.32, 1.28),\n        opacity 0.1s\n    );\n    &:hover {\n        .lg-video-play-icon-bg,\n        .lg-video-play-icon {\n            opacity: 1;\n        }\n    }\n}\n.lg-video-play-icon-bg {\n    fill: none;\n    stroke-width: 3%;\n    stroke: #fcfcfc;\n    opacity: 0.6;\n    will-change: opacity;\n    @include transition(opacity 0.12s ease-in);\n}\n.lg-video-play-icon-circle {\n    position: absolute;\n    top: 0;\n    left: 0;\n    bottom: 0;\n    right: 0;\n    fill: none;\n    stroke-width: 3%;\n    stroke: rgba(30, 30, 30, 0.9);\n    stroke-opacity: 1;\n    stroke-linecap: round;\n    stroke-dasharray: 200;\n    stroke-dashoffset: 200;\n}\n\n.lg-video-play-icon {\n    position: absolute;\n    width: 25%;\n    max-width: 120px;\n    left: 50%;\n    top: 50%;\n    transform: translate3d(-50%, -50%, 0);\n    opacity: 0.6;\n    will-change: opacity;\n    @include transition(opacity 0.12s ease-in);\n    .lg-video-play-icon-inner {\n        fill: #fcfcfc;\n    }\n}\n\n.lg-video-loading {\n    .lg-video-play-icon-circle {\n        animation: lg-play-rotate 2s linear 0.25s infinite,\n            lg-play-stroke 1.5s ease-in-out 0.25s infinite;\n    }\n}\n.lg-video-loaded {\n    .lg-video-play-button {\n        opacity: 0;\n        transform: translate(-50%, -50%) scale(0.7);\n    }\n}\n","// Vendor Prefixes\n//\n// All vendor mixins are deprecated as of v3.2.0 due to the introduction of\n// Autoprefixer in our Gruntfile. They will be removed in v4.\n\n// - Animations\n// - Backface visibility\n// - Box shadow\n// - Box sizing\n// - Content columns\n// - Hyphens\n// - Placeholder text\n// - Transformations\n// - Transitions\n// - User Select\n// - cursor grab\n\n// Animations\n@mixin animation($animation) {\n    -webkit-animation: $animation;\n    -o-animation: $animation;\n    animation: $animation;\n}\n\n@mixin animation-name($name) {\n    -webkit-animation-name: $name;\n    animation-name: $name;\n}\n\n@mixin animation-duration($duration) {\n    -webkit-animation-duration: $duration;\n    animation-duration: $duration;\n}\n\n@mixin animation-timing-function($timing-function) {\n    -webkit-animation-timing-function: $timing-function;\n    animation-timing-function: $timing-function;\n}\n\n@mixin animation-delay($delay) {\n    -webkit-animation-delay: $delay;\n    animation-delay: $delay;\n}\n\n@mixin animation-iteration-count($iteration-count) {\n    -webkit-animation-iteration-count: $iteration-count;\n    animation-iteration-count: $iteration-count;\n}\n\n@mixin animation-direction($direction) {\n    -webkit-animation-direction: $direction;\n    animation-direction: $direction;\n}\n\n@mixin animation-fill-mode($fill-mode) {\n    -webkit-animation-fill-mode: $fill-mode;\n    animation-fill-mode: $fill-mode;\n}\n\n@mixin keyframes($name) {\n    @-webkit-keyframes #{$name} {\n        @content;\n    }\n\n    @-moz-keyframes #{$name} {\n        @content;\n    }\n\n    @-ms-keyframes #{$name} {\n        @content;\n    }\n\n    @keyframes #{$name} {\n        @content;\n    }\n}\n\n// Backface visibility\n// Prevent browsers from flickering when using CSS 3D transforms.\n// Default value is `visible`, but can be changed to `hidden`\n\n@mixin backface-visibility($visibility) {\n    -webkit-backface-visibility: $visibility;\n    -moz-backface-visibility: $visibility;\n    backface-visibility: $visibility;\n}\n\n// Drop shadows\n//\n// Note: Deprecated `.box-shadow()` as of v3.1.0 since all of Bootstrap's\n// supported browsers that have box shadow capabilities now support it.\n\n@mixin box-shadow($shadow...) {\n    -webkit-box-shadow: $shadow; // iOS <4.3 & Android <4.1\n    box-shadow: $shadow;\n}\n\n// Box sizing\n@mixin box-sizing($boxmodel) {\n    -webkit-box-sizing: $boxmodel;\n    -moz-box-sizing: $boxmodel;\n    box-sizing: $boxmodel;\n}\n\n// CSS3 Content Columns\n@mixin content-columns($column-count, $column-gap: $grid-gutter-width) {\n    -webkit-column-count: $column-count;\n    -moz-column-count: $column-count;\n    column-count: $column-count;\n    -webkit-column-gap: $column-gap;\n    -moz-column-gap: $column-gap;\n    column-gap: $column-gap;\n}\n\n// Optional hyphenation\n@mixin hyphens($mode: auto) {\n    word-wrap: break-word;\n    -webkit-hyphens: $mode;\n    -moz-hyphens: $mode;\n    -ms-hyphens: $mode; // IE10+\n    -o-hyphens: $mode;\n    hyphens: $mode;\n}\n\n// Transformations\n@mixin scale($ratio...) {\n    -webkit-transform: scale($ratio);\n    -ms-transform: scale($ratio); // IE9 only\n    -o-transform: scale($ratio);\n    transform: scale($ratio);\n}\n\n@mixin scaleX($ratio) {\n    -webkit-transform: scaleX($ratio);\n    -ms-transform: scaleX($ratio); // IE9 only\n    -o-transform: scaleX($ratio);\n    transform: scaleX($ratio);\n}\n\n@mixin scaleY($ratio) {\n    -webkit-transform: scaleY($ratio);\n    -ms-transform: scaleY($ratio); // IE9 only\n    -o-transform: scaleY($ratio);\n    transform: scaleY($ratio);\n}\n\n@mixin skew($x, $y) {\n    -webkit-transform: skewX($x) skewY($y);\n    -ms-transform: skewX($x) skewY($y); // See https://github.com/twbs/bootstrap/issues/4885; IE9+\n    -o-transform: skewX($x) skewY($y);\n    transform: skewX($x) skewY($y);\n}\n\n@mixin translate($x, $y) {\n    -webkit-transform: translate($x, $y);\n    -ms-transform: translate($x, $y); // IE9 only\n    -o-transform: translate($x, $y);\n    transform: translate($x, $y);\n}\n\n@mixin translate3d($x, $y, $z) {\n    -webkit-transform: translate3d($x, $y, $z);\n    transform: translate3d($x, $y, $z);\n}\n\n@mixin scale3d($x, $y, $z) {\n    -webkit-transform: scale3d($x, $y, $z);\n    transform: scale3d($x, $y, $z);\n}\n\n@mixin rotate($degrees) {\n    -webkit-transform: rotate($degrees);\n    -ms-transform: rotate($degrees); // IE9 only\n    -o-transform: rotate($degrees);\n    transform: rotate($degrees);\n}\n\n@mixin rotateX($degrees) {\n    -webkit-transform: rotateX($degrees);\n    -ms-transform: rotateX($degrees); // IE9 only\n    -o-transform: rotateX($degrees);\n    transform: rotateX($degrees);\n}\n\n@mixin rotateY($degrees) {\n    -webkit-transform: rotateY($degrees);\n    -ms-transform: rotateY($degrees); // IE9 only\n    -o-transform: rotateY($degrees);\n    transform: rotateY($degrees);\n}\n\n@mixin perspective($perspective) {\n    -webkit-perspective: $perspective;\n    -moz-perspective: $perspective;\n    perspective: $perspective;\n}\n\n@mixin perspective-origin($perspective) {\n    -webkit-perspective-origin: $perspective;\n    -moz-perspective-origin: $perspective;\n    perspective-origin: $perspective;\n}\n\n@mixin transform-origin($origin) {\n    -webkit-transform-origin: $origin;\n    -moz-transform-origin: $origin;\n    -ms-transform-origin: $origin; // IE9 only\n    transform-origin: $origin;\n}\n\n@mixin transform($transforms) {\n    -moz-transform: $transforms;\n    -o-transform: $transforms;\n    -ms-transform: $transforms;\n    -webkit-transform: $transforms;\n    transform: $transforms;\n}\n\n// Transitions\n\n@mixin transition($transition...) {\n    -webkit-transition: $transition;\n    -o-transition: $transition;\n    transition: $transition;\n}\n\n@mixin transition-property($transition-property...) {\n    -webkit-transition-property: $transition-property;\n    transition-property: $transition-property;\n}\n\n@mixin transition-delay($transition-delay) {\n    -webkit-transition-delay: $transition-delay;\n    transition-delay: $transition-delay;\n}\n\n@mixin transition-duration($transition-duration...) {\n    -webkit-transition-duration: $transition-duration;\n    transition-duration: $transition-duration;\n}\n\n@mixin transition-timing-function($timing-function) {\n    -webkit-transition-timing-function: $timing-function;\n    transition-timing-function: $timing-function;\n}\n\n@mixin transition-transform($transition...) {\n    -webkit-transition: -webkit-transform $transition;\n    -moz-transition: -moz-transform $transition;\n    -o-transition: -o-transform $transition;\n    transition: transform $transition;\n}\n\n// transition custom\n\n@function prefix($property, $prefixes: webkit moz o ms) {\n    $vendor-prefixed-properties: transform background-clip background-size;\n    $result: ();\n\n    @each $prefix in $prefixes {\n        @if index($vendor-prefixed-properties, $property) {\n            $property: -#{$prefix}-#{$property};\n        }\n        $result: append($result, $property);\n    }\n    @return $result;\n}\n\n@function trans-prefix($transition, $prefix: moz) {\n    $prefixed: ();\n\n    @each $trans in $transition {\n        $prop-name: nth($trans, 1);\n        $vendor-prop-name: prefix($prop-name, $prefix);\n        $prop-vals: nth($trans, 2);\n        $prefixed: append($prefixed, $vendor-prop-name $prop-vals, comma);\n    }\n    @return $prefixed;\n}\n\n@mixin transitionCustom($values...) {\n    $transitions: ();\n\n    @each $declaration in $values {\n        $prop: nth($declaration, 1);\n        $prop-opts: ();\n        $length: length($declaration);\n\n        @if $length >= 2 {\n            @for $i from 2 through $length {\n                $prop-opts: append($prop-opts, nth($declaration, $i));\n            }\n        }\n        $trans: $prop, $prop-opts;\n        $transitions: append($transitions, $trans, comma);\n    }\n    -webkit-transition: trans-prefix($transitions, webkit);\n    -moz-transition: trans-prefix($transitions, moz);\n    -o-transition: trans-prefix($transitions, o);\n    transition: $values;\n}\n\n// User select\n// For selecting text on the page\n\n@mixin user-select($select) {\n    -webkit-user-select: $select;\n    -moz-user-select: $select;\n    -ms-user-select: $select; // IE10+\n    user-select: $select;\n}\n\n// mouse grab\n\n@mixin grab-cursor {\n    cursor: -webkit-grab;\n    cursor: -moz-grab;\n    cursor: -o-grab;\n    cursor: -ms-grab;\n    cursor: grab;\n}\n\n@mixin grabbing-cursor {\n    cursor: move;\n    cursor: -webkit-grabbing;\n    cursor: -moz-grabbing;\n    cursor: -o-grabbing;\n    cursor: -ms-grabbing;\n    cursor: grabbing;\n}\n"],"names":[],"sourceRoot":""}