Smart Slider 3 - Version 3.4.1.14

Version Description

  • 26. November 2020 =
  • Feature: Accessibility improvements
  • Fix: WPRocket RocketCDN compatibility
  • Fix: Jetpack lazy loading compatibility
  • Fix: Elementor fix when no slider is selected
  • Deprecated: PX+
Download this release

Release Info

Developer nextendweb
Plugin Icon 128x128 Smart Slider 3
Version 3.4.1.14
Comparing to
See all releases

Code changes from version 3.4.1.13 to 3.4.1.14

Nextend/Framework/View/Html.php CHANGED
@@ -14,29 +14,14 @@ class Html {
14
  */
15
  private static $renderSpecialAttributesValue = true;
16
 
17
-
18
- /**
19
- * Decodes special HTML entities back to the corresponding characters.
20
- * This is the opposite of {@link encode()}.
21
- *
22
- * @param string $text data to be decoded
23
- *
24
- * @return string the decoded data
25
- * @see http://www.php.net/manual/en/function.htmlspecialchars-decode.php
26
- * @since 1.1.8
27
- */
28
- public static function decode($text) {
29
- return htmlspecialchars_decode($text, ENT_QUOTES);
30
- }
31
-
32
  /**
33
  * Generates an HTML element.
34
  *
35
  * @param string $tag the tag name
36
- * @param array $htmlOptions the element attributes. The values will be HTML-encoded using {@link encode()}.
37
- * If an 'encode' attribute is given and its value is false,
38
- * the rest of the attribute values will NOT be HTML-encoded.
39
- * Since version 1.1.5, attributes whose value is null will not be rendered.
40
  * @param mixed $content the content to be enclosed between open and close element tags. It will not be
41
  * HTML-encoded. If false, it means there is no body content.
42
  * @param boolean $closeTag whether to generate the close tag.
@@ -53,7 +38,8 @@ class Html {
53
  * Generates an open HTML element.
54
  *
55
  * @param string $tag the tag name
56
- * @param array $htmlOptions the element attributes. The values will be HTML-encoded using {@link encode()}.
 
57
  * If an 'encode' attribute is given and its value is false,
58
  * the rest of the attribute values will NOT be HTML-encoded.
59
  * Since version 1.1.5, attributes whose value is null will not be rendered.
@@ -146,7 +132,7 @@ class Html {
146
  }
147
  } else if (isset($specialAttributesNoValue[$name])) {
148
  $html .= ' ' . $name;
149
- } else if ($value !== null) $html .= ' ' . $name . '="' . ($raw ? $value : self::encode($value)) . '"';
150
  }
151
 
152
  return $html;
@@ -161,9 +147,21 @@ class Html {
161
  return htmlspecialchars($text, ENT_QUOTES, 'UTF-8');
162
  }
163
 
 
 
 
 
 
 
 
 
 
 
 
 
 
164
  public static function link($name, $url = '#', $htmlOptions = array()) {
165
  $htmlOptions["href"] = $url;
166
- //$htmlOptions["encode"] = false;
167
 
168
  $url = self::openTag("a", $htmlOptions);
169
  if (isset($htmlOptions["encode"]) && $htmlOptions["encode"]) {
@@ -292,7 +290,7 @@ class Html {
292
  return $target;
293
  }
294
 
295
- public static function addExcludeLazyLoadAttributes($target) {
296
 
297
  return self::mergeAttributes($target, self::getExcludeLazyLoadAttributes());
298
  }
@@ -301,23 +299,12 @@ class Html {
301
  static $attrs;
302
  if ($attrs === null) {
303
  $attrs = array(
304
- 'data-no-lazy' => 1,
305
- 'data-hack' => 'data-lazy-src'
306
  );
307
 
308
- if (class_exists('\FlorianBrinkmann\LazyLoadResponsiveImages\Plugin', false)) {
309
- $attrs['data-no-lazyload'] = 1;
310
- }
311
-
312
- if (function_exists('thb_lazy_images_filter') || defined('WP_SMUSH_VERSION')) {
313
- $attrs['class'] = 'no-lazyload';
314
- }
315
-
316
- if (defined('A3_LAZY_LOAD_NAME')) {
317
- /**
318
- * @see https://wordpress.org/plugins/a3-lazy-load/
319
- */
320
- $attrs['class'] = 'skip-lazy';
321
  }
322
  }
323
 
14
  */
15
  private static $renderSpecialAttributesValue = true;
16
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17
  /**
18
  * Generates an HTML element.
19
  *
20
  * @param string $tag the tag name
21
+ * @param array $htmlOptions the element attributes. The values will be HTML-encoded using
22
+ * {@link encodeAttribute()}. If an 'encode' attribute is given and its value is false,
23
+ * the rest of the attribute values will NOT be HTML-encoded. Since version 1.1.5,
24
+ * attributes whose value is null will not be rendered.
25
  * @param mixed $content the content to be enclosed between open and close element tags. It will not be
26
  * HTML-encoded. If false, it means there is no body content.
27
  * @param boolean $closeTag whether to generate the close tag.
38
  * Generates an open HTML element.
39
  *
40
  * @param string $tag the tag name
41
+ * @param array $htmlOptions the element attributes. The values will be HTML-encoded using
42
+ * {@link encodeAttribute()}.
43
  * If an 'encode' attribute is given and its value is false,
44
  * the rest of the attribute values will NOT be HTML-encoded.
45
  * Since version 1.1.5, attributes whose value is null will not be rendered.
132
  }
133
  } else if (isset($specialAttributesNoValue[$name])) {
134
  $html .= ' ' . $name;
135
+ } else if ($value !== null) $html .= ' ' . $name . '="' . ($raw ? $value : self::encodeAttribute($value)) . '"';
136
  }
137
 
138
  return $html;
147
  return htmlspecialchars($text, ENT_QUOTES, 'UTF-8');
148
  }
149
 
150
+ /**
151
+ * @param $text
152
+ *
153
+ * @return string
154
+ */
155
+ public static function encodeAttribute($text) {
156
+
157
+ /**
158
+ * Do not encode: '
159
+ */
160
+ return htmlspecialchars($text, ENT_COMPAT | ENT_HTML5, 'UTF-8');
161
+ }
162
+
163
  public static function link($name, $url = '#', $htmlOptions = array()) {
164
  $htmlOptions["href"] = $url;
 
165
 
166
  $url = self::openTag("a", $htmlOptions);
167
  if (isset($htmlOptions["encode"]) && $htmlOptions["encode"]) {
290
  return $target;
291
  }
292
 
293
+ public static function addExcludeLazyLoadAttributes($target = array()) {
294
 
295
  return self::mergeAttributes($target, self::getExcludeLazyLoadAttributes());
296
  }
299
  static $attrs;
300
  if ($attrs === null) {
301
  $attrs = array(
302
+ 'class' => 'skip-lazy',
303
+ 'data-skip-lazy' => 1
304
  );
305
 
306
+ if (defined('JETPACK__VERSION')) {
307
+ $attrs['class'] = 'jetpack-lazy-image';
 
 
 
 
 
 
 
 
 
 
 
308
  }
309
  }
310
 
Nextend/SmartSlider3/Application/Admin/Slides/ViewSlidesEdit.php CHANGED
@@ -90,7 +90,6 @@ class ViewSlidesEdit extends AbstractView {
90
  $this->frontendSlider = new AdminSlider($this->MVCHelper, Request::$GET->getInt('sliderid'), array(
91
  'disableResponsive' => true
92
  ));
93
- $this->frontendSlider->exposeSlideData['title'] = true;
94
  $this->frontendSlider->setEditedSlideID($this->getSlideID());
95
  $this->frontendSlider->initSlider();
96
  $this->frontendSlider->initSlides();
90
  $this->frontendSlider = new AdminSlider($this->MVCHelper, Request::$GET->getInt('sliderid'), array(
91
  'disableResponsive' => true
92
  ));
 
93
  $this->frontendSlider->setEditedSlideID($this->getSlideID());
94
  $this->frontendSlider->initSlider();
95
  $this->frontendSlider->initSlides();
Nextend/SmartSlider3/Application/Frontend/Slider/ViewIframe.php CHANGED
@@ -35,8 +35,10 @@ class ViewIframe extends AbstractView {
35
 
36
  $slider = $sliderManager->getSlider();
37
 
38
- $this->sliderID = $slider->sliderId;
39
- $this->isGroup = $slider->isGroup();
 
 
40
 
41
  setlocale(LC_NUMERIC, $locale);
42
 
35
 
36
  $slider = $sliderManager->getSlider();
37
 
38
+ if ($slider) {
39
+ $this->sliderID = $slider->sliderId;
40
+ $this->isGroup = $slider->isGroup();
41
+ }
42
 
43
  setlocale(LC_NUMERIC, $locale);
44
 
Nextend/SmartSlider3/Renderable/Item/YouTube/ItemYouTubeFrontend.php CHANGED
@@ -133,7 +133,7 @@ class ItemYouTubeFrontend extends AbstractItemFrontend {
133
  'class' => 'n2_ss_video_player n2-ow-all',
134
  'data-aspect-ratio' => $aspectRatio,
135
  "style" => 'background: URL(' . ResourceTranslator::toUrl($this->data->getIfEmpty('image', '$ss3-frontend$/images/placeholder/video.png')) . ') no-repeat 50% 50%; background-size: cover;'
136
- ), '<div class="n2_ss_video_player__placeholder" ' . $style . '></div>' . ($this->data->get('playbutton', 1) ? '<div class="n2_ss_video_player__cover">' . Html::image(Image::SVGToBase64('$ss3-frontend$/images/play.svg')) . '</div>' : ''));
137
 
138
  }
139
 
133
  'class' => 'n2_ss_video_player n2-ow-all',
134
  'data-aspect-ratio' => $aspectRatio,
135
  "style" => 'background: URL(' . ResourceTranslator::toUrl($this->data->getIfEmpty('image', '$ss3-frontend$/images/placeholder/video.png')) . ') no-repeat 50% 50%; background-size: cover;'
136
+ ), '<div class="n2_ss_video_player__placeholder" ' . $style . '></div>' . ($this->data->get('playbutton', 1) ? '<div class="n2_ss_video_player__cover">' . Html::image(Image::SVGToBase64('$ss3-frontend$/images/play.svg'), 'Play', Html::addExcludeLazyLoadAttributes()) . '</div>' : ''));
137
 
138
  }
139
 
Nextend/SmartSlider3/Slider/Feature/FadeOnLoad.php CHANGED
@@ -109,16 +109,16 @@ class FadeOnLoad {
109
 
110
 
111
  private function makeImage($sizes) {
112
- $html = Html::image("data:image/svg+xml;base64," . $this->transparentImage($sizes['width'] + $sizes['marginHorizontal'], $sizes['height']), 'Slider', array(
113
  'style' => 'width: 100%; max-width:' . ($this->slider->features->responsive->maximumSlideWidth + $sizes['marginHorizontal']) . 'px; display: block;opacity:0;margin:0px;',
114
  'class' => 'n2-ow'
115
- ));
116
 
117
  if ($sizes['marginVertical'] > 0) {
118
- $html .= Html::image("data:image/svg+xml;base64," . $this->transparentImage($sizes['width'] + $sizes['marginHorizontal'], $sizes['marginVertical']), 'Slider', array(
119
  'style' => 'width: 100%;margin:0px;',
120
  'class' => 'n2-ow'
121
- ));
122
  }
123
 
124
  return $html;
109
 
110
 
111
  private function makeImage($sizes) {
112
+ $html = Html::image("data:image/svg+xml;base64," . $this->transparentImage($sizes['width'] + $sizes['marginHorizontal'], $sizes['height']), 'Slider', Html::addExcludeLazyLoadAttributes(array(
113
  'style' => 'width: 100%; max-width:' . ($this->slider->features->responsive->maximumSlideWidth + $sizes['marginHorizontal']) . 'px; display: block;opacity:0;margin:0px;',
114
  'class' => 'n2-ow'
115
+ )));
116
 
117
  if ($sizes['marginVertical'] > 0) {
118
+ $html .= Html::image("data:image/svg+xml;base64," . $this->transparentImage($sizes['width'] + $sizes['marginHorizontal'], $sizes['marginVertical']), 'Slider', Html::addExcludeLazyLoadAttributes(array(
119
  'style' => 'width: 100%;margin:0px;',
120
  'class' => 'n2-ow'
121
+ )));
122
  }
123
 
124
  return $html;
Nextend/SmartSlider3/Slider/FeatureManager.php CHANGED
@@ -151,8 +151,7 @@ class FeatureManager {
151
  'id' => intval($this->slider->params->get('alias-id', 0)),
152
  'smoothScroll' => intval($this->slider->params->get('alias-smoothscroll', 0)),
153
  'slideSwitch' => intval($this->slider->params->get('alias-slideswitch', 0)),
154
- 'scroll' => intval($this->slider->params->get('alias-slideswitch-scroll', 1)),
155
- 'scrollSpeed' => intval(Settings::get('smooth-scroll-speed', 400))
156
  );
157
 
158
  $this->makeJavaScriptProperties($return);
151
  'id' => intval($this->slider->params->get('alias-id', 0)),
152
  'smoothScroll' => intval($this->slider->params->get('alias-smoothscroll', 0)),
153
  'slideSwitch' => intval($this->slider->params->get('alias-slideswitch', 0)),
154
+ 'scroll' => intval($this->slider->params->get('alias-slideswitch-scroll', 1))
 
155
  );
156
 
157
  $this->makeJavaScriptProperties($return);
Nextend/SmartSlider3/Slider/Slider.php CHANGED
@@ -83,7 +83,7 @@ class Slider extends AbstractRenderable {
83
  private $sliderRow;
84
 
85
  public $exposeSlideData = array(
86
- 'title' => false,
87
  'description' => false,
88
  'thumbnail' => false,
89
  'thumbnailType' => false,
83
  private $sliderRow;
84
 
85
  public $exposeSlideData = array(
86
+ 'title' => true,
87
  'description' => false,
88
  'thumbnail' => false,
89
  'thumbnailType' => false,
Nextend/SmartSlider3/SmartSlider3Info.php CHANGED
@@ -14,15 +14,15 @@ use Nextend\SmartSlider3\Application\Model\ModelLicense;
14
 
15
  class SmartSlider3Info {
16
 
17
- public static $version = '3.4.1.13';
18
 
19
  public static $channel = 'stable';
20
 
21
- public static $revision = '157a13af325047cc49223f19532494ec2f846cde';
22
 
23
- public static $revisionShort = '157a13af';
24
 
25
- public static $branch = 'release-3.4.1.13';
26
 
27
  public static $completeVersion;
28
 
14
 
15
  class SmartSlider3Info {
16
 
17
+ public static $version = '3.4.1.14';
18
 
19
  public static $channel = 'stable';
20
 
21
+ public static $revision = 'f9404e8d487b96e0ed2ced845275a25e7ced4e52';
22
 
23
+ public static $revisionShort = 'f9404e8d';
24
 
25
+ public static $branch = 'release-3.4.1.14';
26
 
27
  public static $completeVersion;
28
 
Nextend/SmartSlider3/Widget/Bar/BarHorizontal/BarHorizontalFrontend.php CHANGED
@@ -52,9 +52,7 @@ class BarHorizontalFrontend extends AbstractWidgetFrontend {
52
  }
53
 
54
  $showTitle = intval($params->get($this->key . 'show-title'));
55
- if ($showTitle) {
56
- $slider->exposeSlideData['title'] = true;
57
- }
58
  $showDescription = intval($params->get($this->key . 'show-description'));
59
  if ($showDescription) {
60
  $slider->exposeSlideData['description'] = true;
52
  }
53
 
54
  $showTitle = intval($params->get($this->key . 'show-title'));
55
+
 
 
56
  $showDescription = intval($params->get($this->key . 'show-description'));
57
  if ($showDescription) {
58
  $slider->exposeSlideData['description'] = true;
Nextend/SmartSlider3/Widget/Bullet/BulletTransition/BulletTransitionFrontend.php CHANGED
@@ -25,8 +25,6 @@ class BulletTransitionFrontend extends AbstractBulletFrontend {
25
  return '';
26
  }
27
 
28
- $slider->exposeSlideData['title'] = true;
29
-
30
  $slider->addLess(self::getAssetsPath() . '/style.n2less', array(
31
  "sliderid" => $slider->elementId
32
  ));
25
  return '';
26
  }
27
 
 
 
28
  $slider->addLess(self::getAssetsPath() . '/style.n2less', array(
29
  "sliderid" => $slider->elementId
30
  ));
Nextend/SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasicFrontend.php CHANGED
@@ -113,7 +113,7 @@ class ThumbnailBasicFrontend extends AbstractWidgetFrontend {
113
  if (!empty($thumbnailStyle) && !empty($thumbnailStyle->data[0]->extra)) {
114
  $extraCSS = $thumbnailStyle->data[0]->extra;
115
  $thumbnailCode = '';
116
- foreach ($thumbnailCSS AS $css) {
117
  $currentCode = $this->getStringBetween($extraCSS, $css . ':', ';');
118
  if (!empty($currentCode)) {
119
  $thumbnailCode .= $css . ':' . $currentCode . ';';
@@ -139,7 +139,6 @@ class ThumbnailBasicFrontend extends AbstractWidgetFrontend {
139
  }
140
 
141
  if ($showTitle) {
142
- $slider->exposeSlideData['title'] = true;
143
  $parameters['title'] = array(
144
  'font' => $slider->addFont($params->get($this->key . 'title-font'), 'simple'),
145
  );
@@ -215,14 +214,14 @@ class ThumbnailBasicFrontend extends AbstractWidgetFrontend {
215
  $nextStyle .= 'transform:none;';
216
  }
217
 
218
- $previous = Html::image($arrowImagePrevious, $slider->params->get($this->key . 'arrow-prev-alt', 'previous arrow'), array(
219
  'class' => 'nextend-thumbnail-button nextend-thumbnail-previous n2-ow',
220
  'style' => $previousStyle
221
- ));
222
- $next = Html::image($arrowImageNext, $slider->params->get($this->key . 'arrow-next-alt', 'next arrow'), array(
223
  'class' => 'nextend-thumbnail-button nextend-thumbnail-next n2-ow n2-active',
224
  'style' => $nextStyle
225
- ));
226
  }
227
 
228
  if ($params->get($this->key . 'position-mode') == 'simple' && $orientation == 'vertical') {
113
  if (!empty($thumbnailStyle) && !empty($thumbnailStyle->data[0]->extra)) {
114
  $extraCSS = $thumbnailStyle->data[0]->extra;
115
  $thumbnailCode = '';
116
+ foreach ($thumbnailCSS as $css) {
117
  $currentCode = $this->getStringBetween($extraCSS, $css . ':', ';');
118
  if (!empty($currentCode)) {
119
  $thumbnailCode .= $css . ':' . $currentCode . ';';
139
  }
140
 
141
  if ($showTitle) {
 
142
  $parameters['title'] = array(
143
  'font' => $slider->addFont($params->get($this->key . 'title-font'), 'simple'),
144
  );
214
  $nextStyle .= 'transform:none;';
215
  }
216
 
217
+ $previous = Html::image($arrowImagePrevious, $slider->params->get($this->key . 'arrow-prev-alt', 'previous arrow'), Html::addExcludeLazyLoadAttributes(array(
218
  'class' => 'nextend-thumbnail-button nextend-thumbnail-previous n2-ow',
219
  'style' => $previousStyle
220
+ )));
221
+ $next = Html::image($arrowImageNext, $slider->params->get($this->key . 'arrow-next-alt', 'next arrow'), Html::addExcludeLazyLoadAttributes(array(
222
  'class' => 'nextend-thumbnail-button nextend-thumbnail-next n2-ow n2-active',
223
  'style' => $nextStyle
224
+ )));
225
  }
226
 
227
  if ($params->get($this->key . 'position-mode') == 'simple' && $orientation == 'vertical') {
Public/SmartSlider3/Application/Frontend/Assets/dist/smartslider-frontend.min.js CHANGED
@@ -1 +1 @@
1
- (function(){var t=this;t.N2_=t.N2_||{r:[],d:[]},t.N2R=t.N2R||function(){t.N2_.r.push(arguments)},t.N2D=t.N2D||function(){t.N2_.d.push(arguments)}}).call(window),N2D("SmartSliderBackgrounds",function(a,t){function e(t){this.device=null,this.slider=t,this.hasFixed=!1,this.lazyLoad=parseInt(t.parameters.lazyLoad),this.lazyLoadNeighbor=parseInt(t.parameters.lazyLoadNeighbor),this.loadDeferred=a.Deferred(),this.deviceDeferred=a.Deferred(),this.slider.stages.done("Resized",this.onResized.bind(this)),this.slider.stages.done("StarterSlide",this.onStarterSlide.bind(this))}return e.prototype.loadWithProgress=function(t){for(var e=0,i=this.loadDeferred,s=0;s<t.length;s++)a.when(t[s]).done(function(){i.notify(++e,t.length)});a.when.apply(a,t).done(function(){i.resolveWith(null,arguments)})},e.prototype.getBackgroundImages=function(){for(var t=[],e=0;e<this.slider.realSlides.length;e++)t.push(this.slider.realSlides[e].background);return t},e.prototype.onResized=function(){this.onSlideDeviceChanged(this.slider.responsive.getDeviceMode()),this.deviceDeferred.resolve(),this.slider.sliderElement.on("SliderDevice",function(t,e){this.onSlideDeviceChanged(e.device)}.bind(this))},e.prototype.onStarterSlide=function(){1===this.lazyLoad?(this.preLoadSlides=this.preloadSlidesLazyNeighbor,this.loadWithProgress(this.preLoadSlides(this.slider.getVisibleSlides(this.slider.currentSlide)))):2===this.lazyLoad?(this.preLoadSlides=this._preLoadSlides,this.slider.stages.done("SlidesReady",function(){N2R("windowLoad",this.preLoadAll.bind(this))}.bind(this)),this.loadWithProgress(this.preLoadSlides(this.slider.getVisibleSlides(this.slider.currentSlide)))):(this.preLoadSlides=this._preLoadSlides,this.loadWithProgress(this.preLoadAll())),this.slider.sliderElement.on("visibleSlidesChanged",this.onVisibleSlidesChanged.bind(this))},e.prototype.onVisibleSlidesChanged=function(){(1===this.lazyLoad||2===this.lazyLoad)&&a.when.apply(a,this.preLoadSlides(this.slider.getVisibleSlides()))},e.prototype.onSlideDeviceChanged=function(t){this.device=t;for(var e=0;e<this.slider.visibleRealSlides.length;e++)this.slider.visibleRealSlides[e].background&&this.slider.visibleRealSlides[e].background.updateBackgroundToDevice(t)},e.prototype.preLoadAll=function(){for(var t=[],e=0;e<this.slider.visibleRealSlides.length;e++)t.push(this.slider.visibleRealSlides[e].preLoad());return t},e.prototype._preLoadSlides=function(t){var e=[];"[object Array]"!==Object.prototype.toString.call(t)&&(t=[t]);for(var i=0;i<t.length;i++)e.push(t[i].preLoad());return e},e.prototype.preloadSlidesLazyNeighbor=function(t){var e=this._preLoadSlides(t);if(this.lazyLoadNeighbor)for(var i=0,s=t[0].getPrevious(),n=t[t.length-1].getNext();i<this.lazyLoadNeighbor;)s&&(e.push(s.preLoad()),s=s.getPrevious()),n&&(e.push(n.preLoad()),n=n.getNext()),i++;var r,o=a.Deferred();return"resolved"!==e[0].state()?(r=setTimeout(function(){this.slider.load.showSpinner("backgroundImage"+t[0].index),r=null}.bind(this),50),a.when.apply(a,e).done(function(){r?(clearTimeout(r),r=null):this.slider.load.removeSpinner("backgroundImage"+t[0].index),setTimeout(function(){o.resolve()},100)}.bind(this))):setTimeout(function(){o.resolve()},100),e.push(o),e},e.prototype.hack=function(){for(var t=0;t<this.slider.realSlides.length;t++)this.slider.realSlides[t].background&&this.slider.realSlides[t].background.hack()},e}),N2D("CSSData",function(t,e){"use strict";function i(t,e){this.$=t,this.css=e}return i.prototype.flush=function(){this.$.css(this.css)},i}),N2D("FontSize",function(e,i){var s;return{toRem:function(t){return t/(s===i&&(s=e('<div style="font-size:10rem;"></div>').appendTo("body")),parseFloat(s.css("fontSize"))/10)+"rem"}}}),N2D("SmartSliderLoad",function(i,t){function e(t,e){this.parameters=i.extend({fade:1,scroll:0},e),this.deferred=i.Deferred(),this.slider=t,this.spinnerCouner=0,this.id=t.sliderElement.attr("id"),this.$window=i(window),this.spinner=i("#"+this.id+"-spinner"),this.$placeholder=i("#"+this.id+"-placeholder")}return e.prototype.start=function(){var i;this.parameters.scroll?(this.onScrollCallback=this.onScroll.bind(this),window.addEventListener("scroll",this.onScrollCallback,{capture:!0,passive:!0}),this.onScroll()):(this.parameters.fade&&(this.loadingArea=this.$placeholder,this.showSpinner("fadePlaceholder"),(i=this.spinner.find(".n2-ss-spinner-counter")).length&&(i.html("0%"),this.slider.stages.done("SlidesReady",function(){this.slider.backgrounds.loadDeferred.progress(function(t,e){i.html(Math.round(t/(e+1)*100)+"%")}.bind(this))}.bind(this)))),this.showSlider())},e.prototype.onScroll=function(){this.$window.scrollTop()+this.$window.height()>this.slider.sliderElement.offset().top+100&&(window.removeEventListener("scroll",this.onScrollCallback,{capture:!0,passive:!0}),this.showSlider())},e.prototype.loadLayerImages=function(){var t=i.Deferred();return this.slider.sliderElement.find(".n2-ss-layers-container").n2imagesLoaded().always(function(){t.resolve()}),t},e.prototype.showSlider=function(){this.slider.stages.done("ResizeFirst",this.stage1.bind(this))},e.prototype.stage1=function(){this.slider.responsive.isReadyToResize=!0,i.when.apply(i,this.slider.widgetDeferreds).done(this.stage2.bind(this))},e.prototype.stage2=function(){this.slider.responsive.doResize(),this.slider.finalizeStarterSlide(),i.when(this.slider.backgrounds.loadDeferred,this.loadLayerImages(),this.slider.stages.get("Fonts").getDeferred()).always(this.stage3.bind(this))},e.prototype.stage3=function(){this.slider.responsive.doResize(),this.slider.stages.resolve("BeforeShow"),this.slider.widgets.onReady(),this.slider.responsive.alignElement.addClass("n2-ss-align-visible"),this.slider.sliderElement.addClass("n2-ss-loaded").removeClass("n2notransition"),this.spinner.find(".n2-ss-spinner-counter").html(""),this.removeSpinner("fadePlaceholder"),this.$placeholder.remove(),this.loadingArea=this.slider.sliderElement,i(window).scroll(),this.slider.stages.resolve("Show"),this.slider.startVisibilityCheck()},e.prototype.showSpinner=function(t){0===this.spinnerCouner&&this.spinner.appendTo(this.loadingArea).css("display",""),this.spinnerCouner++},e.prototype.removeSpinner=function(t){this.spinnerCouner--,this.spinnerCouner<=0&&(this.spinner.detach(),this.spinnerCouner=0)},e}),N2D("SmartSliderPlugins",function(t,i){function s(t){this.slider=t,this.plugins={}}s.prototype.add=function(t,e){this.plugins[t]=new e(this.slider)},s.prototype.get=function(t){return this.plugins[t]||!1};var n={},r=[];return{addPlugin:function(t,e){for(var i=0;i<r.length;i++)r[i].plugins.add(t,e);n[t]=e},addSlider:function(t){if(t.plugins===i)for(var e in t.plugins=new s(t),n)t.plugins.add(e,n[e]);r.push(t)}}}),N2D("ScrollTracker",function(t,e,i){function s(){this.started=!1,this.items=[],this.onScrollCallback=this.onScroll.bind(this)}return s.prototype.add=function(t,e,i,s){s={$el:t,mode:e,onVisible:i,onHide:s,state:"unknown"};this.items.push(s),this._onScroll(s,Math.max(document.documentElement.clientHeight,window.innerHeight)),this.started||this.start()},s.prototype.start=function(){this.started||(window.addEventListener("scroll",this.onScrollCallback,{capture:!0,passive:!0}),this.started=!0)},s.prototype.onScroll=function(t){for(var e=Math.max(document.documentElement.clientHeight,window.innerHeight),i=0;i<this.items.length;i++)this._onScroll(this.items[i],e)},s.prototype._onScroll=function(t,e){var i=t.$el[0].getBoundingClientRect(),s=i.height>.7*e,n=!0;"partly-visible"===t.mode?(s&&(i.bottom<0||i.top>=i.height)||!s&&(i.bottom-i.height<0||0<=i.top-e+i.height))&&(n=!1):"not-visible"===t.mode&&(n=i.top-e<0&&0<i.top+i.height),!1===n?"hidden"!==t.state&&("function"==typeof t.onHide&&t.onHide(),t.state="hidden"):"visible"!==t.state&&("function"==typeof t.onVisible&&t.onVisible(),t.state="visible")},new s}),N2D("SmartSliderApi",function(a,s){function t(){this.sliders={},this.readys={},this.eventListeners={}}t.prototype.makeReady=function(t,e){if(this.sliders[t]=e,this.readys[t]!==s)for(var i=0;i<this.readys[t].length;i++)this.readys[t][i].call(e,e,e.sliderElement)},t.prototype.ready=function(t,e){this.sliders[t]!==s?e.call(this.sliders[t],this.sliders[t],this.sliders[t].sliderElement):(this.readys[t]===s&&(this.readys[t]=[]),this.readys[t].push(e))},t.prototype.on=function(t,e){this.eventListeners[t]===s&&(this.eventListeners[t]=[]),this.eventListeners[t].push(e)},t.prototype.off=function(t,e){if(this.eventListeners[t]!==s)for(var i=this.eventListeners[t].length-1;0<=i;i--)this.eventListeners[t][i]===e&&this.eventListeners[t].splice(i,1)},t.prototype.dispatch=function(t,e){if(this.eventListeners[t]!==s&&this.eventListeners[t].length)for(var i=this.eventListeners[t].length-1;0<=i;i--)this.eventListeners[t][i]&&this.eventListeners[t][i].call(e,e)},t.prototype.trigger=function(t,e,i){i&&i.preventDefault();var i=a(t),s=e.split(","),t=i.closest(".n2-ss-slide,.n2-ss-static-slide"),n=t.data("ss-last-event");i.data("ss-reset-events")||(i.data("ss-reset-events",1),t.on("layerAnimationPlayIn.resetCounter",function(t){t.data("ss-last-event","")}.bind(this,t)));for(var r=s.length-1,o=0;o<s.length;o++)s[o]===n&&(r=o);e=r===s.length-1?s[0]:s[r+1],t.data("ss-last-event",e),t.triggerHandler("ss"+e)},t.prototype.applyAction=function(t,e){var i;this.isClickAllowed(t)&&(i=t.currentTarget,(i=a(i).closest(".n2-ss-slider").data("ss"))[e].apply(i,Array.prototype.slice.call(arguments,2)))},t.prototype.applyActionWithClick=function(t){this.isClickAllowed(t)&&(nextend.shouldPreventClick||(t.preventDefault(),this.applyAction.apply(this,arguments)))},t.prototype.isClickAllowed=function(t){return!a.contains(t.currentTarget,a(t.target).closest('a[href!="#"], *[onclick][onclick!=""], *[data-n2click][data-n2click!=""], *[data-n2-lightbox]').get(0))},t.prototype.openUrl=function(t,e){var i;this.isClickAllowed(t)&&(t=(i=a(t.currentTarget)).data("href"),e===s&&(e=i.data("target")),"_blank"===e?((e=window.open()).opener=null,e.location=t):n2const.setLocation(t))};var n={focusOffsetTop:0,to:function(t){var e=a("html, body, .n2_iframe_application__content");"smooth"===a("html").css("scroll-behavior")?e.scrollTop(t):e.animate({scrollTop:t},window.n2ScrollSpeed||400)},top:function(){n.to(0)},bottom:function(){n.to(a(document).height()-a(window).height())},before:function(t){n.to(t.offset().top-a(window).height())},after:function(t){n.to(t.offset().top+t.height())},next:function(i,t){var t=a(t),s=-1;t.each(function(t,e){if(a(i).is(e)||a.contains(e,i))return s=t+1,!1}),-1!==s&&s<=t.length&&n.element(t.eq(s))},previous:function(i,t){var t=a(t),s=-1;t.each(function(t,e){if(a(i).is(e)||a.contains(e,i))return s=t-1,!1}),0<=s&&n.element(t.eq(s))},element:function(t){n.to(a(t).offset().top-n.focusOffsetTop)}};return t.prototype.scroll=function(t,e){var i;this.isClickAllowed(t)&&(t.preventDefault(),(i=this.findSliderByElement(t.target))&&(n.focusOffsetTop=i.responsive.focusOffsetTop),n[e].apply(window,Array.prototype.slice.call(arguments,2)))},t.prototype.findSliderByElement=function(t){return a(t).closest(".n2-ss-slider").data("ss")},window.n2ss=new t,window.n2ss}),N2D("SmartSliderAbstract",function($,undefined){function SmartSliderAbstract(t,e){this.editor=null,t instanceof $&&(t="#"+t.attr("id"));var i=t.substr(1);if(this.elementID=i,window[i]&&window[i]instanceof SmartSliderAbstract&&(!window[i].__$sliderElement||$.contains(document.body,window[i].__$sliderElement.get(0)))){if(window[i].sliderElement===undefined)return void console.error("Slider [#"+i+"] inited multiple times");if($.contains(document.body,window[i].sliderElement.get(0)))return void console.error("Slider [#"+i+"] embedded multiple times")}this.stages=new N2Classes.Stages,N2D(t,function(){return this}.bind(this)),this.isAdmin=!!e.admin,N2Classes.SmartSliderPlugins.addSlider(this),this.id=parseInt(i.replace("n2-ss-","")),window[i]=this,e.isDelayed!==undefined&&e.isDelayed?$(window).ready(function(){this.waitForExists(i,e)}.bind(this)):this.waitForExists(i,e)}SmartSliderAbstract.prototype.kill=function(){this.killed=!0;var e=this.sliderElement.attr("id"),t=$("#"+e+"-placeholder");t.length?t.remove():N2R("documentReady",function(t){t("#"+e+"-placeholder").remove()});t=this.sliderElement.closest(".n2-ss-margin");t.length?t.remove():N2R("documentReady",function(t){this.sliderElement.closest(".n2-ss-margin").remove()}.bind(this));t=this.sliderElement.closest(".n2-ss-align");t.length?t.remove():N2R("documentReady",function(t){this.sliderElement.closest(".n2-ss-align").remove()}.bind(this)),n2ss.makeReady(this.id,this)},SmartSliderAbstract.prototype.waitForExists=function(e,t){var i=$.Deferred(),s=function(){var t=$("#"+e);t.length?i.resolve(t):setTimeout(s,500)};i.done(this.onSliderExists.bind(this,e,t)),s()};var lazySliders=[];function lazySliderLoad(t,e){lazySliders.push({element:t.__$sliderElement.parent()[0],callback:e}),1===lazySliders.length&&(window.addEventListener("resize",lazySliderCheckScroll,{capture:!0}),window.addEventListener("scroll",lazySliderCheckScroll,{capture:!0,passive:!0}),N2Classes.SmartSliderApi.on("SliderResize",lazySliderCheckScroll),lazySliderCheckScroll())}function lazySliderCheckScroll(){for(var t,e=1.4*$(window).height(),i=0;i<lazySliders.length;i++)lazySliders[i].element.getBoundingClientRect().y<e&&(t=lazySliders[i].callback,lazySliders.splice(i,1),i--,t());0===lazySliders.length&&(window.removeEventListener("resize",lazySliderCheckScroll,{capture:!0}),window.removeEventListener("scroll",lazySliderCheckScroll,{capture:!0,passive:!0}),N2Classes.SmartSliderApi.off("SliderResize",lazySliderCheckScroll))}return SmartSliderAbstract.prototype.onSliderExists=function(t,e,i){var s,n;this.__$sliderElement=i,this.stages.resolve("Exists"),"TEMPLATE"===i.prop("tagName")?(s=i.data("loading-type"),n=function(){var t=$(i.html());i.replaceWith(t),this.waitForDimension(t,e),$(window).triggerHandler("n2Rocket",[t])}.bind(this),"afterOnLoad"===s?N2R("windowLoad",lazySliderLoad.bind(this,this,n)):"afterDelay"===s?setTimeout(n,i.data("loading-delay")):n()):this.waitForDimension(i,e)},SmartSliderAbstract.prototype.waitForDimension=function(t,e){var i=function(){t.is(":visible")?this.onSliderHasDimension(t,e):setTimeout(i,200)}.bind(this);i()},SmartSliderAbstract.prototype.initCSS=function(){this.parameters.css&&$('<style type="text/css">'+this.parameters.css+"</style>").appendTo("head")},SmartSliderAbstract.prototype.onSliderHasDimension=function($sliderElement,parameters){this.stages.resolve("HasDimension"),this.killed=!1,this.isVisible=!0,n2const.isIE?$sliderElement.attr("data-ie",n2const.isIE):n2const.isEdge&&$sliderElement.attr("data-ie",n2const.isEdge),this.responsive=!1,this.mainAnimationLastChangeTime=0,this.currentSlide=null,this.currentRealSlide=null,this.staticSlides=[],this.slides=[],this.visibleRealSlides=[],this.visibleSlides=[],this.sliderElement=$sliderElement.data("ss",this),this.needBackgroundWrap=!1,this.blockCarousel=!1,this.parameters=$.extend({plugins:[],admin:!1,playWhenVisible:1,playWhenVisibleAt:.5,perspective:1e3,callbacks:"",autoplay:{},blockrightclick:!1,maintainSession:0,align:"normal",controls:{touch:"horizontal",keyboard:!1,mousewheel:!1,blockCarouselInteraction:1},hardwareAcceleration:!0,layerMode:{playOnce:0,playFirstLayer:1,mode:"skippable",inAnimation:"mainInEnd"},parallax:{enabled:0,mobile:0,horizontal:"mouse",vertical:"mouse",origin:"enter"},load:{},mainanimation:{},randomize:{randomize:0,randomizeFirst:0},responsive:{},lazyload:{enabled:0},postBackgroundAnimations:!1,initCallbacks:!1,dynamicHeight:0,titles:[],descriptions:[],backgroundParallax:{strength:0,tablet:0,mobile:0},alias:{id:0,smoothScroll:0,slideSwitch:0,scrollSpeed:400}},parameters),this.stages.resolve("Parameters"),this.disabled={layerAnimations:!1,layerSplitTextAnimations:!1,backgroundAnimations:!1,postBackgroundAnimations:!1},this.disableLayerAnimations!==undefined&&!0===this.disableLayerAnimations&&(this.disabled.layerAnimations=!0),n2const.isSamsungBrowser&&(this.disabled.layerSplitTextAnimations=!0,this.disabled.postBackgroundAnimations=!0),this.initCSS();try{eval(this.parameters.callbacks)}catch(e){console.error(e)}n2ss.makeReady(this.id,this),this.widgetDeferreds=[],this.sliderElement.on("addWidget",this.addWidget.bind(this)),this.isAdmin&&(this.changeTo=function(){}),this.load=new N2Classes.SmartSliderLoad(this,this.parameters.load),this.backgrounds=new N2Classes.SmartSliderBackgrounds(this),this.initSlides(),"function"==typeof this.parameters.initCallbacks&&this.parameters.initCallbacks.call(this,$),this.stages.done("VisibleSlides",this.onSlidesReady.bind(this)),this.initUI(),navigator.userAgent.match("UCBrowser")&&$("html").addClass("n2-ucbrowser")},SmartSliderAbstract.prototype.onSlidesReady=function(){this.stages.resolve("SlidesReady")},SmartSliderAbstract.prototype.initUI=function(){for(var i=0;i<this.realSlides.length;i++)this.realSlides[i].setNext(this.realSlides[i+1>this.realSlides.length-1?0:i+1]);this.widgets=new N2Classes.SmartSliderWidgets(this);var isHover=!1,hoverTimeout,eventName;if(this.sliderElement.on({universalenter:function(t){$(t.target).closest(".n2-full-screen-widget").length||(clearTimeout(hoverTimeout),isHover=!0,this.sliderElement.addClass("n2-hover"),this.widgets.setState("hover",!0))}.bind(this),universalleave:function(t){t.stopPropagation(),hoverTimeout=setTimeout(function(){isHover=!1,this.sliderElement.removeClass("n2-hover"),this.widgets.setState("hover",!1)}.bind(this),1e3)}.bind(this)}),this.parameters.carousel||this.initNotCarousel(),this.initHideArrow(),this.controls={},this.parameters.blockrightclick&&this.sliderElement.bind("contextmenu",function(t){t.preventDefault()}),this.initMainAnimation(),this.initResponsiveMode(),!this.killed){try{var removeHoverClassCB=function(){this.sliderElement.removeClass("n2-has-hover"),this.sliderElement[0].removeEventListener("touchstart",removeHoverClassCB,!!window.n2const.passiveEvents&&{passive:!0})}.bind(this);this.sliderElement[0].addEventListener("touchstart",removeHoverClassCB,!!window.n2const.passiveEvents&&{passive:!0})}catch(e){}this.initControls(),this.stages.resolve("UIReady"),this.isAdmin||(eventName="click",this.hasTouch()&&(eventName="n2click"),this.sliderElement.find("[data-n2click]").each(function(i,el){var el=$(el);el.on(eventName,function(e){eval(el.data("n2click"))})}),this.sliderElement.find("[data-n2middleclick]").on("mousedown",function(e){var el=$(this);2!=e.which&&4!=e.which||(e.preventDefault(),eval(el.data("n2middleclick")))})),this.load.start(),this.sliderElement.keypress(function(t){32!==t.charCode&&13!==t.charCode||($target=$(t.target).filter('[role="button"],[tabindex]').not("a,input,select,textarea"),$target.length&&(t.preventDefault(),$(t.target).click().triggerHandler("n2Activate")))}).on("mouseleave",function(t){$(t.currentTarget).blur()})}},SmartSliderAbstract.prototype.initSlides=function(){for(var t=this.sliderElement.find(".n2-ss-slide"),e=0;e<t.length;e++)this.slides.push(this.createSlide(t.eq(e),e));for(e=0;e<this.slides.length;e++)this.slides[e].init(),1===this.slides[e].$element.data("first")&&(this.originalRealStarterSlide=this.slides[e]);this.realSlides=this.slides,this.visibleSlides=this.slides,this.initSlidesEnd()},SmartSliderAbstract.prototype.initSlidesEnd=function(){this.afterRawSlidesReady(),this.stages.resolve("RawSlides"),this.randomize(this.realSlides),this.stages.resolve("RawSlidesOrdered"),this.initStaticSlides()},SmartSliderAbstract.prototype.initStaticSlides=function(){for(var t=this.sliderElement.find(".n2-ss-static-slide"),e=0;e<t.length;e++)this.staticSlides.push(new N2Classes.FrontendSliderStaticSlide(this,t.eq(e)))},SmartSliderAbstract.prototype.createSlide=function(t,e){return new N2Classes.FrontendSliderSlide(this,t,e)},SmartSliderAbstract.prototype.afterRawSlidesReady=function(){},SmartSliderAbstract.prototype.trigger=function(){this.sliderElement.triggerHandler.apply(this.sliderElement,arguments)},SmartSliderAbstract.prototype.publicTrigger=function(){this.trigger.apply(this,arguments),N2Classes.SmartSliderApi.dispatch(arguments[0],this)},SmartSliderAbstract.prototype.getVisibleSlides=function(t){return t===undefined&&(t=this.currentSlide),[t]},SmartSliderAbstract.prototype.getActiveSlides=function(t){return this.getVisibleSlides(t)},SmartSliderAbstract.prototype.findSlideBackground=function(t){return t.$element.find(".n2-ss-slide-background")},SmartSliderAbstract.prototype.getRealIndex=function(t){return t},SmartSliderAbstract.prototype.finalizeStarterSlide=function(){var t,e=this.originalRealStarterSlide;this.isAdmin?this.finalizeStarterSlideComplete(e):this.parameters.randomize.randomize&&this.parameters.randomize.randomizeFirst?(e=this.visibleRealSlides[Math.floor(Math.random()*this.visibleRealSlides.length)],this.finalizeStarterSlideComplete(e)):window["ss"+this.id]!==undefined?"object"==typeof window["ss"+this.id]?window["ss"+this.id].done(this.overrideStarterSlideIndex.bind(this)):this.overrideStarterSlideIndex(window["ss"+this.id]):!this.isAdmin&&this.parameters.maintainSession&&window.localStorage!==undefined?(t=window.localStorage.getItem("ss-"+this.id),this.overrideStarterSlideIndex(t),this.sliderElement.on("mainAnimationComplete",function(t,e,i,s){window.localStorage.setItem("ss-"+this.id,s)}.bind(this))):this.finalizeStarterSlideComplete(e)},SmartSliderAbstract.prototype.overrideStarterSlideIndex=function(t){var e;null!==t&&this.realSlides[t]&&(e=this.realSlides[t]),this.finalizeStarterSlideComplete(e)},SmartSliderAbstract.prototype.finalizeStarterSlideComplete=function(t){t!==undefined&&t.isVisible||(t=this.visibleRealSlides[0]),t!==undefined?this.finalizeStarterSlideComplete2(t):(this.hide(),this.sliderElement.one({SliderResize:function(){this.finalizeStarterSlideComplete(t)}.bind(this)}))},SmartSliderAbstract.prototype.finalizeStarterSlideComplete2=function(t){t!==this.originalRealStarterSlide&&this.originalRealStarterSlide!==undefined&&this.originalRealStarterSlide.unsetActive(),this.responsive.onStarterSlide(t),this.stages.resolve("StarterSlide")},SmartSliderAbstract.prototype.randomize=function(t){this.parameters.randomize.randomize&&this.shuffleSlides(t)},SmartSliderAbstract.prototype.shuffleSlides=function(t){t.sort(function(){return.5-Math.random()});for(var e=t[0].$element.parent(),i=0;i<t.length;i++)t[i].$element.appendTo(e),t[i].setIndex(i)},SmartSliderAbstract.prototype.addWidget=function(t,e){this.widgetDeferreds.push(e)},SmartSliderAbstract.prototype.started=function(t){this.stages.done("UIReady",t.bind(this))},SmartSliderAbstract.prototype.ready=function(t){this.stages.done("Show",t.bind(this))},SmartSliderAbstract.prototype.startVisibilityCheck=function(){!this.isAdmin&&this.parameters.playWhenVisible?(this.checkIfVisibleCallback=this.checkIfVisible.bind(this),$(window).on("resize.n2-ss-visible"+this.id,this.checkIfVisibleCallback),this.sliderElement.on("mouseover.n2-ss-visible",this._markVisible.bind(this)),window.addEventListener("scroll",this.checkIfVisibleCallback,{capture:!0,passive:!0}),this.checkIfVisible()):this.stages.resolve("Visible")},SmartSliderAbstract.prototype.checkIfVisible=function(){var t=this.parameters.playWhenVisibleAt,e=$(window).scrollTop(),i=$(window).height(),s=$(document).height(),n=this.sliderElement[0].getBoundingClientRect(),r=i*t/2,o=e+r,t=e+i-r;e<r&&(o*=e/r),s-r<e+i&&(t+=e+i-s+r);r=e+n.top,n=e+n.bottom;(this.isAdmin||r<=t&&o<=r||o<=n&&n<=t||r<=o&&t<=n)&&this._markVisible()},SmartSliderAbstract.prototype._markVisible=function(){this.sliderElement.off(".n2-ss-visible"),$(window).off(".n2-ss-visible"+this.id),window.removeEventListener("scroll",this.checkIfVisibleCallback,{capture:!0,passive:!0}),this.stages.resolve("Visible")},SmartSliderAbstract.prototype.visible=function(t){this.stages.done("Visible",t.bind(this))},SmartSliderAbstract.prototype.isPlaying=function(){return"ended"!==this.mainAnimation.getState()},SmartSliderAbstract.prototype.focus=function(t){var e=!1;if(this.responsive.parameters.focusUser&&!t&&(e=!0),e){var i=$(window).scrollTop(),s=this.responsive.focusOffsetTop,n=this.responsive.focusOffsetBottom,r=$(window).height(),o=this.sliderElement[0].getBoundingClientRect(),a=o.top-s,l=r-o.bottom-n,t=this.responsive.parameters.focusEdge,e="";"top-force"===t?e="top":"bottom-force"===t?e="bottom":a<=0&&l<=0||0<a&&0<l||(a<0?e="top"===t||"bottom"!==t&&-a<=l?"top":"bottom":l<0&&(e="top"!==t&&("bottom"===t||-l<=a)?"bottom":"top"));a=i;if("top"===e?a=i-s+o.top:"bottom"===e&&(a=i+n+o.bottom-r),a!==i)return this._scrollTo(a,Math.abs(i-a))}return!0},SmartSliderAbstract.prototype._scrollTo=function(t,e){var i=$.Deferred();return window.nextendScrollFocus=!0,$("html, body").animate({scrollTop:t},e,function(){i.resolve(),setTimeout(function(){window.nextendScrollFocus=!1},100)}.bind(this)),i},SmartSliderAbstract.prototype.isChangeCarousel=function(t){return"next"===t?this.currentSlide.index+1>=this.slides.length:"previous"===t&&this.currentSlide.index-1<0},SmartSliderAbstract.prototype.initNotCarousel=function(){this.realSlides[0].setPrevious(!1),this.realSlides[this.realSlides.length-1].setNext(!1)},SmartSliderAbstract.prototype.initHideArrow=function(){var i=function(t){this.widgets.setState("nonCarouselFirst",!this.getUIPreviousSlide(t)),this.widgets.setState("nonCarouselLast",!this.getUINextSlide(t))}.bind(this);this.stages.done("StarterSlide",function(){i(this.currentSlide),this.sliderElement.on("SliderResize",function(){i(this.currentSlide)}.bind(this))}.bind(this)),this.sliderElement.on("SlideWillChange",function(t,e){i(e)})},SmartSliderAbstract.prototype.next=function(t,e){var i=this.currentSlide.getNext();return!(!i||!this.getUINextSlide(this.currentSlide))&&this.changeTo(i.index,!1,t,e)},SmartSliderAbstract.prototype.previous=function(t,e){var i=this.getUIPreviousSlide(this.currentSlide);return!!i&&this.changeTo(i.index,!0,t,e)},SmartSliderAbstract.prototype.isChangePossible=function(t){var e,i=!1;return"next"===t?(e=this.currentSlide.getNext())&&(i=e.index):"previous"!==t||(t=this.currentSlide.getPrevious())&&(i=t.index),!1!==i&&i!==this.currentSlide.index},SmartSliderAbstract.prototype.nextCarousel=function(t,e){return!!this.next(t,e)||this.changeTo(this.getFirstSlide().index,!1,t,e)},SmartSliderAbstract.prototype.getFirstSlide=function(){return this.slides[0].isVisible?this.slides[0]:this.slides[0].getNext()},SmartSliderAbstract.prototype.getSlideCount=function(){for(var t=0,e=0;e<this.slides.length;e++)this.slides[e].isVisible&&t++;return t},SmartSliderAbstract.prototype.directionalChangeToReal=function(t){this.directionalChangeTo(t)},SmartSliderAbstract.prototype.directionalChangeTo=function(t){t>this.currentSlide.index?this.changeTo(t,!1):this.changeTo(t,!0)},SmartSliderAbstract.prototype.changeTo=function(i,s,n,r){if((i=parseInt(i))===this.currentSlide.index)return!1;if(!this.slides[i].isVisible)return console.error("this slide is not visible on this device"),!1;this.trigger("SlideWillChange",[this.slides[i]]);var o=$.now();return $.when($.when.apply($,this.backgrounds.preLoadSlides(this.getVisibleSlides(this.slides[i]))),this.focus(n)).done(function(){var t,e;i!==this.currentSlide.index&&this.mainAnimationLastChangeTime<=o&&(this.mainAnimationLastChangeTime=o,"ended"===(t=this.mainAnimation.getState())?(n===undefined&&(n=!1),e=this.mainAnimation,r!==undefined&&(e=r),this._changeTo(i,s,n,r),e.changeTo(this.currentSlide,this.slides[i],s,n),this._changeCurrentSlide(i)):"initAnimation"!==t&&"playing"!==t||(this.sliderElement.off(".fastChange").one("mainAnimationComplete.fastChange",function(){this.changeTo.call(this,i,s,n,r)}.bind(this)),this.mainAnimation.timeScale(2*this.mainAnimation.timeScale())))}.bind(this)),!0},SmartSliderAbstract.prototype.setCurrentRealSlide=function(t){this.currentRealSlide=this.currentSlide=t},SmartSliderAbstract.prototype._changeCurrentSlide=function(t){this.setCurrentRealSlide(this.slides[t]),this.sliderElement.triggerHandler("sliderChangeCurrentSlide")},SmartSliderAbstract.prototype._changeTo=function(t,e,i,s){},SmartSliderAbstract.prototype.revertTo=function(t,e){this.slides[e].unsetActive(),this.slides[t].setActive(),this._changeCurrentSlide(t),this.trigger("SlideWillChange",[this.slides[t]])},SmartSliderAbstract.prototype.forceSetActiveSlide=function(t){t.setActive()},SmartSliderAbstract.prototype.forceUnsetActiveSlide=function(t){t.unsetActive()},SmartSliderAbstract.prototype.updateInsideSlides=function(t){for(var e=0;e<this.slides.length;e++)this.slides[e].setInside(0<=t.indexOf(this.slides[e]))},SmartSliderAbstract.prototype.findSlideByElement=function(t){var e;for(t=$(t),e=0;e<this.realSlides.length;e++)if(1===this.realSlides[e].$element.has(t).length)return this.realSlides[e];for(e=0;e<this.staticSlides.length;e++)if(1===this.staticSlides[e].$element.has(t).length)return this.staticSlides[e];return!1},SmartSliderAbstract.prototype.findSlideIndexByElement=function(t){t=this.findSlideByElement(t);return t||-1},SmartSliderAbstract.prototype.initMainAnimation=function(){this.mainAnimation=!1},SmartSliderAbstract.prototype.initResponsiveMode=function(){},SmartSliderAbstract.prototype.hasTouch=function(){return"0"!=this.parameters.controls.touch},SmartSliderAbstract.prototype.initControls=function(){if(!this.parameters.admin){if(this.hasTouch())switch(this.parameters.controls.touch){case"vertical":new N2Classes.SmartSliderControlTouchVertical(this);break;case"horizontal":new N2Classes.SmartSliderControlTouchHorizontal(this)}this.parameters.controls.keyboard&&(this.controls.touch!==undefined?new N2Classes.SmartSliderControlKeyboard(this,this.controls.touch.axis):new N2Classes.SmartSliderControlKeyboard(this,"horizontal")),this.parameters.controls.mousewheel&&new N2Classes.SmartSliderControlMouseWheel(this),this.controlAutoplay=new N2Classes.SmartSliderControlAutoplay(this,this.parameters.autoplay),this.controlFullscreen=new N2Classes.SmartSliderControlFullscreen(this),this.parameters.alias.id&&new N2Classes.SmartSliderControlAlias(this,this.parameters.alias)}},SmartSliderAbstract.prototype.getSlideIndex=function(t){return t},SmartSliderAbstract.prototype.slideToID=function(t,e,i){for(var s=0;s<this.realSlides.length;s++)if(this.realSlides[s].id===t)return this.slide(this.getSlideIndex(s),e,i);var n=$('[data-id="'+t+'"]').closest(".n2-ss-slider");return!(!n.length||this.id!==n.data("ss").id)||(n.length?($("html, body").animate({scrollTop:n.offset().top},400),n.data("ss").slideToID(t,e,!0)):void 0)},SmartSliderAbstract.prototype.slide=function(t,e,i){return 0<=t&&t<this.slides.length&&(e===undefined?this.parameters.carousel&&this.currentSlide.index===this.slides.length-1&&0===t?this.next(i):this.currentSlide.index>t?this.changeTo(t,!0,i):this.changeTo(t,!1,i):this.changeTo(t,!e,i))},SmartSliderAbstract.prototype.hide=function(){this.isVisible&&(this.responsive.alignElement.addClass("n2-ss-slider-has-no-slide"),this.load.$placeholder.addClass("n2-ss-slider-has-no-slide"),this.isVisible=!1)},SmartSliderAbstract.prototype.show=function(){this.isVisible||(this.responsive.alignElement.removeClass("n2-ss-slider-has-no-slide"),this.load.$placeholder.removeClass("n2-ss-slider-has-no-slide"),$(window).scroll(),this.isVisible=!0)},SmartSliderAbstract.prototype.startAutoplay=function(){return this.controlAutoplay!==undefined&&(this.controlAutoplay.setState("pausedSecondary",0),!0)},SmartSliderAbstract.prototype.pauseAutoplay=function(){return this.controlAutoplay!==undefined&&(this.controlAutoplay.setState("pausedSecondary",1),!0)},SmartSliderAbstract.prototype.getAnimationAxis=function(){return"horizontal"},SmartSliderAbstract.prototype.getDirectionPrevious=function(){return n2const.isRTL()&&"horizontal"===this.getAnimationAxis()?"next":"previous"},SmartSliderAbstract.prototype.getDirectionNext=function(){return n2const.isRTL()&&"horizontal"===this.getAnimationAxis()?"previous":"next"},SmartSliderAbstract.prototype.previousWithDirection=function(){return this[this.getDirectionPrevious()]()},SmartSliderAbstract.prototype.nextWithDirection=function(){return this[this.getDirectionNext()]()},SmartSliderAbstract.prototype.getUIPreviousSlide=function(t){return t.getPrevious()},SmartSliderAbstract.prototype.getUINextSlide=function(t){return t.getNext()},SmartSliderAbstract}),N2D("Stages",function(r,e){function t(){this.stages={}}function i(t){this.n=t,this.d=r.Deferred()}return t.prototype.get=function(t){return this.stages[t]===e&&(this.stages[t]=new i(t)),this.stages[t]},t.prototype.resolve=function(t){this.get(t).resolve()},t.prototype.done=function(t,e){var i;if("string"==typeof t)i=this.get(t);else{for(var s=[],n=0;n<t.length;n++)s.push(this.get(t[n]).getDeferred());i=r.when.apply(r,s)}i.done(e)},t.prototype.resolved=function(t){return this.get(t).resolved()},i.prototype.getDeferred=function(){return this.d},i.prototype.resolve=function(){this.resolved()||(this.d.resolve(),this.d=!0)},i.prototype.done=function(t){!0===this.d?t():this.d.done(t)},i.prototype.resolved=function(){return!0===this.d||"resolved"===this.d.state()},t}),N2D("SmartSliderWidget",function(t,e){"use strict";function i(t){this.slider=t,this.slider.started(this.register.bind(this))}return i.prototype.register=function(){this.slider.widgets.has(this.key)||(this.slider.widgets.register(this.key,this),this.onStart())},i.prototype.onStart=function(){},i.prototype.isVisible=function(){return this.$widget.is(":visible")},i.prototype.calculateDimensions=function(t){this.isVisible()?(t[this.key+"width"]=this.$widget.outerWidth(),t[this.key+"height"]=this.$widget.outerHeight()):(t[this.key+"width"]=0,t[this.key+"height"]=0)},i.prototype.filterSliderVerticalCSS=function(t){},i}),N2D("SmartSliderWidgets",function($,undefined){function SmartSliderWidgets(t){this.slider=t,this.sliderElement=t.sliderElement,this.controls={previous:undefined,next:undefined,bullet:undefined,autoplay:undefined,indicator:undefined,bar:undefined,thumbnail:undefined,shadow:undefined,fullscreen:undefined,html:undefined},this.excludedSlides={},this.states={hover:!1,nonCarouselFirst:!1,nonCarouselLast:!1,currentSlideIndex:-1,singleSlide:!1}}return SmartSliderWidgets.prototype.register=function(t,e){this.controls[t]=e},SmartSliderWidgets.prototype.has=function(t){return this.controls[t]!==undefined},SmartSliderWidgets.prototype.setState=function(t,e){if(this.states[t]!=e){this.states[t]=e;var i=t.split(".");switch(i[0]){case"hide":this.onStateChangeSingle(i[1]);break;case"nonCarouselFirst":this.onStateChangeSingle(this.slider.getDirectionPrevious());break;case"nonCarouselLast":this.onStateChangeSingle(this.slider.getDirectionNext());break;default:this.onStateChangeAll()}}},SmartSliderWidgets.prototype.onStateChangeAll=function(){for(var t in this.controls)this.onStateChangeSingle(t)},SmartSliderWidgets.prototype.onStateChangeSingle=function(t){var e,i;this.controls[t]&&(e=!0,this.controls[t].$widget.hasClass("n2-ss-widget-display-hover")&&(e=this.states.hover),e&&(t===this.slider.getDirectionPrevious()&&this.states.nonCarouselFirst||t===this.slider.getDirectionNext()&&this.states.nonCarouselLast)&&(e=!1),e&&(i=t+"-"+(this.states.currentSlideIndex+1),this.excludedSlides[i]&&(e=!1)),e&&this.states["hide."+t]!==undefined&&this.states["hide."+t]&&(e=!1),e&&this.states.singleSlide&&("previous"!==t&&"next"!==t&&"bullet"!==t&&"autoplay"!==t&&"indicator"!==t||(e=!1)),this.controls[t].$widget.toggleClass("n2-ss-widget-hidden",!e))},SmartSliderWidgets.prototype.onReady=function(){this.slider.sliderElement.on("visibleSlidesChanged",function(){this.setState("singleSlide",this.slider.visibleSlides.length<=1)}.bind(this)),this.setState("singleSlide",this.slider.visibleSlides.length<=1),this.$vertical=this.sliderElement.find('[data-position="above"],[data-position="below"]').not(".nextend-shadow");var t,e,i=!1;for(t in this.controls)if(this.controls[t]!==undefined){var s=this.controls[t].$widget.attr("data-exclude-slides");if(s!==undefined){for(var n=s.split(","),r=n.length-1;0<=r;r--){var o=n[r].split("-");if(2===o.length){var a=parseInt(o[0]),l=parseInt(o[1]);if(a<=l)for(var h=a;h<=l;h++)n.push(h)}else n[r]=parseInt(n[r])}if(0<n.length){for(r=0;r<n.length;r++)this.excludedSlides[t+"-"+n[r]]=!0;i=!0}}}i&&((e=function(t,e){this.setState("currentSlideIndex",e.index)}.bind(this))(null,this.slider.currentRealSlide),this.slider.sliderElement.on("SlideWillChange",e)),this.variableElements={top:this.sliderElement.find("[data-sstop]"),right:this.sliderElement.find("[data-ssright]"),bottom:this.sliderElement.find("[data-ssbottom]"),left:this.sliderElement.find("[data-ssleft]")},this.slider.responsive.addFilter("SliderVerticalCSS",this.filterSliderVerticalCSS.bind(this)),this.forceLayoutComposition(),this.onStateChangeAll(),this.slider.stages.resolve("WidgetsReady")},SmartSliderWidgets.prototype.calculateDimensions=function(){for(var t in this.controls)this.controls[t]!==undefined?this.controls[t].calculateDimensions(this.slider.responsive.resizeContext):(this.slider.responsive.resizeContext[t+"width"]=0,this.slider.responsive.resizeContext[t+"height"]=0)},SmartSliderWidgets.prototype.getDimensions=function(){this.calculateDimensions();var t=$.extend(!0,{},this.slider.responsive.resizeContext);return t.width=t.sliderWidth,t.height=t.sliderHeight,t.outerwidth=this.sliderElement.parent().width(),t.outerheight=this.sliderElement.parent().height(),t.canvaswidth=t.slideWidth,t.canvasheight=t.slideHeight,t.paneWidth!==undefined&&(t.panewidth=t.paneWidth),t.margintop=t.marginright=t.marginbottom=t.marginleft=0,t},SmartSliderWidgets.prototype.dimensionsToVariables=function(t){var e,i="";for(e in t){var s=t[e];"number"==typeof s&&(i+="var "+e+" = "+s+";")}return i},SmartSliderWidgets.prototype.forceLayoutComposition=function(){for(var t=this.filterSliderVerticalCSS([]),e=0;e<t.length;e++)t[e].flush()},SmartSliderWidgets.prototype.filterSliderVerticalCSS=function(cssData){var temp,dimensions=this.getDimensions(),k,k;for(k in this.dimensions=dimensions,this.controls)this.controls[k]!==undefined&&this.controls[k].filterSliderVerticalCSS(cssData);for(k in eval(this.dimensionsToVariables(dimensions)),this.variableElements)for(var i=0;i<this.variableElements[k].length;i++){var el=this.variableElements[k].eq(i);try{var value=eval(el.data("ss"+k)),temp={};temp[k]=value+"px",cssData.push(new N2Classes.CSSData(el,temp))}catch(e){console.log(el," position variable: "+e.message+": ",el.data("ss"+k))}}return cssData},SmartSliderWidgets}),N2D("SmartSliderMainAnimationAbstract",function(i,t){function s(t,e){this.state="ended",this.isTouch=!1,this.isReverseAllowed=!0,this.isReverseEnabled=!1,this.reverseSlideIndex=null,this.isNoAnimation=!1,this.slider=t,this.parameters=i.extend({duration:1500,ease:"easeInOutQuint"},e),this.parameters.duration/=1e3,this.sliderElement=t.sliderElement,this.timeline=new NextendTimeline({paused:!0}),this.sliderElement.on("mainAnimationStart",function(t,e,i,s){this._revertCurrentSlideIndex=i,this._revertNextSlideIndex=s}.bind(this)),this.slider.stages.done("ResponsiveStart",this.init.bind(this))}return s.prototype.init=function(){this.responsive=this.slider.responsive},s.prototype.enableReverseMode=function(){this.isReverseEnabled=!0,this.reverseTimeline=new NextendTimeline({paused:!0}),this.slider.trigger("reverseModeEnabled",this.reverseSlideIndex)},s.prototype.disableReverseMode=function(){this.isReverseEnabled=!1},s.prototype.setTouch=function(t){this.isTouch=t},s.prototype.setTouchProgress=function(t){"ended"!==this.state&&(this.isReverseEnabled?0===t?(this.reverseTimeline.progress(0),this.timeline.progress(t,!1)):0<=t&&t<=1?(this.reverseTimeline.progress(0),this.timeline.progress(t)):t<0&&-1<=t&&(this.timeline.progress(0),this.reverseTimeline.progress(Math.abs(t))):t<=0?this.timeline.progress(Math.max(t,1e-6),!1):0<=t&&t<=1&&this.timeline.progress(t))},s.prototype.setTouchEnd=function(t,e,i){"ended"!=this.state&&(this.isReverseEnabled?this._setTouchEndWithReverse(t,e,i):this._setTouchEnd(t,e,i))},s.prototype._setTouchEnd=function(t,e,i){t&&0<e?(this.fixTouchDuration(this.timeline,e,i),this.timeline.play()):(this.revertCB(this.timeline),this.fixTouchDuration(this.timeline,1-e,i),this.timeline.reverse(),this.willRevertTo(this._revertCurrentSlideIndex,this._revertNextSlideIndex))},s.prototype._setTouchEndWithReverse=function(t,e,i){t?e<0&&0<this.reverseTimeline.totalDuration()?(this.fixTouchDuration(this.reverseTimeline,e,i),this.reverseTimeline.play(),this.willRevertTo(this.reverseSlideIndex,this._revertNextSlideIndex)):(this.willCleanSlideIndex(this.reverseSlideIndex),this.fixTouchDuration(this.timeline,e,i),this.timeline.play()):(e<0?(this.revertCB(this.reverseTimeline),this.fixTouchDuration(this.reverseTimeline,1-e,i),this.reverseTimeline.reverse()):(this.revertCB(this.timeline),this.fixTouchDuration(this.timeline,1-e,i),this.timeline.reverse()),this.willCleanSlideIndex(this.reverseSlideIndex),this.willRevertTo(this._revertCurrentSlideIndex,this._revertNextSlideIndex))},s.prototype.fixTouchDuration=function(t,e,i){var s=t.totalDuration(),e=Math.max(s/3,Math.min(s,i/Math.abs(e)/1e3));e!==s&&t.totalDuration(e)},s.prototype.getState=function(){return this.state},s.prototype.timeScale=function(){return 0<arguments.length?(this.timeline.timeScale(arguments[0]),this):this.timeline.timeScale()},s.prototype.changeTo=function(e,i,t,s){this.slider.parameters.dynamicHeight&&this._dynamicHeightTimeline&&this._dynamicHeightTimeline.pause(),this._initAnimation(e,i,t),this.state="initAnimation",this.timeline.paused(!0),this.timeline.eventCallback("onStart",this.onChangeToStart,[e,i,s],this),this.timeline.eventCallback("onComplete",this.onChangeToComplete,[e,i,s],this),this.timeline.eventCallback("onReverseComplete",null),this.revertCB=function(t){t.eventCallback("onReverseComplete",this.onReverseChangeToComplete,[i,e,s],this)}.bind(this),this.isTouch||this.timeline.play()},s.prototype.willRevertTo=function(t,e){this.slider.trigger("mainAnimationWillRevertTo",[t,e]),this.sliderElement.one("mainAnimationComplete",this.revertTo.bind(this,t,e))},s.prototype.revertTo=function(t,e){this.slider.revertTo(t,e),this.slider.slides[e].triggerHandler("mainAnimationStartInCancel")},s.prototype.willCleanSlideIndex=function(t){this.sliderElement.one("mainAnimationComplete",this.cleanSlideIndex.bind(this,t))},s.prototype.cleanSlideIndex=function(){},s.prototype._initAnimation=function(t,e,i){this.slider.updateInsideSlides([t,e])},s.prototype.onChangeToStart=function(t,e,i){this.state="playing";i=[this,t.index,e.index,i];this.slider.trigger("mainAnimationStart",i),t.triggerHandler("mainAnimationStartOut",i),e.triggerHandler("mainAnimationStartIn",i)},s.prototype.onChangeToComplete=function(t,e,i){var s=[this,t.index,e.index,i];this.clearTimelines(),this.disableReverseMode(),t.triggerHandler("mainAnimationCompleteOut",s),e.triggerHandler("mainAnimationCompleteIn",s),this.state="ended",this.slider.parameters.dynamicHeight&&(this._dynamicHeightTimeline=new NextendTimeline,this.slider.responsive.resizeStage2HeightAnimated(this._dynamicHeightTimeline,e,.6),this._dynamicHeightTimeline.eventCallback("onComplete",function(){delete this._dynamicHeightTimeline},this)),this.slider.updateInsideSlides([e]),i||e.focus(),this.slider.trigger("mainAnimationComplete",s)},s.prototype.onReverseChangeToComplete=function(t,e,i){s.prototype.onChangeToComplete.apply(this,arguments)},s.prototype.clearTimelines=function(){this.revertCB=function(){},this.timeline.clear(),this.timeline.timeScale(1)},s.prototype.getEase=function(){return this.isTouch?"linear":this.parameters.ease},s}),N2D("SmartSliderControlAlias",function(s,e){"use strict";function t(t,e){var i="#"+t.elementID;this.elements={sliderSelector:i,$slider:s(i),$sliderAlign:s(i+"-align")},this.parameters=s.extend({slider:t,slideCount:t.slides.length,alias:s(i).data("alias"),href:window.location.href},e),this.parameters.anchor=this.getAnchor(),this.parameters.alias&&(this.createElement(this.parameters.alias),this.initSmoothScroll(),this.parameters.slideSwitch&&(this.switchOnLoad(),this.switchOnClick()))}return t.prototype.getAnchor=function(){var t={hasAnchor:0},e=window.location.hash.substr(1);return e&&(e===this.parameters.alias||this.parameters.slideSwitch&&-1<e.indexOf(this.parameters.alias)?t.hasAnchor=1:this.parameters.href=this.parameters.href.replace("#"+e,""),-1<e.indexOf("-")&&(e=e.split("-"),t.number=e[e.length-1])),t},t.prototype.switchOnLoad=function(){var t;this.createAnchorElements(),this.parameters.anchor.hasAnchor&&((t=this.parameters.anchor.number)===e&&this.parameters.slideSwitch&&(t=this.getParameterNumber()),null!==t&&(t--,window["ss"+this.parameters.slider.id]=t,N2R("windowLoad",function(t){this.smoothScrollTo(this.elements.$slider)}.bind(this))))},t.prototype.switchOnClick=function(){var i;N2R("windowLoad",function(){for(var t=1;t<this.parameters.slideCount+1;t++)i="#"+this.parameters.alias+"-"+t,s('a[href="'+i+'"]').on("click",function(t,e){this.switchToSlide(t-1),this.smoothScrollTo(s(i),e)}.bind(this,t))}.bind(this))},t.prototype.switchToSlide=function(i){N2R(this.elements.sliderSelector,function(t,e){e.slide(i)})},t.prototype.createAnchorElements=function(){if(this.parameters.scroll)for(var t=1;t<this.parameters.slideCount+1;t++)this.createElement(this.parameters.alias+"-"+t)},t.prototype.createElement=function(t){s("<div></div>").attr("id",t).css({height:0,lineHeight:0,minHeight:0,margin:0,padding:0}).insertBefore(this.elements.$sliderAlign)},t.prototype.initSmoothScroll=function(){N2R("windowLoad",function(e){var i="#"+this.parameters.alias;e("a[href='"+i+"']").on("click",function(t){this.smoothScrollTo(e(i),t,1)}.bind(this)),this.initAnchorSmoothScroll()}.bind(this))},t.prototype.initAnchorSmoothScroll=function(){this.parameters.anchor.hasAnchor&&this.smoothScrollTo(this.elements.$slider)},t.prototype.getParameterNumber=function(){var s={};return this.parameters.href.replace(/[?&]+([^=&]+)=([^&]*)/gi,function(t,e,i){s[e]=i}),s[this.parameters.alias]!==e?parseInt(s[this.parameters.alias]):null},t.prototype.smoothScrollTo=function(t,e,i){(!this.parameters.slideSwitch||this.parameters.scroll||i)&&this.parameters.smoothScroll&&(e&&e.preventDefault(),s("html, body").animate({scrollTop:t.offset().top},this.parameters.scrollSpeed))},t}),N2D("SmartSliderControlAutoplay",function(i,s){"use strict";function t(t,e){this.slider=t,this.state={enabled:1,paused:1,pausedSecondary:0,mainAnimationPlaying:0,wait:0},this.wait=new N2Classes.SmartSliderControlAutoplayWait(this),this._currentCount=1,this.autoplayToSlide=0,this.autoplayToSlideIndex=-1,this.parameters=i.extend({enabled:0,start:1,duration:8e3,autoplayLoop:0,allowReStart:0,pause:{mouse:"enter",click:!0,mediaStarted:!0},resume:{click:0,mouse:0,mediaEnded:!0},interval:1,intervalModifier:"loop",intervalSlide:"current"},e),this.clickHandled=!1,(t.controls.autoplay=this).parameters.enabled?(this.parameters.duration/=1e3,this.slider.visible(this.onReady.bind(this))):this.disable()}return t.prototype.preventClickHandle=function(){this.clickHandled=!0,setTimeout(function(){this.clickHandled=!1}.bind(this),300)},t.prototype.onReady=function(){this.timeline=NextendTween.to({_progress:0},this.getSlideDuration(this.slider.currentSlide.index),{_progress:1,paused:!0,onComplete:this.next.bind(this)}),this.slider.sliderElement.on({"BeforeCurrentSlideChange.autoplay":function(){this.wait.resolveWeak(),this.setState("mainAnimationPlaying",1)}.bind(this),"CurrentSlideChanged.autoplay":function(t,e){this.timeline.duration(this.getSlideDuration(e.index)),this.timeline.pause(0,!1),this.setState("mainAnimationPlaying",0)}.bind(this),"mainAnimationStart.autoplay":function(){this._currentCount++,this.wait.resolveWeak(),this.setState("mainAnimationPlaying",1)}.bind(this),"mainAnimationComplete.autoplay":function(t,e,i,s){this.timeline.duration(this.getSlideDuration(s)),this.timeline.pause(0,!1),this.setState("mainAnimationPlaying",0)}.bind(this),"autoplayPause.autoplay":function(){this.setState("paused",1)}.bind(this),"autoplayResume.autoplay":function(t,e){(this.state.paused||0===parseInt(this.parameters.start)&&0===parseInt(this.state.paused))&&(this._currentCount=1),this.setState("pausedSecondary",0),this.setState("paused",0),e!==s&&this.timeline.progress(e)}.bind(this)}),this.initClick(this.parameters.pause.click,this.parameters.resume.click),this.initHover(this.parameters.pause.mouse,this.parameters.resume.mouse),this.initMedia(this.parameters.pause.mediaStarted,this.parameters.resume.mediaEnded),this.slider.stages.resolve("AutoplayReady"),this.slider.trigger("autoplay",0),this.parameters.start||this.setState("pausedSecondary",1),this.setState("paused",0)},t.prototype.setState=function(t,e){this.state[t]!==e&&(this.state[t]=e,this.timeline!==s&&(!this.state.enabled||this.state.paused||this.state.pausedSecondary||this.state.wait||this.state.mainAnimationPlaying?(this.timeline.paused()||this.timeline.pause(),this.state.mainAnimationPlaying||this.isPaused!==s&&this.isPaused||(this.isPaused=!0,this.slider.trigger("autoplayPaused"))):(this.timeline.paused()&&this.timeline.play(),this.isPaused!==s&&!this.isPaused||(this.isPaused=!1,this.slider.trigger("autoplayStarted")))))},t.prototype.initClick=function(e,i){(e||i)&&this.slider.sliderElement.on("universalclick.autoplay",function(t){this.clickHandled||(this.state.pausedSecondary?i&&this.setState("pausedSecondary",0):e&&this.setState("pausedSecondary",1))}.bind(this))},t.prototype.initHover=function(e,i){var s;(e||i)&&(s=!1,this.slider.sliderElement.on({"touchend.autoplay":function(){s=!0,setTimeout(function(){s=!1},300)},"mouseenter.autoplay":function(t){this.state.pausedSecondary?"enter"===i&&this.setState("pausedSecondary",0):s||"enter"!==e||this.setState("pausedSecondary",1)}.bind(this),"mouseleave.autoplay":function(t){this.state.pausedSecondary?"leave"===i&&this.setState("pausedSecondary",0):"leave"===e&&this.setState("pausedSecondary",1)}.bind(this)}))},t.prototype.initMedia=function(t,e){var i=this.slider.sliderElement;t?i.on({"mediaStarted.autoplay":function(t,e){this.wait.add(e)}.bind(this),"mediaEnded.autoplay":function(t,e){this.wait.resolve(e)}.bind(this)}):e&&i.on({"mediaEnded.autoplay":function(){this.setState("pausedSecondary",0)}.bind(this)})},t.prototype.enableProgress=function(){this.timeline&&this.timeline.eventCallback("onUpdate",function(){this.slider.trigger("autoplay",this.timeline.progress())}.bind(this))},t.prototype.next=function(){if(this.timeline.pause(),!this.parameters.autoplayLoop){switch(this.parameters.intervalModifier){case"slide":this.slideSwitchingSlideCount();break;case"slideindex":this.slideSwitchingIndex();break;default:this.slideSwitchingLoop()}0<this.autoplayToSlide&&this._currentCount>=this.autoplayToSlide&&this.limitAutoplay(),0<=this.autoplayToSlideIndex&&this.slider.slides.length===this.slider.visibleSlides.length&&(this.autoplayToSlideIndex===this.slider.currentRealSlide.index+2||1===this.autoplayToSlideIndex&&this.slider.currentRealSlide.index+this.autoplayToSlideIndex===this.slider.slides.length)&&this.limitAutoplay()}this.slider.nextCarousel(!0)},t.prototype.slideSwitchingLoop=function(){this.autoplayToSlide=this.parameters.interval*this.slider.visibleSlides.length-1,"next"===this.parameters.intervalSlide&&this.autoplayToSlide++},t.prototype.slideSwitchingSlideCount=function(){this.autoplayToSlide=this.parameters.interval},t.prototype.slideSwitchingIndex=function(){var t=Math.max(1,this.parameters.interval);t>this.slider.slides.length&&(t=1),this.autoplayToSlideIndex=t},t.prototype.limitAutoplay=function(){this.parameters.allowReStart?(this._currentCount=0,this.setState("paused",1)):this.disable()},t.prototype.disable=function(){this.setState("enabled",0),this.slider.sliderElement.off(".autoplay"),this.slider.stages.resolve("AutoplayDestroyed")},t.prototype.getSlideDuration=function(t){var e=this.slider.realSlides[this.slider.getRealIndex(t)],t=e.minimumSlideDuration;return 0===parseInt(e.minimumSlideDuration)&&(t=this.parameters.duration),t},t}),N2D("SmartSliderControlFullscreen",function(s,t){"use strict";function e(t,e,i){this.slider=t,this.responsive=this.slider.responsive,this._type=this.responsive.parameters.type,this._forceFull=this.responsive.parameters.forceFull,this.forceFullpage="auto"==this._type||"fullwidth"==this._type||"fullpage"==this._type,this.forceFullpage&&(this._upscale=this.responsive.parameters.upscale),this.isFullScreen=!1,this.fullParent=this.slider.sliderElement.closest(".n2-ss-align"),this.browserSpecific={};t=this.slider.sliderElement[0];t.requestFullscreen?(this.browserSpecific.requestFullscreen="requestFullscreen",this.browserSpecific.event="fullscreenchange"):t.msRequestFullscreen?(this.browserSpecific.requestFullscreen="msRequestFullscreen",this.browserSpecific.event="MSFullscreenChange"):t.mozRequestFullScreen?(this.browserSpecific.requestFullscreen="mozRequestFullScreen",this.browserSpecific.event="mozfullscreenchange"):t.webkitRequestFullscreen?(this.browserSpecific.requestFullscreen="webkitRequestFullscreen",this.browserSpecific.event="webkitfullscreenchange"):(this.browserSpecific.requestFullscreen="nextendRequestFullscreen",this.browserSpecific.event="nextendfullscreenchange",this.fullParent[0][this.browserSpecific.requestFullscreen]=function(){this.fullParent.css({position:"fixed",left:0,top:0,width:"100%",height:"100%",backgroundColor:"#000",zIndex:1e6}),document.fullscreenElement=this.fullParent[0],this.triggerEvent(document,this.browserSpecific.event),s(window).trigger("resize")}.bind(this)),document.exitFullscreen?this.browserSpecific.exitFullscreen="exitFullscreen":document.msExitFullscreen?this.browserSpecific.exitFullscreen="msExitFullscreen":document.mozCancelFullScreen?this.browserSpecific.exitFullscreen="mozCancelFullScreen":document.webkitExitFullscreen?this.browserSpecific.exitFullscreen="webkitExitFullscreen":(this.browserSpecific.exitFullscreen="nextendExitFullscreen",this.fullParent[0][this.browserSpecific.exitFullscreen]=function(){this.fullParent.css({position:"",left:"",top:"",width:"",height:"",backgroundColor:"",zIndex:""}),document.fullscreenElement=null,this.triggerEvent(document,this.browserSpecific.event)}.bind(this)),document.addEventListener(this.browserSpecific.event,this.fullScreenChange.bind(this))}return e.prototype.switchState=function(){this.isFullScreen=!this.isFullScreen,this.isFullScreen?this._fullScreen():this._normalScreen()},e.prototype.requestFullscreen=function(){return!this.isFullScreen&&(this.isFullScreen=!0,this._fullScreen(),!0)},e.prototype.exitFullscreen=function(){return!!this.isFullScreen&&(this.isFullScreen=!1,this._normalScreen(),!0)},e.prototype.triggerEvent=function(t,e){var i;document.createEvent?(i=document.createEvent("HTMLEvents")).initEvent(e,!0,!0):document.createEventObject&&((i=document.createEventObject()).eventType=e),i.eventName=e,t.dispatchEvent?t.dispatchEvent(i):t.fireEvent&&htmlEvents["on"+e]?t.fireEvent("on"+i.eventType,i):t[e]?t[e]():t["on"+e]&&t["on"+e]()},e.prototype._fullScreen=function(){this.forceFullpage&&(this.responsive.isFullScreen=!0,this.responsive.parameters.type="fullpage",this.responsive.parameters.upscale=!0,this.responsive.parameters.forceFull=!1,this._marginLeft=this.responsive.containerElement[0].style.marginLeft,this.responsive.containerElement.css(n2const.rtl.marginLeft,0)),this.fullParent.css({width:"100%",height:"100%",backgroundColor:s("body").css("background-color")}).addClass("n2-ss-in-fullscreen"),this.fullParent.get(0)[this.browserSpecific.requestFullscreen]()},e.prototype._normalScreen=function(){document[this.browserSpecific.exitFullscreen]?document[this.browserSpecific.exitFullscreen]():this.fullParent[0][this.browserSpecific.exitFullscreen]&&this.fullParent[0][this.browserSpecific.exitFullscreen]()},e.prototype.fullScreenChange=function(){this.isDocumentInFullScreenMode()?(this.slider.trigger("n2FullScreen"),s("html").addClass("n2-in-fullscreen"),this.isFullScreen=!0,s(window).trigger("resize")):this.forceFullpage&&(this.responsive.isFullScreen=!1,this.responsive.parameters.type=this._type,this.responsive.parameters.upscale=this._upscale,this.responsive.parameters.forceFull=this._forceFull,this.responsive.containerElement.css(n2const.rtl.marginLeft,this._marginLeft),this.fullParent.css({width:"",height:"",backgroundColor:""}).removeClass("n2-ss-in-fullscreen"),s("html").removeClass("n2-in-fullscreen"),s(window).trigger("resize"),this.isFullScreen=!1,this.slider.trigger("n2ExitFullScreen"))},e.prototype.isDocumentInFullScreenMode=function(){return document.fullscreenElement&&null!==document.fullscreenElement||document.msFullscreenElement&&null!==document.msFullscreenElement||document.mozFullScreen||document.webkitIsFullScreen},e}),N2D("SmartSliderControlKeyboard",function(s,t){"use strict";var n;function r(){this.controls=[],document.addEventListener("keydown",this.onKeyDown.bind(this)),document.addEventListener("mousemove",this.onMouseMove.bind(this),{capture:!0})}function o(t,e,i){this.slider=t,this.parameters=s.extend({},i),this.parseEvent="vertical"===e?o.prototype.parseEventVertical:o.prototype.parseEventHorizontal,(n=n||new r).addControl(this),this.slider.sliderElement.on("SliderKeyDown",this.onKeyDown.bind(this)),t.controls.keyboard=this}return r.prototype.onMouseMove=function(t){this.mouseEvent=t},r.prototype.addControl=function(t){this.controls.push(t)},r.prototype.onKeyDown=function(t){var e;if(t.target.tagName.match(/BODY|DIV|IMG/)&&!t.target.isContentEditable)if(this.mouseEvent&&(e=this.findSlider(document.elementFromPoint(this.mouseEvent.clientX,this.mouseEvent.clientY))))e.trigger("SliderKeyDown",t);else if(document.activeElement!==document.body&&(e=this.findSlider(document.activeElement)))e.trigger("SliderKeyDown",t);else for(var i=0;i<this.controls.length;i++)this.controls[i].onKeyDown(!1,t)},r.prototype.findSlider=function(t){var t=s(t),t=t.hasClass("n2-ss-slider")?t:t.closest(".n2-ss-slider");return!!t.length&&t},o.prototype.isSliderOnScreen=function(){var t=this.slider.sliderElement.offset(),e=s(window).scrollTop(),i=this.slider.sliderElement.height();return t.top+.5*i>=e&&t.top-.5*i<=e+s(window).height()},o.prototype.onKeyDown=function(t,e){!e.defaultPrevented&&this.isSliderOnScreen()&&this.parseEvent.call(this,e)&&e.preventDefault()},o.prototype.parseEventHorizontal=function(t){switch(t.keyCode){case 39:return n2const.activeElementBlur(),this.slider[n2const.isRTL()?"previous":"next"](),!0;case 37:return n2const.activeElementBlur(),this.slider[n2const.isRTL()?"next":"previous"](),!0;default:return!1}},o.prototype.parseEventVertical=function(t){switch(t.keyCode){case 40:return this.slider.isChangeCarousel("next")&&this.slider.parameters.controls.blockCarouselInteraction?!1:(n2const.activeElementBlur(),this.slider.next(),!0);case 38:return this.slider.isChangeCarousel("previous")&&this.slider.parameters.controls.blockCarouselInteraction?!1:(n2const.activeElementBlur(),this.slider.previous(),!0);default:return!1}},o}),N2D("SmartSliderControlMouseWheel",function(s,t){"use strict";function e(t){this.preventScroll={local:!1,curve:!1,curveGlobal:!1,global:!1,localTimeout:!1,curveTimeout:!1,curveGlobalTimeout:!1,globalTimeout:!1},this.maxDelta=0,this.slider=t,document.addEventListener("wheel",this.onGlobalMouseWheel.bind(this),{passive:!1}),t.controls.mouseWheel=this}return e.prototype.hasScrollableParentRecursive=function(t,e){if(e===this.slider.sliderElement[0])return!1;if(e.scrollHeight>e.clientHeight){var i=s(e).css("overflow");if("hidden"!==i&&"visible"!==i)if(t){if(0<e.scrollTop)return!0}else if(e.scrollTop+e.clientHeight<e.scrollHeight)return!0}return this.hasScrollableParentRecursive(t,e.parentNode)},e.prototype.onGlobalMouseWheel=function(t){this.onCurveEvent(t),this.preventScroll.local||this.preventScroll.curve||Math.abs(t.deltaY)<this.maxDelta/2?t.preventDefault():(this.preventScroll.global&&t.preventDefault(),this.slider.sliderElement[0]!==t.target&&!s.contains(this.slider.sliderElement[0],t.target)||t.shiftKey||this.hasScrollableParentRecursive(t.deltaY<0,t.target)||this.onMouseWheel(t))},e.prototype.onMouseWheel=function(t){t.deltaY<0?this.slider.isChangeCarousel("previous")&&this.slider.parameters.controls.blockCarouselInteraction||(this.slider.previous(),t.preventDefault(),this.startCurveWatcher(t),this.local(),this.global()):this.slider.isChangeCarousel("next")&&this.slider.parameters.controls.blockCarouselInteraction||(this.slider.next(),t.preventDefault(),this.startCurveWatcher(t),this.local(),this.global())},e.prototype.startCurveWatcher=function(t){!1!==this.preventScroll.curve&&clearTimeout(this.preventScroll.curveTimeout),this.preventScroll.curveGlobal||(this.dynamicDelta=!1,this.lastDeltaY=t.deltaY,this.preventScroll.curveGlobal=!0,this.preventScroll.curveGlobalTimeout=setTimeout(s.proxy(function(){this.preventScroll.curveGlobal=!1,this.maxDelta=0},this),500)),this.preventScroll.curve=!0,this.preventScroll.curveTimeout=setTimeout(s.proxy(this.releaseCurveLock,this),5e3)},e.prototype.onCurveEvent=function(t){this.preventScroll.curveGlobal&&(this.dynamicDelta||this.lastDeltaY===t.deltaY||(this.lastDeltaY=t.deltaY,this.dynamicDelta=!0),t=Math.abs(t.deltaY),this.preventScroll.curve&&this.maxDelta/2>t&&this.releaseCurveLock(),this.maxDelta=Math.max(this.maxDelta,t),this.preventScroll.curveGlobalTimeout&&clearTimeout(this.preventScroll.curveGlobalTimeout),this.preventScroll.curveGlobalTimeout=setTimeout(s.proxy(function(){this.preventScroll.curveGlobal=!1,this.maxDelta=0},this),500))},e.prototype.releaseCurveLock=function(){this.preventScroll.curve=!1,clearTimeout(this.preventScroll.curveTimeout)},e.prototype.local=function(){!1!==this.preventScroll.local&&clearTimeout(this.preventScroll.localTimeout),this.preventScroll.local=!0,this.preventScroll.localTimeout=setTimeout(function(){this.preventScroll.local=!1,this.dynamicDelta||this.releaseCurveLock()}.bind(this),1e3)},e.prototype.global=function(){!1!==this.preventScroll.global&&clearTimeout(this.preventScroll.globalTimeout),this.preventScroll.global=!0,this.preventScroll.globalTimeout=setTimeout(function(){this.preventScroll.global=!1}.bind(this),2e3)},e}),N2D("SmartSliderControlTouch",function(e,t){"use strict";function i(t){this.slider=t,this.minDistance=10,this.interactiveDrag=!0,this.preventMultipleTap=!1,this._animation=t.mainAnimation,this.swipeElement=this.slider.sliderElement.find("> .n2_ss__touch_element"),this.$window=e(window),t.controls.touch=this,t.stages.done("StarterSlide",this.onStarterSlide.bind(this)),t.sliderElement.on("visibleSlidesChanged",this.onVisibleSlidesChanged.bind(this))}return i.prototype.onStarterSlide=function(){-1<navigator.userAgent.toLowerCase().indexOf("android")&&"1"!==this.swipeElement.parent().css("opacity")?this.swipeElement.parent().one("transitionend",this.initTouch.bind(this)):this.initTouch(),this.slider.sliderElement.on("sliderChangeCurrentSlide",this.updatePanDirections.bind(this))},i.prototype.onVisibleSlidesChanged=function(){this.swipeElement.toggleClass("n2-grab",1<this.slider.visibleSlides.length)},i.prototype.initTouch=function(){this._animation.isNoAnimation&&(this.interactiveDrag=!1),this.eventBurrito=N2Classes.EventBurrito(this.swipeElement.get(0),{mouse:!0,axis:"horizontal"===this.axis?"x":"y",start:this._start.bind(this),move:this._move.bind(this),end:this._end.bind(this)}),this.updatePanDirections(),this.cancelKineticScroll=function(){this.kineticScrollCancelled=!0}.bind(this)},i.prototype._start=function(t){this.currentInteraction={type:"pointerdown"===t.type?"pointer":"touchstart"===t.type?"touch":"mouse",state:e.extend({},this.state),action:"unknown",distance:[],distanceY:[],percent:0,progress:0,scrollTop:this.$window.scrollTop(),animationStartDirection:"unknown",hadDirection:!1},this.logDistance(0,0)},i.prototype._move=function(t,e,i,s){if(!s||"unknown"!==this.currentInteraction.action){this.currentInteraction.direction=this.measure(i);s=this.get(i);if((this.currentInteraction.hadDirection||Math.abs(s)>this.minDistance||Math.abs(i.y)>this.minDistance)&&(this.logDistance(s,i.y),this.currentInteraction.percent<1&&this.setTouchProgress(s,i.y),"touch"===this.currentInteraction.type&&t.cancelable&&("switch"!==this.currentInteraction.action&&"hold"!==this.currentInteraction.action||(this.currentInteraction.hadDirection=!0))),"switch"===this.currentInteraction.action)return!0}return!1},i.prototype._end=function(t,e,i,s){"switch"===this.currentInteraction.action&&(s=s?0:this.measureRealDirection(),this.interactiveDrag?(this._animation.timeline.progress()<1&&this._animation.setTouchEnd(s,this.currentInteraction.progress,i.time),this._animation.setTouch(!1)):s&&this.callAction(this.currentInteraction.animationStartDirection),this.swipeElement.removeClass("n2-grabbing")),this.onEnd(),delete this.currentInteraction,Math.abs(i.x)<10&&Math.abs(i.y)<10?this.onTap(t):nextend.preventClick()},i.prototype.onEnd=function(){var t,e,i,s,n;"scroll"===this.currentInteraction.action&&"pointer"===this.currentInteraction.type&&(t=this.currentInteraction.distanceY[0],e=this.currentInteraction.distanceY[this.currentInteraction.distanceY.length-1],i=(t.d-e.d)/(e.t-t.t)*10,s=Date.now(),n=function(){requestAnimationFrame(function(){var t;if(!this.kineticScrollCancelled&&i&&(t=Date.now()-s,1<(t=i*Math.exp(-t/325))||t<-1))return this.$window.scrollTop(this.$window.scrollTop()+t),void n();this.onEndKineticScroll()}.bind(this))}.bind(this),this.kineticScrollCancelled=!1,n(),document.addEventListener("pointerdown",this.cancelKineticScroll))},i.prototype.onEndKineticScroll=function(){delete this.kineticScrollCancelled,document.removeEventListener("pointerdown",this.cancelKineticScroll),e("html").css("scroll-behavior","")},i.prototype.setTouchProgress=function(t,e){this.recognizeSwitchInteraction();var i,s=this.getPercent(t);if(this.currentInteraction.percent=s,"switch"===this.currentInteraction.action){if(this.interactiveDrag){switch(this.currentInteraction.animationStartDirection){case"up":i=-1*s;break;case"down":i=s;break;case"left":i=-1*s;break;case"right":i=s}this.currentInteraction.progress=i,this._animation.setTouchProgress(i)}}else"unknown"!==this.currentInteraction.action&&"scroll"!==this.currentInteraction.action||this.startScrollInteraction(e)},i.prototype.startScrollInteraction=function(t){"vertical"!==this.axis&&!n2const.isEdge||this.slider.controlFullscreen.isFullScreen||(this.currentInteraction.action="scroll","pointer"===this.currentInteraction.type&&(e("html").css("scroll-behavior","auto"),this.$window.scrollTop(Math.max(0,this.currentInteraction.scrollTop-t))))},i.prototype.recognizeSwitchInteraction=function(){var t;"unknown"===this.currentInteraction.action&&1<this.slider.visibleSlides.length&&("ended"===this._animation.state?"unknown"!==(t=this.currentInteraction.direction)&&this.currentInteraction.state[t]&&(this.currentInteraction.animationStartDirection=t,this.interactiveDrag&&(this._animation.setTouch(this.axis),this.callAction(t,!1)),this.currentInteraction.action="switch",this.swipeElement.addClass("n2-grabbing")):"playing"===this._animation.state&&(this.currentInteraction.action="hold"))},i.prototype.logDistance=function(t,e){3<this.currentInteraction.distance.length&&(this.currentInteraction.distance.shift(),this.currentInteraction.distanceY.shift()),this.currentInteraction.distance.push({d:t,t:Date.now()}),this.currentInteraction.distanceY.push({d:e,t:Date.now()})},i.prototype.measureRealDirection=function(){var t=this.currentInteraction.distance[0],e=this.currentInteraction.distance[this.currentInteraction.distance.length-1];return 0<=e.d&&t.d>e.d||e.d<0&&t.d<e.d?0:1},i.prototype.onTap=function(t){this.preventMultipleTap||(e(t.target).trigger("n2click"),this.preventMultipleTap=!0,setTimeout(function(){this.preventMultipleTap=!1}.bind(this),500))},i.prototype.updatePanDirections=function(){},i.prototype.setState=function(t,e){"object"!=typeof arguments[0]&&((t={})[arguments[0]]=arguments[1],e=arguments[2]);var i,s=!1;for(i in t)this.state[i]!==t[i]&&(this.state[i]=t[i],s=!0);s&&e&&this.eventBurrito.supportsPointerEvents&&this.syncTouchAction()},i}),N2D("SmartSliderControlTouchHorizontal","SmartSliderControlTouch",function(t,e){"use strict";function i(){this.state={left:!1,right:!1},this.axis="horizontal",N2Classes.SmartSliderControlTouch.prototype.constructor.apply(this,arguments)}return((i.prototype=Object.create(N2Classes.SmartSliderControlTouch.prototype)).constructor=i).prototype.callAction=function(t,e){switch(t){case"left":return this.slider[n2const.isRTL()?"previous":"next"].call(this.slider,e);case"right":return this.slider[n2const.isRTL()?"next":"previous"].call(this.slider,e)}return!1},i.prototype.measure=function(t){return!this.currentInteraction.hadDirection&&Math.abs(t.x)<10||0===t.x||Math.abs(t.x)<Math.abs(t.y)?"unknown":t.x<0?"left":"right"},i.prototype.get=function(t){return t.x},i.prototype.getPercent=function(t){return Math.max(-.99999,Math.min(.99999,t/this.slider.responsive.resizeContext.sliderWidth))},i.prototype.updatePanDirections=function(){var t=this.slider.currentSlide.index,e=t+1<this.slider.slides.length,t=0<=t-1;this.slider.parameters.carousel&&(t=e=!0),n2const.isRTL()&&"vertical"!==this.slider.getAnimationAxis()?this.setState({right:e,left:t},!0):this.setState({right:t,left:e},!0)},i.prototype.syncTouchAction=function(){var t={"pan-y":!1,none:!1};n2const.isEdge?t.none=!0:(this.state.left&&(t["pan-y"]=!0),this.state.right&&(t["pan-y"]=!0));var e,i=[];for(e in t)t[e]&&i.push(e);this.swipeElement.css("touch-action",i.join(" ")),window.PointerEventsPolyfill&&this.swipeElement.attr("touch-action",i.join(" "))},i}),N2D("SmartSliderControlTouchVertical","SmartSliderControlTouch",function(t,e){"use strict";function i(){this.state={up:!1,down:!1},this.action={up:"next",down:"previous"},this.axis="vertical",N2Classes.SmartSliderControlTouch.prototype.constructor.apply(this,arguments)}return((i.prototype=Object.create(N2Classes.SmartSliderControlTouch.prototype)).constructor=i).prototype.callAction=function(t,e){switch(t){case"up":return this.slider.next.call(this.slider,e);case"down":return this.slider.previous.call(this.slider,e)}return!1},i.prototype.measure=function(t){return!this.currentInteraction.hadDirection&&Math.abs(t.y)<1||0==t.y||Math.abs(t.y)<Math.abs(t.x)?"unknown":t.y<0?"up":"down"},i.prototype.get=function(t){return t.y},i.prototype.getPercent=function(t){return Math.max(-.99999,Math.min(.99999,t/this.slider.responsive.resizeContext.sliderHeight))},i.prototype.updatePanDirections=function(){this.setState({down:!this.slider.isChangeCarousel("previous")||!this.slider.parameters.controls.blockCarouselInteraction,up:!this.slider.isChangeCarousel("next")||!this.slider.parameters.controls.blockCarouselInteraction},!0)},i.prototype.syncTouchAction=function(){var t={"pan-x":!1,none:!1};n2const.isEdge?t.none=!0:(this.state.up&&(t["pan-x"]=!0),this.state.down&&(t["pan-x"]=!0));var e,i=[];for(e in t)t[e]&&i.push(e);this.swipeElement.css("touch-action",i.join(" ")),window.PointerEventsPolyfill&&this.swipeElement.attr("touch-action",i.join(" "))},i.prototype._start=function(t){this.slider.blockCarousel=!0,N2Classes.SmartSliderControlTouch.prototype._start.apply(this,arguments)},i.prototype.onEnd=function(t){N2Classes.SmartSliderControlTouch.prototype.onEnd.apply(this,arguments),this.slider.blockCarousel=!1},i}),N2D("SmartSliderControlAutoplayWait",function(t,e){"use strict";function i(t){this.autoplay=t,this.waits={}}return i.Strong=["lightbox"],i.prototype.add=function(t){this.waits[t]=1,this._refresh()},i.prototype.resolve=function(t){delete this.waits[t],this._refresh()},i.prototype.resolveWeak=function(){var t,e={};for(t in this.waits)1===this.waits[t]&&-1!==i.Strong.indexOf(t)&&(e[t]=1);this.waits=e,this._refresh()},i.prototype.resolveAll=function(){this.waits={},this._refresh()},i.prototype._refresh=function(){var t,e=!1;for(t in this.waits)if(this.waits[t]){e=!0;break}this.autoplay.setState("wait",e)},i}),N2D("SmartSliderSlideBackgroundColor",function(t,e){function i(t,e){this.$el=e}return i.prototype.getLoadedDeferred=function(){return!0},i}),N2D("SmartSliderSlideBackgroundImage",function(n,i){function t(t,e,i,s){this.loadStarted=!1,this.loadAllowed=!1,this.slide=t,this.manager=e,this.background=i,this.deferred=n.Deferred(),this.$background=s,this.blur=s.data("blur"),"blurfit"===i.mode&&(window.n2FilterProperty?(this.$background=this.$background.add(this.$background.clone().insertAfter(this.$background)),this.$background.first().css({margin:"-14px",padding:"14px"}).css(window.n2FilterProperty,"blur(7px)")):(i.element.attr("data-mode","fill"),i.mode="fill")),window.n2FilterProperty&&(0<this.blur?this.$background.last().css({margin:"-"+2*this.blur+"px",padding:2*this.blur+"px"}).css(window.n2FilterProperty,"blur("+this.blur+"px)"):this.$background.last().css({margin:"",padding:""}).css(window.n2FilterProperty,"")),n2const.isWaybackMachine()?this.mobileSrc=this.tabletSrc=this.desktopSrc=s.data("desktop"):(this.desktopSrc=s.data("desktop")||"",this.tabletSrc=s.data("tablet")||"",this.mobileSrc=s.data("mobile")||"",n2const.isRetina&&((i=s.data("desktop-retina"))&&(this.desktopSrc=i),(i=s.data("tablet-retina"))&&(this.tabletSrc=i),(i=s.data("mobile-retina"))&&(this.mobileSrc=i)))}return t.prototype.getLoadedDeferred=function(){return this.deferred},t.prototype.preLoad=function(){this.loadAllowed=!0,this.manager.deviceDeferred.done(function(){this.updateBackgroundToDevice(this.manager.device),this.waitForImage()}.bind(this))},t.prototype.waitForImage=function(){this.$background.n2imagesLoaded({background:!0},function(t){if(0<t.images.length){t=t.images[0].img;switch(this.width=t.naturalWidth,this.height=t.naturalHeight,this.background.mode){case"tile":case"center":1<n2const.devicePixelRatio&&this.$background.css("background-size",this.width/n2const.devicePixelRatio+"px "+this.height/n2const.devicePixelRatio+"px")}this.deferred.resolve()}else setTimeout(this.waitForImage.bind(this),100)}.bind(this))},t.prototype.updateBackgroundToDevice=function(t){var e=this.desktopSrc;"mobilePortrait"===t||"mobileLandscape"===t?this.mobileSrc?e=this.mobileSrc:this.tabletSrc&&(e=this.tabletSrc):"tabletPortrait"!==t&&"tabletLandscape"!==t||this.tabletSrc&&(e=this.tabletSrc),e?this.setSrc(e):this.setSrc("")},t.prototype.setSrc=function(t){var e;this.loadAllowed&&t!==this.currentSrc&&(""===t?this.$background.css("background-image",""):this.$background.css("background-image",'url("'+t+'")'),this.currentSrc=t,this.$seo!==i&&(this.$seo.remove(),delete this.$seo),(e=this.$background.data("alt"))&&(e={alt:e,src:t},(t=this.$background.data("title"))&&(e.title=t),this.$seo=n('<img style="display:none;">').attr(e).appendTo(this.$background)))},t.prototype.fadeOut=function(){NextendTween.to(this.$background,.3,{opacity:0})},t}),N2D("SmartSliderSlideBackground",function(o,t){function e(t,e,i){var s;this.loadStarted=!1,this.types=this.types||{color:"SmartSliderSlideBackgroundColor",image:"SmartSliderSlideBackgroundImage",video:"SmartSliderSlideBackgroundVideo"},this.width=0,this.height=0,this.slide=t,this.element=e,t.slider.needBackgroundWrap?(s=e.find("> *"),this.$wrapElement=o('<div class="n2-ss-slide-background-wrap n2-ow"></div>').appendTo(e).append(s)):this.$wrapElement=this.element,this.manager=i,this.loadDeferred=o.Deferred(),this.elements={color:!1,image:!1,video:!1},this.currentSrc="",this.mode=e.data("mode"),this.opacity=e.data("opacity");e=this.element.find(".n2-ss-slide-background-image");e.length&&(this.elements.image=new N2Classes[this.types.image](t,i,this,e));e=this.element.find(".n2-ss-slide-background-color");e.length&&(this.elements.color=new N2Classes[this.types.color](this,e));var n,r=[];for(n in this.elements)this.elements[n]&&r.push(this.elements[n].getLoadedDeferred());o.when.apply(o,r).then(function(){this.loadDeferred.resolve()}.bind(this))}return e.prototype.preLoad=function(){return this.loadStarted||(this.slide.$element.find("[data-lazysrc]").each(function(){var t=o(this);t.attr("src",t.data("lazysrc"))}),this.loadStarted=!0),"pending"===this.loadDeferred.state()&&this.elements.image&&this.elements.image.preLoad(),this.loadDeferred},e.prototype.fadeOut=function(){this.elements.image&&this.elements.image.fadeOut()},e.prototype.hack=function(){NextendTween.set(this.element,{rotation:1e-4})},e.prototype.hasColor=function(){return this.elements.color},e.prototype.hasImage=function(){return this.elements.image},e.prototype.hasVideo=function(){return this.elements.video},e.prototype.hasBackground=function(){return this.elements.color||this.elements.image||this.elements.video},e.prototype.updateBackgroundToDevice=function(t){this.hasImage()&&this.elements.image.updateBackgroundToDevice(t)},e}),N2D("FrontendComponentCommon",["FrontendComponent"],function(s,n){function t(t,e,i,s){this.wraps={},N2Classes.FrontendComponent.prototype.constructor.apply(this,arguments)}return((t.prototype=Object.create(N2Classes.FrontendComponent.prototype)).constructor=t).prototype.init=function(t){this.stateCBs=[],this.state={InComplete:!1};var e=this.$layer.find("> .n2-ss-layer-mask");e.length&&(this.wraps.mask=e);e=this.$layer.find("> .n2-ss-layer-parallax");switch(e.length&&(this.wraps.parallax=e),this.$layer.data("pm")){case"absolute":this.placement=new N2Classes.FrontendPlacementAbsolute(this);break;case"normal":this.placement=new N2Classes.FrontendPlacementNormal(this);break;case"content":this.placement=new N2Classes.FrontendPlacementContent(this);break;default:this.placement=new N2Classes.FrontendPlacementDefault(this)}this.parallax=this.$layer.data("parallax"),this.baseSize=this.baseSize||100,this.isAdaptiveFont=this.isAdaptiveFont||this.parent.isAdaptiveFont||this.get("adaptivefont"),this.refreshBaseSize(this.getDevice("fontsize",100)),N2Classes.FrontendComponent.prototype.init.call(this,t)},t.prototype.setState=function(t,e){this.state[t]=e;for(var i=0;i<this.stateCBs.length;i++)this.stateCBs[i].call(this,this.state)},t.prototype.addStateCallback=function(t){this.stateCBs.push(t),t.call(this,this.state)},t.prototype.refreshBaseSize=function(t){this.isAdaptiveFont?this.baseSize=16*t/100:this.baseSize=this.parent.baseSize*t/100},t.prototype.start=function(){this.placement.start(),N2Classes.FrontendComponent.prototype.start.call(this);var t,e=this.get("rotation")||0;e/360!=0&&(t=this.addWrap("rotation","<div class='n2-ss-layer-rotation'></div>"),NextendTween.set(t[0],{rotationZ:e}))},t.prototype.onDeviceChange=function(t){N2Classes.FrontendComponent.prototype.onDeviceChange.call(this,t);var e=this.isVisible;if(this.isVisible=this.getDevice("")&&this.parent.isVisible,this.isVisible===n&&(this.isVisible=1),e&&!this.isVisible?(this.$layer.data("shows",0),this.$layer.css("display","none"),this.$layer.triggerHandler("visibilityChange",[0])):!e&&this.isVisible&&(this.$layer.data("shows",1),this.$layer.css("display",""),this.$layer.triggerHandler("visibilityChange",[1])),this.isVisible){e=this.getDevice("fontsize",100);this.refreshBaseSize(e),!this.parent.isAdaptiveFont&&this.isAdaptiveFont?this.$layer.css("font-size",N2Classes.FontSize.toRem(16*e/100)):this.$layer.css("font-size",e+"%");for(var i=0;i<this.children.length;i++)this.children[i].onDeviceChange(t);this.placement.onDeviceChange(t),this.onAfterDeviceChange(t)}else for(i=0;i<this.children.length;i++)this.children[i].onDeviceChange(t)},t.prototype.onAfterDeviceChange=function(t){},t.prototype.onResize=function(t,e){var i;(this.isVisible||this.placement.alwaysResize)&&(!this.parent.isAdaptiveFont&&this.isAdaptiveFont&&(i=this.getDevice("fontsize",100),this.$layer.css("font-size",N2Classes.FontSize.toRem(16*i/100))),N2Classes.FrontendComponent.prototype.onResize.apply(this,arguments),this.placement.onResize(t,e))},t.prototype.hasLayerAnimation=function(){return this.animationManager!==n},t.prototype.addWrap=function(t,e){var i;return this.wraps[t]===n&&(i=s(e),"rotation"===t&&(this.wraps.mask!==n?i.appendTo(this.wraps.mask):this.wraps.parallax!==n?i.appendTo(this.wraps.parallax):i.appendTo(this.$layer),i.append(this.getContents())),this.wraps[t]=i),i},t.prototype.getContents=function(){return!1},t}),N2D("FrontendComponent",function(t,s){function e(t,e,i,s){this.device="",this.children=[],this.slide=t,this.parent=e,this.$layer=i.data("layer",this),this.isVisible=!0,this.init(s)}return e.prototype.init=function(t){if(t)for(var e=0;e<t.length;e++)switch(t.eq(e).data("sstype")){case"content":this.children.push(new N2Classes.FrontendComponentContent(this.slide,this,t.eq(e)));break;case"row":this.children.push(new N2Classes.FrontendComponentRow(this.slide,this,t.eq(e)));break;case"col":this.children.push(new N2Classes.FrontendComponentCol(this.slide,this,t.eq(e)));break;default:this.children.push(new N2Classes.FrontendComponentLayer(this.slide,this,t.eq(e)))}},e.prototype.start=function(){for(var t=0;t<this.children.length;t++)this.children[t].start()},e.prototype.onDeviceChange=function(t){this.device=t},e.prototype.onResize=function(t,e){for(var i=0;i<this.children.length;i++)this.children[i].onResize(t,e)},e.prototype.getDevice=function(t,e){var i=this.$layer.data(this.device+t);return i!==s?i:"desktopportrait"!==this.device?this.$layer.data("desktopportrait"+t):e!==s?e:0},e.prototype.get=function(t){return this.$layer.data(t)},e}),N2D("FrontendSlideControls",function(t,e){function i(t,e){this.slider=t,this.$element=e.data("slide",this),this.status=new N2Classes.SlideStatus}return i.prototype.isCurrentlyEdited=function(){return this._isCurrentlyEdited},i.prototype.is=function(t){return this===t},i.prototype.triggerHandler=function(){return this.$element.triggerHandler.apply(this.$element,arguments)},i.prototype.isVisibleWhen=function(t){return!0},i.prototype.isActiveWhen=function(t){return!0},i.prototype.isStatic=function(){return!1},i}),N2D("FrontendPlacement",function(t,e){function i(t){this.layer=t,this.alwaysResize=!1,this.linked=[]}return i.prototype.start=function(){},i.prototype.onDeviceChange=function(t){},i.prototype.onResize=function(t,e){for(var i=0;i<this.linked.length;i++)this.linked[i].onResizeLinked(t,e)},i.prototype.addLinked=function(t){this.linked.push(t),this.alwaysResize=!0},i}),N2D("FrontendSliderSlide",["FrontendSliderSlideAbstract"],function(s,t){function e(t,e,i){this.slides=[this],this.playCount=0,N2Classes.FrontendSliderSlideAbstract.prototype.constructor.apply(this,arguments),this.id=this.$element.data("id"),this.$slideFocus=s('<div tabindex="-1" class="n2-ss-slide--focus"></div>').prependTo(this.$element),this.$focusableElements=this.$element.find('a[href]:not([href=""]),link,button,input:not([type="hidden"]),select,textarea,audio[controls],video[controls],[tabindex]:not([tabindex="-1"])'),this.disableFocus(),this.background=!1,t.parameters.admin?this.minimumSlideDuration=0:(this.minimumSlideDuration=e.data("slide-duration"),s.isNumeric(this.minimumSlideDuration)||(this.minimumSlideDuration=0)),this._isCurrentlyEdited=this.slider.parameters.admin&&this.$element.hasClass("n2-ss-currently-edited-slide"),this.isCurrentlyEdited()?(this.$layer=e.find('.n2-ss-layer[data-sstype="slide"]'),t.sliderElement.on({SliderDeviceOrientation:function(){this.slider.visibleRealSlides.push(this),this.isVisible=!0,this.slider.responsive.visibleRealSlidesChanged=!0,this.triggerHandler("Visible")}.bind(this)})):(this.component=new N2Classes.FrontendComponentSectionSlide(this,t,e.find('.n2-ss-layer[data-sstype="slide"]')),this.$layer=this.component.$layer)}var i=!(((e.prototype=Object.create(N2Classes.FrontendSliderSlideAbstract.prototype)).constructor=e).prototype._setInside=function(t){this.isInside!==t&&(this.isInside=t)});try{document.createElement("div").focus(Object.defineProperty({},"preventScroll",{get:function(){i=!0}}))}catch(t){}return e.prototype.focus=function(){i&&this.$slideFocus[0].focus({preventScroll:!0})},e.prototype.allowFocus=function(){this.$focusableElements.attr("tabindex","0"),this.$element.removeAttr("aria-hidden")},e.prototype.disableFocus=function(){this.$focusableElements.attr("tabindex","-1"),this.$element.attr("aria-hidden",!0)},e.prototype.init=function(){var t=this.slider.findSlideBackground(this);0<t.length&&(this.slider.isAdmin?this.background=new N2Classes.SmartSliderSlideBackgroundAdmin(this,t,this.slider.backgrounds):this.background=new N2Classes.SmartSliderSlideBackground(this,t,this.slider.backgrounds)),this.$element.data("slideBackground",this.background)},e.prototype.onDeviceChange=function(t){this.$element.data("hide-"+t)?!1!==this.isVisible&&(this.isVisible=!1,this.slider.responsive.visibleRealSlidesChanged=!0,this.triggerHandler("Hidden")):(this.slider.visibleRealSlides.push(this),!0!==this.isVisible&&(this.isVisible=!0,this.slider.responsive.visibleRealSlidesChanged=!0,this.triggerHandler("Visible")))},e.prototype.hasLayers=function(){return 0<this.component.children.length},e.prototype.hasBackgroundVideo=function(){return this.background.hasVideo()},e.prototype.getThumbnailType=function(){return this.$element.data("thumbnail-type")},e.prototype.hasLink=function(){return!!this.$element.data("haslink")},e}),N2D("FrontendSliderSlideAbstract",["FrontendSlideControls"],function(i,t){function e(t,e,i){N2Classes.FrontendSlideControls.prototype.constructor.call(this,t,e),this.slides=this.slides||[],(this.group=this).originalIndex=i,this.index=i,this.localIndex=i,this.groupIndex=0,this.isVisible=!0,this.isInside=-1}for(var s in N2Classes.FrontendSlideControls.prototype)e.prototype[s]=N2Classes.FrontendSlideControls.prototype[s];return e.prototype.setIndex=function(t){for(var e=0;e<this.slides.length;e++)this.slides[e]._setIndex(t)},e.prototype._setIndex=function(t){this.localIndex=this.index=t},e.prototype.preLoad=function(){for(var t=[],e=0;e<this.slides.length;e++)t.push(this.slides[e]._preLoad());return i.when.apply(i,t)},e.prototype._preLoad=function(){return!this.background||this.background.preLoad()},e.prototype.setPrevious=function(t){this.previousSlide=t},e.prototype.getPrevious=function(){for(var t=this;t=t.previousSlide,t&&t!==this&&!t.isVisible;);return t},e.prototype.setNext=function(t){(this.nextSlide=t)&&t.setPrevious(this)},e.prototype.getNext=function(){for(var t=this;t=t.nextSlide,t&&t!==this&&!t.isVisible;);return t},e.prototype.getTitle=function(){return this.slides[0].$element.data("title")},e.prototype.getDescription=function(){return this.slides[0].$element.data("description")},e.prototype.getThumbnail=function(){return this.slides[0].$element.data("thumbnail")},e.prototype.hasLink=function(){return!1},e.prototype.setActive=function(){this.allowFocus(),this.$element.addClass("n2-ss-slide-active")},e.prototype.unsetActive=function(){this.disableFocus(),this.$element.removeClass("n2-ss-slide-active")},e.prototype.setInside=function(t){for(var e=0;e<this.slides.length;e++)this.slides[e]._setInside(t)},e.prototype._setInside=function(t){},e.prototype.focus=function(){},e.prototype.allowFocus=function(){},e.prototype.disableFocus=function(){},e.prototype.isVisibleWhen=function(t){return-1!==this.slider.getVisibleSlides(t).indexOf(this)},e.prototype.isActiveWhen=function(t){return-1!==this.slider.getActiveSlides(t).indexOf(this)},e}),N2D("SlideStatus",function(t,e){var i={NOT_INITIALIZED:-1,INITIALIZED:0,READY_TO_START:1,PLAYING:2,ENDED:3,SUSPENDED:4};function s(){this.status=i.NOT_INITIALIZED}return s.prototype.set=function(t){this.status=i[t]},s.prototype.is=function(t){return this.status===i[t]},s}),N2D("FrontendSliderStaticSlide",["FrontendSlideControls"],function(t,e){function i(t,e){N2Classes.FrontendSlideControls.prototype.constructor.call(this,t,e),this.slides=[this],this.isVisible=!0,this._isCurrentlyEdited=this.slider.parameters.admin&&this.$element.hasClass("n2-ss-currently-edited-slide"),this.isCurrentlyEdited()?this.$layer=this.$element.find('.n2-ss-layer[data-sstype="slide"]'):(this.component=new N2Classes.FrontendComponentSectionSlide(this,t,e.find('.n2-ss-layer[data-sstype="slide"]')),this.$layer=this.component.$layer)}for(var s in N2Classes.FrontendSlideControls.prototype)i.prototype[s]=N2Classes.FrontendSlideControls.prototype[s];return i.prototype.isStatic=function(){return!0},i.prototype.onDeviceChange=function(t){this.$element.data("hide-"+t)?!1!==this.isVisible&&(this.isVisible=!1,this.triggerHandler("Hidden")):!0!==this.isVisible&&(this.isVisible=!0,this.status.is("INITIALIZED")&&this.playIn(),this.triggerHandler("Visible"))},i}),N2D("FrontendPlacementAbsolute",["FrontendPlacement"],function(e,t){function i(t){this.parentLayer=!1,this.$parent=!1,N2Classes.FrontendPlacement.prototype.constructor.apply(this,arguments)}return((i.prototype=Object.create(N2Classes.FrontendPlacement.prototype)).constructor=i).prototype.start=function(){var t=this.layer.get("parentid");t&&(this.$parent=e("#"+t),0===this.$parent.length?this.$parent=!1:(this.parentLayer=this.$parent.data("layer"),this.parentLayer.placement.addLinked(this),this.onResize=function(){}))},i.prototype.isSingleAxis=function(){if(this.layer.parent instanceof N2Classes.FrontendComponentSectionSlide){if(!this.parentLayer)return!1;if(this.parentLayer.placement instanceof N2Classes.FrontendPlacementAbsolute)return!1}return!0},i.prototype.onResize=i.prototype.onResizeLinked=function(t,e){var i=this.layer.$layer,s=t.slideW,n=t.slideH;this.isSingleAxis()&&(n=s);var r=s,o=n;parseInt(this.layer.get("responsivesize"))||(r=o=1),i.css("width",this.getWidth(r)),i.css("height",this.getHeight(o)),parseInt(this.layer.get("responsiveposition"))||(s=n=1);var a=this.layer.getDevice("left")*s,l=this.layer.getDevice("top")*n,o=this.layer.getDevice("align"),s=this.layer.getDevice("valign"),h={left:"auto",top:"auto",right:"auto",bottom:"auto"};if(this.$parent&&this.$parent.data("layer").isVisible){var d={left:(n=this.$parent).prop("offsetLeft"),top:n.prop("offsetTop")},c={left:0,top:0};switch(this.layer.getDevice("parentalign")){case"right":c.left=d.left+this.$parent.width();break;case"center":c.left=d.left+this.$parent.width()/2;break;default:c.left=d.left}switch(o){case"right":h.right=i.parent()[0].offsetWidth-c.left-a+"px";break;case"center":h.left=c.left+a-i.width()/2+"px";break;default:h.left=c.left+a+"px"}switch(this.layer.getDevice("parentvalign")){case"bottom":c.top=d.top+this.$parent.height();break;case"middle":c.top=d.top+this.$parent.height()/2;break;default:c.top=d.top}switch(s){case"bottom":h.bottom=i.parent()[0].offsetHeight-c.top-l+"px";break;case"middle":h.top=c.top+l-i.height()/2+"px";break;default:h.top=c.top+l+"px"}}else{switch(o){case"right":h.right=-a+"px";break;case"center":var p=!this.layer.slide.isStatic&&this.layer.parent instanceof N2Classes.FrontendComponentSectionSlide?e.slideWidth:i.parent()[0].offsetWidth;h.left=Math.round(p/2+a-i.width()/2)+"px";break;default:h.left=a+"px"}switch(s){case"bottom":h.bottom=-l+"px";break;case"middle":var u=!this.layer.slide.isStatic&&this.layer.parent instanceof N2Classes.FrontendComponentSectionSlide?e.slideHeight:i.parent()[0].offsetHeight;h.top=Math.round(u/2+l-i.height()/2)+"px";break;default:h.top=l+"px"}}i.css(h);for(var m=0;m<this.linked.length;m++)this.linked[m].onResizeLinked(t,e)},i.prototype.getWidth=function(t){var e=this.layer.getDevice("width");return this.isDimensionPropertyAccepted(e)?e:e*t+"px"},i.prototype.getHeight=function(t){var e=this.layer.getDevice("height");return this.isDimensionPropertyAccepted(e)?e:e*t+"px"},i.prototype.isDimensionPropertyAccepted=function(t){return!(!(t+"").match(/[0-9]+%/)&&"auto"!=t)},i}),N2D("FrontendPlacementContent",["FrontendPlacement"],function(t,e){function i(t){N2Classes.FrontendPlacement.prototype.constructor.apply(this,arguments)}return(i.prototype=Object.create(N2Classes.FrontendPlacement.prototype)).constructor=i}),N2D("FrontendPlacementDefault",["FrontendPlacement"],function(t,e){function i(t){N2Classes.FrontendPlacement.prototype.constructor.apply(this,arguments)}return(i.prototype=Object.create(N2Classes.FrontendPlacement.prototype)).constructor=i}),N2D("FrontendPlacementNormal",["FrontendPlacement"],function(t,e){function i(t){N2Classes.FrontendPlacement.prototype.constructor.apply(this,arguments)}return((i.prototype=Object.create(N2Classes.FrontendPlacement.prototype)).constructor=i).prototype.onDeviceChange=function(){this.updateMargin(),this.updateHeight(),this.updateMaxWidth(),this.updateSelfAlign()},i.prototype.updateMargin=function(){var t=this.layer.getDevice("margin").split("|*|"),e=t.pop(),i=this.layer.baseSize;if("px+"==e&&0<i){e="em";for(var s=0;s<t.length;s++)t[s]=parseInt(t[s])/i}this.layer.$layer.css("margin",t.join(e+" ")+e)},i.prototype.updateHeight=function(){var t,e=this.layer.getDevice("height"),i="px";0<e?(0<(t=this.layer.baseSize)&&(i="em",e=parseInt(e)/t),this.layer.$layer.css("height",e+i).attr("data-custom-height",1)):this.layer.$layer.css("height","").removeAttr("data-custom-height")},i.prototype.updateMaxWidth=function(){var t=parseInt(this.layer.getDevice("maxwidth"));t<=0||isNaN(t)?this.layer.$layer.css("maxWidth","").attr("data-has-maxwidth","0"):this.layer.$layer.css("maxWidth",t+"px").attr("data-has-maxwidth","1")},i.prototype.updateSelfAlign=function(){this.layer.$layer.attr("data-cssselfalign",this.layer.getDevice("selfalign"))},i}),N2D("FrontendComponentCol",["FrontendComponentCommon"],function(t,e){function i(t,e,i){this.$content=i.find(".n2-ss-layer-col:first"),N2Classes.FrontendComponentCommon.prototype.constructor.call(this,t,e,i,this.$content.find("> .n2-ss-layer"))}return((i.prototype=Object.create(N2Classes.FrontendComponentCommon.prototype)).constructor=i).prototype.onDeviceChange=function(t){N2Classes.FrontendComponentCommon.prototype.onDeviceChange.apply(this,arguments),this.updateOrder(),this.updatePadding(),this.updateVerticalAlign(),this.updateInnerAlign(),this.updateMaxWidth()},i.prototype.updatePadding=function(){var t=this.getDevice("padding").split("|*|"),e=t.pop(),i=this.baseSize;if("px+"===e&&0<i){e="em";for(var s=0;s<t.length;s++)t[s]=parseInt(t[s])/i}this.$content.css("padding",t.join(e+" ")+e)},i.prototype.updateVerticalAlign=function(){this.$content.attr("data-verticalalign",this.getDevice("verticalalign"))},i.prototype.updateInnerAlign=function(){this.$layer.attr("data-csstextalign",this.getDevice("inneralign"))},i.prototype.updateMaxWidth=function(){var t=parseInt(this.getDevice("maxwidth"));t<=0||isNaN(t)?this.$layer.css("maxWidth","").attr("data-has-maxwidth","0"):this.$layer.css("maxWidth",t+"px").attr("data-has-maxwidth","1")},i.prototype.getWidthPercentage=function(){return parseFloat(this.$layer.data("colwidthpercent"))},i.prototype.getRealOrder=function(){var t=this.getDevice("order");return 0==t?10:t},i.prototype.updateOrder=function(){var t=this.getDevice("order");0==t?this.$layer.css("order",""):this.$layer.css("order",t)},i.prototype.getContents=function(){return this.$content},i}),N2D("FrontendComponentContent",["FrontendComponentCommon"],function(t,e){function i(t,e,i){this.$content=i.find(".n2-ss-section-main-content:first"),N2Classes.FrontendComponentCommon.prototype.constructor.call(this,t,e,i,this.$content.find("> .n2-ss-layer"))}return((i.prototype=Object.create(N2Classes.FrontendComponentCommon.prototype)).constructor=i).prototype.onDeviceChange=function(t){N2Classes.FrontendComponentCommon.prototype.onDeviceChange.apply(this,arguments),this.updatePadding(),this.updateVerticalAlign(),this.updateInnerAlign(),this.updateMaxWidth(),this.updateSelfAlign()},i.prototype.updatePadding=function(){var t=this.getDevice("padding").split("|*|"),e=t.pop(),i=this.baseSize;if("px+"==e&&0<i){e="em";for(var s=0;s<t.length;s++)t[s]=parseInt(t[s])/i}this.$content.css("padding",t.join(e+" ")+e)},i.prototype.updateVerticalAlign=function(){this.$content.attr("data-verticalalign",this.getDevice("verticalalign"))},i.prototype.updateInnerAlign=function(){this.$layer.attr("data-csstextalign",this.getDevice("inneralign"))},i.prototype.updateMaxWidth=function(){var t=parseInt(this.getDevice("maxwidth"));t<=0||isNaN(t)?this.$layer.css("maxWidth","").attr("data-has-maxwidth","0"):this.$layer.css("maxWidth",t+"px").attr("data-has-maxwidth","1")},i.prototype.updateSelfAlign=function(){this.$layer.attr("data-cssselfalign",this.getDevice("selfalign"))},i.prototype.getContents=function(){return this.$content},i}),N2D("FrontendComponentLayer",["FrontendComponentCommon"],function(t,s){function e(t,e,i){N2Classes.FrontendComponentCommon.prototype.constructor.call(this,t,e,i),this.wraps.mask!==s?this.$item=this.wraps.mask.children():this.wraps.parallax!==s?this.$item=this.wraps.parallax.children():this.$item=i.children()}return((e.prototype=Object.create(N2Classes.FrontendComponentCommon.prototype)).constructor=e).prototype.getContents=function(){return this.$item},e}),N2D("FrontendComponentRow",["FrontendComponentCommon"],function(i,c){function t(t,e,i){this.$row=i.find(".n2-ss-layer-row:first"),this.$rowInner=this.$row.find(".n2-ss-layer-row-inner:first"),this.columns=[],N2Classes.FrontendComponentCommon.prototype.constructor.call(this,t,e,i,this.$rowInner.find("> .n2-ss-layer"))}return((t.prototype=Object.create(N2Classes.FrontendComponentCommon.prototype)).constructor=t).prototype.init=function(t){N2Classes.FrontendComponentCommon.prototype.init.call(this,t);for(var e=0;e<this.children.length;e++)this.children[e]instanceof N2Classes.FrontendComponentCol&&this.columns.push(this.children[e])},t.prototype.onDeviceChange=function(t){N2Classes.FrontendComponentCommon.prototype.onDeviceChange.apply(this,arguments),this.updatePadding(),this.updateGutter(),this.updateInnerAlign()},t.prototype.onAfterDeviceChange=function(t){this.updateWrapAfter()},t.prototype.updatePadding=function(){var t=this.getDevice("padding").split("|*|"),e=t.pop(),i=this.baseSize;if("px+"===e&&0<i){e="em";for(var s=0;s<t.length;s++)t[s]=parseInt(t[s])/i}this.$row.css("padding",t.join(e+" ")+e)},t.prototype.updateInnerAlign=function(){this.$layer.attr("data-csstextalign",this.getDevice("inneralign"))},t.prototype.updateGutter=function(){var t=this.getDevice("gutter"),e=t/2;if(0<this.columns.length)for(var i=this.columns.length-1;0<=i;i--)this.columns[i].$layer.css("margin",e+"px");this.$rowInner.css({width:"calc(100% + "+(t+1)+"px)",margin:-e+"px"})},t.prototype.getSortedColumns=function(){for(var t=i.extend([],this.columns).sort(function(t,e){return t.getRealOrder()-e.getRealOrder()}),e=t.length-1;0<=e;e--)t[e].isVisible||t.splice(e,1);return t},t.prototype.updateWrapAfter=function(){var t=parseInt(this.getDevice("wrapafter")),e=this.getSortedColumns(),i=e.length,s=!1;if(0===i)return!1;if(0<t&&t<i&&(s=!0),this.$row.attr("row-wrapped",s?1:0),s){for(var n=[],r=0;r<i;r++){var o=Math.floor(r/t);n[o]===c&&(n[o]=[]),n[o].push(e[r]),e[r].$layer.attr("data-r",o).toggleClass("n2-ss-last-in-row",(r+1)%t==0||r===i-1)}var a=this.getDevice("gutter");for(r=0;r<n.length;r++){for(var l=n[r],h=0,d=0;d<l.length;d++)h+=l[d].getWidthPercentage();for(d=0;d<l.length;d++)l[d].$layer.css("width","calc("+l[d].getWidthPercentage()/h*100+"% - "+(n2const.isIE||n2const.isEdge?a+1:a)+"px)")}}else{h=0;for(r=0;r<i;r++)h+=e[r].getWidthPercentage();for(r=0;r<i;r++)e[r].$layer.css("width",e[r].getWidthPercentage()/h*100+"%").removeClass("n2-ss-last-in-row").attr("data-r",0);e[i-1].$layer.addClass("n2-ss-last-in-row")}},t.prototype.getContents=function(){return this.$row},t}),N2D("FrontendComponentSectionSlide",["FrontendComponent"],function(t,e){function i(t,e,i){this.realSlide=t,this.slider=e,this.$element=t.$element,this.$layer=i,this.baseSize=16,this.isStatic=t.isStatic(),N2Classes.FrontendComponent.prototype.constructor.call(this,this,this,i,i.find("> .n2-ss-layer")),e.sliderElement.on({SliderDeviceOrientation:function(t,e){this.onDeviceChange(e.device.toLowerCase())}.bind(this),SliderResize:function(t,e,i){this.onResize(e,i.resizeContext)}.bind(this)}),this.start()}return((i.prototype=Object.create(N2Classes.FrontendComponent.prototype)).constructor=i).prototype.onDeviceChange=function(t){N2Classes.FrontendComponent.prototype.onDeviceChange.call(this,t);for(var e=0;e<this.children.length;e++)this.children[e].onDeviceChange(t);this.realSlide.onDeviceChange(t),this.updatePadding()},i.prototype.updatePadding=function(){var t=this.getDevice("padding").split("|*|");this.$layer.css("padding",t.join("px ")+"px")},i}),N2D("SmartSliderResponsive",function(o,t){function a(t,e){this.state={StarterSlide:!1},this.isResetActiveSlideEarly=this.isResetActiveSlideEarly||!1,this.disableTransitions=!1,this.disableTransitionsTimeout=null,this.lastClientHeight=0,this.lastClientHeightTime=0,this.isLandscape=!1,this.pixelSnappingFraction=0,this.focusOffsetTop=0,this.focusOffsetBottom=0,this.fullPageMinimumSliderHeight=0,this.minimumSlideHeight=0,this.isFullScreen=!1,this.visibleRealSlidesChanged=!0,this.filters={SliderWidth:[],SliderHeight:[],SlideHeight:[],SliderVerticalCSS:[]},this.parameters=o.extend({hideOn:{desktopLandscape:0,desktopPortrait:0,tabletLandscape:0,tabletPortrait:0,mobileLandscape:0,mobilePortrait:0},onResizeEnabled:!0,type:"auto",downscale:!0,upscale:!1,constrainRatio:!0,minimumHeight:0,maximumSlideWidth:{ratio:-1,desktopLandscape:0,desktopPortrait:0,tabletLandscape:0,tabletPortrait:0,mobileLandscape:0,mobilePortrait:0},forceFull:0,forceFullOverflowX:"body",forceFullHorizontalSelector:"",sliderHeightBasedOn:"real",decreaseSliderHeight:0,focusUser:1,focusEdge:"auto",enabledDevices:{desktopLandscape:1,desktopPortrait:0,mobileLandscape:0,mobilePortrait:0,tabletLandscape:0,tabletPortrait:0},breakpoints:[],sizes:{desktopPortrait:{width:1200,height:600,max:1e4,min:40}},normalizedDeviceModes:{unknown:"unknown",desktopPortrait:"desktopPortrait"},ratioToDevice:{Portrait:{tablet:0,mobile:0},Landscape:{tablet:0,mobile:0}},overflowHiddenPage:0,focus:{offsetTop:"",offsetBottom:""}},e),this.parameters.hideOn=window.ssOverrideHideOn||this.parameters.hideOn,this.doThrottledResize=NextendThrottle(this.doResize.bind(this),50),this.slider=t,this.sliderElement=t.sliderElement,this.addFilter("SliderWidth",this.filterSliderWidthHorizontalSpacing.bind(this)),this.slider.parameters.dynamicHeight&&this.slider.stages.done("BeforeShow",function(){this.doResize()}.bind(this))}return a.DeviceMode={unknown:0,desktopLandscape:1,desktopPortrait:2,tabletLandscape:3,tabletPortrait:4,mobileLandscape:5,mobilePortrait:6},a._DeviceMode={0:"unknown",1:"desktopLandscape",2:"desktopPortrait",3:"tabletLandscape",4:"tabletPortrait",5:"mobileLandscape",6:"mobilePortrait"},a._DeviceGroup={desktopLandscape:"desktop",desktopPortrait:"desktop",tabletLandscape:"tablet",tabletPortrait:"tablet",mobileLandscape:"mobile",mobilePortrait:"mobile"},a.prototype.setDeviceID=function(t){this.deviceID=t,this.device=a._DeviceMode[t]},a.prototype.start=function(){if(this.slider.stages.done("ResizeFirst",function(){nextend.fontsDeferred===t?(this.slider.stages.resolve("Fonts"),this.slider.stages.resolved("windowLoad")||N2R("windowLoad",function(){this.doResize()}.bind(this))):nextend.fontsDeferred.always(function(){this.slider.stages.resolve("Fonts")}.bind(this))}.bind(this)),this.normalizeTimeout=null,this.delayedResizeAdded=!1,this.setDeviceID(a.DeviceMode.unknown),this.ratios={slideW:1,slideH:1},this.horizontalSpacingControls={right:[],left:[]},this.horizontalSpacing={right:0,left:0},this.staticSizes={paddingTop:0,paddingRight:0,paddingBottom:0,paddingLeft:0},this.alignElement=this.slider.sliderElement.closest(".n2-ss-align"),this.$section=this.alignElement.closest(".n2-section-smartslider"),"fullpage"===this.parameters.type&&"100vh"===this.parameters.sliderHeightBasedOn&&(this.$viewportHeight=o('<div style="height:100vh;width:0;position:absolute;bottom:0;visibility:hidden;"></div>').appendTo("body")),this.containerElementPadding=this.sliderElement.parent(),this.containerElement=this.containerElementPadding.parent(),!this.slider.isAdmin&&this.parameters.overflowHiddenPage&&o("html, body").css("overflow","hidden"),nextend.smallestZoom=320,this.slider.stages.resolve("ResponsiveStart"),this.init(),this.onResize(),o(window).on("SliderContentResize",function(t){this.onResize(t)}.bind(this)),this.parameters.onResizeEnabled)if(o(window).on({resize:this.onResize.bind(this),orientationchange:this.onResize.bind(this)}),window.ResizeObserver!==t){var e=0;new ResizeObserver(function(t){t.forEach(function(t){e!==t.contentRect.width&&(e=t.contentRect.width,this.internalResize())}.bind(this))}.bind(this)).observe(this.containerElement.parent().get(0))}else try{o('<iframe class="bt_skip_resize intrinsic-ignore" title="Resize helper" sandbox="allow-same-origin allow-scripts" style="margin:0 !important;padding:0;border:0;display:block;width:100%;height:0;min-height:0 !important;max-height:0;"></iframe>').on("load",function(t){var i=0,s=o(t.target.contentWindow||t.target.contentDocument.defaultView).on("resize",function(t){var e=s.width();i!==e&&(i=e,this.internalResize())}.bind(this));s[0].document.getElementsByTagName("HTML")[0].setAttribute("lang",window.document.getElementsByTagName("HTML")[0].getAttribute("lang"))}.bind(this)).insertBefore(this.containerElement)}catch(t){}},a.prototype.internalResize=function(){this.onResize()},a.prototype.getMinimumContentHeight=function(){for(var t,e=this.slider.visibleRealSlides,i=0,s=0;s<this.slider.visibleRealSlides.length;s++)e[s].$layer.addClass("n2-ss-layer--height-calc");for(s=0;s<this.slider.visibleRealSlides.length;s++)t=e[s].$layer.outerHeight(),i=Math.max(i,t),e[s].$layer.data("contentHeight",t);for(s=0;s<this.slider.visibleRealSlides.length;s++)e[s].$layer.removeClass("n2-ss-layer--height-calc");return i},a.prototype.getMinimumStaticContentHeight=function(){for(var i=0,t=o(),e=0;e<this.slider.staticSlides.length;e++)t=t.add(this.slider.staticSlides[e].$element[0]);return t.addClass("n2-ss-layer--height-calc").each(function(t,e){i=Math.max(i,o(e).outerHeight())}).removeClass("n2-ss-layer--height-calc"),i},a.prototype.getDeviceMode=function(){return a._DeviceMode[this.deviceID]},a.prototype.getDeviceGroup=function(){return a._DeviceGroup[this.getDeviceMode()]},a.prototype.onResize=function(t){this.slider.mainAnimation&&"playing"===this.slider.mainAnimation.getState()?this.delayedResizeAdded||(this.delayedResizeAdded=!0,this.sliderElement.on("mainAnimationComplete.responsive",this._onResize.bind(this,t))):this._onResize(t)},a.prototype._onResize=function(t){this.doResize(t),this.delayedResizeAdded=!1},a.prototype.doNormalizedResize=function(){this.normalizeTimeout&&clearTimeout(this.normalizeTimeout),this.normalizeTimeout=setTimeout(this.doResize.bind(this),10)},a.prototype.identifyDeviceID=function(){this.containerElementPadding.css("overflow","hidden");var t,e,i=a.DeviceMode.desktopPortrait,s=window.n2Width||window.innerWidth,n=window.n2Height||window.innerHeight;this.isLandscape=n<s;for(var r=this.parameters.breakpoints.length-1;0<=r;r--)if(t=this.parameters.breakpoints[r],e=this.isLandscape?t.landscapeWidth:t.portraitWidth,"max-screen-width"===t.type){if(s<=e){i=a.DeviceMode[t.device];break}}else if("min-screen-width"===t.type&&e<=s){i=a.DeviceMode[t.device];break}return this.containerElementPadding.css("overflow",""),i},a.prototype.updateOffsets=function(){if(this.focusOffsetTop=0,""!==this.parameters.focus.offsetTop)for(var t=o(this.parameters.focus.offsetTop),e=0;e<t.length;e++)t.eq(e).is(":visible")&&(this.focusOffsetTop+=t.eq(e).outerHeight());if(this.slider.isAdmin&&(this.focusOffsetTop+=o(".n2-lb-header").outerHeight()),this.focusOffsetBottom=0,""!==this.parameters.focus.offsetBottom){var i=o(this.parameters.focus.offsetBottom);for(e=0;e<i.length;e++)i.eq(e).is(":visible")&&(this.focusOffsetBottom+=i.eq(e).outerHeight())}},a.prototype.calculateFullPageSliderHeight=function(t){},a.prototype.doResize=function(t){var e,i,s=this.identifyDeviceID();if(this.parameters.hideOn[a._DeviceMode[s]])return this.$section.addClass("n2-section-smartslider--hidden"),!1;if(this.$section.removeClass("n2-section-smartslider--hidden"),!this.containerElementPadding.is(":visible"))return!1;this.updateOffsets(),this.disableTransitions||(this.disableTransitions=!0,this.sliderElement.addClass("n2notransition"),this.disableTransitionsTimeout&&clearTimeout(this.disableTransitionsTimeout),this.disableTransitionsTimeout=setTimeout(function(){this.sliderElement.removeClass("n2notransition"),this.disableTransitions=!1}.bind(this),500)),this.slider.isAdmin||this.parameters.forceFull&&("none"!==this.parameters.forceFullOverflowX&&o(this.parameters.forceFullOverflowX).css("overflow-x","hidden"),n=i=0,this.parameters.forceFullHorizontalSelector=window.ssForceFullHorizontalSelector||this.parameters.forceFullHorizontalSelector,""===this.parameters.forceFullHorizontalSelector||(r=this.sliderElement.closest(this.parameters.forceFullHorizontalSelector))&&0<r.length&&(i=(e=r[0].getBoundingClientRect()).width,n=n2const.rtl.isRtl?(document.body.clientWidth||document.documentElement.clientWidth)-e.right:e.left),r=0<i?i:document.body.clientWidth||document.documentElement.clientWidth,i=(e=this.containerElement.parent())[0].getBoundingClientRect(),n=-(n2const.rtl.isRtl?(document.body.clientWidth||document.documentElement.clientWidth)-i.right:i.left)-parseInt(e.css("paddingLeft"))-parseInt(e.css("borderLeftWidth"))+n,this.containerElement.css({marginLeft:n,marginRight:n}).width(r));var n=!1,r=this.device;this.deviceID!==s&&(this.setDeviceID(s),this.sliderElement.removeClass("n2-ss-"+r).attr("data-device-mode",this.device).addClass("n2-ss-"+this.device),this.sliderElement.trigger("SliderDevice",{lastDevice:r,device:this.device,group:a._DeviceGroup[this.device]}),n=!0,this.slider.stages.resolve("Device")),n&&(this.slider.visibleRealSlides=[],this.sliderElement.trigger("SliderDeviceOrientation",{slider:this.slider,lastDevice:r,device:this.device,group:a._DeviceGroup[this.device]}),this.slider.stages.resolve("DeviceOrientation"),this.finalizeVisibleSlidesStage1()),(this.slider.isVisible||this.visibleRealSlidesChanged)&&(this.resizeStage1Width(),this.sliderElement.trigger("SliderResizeHorizontal"),this.resizeStage2Height())},a.prototype.resizeStage1Width=function(){this.resizeContext={}},a.prototype.resizeStage2Height=function(){for(var t=this.applyFilter("SliderVerticalCSS",this.getResizeStage2CSS()),e=0;e<t.length;e++)t[e].flush();this.ratios={slideW:this.resizeContext.slideWidth/this.base.slideWidth,slideH:this.resizeContext.slideHeight/this.base.slideHeight},this.slider.stages.resolve("ResizeFirst"),this.finalizeVisibleSlidesStage2(),this.triggerResize()},a.prototype.resizeStage2HeightAnimated=function(t,e,i){this.dynamicHeightSlide=e;var s=this.applyFilter("SliderVerticalCSS",this.getResizeStage2CSS());delete this.dynamicHeightSlide,this.ratios={slideW:this.resizeContext.slideWidth/this.base.slideWidth,slideH:this.resizeContext.slideHeight/this.base.slideHeight},this.finalizeVisibleSlidesStage2();for(var n=0;n<s.length;n++)t.to(s[n].$,i,s[n].css,0);t.eventCallback("onComplete",function(){this.slider.trigger("SliderResizeAnimated",[this.ratios,this])}.bind(this))},a.prototype.getResizeStage2CSS=function(){},a.prototype.onStarterSlide=function(t){this.state.StarterSlide=!0,this.calibrateActiveSlide(t),delete this.targetCurrentSlide},a.prototype.finalizeVisibleSlidesStage1=function(){this.visibleRealSlidesChanged&&(this.slider.visibleRealSlides.sort(function(t,e){return t.index-e.index}),this.updateVisibleSlides(),this.slider.trigger("visibleRealSlidesChanged"),this.slider.stages.resolve("VisibleRealSlides"),this.isResetActiveSlideEarly&&this.calibrateActiveSlide())},a.prototype.updateVisibleSlides=function(){this.slider.visibleSlides=this.slider.visibleRealSlides},a.prototype.calibrateActiveSlide=function(t){this.state.StarterSlide&&0<this.slider.visibleSlides.length&&((t=t||this.slider.currentRealSlide).isVisible||(t=(t=t.getNext())||this.slider.currentSlide.getPrevious()),this.resetActiveRealSlide(t))},a.prototype.resetActiveRealSlide=function(t){var e,i;t&&t!==this.slider.currentRealSlide?(this.slider.trigger("BeforeCurrentSlideChange",t),(e=this.slider.currentSlide)&&this.slider.forceUnsetActiveSlide(e),this.slider.setCurrentRealSlide(t),i=this.slider.currentSlide,this.targetCurrentSlide=i,this.slider.forceSetActiveSlide(i),this.slider.trigger("SlideForceChange",[e,i])):i=this.slider.currentSlide,this.slider.updateInsideSlides([i])},a.prototype.finalizeVisibleSlidesStage2=function(){this.visibleRealSlidesChanged&&(this.visibleRealSlidesChanged=!1,this.isResetActiveSlideEarly||this.calibrateActiveSlide(),this.triggerVisibleSlidesChanged(),this.targetCurrentSlide!==t&&(this.slider.trigger("SlideWillChange",this.targetCurrentSlide),this.slider.trigger("CurrentSlideChanged",this.targetCurrentSlide),this.slider.stages.resolved("Visible")&&this.slider.playSlide(this.targetCurrentSlide),delete this.targetCurrentSlide))},a.prototype.triggerVisibleSlidesChanged=function(){this.slider.trigger("visibleSlidesChanged"),this.slider.stages.resolve("VisibleSlides"),this.slider.visibleRealSlides.length?this.slider.isVisible||this.slider.show():this.slider.isVisible&&this.slider.hide()},a.prototype.getNormalizedModeString=function(){return a._DeviceMode[this.deviceID]},a.prototype.triggerResize=function(){this.slider.publicTrigger("SliderResize",[this.ratios,this]),this.slider.stages.resolve("Resized")},a.prototype.getVerticalOffsetHeight=function(){if(this.isFullScreen)return 0;var t=this.focusOffsetTop+this.focusOffsetBottom;if(this.slider.widgets.$vertical)for(var e=0;e<this.slider.widgets.$vertical.length;e++)t+=this.slider.widgets.$vertical.eq(e).outerHeight();return t+this.parameters.decreaseSliderHeight},a.prototype.addHorizontalSpacingControl=function(t,e){this.horizontalSpacingControls[t].push(e),this.slider.stages.resolved("ResizeFirst")&&this.doNormalizedResize()},a.prototype.filterSliderWidthHorizontalSpacing=function(t){for(var e in this.horizontalSpacing={right:0,left:0},this.horizontalSpacingControls)for(var i=this.horizontalSpacingControls[e],s=i.length-1;0<=s;s--){var n=i[s];n.isVisible()&&(n.refreshSliderSize(t),this.horizontalSpacing[e]+=n.getSize())}return this.containerElementPadding.css({paddingLeft:this.horizontalSpacing.left,paddingRight:this.horizontalSpacing.right}),t-this.horizontalSpacing.left-this.horizontalSpacing.right},a.prototype.addFilter=function(t,e){this.filters[t].push(e)},a.prototype.removeFilter=function(t,e){this.filters[t].push(e)},a.prototype.applyFilter=function(t,e){for(var i=0;i<this.filters[t].length;i++)e=this.filters[t][i].call(this,e);return e},a.prototype.prepareFontSize=function(t){return N2Classes.FontSize.toRem(t)},a}),N2D("FrontendItemVimeo",function(o,e){function i(t,e,i,s,n,r){if(this.state={slideVisible:!1,visible:!1,scroll:!1,slide:!1,InComplete:!1,play:!1,continuePlay:!1},this.readyDeferred=o.Deferred(),this.slider=t,this.playerId=e,this.$playerElement=o("#"+this.playerId),this.$cover=this.$playerElement.find(".n2_ss_video_player__cover"),this.start=r,this.parameters=o.extend({vimeourl:"//vimeo.com/144598279",autoplay:"0",ended:"",reset:"0",title:"1",byline:"1",portrait:"0",loop:"0",color:"00adef",volume:"-1",dnt:"0"},s),1===parseInt(this.parameters.autoplay))if(-1<navigator.userAgent.toLowerCase().indexOf("android"))this.parameters.volume=0;else if(n2const.isIOS){this.parameters.autoplay=0;try{"playsInline"in document.createElement("video")&&(this.parameters.autoplay=1,this.parameters.volume=0)}catch(t){}}1===parseInt(this.parameters.autoplay)||!n||n2const.isMobile?this.ready(this.initVimeoPlayer.bind(this)):this.ready(function(){this.$playerElement.on("click.vimeo n2click.vimeo",function(t){this.$playerElement.off(".vimeo"),t.preventDefault(),t.stopPropagation(),this.initVimeoPlayer(),this.safePlay()}.bind(this))}.bind(this))}return i.vimeoDeferred=null,i.prototype.ready=function(t){null===i.vimeoDeferred&&(i.vimeoDeferred=o.getScript("https://player.vimeo.com/api/player.js")),i.vimeoDeferred.done(t)},i.prototype.initVimeoPlayer=function(){var t=o('<iframe class="intrinsic-ignore" allow="autoplay; encrypted-media" id="'+this.playerId+'-frame" src="https://player.vimeo.com/video/'+this.parameters.vimeocode+"?autoplay=0&_video&title="+this.parameters.title+"&byline="+this.parameters.byline+"&background="+this.parameters.background+"&portrait="+this.parameters.portrait+"&color="+this.parameters.color+"&loop="+this.parameters.loop+("-1"==this.parameters.quality?"":"&quality="+this.parameters.quality)+"&dnt="+this.parameters["privacy-enhanced"]+'" style="position: absolute; top:0; left: 0; width: 100%; height: 100%;" webkitAllowFullScreen allowFullScreen></iframe>');this.$playerElement.prepend(t),this.player=new Vimeo.Player(t[0],{autoplay:!1}),this.promise=this.player.ready(),this.slider.stages.done("BeforeShow",function(){this.promise.then(this.onReady.bind(this))}.bind(this))},i.prototype.onReady=function(){var t=parseFloat(this.parameters.volume);0<=t&&this.setVolume(t),this.slide=this.slider.findSlideByElement(this.$playerElement),this.isStatic=this.slide.isStatic();var e=this.$playerElement.closest(".n2-ss-layer");this.layer=e.data("layer"),this.layer.isVisible&&this.setState("visible",!0,!0),this.layer.$layer.on("visibilityChange",function(t,e){e?this.setState("visible",!0,!0):(e=this.state.play,this.setState("visible",!1,!0),e&&this.setState("continuePlay",!0))}.bind(this)),this.slide.isVisible&&this.setState("slideVisible",!0,!0),this.slide.$element.on({Hidden:function(){var t=this.state.play;this.setState("slideVisible",!1,!0),t&&this.setState("continuePlay",!0)}.bind(this),Visible:function(){this.setState("slideVisible",!0,!0)}.bind(this)}),this.$cover.length&&(n2const.isMobile&&this.$cover.on("click",this.safePlay.bind(this)),e.one("n2play",function(){NextendTween.to(this.$cover,.3,{opacity:0,onComplete:function(){this.$cover.remove()}.bind(this)})}.bind(this))),this.player.on("play",function(){this.isStatic||this.slider.trigger("mediaStarted",this.playerId),e.triggerHandler("n2play")}.bind(this)),this.player.on("pause",function(){e.triggerHandler("n2pause"),this.state.continuePlay?(this.setState("continuePlay",!1),this.setState("play",!0)):this.setState("play",!1)}.bind(this)),this.player.on("ended",function(){this.isStatic||this.slider.trigger("mediaEnded",this.playerId),e.triggerHandler("n2stop"),this.setState("play",!1),"next"===this.parameters.ended&&0==this.parameters.loop&&((document.fullscreenElement||document.mozFullScreenElement||document.webkitFullscreenElement)&&(document.exitFullscreen||document.mozCancelFullScreen||document.webkitExitFullscreen).call(document),this.slider.next())}.bind(this)),this.isStatic||this.slider.sliderElement.on({CurrentSlideChanged:function(t,e){this.onCurrentSlideChange(e)}.bind(this),mainAnimationStart:function(t,e,i,s){this.onCurrentSlideChange(this.slider.slides[s])}.bind(this)}),""!==this.parameters["scroll-pause"]?N2Classes.ScrollTracker.add(this.$playerElement,this.parameters["scroll-pause"],function(){this.setState("scroll",!0,!0)}.bind(this),function(){this.setState("continuePlay",!0),this.setState("scroll",!1,!0)}.bind(this)):this.setState("scroll",!0,!0),this.slide.isActiveWhen()&&this.setState("slide",!0,!0),1===parseInt(this.parameters.autoplay)&&this.slider.visible(this.initAutoplay.bind(this)),this.readyDeferred.resolve()},i.prototype.onCurrentSlideChange=function(t){this.slide.isActiveWhen(t)?1==this.parameters.autoplay&&this.setState("play",!0):parseInt(this.parameters.reset)&&this.reset(),this.setState("slide",!0,!0)},i.prototype.initAutoplay=function(){this.setState("InComplete",!0,!0),this.isStatic?(this.setState("play",!0),this.setState("slide",!0,!0)):(this.slider.sliderElement.on("mainAnimationComplete",function(t,e,i,s,n){this.slide.isActiveWhen(this.slider.slides[s])?(this.setState("play",!0),this.setState("slide",!0,!0)):this.setState("slide",!1,!0)}.bind(this)),this.slide.isActiveWhen()&&(this.setState("play",!0),this.setState("slide",!0,!0)))},i.prototype.setState=function(t,e,i){i=i||!1,this.state[t]=e,i&&(this.state.slideVisible&&this.state.visible&&this.state.play&&this.state.slide&&this.state.InComplete&&this.state.scroll&&this.layer.isVisible?this.play():this.pause())},i.prototype.play=function(){this.slider.trigger("mediaStarted",this.playerId),0!=this.start&&this.safeSetCurrentTime(this.start),this.safePlay(),this.player.getCurrentTime().then(function(t){t<this.start&&0!=this.start&&this.safeSetCurrentTime(this.start),this.safePlay()}.bind(this)).catch(function(t){this.safePlay()}.bind(this))},i.prototype.pause=function(){this.safePause()},i.prototype.reset=function(){this.safeSetCurrentTime(this.start)},i.prototype.setVolume=function(t){this.safeCallback(function(){this.promise=this.player.setVolume(t)}.bind(this))},i.prototype.safeSetCurrentTime=function(t){this.safeCallback(function(){this.promise=this.player.setCurrentTime(t)}.bind(this))},i.prototype.safePlay=function(){this.safeCallback(function(){this.promise=this.player.getPaused(),this.safeCallback(function(t){t&&(this.promise=this.player.play())}.bind(this))}.bind(this))},i.prototype.safePause=function(){this.safeCallback(function(){this.promise=this.player.getPaused(),this.safeCallback(function(t){t||(this.promise=this.player.pause())}.bind(this))}.bind(this))},i.prototype.safeCallback=function(t){this.promise&&Promise!==e?this.promise.then(t).catch(t):t()},i}),N2D("FrontendItemYouTube",function(r,o){function a(t,e,i,s){this.state={slideVisible:!1,visible:!1,scroll:!1,slide:!1,InComplete:!1,play:!1,continuePlay:!1},this.readyDeferred=r.Deferred(),this.slider=t,this.playerId=e,this.$playerElement=r("#"+this.playerId),this.$cover=this.$playerElement.find(".n2_ss_video_player__cover"),this.parameters=r.extend({youtubeurl:"//www.youtube.com/watch?v=3PPtkRU7D74",youtubecode:"3PPtkRU7D74",center:0,autoplay:1,ended:"",related:"1",volume:"-1",loop:0,modestbranding:1,reset:0,query:[],playsinline:0},i),1===parseInt(this.parameters.autoplay)||!s||n2const.isMobile?this.ready(this.initYoutubePlayer.bind(this)):this.$playerElement.on("click.youtube n2click.youtube",function(t){this.$playerElement.off(".youtube"),t.preventDefault(),t.stopPropagation(),this.ready(function(){this.readyDeferred.done(function(){this.play()}.bind(this)),this.initYoutubePlayer()}.bind(this))}.bind(this))}return a.YTDeferred=null,a.prototype.ready=function(t){var e,i,s,n;null===a.YTDeferred&&(a.YTDeferred=r.Deferred(),window.YT===o&&r.getScript("https://www.youtube.com/iframe_api"),window._EPYT_!==o?(s=a.YTDeferred,(n=function(){!0===window._EPADashboard_.initStarted?s.resolve():setTimeout(n,100)})()):(e=a.YTDeferred,(i=function(){window.YT!==o&&window.YT.loaded?e.resolve():setTimeout(i,100)})())),a.YTDeferred.done(t)},a.prototype.fadeOutCover=function(){this.coverFadedOut===o&&this.$cover.length&&(this.coverFadedOut=!0,NextendTween.to(this.$cover,.3,{opacity:0,onComplete:function(){this.$cover.remove()}.bind(this)}))},a.prototype.initYoutubePlayer=function(){var e=this.$playerElement.closest(".n2-ss-layer");this.layer=e.data("layer"),this.$cover.length&&(n2const.isMobile&&this.$cover.on("click",this.play.bind(this)),e.one("n2play",this.fadeOutCover.bind(this))),this.slide=this.slider.findSlideByElement(this.$playerElement),this.isStatic=this.slide.isStatic();var t,i={enablejsapi:1,origin:window.location.protocol+"//"+window.location.host,wmode:"opaque",rel:1-this.parameters.related,start:this.parameters.start,end:this.parameters.end,modestbranding:this.parameters.modestbranding,playsinline:this.parameters.playsinline};if(1===parseInt(this.parameters.autoplay))if(-1<navigator.userAgent.toLowerCase().indexOf("android"))this.parameters.volume=0;else if(n2const.isIOS){this.parameters.autoplay=0;try{"playsInline"in document.createElement("video")&&(this.parameters.autoplay=1,this.parameters.volume=0,i.playsinline=1)}catch(t){}}for(t in n2const.isIOS&&this.parameters.controls&&(i.use_native_controls=1),1==this.parameters.center&&(i.controls=0),1!=this.parameters.controls&&(i.autohide=1,i.controls=0),+(0<=navigator.platform.toUpperCase().indexOf("MAC")&&-1<navigator.userAgent.search("Firefox"))&&(i.html5=1),this.parameters.query)this.parameters.query.hasOwnProperty(t)&&(i[t]=this.parameters.query[t]);var s={videoId:this.parameters.youtubecode,wmode:"opaque",playerVars:i,events:{onReady:this.onReady.bind(this),onStateChange:function(t){switch(t.data){case YT.PlayerState.PLAYING:case YT.PlayerState.BUFFERING:this.isStatic||this.slide.isActiveWhen(this.slider.currentSlide)&&this.slider.sliderElement.trigger("mediaStarted",this.playerId),e.triggerHandler("n2play");break;case YT.PlayerState.PAUSED:e.triggerHandler("n2pause"),this.state.continuePlay?(this.setState("continuePlay",!1),this.setState("play",!0)):this.setState("play",!1);break;case YT.PlayerState.ENDED:1==this.parameters.loop?(this.player.seekTo(this.parameters.start),this.player.playVideo()):(this.isStatic||this.slider.trigger("mediaEnded",this.playerId),e.triggerHandler("n2stop"),this.setState("play",!1),"next"===this.parameters.ended&&((document.fullscreenElement||document.mozFullScreenElement||document.webkitFullscreenElement)&&(document.exitFullscreen||document.mozCancelFullScreen||document.webkitExitFullscreen).call(document),this.slider.next()))}}.bind(this)}};(this.parameters["privacy-enhanced"]||jQuery&&jQuery.fn.revolution)&&(s.host="https://www.youtube-nocookie.com"),this.player=new YT.Player(this.playerId+"-frame",s),1==this.parameters.center&&(this.$playerElement.parent().css("overflow","hidden"),this.onResize(),this.slider.sliderElement.on("SliderResize",this.onResize.bind(this)))},a.prototype.onReady=function(){this.slider.stages.done("BeforeShow",this.onBeforeShow.bind(this))},a.prototype.onBeforeShow=function(){var t=parseFloat(this.parameters.volume);0<t?this.setVolume(t):-1!==t&&this.player.mute(),this.layer.isVisible&&this.setState("visible",!0,!0),this.layer.$layer.on("visibilityChange",function(t,e){e?this.setState("visible",!0,!0):(e=this.state.play,this.setState("visible",!1,!0),e&&this.setState("continuePlay",!0))}.bind(this)),this.slide.isVisible&&this.setState("slideVisible",!0,!0),this.slide.$element.on({Hidden:function(){var t=this.state.play;this.setState("slideVisible",!1,!0),t&&this.setState("continuePlay",!0)}.bind(this),Visible:function(){this.setState("slideVisible",!0,!0)}.bind(this)}),this.slide.isActiveWhen()&&this.setState("slide",!0,!0),1==this.parameters.autoplay&&this.slider.visible(this.initAutoplay.bind(this)),this.isStatic||(this.slider.sliderElement.on({CurrentSlideChanged:function(t,e){this.onCurrentSlideChange(e)}.bind(this),mainAnimationStart:function(t,e,i,s){this.onCurrentSlideChange(this.slider.slides[s])}.bind(this)}),parseInt(this.parameters.reset)&&this.slider.sliderElement.on("mainAnimationComplete",function(t,e,i,s){this.slide.isActiveWhen(this.slider.slides[s])||0!==this.player.getCurrentTime()&&this.player.seekTo(this.parameters.start)}.bind(this))),this.readyDeferred.resolve(),""!==this.parameters["scroll-pause"]?N2Classes.ScrollTracker.add(this.$playerElement,this.parameters["scroll-pause"],function(){this.setState("scroll",!0,!0)}.bind(this),function(){this.setState("continuePlay",!0),this.setState("scroll",!1,!0)}.bind(this)):this.setState("scroll",!0,!0)},a.prototype.onCurrentSlideChange=function(t){t=this.slide.isActiveWhen(t);t&&1==this.parameters.autoplay&&this.setState("play",!0),this.setState("slide",t,!0)},a.prototype.onResize=function(){var t=this.$playerElement.parent(),e=t.width(),i=t.height()+100,t={width:e,height:i,marginTop:0};t[n2const.rtl.marginLeft]=0,16/9<e/i?(t.height=e*(16/9),t.marginTop=(i-t.height)/2):(t.width=i*(16/9),t[n2const.rtl.marginLeft]=(e-t.width)/2),this.$playerElement.css(t)},a.prototype.initAutoplay=function(){this.setState("InComplete",!0,!0),this.isStatic?(this.setState("play",!0),this.setState("slide",!0,!0)):(this.slider.sliderElement.on("mainAnimationComplete",function(t,e,i,s){this.slide.isActiveWhen(this.slider.slides[s])?(this.setState("play",!0),this.setState("slide",!0,!0)):this.setState("slide",!1,!0)}.bind(this)),this.slide.isActiveWhen()&&(this.setState("play",!0),this.setState("slide",!0,!0)))},a.prototype.setState=function(t,e,i){i=i||!1,this.state[t]=e,i&&(this.state.slideVisible&&this.state.visible&&this.state.play&&this.state.slide&&this.state.InComplete&&this.state.scroll?this.play():this.pause())},a.prototype.play=function(){this.isStopped()&&(this.coverFadedOut===o&&setTimeout(this.fadeOutCover.bind(this),200),this.slider.trigger("mediaStarted",this.playerId),this.player.playVideo())},a.prototype.pause=function(){this.isStopped()||this.player.pauseVideo()},a.prototype.stop=function(){this.player.stopVideo()},a.prototype.isStopped=function(){switch(this.player.getPlayerState()){case-1:case 2:case 5:return!0;default:return!1}},a.prototype.setVolume=function(t){this.player.setVolume(100*t)},a}),N2D("smartslider-frontend");
1
+ (function(){var t=this;t.N2_=t.N2_||{r:[],d:[]},t.N2R=t.N2R||function(){t.N2_.r.push(arguments)},t.N2D=t.N2D||function(){t.N2_.d.push(arguments)}}).call(window),N2D("SmartSliderBackgrounds",function(a,t){function e(t){this.device=null,this.slider=t,this.hasFixed=!1,this.lazyLoad=parseInt(t.parameters.lazyLoad),this.lazyLoadNeighbor=parseInt(t.parameters.lazyLoadNeighbor),this.loadDeferred=a.Deferred(),this.deviceDeferred=a.Deferred(),this.slider.stages.done("Resized",this.onResized.bind(this)),this.slider.stages.done("StarterSlide",this.onStarterSlide.bind(this))}return e.prototype.loadWithProgress=function(t){for(var e=0,i=this.loadDeferred,s=0;s<t.length;s++)a.when(t[s]).done(function(){i.notify(++e,t.length)});a.when.apply(a,t).done(function(){i.resolveWith(null,arguments)})},e.prototype.getBackgroundImages=function(){for(var t=[],e=0;e<this.slider.realSlides.length;e++)t.push(this.slider.realSlides[e].background);return t},e.prototype.onResized=function(){this.onSlideDeviceChanged(this.slider.responsive.getDeviceMode()),this.deviceDeferred.resolve(),this.slider.sliderElement.on("SliderDevice",function(t,e){this.onSlideDeviceChanged(e.device)}.bind(this))},e.prototype.onStarterSlide=function(){1===this.lazyLoad?(this.preLoadSlides=this.preloadSlidesLazyNeighbor,this.loadWithProgress(this.preLoadSlides(this.slider.getVisibleSlides(this.slider.currentSlide)))):2===this.lazyLoad?(this.preLoadSlides=this._preLoadSlides,this.slider.stages.done("SlidesReady",function(){N2R("windowLoad",this.preLoadAll.bind(this))}.bind(this)),this.loadWithProgress(this.preLoadSlides(this.slider.getVisibleSlides(this.slider.currentSlide)))):(this.preLoadSlides=this._preLoadSlides,this.loadWithProgress(this.preLoadAll())),this.slider.sliderElement.on("visibleSlidesChanged",this.onVisibleSlidesChanged.bind(this))},e.prototype.onVisibleSlidesChanged=function(){(1===this.lazyLoad||2===this.lazyLoad)&&a.when.apply(a,this.preLoadSlides(this.slider.getVisibleSlides()))},e.prototype.onSlideDeviceChanged=function(t){this.device=t;for(var e=0;e<this.slider.visibleRealSlides.length;e++)this.slider.visibleRealSlides[e].background&&this.slider.visibleRealSlides[e].background.updateBackgroundToDevice(t)},e.prototype.preLoadAll=function(){for(var t=[],e=0;e<this.slider.visibleRealSlides.length;e++)t.push(this.slider.visibleRealSlides[e].preLoad());return t},e.prototype._preLoadSlides=function(t){var e=[];"[object Array]"!==Object.prototype.toString.call(t)&&(t=[t]);for(var i=0;i<t.length;i++)e.push(t[i].preLoad());return e},e.prototype.preloadSlidesLazyNeighbor=function(t){var e=this._preLoadSlides(t);if(this.lazyLoadNeighbor)for(var i=0,s=t[0].getPrevious(),n=t[t.length-1].getNext();i<this.lazyLoadNeighbor;)s&&(e.push(s.preLoad()),s=s.getPrevious()),n&&(e.push(n.preLoad()),n=n.getNext()),i++;var r,o=a.Deferred();return"resolved"!==e[0].state()?(r=setTimeout(function(){this.slider.load.showSpinner("backgroundImage"+t[0].index),r=null}.bind(this),50),a.when.apply(a,e).done(function(){r?(clearTimeout(r),r=null):this.slider.load.removeSpinner("backgroundImage"+t[0].index),setTimeout(function(){o.resolve()},100)}.bind(this))):setTimeout(function(){o.resolve()},100),e.push(o),e},e.prototype.hack=function(){for(var t=0;t<this.slider.realSlides.length;t++)this.slider.realSlides[t].background&&this.slider.realSlides[t].background.hack()},e}),N2D("CSSData",function(t,e){"use strict";function i(t,e){this.$=t,this.css=e}return i.prototype.flush=function(){this.$.css(this.css)},i}),N2D("FontSize",function(e,i){var s;return{toRem:function(t){return t/(s===i&&(s=e('<div style="font-size:10rem;"></div>').appendTo("body")),parseFloat(s.css("fontSize"))/10)+"rem"}}}),N2D("SmartSliderLoad",function(i,t){function e(t,e){this.parameters=i.extend({fade:1,scroll:0},e),this.deferred=i.Deferred(),this.slider=t,this.spinnerCouner=0,this.id=t.sliderElement.attr("id"),this.$window=i(window),this.spinner=i("#"+this.id+"-spinner"),this.$placeholder=i("#"+this.id+"-placeholder")}return e.prototype.start=function(){var i;this.parameters.scroll?(this.onScrollCallback=this.onScroll.bind(this),window.addEventListener("scroll",this.onScrollCallback,{capture:!0,passive:!0}),this.onScroll()):(this.parameters.fade&&(this.loadingArea=this.$placeholder,this.showSpinner("fadePlaceholder"),(i=this.spinner.find(".n2-ss-spinner-counter")).length&&(i.html("0%"),this.slider.stages.done("SlidesReady",function(){this.slider.backgrounds.loadDeferred.progress(function(t,e){i.html(Math.round(t/(e+1)*100)+"%")}.bind(this))}.bind(this)))),this.showSlider())},e.prototype.onScroll=function(){this.$window.scrollTop()+this.$window.height()>this.slider.sliderElement.offset().top+100&&(window.removeEventListener("scroll",this.onScrollCallback,{capture:!0,passive:!0}),this.showSlider())},e.prototype.loadLayerImages=function(){var t=i.Deferred();return this.slider.sliderElement.find(".n2-ss-layers-container").n2imagesLoaded().always(function(){t.resolve()}),t},e.prototype.showSlider=function(){this.slider.stages.done("ResizeFirst",this.stage1.bind(this))},e.prototype.stage1=function(){this.slider.responsive.isReadyToResize=!0,i.when.apply(i,this.slider.widgetDeferreds).done(this.stage2.bind(this))},e.prototype.stage2=function(){this.slider.responsive.doResize(),this.slider.finalizeStarterSlide(),i.when(this.slider.backgrounds.loadDeferred,this.loadLayerImages(),this.slider.stages.get("Fonts").getDeferred()).always(this.stage3.bind(this))},e.prototype.stage3=function(){this.slider.responsive.doResize(),this.slider.stages.resolve("BeforeShow"),this.slider.widgets.onReady(),this.slider.responsive.alignElement.addClass("n2-ss-align-visible"),this.slider.sliderElement.addClass("n2-ss-loaded").removeClass("n2notransition"),this.spinner.find(".n2-ss-spinner-counter").html(""),this.removeSpinner("fadePlaceholder"),this.$placeholder.remove(),this.loadingArea=this.slider.sliderElement,i(window).scroll(),this.slider.stages.resolve("Show"),this.slider.startVisibilityCheck()},e.prototype.showSpinner=function(t){0===this.spinnerCouner&&this.spinner.appendTo(this.loadingArea).css("display",""),this.spinnerCouner++},e.prototype.removeSpinner=function(t){this.spinnerCouner--,this.spinnerCouner<=0&&(this.spinner.detach(),this.spinnerCouner=0)},e}),N2D("SmartSliderPlugins",function(t,i){function s(t){this.slider=t,this.plugins={}}s.prototype.add=function(t,e){this.plugins[t]=new e(this.slider)},s.prototype.get=function(t){return this.plugins[t]||!1};var n={},r=[];return{addPlugin:function(t,e){for(var i=0;i<r.length;i++)r[i].plugins.add(t,e);n[t]=e},addSlider:function(t){if(t.plugins===i)for(var e in t.plugins=new s(t),n)t.plugins.add(e,n[e]);r.push(t)}}}),N2D("ScrollTracker",function(t,e,i){function s(){this.started=!1,this.items=[],this.onScrollCallback=this.onScroll.bind(this)}return s.prototype.add=function(t,e,i,s){s={$el:t,mode:e,onVisible:i,onHide:s,state:"unknown"};this.items.push(s),this._onScroll(s,Math.max(document.documentElement.clientHeight,window.innerHeight)),this.started||this.start()},s.prototype.start=function(){this.started||(window.addEventListener("scroll",this.onScrollCallback,{capture:!0,passive:!0}),this.started=!0)},s.prototype.onScroll=function(t){for(var e=Math.max(document.documentElement.clientHeight,window.innerHeight),i=0;i<this.items.length;i++)this._onScroll(this.items[i],e)},s.prototype._onScroll=function(t,e){var i=t.$el[0].getBoundingClientRect(),s=i.height>.7*e,n=!0;"partly-visible"===t.mode?(s&&(i.bottom<0||i.top>=i.height)||!s&&(i.bottom-i.height<0||0<=i.top-e+i.height))&&(n=!1):"not-visible"===t.mode&&(n=i.top-e<0&&0<i.top+i.height),!1===n?"hidden"!==t.state&&("function"==typeof t.onHide&&t.onHide(),t.state="hidden"):"visible"!==t.state&&("function"==typeof t.onVisible&&t.onVisible(),t.state="visible")},new s}),N2D("SmartSliderApi",function(a,s){function t(){this.sliders={},this.readys={},this.eventListeners={}}t.prototype.makeReady=function(t,e){if(this.sliders[t]=e,this.readys[t]!==s)for(var i=0;i<this.readys[t].length;i++)this.readys[t][i].call(e,e,e.sliderElement)},t.prototype.ready=function(t,e){this.sliders[t]!==s?e.call(this.sliders[t],this.sliders[t],this.sliders[t].sliderElement):(this.readys[t]===s&&(this.readys[t]=[]),this.readys[t].push(e))},t.prototype.on=function(t,e){this.eventListeners[t]===s&&(this.eventListeners[t]=[]),this.eventListeners[t].push(e)},t.prototype.off=function(t,e){if(this.eventListeners[t]!==s)for(var i=this.eventListeners[t].length-1;0<=i;i--)this.eventListeners[t][i]===e&&this.eventListeners[t].splice(i,1)},t.prototype.dispatch=function(t,e){if(this.eventListeners[t]!==s&&this.eventListeners[t].length)for(var i=this.eventListeners[t].length-1;0<=i;i--)this.eventListeners[t][i]&&this.eventListeners[t][i].call(e,e)},t.prototype.trigger=function(t,e,i){i&&i.preventDefault();var i=a(t),s=e.split(","),t=i.closest(".n2-ss-slide,.n2-ss-static-slide"),n=t.data("ss-last-event");i.data("ss-reset-events")||(i.data("ss-reset-events",1),t.on("layerAnimationPlayIn.resetCounter",function(t){t.data("ss-last-event","")}.bind(this,t)));for(var r=s.length-1,o=0;o<s.length;o++)s[o]===n&&(r=o);e=r===s.length-1?s[0]:s[r+1],t.data("ss-last-event",e),t.triggerHandler("ss"+e)},t.prototype.applyAction=function(t,e){var i;this.isClickAllowed(t)&&(i=t.currentTarget,(i=a(i).closest(".n2-ss-slider").data("ss"))[e].apply(i,Array.prototype.slice.call(arguments,2)))},t.prototype.applyActionWithClick=function(t){this.isClickAllowed(t)&&(nextend.shouldPreventClick||(t.preventDefault(),this.applyAction.apply(this,arguments)))},t.prototype.isClickAllowed=function(t){return!a.contains(t.currentTarget,a(t.target).closest('a[href!="#"], *[onclick][onclick!=""], *[data-n2click][data-n2click!=""], *[data-n2-lightbox]').get(0))},t.prototype.openUrl=function(t,e){var i;this.isClickAllowed(t)&&(t=(i=a(t.currentTarget)).data("href"),e===s&&(e=i.data("target")),"_blank"===e?((e=window.open()).opener=null,e.location=t):n2const.setLocation(t))};var n={focusOffsetTop:0,to:function(t){var e=a("html, body, .n2_iframe_application__content");"smooth"===a("html").css("scroll-behavior")?e.scrollTop(t):e.animate({scrollTop:t},window.n2ScrollSpeed||400)},top:function(){n.to(0)},bottom:function(){n.to(a(document).height()-a(window).height())},before:function(t){n.to(t.offset().top-a(window).height())},after:function(t){n.to(t.offset().top+t.height())},next:function(i,t){var t=a(t),s=-1;t.each(function(t,e){if(a(i).is(e)||a.contains(e,i))return s=t+1,!1}),-1!==s&&s<=t.length&&n.element(t.eq(s))},previous:function(i,t){var t=a(t),s=-1;t.each(function(t,e){if(a(i).is(e)||a.contains(e,i))return s=t-1,!1}),0<=s&&n.element(t.eq(s))},element:function(t){n.to(a(t).offset().top-n.focusOffsetTop)}};return t.prototype.scroll=function(t,e){var i;this.isClickAllowed(t)&&(t.preventDefault(),(i=this.findSliderByElement(t.target))&&(n.focusOffsetTop=i.responsive.focusOffsetTop),n[e].apply(window,Array.prototype.slice.call(arguments,2)))},t.prototype.findSliderByElement=function(t){return a(t).closest(".n2-ss-slider").data("ss")},window.n2ss=new t,window.n2ss}),N2D("SmartSliderAbstract",function($,undefined){function SmartSliderAbstract(t,e){this.editor=null,t instanceof $&&(t="#"+t.attr("id"));var i=t.substr(1);if(this.elementID=i,window[i]&&window[i]instanceof SmartSliderAbstract&&(!window[i].__$sliderElement||$.contains(document.body,window[i].__$sliderElement.get(0)))){if(window[i].sliderElement===undefined)return void console.error("Slider [#"+i+"] inited multiple times");if($.contains(document.body,window[i].sliderElement.get(0)))return void console.error("Slider [#"+i+"] embedded multiple times")}this.stages=new N2Classes.Stages,N2D(t,function(){return this}.bind(this)),this.isAdmin=!!e.admin,N2Classes.SmartSliderPlugins.addSlider(this),this.id=parseInt(i.replace("n2-ss-","")),window[i]=this,e.isDelayed!==undefined&&e.isDelayed?$(window).ready(function(){this.waitForExists(i,e)}.bind(this)):this.waitForExists(i,e)}SmartSliderAbstract.prototype.kill=function(){this.killed=!0;var e=this.sliderElement.attr("id"),t=$("#"+e+"-placeholder");t.length?t.remove():N2R("documentReady",function(t){t("#"+e+"-placeholder").remove()});t=this.sliderElement.closest(".n2-ss-margin");t.length?t.remove():N2R("documentReady",function(t){this.sliderElement.closest(".n2-ss-margin").remove()}.bind(this));t=this.sliderElement.closest(".n2-ss-align");t.length?t.remove():N2R("documentReady",function(t){this.sliderElement.closest(".n2-ss-align").remove()}.bind(this)),n2ss.makeReady(this.id,this)},SmartSliderAbstract.prototype.waitForExists=function(e,t){var i=$.Deferred(),s=function(){var t=$("#"+e);t.length?i.resolve(t):setTimeout(s,500)};i.done(this.onSliderExists.bind(this,e,t)),s()};var lazySliders=[];function lazySliderLoad(t,e){lazySliders.push({element:t.__$sliderElement.parent()[0],callback:e}),1===lazySliders.length&&(window.addEventListener("resize",lazySliderCheckScroll,{capture:!0}),window.addEventListener("scroll",lazySliderCheckScroll,{capture:!0,passive:!0}),N2Classes.SmartSliderApi.on("SliderResize",lazySliderCheckScroll),lazySliderCheckScroll())}function lazySliderCheckScroll(){for(var t,e=1.4*$(window).height(),i=0;i<lazySliders.length;i++)lazySliders[i].element.getBoundingClientRect().y<e&&(t=lazySliders[i].callback,lazySliders.splice(i,1),i--,t());0===lazySliders.length&&(window.removeEventListener("resize",lazySliderCheckScroll,{capture:!0}),window.removeEventListener("scroll",lazySliderCheckScroll,{capture:!0,passive:!0}),N2Classes.SmartSliderApi.off("SliderResize",lazySliderCheckScroll))}return SmartSliderAbstract.prototype.onSliderExists=function(t,e,i){var s,n;this.__$sliderElement=i,this.stages.resolve("Exists"),"TEMPLATE"===i.prop("tagName")?(s=i.data("loading-type"),n=function(){var t=$(i.html());i.replaceWith(t),this.waitForDimension(t,e),$(window).triggerHandler("n2Rocket",[t])}.bind(this),"afterOnLoad"===s?N2R("windowLoad",lazySliderLoad.bind(this,this,n)):"afterDelay"===s?setTimeout(n,i.data("loading-delay")):n()):this.waitForDimension(i,e)},SmartSliderAbstract.prototype.waitForDimension=function(t,e){var i=function(){t.is(":visible")?this.onSliderHasDimension(t,e):setTimeout(i,200)}.bind(this);i()},SmartSliderAbstract.prototype.initCSS=function(){this.parameters.css&&$('<style type="text/css">'+this.parameters.css+"</style>").appendTo("head")},SmartSliderAbstract.prototype.onSliderHasDimension=function($sliderElement,parameters){this.stages.resolve("HasDimension"),this.killed=!1,this.isVisible=!0,n2const.isIE?$sliderElement.attr("data-ie",n2const.isIE):n2const.isEdge&&$sliderElement.attr("data-ie",n2const.isEdge),this.responsive=!1,this.mainAnimationLastChangeTime=0,this.currentSlide=null,this.currentRealSlide=null,this.staticSlides=[],this.slides=[],this.visibleRealSlides=[],this.visibleSlides=[],this.sliderElement=$sliderElement.data("ss",this),this.needBackgroundWrap=!1,this.blockCarousel=!1,this.parameters=$.extend({plugins:[],admin:!1,playWhenVisible:1,playWhenVisibleAt:.5,perspective:1e3,callbacks:"",autoplay:{},blockrightclick:!1,maintainSession:0,align:"normal",controls:{touch:"horizontal",keyboard:!1,mousewheel:!1,blockCarouselInteraction:1},hardwareAcceleration:!0,layerMode:{playOnce:0,playFirstLayer:1,mode:"skippable",inAnimation:"mainInEnd"},parallax:{enabled:0,mobile:0,horizontal:"mouse",vertical:"mouse",origin:"enter"},load:{},mainanimation:{},randomize:{randomize:0,randomizeFirst:0},responsive:{},lazyload:{enabled:0},postBackgroundAnimations:!1,initCallbacks:!1,dynamicHeight:0,titles:[],descriptions:[],backgroundParallax:{strength:0,tablet:0,mobile:0},alias:{id:0,smoothScroll:0,slideSwitch:0}},parameters),this.stages.resolve("Parameters"),this.disabled={layerAnimations:!1,layerSplitTextAnimations:!1,backgroundAnimations:!1,postBackgroundAnimations:!1},this.disableLayerAnimations!==undefined&&!0===this.disableLayerAnimations&&(this.disabled.layerAnimations=!0),n2const.isSamsungBrowser&&(this.disabled.layerSplitTextAnimations=!0,this.disabled.postBackgroundAnimations=!0),this.initCSS();try{eval(this.parameters.callbacks)}catch(e){console.error(e)}n2ss.makeReady(this.id,this),this.widgetDeferreds=[],this.sliderElement.on("addWidget",this.addWidget.bind(this)),this.isAdmin&&(this.changeTo=function(){}),this.load=new N2Classes.SmartSliderLoad(this,this.parameters.load),this.backgrounds=new N2Classes.SmartSliderBackgrounds(this),this.initSlides(),"function"==typeof this.parameters.initCallbacks&&this.parameters.initCallbacks.call(this,$),this.stages.done("VisibleSlides",this.onSlidesReady.bind(this)),this.initUI(),navigator.userAgent.match("UCBrowser")&&$("html").addClass("n2-ucbrowser")},SmartSliderAbstract.prototype.onSlidesReady=function(){this.stages.resolve("SlidesReady")},SmartSliderAbstract.prototype.initUI=function(){for(var i=0;i<this.realSlides.length;i++)this.realSlides[i].setNext(this.realSlides[i+1>this.realSlides.length-1?0:i+1]);this.widgets=new N2Classes.SmartSliderWidgets(this);var isHover=!1,hoverTimeout,eventName;if(this.sliderElement.on({universalenter:function(t){$(t.target).closest(".n2-full-screen-widget").length||(clearTimeout(hoverTimeout),isHover=!0,this.sliderElement.addClass("n2-hover"),this.widgets.setState("hover",!0))}.bind(this),universalleave:function(t){t.stopPropagation(),hoverTimeout=setTimeout(function(){isHover=!1,this.sliderElement.removeClass("n2-hover"),this.widgets.setState("hover",!1)}.bind(this),1e3)}.bind(this)}),this.parameters.carousel||this.initNotCarousel(),this.initHideArrow(),this.controls={},this.parameters.blockrightclick&&this.sliderElement.bind("contextmenu",function(t){t.preventDefault()}),this.initMainAnimation(),this.initResponsiveMode(),!this.killed){try{var removeHoverClassCB=function(){this.sliderElement.removeClass("n2-has-hover"),this.sliderElement[0].removeEventListener("touchstart",removeHoverClassCB,!!window.n2const.passiveEvents&&{passive:!0})}.bind(this);this.sliderElement[0].addEventListener("touchstart",removeHoverClassCB,!!window.n2const.passiveEvents&&{passive:!0})}catch(e){}this.initControls(),this.stages.resolve("UIReady"),this.isAdmin||(eventName="click",this.hasTouch()&&(eventName="n2click"),this.sliderElement.find("[data-n2click]").each(function(i,el){var el=$(el);el.on(eventName,function(e){eval(el.data("n2click"))})}),this.sliderElement.find("[data-n2middleclick]").on("mousedown",function(e){var el=$(this);2!=e.which&&4!=e.which||(e.preventDefault(),eval(el.data("n2middleclick")))})),this.load.start(),this.sliderElement.keypress(function(t){32!==t.charCode&&13!==t.charCode||($target=$(t.target).filter('[role="button"],[tabindex]').not("a,input,select,textarea"),$target.length&&(t.preventDefault(),$(t.target).click().triggerHandler("n2Activate")))}).on("mouseleave",function(t){$(t.currentTarget).blur()})}},SmartSliderAbstract.prototype.initSlides=function(){for(var t=this.sliderElement.find(".n2-ss-slide"),e=0;e<t.length;e++)this.slides.push(this.createSlide(t.eq(e),e));for(e=0;e<this.slides.length;e++)this.slides[e].init(),1===this.slides[e].$element.data("first")&&(this.originalRealStarterSlide=this.slides[e]);this.realSlides=this.slides,this.visibleSlides=this.slides,this.initSlidesEnd()},SmartSliderAbstract.prototype.initSlidesEnd=function(){this.afterRawSlidesReady(),this.stages.resolve("RawSlides"),this.randomize(this.realSlides),this.stages.resolve("RawSlidesOrdered"),this.initStaticSlides()},SmartSliderAbstract.prototype.initStaticSlides=function(){for(var t=this.sliderElement.find(".n2-ss-static-slide"),e=0;e<t.length;e++)this.staticSlides.push(new N2Classes.FrontendSliderStaticSlide(this,t.eq(e)))},SmartSliderAbstract.prototype.createSlide=function(t,e){return new N2Classes.FrontendSliderSlide(this,t,e)},SmartSliderAbstract.prototype.afterRawSlidesReady=function(){},SmartSliderAbstract.prototype.trigger=function(){this.sliderElement.triggerHandler.apply(this.sliderElement,arguments)},SmartSliderAbstract.prototype.publicTrigger=function(){this.trigger.apply(this,arguments),N2Classes.SmartSliderApi.dispatch(arguments[0],this)},SmartSliderAbstract.prototype.getVisibleSlides=function(t){return t===undefined&&(t=this.currentSlide),[t]},SmartSliderAbstract.prototype.getActiveSlides=function(t){return this.getVisibleSlides(t)},SmartSliderAbstract.prototype.findSlideBackground=function(t){return t.$element.find(".n2-ss-slide-background")},SmartSliderAbstract.prototype.getRealIndex=function(t){return t},SmartSliderAbstract.prototype.finalizeStarterSlide=function(){var t,e=this.originalRealStarterSlide;this.isAdmin?this.finalizeStarterSlideComplete(e):this.parameters.randomize.randomize&&this.parameters.randomize.randomizeFirst?(e=this.visibleRealSlides[Math.floor(Math.random()*this.visibleRealSlides.length)],this.finalizeStarterSlideComplete(e)):window["ss"+this.id]!==undefined?"object"==typeof window["ss"+this.id]?window["ss"+this.id].done(this.overrideStarterSlideIndex.bind(this)):this.overrideStarterSlideIndex(window["ss"+this.id]):!this.isAdmin&&this.parameters.maintainSession&&window.localStorage!==undefined?(t=window.localStorage.getItem("ss-"+this.id),this.overrideStarterSlideIndex(t),this.sliderElement.on("mainAnimationComplete",function(t,e,i,s){window.localStorage.setItem("ss-"+this.id,s)}.bind(this))):this.finalizeStarterSlideComplete(e)},SmartSliderAbstract.prototype.overrideStarterSlideIndex=function(t){var e;null!==t&&this.realSlides[t]&&(e=this.realSlides[t]),this.finalizeStarterSlideComplete(e)},SmartSliderAbstract.prototype.finalizeStarterSlideComplete=function(t){t!==undefined&&t.isVisible||(t=this.visibleRealSlides[0]),t!==undefined?this.finalizeStarterSlideComplete2(t):(this.hide(),this.sliderElement.one({SliderResize:function(){this.finalizeStarterSlideComplete(t)}.bind(this)}))},SmartSliderAbstract.prototype.finalizeStarterSlideComplete2=function(t){t!==this.originalRealStarterSlide&&this.originalRealStarterSlide!==undefined&&this.originalRealStarterSlide.unsetActive(),this.responsive.onStarterSlide(t),this.stages.resolve("StarterSlide")},SmartSliderAbstract.prototype.randomize=function(t){this.parameters.randomize.randomize&&this.shuffleSlides(t)},SmartSliderAbstract.prototype.shuffleSlides=function(t){t.sort(function(){return.5-Math.random()});for(var e=t[0].$element.parent(),i=0;i<t.length;i++)t[i].$element.appendTo(e),t[i].setIndex(i)},SmartSliderAbstract.prototype.addWidget=function(t,e){this.widgetDeferreds.push(e)},SmartSliderAbstract.prototype.started=function(t){this.stages.done("UIReady",t.bind(this))},SmartSliderAbstract.prototype.ready=function(t){this.stages.done("Show",t.bind(this))},SmartSliderAbstract.prototype.startVisibilityCheck=function(){!this.isAdmin&&this.parameters.playWhenVisible?(this.checkIfVisibleCallback=this.checkIfVisible.bind(this),$(window).on("resize.n2-ss-visible"+this.id,this.checkIfVisibleCallback),this.sliderElement.on("mouseover.n2-ss-visible",this._markVisible.bind(this)),window.addEventListener("scroll",this.checkIfVisibleCallback,{capture:!0,passive:!0}),this.checkIfVisible()):this.stages.resolve("Visible")},SmartSliderAbstract.prototype.checkIfVisible=function(){var t=this.parameters.playWhenVisibleAt,e=$(window).scrollTop(),i=$(window).height(),s=$(document).height(),n=this.sliderElement[0].getBoundingClientRect(),r=i*t/2,o=e+r,t=e+i-r;e<r&&(o*=e/r),s-r<e+i&&(t+=e+i-s+r);r=e+n.top,n=e+n.bottom;(this.isAdmin||r<=t&&o<=r||o<=n&&n<=t||r<=o&&t<=n)&&this._markVisible()},SmartSliderAbstract.prototype._markVisible=function(){this.sliderElement.off(".n2-ss-visible"),$(window).off(".n2-ss-visible"+this.id),window.removeEventListener("scroll",this.checkIfVisibleCallback,{capture:!0,passive:!0}),this.stages.resolve("Visible")},SmartSliderAbstract.prototype.visible=function(t){this.stages.done("Visible",t.bind(this))},SmartSliderAbstract.prototype.isPlaying=function(){return"ended"!==this.mainAnimation.getState()},SmartSliderAbstract.prototype.focus=function(t){var e=!1;if(this.responsive.parameters.focusUser&&!t&&(e=!0),e){var i=$(window).scrollTop(),s=this.responsive.focusOffsetTop,n=this.responsive.focusOffsetBottom,r=$(window).height(),o=this.sliderElement[0].getBoundingClientRect(),a=o.top-s,l=r-o.bottom-n,t=this.responsive.parameters.focusEdge,e="";"top-force"===t?e="top":"bottom-force"===t?e="bottom":a<=0&&l<=0||0<a&&0<l||(a<0?e="top"===t||"bottom"!==t&&-a<=l?"top":"bottom":l<0&&(e="top"!==t&&("bottom"===t||-l<=a)?"bottom":"top"));a=i;if("top"===e?a=i-s+o.top:"bottom"===e&&(a=i+n+o.bottom-r),a!==i)return this._scrollTo(a,Math.abs(i-a))}return!0},SmartSliderAbstract.prototype._scrollTo=function(t,e){var i=$.Deferred();return window.nextendScrollFocus=!0,$("html, body").animate({scrollTop:t},e,function(){i.resolve(),setTimeout(function(){window.nextendScrollFocus=!1},100)}.bind(this)),i},SmartSliderAbstract.prototype.isChangeCarousel=function(t){return"next"===t?this.currentSlide.index+1>=this.slides.length:"previous"===t&&this.currentSlide.index-1<0},SmartSliderAbstract.prototype.initNotCarousel=function(){this.realSlides[0].setPrevious(!1),this.realSlides[this.realSlides.length-1].setNext(!1)},SmartSliderAbstract.prototype.initHideArrow=function(){var i=function(t){this.widgets.setState("nonCarouselFirst",!this.getUIPreviousSlide(t)),this.widgets.setState("nonCarouselLast",!this.getUINextSlide(t))}.bind(this);this.stages.done("StarterSlide",function(){i(this.currentSlide),this.sliderElement.on("SliderResize",function(){i(this.currentSlide)}.bind(this))}.bind(this)),this.sliderElement.on("SlideWillChange",function(t,e){i(e)})},SmartSliderAbstract.prototype.next=function(t,e){var i=this.currentSlide.getNext();return!(!i||!this.getUINextSlide(this.currentSlide))&&this.changeTo(i.index,!1,t,e)},SmartSliderAbstract.prototype.previous=function(t,e){var i=this.getUIPreviousSlide(this.currentSlide);return!!i&&this.changeTo(i.index,!0,t,e)},SmartSliderAbstract.prototype.isChangePossible=function(t){var e,i=!1;return"next"===t?(e=this.currentSlide.getNext())&&(i=e.index):"previous"!==t||(t=this.currentSlide.getPrevious())&&(i=t.index),!1!==i&&i!==this.currentSlide.index},SmartSliderAbstract.prototype.nextCarousel=function(t,e){return!!this.next(t,e)||this.changeTo(this.getFirstSlide().index,!1,t,e)},SmartSliderAbstract.prototype.getFirstSlide=function(){return this.slides[0].isVisible?this.slides[0]:this.slides[0].getNext()},SmartSliderAbstract.prototype.getSlideCount=function(){for(var t=0,e=0;e<this.slides.length;e++)this.slides[e].isVisible&&t++;return t},SmartSliderAbstract.prototype.directionalChangeToReal=function(t){this.directionalChangeTo(t)},SmartSliderAbstract.prototype.directionalChangeTo=function(t){t>this.currentSlide.index?this.changeTo(t,!1):this.changeTo(t,!0)},SmartSliderAbstract.prototype.changeTo=function(i,s,n,r){if((i=parseInt(i))===this.currentSlide.index)return!1;if(!this.slides[i].isVisible)return console.error("this slide is not visible on this device"),!1;this.trigger("SlideWillChange",[this.slides[i]]);var o=$.now();return $.when($.when.apply($,this.backgrounds.preLoadSlides(this.getVisibleSlides(this.slides[i]))),this.focus(n)).done(function(){var t,e;i!==this.currentSlide.index&&this.mainAnimationLastChangeTime<=o&&(this.mainAnimationLastChangeTime=o,"ended"===(t=this.mainAnimation.getState())?(n===undefined&&(n=!1),e=this.mainAnimation,r!==undefined&&(e=r),this._changeTo(i,s,n,r),e.changeTo(this.currentSlide,this.slides[i],s,n),this._changeCurrentSlide(i)):"initAnimation"!==t&&"playing"!==t||(this.sliderElement.off(".fastChange").one("mainAnimationComplete.fastChange",function(){this.changeTo.call(this,i,s,n,r)}.bind(this)),this.mainAnimation.timeScale(2*this.mainAnimation.timeScale())))}.bind(this)),!0},SmartSliderAbstract.prototype.setCurrentRealSlide=function(t){this.currentRealSlide=this.currentSlide=t},SmartSliderAbstract.prototype._changeCurrentSlide=function(t){this.setCurrentRealSlide(this.slides[t]),this.sliderElement.triggerHandler("sliderChangeCurrentSlide")},SmartSliderAbstract.prototype._changeTo=function(t,e,i,s){},SmartSliderAbstract.prototype.revertTo=function(t,e){this.slides[e].unsetActive(),this.slides[t].setActive(),this._changeCurrentSlide(t),this.trigger("SlideWillChange",[this.slides[t]])},SmartSliderAbstract.prototype.forceSetActiveSlide=function(t){t.setActive()},SmartSliderAbstract.prototype.forceUnsetActiveSlide=function(t){t.unsetActive()},SmartSliderAbstract.prototype.updateInsideSlides=function(t){for(var e=0;e<this.slides.length;e++)this.slides[e].setInside(0<=t.indexOf(this.slides[e]))},SmartSliderAbstract.prototype.findSlideByElement=function(t){var e;for(t=$(t),e=0;e<this.realSlides.length;e++)if(1===this.realSlides[e].$element.has(t).length)return this.realSlides[e];for(e=0;e<this.staticSlides.length;e++)if(1===this.staticSlides[e].$element.has(t).length)return this.staticSlides[e];return!1},SmartSliderAbstract.prototype.findSlideIndexByElement=function(t){t=this.findSlideByElement(t);return t||-1},SmartSliderAbstract.prototype.initMainAnimation=function(){this.mainAnimation=!1},SmartSliderAbstract.prototype.initResponsiveMode=function(){},SmartSliderAbstract.prototype.hasTouch=function(){return"0"!=this.parameters.controls.touch},SmartSliderAbstract.prototype.initControls=function(){if(!this.parameters.admin){if(this.hasTouch())switch(this.parameters.controls.touch){case"vertical":new N2Classes.SmartSliderControlTouchVertical(this);break;case"horizontal":new N2Classes.SmartSliderControlTouchHorizontal(this)}this.parameters.controls.keyboard&&(this.controls.touch!==undefined?new N2Classes.SmartSliderControlKeyboard(this,this.controls.touch.axis):new N2Classes.SmartSliderControlKeyboard(this,"horizontal")),this.parameters.controls.mousewheel&&new N2Classes.SmartSliderControlMouseWheel(this),this.controlAutoplay=new N2Classes.SmartSliderControlAutoplay(this,this.parameters.autoplay),this.controlFullscreen=new N2Classes.SmartSliderControlFullscreen(this),this.parameters.alias.id&&new N2Classes.SmartSliderControlAlias(this,this.parameters.alias)}},SmartSliderAbstract.prototype.getSlideIndex=function(t){return t},SmartSliderAbstract.prototype.slideToID=function(t,e,i){for(var s=0;s<this.realSlides.length;s++)if(this.realSlides[s].id===t)return this.slide(this.getSlideIndex(s),e,i);var n=$('[data-id="'+t+'"]').closest(".n2-ss-slider");return!(!n.length||this.id!==n.data("ss").id)||(n.length?($("html, body").animate({scrollTop:n.offset().top},400),n.data("ss").slideToID(t,e,!0)):void 0)},SmartSliderAbstract.prototype.slide=function(t,e,i){return 0<=t&&t<this.slides.length&&(e===undefined?this.parameters.carousel&&this.currentSlide.index===this.slides.length-1&&0===t?this.next(i):this.currentSlide.index>t?this.changeTo(t,!0,i):this.changeTo(t,!1,i):this.changeTo(t,!e,i))},SmartSliderAbstract.prototype.hide=function(){this.isVisible&&(this.responsive.alignElement.addClass("n2-ss-slider-has-no-slide"),this.load.$placeholder.addClass("n2-ss-slider-has-no-slide"),this.isVisible=!1)},SmartSliderAbstract.prototype.show=function(){this.isVisible||(this.responsive.alignElement.removeClass("n2-ss-slider-has-no-slide"),this.load.$placeholder.removeClass("n2-ss-slider-has-no-slide"),$(window).scroll(),this.isVisible=!0)},SmartSliderAbstract.prototype.startAutoplay=function(){return this.controlAutoplay!==undefined&&(this.controlAutoplay.setState("pausedSecondary",0),!0)},SmartSliderAbstract.prototype.pauseAutoplay=function(){return this.controlAutoplay!==undefined&&(this.controlAutoplay.setState("pausedSecondary",1),!0)},SmartSliderAbstract.prototype.getAnimationAxis=function(){return"horizontal"},SmartSliderAbstract.prototype.getDirectionPrevious=function(){return n2const.isRTL()&&"horizontal"===this.getAnimationAxis()?"next":"previous"},SmartSliderAbstract.prototype.getDirectionNext=function(){return n2const.isRTL()&&"horizontal"===this.getAnimationAxis()?"previous":"next"},SmartSliderAbstract.prototype.previousWithDirection=function(){return this[this.getDirectionPrevious()]()},SmartSliderAbstract.prototype.nextWithDirection=function(){return this[this.getDirectionNext()]()},SmartSliderAbstract.prototype.getUIPreviousSlide=function(t){return t.getPrevious()},SmartSliderAbstract.prototype.getUINextSlide=function(t){return t.getNext()},SmartSliderAbstract}),N2D("Stages",function(r,e){function t(){this.stages={}}function i(t){this.n=t,this.d=r.Deferred()}return t.prototype.get=function(t){return this.stages[t]===e&&(this.stages[t]=new i(t)),this.stages[t]},t.prototype.resolve=function(t){this.get(t).resolve()},t.prototype.done=function(t,e){var i;if("string"==typeof t)i=this.get(t);else{for(var s=[],n=0;n<t.length;n++)s.push(this.get(t[n]).getDeferred());i=r.when.apply(r,s)}i.done(e)},t.prototype.resolved=function(t){return this.get(t).resolved()},i.prototype.getDeferred=function(){return this.d},i.prototype.resolve=function(){this.resolved()||(this.d.resolve(),this.d=!0)},i.prototype.done=function(t){!0===this.d?t():this.d.done(t)},i.prototype.resolved=function(){return!0===this.d||"resolved"===this.d.state()},t}),N2D("SmartSliderWidget",function(t,e){"use strict";function i(t){this.slider=t,this.slider.started(this.register.bind(this))}return i.prototype.register=function(){this.slider.widgets.has(this.key)||(this.slider.widgets.register(this.key,this),this.onStart())},i.prototype.onStart=function(){},i.prototype.isVisible=function(){return this.$widget.is(":visible")},i.prototype.calculateDimensions=function(t){this.isVisible()?(t[this.key+"width"]=this.$widget.outerWidth(),t[this.key+"height"]=this.$widget.outerHeight()):(t[this.key+"width"]=0,t[this.key+"height"]=0)},i.prototype.filterSliderVerticalCSS=function(t){},i}),N2D("SmartSliderWidgets",function($,undefined){function SmartSliderWidgets(t){this.slider=t,this.sliderElement=t.sliderElement,this.controls={previous:undefined,next:undefined,bullet:undefined,autoplay:undefined,indicator:undefined,bar:undefined,thumbnail:undefined,shadow:undefined,fullscreen:undefined,html:undefined},this.excludedSlides={},this.states={hover:!1,nonCarouselFirst:!1,nonCarouselLast:!1,currentSlideIndex:-1,singleSlide:!1}}return SmartSliderWidgets.prototype.register=function(t,e){this.controls[t]=e},SmartSliderWidgets.prototype.has=function(t){return this.controls[t]!==undefined},SmartSliderWidgets.prototype.setState=function(t,e){if(this.states[t]!=e){this.states[t]=e;var i=t.split(".");switch(i[0]){case"hide":this.onStateChangeSingle(i[1]);break;case"nonCarouselFirst":this.onStateChangeSingle(this.slider.getDirectionPrevious());break;case"nonCarouselLast":this.onStateChangeSingle(this.slider.getDirectionNext());break;default:this.onStateChangeAll()}}},SmartSliderWidgets.prototype.onStateChangeAll=function(){for(var t in this.controls)this.onStateChangeSingle(t)},SmartSliderWidgets.prototype.onStateChangeSingle=function(t){var e,i;this.controls[t]&&(e=!0,this.controls[t].$widget.hasClass("n2-ss-widget-display-hover")&&(e=this.states.hover),e&&(t===this.slider.getDirectionPrevious()&&this.states.nonCarouselFirst||t===this.slider.getDirectionNext()&&this.states.nonCarouselLast)&&(e=!1),e&&(i=t+"-"+(this.states.currentSlideIndex+1),this.excludedSlides[i]&&(e=!1)),e&&this.states["hide."+t]!==undefined&&this.states["hide."+t]&&(e=!1),e&&this.states.singleSlide&&("previous"!==t&&"next"!==t&&"bullet"!==t&&"autoplay"!==t&&"indicator"!==t||(e=!1)),this.controls[t].$widget.toggleClass("n2-ss-widget-hidden",!e))},SmartSliderWidgets.prototype.onReady=function(){this.slider.sliderElement.on("visibleSlidesChanged",function(){this.setState("singleSlide",this.slider.visibleSlides.length<=1)}.bind(this)),this.setState("singleSlide",this.slider.visibleSlides.length<=1),this.$vertical=this.sliderElement.find('[data-position="above"],[data-position="below"]').not(".nextend-shadow");var t,e,i=!1;for(t in this.controls)if(this.controls[t]!==undefined){var s=this.controls[t].$widget.attr("data-exclude-slides");if(s!==undefined){for(var n=s.split(","),r=n.length-1;0<=r;r--){var o=n[r].split("-");if(2===o.length){var a=parseInt(o[0]),l=parseInt(o[1]);if(a<=l)for(var h=a;h<=l;h++)n.push(h)}else n[r]=parseInt(n[r])}if(0<n.length){for(r=0;r<n.length;r++)this.excludedSlides[t+"-"+n[r]]=!0;i=!0}}}i&&((e=function(t,e){this.setState("currentSlideIndex",e.index)}.bind(this))(null,this.slider.currentRealSlide),this.slider.sliderElement.on("SlideWillChange",e)),this.variableElements={top:this.sliderElement.find("[data-sstop]"),right:this.sliderElement.find("[data-ssright]"),bottom:this.sliderElement.find("[data-ssbottom]"),left:this.sliderElement.find("[data-ssleft]")},this.slider.responsive.addFilter("SliderVerticalCSS",this.filterSliderVerticalCSS.bind(this)),this.forceLayoutComposition(),this.onStateChangeAll(),this.slider.stages.resolve("WidgetsReady")},SmartSliderWidgets.prototype.calculateDimensions=function(){for(var t in this.controls)this.controls[t]!==undefined?this.controls[t].calculateDimensions(this.slider.responsive.resizeContext):(this.slider.responsive.resizeContext[t+"width"]=0,this.slider.responsive.resizeContext[t+"height"]=0)},SmartSliderWidgets.prototype.getDimensions=function(){this.calculateDimensions();var t=$.extend(!0,{},this.slider.responsive.resizeContext);return t.width=t.sliderWidth,t.height=t.sliderHeight,t.outerwidth=this.sliderElement.parent().width(),t.outerheight=this.sliderElement.parent().height(),t.canvaswidth=t.slideWidth,t.canvasheight=t.slideHeight,t.paneWidth!==undefined&&(t.panewidth=t.paneWidth),t.margintop=t.marginright=t.marginbottom=t.marginleft=0,t},SmartSliderWidgets.prototype.dimensionsToVariables=function(t){var e,i="";for(e in t){var s=t[e];"number"==typeof s&&(i+="var "+e+" = "+s+";")}return i},SmartSliderWidgets.prototype.forceLayoutComposition=function(){for(var t=this.filterSliderVerticalCSS([]),e=0;e<t.length;e++)t[e].flush()},SmartSliderWidgets.prototype.filterSliderVerticalCSS=function(cssData){var temp,dimensions=this.getDimensions(),k,k;for(k in this.dimensions=dimensions,this.controls)this.controls[k]!==undefined&&this.controls[k].filterSliderVerticalCSS(cssData);for(k in eval(this.dimensionsToVariables(dimensions)),this.variableElements)for(var i=0;i<this.variableElements[k].length;i++){var el=this.variableElements[k].eq(i);try{var value=eval(el.data("ss"+k)),temp={};temp[k]=value+"px",cssData.push(new N2Classes.CSSData(el,temp))}catch(e){console.log(el," position variable: "+e.message+": ",el.data("ss"+k))}}return cssData},SmartSliderWidgets}),N2D("SmartSliderMainAnimationAbstract",function(i,t){function s(t,e){this.state="ended",this.isTouch=!1,this.isReverseAllowed=!0,this.isReverseEnabled=!1,this.reverseSlideIndex=null,this.isNoAnimation=!1,this.slider=t,this.parameters=i.extend({duration:1500,ease:"easeInOutQuint"},e),this.parameters.duration/=1e3,this.sliderElement=t.sliderElement,this.timeline=new NextendTimeline({paused:!0}),this.sliderElement.on("mainAnimationStart",function(t,e,i,s){this._revertCurrentSlideIndex=i,this._revertNextSlideIndex=s}.bind(this)),this.slider.stages.done("ResponsiveStart",this.init.bind(this))}return s.prototype.init=function(){this.responsive=this.slider.responsive},s.prototype.enableReverseMode=function(){this.isReverseEnabled=!0,this.reverseTimeline=new NextendTimeline({paused:!0}),this.slider.trigger("reverseModeEnabled",this.reverseSlideIndex)},s.prototype.disableReverseMode=function(){this.isReverseEnabled=!1},s.prototype.setTouch=function(t){this.isTouch=t},s.prototype.setTouchProgress=function(t){"ended"!==this.state&&(this.isReverseEnabled?0===t?(this.reverseTimeline.progress(0),this.timeline.progress(t,!1)):0<=t&&t<=1?(this.reverseTimeline.progress(0),this.timeline.progress(t)):t<0&&-1<=t&&(this.timeline.progress(0),this.reverseTimeline.progress(Math.abs(t))):t<=0?this.timeline.progress(Math.max(t,1e-6),!1):0<=t&&t<=1&&this.timeline.progress(t))},s.prototype.setTouchEnd=function(t,e,i){"ended"!=this.state&&(this.isReverseEnabled?this._setTouchEndWithReverse(t,e,i):this._setTouchEnd(t,e,i))},s.prototype._setTouchEnd=function(t,e,i){t&&0<e?(this.fixTouchDuration(this.timeline,e,i),this.timeline.play()):(this.revertCB(this.timeline),this.fixTouchDuration(this.timeline,1-e,i),this.timeline.reverse(),this.willRevertTo(this._revertCurrentSlideIndex,this._revertNextSlideIndex))},s.prototype._setTouchEndWithReverse=function(t,e,i){t?e<0&&0<this.reverseTimeline.totalDuration()?(this.fixTouchDuration(this.reverseTimeline,e,i),this.reverseTimeline.play(),this.willRevertTo(this.reverseSlideIndex,this._revertNextSlideIndex)):(this.willCleanSlideIndex(this.reverseSlideIndex),this.fixTouchDuration(this.timeline,e,i),this.timeline.play()):(e<0?(this.revertCB(this.reverseTimeline),this.fixTouchDuration(this.reverseTimeline,1-e,i),this.reverseTimeline.reverse()):(this.revertCB(this.timeline),this.fixTouchDuration(this.timeline,1-e,i),this.timeline.reverse()),this.willCleanSlideIndex(this.reverseSlideIndex),this.willRevertTo(this._revertCurrentSlideIndex,this._revertNextSlideIndex))},s.prototype.fixTouchDuration=function(t,e,i){var s=t.totalDuration(),e=Math.max(s/3,Math.min(s,i/Math.abs(e)/1e3));e!==s&&t.totalDuration(e)},s.prototype.getState=function(){return this.state},s.prototype.timeScale=function(){return 0<arguments.length?(this.timeline.timeScale(arguments[0]),this):this.timeline.timeScale()},s.prototype.changeTo=function(e,i,t,s){this.slider.parameters.dynamicHeight&&this._dynamicHeightTimeline&&this._dynamicHeightTimeline.pause(),this._initAnimation(e,i,t),this.state="initAnimation",this.timeline.paused(!0),this.timeline.eventCallback("onStart",this.onChangeToStart,[e,i,s],this),this.timeline.eventCallback("onComplete",this.onChangeToComplete,[e,i,s],this),this.timeline.eventCallback("onReverseComplete",null),this.revertCB=function(t){t.eventCallback("onReverseComplete",this.onReverseChangeToComplete,[i,e,s],this)}.bind(this),this.isTouch||this.timeline.play()},s.prototype.willRevertTo=function(t,e){this.slider.trigger("mainAnimationWillRevertTo",[t,e]),this.sliderElement.one("mainAnimationComplete",this.revertTo.bind(this,t,e))},s.prototype.revertTo=function(t,e){this.slider.revertTo(t,e),this.slider.slides[e].triggerHandler("mainAnimationStartInCancel")},s.prototype.willCleanSlideIndex=function(t){this.sliderElement.one("mainAnimationComplete",this.cleanSlideIndex.bind(this,t))},s.prototype.cleanSlideIndex=function(){},s.prototype._initAnimation=function(t,e,i){this.slider.updateInsideSlides([t,e])},s.prototype.onChangeToStart=function(t,e,i){this.state="playing";i=[this,t.index,e.index,i];this.slider.trigger("mainAnimationStart",i),t.triggerHandler("mainAnimationStartOut",i),e.triggerHandler("mainAnimationStartIn",i)},s.prototype.onChangeToComplete=function(t,e,i){var s=[this,t.index,e.index,i];this.clearTimelines(),this.disableReverseMode(),t.triggerHandler("mainAnimationCompleteOut",s),e.triggerHandler("mainAnimationCompleteIn",s),this.state="ended",this.slider.parameters.dynamicHeight&&(this._dynamicHeightTimeline=new NextendTimeline,this.slider.responsive.resizeStage2HeightAnimated(this._dynamicHeightTimeline,e,.6),this._dynamicHeightTimeline.eventCallback("onComplete",function(){delete this._dynamicHeightTimeline},this)),this.slider.updateInsideSlides([e]),i||e.focus(),this.slider.trigger("mainAnimationComplete",s)},s.prototype.onReverseChangeToComplete=function(t,e,i){s.prototype.onChangeToComplete.apply(this,arguments)},s.prototype.clearTimelines=function(){this.revertCB=function(){},this.timeline.clear(),this.timeline.timeScale(1)},s.prototype.getEase=function(){return this.isTouch?"linear":this.parameters.ease},s}),N2D("SmartSliderControlAlias",function(s,e){"use strict";function t(t,e){var i="#"+t.elementID;this.elements={sliderSelector:i,$slider:s(i),$sliderAlign:s(i+"-align")},this.parameters=s.extend({slider:t,slideCount:t.slides.length,alias:s(i).data("alias"),href:window.location.href},e),this.parameters.anchor=this.getAnchor(),this.parameters.alias&&(this.createElement(this.parameters.alias),this.initSmoothScroll(),this.parameters.slideSwitch&&(this.switchOnLoad(),this.switchOnClick()))}return t.prototype.getAnchor=function(){var t={hasAnchor:0},e=window.location.hash.substr(1);return e&&(e===this.parameters.alias||this.parameters.slideSwitch&&-1<e.indexOf(this.parameters.alias)?t.hasAnchor=1:this.parameters.href=this.parameters.href.replace("#"+e,""),-1<e.indexOf("-")&&(e=e.split("-"),t.number=e[e.length-1])),t},t.prototype.switchOnLoad=function(){var t;this.createAnchorElements(),this.parameters.anchor.hasAnchor&&((t=this.parameters.anchor.number)===e&&this.parameters.slideSwitch&&(t=this.getParameterNumber()),null!==t&&(t--,window["ss"+this.parameters.slider.id]=t,N2R("windowLoad",function(t){this.smoothScrollTo(this.elements.$slider),this.replaceHash()}.bind(this))))},t.prototype.switchOnClick=function(){N2R("windowLoad",function(){s(window).on("hashchange",function(){var t=this.getAnchor();t.hasAnchor&&(this.switchToSlide(t.number-1),this.replaceHash())}.bind(this))}.bind(this))},t.prototype.replaceHash=function(){var t="#"+this.parameters.alias;history.replaceState?history.replaceState(null,null,t):location.hash=t},t.prototype.switchToSlide=function(i){N2R(this.elements.sliderSelector,function(t,e){e.slide(i)})},t.prototype.createAnchorElements=function(){if(this.parameters.scroll)for(var t=1;t<this.parameters.slideCount+1;t++)this.createElement(this.parameters.alias+"-"+t)},t.prototype.createElement=function(t){s("<div></div>").attr("id",t).css({height:0,lineHeight:0,minHeight:0,margin:0,padding:0}).insertBefore(this.elements.$sliderAlign)},t.prototype.initSmoothScroll=function(){this.parameters.smoothScroll&&s("html").css("scroll-behavior","smooth")},t.prototype.getParameterNumber=function(){var s={};return this.parameters.href.replace(/[?&]+([^=&]+)=([^&]*)/gi,function(t,e,i){s[e]=i}),s[this.parameters.alias]!==e?parseInt(s[this.parameters.alias]):null},t.prototype.smoothScrollTo=function(t){this.parameters.scroll&&this.parameters.smoothScroll&&s("html, body").animate({scrollTop:t.offset().top},this.parameters.scrollSpeed)},t}),N2D("SmartSliderControlAutoplay",function(i,s){"use strict";function t(t,e){this.slider=t,this.state={enabled:1,paused:1,pausedSecondary:0,mainAnimationPlaying:0,wait:0},this.wait=new N2Classes.SmartSliderControlAutoplayWait(this),this._currentCount=1,this.autoplayToSlide=0,this.autoplayToSlideIndex=-1,this.parameters=i.extend({enabled:0,start:1,duration:8e3,autoplayLoop:0,allowReStart:0,pause:{mouse:"enter",click:!0,mediaStarted:!0},resume:{click:0,mouse:0,mediaEnded:!0},interval:1,intervalModifier:"loop",intervalSlide:"current"},e),this.clickHandled=!1,(t.controls.autoplay=this).parameters.enabled?(this.parameters.duration/=1e3,this.slider.visible(this.onReady.bind(this))):this.disable()}return t.prototype.preventClickHandle=function(){this.clickHandled=!0,setTimeout(function(){this.clickHandled=!1}.bind(this),300)},t.prototype.onReady=function(){this.timeline=NextendTween.to({_progress:0},this.getSlideDuration(this.slider.currentSlide.index),{_progress:1,paused:!0,onComplete:this.next.bind(this)}),this.slider.sliderElement.on({"BeforeCurrentSlideChange.autoplay":function(){this.wait.resolveWeak(),this.setState("mainAnimationPlaying",1)}.bind(this),"CurrentSlideChanged.autoplay":function(t,e){this.timeline.duration(this.getSlideDuration(e.index)),this.timeline.pause(0,!1),this.setState("mainAnimationPlaying",0)}.bind(this),"mainAnimationStart.autoplay":function(){this._currentCount++,this.wait.resolveWeak(),this.setState("mainAnimationPlaying",1)}.bind(this),"mainAnimationComplete.autoplay":function(t,e,i,s){this.timeline.duration(this.getSlideDuration(s)),this.timeline.pause(0,!1),this.setState("mainAnimationPlaying",0)}.bind(this),"autoplayPause.autoplay":function(){this.setState("paused",1)}.bind(this),"autoplayResume.autoplay":function(t,e){(this.state.paused||0===parseInt(this.parameters.start)&&0===parseInt(this.state.paused))&&(this._currentCount=1),this.setState("pausedSecondary",0),this.setState("paused",0),e!==s&&this.timeline.progress(e)}.bind(this)}),this.initClick(this.parameters.pause.click,this.parameters.resume.click),this.initHover(this.parameters.pause.mouse,this.parameters.resume.mouse),this.initMedia(this.parameters.pause.mediaStarted,this.parameters.resume.mediaEnded),this.slider.stages.resolve("AutoplayReady"),this.slider.trigger("autoplay",0),this.parameters.start||this.setState("pausedSecondary",1),this.setState("paused",0)},t.prototype.setState=function(t,e){this.state[t]!==e&&(this.state[t]=e,this.timeline!==s&&(!this.state.enabled||this.state.paused||this.state.pausedSecondary||this.state.wait||this.state.mainAnimationPlaying?(this.timeline.paused()||this.timeline.pause(),this.state.mainAnimationPlaying||this.isPaused!==s&&this.isPaused||(this.isPaused=!0,this.slider.trigger("autoplayPaused"))):(this.timeline.paused()&&this.timeline.play(),this.isPaused!==s&&!this.isPaused||(this.isPaused=!1,this.slider.trigger("autoplayStarted")))))},t.prototype.initClick=function(e,i){(e||i)&&this.slider.sliderElement.on("universalclick.autoplay",function(t){this.clickHandled||(this.state.pausedSecondary?i&&this.setState("pausedSecondary",0):e&&this.setState("pausedSecondary",1))}.bind(this))},t.prototype.initHover=function(e,i){var s;(e||i)&&(s=!1,this.slider.sliderElement.on({"touchend.autoplay":function(){s=!0,setTimeout(function(){s=!1},300)},"mouseenter.autoplay":function(t){this.state.pausedSecondary?"enter"===i&&this.setState("pausedSecondary",0):s||"enter"!==e||this.setState("pausedSecondary",1)}.bind(this),"mouseleave.autoplay":function(t){this.state.pausedSecondary?"leave"===i&&this.setState("pausedSecondary",0):"leave"===e&&this.setState("pausedSecondary",1)}.bind(this)}))},t.prototype.initMedia=function(t,e){var i=this.slider.sliderElement;t?i.on({"mediaStarted.autoplay":function(t,e){this.wait.add(e)}.bind(this),"mediaEnded.autoplay":function(t,e){this.wait.resolve(e)}.bind(this)}):e&&i.on({"mediaEnded.autoplay":function(){this.setState("pausedSecondary",0)}.bind(this)})},t.prototype.enableProgress=function(){this.timeline&&this.timeline.eventCallback("onUpdate",function(){this.slider.trigger("autoplay",this.timeline.progress())}.bind(this))},t.prototype.next=function(){if(this.timeline.pause(),!this.parameters.autoplayLoop){switch(this.parameters.intervalModifier){case"slide":this.slideSwitchingSlideCount();break;case"slideindex":this.slideSwitchingIndex();break;default:this.slideSwitchingLoop()}0<this.autoplayToSlide&&this._currentCount>=this.autoplayToSlide&&this.limitAutoplay(),0<=this.autoplayToSlideIndex&&this.slider.slides.length===this.slider.visibleSlides.length&&(this.autoplayToSlideIndex===this.slider.currentRealSlide.index+2||1===this.autoplayToSlideIndex&&this.slider.currentRealSlide.index+this.autoplayToSlideIndex===this.slider.slides.length)&&this.limitAutoplay()}this.slider.nextCarousel(!0)},t.prototype.slideSwitchingLoop=function(){this.autoplayToSlide=this.parameters.interval*this.slider.visibleSlides.length-1,"next"===this.parameters.intervalSlide&&this.autoplayToSlide++},t.prototype.slideSwitchingSlideCount=function(){this.autoplayToSlide=this.parameters.interval},t.prototype.slideSwitchingIndex=function(){var t=Math.max(1,this.parameters.interval);t>this.slider.slides.length&&(t=1),this.autoplayToSlideIndex=t},t.prototype.limitAutoplay=function(){this.parameters.allowReStart?(this._currentCount=0,this.setState("paused",1)):this.disable()},t.prototype.disable=function(){this.setState("enabled",0),this.slider.sliderElement.off(".autoplay"),this.slider.stages.resolve("AutoplayDestroyed")},t.prototype.getSlideDuration=function(t){var e=this.slider.realSlides[this.slider.getRealIndex(t)],t=e.minimumSlideDuration;return 0===parseInt(e.minimumSlideDuration)&&(t=this.parameters.duration),t},t}),N2D("SmartSliderControlFullscreen",function(s,t){"use strict";function e(t,e,i){this.slider=t,this.responsive=this.slider.responsive,this._type=this.responsive.parameters.type,this._forceFull=this.responsive.parameters.forceFull,this.forceFullpage="auto"==this._type||"fullwidth"==this._type||"fullpage"==this._type,this.forceFullpage&&(this._upscale=this.responsive.parameters.upscale),this.isFullScreen=!1,this.fullParent=this.slider.sliderElement.closest(".n2-ss-align"),this.browserSpecific={};t=this.slider.sliderElement[0];t.requestFullscreen?(this.browserSpecific.requestFullscreen="requestFullscreen",this.browserSpecific.event="fullscreenchange"):t.msRequestFullscreen?(this.browserSpecific.requestFullscreen="msRequestFullscreen",this.browserSpecific.event="MSFullscreenChange"):t.mozRequestFullScreen?(this.browserSpecific.requestFullscreen="mozRequestFullScreen",this.browserSpecific.event="mozfullscreenchange"):t.webkitRequestFullscreen?(this.browserSpecific.requestFullscreen="webkitRequestFullscreen",this.browserSpecific.event="webkitfullscreenchange"):(this.browserSpecific.requestFullscreen="nextendRequestFullscreen",this.browserSpecific.event="nextendfullscreenchange",this.fullParent[0][this.browserSpecific.requestFullscreen]=function(){this.fullParent.css({position:"fixed",left:0,top:0,width:"100%",height:"100%",backgroundColor:"#000",zIndex:1e6}),document.fullscreenElement=this.fullParent[0],this.triggerEvent(document,this.browserSpecific.event),s(window).trigger("resize")}.bind(this)),document.exitFullscreen?this.browserSpecific.exitFullscreen="exitFullscreen":document.msExitFullscreen?this.browserSpecific.exitFullscreen="msExitFullscreen":document.mozCancelFullScreen?this.browserSpecific.exitFullscreen="mozCancelFullScreen":document.webkitExitFullscreen?this.browserSpecific.exitFullscreen="webkitExitFullscreen":(this.browserSpecific.exitFullscreen="nextendExitFullscreen",this.fullParent[0][this.browserSpecific.exitFullscreen]=function(){this.fullParent.css({position:"",left:"",top:"",width:"",height:"",backgroundColor:"",zIndex:""}),document.fullscreenElement=null,this.triggerEvent(document,this.browserSpecific.event)}.bind(this)),document.addEventListener(this.browserSpecific.event,this.fullScreenChange.bind(this))}return e.prototype.switchState=function(){this.isFullScreen=!this.isFullScreen,this.isFullScreen?this._fullScreen():this._normalScreen()},e.prototype.requestFullscreen=function(){return!this.isFullScreen&&(this.isFullScreen=!0,this._fullScreen(),!0)},e.prototype.exitFullscreen=function(){return!!this.isFullScreen&&(this.isFullScreen=!1,this._normalScreen(),!0)},e.prototype.triggerEvent=function(t,e){var i;document.createEvent?(i=document.createEvent("HTMLEvents")).initEvent(e,!0,!0):document.createEventObject&&((i=document.createEventObject()).eventType=e),i.eventName=e,t.dispatchEvent?t.dispatchEvent(i):t.fireEvent&&htmlEvents["on"+e]?t.fireEvent("on"+i.eventType,i):t[e]?t[e]():t["on"+e]&&t["on"+e]()},e.prototype._fullScreen=function(){this.forceFullpage&&(this.responsive.isFullScreen=!0,this.responsive.parameters.type="fullpage",this.responsive.parameters.upscale=!0,this.responsive.parameters.forceFull=!1,this._marginLeft=this.responsive.containerElement[0].style.marginLeft,this.responsive.containerElement.css(n2const.rtl.marginLeft,0)),this.fullParent.css({width:"100%",height:"100%",backgroundColor:s("body").css("background-color")}).addClass("n2-ss-in-fullscreen"),this.fullParent.get(0)[this.browserSpecific.requestFullscreen]()},e.prototype._normalScreen=function(){document[this.browserSpecific.exitFullscreen]?document[this.browserSpecific.exitFullscreen]():this.fullParent[0][this.browserSpecific.exitFullscreen]&&this.fullParent[0][this.browserSpecific.exitFullscreen]()},e.prototype.fullScreenChange=function(){this.isDocumentInFullScreenMode()?(this.slider.trigger("n2FullScreen"),s("html").addClass("n2-in-fullscreen"),this.isFullScreen=!0,s(window).trigger("resize")):this.forceFullpage&&(this.responsive.isFullScreen=!1,this.responsive.parameters.type=this._type,this.responsive.parameters.upscale=this._upscale,this.responsive.parameters.forceFull=this._forceFull,this.responsive.containerElement.css(n2const.rtl.marginLeft,this._marginLeft),this.fullParent.css({width:"",height:"",backgroundColor:""}).removeClass("n2-ss-in-fullscreen"),s("html").removeClass("n2-in-fullscreen"),s(window).trigger("resize"),this.isFullScreen=!1,this.slider.trigger("n2ExitFullScreen"))},e.prototype.isDocumentInFullScreenMode=function(){return document.fullscreenElement&&null!==document.fullscreenElement||document.msFullscreenElement&&null!==document.msFullscreenElement||document.mozFullScreen||document.webkitIsFullScreen},e}),N2D("SmartSliderControlKeyboard",function(s,t){"use strict";var n;function r(){this.controls=[],document.addEventListener("keydown",this.onKeyDown.bind(this)),document.addEventListener("mousemove",this.onMouseMove.bind(this),{capture:!0})}function o(t,e,i){this.slider=t,this.parameters=s.extend({},i),this.parseEvent="vertical"===e?o.prototype.parseEventVertical:o.prototype.parseEventHorizontal,(n=n||new r).addControl(this),this.slider.sliderElement.on("SliderKeyDown",this.onKeyDown.bind(this)),t.controls.keyboard=this}return r.prototype.onMouseMove=function(t){this.mouseEvent=t},r.prototype.addControl=function(t){this.controls.push(t)},r.prototype.onKeyDown=function(t){var e;if(t.target.tagName.match(/BODY|DIV|IMG/)&&!t.target.isContentEditable)if(this.mouseEvent&&(e=this.findSlider(document.elementFromPoint(this.mouseEvent.clientX,this.mouseEvent.clientY))))e.trigger("SliderKeyDown",t);else if(document.activeElement!==document.body&&(e=this.findSlider(document.activeElement)))e.trigger("SliderKeyDown",t);else for(var i=0;i<this.controls.length;i++)this.controls[i].onKeyDown(!1,t)},r.prototype.findSlider=function(t){var t=s(t),t=t.hasClass("n2-ss-slider")?t:t.closest(".n2-ss-slider");return!!t.length&&t},o.prototype.isSliderOnScreen=function(){var t=this.slider.sliderElement.offset(),e=s(window).scrollTop(),i=this.slider.sliderElement.height();return t.top+.5*i>=e&&t.top-.5*i<=e+s(window).height()},o.prototype.onKeyDown=function(t,e){!e.defaultPrevented&&this.isSliderOnScreen()&&this.parseEvent.call(this,e)&&e.preventDefault()},o.prototype.parseEventHorizontal=function(t){switch(t.keyCode){case 39:return n2const.activeElementBlur(),this.slider[n2const.isRTL()?"previous":"next"](),!0;case 37:return n2const.activeElementBlur(),this.slider[n2const.isRTL()?"next":"previous"](),!0;default:return!1}},o.prototype.parseEventVertical=function(t){switch(t.keyCode){case 40:return this.slider.isChangeCarousel("next")&&this.slider.parameters.controls.blockCarouselInteraction?!1:(n2const.activeElementBlur(),this.slider.next(),!0);case 38:return this.slider.isChangeCarousel("previous")&&this.slider.parameters.controls.blockCarouselInteraction?!1:(n2const.activeElementBlur(),this.slider.previous(),!0);default:return!1}},o}),N2D("SmartSliderControlMouseWheel",function(s,t){"use strict";function e(t){this.preventScroll={local:!1,curve:!1,curveGlobal:!1,global:!1,localTimeout:!1,curveTimeout:!1,curveGlobalTimeout:!1,globalTimeout:!1},this.maxDelta=0,this.slider=t,document.addEventListener("wheel",this.onGlobalMouseWheel.bind(this),{passive:!1}),t.controls.mouseWheel=this}return e.prototype.hasScrollableParentRecursive=function(t,e){if(e===this.slider.sliderElement[0])return!1;if(e.scrollHeight>e.clientHeight){var i=s(e).css("overflow");if("hidden"!==i&&"visible"!==i)if(t){if(0<e.scrollTop)return!0}else if(e.scrollTop+e.clientHeight<e.scrollHeight)return!0}return this.hasScrollableParentRecursive(t,e.parentNode)},e.prototype.onGlobalMouseWheel=function(t){this.onCurveEvent(t),this.preventScroll.local||this.preventScroll.curve||Math.abs(t.deltaY)<this.maxDelta/2?t.preventDefault():(this.preventScroll.global&&t.preventDefault(),this.slider.sliderElement[0]!==t.target&&!s.contains(this.slider.sliderElement[0],t.target)||t.shiftKey||this.hasScrollableParentRecursive(t.deltaY<0,t.target)||this.onMouseWheel(t))},e.prototype.onMouseWheel=function(t){t.deltaY<0?this.slider.isChangeCarousel("previous")&&this.slider.parameters.controls.blockCarouselInteraction||(this.slider.previous(),t.preventDefault(),this.startCurveWatcher(t),this.local(),this.global()):this.slider.isChangeCarousel("next")&&this.slider.parameters.controls.blockCarouselInteraction||(this.slider.next(),t.preventDefault(),this.startCurveWatcher(t),this.local(),this.global())},e.prototype.startCurveWatcher=function(t){!1!==this.preventScroll.curve&&clearTimeout(this.preventScroll.curveTimeout),this.preventScroll.curveGlobal||(this.dynamicDelta=!1,this.lastDeltaY=t.deltaY,this.preventScroll.curveGlobal=!0,this.preventScroll.curveGlobalTimeout=setTimeout(s.proxy(function(){this.preventScroll.curveGlobal=!1,this.maxDelta=0},this),500)),this.preventScroll.curve=!0,this.preventScroll.curveTimeout=setTimeout(s.proxy(this.releaseCurveLock,this),5e3)},e.prototype.onCurveEvent=function(t){this.preventScroll.curveGlobal&&(this.dynamicDelta||this.lastDeltaY===t.deltaY||(this.lastDeltaY=t.deltaY,this.dynamicDelta=!0),t=Math.abs(t.deltaY),this.preventScroll.curve&&this.maxDelta/2>t&&this.releaseCurveLock(),this.maxDelta=Math.max(this.maxDelta,t),this.preventScroll.curveGlobalTimeout&&clearTimeout(this.preventScroll.curveGlobalTimeout),this.preventScroll.curveGlobalTimeout=setTimeout(s.proxy(function(){this.preventScroll.curveGlobal=!1,this.maxDelta=0},this),500))},e.prototype.releaseCurveLock=function(){this.preventScroll.curve=!1,clearTimeout(this.preventScroll.curveTimeout)},e.prototype.local=function(){!1!==this.preventScroll.local&&clearTimeout(this.preventScroll.localTimeout),this.preventScroll.local=!0,this.preventScroll.localTimeout=setTimeout(function(){this.preventScroll.local=!1,this.dynamicDelta||this.releaseCurveLock()}.bind(this),1e3)},e.prototype.global=function(){!1!==this.preventScroll.global&&clearTimeout(this.preventScroll.globalTimeout),this.preventScroll.global=!0,this.preventScroll.globalTimeout=setTimeout(function(){this.preventScroll.global=!1}.bind(this),2e3)},e}),N2D("SmartSliderControlTouch",function(e,t){"use strict";function i(t){this.slider=t,this.minDistance=10,this.interactiveDrag=!0,this.preventMultipleTap=!1,this._animation=t.mainAnimation,this.swipeElement=this.slider.sliderElement.find("> .n2_ss__touch_element"),this.$window=e(window),t.controls.touch=this,t.stages.done("StarterSlide",this.onStarterSlide.bind(this)),t.sliderElement.on("visibleSlidesChanged",this.onVisibleSlidesChanged.bind(this))}return i.prototype.onStarterSlide=function(){-1<navigator.userAgent.toLowerCase().indexOf("android")&&"1"!==this.swipeElement.parent().css("opacity")?this.swipeElement.parent().one("transitionend",this.initTouch.bind(this)):this.initTouch(),this.slider.sliderElement.on("sliderChangeCurrentSlide",this.updatePanDirections.bind(this))},i.prototype.onVisibleSlidesChanged=function(){this.swipeElement.toggleClass("n2-grab",1<this.slider.visibleSlides.length)},i.prototype.initTouch=function(){this._animation.isNoAnimation&&(this.interactiveDrag=!1),this.eventBurrito=N2Classes.EventBurrito(this.swipeElement.get(0),{mouse:!0,axis:"horizontal"===this.axis?"x":"y",start:this._start.bind(this),move:this._move.bind(this),end:this._end.bind(this)}),this.updatePanDirections(),this.cancelKineticScroll=function(){this.kineticScrollCancelled=!0}.bind(this)},i.prototype._start=function(t){this.currentInteraction={type:"pointerdown"===t.type?"pointer":"touchstart"===t.type?"touch":"mouse",state:e.extend({},this.state),action:"unknown",distance:[],distanceY:[],percent:0,progress:0,scrollTop:this.$window.scrollTop(),animationStartDirection:"unknown",hadDirection:!1},this.logDistance(0,0)},i.prototype._move=function(t,e,i,s){if(!s||"unknown"!==this.currentInteraction.action){this.currentInteraction.direction=this.measure(i);s=this.get(i);if((this.currentInteraction.hadDirection||Math.abs(s)>this.minDistance||Math.abs(i.y)>this.minDistance)&&(this.logDistance(s,i.y),this.currentInteraction.percent<1&&this.setTouchProgress(s,i.y),"touch"===this.currentInteraction.type&&t.cancelable&&("switch"!==this.currentInteraction.action&&"hold"!==this.currentInteraction.action||(this.currentInteraction.hadDirection=!0))),"switch"===this.currentInteraction.action)return!0}return!1},i.prototype._end=function(t,e,i,s){"switch"===this.currentInteraction.action&&(s=s?0:this.measureRealDirection(),this.interactiveDrag?(this._animation.timeline.progress()<1&&this._animation.setTouchEnd(s,this.currentInteraction.progress,i.time),this._animation.setTouch(!1)):s&&this.callAction(this.currentInteraction.animationStartDirection),this.swipeElement.removeClass("n2-grabbing")),this.onEnd(),delete this.currentInteraction,Math.abs(i.x)<10&&Math.abs(i.y)<10?this.onTap(t):nextend.preventClick()},i.prototype.onEnd=function(){var t,e,i,s,n;"scroll"===this.currentInteraction.action&&"pointer"===this.currentInteraction.type&&(t=this.currentInteraction.distanceY[0],e=this.currentInteraction.distanceY[this.currentInteraction.distanceY.length-1],i=(t.d-e.d)/(e.t-t.t)*10,s=Date.now(),n=function(){requestAnimationFrame(function(){var t;if(!this.kineticScrollCancelled&&i&&(t=Date.now()-s,1<(t=i*Math.exp(-t/325))||t<-1))return this.$window.scrollTop(this.$window.scrollTop()+t),void n();this.onEndKineticScroll()}.bind(this))}.bind(this),this.kineticScrollCancelled=!1,n(),document.addEventListener("pointerdown",this.cancelKineticScroll))},i.prototype.onEndKineticScroll=function(){delete this.kineticScrollCancelled,document.removeEventListener("pointerdown",this.cancelKineticScroll),e("html").css("scroll-behavior","")},i.prototype.setTouchProgress=function(t,e){this.recognizeSwitchInteraction();var i,s=this.getPercent(t);if(this.currentInteraction.percent=s,"switch"===this.currentInteraction.action){if(this.interactiveDrag){switch(this.currentInteraction.animationStartDirection){case"up":i=-1*s;break;case"down":i=s;break;case"left":i=-1*s;break;case"right":i=s}this.currentInteraction.progress=i,this._animation.setTouchProgress(i)}}else"unknown"!==this.currentInteraction.action&&"scroll"!==this.currentInteraction.action||this.startScrollInteraction(e)},i.prototype.startScrollInteraction=function(t){"vertical"!==this.axis&&!n2const.isEdge||this.slider.controlFullscreen.isFullScreen||(this.currentInteraction.action="scroll","pointer"===this.currentInteraction.type&&(e("html").css("scroll-behavior","auto"),this.$window.scrollTop(Math.max(0,this.currentInteraction.scrollTop-t))))},i.prototype.recognizeSwitchInteraction=function(){var t;"unknown"===this.currentInteraction.action&&1<this.slider.visibleSlides.length&&("ended"===this._animation.state?"unknown"!==(t=this.currentInteraction.direction)&&this.currentInteraction.state[t]&&(this.currentInteraction.animationStartDirection=t,this.interactiveDrag&&(this._animation.setTouch(this.axis),this.callAction(t,!1)),this.currentInteraction.action="switch",this.swipeElement.addClass("n2-grabbing")):"playing"===this._animation.state&&(this.currentInteraction.action="hold"))},i.prototype.logDistance=function(t,e){3<this.currentInteraction.distance.length&&(this.currentInteraction.distance.shift(),this.currentInteraction.distanceY.shift()),this.currentInteraction.distance.push({d:t,t:Date.now()}),this.currentInteraction.distanceY.push({d:e,t:Date.now()})},i.prototype.measureRealDirection=function(){var t=this.currentInteraction.distance[0],e=this.currentInteraction.distance[this.currentInteraction.distance.length-1];return 0<=e.d&&t.d>e.d||e.d<0&&t.d<e.d?0:1},i.prototype.onTap=function(t){this.preventMultipleTap||(e(t.target).trigger("n2click"),this.preventMultipleTap=!0,setTimeout(function(){this.preventMultipleTap=!1}.bind(this),500))},i.prototype.updatePanDirections=function(){},i.prototype.setState=function(t,e){"object"!=typeof arguments[0]&&((t={})[arguments[0]]=arguments[1],e=arguments[2]);var i,s=!1;for(i in t)this.state[i]!==t[i]&&(this.state[i]=t[i],s=!0);s&&e&&this.eventBurrito.supportsPointerEvents&&this.syncTouchAction()},i}),N2D("SmartSliderControlTouchHorizontal","SmartSliderControlTouch",function(t,e){"use strict";function i(){this.state={left:!1,right:!1},this.axis="horizontal",N2Classes.SmartSliderControlTouch.prototype.constructor.apply(this,arguments)}return((i.prototype=Object.create(N2Classes.SmartSliderControlTouch.prototype)).constructor=i).prototype.callAction=function(t,e){switch(t){case"left":return this.slider[n2const.isRTL()?"previous":"next"].call(this.slider,e);case"right":return this.slider[n2const.isRTL()?"next":"previous"].call(this.slider,e)}return!1},i.prototype.measure=function(t){return!this.currentInteraction.hadDirection&&Math.abs(t.x)<10||0===t.x||Math.abs(t.x)<Math.abs(t.y)?"unknown":t.x<0?"left":"right"},i.prototype.get=function(t){return t.x},i.prototype.getPercent=function(t){return Math.max(-.99999,Math.min(.99999,t/this.slider.responsive.resizeContext.sliderWidth))},i.prototype.updatePanDirections=function(){var t=this.slider.currentSlide.index,e=t+1<this.slider.slides.length,t=0<=t-1;this.slider.parameters.carousel&&(t=e=!0),n2const.isRTL()&&"vertical"!==this.slider.getAnimationAxis()?this.setState({right:e,left:t},!0):this.setState({right:t,left:e},!0)},i.prototype.syncTouchAction=function(){var t={"pan-y":!1,none:!1};n2const.isEdge?t.none=!0:(this.state.left&&(t["pan-y"]=!0),this.state.right&&(t["pan-y"]=!0));var e,i=[];for(e in t)t[e]&&i.push(e);this.swipeElement.css("touch-action",i.join(" ")),window.PointerEventsPolyfill&&this.swipeElement.attr("touch-action",i.join(" "))},i}),N2D("SmartSliderControlTouchVertical","SmartSliderControlTouch",function(t,e){"use strict";function i(){this.state={up:!1,down:!1},this.action={up:"next",down:"previous"},this.axis="vertical",N2Classes.SmartSliderControlTouch.prototype.constructor.apply(this,arguments)}return((i.prototype=Object.create(N2Classes.SmartSliderControlTouch.prototype)).constructor=i).prototype.callAction=function(t,e){switch(t){case"up":return this.slider.next.call(this.slider,e);case"down":return this.slider.previous.call(this.slider,e)}return!1},i.prototype.measure=function(t){return!this.currentInteraction.hadDirection&&Math.abs(t.y)<1||0==t.y||Math.abs(t.y)<Math.abs(t.x)?"unknown":t.y<0?"up":"down"},i.prototype.get=function(t){return t.y},i.prototype.getPercent=function(t){return Math.max(-.99999,Math.min(.99999,t/this.slider.responsive.resizeContext.sliderHeight))},i.prototype.updatePanDirections=function(){this.setState({down:!this.slider.isChangeCarousel("previous")||!this.slider.parameters.controls.blockCarouselInteraction,up:!this.slider.isChangeCarousel("next")||!this.slider.parameters.controls.blockCarouselInteraction},!0)},i.prototype.syncTouchAction=function(){var t={"pan-x":!1,none:!1};n2const.isEdge?t.none=!0:(this.state.up&&(t["pan-x"]=!0),this.state.down&&(t["pan-x"]=!0));var e,i=[];for(e in t)t[e]&&i.push(e);this.swipeElement.css("touch-action",i.join(" ")),window.PointerEventsPolyfill&&this.swipeElement.attr("touch-action",i.join(" "))},i.prototype._start=function(t){this.slider.blockCarousel=!0,N2Classes.SmartSliderControlTouch.prototype._start.apply(this,arguments)},i.prototype.onEnd=function(t){N2Classes.SmartSliderControlTouch.prototype.onEnd.apply(this,arguments),this.slider.blockCarousel=!1},i}),N2D("SmartSliderControlAutoplayWait",function(t,e){"use strict";function i(t){this.autoplay=t,this.waits={}}return i.Strong=["lightbox"],i.prototype.add=function(t){this.waits[t]=1,this._refresh()},i.prototype.resolve=function(t){delete this.waits[t],this._refresh()},i.prototype.resolveWeak=function(){var t,e={};for(t in this.waits)1===this.waits[t]&&-1!==i.Strong.indexOf(t)&&(e[t]=1);this.waits=e,this._refresh()},i.prototype.resolveAll=function(){this.waits={},this._refresh()},i.prototype._refresh=function(){var t,e=!1;for(t in this.waits)if(this.waits[t]){e=!0;break}this.autoplay.setState("wait",e)},i}),N2D("SmartSliderSlideBackgroundColor",function(t,e){function i(t,e){this.$el=e}return i.prototype.getLoadedDeferred=function(){return!0},i}),N2D("SmartSliderSlideBackgroundImage",function(n,i){function t(t,e,i,s){this.loadStarted=!1,this.loadAllowed=!1,this.slide=t,this.manager=e,this.background=i,this.deferred=n.Deferred(),this.$background=s,this.blur=s.data("blur"),"blurfit"===i.mode&&(window.n2FilterProperty?(this.$background=this.$background.add(this.$background.clone().insertAfter(this.$background)),this.$background.first().css({margin:"-14px",padding:"14px"}).css(window.n2FilterProperty,"blur(7px)")):(i.element.attr("data-mode","fill"),i.mode="fill")),window.n2FilterProperty&&(0<this.blur?this.$background.last().css({margin:"-"+2*this.blur+"px",padding:2*this.blur+"px"}).css(window.n2FilterProperty,"blur("+this.blur+"px)"):this.$background.last().css({margin:"",padding:""}).css(window.n2FilterProperty,"")),n2const.isWaybackMachine()?this.mobileSrc=this.tabletSrc=this.desktopSrc=s.data("desktop"):(this.desktopSrc=s.data("desktop")||"",this.tabletSrc=s.data("tablet")||"",this.mobileSrc=s.data("mobile")||"",n2const.isRetina&&((i=s.data("desktop-retina"))&&(this.desktopSrc=i),(i=s.data("tablet-retina"))&&(this.tabletSrc=i),(i=s.data("mobile-retina"))&&(this.mobileSrc=i)))}return t.prototype.getLoadedDeferred=function(){return this.deferred},t.prototype.preLoad=function(){this.loadAllowed=!0,this.manager.deviceDeferred.done(function(){this.updateBackgroundToDevice(this.manager.device),this.waitForImage()}.bind(this))},t.prototype.waitForImage=function(){this.$background.n2imagesLoaded({background:!0},function(t){if(0<t.images.length){t=t.images[0].img;switch(this.width=t.naturalWidth,this.height=t.naturalHeight,this.background.mode){case"tile":case"center":1<n2const.devicePixelRatio&&this.$background.css("background-size",this.width/n2const.devicePixelRatio+"px "+this.height/n2const.devicePixelRatio+"px")}this.deferred.resolve()}else setTimeout(this.waitForImage.bind(this),100)}.bind(this))},t.prototype.updateBackgroundToDevice=function(t){var e=this.desktopSrc;"mobilePortrait"===t||"mobileLandscape"===t?this.mobileSrc?e=this.mobileSrc:this.tabletSrc&&(e=this.tabletSrc):"tabletPortrait"!==t&&"tabletLandscape"!==t||this.tabletSrc&&(e=this.tabletSrc),e?this.setSrc(e):this.setSrc("")},t.prototype.setSrc=function(t){var e;this.loadAllowed&&t!==this.currentSrc&&(""===t?this.$background.css("background-image",""):this.$background.css("background-image",'url("'+t+'")'),this.currentSrc=t,this.$seo!==i&&(this.$seo.remove(),delete this.$seo),(e=this.$background.data("alt"))&&(e={alt:e,src:t},(t=this.$background.data("title"))&&(e.title=t),this.$seo=n('<img style="display:none;">').attr(e).appendTo(this.$background)))},t.prototype.fadeOut=function(){NextendTween.to(this.$background,.3,{opacity:0})},t}),N2D("SmartSliderSlideBackground",function(o,t){function e(t,e,i){var s;this.loadStarted=!1,this.types=this.types||{color:"SmartSliderSlideBackgroundColor",image:"SmartSliderSlideBackgroundImage",video:"SmartSliderSlideBackgroundVideo"},this.width=0,this.height=0,this.slide=t,this.element=e,t.slider.needBackgroundWrap?(s=e.find("> *"),this.$wrapElement=o('<div class="n2-ss-slide-background-wrap n2-ow"></div>').appendTo(e).append(s)):this.$wrapElement=this.element,this.manager=i,this.loadDeferred=o.Deferred(),this.elements={color:!1,image:!1,video:!1},this.currentSrc="",this.mode=e.data("mode"),this.opacity=e.data("opacity");e=this.element.find(".n2-ss-slide-background-image");e.length&&(this.elements.image=new N2Classes[this.types.image](t,i,this,e));e=this.element.find(".n2-ss-slide-background-color");e.length&&(this.elements.color=new N2Classes[this.types.color](this,e));var n,r=[];for(n in this.elements)this.elements[n]&&r.push(this.elements[n].getLoadedDeferred());o.when.apply(o,r).then(function(){this.loadDeferred.resolve()}.bind(this))}return e.prototype.preLoad=function(){return this.loadStarted||(this.slide.$element.find("[data-lazysrc]").each(function(){var t=o(this);t.attr("src",t.data("lazysrc"))}),this.loadStarted=!0),"pending"===this.loadDeferred.state()&&this.elements.image&&this.elements.image.preLoad(),this.loadDeferred},e.prototype.fadeOut=function(){this.elements.image&&this.elements.image.fadeOut()},e.prototype.hack=function(){NextendTween.set(this.element,{rotation:1e-4})},e.prototype.hasColor=function(){return this.elements.color},e.prototype.hasImage=function(){return this.elements.image},e.prototype.hasVideo=function(){return this.elements.video},e.prototype.hasBackground=function(){return this.elements.color||this.elements.image||this.elements.video},e.prototype.updateBackgroundToDevice=function(t){this.hasImage()&&this.elements.image.updateBackgroundToDevice(t)},e}),N2D("FrontendComponentCommon",["FrontendComponent"],function(s,n){function t(t,e,i,s){this.wraps={},N2Classes.FrontendComponent.prototype.constructor.apply(this,arguments)}return((t.prototype=Object.create(N2Classes.FrontendComponent.prototype)).constructor=t).prototype.init=function(t){this.stateCBs=[],this.state={InComplete:!1};var e=this.$layer.find("> .n2-ss-layer-mask");e.length&&(this.wraps.mask=e);e=this.$layer.find("> .n2-ss-layer-parallax");switch(e.length&&(this.wraps.parallax=e),this.$layer.data("pm")){case"absolute":this.placement=new N2Classes.FrontendPlacementAbsolute(this);break;case"normal":this.placement=new N2Classes.FrontendPlacementNormal(this);break;case"content":this.placement=new N2Classes.FrontendPlacementContent(this);break;default:this.placement=new N2Classes.FrontendPlacementDefault(this)}this.parallax=this.$layer.data("parallax"),this.baseSize=this.baseSize||100,this.isAdaptiveFont=this.isAdaptiveFont||this.parent.isAdaptiveFont||this.get("adaptivefont"),this.refreshBaseSize(this.getDevice("fontsize",100)),N2Classes.FrontendComponent.prototype.init.call(this,t)},t.prototype.setState=function(t,e){this.state[t]=e;for(var i=0;i<this.stateCBs.length;i++)this.stateCBs[i].call(this,this.state)},t.prototype.addStateCallback=function(t){this.stateCBs.push(t),t.call(this,this.state)},t.prototype.refreshBaseSize=function(t){this.isAdaptiveFont?this.baseSize=16*t/100:this.baseSize=this.parent.baseSize*t/100},t.prototype.start=function(){this.placement.start(),N2Classes.FrontendComponent.prototype.start.call(this);var t,e=this.get("rotation")||0;e/360!=0&&(t=this.addWrap("rotation","<div class='n2-ss-layer-rotation'></div>"),NextendTween.set(t[0],{rotationZ:e}))},t.prototype.onDeviceChange=function(t){N2Classes.FrontendComponent.prototype.onDeviceChange.call(this,t);var e=this.isVisible;if(this.isVisible=this.getDevice("")&&this.parent.isVisible,this.isVisible===n&&(this.isVisible=1),e&&!this.isVisible?(this.$layer.data("shows",0),this.$layer.css("display","none"),this.$layer.triggerHandler("visibilityChange",[0])):!e&&this.isVisible&&(this.$layer.data("shows",1),this.$layer.css("display",""),this.$layer.triggerHandler("visibilityChange",[1])),this.isVisible){e=this.getDevice("fontsize",100);this.refreshBaseSize(e),!this.parent.isAdaptiveFont&&this.isAdaptiveFont?this.$layer.css("font-size",N2Classes.FontSize.toRem(16*e/100)):this.$layer.css("font-size",e+"%");for(var i=0;i<this.children.length;i++)this.children[i].onDeviceChange(t);this.placement.onDeviceChange(t),this.onAfterDeviceChange(t)}else for(i=0;i<this.children.length;i++)this.children[i].onDeviceChange(t)},t.prototype.onAfterDeviceChange=function(t){},t.prototype.onResize=function(t,e){var i;(this.isVisible||this.placement.alwaysResize)&&(!this.parent.isAdaptiveFont&&this.isAdaptiveFont&&(i=this.getDevice("fontsize",100),this.$layer.css("font-size",N2Classes.FontSize.toRem(16*i/100))),N2Classes.FrontendComponent.prototype.onResize.apply(this,arguments),this.placement.onResize(t,e))},t.prototype.hasLayerAnimation=function(){return this.animationManager!==n},t.prototype.addWrap=function(t,e){var i;return this.wraps[t]===n&&(i=s(e),"rotation"===t&&(this.wraps.mask!==n?i.appendTo(this.wraps.mask):this.wraps.parallax!==n?i.appendTo(this.wraps.parallax):i.appendTo(this.$layer),i.append(this.getContents())),this.wraps[t]=i),i},t.prototype.getContents=function(){return!1},t}),N2D("FrontendComponent",function(t,s){function e(t,e,i,s){this.device="",this.children=[],this.slide=t,this.parent=e,this.$layer=i.data("layer",this),this.isVisible=!0,this.init(s)}return e.prototype.init=function(t){if(t)for(var e=0;e<t.length;e++)switch(t.eq(e).data("sstype")){case"content":this.children.push(new N2Classes.FrontendComponentContent(this.slide,this,t.eq(e)));break;case"row":this.children.push(new N2Classes.FrontendComponentRow(this.slide,this,t.eq(e)));break;case"col":this.children.push(new N2Classes.FrontendComponentCol(this.slide,this,t.eq(e)));break;default:this.children.push(new N2Classes.FrontendComponentLayer(this.slide,this,t.eq(e)))}},e.prototype.start=function(){for(var t=0;t<this.children.length;t++)this.children[t].start()},e.prototype.onDeviceChange=function(t){this.device=t},e.prototype.onResize=function(t,e){for(var i=0;i<this.children.length;i++)this.children[i].onResize(t,e)},e.prototype.getDevice=function(t,e){var i=this.$layer.data(this.device+t);return i!==s?i:"desktopportrait"!==this.device?this.$layer.data("desktopportrait"+t):e!==s?e:0},e.prototype.get=function(t){return this.$layer.data(t)},e}),N2D("FrontendSlideControls",function(t,e){function i(t,e){this.slider=t,this.$element=e.data("slide",this),this.status=new N2Classes.SlideStatus}return i.prototype.isCurrentlyEdited=function(){return this._isCurrentlyEdited},i.prototype.is=function(t){return this===t},i.prototype.triggerHandler=function(){return this.$element.triggerHandler.apply(this.$element,arguments)},i.prototype.isVisibleWhen=function(t){return!0},i.prototype.isActiveWhen=function(t){return!0},i.prototype.isStatic=function(){return!1},i}),N2D("FrontendPlacement",function(t,e){function i(t){this.layer=t,this.alwaysResize=!1,this.linked=[]}return i.prototype.start=function(){},i.prototype.onDeviceChange=function(t){},i.prototype.onResize=function(t,e){for(var i=0;i<this.linked.length;i++)this.linked[i].onResizeLinked(t,e)},i.prototype.addLinked=function(t){this.linked.push(t),this.alwaysResize=!0},i}),N2D("FrontendSliderSlide",["FrontendSliderSlideAbstract"],function(n,r){function t(t,e,i){this.slides=[this],this.playCount=0,N2Classes.FrontendSliderSlideAbstract.prototype.constructor.apply(this,arguments),this.id=this.$element.data("id");var s="";this.$element.data("title")!==r&&(s=this.$element.data("title")),this.$slideFocus=n('<div tabindex="-1" class="n2-ss-slide--focus" role="note">'+s+"</div>").prependTo(this.$element),this.$focusableElements=this.$element.find('a[href]:not([href=""]),link,button,input:not([type="hidden"]),select,textarea,audio[controls],video[controls],[tabindex]:not([tabindex="-1"])'),this.disableFocus(),this.background=!1,t.parameters.admin?this.minimumSlideDuration=0:(this.minimumSlideDuration=e.data("slide-duration"),n.isNumeric(this.minimumSlideDuration)||(this.minimumSlideDuration=0)),this._isCurrentlyEdited=this.slider.parameters.admin&&this.$element.hasClass("n2-ss-currently-edited-slide"),this.isCurrentlyEdited()?(this.$layer=e.find('.n2-ss-layer[data-sstype="slide"]'),t.sliderElement.on({SliderDeviceOrientation:function(){this.slider.visibleRealSlides.push(this),this.isVisible=!0,this.slider.responsive.visibleRealSlidesChanged=!0,this.triggerHandler("Visible")}.bind(this)})):(this.component=new N2Classes.FrontendComponentSectionSlide(this,t,e.find('.n2-ss-layer[data-sstype="slide"]')),this.$layer=this.component.$layer)}var e=!(((t.prototype=Object.create(N2Classes.FrontendSliderSlideAbstract.prototype)).constructor=t).prototype._setInside=function(t){this.isInside!==t&&(this.isInside=t)});try{document.createElement("div").focus(Object.defineProperty({},"preventScroll",{get:function(){e=!0}}))}catch(t){}return t.prototype.focus=function(){e&&this.$slideFocus[0].focus({preventScroll:!0})},t.prototype.allowFocus=function(){this.$focusableElements.attr("tabindex","0"),this.$element.removeAttr("aria-hidden")},t.prototype.disableFocus=function(){this.$focusableElements.attr("tabindex","-1"),this.$element.attr("aria-hidden",!0)},t.prototype.init=function(){var t=this.slider.findSlideBackground(this);0<t.length&&(this.slider.isAdmin?this.background=new N2Classes.SmartSliderSlideBackgroundAdmin(this,t,this.slider.backgrounds):this.background=new N2Classes.SmartSliderSlideBackground(this,t,this.slider.backgrounds)),this.$element.data("slideBackground",this.background)},t.prototype.onDeviceChange=function(t){this.$element.data("hide-"+t)?!1!==this.isVisible&&(this.isVisible=!1,this.slider.responsive.visibleRealSlidesChanged=!0,this.triggerHandler("Hidden")):(this.slider.visibleRealSlides.push(this),!0!==this.isVisible&&(this.isVisible=!0,this.slider.responsive.visibleRealSlidesChanged=!0,this.triggerHandler("Visible")))},t.prototype.hasLayers=function(){return 0<this.component.children.length},t.prototype.hasBackgroundVideo=function(){return this.background.hasVideo()},t.prototype.getThumbnailType=function(){return this.$element.data("thumbnail-type")},t.prototype.hasLink=function(){return!!this.$element.data("haslink")},t}),N2D("FrontendSliderSlideAbstract",["FrontendSlideControls"],function(i,t){function e(t,e,i){N2Classes.FrontendSlideControls.prototype.constructor.call(this,t,e),this.slides=this.slides||[],(this.group=this).originalIndex=i,this.index=i,this.localIndex=i,this.groupIndex=0,this.isVisible=!0,this.isInside=-1}for(var s in N2Classes.FrontendSlideControls.prototype)e.prototype[s]=N2Classes.FrontendSlideControls.prototype[s];return e.prototype.setIndex=function(t){for(var e=0;e<this.slides.length;e++)this.slides[e]._setIndex(t)},e.prototype._setIndex=function(t){this.localIndex=this.index=t},e.prototype.preLoad=function(){for(var t=[],e=0;e<this.slides.length;e++)t.push(this.slides[e]._preLoad());return i.when.apply(i,t)},e.prototype._preLoad=function(){return!this.background||this.background.preLoad()},e.prototype.setPrevious=function(t){this.previousSlide=t},e.prototype.getPrevious=function(){for(var t=this;t=t.previousSlide,t&&t!==this&&!t.isVisible;);return t},e.prototype.setNext=function(t){(this.nextSlide=t)&&t.setPrevious(this)},e.prototype.getNext=function(){for(var t=this;t=t.nextSlide,t&&t!==this&&!t.isVisible;);return t},e.prototype.getTitle=function(){return this.slides[0].$element.data("title")},e.prototype.getDescription=function(){return this.slides[0].$element.data("description")},e.prototype.getThumbnail=function(){return this.slides[0].$element.data("thumbnail")},e.prototype.hasLink=function(){return!1},e.prototype.setActive=function(){this.allowFocus(),this.$element.addClass("n2-ss-slide-active")},e.prototype.unsetActive=function(){this.disableFocus(),this.$element.removeClass("n2-ss-slide-active")},e.prototype.setInside=function(t){for(var e=0;e<this.slides.length;e++)this.slides[e]._setInside(t)},e.prototype._setInside=function(t){},e.prototype.focus=function(){},e.prototype.allowFocus=function(){},e.prototype.disableFocus=function(){},e.prototype.isVisibleWhen=function(t){return-1!==this.slider.getVisibleSlides(t).indexOf(this)},e.prototype.isActiveWhen=function(t){return-1!==this.slider.getActiveSlides(t).indexOf(this)},e}),N2D("SlideStatus",function(t,e){var i={NOT_INITIALIZED:-1,INITIALIZED:0,READY_TO_START:1,PLAYING:2,ENDED:3,SUSPENDED:4};function s(){this.status=i.NOT_INITIALIZED}return s.prototype.set=function(t){this.status=i[t]},s.prototype.is=function(t){return this.status===i[t]},s}),N2D("FrontendSliderStaticSlide",["FrontendSlideControls"],function(t,e){function i(t,e){N2Classes.FrontendSlideControls.prototype.constructor.call(this,t,e),this.slides=[this],this.isVisible=!0,this._isCurrentlyEdited=this.slider.parameters.admin&&this.$element.hasClass("n2-ss-currently-edited-slide"),this.isCurrentlyEdited()?this.$layer=this.$element.find('.n2-ss-layer[data-sstype="slide"]'):(this.component=new N2Classes.FrontendComponentSectionSlide(this,t,e.find('.n2-ss-layer[data-sstype="slide"]')),this.$layer=this.component.$layer)}for(var s in N2Classes.FrontendSlideControls.prototype)i.prototype[s]=N2Classes.FrontendSlideControls.prototype[s];return i.prototype.isStatic=function(){return!0},i.prototype.onDeviceChange=function(t){this.$element.data("hide-"+t)?!1!==this.isVisible&&(this.isVisible=!1,this.triggerHandler("Hidden")):!0!==this.isVisible&&(this.isVisible=!0,this.status.is("INITIALIZED")&&this.playIn(),this.triggerHandler("Visible"))},i}),N2D("FrontendPlacementAbsolute",["FrontendPlacement"],function(e,t){function i(t){this.parentLayer=!1,this.$parent=!1,N2Classes.FrontendPlacement.prototype.constructor.apply(this,arguments)}return((i.prototype=Object.create(N2Classes.FrontendPlacement.prototype)).constructor=i).prototype.start=function(){var t=this.layer.get("parentid");t&&(this.$parent=e("#"+t),0===this.$parent.length?this.$parent=!1:(this.parentLayer=this.$parent.data("layer"),this.parentLayer.placement.addLinked(this),this.onResize=function(){}))},i.prototype.isSingleAxis=function(){if(this.layer.parent instanceof N2Classes.FrontendComponentSectionSlide){if(!this.parentLayer)return!1;if(this.parentLayer.placement instanceof N2Classes.FrontendPlacementAbsolute)return!1}return!0},i.prototype.onResize=i.prototype.onResizeLinked=function(t,e){var i=this.layer.$layer,s=t.slideW,n=t.slideH;this.isSingleAxis()&&(n=s);var r=s,o=n;parseInt(this.layer.get("responsivesize"))||(r=o=1),i.css("width",this.getWidth(r)),i.css("height",this.getHeight(o)),parseInt(this.layer.get("responsiveposition"))||(s=n=1);var a=this.layer.getDevice("left")*s,l=this.layer.getDevice("top")*n,o=this.layer.getDevice("align"),s=this.layer.getDevice("valign"),h={left:"auto",top:"auto",right:"auto",bottom:"auto"};if(this.$parent&&this.$parent.data("layer").isVisible){var d={left:(n=this.$parent).prop("offsetLeft"),top:n.prop("offsetTop")},c={left:0,top:0};switch(this.layer.getDevice("parentalign")){case"right":c.left=d.left+this.$parent.width();break;case"center":c.left=d.left+this.$parent.width()/2;break;default:c.left=d.left}switch(o){case"right":h.right=i.parent()[0].offsetWidth-c.left-a+"px";break;case"center":h.left=c.left+a-i.width()/2+"px";break;default:h.left=c.left+a+"px"}switch(this.layer.getDevice("parentvalign")){case"bottom":c.top=d.top+this.$parent.height();break;case"middle":c.top=d.top+this.$parent.height()/2;break;default:c.top=d.top}switch(s){case"bottom":h.bottom=i.parent()[0].offsetHeight-c.top-l+"px";break;case"middle":h.top=c.top+l-i.height()/2+"px";break;default:h.top=c.top+l+"px"}}else{switch(o){case"right":h.right=-a+"px";break;case"center":var p=!this.layer.slide.isStatic&&this.layer.parent instanceof N2Classes.FrontendComponentSectionSlide?e.slideWidth:i.parent()[0].offsetWidth;h.left=Math.round(p/2+a-i.width()/2)+"px";break;default:h.left=a+"px"}switch(s){case"bottom":h.bottom=-l+"px";break;case"middle":var u=!this.layer.slide.isStatic&&this.layer.parent instanceof N2Classes.FrontendComponentSectionSlide?e.slideHeight:i.parent()[0].offsetHeight;h.top=Math.round(u/2+l-i.height()/2)+"px";break;default:h.top=l+"px"}}i.css(h);for(var m=0;m<this.linked.length;m++)this.linked[m].onResizeLinked(t,e)},i.prototype.getWidth=function(t){var e=this.layer.getDevice("width");return this.isDimensionPropertyAccepted(e)?e:e*t+"px"},i.prototype.getHeight=function(t){var e=this.layer.getDevice("height");return this.isDimensionPropertyAccepted(e)?e:e*t+"px"},i.prototype.isDimensionPropertyAccepted=function(t){return!(!(t+"").match(/[0-9]+%/)&&"auto"!=t)},i}),N2D("FrontendPlacementContent",["FrontendPlacement"],function(t,e){function i(t){N2Classes.FrontendPlacement.prototype.constructor.apply(this,arguments)}return(i.prototype=Object.create(N2Classes.FrontendPlacement.prototype)).constructor=i}),N2D("FrontendPlacementDefault",["FrontendPlacement"],function(t,e){function i(t){N2Classes.FrontendPlacement.prototype.constructor.apply(this,arguments)}return(i.prototype=Object.create(N2Classes.FrontendPlacement.prototype)).constructor=i}),N2D("FrontendPlacementNormal",["FrontendPlacement"],function(t,e){function i(t){N2Classes.FrontendPlacement.prototype.constructor.apply(this,arguments)}return((i.prototype=Object.create(N2Classes.FrontendPlacement.prototype)).constructor=i).prototype.onDeviceChange=function(){this.updateMargin(),this.updateHeight(),this.updateMaxWidth(),this.updateSelfAlign()},i.prototype.updateMargin=function(){var t=this.layer.getDevice("margin").split("|*|"),e=t.pop(),i=this.layer.baseSize;if("px+"==e&&0<i){e="em";for(var s=0;s<t.length;s++)t[s]=parseInt(t[s])/i}this.layer.$layer.css("margin",t.join(e+" ")+e)},i.prototype.updateHeight=function(){var t,e=this.layer.getDevice("height"),i="px";0<e?(0<(t=this.layer.baseSize)&&(i="em",e=parseInt(e)/t),this.layer.$layer.css("height",e+i).attr("data-custom-height",1)):this.layer.$layer.css("height","").removeAttr("data-custom-height")},i.prototype.updateMaxWidth=function(){var t=parseInt(this.layer.getDevice("maxwidth"));t<=0||isNaN(t)?this.layer.$layer.css("maxWidth","").attr("data-has-maxwidth","0"):this.layer.$layer.css("maxWidth",t+"px").attr("data-has-maxwidth","1")},i.prototype.updateSelfAlign=function(){this.layer.$layer.attr("data-cssselfalign",this.layer.getDevice("selfalign"))},i}),N2D("FrontendComponentCol",["FrontendComponentCommon"],function(t,e){function i(t,e,i){this.$content=i.find(".n2-ss-layer-col:first"),N2Classes.FrontendComponentCommon.prototype.constructor.call(this,t,e,i,this.$content.find("> .n2-ss-layer"))}return((i.prototype=Object.create(N2Classes.FrontendComponentCommon.prototype)).constructor=i).prototype.onDeviceChange=function(t){N2Classes.FrontendComponentCommon.prototype.onDeviceChange.apply(this,arguments),this.updateOrder(),this.updatePadding(),this.updateVerticalAlign(),this.updateInnerAlign(),this.updateMaxWidth()},i.prototype.updatePadding=function(){var t=this.getDevice("padding").split("|*|"),e=t.pop(),i=this.baseSize;if("px+"===e&&0<i){e="em";for(var s=0;s<t.length;s++)t[s]=parseInt(t[s])/i}this.$content.css("padding",t.join(e+" ")+e)},i.prototype.updateVerticalAlign=function(){this.$content.attr("data-verticalalign",this.getDevice("verticalalign"))},i.prototype.updateInnerAlign=function(){this.$layer.attr("data-csstextalign",this.getDevice("inneralign"))},i.prototype.updateMaxWidth=function(){var t=parseInt(this.getDevice("maxwidth"));t<=0||isNaN(t)?this.$layer.css("maxWidth","").attr("data-has-maxwidth","0"):this.$layer.css("maxWidth",t+"px").attr("data-has-maxwidth","1")},i.prototype.getWidthPercentage=function(){return parseFloat(this.$layer.data("colwidthpercent"))},i.prototype.getRealOrder=function(){var t=this.getDevice("order");return 0==t?10:t},i.prototype.updateOrder=function(){var t=this.getDevice("order");0==t?this.$layer.css("order",""):this.$layer.css("order",t)},i.prototype.getContents=function(){return this.$content},i}),N2D("FrontendComponentContent",["FrontendComponentCommon"],function(t,e){function i(t,e,i){this.$content=i.find(".n2-ss-section-main-content:first"),N2Classes.FrontendComponentCommon.prototype.constructor.call(this,t,e,i,this.$content.find("> .n2-ss-layer"))}return((i.prototype=Object.create(N2Classes.FrontendComponentCommon.prototype)).constructor=i).prototype.onDeviceChange=function(t){N2Classes.FrontendComponentCommon.prototype.onDeviceChange.apply(this,arguments),this.updatePadding(),this.updateVerticalAlign(),this.updateInnerAlign(),this.updateMaxWidth(),this.updateSelfAlign()},i.prototype.updatePadding=function(){var t=this.getDevice("padding").split("|*|"),e=t.pop(),i=this.baseSize;if("px+"==e&&0<i){e="em";for(var s=0;s<t.length;s++)t[s]=parseInt(t[s])/i}this.$content.css("padding",t.join(e+" ")+e)},i.prototype.updateVerticalAlign=function(){this.$content.attr("data-verticalalign",this.getDevice("verticalalign"))},i.prototype.updateInnerAlign=function(){this.$layer.attr("data-csstextalign",this.getDevice("inneralign"))},i.prototype.updateMaxWidth=function(){var t=parseInt(this.getDevice("maxwidth"));t<=0||isNaN(t)?this.$layer.css("maxWidth","").attr("data-has-maxwidth","0"):this.$layer.css("maxWidth",t+"px").attr("data-has-maxwidth","1")},i.prototype.updateSelfAlign=function(){this.$layer.attr("data-cssselfalign",this.getDevice("selfalign"))},i.prototype.getContents=function(){return this.$content},i}),N2D("FrontendComponentLayer",["FrontendComponentCommon"],function(t,s){function e(t,e,i){N2Classes.FrontendComponentCommon.prototype.constructor.call(this,t,e,i),this.wraps.mask!==s?this.$item=this.wraps.mask.children():this.wraps.parallax!==s?this.$item=this.wraps.parallax.children():this.$item=i.children()}return((e.prototype=Object.create(N2Classes.FrontendComponentCommon.prototype)).constructor=e).prototype.getContents=function(){return this.$item},e}),N2D("FrontendComponentRow",["FrontendComponentCommon"],function(i,c){function t(t,e,i){this.$row=i.find(".n2-ss-layer-row:first"),this.$rowInner=this.$row.find(".n2-ss-layer-row-inner:first"),this.columns=[],N2Classes.FrontendComponentCommon.prototype.constructor.call(this,t,e,i,this.$rowInner.find("> .n2-ss-layer"))}return((t.prototype=Object.create(N2Classes.FrontendComponentCommon.prototype)).constructor=t).prototype.init=function(t){N2Classes.FrontendComponentCommon.prototype.init.call(this,t);for(var e=0;e<this.children.length;e++)this.children[e]instanceof N2Classes.FrontendComponentCol&&this.columns.push(this.children[e])},t.prototype.onDeviceChange=function(t){N2Classes.FrontendComponentCommon.prototype.onDeviceChange.apply(this,arguments),this.updatePadding(),this.updateGutter(),this.updateInnerAlign()},t.prototype.onAfterDeviceChange=function(t){this.updateWrapAfter()},t.prototype.updatePadding=function(){var t=this.getDevice("padding").split("|*|"),e=t.pop(),i=this.baseSize;if("px+"===e&&0<i){e="em";for(var s=0;s<t.length;s++)t[s]=parseInt(t[s])/i}this.$row.css("padding",t.join(e+" ")+e)},t.prototype.updateInnerAlign=function(){this.$layer.attr("data-csstextalign",this.getDevice("inneralign"))},t.prototype.updateGutter=function(){var t=this.getDevice("gutter"),e=t/2;if(0<this.columns.length)for(var i=this.columns.length-1;0<=i;i--)this.columns[i].$layer.css("margin",e+"px");this.$rowInner.css({width:"calc(100% + "+(t+1)+"px)",margin:-e+"px"})},t.prototype.getSortedColumns=function(){for(var t=i.extend([],this.columns).sort(function(t,e){return t.getRealOrder()-e.getRealOrder()}),e=t.length-1;0<=e;e--)t[e].isVisible||t.splice(e,1);return t},t.prototype.updateWrapAfter=function(){var t=parseInt(this.getDevice("wrapafter")),e=this.getSortedColumns(),i=e.length,s=!1;if(0===i)return!1;if(0<t&&t<i&&(s=!0),this.$row.attr("row-wrapped",s?1:0),s){for(var n=[],r=0;r<i;r++){var o=Math.floor(r/t);n[o]===c&&(n[o]=[]),n[o].push(e[r]),e[r].$layer.attr("data-r",o).toggleClass("n2-ss-last-in-row",(r+1)%t==0||r===i-1)}var a=this.getDevice("gutter");for(r=0;r<n.length;r++){for(var l=n[r],h=0,d=0;d<l.length;d++)h+=l[d].getWidthPercentage();for(d=0;d<l.length;d++)l[d].$layer.css("width","calc("+l[d].getWidthPercentage()/h*100+"% - "+(n2const.isIE||n2const.isEdge?a+1:a)+"px)")}}else{h=0;for(r=0;r<i;r++)h+=e[r].getWidthPercentage();for(r=0;r<i;r++)e[r].$layer.css("width",e[r].getWidthPercentage()/h*100+"%").removeClass("n2-ss-last-in-row").attr("data-r",0);e[i-1].$layer.addClass("n2-ss-last-in-row")}},t.prototype.getContents=function(){return this.$row},t}),N2D("FrontendComponentSectionSlide",["FrontendComponent"],function(t,e){function i(t,e,i){this.realSlide=t,this.slider=e,this.$element=t.$element,this.$layer=i,this.baseSize=16,this.isStatic=t.isStatic(),N2Classes.FrontendComponent.prototype.constructor.call(this,this,this,i,i.find("> .n2-ss-layer")),e.sliderElement.on({SliderDeviceOrientation:function(t,e){this.onDeviceChange(e.device.toLowerCase())}.bind(this),SliderResize:function(t,e,i){this.onResize(e,i.resizeContext)}.bind(this)}),this.start()}return((i.prototype=Object.create(N2Classes.FrontendComponent.prototype)).constructor=i).prototype.onDeviceChange=function(t){N2Classes.FrontendComponent.prototype.onDeviceChange.call(this,t);for(var e=0;e<this.children.length;e++)this.children[e].onDeviceChange(t);this.realSlide.onDeviceChange(t),this.updatePadding()},i.prototype.updatePadding=function(){var t=this.getDevice("padding").split("|*|");this.$layer.css("padding",t.join("px ")+"px")},i}),N2D("SmartSliderResponsive",function(o,t){function a(t,e){this.state={StarterSlide:!1},this.isResetActiveSlideEarly=this.isResetActiveSlideEarly||!1,this.disableTransitions=!1,this.disableTransitionsTimeout=null,this.lastClientHeight=0,this.lastClientHeightTime=0,this.isLandscape=!1,this.pixelSnappingFraction=0,this.focusOffsetTop=0,this.focusOffsetBottom=0,this.fullPageMinimumSliderHeight=0,this.minimumSlideHeight=0,this.isFullScreen=!1,this.visibleRealSlidesChanged=!0,this.filters={SliderWidth:[],SliderHeight:[],SlideHeight:[],SliderVerticalCSS:[]},this.parameters=o.extend({hideOn:{desktopLandscape:0,desktopPortrait:0,tabletLandscape:0,tabletPortrait:0,mobileLandscape:0,mobilePortrait:0},onResizeEnabled:!0,type:"auto",downscale:!0,upscale:!1,constrainRatio:!0,minimumHeight:0,maximumSlideWidth:{ratio:-1,desktopLandscape:0,desktopPortrait:0,tabletLandscape:0,tabletPortrait:0,mobileLandscape:0,mobilePortrait:0},forceFull:0,forceFullOverflowX:"body",forceFullHorizontalSelector:"",sliderHeightBasedOn:"real",decreaseSliderHeight:0,focusUser:1,focusEdge:"auto",enabledDevices:{desktopLandscape:1,desktopPortrait:0,mobileLandscape:0,mobilePortrait:0,tabletLandscape:0,tabletPortrait:0},breakpoints:[],sizes:{desktopPortrait:{width:1200,height:600,max:1e4,min:40}},normalizedDeviceModes:{unknown:"unknown",desktopPortrait:"desktopPortrait"},ratioToDevice:{Portrait:{tablet:0,mobile:0},Landscape:{tablet:0,mobile:0}},overflowHiddenPage:0,focus:{offsetTop:"",offsetBottom:""}},e),this.parameters.hideOn=window.ssOverrideHideOn||this.parameters.hideOn,this.doThrottledResize=NextendThrottle(this.doResize.bind(this),50),this.slider=t,this.sliderElement=t.sliderElement,this.addFilter("SliderWidth",this.filterSliderWidthHorizontalSpacing.bind(this)),this.slider.parameters.dynamicHeight&&this.slider.stages.done("BeforeShow",function(){this.doResize()}.bind(this))}return a.DeviceMode={unknown:0,desktopLandscape:1,desktopPortrait:2,tabletLandscape:3,tabletPortrait:4,mobileLandscape:5,mobilePortrait:6},a._DeviceMode={0:"unknown",1:"desktopLandscape",2:"desktopPortrait",3:"tabletLandscape",4:"tabletPortrait",5:"mobileLandscape",6:"mobilePortrait"},a._DeviceGroup={desktopLandscape:"desktop",desktopPortrait:"desktop",tabletLandscape:"tablet",tabletPortrait:"tablet",mobileLandscape:"mobile",mobilePortrait:"mobile"},a.prototype.setDeviceID=function(t){this.deviceID=t,this.device=a._DeviceMode[t]},a.prototype.start=function(){if(this.slider.stages.done("ResizeFirst",function(){nextend.fontsDeferred===t?(this.slider.stages.resolve("Fonts"),this.slider.stages.resolved("windowLoad")||N2R("windowLoad",function(){this.doResize()}.bind(this))):nextend.fontsDeferred.always(function(){this.slider.stages.resolve("Fonts")}.bind(this))}.bind(this)),this.normalizeTimeout=null,this.delayedResizeAdded=!1,this.setDeviceID(a.DeviceMode.unknown),this.ratios={slideW:1,slideH:1},this.horizontalSpacingControls={right:[],left:[]},this.horizontalSpacing={right:0,left:0},this.staticSizes={paddingTop:0,paddingRight:0,paddingBottom:0,paddingLeft:0},this.alignElement=this.slider.sliderElement.closest(".n2-ss-align"),this.$section=this.alignElement.closest(".n2-section-smartslider"),"fullpage"===this.parameters.type&&"100vh"===this.parameters.sliderHeightBasedOn&&(this.$viewportHeight=o('<div style="height:100vh;width:0;position:absolute;bottom:0;visibility:hidden;"></div>').appendTo("body")),this.containerElementPadding=this.sliderElement.parent(),this.containerElement=this.containerElementPadding.parent(),!this.slider.isAdmin&&this.parameters.overflowHiddenPage&&o("html, body").css("overflow","hidden"),nextend.smallestZoom=320,this.slider.stages.resolve("ResponsiveStart"),this.init(),this.onResize(),o(window).on("SliderContentResize",function(t){this.onResize(t)}.bind(this)),this.parameters.onResizeEnabled)if(o(window).on({resize:this.onResize.bind(this),orientationchange:this.onResize.bind(this)}),window.ResizeObserver!==t){var e=0;new ResizeObserver(function(t){t.forEach(function(t){e!==t.contentRect.width&&(e=t.contentRect.width,this.internalResize())}.bind(this))}.bind(this)).observe(this.containerElement.parent().get(0))}else try{o('<iframe class="bt_skip_resize intrinsic-ignore" title="Resize helper" sandbox="allow-same-origin allow-scripts" style="margin:0 !important;padding:0;border:0;display:block;width:100%;height:0;min-height:0 !important;max-height:0;"></iframe>').on("load",function(t){var i=0,s=o(t.target.contentWindow||t.target.contentDocument.defaultView).on("resize",function(t){var e=s.width();i!==e&&(i=e,this.internalResize())}.bind(this));s[0].document.getElementsByTagName("HTML")[0].setAttribute("lang",window.document.getElementsByTagName("HTML")[0].getAttribute("lang"))}.bind(this)).insertBefore(this.containerElement)}catch(t){}},a.prototype.internalResize=function(){this.onResize()},a.prototype.getMinimumContentHeight=function(){for(var t,e=this.slider.visibleRealSlides,i=0,s=0;s<this.slider.visibleRealSlides.length;s++)e[s].$layer.addClass("n2-ss-layer--height-calc");for(s=0;s<this.slider.visibleRealSlides.length;s++)t=e[s].$layer.outerHeight(),i=Math.max(i,t),e[s].$layer.data("contentHeight",t);for(s=0;s<this.slider.visibleRealSlides.length;s++)e[s].$layer.removeClass("n2-ss-layer--height-calc");return i},a.prototype.getMinimumStaticContentHeight=function(){for(var i=0,t=o(),e=0;e<this.slider.staticSlides.length;e++)t=t.add(this.slider.staticSlides[e].$element[0]);return t.addClass("n2-ss-layer--height-calc").each(function(t,e){i=Math.max(i,o(e).outerHeight())}).removeClass("n2-ss-layer--height-calc"),i},a.prototype.getDeviceMode=function(){return a._DeviceMode[this.deviceID]},a.prototype.getDeviceGroup=function(){return a._DeviceGroup[this.getDeviceMode()]},a.prototype.onResize=function(t){this.slider.mainAnimation&&"playing"===this.slider.mainAnimation.getState()?this.delayedResizeAdded||(this.delayedResizeAdded=!0,this.sliderElement.on("mainAnimationComplete.responsive",this._onResize.bind(this,t))):this._onResize(t)},a.prototype._onResize=function(t){this.doResize(t),this.delayedResizeAdded=!1},a.prototype.doNormalizedResize=function(){this.normalizeTimeout&&clearTimeout(this.normalizeTimeout),this.normalizeTimeout=setTimeout(this.doResize.bind(this),10)},a.prototype.identifyDeviceID=function(){this.containerElementPadding.css("overflow","hidden");var t,e,i=a.DeviceMode.desktopPortrait,s=window.n2Width||window.innerWidth,n=window.n2Height||window.innerHeight;this.isLandscape=n<s;for(var r=this.parameters.breakpoints.length-1;0<=r;r--)if(t=this.parameters.breakpoints[r],e=this.isLandscape?t.landscapeWidth:t.portraitWidth,"max-screen-width"===t.type){if(s<=e){i=a.DeviceMode[t.device];break}}else if("min-screen-width"===t.type&&e<=s){i=a.DeviceMode[t.device];break}return this.containerElementPadding.css("overflow",""),i},a.prototype.updateOffsets=function(){if(this.focusOffsetTop=0,""!==this.parameters.focus.offsetTop)for(var t=o(this.parameters.focus.offsetTop),e=0;e<t.length;e++)t.eq(e).is(":visible")&&(this.focusOffsetTop+=t.eq(e).outerHeight());if(this.slider.isAdmin&&(this.focusOffsetTop+=o(".n2-lb-header").outerHeight()),this.focusOffsetBottom=0,""!==this.parameters.focus.offsetBottom){var i=o(this.parameters.focus.offsetBottom);for(e=0;e<i.length;e++)i.eq(e).is(":visible")&&(this.focusOffsetBottom+=i.eq(e).outerHeight())}},a.prototype.calculateFullPageSliderHeight=function(t){},a.prototype.doResize=function(t){var e,i,s=this.identifyDeviceID();if(this.parameters.hideOn[a._DeviceMode[s]])return this.$section.addClass("n2-section-smartslider--hidden"),!1;if(this.$section.removeClass("n2-section-smartslider--hidden"),!this.containerElementPadding.is(":visible"))return!1;this.updateOffsets(),this.disableTransitions||(this.disableTransitions=!0,this.sliderElement.addClass("n2notransition"),this.disableTransitionsTimeout&&clearTimeout(this.disableTransitionsTimeout),this.disableTransitionsTimeout=setTimeout(function(){this.sliderElement.removeClass("n2notransition"),this.disableTransitions=!1}.bind(this),500)),this.slider.isAdmin||this.parameters.forceFull&&("none"!==this.parameters.forceFullOverflowX&&o(this.parameters.forceFullOverflowX).css("overflow-x","hidden"),n=i=0,this.parameters.forceFullHorizontalSelector=window.ssForceFullHorizontalSelector||this.parameters.forceFullHorizontalSelector,""===this.parameters.forceFullHorizontalSelector||(r=this.sliderElement.closest(this.parameters.forceFullHorizontalSelector))&&0<r.length&&(i=(e=r[0].getBoundingClientRect()).width,n=n2const.rtl.isRtl?(document.body.clientWidth||document.documentElement.clientWidth)-e.right:e.left),r=0<i?i:document.body.clientWidth||document.documentElement.clientWidth,i=(e=this.containerElement.parent())[0].getBoundingClientRect(),n=-(n2const.rtl.isRtl?(document.body.clientWidth||document.documentElement.clientWidth)-i.right:i.left)-parseInt(e.css("paddingLeft"))-parseInt(e.css("borderLeftWidth"))+n,this.containerElement.css({marginLeft:n,marginRight:n}).width(r));var n=!1,r=this.device;this.deviceID!==s&&(this.setDeviceID(s),this.sliderElement.removeClass("n2-ss-"+r).attr("data-device-mode",this.device).addClass("n2-ss-"+this.device),this.sliderElement.trigger("SliderDevice",{lastDevice:r,device:this.device,group:a._DeviceGroup[this.device]}),n=!0,this.slider.stages.resolve("Device")),n&&(this.slider.visibleRealSlides=[],this.sliderElement.trigger("SliderDeviceOrientation",{slider:this.slider,lastDevice:r,device:this.device,group:a._DeviceGroup[this.device]}),this.slider.stages.resolve("DeviceOrientation"),this.finalizeVisibleSlidesStage1()),(this.slider.isVisible||this.visibleRealSlidesChanged)&&(this.resizeStage1Width(),this.sliderElement.trigger("SliderResizeHorizontal"),this.resizeStage2Height())},a.prototype.resizeStage1Width=function(){this.resizeContext={}},a.prototype.resizeStage2Height=function(){for(var t=this.applyFilter("SliderVerticalCSS",this.getResizeStage2CSS()),e=0;e<t.length;e++)t[e].flush();this.ratios={slideW:this.resizeContext.slideWidth/this.base.slideWidth,slideH:this.resizeContext.slideHeight/this.base.slideHeight},this.slider.stages.resolve("ResizeFirst"),this.finalizeVisibleSlidesStage2(),this.triggerResize()},a.prototype.resizeStage2HeightAnimated=function(t,e,i){this.dynamicHeightSlide=e;var s=this.applyFilter("SliderVerticalCSS",this.getResizeStage2CSS());delete this.dynamicHeightSlide,this.ratios={slideW:this.resizeContext.slideWidth/this.base.slideWidth,slideH:this.resizeContext.slideHeight/this.base.slideHeight},this.finalizeVisibleSlidesStage2();for(var n=0;n<s.length;n++)t.to(s[n].$,i,s[n].css,0);t.eventCallback("onComplete",function(){this.slider.trigger("SliderResizeAnimated",[this.ratios,this])}.bind(this))},a.prototype.getResizeStage2CSS=function(){},a.prototype.onStarterSlide=function(t){this.state.StarterSlide=!0,this.calibrateActiveSlide(t),delete this.targetCurrentSlide},a.prototype.finalizeVisibleSlidesStage1=function(){this.visibleRealSlidesChanged&&(this.slider.visibleRealSlides.sort(function(t,e){return t.index-e.index}),this.updateVisibleSlides(),this.slider.trigger("visibleRealSlidesChanged"),this.slider.stages.resolve("VisibleRealSlides"),this.isResetActiveSlideEarly&&this.calibrateActiveSlide())},a.prototype.updateVisibleSlides=function(){this.slider.visibleSlides=this.slider.visibleRealSlides},a.prototype.calibrateActiveSlide=function(t){this.state.StarterSlide&&0<this.slider.visibleSlides.length&&((t=t||this.slider.currentRealSlide).isVisible||(t=(t=t.getNext())||this.slider.currentSlide.getPrevious()),this.resetActiveRealSlide(t))},a.prototype.resetActiveRealSlide=function(t){var e,i;t&&t!==this.slider.currentRealSlide?(this.slider.trigger("BeforeCurrentSlideChange",t),(e=this.slider.currentSlide)&&this.slider.forceUnsetActiveSlide(e),this.slider.setCurrentRealSlide(t),i=this.slider.currentSlide,this.targetCurrentSlide=i,this.slider.forceSetActiveSlide(i),this.slider.trigger("SlideForceChange",[e,i])):i=this.slider.currentSlide,this.slider.updateInsideSlides([i])},a.prototype.finalizeVisibleSlidesStage2=function(){this.visibleRealSlidesChanged&&(this.visibleRealSlidesChanged=!1,this.isResetActiveSlideEarly||this.calibrateActiveSlide(),this.triggerVisibleSlidesChanged(),this.targetCurrentSlide!==t&&(this.slider.trigger("SlideWillChange",this.targetCurrentSlide),this.slider.trigger("CurrentSlideChanged",this.targetCurrentSlide),this.slider.stages.resolved("Visible")&&this.slider.playSlide(this.targetCurrentSlide),delete this.targetCurrentSlide))},a.prototype.triggerVisibleSlidesChanged=function(){this.slider.trigger("visibleSlidesChanged"),this.slider.stages.resolve("VisibleSlides"),this.slider.visibleRealSlides.length?this.slider.isVisible||this.slider.show():this.slider.isVisible&&this.slider.hide()},a.prototype.getNormalizedModeString=function(){return a._DeviceMode[this.deviceID]},a.prototype.triggerResize=function(){this.slider.publicTrigger("SliderResize",[this.ratios,this]),this.slider.stages.resolve("Resized")},a.prototype.getVerticalOffsetHeight=function(){if(this.isFullScreen)return 0;var t=this.focusOffsetTop+this.focusOffsetBottom;if(this.slider.widgets.$vertical)for(var e=0;e<this.slider.widgets.$vertical.length;e++)t+=this.slider.widgets.$vertical.eq(e).outerHeight();return t+this.parameters.decreaseSliderHeight},a.prototype.addHorizontalSpacingControl=function(t,e){this.horizontalSpacingControls[t].push(e),this.slider.stages.resolved("ResizeFirst")&&this.doNormalizedResize()},a.prototype.filterSliderWidthHorizontalSpacing=function(t){for(var e in this.horizontalSpacing={right:0,left:0},this.horizontalSpacingControls)for(var i=this.horizontalSpacingControls[e],s=i.length-1;0<=s;s--){var n=i[s];n.isVisible()&&(n.refreshSliderSize(t),this.horizontalSpacing[e]+=n.getSize())}return this.containerElementPadding.css({paddingLeft:this.horizontalSpacing.left,paddingRight:this.horizontalSpacing.right}),t-this.horizontalSpacing.left-this.horizontalSpacing.right},a.prototype.addFilter=function(t,e){this.filters[t].push(e)},a.prototype.removeFilter=function(t,e){this.filters[t].push(e)},a.prototype.applyFilter=function(t,e){for(var i=0;i<this.filters[t].length;i++)e=this.filters[t][i].call(this,e);return e},a.prototype.prepareFontSize=function(t){return N2Classes.FontSize.toRem(t)},a}),N2D("FrontendItemVimeo",function(o,e){function i(t,e,i,s,n,r){if(this.state={slideVisible:!1,visible:!1,scroll:!1,slide:!1,InComplete:!1,play:!1,continuePlay:!1},this.readyDeferred=o.Deferred(),this.slider=t,this.playerId=e,this.$playerElement=o("#"+this.playerId),this.$cover=this.$playerElement.find(".n2_ss_video_player__cover"),this.start=r,this.parameters=o.extend({vimeourl:"//vimeo.com/144598279",autoplay:"0",ended:"",reset:"0",title:"1",byline:"1",portrait:"0",loop:"0",color:"00adef",volume:"-1",dnt:"0"},s),1===parseInt(this.parameters.autoplay))if(-1<navigator.userAgent.toLowerCase().indexOf("android"))this.parameters.volume=0;else if(n2const.isIOS){this.parameters.autoplay=0;try{"playsInline"in document.createElement("video")&&(this.parameters.autoplay=1,this.parameters.volume=0)}catch(t){}}1===parseInt(this.parameters.autoplay)||!n||n2const.isMobile?this.ready(this.initVimeoPlayer.bind(this)):this.ready(function(){this.$playerElement.on("click.vimeo n2click.vimeo",function(t){this.$playerElement.off(".vimeo"),t.preventDefault(),t.stopPropagation(),this.initVimeoPlayer(),this.safePlay()}.bind(this))}.bind(this))}return i.vimeoDeferred=null,i.prototype.ready=function(t){null===i.vimeoDeferred&&(i.vimeoDeferred=o.getScript("https://player.vimeo.com/api/player.js")),i.vimeoDeferred.done(t)},i.prototype.initVimeoPlayer=function(){var t=o('<iframe class="intrinsic-ignore" allow="autoplay; encrypted-media" id="'+this.playerId+'-frame" src="https://player.vimeo.com/video/'+this.parameters.vimeocode+"?autoplay=0&_video&title="+this.parameters.title+"&byline="+this.parameters.byline+"&background="+this.parameters.background+"&portrait="+this.parameters.portrait+"&color="+this.parameters.color+"&loop="+this.parameters.loop+("-1"==this.parameters.quality?"":"&quality="+this.parameters.quality)+"&dnt="+this.parameters["privacy-enhanced"]+'" style="position: absolute; top:0; left: 0; width: 100%; height: 100%;" webkitAllowFullScreen allowFullScreen></iframe>');this.$playerElement.prepend(t),this.player=new Vimeo.Player(t[0],{autoplay:!1}),this.promise=this.player.ready(),this.slider.stages.done("BeforeShow",function(){this.promise.then(this.onReady.bind(this))}.bind(this))},i.prototype.onReady=function(){var t=parseFloat(this.parameters.volume);0<=t&&this.setVolume(t),this.slide=this.slider.findSlideByElement(this.$playerElement),this.isStatic=this.slide.isStatic();var e=this.$playerElement.closest(".n2-ss-layer");this.layer=e.data("layer"),this.layer.isVisible&&this.setState("visible",!0,!0),this.layer.$layer.on("visibilityChange",function(t,e){e?this.setState("visible",!0,!0):(e=this.state.play,this.setState("visible",!1,!0),e&&this.setState("continuePlay",!0))}.bind(this)),this.slide.isVisible&&this.setState("slideVisible",!0,!0),this.slide.$element.on({Hidden:function(){var t=this.state.play;this.setState("slideVisible",!1,!0),t&&this.setState("continuePlay",!0)}.bind(this),Visible:function(){this.setState("slideVisible",!0,!0)}.bind(this)}),this.$cover.length&&(n2const.isMobile&&this.$cover.on("click",this.safePlay.bind(this)),e.one("n2play",function(){NextendTween.to(this.$cover,.3,{opacity:0,onComplete:function(){this.$cover.remove()}.bind(this)})}.bind(this))),this.player.on("play",function(){this.isStatic||this.slider.trigger("mediaStarted",this.playerId),e.triggerHandler("n2play")}.bind(this)),this.player.on("pause",function(){e.triggerHandler("n2pause"),this.state.continuePlay?(this.setState("continuePlay",!1),this.setState("play",!0)):this.setState("play",!1)}.bind(this)),this.player.on("ended",function(){this.isStatic||this.slider.trigger("mediaEnded",this.playerId),e.triggerHandler("n2stop"),this.setState("play",!1),"next"===this.parameters.ended&&0==this.parameters.loop&&((document.fullscreenElement||document.mozFullScreenElement||document.webkitFullscreenElement)&&(document.exitFullscreen||document.mozCancelFullScreen||document.webkitExitFullscreen).call(document),this.slider.next())}.bind(this)),this.isStatic||this.slider.sliderElement.on({CurrentSlideChanged:function(t,e){this.onCurrentSlideChange(e)}.bind(this),mainAnimationStart:function(t,e,i,s){this.onCurrentSlideChange(this.slider.slides[s])}.bind(this)}),""!==this.parameters["scroll-pause"]?N2Classes.ScrollTracker.add(this.$playerElement,this.parameters["scroll-pause"],function(){this.setState("scroll",!0,!0)}.bind(this),function(){this.setState("continuePlay",!0),this.setState("scroll",!1,!0)}.bind(this)):this.setState("scroll",!0,!0),this.slide.isActiveWhen()&&this.setState("slide",!0,!0),1===parseInt(this.parameters.autoplay)&&this.slider.visible(this.initAutoplay.bind(this)),this.readyDeferred.resolve()},i.prototype.onCurrentSlideChange=function(t){this.slide.isActiveWhen(t)?1==this.parameters.autoplay&&this.setState("play",!0):parseInt(this.parameters.reset)&&this.reset(),this.setState("slide",!0,!0)},i.prototype.initAutoplay=function(){this.setState("InComplete",!0,!0),this.isStatic?(this.setState("play",!0),this.setState("slide",!0,!0)):(this.slider.sliderElement.on("mainAnimationComplete",function(t,e,i,s,n){this.slide.isActiveWhen(this.slider.slides[s])?(this.setState("play",!0),this.setState("slide",!0,!0)):this.setState("slide",!1,!0)}.bind(this)),this.slide.isActiveWhen()&&(this.setState("play",!0),this.setState("slide",!0,!0)))},i.prototype.setState=function(t,e,i){i=i||!1,this.state[t]=e,i&&(this.state.slideVisible&&this.state.visible&&this.state.play&&this.state.slide&&this.state.InComplete&&this.state.scroll&&this.layer.isVisible?this.play():this.pause())},i.prototype.play=function(){this.slider.trigger("mediaStarted",this.playerId),0!=this.start&&this.safeSetCurrentTime(this.start),this.safePlay(),this.player.getCurrentTime().then(function(t){t<this.start&&0!=this.start&&this.safeSetCurrentTime(this.start),this.safePlay()}.bind(this)).catch(function(t){this.safePlay()}.bind(this))},i.prototype.pause=function(){this.safePause()},i.prototype.reset=function(){this.safeSetCurrentTime(this.start)},i.prototype.setVolume=function(t){this.safeCallback(function(){this.promise=this.player.setVolume(t)}.bind(this))},i.prototype.safeSetCurrentTime=function(t){this.safeCallback(function(){this.promise=this.player.setCurrentTime(t)}.bind(this))},i.prototype.safePlay=function(){this.safeCallback(function(){this.promise=this.player.getPaused(),this.safeCallback(function(t){t&&(this.promise=this.player.play())}.bind(this))}.bind(this))},i.prototype.safePause=function(){this.safeCallback(function(){this.promise=this.player.getPaused(),this.safeCallback(function(t){t||(this.promise=this.player.pause())}.bind(this))}.bind(this))},i.prototype.safeCallback=function(t){this.promise&&Promise!==e?this.promise.then(t).catch(t):t()},i}),N2D("FrontendItemYouTube",function(r,o){function a(t,e,i,s){this.state={slideVisible:!1,visible:!1,scroll:!1,slide:!1,InComplete:!1,play:!1,continuePlay:!1},this.readyDeferred=r.Deferred(),this.slider=t,this.playerId=e,this.$playerElement=r("#"+this.playerId),this.$cover=this.$playerElement.find(".n2_ss_video_player__cover"),this.parameters=r.extend({youtubeurl:"//www.youtube.com/watch?v=3PPtkRU7D74",youtubecode:"3PPtkRU7D74",center:0,autoplay:1,ended:"",related:"1",volume:"-1",loop:0,modestbranding:1,reset:0,query:[],playsinline:0},i),1===parseInt(this.parameters.autoplay)||!s||n2const.isMobile?this.ready(this.initYoutubePlayer.bind(this)):this.$playerElement.on("click.youtube n2click.youtube",function(t){this.$playerElement.off(".youtube"),t.preventDefault(),t.stopPropagation(),this.ready(function(){this.readyDeferred.done(function(){this.play()}.bind(this)),this.initYoutubePlayer()}.bind(this))}.bind(this))}return a.YTDeferred=null,a.prototype.ready=function(t){var e,i,s,n;null===a.YTDeferred&&(a.YTDeferred=r.Deferred(),window.YT===o&&r.getScript("https://www.youtube.com/iframe_api"),window._EPYT_!==o?(s=a.YTDeferred,(n=function(){!0===window._EPADashboard_.initStarted?s.resolve():setTimeout(n,100)})()):(e=a.YTDeferred,(i=function(){window.YT!==o&&window.YT.loaded?e.resolve():setTimeout(i,100)})())),a.YTDeferred.done(t)},a.prototype.fadeOutCover=function(){this.coverFadedOut===o&&this.$cover.length&&(this.coverFadedOut=!0,NextendTween.to(this.$cover,.3,{opacity:0,onComplete:function(){this.$cover.remove()}.bind(this)}))},a.prototype.initYoutubePlayer=function(){var e=this.$playerElement.closest(".n2-ss-layer");this.layer=e.data("layer"),this.$cover.length&&(n2const.isMobile&&this.$cover.on("click",this.play.bind(this)),e.one("n2play",this.fadeOutCover.bind(this))),this.slide=this.slider.findSlideByElement(this.$playerElement),this.isStatic=this.slide.isStatic();var t,i={enablejsapi:1,origin:window.location.protocol+"//"+window.location.host,wmode:"opaque",rel:1-this.parameters.related,start:this.parameters.start,end:this.parameters.end,modestbranding:this.parameters.modestbranding,playsinline:this.parameters.playsinline};if(1===parseInt(this.parameters.autoplay))if(-1<navigator.userAgent.toLowerCase().indexOf("android"))this.parameters.volume=0;else if(n2const.isIOS){this.parameters.autoplay=0;try{"playsInline"in document.createElement("video")&&(this.parameters.autoplay=1,this.parameters.volume=0,i.playsinline=1)}catch(t){}}for(t in n2const.isIOS&&this.parameters.controls&&(i.use_native_controls=1),1==this.parameters.center&&(i.controls=0),1!=this.parameters.controls&&(i.autohide=1,i.controls=0),+(0<=navigator.platform.toUpperCase().indexOf("MAC")&&-1<navigator.userAgent.search("Firefox"))&&(i.html5=1),this.parameters.query)this.parameters.query.hasOwnProperty(t)&&(i[t]=this.parameters.query[t]);var s={videoId:this.parameters.youtubecode,wmode:"opaque",playerVars:i,events:{onReady:this.onReady.bind(this),onStateChange:function(t){switch(t.data){case YT.PlayerState.PLAYING:case YT.PlayerState.BUFFERING:this.isStatic||this.slide.isActiveWhen(this.slider.currentSlide)&&this.slider.sliderElement.trigger("mediaStarted",this.playerId),e.triggerHandler("n2play");break;case YT.PlayerState.PAUSED:e.triggerHandler("n2pause"),this.state.continuePlay?(this.setState("continuePlay",!1),this.setState("play",!0)):this.setState("play",!1);break;case YT.PlayerState.ENDED:1==this.parameters.loop?(this.player.seekTo(this.parameters.start),this.player.playVideo()):(this.isStatic||this.slider.trigger("mediaEnded",this.playerId),e.triggerHandler("n2stop"),this.setState("play",!1),"next"===this.parameters.ended&&((document.fullscreenElement||document.mozFullScreenElement||document.webkitFullscreenElement)&&(document.exitFullscreen||document.mozCancelFullScreen||document.webkitExitFullscreen).call(document),this.slider.next()))}}.bind(this)}};(this.parameters["privacy-enhanced"]||jQuery&&jQuery.fn.revolution)&&(s.host="https://www.youtube-nocookie.com"),this.player=new YT.Player(this.playerId+"-frame",s),1==this.parameters.center&&(this.$playerElement.parent().css("overflow","hidden"),this.onResize(),this.slider.sliderElement.on("SliderResize",this.onResize.bind(this)))},a.prototype.onReady=function(){this.slider.stages.done("BeforeShow",this.onBeforeShow.bind(this))},a.prototype.onBeforeShow=function(){var t=parseFloat(this.parameters.volume);0<t?this.setVolume(t):-1!==t&&this.player.mute(),this.layer.isVisible&&this.setState("visible",!0,!0),this.layer.$layer.on("visibilityChange",function(t,e){e?this.setState("visible",!0,!0):(e=this.state.play,this.setState("visible",!1,!0),e&&this.setState("continuePlay",!0))}.bind(this)),this.slide.isVisible&&this.setState("slideVisible",!0,!0),this.slide.$element.on({Hidden:function(){var t=this.state.play;this.setState("slideVisible",!1,!0),t&&this.setState("continuePlay",!0)}.bind(this),Visible:function(){this.setState("slideVisible",!0,!0)}.bind(this)}),this.slide.isActiveWhen()&&this.setState("slide",!0,!0),1==this.parameters.autoplay&&this.slider.visible(this.initAutoplay.bind(this)),this.isStatic||(this.slider.sliderElement.on({CurrentSlideChanged:function(t,e){this.onCurrentSlideChange(e)}.bind(this),mainAnimationStart:function(t,e,i,s){this.onCurrentSlideChange(this.slider.slides[s])}.bind(this)}),parseInt(this.parameters.reset)&&this.slider.sliderElement.on("mainAnimationComplete",function(t,e,i,s){this.slide.isActiveWhen(this.slider.slides[s])||0!==this.player.getCurrentTime()&&this.player.seekTo(this.parameters.start)}.bind(this))),this.readyDeferred.resolve(),""!==this.parameters["scroll-pause"]?N2Classes.ScrollTracker.add(this.$playerElement,this.parameters["scroll-pause"],function(){this.setState("scroll",!0,!0)}.bind(this),function(){this.setState("continuePlay",!0),this.setState("scroll",!1,!0)}.bind(this)):this.setState("scroll",!0,!0)},a.prototype.onCurrentSlideChange=function(t){t=this.slide.isActiveWhen(t);t&&1==this.parameters.autoplay&&this.setState("play",!0),this.setState("slide",t,!0)},a.prototype.onResize=function(){var t=this.$playerElement.parent(),e=t.width(),i=t.height()+100,t={width:e,height:i,marginTop:0};t[n2const.rtl.marginLeft]=0,16/9<e/i?(t.height=e*(16/9),t.marginTop=(i-t.height)/2):(t.width=i*(16/9),t[n2const.rtl.marginLeft]=(e-t.width)/2),this.$playerElement.css(t)},a.prototype.initAutoplay=function(){this.setState("InComplete",!0,!0),this.isStatic?(this.setState("play",!0),this.setState("slide",!0,!0)):(this.slider.sliderElement.on("mainAnimationComplete",function(t,e,i,s){this.slide.isActiveWhen(this.slider.slides[s])?(this.setState("play",!0),this.setState("slide",!0,!0)):this.setState("slide",!1,!0)}.bind(this)),this.slide.isActiveWhen()&&(this.setState("play",!0),this.setState("slide",!0,!0)))},a.prototype.setState=function(t,e,i){i=i||!1,this.state[t]=e,i&&(this.state.slideVisible&&this.state.visible&&this.state.play&&this.state.slide&&this.state.InComplete&&this.state.scroll?this.play():this.pause())},a.prototype.play=function(){this.isStopped()&&(this.coverFadedOut===o&&setTimeout(this.fadeOutCover.bind(this),200),this.slider.trigger("mediaStarted",this.playerId),this.player.playVideo())},a.prototype.pause=function(){this.isStopped()||this.player.pauseVideo()},a.prototype.stop=function(){this.player.stopVideo()},a.prototype.isStopped=function(){switch(this.player.getPlayerState()){case-1:case 2:case 5:return!0;default:return!1}},a.prototype.setVolume=function(t){this.player.setVolume(100*t)},a}),N2D("smartslider-frontend");
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: slider, wordpress slider, image slider, layer slider, responsive slider, s
4
  Donate link: https://sites.fastspring.com/nextend/product/smartslider3donate
5
  Requires at least: 4.9
6
  Tested up to: 5.6
7
- Stable tag: 3.4.1.13
8
  Requires PHP: 7.0
9
  License: GPLv3 or later
10
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
@@ -209,6 +209,13 @@ Of course! Smart Slider use protocol relative urls which works fine on http:// a
209
 
210
  == Changelog ==
211
 
 
 
 
 
 
 
 
212
  = 3.4.1.13 - 11. November 2020 =
213
  * Fix: Themify themes output buffer issue
214
 
4
  Donate link: https://sites.fastspring.com/nextend/product/smartslider3donate
5
  Requires at least: 4.9
6
  Tested up to: 5.6
7
+ Stable tag: 3.4.1.14
8
  Requires PHP: 7.0
9
  License: GPLv3 or later
10
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
209
 
210
  == Changelog ==
211
 
212
+ = 3.4.1.14 - 26. November 2020 =
213
+ * Feature: Accessibility improvements
214
+ * Fix: WPRocket RocketCDN compatibility
215
+ * Fix: Jetpack lazy loading compatibility
216
+ * Fix: Elementor fix when no slider is selected
217
+ * Deprecated: PX+
218
+
219
  = 3.4.1.13 - 11. November 2020 =
220
  * Fix: Themify themes output buffer issue
221
 
smart-slider-3.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Smart Slider 3
4
  Plugin URI: https://smartslider3.com/
5
  Description: The perfect all-in-one responsive slider solution for WordPress.
6
- Version: 3.4.1.13
7
  Requires PHP: 7.0
8
  Requires at least: 4.9
9
  Author: Nextend
3
  Plugin Name: Smart Slider 3
4
  Plugin URI: https://smartslider3.com/
5
  Description: The perfect all-in-one responsive slider solution for WordPress.
6
+ Version: 3.4.1.14
7
  Requires PHP: 7.0
8
  Requires at least: 4.9
9
  Author: Nextend