Smart Slider 3 - Version 3.5.1.2

Version Description

  • 18. November 2021 =
  • Feature: The old background animations are allowed again when the fill mode is not fill, but anything else.
  • Feature: You can now customize the Loading animation delay time.
  • Fix: Image layer box shadow now shows up in the Slide Editor.
  • Fix: We fixed an error that happened because Elementor has deprecated the _content_template method we used to create our Elementor Widget.
  • Fix: Compatibility fixes with Perfmatters.
  • Fix: The old Smart Slider WordPress widget can be moved back to Elementor using the SMART_SLIDER_ELEMENTOR_WIDGET_ALLOWED constant. As a result the sliders won't be missing after the 3.4.1.7 update.
  • Fix: The slider resize didn't always get triggered on mobile when the device was rotated.
  • Fix: The When ended Go to next slide option will no longer trigger the Scroll to slider behavior at the video layers.
  • Other: Dutch translation added. Thanks, Frank!
  • Other: Spanish translation updated. Thanks, Rodrigo!
Download this release

Release Info

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

Code changes from version 3.5.1.1 to 3.5.1.2

Files changed (32) hide show
  1. Nextend/Framework/Form/Element/Gap.php +81 -0
  2. Nextend/Framework/Parser/Style.php +1 -4
  3. Nextend/Framework/Style/Style.php +2 -4
  4. Nextend/Framework/View/Html.php +4 -0
  5. Nextend/Languages/es_ES.mo +0 -0
  6. Nextend/Languages/es_ES.po +168 -17
  7. Nextend/Languages/nl_BE.mo +0 -0
  8. Nextend/Languages/nl_BE.po +5977 -0
  9. Nextend/Languages/nl_NL.mo +0 -0
  10. Nextend/Languages/nl_NL.po +5977 -0
  11. Nextend/Languages/smartslider3.pot +4 -7
  12. Nextend/SmartSlider3/Application/Admin/FormManager/Slider/SliderDeveloper.php +7 -0
  13. Nextend/SmartSlider3/Application/Admin/Help/Template/Index.php +58 -0
  14. Nextend/SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php +2 -2
  15. Nextend/SmartSlider3/Application/Frontend/Slider/ControllerPreRenderSlider.php +6 -7
  16. Nextend/SmartSlider3/Application/Model/ModelGenerator.php +1 -1
  17. Nextend/SmartSlider3/Form/Element/DatePicker.php +39 -23
  18. Nextend/SmartSlider3/Platform/WordPress/Admin/free/notice.php +10 -10
  19. Nextend/SmartSlider3/Platform/WordPress/Integration/Elementor/Elementor.php +13 -6
  20. Nextend/SmartSlider3/Platform/WordPress/Integration/Elementor/ElementorWidgetDeprecatedSmartSlider.php +68 -0
  21. Nextend/SmartSlider3/Platform/WordPress/Integration/Elementor/ElementorWidgetSmartSlider.php +1 -1
  22. Nextend/SmartSlider3/Renderable/Component/AbstractComponent.php +1 -1
  23. Nextend/SmartSlider3/Renderable/Item/Image/ItemImageFrontend.php +1 -1
  24. Nextend/SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php +1 -6
  25. Nextend/SmartSlider3/Renderable/Item/Vimeo/ItemVimeoFrontend.php +22 -5
  26. Nextend/SmartSlider3/Slider/Feature/SlideBackground.php +4 -2
  27. Nextend/SmartSlider3/Slider/FeatureManager.php +2 -1
  28. Nextend/SmartSlider3/Slider/Slide.php +1 -1
  29. Nextend/SmartSlider3/SmartSlider3Info.php +4 -4
  30. Nextend/WordPress/OutputBuffer.php +12 -0
  31. Public/SmartSlider3/Application/Admin/Assets/dist/smartslider-admin.min.css +1 -1
  32. Public/SmartSlider3/Application/Admin/Assets/dist/smartslider-backend.min.js +0 -1
Nextend/Framework/Form/Element/Gap.php ADDED
@@ -0,0 +1,81 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+
4
+ namespace Nextend\Framework\Form\Element;
5
+
6
+
7
+ use Nextend\Framework\Asset\Js\Js;
8
+ use Nextend\Framework\Form\AbstractField;
9
+ use Nextend\Framework\Form\ContainerInterface;
10
+ use Nextend\Framework\Form\TraitFieldset;
11
+
12
+ class Gap extends AbstractFieldHidden implements ContainerInterface {
13
+
14
+ use TraitFieldset;
15
+
16
+ private static $separator = '|*|';
17
+
18
+ protected $unit = false;
19
+
20
+ protected function fetchElement() {
21
+ $default = explode(self::$separator, $this->defaultValue);
22
+ $value = explode(self::$separator, $this->getValue());
23
+ $value = $value + $default;
24
+
25
+ $html = "<div class='n2_field_margin_padding' style='" . $this->style . "'>";
26
+
27
+ $html .= '<div class="n2_field_margin_padding__pre_label"><i class="ssi_16 ssi_16--unlink"></i></div>';
28
+ $subElements = array();
29
+ $i = 0;
30
+
31
+ $element = $this->first;
32
+ while ($element) {
33
+ $element->setExposeName(false);
34
+ if (isset($value[$i])) {
35
+ $element->setDefaultValue($value[$i]);
36
+ }
37
+
38
+ $html .= $this->decorateElement($element);
39
+ $subElements[$i] = $element->getID();
40
+ $i++;
41
+
42
+ $element = $element->getNext();
43
+ }
44
+
45
+ if ($this->unit) {
46
+ $html .= '<div class="n2_field_unit"><div class="n2_field_unit__current_unit">' . $this->unit . '</div></div>';
47
+ }
48
+
49
+ $html .= parent::fetchElement();
50
+ $html .= "</div>";
51
+
52
+ Js::addInline('new _N2.FormElementGap("' . $this->fieldID . '", ' . json_encode($subElements) . ', "' . self::$separator . '");');
53
+
54
+ $this->renderRelatedFields();
55
+
56
+ return $html;
57
+ }
58
+
59
+ /**
60
+ * @param string $unit
61
+ */
62
+ public function setUnit($unit) {
63
+ $this->unit = $unit;
64
+ }
65
+
66
+ public function getControlName() {
67
+ return $this->name . $this->controlName;
68
+ }
69
+
70
+ /**
71
+ * @param AbstractField $element
72
+ *
73
+ * @return string
74
+ */
75
+ public function decorateElement($element) {
76
+
77
+ $elementHtml = $element->render();
78
+
79
+ return $elementHtml[1];
80
+ }
81
+ }
Nextend/Framework/Parser/Style.php CHANGED
@@ -74,12 +74,9 @@ class Style {
74
 
75
  public function parseBorder($v) {
76
  $border = explode('|*|', $v);
77
- $style = 'border-width: ' . $border[0] . 'px';
78
- $style .= 'border-style: ' . $border[1] . ';';
79
  $rgba = Color::hex2rgba($border[2]);
80
- $style .= 'border-color: #' . substr($border[2], 0, 6) . "; border-color: RGBA(" . $rgba[0] . ',' . $rgba[1] . ',' . $rgba[2] . ',' . round($rgba[3] / 127, 2) . ');';
81
 
82
- return $style;
83
  }
84
 
85
  public function parseBorderRadius($v) {
74
 
75
  public function parseBorder($v) {
76
  $border = explode('|*|', $v);
 
 
77
  $rgba = Color::hex2rgba($border[2]);
 
78
 
79
+ return 'border: ' . $border[0] . 'px ' . $border[1] . ' RGBA(' . $rgba[0] . ',' . $rgba[1] . ',' . $rgba[2] . ',' . round($rgba[3] / 127, 2) . ');';
80
  }
81
 
82
  public function parseBorderRadius($v) {
Nextend/Framework/Style/Style.php CHANGED
@@ -76,13 +76,11 @@ class Style {
76
  }
77
 
78
  public function parseBorder($v) {
 
79
  $border = explode('|*|', $v);
80
- $style = 'border-width: ' . $border[0] . 'px;';
81
- $style .= 'border-style: ' . $border[1] . ';';
82
  $rgba = Color::hex2rgba($border[2]);
83
- $style .= 'border-color: #' . substr($border[2], 0, 6) . "; border-color: RGBA(" . $rgba[0] . ',' . $rgba[1] . ',' . $rgba[2] . ',' . round($rgba[3] / 127, 2) . ');';
84
 
85
- return $style;
86
  }
87
 
88
  public function parseBorderRadius($v) {
76
  }
77
 
78
  public function parseBorder($v) {
79
+
80
  $border = explode('|*|', $v);
 
 
81
  $rgba = Color::hex2rgba($border[2]);
 
82
 
83
+ return 'border: ' . $border[0] . 'px ' . $border[1] . ' RGBA(' . $rgba[0] . ',' . $rgba[1] . ',' . $rgba[2] . ',' . round($rgba[3] / 127, 2) . ');';
84
  }
85
 
86
  public function parseBorderRadius($v) {
Nextend/Framework/View/Html.php CHANGED
@@ -310,6 +310,10 @@ class Html {
310
  if (defined('JETPACK__VERSION')) {
311
  $attrs['class'] .= ' jetpack-lazy-image';
312
  }
 
 
 
 
313
  }
314
 
315
  return $attrs;
310
  if (defined('JETPACK__VERSION')) {
311
  $attrs['class'] .= ' jetpack-lazy-image';
312
  }
313
+
314
+ if (defined('PERFMATTERS_VERSION')) {
315
+ $attrs['class'] .= ' no-lazy';
316
+ }
317
  }
318
 
319
  return $attrs;
Nextend/Languages/es_ES.mo CHANGED
Binary file
Nextend/Languages/es_ES.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
- "POT-Creation-Date: 2021-09-08 13:54+0200\n"
5
- "PO-Revision-Date: 2021-09-09 18:27+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: es\n"
@@ -306,7 +306,7 @@ msgid "Stretch"
306
  msgstr "Estirar"
307
 
308
  msgid "Center"
309
- msgstr "Centrar"
310
 
311
  msgid "Slider's default"
312
  msgstr "Slider por defecto"
@@ -1465,6 +1465,19 @@ msgstr "uno por línea"
1465
  msgid "The cache of the posts with the given ID will be cleared upon save."
1466
  msgstr "El cache de los artículos que tienen un ID se limpiará al grabar."
1467
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1468
  msgid "Thumbnail"
1469
  msgstr "Miniatura"
1470
 
@@ -1565,6 +1578,9 @@ msgstr "Optimizar"
1565
  msgid "Loading"
1566
  msgstr "Carga"
1567
 
 
 
 
1568
  msgid "Instant"
1569
  msgstr "Al instante"
1570
 
@@ -1574,9 +1590,6 @@ msgstr "Después de que la página sea cargada"
1574
  msgid "After delay"
1575
  msgstr "Después de un retraso"
1576
 
1577
- msgid "Loading type"
1578
- msgstr "Tipo de carga"
1579
-
1580
  msgid ""
1581
  "If your slider is above the fold, you can load it immediately. Otherwise, "
1582
  "you can load it only after the page has loaded."
@@ -1772,6 +1785,9 @@ msgstr ""
1772
  "Si el tamaño de tus imágenes no es el mismo que el de tu slider, puedes "
1773
  "mejorar el resultado con los modos de relleno."
1774
 
 
 
 
1775
  msgid "Randomize"
1776
  msgstr "Aleatorio"
1777
 
@@ -2346,6 +2362,9 @@ msgstr ""
2346
  "Por favor consulta %1$snuestra guía detallada%2$s sobre como colocar tu "
2347
  "propio fondo del slide correctamente."
2348
 
 
 
 
2349
  msgid "Blur"
2350
  msgstr "Desenfocar"
2351
 
@@ -4036,6 +4055,15 @@ msgstr ""
4036
  "Si desactivas esta opción, no podrás cambiar del primer slide hacia el "
4037
  "último."
4038
 
 
 
 
 
 
 
 
 
 
4039
  msgid "Shifted"
4040
  msgstr "Cambiado"
4041
 
@@ -4189,6 +4217,42 @@ msgstr "Elástico aleatorio"
4189
  msgid "My text animations"
4190
  msgstr "Mis animaciones de texto"
4191
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4192
  msgid "Slices - Single"
4193
  msgstr "Cortes - Simple"
4194
 
@@ -5742,10 +5806,10 @@ msgid "Pulse"
5742
  msgstr "Pulso"
5743
 
5744
  msgid "Flip left"
5745
- msgstr "Tirar a la izquierda"
5746
 
5747
  msgid "Flip right"
5748
- msgstr "Tirar a la derecha"
5749
 
5750
  msgid "Flip down"
5751
  msgstr "Tirar hacia abajo"
@@ -5781,10 +5845,10 @@ msgid "Bounce in"
5781
  msgstr "Rebotar hacia adentro"
5782
 
5783
  msgid "Bounce in left"
5784
- msgstr "Rebotar a la izquierda"
5785
 
5786
  msgid "Bounce in right"
5787
- msgstr "Rebotar a la derecha"
5788
 
5789
  msgid "Bounce in down"
5790
  msgstr "Rebotar hacia abajo"
@@ -5900,6 +5964,99 @@ msgstr "Progreso"
5900
  msgid "Time"
5901
  msgstr "Tiempo"
5902
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5903
  msgid "Full"
5904
  msgstr "Completo"
5905
 
@@ -5933,9 +6090,6 @@ msgstr "Color activo"
5933
  msgid "Stroke width"
5934
  msgstr "Ancho del trazado"
5935
 
5936
- msgid "Labels"
5937
- msgstr "Etiquetas"
5938
-
5939
  msgid "Inner before"
5940
  msgstr "Dentro antes"
5941
 
@@ -6271,7 +6425,7 @@ msgid ""
6271
  "so we only suggest using this layer if you are a developer!"
6272
  msgstr ""
6273
  "Por favor ten en cuenta que <b>no damos soporte</b> sobre la capa de módulos "
6274
- "de Joomla.<b>El código que carga el modulo con frecuencia necesita código "
6275
  "personalizado que debes escribir, ¡te sugerimos que utilices esta capa solo "
6276
  "sí eres un desarrollador!"
6277
 
@@ -7028,9 +7182,6 @@ msgstr "Color de la barra"
7028
  #~ msgid "Bottom Right"
7029
  #~ msgstr "Abajo a la derecha"
7030
 
7031
- #~ msgid "Outer Bottom"
7032
- #~ msgstr "Parte exterior inferior"
7033
-
7034
  #~ msgid "Text Animation In"
7035
  #~ msgstr "Animación del texto dentro"
7036
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
+ "POT-Creation-Date: 2021-10-16 08:50+0200\n"
5
+ "PO-Revision-Date: 2021-11-02 14:26+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: es\n"
306
  msgstr "Estirar"
307
 
308
  msgid "Center"
309
+ msgstr "Centro"
310
 
311
  msgid "Slider's default"
312
  msgstr "Slider por defecto"
1465
  msgid "The cache of the posts with the given ID will be cleared upon save."
1466
  msgstr "El cache de los artículos que tienen un ID se limpiará al grabar."
1467
 
1468
+ msgid "Fallback slider"
1469
+ msgstr "Slider de resguardo (fallback)"
1470
+
1471
+ msgid "ID or Alias"
1472
+ msgstr "ID o Alias"
1473
+
1474
+ msgid ""
1475
+ "Select another slider by its ID or Alias that displays if your current "
1476
+ "slider has no published slides."
1477
+ msgstr ""
1478
+ "Selecciona otro slider por su ID o Alias para mostrar si tu slider actual no "
1479
+ "tiene slides publicados."
1480
+
1481
  msgid "Thumbnail"
1482
  msgstr "Miniatura"
1483
 
1578
  msgid "Loading"
1579
  msgstr "Carga"
1580
 
1581
+ msgid "Loading type"
1582
+ msgstr "Tipo de carga"
1583
+
1584
  msgid "Instant"
1585
  msgstr "Al instante"
1586
 
1590
  msgid "After delay"
1591
  msgstr "Después de un retraso"
1592
 
 
 
 
1593
  msgid ""
1594
  "If your slider is above the fold, you can load it immediately. Otherwise, "
1595
  "you can load it only after the page has loaded."
1785
  "Si el tamaño de tus imágenes no es el mismo que el de tu slider, puedes "
1786
  "mejorar el resultado con los modos de relleno."
1787
 
1788
+ msgid "Background Blur"
1789
+ msgstr "Desenfoque de fondo"
1790
+
1791
  msgid "Randomize"
1792
  msgstr "Aleatorio"
1793
 
2362
  "Por favor consulta %1$snuestra guía detallada%2$s sobre como colocar tu "
2363
  "propio fondo del slide correctamente."
2364
 
2365
+ msgid "Background blur"
2366
+ msgstr "Desenfoque de fondo"
2367
+
2368
  msgid "Blur"
2369
  msgstr "Desenfocar"
2370
 
4055
  "Si desactivas esta opción, no podrás cambiar del primer slide hacia el "
4056
  "último."
4057
 
4058
+ msgid ""
4059
+ "Background animations only work on the slide background images, which have "
4060
+ "Fill selected at their Fill mode. They don't affect any images if the "
4061
+ "background parallax is enabled."
4062
+ msgstr ""
4063
+ "Las animaciones de fondo funcionan únicamente en las imágenes de fondo del "
4064
+ "slide que tienen seleccionada la opción \"rellenar\". No afecta ninguna "
4065
+ "imagen si el parallax de fondo está activado."
4066
+
4067
  msgid "Shifted"
4068
  msgstr "Cambiado"
4069
 
4217
  msgid "My text animations"
4218
  msgstr "Mis animaciones de texto"
4219
 
4220
+ msgid "Morph - Wave"
4221
+ msgstr "Transformar - Ola"
4222
+
4223
+ msgid "Morph - Brush"
4224
+ msgstr "Transformar - Pincel"
4225
+
4226
+ msgid "Morph - Flow"
4227
+ msgstr "Transformar - Flujo"
4228
+
4229
+ msgid "Morph - Noise"
4230
+ msgstr "Transformar - Ruido"
4231
+
4232
+ msgid "Distortion - Mosaic"
4233
+ msgstr "Distorsión - Mosaico"
4234
+
4235
+ msgid "Distortion - Triangle"
4236
+ msgstr "Distorsión - Triángulo"
4237
+
4238
+ msgid "Distortion - Flow"
4239
+ msgstr "Distorsión - Flujo"
4240
+
4241
+ msgid "Distortion - Warp"
4242
+ msgstr "Distorsión - Warp"
4243
+
4244
+ msgid "Distortion - Storm"
4245
+ msgstr "Distorsión - Tormenta"
4246
+
4247
+ msgid "Distortion - Wave"
4248
+ msgstr "Distorsión - Ola"
4249
+
4250
+ msgid "Distortion - Shard"
4251
+ msgstr "Distorsión - Fragmento"
4252
+
4253
+ msgid "Distortion - Noise"
4254
+ msgstr "Distorsión - Ruido"
4255
+
4256
  msgid "Slices - Single"
4257
  msgstr "Cortes - Simple"
4258
 
5806
  msgstr "Pulso"
5807
 
5808
  msgid "Flip left"
5809
+ msgstr "Tirar desde la izquierda"
5810
 
5811
  msgid "Flip right"
5812
+ msgstr "Tirar desde la derecha"
5813
 
5814
  msgid "Flip down"
5815
  msgstr "Tirar hacia abajo"
5845
  msgstr "Rebotar hacia adentro"
5846
 
5847
  msgid "Bounce in left"
5848
+ msgstr "Rebotar desde la izquierda"
5849
 
5850
  msgid "Bounce in right"
5851
+ msgstr "Rebotar desde la derecha"
5852
 
5853
  msgid "Bounce in down"
5854
  msgstr "Rebotar hacia abajo"
5964
  msgid "Time"
5965
  msgstr "Tiempo"
5966
 
5967
+ msgid "Icon Size"
5968
+ msgstr "Tamaño del ícono"
5969
+
5970
+ msgid "Before After"
5971
+ msgstr "Antes despúes"
5972
+
5973
+ msgid "Left top"
5974
+ msgstr "Superior izquierda"
5975
+
5976
+ msgid "Center top"
5977
+ msgstr "Superior central"
5978
+
5979
+ msgid "Right top"
5980
+ msgstr "Superior derecha"
5981
+
5982
+ msgid "Left center"
5983
+ msgstr "Centro izquierda"
5984
+
5985
+ msgid "Right Center"
5986
+ msgstr "Centro derecha"
5987
+
5988
+ msgid "Left bottom"
5989
+ msgstr "Inferior izquierda"
5990
+
5991
+ msgid "Center bottom"
5992
+ msgstr "Inferior central"
5993
+
5994
+ msgid "Right bottom"
5995
+ msgstr "Inferior derecha"
5996
+
5997
+ msgid "Before Image"
5998
+ msgstr "Imagen antes"
5999
+
6000
+ msgid "After Image"
6001
+ msgstr "Imagen después"
6002
+
6003
+ msgid "Labels"
6004
+ msgstr "Etiquetas"
6005
+
6006
+ msgid "Show Label"
6007
+ msgstr "Mostrar etiqueta"
6008
+
6009
+ msgid "Always"
6010
+ msgstr "Siempre"
6011
+
6012
+ msgid "Before label"
6013
+ msgstr "Etiqueta antes"
6014
+
6015
+ msgid "After label"
6016
+ msgstr "Etiqueta despúes"
6017
+
6018
+ msgid "Behavior"
6019
+ msgstr "Comportamiento"
6020
+
6021
+ msgid "Interaction"
6022
+ msgstr "Interacción"
6023
+
6024
+ msgid "Divider"
6025
+ msgstr "Divisor"
6026
+
6027
+ msgid "Line"
6028
+ msgstr "Línea"
6029
+
6030
+ msgid "Show Caption"
6031
+ msgstr "Mostrar leyenda"
6032
+
6033
+ msgid "Caption text"
6034
+ msgstr "Leyenda"
6035
+
6036
+ msgid "2"
6037
+ msgstr "2"
6038
+
6039
+ msgid "4"
6040
+ msgstr "4"
6041
+
6042
+ msgid "6"
6043
+ msgstr "6"
6044
+
6045
+ msgid "8"
6046
+ msgstr "8"
6047
+
6048
+ msgid "10"
6049
+ msgstr "10"
6050
+
6051
+ msgid "Before image alt tag"
6052
+ msgstr "Alt de imagen antes"
6053
+
6054
+ msgid "After image alt tag"
6055
+ msgstr "Alt de imagen después"
6056
+
6057
+ msgid "Optimize images"
6058
+ msgstr "Optimizar imágenes"
6059
+
6060
  msgid "Full"
6061
  msgstr "Completo"
6062
 
6090
  msgid "Stroke width"
6091
  msgstr "Ancho del trazado"
6092
 
 
 
 
6093
  msgid "Inner before"
6094
  msgstr "Dentro antes"
6095
 
6425
  "so we only suggest using this layer if you are a developer!"
6426
  msgstr ""
6427
  "Por favor ten en cuenta que <b>no damos soporte</b> sobre la capa de módulos "
6428
+ "de Joomla.<br>El código que carga el modulo con frecuencia necesita código "
6429
  "personalizado que debes escribir, ¡te sugerimos que utilices esta capa solo "
6430
  "sí eres un desarrollador!"
6431
 
7182
  #~ msgid "Bottom Right"
7183
  #~ msgstr "Abajo a la derecha"
7184
 
 
 
 
7185
  #~ msgid "Text Animation In"
7186
  #~ msgstr "Animación del texto dentro"
7187
 
Nextend/Languages/nl_BE.mo ADDED
Binary file
Nextend/Languages/nl_BE.po ADDED
@@ -0,0 +1,5977 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: \n"
4
+ "POT-Creation-Date: 2021-10-16 08:50+0200\n"
5
+ "PO-Revision-Date: 2021-11-03 20:07+0100\n"
6
+ "Last-Translator: \n"
7
+ "Language-Team: \n"
8
+ "MIME-Version: 1.0\n"
9
+ "Content-Type: text/plain; charset=UTF-8\n"
10
+ "Content-Transfer-Encoding: 8bit\n"
11
+ "X-Generator: Poedit 3.0\n"
12
+ "X-Poedit-SourceCharset: UTF-8\n"
13
+ "X-Poedit-Basepath: ..\n"
14
+ "X-Poedit-KeywordsList: ;n2_;n2_e;n2_n:1,2;n2_en:1,2;n2_x:1,2c;n2_ex:1,2c\n"
15
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
16
+ "Language: nl_BE\n"
17
+ "X-Poedit-Flags-xgettext: --no-location\n"
18
+ "X-Poedit-SearchPath-0: .\n"
19
+ "X-Poedit-SearchPathExcluded-0: Framework/Asset/Builder/cache\n"
20
+
21
+ msgid "Debug error"
22
+ msgstr "Debug fout"
23
+
24
+ msgid "CURL disabled in your php.ini configuration. Please enable it!"
25
+ msgstr "CURL is gedeactiveerd in uw php.ini configuratie. Gelieve het te activeren!"
26
+
27
+ msgid "Unable to contact with the licensing server, please try again later!"
28
+ msgstr "Kon geen verbinding maken met de licentie server. Gelieve het later nog eens te proberen!"
29
+
30
+ msgctxt "Default Google font family for admin"
31
+ msgid "Montserrat"
32
+ msgstr "Montserrat"
33
+
34
+ msgid "You are not allowed to upload!"
35
+ msgstr "U hebt geen toelating om te uploaden!"
36
+
37
+ msgid "Folder is missing!"
38
+ msgstr "Map ontbreekt!"
39
+
40
+ msgid "Menu item"
41
+ msgstr "Menu item"
42
+
43
+ msgid "You are not authorised to view this resource."
44
+ msgstr "U hebt geen toelating om deze resource te bekijken."
45
+
46
+ #, php-format
47
+ msgid "Missing parameter: %s"
48
+ msgstr "Ontbrekende parameter: %s"
49
+
50
+ msgid "Database error"
51
+ msgstr "Database fout"
52
+
53
+ msgid "Security token mismatch"
54
+ msgstr "Beveiligingstoken komt niet overeen"
55
+
56
+ msgid "Unexpected error"
57
+ msgstr "Onverwachte fout"
58
+
59
+ msgid "Set is not editable"
60
+ msgstr "Set is niet bewerkbaar"
61
+
62
+ msgid "Visual do not exists"
63
+ msgstr "Visueel element bestaat niet"
64
+
65
+ msgid "Not editable"
66
+ msgstr "Niet bewerkbaar"
67
+
68
+ msgid "Security token mismatch. Please refresh the page!"
69
+ msgstr "Beveiligingstoken komt niet overeen. Gelieve de pagina te vernieuwen!"
70
+
71
+ #, php-format
72
+ msgid "If you see this message after the repair database process, please %1$scontact us%2$s with the log:"
73
+ msgstr "Als u dit bericht ziet na het database reparatie proces %1$scontacteer ons%2$s dan met het log:"
74
+
75
+ msgid "Contact your server host and ask them to fix this for you!"
76
+ msgstr "Contacteer uw server host en vraag hem om dit voor u te repareren!"
77
+
78
+ msgid "Unexpected database error."
79
+ msgstr "Onverwachte database fout."
80
+
81
+ msgid "Try to repair database"
82
+ msgstr "Probeer de database te repareren"
83
+
84
+ msgid "Font manager"
85
+ msgstr "Font beheer"
86
+
87
+ msgid "Text"
88
+ msgstr "Tekst"
89
+
90
+ msgid "Hover"
91
+ msgstr "Muisover"
92
+
93
+ msgid "Heading"
94
+ msgstr "Hoofding"
95
+
96
+ msgid "Link"
97
+ msgstr "Link"
98
+
99
+ msgid "Button"
100
+ msgstr "Knop"
101
+
102
+ msgid "Paragraph"
103
+ msgstr "Paragraaf"
104
+
105
+ msgid "Dot"
106
+ msgstr "Stip"
107
+
108
+ msgid "Active"
109
+ msgstr "Actief"
110
+
111
+ msgid "List"
112
+ msgstr "Lijst"
113
+
114
+ msgid "Highlight"
115
+ msgstr "Accentuering"
116
+
117
+ msgctxt "Default font"
118
+ msgid "Roboto,Arial"
119
+ msgstr "Roboto,Arial"
120
+
121
+ msgid "Font settings"
122
+ msgstr "Font instellingen"
123
+
124
+ msgid "Clear tab"
125
+ msgstr "Tab leegmaken"
126
+
127
+ msgid "Family"
128
+ msgstr "Familie"
129
+
130
+ msgid "Color"
131
+ msgstr "Kleur"
132
+
133
+ msgid "Size"
134
+ msgstr "Grootte"
135
+
136
+ msgid "Font weight"
137
+ msgstr "Font gewicht"
138
+
139
+ msgid "Decoration"
140
+ msgstr "Decoratie"
141
+
142
+ msgid "Line height"
143
+ msgstr "Lijnhoogte"
144
+
145
+ msgid "Text align"
146
+ msgstr "Tekst uitlijning"
147
+
148
+ msgid "Letter spacing"
149
+ msgstr "Ruimte tussen letters"
150
+
151
+ msgid "Word spacing"
152
+ msgstr "Ruimte tussen woorden"
153
+
154
+ msgid "Transform"
155
+ msgstr "Omvormen"
156
+
157
+ msgid "None"
158
+ msgstr "Geen"
159
+
160
+ msgid "Capitalize"
161
+ msgstr "In hoofdletters"
162
+
163
+ msgid "Uppercase"
164
+ msgstr "Hoofdletters"
165
+
166
+ msgid "Lowercase"
167
+ msgstr "Kleine letters"
168
+
169
+ msgid "Text shadow"
170
+ msgstr "Tekst schaduw"
171
+
172
+ msgid "Preview"
173
+ msgstr "Voorvertoning"
174
+
175
+ msgid "Frontend"
176
+ msgstr "Frontend"
177
+
178
+ msgid "You can load Google Fonts on the frontend."
179
+ msgstr "U kunt Google Fonts in de frontend inladen."
180
+
181
+ msgid "Backend"
182
+ msgstr "Backend"
183
+
184
+ msgid "You can load Google Fonts in the backend."
185
+ msgstr "U kunt Google Fonts in de backend inladen."
186
+
187
+ msgid "Style"
188
+ msgstr "Stijl"
189
+
190
+ msgctxt "Font style"
191
+ msgid "Italic"
192
+ msgstr "Cursief"
193
+
194
+ msgid "Normal"
195
+ msgstr "Normaal"
196
+
197
+ msgid "Choose"
198
+ msgstr "Kies"
199
+
200
+ msgid "Orientation"
201
+ msgstr "Oriëntering"
202
+
203
+ msgid "Portrait"
204
+ msgstr "Portret"
205
+
206
+ msgid "Landscape"
207
+ msgstr "Landschap"
208
+
209
+ msgid "Mobile"
210
+ msgstr "Mobieltje"
211
+
212
+ msgid "Large mobile"
213
+ msgstr "Groot mobieltje"
214
+
215
+ msgid "Tablet"
216
+ msgstr "Tablet"
217
+
218
+ msgid "Large tablet"
219
+ msgstr "Grote tablet"
220
+
221
+ msgid "Desktop"
222
+ msgstr "Desktop"
223
+
224
+ msgid "Large desktop"
225
+ msgstr "Grote desktop"
226
+
227
+ msgid "More"
228
+ msgstr "Meer"
229
+
230
+ msgid "Less"
231
+ msgstr "Minder"
232
+
233
+ msgid "View records"
234
+ msgstr "Toon records"
235
+
236
+ msgid "Font"
237
+ msgstr "Font"
238
+
239
+ msgid "Warning"
240
+ msgstr "Waarschuwing"
241
+
242
+ msgid "Dotted"
243
+ msgstr "Gestipt"
244
+
245
+ msgid "Dashed"
246
+ msgstr "Gestreept"
247
+
248
+ msgid "Solid"
249
+ msgstr "Solide"
250
+
251
+ msgid "Double"
252
+ msgstr "Dubbel"
253
+
254
+ msgid "Groove"
255
+ msgstr "Groef"
256
+
257
+ msgid "Ridge"
258
+ msgstr "Ribbel"
259
+
260
+ msgid "Inset"
261
+ msgstr "Insprong"
262
+
263
+ msgid "Outset"
264
+ msgstr "Uitsprong"
265
+
266
+ msgid "Field"
267
+ msgstr "Veld"
268
+
269
+ msgid "Order"
270
+ msgstr "Volgorde"
271
+
272
+ msgid "Ascending"
273
+ msgstr "Oplopend"
274
+
275
+ msgid "Descending"
276
+ msgstr "Aflopend"
277
+
278
+ msgid "Off"
279
+ msgstr "Uit"
280
+
281
+ msgid "On"
282
+ msgstr "Aan"
283
+
284
+ msgid "Hold down the ctrl (Windows) or command (MAC) button to select multiple options."
285
+ msgstr "Houd de ctrl (Windows) of command (MAC) knop ingedrukt om meerdere opties te selecteren."
286
+
287
+ msgid "Fill"
288
+ msgstr "Opvullen"
289
+
290
+ msgid "Blur fit"
291
+ msgstr "Wazig inpassen"
292
+
293
+ msgid "Fit"
294
+ msgstr "Inpassen"
295
+
296
+ msgid "Stretch"
297
+ msgstr "Uitrekken"
298
+
299
+ msgid "Center"
300
+ msgstr "Midden"
301
+
302
+ msgid "Slider's default"
303
+ msgstr "Standaard van de slider"
304
+
305
+ msgid "All"
306
+ msgstr "Allemaal"
307
+
308
+ #, php-format
309
+ msgid "Not %s"
310
+ msgstr "Niet %s"
311
+
312
+ msgid "Bold"
313
+ msgstr "Vet"
314
+
315
+ msgid "Extra light"
316
+ msgstr "Extra licht"
317
+
318
+ msgid "Light"
319
+ msgstr "Licht"
320
+
321
+ msgid "Semi bold"
322
+ msgstr "Semi vet"
323
+
324
+ msgid "Extra bold"
325
+ msgstr "Extra vet"
326
+
327
+ msgid "Self"
328
+ msgstr "Zelfde venster"
329
+
330
+ msgid "New"
331
+ msgstr "Nieuw venster"
332
+
333
+ msgid "Parent"
334
+ msgstr "Bovenliggend venster"
335
+
336
+ msgid "Top"
337
+ msgstr "Bovenaan"
338
+
339
+ msgid "Select images for devices"
340
+ msgstr "Selecteer afbeeldingen voor toestellen"
341
+
342
+ msgid "Select a page or a blog post from your WordPress site."
343
+ msgstr "Selecteer een pagina of een blog inzending van uw WordPress site."
344
+
345
+ msgid "Select article or menu item from your site."
346
+ msgstr "Selecteer een artikel of een menu item van uw site."
347
+
348
+ msgid "Reset to normal state"
349
+ msgstr "Stel terug in op normale status"
350
+
351
+ msgid "Default"
352
+ msgstr "Standaard"
353
+
354
+ msgid "The image is empty"
355
+ msgstr "De afbeelding is leeg"
356
+
357
+ msgid "Empty"
358
+ msgstr "Leeg"
359
+
360
+ msgid "Image manager"
361
+ msgstr "Beheer afbeeldingen"
362
+
363
+ msgid "Desktop retina"
364
+ msgstr "Desktop retina"
365
+
366
+ msgid "Image"
367
+ msgstr "Afbeelding"
368
+
369
+ #, php-format
370
+ msgid "The %1$s is not turned on in your server, which is necessary to read rss feeds. You should contact your server host, and ask them to enable it!"
371
+ msgstr "De %1$s is niet ingeschakeld in uw server, hetgeen nodig is voor het lezen van rss feeds. Contacteer uw server host en vraag hem het te activeren!"
372
+
373
+ #, php-format
374
+ msgid "%s is not readable"
375
+ msgstr "%s is niet leesbaar"
376
+
377
+ msgid "Style manager"
378
+ msgstr "Stijlbeheer"
379
+
380
+ msgid "Style settings"
381
+ msgstr "Stijl instellingen"
382
+
383
+ msgid "Background color"
384
+ msgstr "Achtergrondkleur"
385
+
386
+ msgid "Opacity"
387
+ msgstr "Ondoorzichtigheid"
388
+
389
+ msgid "Padding"
390
+ msgstr "Opvulling"
391
+
392
+ msgid "Border"
393
+ msgstr "Rand"
394
+
395
+ msgid "Border radius"
396
+ msgstr "Straal van rand"
397
+
398
+ msgid "Box shadow"
399
+ msgstr "Vak schaduw"
400
+
401
+ msgid "Single"
402
+ msgstr "Individueel"
403
+
404
+ msgid "Simple"
405
+ msgstr "Simpel"
406
+
407
+ msgid "Box"
408
+ msgstr "Vak"
409
+
410
+ msgid "Heading active"
411
+ msgstr "Hoofding actief"
412
+
413
+ msgid "Dashboard"
414
+ msgstr "Bedieningspaneel"
415
+
416
+ msgid "Drop files here"
417
+ msgstr "Laat bestanden hier vallen"
418
+
419
+ msgid "Parent directory"
420
+ msgstr "Moedermap"
421
+
422
+ msgid "Current path"
423
+ msgstr "Huidig pad"
424
+
425
+ msgid "Preset"
426
+ msgstr "Voorinstelling"
427
+
428
+ msgid "You can use presets to save style settings for later use. Clicking on any preset will load its styling to your current layer, and the previous style settings will be lost."
429
+ msgstr "U kunt voorinstellingen gebruiken om stijl instellingen op te slaan voor later gebruik. Het klikken op eender welke voorinstelling zal de stijl ervan inladen in uw huidige laag en de vorige stijl instelling zal verloren gaan."
430
+
431
+ msgid "Layer design options affect every device. If you need to make responsive adjustments, look for the options with the device icon."
432
+ msgstr "Laag ontwerp opties hebben invloed op elk toestel. Als u responsive aanpassingen moet doen kijk dan naar de opties met het toestel icoon."
433
+
434
+ msgid "Reset style to default"
435
+ msgstr "Stijl terug instellen op standaard waarde"
436
+
437
+ msgid "Save style as new preset"
438
+ msgstr "Stijl opslaan als nieuwe voorinstelling"
439
+
440
+ msgid "Load style"
441
+ msgstr "Stijl inladen"
442
+
443
+ msgid "You have not created any presets for this layer yet."
444
+ msgstr "U hebt nog geen voorinstellingen aangemaakt voor deze laag."
445
+
446
+ msgid "Save as"
447
+ msgstr "Opslaan als"
448
+
449
+ msgid "Name"
450
+ msgstr "Naam"
451
+
452
+ msgid "Please fill the name field!"
453
+ msgstr "Gelieve het naam veld in te vullen!"
454
+
455
+ msgid "Preset saved."
456
+ msgstr "Voorinstelling opgeslagen."
457
+
458
+ msgid "Overwrite preset"
459
+ msgstr "Voorinstelling overschrijven"
460
+
461
+ msgid "Preset deleted."
462
+ msgstr "Voorinstelling verwijderd."
463
+
464
+ msgid "Choose folder"
465
+ msgstr "Kies map"
466
+
467
+ msgid "Select"
468
+ msgstr "Selecteer"
469
+
470
+ msgid "Disabled"
471
+ msgstr "Gedeactiveerd"
472
+
473
+ msgid "Image field can not be empty!"
474
+ msgstr "Afbeelding veld mag niet leeg zijn!"
475
+
476
+ msgid "Done"
477
+ msgstr "Klaar"
478
+
479
+ msgid "No file selected."
480
+ msgstr "Geen bestand geselecteerd."
481
+
482
+ msgid "Open docs"
483
+ msgstr "Open documenten"
484
+
485
+ msgid "The changes you made will be lost if you navigate away from this page."
486
+ msgstr "De veranderingen die u hebt aangebracht zullen verloren gaan als u deze pagina verlaat."
487
+
488
+ msgid "Icons"
489
+ msgstr "Iconen"
490
+
491
+ msgid "Search"
492
+ msgstr "Zoeken"
493
+
494
+ msgid "Are you sure?"
495
+ msgstr "Bent u zeker?"
496
+
497
+ #, javascript-format
498
+ msgid "You're about to %s. "
499
+ msgstr "U staat op het punt om te %s. "
500
+
501
+ #, javascript-format
502
+ msgid "The deletion is irreversible, and it's not possible to recover %s."
503
+ msgstr "Het verwijderen is onomkeerbaar en het is niet mogelijk om %s te herstellen."
504
+
505
+ msgid "Cancel"
506
+ msgstr "Annuleren"
507
+
508
+ msgid "Delete"
509
+ msgstr "Verwijderen"
510
+
511
+ msgid "Close"
512
+ msgstr "Sluiten"
513
+
514
+ msgid "Create group"
515
+ msgstr "Groep maken"
516
+
517
+ msgid "Group name"
518
+ msgstr "Groepsnaam"
519
+
520
+ msgid "Group created"
521
+ msgstr "Groep aangemaakt"
522
+
523
+ msgid "Records"
524
+ msgstr "Records"
525
+
526
+ msgid "Keyboard shortcuts"
527
+ msgstr "Toetsenbord snelkoppelingen"
528
+
529
+ msgid "Got it"
530
+ msgstr "Ik begrijp het"
531
+
532
+ msgid "General"
533
+ msgstr "Algemeen"
534
+
535
+ msgid "Content tab"
536
+ msgstr "Inhoud tab"
537
+
538
+ msgid "Style tab"
539
+ msgstr "Stijl tab"
540
+
541
+ msgid "Animation tab"
542
+ msgstr "Animatie tab"
543
+
544
+ msgid "Add Layer"
545
+ msgstr "Laag toevoegen"
546
+
547
+ msgid "Layer List"
548
+ msgstr "Lijst met lagen"
549
+
550
+ msgid "Timeline"
551
+ msgstr "Tijdlijn"
552
+
553
+ msgid "View"
554
+ msgstr "Weergave"
555
+
556
+ msgid "Adjust"
557
+ msgstr "Aanpassen"
558
+
559
+ msgid "Move (Absolute)"
560
+ msgstr "Verplaatsen (absoluut)"
561
+
562
+ msgid "Arrows"
563
+ msgstr "Pijlen"
564
+
565
+ msgid "Align (Absolute)"
566
+ msgstr "Uitlijnen (absoluut)"
567
+
568
+ msgid "Numeric keys"
569
+ msgstr "Numerieke toetsen"
570
+
571
+ msgid "Action"
572
+ msgstr "Actie"
573
+
574
+ msgid "Duplicate"
575
+ msgstr "Klonen"
576
+
577
+ msgid "Copy"
578
+ msgstr "Kopiëren"
579
+
580
+ msgid "Paste"
581
+ msgstr "Plakken"
582
+
583
+ msgid "Undo"
584
+ msgstr "Ongedaan maken"
585
+
586
+ msgid "Redo"
587
+ msgstr "Nogmaals uitvoeren"
588
+
589
+ msgid "Save"
590
+ msgstr "Opslaan"
591
+
592
+ msgid "Play animations"
593
+ msgstr "Speel animaties"
594
+
595
+ msgid "Clear device specific settings"
596
+ msgstr "Toestel specifieke instellingen leegmaken"
597
+
598
+ msgid "Current layer, current device"
599
+ msgstr "Huidige laag, huidig toestel"
600
+
601
+ msgid "Current layer, all devices"
602
+ msgstr "Huidige laag, alle toestellen"
603
+
604
+ msgid "All layers, current device"
605
+ msgstr "Alle lagen, huidig toestel"
606
+
607
+ msgid "All layers, all devices"
608
+ msgstr "Alle lagen, alle toestellen"
609
+
610
+ msgid "Unexpected response"
611
+ msgstr "Onverwacht antwoord"
612
+
613
+ msgid "Scroll to"
614
+ msgstr "Scroll naar"
615
+
616
+ msgid "Scroll to alias"
617
+ msgstr "Scroll naar alias"
618
+
619
+ msgid "Go to slide"
620
+ msgstr "Ga naar slide"
621
+
622
+ msgid "Go to slide ID"
623
+ msgstr "Ga naar slide ID"
624
+
625
+ msgid "Previous slide"
626
+ msgstr "Vorige slide"
627
+
628
+ msgid "Next slide"
629
+ msgstr "Volgende slide"
630
+
631
+ msgid "Slide event"
632
+ msgstr "Slide evenement"
633
+
634
+ msgid "Examples"
635
+ msgstr "Voorbeelden"
636
+
637
+ msgid "Scrolls to the top of the page."
638
+ msgstr "Scrollt naar de bovenkant van de pagina."
639
+
640
+ msgid "Scrolls to the bottom of the page."
641
+ msgstr "Scrollt naar de onderkant van de pagina."
642
+
643
+ msgid "You can use any jQuery selector to scroll to a specific element on the page. Example: \"#pricing\" scrolls to the element with the id of \"pricing\"."
644
+ msgstr "U mag eender welke jQuery selector gebruiken om te scrollen naar een specifiek element op de pagina. Bijvoorbeeld: \"#pricing\" scrollt naar het element met het id \"pricing\"."
645
+
646
+ msgid "Slider alias"
647
+ msgstr "Slider alias"
648
+
649
+ msgid "Slider alias set at Slider settings > General"
650
+ msgstr "Slider alias ingesteld in de Slider instellingen > Algemeen"
651
+
652
+ msgid "Slide index"
653
+ msgstr "Slide index"
654
+
655
+ msgid "Direction"
656
+ msgstr "Richting"
657
+
658
+ msgid "Auto"
659
+ msgstr "Automatisch"
660
+
661
+ msgid "Backward"
662
+ msgstr "Achteruit"
663
+
664
+ msgid "Forward"
665
+ msgstr "Vooruit"
666
+
667
+ #, javascript-format
668
+ msgid "slide index: 2 %s direction: backward"
669
+ msgstr "slide index: 2 %s richting: achteruit"
670
+
671
+ msgid "Switches to the second slide as if the previous arrow was pressed"
672
+ msgstr "Schakelt naar de tweede slide alsof er op de vorige pijl geklikt werd"
673
+
674
+ #, javascript-format
675
+ msgid "slide index: 5 %s direction: forward"
676
+ msgstr "slide index: 5 %s richting: vooruit"
677
+
678
+ msgid "Switches to the fifth slide as if the next arrow was pressed"
679
+ msgstr "Schakelt naar de vijfde slide alsof er op de volgende pijl geklikt werd"
680
+
681
+ msgid "Slide ID"
682
+ msgstr "Slide ID"
683
+
684
+ msgid "Switches to the slide with the #2 ID as if the previous arrow was pressed"
685
+ msgstr "Schakelt naar de slide met het #2 ID alsof er op de vorige pijl geklikt werd"
686
+
687
+ msgid "Switches to the slide with the #5 ID as if the next arrow was pressed"
688
+ msgstr "Schakelt naar de slide met het #5 ID alsof er op de volgende pijl geklikt werd"
689
+
690
+ msgid "Event name"
691
+ msgstr "Evenement naam"
692
+
693
+ msgid "An event you use to trigger layer animation(s) with"
694
+ msgstr "Een evenement dat u gebruikt om de laag animatie(s) te activeren"
695
+
696
+ msgid "Content List - One Per Line"
697
+ msgstr "Inhoudslijst - Eén per regel"
698
+
699
+ msgid "Choose images"
700
+ msgstr "Kies afbeeldingen"
701
+
702
+ msgid "Titles - One Per Line"
703
+ msgstr "Titels - Eén per regel"
704
+
705
+ msgid "Autoplay duration"
706
+ msgstr "Duur automatisch afspelen"
707
+
708
+ msgid "URL"
709
+ msgstr "URL"
710
+
711
+ msgid "Search keyword"
712
+ msgstr "Zoek trefwoord"
713
+
714
+ msgid "Posts"
715
+ msgstr "Inzendingen"
716
+
717
+ msgid "Lightbox"
718
+ msgstr "Lightbox"
719
+
720
+ msgid "Insert"
721
+ msgstr "Invoegen"
722
+
723
+ msgid "Oops, Something Went Wrong"
724
+ msgstr "Oeps. Er ging iets mis"
725
+
726
+ msgid "Success"
727
+ msgstr "Gelukt"
728
+
729
+ msgid "Notice"
730
+ msgstr "Opmerking"
731
+
732
+ msgid "Select image"
733
+ msgstr "Selecteer afbeelding"
734
+
735
+ msgid "Use Joomla selector"
736
+ msgstr "Gebruik Joomla selector"
737
+
738
+ msgid "Use default selector"
739
+ msgstr "Gebruik standaard selector"
740
+
741
+ msgid "Deleted."
742
+ msgstr "Verwijderd."
743
+
744
+ msgid "Static"
745
+ msgstr "Statisch"
746
+
747
+ msgid "Save as New"
748
+ msgstr "Opslaan als nieuw"
749
+
750
+ msgid "Saved."
751
+ msgstr "Opgeslagen."
752
+
753
+ msgid "Enabled"
754
+ msgstr "Geactiveerd"
755
+
756
+ msgid "Column"
757
+ msgstr "Kolom"
758
+
759
+ msgid "There is no layer available to be parent of the current layer!"
760
+ msgstr "Er is geen laag beschikbaar om de moeder te zijn van de huidige laag!"
761
+
762
+ msgid "Pick the parent layer!"
763
+ msgstr "Kies de moederlaag!"
764
+
765
+ msgid "Pick the align point of the parent layer!"
766
+ msgstr "Kies het uitlijningspunt van de moederlaag!"
767
+
768
+ msgid "Pick the align point of the child layer!"
769
+ msgstr "Kies het uitlijningspunt van de onderliggende laag!"
770
+
771
+ msgid "Advanced"
772
+ msgstr "Uitgebreid"
773
+
774
+ #, javascript-format
775
+ msgid "Outer %s"
776
+ msgstr "Buitenste %s"
777
+
778
+ msgid "Left"
779
+ msgstr "Links"
780
+
781
+ msgid "Right"
782
+ msgstr "Rechts"
783
+
784
+ msgid "Middle"
785
+ msgstr "Midden"
786
+
787
+ msgid "Bottom"
788
+ msgstr "Onderkant"
789
+
790
+ msgid "Layer(s)"
791
+ msgstr "Laag/Lagen"
792
+
793
+ msgid "Hide on"
794
+ msgstr "Verberg op"
795
+
796
+ msgid "Rename"
797
+ msgstr "Hernoemen"
798
+
799
+ msgid "Show/Hide in editor"
800
+ msgstr "Tonen/verbergen in editor"
801
+
802
+ msgid "Animation"
803
+ msgstr "Animatie"
804
+
805
+ msgid "Add animation"
806
+ msgstr "Animatie toevoegen"
807
+
808
+ msgid "Remove animations"
809
+ msgstr "Verwijder animaties"
810
+
811
+ msgid "Layer Animation - Basic"
812
+ msgstr "Laag animatie - Basis"
813
+
814
+ msgid "Add keyframe"
815
+ msgstr "Keyframe toevoegen"
816
+
817
+ msgid "Loop"
818
+ msgstr "Herhalen"
819
+
820
+ msgid "Special Zero"
821
+ msgstr "Speciaal nul"
822
+
823
+ msgid "Keyframe"
824
+ msgstr "Keyframe"
825
+
826
+ msgid "Layer Animation - Reveal"
827
+ msgstr "Laag animatie - Onthullen"
828
+
829
+ msgid "Open/Close"
830
+ msgstr "Openen/Sluiten"
831
+
832
+ msgid "Content"
833
+ msgstr "Inhoud"
834
+
835
+ msgid "Child layers"
836
+ msgstr "Onderliggende lagen"
837
+
838
+ msgid "Animated heading"
839
+ msgstr "Geanimeerde hoofding"
840
+
841
+ msgid "Highlighted heading"
842
+ msgstr "Geaccentueerde hoofding"
843
+
844
+ msgid "Text animation in"
845
+ msgstr "Tekst animatie in"
846
+
847
+ msgid "Text animation out"
848
+ msgstr "Tekst animatie uit"
849
+
850
+ msgid "Layer"
851
+ msgstr "Laag"
852
+
853
+ msgid "Row"
854
+ msgstr "Rij"
855
+
856
+ msgid "Slide"
857
+ msgstr "Slide"
858
+
859
+ msgid "Theme"
860
+ msgstr "Thema"
861
+
862
+ #, javascript-format
863
+ msgid "%s or newer required for this feature."
864
+ msgstr "%s of nieuwer is vereist voor deze mogelijkheid."
865
+
866
+ msgid "This section requires activated Pro version."
867
+ msgstr "Deze sectie vereist een geactiveerde Pro versie."
868
+
869
+ #, javascript-format
870
+ msgid "This block is not available in the free version. %s"
871
+ msgstr "Dit blok is niet beschikbaar in de gratis versie. %s"
872
+
873
+ msgid "Go Pro"
874
+ msgstr "Word Pro"
875
+
876
+ msgid "Editor settings"
877
+ msgstr "Editor instellingen"
878
+
879
+ msgid "Upgrade to Pro"
880
+ msgstr "Upgrade naar Pro"
881
+
882
+ msgid "Guide settings"
883
+ msgstr "Gidslijn instellingen"
884
+
885
+ msgid "Smart snap"
886
+ msgstr "Slim aanhechten"
887
+
888
+ msgid "Round to 5px"
889
+ msgstr "Rond af op 5px"
890
+
891
+ msgid "Ruler"
892
+ msgstr "Liniaal"
893
+
894
+ msgid "Clear guides"
895
+ msgstr "Gidslijnen leegmaken"
896
+
897
+ msgid "Activate Smart Slider 3 Pro"
898
+ msgstr "Activeer Smart Slider 3 Pro"
899
+
900
+ msgid "Activation is required to unlock all features!"
901
+ msgstr "Activatie is vereist om alle mogelijkheden te ontsluiten!"
902
+
903
+ msgid "Register Smart Slider 3 Pro on this domain to enable auto update, slider templates and slide library."
904
+ msgstr "Registreer Smart Slider 3 Pro op dit domein om automatische updates, slider templates en de slide bibliotheek te activeren."
905
+
906
+ msgid "Skip"
907
+ msgstr "Overslaan"
908
+
909
+ msgid "Activate"
910
+ msgstr "Activeer"
911
+
912
+ msgid "Smart Slider 3 activated!"
913
+ msgstr "Smart Slider 3 geaactiveerd!"
914
+
915
+ msgid "Laptop"
916
+ msgstr "Laptop"
917
+
918
+ msgid "Width"
919
+ msgstr "Breedte"
920
+
921
+ msgid "Height"
922
+ msgstr "Hoogte"
923
+
924
+ #, javascript-format
925
+ msgid "Below %s pixels."
926
+ msgstr "Onder %s pixels."
927
+
928
+ #, javascript-format
929
+ msgid "Boven %s pixels."
930
+ msgstr "Boven %s pixels."
931
+
932
+ #, javascript-format
933
+ msgid "Between %s and %s pixels."
934
+ msgstr "Tussen %s en %s pixels."
935
+
936
+ #, javascript-format, php-format
937
+ msgid "This slide is hidden on the following devices: %s"
938
+ msgstr "Deze slide wordt verborgen op de volgende toestellen: %s"
939
+
940
+ msgid "Data"
941
+ msgstr "Data"
942
+
943
+ msgid "Filter"
944
+ msgstr "Filter"
945
+
946
+ msgid "No"
947
+ msgstr "Nee"
948
+
949
+ msgid "Clean HTML"
950
+ msgstr "HTML opkuisen"
951
+
952
+ msgid "Remove HTML"
953
+ msgstr "HTML verwijderen"
954
+
955
+ msgid "Split by Chars"
956
+ msgstr "Splits op lettertekens"
957
+
958
+ msgid "Strict"
959
+ msgstr "Strikt"
960
+
961
+ msgid "Respect words"
962
+ msgstr "Respecteer woorden"
963
+
964
+ msgid "Find image"
965
+ msgstr "Zoek afbeelding"
966
+
967
+ msgid "Find link"
968
+ msgstr "Zoek link"
969
+
970
+ msgid "Remove links"
971
+ msgstr "Verwijder links"
972
+
973
+ msgid "Remove line breaks"
974
+ msgstr "Verwijder nieuwe regels"
975
+
976
+ msgid "Result"
977
+ msgstr "Resultaat"
978
+
979
+ msgid "Change slider type"
980
+ msgstr "Verander slider type"
981
+
982
+ msgid "Changing your slider type is irreversible. After changing your slider type, <b>you will lose all slider type related settings</b>."
983
+ msgstr "Het veranderen van uw slider type is onomkeerbaar. Na het veranderen van uw slider type, <b>zult u alle instellingen voor dat slider type verliezen</b>."
984
+
985
+ msgid "Slider type"
986
+ msgstr "Slider type"
987
+
988
+ msgid "Convert"
989
+ msgstr "Omvormen"
990
+
991
+ msgid "What do you want to create today?"
992
+ msgstr "Wat wilt u vandaag maken?"
993
+
994
+ msgid "Use our powerful visual editor, or simply import one of our existing template."
995
+ msgstr "Gebruik onze krachtige visuele editor of importeer eenvoudigweg één van onze bestaande templates."
996
+
997
+ msgid "Create a New Project"
998
+ msgstr "Maak een nieuw project"
999
+
1000
+ msgid "Start a new project from scratch and build exactly what you’ve imagined. You can easily customize every pixels and create anything with layers."
1001
+ msgstr "Begin een nieuw project vanaf nul en bouw exact datgene wat u zich ingebeeld hebt. U kunt gemakkelijk elke pixel aanpassen en eender wat met lagen aanmaken."
1002
+
1003
+ msgid "Start with a Template"
1004
+ msgstr "Begin met een template"
1005
+
1006
+ msgid "Start with a template and make it your own with the innovative drag and drop interface. You can choose from hundreds of premade templates."
1007
+ msgstr "Begin met een template en maak er uw eigen versie van met de innovatieve drag en drop interface. U kunt kiezen uit honderden vooraf gemaakte templates."
1008
+
1009
+ msgid "or import your own files"
1010
+ msgstr "of importeer uw eigen bestanden"
1011
+
1012
+ msgid "Create new project"
1013
+ msgstr "Maak nieuw project"
1014
+
1015
+ msgid "Project type"
1016
+ msgstr "Project type"
1017
+
1018
+ msgid "Slider"
1019
+ msgstr "Slider"
1020
+
1021
+ msgid "Block"
1022
+ msgstr "Blok"
1023
+
1024
+ msgid "Full page"
1025
+ msgstr "Volledige pagina"
1026
+
1027
+ msgid "Carousel"
1028
+ msgstr "Carousel"
1029
+
1030
+ msgid "Showcase"
1031
+ msgstr "Etalage"
1032
+
1033
+ msgid "Pro"
1034
+ msgstr "Pro"
1035
+
1036
+ msgid "Settings"
1037
+ msgstr "Instellingen"
1038
+
1039
+ msgid "My project"
1040
+ msgstr "Mijn project"
1041
+
1042
+ msgid "Boxed"
1043
+ msgstr "In een box"
1044
+
1045
+ msgid "Full width"
1046
+ msgstr "Volledige breedte"
1047
+
1048
+ msgid "Layout"
1049
+ msgstr "Lay-out"
1050
+
1051
+ msgid "Slide width"
1052
+ msgstr "Slide breedte"
1053
+
1054
+ msgid "Slide height"
1055
+ msgstr "Slide hoogte"
1056
+
1057
+ msgid "Create"
1058
+ msgstr "Aanmaken"
1059
+
1060
+ msgid "Join The Smart Slider 3 Community"
1061
+ msgstr "Word lid van de Smart Slider 3 Community"
1062
+
1063
+ msgid "Join more than 120,000 subscribers and get access to the latest slider templates, tips, tutorials and other exclusive contents directly to your inbox."
1064
+ msgstr "Word één van de meer dan 120.000 abonnees en krijg de laatste slider templates, tips, handleidingen en andere exclusieve inhoud direct in uw inbox."
1065
+
1066
+ msgid "Subscribe"
1067
+ msgstr "Abonneren"
1068
+
1069
+ msgid "Change group"
1070
+ msgstr "Verander groep"
1071
+
1072
+ msgid "Groups"
1073
+ msgstr "Groepen"
1074
+
1075
+ msgid "Set"
1076
+ msgstr "Set"
1077
+
1078
+ msgid "Up"
1079
+ msgstr "Omhoog"
1080
+
1081
+ msgid "Insert group"
1082
+ msgstr "Groep invoegen"
1083
+
1084
+ msgid "Group"
1085
+ msgstr "Groep"
1086
+
1087
+ msgid "Move to trash"
1088
+ msgstr "Verplaats naar prullenbak"
1089
+
1090
+ msgid "empty the trash"
1091
+ msgstr "maak de prullenbak leeg"
1092
+
1093
+ msgid "Delete permanently"
1094
+ msgstr "Permanent verwijderen"
1095
+
1096
+ msgid "delete this slider"
1097
+ msgstr "verwijder deze slider"
1098
+
1099
+ msgid "Publish"
1100
+ msgstr "Publiceren"
1101
+
1102
+ msgid "Unpublish"
1103
+ msgstr "Depubliceren"
1104
+
1105
+ msgid "Edit generator"
1106
+ msgstr "Generator bewerken"
1107
+
1108
+ msgid "Set as first"
1109
+ msgstr "Instellen als eerste"
1110
+
1111
+ msgid "Convert to slide"
1112
+ msgstr "Omvormen tot slide"
1113
+
1114
+ msgid "Copy slide to"
1115
+ msgstr "Kopieer slide naar"
1116
+
1117
+ msgid "Add post"
1118
+ msgstr "Inzending toevoegen"
1119
+
1120
+ msgid "Please select a Post first!"
1121
+ msgstr "Gelieve eerst een inzending te kiezen!"
1122
+
1123
+ msgid "delete these slides"
1124
+ msgstr "verwijder deze slides"
1125
+
1126
+ msgid "delete this slide"
1127
+ msgstr "verwijder deze slide"
1128
+
1129
+ msgid "Animations"
1130
+ msgstr "Animaties"
1131
+
1132
+ msgid "Effects"
1133
+ msgstr "Effecten"
1134
+
1135
+ msgid "Shape divider"
1136
+ msgstr "Vorm scheiding"
1137
+
1138
+ msgid "Particle effect"
1139
+ msgstr "Partikel effect"
1140
+
1141
+ msgid "Layer animations"
1142
+ msgstr "Laag animaties"
1143
+
1144
+ msgid "Play on load"
1145
+ msgstr "Speel bij inladen"
1146
+
1147
+ msgid "Plays the layer animations on the first slide when it appears for the first time."
1148
+ msgstr "Speelt de laag animaties op de eerste slide als deze voor de eerste keer verschijnt."
1149
+
1150
+ msgid "Play once"
1151
+ msgstr "Speel eenmalig"
1152
+
1153
+ msgid "Plays the layer animations only during the first loop."
1154
+ msgstr "Speelt de laag animaties alleen tijdens de eerste uitvoering."
1155
+
1156
+ msgid "Play on"
1157
+ msgstr "Speel op"
1158
+
1159
+ msgid "Main animation start"
1160
+ msgstr "Start hoofdanimatie"
1161
+
1162
+ msgid "Main animation end"
1163
+ msgstr "Einde hoofdanimatie"
1164
+
1165
+ msgid "Mode"
1166
+ msgstr "Modus"
1167
+
1168
+ msgid "Skippable"
1169
+ msgstr "Mag overgeslagen worden"
1170
+
1171
+ msgid "Forced"
1172
+ msgstr "Geforceerd"
1173
+
1174
+ msgid "You can make the outgoing layer animations, which don't have events, to play on slide switching."
1175
+ msgstr "U kunt ervoor zorgen dat de uitgaande laag animaties, die geen evenementen hebben, bij het wisselen van slide afgespeeld worden."
1176
+
1177
+ msgid "Layer parallax"
1178
+ msgstr "Laag parallax"
1179
+
1180
+ msgid "Enable"
1181
+ msgstr "Activeren"
1182
+
1183
+ msgid "Animate"
1184
+ msgstr "Animeren"
1185
+
1186
+ msgid "Horizontal"
1187
+ msgstr "Horizontaal"
1188
+
1189
+ msgid "Mouse"
1190
+ msgstr "Muis"
1191
+
1192
+ msgid "Invert"
1193
+ msgstr "Omkeren"
1194
+
1195
+ msgid "Vertical"
1196
+ msgstr "Verticaal"
1197
+
1198
+ msgid "Scroll"
1199
+ msgstr "Scrollen"
1200
+
1201
+ msgid "Mouse origin"
1202
+ msgstr "Muis oorsprong"
1203
+
1204
+ msgid "Slider center"
1205
+ msgstr "Slider centrum"
1206
+
1207
+ msgid "Mouse enter position"
1208
+ msgstr "Muis in positie"
1209
+
1210
+ msgid "Scroll move"
1211
+ msgstr "Scrollend bewegen"
1212
+
1213
+ msgid "Both"
1214
+ msgstr "Beide"
1215
+
1216
+ msgid "To bottom"
1217
+ msgstr "Naar beneden"
1218
+
1219
+ msgid "To top"
1220
+ msgstr "Naar boven"
1221
+
1222
+ msgid "Autoplay"
1223
+ msgstr "Automatisch spelen"
1224
+
1225
+ msgid "Slide duration"
1226
+ msgstr "Slide duur"
1227
+
1228
+ msgid "Autostart"
1229
+ msgstr "Automatisch starten"
1230
+
1231
+ msgid "Allow restart"
1232
+ msgstr "Laat herstarten toe"
1233
+
1234
+ msgid "Keeps the autoplay control visible after the autoplay has finished to allow starting it again."
1235
+ msgstr "Houd de bediening voor het automatisch spelen zichtbaar nadat het automatisch spelen afgelopen is om toe te laten het opnieuw te starten."
1236
+
1237
+ msgid "Infinite loop"
1238
+ msgstr "Oneindige herhaling"
1239
+
1240
+ msgid "Finish autoplay"
1241
+ msgstr "Einde automatisch spelen"
1242
+
1243
+ msgid "Stop on click"
1244
+ msgstr "Stop bij klikken"
1245
+
1246
+ msgid "Stop on mouse"
1247
+ msgstr "Stop bij muis"
1248
+
1249
+ msgid "Enter"
1250
+ msgstr "Binnengaan"
1251
+
1252
+ msgid "Leave"
1253
+ msgstr "Buitengaan"
1254
+
1255
+ msgid "Stop on media"
1256
+ msgstr "Stop bij media"
1257
+
1258
+ msgid "Resume on click"
1259
+ msgstr "Herneem bij klikken"
1260
+
1261
+ msgid "Resume on mouse"
1262
+ msgstr "Herneem bij muis"
1263
+
1264
+ msgid "Resume on media"
1265
+ msgstr "Herneem bij media"
1266
+
1267
+ msgid "Controls"
1268
+ msgstr "Bedieningselementen"
1269
+
1270
+ msgid "Drag"
1271
+ msgstr "Slepen"
1272
+
1273
+ msgid "Defines the drag (and touch) direction for your slider."
1274
+ msgstr "Bepaalt de sleep (en aanraking) richting voor uw slider."
1275
+
1276
+ msgid "Mouse wheel"
1277
+ msgstr "Muiswiel"
1278
+
1279
+ msgid "Allows switching slides with the mouse wheel."
1280
+ msgstr "Laat het wisselen van slides met het muiswiel toe."
1281
+
1282
+ msgid "Keyboard"
1283
+ msgstr "Toetsenbord"
1284
+
1285
+ msgid "Allows switching slides with the keyboard."
1286
+ msgstr "Laat het wisselen van slides met het toetsenbord toe."
1287
+
1288
+ msgid "Developer"
1289
+ msgstr "Ontwikkelaar"
1290
+
1291
+ msgid "Block right click"
1292
+ msgstr "Blokkeer rechts klikken"
1293
+
1294
+ msgid "Block carousel"
1295
+ msgstr "Blokkeer carousel"
1296
+
1297
+ msgid "Stops the carousel at the last slide when the source of interaction is vertical touch, vertical pointer, mouse wheel or vertical keyboard."
1298
+ msgstr "Stopt de carousel op de laatste slide als de bron van de interactie verticale touch, verticale pointer, muiswiel of verticaal toetsenbord is."
1299
+
1300
+ msgid "Clear before"
1301
+ msgstr "Ervoor leegmaken"
1302
+
1303
+ msgid "Closes the unclosed float CSS codes before the slider."
1304
+ msgstr "Sluit de onafgesloten zwevende CSS codes voor de slider."
1305
+
1306
+ msgid "Clear after"
1307
+ msgstr "Erna leegmaken"
1308
+
1309
+ msgid "Allows you to put your slider next to your text."
1310
+ msgstr "Laat u toe uw slider naast uw tekst te plaatsen."
1311
+
1312
+ msgid "Hide scrollbar"
1313
+ msgstr "Verberg scrollbalk"
1314
+
1315
+ msgid "Your website won't be scrollable anymore! All out of screen elements will be hidden."
1316
+ msgstr "Uw website zal niet langer scrollbaar zijn! Alle elementen die buiten het scherm vallen zullen verborgen zijn."
1317
+
1318
+ msgid "Scroll to slider"
1319
+ msgstr "Scroll naar slider"
1320
+
1321
+ msgid "The page scrolls back to the slider when the user interacts with it."
1322
+ msgstr "De pagina scrollt terug naar de slider als de gebruiker ermee interageert."
1323
+
1324
+ msgid "Edge"
1325
+ msgstr "Rand"
1326
+
1327
+ msgid "Top - when needed"
1328
+ msgstr "Bovenaan - indien nodig"
1329
+
1330
+ msgid "Top - always"
1331
+ msgstr "Bovenaan - altijd"
1332
+
1333
+ msgid "Bottom - when needed"
1334
+ msgstr "Onderaan - indien nodig"
1335
+
1336
+ msgid "Bottom - always"
1337
+ msgstr "Onderaan - altijd"
1338
+
1339
+ msgid "Delayed (for lightbox/tabs)"
1340
+ msgstr "Uitgesteld (voor lightbox/tabs)"
1341
+
1342
+ msgid "Delays the loading of the slider until its container gets visible. Useful when you display the slider in a lightbox or tab."
1343
+ msgstr "Stelt het inladen van de slider uit tot haar container zichtbaar is. Nuttig als u de slider toont in een lightbox of een tab."
1344
+
1345
+ msgid "Legacy font scale"
1346
+ msgstr "Legacy font schaal"
1347
+
1348
+ msgid "This feature brings back the non-adaptive font size for absolute layers which were made before version 3.5. Turning on can affect website performance, so we suggest to keep it disabled.\n"
1349
+ msgstr "Deze mogelijkheid brengt de non-adaptieve font grootte voor absolute lagen terug die voor versie 3.5 gemaakt werden. Dit inschakelen kan een invloed hebben op de performantie van de website, dus raden we aan het uitgeschakeld te laten.\n"
1350
+
1351
+ msgid "Slider CSS classes"
1352
+ msgstr "Slider CSS classes"
1353
+
1354
+ msgid "You can put custom CSS classes to the slider's container."
1355
+ msgstr "U kunt eigen CSS classes aan de container van de slider toevoegen."
1356
+
1357
+ msgid "JavaScript callbacks"
1358
+ msgstr "JavaScript callbacks"
1359
+
1360
+ msgid "Post IDs"
1361
+ msgstr "Post IDs"
1362
+
1363
+ msgid "one per line"
1364
+ msgstr "een per regel"
1365
+
1366
+ msgid "The cache of the posts with the given ID will be cleared upon save."
1367
+ msgstr "De cache van de inzendingen met het gegeven ID zal bij het opslaan leeggemaakt worden."
1368
+
1369
+ msgid "Fallback slider"
1370
+ msgstr "Terugval slider"
1371
+
1372
+ msgid "ID or Alias"
1373
+ msgstr "ID of alias"
1374
+
1375
+ msgid "Select another slider by its ID or Alias that displays if your current slider has no published slides."
1376
+ msgstr "Selecteer een andere slider via zijn ID of alias die getoond zal worden als uw huidige slider geen gepubliceerde slides bevat."
1377
+
1378
+ msgid "Thumbnail"
1379
+ msgstr "Miniatuur"
1380
+
1381
+ msgid "Slider thumbnail which appears in the slider list."
1382
+ msgstr "Slider miniatuur die in de slider lijst verschijnt."
1383
+
1384
+ msgid "ARIA label"
1385
+ msgstr "ARIA label"
1386
+
1387
+ msgid "It allows you to label your slider for screen readers."
1388
+ msgstr "Dit laat u toe uw slider te labelen voor schermlezers."
1389
+
1390
+ msgid "Alias"
1391
+ msgstr "Alias"
1392
+
1393
+ msgid "You can use this alias in the slider's shortcode."
1394
+ msgstr "U kunt dit alias in de snelcode van de slider gebruiken."
1395
+
1396
+ msgid "Use as anchor"
1397
+ msgstr "Gebruik als interne link"
1398
+
1399
+ msgid "Creates an empty div before the slider, using the alias as the ID of this div. As a result, you can use #your-alias in the URL to make the page jump to the slider."
1400
+ msgstr "Maakt een lege div voor de slider, gebruik makend van het alias als het ID van deze div. Daardoor kunt u #uw-alias in de URL gebruiken om de pagina naar de slider te doen springen."
1401
+
1402
+ msgid "Smooth scroll"
1403
+ msgstr "Soepel scrollen"
1404
+
1405
+ msgid "The #your-alias urls in links would be forced to smooth scroll to the slider."
1406
+ msgstr "De #uw-alias urls in links zullen geforceerd worden om soepel te scrollen naar de slider."
1407
+
1408
+ msgid "Switch slide"
1409
+ msgstr "Wissel slide"
1410
+
1411
+ msgid "Use #your-alias-2 as an anchor to jump to the slider and switch to the 2nd slide immediately. Use #your-alias-3 for the 3rd slide and so on."
1412
+ msgstr "Gebruik #uw-alias-2 als een anker om naar de slider te springen en onmiddellijk naar de 2de slide te schakelen. Gebruik #uw-alias-3 voor de 3de slide enzovoort."
1413
+
1414
+ msgid "Scroll to slide"
1415
+ msgstr "Scroll naar slide"
1416
+
1417
+ msgid "The \"Switch slide\" option won't scroll you to the slider. Only the slides will switch."
1418
+ msgstr "De \"Wissel slide\" optie zal u niet naar de slider scrollen. Alleen de slides zullen wisselen."
1419
+
1420
+ msgid "Slider design"
1421
+ msgstr "Slider ontwerp"
1422
+
1423
+ msgid "Slider background image"
1424
+ msgstr "Slider achtergrondafbeelding"
1425
+
1426
+ msgid "Fixed"
1427
+ msgstr "Vast"
1428
+
1429
+ msgid "Background video"
1430
+ msgstr "Achtergrond video"
1431
+
1432
+ msgid "Muted"
1433
+ msgstr "Gedempt"
1434
+
1435
+ msgctxt "Video/Audio play"
1436
+ msgid "Loop"
1437
+ msgstr "Herhalen"
1438
+
1439
+ msgid "Fill mode"
1440
+ msgstr "Opvulmodus"
1441
+
1442
+ msgid "Align"
1443
+ msgstr "Uitlijnen"
1444
+
1445
+ msgid "Margin"
1446
+ msgstr "Marge"
1447
+
1448
+ msgid "Puts a fix margin around your slider."
1449
+ msgstr "Plaatst een vaste marge rond uw slider."
1450
+
1451
+ msgid "Perspective"
1452
+ msgstr "Perspectief"
1453
+
1454
+ msgid "Optimize"
1455
+ msgstr "Optimaliseer"
1456
+
1457
+ msgid "Loading"
1458
+ msgstr "Inladen"
1459
+
1460
+ msgid "Loading type"
1461
+ msgstr "Type laden"
1462
+
1463
+ msgid "Instant"
1464
+ msgstr "Instant"
1465
+
1466
+ msgid "After page loaded"
1467
+ msgstr "Na pagina geladen"
1468
+
1469
+ msgid "After delay"
1470
+ msgstr "Na wachttijd"
1471
+
1472
+ msgid "If your slider is above the fold, you can load it immediately. Otherwise, you can load it only after the page has loaded."
1473
+ msgstr "Als uw slider zich boven de plooi bevindt dan kunt u hem onmiddellijk inladen. Zoniet kunt u hem alleen inladen nadat de pagina ingeladen is."
1474
+
1475
+ msgid "Load delay"
1476
+ msgstr "Laad wachttijd"
1477
+
1478
+ msgid "Play when visible"
1479
+ msgstr "Speel indien zichtbaar"
1480
+
1481
+ msgid "Makes sure that the autoplay and layer animations only start when your slider is visible."
1482
+ msgstr "Verzekert dat het automatisch spelen en de laag animaties alleen starten als uw slider zichtbaar is."
1483
+
1484
+ msgid "At"
1485
+ msgstr "Op"
1486
+
1487
+ msgid "Slide background images"
1488
+ msgstr "Slide achtergrondafbeeldingen"
1489
+
1490
+ msgid "Loading mode"
1491
+ msgstr "Laad modus"
1492
+
1493
+ msgid "Delayed loading"
1494
+ msgstr "Uitgesteld laden"
1495
+
1496
+ msgid "Lazy loading"
1497
+ msgstr "Lazy laden"
1498
+
1499
+ msgid "You can speed up your site's loading by delaying the slide background images."
1500
+ msgstr "U kunt de inlaadtijd van uw site verbeteren door de achtergrondafbeeldingen van de slide uit te stellen."
1501
+
1502
+ msgid "Load neighbor"
1503
+ msgstr "Laad buur"
1504
+
1505
+ msgctxt "Unit"
1506
+ msgid "slides"
1507
+ msgstr "slides"
1508
+
1509
+ #, php-format
1510
+ msgid "Convert to WebP and image resizing require a lot of memory. Lift the memory limit%s if you get a blank page."
1511
+ msgstr "Omvorming tot WebP en afbeelding herschaling vereisen veel geheugen. Hef de geheugenlimiet%s op als u een blanco pagina krijgt."
1512
+
1513
+ msgid "Convert to WebP"
1514
+ msgstr "Omvormen tot WebP"
1515
+
1516
+ msgid "Resize"
1517
+ msgstr "Herschalen"
1518
+
1519
+ msgid "Quality"
1520
+ msgstr "Kwaliteit"
1521
+
1522
+ msgid "Default width"
1523
+ msgstr "Standaard breedte"
1524
+
1525
+ msgid "Medium width"
1526
+ msgstr "Medium breedte"
1527
+
1528
+ msgid "Medium height"
1529
+ msgstr "Medium hoogte"
1530
+
1531
+ msgid "Small width"
1532
+ msgstr "Kleine breedte"
1533
+
1534
+ msgid "Small height"
1535
+ msgstr "Kleine hoogte"
1536
+
1537
+ msgid "Retina"
1538
+ msgstr "Retina"
1539
+
1540
+ msgid "Instruction"
1541
+ msgstr "Instructie"
1542
+
1543
+ msgid "If your images look blurry on small screens, use the available height option to match the aspect ratio of the slider and image on that device."
1544
+ msgstr "Als uw afbeeldingen wazig zijn op kleine schermen gebruik dan de beschikbare hoogte optie om de verhoudingen van de slider aan te passen aan deze van de afbeelding voor dat toestel."
1545
+
1546
+ msgid "Resize Thumbnail"
1547
+ msgstr "Herschaal miniatuur"
1548
+
1549
+ msgid "Thumbnail Quality"
1550
+ msgstr "Miniatuur kwaliteit"
1551
+
1552
+ msgid "Thumbnail width"
1553
+ msgstr "Miniatuur breedte"
1554
+
1555
+ msgid "Thumbnail height"
1556
+ msgstr "Miniatuur hoogte"
1557
+
1558
+ msgid "Layer images"
1559
+ msgstr "Laag afbeeldingen"
1560
+
1561
+ msgid "Base64 embed"
1562
+ msgstr "Base64 inbedden"
1563
+
1564
+ msgid "Embeds the layer images to the page source, reducing the requests."
1565
+ msgstr "Neemt de laag afbeeldingen op in de paginabron, hetgeen de aanvragen vermindert."
1566
+
1567
+ msgid "Max file size"
1568
+ msgstr "Max grootte bestand"
1569
+
1570
+ msgid "Other"
1571
+ msgstr "Ander"
1572
+
1573
+ msgid "JetPack Photon image optimizer"
1574
+ msgstr "JetPack Photon afbeelding optimalisator"
1575
+
1576
+ msgid "Background video on mobile"
1577
+ msgstr "Achtergrond video op mobieltjes"
1578
+
1579
+ msgid "Slider size"
1580
+ msgstr "Slider grootte"
1581
+
1582
+ msgid "Limit slide width"
1583
+ msgstr "Beperk slide breedte"
1584
+
1585
+ msgid "Limits the width of the slide and prevents the slider from getting too tall."
1586
+ msgstr "Beperkt de breedte van de slide en verhindert dat de slider te groot wordt."
1587
+
1588
+ msgid "Max"
1589
+ msgstr "Max"
1590
+
1591
+ msgid "Breakpoints"
1592
+ msgstr "Breekpunten"
1593
+
1594
+ msgid "Breakpoints define the browser width in pixel when the slider switches to a different device."
1595
+ msgstr "Breekpunten definiëren de browser breedte in pixel als de slider overschakelt naar een ander toestel."
1596
+
1597
+ msgid "Global breakpoints"
1598
+ msgstr "Globale breekpunten"
1599
+
1600
+ #, php-format
1601
+ msgid "You can use the global breakpoints, or adjust them locally here. You can configure the Global breakpoints at <a href=\"%1$s\" target=\"_blank\">Global settings</a> > General > Breakpoints"
1602
+ msgstr "U kunt de globale breekpunten gebruiken, of ze hier lokaal aanpassen. U kunt de globale breekpunten configureren in <a href=\"%1$s\" target=\"_blank\">Globale instellingen</a> > Algemeen > Breekpunten"
1603
+
1604
+ msgid "Custom size"
1605
+ msgstr "Aangepaste grootte"
1606
+
1607
+ #, php-format
1608
+ msgid "Use this option to customize the aspect ratio for each device. %1$s Read more in the documentation%2$s. <b>Beware:</b> This option is rarely needed and might be hard to set properly!"
1609
+ msgstr "Gebruik deze optie om de beeldverhouding voor elk toestel aan te passen. %1$s Lees meer in de documentatie%2$s. <b>Opgelet:</b> deze optie is zelden nodig en het is mogelijk dat zij moeilijk correct in te stellen is!"
1610
+
1611
+ msgid "Slides"
1612
+ msgstr "Slides"
1613
+
1614
+ msgid "Slides design"
1615
+ msgstr "Slides ontwerp"
1616
+
1617
+ msgid "Slide background image fill"
1618
+ msgstr "Slide achtergrondafbeelding opvulling"
1619
+
1620
+ msgid "If the size of your image is not the same as your slider's, you can improve the result with the filling modes."
1621
+ msgstr "Als de grootte van uw afbeelding verschilt van de grootte van uw slider dan kunt u het resultaat verbeteren met de opvulmodi."
1622
+
1623
+ msgid "Background Blur"
1624
+ msgstr "Wazige achtergrond"
1625
+
1626
+ msgid "Randomize"
1627
+ msgstr "Bij toeval genereren"
1628
+
1629
+ msgid "Randomize slides"
1630
+ msgstr "Genereer slides bij toeval"
1631
+
1632
+ msgid "Randomize first"
1633
+ msgstr "Eerste bij toeval genereren"
1634
+
1635
+ msgid "Cache support"
1636
+ msgstr "Cache ondersteuning"
1637
+
1638
+ msgid "Cache variations"
1639
+ msgstr "Cache variaties"
1640
+
1641
+ msgid "Reverse"
1642
+ msgstr "Omkeren"
1643
+
1644
+ msgid "You can make your slides appear in the slider in a reversed order."
1645
+ msgstr "U kunt ervoor zorgen dat uw slides in omgekeerde volgorde in de slider verschijnen."
1646
+
1647
+ msgid "Max count"
1648
+ msgstr "Max aantal"
1649
+
1650
+ msgid "You can limit how many slides you want to show from your slider. It's best used with the Randomize feature, to improve the experience."
1651
+ msgstr "U kunt beperken hoeveel slides van uw slider u wilt tonen. Om de ervaring te verbeteren wordt dit best gebruikt met de 'Bij toeval genereren' mogelijkheid."
1652
+
1653
+ msgid "Maintain session"
1654
+ msgstr "Behoud sessie"
1655
+
1656
+ msgid "The slider continues from the last viewed slide when the visitor comes back to the page."
1657
+ msgstr "De slider gaat verder vanaf de laatst bekeken slide als de bezoeker terugkomt naar de pagina."
1658
+
1659
+ msgid "Backgrounds in lightbox"
1660
+ msgstr "Achtergronden in lightbox"
1661
+
1662
+ msgid "Creates a lightbox from your slide background images. This feature only works if all slides have background images."
1663
+ msgstr "Maakt een lightbox van uw slide achtergrond afbeeldingen. Deze mogelijkheid werkt alleen als alle slides achtergrond afbeeldingen hebben."
1664
+
1665
+ msgid "Show label"
1666
+ msgstr "Toon label"
1667
+
1668
+ msgid "Only slide name"
1669
+ msgstr "Alleen slide naam"
1670
+
1671
+ msgid "Slide name and description"
1672
+ msgstr "Slide naam en beschrijving"
1673
+
1674
+ msgid "Background parallax"
1675
+ msgstr "Achtergrond parallax"
1676
+
1677
+ msgid "Strength"
1678
+ msgstr "Sterkte"
1679
+
1680
+ msgid "Super soft"
1681
+ msgstr "Super zacht"
1682
+
1683
+ msgid "Soft"
1684
+ msgstr "Zacht"
1685
+
1686
+ msgid "Strong"
1687
+ msgstr "Sterk"
1688
+
1689
+ msgid "Super strong"
1690
+ msgstr "Super sterk"
1691
+
1692
+ msgid "Generator created."
1693
+ msgstr "Generator aangemaakt."
1694
+
1695
+ msgid "Generator updated and cache cleared."
1696
+ msgstr "Generator bijgewerkt en cache leeggemaakt."
1697
+
1698
+ msgid "Generator group not found"
1699
+ msgstr "Generator groep niet gevonden"
1700
+
1701
+ msgid "Generator source not found"
1702
+ msgstr "Generator bron niet gevonden"
1703
+
1704
+ msgid "No records found for the filter"
1705
+ msgstr "Geen records gevonden voor de filter"
1706
+
1707
+ msgid "Authentication successful."
1708
+ msgstr "Authenticatie succesvol."
1709
+
1710
+ msgid "Not installed"
1711
+ msgstr "Niet geïnstalleerd"
1712
+
1713
+ msgid "Visit"
1714
+ msgstr "Bezoek"
1715
+
1716
+ msgid "Add dynamic slides"
1717
+ msgstr "Dynamische slides toevoegen"
1718
+
1719
+ msgid "Configure"
1720
+ msgstr "Configureer"
1721
+
1722
+ msgid "Add"
1723
+ msgstr "Toevoegen"
1724
+
1725
+ msgid "Generator"
1726
+ msgstr "Generator"
1727
+
1728
+ msgid "How to upgrade to Smart Slider 3 Pro?"
1729
+ msgstr "Hoe te upgraden naar Smart Slider 3 Pro?"
1730
+
1731
+ #, php-format
1732
+ msgid "After making your purchase, %1$slog in to your account%3$s and download the Pro installer. To get started with Smart Slider 3 Pro, simply %2$sinstall it on your website%3$s."
1733
+ msgstr "Na uw aankoop kunt u zich %1$saanmelden met uw account%3$s en de Pro installer downloaden. Om te beginnen met Smart Slider 3 Pro %2$sinstalleert u de extensie eenvoudigweg op uw website%3$s."
1734
+
1735
+ msgid "Download Pro"
1736
+ msgstr "Download Pro"
1737
+
1738
+ msgid "Feel free to remove the Free version, as you no longer need it. Your sliders will stay!"
1739
+ msgstr "Voel u vrij om de gratis versie te verwijderen. U hebt deze niet meer nodig. Uw sliders zullen bewaard blijven!"
1740
+
1741
+ msgid "Ready to go Pro?"
1742
+ msgstr "Klaar om Pro te gaan?"
1743
+
1744
+ msgid "Supercharge Smart Slider 3 with powerful functionality!"
1745
+ msgstr "Geef Smart Slider 3 een boost met krachtige functionaliteit!"
1746
+
1747
+ msgid "Already purchased?"
1748
+ msgstr "Al aangekocht?"
1749
+
1750
+ msgid "Get started with the Pro version now!"
1751
+ msgstr "Begin nu met de Pro versie!"
1752
+
1753
+ #, php-format
1754
+ msgid "Unable to connect to the API (%s)."
1755
+ msgstr "Kon geen verbinding met de API maken (%s)."
1756
+
1757
+ msgid "See <b>Debug Information</b> for more details!"
1758
+ msgstr "Bekijk de <b>Debug informatie</b> voor meer details!"
1759
+
1760
+ msgid "Successful connection with the API."
1761
+ msgstr "Succesvolle verbinding met de API."
1762
+
1763
+ msgid "Welcome to Help Center"
1764
+ msgstr "Welkom in het helpcentrum"
1765
+
1766
+ msgid "To help you get started, we've put together a super tutorial video that shows you the basic settings."
1767
+ msgstr "Om u op weg te helpen hebben we een super handleiding video samengesteld die u de basisinstellingen toont."
1768
+
1769
+ msgid "Possible conflicts"
1770
+ msgstr "Mogelijke conflicten"
1771
+
1772
+ msgid "Test connection"
1773
+ msgstr "Test verbinding"
1774
+
1775
+ msgid "No conflicts detected."
1776
+ msgstr "Geen conflicten gedetecteerd."
1777
+
1778
+ msgid "Hello! How can we help you today?"
1779
+ msgstr "Hallo! Hoe kunnen we u vandaag van dienst zijn?"
1780
+
1781
+ msgid "Search in the knowledge base"
1782
+ msgstr "Zoek in de kennisbank"
1783
+
1784
+ msgid "Documentation"
1785
+ msgstr "Documentatie"
1786
+
1787
+ msgid "To get started with Smart Slider 3, please refer to this guide for downloading, installing, and using."
1788
+ msgstr "Om te beginnen met Smart Slider 3 kunt u deze gids raadplegen voor het downloaden, het installeren en het gebruik."
1789
+
1790
+ msgid "Email support"
1791
+ msgstr "E-mail ondersteuning"
1792
+
1793
+ msgid "Need one-to-one assistance? Get in touch with our Support team! We'd love the opportunity to help you."
1794
+ msgstr "Persoonlijke assistentie nodig? Neem contact op met ons support team! We helpen u graag verder."
1795
+
1796
+ msgid "Tutorial videos"
1797
+ msgstr "Video handleidingen"
1798
+
1799
+ msgid "Check our video tutorials which cover everything you need to know about Smart Slider 3."
1800
+ msgstr "Kijk eens naar onze video handleidingen die alles behandelen wat u moet weten over Smart Slider 3."
1801
+
1802
+ msgid "Selected articles"
1803
+ msgstr "Geselecteerde artikels"
1804
+
1805
+ msgid "Debug information"
1806
+ msgstr "Debug informatie"
1807
+
1808
+ #, php-format
1809
+ msgid "%s or later"
1810
+ msgstr "%s of later"
1811
+
1812
+ msgid "You are using an unsupported browser!"
1813
+ msgstr "U gebruikt een niet ondersteunde browser!"
1814
+
1815
+ #, php-format
1816
+ msgid "Smart Slider 3 does not support your current browser for editing. Supported browsers are the following: %s."
1817
+ msgstr "Smart Slider 3 ondersteunt uw huidige browser niet voor bewerking. Ondersteunde browsers zijn de volgende: %s."
1818
+
1819
+ msgid "Help center"
1820
+ msgstr "Helpcentrum"
1821
+
1822
+ msgid "Help"
1823
+ msgstr "Help"
1824
+
1825
+ msgid "Read more"
1826
+ msgstr "Lees meer"
1827
+
1828
+ msgid "Need more?"
1829
+ msgstr "Meer nodig?"
1830
+
1831
+ msgid "Unlock all the pro features by upgrading to Smart Slider 3 Pro."
1832
+ msgstr "Ontgrendel al de pro mogelijkheden door te upgraden naar Smart Slider 3 Pro."
1833
+
1834
+ msgid "Changelog"
1835
+ msgstr "Log met wijzigingen"
1836
+
1837
+ msgid "Check for update"
1838
+ msgstr "Controleer op update"
1839
+
1840
+ msgid "Check"
1841
+ msgstr "Controle"
1842
+
1843
+ msgid "Your license is active"
1844
+ msgstr "Uw licentie is actief"
1845
+
1846
+ msgid "Deactivate license"
1847
+ msgstr "Deactiveer licentie"
1848
+
1849
+ msgid "Activate your license"
1850
+ msgstr "Activeer uw licentie"
1851
+
1852
+ msgid "Don’t miss any update"
1853
+ msgstr "Mis geen enkele update"
1854
+
1855
+ msgid "Let us know how we're doing"
1856
+ msgstr "Laat ons weten hoe we het ervan afbrengen"
1857
+
1858
+ msgid "If you are happy with Smart Slider 3 and can take a minute please leave a review. This will help to spread its popularity and to make this plugin a better one."
1859
+ msgstr "Als u tevreden bent over Smart Slider 3 en wat tijd over heeft laat dan een recensie achter. Dit helpt om de populariteit ervan te verspreiden en deze plugin te verbeteren."
1860
+
1861
+ msgid "Rate your experience"
1862
+ msgstr "Beoordeel uw ervaring"
1863
+
1864
+ msgid "Hated it"
1865
+ msgstr "Afgrijselijk"
1866
+
1867
+ msgid "Disliked it"
1868
+ msgstr "Vond ik niet goed"
1869
+
1870
+ msgid "It was ok"
1871
+ msgstr "Het was OK"
1872
+
1873
+ msgid "Liked it"
1874
+ msgstr "Ik vond het goed"
1875
+
1876
+ msgid "Loved it"
1877
+ msgstr "Ik vond het geweldig"
1878
+
1879
+ msgid "Why upgrade to Smart Slider 3 Pro?"
1880
+ msgstr "Waarom upgraden naar Smart Slider 3 Pro?"
1881
+
1882
+ msgid "120+ slider templates"
1883
+ msgstr "120+ slider templates"
1884
+
1885
+ msgid "Full slide library access"
1886
+ msgstr "Volledige toegang tot slide bibliotheek"
1887
+
1888
+ msgid "20 new layers"
1889
+ msgstr "20 nieuwe lagen"
1890
+
1891
+ msgid "Extra advanced options"
1892
+ msgstr "Extra geavanceerde opties"
1893
+
1894
+ msgid "New animations & effects"
1895
+ msgstr "Nieuwe animaties & effecten"
1896
+
1897
+ msgid "Lifetime update & support"
1898
+ msgstr "Levenslange update & ondersteuning"
1899
+
1900
+ msgid "Apply"
1901
+ msgstr "Toepassen"
1902
+
1903
+ msgid "Back"
1904
+ msgstr "Terug"
1905
+
1906
+ msgid "Import"
1907
+ msgstr "Importeren"
1908
+
1909
+ msgid "Layers"
1910
+ msgstr "Lagen"
1911
+
1912
+ msgid "Library"
1913
+ msgstr "Bibliotheek"
1914
+
1915
+ msgid "Absolute"
1916
+ msgstr "Absoluut"
1917
+
1918
+ msgctxt "Layer group"
1919
+ msgid "Basic"
1920
+ msgstr "Basis"
1921
+
1922
+ msgid "Inner align"
1923
+ msgstr "Binnenste uitlijning"
1924
+
1925
+ msgid "Positions the layers inside horizontally."
1926
+ msgstr "Plaatst de lagen horizontaal binnenin."
1927
+
1928
+ msgid "Vertical align"
1929
+ msgstr "Verticaal uitlijnen"
1930
+
1931
+ msgid "Positions the layers inside vertically."
1932
+ msgstr "Plaatst de lagen verticaal binnenin."
1933
+
1934
+ msgid "Target window"
1935
+ msgstr "Doelvenster"
1936
+
1937
+ msgid "Background image"
1938
+ msgstr "Achtergrondafbeelding"
1939
+
1940
+ msgid "Focus"
1941
+ msgstr "Focus"
1942
+
1943
+ msgid "You can set the starting position of a background image. This makes sure that the selected part will always remain visible, so you should pick the most important part."
1944
+ msgstr "U kunt de beginpositie van een achtergrondafbeelding instellen. Dit verzekert dat het geselecteerde deel altijd zichtbaar blijft, u kiest dus best het meest belangrijke deel."
1945
+
1946
+ msgid "Background"
1947
+ msgstr "Achtergrond"
1948
+
1949
+ msgid "Gradient"
1950
+ msgstr "Gradient"
1951
+
1952
+ msgid "Color end"
1953
+ msgstr "Kleur einde"
1954
+
1955
+ msgid "Max width"
1956
+ msgstr "Max breedte"
1957
+
1958
+ msgid "Position"
1959
+ msgstr "Positie"
1960
+
1961
+ msgid "The editing mode the layer is positioned in."
1962
+ msgstr "De bewerkingsmodus waarin de laag geplaatst is."
1963
+
1964
+ msgid "Positions the layer horizontally within its parent."
1965
+ msgstr "Plaatst de laag horizontaal binnen de bovenliggende laag."
1966
+
1967
+ msgid "You can set a fix height for your layer."
1968
+ msgstr "U kunt een vaste hoogte voor uw laag instellen."
1969
+
1970
+ msgid "With margins you can create distance between your layers."
1971
+ msgstr "Met marges kunt u afstand tussen uw lagen maken."
1972
+
1973
+ msgid "Responsive"
1974
+ msgstr "Responsive"
1975
+
1976
+ msgid "Linked to"
1977
+ msgstr "Gelinkt naar"
1978
+
1979
+ msgid "You can link your layer to another layer on the same level. This way your layer won't be positioned to the slide, but the other layer."
1980
+ msgstr "U kunt uw laag linken naar een andere laag op hetzelfde niveau. Op die manier zal uw laag zelf niet in de slide geplaatst worden, maar de andere laag."
1981
+
1982
+ msgid "Hide when variable empty"
1983
+ msgstr "Verberg als de variabele leeg is"
1984
+
1985
+ msgid "Text scale"
1986
+ msgstr "Tekst schaal"
1987
+
1988
+ msgid "Device specific settings"
1989
+ msgstr "Toestel specifieke instellingen"
1990
+
1991
+ msgid "Clear"
1992
+ msgstr "Leegmaken"
1993
+
1994
+ msgid "Erases all device specific changes you made on the current device."
1995
+ msgstr "Wist alle toestel specifieke veranderingen die u op het huidige toestel hebt aangebracht."
1996
+
1997
+ msgid "Effect"
1998
+ msgstr "Effect"
1999
+
2000
+ msgid "Parallax"
2001
+ msgstr "Parallax"
2002
+
2003
+ msgid "More parallax options in slider settings -> Layer animations tab."
2004
+ msgstr "Meer parallax opties in slider instellingen -> Laag animaties tab."
2005
+
2006
+ msgid "Crop"
2007
+ msgstr "Bijsnijden"
2008
+
2009
+ msgid "Mask"
2010
+ msgstr "Maskeren"
2011
+
2012
+ msgid "If your content is larger than the layer, you can crop it to fit."
2013
+ msgstr "Als uw inhoud groter is dan de laag dan kunt u die bijsnijden zodat hij past."
2014
+
2015
+ msgid "Rotation"
2016
+ msgstr "Rotatie"
2017
+
2018
+ msgid "CSS Class"
2019
+ msgstr "CSS class"
2020
+
2021
+ msgid "You can add a custom CSS class on the layer container."
2022
+ msgstr "U kunt een aangepaste CSS class aan de laag container toevoegen."
2023
+
2024
+ msgid "Content background"
2025
+ msgstr "Inhoud achtergrond"
2026
+
2027
+ msgid "Spacing"
2028
+ msgstr "Ruimte"
2029
+
2030
+ msgid "Typography"
2031
+ msgstr "Typografie"
2032
+
2033
+ msgid "You can select a font family from the preset, or type your custom family."
2034
+ msgstr "U kunt een font familie uit de voorinstelling kiezen of uw eigen font familie typen."
2035
+
2036
+ msgid "Need to change the font size device specifically? Use the Text scale option."
2037
+ msgstr "Moet u de font grootte toestel specifiek aanpassen? Gebruik de Tekst schaal optie."
2038
+
2039
+ msgid "Columns"
2040
+ msgstr "Kolommen"
2041
+
2042
+ msgid "Gutter"
2043
+ msgstr "Groef"
2044
+
2045
+ msgid "Creates space between the columns"
2046
+ msgstr "Maakt ruimte tussen de kolommen"
2047
+
2048
+ msgid "Wrap after"
2049
+ msgstr "Omslaan na"
2050
+
2051
+ msgid "Breaks the columns to the given amount of rows."
2052
+ msgstr "Splitst de kolommen op in het gegeven aantal rijen."
2053
+
2054
+ msgid "Makes the row fill the available vertical space"
2055
+ msgstr "Maakt dat de rij de beschikbare verticale ruimte opvult"
2056
+
2057
+ msgid "Slide title"
2058
+ msgstr "Slide titel"
2059
+
2060
+ msgid "Description"
2061
+ msgstr "Beschrijving"
2062
+
2063
+ msgid "Thumbnail alt"
2064
+ msgstr "Miniatuur alt"
2065
+
2066
+ msgid "Custom lightbox image"
2067
+ msgstr "Aangepaste lightbox afbeelding"
2068
+
2069
+ msgid "Published"
2070
+ msgstr "Gepubliceerd"
2071
+
2072
+ msgid "Publish on"
2073
+ msgstr "Publiceer op"
2074
+
2075
+ msgid "Unpublish on"
2076
+ msgstr "Depubliceer op"
2077
+
2078
+ msgid "Thumbnail type"
2079
+ msgstr "Miniatuur type"
2080
+
2081
+ msgid "Video"
2082
+ msgstr "Video"
2083
+
2084
+ msgid "If you have a video on your slide, you can put a play icon on the thumbnail image to indicate that."
2085
+ msgstr "Als u een video op uw slide hebt dan kunt u een speel icoon op de miniatuurafbeelding plaatsen om dat aan te geven."
2086
+
2087
+ #, php-format
2088
+ msgid "Video autoplaying has a lot of limitations made by browsers. %1$sLearn about them.%2$s"
2089
+ msgstr "Het automatisch spelen van video's heeft een groot aantal beperkingen, opgelegd door browsers. %1$sKom hier meer over te weten.%2$s"
2090
+
2091
+ msgid "Slide background video"
2092
+ msgstr "Slide achtergrond video"
2093
+
2094
+ msgid "Restart on slide change"
2095
+ msgstr "Herstart bij slide wisseling"
2096
+
2097
+ msgid "Starts the video from the beginning when the slide is viewed again."
2098
+ msgstr "Start de video vanaf het begin als de slide opnieuw bekeken wordt."
2099
+
2100
+ msgid "Slide background"
2101
+ msgstr "Slide achtergrond"
2102
+
2103
+ msgid "Select a background image for the slide. By clicking the small screen icon, you can pick different images for different devices."
2104
+ msgstr "Selecteer een achtergrondafbeelding voor de slide. Door te klikken op het kleine scherm icoon kunt u verschillende afbeeldingen kiezen voor verschillende toestellen."
2105
+
2106
+ #, php-format
2107
+ msgid "Please read %1$sour detailed guide%2$s about setting your own slide background correctly."
2108
+ msgstr "Lees onze %1$sgedetailleerde gids%2$s over hoe u uw eigen slide achtergrond correct moet instellen."
2109
+
2110
+ msgid "Background blur"
2111
+ msgstr "Wazige achtergrond"
2112
+
2113
+ msgid "Blur"
2114
+ msgstr "Wazig"
2115
+
2116
+ msgid "Overlay"
2117
+ msgstr "Bovenlaag"
2118
+
2119
+ msgid "Puts the color in front of the image."
2120
+ msgstr "Plaatst de kleur voor de afbeelding."
2121
+
2122
+ msgid "SEO"
2123
+ msgstr "SEO"
2124
+
2125
+ msgid "Image alt"
2126
+ msgstr "Afbeelding alt"
2127
+
2128
+ msgid "Image title"
2129
+ msgstr "Afbeelding titel"
2130
+
2131
+ msgctxt "Layer animation"
2132
+ msgid "In"
2133
+ msgstr "In"
2134
+
2135
+ msgctxt "Layer animation"
2136
+ msgid "Out"
2137
+ msgstr "Uit"
2138
+
2139
+ msgctxt "Layer animation"
2140
+ msgid "Events"
2141
+ msgstr "Evenementen"
2142
+
2143
+ msgid "Plays in when"
2144
+ msgstr "Speelt in als"
2145
+
2146
+ msgid "Plays out when"
2147
+ msgstr "Speelt uit als"
2148
+
2149
+ msgid "Plays loop when"
2150
+ msgstr "Speelt herhaaldelijk als"
2151
+
2152
+ msgid "Pauses loop when"
2153
+ msgstr "Pauzeert de herhaling als"
2154
+
2155
+ msgid "Stops loop when"
2156
+ msgstr "Stopt de herhaling als"
2157
+
2158
+ msgid "Repeatable"
2159
+ msgstr "Herhaalbaar"
2160
+
2161
+ msgid "Allows the layer animations to play more than once."
2162
+ msgstr "Laat toe dat de laag animaties meer dan één keer spelen."
2163
+
2164
+ msgid "Start delay"
2165
+ msgstr "Start wachttijd"
2166
+
2167
+ msgid "End delay"
2168
+ msgstr "Einde wachttijd"
2169
+
2170
+ msgid "Repeat loop only"
2171
+ msgstr "Herhaal alleen de lus"
2172
+
2173
+ msgid "Allows the stopped loop to start again."
2174
+ msgstr "Laat toe dat de gestopte herhaling opnieuw start."
2175
+
2176
+ msgid "Trigger custom event on"
2177
+ msgstr "Voer aangepast evenement uit bij"
2178
+
2179
+ msgid "Click"
2180
+ msgstr "Klik"
2181
+
2182
+ msgid "Mouse enter"
2183
+ msgstr "Muis in"
2184
+
2185
+ msgid "Mouse leave"
2186
+ msgstr "Muis uit"
2187
+
2188
+ msgid "Media started"
2189
+ msgstr "Media gestart"
2190
+
2191
+ msgid "Media paused"
2192
+ msgstr "Media gepauzeerd"
2193
+
2194
+ msgid "Media stopped"
2195
+ msgstr "Media gestopt"
2196
+
2197
+ msgid "Duration"
2198
+ msgstr "Duur"
2199
+
2200
+ msgid "Delay"
2201
+ msgstr "Wachttijd"
2202
+
2203
+ msgid "Easing"
2204
+ msgstr "Versoepeling"
2205
+
2206
+ msgid "Offset"
2207
+ msgstr "Compensatie"
2208
+
2209
+ msgid "Rotate"
2210
+ msgstr "Roteren"
2211
+
2212
+ msgid "Scale"
2213
+ msgstr "Schaal"
2214
+
2215
+ msgid "Skew"
2216
+ msgstr "Scheeftrekken"
2217
+
2218
+ msgid "Transform origin"
2219
+ msgstr "Oorsprong omvormen"
2220
+
2221
+ msgid "Makes the last keyframe to be the origin of the layer animation, instead of its canvas position."
2222
+ msgstr "Maakt dat het laatste keyframe de oorsprong van de laag animatie is, in plaats van haar canvas positie."
2223
+
2224
+ msgid "Repeat count"
2225
+ msgstr "Aantal herhalingen"
2226
+
2227
+ msgid "loops"
2228
+ msgstr "herhalingen"
2229
+
2230
+ msgid "You can restrict the loop to play only a certain amount of loops, instead of infinite."
2231
+ msgstr "U kunt de herhaling beperken tot een bepaald aantal herhalingen, in plaats van oneindig."
2232
+
2233
+ msgctxt "Animation"
2234
+ msgid "Slide"
2235
+ msgstr "Schuiven"
2236
+
2237
+ msgid "Curtains"
2238
+ msgstr "Gordijnen"
2239
+
2240
+ msgid "Diagonal"
2241
+ msgstr "Diagonaal"
2242
+
2243
+ msgid "Circle"
2244
+ msgstr "Circel"
2245
+
2246
+ msgid "From"
2247
+ msgstr "Van"
2248
+
2249
+ msgid "To"
2250
+ msgstr "Tot"
2251
+
2252
+ msgid "Fade"
2253
+ msgstr "Vervagen"
2254
+
2255
+ msgid "Scale up"
2256
+ msgstr "Vergroten"
2257
+
2258
+ msgid "Scale down"
2259
+ msgstr "Verkleinen"
2260
+
2261
+ msgid "Edit"
2262
+ msgstr "Bewerken"
2263
+
2264
+ msgid "Static overlay"
2265
+ msgstr "Statische bovenlaag"
2266
+
2267
+ msgid "First slide"
2268
+ msgstr "Eerste slide"
2269
+
2270
+ msgid "Unpublished"
2271
+ msgstr "Gedepubliceerd"
2272
+
2273
+ msgid "Bulk actions"
2274
+ msgstr "Bulk acties"
2275
+
2276
+ msgid "Select all"
2277
+ msgstr "Selecteer alles"
2278
+
2279
+ msgid "Select none"
2280
+ msgstr "Selecteer geen"
2281
+
2282
+ msgid "Select published"
2283
+ msgstr "Selecteer gepubliceerde"
2284
+
2285
+ msgid "Select unpublished"
2286
+ msgstr "Selecteer niet gepubliceerde"
2287
+
2288
+ msgid "Blank"
2289
+ msgstr "Blanco"
2290
+
2291
+ msgid "Post"
2292
+ msgstr "Inzending"
2293
+
2294
+ msgid "Dynamic slides"
2295
+ msgstr "Dynamische slides"
2296
+
2297
+ msgid "Add slide"
2298
+ msgstr "Slide toevoegen"
2299
+
2300
+ msgid "Block must contain only one slide. Need more?"
2301
+ msgstr "Een blok mag maar één slide bevatten. Meer nodig?"
2302
+
2303
+ msgid "Convert to slider"
2304
+ msgstr "Vorm om tot slider"
2305
+
2306
+ msgid "Slide one"
2307
+ msgstr "Slide een"
2308
+
2309
+ msgid "Slide two"
2310
+ msgstr "Slide twee"
2311
+
2312
+ msgid "Drop images here"
2313
+ msgstr "Laat afbeeldingen hier vallen"
2314
+
2315
+ msgid "Edit slider"
2316
+ msgstr "Slider bewerken"
2317
+
2318
+ msgid "View trash"
2319
+ msgstr "Bekijk prullenbak"
2320
+
2321
+ msgid "Order by"
2322
+ msgstr "Sorteer op"
2323
+
2324
+ msgid "Manual order"
2325
+ msgstr "Handmatige volgorde"
2326
+
2327
+ msgid "A-Z"
2328
+ msgstr "A-Z"
2329
+
2330
+ msgid "Z-A"
2331
+ msgstr "Z-A"
2332
+
2333
+ msgid "Newest first"
2334
+ msgstr "Nieuwste eerst"
2335
+
2336
+ msgid "Oldest first"
2337
+ msgstr "Oudste eerst"
2338
+
2339
+ msgid "Export"
2340
+ msgstr "Exporteren"
2341
+
2342
+ msgid "New project"
2343
+ msgstr "Nieuw project"
2344
+
2345
+ msgid "Module"
2346
+ msgstr "Module"
2347
+
2348
+ msgid "Displays the slider in a template module position."
2349
+ msgstr "Toont de slider in een template module positie."
2350
+
2351
+ msgid "Create module"
2352
+ msgstr "Module maken"
2353
+
2354
+ msgid "Related modules"
2355
+ msgstr "Gelijkaardige modules"
2356
+
2357
+ msgid "Articles"
2358
+ msgstr "Artikels"
2359
+
2360
+ msgid "Paste the code into article:"
2361
+ msgstr "Plak de code in artikel:"
2362
+
2363
+ msgid "PHP code"
2364
+ msgstr "PHP code"
2365
+
2366
+ msgid "Paste the PHP code into source code:"
2367
+ msgstr "Plak de PHP code in broncode:"
2368
+
2369
+ msgid "Shortcode"
2370
+ msgstr "Snelcode"
2371
+
2372
+ msgid "Copy and paste this shortcode into your posts or pages:"
2373
+ msgstr "Kopieer en plak deze snelcode in uw inzendingen of pagina's:"
2374
+
2375
+ msgid "Pages and Posts"
2376
+ msgstr "Pagina's en inzendingen"
2377
+
2378
+ #, php-format
2379
+ msgid "Smart Slider 3 has integration with %s."
2380
+ msgstr "Smart Slider 3 is geïntegreerd met %s."
2381
+
2382
+ msgid "Paste the PHP code into your theme's file:"
2383
+ msgstr "Plak de PHP code in uw thema bestand:"
2384
+
2385
+ msgid "Trash is empty."
2386
+ msgstr "Prullenbak is leeg."
2387
+
2388
+ msgid "Restore"
2389
+ msgstr "Herstellen"
2390
+
2391
+ msgid "Toggle orientation"
2392
+ msgstr "Schakel oriëntatie om"
2393
+
2394
+ msgid "Reload preview"
2395
+ msgstr "Herlaad voorvertoning"
2396
+
2397
+ msgid "Open preview in full"
2398
+ msgstr "Open voorvertoning in volledig scherm"
2399
+
2400
+ msgid "State"
2401
+ msgstr "Status"
2402
+
2403
+ msgid "Reason"
2404
+ msgstr "Reden"
2405
+
2406
+ msgid "Framework"
2407
+ msgstr "Framework"
2408
+
2409
+ msgid "Fonts"
2410
+ msgstr "Fonts"
2411
+
2412
+ msgid "Layer defaults"
2413
+ msgstr "Lagen standaard"
2414
+
2415
+ msgid "Generators"
2416
+ msgstr "Generatoren"
2417
+
2418
+ msgid "Saved and slider cache invalidated."
2419
+ msgstr "Opgeslagen en de slider cache ongeldig gemaakt."
2420
+
2421
+ msgid "Cache cleared."
2422
+ msgstr "Cache leeggemaakt."
2423
+
2424
+ msgid "Clear cache"
2425
+ msgstr "Cache leegmaken"
2426
+
2427
+ msgid "Clear cache options"
2428
+ msgstr "Maak cache opties leeg"
2429
+
2430
+ msgid "Delete resized image cache"
2431
+ msgstr "Verwijder cache met herschaalde afbeeldingen"
2432
+
2433
+ #, php-format
2434
+ msgid "If enabled the following folder will be <b>permanently deleted</b>: %s"
2435
+ msgstr "Indien geactiveerd dan zal volgende map <b>permanent verwijderd</b> worden: %s"
2436
+
2437
+ msgid "Configuration"
2438
+ msgstr "Configuratie"
2439
+
2440
+ #, php-format
2441
+ msgid "Here you can configure the default font your layers have, and the dropdown list of the fonts. Google Fonts are recognized automatically, but you can use your own custom fonts, too. %1$sLearn how to do that.%2$s"
2442
+ msgstr "Hier kunt u de standaard font voor uw lagen configureren door middel van de vervolgkeuzelijst met de fonts. Google Fonts worden automatisch herkend, maar u kunt ook uw eigen fonts gebruiken. %1$sLeer hier hoe u dat moet doen.%2$s"
2443
+
2444
+ msgid "Default family"
2445
+ msgstr "Standaard familie"
2446
+
2447
+ msgid "This font family is used for the newly added layers."
2448
+ msgstr "Deze font familie wordt gebruikt voor nieuw toegevoegde lagen."
2449
+
2450
+ msgid "Preset font families"
2451
+ msgstr "Voorinstelling font families"
2452
+
2453
+ msgid "These font families appear in the dropdown list."
2454
+ msgstr "Deze font families verschijnen in de vervolgkeuzelijst."
2455
+
2456
+ msgid "Use protocol-relative URL"
2457
+ msgstr "Gebruik protocol-relatieve URL"
2458
+
2459
+ msgid "Loads the URLs without a http or https protocol."
2460
+ msgstr "Laadt de URLs zonder een http of https protocol."
2461
+
2462
+ msgid "Header preload"
2463
+ msgstr "Header vooraf inladen"
2464
+
2465
+ msgid "If the slider is an important part of your site, tell the browser to preload its files."
2466
+ msgstr "Als de slider een belangrijk deel van uw site is geef dan door aan de browser dat de bestanden ervan vooraf ingeladen moeten worden."
2467
+
2468
+ msgid "English UI"
2469
+ msgstr "Engelse UI"
2470
+
2471
+ msgid "You can keep using Smart Slider 3 in English, even if your backend isn't in English."
2472
+ msgstr "U kunt Smart Slider 3 verder in het engels blijven gebruiken, zelfs als uw backend niet in het engels is."
2473
+
2474
+ msgid "Improved frontend accessibility"
2475
+ msgstr "Verbeterde frontend toegankelijkheid"
2476
+
2477
+ msgid "Keeps the clicked element (like a button) in focus unless the focus is changed by clicking away."
2478
+ msgstr "Houd de focus op het aangeklikte element (zoals een knop) tenzij de focus veranderd wordt door weg te klikken."
2479
+
2480
+ msgid "Script attributes"
2481
+ msgstr "Script attributen"
2482
+
2483
+ msgid "Slider's inline JavaScript"
2484
+ msgstr "Inline Javascript van slider"
2485
+
2486
+ msgid "Head"
2487
+ msgstr "Kop"
2488
+
2489
+ msgid "Into the slider"
2490
+ msgstr "In de slider"
2491
+
2492
+ msgid "Async non-primary CSS"
2493
+ msgstr "Async niet-primaire CSS"
2494
+
2495
+ msgid "Google Fonts, icon and lightbox CSS are loaded in a non-blocking way. Disable if you see missing icons, fonts or styles."
2496
+ msgstr "Google Fonts, icoon en lightbox CSS werden geladen op een niet blokkerende manier. Deactiveer dit als u ontbrekende iconen of stijlen ziet."
2497
+
2498
+ msgid "Load Font Awesome 4"
2499
+ msgstr "Laad Font Awesome 4"
2500
+
2501
+ msgid "API requests"
2502
+ msgstr "API aanvragen"
2503
+
2504
+ #, php-format
2505
+ msgctxt "Curl"
2506
+ msgid "Use %s"
2507
+ msgstr "Gebruik %s"
2508
+
2509
+ #, php-format
2510
+ msgctxt "curl proxy"
2511
+ msgid "Clean %s"
2512
+ msgstr "Kuis %s op"
2513
+
2514
+ msgid "General settings"
2515
+ msgstr "Algemene instellingen"
2516
+
2517
+ msgid "Automatic update check"
2518
+ msgstr "Automatische update controle"
2519
+
2520
+ msgid "Alternative save slide"
2521
+ msgstr "Alternatief opslaan slide"
2522
+
2523
+ msgid "If you experience problems during the save this option might solve them."
2524
+ msgstr "Als u problemen ondervindt tijdens het opslaan dan lost deze optie ze mogelijk op."
2525
+
2526
+ msgid "Preview in new window"
2527
+ msgstr "Voorvertoning in nieuw venster"
2528
+
2529
+ msgid "Lightbox videos in new tab on Mobile"
2530
+ msgstr "Lightbox video's in nieuwe tab op mobieltjes"
2531
+
2532
+ msgid "Opens the lightbox videos in the YouTube app to avoid the mobile disabling the video."
2533
+ msgstr "Opent de lightbox video's in de YouTube app om te vermijden dat de mobieltjes de video deactiveren."
2534
+
2535
+ msgid "YouTube and Vimeo privacy enhanced mode"
2536
+ msgstr "YouTube en Vimeo privacy verbeterde modus"
2537
+
2538
+ msgid "Smooth scroll speed"
2539
+ msgstr "Soepel scrollen snelheid"
2540
+
2541
+ msgid "Editor - additional CSS files"
2542
+ msgstr "Editor - extra CSS bestanden"
2543
+
2544
+ msgid "You can call your own CSS files to our backend, for example, to be able to use custom fonts. Write each URL to a new line."
2545
+ msgstr "U kunt uw eigen CSS bestanden in onze backend binnenhalen, bijvoorbeeld om eigen fonts te gebruiken. Schrijf elke URL op een nieuwe regel."
2546
+
2547
+ msgid "WordPress settings"
2548
+ msgstr "WordPress instellingen"
2549
+
2550
+ msgid "Show editor icon"
2551
+ msgstr "Toon editor icoon"
2552
+
2553
+ msgid "Show in admin bar"
2554
+ msgstr "Toon in admin balk"
2555
+
2556
+ msgid "YOAST SEO sitemap - add images"
2557
+ msgstr "YOAST SEO sitemap - afbeeldingen toevoegen"
2558
+
2559
+ msgid "Create widget area"
2560
+ msgstr "Maak widget zone"
2561
+
2562
+ msgid "widget area(s)"
2563
+ msgstr "widget zone(s)"
2564
+
2565
+ msgid "Creates new widget areas which you can place to your theme for easy publishing."
2566
+ msgstr "Maakt nieuwe widget zones die u in uw thema kunt plaatsen voor gemakkelijke publicatie."
2567
+
2568
+ msgid "Use iframe in AJAX calls"
2569
+ msgstr "Gebruik iframe in AJAX aanroepen"
2570
+
2571
+ msgid "Loads the slider using an iframe when the page is loaded via AJAX to avoid problems."
2572
+ msgstr "Laadt de slider aan de hand van een iframe als de pagina ingeladen wordt via AJAX, en dit om problemen te vermijden."
2573
+
2574
+ msgid "Joomla settings"
2575
+ msgstr "Joomla instellingen"
2576
+
2577
+ msgid "Force RTL backend"
2578
+ msgstr "Forceer RTL backend"
2579
+
2580
+ msgid "Run content plugins on sliders"
2581
+ msgstr "Voer content plugins uit op sliders"
2582
+
2583
+ msgid "Exclude plugins"
2584
+ msgstr "Uit te sluiten plugins"
2585
+
2586
+ msgid "At each slider you can override the global breakpoints with local values."
2587
+ msgstr "In elke slider kunt u de globale breekpunten overschrijven met lokale waarden."
2588
+
2589
+ msgid "Focus offset"
2590
+ msgstr "Focus compensatie"
2591
+
2592
+ msgid "This option is used at the full page layout to decrease the slider height. The \"Scroll to slider\" option also uses this option to determine where to scroll the slider."
2593
+ msgstr "Deze optie wordt gebruikt in de volledige pagina lay-out om de hoogte van de slider te verminderen. De \"Scroll naar slider\" optie gebruikt deze optie ook om te bepalen waar de slider gescrold moet worden."
2594
+
2595
+ msgid "Translate url"
2596
+ msgstr "Vertaal URL"
2597
+
2598
+ msgid "You can change the frontend URL our assets are loading from. It can be useful after moving to a new domain."
2599
+ msgstr "U kunt de frontend URL veranderen vanwaar onze assets geladen worden. Dit kan nuttig zijn na het verhuizen naar een nieuw domein."
2600
+
2601
+ msgid "The old URL you want to replace. E.g. https://oldsite.com/"
2602
+ msgstr "De oude URL die u wilt vervangen. Bijvoorbeeld https://oudesite.com"
2603
+
2604
+ msgid "The new URL you want to use. E.g. https://newsite.com"
2605
+ msgstr "De nieuwe URL die u wilt gebruiken. Bijvoorbeeld https://nieuwsite.com"
2606
+
2607
+ msgid "Slider restored."
2608
+ msgstr "Slider hersteld."
2609
+
2610
+ msgid "Slider permanently deleted."
2611
+ msgstr "Slider permanent verwijderd."
2612
+
2613
+ msgid "Slider created."
2614
+ msgstr "Slider aangemaakt."
2615
+
2616
+ msgid "Slider renamed."
2617
+ msgstr "Slider hernoemd."
2618
+
2619
+ msgid "Slider saved."
2620
+ msgstr "Slider opgeslagen."
2621
+
2622
+ #, php-format
2623
+ msgid "Import url is not valid: %s"
2624
+ msgstr "Import URL is niet geldig: %s"
2625
+
2626
+ msgid "License key required for premium features!"
2627
+ msgstr "Licentie sleutel is vereist voor premium mogelijkheden!"
2628
+
2629
+ msgid "Slider imported."
2630
+ msgstr "Slider geïmporteerd."
2631
+
2632
+ msgid "Import error!"
2633
+ msgstr "Import fout!"
2634
+
2635
+ msgid "Slide duplicated."
2636
+ msgstr "Slide gekloond."
2637
+
2638
+ #, php-format
2639
+ msgid "%s slider type is not available."
2640
+ msgstr "Het %s slider type is niet beschikbaar."
2641
+
2642
+ msgid "Groups are only available in the Pro version."
2643
+ msgstr "Groepen zijn alleen beschikbaar in de Pro versie."
2644
+
2645
+ msgid "Slider moved to the trash."
2646
+ msgstr "Slider verplaatst naar de prullenbak."
2647
+
2648
+ msgid "Slider removed from the group."
2649
+ msgstr "Slider verwijderd uit de groep."
2650
+
2651
+ msgid "Slider duplicated."
2652
+ msgstr "Slider gekloond."
2653
+
2654
+ msgid "Slider settings"
2655
+ msgstr "Slider instellingen"
2656
+
2657
+ msgid "Delete slider"
2658
+ msgstr "Verwijder slider"
2659
+
2660
+ msgid "Edit slide"
2661
+ msgstr "Slide bewerken"
2662
+
2663
+ msgid "Delete slide"
2664
+ msgstr "Verwijder slide"
2665
+
2666
+ msgid "Ordering"
2667
+ msgstr "Volgorde"
2668
+
2669
+ msgid "Video url"
2670
+ msgstr "Video URL"
2671
+
2672
+ msgid "Actions"
2673
+ msgstr "Acties"
2674
+
2675
+ #, php-format
2676
+ msgid "Export %1$s as HTML"
2677
+ msgstr "Exporteer %1$s als HTML"
2678
+
2679
+ msgid "Duplicate slider"
2680
+ msgstr "Kloon slider"
2681
+
2682
+ msgid "Simple edit"
2683
+ msgstr "Simpel bewerken"
2684
+
2685
+ msgid "Slider order saved."
2686
+ msgstr "Slider volgorde opgeslagen."
2687
+
2688
+ msgid "Slider(s) moved to the trash."
2689
+ msgstr "Slider(s) verplaatst naar de prullenbak."
2690
+
2691
+ msgid "Slider(s) removed from the group."
2692
+ msgstr "Slider(s) verwijderd uit de groep."
2693
+
2694
+ msgid "Slider(s) deleted permanently from the trash."
2695
+ msgstr "Slider(s) permanent verwijderd uit de prullenbak."
2696
+
2697
+ #, php-format
2698
+ msgid "Your server has an upload file limit at %s, so if you have bigger export file, please use the local import file method."
2699
+ msgstr "Uw server heeft een upload bestandslimiet op %s, dus als u een groter export bestand hebt gebruik dan de lokale import bestand methode."
2700
+
2701
+ msgid "You have to unzip your "
2702
+ msgstr "Zorg voor het uitpakken van uw "
2703
+
2704
+ msgid "Only *.ss3 files can be uploaded!"
2705
+ msgstr "Alleen *.ss3 bestanden mogen geüpload worden!"
2706
+
2707
+ msgid "The imported file is not readable!"
2708
+ msgstr "Het geïmporteerde bestand is niet leesbaar!"
2709
+
2710
+ msgid "Go to dashboard"
2711
+ msgstr "Ga naar bedieningspaneel"
2712
+
2713
+ msgid "Welcome to Smart Slider 3"
2714
+ msgstr "Welkom bij Smart Slider 3"
2715
+
2716
+ msgid "Don't show again"
2717
+ msgstr "Toon niet opnieuw"
2718
+
2719
+ msgid "Import project"
2720
+ msgstr "Importeer project"
2721
+
2722
+ msgid "You can upload *.ss3 files which were exported by Smart Slider 3."
2723
+ msgstr "U kunt *.ss3 bestanden uploaden die geëxporteerd werden door Smart Slider 3."
2724
+
2725
+ msgid "Local import"
2726
+ msgstr "Lokaal importeren"
2727
+
2728
+ msgid "Upload file"
2729
+ msgstr "Upload bestand"
2730
+
2731
+ #, php-format
2732
+ msgid "Your server's upload filesize limitation is %s, so if your file is bigger, use the local import."
2733
+ msgstr "De upload bestandsgrootte beperking van uw server is %s, dus als uw bestand groter is moet u de lokale import gebruiken."
2734
+
2735
+ msgid "File"
2736
+ msgstr "Bestand"
2737
+
2738
+ #, php-format
2739
+ msgid "Files with <i>.ss3</i> extension are listed from: %s"
2740
+ msgstr "Bestanden met <i>.ss3</i> extensie worden getoond van: %s"
2741
+
2742
+ msgid "Delete file"
2743
+ msgstr "Bestand verwijderen"
2744
+
2745
+ msgid "Removes the selected .ss3 file from your sever after the import."
2746
+ msgstr "Verwijdert het geselecteerde .ss3 bestand van uw server na de import."
2747
+
2748
+ msgid "Restore slider"
2749
+ msgstr "Herstel slider"
2750
+
2751
+ msgid "The imported slider will have the same ID as the original export has. If you have a slider with the same ID, it will be overwritten."
2752
+ msgstr "De geïmporteerde slider zal hetzelfde ID hebben als de originele export. Als u al een slider hebt met hetzelfde ID dan zal deze overschreven worden."
2753
+
2754
+ msgid "Image mode"
2755
+ msgstr "Afbeelding modus"
2756
+
2757
+ msgid "Clone"
2758
+ msgstr "Klonen"
2759
+
2760
+ msgid "Old site url"
2761
+ msgstr "Oude site URL"
2762
+
2763
+ msgid "Original"
2764
+ msgstr "Origineel"
2765
+
2766
+ msgid "You can choose how the slide images are loaded."
2767
+ msgstr "U kunt kiezen hoe de slide afbeeldingen geladen worden."
2768
+
2769
+ msgid "Trash"
2770
+ msgstr "Prullenbak"
2771
+
2772
+ msgid "Empty trash"
2773
+ msgstr "Prullenbak leegmaken"
2774
+
2775
+ msgid "Slide saved."
2776
+ msgstr "Slide opgeslagen."
2777
+
2778
+ #, php-format
2779
+ msgid "%d static slides generated."
2780
+ msgstr "%d statische slides gegenereerd."
2781
+
2782
+ msgid "Slide renamed."
2783
+ msgstr "Slide hernoemd."
2784
+
2785
+ msgid "First slide changed."
2786
+ msgstr "Eerste slide veranderd."
2787
+
2788
+ msgid "Static overlay converted to slide."
2789
+ msgstr "Statische bovenlaag omgevormd tot slide."
2790
+
2791
+ msgid "Slide published."
2792
+ msgstr "Slide gepubliceerd."
2793
+
2794
+ msgid "Slide unpublished."
2795
+ msgstr "Slide gedepubliceerd."
2796
+
2797
+ msgid "Slide order saved."
2798
+ msgstr "Slide volgorde opgeslagen."
2799
+
2800
+ msgid "Slide(s) copied."
2801
+ msgstr "Slide(s) gekopieerd."
2802
+
2803
+ msgid "Slide deleted."
2804
+ msgstr "Slide verwijderd."
2805
+
2806
+ msgid "Slides created."
2807
+ msgstr "Slides aangemaakt."
2808
+
2809
+ msgid "Slide created."
2810
+ msgstr "Slide aangemaakt."
2811
+
2812
+ msgid "Failed to create slides."
2813
+ msgstr "Kon de slides niet aanmaken."
2814
+
2815
+ msgid "Static save"
2816
+ msgstr "Statisch opslaan"
2817
+
2818
+ msgid "Generator settings"
2819
+ msgstr "Generator instellingen"
2820
+
2821
+ msgid "Cache expiration"
2822
+ msgstr "Cache verval"
2823
+
2824
+ msgid "hours"
2825
+ msgstr "uur"
2826
+
2827
+ msgid "Start index"
2828
+ msgstr "Start index"
2829
+
2830
+ msgid "Group result"
2831
+ msgstr "Groepeer resultaat"
2832
+
2833
+ msgid "Smart Slider 3 deactivated on this site!"
2834
+ msgstr "Smart Slider 3 gedeactiveerd op deze site!"
2835
+
2836
+ msgid "New slider"
2837
+ msgstr "Nieuwe slider"
2838
+
2839
+ msgid "Alias removed"
2840
+ msgstr "Alias verwijderd"
2841
+
2842
+ msgid "Alias must contain one or more letters"
2843
+ msgstr "Alias moet één of meer letters bevatten"
2844
+
2845
+ #, php-format
2846
+ msgid "Alias updated to: %s"
2847
+ msgstr "Alias bijgewerkt tot %s"
2848
+
2849
+ msgid "Background animation"
2850
+ msgstr "Achtergrond animatie"
2851
+
2852
+ msgid "Animation type"
2853
+ msgstr "Animatie type"
2854
+
2855
+ msgid "The importing failed at the unzipping part."
2856
+ msgstr "Het importeren is mislukt bij het uitpakken."
2857
+
2858
+ msgid "You can't import sliders from Smart Slider 2."
2859
+ msgstr "U kunt geen sliders van Smart Slider 2 importeren."
2860
+
2861
+ msgid "Export file corrupted! Slider data is missing."
2862
+ msgstr "Export bestand is corrupt! Slider data ontbreekt."
2863
+
2864
+ msgid "Learn more"
2865
+ msgstr "Kom meer te weten"
2866
+
2867
+ #, php-format
2868
+ msgid "Increase %1$s in php.ini to 1000 or more. Current value: %2$s"
2869
+ msgstr "Verhoog %1$s in php.ini tot 1000 of meer. Huidige waarde: %2$s"
2870
+
2871
+ #, php-format
2872
+ msgid "Decrease %1$s below 15 in php.ini to prevent fatal errors on plugin updates. Current value: %2$s"
2873
+ msgstr "Verlaag %1$s tot een waarde kleiner dan 15 in php.ini om fatale fouten te vermijden bij plugin updates. Huidige waarde: %2$s"
2874
+
2875
+ msgid "Unable to connect to the API"
2876
+ msgstr "Kon geen verbinding met de API maken"
2877
+
2878
+ msgid "MySQL table missing"
2879
+ msgstr "MySQL tabel ontbreekt"
2880
+
2881
+ msgid "Your theme uses an outdated MooTools library which is not compatible."
2882
+ msgstr "Uw thema gebruikt een verouderde MooTools bibliotheek die niet compatibel is."
2883
+
2884
+ msgid "JCH Optimize could have a conflict with Smart Slider's Global settings -> Framework settings -> Async Non-Primary CSS. If your Google fonts are not loading, turn this option off."
2885
+ msgstr "JCH Optimize kan een conflict hebben met de Globale instellingen -> Framework instellingen -> Async niet-primaire CSS instelling van Smart Slider. Als uw Google fonts niet ingeladen worden schakel deze optie dan uit."
2886
+
2887
+ msgid "This plugin breaks JavaScript in the admin area, deactivate it and use alternative plugin."
2888
+ msgstr "Deze plugin breekt JavaScript in de admin zone. Deactivateer hem en gebruik een alternatieve plugin."
2889
+
2890
+ msgid "This plugin breaks Smart Slider 3 ajax calls if custom admin url enabled."
2891
+ msgstr "Deze plugin breekt Smart Slider 3 ajax aanroepen als een aangepaste admin URL geactiveerd is."
2892
+
2893
+ msgid "This plugin adds a background image to every SVG and breaks SSL."
2894
+ msgstr "Deze plugin voegt een achtergrondafbeelding toe aan elke SVG en breekt SSL."
2895
+
2896
+ msgid "This plugin has a JavaScript error which might break Smart Slider."
2897
+ msgstr "Deze plugin heeft een JavaScript fout die Smart Slider mogelijk breekt."
2898
+
2899
+ #, php-format
2900
+ msgid "This plugin breaks the filtering options of the dynamic slide generators when %1$s is set to %2$s. Also it has not received any updates since WordPress 3.9."
2901
+ msgstr "Deze plugin breekt de filtering opties van de dynamische slide generatoren als %1$s ingesteld is op %2$s. Hij heeft ook geen updates meer ontvangen sinds WordPress 3.9."
2902
+
2903
+ msgid "Add column"
2904
+ msgstr "Kolom toevoegen"
2905
+
2906
+ msgid "Year"
2907
+ msgstr "Jaar"
2908
+
2909
+ msgid "Month"
2910
+ msgstr "Maand"
2911
+
2912
+ msgid "Day"
2913
+ msgstr "Dag"
2914
+
2915
+ msgid "Hour"
2916
+ msgstr "Uur"
2917
+
2918
+ msgid "Minute"
2919
+ msgstr "Minuut"
2920
+
2921
+ msgid "Stack"
2922
+ msgstr "Stapel"
2923
+
2924
+ msgid "No description."
2925
+ msgstr "Geen beschrijving."
2926
+
2927
+ msgid "Generator not found"
2928
+ msgstr "Generator niet gevonden"
2929
+
2930
+ msgid "Test generator."
2931
+ msgstr "Test generator."
2932
+
2933
+ msgid "Generator type not found"
2934
+ msgstr "Generator type niet gevonden"
2935
+
2936
+ #, php-format
2937
+ msgid "%1$s generator missing the following source: %2$s"
2938
+ msgstr "Voor %1$s generator ontbreekt de volgende bron: %2$s"
2939
+
2940
+ msgid "Joomla articles"
2941
+ msgstr "Joomla artikels"
2942
+
2943
+ msgid "Creates slides from your Joomla articles or categories."
2944
+ msgstr "Maakt slides van uw Joomla artikels of categorieën."
2945
+
2946
+ msgid "Article"
2947
+ msgstr "Artikel"
2948
+
2949
+ msgid "Category"
2950
+ msgstr "Categorie"
2951
+
2952
+ msgid "Creates slides from your Joomla articles in the selected categories."
2953
+ msgstr "Maakt slides van uw Joomla artikels in de geselecteerde categorieën."
2954
+
2955
+ msgid "Tags"
2956
+ msgstr "Tags"
2957
+
2958
+ msgid "Featured"
2959
+ msgstr "Uitgelicht"
2960
+
2961
+ msgid "User ID"
2962
+ msgstr "Gebruiker ID"
2963
+
2964
+ msgid "Language"
2965
+ msgstr "Taal"
2966
+
2967
+ msgid "Extra variables"
2968
+ msgstr "Extra variabelen"
2969
+
2970
+ msgid "Turn on these options to generate more variables for the slides."
2971
+ msgstr "Schakel deze opties in om meer variabelen voor de slides te genereren."
2972
+
2973
+ msgid "Date format"
2974
+ msgstr "Datumformaat"
2975
+
2976
+ msgid "Time format"
2977
+ msgstr "Tijdsformaat"
2978
+
2979
+ msgid "Translate date and time"
2980
+ msgstr "Vertaal datum en tijd"
2981
+
2982
+ msgid "Title"
2983
+ msgstr "Titel"
2984
+
2985
+ msgid "User name"
2986
+ msgstr "Gebruikersnaam"
2987
+
2988
+ msgid "Hits"
2989
+ msgstr "Hits"
2990
+
2991
+ msgid "Creation time"
2992
+ msgstr "Aanmaaktijd"
2993
+
2994
+ msgid "Modification time"
2995
+ msgstr "Aanpassingstijd"
2996
+
2997
+ msgid "Publish time"
2998
+ msgstr "Publicatietijd"
2999
+
3000
+ msgid "Featured article ordering"
3001
+ msgstr "Volgorde uitgelichte artikels"
3002
+
3003
+ msgid "View article"
3004
+ msgstr "Bekijk artikel"
3005
+
3006
+ msgid "Creates slides from your Joomla categories. (Not the articles inside them.)"
3007
+ msgstr "Maakt slides van uw Joomla categorieën (niet van de artikels die zij bevatten)."
3008
+
3009
+ msgid "Parent category"
3010
+ msgstr "Moedercategorie"
3011
+
3012
+ msgid "View category"
3013
+ msgstr "Bekijk categorie"
3014
+
3015
+ msgid "Nothing"
3016
+ msgstr "Niets"
3017
+
3018
+ #, php-format
3019
+ msgid "Creates slides from %1$s."
3020
+ msgstr "Maakt slides van %1$s."
3021
+
3022
+ msgid "Posts by filter"
3023
+ msgstr "Inzendingen op filter"
3024
+
3025
+ msgid "Posts by IDs"
3026
+ msgstr "Inzendingen op IDs"
3027
+
3028
+ msgid "Custom"
3029
+ msgstr "Aangepast"
3030
+
3031
+ msgid "All custom posts"
3032
+ msgstr "Alle aangepaste inzendingen"
3033
+
3034
+ msgid "Creates slides from the posts of all your post types."
3035
+ msgstr "Maakt slides van de inzendingen van al uw inzending types."
3036
+
3037
+ msgid "Post types"
3038
+ msgstr "Inzending types"
3039
+
3040
+ msgid "Taxonomies"
3041
+ msgstr "Taxonomieën"
3042
+
3043
+ msgid "Post IDs to display"
3044
+ msgstr "Weer te geven inzending IDs"
3045
+
3046
+ #, php-format
3047
+ msgid "You can make your generator display only the posts with the set ID. No other post will be fetched, even if they match the set filters. %1$s Write one ID per line."
3048
+ msgstr "U kunt ervoor zorgen dat uw generator alleen de inzendignen toont met het ingestelde ID. Geen andere inzending zal opgehaald worden, zelfs niet als die voldoet aan de ingestelde filters. %1$s Schrijf één ID per regel."
3049
+
3050
+ msgid "Sticky"
3051
+ msgstr "Plakkend"
3052
+
3053
+ msgid "Post status"
3054
+ msgstr "Inzending status"
3055
+
3056
+ msgid "Post meta comparison"
3057
+ msgstr "Inzending meta vergelijking"
3058
+
3059
+ msgid "Field name"
3060
+ msgstr "Veldnaam"
3061
+
3062
+ msgid "Only show posts, where the given meta key is equal to the given meta value."
3063
+ msgstr "Toon alleen inzendingen waarvan de gegeven meta sleutel gelijk is aan de gegeven meta waarde."
3064
+
3065
+ msgid "Compare method"
3066
+ msgstr "Vergelijkingsmethode"
3067
+
3068
+ msgid "Field value"
3069
+ msgstr "Veldwaarde"
3070
+
3071
+ msgid "Meta comparison"
3072
+ msgstr "Meta vergelijking"
3073
+
3074
+ msgid "Same as the previous option, just you can write down more comparisons. Read the \"Field name\" and \"Compare method\" out from the previous option. Example:"
3075
+ msgstr "Hetzelfde als de vorige optie, alleen kunt u nu meer vergelijkingen neerschrijven. Lees de \"Veldnaam\" en \"Vergelijkingsmethode\" uit van de vorige optie. Bijvoorbeeld:"
3076
+
3077
+ msgid "Post date"
3078
+ msgstr "Inzending datum"
3079
+
3080
+ msgid "Modification date"
3081
+ msgstr "Aanpassingsdatum"
3082
+
3083
+ msgid "Random"
3084
+ msgstr "Willekeurig"
3085
+
3086
+ msgid "Given IDs"
3087
+ msgstr "Gegeven IDs"
3088
+
3089
+ msgid "Menu order"
3090
+ msgstr "Menu volgorde"
3091
+
3092
+ #, php-format
3093
+ msgid "Creates slides from the following post type: %1$s."
3094
+ msgstr "Maakt slides van het volgende inzending type: %1$s."
3095
+
3096
+ msgid "Relation"
3097
+ msgstr "Relatie"
3098
+
3099
+ msgid "Exclude posts"
3100
+ msgstr "Uit te sluiten inzendingen"
3101
+
3102
+ #, php-format
3103
+ msgid "The selected post IDs won't appear in the generator, even if they they match the set filters. %1$s Write one ID per line."
3104
+ msgstr "De geselecteerde inzending IDs zullen niet in de generator verschijnen, zelfs als zij overeenkomen met de ingestelde filters. %1$s Schrijf één ID per regel."
3105
+
3106
+ #, php-format
3107
+ msgid "You can create other comparison based on the previous \"Field name\" and \"Compare method\" options. %1$s Use the following format: published||=||yes %1$s Write one comparison per line."
3108
+ msgstr "U kunt een andere vergelijking maken gebaseerd op de vorige \"Veldnaam\" en \"Vergelijkingsmethode\" opties. %1$s Gebruik het volgende formaat: published||=||yes %1$s Schrijf één vergelijking per regel."
3109
+
3110
+ msgid "Post option"
3111
+ msgstr "Inzending optie"
3112
+
3113
+ msgid "Posts can have options, like a post can be \"sticky\" or not. You can choose to only display posts, which are selected to be IN or NOT IN this option."
3114
+ msgstr "Inzendingen kunnen opties hebben, een inzending kan bijvoorbeeld \"plakkend\" zijn of niet. U kunt ervoor kiezen om alleen inzendingen te tonen die geselecteerd zijn om IN of NIET IN deze optie te zijn."
3115
+
3116
+ msgid "Post relationship with selected option"
3117
+ msgstr "Post relatie met geselecteerde optie"
3118
+
3119
+ msgid "Date configuration"
3120
+ msgstr "Datum configuratie"
3121
+
3122
+ msgid "Identify datetime"
3123
+ msgstr "Identificeer datum en tijd"
3124
+
3125
+ msgid "Our system tries to identify the date and time in your variables."
3126
+ msgstr "Ons systeem probeert de datum en de tijd in uw variabelen te identificeren."
3127
+
3128
+ msgid "Datetime format"
3129
+ msgstr "Datetime formaat"
3130
+
3131
+ #, php-format
3132
+ msgid "You can use any %1$sPHP date format%2$s."
3133
+ msgstr "U mag eender welk %1$sPHP datum formaat%2$s gebruiken."
3134
+
3135
+ msgid "Translate dates"
3136
+ msgstr "Vertaal datums"
3137
+
3138
+ #, php-format
3139
+ msgid "Write one per line in the following format: from||to %1$s E.g.: Monday||Montag"
3140
+ msgstr "Schrijf er één per regel in het volgende formaat: van||tot %1$s Bijvoorbeeld: Monday||Maandag"
3141
+
3142
+ msgid "Replace variables"
3143
+ msgstr "Vervang variabelen"
3144
+
3145
+ msgid "Timestamp variables"
3146
+ msgstr "Tijdstempel variabelen"
3147
+
3148
+ msgid "Replace timestamp variables"
3149
+ msgstr "Vervang tijdstempel variabelen"
3150
+
3151
+ #, php-format
3152
+ msgid "The \"Datetime format\" will be used to create dates from the given timestamp containing variables. %1$s Separate them with comma."
3153
+ msgstr "Het \"Datetime formaat\" zal gebruikt worden om datums aan te maken vanaf de gegeven tijdstempel die variabelen bevat. %1$s Scheid ze door een komma."
3154
+
3155
+ msgid "File variables"
3156
+ msgstr "Bestandsvariabelen"
3157
+
3158
+ msgid "Replace file variables"
3159
+ msgstr "Vervang bestandsvariabelen"
3160
+
3161
+ #, php-format
3162
+ msgid "If you have IDs of files, you can replace those variables with the urls of the files instead. %1$s Separate them with comma."
3163
+ msgstr "Als u IDs van bestanden hebt dan kunt u deze variabelen vervangen door de URLs van die bestanden. %1$s Scheid ze door een komma."
3164
+
3165
+ msgid "Remove duplicate results"
3166
+ msgstr "Verwijder dubbele resultaten"
3167
+
3168
+ msgid "You can remove results based on one variable's uniqueness. For example if you want the images to be unique, you could write the \"image\" variable into this field (without quotemarks)."
3169
+ msgstr "U kunt resultaten verwijderen gebaseerd op de uniekheid van één variabele. Als u bijvoorbeeld wilt dat de afbeeldingen uniek zijn dan kunt u de \"image\" variabele in dit veld invullen (zonder aanhalingstekens)."
3170
+
3171
+ msgid "Custom field name"
3172
+ msgstr "Aangepaste veldnaam"
3173
+
3174
+ msgid "If it's set, this will be used instead of the 'Field' value."
3175
+ msgstr "Indien dit ingesteld is dan zal het gebruikt worden in plaats van de 'Veld' waarde."
3176
+
3177
+ msgid "Numeric"
3178
+ msgstr "Numeriek"
3179
+
3180
+ msgid "Alphabetic"
3181
+ msgstr "Alfabetisch"
3182
+
3183
+ msgid "Creates slides from your posts in the selected categories."
3184
+ msgstr "Maakt slides van uw inzendingen in de geselecteerde categorieën."
3185
+
3186
+ msgid "Categories"
3187
+ msgstr "Categorieën"
3188
+
3189
+ msgid "Remove shortcodes"
3190
+ msgstr "Verwijder snelcodes"
3191
+
3192
+ msgid "You can remove shortcodes from variables to avoid 3rd party content rendering in your slider."
3193
+ msgstr "U kunt snelcodes verwijderen uit variabelen om te vermijden dat derde partij inhoud in uw slider gegenereerd wordt."
3194
+
3195
+ msgid "Remove from variables"
3196
+ msgstr "Verwijder uit variabelen"
3197
+
3198
+ msgid "Write the name of the variables you want to remove the shortcodes from. Separate new variables with a comma and space. E.g. description, content"
3199
+ msgstr "Schrijf de naam van de variabelen waarvan u de snelcodes wilt verwijderen. Scheid nieuwe variabelen door een komma en een spatie. Bijvoorbeeld: beschrijving, inhoud"
3200
+
3201
+ msgid "Custom date variables"
3202
+ msgstr "Aangepaste datum variabelen"
3203
+
3204
+ #, php-format
3205
+ msgid "You can create custom date variables from your existing date variables. Write each variable to a new line and use the following format: variable||format. %3$s The \"variable\" should be an existing variable. Based on this existing variable, we create a new one with the \"_datetime\" suffix. (E.g. date_datetime.) %3$s The \"format\" can be any %1$sPHP date format%2$s."
3206
+ msgstr "U kunt aangepaste datumvariabelen maken vanaf uw bestaande datumvariabelen. Schrijf elke variabele op een nieuwe regel en gebruik het volgende formaat: variabele||formaat. %3$s De \"variabele\" moet een bestaande variabele zijn. Gebaseerd op deze bestaande variabele maken we een nieuwe met het \"_datumtijd\" achtervoegsel (bijvoorbeeld datum_datumtijd). %3$s Het \"formaat\" mag eender welk %1$sPHP datumformaat%2$s zijn."
3207
+
3208
+ msgid "Translate custom dates"
3209
+ msgstr "Vertaal aangepaste datums"
3210
+
3211
+ #, php-format
3212
+ msgid "You can translate the content of the newly created variables. %1$s Use the following format: from||to. Eg.: Monday||Montag"
3213
+ msgstr "U kunt de inhoud van de nieuw aangemaakte variabelen vertalen. %1$s Gebruik het volgende formaat: van||naar. Bijvoorbeeld: Monday||Maandag"
3214
+
3215
+ msgid "Date function"
3216
+ msgstr "Datum functie"
3217
+
3218
+ msgid "This function will be used to format these custom date variables. Usually the date_i18n works, but if your date will be off a little bit, then try out the other one."
3219
+ msgstr "Deze functie zal gebruikt worden om deze aangepaste datumvariabelen vorm te geven. Doorgaans werkt date_i18n, maar als uw datum er een beetje naast zit probeer dan de andere waarde."
3220
+
3221
+ msgid "Comment count"
3222
+ msgstr "Aantal commentaren"
3223
+
3224
+ msgid "Creates slides from the posts with the set IDs."
3225
+ msgstr "Maakt slides van de inzendingen met de ingestelde IDs."
3226
+
3227
+ msgid "Post or Page IDs"
3228
+ msgstr "Inzending of pagina IDs"
3229
+
3230
+ #, php-format
3231
+ msgid "You can write the ID of the page you want to show in your generator. %1$s Write one ID per line."
3232
+ msgstr "U kunt het ID ingeven van de pagina die u in uw generator wilt tonen. %1$s Schrijf één ID per regel."
3233
+
3234
+ msgid "Whole group"
3235
+ msgstr "Ganse groep"
3236
+
3237
+ msgid "Select slider"
3238
+ msgstr "Selecteer slider"
3239
+
3240
+ msgid "OR"
3241
+ msgstr "OF"
3242
+
3243
+ msgid "Select A Slider"
3244
+ msgstr "Selecteer een slider"
3245
+
3246
+ msgid "Insert a slider into your content"
3247
+ msgstr "Voeg een slider aan uw content toe"
3248
+
3249
+ msgid "Select Slider"
3250
+ msgstr "Selecteer slider"
3251
+
3252
+ msgid "Edit Slider"
3253
+ msgstr "Slider bewerken"
3254
+
3255
+ msgid "Select the slider you want to insert."
3256
+ msgstr "Selecteer de slider die u wilt invoegen."
3257
+
3258
+ msgctxt "Button layer default text"
3259
+ msgid "MORE"
3260
+ msgstr "MEER"
3261
+
3262
+ msgid "Label"
3263
+ msgstr "Label"
3264
+
3265
+ msgid "No wrap"
3266
+ msgstr "Niet omslaan"
3267
+
3268
+ msgid "Prevents the text from breaking into more lines"
3269
+ msgstr "Verhindert dat de tekst opgesplitst wordt in meerdere regels"
3270
+
3271
+ msgid "Rel"
3272
+ msgstr "Rel"
3273
+
3274
+ #, php-format
3275
+ msgid "Enter the %1$s rel attribute %2$s that represents the relationship between the current document and the linked document. Multiple rel attributes can be separated with space. E.g. nofollow noopener noreferrer"
3276
+ msgstr "Geef het %1$s rel attribuut %2$s in dat de relatie tussen het huidige document en het gelinkte document voorstelt. Meerdere rel attributen kunnen gescheiden worden door een spatie. Bijvoorbeeld: nofollow noopener noreferrer"
3277
+
3278
+ msgid "Icon"
3279
+ msgstr "Icoon"
3280
+
3281
+ msgid "Placement"
3282
+ msgstr "Plaatsing"
3283
+
3284
+ #, php-format
3285
+ msgid "Class on the %s element."
3286
+ msgstr "Class op het %s element."
3287
+
3288
+ msgid "Heading layer"
3289
+ msgstr "Hoofding laag"
3290
+
3291
+ msgid "Text animation"
3292
+ msgstr "Tekst animatie"
3293
+
3294
+ msgid "Incoming"
3295
+ msgstr "Binnenkomend"
3296
+
3297
+ msgid "Outgoing"
3298
+ msgstr "Uitgaande"
3299
+
3300
+ msgid "Backface visibility"
3301
+ msgstr "Backface zichtbaarheid"
3302
+
3303
+ #, php-format
3304
+ msgid "Fix width for the %1$s."
3305
+ msgstr "Vaste breedte voor de %1$s."
3306
+
3307
+ #, php-format
3308
+ msgid "Fix height for the %1$s."
3309
+ msgstr "Vaste hoogte voor de %1$s."
3310
+
3311
+ msgid "Alt tag"
3312
+ msgstr "Alt tag"
3313
+
3314
+ msgid "Optimize image"
3315
+ msgstr "Optimaliseer afbeelding"
3316
+
3317
+ msgid "You can turn off the Layer image optimization for this image, to resize it for tablet and mobile."
3318
+ msgstr "U kunt de optimalisatie van de laag afbeelding uitschakelen voor deze afbeelding, en dit om haar te herschalen voor tablets en mobieltjes."
3319
+
3320
+ msgctxt "Layer group"
3321
+ msgid "Special"
3322
+ msgstr "Speciaal"
3323
+
3324
+ msgctxt "Layer group"
3325
+ msgid "Media"
3326
+ msgstr "Media"
3327
+
3328
+ msgctxt "Layer group"
3329
+ msgid "Advanced"
3330
+ msgstr "Uitgebreid"
3331
+
3332
+ msgctxt "Layer"
3333
+ msgid "Missing"
3334
+ msgstr "Ontbreekt"
3335
+
3336
+ #, php-format
3337
+ msgid "Missing layer type: %s"
3338
+ msgstr "Ontbrekend laag type: %s"
3339
+
3340
+ msgid "Custom text for tablet"
3341
+ msgstr "Aangepaste tekst voor tablet"
3342
+
3343
+ msgid "Tablet text"
3344
+ msgstr "Tablet tekst"
3345
+
3346
+ msgid "Custom text for mobile"
3347
+ msgstr "Aangepaste tekst voor mobieltjes"
3348
+
3349
+ msgid "Mobile text"
3350
+ msgstr "Tekst mobieltjes"
3351
+
3352
+ msgid "Vimeo url or Video ID"
3353
+ msgstr "Vimeo URL of Video ID"
3354
+
3355
+ msgid "Cover image"
3356
+ msgstr "Cover afbeelding"
3357
+
3358
+ msgid "Aspect ratio"
3359
+ msgstr "Verhouding"
3360
+
3361
+ msgid "Fill layer height"
3362
+ msgstr "Laaghoogte opvullen"
3363
+
3364
+ msgid "Set on Style tab."
3365
+ msgstr "Stel in op stijl tab."
3366
+
3367
+ msgid "Video settings"
3368
+ msgstr "Video instellingen"
3369
+
3370
+ msgid "When ended"
3371
+ msgstr "Na het beëindigen"
3372
+
3373
+ msgid "Do nothing"
3374
+ msgstr "Doe niets"
3375
+
3376
+ msgid "Go to next slide"
3377
+ msgstr "Ga naar volgende slide"
3378
+
3379
+ msgid "Start time"
3380
+ msgstr "Start tijd"
3381
+
3382
+ msgid "Volume"
3383
+ msgstr "Volume"
3384
+
3385
+ msgid "Mute"
3386
+ msgstr "Dempen"
3387
+
3388
+ msgid "Pause on scroll"
3389
+ msgstr "Pauzeer bij scrollen"
3390
+
3391
+ msgid "Never"
3392
+ msgstr "Nooit"
3393
+
3394
+ msgid "When partly visible"
3395
+ msgstr "Indien gedeeltelijk zichtbaar"
3396
+
3397
+ msgid "When not visible"
3398
+ msgstr "Indien niet zichtbaar"
3399
+
3400
+ msgid "You can pause the video when the visitor scrolls away from the slider"
3401
+ msgstr "U kunt de video pauzeren als de bezoeker wegscrollt van de slider"
3402
+
3403
+ msgid "Private video"
3404
+ msgstr "Privé video"
3405
+
3406
+ msgid "Turn it on to remove the admin warning that your video is not accessible."
3407
+ msgstr "Schakel dit in om de beheerderswaarschuwing dat uw video niet toegankelijk is te verwijderen."
3408
+
3409
+ msgid "Display"
3410
+ msgstr "Weergave"
3411
+
3412
+ msgid "Only works on videos of Vimeo Pro users."
3413
+ msgstr "Werkt alleen bij video's van Vimeo Pro gebruikers."
3414
+
3415
+ msgid "Remove controls"
3416
+ msgstr "Verwijder bedieningselementen"
3417
+
3418
+ msgid "Removes the controls of the video, but it only works on videos of Vimeo Pro users."
3419
+ msgstr "Verwijdert de bedieningselementen van de video, maar dit werkt alleen bij video's van Vimeo Pro gebruikers."
3420
+
3421
+ msgid "Hides the title of the video, but only if video owner allows it."
3422
+ msgstr "Verbergt de titel van de video, maar alleen als de eigenaar van de video dit toelaat."
3423
+
3424
+ msgid "Users byline"
3425
+ msgstr "Gebruikers naamregel"
3426
+
3427
+ msgid "Hides the user's byline of the video, but only if video owner allows it."
3428
+ msgstr "Verbergt de naamregel van de gebruiker van de video, maar alleen als de eigenaar van de video dit toelaat."
3429
+
3430
+ msgid "Hides the profile image of the author, but only if video owner allows it. "
3431
+ msgstr "Verbergt de profiel afbeelding van de auteur, maar alleen als de eigenaar van de video dit toelaat. "
3432
+
3433
+ msgid "Play button"
3434
+ msgstr "Speel knop"
3435
+
3436
+ msgid "Play"
3437
+ msgstr "Spelen"
3438
+
3439
+ msgid "YouTube URL or Video ID"
3440
+ msgstr "YouTube URL of Video ID"
3441
+
3442
+ msgid "End time"
3443
+ msgstr "Eindtijd"
3444
+
3445
+ msgid "Hide YouTube logo"
3446
+ msgstr "Verberg YouTube logo"
3447
+
3448
+ msgid "Centered"
3449
+ msgstr "Gecentreerd"
3450
+
3451
+ msgid "Scales up and crops the video to cover the whole layer."
3452
+ msgstr "Vergroot en snijdt de video bij zodat de hele laag bedekt wordt."
3453
+
3454
+ msgid "Show related videos"
3455
+ msgstr "Toon gelijkaardige video's"
3456
+
3457
+ msgid "Anywhere"
3458
+ msgstr "Eender waar"
3459
+
3460
+ msgid "Same channel"
3461
+ msgstr "Hetzelfde kanaal"
3462
+
3463
+ msgid "YouTube no longer allows hiding the related videos at the end of the video. This setting defines whether the videos should come from the same channel as the video that was just played or from any other channel."
3464
+ msgstr "YouTube laat niet langer toe de gelijkaardige video's te verbergen aan het einde van de video. Deze instelling bepaalt of de video's moeten komen van hetzelfde kanaal als de video die net gespeeld werd of van een ander kanaal."
3465
+
3466
+ msgid "Slider error! Generator group not found: "
3467
+ msgstr "Slider fout! Generator groep niet gevonden: "
3468
+
3469
+ msgid "Slider error! Generator source not found: "
3470
+ msgstr "Slider fout! Generator bron niet gevonden: "
3471
+
3472
+ msgid "Downscale"
3473
+ msgstr "Verkleinen"
3474
+
3475
+ msgid "Allows the slider to scale down for smaller screens."
3476
+ msgstr "Laat toe dat de slider zich verkleint voor kleinere schermen."
3477
+
3478
+ msgid "Upscale"
3479
+ msgstr "Vergroten"
3480
+
3481
+ msgid "Allows the slider to scale up for larger screens."
3482
+ msgstr "Laat toe dat de slider zich vergroot voor grotere schermen."
3483
+
3484
+ msgid "Min height"
3485
+ msgstr "Min hoogte"
3486
+
3487
+ msgid "Prevents the slider from getting smaller than the set value."
3488
+ msgstr "Verhindert dat de slider kleiner wordt dan de ingestelde waarde."
3489
+
3490
+ msgid "Force full width"
3491
+ msgstr "Forceer volledige breedte"
3492
+
3493
+ msgid "The slider tries to fill the full width of the browser."
3494
+ msgstr "De slider probeert de volledige breedte van de browser op te vullen."
3495
+
3496
+ msgid "Overflow-X"
3497
+ msgstr "Overloop-X"
3498
+
3499
+ msgid "Prevents the vertical scrollbar from appear during certain slide background animations."
3500
+ msgstr "Verhindert dat de verticale scrollbalk verschijnt tijdens bepaalde slide achtergrond animaties."
3501
+
3502
+ msgid "Adjust slider width to"
3503
+ msgstr "Pas slider breedte aan tot"
3504
+
3505
+ msgid "You can make the slider fill up a selected parent element instead of the full browser width."
3506
+ msgstr "U kunt zorgen dat de slider een geselecteerd moederelement opvult in plaats van de volledige browser breedte."
3507
+
3508
+ msgid "Not found"
3509
+ msgstr "Niet gevonden"
3510
+
3511
+ msgid "Slider size is too small!"
3512
+ msgstr "Slider is te klein!"
3513
+
3514
+ msgid "Ken Burns effect"
3515
+ msgstr "Ken Burns effect"
3516
+
3517
+ msgid "Speed"
3518
+ msgstr "Snelheid"
3519
+
3520
+ msgid "Super slow"
3521
+ msgstr "Super traag"
3522
+
3523
+ msgid "Slow"
3524
+ msgstr "Traag"
3525
+
3526
+ msgid "Fast"
3527
+ msgstr "Snel"
3528
+
3529
+ msgid "Super fast"
3530
+ msgstr "Super snel"
3531
+
3532
+ msgid "Border width"
3533
+ msgstr "Rand breedte"
3534
+
3535
+ msgid "Border color"
3536
+ msgstr "Randkleur"
3537
+
3538
+ msgid "Super fast 4x"
3539
+ msgstr "Super snel 4x"
3540
+
3541
+ msgctxt "Slider type"
3542
+ msgid "Simple slider"
3543
+ msgstr "Simpele slider"
3544
+
3545
+ msgid "Main animation"
3546
+ msgstr "Hoofdanimatie"
3547
+
3548
+ msgid "No animation"
3549
+ msgstr "Geen animatie"
3550
+
3551
+ msgid "Crossfade"
3552
+ msgstr "Crossfade"
3553
+
3554
+ msgid "Horizontal - reversed"
3555
+ msgstr "Horizontal - omgekeerd"
3556
+
3557
+ msgid "Vertical - reversed"
3558
+ msgstr "Verticaal - omgekeerd"
3559
+
3560
+ msgctxt "Feature"
3561
+ msgid "Carousel"
3562
+ msgstr "Carousel"
3563
+
3564
+ msgid "If you turn off this option, you can't switch to the first slide from the last one."
3565
+ msgstr "Als u deze optie uitschakelt dan kunt u niet meer overschakelen van de laatste slide naar de eerste."
3566
+
3567
+ msgid "Background animations only work on the slide background images, which have Fill selected at their Fill mode. They don't affect any images if the background parallax is enabled."
3568
+ msgstr "Achtergrond animaties werken alleen voor de slide achtergrondafbeeldingen, die 'Opvullen' geselecteerd hebben voor hun 'Opvulmodus'. Zij hebben geen invloed op afbeeldingen als de achtergrond parallax geactiveerd is."
3569
+
3570
+ msgid "Shifted"
3571
+ msgstr "Verschoven"
3572
+
3573
+ msgid "The background and the main animation plays simultaneously or shifted."
3574
+ msgstr "De achtergrond en de hoofdanimatie spelen gelijktijdig of afwisselend."
3575
+
3576
+ msgid "Slider CSS Preset"
3577
+ msgstr "Slider CSS voorinstelling"
3578
+
3579
+ msgid "Light shadow"
3580
+ msgstr "Lichte schaduw"
3581
+
3582
+ msgid "Dark shadow"
3583
+ msgstr "Donkere schaduw"
3584
+
3585
+ msgid "Photo"
3586
+ msgstr "Foto"
3587
+
3588
+ msgid "Photo rounded"
3589
+ msgstr "Foto afgerond"
3590
+
3591
+ #, php-format
3592
+ msgid "Demo slider is not available with the following ID: %s"
3593
+ msgstr "Demo slider is niet beschikbaar met het volgende ID: %s"
3594
+
3595
+ msgid "Blue"
3596
+ msgstr "Blauw"
3597
+
3598
+ msgid "White"
3599
+ msgstr "Wit"
3600
+
3601
+ msgid "Green"
3602
+ msgstr "Groen"
3603
+
3604
+ msgid "Purple"
3605
+ msgstr "Purper"
3606
+
3607
+ msgid "Grey"
3608
+ msgstr "Grijs"
3609
+
3610
+ msgid "Black"
3611
+ msgstr "Zwart"
3612
+
3613
+ msgid "Rounded Blue"
3614
+ msgstr "Afgerond blauw"
3615
+
3616
+ msgid "Rounded Green"
3617
+ msgstr "Afgerond groen"
3618
+
3619
+ msgid "Rounded Purple"
3620
+ msgstr "Afgerond purper"
3621
+
3622
+ msgid "Rounded Grey"
3623
+ msgstr "Afgerond grijs"
3624
+
3625
+ msgid "Rounded White"
3626
+ msgstr "Afgerond wit"
3627
+
3628
+ msgid "Rounded Black"
3629
+ msgstr "Afgerond zwart"
3630
+
3631
+ msgid "Border White"
3632
+ msgstr "Rand wit"
3633
+
3634
+ msgid "Border Dark"
3635
+ msgstr "Rand donker"
3636
+
3637
+ msgid "Rectangle Green"
3638
+ msgstr "Rechthoek groen"
3639
+
3640
+ msgid "Rectangle Blue"
3641
+ msgstr "Rechthoek blauw"
3642
+
3643
+ msgid "Rectangle Purple"
3644
+ msgstr "Rechthoek purper"
3645
+
3646
+ msgid "Rectangle Grey"
3647
+ msgstr "Rechthoek grijs"
3648
+
3649
+ msgid "Rounded Rectangle Green"
3650
+ msgstr "Afgeronde rechthoek groen"
3651
+
3652
+ msgid "Rounded Rectangle Blue"
3653
+ msgstr "Afgeronde rechthoek blauw"
3654
+
3655
+ msgid "Rounded Rectangle Purple"
3656
+ msgstr "Afgeronde rechthoek purper"
3657
+
3658
+ msgid "Border Light"
3659
+ msgstr "Rand licht"
3660
+
3661
+ msgid "My styles"
3662
+ msgstr "Mijn stijlen"
3663
+
3664
+ msgid "X-small Light"
3665
+ msgstr "Extra klein licht"
3666
+
3667
+ msgid "X-small Dark"
3668
+ msgstr "Extra klein donker"
3669
+
3670
+ msgid "Small Light"
3671
+ msgstr "Klein licht"
3672
+
3673
+ msgid "Small Dark"
3674
+ msgstr "Klein donker"
3675
+
3676
+ msgid "Medium Light"
3677
+ msgstr "Medium licht"
3678
+
3679
+ msgid "Medium Dark"
3680
+ msgstr "Medium donker"
3681
+
3682
+ msgid "Large Light"
3683
+ msgstr "Groot licht"
3684
+
3685
+ msgid "Large Dark"
3686
+ msgstr "Groot donker"
3687
+
3688
+ msgid "X-large Light"
3689
+ msgstr "Extra groot licht"
3690
+
3691
+ msgid "X-large Dark"
3692
+ msgstr "Extra groot donker"
3693
+
3694
+ msgid "My fonts"
3695
+ msgstr "Mijn fonts"
3696
+
3697
+ msgid "Warp"
3698
+ msgstr "Afwijking"
3699
+
3700
+ msgid "Twirl"
3701
+ msgstr "Ronddraaien"
3702
+
3703
+ msgid "Domino"
3704
+ msgstr "Domino"
3705
+
3706
+ msgid "Stand up"
3707
+ msgstr "Opstaan"
3708
+
3709
+ msgid "Rotate down"
3710
+ msgstr "Roteer naar beneden"
3711
+
3712
+ msgid "Elastic"
3713
+ msgstr "Elastiek"
3714
+
3715
+ msgid "Random elastic"
3716
+ msgstr "Willekeurig elastisch"
3717
+
3718
+ msgid "My text animations"
3719
+ msgstr "Mijn tekst animaties"
3720
+
3721
+ msgid "Morph - Wave"
3722
+ msgstr "Morph - Wave"
3723
+
3724
+ msgid "Morph - Brush"
3725
+ msgstr "Morph - Brush"
3726
+
3727
+ msgid "Morph - Flow"
3728
+ msgstr "Morph - Flow"
3729
+
3730
+ msgid "Morph - Noise"
3731
+ msgstr "Morph - Noise"
3732
+
3733
+ msgid "Distortion - Mosaic"
3734
+ msgstr "Distortion - Mosaic"
3735
+
3736
+ msgid "Distortion - Triangle"
3737
+ msgstr "Distortion - Triangle"
3738
+
3739
+ msgid "Distortion - Flow"
3740
+ msgstr "Vervorming - Flow"
3741
+
3742
+ msgid "Distortion - Warp"
3743
+ msgstr "Vervorming - Warp"
3744
+
3745
+ msgid "Distortion - Storm"
3746
+ msgstr "Vervorming - Storm"
3747
+
3748
+ msgid "Distortion - Wave"
3749
+ msgstr "Distortion - Wave"
3750
+
3751
+ msgid "Distortion - Shard"
3752
+ msgstr "Vervorming - Shard"
3753
+
3754
+ msgid "Distortion - Noise"
3755
+ msgstr "Distortion - Noise"
3756
+
3757
+ msgid "Slices - Single"
3758
+ msgstr "Onderdelen - Enkel"
3759
+
3760
+ msgid "Slices - Simple rows and scale"
3761
+ msgstr "Onderdelen - Simpele rijen en herschalen"
3762
+
3763
+ msgid "Slices - Simple rows and rotate"
3764
+ msgstr "Onderdelen - Simpele rijen en roteren"
3765
+
3766
+ msgid "Slices - Simple rows reversed"
3767
+ msgstr "Onderdelen - Simpele rijen omgekeerd"
3768
+
3769
+ msgid "Slices - Simple rows and blur"
3770
+ msgstr "Onderdelen - Simpele rijen en wazig maken"
3771
+
3772
+ msgid "Slices - Triangle"
3773
+ msgstr "Onderdelen - Driehoek"
3774
+
3775
+ msgid "Slices - Reversed triangle"
3776
+ msgstr "Onderdelen - Omgekeerde driehoek"
3777
+
3778
+ msgid "Scale to left"
3779
+ msgstr "Schaal naar links"
3780
+
3781
+ msgid "Rotate to left"
3782
+ msgstr "Roteer naar links"
3783
+
3784
+ msgid "Fixed to left"
3785
+ msgstr "Vast aan linkerkant"
3786
+
3787
+ msgid "Parallax to left"
3788
+ msgstr "Parallax naar links"
3789
+
3790
+ msgid "Flow"
3791
+ msgstr "Vloeiend"
3792
+
3793
+ msgid "Flowing rows"
3794
+ msgstr "Vloeiende rijen"
3795
+
3796
+ msgid "Flowing cols"
3797
+ msgstr "Vloeiende kolommen"
3798
+
3799
+ msgid "Flowing tiles"
3800
+ msgstr "Vloeiende tegels"
3801
+
3802
+ msgid "Slide to left"
3803
+ msgstr "Schuif naar links"
3804
+
3805
+ msgid "Stage"
3806
+ msgstr "Stadium"
3807
+
3808
+ msgid "Zoom"
3809
+ msgstr "Zoomen"
3810
+
3811
+ msgid "Zoom out"
3812
+ msgstr "Uitzoomen"
3813
+
3814
+ msgid "Curtain to left"
3815
+ msgstr "Gordijn naar links"
3816
+
3817
+ msgid "Blocks to left"
3818
+ msgstr "Blokken naar links"
3819
+
3820
+ msgid "Slices to left"
3821
+ msgstr "Onderdelen naar links"
3822
+
3823
+ msgid "Reversed slices to left"
3824
+ msgstr "Omgekeerde stukjes naar links"
3825
+
3826
+ msgid "Puzzle"
3827
+ msgstr "Puzzel"
3828
+
3829
+ msgid "Switching to left"
3830
+ msgstr "Omschakelen naar links"
3831
+
3832
+ msgid "Explode"
3833
+ msgstr "Opblazen"
3834
+
3835
+ msgid "Rebuild"
3836
+ msgstr "Heropbouwen"
3837
+
3838
+ msgid "Page turn to left"
3839
+ msgstr "Pagina omslaan naar links"
3840
+
3841
+ msgid "3D bricks to left"
3842
+ msgstr "3D bakstenen naar links"
3843
+
3844
+ msgid "Vertical spin to left"
3845
+ msgstr "Verticaal draaien naar links"
3846
+
3847
+ msgid "3D rows to left"
3848
+ msgstr "3D rijen naar links"
3849
+
3850
+ msgid "3D columns to left"
3851
+ msgstr "3D kolommen naar links"
3852
+
3853
+ msgid "Spinning cuboid to left"
3854
+ msgstr "Naar links draaiende kubus"
3855
+
3856
+ msgid "Turning cuboid to left"
3857
+ msgstr "Draaiende kubus naar links"
3858
+
3859
+ msgid "Scale to top"
3860
+ msgstr "Schaal naar boven"
3861
+
3862
+ msgid "Scale to bottom"
3863
+ msgstr "Schaal naar beneden"
3864
+
3865
+ msgid "Rotate to top"
3866
+ msgstr "Roteer naar de top"
3867
+
3868
+ msgid "Rotate to bottom"
3869
+ msgstr "Roteer naar de bodem"
3870
+
3871
+ msgid "Fixed to top"
3872
+ msgstr "Vast aan bovenkant"
3873
+
3874
+ msgid "Fixed to bottom"
3875
+ msgstr "Vast aan onderkant"
3876
+
3877
+ msgid "Parallax to top"
3878
+ msgstr "Parallax naar boven"
3879
+
3880
+ msgid "Parallax to bottom"
3881
+ msgstr "Parallax naar beneden"
3882
+
3883
+ msgid "Flowing tiles vertical"
3884
+ msgstr "Vloeiende tegels verticaal"
3885
+
3886
+ msgid "Slide to bottom"
3887
+ msgstr "Schuif naar beneden"
3888
+
3889
+ msgid "Slide to top"
3890
+ msgstr "Schuif naar boven"
3891
+
3892
+ msgid "Curtain to bottom"
3893
+ msgstr "Gordijn naar beneden"
3894
+
3895
+ msgid "Curtain to top"
3896
+ msgstr "Gordijn naar boven"
3897
+
3898
+ msgid "Switching to bottom"
3899
+ msgstr "Omschakelen naar beneden"
3900
+
3901
+ msgid "Switching to top"
3902
+ msgstr "Omschakelen naar boven"
3903
+
3904
+ msgid "Horizontal spin to bottom"
3905
+ msgstr "Horizontaal doen draaien naar beneden"
3906
+
3907
+ msgid "Horizontal spin to top"
3908
+ msgstr "Horizontaal doen draaien naar boven"
3909
+
3910
+ msgid "3D bricks to bottom"
3911
+ msgstr "3D bakstenen naar beneden"
3912
+
3913
+ msgid "3D bricks to top"
3914
+ msgstr "3D bakstenen naar boven"
3915
+
3916
+ msgid "3D rows to bottom"
3917
+ msgstr "3D rijen naar beneden"
3918
+
3919
+ msgid "3D rows to top"
3920
+ msgstr "3D rijen naar boven"
3921
+
3922
+ msgid "3D columns to bottom"
3923
+ msgstr "3D kolommen naar beneden"
3924
+
3925
+ msgid "3D columns to top"
3926
+ msgstr "3D kolommen naar boven"
3927
+
3928
+ msgid "Spinning cuboid to bottom"
3929
+ msgstr "Naar beneden draaiende kubus"
3930
+
3931
+ msgid "Spinning cuboid to top"
3932
+ msgstr "Naar boven draaiende kubus"
3933
+
3934
+ msgid "Turning cuboid to bottom"
3935
+ msgstr "Draaiende kubus naar beneden"
3936
+
3937
+ msgid "Turning cuboid to top"
3938
+ msgstr "Draaiende kubus naar boven"
3939
+
3940
+ msgid "Scale to right"
3941
+ msgstr "Schaal naar rechts"
3942
+
3943
+ msgid "Rotate to right"
3944
+ msgstr "Roteer naar rechts"
3945
+
3946
+ msgid "Fixed to right"
3947
+ msgstr "Vast aan rechterkant"
3948
+
3949
+ msgid "Parallax to right"
3950
+ msgstr "Parallax naar rechts"
3951
+
3952
+ msgid "Flow - reversed"
3953
+ msgstr "Vloeiend - omgekeerd"
3954
+
3955
+ msgid "Slide to right"
3956
+ msgstr "Schuif naar rechts"
3957
+
3958
+ msgid "Curtain to right"
3959
+ msgstr "Gordijn naar rechts"
3960
+
3961
+ msgid "Blocks to right"
3962
+ msgstr "Blokken naar rechts"
3963
+
3964
+ msgid "Slices to right"
3965
+ msgstr "Onderdelen naar rechts"
3966
+
3967
+ msgid "Reversed slices to right"
3968
+ msgstr "Omgekeerde stukjes naar rechts"
3969
+
3970
+ msgid "Switching to right"
3971
+ msgstr "Omschakelen naar rechts"
3972
+
3973
+ msgid "Page turn to right"
3974
+ msgstr "Pagina omslaan naar rechts"
3975
+
3976
+ msgid "Vertical spin to right"
3977
+ msgstr "Verticaal draaien naar rechts"
3978
+
3979
+ msgid "3D bricks to right"
3980
+ msgstr "3D bakstenen naar rechts"
3981
+
3982
+ msgid "3D rows to right"
3983
+ msgstr "3D rijen naar rechts"
3984
+
3985
+ msgid "3D columns to right"
3986
+ msgstr "3D kolommen naar rechts"
3987
+
3988
+ msgid "Spinning cuboid to right"
3989
+ msgstr "Naar rechts tollende kubus"
3990
+
3991
+ msgid "Turning cuboid to right"
3992
+ msgstr "Draaiende kubus naar rechts"
3993
+
3994
+ msgid "Downscale left"
3995
+ msgstr "Terugschalen links"
3996
+
3997
+ msgid "Downscale right"
3998
+ msgstr "Terugschalen rechts"
3999
+
4000
+ msgid "Downscale top"
4001
+ msgstr "Terugschalen bovenaan"
4002
+
4003
+ msgid "Downscale bottom"
4004
+ msgstr "Terugschalen onderaan"
4005
+
4006
+ msgid "Upscale left"
4007
+ msgstr "Groter maken naar links"
4008
+
4009
+ msgid "Upscale right"
4010
+ msgstr "Groter maken naar rechts"
4011
+
4012
+ msgid "Upscale top"
4013
+ msgstr "Groter maken naar boven"
4014
+
4015
+ msgid "Upscale bottom"
4016
+ msgstr "Groter maken naar beneden"
4017
+
4018
+ msgid "To left"
4019
+ msgstr "Naar links"
4020
+
4021
+ msgid "To right"
4022
+ msgstr "Naar rechts"
4023
+
4024
+ msgid "To top left"
4025
+ msgstr "Naar boven links"
4026
+
4027
+ msgid "To top right"
4028
+ msgstr "Naar boven rechts"
4029
+
4030
+ msgid "To bottom left"
4031
+ msgstr "Naar beneden links"
4032
+
4033
+ msgid "To bottom right"
4034
+ msgstr "Naar beneden rechts"
4035
+
4036
+ msgid "My layouts"
4037
+ msgstr "Mijn lay-outs"
4038
+
4039
+ msgctxt "Arrow direction"
4040
+ msgid "Previous"
4041
+ msgstr "Vorige"
4042
+
4043
+ msgid "Previous image"
4044
+ msgstr "Vorige afbeelding"
4045
+
4046
+ msgid "Hover color"
4047
+ msgstr "Muisover kleur"
4048
+
4049
+ msgid "Mirror"
4050
+ msgstr "Spiegel"
4051
+
4052
+ msgctxt "Arrow direction"
4053
+ msgid "Next"
4054
+ msgstr "Volgende"
4055
+
4056
+ msgid "Next image"
4057
+ msgstr "Volgende afbeelding"
4058
+
4059
+ msgid "Arrow"
4060
+ msgstr "Pijl"
4061
+
4062
+ msgid "Previous position"
4063
+ msgstr "Vorige positie"
4064
+
4065
+ msgid "Next position"
4066
+ msgstr "Volgende positie"
4067
+
4068
+ msgid "Previous alt tag"
4069
+ msgstr "Vorige alt tag"
4070
+
4071
+ msgid "Next alt tag"
4072
+ msgstr "Volgende alt tag"
4073
+
4074
+ msgid "Base64"
4075
+ msgstr "Base64"
4076
+
4077
+ msgid "Base64 encoded arrow images are loading faster and they are colorable. But optimization plugins often have errors in their codes related to them, so if your arrow won't load, turn this option off."
4078
+ msgstr "Base64 geëncodeerde pijl afbeeldingen laden sneller en zij kunnen gekleurd worden. Maar optimalisatie plugins hebben vaak fouten in hun codes die hiermee verband houden. Als uw pijl dus niet inlaadt schakel deze optie dan uit."
4079
+
4080
+ msgid "Image width - Desktop"
4081
+ msgstr "Afbeelding breedte - Desktop"
4082
+
4083
+ msgid "Image width - Tablet"
4084
+ msgstr "Afbeelding breedte - Tablet"
4085
+
4086
+ msgid "Image width - Mobile"
4087
+ msgstr "Afbeelding breedte - Mobieltje"
4088
+
4089
+ msgid "Pause"
4090
+ msgstr "Pauzeren"
4091
+
4092
+ msgid "Play autoplay"
4093
+ msgstr "Automatisch spelen"
4094
+
4095
+ msgid "Pause autoplay"
4096
+ msgstr "Pauzeer automatisch spelen"
4097
+
4098
+ msgid "Bar"
4099
+ msgstr "Balk"
4100
+
4101
+ msgid "Slide count"
4102
+ msgstr "Aantal slides"
4103
+
4104
+ msgid "The \"Title\" will be the index of the slide and \"Description\" will be the total number of slides."
4105
+ msgstr "De \"Titel\" zal de index van de slide zijn en \"Beschrijving\" zal het totaal aantal slides zijn."
4106
+
4107
+ msgid "Separator"
4108
+ msgstr "Scheidingsteken"
4109
+
4110
+ #, php-format
4111
+ msgid "You can set what separates the Tex bar Title and Description. This separator is used at the Slide count option, too, to separate the current and total slide number. %1$s To put the Description to a new line, use the &lt;br&gt; HTML tag."
4112
+ msgstr "U kunt instellen wat de titel van de tekstbalk en de beschrijving scheidt. Deze scheiding wordt ook gebruikt in de slide teller optie, om het huidige slide nummer te scheiden van het totaal aantal slides. %1$s Om de beschrijving op een nieuwe regel te tonen kunt u de &lt;br&gt; HTML tag gebruiken."
4113
+
4114
+ msgid "Bar full size"
4115
+ msgstr "Balk volledige grootte"
4116
+
4117
+ msgid "Shows on hover"
4118
+ msgstr "Toont bij muisover"
4119
+
4120
+ msgid "Hide on slides"
4121
+ msgstr "Verberg op slides"
4122
+
4123
+ msgid "List the slides separated by commas on which you want the controls to be hidden."
4124
+ msgstr "Lijst met slides, gescheiden door komma's, waarop u de bedieningselementen wilt verbergen."
4125
+
4126
+ msgid "Text bar"
4127
+ msgstr "Tekstbalk"
4128
+
4129
+ msgid "Bullets"
4130
+ msgstr "Opsommingstekens"
4131
+
4132
+ msgid "Bullet"
4133
+ msgstr "Opsommingsteken"
4134
+
4135
+ msgid "Side"
4136
+ msgstr "Zijkant"
4137
+
4138
+ msgid "Before"
4139
+ msgstr "Ervoor"
4140
+
4141
+ msgid "After"
4142
+ msgstr "Na"
4143
+
4144
+ msgid "Shadow"
4145
+ msgstr "Schaduw"
4146
+
4147
+ msgid "Thumbnails"
4148
+ msgstr "Miniaturen"
4149
+
4150
+ msgid "Desktop width"
4151
+ msgstr "Breedte voor desktops"
4152
+
4153
+ msgid "Tablet width"
4154
+ msgstr "Breedte voor tablets"
4155
+
4156
+ msgid "Mobile width"
4157
+ msgstr "Breedte voor mobieltjes"
4158
+
4159
+ msgid "Align thumbnails"
4160
+ msgstr "Miniaturen uitlijnen"
4161
+
4162
+ msgid "Start"
4163
+ msgstr "Start"
4164
+
4165
+ msgid "End"
4166
+ msgstr "Einde"
4167
+
4168
+ msgid "Space between"
4169
+ msgstr "Ruimte ertussen"
4170
+
4171
+ msgid "Space around"
4172
+ msgstr "Ruimte rondom"
4173
+
4174
+ msgid "Caption"
4175
+ msgstr "Onderschrift"
4176
+
4177
+ msgid "The height (horizontal orientation) or width (vertical orientation) of the caption container."
4178
+ msgstr "De hoogte (horizontale oriëntatie) of breedte (verticale oriëntatie) van de onderschrift container."
4179
+
4180
+ msgid "Next arrow image"
4181
+ msgstr "Volgende pijl afbeelding"
4182
+
4183
+ msgid "The previous arrow image will be mirrored."
4184
+ msgstr "De vorige pijl afbeelding zal gespiegeld worden."
4185
+
4186
+ msgid "Group by"
4187
+ msgstr "Groepeer op"
4188
+
4189
+ msgctxt "Unit"
4190
+ msgid "thumbnails"
4191
+ msgstr "miniaturen"
4192
+
4193
+ msgid "You can break your thumbnails into rows or columns."
4194
+ msgstr "U kunt uw miniaturen opdelen in rijen of kolommen."
4195
+
4196
+ msgid "The height (horizontal orientation) or width (vertical orientation) of the thumbnail container in px or %."
4197
+ msgstr "De hoogte (horizontale oriëntatie) of breedte (verticale oriëntatie) van de miniatuur container in px of %."
4198
+
4199
+ #, javascript-format
4200
+ msgid "Switches %s slide(s)."
4201
+ msgstr "Omschakelen van %s slide(s)."
4202
+
4203
+ #, javascript-format
4204
+ msgid "Loops %s and stops before starting slide."
4205
+ msgstr "Herhaalt %s en stopt voor de beginslide."
4206
+
4207
+ #, javascript-format
4208
+ msgid "Loops %s and returns to starting slide."
4209
+ msgstr "Herhaalt %s en keert terug naar de beginslide."
4210
+
4211
+ #, javascript-format
4212
+ msgid "Switches to the %s. slide."
4213
+ msgstr "Schakelt om naar de %s slide."
4214
+
4215
+ msgid "Top and bottom"
4216
+ msgstr "Bovenaan en onderaan"
4217
+
4218
+ msgid "License key cannot be empty!"
4219
+ msgstr "Licentiesleutel mag niet leeg zijn!"
4220
+
4221
+ msgid "License key is active!"
4222
+ msgstr "Licentiesleutel is actief!"
4223
+
4224
+ msgid "Missing sliders!"
4225
+ msgstr "Ontbrekende sliders!"
4226
+
4227
+ msgid "Line color"
4228
+ msgstr "Lijnkleur"
4229
+
4230
+ msgid "Number of particles"
4231
+ msgstr "Aantal deeltjes"
4232
+
4233
+ msgid "Grab"
4234
+ msgstr "Pak"
4235
+
4236
+ msgid "Bubble"
4237
+ msgstr "Bubbel"
4238
+
4239
+ msgid "Repulse"
4240
+ msgstr "Terugstoot"
4241
+
4242
+ msgid "Push"
4243
+ msgstr "Duwen"
4244
+
4245
+ msgid "Remove"
4246
+ msgstr "Verwijderen"
4247
+
4248
+ msgid "Hide on mobile"
4249
+ msgstr "Verbergen op mobiele toestellen"
4250
+
4251
+ msgid "Type"
4252
+ msgstr "Type"
4253
+
4254
+ msgid "Secondary"
4255
+ msgstr "Secundair"
4256
+
4257
+ msgid "Flip"
4258
+ msgstr "Spiegelen"
4259
+
4260
+ msgid "Grow"
4261
+ msgstr "Groeien"
4262
+
4263
+ msgid "Shrink"
4264
+ msgstr "Krimpen"
4265
+
4266
+ msgid "Interval"
4267
+ msgstr "Interval"
4268
+
4269
+ msgid "Interval modifier"
4270
+ msgstr "Interval aanpasser"
4271
+
4272
+ msgctxt "Autoplay modifier"
4273
+ msgid "loops"
4274
+ msgstr "herhalingen"
4275
+
4276
+ msgctxt "Autoplay modifier"
4277
+ msgid "slide count"
4278
+ msgstr "aantal slides"
4279
+
4280
+ msgctxt "Autoplay modifier"
4281
+ msgid "slide index"
4282
+ msgstr "slide index"
4283
+
4284
+ msgid "Stops on"
4285
+ msgstr "Stopt op"
4286
+
4287
+ msgctxt "Autoplay modifier"
4288
+ msgid "last slide"
4289
+ msgstr "laatste slide"
4290
+
4291
+ msgctxt "Autoplay modifier"
4292
+ msgid "next slide"
4293
+ msgstr "volgende slide"
4294
+
4295
+ msgid "Polygons"
4296
+ msgstr "Polygonen"
4297
+
4298
+ msgid "Bloom"
4299
+ msgstr "Gloed"
4300
+
4301
+ msgid "Web"
4302
+ msgstr "Web"
4303
+
4304
+ msgid "Black widow"
4305
+ msgstr "Zwarte weduwe"
4306
+
4307
+ msgid "Zodiac"
4308
+ msgstr "Dierenriem"
4309
+
4310
+ msgid "Fading dots"
4311
+ msgstr "Vervagende stippen"
4312
+
4313
+ msgid "Pirouette"
4314
+ msgstr "Pirouette"
4315
+
4316
+ msgid "Sparkling"
4317
+ msgstr "Glinsterend"
4318
+
4319
+ msgid "Curve 1"
4320
+ msgstr "Curve 1"
4321
+
4322
+ msgid "Curve 2"
4323
+ msgstr "Curve 2"
4324
+
4325
+ msgid "Curve 3"
4326
+ msgstr "Curve 3"
4327
+
4328
+ msgid "Curve 4"
4329
+ msgstr "Curve 4"
4330
+
4331
+ msgid "Curves"
4332
+ msgstr "Curves"
4333
+
4334
+ msgid "Fan 1"
4335
+ msgstr "Ventilator 1"
4336
+
4337
+ msgid "Fan 2"
4338
+ msgstr "Ventilator 2"
4339
+
4340
+ msgid "Fan 3"
4341
+ msgstr "Ventilator 3"
4342
+
4343
+ msgid "Hills"
4344
+ msgstr "Bergen"
4345
+
4346
+ msgid "Incline 1"
4347
+ msgstr "Helling 1"
4348
+
4349
+ msgid "Incline 2"
4350
+ msgstr "Helling 2"
4351
+
4352
+ msgid "Incline 3"
4353
+ msgstr "Helling 3"
4354
+
4355
+ msgid "Inverse arrow"
4356
+ msgstr "Omgekeerde pijl"
4357
+
4358
+ msgid "Rectangle"
4359
+ msgstr "Rechthoek"
4360
+
4361
+ msgid "Slopes"
4362
+ msgstr "Hellingen"
4363
+
4364
+ msgid "Tilt 1"
4365
+ msgstr "Kantelen 1"
4366
+
4367
+ msgid "Tilt 2"
4368
+ msgstr "Kantelen 2"
4369
+
4370
+ msgid "Triangle 1"
4371
+ msgstr "Driehoek 1"
4372
+
4373
+ msgid "Triangle 2"
4374
+ msgstr "Driehoek 2"
4375
+
4376
+ msgid "Wave 1"
4377
+ msgstr "Golf 1"
4378
+
4379
+ msgid "Wave 2"
4380
+ msgstr "Golf 2"
4381
+
4382
+ msgid "Waves"
4383
+ msgstr "Golven"
4384
+
4385
+ msgid "2 Colors"
4386
+ msgstr "2 kleuren"
4387
+
4388
+ msgid "Fan"
4389
+ msgstr "Ventilator"
4390
+
4391
+ msgid "Masked waves"
4392
+ msgstr "Gemaskeerde golven"
4393
+
4394
+ msgid "Ribbon"
4395
+ msgstr "Lint"
4396
+
4397
+ msgid "The secret is empty. Please insert that value too!"
4398
+ msgstr "Het geheim is leeeg. Geef die waarde ook in!"
4399
+
4400
+ msgid "The App ID is empty. Please insert that value too!"
4401
+ msgstr "Het App ID is leeg. Geef die waarde ook in!"
4402
+
4403
+ #, php-format
4404
+ msgid "%1$s allows HTTPS Redirect URIs only! You must move your site to HTTPS in order to use this generator! - %2$s How to get SSL for my WordPress site? %3$s"
4405
+ msgstr "%1$s laat alleen HTTPS doorverwijzing URIs toe! U moet uw site naar HTTPS verplaatsen om deze generator te gebruiken! - %2$s Hoe verkrijg ik SSL voor mijn WordPress site? %3$s"
4406
+
4407
+ #, php-format
4408
+ msgid "%2$s Check the documentation %3$s to learn how to configure your %1$s app."
4409
+ msgstr "%2$s Raadpleeg de documentatie %3$s om te leren hoe u uw %1$s app moet configureren."
4410
+
4411
+ msgctxt "Facebook app permission"
4412
+ msgid "pages read engagement"
4413
+ msgstr "pagina's gelezen engagement"
4414
+
4415
+ msgid "Pages read engagement permission"
4416
+ msgstr "Pagina's lezen engagement permissie"
4417
+
4418
+ msgid "You need \"pages_read_engagement\" permission if you want to access datas of Facebook pages, where you are an administrator. For other pages you still need to turn this option on, but request access to \"Page Public Content Access\" within your App."
4419
+ msgstr "U hebt \"pages_read_engagement\" permissie nodig als u toegang wilt hebben tot data van Facebook pagina's, waar u een administrator bent. Voor andere pagina's moet u deze optie nog steeds inschakelen, maar toegang vragen tot \"Page Public Content Access\" binnen uw app."
4420
+
4421
+ msgctxt "Facebook app permission"
4422
+ msgid "user photos"
4423
+ msgstr "gebruikersfoto's"
4424
+
4425
+ msgid "User photos permission"
4426
+ msgstr "Gebruiker foto permissie"
4427
+
4428
+ msgid "You need \"user_photos\" permission to access photos of users, except your own user."
4429
+ msgstr "U moet \"user_photos\" permissie hebben om toegang te krijgen tot foto's van gebruikers, behalve deze van uzelf."
4430
+
4431
+ msgid "Token"
4432
+ msgstr "Token"
4433
+
4434
+ msgid "Callback url"
4435
+ msgstr "Callback URL"
4436
+
4437
+ msgid "The token expired. Please request new token! "
4438
+ msgstr "Het token is vervallen. Gelieve een nieuw token aan te vragen! "
4439
+
4440
+ msgid "Request token"
4441
+ msgstr "Request token"
4442
+
4443
+ msgid "Facebook photos or posts on your page"
4444
+ msgstr "Facebook foto's of inzendingen op uw pagina"
4445
+
4446
+ msgid "Photos by album"
4447
+ msgstr "Foto's op album"
4448
+
4449
+ msgid "Posts by page"
4450
+ msgstr "Inzendingen op pagina"
4451
+
4452
+ msgid "User or page"
4453
+ msgstr "Gebruiker of pagina"
4454
+
4455
+ msgid "Album"
4456
+ msgstr "Album"
4457
+
4458
+ msgctxt "Facebook generator type"
4459
+ msgid "Facebook posts"
4460
+ msgstr "Facebook posts"
4461
+
4462
+ msgid "Page"
4463
+ msgstr "Pagina"
4464
+
4465
+ msgid "Feed"
4466
+ msgstr "Feed"
4467
+
4468
+ msgid "Remove special characters"
4469
+ msgstr "Verwijder speciale tekens"
4470
+
4471
+ msgid "Exclude Types"
4472
+ msgstr "Uit te sluiten types"
4473
+
4474
+ msgid "Separate the types by a comma. E.g.: share,album"
4475
+ msgstr "Scheid de types door een komma. Bijvoorbeeld: share,album"
4476
+
4477
+ msgid "The key and secret is not valid!"
4478
+ msgstr "De sleutel en geheim is niet geldig!"
4479
+
4480
+ msgid "There are no photos in this album!"
4481
+ msgstr "Er zitten geen foto's in dit album!"
4482
+
4483
+ msgid "Please choose an album!"
4484
+ msgstr "Kies een album!"
4485
+
4486
+ msgid "There are no photos in this gallery!"
4487
+ msgstr "Er zitten geen foto's in deze galerij!"
4488
+
4489
+ msgid "Please chooose a gallery!"
4490
+ msgstr "Kies een galerij!"
4491
+
4492
+ msgid "Privacy"
4493
+ msgstr "Privacy"
4494
+
4495
+ msgid "There are no photos with this privacy filter!"
4496
+ msgstr "Er zijn geen foto's met deze privacy filter!"
4497
+
4498
+ msgctxt "Flickr generator type"
4499
+ msgid "Flickr search"
4500
+ msgstr "Flickr zoeken"
4501
+
4502
+ msgid "User name or ID"
4503
+ msgstr "Gebruikersnaam of ID"
4504
+
4505
+ msgid "Search in title, description or tags"
4506
+ msgstr "Zoek in de titel, beschrijving of tags"
4507
+
4508
+ msgid "Folder"
4509
+ msgstr "Map"
4510
+
4511
+ msgid "Images in folder"
4512
+ msgstr "Afbeeldingen in map"
4513
+
4514
+ msgid "Images in folder and subfolders"
4515
+ msgstr "Afbeeldingen in mappen en submappen"
4516
+
4517
+ msgid "Videos in folder"
4518
+ msgstr "Video's in map"
4519
+
4520
+ msgid "Source folder"
4521
+ msgstr "Bronmap"
4522
+
4523
+ msgid "Remove resized images"
4524
+ msgstr "Verwijder herschaalde afbeeldingen"
4525
+
4526
+ msgid "This option removes files that match the \"-[number]x[number].[extension]\" pattern in the end of their file names. For example, \"myimage.jpg\" will stay in the generator result, but \"myimage-120x120.jpg\" will be removed, because it's the same image, just in a smaller size."
4527
+ msgstr "Deze optie verwijdert bestanden die voldoen aan het \"-[getal]x[getal].[extensie]\" patroon aan het einde van hun bestandsnamen. Bijvoorbeeld: \"mijnafbeelding.jpg\" zal in het generator resultaat blijven, maar \"mijnafbeelding-120x120.jpg\" zal verwijderd worden, omdat het om dezelfde afbeelding gaat, alleen in een kleiner formaat."
4528
+
4529
+ msgid "Filename"
4530
+ msgstr "Bestandsnaam"
4531
+
4532
+ msgid "Creation date"
4533
+ msgstr "Aanmaakdatum"
4534
+
4535
+ msgid "Wrong path. This is the default image folder path, so try to navigate from here:"
4536
+ msgstr "Verkeerd pad. Dit is het standaard pad naar de afbeeldingsmap. Probeer dus te navigeren vanaf hier:"
4537
+
4538
+ msgid "Folder not found."
4539
+ msgstr "Map niet gevonden."
4540
+
4541
+ msgid "Wrong path. This is the default upload/media folder path, so try to navigate from here:"
4542
+ msgstr "Verkeerd pad. Dit is het standaard pad naar de upload/media map. Probeer dus te navigeren vanaf hier:"
4543
+
4544
+ msgid "JSON from url"
4545
+ msgstr "JSON van URL"
4546
+
4547
+ msgid "JSON from input"
4548
+ msgstr "JSON van invoer"
4549
+
4550
+ msgid "Level separation"
4551
+ msgstr "Niveau scheiding"
4552
+
4553
+ msgid "JSON codes can be customized to have many different levels. From a code it is impossible to know from which level do you want to use the given datas on the different slides, so you have to select that level from this list."
4554
+ msgstr "JSON codes kunnen aangepast worden zodat zij veel verschillende niveaus hebben. Uit een code is onmogelijk vast te stellen van welk niveau u de gegeven data op de verschillende slides wilt gebruiken, dus moet u dat niveau uit deze lijst kiezen."
4555
+
4556
+ #, php-format
4557
+ msgid "The given text is not valid XML! %1$sValidate your code%2$s to make sure it is correct."
4558
+ msgstr "De gegeven tekst is geen geldige XML! %1$sValideer uw code%2$s om u ervan te vergewissen dat ze correct is."
4559
+
4560
+ #, php-format
4561
+ msgid "The given text is not valid JSON! %1$sValidate your code%2$s to make sure it is correct."
4562
+ msgstr "De gegeven tekst is geen geldige JSON! %1$sValideer uw code%2$s om u ervan te vergewissen dat ze correct is."
4563
+
4564
+ msgid "Try to change the \"Level separation\" or \"Remove levels from result\" setting."
4565
+ msgstr "Probeer de \"Niveau scheiding\" of \"Verwijder niveaus uit resultaat\" instelling."
4566
+
4567
+ msgid "Images"
4568
+ msgstr "Afbeeldingen"
4569
+
4570
+ msgid "Timezone offset in hours. For example: +2 or -7."
4571
+ msgstr "Tijdzone compensatie in uur. Bijvoorbeeld: +2 of -7."
4572
+
4573
+ msgid "The data in the given url is not valid XML."
4574
+ msgstr "De data in de gegeven URL is geen geldige XML."
4575
+
4576
+ msgid "CSV from url"
4577
+ msgstr "CSV uit URL"
4578
+
4579
+ msgid "CSV from input"
4580
+ msgstr "CSV uit invoer"
4581
+
4582
+ msgid "View tweet"
4583
+ msgstr "Bekijk tweet"
4584
+
4585
+ msgid "Comments"
4586
+ msgstr "Commentaren"
4587
+
4588
+ msgid "Date"
4589
+ msgstr "Datum"
4590
+
4591
+ msgid "Likes"
4592
+ msgstr "Likes"
4593
+
4594
+ msgid "Manual"
4595
+ msgstr "Handmatig"
4596
+
4597
+ msgid "Modified time"
4598
+ msgstr "Aanpassingstijd"
4599
+
4600
+ msgid "Plays"
4601
+ msgstr "Speelt"
4602
+
4603
+ msgid "Playlist"
4604
+ msgstr "Playlist"
4605
+
4606
+ msgid "optional"
4607
+ msgstr "optioneel"
4608
+
4609
+ #, php-format
4610
+ msgid "Creates slides from %1$s content."
4611
+ msgstr "Maakt slides van %1$s content."
4612
+
4613
+ msgid "Items"
4614
+ msgstr "Items"
4615
+
4616
+ msgid "Locations"
4617
+ msgstr "Locaties"
4618
+
4619
+ msgid "Types"
4620
+ msgstr "Types"
4621
+
4622
+ msgid "Expired"
4623
+ msgstr "Verlopen"
4624
+
4625
+ msgid "Started"
4626
+ msgstr "Begonnen"
4627
+
4628
+ msgid "Auction"
4629
+ msgstr "Veiling"
4630
+
4631
+ msgid "Negotiable price"
4632
+ msgstr "Onderhandelbare prijs"
4633
+
4634
+ msgid "Blocked by User"
4635
+ msgstr "Geblokkeerd door gebruiker"
4636
+
4637
+ msgid "Paid"
4638
+ msgstr "Betaald"
4639
+
4640
+ msgid "Buynow"
4641
+ msgstr "Koopnu"
4642
+
4643
+ msgid "Menu item (item ID)"
4644
+ msgstr "Menu item (item ID)"
4645
+
4646
+ msgid "Your url will point to the item within this menu item. You will only get a good result, if you will pick one of your DJ Classifields menu items or leave it on 'Default'."
4647
+ msgstr "Uw URL zal wijzen naar het item binnen dit menu item. U zal alleen een goed resultaat krijgen als u één van uw DJ Classifieds menu items kiest of het laat staan op 'Standaard'."
4648
+
4649
+ msgid "Start date"
4650
+ msgstr "Startdatum"
4651
+
4652
+ msgid "Expiration date"
4653
+ msgstr "Vervaldatum"
4654
+
4655
+ msgid "Price"
4656
+ msgstr "Prijs"
4657
+
4658
+ msgid "Include subcategories"
4659
+ msgstr "Inclusief subcategorieën"
4660
+
4661
+ msgid "Frontpage"
4662
+ msgstr "Voorpagina"
4663
+
4664
+ msgid "Exclude ID"
4665
+ msgstr "Uit te sluiten ID"
4666
+
4667
+ msgid "Category title"
4668
+ msgstr "Categorie titel"
4669
+
4670
+ msgid "Username"
4671
+ msgstr "Gebruikersnaam"
4672
+
4673
+ msgid "View post"
4674
+ msgstr "Bekijk inzending"
4675
+
4676
+ msgid "Resolved"
4677
+ msgstr "Opgelost"
4678
+
4679
+ msgid "Only main discussions"
4680
+ msgstr "Alleen hoofd discussies"
4681
+
4682
+ msgid "View discussion"
4683
+ msgstr "Bekijk discussie"
4684
+
4685
+ msgid "Events"
4686
+ msgstr "Evenementen"
4687
+
4688
+ msgid "Albums"
4689
+ msgstr "Albums"
4690
+
4691
+ msgid "Videos"
4692
+ msgstr "Video's"
4693
+
4694
+ msgid "Pages"
4695
+ msgstr "Pagina's"
4696
+
4697
+ msgid "Users"
4698
+ msgstr "Gebruikers"
4699
+
4700
+ msgid "Allowed user IDs"
4701
+ msgstr "Toegelaten gebruiker IDs"
4702
+
4703
+ msgid "Separate them by comma."
4704
+ msgstr "Scheid ze door een komma."
4705
+
4706
+ msgid "Banned user IDs"
4707
+ msgstr "Verbannen gebruiker IDs"
4708
+
4709
+ msgid "Ended"
4710
+ msgstr "Beëindigd"
4711
+
4712
+ msgid "All day"
4713
+ msgstr "Ganse dag"
4714
+
4715
+ msgid "Recurring events"
4716
+ msgstr "Herhalende evenementen"
4717
+
4718
+ msgid "Open"
4719
+ msgstr "Open"
4720
+
4721
+ msgid "Closed"
4722
+ msgstr "Gesloten"
4723
+
4724
+ msgid "Invite only"
4725
+ msgstr "Alleen op uitnodiging"
4726
+
4727
+ msgid "Location"
4728
+ msgstr "Locatie"
4729
+
4730
+ msgid "Pull posts only from these users. Separate them by comma."
4731
+ msgstr "Haal alleen de inzendingen van deze gebruikers op. Scheid ze door een komma."
4732
+
4733
+ msgid "Do not pull posts from these users. Separate them by comma."
4734
+ msgstr "Haal geen inzendingen van deze gebruikers op. Scheid ze door een komma."
4735
+
4736
+ msgid "Public"
4737
+ msgstr "Publiek"
4738
+
4739
+ msgid "Private"
4740
+ msgstr "Privé"
4741
+
4742
+ msgid "Notification"
4743
+ msgstr "Verwittiging"
4744
+
4745
+ msgid "Email only"
4746
+ msgstr "Alleen E-mail"
4747
+
4748
+ msgid "Internal only"
4749
+ msgstr "Alleen intern"
4750
+
4751
+ msgid "Profiles"
4752
+ msgstr "Profielen"
4753
+
4754
+ msgid "Badges"
4755
+ msgstr "Badges"
4756
+
4757
+ msgid "Register date"
4758
+ msgstr "Registratiedatum"
4759
+
4760
+ msgid "Last visit date"
4761
+ msgstr "Laatste bezoeksdatum"
4762
+
4763
+ msgid "Points"
4764
+ msgstr "Punten"
4765
+
4766
+ msgid "Products"
4767
+ msgstr "Producten"
4768
+
4769
+ msgid "Manufacturer"
4770
+ msgstr "Fabrikant"
4771
+
4772
+ msgid "On discount"
4773
+ msgstr "In afslag"
4774
+
4775
+ msgid "In stock"
4776
+ msgstr "Op voorraad"
4777
+
4778
+ msgid "Currency"
4779
+ msgstr "Munteenheid"
4780
+
4781
+ msgid "Product language"
4782
+ msgstr "Product taal"
4783
+
4784
+ msgid "Category language"
4785
+ msgstr "Categorie taal"
4786
+
4787
+ msgid "Manufacturer language"
4788
+ msgstr "Fabrikant taal"
4789
+
4790
+ msgid "Product name"
4791
+ msgstr "Product naam"
4792
+
4793
+ msgid "Product ID"
4794
+ msgstr "Product ID"
4795
+
4796
+ msgid "Recurring"
4797
+ msgstr "Herhalend"
4798
+
4799
+ msgid "All, but from recurring ones only parent events"
4800
+ msgstr "Allemaal, maar van herhalende alleen de bovenste evenementen"
4801
+
4802
+ msgid "Only recurring events"
4803
+ msgstr "Alleen zich herhalende evenementen"
4804
+
4805
+ msgid "Only recurring event parents"
4806
+ msgstr "Alleen zich herhalende moederevenementen"
4807
+
4808
+ msgid "Only not recurring events"
4809
+ msgstr "Alleen zich niet herhalende evenementen"
4810
+
4811
+ msgid "End date"
4812
+ msgstr "Einddatum"
4813
+
4814
+ msgid "ID"
4815
+ msgstr "ID"
4816
+
4817
+ msgid "Discount"
4818
+ msgstr "Korting"
4819
+
4820
+ msgid "Registration start date"
4821
+ msgstr "Registratie begindatum"
4822
+
4823
+ msgid "Cut off date"
4824
+ msgstr "Einde termijn"
4825
+
4826
+ msgid "Cancel before date"
4827
+ msgstr "Annuleren voor datum"
4828
+
4829
+ msgid "Publish up date"
4830
+ msgstr "Datum publiceren"
4831
+
4832
+ msgid "Publish down date"
4833
+ msgstr "Datum depubliceren"
4834
+
4835
+ msgid "Early bird discount date"
4836
+ msgstr "Korting vroege vogel datum"
4837
+
4838
+ msgid "Early bird discount amount"
4839
+ msgstr "Kortingsbedrag vroege vogels"
4840
+
4841
+ msgid "Late fee date"
4842
+ msgstr "Late vergoedingsdatum"
4843
+
4844
+ msgid "Recurring end date"
4845
+ msgstr "Herhaling einddatum"
4846
+
4847
+ msgid "Max end date"
4848
+ msgstr "Max einddatum"
4849
+
4850
+ msgid "Only display items with these IDs"
4851
+ msgstr "Toon alleen items met deze IDs"
4852
+
4853
+ msgid "Brand"
4854
+ msgstr "Merk"
4855
+
4856
+ msgid "Tag"
4857
+ msgstr "Tag"
4858
+
4859
+ msgid "Warehouse"
4860
+ msgstr "Magazijn"
4861
+
4862
+ msgid "Include all images"
4863
+ msgstr "Neem alle afbeeldingen op"
4864
+
4865
+ msgid "Sales"
4866
+ msgstr "Verkoop"
4867
+
4868
+ msgid "Average score"
4869
+ msgstr "Gemiddelde score"
4870
+
4871
+ msgid "Total vote"
4872
+ msgstr "Totaal stemmen"
4873
+
4874
+ msgid "Product IDs"
4875
+ msgstr "Product IDs"
4876
+
4877
+ msgid "Write the product IDs you want to display here, in the order you want them to appear in the generator. One product ID per line."
4878
+ msgstr "Schrijf hier de product IDs die u wilt tonen, in de volgorde dat ze in de generator moeten verschijnen. Eén product ID per regel."
4879
+
4880
+ msgid "One time events"
4881
+ msgstr "Eenmalige evenementen"
4882
+
4883
+ msgid "Repeating events"
4884
+ msgstr "Herhalende evenementen"
4885
+
4886
+ msgid "Date language"
4887
+ msgstr "Datum taal"
4888
+
4889
+ msgid "Offset value"
4890
+ msgstr "Compensatie waarde"
4891
+
4892
+ msgid "Timezone offset in hours. For example: +2 or -7. If you leave it empty, Joomla's System -> Global Configuration -> Server -> Server Time Zone setting will be used."
4893
+ msgstr "Tijdzone compensatie in uur. Bijvoorbeeld: +2 of -7. Als u dit leeg laat, dan zal de Joomla instelling uit Systeem -> Globale configuratie -> Server -> Servertijdzone gebruikt worden."
4894
+
4895
+ msgid "Status"
4896
+ msgstr "Status"
4897
+
4898
+ msgid "Trashed"
4899
+ msgstr "In prullenbak"
4900
+
4901
+ msgid "Ask down all product images"
4902
+ msgstr "Vraag alle product afbeeldingen op"
4903
+
4904
+ msgid "View item"
4905
+ msgstr "Bekijk item"
4906
+
4907
+ msgid "Viewed"
4908
+ msgstr "Bekeken"
4909
+
4910
+ msgid "View image"
4911
+ msgstr "Bekijk afbeelding"
4912
+
4913
+ msgid "Supplier"
4914
+ msgstr "Leverancier"
4915
+
4916
+ msgid "On sale"
4917
+ msgstr "Te koop"
4918
+
4919
+ msgid "Discount price"
4920
+ msgstr "Kortingsprijs"
4921
+
4922
+ msgid "All day event"
4923
+ msgstr "Ganse dag evenement"
4924
+
4925
+ msgid "Fallback language"
4926
+ msgstr "Terugval taal"
4927
+
4928
+ msgid "Show parent products only"
4929
+ msgstr "Toon alleen bovenliggende producten"
4930
+
4931
+ #, php-format
4932
+ msgid "Creates slides from %1$s events."
4933
+ msgstr "Maakt slides van %1$s evenementen."
4934
+
4935
+ msgid "Create custom date variables"
4936
+ msgstr "Maak aangepaste datumvariabelen"
4937
+
4938
+ msgid "You can write any date format (http://php.net/manual/en/function.date.php) in separate lines, and new variables will be created for them."
4939
+ msgstr "U kunt eender welk datumformaat op aparte regels schrijven (http://php.net/manual/en/function.date.php). Daarna zullen er nieuwe variabelen voor aangemaakt worden."
4940
+
4941
+ msgid "Write the original text, like 'Monday' then two | signs, and the text you want it to be translated to, for example 'Montag'. Together: Monday||Montag"
4942
+ msgstr "Schrijf de originele tekst, zoals 'Monday', daarna twee | tekens en de tekst waarnaar u deze tekst wilt vertalen. Bijvoorbeeld: 'Maandag'. Samen: Monday||Maandag"
4943
+
4944
+ msgid "Event start date"
4945
+ msgstr "Evenement begindatum"
4946
+
4947
+ msgid "Event end date"
4948
+ msgstr "Evenement einddatum"
4949
+
4950
+ msgid "Event creation date"
4951
+ msgstr "Evenement aanmaakdatum"
4952
+
4953
+ msgid "Event modification date"
4954
+ msgstr "Evenement aanpassingsdatum"
4955
+
4956
+ #, php-format
4957
+ msgid "Creates slides from %1$s galleries."
4958
+ msgstr "Maakt slides van %1$s galerijen."
4959
+
4960
+ msgid "Gallery"
4961
+ msgstr "Galerij"
4962
+
4963
+ msgid "View gallery"
4964
+ msgstr "Bekijk galerij"
4965
+
4966
+ msgid "Creates slides by your custom settings."
4967
+ msgstr "Maakt slides volgens uw aangepaste instellingen."
4968
+
4969
+ #, php-format
4970
+ msgid "You don't have custom generators yet. %1$s Check the documentation %2$s to learn how to create your own generator."
4971
+ msgstr "U hebt nog geen aangepaste generatoren. %1$s Raadpleeg de documentatie %2$s om te weten te komen hoe u uw eigen generator moet maken."
4972
+
4973
+ msgid "No options given"
4974
+ msgstr "Geen opties gegeven"
4975
+
4976
+ msgid "Exclude event IDs (One ID per line)"
4977
+ msgstr "Uit te sluiten evenement ID (één ID per regel)"
4978
+
4979
+ msgid "Location town"
4980
+ msgstr "Locatie stad"
4981
+
4982
+ msgid "Location state"
4983
+ msgstr "Locatie provincie"
4984
+
4985
+ msgid "Get all multisite events"
4986
+ msgstr "Haal alle multisite evenementen op"
4987
+
4988
+ msgid "Order result"
4989
+ msgstr "Sorteer resultaat"
4990
+
4991
+ msgid "Events per site"
4992
+ msgstr "Evenementen per site"
4993
+
4994
+ msgid "Format date variables"
4995
+ msgstr "Formatteer datum variabelen"
4996
+
4997
+ msgid "With the WordPress Settings -> General -> Timezone and Date format, new variables will be generated from the given variables. Separate them with comma."
4998
+ msgstr "Met de WordPress instellingen -> Algemeen -> Tijdzone en datum formaat zullen nieuwe variabelen gegenereerd worden vanaf de gegeven variabelen. Scheid ze door een komma."
4999
+
5000
+ msgid "Start time text"
5001
+ msgstr "Begintijd tekst"
5002
+
5003
+ msgid "End date text"
5004
+ msgstr "Einddatum tekst"
5005
+
5006
+ msgid "End time text"
5007
+ msgstr "Eindtijd tekst"
5008
+
5009
+ msgid "Rsvp date"
5010
+ msgstr "Rsvp datum"
5011
+
5012
+ msgid "Multisite Posts"
5013
+ msgstr "Multisite inzendingen"
5014
+
5015
+ msgid "Source gallery"
5016
+ msgstr "Bron galerij"
5017
+
5018
+ msgid "Organizers"
5019
+ msgstr "Organisatoren"
5020
+
5021
+ msgid "Venues"
5022
+ msgstr "Plaatsen"
5023
+
5024
+ msgid "Hide From Event Listings"
5025
+ msgstr "Verberg in evenement listings"
5026
+
5027
+ msgid "Event cost"
5028
+ msgstr "Evenement prijs"
5029
+
5030
+ msgid "Metakey name"
5031
+ msgstr "Metakey naam"
5032
+
5033
+ msgid "If its set, this will be used instead of the 'Field' value."
5034
+ msgstr "Indien dit ingesteld is dan zal het gebruikt worden in plaats van de 'Veld' waarde."
5035
+
5036
+ msgid "Sorting method"
5037
+ msgstr "Sorteermethode"
5038
+
5039
+ msgid "Galleries"
5040
+ msgstr "Galerijen"
5041
+
5042
+ msgid "Upload date"
5043
+ msgstr "Upload datum"
5044
+
5045
+ msgid "Average rating"
5046
+ msgstr "Gemiddelde waardering"
5047
+
5048
+ msgid "Rate count"
5049
+ msgstr "Aantal beoordelingen"
5050
+
5051
+ msgid "Hit count"
5052
+ msgstr "Aantal hits"
5053
+
5054
+ msgid "Root"
5055
+ msgstr "Hoofdmap"
5056
+
5057
+ msgid "Products by filter"
5058
+ msgstr "Producten op filter"
5059
+
5060
+ msgid "Products by IDs and/or SKUs"
5061
+ msgstr "Producten op IDs en/of SKUs"
5062
+
5063
+ msgid "Creates slides from your WooCommece categories. (Not from the products inside them.)"
5064
+ msgstr "Maakt slides van uw WooCommece categorieën (niet van de producten die erin zitten)."
5065
+
5066
+ msgid "Submenu limit"
5067
+ msgstr "Submenu limiet"
5068
+
5069
+ msgid "No limit"
5070
+ msgstr "Geen limiet"
5071
+
5072
+ msgid "Downloadable"
5073
+ msgstr "Downloadbaar"
5074
+
5075
+ msgid "Virtual"
5076
+ msgstr "Virtueel"
5077
+
5078
+ msgid "Create text variables (one per line)"
5079
+ msgstr "Maak tekst variabelen (een per regel)"
5080
+
5081
+ msgid "if 'variable' equals to 'equalvalue', then you will get the text 'true', but if it's not equal, the text will be 'false'. The new variable's name will be textvariable (the 'variable' replaced by your variable's name)."
5082
+ msgstr "als 'variabele' gelijk is aan 'gelijkewaarde' dan krijgt u de tekst 'true', maar als hij niet gelijk is dan zal de tekst 'false' zijn. De naam van de nieuwe variabele zal tekstvariabele zijn (de 'variabele' vervangen door de naam van uw variabele)."
5083
+
5084
+ msgid "Round rating"
5085
+ msgstr "Beoordeling afronden"
5086
+
5087
+ msgid "Half"
5088
+ msgstr "Half"
5089
+
5090
+ msgid "Third"
5091
+ msgstr "Derde"
5092
+
5093
+ msgid "Quarter"
5094
+ msgstr "Kwart"
5095
+
5096
+ msgid "Visibility"
5097
+ msgstr "Zichtbaarheid"
5098
+
5099
+ msgid "Shop and search results"
5100
+ msgstr "Shop en zoek resultaten"
5101
+
5102
+ msgid "Shop only"
5103
+ msgstr "Alleen shoppen"
5104
+
5105
+ msgid "Search results only"
5106
+ msgstr "Alleen zoekresultaten"
5107
+
5108
+ msgid "Replace these timestamp variables"
5109
+ msgstr "Vervang deze tijdstempel variabelen"
5110
+
5111
+ #, php-format
5112
+ msgid "Any PHP date format can be used: %s"
5113
+ msgstr "Eender welk PHP datumformaat mag gebruikt worden: %s"
5114
+
5115
+ msgid "Total sales"
5116
+ msgstr "Totale verkoop"
5117
+
5118
+ msgid "Regular price"
5119
+ msgstr "Normale prijs"
5120
+
5121
+ msgid "Sale price"
5122
+ msgstr "Verkoopsprijs"
5123
+
5124
+ msgid "IDs (one per line)"
5125
+ msgstr "IDs (één per regel)"
5126
+
5127
+ msgid "SKUs (one per line)"
5128
+ msgstr "SKUs (één per regel)"
5129
+
5130
+ msgid "Move"
5131
+ msgstr "Verplaatsen"
5132
+
5133
+ msgid "Reveal"
5134
+ msgstr "Onthullen"
5135
+
5136
+ msgid "Bounce"
5137
+ msgstr "Stuiteren"
5138
+
5139
+ msgid "Special"
5140
+ msgstr "Speciaal"
5141
+
5142
+ msgid "Left fade"
5143
+ msgstr "Links vervagen"
5144
+
5145
+ msgid "Right fade"
5146
+ msgstr "Rechts vervagen"
5147
+
5148
+ msgid "Top fade"
5149
+ msgstr "Bovenaan vervagen"
5150
+
5151
+ msgid "Bottom fade"
5152
+ msgstr "Onderaan vervagen"
5153
+
5154
+ msgid "Flash"
5155
+ msgstr "Flits"
5156
+
5157
+ msgid "Left to Right"
5158
+ msgstr "Links naar rechts"
5159
+
5160
+ msgid "Top to Bottom"
5161
+ msgstr "Van boven naar beneden"
5162
+
5163
+ msgid "Skew Left to Right"
5164
+ msgstr "Links naar rechts scheeftrekken"
5165
+
5166
+ msgid "Downscale back out"
5167
+ msgstr "Terugschalen uitzoomend"
5168
+
5169
+ msgid "Upscale back out"
5170
+ msgstr "Groter maken naar buiten"
5171
+
5172
+ msgid "Pulse"
5173
+ msgstr "Pulseren"
5174
+
5175
+ msgid "Flip left"
5176
+ msgstr "Links spiegelen"
5177
+
5178
+ msgid "Flip right"
5179
+ msgstr "Rechts spiegelen"
5180
+
5181
+ msgid "Flip down"
5182
+ msgstr "Naar onder spiegelen"
5183
+
5184
+ msgid "Flip up"
5185
+ msgstr "Naar boven spiegelen"
5186
+
5187
+ msgid "Flip in X"
5188
+ msgstr "Spiegelen om X"
5189
+
5190
+ msgid "Flip in Y"
5191
+ msgstr "Spiegelen om Y"
5192
+
5193
+ msgid "Flap"
5194
+ msgstr "Afhangende rand"
5195
+
5196
+ msgid "Rotate top left"
5197
+ msgstr "Roteer naar linksboven"
5198
+
5199
+ msgid "Rotate top right"
5200
+ msgstr "Roteer naar rechtsboven"
5201
+
5202
+ msgid "Roll in"
5203
+ msgstr "Binnenrollen"
5204
+
5205
+ msgid "Rotate top left back out"
5206
+ msgstr "Roteer naar linksboven en terug naar buiten"
5207
+
5208
+ msgid "Rotate all axis"
5209
+ msgstr "Roteer alle assen"
5210
+
5211
+ msgid "Bounce in"
5212
+ msgstr "Binnenstuiteren"
5213
+
5214
+ msgid "Bounce in left"
5215
+ msgstr "Links binnenstuiteren"
5216
+
5217
+ msgid "Bounce in right"
5218
+ msgstr "Rechts binnenstuiteren"
5219
+
5220
+ msgid "Bounce in down"
5221
+ msgstr "Naar beneden binnenstuiteren"
5222
+
5223
+ msgid "Bounce in up"
5224
+ msgstr "Naar boven binnenstuiteren"
5225
+
5226
+ msgid "Rubber band"
5227
+ msgstr "Elastiekje"
5228
+
5229
+ msgid "Shake"
5230
+ msgstr "Schudden"
5231
+
5232
+ msgid "Swing"
5233
+ msgstr "Zwaai"
5234
+
5235
+ msgid "Wooble"
5236
+ msgstr "Wooble"
5237
+
5238
+ msgid "Roll"
5239
+ msgstr "Rollen"
5240
+
5241
+ msgid "Grow rotate"
5242
+ msgstr "Groeiend roteren"
5243
+
5244
+ msgid "Pendulum"
5245
+ msgstr "Slinger"
5246
+
5247
+ msgid "Pendulum 3D"
5248
+ msgstr "Slinger 3D"
5249
+
5250
+ msgid "Vertical pendulum 3D"
5251
+ msgstr "Verticale slinger 3D"
5252
+
5253
+ msgid "Before text"
5254
+ msgstr "Voor de tekst"
5255
+
5256
+ msgid "Animated text"
5257
+ msgstr "Geanimeerde tekst"
5258
+
5259
+ msgid "After text"
5260
+ msgstr "Na tekst"
5261
+
5262
+ msgid "Rotating"
5263
+ msgstr "Roteren"
5264
+
5265
+ msgid "Drop-in"
5266
+ msgstr "Binnenvallen"
5267
+
5268
+ msgid "Slide down"
5269
+ msgstr "Naar beneden schuiven"
5270
+
5271
+ msgid "Typewriter"
5272
+ msgstr "Schrijfmachine"
5273
+
5274
+ msgid "Chars"
5275
+ msgstr "Tekens"
5276
+
5277
+ msgid "Chars 2"
5278
+ msgstr "Tekens 2"
5279
+
5280
+ msgid "Auto width"
5281
+ msgstr "Automatische breedte"
5282
+
5283
+ msgid "Cursor color"
5284
+ msgstr "Cursor kleur"
5285
+
5286
+ msgctxt "Effect"
5287
+ msgid "Loop"
5288
+ msgstr "Herhalen"
5289
+
5290
+ msgid "Show duration"
5291
+ msgstr "Toon tijdsduur"
5292
+
5293
+ msgid "Class on the selected tag element."
5294
+ msgstr "Class op het geselecteerde tag element."
5295
+
5296
+ msgid "Area"
5297
+ msgstr "Zone"
5298
+
5299
+ msgid "Write custom CSS codes here without selectors."
5300
+ msgstr "Schrijf hier aangepaste CSS codes zonder selectors."
5301
+
5302
+ msgid "Audio"
5303
+ msgstr "Audio"
5304
+
5305
+ msgid "MP3 audio"
5306
+ msgstr "MP3 audio"
5307
+
5308
+ msgid "Main color"
5309
+ msgstr "Hoofdkleur"
5310
+
5311
+ msgid "Secondary color"
5312
+ msgstr "Secundaire kleur"
5313
+
5314
+ msgid "Audio settings"
5315
+ msgstr "Audio instellingen"
5316
+
5317
+ #, php-format
5318
+ msgid "Audio autoplaying has a lot of limitations made by browsers. You can read about them %1$shere%2$s."
5319
+ msgstr "Audio automatisch spelen heeft een groot aantal beperkingen in bepaalde browsers. U kunt er %1$shier%2$s over lezen."
5320
+
5321
+ msgid "Starts the audio from the beginning when the slide is viewed again."
5322
+ msgstr "Start de audio vanaf het begin als de slide opnieuw bekeken wordt."
5323
+
5324
+ msgid "Progress"
5325
+ msgstr "Voortgang"
5326
+
5327
+ msgid "Time"
5328
+ msgstr "Tijd"
5329
+
5330
+ msgid "Icon Size"
5331
+ msgstr "Icoon grootte"
5332
+
5333
+ msgid "Before After"
5334
+ msgstr "Voor Na"
5335
+
5336
+ msgid "Left top"
5337
+ msgstr "Linksboven"
5338
+
5339
+ msgid "Center top"
5340
+ msgstr "Centraal bovenaan"
5341
+
5342
+ msgid "Right top"
5343
+ msgstr "Rechtsboven"
5344
+
5345
+ msgid "Left center"
5346
+ msgstr "Links midden"
5347
+
5348
+ msgid "Right Center"
5349
+ msgstr "Rechts midden"
5350
+
5351
+ msgid "Left bottom"
5352
+ msgstr "Links onderaan"
5353
+
5354
+ msgid "Center bottom"
5355
+ msgstr "Centraal onderaan"
5356
+
5357
+ msgid "Right bottom"
5358
+ msgstr "Rechtsonder"
5359
+
5360
+ msgid "Before Image"
5361
+ msgstr "Voor de afbeelding"
5362
+
5363
+ msgid "After Image"
5364
+ msgstr "Na de afbeelding"
5365
+
5366
+ msgid "Labels"
5367
+ msgstr "Labels"
5368
+
5369
+ msgid "Show Label"
5370
+ msgstr "Toon label"
5371
+
5372
+ msgid "Always"
5373
+ msgstr "Altijd"
5374
+
5375
+ msgid "Before label"
5376
+ msgstr "Voor het label"
5377
+
5378
+ msgid "After label"
5379
+ msgstr "Na het label"
5380
+
5381
+ msgid "Behavior"
5382
+ msgstr "Gedrag"
5383
+
5384
+ msgid "Interaction"
5385
+ msgstr "Interactie"
5386
+
5387
+ msgid "Divider"
5388
+ msgstr "Scheiding"
5389
+
5390
+ msgid "Line"
5391
+ msgstr "Lijn"
5392
+
5393
+ msgid "Show Caption"
5394
+ msgstr "Toon onderschrift"
5395
+
5396
+ msgid "Caption text"
5397
+ msgstr "Onderschrift tekst"
5398
+
5399
+ msgid "2"
5400
+ msgstr "2"
5401
+
5402
+ msgid "4"
5403
+ msgstr "4"
5404
+
5405
+ msgid "6"
5406
+ msgstr "6"
5407
+
5408
+ msgid "8"
5409
+ msgstr "8"
5410
+
5411
+ msgid "10"
5412
+ msgstr "10"
5413
+
5414
+ msgid "Before image alt tag"
5415
+ msgstr "Voor de afbeelding alt tag"
5416
+
5417
+ msgid "After image alt tag"
5418
+ msgstr "Na de afbeelding alt tag"
5419
+
5420
+ msgid "Optimize images"
5421
+ msgstr "Optimaliseer afbeeldingen"
5422
+
5423
+ msgid "Full"
5424
+ msgstr "Volledig"
5425
+
5426
+ msgid "Scales up the image on hover"
5427
+ msgstr "Vergroot de afbeelding als er met de muis over bewogen wordt"
5428
+
5429
+ msgid "Overlay background"
5430
+ msgstr "Bovenlaag achtergrond"
5431
+
5432
+ msgid "Positions the text inside the overlay."
5433
+ msgstr "Positioneert de tekst binnen de bovenlaag."
5434
+
5435
+ msgid "Circle counter"
5436
+ msgstr "Circel teller"
5437
+
5438
+ msgid "Counter"
5439
+ msgstr "Teller"
5440
+
5441
+ msgid "Value"
5442
+ msgstr "Waarde"
5443
+
5444
+ msgid "Start from"
5445
+ msgstr "Start vanaf"
5446
+
5447
+ msgid "Total"
5448
+ msgstr "Totaal"
5449
+
5450
+ msgid "Active color"
5451
+ msgstr "Actieve kleur"
5452
+
5453
+ msgid "Stroke width"
5454
+ msgstr "Lijn breedte"
5455
+
5456
+ msgid "Inner before"
5457
+ msgstr "Binnenste ervoor"
5458
+
5459
+ msgid "Inner after"
5460
+ msgstr "Binnenste erna"
5461
+
5462
+ msgid "Pre"
5463
+ msgstr "Pre"
5464
+
5465
+ msgid "Animation duration"
5466
+ msgstr "Animatie duur"
5467
+
5468
+ msgid "Circle 1"
5469
+ msgstr "Circel 1"
5470
+
5471
+ msgid "Circle 2"
5472
+ msgstr "Circel 2"
5473
+
5474
+ msgid "Circle 3"
5475
+ msgstr "Circel 3"
5476
+
5477
+ msgid "Curly 1"
5478
+ msgstr "Gekruld 1"
5479
+
5480
+ msgid "Curly 2"
5481
+ msgstr "Gekruld 2"
5482
+
5483
+ msgid "Highlight 1"
5484
+ msgstr "Accentuering 1"
5485
+
5486
+ msgid "Highlight 2"
5487
+ msgstr "Accentuering 2"
5488
+
5489
+ msgid "Highlight 3"
5490
+ msgstr "Accentuering 3"
5491
+
5492
+ msgid "Line Through 1"
5493
+ msgstr "Doorhaling 1"
5494
+
5495
+ msgid "Line Through 2"
5496
+ msgstr "Doorhaling 2"
5497
+
5498
+ msgid "Line Through 3"
5499
+ msgstr "Doorhaling 3"
5500
+
5501
+ msgid "Rectangle 1"
5502
+ msgstr "Rechthoek 1"
5503
+
5504
+ msgid "Rectangle 2"
5505
+ msgstr "Rechthoek 2"
5506
+
5507
+ msgid "Underline 1"
5508
+ msgstr "Onderlijn 1"
5509
+
5510
+ msgid "Underline 2"
5511
+ msgstr "Onderlijn 2"
5512
+
5513
+ msgid "Underline 3"
5514
+ msgstr "Onderlijn 3"
5515
+
5516
+ msgid "Underline double 1"
5517
+ msgstr "Onderlijn dubbel 1"
5518
+
5519
+ msgid "Underline double 2"
5520
+ msgstr "Onderlijn dubbel 2"
5521
+
5522
+ msgid "ZigZag 1"
5523
+ msgstr "ZigZag 1"
5524
+
5525
+ msgid "ZigZag 2"
5526
+ msgstr "ZigZag 2"
5527
+
5528
+ msgid "ZigZag 3"
5529
+ msgstr "ZigZag 3"
5530
+
5531
+ msgid "Highlighted text"
5532
+ msgstr "Geaccentueerde tekst"
5533
+
5534
+ msgid "Bring front"
5535
+ msgstr "Breng naar voor"
5536
+
5537
+ msgid "Puts the shape on top of the text."
5538
+ msgstr "Plaatst de vorm boven op de tekst."
5539
+
5540
+ msgid "Loop delay"
5541
+ msgstr "Herhaling wachttijd"
5542
+
5543
+ msgid "HTML"
5544
+ msgstr "HTML"
5545
+
5546
+ msgid "Please note that <b>we do not support</b> the HTML layer and the 3rd party codes loaded by it. We only suggest using this layer if you are a developer. <br>Also, make sure your HTML code is valid! Invalid HTML codes can mess up the entire slide and the only way resolving this problem is deleting the slide."
5547
+ msgstr "Merk op dat we de HTML laag en de derde partij codes die erdoor geladen worden <b>niet ondersteunen</b>. We raden aan deze laag alleen te gebruiken als u een ontwikkelaar bent. <br>Vergewis u er ook van dat uw HTML code geldig is! Ongeldige HTML codes kunnen de volledige slide verknoeien en de enige manier om dat op te lossen is de volledige slide te verwijderen."
5548
+
5549
+ msgid "Item"
5550
+ msgstr "Item"
5551
+
5552
+ msgid ""
5553
+ "Item 1\n"
5554
+ "Item 2\n"
5555
+ "Item 3"
5556
+ msgstr ""
5557
+ "Item 1\n"
5558
+ "Item 2\n"
5559
+ "Item 3"
5560
+
5561
+ msgid "List type"
5562
+ msgstr "Lijst type"
5563
+
5564
+ msgctxt "List layer type"
5565
+ msgid "None"
5566
+ msgstr "Geen"
5567
+
5568
+ msgctxt "List layer type"
5569
+ msgid "Disc"
5570
+ msgstr "Schijf"
5571
+
5572
+ msgctxt "List layer type"
5573
+ msgid "Square"
5574
+ msgstr "Vierkant"
5575
+
5576
+ msgctxt "List layer type"
5577
+ msgid "Circle"
5578
+ msgstr "Circel"
5579
+
5580
+ msgctxt "List layer type"
5581
+ msgid "Decimal"
5582
+ msgstr "Decimaal"
5583
+
5584
+ msgctxt "List layer type"
5585
+ msgid "Armenian"
5586
+ msgstr "Armenian"
5587
+
5588
+ msgctxt "List layer type"
5589
+ msgid "Cjk-ideographic"
5590
+ msgstr "Cjk-ideographic"
5591
+
5592
+ msgctxt "List layer type"
5593
+ msgid "Decimal-leading-zero"
5594
+ msgstr "Decimaal-leidende-nul"
5595
+
5596
+ msgctxt "List layer type"
5597
+ msgid "Georgian"
5598
+ msgstr "Georgian"
5599
+
5600
+ msgctxt "List layer type"
5601
+ msgid "Hebrew"
5602
+ msgstr "Hebrew"
5603
+
5604
+ msgctxt "List layer type"
5605
+ msgid "Hiragana"
5606
+ msgstr "Hiragana"
5607
+
5608
+ msgctxt "List layer type"
5609
+ msgid "Hiragana-iroha"
5610
+ msgstr "Hiragana-iroha"
5611
+
5612
+ msgctxt "List layer type"
5613
+ msgid "Katakana"
5614
+ msgstr "Katakana"
5615
+
5616
+ msgctxt "List layer type"
5617
+ msgid "Katakana-iroha"
5618
+ msgstr "Katakana-iroha"
5619
+
5620
+ msgctxt "List layer type"
5621
+ msgid "Lower-alpha"
5622
+ msgstr "Lower-alpha"
5623
+
5624
+ msgctxt "List layer type"
5625
+ msgid "Lower-greek"
5626
+ msgstr "Lower-greek"
5627
+
5628
+ msgctxt "List layer type"
5629
+ msgid "Lower-latin"
5630
+ msgstr "Lower-latin"
5631
+
5632
+ msgctxt "List layer type"
5633
+ msgid "Lower-roman"
5634
+ msgstr "Lower-roman"
5635
+
5636
+ msgctxt "List layer type"
5637
+ msgid "Upper-alpha"
5638
+ msgstr "Upper-alpha"
5639
+
5640
+ msgctxt "List layer type"
5641
+ msgid "Upper-latin"
5642
+ msgstr "Upper-latin"
5643
+
5644
+ msgctxt "List layer type"
5645
+ msgid "Upper-roman"
5646
+ msgstr "Upper-roman"
5647
+
5648
+ msgid "Icon not found"
5649
+ msgstr "Icoon niet gevonden"
5650
+
5651
+ msgid "Aria label"
5652
+ msgstr "Aria label"
5653
+
5654
+ #, php-format
5655
+ msgid "Enter an %1$s aria-label attribute %2$s that describes the link."
5656
+ msgstr "Geef een %1$s aria-label attribuut in %2$s dat de link beschrijft."
5657
+
5658
+ msgid "Iframe"
5659
+ msgstr "Iframe"
5660
+
5661
+ msgid "iframe"
5662
+ msgstr "iframe"
5663
+
5664
+ msgid "Please note, that <b>we do not support</b> customized coding! The iframe layer often needs code customizations what you have to do yourself, so we only suggest using this layer if you are a developer!"
5665
+ msgstr "Merk op dat we aangepaste codering <b>niet ondersteunen</b>! De iframe laag heeft vaak code aanpassingen nodig die u zelf moet aanbrengen. We raden dus aan deze laag alleen te gebruiken als u een ontwikkelaar bent!"
5666
+
5667
+ msgid "iframe url"
5668
+ msgstr "iframe URL"
5669
+
5670
+ msgid "Yes"
5671
+ msgstr "Ja"
5672
+
5673
+ msgid "You can disable the scroll on the iframe content."
5674
+ msgstr "U kun het scrollen op de iframe inhoud deactiveren."
5675
+
5676
+ msgid "iframe title"
5677
+ msgstr "iframe titel"
5678
+
5679
+ msgid "Image area"
5680
+ msgstr "Afbeeldingszone"
5681
+
5682
+ msgid "Image box"
5683
+ msgstr "Afbeeldingsvak"
5684
+
5685
+ msgid "Positions the text inside the layer. Only works with left and right layout."
5686
+ msgstr "Positioneert de tekst binnen de laag. Werkt enkel met de linkse en rechtse lay-out."
5687
+
5688
+ msgid "Input"
5689
+ msgstr "Invoer"
5690
+
5691
+ msgid "Container"
5692
+ msgstr "Container"
5693
+
5694
+ msgid "What are you looking for?"
5695
+ msgstr "Waar bent u naar op zoek?"
5696
+
5697
+ msgid "We only suggest using this layer if you are a developer, since the Input layer requires deep understanding how HTML form works."
5698
+ msgstr "We raden aan deze laag alleen te gebruiken als u een ontwikkelaar bent, vermits de invoerlaag een goede kennis vereist over de werking van HTML formulieren."
5699
+
5700
+ msgid "Placeholder text"
5701
+ msgstr "Plaatshouder tekst"
5702
+
5703
+ msgid "Form"
5704
+ msgstr "Formulier"
5705
+
5706
+ msgid "Input name"
5707
+ msgstr "Invoer naam"
5708
+
5709
+ msgid "Method"
5710
+ msgstr "Methode"
5711
+
5712
+ msgid "Form action"
5713
+ msgstr "Formulier actie"
5714
+
5715
+ msgid "Parameters"
5716
+ msgstr "Parameters"
5717
+
5718
+ msgid "Slide action to submit"
5719
+ msgstr "Te verzenden slide actie"
5720
+
5721
+ msgid "JavaScript"
5722
+ msgstr "JavaScript"
5723
+
5724
+ msgid "Progress bar"
5725
+ msgstr "Voortgangsbalk"
5726
+
5727
+ msgid "Over"
5728
+ msgstr "Over"
5729
+
5730
+ msgid "Transition"
5731
+ msgstr "Overgang"
5732
+
5733
+ msgid "Front image"
5734
+ msgstr "Afbeelding voorkant"
5735
+
5736
+ msgid "Back image"
5737
+ msgstr "Afbeelding achterkant"
5738
+
5739
+ msgid "Vertical flip"
5740
+ msgstr "Verticaal spiegelen"
5741
+
5742
+ msgid "Horizontal flip"
5743
+ msgstr "Horizontaal spiegelen"
5744
+
5745
+ msgid "Front image alt tag"
5746
+ msgstr "Afbeelding voorkant alt tag"
5747
+
5748
+ msgid "Back image alt tag"
5749
+ msgstr "Afbeelding achterkant alt tag"
5750
+
5751
+ msgid "MP4 video"
5752
+ msgstr "MP4 video"
5753
+
5754
+ msgid "Preload"
5755
+ msgstr "Vooraf inladen"
5756
+
5757
+ msgid "Joomla module"
5758
+ msgstr "Joomla module"
5759
+
5760
+ msgid "Please note, that <b>we do not support</b> the Joomla module layer!<br>The loaded module often needs code customizations what you have to do yourself, so we only suggest using this layer if you are a developer!"
5761
+ msgstr "Merk op dat we de Joomla module laag <b>niet ondersteunen</b>! De ingeladen module heeft vaak code aanpassingen nodig die u zelf moet aanbrengen. We raden dus aan deze laag alleen te gebruiken als u een ontwikkelaar bent!"
5762
+
5763
+ msgid "Position name or module ID"
5764
+ msgstr "Positie naam of module ID"
5765
+
5766
+ msgid "The position name of your module (for Loadposition and Modulepos) or the module's ID (Module)."
5767
+ msgstr "De positie naam van uw module (voor Loadposition en Modulepos) of het module ID (Module)."
5768
+
5769
+ msgid "Constrain ratio"
5770
+ msgstr "Beperking verhouding"
5771
+
5772
+ msgid "The slide scales horizontally and vertically with the same amount."
5773
+ msgstr "De slide verandert horizontaal en verticaal van grootte met dezelfde waarde."
5774
+
5775
+ msgid "Height based on"
5776
+ msgstr "Hoogte gebaseerd op"
5777
+
5778
+ msgid "The real height makes your slider have the height of the browser without the URL bar, while the CSS 100vh makes it exactly as big as the browser height."
5779
+ msgstr "De werkelijke hoogte maakt dat uw slider de hoogte heeft van de browser zonder de URL balk, terwijl de CSS 100vh hem net zo groot maakt als de hoogte van de browser."
5780
+
5781
+ msgid "Decrease height"
5782
+ msgstr "Verminder hoogte"
5783
+
5784
+ msgid "You can make your slider smaller than the full height of the browser by a given pixel, for example, to fit below your menu without causing scrollbar."
5785
+ msgstr "U kunt uw slider een gegeven pixel kleiner maken dan de volledige hoogte van de browser, bijvoorbeeld om onder uw menu te passen zonder dat er een scrollbalk aan te pas komt."
5786
+
5787
+ msgid "Decrease height by selectors"
5788
+ msgstr "Verminder hoogte door selectors"
5789
+
5790
+ msgid "Use global focus selectors"
5791
+ msgstr "Gebruik globale focus selectors"
5792
+
5793
+ msgid "Use local selectors"
5794
+ msgstr "Gebruik lokale selectors"
5795
+
5796
+ msgid "You can make your slider smaller than the full height of the browser, for example, to fit below your menu without causing scrollbar."
5797
+ msgstr "U kunt uw slider kleiner maken dan de volledige hoogte van de browser, bijvoorbeeld om onder uw menu te passen zonder dat er een scrollbalk aan te pas komt."
5798
+
5799
+ msgid "CSS selector (sum of heights)"
5800
+ msgstr "CSS selector (som van hoogtes)"
5801
+
5802
+ msgctxt "Slider type"
5803
+ msgid "Carousel slider"
5804
+ msgstr "Carousel slider"
5805
+
5806
+ msgid "Slide size"
5807
+ msgstr "Slide grootte"
5808
+
5809
+ msgid "Max pane width"
5810
+ msgstr "Max paneel breedte"
5811
+
5812
+ msgid "You can use this option to limit how many slides can show up next to each other."
5813
+ msgstr "U kunt deze optie gebruiken om te beperken hoeveel slides naast elkaar mogen verschijnen."
5814
+
5815
+ msgid "Minimum slide distance"
5816
+ msgstr "Minimum slide afstand"
5817
+
5818
+ msgid "The minimum space between two slides."
5819
+ msgstr "De minimum ruimte tussen twee slides."
5820
+
5821
+ msgid "Side spacing"
5822
+ msgstr "Zijruimte"
5823
+
5824
+ msgid "Desktop side spacing"
5825
+ msgstr "Desktop zijkant tussenruimte"
5826
+
5827
+ msgid "You can create a fix distance between the slider and the slides where your controls are which appear on this device. This way your controls won't cover the slide content."
5828
+ msgstr "U kunt een vaste afstand tussen de slider en de slides maken waar uw bedieningselementen staan die op dit toestel verschijnen. Op die manier bedekken uw bedieningselementen de inhoud van de slide niet."
5829
+
5830
+ msgid "Tablet side spacing"
5831
+ msgstr "Tablet ruimte zijkant"
5832
+
5833
+ msgid "Mobile side spacing"
5834
+ msgstr "Mobiele zijkant opvulling"
5835
+
5836
+ msgid "Slide background color"
5837
+ msgstr "Slide achtergrondkleur"
5838
+
5839
+ msgid "Slide border width"
5840
+ msgstr "Slide breedte rand"
5841
+
5842
+ msgid "Slide border color"
5843
+ msgstr "Slide randkleur"
5844
+
5845
+ msgid "Slide border radius"
5846
+ msgstr "Slide straal rand"
5847
+
5848
+ msgid "Slider border width"
5849
+ msgstr "Slider breedte rand"
5850
+
5851
+ msgid "Slider border color"
5852
+ msgstr "Slider kleur rand"
5853
+
5854
+ msgid "Slider border radius"
5855
+ msgstr "Slider straal rand"
5856
+
5857
+ msgid "The Single Switch setting can only move the slides horizontally!"
5858
+ msgstr "De enkele schakelaar instelling kan de slides alleen horizontaal verplaatsen!"
5859
+
5860
+ msgid "This option will create a complete round from your slides if you have enough slides. If you don't have enough slides, you could consider duplicating all the slides or just add more slides until you will get a carousel round."
5861
+ msgstr "Deze optie zal een volledige ronde maken van uw slides, als u er genoeg hebt. Als u niet genoeg slides hebt dan kunt u overwegen om alle slides te klonen of gewoon meer slides toe te voegen tot u een carousel ronde hebt."
5862
+
5863
+ msgid "Single switch"
5864
+ msgstr "Enkele schakelaar"
5865
+
5866
+ msgid "It switches one slide instead of moving all the visible slides."
5867
+ msgstr "Dit wisselt één slide in plaats van al de zichtbare slides te verplaatsen."
5868
+
5869
+ msgid "Justify slides"
5870
+ msgstr "Slides volledig uitlijnen"
5871
+
5872
+ msgctxt "Slider type"
5873
+ msgid "Showcase slider"
5874
+ msgstr "Etalage slider"
5875
+
5876
+ msgid "Slide distance"
5877
+ msgstr "Slide afstand"
5878
+
5879
+ msgid "Fix space between the slides."
5880
+ msgstr "Herstel ruimte tussen de slides."
5881
+
5882
+ msgid "Slide CSS Preset"
5883
+ msgstr "Slide CSS voorinstelling"
5884
+
5885
+ msgid "Showcase animation"
5886
+ msgstr "Etalage animatie"
5887
+
5888
+ msgid "Horizontal showcase"
5889
+ msgstr "Horizontale etalage"
5890
+
5891
+ msgid "Vertical showcase"
5892
+ msgstr "Verticale etalage"
5893
+
5894
+ msgid "Horizontal cover flow"
5895
+ msgstr "Horizontale cover stroom"
5896
+
5897
+ msgid "Vertical cover flow"
5898
+ msgstr "Verticale cover flow"
5899
+
5900
+ msgid "Switch with next/previous slides"
5901
+ msgstr "Wissel met volgende/vorige slides"
5902
+
5903
+ msgid "Clicking on any slide that's not in the middle will make the slider switch to that slide. With this option you can disable this behavior, for example, to allow clicking on buttons on the visible slides."
5904
+ msgstr "Klikken op eender welke slide die niet in het midden staat zal de slider doen overschakelen naar die slide. Met deze optie kunt u dit gedrag deactiveren, bijvoorbeeld om toe te laten te klikken op knoppen op de zichtbare slides."
5905
+
5906
+ msgid "Save as new animation"
5907
+ msgstr "Opslaan als nieuwe animatie"
5908
+
5909
+ msgid "Sets"
5910
+ msgstr "Sets"
5911
+
5912
+ msgid "Text animation settings"
5913
+ msgstr "Tekst animatie instellingen"
5914
+
5915
+ msgid "Words"
5916
+ msgstr "Woorden"
5917
+
5918
+ msgid "Sort"
5919
+ msgstr "Sorteren"
5920
+
5921
+ msgid "Reversed"
5922
+ msgstr "Omgekeerd"
5923
+
5924
+ msgid "Side shifted"
5925
+ msgstr "Zijkant verschoven"
5926
+
5927
+ msgid "Center shifted"
5928
+ msgstr "Midden verschoven"
5929
+
5930
+ msgid "Stagger"
5931
+ msgstr "Wankelen"
5932
+
5933
+ msgid "Turn"
5934
+ msgstr "Draai"
5935
+
5936
+ msgid "Prev"
5937
+ msgstr "Vorige"
5938
+
5939
+ msgid "Next"
5940
+ msgstr "Volgende"
5941
+
5942
+ msgid "Previous label"
5943
+ msgstr "Vorige label"
5944
+
5945
+ msgid "Next label"
5946
+ msgstr "Volgende label"
5947
+
5948
+ msgid "To normal"
5949
+ msgstr "Naar normaal"
5950
+
5951
+ msgid "To fullscreen"
5952
+ msgstr "Naar volledig scherm"
5953
+
5954
+ msgid "Fullscreen"
5955
+ msgstr "Volledig scherm"
5956
+
5957
+ msgid "Exit full screen"
5958
+ msgstr "Uit volledig scherm"
5959
+
5960
+ msgid "Enter Full screen"
5961
+ msgstr "Naar volledig scherm"
5962
+
5963
+ #, php-format
5964
+ msgid "%1$s does not support the full screen API. For this reason the full screen button will not appear on %1$s devices."
5965
+ msgstr "%1$s ondersteunt de volledig scherm API niet. Om deze reden zal de volledig scherm knop niet verschijnen op %1$s toestellen."
5966
+
5967
+ msgid "Indicator"
5968
+ msgstr "Indicator"
5969
+
5970
+ msgid "Line thickness"
5971
+ msgstr "Lijndikte"
5972
+
5973
+ msgid "Track color"
5974
+ msgstr "Track kleur"
5975
+
5976
+ msgid "Bar color"
5977
+ msgstr "Balk kleur"
Nextend/Languages/nl_NL.mo ADDED
Binary file
Nextend/Languages/nl_NL.po ADDED
@@ -0,0 +1,5977 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: \n"
4
+ "POT-Creation-Date: 2021-10-16 08:50+0200\n"
5
+ "PO-Revision-Date: 2021-11-03 20:07+0100\n"
6
+ "Last-Translator: \n"
7
+ "Language-Team: \n"
8
+ "MIME-Version: 1.0\n"
9
+ "Content-Type: text/plain; charset=UTF-8\n"
10
+ "Content-Transfer-Encoding: 8bit\n"
11
+ "X-Generator: Poedit 3.0\n"
12
+ "X-Poedit-SourceCharset: UTF-8\n"
13
+ "X-Poedit-Basepath: ..\n"
14
+ "X-Poedit-KeywordsList: ;n2_;n2_e;n2_n:1,2;n2_en:1,2;n2_x:1,2c;n2_ex:1,2c\n"
15
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
16
+ "Language: nl_NL\n"
17
+ "X-Poedit-Flags-xgettext: --no-location\n"
18
+ "X-Poedit-SearchPath-0: .\n"
19
+ "X-Poedit-SearchPathExcluded-0: Framework/Asset/Builder/cache\n"
20
+
21
+ msgid "Debug error"
22
+ msgstr "Debug fout"
23
+
24
+ msgid "CURL disabled in your php.ini configuration. Please enable it!"
25
+ msgstr "CURL is gedeactiveerd in uw php.ini configuratie. Gelieve het te activeren!"
26
+
27
+ msgid "Unable to contact with the licensing server, please try again later!"
28
+ msgstr "Kon geen verbinding maken met de licentie server. Gelieve het later nog eens te proberen!"
29
+
30
+ msgctxt "Default Google font family for admin"
31
+ msgid "Montserrat"
32
+ msgstr "Montserrat"
33
+
34
+ msgid "You are not allowed to upload!"
35
+ msgstr "U hebt geen toelating om te uploaden!"
36
+
37
+ msgid "Folder is missing!"
38
+ msgstr "Map ontbreekt!"
39
+
40
+ msgid "Menu item"
41
+ msgstr "Menu item"
42
+
43
+ msgid "You are not authorised to view this resource."
44
+ msgstr "U hebt geen toelating om deze resource te bekijken."
45
+
46
+ #, php-format
47
+ msgid "Missing parameter: %s"
48
+ msgstr "Ontbrekende parameter: %s"
49
+
50
+ msgid "Database error"
51
+ msgstr "Database fout"
52
+
53
+ msgid "Security token mismatch"
54
+ msgstr "Beveiligingstoken komt niet overeen"
55
+
56
+ msgid "Unexpected error"
57
+ msgstr "Onverwachte fout"
58
+
59
+ msgid "Set is not editable"
60
+ msgstr "Set is niet bewerkbaar"
61
+
62
+ msgid "Visual do not exists"
63
+ msgstr "Visueel element bestaat niet"
64
+
65
+ msgid "Not editable"
66
+ msgstr "Niet bewerkbaar"
67
+
68
+ msgid "Security token mismatch. Please refresh the page!"
69
+ msgstr "Beveiligingstoken komt niet overeen. Gelieve de pagina te vernieuwen!"
70
+
71
+ #, php-format
72
+ msgid "If you see this message after the repair database process, please %1$scontact us%2$s with the log:"
73
+ msgstr "Als u dit bericht ziet na het database reparatie proces %1$scontacteer ons%2$s dan met het log:"
74
+
75
+ msgid "Contact your server host and ask them to fix this for you!"
76
+ msgstr "Contacteer uw server host en vraag hem om dit voor u te repareren!"
77
+
78
+ msgid "Unexpected database error."
79
+ msgstr "Onverwachte database fout."
80
+
81
+ msgid "Try to repair database"
82
+ msgstr "Probeer de database te repareren"
83
+
84
+ msgid "Font manager"
85
+ msgstr "Font beheer"
86
+
87
+ msgid "Text"
88
+ msgstr "Tekst"
89
+
90
+ msgid "Hover"
91
+ msgstr "Muisover"
92
+
93
+ msgid "Heading"
94
+ msgstr "Hoofding"
95
+
96
+ msgid "Link"
97
+ msgstr "Link"
98
+
99
+ msgid "Button"
100
+ msgstr "Knop"
101
+
102
+ msgid "Paragraph"
103
+ msgstr "Paragraaf"
104
+
105
+ msgid "Dot"
106
+ msgstr "Stip"
107
+
108
+ msgid "Active"
109
+ msgstr "Actief"
110
+
111
+ msgid "List"
112
+ msgstr "Lijst"
113
+
114
+ msgid "Highlight"
115
+ msgstr "Accentuering"
116
+
117
+ msgctxt "Default font"
118
+ msgid "Roboto,Arial"
119
+ msgstr "Roboto,Arial"
120
+
121
+ msgid "Font settings"
122
+ msgstr "Font instellingen"
123
+
124
+ msgid "Clear tab"
125
+ msgstr "Tab leegmaken"
126
+
127
+ msgid "Family"
128
+ msgstr "Familie"
129
+
130
+ msgid "Color"
131
+ msgstr "Kleur"
132
+
133
+ msgid "Size"
134
+ msgstr "Grootte"
135
+
136
+ msgid "Font weight"
137
+ msgstr "Font gewicht"
138
+
139
+ msgid "Decoration"
140
+ msgstr "Decoratie"
141
+
142
+ msgid "Line height"
143
+ msgstr "Lijnhoogte"
144
+
145
+ msgid "Text align"
146
+ msgstr "Tekst uitlijning"
147
+
148
+ msgid "Letter spacing"
149
+ msgstr "Ruimte tussen letters"
150
+
151
+ msgid "Word spacing"
152
+ msgstr "Ruimte tussen woorden"
153
+
154
+ msgid "Transform"
155
+ msgstr "Omvormen"
156
+
157
+ msgid "None"
158
+ msgstr "Geen"
159
+
160
+ msgid "Capitalize"
161
+ msgstr "In hoofdletters"
162
+
163
+ msgid "Uppercase"
164
+ msgstr "Hoofdletters"
165
+
166
+ msgid "Lowercase"
167
+ msgstr "Kleine letters"
168
+
169
+ msgid "Text shadow"
170
+ msgstr "Tekst schaduw"
171
+
172
+ msgid "Preview"
173
+ msgstr "Voorvertoning"
174
+
175
+ msgid "Frontend"
176
+ msgstr "Frontend"
177
+
178
+ msgid "You can load Google Fonts on the frontend."
179
+ msgstr "U kunt Google Fonts in de frontend inladen."
180
+
181
+ msgid "Backend"
182
+ msgstr "Backend"
183
+
184
+ msgid "You can load Google Fonts in the backend."
185
+ msgstr "U kunt Google Fonts in de backend inladen."
186
+
187
+ msgid "Style"
188
+ msgstr "Stijl"
189
+
190
+ msgctxt "Font style"
191
+ msgid "Italic"
192
+ msgstr "Cursief"
193
+
194
+ msgid "Normal"
195
+ msgstr "Normaal"
196
+
197
+ msgid "Choose"
198
+ msgstr "Kies"
199
+
200
+ msgid "Orientation"
201
+ msgstr "Oriëntering"
202
+
203
+ msgid "Portrait"
204
+ msgstr "Portret"
205
+
206
+ msgid "Landscape"
207
+ msgstr "Landschap"
208
+
209
+ msgid "Mobile"
210
+ msgstr "Mobieltje"
211
+
212
+ msgid "Large mobile"
213
+ msgstr "Groot mobieltje"
214
+
215
+ msgid "Tablet"
216
+ msgstr "Tablet"
217
+
218
+ msgid "Large tablet"
219
+ msgstr "Grote tablet"
220
+
221
+ msgid "Desktop"
222
+ msgstr "Desktop"
223
+
224
+ msgid "Large desktop"
225
+ msgstr "Grote desktop"
226
+
227
+ msgid "More"
228
+ msgstr "Meer"
229
+
230
+ msgid "Less"
231
+ msgstr "Minder"
232
+
233
+ msgid "View records"
234
+ msgstr "Toon records"
235
+
236
+ msgid "Font"
237
+ msgstr "Font"
238
+
239
+ msgid "Warning"
240
+ msgstr "Waarschuwing"
241
+
242
+ msgid "Dotted"
243
+ msgstr "Gestipt"
244
+
245
+ msgid "Dashed"
246
+ msgstr "Gestreept"
247
+
248
+ msgid "Solid"
249
+ msgstr "Solide"
250
+
251
+ msgid "Double"
252
+ msgstr "Dubbel"
253
+
254
+ msgid "Groove"
255
+ msgstr "Groef"
256
+
257
+ msgid "Ridge"
258
+ msgstr "Ribbel"
259
+
260
+ msgid "Inset"
261
+ msgstr "Insprong"
262
+
263
+ msgid "Outset"
264
+ msgstr "Uitsprong"
265
+
266
+ msgid "Field"
267
+ msgstr "Veld"
268
+
269
+ msgid "Order"
270
+ msgstr "Volgorde"
271
+
272
+ msgid "Ascending"
273
+ msgstr "Oplopend"
274
+
275
+ msgid "Descending"
276
+ msgstr "Aflopend"
277
+
278
+ msgid "Off"
279
+ msgstr "Uit"
280
+
281
+ msgid "On"
282
+ msgstr "Aan"
283
+
284
+ msgid "Hold down the ctrl (Windows) or command (MAC) button to select multiple options."
285
+ msgstr "Houd de ctrl (Windows) of command (MAC) knop ingedrukt om meerdere opties te selecteren."
286
+
287
+ msgid "Fill"
288
+ msgstr "Opvullen"
289
+
290
+ msgid "Blur fit"
291
+ msgstr "Wazig inpassen"
292
+
293
+ msgid "Fit"
294
+ msgstr "Inpassen"
295
+
296
+ msgid "Stretch"
297
+ msgstr "Uitrekken"
298
+
299
+ msgid "Center"
300
+ msgstr "Midden"
301
+
302
+ msgid "Slider's default"
303
+ msgstr "Standaard van de slider"
304
+
305
+ msgid "All"
306
+ msgstr "Allemaal"
307
+
308
+ #, php-format
309
+ msgid "Not %s"
310
+ msgstr "Niet %s"
311
+
312
+ msgid "Bold"
313
+ msgstr "Vet"
314
+
315
+ msgid "Extra light"
316
+ msgstr "Extra licht"
317
+
318
+ msgid "Light"
319
+ msgstr "Licht"
320
+
321
+ msgid "Semi bold"
322
+ msgstr "Semi vet"
323
+
324
+ msgid "Extra bold"
325
+ msgstr "Extra vet"
326
+
327
+ msgid "Self"
328
+ msgstr "Zelfde venster"
329
+
330
+ msgid "New"
331
+ msgstr "Nieuw venster"
332
+
333
+ msgid "Parent"
334
+ msgstr "Bovenliggend venster"
335
+
336
+ msgid "Top"
337
+ msgstr "Bovenaan"
338
+
339
+ msgid "Select images for devices"
340
+ msgstr "Selecteer afbeeldingen voor toestellen"
341
+
342
+ msgid "Select a page or a blog post from your WordPress site."
343
+ msgstr "Selecteer een pagina of een blog inzending van uw WordPress site."
344
+
345
+ msgid "Select article or menu item from your site."
346
+ msgstr "Selecteer een artikel of een menu item van uw site."
347
+
348
+ msgid "Reset to normal state"
349
+ msgstr "Stel terug in op normale status"
350
+
351
+ msgid "Default"
352
+ msgstr "Standaard"
353
+
354
+ msgid "The image is empty"
355
+ msgstr "De afbeelding is leeg"
356
+
357
+ msgid "Empty"
358
+ msgstr "Leeg"
359
+
360
+ msgid "Image manager"
361
+ msgstr "Beheer afbeeldingen"
362
+
363
+ msgid "Desktop retina"
364
+ msgstr "Desktop retina"
365
+
366
+ msgid "Image"
367
+ msgstr "Afbeelding"
368
+
369
+ #, php-format
370
+ msgid "The %1$s is not turned on in your server, which is necessary to read rss feeds. You should contact your server host, and ask them to enable it!"
371
+ msgstr "De %1$s is niet ingeschakeld in uw server, hetgeen nodig is voor het lezen van rss feeds. Contacteer uw server host en vraag hem het te activeren!"
372
+
373
+ #, php-format
374
+ msgid "%s is not readable"
375
+ msgstr "%s is niet leesbaar"
376
+
377
+ msgid "Style manager"
378
+ msgstr "Stijlbeheer"
379
+
380
+ msgid "Style settings"
381
+ msgstr "Stijl instellingen"
382
+
383
+ msgid "Background color"
384
+ msgstr "Achtergrondkleur"
385
+
386
+ msgid "Opacity"
387
+ msgstr "Ondoorzichtigheid"
388
+
389
+ msgid "Padding"
390
+ msgstr "Opvulling"
391
+
392
+ msgid "Border"
393
+ msgstr "Rand"
394
+
395
+ msgid "Border radius"
396
+ msgstr "Straal van rand"
397
+
398
+ msgid "Box shadow"
399
+ msgstr "Vak schaduw"
400
+
401
+ msgid "Single"
402
+ msgstr "Individueel"
403
+
404
+ msgid "Simple"
405
+ msgstr "Simpel"
406
+
407
+ msgid "Box"
408
+ msgstr "Vak"
409
+
410
+ msgid "Heading active"
411
+ msgstr "Hoofding actief"
412
+
413
+ msgid "Dashboard"
414
+ msgstr "Bedieningspaneel"
415
+
416
+ msgid "Drop files here"
417
+ msgstr "Laat bestanden hier vallen"
418
+
419
+ msgid "Parent directory"
420
+ msgstr "Moedermap"
421
+
422
+ msgid "Current path"
423
+ msgstr "Huidig pad"
424
+
425
+ msgid "Preset"
426
+ msgstr "Voorinstelling"
427
+
428
+ msgid "You can use presets to save style settings for later use. Clicking on any preset will load its styling to your current layer, and the previous style settings will be lost."
429
+ msgstr "U kunt voorinstellingen gebruiken om stijl instellingen op te slaan voor later gebruik. Het klikken op eender welke voorinstelling zal de stijl ervan inladen in uw huidige laag en de vorige stijl instelling zal verloren gaan."
430
+
431
+ msgid "Layer design options affect every device. If you need to make responsive adjustments, look for the options with the device icon."
432
+ msgstr "Laag ontwerp opties hebben invloed op elk toestel. Als u responsive aanpassingen moet doen kijk dan naar de opties met het toestel icoon."
433
+
434
+ msgid "Reset style to default"
435
+ msgstr "Stijl terug instellen op standaard waarde"
436
+
437
+ msgid "Save style as new preset"
438
+ msgstr "Stijl opslaan als nieuwe voorinstelling"
439
+
440
+ msgid "Load style"
441
+ msgstr "Stijl inladen"
442
+
443
+ msgid "You have not created any presets for this layer yet."
444
+ msgstr "U hebt nog geen voorinstellingen aangemaakt voor deze laag."
445
+
446
+ msgid "Save as"
447
+ msgstr "Opslaan als"
448
+
449
+ msgid "Name"
450
+ msgstr "Naam"
451
+
452
+ msgid "Please fill the name field!"
453
+ msgstr "Gelieve het naam veld in te vullen!"
454
+
455
+ msgid "Preset saved."
456
+ msgstr "Voorinstelling opgeslagen."
457
+
458
+ msgid "Overwrite preset"
459
+ msgstr "Voorinstelling overschrijven"
460
+
461
+ msgid "Preset deleted."
462
+ msgstr "Voorinstelling verwijderd."
463
+
464
+ msgid "Choose folder"
465
+ msgstr "Kies map"
466
+
467
+ msgid "Select"
468
+ msgstr "Selecteer"
469
+
470
+ msgid "Disabled"
471
+ msgstr "Gedeactiveerd"
472
+
473
+ msgid "Image field can not be empty!"
474
+ msgstr "Afbeelding veld mag niet leeg zijn!"
475
+
476
+ msgid "Done"
477
+ msgstr "Klaar"
478
+
479
+ msgid "No file selected."
480
+ msgstr "Geen bestand geselecteerd."
481
+
482
+ msgid "Open docs"
483
+ msgstr "Open documenten"
484
+
485
+ msgid "The changes you made will be lost if you navigate away from this page."
486
+ msgstr "De veranderingen die u hebt aangebracht zullen verloren gaan als u deze pagina verlaat."
487
+
488
+ msgid "Icons"
489
+ msgstr "Iconen"
490
+
491
+ msgid "Search"
492
+ msgstr "Zoeken"
493
+
494
+ msgid "Are you sure?"
495
+ msgstr "Bent u zeker?"
496
+
497
+ #, javascript-format
498
+ msgid "You're about to %s. "
499
+ msgstr "U staat op het punt om te %s. "
500
+
501
+ #, javascript-format
502
+ msgid "The deletion is irreversible, and it's not possible to recover %s."
503
+ msgstr "Het verwijderen is onomkeerbaar en het is niet mogelijk om %s te herstellen."
504
+
505
+ msgid "Cancel"
506
+ msgstr "Annuleren"
507
+
508
+ msgid "Delete"
509
+ msgstr "Verwijderen"
510
+
511
+ msgid "Close"
512
+ msgstr "Sluiten"
513
+
514
+ msgid "Create group"
515
+ msgstr "Groep maken"
516
+
517
+ msgid "Group name"
518
+ msgstr "Groepsnaam"
519
+
520
+ msgid "Group created"
521
+ msgstr "Groep aangemaakt"
522
+
523
+ msgid "Records"
524
+ msgstr "Records"
525
+
526
+ msgid "Keyboard shortcuts"
527
+ msgstr "Toetsenbord snelkoppelingen"
528
+
529
+ msgid "Got it"
530
+ msgstr "Ik begrijp het"
531
+
532
+ msgid "General"
533
+ msgstr "Algemeen"
534
+
535
+ msgid "Content tab"
536
+ msgstr "Inhoud tab"
537
+
538
+ msgid "Style tab"
539
+ msgstr "Stijl tab"
540
+
541
+ msgid "Animation tab"
542
+ msgstr "Animatie tab"
543
+
544
+ msgid "Add Layer"
545
+ msgstr "Laag toevoegen"
546
+
547
+ msgid "Layer List"
548
+ msgstr "Lijst met lagen"
549
+
550
+ msgid "Timeline"
551
+ msgstr "Tijdlijn"
552
+
553
+ msgid "View"
554
+ msgstr "Weergave"
555
+
556
+ msgid "Adjust"
557
+ msgstr "Aanpassen"
558
+
559
+ msgid "Move (Absolute)"
560
+ msgstr "Verplaatsen (absoluut)"
561
+
562
+ msgid "Arrows"
563
+ msgstr "Pijlen"
564
+
565
+ msgid "Align (Absolute)"
566
+ msgstr "Uitlijnen (absoluut)"
567
+
568
+ msgid "Numeric keys"
569
+ msgstr "Numerieke toetsen"
570
+
571
+ msgid "Action"
572
+ msgstr "Actie"
573
+
574
+ msgid "Duplicate"
575
+ msgstr "Klonen"
576
+
577
+ msgid "Copy"
578
+ msgstr "Kopiëren"
579
+
580
+ msgid "Paste"
581
+ msgstr "Plakken"
582
+
583
+ msgid "Undo"
584
+ msgstr "Ongedaan maken"
585
+
586
+ msgid "Redo"
587
+ msgstr "Nogmaals uitvoeren"
588
+
589
+ msgid "Save"
590
+ msgstr "Opslaan"
591
+
592
+ msgid "Play animations"
593
+ msgstr "Speel animaties"
594
+
595
+ msgid "Clear device specific settings"
596
+ msgstr "Toestel specifieke instellingen leegmaken"
597
+
598
+ msgid "Current layer, current device"
599
+ msgstr "Huidige laag, huidig toestel"
600
+
601
+ msgid "Current layer, all devices"
602
+ msgstr "Huidige laag, alle toestellen"
603
+
604
+ msgid "All layers, current device"
605
+ msgstr "Alle lagen, huidig toestel"
606
+
607
+ msgid "All layers, all devices"
608
+ msgstr "Alle lagen, alle toestellen"
609
+
610
+ msgid "Unexpected response"
611
+ msgstr "Onverwacht antwoord"
612
+
613
+ msgid "Scroll to"
614
+ msgstr "Scroll naar"
615
+
616
+ msgid "Scroll to alias"
617
+ msgstr "Scroll naar alias"
618
+
619
+ msgid "Go to slide"
620
+ msgstr "Ga naar slide"
621
+
622
+ msgid "Go to slide ID"
623
+ msgstr "Ga naar slide ID"
624
+
625
+ msgid "Previous slide"
626
+ msgstr "Vorige slide"
627
+
628
+ msgid "Next slide"
629
+ msgstr "Volgende slide"
630
+
631
+ msgid "Slide event"
632
+ msgstr "Slide evenement"
633
+
634
+ msgid "Examples"
635
+ msgstr "Voorbeelden"
636
+
637
+ msgid "Scrolls to the top of the page."
638
+ msgstr "Scrollt naar de bovenkant van de pagina."
639
+
640
+ msgid "Scrolls to the bottom of the page."
641
+ msgstr "Scrollt naar de onderkant van de pagina."
642
+
643
+ msgid "You can use any jQuery selector to scroll to a specific element on the page. Example: \"#pricing\" scrolls to the element with the id of \"pricing\"."
644
+ msgstr "U mag eender welke jQuery selector gebruiken om te scrollen naar een specifiek element op de pagina. Bijvoorbeeld: \"#pricing\" scrollt naar het element met het id \"pricing\"."
645
+
646
+ msgid "Slider alias"
647
+ msgstr "Slider alias"
648
+
649
+ msgid "Slider alias set at Slider settings > General"
650
+ msgstr "Slider alias ingesteld in de Slider instellingen > Algemeen"
651
+
652
+ msgid "Slide index"
653
+ msgstr "Slide index"
654
+
655
+ msgid "Direction"
656
+ msgstr "Richting"
657
+
658
+ msgid "Auto"
659
+ msgstr "Automatisch"
660
+
661
+ msgid "Backward"
662
+ msgstr "Achteruit"
663
+
664
+ msgid "Forward"
665
+ msgstr "Vooruit"
666
+
667
+ #, javascript-format
668
+ msgid "slide index: 2 %s direction: backward"
669
+ msgstr "slide index: 2 %s richting: achteruit"
670
+
671
+ msgid "Switches to the second slide as if the previous arrow was pressed"
672
+ msgstr "Schakelt naar de tweede slide alsof er op de vorige pijl geklikt werd"
673
+
674
+ #, javascript-format
675
+ msgid "slide index: 5 %s direction: forward"
676
+ msgstr "slide index: 5 %s richting: vooruit"
677
+
678
+ msgid "Switches to the fifth slide as if the next arrow was pressed"
679
+ msgstr "Schakelt naar de vijfde slide alsof er op de volgende pijl geklikt werd"
680
+
681
+ msgid "Slide ID"
682
+ msgstr "Slide ID"
683
+
684
+ msgid "Switches to the slide with the #2 ID as if the previous arrow was pressed"
685
+ msgstr "Schakelt naar de slide met het #2 ID alsof er op de vorige pijl geklikt werd"
686
+
687
+ msgid "Switches to the slide with the #5 ID as if the next arrow was pressed"
688
+ msgstr "Schakelt naar de slide met het #5 ID alsof er op de volgende pijl geklikt werd"
689
+
690
+ msgid "Event name"
691
+ msgstr "Evenement naam"
692
+
693
+ msgid "An event you use to trigger layer animation(s) with"
694
+ msgstr "Een evenement dat u gebruikt om de laag animatie(s) te activeren"
695
+
696
+ msgid "Content List - One Per Line"
697
+ msgstr "Inhoudslijst - Eén per regel"
698
+
699
+ msgid "Choose images"
700
+ msgstr "Kies afbeeldingen"
701
+
702
+ msgid "Titles - One Per Line"
703
+ msgstr "Titels - Eén per regel"
704
+
705
+ msgid "Autoplay duration"
706
+ msgstr "Duur automatisch afspelen"
707
+
708
+ msgid "URL"
709
+ msgstr "URL"
710
+
711
+ msgid "Search keyword"
712
+ msgstr "Zoek trefwoord"
713
+
714
+ msgid "Posts"
715
+ msgstr "Inzendingen"
716
+
717
+ msgid "Lightbox"
718
+ msgstr "Lightbox"
719
+
720
+ msgid "Insert"
721
+ msgstr "Invoegen"
722
+
723
+ msgid "Oops, Something Went Wrong"
724
+ msgstr "Oeps. Er ging iets mis"
725
+
726
+ msgid "Success"
727
+ msgstr "Gelukt"
728
+
729
+ msgid "Notice"
730
+ msgstr "Opmerking"
731
+
732
+ msgid "Select image"
733
+ msgstr "Selecteer afbeelding"
734
+
735
+ msgid "Use Joomla selector"
736
+ msgstr "Gebruik Joomla selector"
737
+
738
+ msgid "Use default selector"
739
+ msgstr "Gebruik standaard selector"
740
+
741
+ msgid "Deleted."
742
+ msgstr "Verwijderd."
743
+
744
+ msgid "Static"
745
+ msgstr "Statisch"
746
+
747
+ msgid "Save as New"
748
+ msgstr "Opslaan als nieuw"
749
+
750
+ msgid "Saved."
751
+ msgstr "Opgeslagen."
752
+
753
+ msgid "Enabled"
754
+ msgstr "Geactiveerd"
755
+
756
+ msgid "Column"
757
+ msgstr "Kolom"
758
+
759
+ msgid "There is no layer available to be parent of the current layer!"
760
+ msgstr "Er is geen laag beschikbaar om de moeder te zijn van de huidige laag!"
761
+
762
+ msgid "Pick the parent layer!"
763
+ msgstr "Kies de moederlaag!"
764
+
765
+ msgid "Pick the align point of the parent layer!"
766
+ msgstr "Kies het uitlijningspunt van de moederlaag!"
767
+
768
+ msgid "Pick the align point of the child layer!"
769
+ msgstr "Kies het uitlijningspunt van de onderliggende laag!"
770
+
771
+ msgid "Advanced"
772
+ msgstr "Uitgebreid"
773
+
774
+ #, javascript-format
775
+ msgid "Outer %s"
776
+ msgstr "Buitenste %s"
777
+
778
+ msgid "Left"
779
+ msgstr "Links"
780
+
781
+ msgid "Right"
782
+ msgstr "Rechts"
783
+
784
+ msgid "Middle"
785
+ msgstr "Midden"
786
+
787
+ msgid "Bottom"
788
+ msgstr "Onderkant"
789
+
790
+ msgid "Layer(s)"
791
+ msgstr "Laag/Lagen"
792
+
793
+ msgid "Hide on"
794
+ msgstr "Verberg op"
795
+
796
+ msgid "Rename"
797
+ msgstr "Hernoemen"
798
+
799
+ msgid "Show/Hide in editor"
800
+ msgstr "Tonen/verbergen in editor"
801
+
802
+ msgid "Animation"
803
+ msgstr "Animatie"
804
+
805
+ msgid "Add animation"
806
+ msgstr "Animatie toevoegen"
807
+
808
+ msgid "Remove animations"
809
+ msgstr "Verwijder animaties"
810
+
811
+ msgid "Layer Animation - Basic"
812
+ msgstr "Laag animatie - Basis"
813
+
814
+ msgid "Add keyframe"
815
+ msgstr "Keyframe toevoegen"
816
+
817
+ msgid "Loop"
818
+ msgstr "Herhalen"
819
+
820
+ msgid "Special Zero"
821
+ msgstr "Speciaal nul"
822
+
823
+ msgid "Keyframe"
824
+ msgstr "Keyframe"
825
+
826
+ msgid "Layer Animation - Reveal"
827
+ msgstr "Laag animatie - Onthullen"
828
+
829
+ msgid "Open/Close"
830
+ msgstr "Openen/Sluiten"
831
+
832
+ msgid "Content"
833
+ msgstr "Inhoud"
834
+
835
+ msgid "Child layers"
836
+ msgstr "Onderliggende lagen"
837
+
838
+ msgid "Animated heading"
839
+ msgstr "Geanimeerde hoofding"
840
+
841
+ msgid "Highlighted heading"
842
+ msgstr "Geaccentueerde hoofding"
843
+
844
+ msgid "Text animation in"
845
+ msgstr "Tekst animatie in"
846
+
847
+ msgid "Text animation out"
848
+ msgstr "Tekst animatie uit"
849
+
850
+ msgid "Layer"
851
+ msgstr "Laag"
852
+
853
+ msgid "Row"
854
+ msgstr "Rij"
855
+
856
+ msgid "Slide"
857
+ msgstr "Slide"
858
+
859
+ msgid "Theme"
860
+ msgstr "Thema"
861
+
862
+ #, javascript-format
863
+ msgid "%s or newer required for this feature."
864
+ msgstr "%s of nieuwer is vereist voor deze mogelijkheid."
865
+
866
+ msgid "This section requires activated Pro version."
867
+ msgstr "Deze sectie vereist een geactiveerde Pro versie."
868
+
869
+ #, javascript-format
870
+ msgid "This block is not available in the free version. %s"
871
+ msgstr "Dit blok is niet beschikbaar in de gratis versie. %s"
872
+
873
+ msgid "Go Pro"
874
+ msgstr "Word Pro"
875
+
876
+ msgid "Editor settings"
877
+ msgstr "Editor instellingen"
878
+
879
+ msgid "Upgrade to Pro"
880
+ msgstr "Upgrade naar Pro"
881
+
882
+ msgid "Guide settings"
883
+ msgstr "Gidslijn instellingen"
884
+
885
+ msgid "Smart snap"
886
+ msgstr "Slim aanhechten"
887
+
888
+ msgid "Round to 5px"
889
+ msgstr "Rond af op 5px"
890
+
891
+ msgid "Ruler"
892
+ msgstr "Liniaal"
893
+
894
+ msgid "Clear guides"
895
+ msgstr "Gidslijnen leegmaken"
896
+
897
+ msgid "Activate Smart Slider 3 Pro"
898
+ msgstr "Activeer Smart Slider 3 Pro"
899
+
900
+ msgid "Activation is required to unlock all features!"
901
+ msgstr "Activatie is vereist om alle mogelijkheden te ontsluiten!"
902
+
903
+ msgid "Register Smart Slider 3 Pro on this domain to enable auto update, slider templates and slide library."
904
+ msgstr "Registreer Smart Slider 3 Pro op dit domein om automatische updates, slider templates en de slide bibliotheek te activeren."
905
+
906
+ msgid "Skip"
907
+ msgstr "Overslaan"
908
+
909
+ msgid "Activate"
910
+ msgstr "Activeer"
911
+
912
+ msgid "Smart Slider 3 activated!"
913
+ msgstr "Smart Slider 3 geaactiveerd!"
914
+
915
+ msgid "Laptop"
916
+ msgstr "Laptop"
917
+
918
+ msgid "Width"
919
+ msgstr "Breedte"
920
+
921
+ msgid "Height"
922
+ msgstr "Hoogte"
923
+
924
+ #, javascript-format
925
+ msgid "Below %s pixels."
926
+ msgstr "Onder %s pixels."
927
+
928
+ #, javascript-format
929
+ msgid "Boven %s pixels."
930
+ msgstr "Boven %s pixels."
931
+
932
+ #, javascript-format
933
+ msgid "Between %s and %s pixels."
934
+ msgstr "Tussen %s en %s pixels."
935
+
936
+ #, javascript-format, php-format
937
+ msgid "This slide is hidden on the following devices: %s"
938
+ msgstr "Deze slide wordt verborgen op de volgende toestellen: %s"
939
+
940
+ msgid "Data"
941
+ msgstr "Data"
942
+
943
+ msgid "Filter"
944
+ msgstr "Filter"
945
+
946
+ msgid "No"
947
+ msgstr "Nee"
948
+
949
+ msgid "Clean HTML"
950
+ msgstr "HTML opkuisen"
951
+
952
+ msgid "Remove HTML"
953
+ msgstr "HTML verwijderen"
954
+
955
+ msgid "Split by Chars"
956
+ msgstr "Splits op lettertekens"
957
+
958
+ msgid "Strict"
959
+ msgstr "Strikt"
960
+
961
+ msgid "Respect words"
962
+ msgstr "Respecteer woorden"
963
+
964
+ msgid "Find image"
965
+ msgstr "Zoek afbeelding"
966
+
967
+ msgid "Find link"
968
+ msgstr "Zoek link"
969
+
970
+ msgid "Remove links"
971
+ msgstr "Verwijder links"
972
+
973
+ msgid "Remove line breaks"
974
+ msgstr "Verwijder nieuwe regels"
975
+
976
+ msgid "Result"
977
+ msgstr "Resultaat"
978
+
979
+ msgid "Change slider type"
980
+ msgstr "Verander slider type"
981
+
982
+ msgid "Changing your slider type is irreversible. After changing your slider type, <b>you will lose all slider type related settings</b>."
983
+ msgstr "Het veranderen van uw slider type is onomkeerbaar. Na het veranderen van uw slider type, <b>zult u alle instellingen voor dat slider type verliezen</b>."
984
+
985
+ msgid "Slider type"
986
+ msgstr "Slider type"
987
+
988
+ msgid "Convert"
989
+ msgstr "Omvormen"
990
+
991
+ msgid "What do you want to create today?"
992
+ msgstr "Wat wilt u vandaag maken?"
993
+
994
+ msgid "Use our powerful visual editor, or simply import one of our existing template."
995
+ msgstr "Gebruik onze krachtige visuele editor of importeer eenvoudigweg één van onze bestaande templates."
996
+
997
+ msgid "Create a New Project"
998
+ msgstr "Maak een nieuw project"
999
+
1000
+ msgid "Start a new project from scratch and build exactly what you’ve imagined. You can easily customize every pixels and create anything with layers."
1001
+ msgstr "Begin een nieuw project vanaf nul en bouw exact datgene wat u zich ingebeeld hebt. U kunt gemakkelijk elke pixel aanpassen en eender wat met lagen aanmaken."
1002
+
1003
+ msgid "Start with a Template"
1004
+ msgstr "Begin met een template"
1005
+
1006
+ msgid "Start with a template and make it your own with the innovative drag and drop interface. You can choose from hundreds of premade templates."
1007
+ msgstr "Begin met een template en maak er uw eigen versie van met de innovatieve drag en drop interface. U kunt kiezen uit honderden vooraf gemaakte templates."
1008
+
1009
+ msgid "or import your own files"
1010
+ msgstr "of importeer uw eigen bestanden"
1011
+
1012
+ msgid "Create new project"
1013
+ msgstr "Maak nieuw project"
1014
+
1015
+ msgid "Project type"
1016
+ msgstr "Project type"
1017
+
1018
+ msgid "Slider"
1019
+ msgstr "Slider"
1020
+
1021
+ msgid "Block"
1022
+ msgstr "Blok"
1023
+
1024
+ msgid "Full page"
1025
+ msgstr "Volledige pagina"
1026
+
1027
+ msgid "Carousel"
1028
+ msgstr "Carousel"
1029
+
1030
+ msgid "Showcase"
1031
+ msgstr "Etalage"
1032
+
1033
+ msgid "Pro"
1034
+ msgstr "Pro"
1035
+
1036
+ msgid "Settings"
1037
+ msgstr "Instellingen"
1038
+
1039
+ msgid "My project"
1040
+ msgstr "Mijn project"
1041
+
1042
+ msgid "Boxed"
1043
+ msgstr "In een box"
1044
+
1045
+ msgid "Full width"
1046
+ msgstr "Volledige breedte"
1047
+
1048
+ msgid "Layout"
1049
+ msgstr "Lay-out"
1050
+
1051
+ msgid "Slide width"
1052
+ msgstr "Slide breedte"
1053
+
1054
+ msgid "Slide height"
1055
+ msgstr "Slide hoogte"
1056
+
1057
+ msgid "Create"
1058
+ msgstr "Aanmaken"
1059
+
1060
+ msgid "Join The Smart Slider 3 Community"
1061
+ msgstr "Word lid van de Smart Slider 3 Community"
1062
+
1063
+ msgid "Join more than 120,000 subscribers and get access to the latest slider templates, tips, tutorials and other exclusive contents directly to your inbox."
1064
+ msgstr "Word één van de meer dan 120.000 abonnees en krijg de laatste slider templates, tips, handleidingen en andere exclusieve inhoud direct in uw inbox."
1065
+
1066
+ msgid "Subscribe"
1067
+ msgstr "Abonneren"
1068
+
1069
+ msgid "Change group"
1070
+ msgstr "Verander groep"
1071
+
1072
+ msgid "Groups"
1073
+ msgstr "Groepen"
1074
+
1075
+ msgid "Set"
1076
+ msgstr "Set"
1077
+
1078
+ msgid "Up"
1079
+ msgstr "Omhoog"
1080
+
1081
+ msgid "Insert group"
1082
+ msgstr "Groep invoegen"
1083
+
1084
+ msgid "Group"
1085
+ msgstr "Groep"
1086
+
1087
+ msgid "Move to trash"
1088
+ msgstr "Verplaats naar prullenbak"
1089
+
1090
+ msgid "empty the trash"
1091
+ msgstr "maak de prullenbak leeg"
1092
+
1093
+ msgid "Delete permanently"
1094
+ msgstr "Permanent verwijderen"
1095
+
1096
+ msgid "delete this slider"
1097
+ msgstr "verwijder deze slider"
1098
+
1099
+ msgid "Publish"
1100
+ msgstr "Publiceren"
1101
+
1102
+ msgid "Unpublish"
1103
+ msgstr "Depubliceren"
1104
+
1105
+ msgid "Edit generator"
1106
+ msgstr "Generator bewerken"
1107
+
1108
+ msgid "Set as first"
1109
+ msgstr "Instellen als eerste"
1110
+
1111
+ msgid "Convert to slide"
1112
+ msgstr "Omvormen tot slide"
1113
+
1114
+ msgid "Copy slide to"
1115
+ msgstr "Kopieer slide naar"
1116
+
1117
+ msgid "Add post"
1118
+ msgstr "Inzending toevoegen"
1119
+
1120
+ msgid "Please select a Post first!"
1121
+ msgstr "Gelieve eerst een inzending te kiezen!"
1122
+
1123
+ msgid "delete these slides"
1124
+ msgstr "verwijder deze slides"
1125
+
1126
+ msgid "delete this slide"
1127
+ msgstr "verwijder deze slide"
1128
+
1129
+ msgid "Animations"
1130
+ msgstr "Animaties"
1131
+
1132
+ msgid "Effects"
1133
+ msgstr "Effecten"
1134
+
1135
+ msgid "Shape divider"
1136
+ msgstr "Vorm scheiding"
1137
+
1138
+ msgid "Particle effect"
1139
+ msgstr "Partikel effect"
1140
+
1141
+ msgid "Layer animations"
1142
+ msgstr "Laag animaties"
1143
+
1144
+ msgid "Play on load"
1145
+ msgstr "Speel bij inladen"
1146
+
1147
+ msgid "Plays the layer animations on the first slide when it appears for the first time."
1148
+ msgstr "Speelt de laag animaties op de eerste slide als deze voor de eerste keer verschijnt."
1149
+
1150
+ msgid "Play once"
1151
+ msgstr "Speel eenmalig"
1152
+
1153
+ msgid "Plays the layer animations only during the first loop."
1154
+ msgstr "Speelt de laag animaties alleen tijdens de eerste uitvoering."
1155
+
1156
+ msgid "Play on"
1157
+ msgstr "Speel op"
1158
+
1159
+ msgid "Main animation start"
1160
+ msgstr "Start hoofdanimatie"
1161
+
1162
+ msgid "Main animation end"
1163
+ msgstr "Einde hoofdanimatie"
1164
+
1165
+ msgid "Mode"
1166
+ msgstr "Modus"
1167
+
1168
+ msgid "Skippable"
1169
+ msgstr "Mag overgeslagen worden"
1170
+
1171
+ msgid "Forced"
1172
+ msgstr "Geforceerd"
1173
+
1174
+ msgid "You can make the outgoing layer animations, which don't have events, to play on slide switching."
1175
+ msgstr "U kunt ervoor zorgen dat de uitgaande laag animaties, die geen evenementen hebben, bij het wisselen van slide afgespeeld worden."
1176
+
1177
+ msgid "Layer parallax"
1178
+ msgstr "Laag parallax"
1179
+
1180
+ msgid "Enable"
1181
+ msgstr "Activeren"
1182
+
1183
+ msgid "Animate"
1184
+ msgstr "Animeren"
1185
+
1186
+ msgid "Horizontal"
1187
+ msgstr "Horizontaal"
1188
+
1189
+ msgid "Mouse"
1190
+ msgstr "Muis"
1191
+
1192
+ msgid "Invert"
1193
+ msgstr "Omkeren"
1194
+
1195
+ msgid "Vertical"
1196
+ msgstr "Verticaal"
1197
+
1198
+ msgid "Scroll"
1199
+ msgstr "Scrollen"
1200
+
1201
+ msgid "Mouse origin"
1202
+ msgstr "Muis oorsprong"
1203
+
1204
+ msgid "Slider center"
1205
+ msgstr "Slider centrum"
1206
+
1207
+ msgid "Mouse enter position"
1208
+ msgstr "Muis in positie"
1209
+
1210
+ msgid "Scroll move"
1211
+ msgstr "Scrollend bewegen"
1212
+
1213
+ msgid "Both"
1214
+ msgstr "Beide"
1215
+
1216
+ msgid "To bottom"
1217
+ msgstr "Naar beneden"
1218
+
1219
+ msgid "To top"
1220
+ msgstr "Naar boven"
1221
+
1222
+ msgid "Autoplay"
1223
+ msgstr "Automatisch spelen"
1224
+
1225
+ msgid "Slide duration"
1226
+ msgstr "Slide duur"
1227
+
1228
+ msgid "Autostart"
1229
+ msgstr "Automatisch starten"
1230
+
1231
+ msgid "Allow restart"
1232
+ msgstr "Laat herstarten toe"
1233
+
1234
+ msgid "Keeps the autoplay control visible after the autoplay has finished to allow starting it again."
1235
+ msgstr "Houd de bediening voor het automatisch spelen zichtbaar nadat het automatisch spelen afgelopen is om toe te laten het opnieuw te starten."
1236
+
1237
+ msgid "Infinite loop"
1238
+ msgstr "Oneindige herhaling"
1239
+
1240
+ msgid "Finish autoplay"
1241
+ msgstr "Einde automatisch spelen"
1242
+
1243
+ msgid "Stop on click"
1244
+ msgstr "Stop bij klikken"
1245
+
1246
+ msgid "Stop on mouse"
1247
+ msgstr "Stop bij muis"
1248
+
1249
+ msgid "Enter"
1250
+ msgstr "Binnengaan"
1251
+
1252
+ msgid "Leave"
1253
+ msgstr "Buitengaan"
1254
+
1255
+ msgid "Stop on media"
1256
+ msgstr "Stop bij media"
1257
+
1258
+ msgid "Resume on click"
1259
+ msgstr "Herneem bij klikken"
1260
+
1261
+ msgid "Resume on mouse"
1262
+ msgstr "Herneem bij muis"
1263
+
1264
+ msgid "Resume on media"
1265
+ msgstr "Herneem bij media"
1266
+
1267
+ msgid "Controls"
1268
+ msgstr "Bedieningselementen"
1269
+
1270
+ msgid "Drag"
1271
+ msgstr "Slepen"
1272
+
1273
+ msgid "Defines the drag (and touch) direction for your slider."
1274
+ msgstr "Bepaalt de sleep (en aanraking) richting voor uw slider."
1275
+
1276
+ msgid "Mouse wheel"
1277
+ msgstr "Muiswiel"
1278
+
1279
+ msgid "Allows switching slides with the mouse wheel."
1280
+ msgstr "Laat het wisselen van slides met het muiswiel toe."
1281
+
1282
+ msgid "Keyboard"
1283
+ msgstr "Toetsenbord"
1284
+
1285
+ msgid "Allows switching slides with the keyboard."
1286
+ msgstr "Laat het wisselen van slides met het toetsenbord toe."
1287
+
1288
+ msgid "Developer"
1289
+ msgstr "Ontwikkelaar"
1290
+
1291
+ msgid "Block right click"
1292
+ msgstr "Blokkeer rechts klikken"
1293
+
1294
+ msgid "Block carousel"
1295
+ msgstr "Blokkeer carousel"
1296
+
1297
+ msgid "Stops the carousel at the last slide when the source of interaction is vertical touch, vertical pointer, mouse wheel or vertical keyboard."
1298
+ msgstr "Stopt de carousel op de laatste slide als de bron van de interactie verticale touch, verticale pointer, muiswiel of verticaal toetsenbord is."
1299
+
1300
+ msgid "Clear before"
1301
+ msgstr "Ervoor leegmaken"
1302
+
1303
+ msgid "Closes the unclosed float CSS codes before the slider."
1304
+ msgstr "Sluit de onafgesloten zwevende CSS codes voor de slider."
1305
+
1306
+ msgid "Clear after"
1307
+ msgstr "Erna leegmaken"
1308
+
1309
+ msgid "Allows you to put your slider next to your text."
1310
+ msgstr "Laat u toe uw slider naast uw tekst te plaatsen."
1311
+
1312
+ msgid "Hide scrollbar"
1313
+ msgstr "Verberg scrollbalk"
1314
+
1315
+ msgid "Your website won't be scrollable anymore! All out of screen elements will be hidden."
1316
+ msgstr "Uw website zal niet langer scrollbaar zijn! Alle elementen die buiten het scherm vallen zullen verborgen zijn."
1317
+
1318
+ msgid "Scroll to slider"
1319
+ msgstr "Scroll naar slider"
1320
+
1321
+ msgid "The page scrolls back to the slider when the user interacts with it."
1322
+ msgstr "De pagina scrollt terug naar de slider als de gebruiker ermee interageert."
1323
+
1324
+ msgid "Edge"
1325
+ msgstr "Rand"
1326
+
1327
+ msgid "Top - when needed"
1328
+ msgstr "Bovenaan - indien nodig"
1329
+
1330
+ msgid "Top - always"
1331
+ msgstr "Bovenaan - altijd"
1332
+
1333
+ msgid "Bottom - when needed"
1334
+ msgstr "Onderaan - indien nodig"
1335
+
1336
+ msgid "Bottom - always"
1337
+ msgstr "Onderaan - altijd"
1338
+
1339
+ msgid "Delayed (for lightbox/tabs)"
1340
+ msgstr "Uitgesteld (voor lightbox/tabs)"
1341
+
1342
+ msgid "Delays the loading of the slider until its container gets visible. Useful when you display the slider in a lightbox or tab."
1343
+ msgstr "Stelt het inladen van de slider uit tot haar container zichtbaar is. Nuttig als u de slider toont in een lightbox of een tab."
1344
+
1345
+ msgid "Legacy font scale"
1346
+ msgstr "Legacy font schaal"
1347
+
1348
+ msgid "This feature brings back the non-adaptive font size for absolute layers which were made before version 3.5. Turning on can affect website performance, so we suggest to keep it disabled.\n"
1349
+ msgstr "Deze mogelijkheid brengt de non-adaptieve font grootte voor absolute lagen terug die voor versie 3.5 gemaakt werden. Dit inschakelen kan een invloed hebben op de performantie van de website, dus raden we aan het uitgeschakeld te laten.\n"
1350
+
1351
+ msgid "Slider CSS classes"
1352
+ msgstr "Slider CSS classes"
1353
+
1354
+ msgid "You can put custom CSS classes to the slider's container."
1355
+ msgstr "U kunt eigen CSS classes aan de container van de slider toevoegen."
1356
+
1357
+ msgid "JavaScript callbacks"
1358
+ msgstr "JavaScript callbacks"
1359
+
1360
+ msgid "Post IDs"
1361
+ msgstr "Post IDs"
1362
+
1363
+ msgid "one per line"
1364
+ msgstr "een per regel"
1365
+
1366
+ msgid "The cache of the posts with the given ID will be cleared upon save."
1367
+ msgstr "De cache van de inzendingen met het gegeven ID zal bij het opslaan leeggemaakt worden."
1368
+
1369
+ msgid "Fallback slider"
1370
+ msgstr "Terugval slider"
1371
+
1372
+ msgid "ID or Alias"
1373
+ msgstr "ID of alias"
1374
+
1375
+ msgid "Select another slider by its ID or Alias that displays if your current slider has no published slides."
1376
+ msgstr "Selecteer een andere slider via zijn ID of alias die getoond zal worden als uw huidige slider geen gepubliceerde slides bevat."
1377
+
1378
+ msgid "Thumbnail"
1379
+ msgstr "Miniatuur"
1380
+
1381
+ msgid "Slider thumbnail which appears in the slider list."
1382
+ msgstr "Slider miniatuur die in de slider lijst verschijnt."
1383
+
1384
+ msgid "ARIA label"
1385
+ msgstr "ARIA label"
1386
+
1387
+ msgid "It allows you to label your slider for screen readers."
1388
+ msgstr "Dit laat u toe uw slider te labelen voor schermlezers."
1389
+
1390
+ msgid "Alias"
1391
+ msgstr "Alias"
1392
+
1393
+ msgid "You can use this alias in the slider's shortcode."
1394
+ msgstr "U kunt dit alias in de snelcode van de slider gebruiken."
1395
+
1396
+ msgid "Use as anchor"
1397
+ msgstr "Gebruik als interne link"
1398
+
1399
+ msgid "Creates an empty div before the slider, using the alias as the ID of this div. As a result, you can use #your-alias in the URL to make the page jump to the slider."
1400
+ msgstr "Maakt een lege div voor de slider, gebruik makend van het alias als het ID van deze div. Daardoor kunt u #uw-alias in de URL gebruiken om de pagina naar de slider te doen springen."
1401
+
1402
+ msgid "Smooth scroll"
1403
+ msgstr "Soepel scrollen"
1404
+
1405
+ msgid "The #your-alias urls in links would be forced to smooth scroll to the slider."
1406
+ msgstr "De #uw-alias urls in links zullen geforceerd worden om soepel te scrollen naar de slider."
1407
+
1408
+ msgid "Switch slide"
1409
+ msgstr "Wissel slide"
1410
+
1411
+ msgid "Use #your-alias-2 as an anchor to jump to the slider and switch to the 2nd slide immediately. Use #your-alias-3 for the 3rd slide and so on."
1412
+ msgstr "Gebruik #uw-alias-2 als een anker om naar de slider te springen en onmiddellijk naar de 2de slide te schakelen. Gebruik #uw-alias-3 voor de 3de slide enzovoort."
1413
+
1414
+ msgid "Scroll to slide"
1415
+ msgstr "Scroll naar slide"
1416
+
1417
+ msgid "The \"Switch slide\" option won't scroll you to the slider. Only the slides will switch."
1418
+ msgstr "De \"Wissel slide\" optie zal u niet naar de slider scrollen. Alleen de slides zullen wisselen."
1419
+
1420
+ msgid "Slider design"
1421
+ msgstr "Slider ontwerp"
1422
+
1423
+ msgid "Slider background image"
1424
+ msgstr "Slider achtergrondafbeelding"
1425
+
1426
+ msgid "Fixed"
1427
+ msgstr "Vast"
1428
+
1429
+ msgid "Background video"
1430
+ msgstr "Achtergrond video"
1431
+
1432
+ msgid "Muted"
1433
+ msgstr "Gedempt"
1434
+
1435
+ msgctxt "Video/Audio play"
1436
+ msgid "Loop"
1437
+ msgstr "Herhalen"
1438
+
1439
+ msgid "Fill mode"
1440
+ msgstr "Opvulmodus"
1441
+
1442
+ msgid "Align"
1443
+ msgstr "Uitlijnen"
1444
+
1445
+ msgid "Margin"
1446
+ msgstr "Marge"
1447
+
1448
+ msgid "Puts a fix margin around your slider."
1449
+ msgstr "Plaatst een vaste marge rond uw slider."
1450
+
1451
+ msgid "Perspective"
1452
+ msgstr "Perspectief"
1453
+
1454
+ msgid "Optimize"
1455
+ msgstr "Optimaliseer"
1456
+
1457
+ msgid "Loading"
1458
+ msgstr "Inladen"
1459
+
1460
+ msgid "Loading type"
1461
+ msgstr "Type laden"
1462
+
1463
+ msgid "Instant"
1464
+ msgstr "Instant"
1465
+
1466
+ msgid "After page loaded"
1467
+ msgstr "Na pagina geladen"
1468
+
1469
+ msgid "After delay"
1470
+ msgstr "Na wachttijd"
1471
+
1472
+ msgid "If your slider is above the fold, you can load it immediately. Otherwise, you can load it only after the page has loaded."
1473
+ msgstr "Als uw slider zich boven de plooi bevindt dan kunt u hem onmiddellijk inladen. Zoniet kunt u hem alleen inladen nadat de pagina ingeladen is."
1474
+
1475
+ msgid "Load delay"
1476
+ msgstr "Laad wachttijd"
1477
+
1478
+ msgid "Play when visible"
1479
+ msgstr "Speel indien zichtbaar"
1480
+
1481
+ msgid "Makes sure that the autoplay and layer animations only start when your slider is visible."
1482
+ msgstr "Verzekert dat het automatisch spelen en de laag animaties alleen starten als uw slider zichtbaar is."
1483
+
1484
+ msgid "At"
1485
+ msgstr "Op"
1486
+
1487
+ msgid "Slide background images"
1488
+ msgstr "Slide achtergrondafbeeldingen"
1489
+
1490
+ msgid "Loading mode"
1491
+ msgstr "Laad modus"
1492
+
1493
+ msgid "Delayed loading"
1494
+ msgstr "Uitgesteld laden"
1495
+
1496
+ msgid "Lazy loading"
1497
+ msgstr "Lazy laden"
1498
+
1499
+ msgid "You can speed up your site's loading by delaying the slide background images."
1500
+ msgstr "U kunt de inlaadtijd van uw site verbeteren door de achtergrondafbeeldingen van de slide uit te stellen."
1501
+
1502
+ msgid "Load neighbor"
1503
+ msgstr "Laad buur"
1504
+
1505
+ msgctxt "Unit"
1506
+ msgid "slides"
1507
+ msgstr "slides"
1508
+
1509
+ #, php-format
1510
+ msgid "Convert to WebP and image resizing require a lot of memory. Lift the memory limit%s if you get a blank page."
1511
+ msgstr "Omvorming tot WebP en afbeelding herschaling vereisen veel geheugen. Hef de geheugenlimiet%s op als u een blanco pagina krijgt."
1512
+
1513
+ msgid "Convert to WebP"
1514
+ msgstr "Omvormen tot WebP"
1515
+
1516
+ msgid "Resize"
1517
+ msgstr "Herschalen"
1518
+
1519
+ msgid "Quality"
1520
+ msgstr "Kwaliteit"
1521
+
1522
+ msgid "Default width"
1523
+ msgstr "Standaard breedte"
1524
+
1525
+ msgid "Medium width"
1526
+ msgstr "Medium breedte"
1527
+
1528
+ msgid "Medium height"
1529
+ msgstr "Medium hoogte"
1530
+
1531
+ msgid "Small width"
1532
+ msgstr "Kleine breedte"
1533
+
1534
+ msgid "Small height"
1535
+ msgstr "Kleine hoogte"
1536
+
1537
+ msgid "Retina"
1538
+ msgstr "Retina"
1539
+
1540
+ msgid "Instruction"
1541
+ msgstr "Instructie"
1542
+
1543
+ msgid "If your images look blurry on small screens, use the available height option to match the aspect ratio of the slider and image on that device."
1544
+ msgstr "Als uw afbeeldingen wazig zijn op kleine schermen gebruik dan de beschikbare hoogte optie om de verhoudingen van de slider aan te passen aan deze van de afbeelding voor dat toestel."
1545
+
1546
+ msgid "Resize Thumbnail"
1547
+ msgstr "Herschaal miniatuur"
1548
+
1549
+ msgid "Thumbnail Quality"
1550
+ msgstr "Miniatuur kwaliteit"
1551
+
1552
+ msgid "Thumbnail width"
1553
+ msgstr "Miniatuur breedte"
1554
+
1555
+ msgid "Thumbnail height"
1556
+ msgstr "Miniatuur hoogte"
1557
+
1558
+ msgid "Layer images"
1559
+ msgstr "Laag afbeeldingen"
1560
+
1561
+ msgid "Base64 embed"
1562
+ msgstr "Base64 inbedden"
1563
+
1564
+ msgid "Embeds the layer images to the page source, reducing the requests."
1565
+ msgstr "Neemt de laag afbeeldingen op in de paginabron, hetgeen de aanvragen vermindert."
1566
+
1567
+ msgid "Max file size"
1568
+ msgstr "Max grootte bestand"
1569
+
1570
+ msgid "Other"
1571
+ msgstr "Ander"
1572
+
1573
+ msgid "JetPack Photon image optimizer"
1574
+ msgstr "JetPack Photon afbeelding optimalisator"
1575
+
1576
+ msgid "Background video on mobile"
1577
+ msgstr "Achtergrond video op mobieltjes"
1578
+
1579
+ msgid "Slider size"
1580
+ msgstr "Slider grootte"
1581
+
1582
+ msgid "Limit slide width"
1583
+ msgstr "Beperk slide breedte"
1584
+
1585
+ msgid "Limits the width of the slide and prevents the slider from getting too tall."
1586
+ msgstr "Beperkt de breedte van de slide en verhindert dat de slider te groot wordt."
1587
+
1588
+ msgid "Max"
1589
+ msgstr "Max"
1590
+
1591
+ msgid "Breakpoints"
1592
+ msgstr "Breekpunten"
1593
+
1594
+ msgid "Breakpoints define the browser width in pixel when the slider switches to a different device."
1595
+ msgstr "Breekpunten definiëren de browser breedte in pixel als de slider overschakelt naar een ander toestel."
1596
+
1597
+ msgid "Global breakpoints"
1598
+ msgstr "Globale breekpunten"
1599
+
1600
+ #, php-format
1601
+ msgid "You can use the global breakpoints, or adjust them locally here. You can configure the Global breakpoints at <a href=\"%1$s\" target=\"_blank\">Global settings</a> > General > Breakpoints"
1602
+ msgstr "U kunt de globale breekpunten gebruiken, of ze hier lokaal aanpassen. U kunt de globale breekpunten configureren in <a href=\"%1$s\" target=\"_blank\">Globale instellingen</a> > Algemeen > Breekpunten"
1603
+
1604
+ msgid "Custom size"
1605
+ msgstr "Aangepaste grootte"
1606
+
1607
+ #, php-format
1608
+ msgid "Use this option to customize the aspect ratio for each device. %1$s Read more in the documentation%2$s. <b>Beware:</b> This option is rarely needed and might be hard to set properly!"
1609
+ msgstr "Gebruik deze optie om de beeldverhouding voor elk toestel aan te passen. %1$s Lees meer in de documentatie%2$s. <b>Opgelet:</b> deze optie is zelden nodig en het is mogelijk dat zij moeilijk correct in te stellen is!"
1610
+
1611
+ msgid "Slides"
1612
+ msgstr "Slides"
1613
+
1614
+ msgid "Slides design"
1615
+ msgstr "Slides ontwerp"
1616
+
1617
+ msgid "Slide background image fill"
1618
+ msgstr "Slide achtergrondafbeelding opvulling"
1619
+
1620
+ msgid "If the size of your image is not the same as your slider's, you can improve the result with the filling modes."
1621
+ msgstr "Als de grootte van uw afbeelding verschilt van de grootte van uw slider dan kunt u het resultaat verbeteren met de opvulmodi."
1622
+
1623
+ msgid "Background Blur"
1624
+ msgstr "Wazige achtergrond"
1625
+
1626
+ msgid "Randomize"
1627
+ msgstr "Bij toeval genereren"
1628
+
1629
+ msgid "Randomize slides"
1630
+ msgstr "Genereer slides bij toeval"
1631
+
1632
+ msgid "Randomize first"
1633
+ msgstr "Eerste bij toeval genereren"
1634
+
1635
+ msgid "Cache support"
1636
+ msgstr "Cache ondersteuning"
1637
+
1638
+ msgid "Cache variations"
1639
+ msgstr "Cache variaties"
1640
+
1641
+ msgid "Reverse"
1642
+ msgstr "Omkeren"
1643
+
1644
+ msgid "You can make your slides appear in the slider in a reversed order."
1645
+ msgstr "U kunt ervoor zorgen dat uw slides in omgekeerde volgorde in de slider verschijnen."
1646
+
1647
+ msgid "Max count"
1648
+ msgstr "Max aantal"
1649
+
1650
+ msgid "You can limit how many slides you want to show from your slider. It's best used with the Randomize feature, to improve the experience."
1651
+ msgstr "U kunt beperken hoeveel slides van uw slider u wilt tonen. Om de ervaring te verbeteren wordt dit best gebruikt met de 'Bij toeval genereren' mogelijkheid."
1652
+
1653
+ msgid "Maintain session"
1654
+ msgstr "Behoud sessie"
1655
+
1656
+ msgid "The slider continues from the last viewed slide when the visitor comes back to the page."
1657
+ msgstr "De slider gaat verder vanaf de laatst bekeken slide als de bezoeker terugkomt naar de pagina."
1658
+
1659
+ msgid "Backgrounds in lightbox"
1660
+ msgstr "Achtergronden in lightbox"
1661
+
1662
+ msgid "Creates a lightbox from your slide background images. This feature only works if all slides have background images."
1663
+ msgstr "Maakt een lightbox van uw slide achtergrond afbeeldingen. Deze mogelijkheid werkt alleen als alle slides achtergrond afbeeldingen hebben."
1664
+
1665
+ msgid "Show label"
1666
+ msgstr "Toon label"
1667
+
1668
+ msgid "Only slide name"
1669
+ msgstr "Alleen slide naam"
1670
+
1671
+ msgid "Slide name and description"
1672
+ msgstr "Slide naam en beschrijving"
1673
+
1674
+ msgid "Background parallax"
1675
+ msgstr "Achtergrond parallax"
1676
+
1677
+ msgid "Strength"
1678
+ msgstr "Sterkte"
1679
+
1680
+ msgid "Super soft"
1681
+ msgstr "Super zacht"
1682
+
1683
+ msgid "Soft"
1684
+ msgstr "Zacht"
1685
+
1686
+ msgid "Strong"
1687
+ msgstr "Sterk"
1688
+
1689
+ msgid "Super strong"
1690
+ msgstr "Super sterk"
1691
+
1692
+ msgid "Generator created."
1693
+ msgstr "Generator aangemaakt."
1694
+
1695
+ msgid "Generator updated and cache cleared."
1696
+ msgstr "Generator bijgewerkt en cache leeggemaakt."
1697
+
1698
+ msgid "Generator group not found"
1699
+ msgstr "Generator groep niet gevonden"
1700
+
1701
+ msgid "Generator source not found"
1702
+ msgstr "Generator bron niet gevonden"
1703
+
1704
+ msgid "No records found for the filter"
1705
+ msgstr "Geen records gevonden voor de filter"
1706
+
1707
+ msgid "Authentication successful."
1708
+ msgstr "Authenticatie succesvol."
1709
+
1710
+ msgid "Not installed"
1711
+ msgstr "Niet geïnstalleerd"
1712
+
1713
+ msgid "Visit"
1714
+ msgstr "Bezoek"
1715
+
1716
+ msgid "Add dynamic slides"
1717
+ msgstr "Dynamische slides toevoegen"
1718
+
1719
+ msgid "Configure"
1720
+ msgstr "Configureer"
1721
+
1722
+ msgid "Add"
1723
+ msgstr "Toevoegen"
1724
+
1725
+ msgid "Generator"
1726
+ msgstr "Generator"
1727
+
1728
+ msgid "How to upgrade to Smart Slider 3 Pro?"
1729
+ msgstr "Hoe te upgraden naar Smart Slider 3 Pro?"
1730
+
1731
+ #, php-format
1732
+ msgid "After making your purchase, %1$slog in to your account%3$s and download the Pro installer. To get started with Smart Slider 3 Pro, simply %2$sinstall it on your website%3$s."
1733
+ msgstr "Na uw aankoop kunt u zich %1$saanmelden met uw account%3$s en de Pro installer downloaden. Om te beginnen met Smart Slider 3 Pro %2$sinstalleert u de extensie eenvoudigweg op uw website%3$s."
1734
+
1735
+ msgid "Download Pro"
1736
+ msgstr "Download Pro"
1737
+
1738
+ msgid "Feel free to remove the Free version, as you no longer need it. Your sliders will stay!"
1739
+ msgstr "Voel u vrij om de gratis versie te verwijderen. U hebt deze niet meer nodig. Uw sliders zullen bewaard blijven!"
1740
+
1741
+ msgid "Ready to go Pro?"
1742
+ msgstr "Klaar om Pro te gaan?"
1743
+
1744
+ msgid "Supercharge Smart Slider 3 with powerful functionality!"
1745
+ msgstr "Geef Smart Slider 3 een boost met krachtige functionaliteit!"
1746
+
1747
+ msgid "Already purchased?"
1748
+ msgstr "Al aangekocht?"
1749
+
1750
+ msgid "Get started with the Pro version now!"
1751
+ msgstr "Begin nu met de Pro versie!"
1752
+
1753
+ #, php-format
1754
+ msgid "Unable to connect to the API (%s)."
1755
+ msgstr "Kon geen verbinding met de API maken (%s)."
1756
+
1757
+ msgid "See <b>Debug Information</b> for more details!"
1758
+ msgstr "Bekijk de <b>Debug informatie</b> voor meer details!"
1759
+
1760
+ msgid "Successful connection with the API."
1761
+ msgstr "Succesvolle verbinding met de API."
1762
+
1763
+ msgid "Welcome to Help Center"
1764
+ msgstr "Welkom in het helpcentrum"
1765
+
1766
+ msgid "To help you get started, we've put together a super tutorial video that shows you the basic settings."
1767
+ msgstr "Om u op weg te helpen hebben we een super handleiding video samengesteld die u de basisinstellingen toont."
1768
+
1769
+ msgid "Possible conflicts"
1770
+ msgstr "Mogelijke conflicten"
1771
+
1772
+ msgid "Test connection"
1773
+ msgstr "Test verbinding"
1774
+
1775
+ msgid "No conflicts detected."
1776
+ msgstr "Geen conflicten gedetecteerd."
1777
+
1778
+ msgid "Hello! How can we help you today?"
1779
+ msgstr "Hallo! Hoe kunnen we u vandaag van dienst zijn?"
1780
+
1781
+ msgid "Search in the knowledge base"
1782
+ msgstr "Zoek in de kennisbank"
1783
+
1784
+ msgid "Documentation"
1785
+ msgstr "Documentatie"
1786
+
1787
+ msgid "To get started with Smart Slider 3, please refer to this guide for downloading, installing, and using."
1788
+ msgstr "Om te beginnen met Smart Slider 3 kunt u deze gids raadplegen voor het downloaden, het installeren en het gebruik."
1789
+
1790
+ msgid "Email support"
1791
+ msgstr "E-mail ondersteuning"
1792
+
1793
+ msgid "Need one-to-one assistance? Get in touch with our Support team! We'd love the opportunity to help you."
1794
+ msgstr "Persoonlijke assistentie nodig? Neem contact op met ons support team! We helpen u graag verder."
1795
+
1796
+ msgid "Tutorial videos"
1797
+ msgstr "Video handleidingen"
1798
+
1799
+ msgid "Check our video tutorials which cover everything you need to know about Smart Slider 3."
1800
+ msgstr "Kijk eens naar onze video handleidingen die alles behandelen wat u moet weten over Smart Slider 3."
1801
+
1802
+ msgid "Selected articles"
1803
+ msgstr "Geselecteerde artikels"
1804
+
1805
+ msgid "Debug information"
1806
+ msgstr "Debug informatie"
1807
+
1808
+ #, php-format
1809
+ msgid "%s or later"
1810
+ msgstr "%s of later"
1811
+
1812
+ msgid "You are using an unsupported browser!"
1813
+ msgstr "U gebruikt een niet ondersteunde browser!"
1814
+
1815
+ #, php-format
1816
+ msgid "Smart Slider 3 does not support your current browser for editing. Supported browsers are the following: %s."
1817
+ msgstr "Smart Slider 3 ondersteunt uw huidige browser niet voor bewerking. Ondersteunde browsers zijn de volgende: %s."
1818
+
1819
+ msgid "Help center"
1820
+ msgstr "Helpcentrum"
1821
+
1822
+ msgid "Help"
1823
+ msgstr "Help"
1824
+
1825
+ msgid "Read more"
1826
+ msgstr "Lees meer"
1827
+
1828
+ msgid "Need more?"
1829
+ msgstr "Meer nodig?"
1830
+
1831
+ msgid "Unlock all the pro features by upgrading to Smart Slider 3 Pro."
1832
+ msgstr "Ontgrendel al de pro mogelijkheden door te upgraden naar Smart Slider 3 Pro."
1833
+
1834
+ msgid "Changelog"
1835
+ msgstr "Log met wijzigingen"
1836
+
1837
+ msgid "Check for update"
1838
+ msgstr "Controleer op update"
1839
+
1840
+ msgid "Check"
1841
+ msgstr "Controle"
1842
+
1843
+ msgid "Your license is active"
1844
+ msgstr "Uw licentie is actief"
1845
+
1846
+ msgid "Deactivate license"
1847
+ msgstr "Deactiveer licentie"
1848
+
1849
+ msgid "Activate your license"
1850
+ msgstr "Activeer uw licentie"
1851
+
1852
+ msgid "Don’t miss any update"
1853
+ msgstr "Mis geen enkele update"
1854
+
1855
+ msgid "Let us know how we're doing"
1856
+ msgstr "Laat ons weten hoe we het ervan afbrengen"
1857
+
1858
+ msgid "If you are happy with Smart Slider 3 and can take a minute please leave a review. This will help to spread its popularity and to make this plugin a better one."
1859
+ msgstr "Als u tevreden bent over Smart Slider 3 en wat tijd over heeft laat dan een recensie achter. Dit helpt om de populariteit ervan te verspreiden en deze plugin te verbeteren."
1860
+
1861
+ msgid "Rate your experience"
1862
+ msgstr "Beoordeel uw ervaring"
1863
+
1864
+ msgid "Hated it"
1865
+ msgstr "Afgrijselijk"
1866
+
1867
+ msgid "Disliked it"
1868
+ msgstr "Vond ik niet goed"
1869
+
1870
+ msgid "It was ok"
1871
+ msgstr "Het was OK"
1872
+
1873
+ msgid "Liked it"
1874
+ msgstr "Ik vond het goed"
1875
+
1876
+ msgid "Loved it"
1877
+ msgstr "Ik vond het geweldig"
1878
+
1879
+ msgid "Why upgrade to Smart Slider 3 Pro?"
1880
+ msgstr "Waarom upgraden naar Smart Slider 3 Pro?"
1881
+
1882
+ msgid "120+ slider templates"
1883
+ msgstr "120+ slider templates"
1884
+
1885
+ msgid "Full slide library access"
1886
+ msgstr "Volledige toegang tot slide bibliotheek"
1887
+
1888
+ msgid "20 new layers"
1889
+ msgstr "20 nieuwe lagen"
1890
+
1891
+ msgid "Extra advanced options"
1892
+ msgstr "Extra geavanceerde opties"
1893
+
1894
+ msgid "New animations & effects"
1895
+ msgstr "Nieuwe animaties & effecten"
1896
+
1897
+ msgid "Lifetime update & support"
1898
+ msgstr "Levenslange update & ondersteuning"
1899
+
1900
+ msgid "Apply"
1901
+ msgstr "Toepassen"
1902
+
1903
+ msgid "Back"
1904
+ msgstr "Terug"
1905
+
1906
+ msgid "Import"
1907
+ msgstr "Importeren"
1908
+
1909
+ msgid "Layers"
1910
+ msgstr "Lagen"
1911
+
1912
+ msgid "Library"
1913
+ msgstr "Bibliotheek"
1914
+
1915
+ msgid "Absolute"
1916
+ msgstr "Absoluut"
1917
+
1918
+ msgctxt "Layer group"
1919
+ msgid "Basic"
1920
+ msgstr "Basis"
1921
+
1922
+ msgid "Inner align"
1923
+ msgstr "Binnenste uitlijning"
1924
+
1925
+ msgid "Positions the layers inside horizontally."
1926
+ msgstr "Plaatst de lagen horizontaal binnenin."
1927
+
1928
+ msgid "Vertical align"
1929
+ msgstr "Verticaal uitlijnen"
1930
+
1931
+ msgid "Positions the layers inside vertically."
1932
+ msgstr "Plaatst de lagen verticaal binnenin."
1933
+
1934
+ msgid "Target window"
1935
+ msgstr "Doelvenster"
1936
+
1937
+ msgid "Background image"
1938
+ msgstr "Achtergrondafbeelding"
1939
+
1940
+ msgid "Focus"
1941
+ msgstr "Focus"
1942
+
1943
+ msgid "You can set the starting position of a background image. This makes sure that the selected part will always remain visible, so you should pick the most important part."
1944
+ msgstr "U kunt de beginpositie van een achtergrondafbeelding instellen. Dit verzekert dat het geselecteerde deel altijd zichtbaar blijft, u kiest dus best het meest belangrijke deel."
1945
+
1946
+ msgid "Background"
1947
+ msgstr "Achtergrond"
1948
+
1949
+ msgid "Gradient"
1950
+ msgstr "Gradient"
1951
+
1952
+ msgid "Color end"
1953
+ msgstr "Kleur einde"
1954
+
1955
+ msgid "Max width"
1956
+ msgstr "Max breedte"
1957
+
1958
+ msgid "Position"
1959
+ msgstr "Positie"
1960
+
1961
+ msgid "The editing mode the layer is positioned in."
1962
+ msgstr "De bewerkingsmodus waarin de laag geplaatst is."
1963
+
1964
+ msgid "Positions the layer horizontally within its parent."
1965
+ msgstr "Plaatst de laag horizontaal binnen de bovenliggende laag."
1966
+
1967
+ msgid "You can set a fix height for your layer."
1968
+ msgstr "U kunt een vaste hoogte voor uw laag instellen."
1969
+
1970
+ msgid "With margins you can create distance between your layers."
1971
+ msgstr "Met marges kunt u afstand tussen uw lagen maken."
1972
+
1973
+ msgid "Responsive"
1974
+ msgstr "Responsive"
1975
+
1976
+ msgid "Linked to"
1977
+ msgstr "Gelinkt naar"
1978
+
1979
+ msgid "You can link your layer to another layer on the same level. This way your layer won't be positioned to the slide, but the other layer."
1980
+ msgstr "U kunt uw laag linken naar een andere laag op hetzelfde niveau. Op die manier zal uw laag zelf niet in de slide geplaatst worden, maar de andere laag."
1981
+
1982
+ msgid "Hide when variable empty"
1983
+ msgstr "Verberg als de variabele leeg is"
1984
+
1985
+ msgid "Text scale"
1986
+ msgstr "Tekst schaal"
1987
+
1988
+ msgid "Device specific settings"
1989
+ msgstr "Toestel specifieke instellingen"
1990
+
1991
+ msgid "Clear"
1992
+ msgstr "Leegmaken"
1993
+
1994
+ msgid "Erases all device specific changes you made on the current device."
1995
+ msgstr "Wist alle toestel specifieke veranderingen die u op het huidige toestel hebt aangebracht."
1996
+
1997
+ msgid "Effect"
1998
+ msgstr "Effect"
1999
+
2000
+ msgid "Parallax"
2001
+ msgstr "Parallax"
2002
+
2003
+ msgid "More parallax options in slider settings -> Layer animations tab."
2004
+ msgstr "Meer parallax opties in slider instellingen -> Laag animaties tab."
2005
+
2006
+ msgid "Crop"
2007
+ msgstr "Bijsnijden"
2008
+
2009
+ msgid "Mask"
2010
+ msgstr "Maskeren"
2011
+
2012
+ msgid "If your content is larger than the layer, you can crop it to fit."
2013
+ msgstr "Als uw inhoud groter is dan de laag dan kunt u die bijsnijden zodat hij past."
2014
+
2015
+ msgid "Rotation"
2016
+ msgstr "Rotatie"
2017
+
2018
+ msgid "CSS Class"
2019
+ msgstr "CSS class"
2020
+
2021
+ msgid "You can add a custom CSS class on the layer container."
2022
+ msgstr "U kunt een aangepaste CSS class aan de laag container toevoegen."
2023
+
2024
+ msgid "Content background"
2025
+ msgstr "Inhoud achtergrond"
2026
+
2027
+ msgid "Spacing"
2028
+ msgstr "Ruimte"
2029
+
2030
+ msgid "Typography"
2031
+ msgstr "Typografie"
2032
+
2033
+ msgid "You can select a font family from the preset, or type your custom family."
2034
+ msgstr "U kunt een font familie uit de voorinstelling kiezen of uw eigen font familie typen."
2035
+
2036
+ msgid "Need to change the font size device specifically? Use the Text scale option."
2037
+ msgstr "Moet u de font grootte toestel specifiek aanpassen? Gebruik de Tekst schaal optie."
2038
+
2039
+ msgid "Columns"
2040
+ msgstr "Kolommen"
2041
+
2042
+ msgid "Gutter"
2043
+ msgstr "Groef"
2044
+
2045
+ msgid "Creates space between the columns"
2046
+ msgstr "Maakt ruimte tussen de kolommen"
2047
+
2048
+ msgid "Wrap after"
2049
+ msgstr "Omslaan na"
2050
+
2051
+ msgid "Breaks the columns to the given amount of rows."
2052
+ msgstr "Splitst de kolommen op in het gegeven aantal rijen."
2053
+
2054
+ msgid "Makes the row fill the available vertical space"
2055
+ msgstr "Maakt dat de rij de beschikbare verticale ruimte opvult"
2056
+
2057
+ msgid "Slide title"
2058
+ msgstr "Slide titel"
2059
+
2060
+ msgid "Description"
2061
+ msgstr "Beschrijving"
2062
+
2063
+ msgid "Thumbnail alt"
2064
+ msgstr "Miniatuur alt"
2065
+
2066
+ msgid "Custom lightbox image"
2067
+ msgstr "Aangepaste lightbox afbeelding"
2068
+
2069
+ msgid "Published"
2070
+ msgstr "Gepubliceerd"
2071
+
2072
+ msgid "Publish on"
2073
+ msgstr "Publiceer op"
2074
+
2075
+ msgid "Unpublish on"
2076
+ msgstr "Depubliceer op"
2077
+
2078
+ msgid "Thumbnail type"
2079
+ msgstr "Miniatuur type"
2080
+
2081
+ msgid "Video"
2082
+ msgstr "Video"
2083
+
2084
+ msgid "If you have a video on your slide, you can put a play icon on the thumbnail image to indicate that."
2085
+ msgstr "Als u een video op uw slide hebt dan kunt u een speel icoon op de miniatuurafbeelding plaatsen om dat aan te geven."
2086
+
2087
+ #, php-format
2088
+ msgid "Video autoplaying has a lot of limitations made by browsers. %1$sLearn about them.%2$s"
2089
+ msgstr "Het automatisch spelen van video's heeft een groot aantal beperkingen, opgelegd door browsers. %1$sKom hier meer over te weten.%2$s"
2090
+
2091
+ msgid "Slide background video"
2092
+ msgstr "Slide achtergrond video"
2093
+
2094
+ msgid "Restart on slide change"
2095
+ msgstr "Herstart bij slide wisseling"
2096
+
2097
+ msgid "Starts the video from the beginning when the slide is viewed again."
2098
+ msgstr "Start de video vanaf het begin als de slide opnieuw bekeken wordt."
2099
+
2100
+ msgid "Slide background"
2101
+ msgstr "Slide achtergrond"
2102
+
2103
+ msgid "Select a background image for the slide. By clicking the small screen icon, you can pick different images for different devices."
2104
+ msgstr "Selecteer een achtergrondafbeelding voor de slide. Door te klikken op het kleine scherm icoon kunt u verschillende afbeeldingen kiezen voor verschillende toestellen."
2105
+
2106
+ #, php-format
2107
+ msgid "Please read %1$sour detailed guide%2$s about setting your own slide background correctly."
2108
+ msgstr "Lees onze %1$sgedetailleerde gids%2$s over hoe u uw eigen slide achtergrond correct moet instellen."
2109
+
2110
+ msgid "Background blur"
2111
+ msgstr "Wazige achtergrond"
2112
+
2113
+ msgid "Blur"
2114
+ msgstr "Wazig"
2115
+
2116
+ msgid "Overlay"
2117
+ msgstr "Bovenlaag"
2118
+
2119
+ msgid "Puts the color in front of the image."
2120
+ msgstr "Plaatst de kleur voor de afbeelding."
2121
+
2122
+ msgid "SEO"
2123
+ msgstr "SEO"
2124
+
2125
+ msgid "Image alt"
2126
+ msgstr "Afbeelding alt"
2127
+
2128
+ msgid "Image title"
2129
+ msgstr "Afbeelding titel"
2130
+
2131
+ msgctxt "Layer animation"
2132
+ msgid "In"
2133
+ msgstr "In"
2134
+
2135
+ msgctxt "Layer animation"
2136
+ msgid "Out"
2137
+ msgstr "Uit"
2138
+
2139
+ msgctxt "Layer animation"
2140
+ msgid "Events"
2141
+ msgstr "Evenementen"
2142
+
2143
+ msgid "Plays in when"
2144
+ msgstr "Speelt in als"
2145
+
2146
+ msgid "Plays out when"
2147
+ msgstr "Speelt uit als"
2148
+
2149
+ msgid "Plays loop when"
2150
+ msgstr "Speelt herhaaldelijk als"
2151
+
2152
+ msgid "Pauses loop when"
2153
+ msgstr "Pauzeert de herhaling als"
2154
+
2155
+ msgid "Stops loop when"
2156
+ msgstr "Stopt de herhaling als"
2157
+
2158
+ msgid "Repeatable"
2159
+ msgstr "Herhaalbaar"
2160
+
2161
+ msgid "Allows the layer animations to play more than once."
2162
+ msgstr "Laat toe dat de laag animaties meer dan één keer spelen."
2163
+
2164
+ msgid "Start delay"
2165
+ msgstr "Start wachttijd"
2166
+
2167
+ msgid "End delay"
2168
+ msgstr "Einde wachttijd"
2169
+
2170
+ msgid "Repeat loop only"
2171
+ msgstr "Herhaal alleen de lus"
2172
+
2173
+ msgid "Allows the stopped loop to start again."
2174
+ msgstr "Laat toe dat de gestopte herhaling opnieuw start."
2175
+
2176
+ msgid "Trigger custom event on"
2177
+ msgstr "Voer aangepast evenement uit bij"
2178
+
2179
+ msgid "Click"
2180
+ msgstr "Klik"
2181
+
2182
+ msgid "Mouse enter"
2183
+ msgstr "Muis in"
2184
+
2185
+ msgid "Mouse leave"
2186
+ msgstr "Muis uit"
2187
+
2188
+ msgid "Media started"
2189
+ msgstr "Media gestart"
2190
+
2191
+ msgid "Media paused"
2192
+ msgstr "Media gepauzeerd"
2193
+
2194
+ msgid "Media stopped"
2195
+ msgstr "Media gestopt"
2196
+
2197
+ msgid "Duration"
2198
+ msgstr "Duur"
2199
+
2200
+ msgid "Delay"
2201
+ msgstr "Wachttijd"
2202
+
2203
+ msgid "Easing"
2204
+ msgstr "Versoepeling"
2205
+
2206
+ msgid "Offset"
2207
+ msgstr "Compensatie"
2208
+
2209
+ msgid "Rotate"
2210
+ msgstr "Roteren"
2211
+
2212
+ msgid "Scale"
2213
+ msgstr "Schaal"
2214
+
2215
+ msgid "Skew"
2216
+ msgstr "Scheeftrekken"
2217
+
2218
+ msgid "Transform origin"
2219
+ msgstr "Oorsprong omvormen"
2220
+
2221
+ msgid "Makes the last keyframe to be the origin of the layer animation, instead of its canvas position."
2222
+ msgstr "Maakt dat het laatste keyframe de oorsprong van de laag animatie is, in plaats van haar canvas positie."
2223
+
2224
+ msgid "Repeat count"
2225
+ msgstr "Aantal herhalingen"
2226
+
2227
+ msgid "loops"
2228
+ msgstr "herhalingen"
2229
+
2230
+ msgid "You can restrict the loop to play only a certain amount of loops, instead of infinite."
2231
+ msgstr "U kunt de herhaling beperken tot een bepaald aantal herhalingen, in plaats van oneindig."
2232
+
2233
+ msgctxt "Animation"
2234
+ msgid "Slide"
2235
+ msgstr "Schuiven"
2236
+
2237
+ msgid "Curtains"
2238
+ msgstr "Gordijnen"
2239
+
2240
+ msgid "Diagonal"
2241
+ msgstr "Diagonaal"
2242
+
2243
+ msgid "Circle"
2244
+ msgstr "Circel"
2245
+
2246
+ msgid "From"
2247
+ msgstr "Van"
2248
+
2249
+ msgid "To"
2250
+ msgstr "Tot"
2251
+
2252
+ msgid "Fade"
2253
+ msgstr "Vervagen"
2254
+
2255
+ msgid "Scale up"
2256
+ msgstr "Vergroten"
2257
+
2258
+ msgid "Scale down"
2259
+ msgstr "Verkleinen"
2260
+
2261
+ msgid "Edit"
2262
+ msgstr "Bewerken"
2263
+
2264
+ msgid "Static overlay"
2265
+ msgstr "Statische bovenlaag"
2266
+
2267
+ msgid "First slide"
2268
+ msgstr "Eerste slide"
2269
+
2270
+ msgid "Unpublished"
2271
+ msgstr "Gedepubliceerd"
2272
+
2273
+ msgid "Bulk actions"
2274
+ msgstr "Bulk acties"
2275
+
2276
+ msgid "Select all"
2277
+ msgstr "Selecteer alles"
2278
+
2279
+ msgid "Select none"
2280
+ msgstr "Selecteer geen"
2281
+
2282
+ msgid "Select published"
2283
+ msgstr "Selecteer gepubliceerde"
2284
+
2285
+ msgid "Select unpublished"
2286
+ msgstr "Selecteer niet gepubliceerde"
2287
+
2288
+ msgid "Blank"
2289
+ msgstr "Blanco"
2290
+
2291
+ msgid "Post"
2292
+ msgstr "Inzending"
2293
+
2294
+ msgid "Dynamic slides"
2295
+ msgstr "Dynamische slides"
2296
+
2297
+ msgid "Add slide"
2298
+ msgstr "Slide toevoegen"
2299
+
2300
+ msgid "Block must contain only one slide. Need more?"
2301
+ msgstr "Een blok mag maar één slide bevatten. Meer nodig?"
2302
+
2303
+ msgid "Convert to slider"
2304
+ msgstr "Vorm om tot slider"
2305
+
2306
+ msgid "Slide one"
2307
+ msgstr "Slide een"
2308
+
2309
+ msgid "Slide two"
2310
+ msgstr "Slide twee"
2311
+
2312
+ msgid "Drop images here"
2313
+ msgstr "Laat afbeeldingen hier vallen"
2314
+
2315
+ msgid "Edit slider"
2316
+ msgstr "Slider bewerken"
2317
+
2318
+ msgid "View trash"
2319
+ msgstr "Bekijk prullenbak"
2320
+
2321
+ msgid "Order by"
2322
+ msgstr "Sorteer op"
2323
+
2324
+ msgid "Manual order"
2325
+ msgstr "Handmatige volgorde"
2326
+
2327
+ msgid "A-Z"
2328
+ msgstr "A-Z"
2329
+
2330
+ msgid "Z-A"
2331
+ msgstr "Z-A"
2332
+
2333
+ msgid "Newest first"
2334
+ msgstr "Nieuwste eerst"
2335
+
2336
+ msgid "Oldest first"
2337
+ msgstr "Oudste eerst"
2338
+
2339
+ msgid "Export"
2340
+ msgstr "Exporteren"
2341
+
2342
+ msgid "New project"
2343
+ msgstr "Nieuw project"
2344
+
2345
+ msgid "Module"
2346
+ msgstr "Module"
2347
+
2348
+ msgid "Displays the slider in a template module position."
2349
+ msgstr "Toont de slider in een template module positie."
2350
+
2351
+ msgid "Create module"
2352
+ msgstr "Module maken"
2353
+
2354
+ msgid "Related modules"
2355
+ msgstr "Gelijkaardige modules"
2356
+
2357
+ msgid "Articles"
2358
+ msgstr "Artikels"
2359
+
2360
+ msgid "Paste the code into article:"
2361
+ msgstr "Plak de code in artikel:"
2362
+
2363
+ msgid "PHP code"
2364
+ msgstr "PHP code"
2365
+
2366
+ msgid "Paste the PHP code into source code:"
2367
+ msgstr "Plak de PHP code in broncode:"
2368
+
2369
+ msgid "Shortcode"
2370
+ msgstr "Snelcode"
2371
+
2372
+ msgid "Copy and paste this shortcode into your posts or pages:"
2373
+ msgstr "Kopieer en plak deze snelcode in uw inzendingen of pagina's:"
2374
+
2375
+ msgid "Pages and Posts"
2376
+ msgstr "Pagina's en inzendingen"
2377
+
2378
+ #, php-format
2379
+ msgid "Smart Slider 3 has integration with %s."
2380
+ msgstr "Smart Slider 3 is geïntegreerd met %s."
2381
+
2382
+ msgid "Paste the PHP code into your theme's file:"
2383
+ msgstr "Plak de PHP code in uw thema bestand:"
2384
+
2385
+ msgid "Trash is empty."
2386
+ msgstr "Prullenbak is leeg."
2387
+
2388
+ msgid "Restore"
2389
+ msgstr "Herstellen"
2390
+
2391
+ msgid "Toggle orientation"
2392
+ msgstr "Schakel oriëntatie om"
2393
+
2394
+ msgid "Reload preview"
2395
+ msgstr "Herlaad voorvertoning"
2396
+
2397
+ msgid "Open preview in full"
2398
+ msgstr "Open voorvertoning in volledig scherm"
2399
+
2400
+ msgid "State"
2401
+ msgstr "Status"
2402
+
2403
+ msgid "Reason"
2404
+ msgstr "Reden"
2405
+
2406
+ msgid "Framework"
2407
+ msgstr "Framework"
2408
+
2409
+ msgid "Fonts"
2410
+ msgstr "Fonts"
2411
+
2412
+ msgid "Layer defaults"
2413
+ msgstr "Lagen standaard"
2414
+
2415
+ msgid "Generators"
2416
+ msgstr "Generatoren"
2417
+
2418
+ msgid "Saved and slider cache invalidated."
2419
+ msgstr "Opgeslagen en de slider cache ongeldig gemaakt."
2420
+
2421
+ msgid "Cache cleared."
2422
+ msgstr "Cache leeggemaakt."
2423
+
2424
+ msgid "Clear cache"
2425
+ msgstr "Cache leegmaken"
2426
+
2427
+ msgid "Clear cache options"
2428
+ msgstr "Maak cache opties leeg"
2429
+
2430
+ msgid "Delete resized image cache"
2431
+ msgstr "Verwijder cache met herschaalde afbeeldingen"
2432
+
2433
+ #, php-format
2434
+ msgid "If enabled the following folder will be <b>permanently deleted</b>: %s"
2435
+ msgstr "Indien geactiveerd dan zal volgende map <b>permanent verwijderd</b> worden: %s"
2436
+
2437
+ msgid "Configuration"
2438
+ msgstr "Configuratie"
2439
+
2440
+ #, php-format
2441
+ msgid "Here you can configure the default font your layers have, and the dropdown list of the fonts. Google Fonts are recognized automatically, but you can use your own custom fonts, too. %1$sLearn how to do that.%2$s"
2442
+ msgstr "Hier kunt u de standaard font voor uw lagen configureren door middel van de vervolgkeuzelijst met de fonts. Google Fonts worden automatisch herkend, maar u kunt ook uw eigen fonts gebruiken. %1$sLeer hier hoe u dat moet doen.%2$s"
2443
+
2444
+ msgid "Default family"
2445
+ msgstr "Standaard familie"
2446
+
2447
+ msgid "This font family is used for the newly added layers."
2448
+ msgstr "Deze font familie wordt gebruikt voor nieuw toegevoegde lagen."
2449
+
2450
+ msgid "Preset font families"
2451
+ msgstr "Voorinstelling font families"
2452
+
2453
+ msgid "These font families appear in the dropdown list."
2454
+ msgstr "Deze font families verschijnen in de vervolgkeuzelijst."
2455
+
2456
+ msgid "Use protocol-relative URL"
2457
+ msgstr "Gebruik protocol-relatieve URL"
2458
+
2459
+ msgid "Loads the URLs without a http or https protocol."
2460
+ msgstr "Laadt de URLs zonder een http of https protocol."
2461
+
2462
+ msgid "Header preload"
2463
+ msgstr "Header vooraf inladen"
2464
+
2465
+ msgid "If the slider is an important part of your site, tell the browser to preload its files."
2466
+ msgstr "Als de slider een belangrijk deel van uw site is geef dan door aan de browser dat de bestanden ervan vooraf ingeladen moeten worden."
2467
+
2468
+ msgid "English UI"
2469
+ msgstr "Engelse UI"
2470
+
2471
+ msgid "You can keep using Smart Slider 3 in English, even if your backend isn't in English."
2472
+ msgstr "U kunt Smart Slider 3 verder in het engels blijven gebruiken, zelfs als uw backend niet in het engels is."
2473
+
2474
+ msgid "Improved frontend accessibility"
2475
+ msgstr "Verbeterde frontend toegankelijkheid"
2476
+
2477
+ msgid "Keeps the clicked element (like a button) in focus unless the focus is changed by clicking away."
2478
+ msgstr "Houd de focus op het aangeklikte element (zoals een knop) tenzij de focus veranderd wordt door weg te klikken."
2479
+
2480
+ msgid "Script attributes"
2481
+ msgstr "Script attributen"
2482
+
2483
+ msgid "Slider's inline JavaScript"
2484
+ msgstr "Inline Javascript van slider"
2485
+
2486
+ msgid "Head"
2487
+ msgstr "Kop"
2488
+
2489
+ msgid "Into the slider"
2490
+ msgstr "In de slider"
2491
+
2492
+ msgid "Async non-primary CSS"
2493
+ msgstr "Async niet-primaire CSS"
2494
+
2495
+ msgid "Google Fonts, icon and lightbox CSS are loaded in a non-blocking way. Disable if you see missing icons, fonts or styles."
2496
+ msgstr "Google Fonts, icoon en lightbox CSS werden geladen op een niet blokkerende manier. Deactiveer dit als u ontbrekende iconen of stijlen ziet."
2497
+
2498
+ msgid "Load Font Awesome 4"
2499
+ msgstr "Laad Font Awesome 4"
2500
+
2501
+ msgid "API requests"
2502
+ msgstr "API aanvragen"
2503
+
2504
+ #, php-format
2505
+ msgctxt "Curl"
2506
+ msgid "Use %s"
2507
+ msgstr "Gebruik %s"
2508
+
2509
+ #, php-format
2510
+ msgctxt "curl proxy"
2511
+ msgid "Clean %s"
2512
+ msgstr "Kuis %s op"
2513
+
2514
+ msgid "General settings"
2515
+ msgstr "Algemene instellingen"
2516
+
2517
+ msgid "Automatic update check"
2518
+ msgstr "Automatische update controle"
2519
+
2520
+ msgid "Alternative save slide"
2521
+ msgstr "Alternatief opslaan slide"
2522
+
2523
+ msgid "If you experience problems during the save this option might solve them."
2524
+ msgstr "Als u problemen ondervindt tijdens het opslaan dan lost deze optie ze mogelijk op."
2525
+
2526
+ msgid "Preview in new window"
2527
+ msgstr "Voorvertoning in nieuw venster"
2528
+
2529
+ msgid "Lightbox videos in new tab on Mobile"
2530
+ msgstr "Lightbox video's in nieuwe tab op mobieltjes"
2531
+
2532
+ msgid "Opens the lightbox videos in the YouTube app to avoid the mobile disabling the video."
2533
+ msgstr "Opent de lightbox video's in de YouTube app om te vermijden dat de mobieltjes de video deactiveren."
2534
+
2535
+ msgid "YouTube and Vimeo privacy enhanced mode"
2536
+ msgstr "YouTube en Vimeo privacy verbeterde modus"
2537
+
2538
+ msgid "Smooth scroll speed"
2539
+ msgstr "Soepel scrollen snelheid"
2540
+
2541
+ msgid "Editor - additional CSS files"
2542
+ msgstr "Editor - extra CSS bestanden"
2543
+
2544
+ msgid "You can call your own CSS files to our backend, for example, to be able to use custom fonts. Write each URL to a new line."
2545
+ msgstr "U kunt uw eigen CSS bestanden in onze backend binnenhalen, bijvoorbeeld om eigen fonts te gebruiken. Schrijf elke URL op een nieuwe regel."
2546
+
2547
+ msgid "WordPress settings"
2548
+ msgstr "WordPress instellingen"
2549
+
2550
+ msgid "Show editor icon"
2551
+ msgstr "Toon editor icoon"
2552
+
2553
+ msgid "Show in admin bar"
2554
+ msgstr "Toon in admin balk"
2555
+
2556
+ msgid "YOAST SEO sitemap - add images"
2557
+ msgstr "YOAST SEO sitemap - afbeeldingen toevoegen"
2558
+
2559
+ msgid "Create widget area"
2560
+ msgstr "Maak widget zone"
2561
+
2562
+ msgid "widget area(s)"
2563
+ msgstr "widget zone(s)"
2564
+
2565
+ msgid "Creates new widget areas which you can place to your theme for easy publishing."
2566
+ msgstr "Maakt nieuwe widget zones die u in uw thema kunt plaatsen voor gemakkelijke publicatie."
2567
+
2568
+ msgid "Use iframe in AJAX calls"
2569
+ msgstr "Gebruik iframe in AJAX aanroepen"
2570
+
2571
+ msgid "Loads the slider using an iframe when the page is loaded via AJAX to avoid problems."
2572
+ msgstr "Laadt de slider aan de hand van een iframe als de pagina ingeladen wordt via AJAX, en dit om problemen te vermijden."
2573
+
2574
+ msgid "Joomla settings"
2575
+ msgstr "Joomla instellingen"
2576
+
2577
+ msgid "Force RTL backend"
2578
+ msgstr "Forceer RTL backend"
2579
+
2580
+ msgid "Run content plugins on sliders"
2581
+ msgstr "Voer content plugins uit op sliders"
2582
+
2583
+ msgid "Exclude plugins"
2584
+ msgstr "Uit te sluiten plugins"
2585
+
2586
+ msgid "At each slider you can override the global breakpoints with local values."
2587
+ msgstr "In elke slider kunt u de globale breekpunten overschrijven met lokale waarden."
2588
+
2589
+ msgid "Focus offset"
2590
+ msgstr "Focus compensatie"
2591
+
2592
+ msgid "This option is used at the full page layout to decrease the slider height. The \"Scroll to slider\" option also uses this option to determine where to scroll the slider."
2593
+ msgstr "Deze optie wordt gebruikt in de volledige pagina lay-out om de hoogte van de slider te verminderen. De \"Scroll naar slider\" optie gebruikt deze optie ook om te bepalen waar de slider gescrold moet worden."
2594
+
2595
+ msgid "Translate url"
2596
+ msgstr "Vertaal URL"
2597
+
2598
+ msgid "You can change the frontend URL our assets are loading from. It can be useful after moving to a new domain."
2599
+ msgstr "U kunt de frontend URL veranderen vanwaar onze assets geladen worden. Dit kan nuttig zijn na het verhuizen naar een nieuw domein."
2600
+
2601
+ msgid "The old URL you want to replace. E.g. https://oldsite.com/"
2602
+ msgstr "De oude URL die u wilt vervangen. Bijvoorbeeld https://oudesite.com"
2603
+
2604
+ msgid "The new URL you want to use. E.g. https://newsite.com"
2605
+ msgstr "De nieuwe URL die u wilt gebruiken. Bijvoorbeeld https://nieuwsite.com"
2606
+
2607
+ msgid "Slider restored."
2608
+ msgstr "Slider hersteld."
2609
+
2610
+ msgid "Slider permanently deleted."
2611
+ msgstr "Slider permanent verwijderd."
2612
+
2613
+ msgid "Slider created."
2614
+ msgstr "Slider aangemaakt."
2615
+
2616
+ msgid "Slider renamed."
2617
+ msgstr "Slider hernoemd."
2618
+
2619
+ msgid "Slider saved."
2620
+ msgstr "Slider opgeslagen."
2621
+
2622
+ #, php-format
2623
+ msgid "Import url is not valid: %s"
2624
+ msgstr "Import URL is niet geldig: %s"
2625
+
2626
+ msgid "License key required for premium features!"
2627
+ msgstr "Licentie sleutel is vereist voor premium mogelijkheden!"
2628
+
2629
+ msgid "Slider imported."
2630
+ msgstr "Slider geïmporteerd."
2631
+
2632
+ msgid "Import error!"
2633
+ msgstr "Import fout!"
2634
+
2635
+ msgid "Slide duplicated."
2636
+ msgstr "Slide gekloond."
2637
+
2638
+ #, php-format
2639
+ msgid "%s slider type is not available."
2640
+ msgstr "Het %s slider type is niet beschikbaar."
2641
+
2642
+ msgid "Groups are only available in the Pro version."
2643
+ msgstr "Groepen zijn alleen beschikbaar in de Pro versie."
2644
+
2645
+ msgid "Slider moved to the trash."
2646
+ msgstr "Slider verplaatst naar de prullenbak."
2647
+
2648
+ msgid "Slider removed from the group."
2649
+ msgstr "Slider verwijderd uit de groep."
2650
+
2651
+ msgid "Slider duplicated."
2652
+ msgstr "Slider gekloond."
2653
+
2654
+ msgid "Slider settings"
2655
+ msgstr "Slider instellingen"
2656
+
2657
+ msgid "Delete slider"
2658
+ msgstr "Verwijder slider"
2659
+
2660
+ msgid "Edit slide"
2661
+ msgstr "Slide bewerken"
2662
+
2663
+ msgid "Delete slide"
2664
+ msgstr "Verwijder slide"
2665
+
2666
+ msgid "Ordering"
2667
+ msgstr "Volgorde"
2668
+
2669
+ msgid "Video url"
2670
+ msgstr "Video URL"
2671
+
2672
+ msgid "Actions"
2673
+ msgstr "Acties"
2674
+
2675
+ #, php-format
2676
+ msgid "Export %1$s as HTML"
2677
+ msgstr "Exporteer %1$s als HTML"
2678
+
2679
+ msgid "Duplicate slider"
2680
+ msgstr "Kloon slider"
2681
+
2682
+ msgid "Simple edit"
2683
+ msgstr "Simpel bewerken"
2684
+
2685
+ msgid "Slider order saved."
2686
+ msgstr "Slider volgorde opgeslagen."
2687
+
2688
+ msgid "Slider(s) moved to the trash."
2689
+ msgstr "Slider(s) verplaatst naar de prullenbak."
2690
+
2691
+ msgid "Slider(s) removed from the group."
2692
+ msgstr "Slider(s) verwijderd uit de groep."
2693
+
2694
+ msgid "Slider(s) deleted permanently from the trash."
2695
+ msgstr "Slider(s) permanent verwijderd uit de prullenbak."
2696
+
2697
+ #, php-format
2698
+ msgid "Your server has an upload file limit at %s, so if you have bigger export file, please use the local import file method."
2699
+ msgstr "Uw server heeft een upload bestandslimiet op %s, dus als u een groter export bestand hebt gebruik dan de lokale import bestand methode."
2700
+
2701
+ msgid "You have to unzip your "
2702
+ msgstr "Zorg voor het uitpakken van uw "
2703
+
2704
+ msgid "Only *.ss3 files can be uploaded!"
2705
+ msgstr "Alleen *.ss3 bestanden mogen geüpload worden!"
2706
+
2707
+ msgid "The imported file is not readable!"
2708
+ msgstr "Het geïmporteerde bestand is niet leesbaar!"
2709
+
2710
+ msgid "Go to dashboard"
2711
+ msgstr "Ga naar bedieningspaneel"
2712
+
2713
+ msgid "Welcome to Smart Slider 3"
2714
+ msgstr "Welkom bij Smart Slider 3"
2715
+
2716
+ msgid "Don't show again"
2717
+ msgstr "Toon niet opnieuw"
2718
+
2719
+ msgid "Import project"
2720
+ msgstr "Importeer project"
2721
+
2722
+ msgid "You can upload *.ss3 files which were exported by Smart Slider 3."
2723
+ msgstr "U kunt *.ss3 bestanden uploaden die geëxporteerd werden door Smart Slider 3."
2724
+
2725
+ msgid "Local import"
2726
+ msgstr "Lokaal importeren"
2727
+
2728
+ msgid "Upload file"
2729
+ msgstr "Upload bestand"
2730
+
2731
+ #, php-format
2732
+ msgid "Your server's upload filesize limitation is %s, so if your file is bigger, use the local import."
2733
+ msgstr "De upload bestandsgrootte beperking van uw server is %s, dus als uw bestand groter is moet u de lokale import gebruiken."
2734
+
2735
+ msgid "File"
2736
+ msgstr "Bestand"
2737
+
2738
+ #, php-format
2739
+ msgid "Files with <i>.ss3</i> extension are listed from: %s"
2740
+ msgstr "Bestanden met <i>.ss3</i> extensie worden getoond van: %s"
2741
+
2742
+ msgid "Delete file"
2743
+ msgstr "Bestand verwijderen"
2744
+
2745
+ msgid "Removes the selected .ss3 file from your sever after the import."
2746
+ msgstr "Verwijdert het geselecteerde .ss3 bestand van uw server na de import."
2747
+
2748
+ msgid "Restore slider"
2749
+ msgstr "Herstel slider"
2750
+
2751
+ msgid "The imported slider will have the same ID as the original export has. If you have a slider with the same ID, it will be overwritten."
2752
+ msgstr "De geïmporteerde slider zal hetzelfde ID hebben als de originele export. Als u al een slider hebt met hetzelfde ID dan zal deze overschreven worden."
2753
+
2754
+ msgid "Image mode"
2755
+ msgstr "Afbeelding modus"
2756
+
2757
+ msgid "Clone"
2758
+ msgstr "Klonen"
2759
+
2760
+ msgid "Old site url"
2761
+ msgstr "Oude site URL"
2762
+
2763
+ msgid "Original"
2764
+ msgstr "Origineel"
2765
+
2766
+ msgid "You can choose how the slide images are loaded."
2767
+ msgstr "U kunt kiezen hoe de slide afbeeldingen geladen worden."
2768
+
2769
+ msgid "Trash"
2770
+ msgstr "Prullenbak"
2771
+
2772
+ msgid "Empty trash"
2773
+ msgstr "Prullenbak leegmaken"
2774
+
2775
+ msgid "Slide saved."
2776
+ msgstr "Slide opgeslagen."
2777
+
2778
+ #, php-format
2779
+ msgid "%d static slides generated."
2780
+ msgstr "%d statische slides gegenereerd."
2781
+
2782
+ msgid "Slide renamed."
2783
+ msgstr "Slide hernoemd."
2784
+
2785
+ msgid "First slide changed."
2786
+ msgstr "Eerste slide veranderd."
2787
+
2788
+ msgid "Static overlay converted to slide."
2789
+ msgstr "Statische bovenlaag omgevormd tot slide."
2790
+
2791
+ msgid "Slide published."
2792
+ msgstr "Slide gepubliceerd."
2793
+
2794
+ msgid "Slide unpublished."
2795
+ msgstr "Slide gedepubliceerd."
2796
+
2797
+ msgid "Slide order saved."
2798
+ msgstr "Slide volgorde opgeslagen."
2799
+
2800
+ msgid "Slide(s) copied."
2801
+ msgstr "Slide(s) gekopieerd."
2802
+
2803
+ msgid "Slide deleted."
2804
+ msgstr "Slide verwijderd."
2805
+
2806
+ msgid "Slides created."
2807
+ msgstr "Slides aangemaakt."
2808
+
2809
+ msgid "Slide created."
2810
+ msgstr "Slide aangemaakt."
2811
+
2812
+ msgid "Failed to create slides."
2813
+ msgstr "Kon de slides niet aanmaken."
2814
+
2815
+ msgid "Static save"
2816
+ msgstr "Statisch opslaan"
2817
+
2818
+ msgid "Generator settings"
2819
+ msgstr "Generator instellingen"
2820
+
2821
+ msgid "Cache expiration"
2822
+ msgstr "Cache verval"
2823
+
2824
+ msgid "hours"
2825
+ msgstr "uur"
2826
+
2827
+ msgid "Start index"
2828
+ msgstr "Start index"
2829
+
2830
+ msgid "Group result"
2831
+ msgstr "Groepeer resultaat"
2832
+
2833
+ msgid "Smart Slider 3 deactivated on this site!"
2834
+ msgstr "Smart Slider 3 gedeactiveerd op deze site!"
2835
+
2836
+ msgid "New slider"
2837
+ msgstr "Nieuwe slider"
2838
+
2839
+ msgid "Alias removed"
2840
+ msgstr "Alias verwijderd"
2841
+
2842
+ msgid "Alias must contain one or more letters"
2843
+ msgstr "Alias moet één of meer letters bevatten"
2844
+
2845
+ #, php-format
2846
+ msgid "Alias updated to: %s"
2847
+ msgstr "Alias bijgewerkt tot %s"
2848
+
2849
+ msgid "Background animation"
2850
+ msgstr "Achtergrond animatie"
2851
+
2852
+ msgid "Animation type"
2853
+ msgstr "Animatie type"
2854
+
2855
+ msgid "The importing failed at the unzipping part."
2856
+ msgstr "Het importeren is mislukt bij het uitpakken."
2857
+
2858
+ msgid "You can't import sliders from Smart Slider 2."
2859
+ msgstr "U kunt geen sliders van Smart Slider 2 importeren."
2860
+
2861
+ msgid "Export file corrupted! Slider data is missing."
2862
+ msgstr "Export bestand is corrupt! Slider data ontbreekt."
2863
+
2864
+ msgid "Learn more"
2865
+ msgstr "Kom meer te weten"
2866
+
2867
+ #, php-format
2868
+ msgid "Increase %1$s in php.ini to 1000 or more. Current value: %2$s"
2869
+ msgstr "Verhoog %1$s in php.ini tot 1000 of meer. Huidige waarde: %2$s"
2870
+
2871
+ #, php-format
2872
+ msgid "Decrease %1$s below 15 in php.ini to prevent fatal errors on plugin updates. Current value: %2$s"
2873
+ msgstr "Verlaag %1$s tot een waarde kleiner dan 15 in php.ini om fatale fouten te vermijden bij plugin updates. Huidige waarde: %2$s"
2874
+
2875
+ msgid "Unable to connect to the API"
2876
+ msgstr "Kon geen verbinding met de API maken"
2877
+
2878
+ msgid "MySQL table missing"
2879
+ msgstr "MySQL tabel ontbreekt"
2880
+
2881
+ msgid "Your theme uses an outdated MooTools library which is not compatible."
2882
+ msgstr "Uw thema gebruikt een verouderde MooTools bibliotheek die niet compatibel is."
2883
+
2884
+ msgid "JCH Optimize could have a conflict with Smart Slider's Global settings -> Framework settings -> Async Non-Primary CSS. If your Google fonts are not loading, turn this option off."
2885
+ msgstr "JCH Optimize kan een conflict hebben met de Globale instellingen -> Framework instellingen -> Async niet-primaire CSS instelling van Smart Slider. Als uw Google fonts niet ingeladen worden schakel deze optie dan uit."
2886
+
2887
+ msgid "This plugin breaks JavaScript in the admin area, deactivate it and use alternative plugin."
2888
+ msgstr "Deze plugin breekt JavaScript in de admin zone. Deactivateer hem en gebruik een alternatieve plugin."
2889
+
2890
+ msgid "This plugin breaks Smart Slider 3 ajax calls if custom admin url enabled."
2891
+ msgstr "Deze plugin breekt Smart Slider 3 ajax aanroepen als een aangepaste admin URL geactiveerd is."
2892
+
2893
+ msgid "This plugin adds a background image to every SVG and breaks SSL."
2894
+ msgstr "Deze plugin voegt een achtergrondafbeelding toe aan elke SVG en breekt SSL."
2895
+
2896
+ msgid "This plugin has a JavaScript error which might break Smart Slider."
2897
+ msgstr "Deze plugin heeft een JavaScript fout die Smart Slider mogelijk breekt."
2898
+
2899
+ #, php-format
2900
+ msgid "This plugin breaks the filtering options of the dynamic slide generators when %1$s is set to %2$s. Also it has not received any updates since WordPress 3.9."
2901
+ msgstr "Deze plugin breekt de filtering opties van de dynamische slide generatoren als %1$s ingesteld is op %2$s. Hij heeft ook geen updates meer ontvangen sinds WordPress 3.9."
2902
+
2903
+ msgid "Add column"
2904
+ msgstr "Kolom toevoegen"
2905
+
2906
+ msgid "Year"
2907
+ msgstr "Jaar"
2908
+
2909
+ msgid "Month"
2910
+ msgstr "Maand"
2911
+
2912
+ msgid "Day"
2913
+ msgstr "Dag"
2914
+
2915
+ msgid "Hour"
2916
+ msgstr "Uur"
2917
+
2918
+ msgid "Minute"
2919
+ msgstr "Minuut"
2920
+
2921
+ msgid "Stack"
2922
+ msgstr "Stapel"
2923
+
2924
+ msgid "No description."
2925
+ msgstr "Geen beschrijving."
2926
+
2927
+ msgid "Generator not found"
2928
+ msgstr "Generator niet gevonden"
2929
+
2930
+ msgid "Test generator."
2931
+ msgstr "Test generator."
2932
+
2933
+ msgid "Generator type not found"
2934
+ msgstr "Generator type niet gevonden"
2935
+
2936
+ #, php-format
2937
+ msgid "%1$s generator missing the following source: %2$s"
2938
+ msgstr "Voor %1$s generator ontbreekt de volgende bron: %2$s"
2939
+
2940
+ msgid "Joomla articles"
2941
+ msgstr "Joomla artikels"
2942
+
2943
+ msgid "Creates slides from your Joomla articles or categories."
2944
+ msgstr "Maakt slides van uw Joomla artikels of categorieën."
2945
+
2946
+ msgid "Article"
2947
+ msgstr "Artikel"
2948
+
2949
+ msgid "Category"
2950
+ msgstr "Categorie"
2951
+
2952
+ msgid "Creates slides from your Joomla articles in the selected categories."
2953
+ msgstr "Maakt slides van uw Joomla artikels in de geselecteerde categorieën."
2954
+
2955
+ msgid "Tags"
2956
+ msgstr "Tags"
2957
+
2958
+ msgid "Featured"
2959
+ msgstr "Uitgelicht"
2960
+
2961
+ msgid "User ID"
2962
+ msgstr "Gebruiker ID"
2963
+
2964
+ msgid "Language"
2965
+ msgstr "Taal"
2966
+
2967
+ msgid "Extra variables"
2968
+ msgstr "Extra variabelen"
2969
+
2970
+ msgid "Turn on these options to generate more variables for the slides."
2971
+ msgstr "Schakel deze opties in om meer variabelen voor de slides te genereren."
2972
+
2973
+ msgid "Date format"
2974
+ msgstr "Datumformaat"
2975
+
2976
+ msgid "Time format"
2977
+ msgstr "Tijdsformaat"
2978
+
2979
+ msgid "Translate date and time"
2980
+ msgstr "Vertaal datum en tijd"
2981
+
2982
+ msgid "Title"
2983
+ msgstr "Titel"
2984
+
2985
+ msgid "User name"
2986
+ msgstr "Gebruikersnaam"
2987
+
2988
+ msgid "Hits"
2989
+ msgstr "Hits"
2990
+
2991
+ msgid "Creation time"
2992
+ msgstr "Aanmaaktijd"
2993
+
2994
+ msgid "Modification time"
2995
+ msgstr "Aanpassingstijd"
2996
+
2997
+ msgid "Publish time"
2998
+ msgstr "Publicatietijd"
2999
+
3000
+ msgid "Featured article ordering"
3001
+ msgstr "Volgorde uitgelichte artikels"
3002
+
3003
+ msgid "View article"
3004
+ msgstr "Bekijk artikel"
3005
+
3006
+ msgid "Creates slides from your Joomla categories. (Not the articles inside them.)"
3007
+ msgstr "Maakt slides van uw Joomla categorieën (niet van de artikels die zij bevatten)."
3008
+
3009
+ msgid "Parent category"
3010
+ msgstr "Moedercategorie"
3011
+
3012
+ msgid "View category"
3013
+ msgstr "Bekijk categorie"
3014
+
3015
+ msgid "Nothing"
3016
+ msgstr "Niets"
3017
+
3018
+ #, php-format
3019
+ msgid "Creates slides from %1$s."
3020
+ msgstr "Maakt slides van %1$s."
3021
+
3022
+ msgid "Posts by filter"
3023
+ msgstr "Inzendingen op filter"
3024
+
3025
+ msgid "Posts by IDs"
3026
+ msgstr "Inzendingen op IDs"
3027
+
3028
+ msgid "Custom"
3029
+ msgstr "Aangepast"
3030
+
3031
+ msgid "All custom posts"
3032
+ msgstr "Alle aangepaste inzendingen"
3033
+
3034
+ msgid "Creates slides from the posts of all your post types."
3035
+ msgstr "Maakt slides van de inzendingen van al uw inzending types."
3036
+
3037
+ msgid "Post types"
3038
+ msgstr "Inzending types"
3039
+
3040
+ msgid "Taxonomies"
3041
+ msgstr "Taxonomieën"
3042
+
3043
+ msgid "Post IDs to display"
3044
+ msgstr "Weer te geven inzending IDs"
3045
+
3046
+ #, php-format
3047
+ msgid "You can make your generator display only the posts with the set ID. No other post will be fetched, even if they match the set filters. %1$s Write one ID per line."
3048
+ msgstr "U kunt ervoor zorgen dat uw generator alleen de inzendignen toont met het ingestelde ID. Geen andere inzending zal opgehaald worden, zelfs niet als die voldoet aan de ingestelde filters. %1$s Schrijf één ID per regel."
3049
+
3050
+ msgid "Sticky"
3051
+ msgstr "Plakkend"
3052
+
3053
+ msgid "Post status"
3054
+ msgstr "Inzending status"
3055
+
3056
+ msgid "Post meta comparison"
3057
+ msgstr "Inzending meta vergelijking"
3058
+
3059
+ msgid "Field name"
3060
+ msgstr "Veldnaam"
3061
+
3062
+ msgid "Only show posts, where the given meta key is equal to the given meta value."
3063
+ msgstr "Toon alleen inzendingen waarvan de gegeven meta sleutel gelijk is aan de gegeven meta waarde."
3064
+
3065
+ msgid "Compare method"
3066
+ msgstr "Vergelijkingsmethode"
3067
+
3068
+ msgid "Field value"
3069
+ msgstr "Veldwaarde"
3070
+
3071
+ msgid "Meta comparison"
3072
+ msgstr "Meta vergelijking"
3073
+
3074
+ msgid "Same as the previous option, just you can write down more comparisons. Read the \"Field name\" and \"Compare method\" out from the previous option. Example:"
3075
+ msgstr "Hetzelfde als de vorige optie, alleen kunt u nu meer vergelijkingen neerschrijven. Lees de \"Veldnaam\" en \"Vergelijkingsmethode\" uit van de vorige optie. Bijvoorbeeld:"
3076
+
3077
+ msgid "Post date"
3078
+ msgstr "Inzending datum"
3079
+
3080
+ msgid "Modification date"
3081
+ msgstr "Aanpassingsdatum"
3082
+
3083
+ msgid "Random"
3084
+ msgstr "Willekeurig"
3085
+
3086
+ msgid "Given IDs"
3087
+ msgstr "Gegeven IDs"
3088
+
3089
+ msgid "Menu order"
3090
+ msgstr "Menu volgorde"
3091
+
3092
+ #, php-format
3093
+ msgid "Creates slides from the following post type: %1$s."
3094
+ msgstr "Maakt slides van het volgende inzending type: %1$s."
3095
+
3096
+ msgid "Relation"
3097
+ msgstr "Relatie"
3098
+
3099
+ msgid "Exclude posts"
3100
+ msgstr "Uit te sluiten inzendingen"
3101
+
3102
+ #, php-format
3103
+ msgid "The selected post IDs won't appear in the generator, even if they they match the set filters. %1$s Write one ID per line."
3104
+ msgstr "De geselecteerde inzending IDs zullen niet in de generator verschijnen, zelfs als zij overeenkomen met de ingestelde filters. %1$s Schrijf één ID per regel."
3105
+
3106
+ #, php-format
3107
+ msgid "You can create other comparison based on the previous \"Field name\" and \"Compare method\" options. %1$s Use the following format: published||=||yes %1$s Write one comparison per line."
3108
+ msgstr "U kunt een andere vergelijking maken gebaseerd op de vorige \"Veldnaam\" en \"Vergelijkingsmethode\" opties. %1$s Gebruik het volgende formaat: published||=||yes %1$s Schrijf één vergelijking per regel."
3109
+
3110
+ msgid "Post option"
3111
+ msgstr "Inzending optie"
3112
+
3113
+ msgid "Posts can have options, like a post can be \"sticky\" or not. You can choose to only display posts, which are selected to be IN or NOT IN this option."
3114
+ msgstr "Inzendingen kunnen opties hebben, een inzending kan bijvoorbeeld \"plakkend\" zijn of niet. U kunt ervoor kiezen om alleen inzendingen te tonen die geselecteerd zijn om IN of NIET IN deze optie te zijn."
3115
+
3116
+ msgid "Post relationship with selected option"
3117
+ msgstr "Post relatie met geselecteerde optie"
3118
+
3119
+ msgid "Date configuration"
3120
+ msgstr "Datum configuratie"
3121
+
3122
+ msgid "Identify datetime"
3123
+ msgstr "Identificeer datum en tijd"
3124
+
3125
+ msgid "Our system tries to identify the date and time in your variables."
3126
+ msgstr "Ons systeem probeert de datum en de tijd in uw variabelen te identificeren."
3127
+
3128
+ msgid "Datetime format"
3129
+ msgstr "Datetime formaat"
3130
+
3131
+ #, php-format
3132
+ msgid "You can use any %1$sPHP date format%2$s."
3133
+ msgstr "U mag eender welk %1$sPHP datum formaat%2$s gebruiken."
3134
+
3135
+ msgid "Translate dates"
3136
+ msgstr "Vertaal datums"
3137
+
3138
+ #, php-format
3139
+ msgid "Write one per line in the following format: from||to %1$s E.g.: Monday||Montag"
3140
+ msgstr "Schrijf er één per regel in het volgende formaat: van||tot %1$s Bijvoorbeeld: Monday||Maandag"
3141
+
3142
+ msgid "Replace variables"
3143
+ msgstr "Vervang variabelen"
3144
+
3145
+ msgid "Timestamp variables"
3146
+ msgstr "Tijdstempel variabelen"
3147
+
3148
+ msgid "Replace timestamp variables"
3149
+ msgstr "Vervang tijdstempel variabelen"
3150
+
3151
+ #, php-format
3152
+ msgid "The \"Datetime format\" will be used to create dates from the given timestamp containing variables. %1$s Separate them with comma."
3153
+ msgstr "Het \"Datetime formaat\" zal gebruikt worden om datums aan te maken vanaf de gegeven tijdstempel die variabelen bevat. %1$s Scheid ze door een komma."
3154
+
3155
+ msgid "File variables"
3156
+ msgstr "Bestandsvariabelen"
3157
+
3158
+ msgid "Replace file variables"
3159
+ msgstr "Vervang bestandsvariabelen"
3160
+
3161
+ #, php-format
3162
+ msgid "If you have IDs of files, you can replace those variables with the urls of the files instead. %1$s Separate them with comma."
3163
+ msgstr "Als u IDs van bestanden hebt dan kunt u deze variabelen vervangen door de URLs van die bestanden. %1$s Scheid ze door een komma."
3164
+
3165
+ msgid "Remove duplicate results"
3166
+ msgstr "Verwijder dubbele resultaten"
3167
+
3168
+ msgid "You can remove results based on one variable's uniqueness. For example if you want the images to be unique, you could write the \"image\" variable into this field (without quotemarks)."
3169
+ msgstr "U kunt resultaten verwijderen gebaseerd op de uniekheid van één variabele. Als u bijvoorbeeld wilt dat de afbeeldingen uniek zijn dan kunt u de \"image\" variabele in dit veld invullen (zonder aanhalingstekens)."
3170
+
3171
+ msgid "Custom field name"
3172
+ msgstr "Aangepaste veldnaam"
3173
+
3174
+ msgid "If it's set, this will be used instead of the 'Field' value."
3175
+ msgstr "Indien dit ingesteld is dan zal het gebruikt worden in plaats van de 'Veld' waarde."
3176
+
3177
+ msgid "Numeric"
3178
+ msgstr "Numeriek"
3179
+
3180
+ msgid "Alphabetic"
3181
+ msgstr "Alfabetisch"
3182
+
3183
+ msgid "Creates slides from your posts in the selected categories."
3184
+ msgstr "Maakt slides van uw inzendingen in de geselecteerde categorieën."
3185
+
3186
+ msgid "Categories"
3187
+ msgstr "Categorieën"
3188
+
3189
+ msgid "Remove shortcodes"
3190
+ msgstr "Verwijder snelcodes"
3191
+
3192
+ msgid "You can remove shortcodes from variables to avoid 3rd party content rendering in your slider."
3193
+ msgstr "U kunt snelcodes verwijderen uit variabelen om te vermijden dat derde partij inhoud in uw slider gegenereerd wordt."
3194
+
3195
+ msgid "Remove from variables"
3196
+ msgstr "Verwijder uit variabelen"
3197
+
3198
+ msgid "Write the name of the variables you want to remove the shortcodes from. Separate new variables with a comma and space. E.g. description, content"
3199
+ msgstr "Schrijf de naam van de variabelen waarvan u de snelcodes wilt verwijderen. Scheid nieuwe variabelen door een komma en een spatie. Bijvoorbeeld: beschrijving, inhoud"
3200
+
3201
+ msgid "Custom date variables"
3202
+ msgstr "Aangepaste datum variabelen"
3203
+
3204
+ #, php-format
3205
+ msgid "You can create custom date variables from your existing date variables. Write each variable to a new line and use the following format: variable||format. %3$s The \"variable\" should be an existing variable. Based on this existing variable, we create a new one with the \"_datetime\" suffix. (E.g. date_datetime.) %3$s The \"format\" can be any %1$sPHP date format%2$s."
3206
+ msgstr "U kunt aangepaste datumvariabelen maken vanaf uw bestaande datumvariabelen. Schrijf elke variabele op een nieuwe regel en gebruik het volgende formaat: variabele||formaat. %3$s De \"variabele\" moet een bestaande variabele zijn. Gebaseerd op deze bestaande variabele maken we een nieuwe met het \"_datumtijd\" achtervoegsel (bijvoorbeeld datum_datumtijd). %3$s Het \"formaat\" mag eender welk %1$sPHP datumformaat%2$s zijn."
3207
+
3208
+ msgid "Translate custom dates"
3209
+ msgstr "Vertaal aangepaste datums"
3210
+
3211
+ #, php-format
3212
+ msgid "You can translate the content of the newly created variables. %1$s Use the following format: from||to. Eg.: Monday||Montag"
3213
+ msgstr "U kunt de inhoud van de nieuw aangemaakte variabelen vertalen. %1$s Gebruik het volgende formaat: van||naar. Bijvoorbeeld: Monday||Maandag"
3214
+
3215
+ msgid "Date function"
3216
+ msgstr "Datum functie"
3217
+
3218
+ msgid "This function will be used to format these custom date variables. Usually the date_i18n works, but if your date will be off a little bit, then try out the other one."
3219
+ msgstr "Deze functie zal gebruikt worden om deze aangepaste datumvariabelen vorm te geven. Doorgaans werkt date_i18n, maar als uw datum er een beetje naast zit probeer dan de andere waarde."
3220
+
3221
+ msgid "Comment count"
3222
+ msgstr "Aantal commentaren"
3223
+
3224
+ msgid "Creates slides from the posts with the set IDs."
3225
+ msgstr "Maakt slides van de inzendingen met de ingestelde IDs."
3226
+
3227
+ msgid "Post or Page IDs"
3228
+ msgstr "Inzending of pagina IDs"
3229
+
3230
+ #, php-format
3231
+ msgid "You can write the ID of the page you want to show in your generator. %1$s Write one ID per line."
3232
+ msgstr "U kunt het ID ingeven van de pagina die u in uw generator wilt tonen. %1$s Schrijf één ID per regel."
3233
+
3234
+ msgid "Whole group"
3235
+ msgstr "Ganse groep"
3236
+
3237
+ msgid "Select slider"
3238
+ msgstr "Selecteer slider"
3239
+
3240
+ msgid "OR"
3241
+ msgstr "OF"
3242
+
3243
+ msgid "Select A Slider"
3244
+ msgstr "Selecteer een slider"
3245
+
3246
+ msgid "Insert a slider into your content"
3247
+ msgstr "Voeg een slider aan uw content toe"
3248
+
3249
+ msgid "Select Slider"
3250
+ msgstr "Selecteer slider"
3251
+
3252
+ msgid "Edit Slider"
3253
+ msgstr "Slider bewerken"
3254
+
3255
+ msgid "Select the slider you want to insert."
3256
+ msgstr "Selecteer de slider die u wilt invoegen."
3257
+
3258
+ msgctxt "Button layer default text"
3259
+ msgid "MORE"
3260
+ msgstr "MEER"
3261
+
3262
+ msgid "Label"
3263
+ msgstr "Label"
3264
+
3265
+ msgid "No wrap"
3266
+ msgstr "Niet omslaan"
3267
+
3268
+ msgid "Prevents the text from breaking into more lines"
3269
+ msgstr "Verhindert dat de tekst opgesplitst wordt in meerdere regels"
3270
+
3271
+ msgid "Rel"
3272
+ msgstr "Rel"
3273
+
3274
+ #, php-format
3275
+ msgid "Enter the %1$s rel attribute %2$s that represents the relationship between the current document and the linked document. Multiple rel attributes can be separated with space. E.g. nofollow noopener noreferrer"
3276
+ msgstr "Geef het %1$s rel attribuut %2$s in dat de relatie tussen het huidige document en het gelinkte document voorstelt. Meerdere rel attributen kunnen gescheiden worden door een spatie. Bijvoorbeeld: nofollow noopener noreferrer"
3277
+
3278
+ msgid "Icon"
3279
+ msgstr "Icoon"
3280
+
3281
+ msgid "Placement"
3282
+ msgstr "Plaatsing"
3283
+
3284
+ #, php-format
3285
+ msgid "Class on the %s element."
3286
+ msgstr "Class op het %s element."
3287
+
3288
+ msgid "Heading layer"
3289
+ msgstr "Hoofding laag"
3290
+
3291
+ msgid "Text animation"
3292
+ msgstr "Tekst animatie"
3293
+
3294
+ msgid "Incoming"
3295
+ msgstr "Binnenkomend"
3296
+
3297
+ msgid "Outgoing"
3298
+ msgstr "Uitgaande"
3299
+
3300
+ msgid "Backface visibility"
3301
+ msgstr "Backface zichtbaarheid"
3302
+
3303
+ #, php-format
3304
+ msgid "Fix width for the %1$s."
3305
+ msgstr "Vaste breedte voor de %1$s."
3306
+
3307
+ #, php-format
3308
+ msgid "Fix height for the %1$s."
3309
+ msgstr "Vaste hoogte voor de %1$s."
3310
+
3311
+ msgid "Alt tag"
3312
+ msgstr "Alt tag"
3313
+
3314
+ msgid "Optimize image"
3315
+ msgstr "Optimaliseer afbeelding"
3316
+
3317
+ msgid "You can turn off the Layer image optimization for this image, to resize it for tablet and mobile."
3318
+ msgstr "U kunt de optimalisatie van de laag afbeelding uitschakelen voor deze afbeelding, en dit om haar te herschalen voor tablets en mobieltjes."
3319
+
3320
+ msgctxt "Layer group"
3321
+ msgid "Special"
3322
+ msgstr "Speciaal"
3323
+
3324
+ msgctxt "Layer group"
3325
+ msgid "Media"
3326
+ msgstr "Media"
3327
+
3328
+ msgctxt "Layer group"
3329
+ msgid "Advanced"
3330
+ msgstr "Uitgebreid"
3331
+
3332
+ msgctxt "Layer"
3333
+ msgid "Missing"
3334
+ msgstr "Ontbreekt"
3335
+
3336
+ #, php-format
3337
+ msgid "Missing layer type: %s"
3338
+ msgstr "Ontbrekend laag type: %s"
3339
+
3340
+ msgid "Custom text for tablet"
3341
+ msgstr "Aangepaste tekst voor tablet"
3342
+
3343
+ msgid "Tablet text"
3344
+ msgstr "Tablet tekst"
3345
+
3346
+ msgid "Custom text for mobile"
3347
+ msgstr "Aangepaste tekst voor mobieltjes"
3348
+
3349
+ msgid "Mobile text"
3350
+ msgstr "Tekst mobieltjes"
3351
+
3352
+ msgid "Vimeo url or Video ID"
3353
+ msgstr "Vimeo URL of Video ID"
3354
+
3355
+ msgid "Cover image"
3356
+ msgstr "Cover afbeelding"
3357
+
3358
+ msgid "Aspect ratio"
3359
+ msgstr "Verhouding"
3360
+
3361
+ msgid "Fill layer height"
3362
+ msgstr "Laaghoogte opvullen"
3363
+
3364
+ msgid "Set on Style tab."
3365
+ msgstr "Stel in op stijl tab."
3366
+
3367
+ msgid "Video settings"
3368
+ msgstr "Video instellingen"
3369
+
3370
+ msgid "When ended"
3371
+ msgstr "Na het beëindigen"
3372
+
3373
+ msgid "Do nothing"
3374
+ msgstr "Doe niets"
3375
+
3376
+ msgid "Go to next slide"
3377
+ msgstr "Ga naar volgende slide"
3378
+
3379
+ msgid "Start time"
3380
+ msgstr "Start tijd"
3381
+
3382
+ msgid "Volume"
3383
+ msgstr "Volume"
3384
+
3385
+ msgid "Mute"
3386
+ msgstr "Dempen"
3387
+
3388
+ msgid "Pause on scroll"
3389
+ msgstr "Pauzeer bij scrollen"
3390
+
3391
+ msgid "Never"
3392
+ msgstr "Nooit"
3393
+
3394
+ msgid "When partly visible"
3395
+ msgstr "Indien gedeeltelijk zichtbaar"
3396
+
3397
+ msgid "When not visible"
3398
+ msgstr "Indien niet zichtbaar"
3399
+
3400
+ msgid "You can pause the video when the visitor scrolls away from the slider"
3401
+ msgstr "U kunt de video pauzeren als de bezoeker wegscrollt van de slider"
3402
+
3403
+ msgid "Private video"
3404
+ msgstr "Privé video"
3405
+
3406
+ msgid "Turn it on to remove the admin warning that your video is not accessible."
3407
+ msgstr "Schakel dit in om de beheerderswaarschuwing dat uw video niet toegankelijk is te verwijderen."
3408
+
3409
+ msgid "Display"
3410
+ msgstr "Weergave"
3411
+
3412
+ msgid "Only works on videos of Vimeo Pro users."
3413
+ msgstr "Werkt alleen bij video's van Vimeo Pro gebruikers."
3414
+
3415
+ msgid "Remove controls"
3416
+ msgstr "Verwijder bedieningselementen"
3417
+
3418
+ msgid "Removes the controls of the video, but it only works on videos of Vimeo Pro users."
3419
+ msgstr "Verwijdert de bedieningselementen van de video, maar dit werkt alleen bij video's van Vimeo Pro gebruikers."
3420
+
3421
+ msgid "Hides the title of the video, but only if video owner allows it."
3422
+ msgstr "Verbergt de titel van de video, maar alleen als de eigenaar van de video dit toelaat."
3423
+
3424
+ msgid "Users byline"
3425
+ msgstr "Gebruikers naamregel"
3426
+
3427
+ msgid "Hides the user's byline of the video, but only if video owner allows it."
3428
+ msgstr "Verbergt de naamregel van de gebruiker van de video, maar alleen als de eigenaar van de video dit toelaat."
3429
+
3430
+ msgid "Hides the profile image of the author, but only if video owner allows it. "
3431
+ msgstr "Verbergt de profiel afbeelding van de auteur, maar alleen als de eigenaar van de video dit toelaat. "
3432
+
3433
+ msgid "Play button"
3434
+ msgstr "Speel knop"
3435
+
3436
+ msgid "Play"
3437
+ msgstr "Spelen"
3438
+
3439
+ msgid "YouTube URL or Video ID"
3440
+ msgstr "YouTube URL of Video ID"
3441
+
3442
+ msgid "End time"
3443
+ msgstr "Eindtijd"
3444
+
3445
+ msgid "Hide YouTube logo"
3446
+ msgstr "Verberg YouTube logo"
3447
+
3448
+ msgid "Centered"
3449
+ msgstr "Gecentreerd"
3450
+
3451
+ msgid "Scales up and crops the video to cover the whole layer."
3452
+ msgstr "Vergroot en snijdt de video bij zodat de hele laag bedekt wordt."
3453
+
3454
+ msgid "Show related videos"
3455
+ msgstr "Toon gelijkaardige video's"
3456
+
3457
+ msgid "Anywhere"
3458
+ msgstr "Eender waar"
3459
+
3460
+ msgid "Same channel"
3461
+ msgstr "Hetzelfde kanaal"
3462
+
3463
+ msgid "YouTube no longer allows hiding the related videos at the end of the video. This setting defines whether the videos should come from the same channel as the video that was just played or from any other channel."
3464
+ msgstr "YouTube laat niet langer toe de gelijkaardige video's te verbergen aan het einde van de video. Deze instelling bepaalt of de video's moeten komen van hetzelfde kanaal als de video die net gespeeld werd of van een ander kanaal."
3465
+
3466
+ msgid "Slider error! Generator group not found: "
3467
+ msgstr "Slider fout! Generator groep niet gevonden: "
3468
+
3469
+ msgid "Slider error! Generator source not found: "
3470
+ msgstr "Slider fout! Generator bron niet gevonden: "
3471
+
3472
+ msgid "Downscale"
3473
+ msgstr "Verkleinen"
3474
+
3475
+ msgid "Allows the slider to scale down for smaller screens."
3476
+ msgstr "Laat toe dat de slider zich verkleint voor kleinere schermen."
3477
+
3478
+ msgid "Upscale"
3479
+ msgstr "Vergroten"
3480
+
3481
+ msgid "Allows the slider to scale up for larger screens."
3482
+ msgstr "Laat toe dat de slider zich vergroot voor grotere schermen."
3483
+
3484
+ msgid "Min height"
3485
+ msgstr "Min hoogte"
3486
+
3487
+ msgid "Prevents the slider from getting smaller than the set value."
3488
+ msgstr "Verhindert dat de slider kleiner wordt dan de ingestelde waarde."
3489
+
3490
+ msgid "Force full width"
3491
+ msgstr "Forceer volledige breedte"
3492
+
3493
+ msgid "The slider tries to fill the full width of the browser."
3494
+ msgstr "De slider probeert de volledige breedte van de browser op te vullen."
3495
+
3496
+ msgid "Overflow-X"
3497
+ msgstr "Overloop-X"
3498
+
3499
+ msgid "Prevents the vertical scrollbar from appear during certain slide background animations."
3500
+ msgstr "Verhindert dat de verticale scrollbalk verschijnt tijdens bepaalde slide achtergrond animaties."
3501
+
3502
+ msgid "Adjust slider width to"
3503
+ msgstr "Pas slider breedte aan tot"
3504
+
3505
+ msgid "You can make the slider fill up a selected parent element instead of the full browser width."
3506
+ msgstr "U kunt zorgen dat de slider een geselecteerd moederelement opvult in plaats van de volledige browser breedte."
3507
+
3508
+ msgid "Not found"
3509
+ msgstr "Niet gevonden"
3510
+
3511
+ msgid "Slider size is too small!"
3512
+ msgstr "Slider is te klein!"
3513
+
3514
+ msgid "Ken Burns effect"
3515
+ msgstr "Ken Burns effect"
3516
+
3517
+ msgid "Speed"
3518
+ msgstr "Snelheid"
3519
+
3520
+ msgid "Super slow"
3521
+ msgstr "Super traag"
3522
+
3523
+ msgid "Slow"
3524
+ msgstr "Traag"
3525
+
3526
+ msgid "Fast"
3527
+ msgstr "Snel"
3528
+
3529
+ msgid "Super fast"
3530
+ msgstr "Super snel"
3531
+
3532
+ msgid "Border width"
3533
+ msgstr "Rand breedte"
3534
+
3535
+ msgid "Border color"
3536
+ msgstr "Randkleur"
3537
+
3538
+ msgid "Super fast 4x"
3539
+ msgstr "Super snel 4x"
3540
+
3541
+ msgctxt "Slider type"
3542
+ msgid "Simple slider"
3543
+ msgstr "Simpele slider"
3544
+
3545
+ msgid "Main animation"
3546
+ msgstr "Hoofdanimatie"
3547
+
3548
+ msgid "No animation"
3549
+ msgstr "Geen animatie"
3550
+
3551
+ msgid "Crossfade"
3552
+ msgstr "Crossfade"
3553
+
3554
+ msgid "Horizontal - reversed"
3555
+ msgstr "Horizontal - omgekeerd"
3556
+
3557
+ msgid "Vertical - reversed"
3558
+ msgstr "Verticaal - omgekeerd"
3559
+
3560
+ msgctxt "Feature"
3561
+ msgid "Carousel"
3562
+ msgstr "Carousel"
3563
+
3564
+ msgid "If you turn off this option, you can't switch to the first slide from the last one."
3565
+ msgstr "Als u deze optie uitschakelt dan kunt u niet meer overschakelen van de laatste slide naar de eerste."
3566
+
3567
+ msgid "Background animations only work on the slide background images, which have Fill selected at their Fill mode. They don't affect any images if the background parallax is enabled."
3568
+ msgstr "Achtergrond animaties werken alleen voor de slide achtergrondafbeeldingen, die 'Opvullen' geselecteerd hebben voor hun 'Opvulmodus'. Zij hebben geen invloed op afbeeldingen als de achtergrond parallax geactiveerd is."
3569
+
3570
+ msgid "Shifted"
3571
+ msgstr "Verschoven"
3572
+
3573
+ msgid "The background and the main animation plays simultaneously or shifted."
3574
+ msgstr "De achtergrond en de hoofdanimatie spelen gelijktijdig of afwisselend."
3575
+
3576
+ msgid "Slider CSS Preset"
3577
+ msgstr "Slider CSS voorinstelling"
3578
+
3579
+ msgid "Light shadow"
3580
+ msgstr "Lichte schaduw"
3581
+
3582
+ msgid "Dark shadow"
3583
+ msgstr "Donkere schaduw"
3584
+
3585
+ msgid "Photo"
3586
+ msgstr "Foto"
3587
+
3588
+ msgid "Photo rounded"
3589
+ msgstr "Foto afgerond"
3590
+
3591
+ #, php-format
3592
+ msgid "Demo slider is not available with the following ID: %s"
3593
+ msgstr "Demo slider is niet beschikbaar met het volgende ID: %s"
3594
+
3595
+ msgid "Blue"
3596
+ msgstr "Blauw"
3597
+
3598
+ msgid "White"
3599
+ msgstr "Wit"
3600
+
3601
+ msgid "Green"
3602
+ msgstr "Groen"
3603
+
3604
+ msgid "Purple"
3605
+ msgstr "Purper"
3606
+
3607
+ msgid "Grey"
3608
+ msgstr "Grijs"
3609
+
3610
+ msgid "Black"
3611
+ msgstr "Zwart"
3612
+
3613
+ msgid "Rounded Blue"
3614
+ msgstr "Afgerond blauw"
3615
+
3616
+ msgid "Rounded Green"
3617
+ msgstr "Afgerond groen"
3618
+
3619
+ msgid "Rounded Purple"
3620
+ msgstr "Afgerond purper"
3621
+
3622
+ msgid "Rounded Grey"
3623
+ msgstr "Afgerond grijs"
3624
+
3625
+ msgid "Rounded White"
3626
+ msgstr "Afgerond wit"
3627
+
3628
+ msgid "Rounded Black"
3629
+ msgstr "Afgerond zwart"
3630
+
3631
+ msgid "Border White"
3632
+ msgstr "Rand wit"
3633
+
3634
+ msgid "Border Dark"
3635
+ msgstr "Rand donker"
3636
+
3637
+ msgid "Rectangle Green"
3638
+ msgstr "Rechthoek groen"
3639
+
3640
+ msgid "Rectangle Blue"
3641
+ msgstr "Rechthoek blauw"
3642
+
3643
+ msgid "Rectangle Purple"
3644
+ msgstr "Rechthoek purper"
3645
+
3646
+ msgid "Rectangle Grey"
3647
+ msgstr "Rechthoek grijs"
3648
+
3649
+ msgid "Rounded Rectangle Green"
3650
+ msgstr "Afgeronde rechthoek groen"
3651
+
3652
+ msgid "Rounded Rectangle Blue"
3653
+ msgstr "Afgeronde rechthoek blauw"
3654
+
3655
+ msgid "Rounded Rectangle Purple"
3656
+ msgstr "Afgeronde rechthoek purper"
3657
+
3658
+ msgid "Border Light"
3659
+ msgstr "Rand licht"
3660
+
3661
+ msgid "My styles"
3662
+ msgstr "Mijn stijlen"
3663
+
3664
+ msgid "X-small Light"
3665
+ msgstr "Extra klein licht"
3666
+
3667
+ msgid "X-small Dark"
3668
+ msgstr "Extra klein donker"
3669
+
3670
+ msgid "Small Light"
3671
+ msgstr "Klein licht"
3672
+
3673
+ msgid "Small Dark"
3674
+ msgstr "Klein donker"
3675
+
3676
+ msgid "Medium Light"
3677
+ msgstr "Medium licht"
3678
+
3679
+ msgid "Medium Dark"
3680
+ msgstr "Medium donker"
3681
+
3682
+ msgid "Large Light"
3683
+ msgstr "Groot licht"
3684
+
3685
+ msgid "Large Dark"
3686
+ msgstr "Groot donker"
3687
+
3688
+ msgid "X-large Light"
3689
+ msgstr "Extra groot licht"
3690
+
3691
+ msgid "X-large Dark"
3692
+ msgstr "Extra groot donker"
3693
+
3694
+ msgid "My fonts"
3695
+ msgstr "Mijn fonts"
3696
+
3697
+ msgid "Warp"
3698
+ msgstr "Afwijking"
3699
+
3700
+ msgid "Twirl"
3701
+ msgstr "Ronddraaien"
3702
+
3703
+ msgid "Domino"
3704
+ msgstr "Domino"
3705
+
3706
+ msgid "Stand up"
3707
+ msgstr "Opstaan"
3708
+
3709
+ msgid "Rotate down"
3710
+ msgstr "Roteer naar beneden"
3711
+
3712
+ msgid "Elastic"
3713
+ msgstr "Elastiek"
3714
+
3715
+ msgid "Random elastic"
3716
+ msgstr "Willekeurig elastisch"
3717
+
3718
+ msgid "My text animations"
3719
+ msgstr "Mijn tekst animaties"
3720
+
3721
+ msgid "Morph - Wave"
3722
+ msgstr "Morph - Wave"
3723
+
3724
+ msgid "Morph - Brush"
3725
+ msgstr "Morph - Brush"
3726
+
3727
+ msgid "Morph - Flow"
3728
+ msgstr "Morph - Flow"
3729
+
3730
+ msgid "Morph - Noise"
3731
+ msgstr "Morph - Noise"
3732
+
3733
+ msgid "Distortion - Mosaic"
3734
+ msgstr "Distortion - Mosaic"
3735
+
3736
+ msgid "Distortion - Triangle"
3737
+ msgstr "Distortion - Triangle"
3738
+
3739
+ msgid "Distortion - Flow"
3740
+ msgstr "Vervorming - Flow"
3741
+
3742
+ msgid "Distortion - Warp"
3743
+ msgstr "Vervorming - Warp"
3744
+
3745
+ msgid "Distortion - Storm"
3746
+ msgstr "Vervorming - Storm"
3747
+
3748
+ msgid "Distortion - Wave"
3749
+ msgstr "Distortion - Wave"
3750
+
3751
+ msgid "Distortion - Shard"
3752
+ msgstr "Vervorming - Shard"
3753
+
3754
+ msgid "Distortion - Noise"
3755
+ msgstr "Distortion - Noise"
3756
+
3757
+ msgid "Slices - Single"
3758
+ msgstr "Onderdelen - Enkel"
3759
+
3760
+ msgid "Slices - Simple rows and scale"
3761
+ msgstr "Onderdelen - Simpele rijen en herschalen"
3762
+
3763
+ msgid "Slices - Simple rows and rotate"
3764
+ msgstr "Onderdelen - Simpele rijen en roteren"
3765
+
3766
+ msgid "Slices - Simple rows reversed"
3767
+ msgstr "Onderdelen - Simpele rijen omgekeerd"
3768
+
3769
+ msgid "Slices - Simple rows and blur"
3770
+ msgstr "Onderdelen - Simpele rijen en wazig maken"
3771
+
3772
+ msgid "Slices - Triangle"
3773
+ msgstr "Onderdelen - Driehoek"
3774
+
3775
+ msgid "Slices - Reversed triangle"
3776
+ msgstr "Onderdelen - Omgekeerde driehoek"
3777
+
3778
+ msgid "Scale to left"
3779
+ msgstr "Schaal naar links"
3780
+
3781
+ msgid "Rotate to left"
3782
+ msgstr "Roteer naar links"
3783
+
3784
+ msgid "Fixed to left"
3785
+ msgstr "Vast aan linkerkant"
3786
+
3787
+ msgid "Parallax to left"
3788
+ msgstr "Parallax naar links"
3789
+
3790
+ msgid "Flow"
3791
+ msgstr "Vloeiend"
3792
+
3793
+ msgid "Flowing rows"
3794
+ msgstr "Vloeiende rijen"
3795
+
3796
+ msgid "Flowing cols"
3797
+ msgstr "Vloeiende kolommen"
3798
+
3799
+ msgid "Flowing tiles"
3800
+ msgstr "Vloeiende tegels"
3801
+
3802
+ msgid "Slide to left"
3803
+ msgstr "Schuif naar links"
3804
+
3805
+ msgid "Stage"
3806
+ msgstr "Stadium"
3807
+
3808
+ msgid "Zoom"
3809
+ msgstr "Zoomen"
3810
+
3811
+ msgid "Zoom out"
3812
+ msgstr "Uitzoomen"
3813
+
3814
+ msgid "Curtain to left"
3815
+ msgstr "Gordijn naar links"
3816
+
3817
+ msgid "Blocks to left"
3818
+ msgstr "Blokken naar links"
3819
+
3820
+ msgid "Slices to left"
3821
+ msgstr "Onderdelen naar links"
3822
+
3823
+ msgid "Reversed slices to left"
3824
+ msgstr "Omgekeerde stukjes naar links"
3825
+
3826
+ msgid "Puzzle"
3827
+ msgstr "Puzzel"
3828
+
3829
+ msgid "Switching to left"
3830
+ msgstr "Omschakelen naar links"
3831
+
3832
+ msgid "Explode"
3833
+ msgstr "Opblazen"
3834
+
3835
+ msgid "Rebuild"
3836
+ msgstr "Heropbouwen"
3837
+
3838
+ msgid "Page turn to left"
3839
+ msgstr "Pagina omslaan naar links"
3840
+
3841
+ msgid "3D bricks to left"
3842
+ msgstr "3D bakstenen naar links"
3843
+
3844
+ msgid "Vertical spin to left"
3845
+ msgstr "Verticaal draaien naar links"
3846
+
3847
+ msgid "3D rows to left"
3848
+ msgstr "3D rijen naar links"
3849
+
3850
+ msgid "3D columns to left"
3851
+ msgstr "3D kolommen naar links"
3852
+
3853
+ msgid "Spinning cuboid to left"
3854
+ msgstr "Naar links draaiende kubus"
3855
+
3856
+ msgid "Turning cuboid to left"
3857
+ msgstr "Draaiende kubus naar links"
3858
+
3859
+ msgid "Scale to top"
3860
+ msgstr "Schaal naar boven"
3861
+
3862
+ msgid "Scale to bottom"
3863
+ msgstr "Schaal naar beneden"
3864
+
3865
+ msgid "Rotate to top"
3866
+ msgstr "Roteer naar de top"
3867
+
3868
+ msgid "Rotate to bottom"
3869
+ msgstr "Roteer naar de bodem"
3870
+
3871
+ msgid "Fixed to top"
3872
+ msgstr "Vast aan bovenkant"
3873
+
3874
+ msgid "Fixed to bottom"
3875
+ msgstr "Vast aan onderkant"
3876
+
3877
+ msgid "Parallax to top"
3878
+ msgstr "Parallax naar boven"
3879
+
3880
+ msgid "Parallax to bottom"
3881
+ msgstr "Parallax naar beneden"
3882
+
3883
+ msgid "Flowing tiles vertical"
3884
+ msgstr "Vloeiende tegels verticaal"
3885
+
3886
+ msgid "Slide to bottom"
3887
+ msgstr "Schuif naar beneden"
3888
+
3889
+ msgid "Slide to top"
3890
+ msgstr "Schuif naar boven"
3891
+
3892
+ msgid "Curtain to bottom"
3893
+ msgstr "Gordijn naar beneden"
3894
+
3895
+ msgid "Curtain to top"
3896
+ msgstr "Gordijn naar boven"
3897
+
3898
+ msgid "Switching to bottom"
3899
+ msgstr "Omschakelen naar beneden"
3900
+
3901
+ msgid "Switching to top"
3902
+ msgstr "Omschakelen naar boven"
3903
+
3904
+ msgid "Horizontal spin to bottom"
3905
+ msgstr "Horizontaal doen draaien naar beneden"
3906
+
3907
+ msgid "Horizontal spin to top"
3908
+ msgstr "Horizontaal doen draaien naar boven"
3909
+
3910
+ msgid "3D bricks to bottom"
3911
+ msgstr "3D bakstenen naar beneden"
3912
+
3913
+ msgid "3D bricks to top"
3914
+ msgstr "3D bakstenen naar boven"
3915
+
3916
+ msgid "3D rows to bottom"
3917
+ msgstr "3D rijen naar beneden"
3918
+
3919
+ msgid "3D rows to top"
3920
+ msgstr "3D rijen naar boven"
3921
+
3922
+ msgid "3D columns to bottom"
3923
+ msgstr "3D kolommen naar beneden"
3924
+
3925
+ msgid "3D columns to top"
3926
+ msgstr "3D kolommen naar boven"
3927
+
3928
+ msgid "Spinning cuboid to bottom"
3929
+ msgstr "Naar beneden draaiende kubus"
3930
+
3931
+ msgid "Spinning cuboid to top"
3932
+ msgstr "Naar boven draaiende kubus"
3933
+
3934
+ msgid "Turning cuboid to bottom"
3935
+ msgstr "Draaiende kubus naar beneden"
3936
+
3937
+ msgid "Turning cuboid to top"
3938
+ msgstr "Draaiende kubus naar boven"
3939
+
3940
+ msgid "Scale to right"
3941
+ msgstr "Schaal naar rechts"
3942
+
3943
+ msgid "Rotate to right"
3944
+ msgstr "Roteer naar rechts"
3945
+
3946
+ msgid "Fixed to right"
3947
+ msgstr "Vast aan rechterkant"
3948
+
3949
+ msgid "Parallax to right"
3950
+ msgstr "Parallax naar rechts"
3951
+
3952
+ msgid "Flow - reversed"
3953
+ msgstr "Vloeiend - omgekeerd"
3954
+
3955
+ msgid "Slide to right"
3956
+ msgstr "Schuif naar rechts"
3957
+
3958
+ msgid "Curtain to right"
3959
+ msgstr "Gordijn naar rechts"
3960
+
3961
+ msgid "Blocks to right"
3962
+ msgstr "Blokken naar rechts"
3963
+
3964
+ msgid "Slices to right"
3965
+ msgstr "Onderdelen naar rechts"
3966
+
3967
+ msgid "Reversed slices to right"
3968
+ msgstr "Omgekeerde stukjes naar rechts"
3969
+
3970
+ msgid "Switching to right"
3971
+ msgstr "Omschakelen naar rechts"
3972
+
3973
+ msgid "Page turn to right"
3974
+ msgstr "Pagina omslaan naar rechts"
3975
+
3976
+ msgid "Vertical spin to right"
3977
+ msgstr "Verticaal draaien naar rechts"
3978
+
3979
+ msgid "3D bricks to right"
3980
+ msgstr "3D bakstenen naar rechts"
3981
+
3982
+ msgid "3D rows to right"
3983
+ msgstr "3D rijen naar rechts"
3984
+
3985
+ msgid "3D columns to right"
3986
+ msgstr "3D kolommen naar rechts"
3987
+
3988
+ msgid "Spinning cuboid to right"
3989
+ msgstr "Naar rechts tollende kubus"
3990
+
3991
+ msgid "Turning cuboid to right"
3992
+ msgstr "Draaiende kubus naar rechts"
3993
+
3994
+ msgid "Downscale left"
3995
+ msgstr "Terugschalen links"
3996
+
3997
+ msgid "Downscale right"
3998
+ msgstr "Terugschalen rechts"
3999
+
4000
+ msgid "Downscale top"
4001
+ msgstr "Terugschalen bovenaan"
4002
+
4003
+ msgid "Downscale bottom"
4004
+ msgstr "Terugschalen onderaan"
4005
+
4006
+ msgid "Upscale left"
4007
+ msgstr "Groter maken naar links"
4008
+
4009
+ msgid "Upscale right"
4010
+ msgstr "Groter maken naar rechts"
4011
+
4012
+ msgid "Upscale top"
4013
+ msgstr "Groter maken naar boven"
4014
+
4015
+ msgid "Upscale bottom"
4016
+ msgstr "Groter maken naar beneden"
4017
+
4018
+ msgid "To left"
4019
+ msgstr "Naar links"
4020
+
4021
+ msgid "To right"
4022
+ msgstr "Naar rechts"
4023
+
4024
+ msgid "To top left"
4025
+ msgstr "Naar boven links"
4026
+
4027
+ msgid "To top right"
4028
+ msgstr "Naar boven rechts"
4029
+
4030
+ msgid "To bottom left"
4031
+ msgstr "Naar beneden links"
4032
+
4033
+ msgid "To bottom right"
4034
+ msgstr "Naar beneden rechts"
4035
+
4036
+ msgid "My layouts"
4037
+ msgstr "Mijn lay-outs"
4038
+
4039
+ msgctxt "Arrow direction"
4040
+ msgid "Previous"
4041
+ msgstr "Vorige"
4042
+
4043
+ msgid "Previous image"
4044
+ msgstr "Vorige afbeelding"
4045
+
4046
+ msgid "Hover color"
4047
+ msgstr "Muisover kleur"
4048
+
4049
+ msgid "Mirror"
4050
+ msgstr "Spiegel"
4051
+
4052
+ msgctxt "Arrow direction"
4053
+ msgid "Next"
4054
+ msgstr "Volgende"
4055
+
4056
+ msgid "Next image"
4057
+ msgstr "Volgende afbeelding"
4058
+
4059
+ msgid "Arrow"
4060
+ msgstr "Pijl"
4061
+
4062
+ msgid "Previous position"
4063
+ msgstr "Vorige positie"
4064
+
4065
+ msgid "Next position"
4066
+ msgstr "Volgende positie"
4067
+
4068
+ msgid "Previous alt tag"
4069
+ msgstr "Vorige alt tag"
4070
+
4071
+ msgid "Next alt tag"
4072
+ msgstr "Volgende alt tag"
4073
+
4074
+ msgid "Base64"
4075
+ msgstr "Base64"
4076
+
4077
+ msgid "Base64 encoded arrow images are loading faster and they are colorable. But optimization plugins often have errors in their codes related to them, so if your arrow won't load, turn this option off."
4078
+ msgstr "Base64 geëncodeerde pijl afbeeldingen laden sneller en zij kunnen gekleurd worden. Maar optimalisatie plugins hebben vaak fouten in hun codes die hiermee verband houden. Als uw pijl dus niet inlaadt schakel deze optie dan uit."
4079
+
4080
+ msgid "Image width - Desktop"
4081
+ msgstr "Afbeelding breedte - Desktop"
4082
+
4083
+ msgid "Image width - Tablet"
4084
+ msgstr "Afbeelding breedte - Tablet"
4085
+
4086
+ msgid "Image width - Mobile"
4087
+ msgstr "Afbeelding breedte - Mobieltje"
4088
+
4089
+ msgid "Pause"
4090
+ msgstr "Pauzeren"
4091
+
4092
+ msgid "Play autoplay"
4093
+ msgstr "Automatisch spelen"
4094
+
4095
+ msgid "Pause autoplay"
4096
+ msgstr "Pauzeer automatisch spelen"
4097
+
4098
+ msgid "Bar"
4099
+ msgstr "Balk"
4100
+
4101
+ msgid "Slide count"
4102
+ msgstr "Aantal slides"
4103
+
4104
+ msgid "The \"Title\" will be the index of the slide and \"Description\" will be the total number of slides."
4105
+ msgstr "De \"Titel\" zal de index van de slide zijn en \"Beschrijving\" zal het totaal aantal slides zijn."
4106
+
4107
+ msgid "Separator"
4108
+ msgstr "Scheidingsteken"
4109
+
4110
+ #, php-format
4111
+ msgid "You can set what separates the Tex bar Title and Description. This separator is used at the Slide count option, too, to separate the current and total slide number. %1$s To put the Description to a new line, use the &lt;br&gt; HTML tag."
4112
+ msgstr "U kunt instellen wat de titel van de tekstbalk en de beschrijving scheidt. Deze scheiding wordt ook gebruikt in de slide teller optie, om het huidige slide nummer te scheiden van het totaal aantal slides. %1$s Om de beschrijving op een nieuwe regel te tonen kunt u de &lt;br&gt; HTML tag gebruiken."
4113
+
4114
+ msgid "Bar full size"
4115
+ msgstr "Balk volledige grootte"
4116
+
4117
+ msgid "Shows on hover"
4118
+ msgstr "Toont bij muisover"
4119
+
4120
+ msgid "Hide on slides"
4121
+ msgstr "Verberg op slides"
4122
+
4123
+ msgid "List the slides separated by commas on which you want the controls to be hidden."
4124
+ msgstr "Lijst met slides, gescheiden door komma's, waarop u de bedieningselementen wilt verbergen."
4125
+
4126
+ msgid "Text bar"
4127
+ msgstr "Tekstbalk"
4128
+
4129
+ msgid "Bullets"
4130
+ msgstr "Opsommingstekens"
4131
+
4132
+ msgid "Bullet"
4133
+ msgstr "Opsommingsteken"
4134
+
4135
+ msgid "Side"
4136
+ msgstr "Zijkant"
4137
+
4138
+ msgid "Before"
4139
+ msgstr "Ervoor"
4140
+
4141
+ msgid "After"
4142
+ msgstr "Na"
4143
+
4144
+ msgid "Shadow"
4145
+ msgstr "Schaduw"
4146
+
4147
+ msgid "Thumbnails"
4148
+ msgstr "Miniaturen"
4149
+
4150
+ msgid "Desktop width"
4151
+ msgstr "Breedte voor desktops"
4152
+
4153
+ msgid "Tablet width"
4154
+ msgstr "Breedte voor tablets"
4155
+
4156
+ msgid "Mobile width"
4157
+ msgstr "Breedte voor mobieltjes"
4158
+
4159
+ msgid "Align thumbnails"
4160
+ msgstr "Miniaturen uitlijnen"
4161
+
4162
+ msgid "Start"
4163
+ msgstr "Start"
4164
+
4165
+ msgid "End"
4166
+ msgstr "Einde"
4167
+
4168
+ msgid "Space between"
4169
+ msgstr "Ruimte ertussen"
4170
+
4171
+ msgid "Space around"
4172
+ msgstr "Ruimte rondom"
4173
+
4174
+ msgid "Caption"
4175
+ msgstr "Onderschrift"
4176
+
4177
+ msgid "The height (horizontal orientation) or width (vertical orientation) of the caption container."
4178
+ msgstr "De hoogte (horizontale oriëntatie) of breedte (verticale oriëntatie) van de onderschrift container."
4179
+
4180
+ msgid "Next arrow image"
4181
+ msgstr "Volgende pijl afbeelding"
4182
+
4183
+ msgid "The previous arrow image will be mirrored."
4184
+ msgstr "De vorige pijl afbeelding zal gespiegeld worden."
4185
+
4186
+ msgid "Group by"
4187
+ msgstr "Groepeer op"
4188
+
4189
+ msgctxt "Unit"
4190
+ msgid "thumbnails"
4191
+ msgstr "miniaturen"
4192
+
4193
+ msgid "You can break your thumbnails into rows or columns."
4194
+ msgstr "U kunt uw miniaturen opdelen in rijen of kolommen."
4195
+
4196
+ msgid "The height (horizontal orientation) or width (vertical orientation) of the thumbnail container in px or %."
4197
+ msgstr "De hoogte (horizontale oriëntatie) of breedte (verticale oriëntatie) van de miniatuur container in px of %."
4198
+
4199
+ #, javascript-format
4200
+ msgid "Switches %s slide(s)."
4201
+ msgstr "Omschakelen van %s slide(s)."
4202
+
4203
+ #, javascript-format
4204
+ msgid "Loops %s and stops before starting slide."
4205
+ msgstr "Herhaalt %s en stopt voor de beginslide."
4206
+
4207
+ #, javascript-format
4208
+ msgid "Loops %s and returns to starting slide."
4209
+ msgstr "Herhaalt %s en keert terug naar de beginslide."
4210
+
4211
+ #, javascript-format
4212
+ msgid "Switches to the %s. slide."
4213
+ msgstr "Schakelt om naar de %s slide."
4214
+
4215
+ msgid "Top and bottom"
4216
+ msgstr "Bovenaan en onderaan"
4217
+
4218
+ msgid "License key cannot be empty!"
4219
+ msgstr "Licentiesleutel mag niet leeg zijn!"
4220
+
4221
+ msgid "License key is active!"
4222
+ msgstr "Licentiesleutel is actief!"
4223
+
4224
+ msgid "Missing sliders!"
4225
+ msgstr "Ontbrekende sliders!"
4226
+
4227
+ msgid "Line color"
4228
+ msgstr "Lijnkleur"
4229
+
4230
+ msgid "Number of particles"
4231
+ msgstr "Aantal deeltjes"
4232
+
4233
+ msgid "Grab"
4234
+ msgstr "Pak"
4235
+
4236
+ msgid "Bubble"
4237
+ msgstr "Bubbel"
4238
+
4239
+ msgid "Repulse"
4240
+ msgstr "Terugstoot"
4241
+
4242
+ msgid "Push"
4243
+ msgstr "Duwen"
4244
+
4245
+ msgid "Remove"
4246
+ msgstr "Verwijderen"
4247
+
4248
+ msgid "Hide on mobile"
4249
+ msgstr "Verbergen op mobiele toestellen"
4250
+
4251
+ msgid "Type"
4252
+ msgstr "Type"
4253
+
4254
+ msgid "Secondary"
4255
+ msgstr "Secundair"
4256
+
4257
+ msgid "Flip"
4258
+ msgstr "Spiegelen"
4259
+
4260
+ msgid "Grow"
4261
+ msgstr "Groeien"
4262
+
4263
+ msgid "Shrink"
4264
+ msgstr "Krimpen"
4265
+
4266
+ msgid "Interval"
4267
+ msgstr "Interval"
4268
+
4269
+ msgid "Interval modifier"
4270
+ msgstr "Interval aanpasser"
4271
+
4272
+ msgctxt "Autoplay modifier"
4273
+ msgid "loops"
4274
+ msgstr "herhalingen"
4275
+
4276
+ msgctxt "Autoplay modifier"
4277
+ msgid "slide count"
4278
+ msgstr "aantal slides"
4279
+
4280
+ msgctxt "Autoplay modifier"
4281
+ msgid "slide index"
4282
+ msgstr "slide index"
4283
+
4284
+ msgid "Stops on"
4285
+ msgstr "Stopt op"
4286
+
4287
+ msgctxt "Autoplay modifier"
4288
+ msgid "last slide"
4289
+ msgstr "laatste slide"
4290
+
4291
+ msgctxt "Autoplay modifier"
4292
+ msgid "next slide"
4293
+ msgstr "volgende slide"
4294
+
4295
+ msgid "Polygons"
4296
+ msgstr "Polygonen"
4297
+
4298
+ msgid "Bloom"
4299
+ msgstr "Gloed"
4300
+
4301
+ msgid "Web"
4302
+ msgstr "Web"
4303
+
4304
+ msgid "Black widow"
4305
+ msgstr "Zwarte weduwe"
4306
+
4307
+ msgid "Zodiac"
4308
+ msgstr "Dierenriem"
4309
+
4310
+ msgid "Fading dots"
4311
+ msgstr "Vervagende stippen"
4312
+
4313
+ msgid "Pirouette"
4314
+ msgstr "Pirouette"
4315
+
4316
+ msgid "Sparkling"
4317
+ msgstr "Glinsterend"
4318
+
4319
+ msgid "Curve 1"
4320
+ msgstr "Curve 1"
4321
+
4322
+ msgid "Curve 2"
4323
+ msgstr "Curve 2"
4324
+
4325
+ msgid "Curve 3"
4326
+ msgstr "Curve 3"
4327
+
4328
+ msgid "Curve 4"
4329
+ msgstr "Curve 4"
4330
+
4331
+ msgid "Curves"
4332
+ msgstr "Curves"
4333
+
4334
+ msgid "Fan 1"
4335
+ msgstr "Ventilator 1"
4336
+
4337
+ msgid "Fan 2"
4338
+ msgstr "Ventilator 2"
4339
+
4340
+ msgid "Fan 3"
4341
+ msgstr "Ventilator 3"
4342
+
4343
+ msgid "Hills"
4344
+ msgstr "Bergen"
4345
+
4346
+ msgid "Incline 1"
4347
+ msgstr "Helling 1"
4348
+
4349
+ msgid "Incline 2"
4350
+ msgstr "Helling 2"
4351
+
4352
+ msgid "Incline 3"
4353
+ msgstr "Helling 3"
4354
+
4355
+ msgid "Inverse arrow"
4356
+ msgstr "Omgekeerde pijl"
4357
+
4358
+ msgid "Rectangle"
4359
+ msgstr "Rechthoek"
4360
+
4361
+ msgid "Slopes"
4362
+ msgstr "Hellingen"
4363
+
4364
+ msgid "Tilt 1"
4365
+ msgstr "Kantelen 1"
4366
+
4367
+ msgid "Tilt 2"
4368
+ msgstr "Kantelen 2"
4369
+
4370
+ msgid "Triangle 1"
4371
+ msgstr "Driehoek 1"
4372
+
4373
+ msgid "Triangle 2"
4374
+ msgstr "Driehoek 2"
4375
+
4376
+ msgid "Wave 1"
4377
+ msgstr "Golf 1"
4378
+
4379
+ msgid "Wave 2"
4380
+ msgstr "Golf 2"
4381
+
4382
+ msgid "Waves"
4383
+ msgstr "Golven"
4384
+
4385
+ msgid "2 Colors"
4386
+ msgstr "2 kleuren"
4387
+
4388
+ msgid "Fan"
4389
+ msgstr "Ventilator"
4390
+
4391
+ msgid "Masked waves"
4392
+ msgstr "Gemaskeerde golven"
4393
+
4394
+ msgid "Ribbon"
4395
+ msgstr "Lint"
4396
+
4397
+ msgid "The secret is empty. Please insert that value too!"
4398
+ msgstr "Het geheim is leeeg. Geef die waarde ook in!"
4399
+
4400
+ msgid "The App ID is empty. Please insert that value too!"
4401
+ msgstr "Het App ID is leeg. Geef die waarde ook in!"
4402
+
4403
+ #, php-format
4404
+ msgid "%1$s allows HTTPS Redirect URIs only! You must move your site to HTTPS in order to use this generator! - %2$s How to get SSL for my WordPress site? %3$s"
4405
+ msgstr "%1$s laat alleen HTTPS doorverwijzing URIs toe! U moet uw site naar HTTPS verplaatsen om deze generator te gebruiken! - %2$s Hoe verkrijg ik SSL voor mijn WordPress site? %3$s"
4406
+
4407
+ #, php-format
4408
+ msgid "%2$s Check the documentation %3$s to learn how to configure your %1$s app."
4409
+ msgstr "%2$s Raadpleeg de documentatie %3$s om te leren hoe u uw %1$s app moet configureren."
4410
+
4411
+ msgctxt "Facebook app permission"
4412
+ msgid "pages read engagement"
4413
+ msgstr "pagina's gelezen engagement"
4414
+
4415
+ msgid "Pages read engagement permission"
4416
+ msgstr "Pagina's lezen engagement permissie"
4417
+
4418
+ msgid "You need \"pages_read_engagement\" permission if you want to access datas of Facebook pages, where you are an administrator. For other pages you still need to turn this option on, but request access to \"Page Public Content Access\" within your App."
4419
+ msgstr "U hebt \"pages_read_engagement\" permissie nodig als u toegang wilt hebben tot data van Facebook pagina's, waar u een administrator bent. Voor andere pagina's moet u deze optie nog steeds inschakelen, maar toegang vragen tot \"Page Public Content Access\" binnen uw app."
4420
+
4421
+ msgctxt "Facebook app permission"
4422
+ msgid "user photos"
4423
+ msgstr "gebruikersfoto's"
4424
+
4425
+ msgid "User photos permission"
4426
+ msgstr "Gebruiker foto permissie"
4427
+
4428
+ msgid "You need \"user_photos\" permission to access photos of users, except your own user."
4429
+ msgstr "U moet \"user_photos\" permissie hebben om toegang te krijgen tot foto's van gebruikers, behalve deze van uzelf."
4430
+
4431
+ msgid "Token"
4432
+ msgstr "Token"
4433
+
4434
+ msgid "Callback url"
4435
+ msgstr "Callback URL"
4436
+
4437
+ msgid "The token expired. Please request new token! "
4438
+ msgstr "Het token is vervallen. Gelieve een nieuw token aan te vragen! "
4439
+
4440
+ msgid "Request token"
4441
+ msgstr "Request token"
4442
+
4443
+ msgid "Facebook photos or posts on your page"
4444
+ msgstr "Facebook foto's of inzendingen op uw pagina"
4445
+
4446
+ msgid "Photos by album"
4447
+ msgstr "Foto's op album"
4448
+
4449
+ msgid "Posts by page"
4450
+ msgstr "Inzendingen op pagina"
4451
+
4452
+ msgid "User or page"
4453
+ msgstr "Gebruiker of pagina"
4454
+
4455
+ msgid "Album"
4456
+ msgstr "Album"
4457
+
4458
+ msgctxt "Facebook generator type"
4459
+ msgid "Facebook posts"
4460
+ msgstr "Facebook posts"
4461
+
4462
+ msgid "Page"
4463
+ msgstr "Pagina"
4464
+
4465
+ msgid "Feed"
4466
+ msgstr "Feed"
4467
+
4468
+ msgid "Remove special characters"
4469
+ msgstr "Verwijder speciale tekens"
4470
+
4471
+ msgid "Exclude Types"
4472
+ msgstr "Uit te sluiten types"
4473
+
4474
+ msgid "Separate the types by a comma. E.g.: share,album"
4475
+ msgstr "Scheid de types door een komma. Bijvoorbeeld: share,album"
4476
+
4477
+ msgid "The key and secret is not valid!"
4478
+ msgstr "De sleutel en geheim is niet geldig!"
4479
+
4480
+ msgid "There are no photos in this album!"
4481
+ msgstr "Er zitten geen foto's in dit album!"
4482
+
4483
+ msgid "Please choose an album!"
4484
+ msgstr "Kies een album!"
4485
+
4486
+ msgid "There are no photos in this gallery!"
4487
+ msgstr "Er zitten geen foto's in deze galerij!"
4488
+
4489
+ msgid "Please chooose a gallery!"
4490
+ msgstr "Kies een galerij!"
4491
+
4492
+ msgid "Privacy"
4493
+ msgstr "Privacy"
4494
+
4495
+ msgid "There are no photos with this privacy filter!"
4496
+ msgstr "Er zijn geen foto's met deze privacy filter!"
4497
+
4498
+ msgctxt "Flickr generator type"
4499
+ msgid "Flickr search"
4500
+ msgstr "Flickr zoeken"
4501
+
4502
+ msgid "User name or ID"
4503
+ msgstr "Gebruikersnaam of ID"
4504
+
4505
+ msgid "Search in title, description or tags"
4506
+ msgstr "Zoek in de titel, beschrijving of tags"
4507
+
4508
+ msgid "Folder"
4509
+ msgstr "Map"
4510
+
4511
+ msgid "Images in folder"
4512
+ msgstr "Afbeeldingen in map"
4513
+
4514
+ msgid "Images in folder and subfolders"
4515
+ msgstr "Afbeeldingen in mappen en submappen"
4516
+
4517
+ msgid "Videos in folder"
4518
+ msgstr "Video's in map"
4519
+
4520
+ msgid "Source folder"
4521
+ msgstr "Bronmap"
4522
+
4523
+ msgid "Remove resized images"
4524
+ msgstr "Verwijder herschaalde afbeeldingen"
4525
+
4526
+ msgid "This option removes files that match the \"-[number]x[number].[extension]\" pattern in the end of their file names. For example, \"myimage.jpg\" will stay in the generator result, but \"myimage-120x120.jpg\" will be removed, because it's the same image, just in a smaller size."
4527
+ msgstr "Deze optie verwijdert bestanden die voldoen aan het \"-[getal]x[getal].[extensie]\" patroon aan het einde van hun bestandsnamen. Bijvoorbeeld: \"mijnafbeelding.jpg\" zal in het generator resultaat blijven, maar \"mijnafbeelding-120x120.jpg\" zal verwijderd worden, omdat het om dezelfde afbeelding gaat, alleen in een kleiner formaat."
4528
+
4529
+ msgid "Filename"
4530
+ msgstr "Bestandsnaam"
4531
+
4532
+ msgid "Creation date"
4533
+ msgstr "Aanmaakdatum"
4534
+
4535
+ msgid "Wrong path. This is the default image folder path, so try to navigate from here:"
4536
+ msgstr "Verkeerd pad. Dit is het standaard pad naar de afbeeldingsmap. Probeer dus te navigeren vanaf hier:"
4537
+
4538
+ msgid "Folder not found."
4539
+ msgstr "Map niet gevonden."
4540
+
4541
+ msgid "Wrong path. This is the default upload/media folder path, so try to navigate from here:"
4542
+ msgstr "Verkeerd pad. Dit is het standaard pad naar de upload/media map. Probeer dus te navigeren vanaf hier:"
4543
+
4544
+ msgid "JSON from url"
4545
+ msgstr "JSON van URL"
4546
+
4547
+ msgid "JSON from input"
4548
+ msgstr "JSON van invoer"
4549
+
4550
+ msgid "Level separation"
4551
+ msgstr "Niveau scheiding"
4552
+
4553
+ msgid "JSON codes can be customized to have many different levels. From a code it is impossible to know from which level do you want to use the given datas on the different slides, so you have to select that level from this list."
4554
+ msgstr "JSON codes kunnen aangepast worden zodat zij veel verschillende niveaus hebben. Uit een code is onmogelijk vast te stellen van welk niveau u de gegeven data op de verschillende slides wilt gebruiken, dus moet u dat niveau uit deze lijst kiezen."
4555
+
4556
+ #, php-format
4557
+ msgid "The given text is not valid XML! %1$sValidate your code%2$s to make sure it is correct."
4558
+ msgstr "De gegeven tekst is geen geldige XML! %1$sValideer uw code%2$s om u ervan te vergewissen dat ze correct is."
4559
+
4560
+ #, php-format
4561
+ msgid "The given text is not valid JSON! %1$sValidate your code%2$s to make sure it is correct."
4562
+ msgstr "De gegeven tekst is geen geldige JSON! %1$sValideer uw code%2$s om u ervan te vergewissen dat ze correct is."
4563
+
4564
+ msgid "Try to change the \"Level separation\" or \"Remove levels from result\" setting."
4565
+ msgstr "Probeer de \"Niveau scheiding\" of \"Verwijder niveaus uit resultaat\" instelling."
4566
+
4567
+ msgid "Images"
4568
+ msgstr "Afbeeldingen"
4569
+
4570
+ msgid "Timezone offset in hours. For example: +2 or -7."
4571
+ msgstr "Tijdzone compensatie in uur. Bijvoorbeeld: +2 of -7."
4572
+
4573
+ msgid "The data in the given url is not valid XML."
4574
+ msgstr "De data in de gegeven URL is geen geldige XML."
4575
+
4576
+ msgid "CSV from url"
4577
+ msgstr "CSV uit URL"
4578
+
4579
+ msgid "CSV from input"
4580
+ msgstr "CSV uit invoer"
4581
+
4582
+ msgid "View tweet"
4583
+ msgstr "Bekijk tweet"
4584
+
4585
+ msgid "Comments"
4586
+ msgstr "Commentaren"
4587
+
4588
+ msgid "Date"
4589
+ msgstr "Datum"
4590
+
4591
+ msgid "Likes"
4592
+ msgstr "Likes"
4593
+
4594
+ msgid "Manual"
4595
+ msgstr "Handmatig"
4596
+
4597
+ msgid "Modified time"
4598
+ msgstr "Aanpassingstijd"
4599
+
4600
+ msgid "Plays"
4601
+ msgstr "Speelt"
4602
+
4603
+ msgid "Playlist"
4604
+ msgstr "Playlist"
4605
+
4606
+ msgid "optional"
4607
+ msgstr "optioneel"
4608
+
4609
+ #, php-format
4610
+ msgid "Creates slides from %1$s content."
4611
+ msgstr "Maakt slides van %1$s content."
4612
+
4613
+ msgid "Items"
4614
+ msgstr "Items"
4615
+
4616
+ msgid "Locations"
4617
+ msgstr "Locaties"
4618
+
4619
+ msgid "Types"
4620
+ msgstr "Types"
4621
+
4622
+ msgid "Expired"
4623
+ msgstr "Verlopen"
4624
+
4625
+ msgid "Started"
4626
+ msgstr "Begonnen"
4627
+
4628
+ msgid "Auction"
4629
+ msgstr "Veiling"
4630
+
4631
+ msgid "Negotiable price"
4632
+ msgstr "Onderhandelbare prijs"
4633
+
4634
+ msgid "Blocked by User"
4635
+ msgstr "Geblokkeerd door gebruiker"
4636
+
4637
+ msgid "Paid"
4638
+ msgstr "Betaald"
4639
+
4640
+ msgid "Buynow"
4641
+ msgstr "Koopnu"
4642
+
4643
+ msgid "Menu item (item ID)"
4644
+ msgstr "Menu item (item ID)"
4645
+
4646
+ msgid "Your url will point to the item within this menu item. You will only get a good result, if you will pick one of your DJ Classifields menu items or leave it on 'Default'."
4647
+ msgstr "Uw URL zal wijzen naar het item binnen dit menu item. U zal alleen een goed resultaat krijgen als u één van uw DJ Classifieds menu items kiest of het laat staan op 'Standaard'."
4648
+
4649
+ msgid "Start date"
4650
+ msgstr "Startdatum"
4651
+
4652
+ msgid "Expiration date"
4653
+ msgstr "Vervaldatum"
4654
+
4655
+ msgid "Price"
4656
+ msgstr "Prijs"
4657
+
4658
+ msgid "Include subcategories"
4659
+ msgstr "Inclusief subcategorieën"
4660
+
4661
+ msgid "Frontpage"
4662
+ msgstr "Voorpagina"
4663
+
4664
+ msgid "Exclude ID"
4665
+ msgstr "Uit te sluiten ID"
4666
+
4667
+ msgid "Category title"
4668
+ msgstr "Categorie titel"
4669
+
4670
+ msgid "Username"
4671
+ msgstr "Gebruikersnaam"
4672
+
4673
+ msgid "View post"
4674
+ msgstr "Bekijk inzending"
4675
+
4676
+ msgid "Resolved"
4677
+ msgstr "Opgelost"
4678
+
4679
+ msgid "Only main discussions"
4680
+ msgstr "Alleen hoofd discussies"
4681
+
4682
+ msgid "View discussion"
4683
+ msgstr "Bekijk discussie"
4684
+
4685
+ msgid "Events"
4686
+ msgstr "Evenementen"
4687
+
4688
+ msgid "Albums"
4689
+ msgstr "Albums"
4690
+
4691
+ msgid "Videos"
4692
+ msgstr "Video's"
4693
+
4694
+ msgid "Pages"
4695
+ msgstr "Pagina's"
4696
+
4697
+ msgid "Users"
4698
+ msgstr "Gebruikers"
4699
+
4700
+ msgid "Allowed user IDs"
4701
+ msgstr "Toegelaten gebruiker IDs"
4702
+
4703
+ msgid "Separate them by comma."
4704
+ msgstr "Scheid ze door een komma."
4705
+
4706
+ msgid "Banned user IDs"
4707
+ msgstr "Verbannen gebruiker IDs"
4708
+
4709
+ msgid "Ended"
4710
+ msgstr "Beëindigd"
4711
+
4712
+ msgid "All day"
4713
+ msgstr "Ganse dag"
4714
+
4715
+ msgid "Recurring events"
4716
+ msgstr "Herhalende evenementen"
4717
+
4718
+ msgid "Open"
4719
+ msgstr "Open"
4720
+
4721
+ msgid "Closed"
4722
+ msgstr "Gesloten"
4723
+
4724
+ msgid "Invite only"
4725
+ msgstr "Alleen op uitnodiging"
4726
+
4727
+ msgid "Location"
4728
+ msgstr "Locatie"
4729
+
4730
+ msgid "Pull posts only from these users. Separate them by comma."
4731
+ msgstr "Haal alleen de inzendingen van deze gebruikers op. Scheid ze door een komma."
4732
+
4733
+ msgid "Do not pull posts from these users. Separate them by comma."
4734
+ msgstr "Haal geen inzendingen van deze gebruikers op. Scheid ze door een komma."
4735
+
4736
+ msgid "Public"
4737
+ msgstr "Publiek"
4738
+
4739
+ msgid "Private"
4740
+ msgstr "Privé"
4741
+
4742
+ msgid "Notification"
4743
+ msgstr "Verwittiging"
4744
+
4745
+ msgid "Email only"
4746
+ msgstr "Alleen E-mail"
4747
+
4748
+ msgid "Internal only"
4749
+ msgstr "Alleen intern"
4750
+
4751
+ msgid "Profiles"
4752
+ msgstr "Profielen"
4753
+
4754
+ msgid "Badges"
4755
+ msgstr "Badges"
4756
+
4757
+ msgid "Register date"
4758
+ msgstr "Registratiedatum"
4759
+
4760
+ msgid "Last visit date"
4761
+ msgstr "Laatste bezoeksdatum"
4762
+
4763
+ msgid "Points"
4764
+ msgstr "Punten"
4765
+
4766
+ msgid "Products"
4767
+ msgstr "Producten"
4768
+
4769
+ msgid "Manufacturer"
4770
+ msgstr "Fabrikant"
4771
+
4772
+ msgid "On discount"
4773
+ msgstr "In afslag"
4774
+
4775
+ msgid "In stock"
4776
+ msgstr "Op voorraad"
4777
+
4778
+ msgid "Currency"
4779
+ msgstr "Munteenheid"
4780
+
4781
+ msgid "Product language"
4782
+ msgstr "Product taal"
4783
+
4784
+ msgid "Category language"
4785
+ msgstr "Categorie taal"
4786
+
4787
+ msgid "Manufacturer language"
4788
+ msgstr "Fabrikant taal"
4789
+
4790
+ msgid "Product name"
4791
+ msgstr "Product naam"
4792
+
4793
+ msgid "Product ID"
4794
+ msgstr "Product ID"
4795
+
4796
+ msgid "Recurring"
4797
+ msgstr "Herhalend"
4798
+
4799
+ msgid "All, but from recurring ones only parent events"
4800
+ msgstr "Allemaal, maar van herhalende alleen de bovenste evenementen"
4801
+
4802
+ msgid "Only recurring events"
4803
+ msgstr "Alleen zich herhalende evenementen"
4804
+
4805
+ msgid "Only recurring event parents"
4806
+ msgstr "Alleen zich herhalende moederevenementen"
4807
+
4808
+ msgid "Only not recurring events"
4809
+ msgstr "Alleen zich niet herhalende evenementen"
4810
+
4811
+ msgid "End date"
4812
+ msgstr "Einddatum"
4813
+
4814
+ msgid "ID"
4815
+ msgstr "ID"
4816
+
4817
+ msgid "Discount"
4818
+ msgstr "Korting"
4819
+
4820
+ msgid "Registration start date"
4821
+ msgstr "Registratie begindatum"
4822
+
4823
+ msgid "Cut off date"
4824
+ msgstr "Einde termijn"
4825
+
4826
+ msgid "Cancel before date"
4827
+ msgstr "Annuleren voor datum"
4828
+
4829
+ msgid "Publish up date"
4830
+ msgstr "Datum publiceren"
4831
+
4832
+ msgid "Publish down date"
4833
+ msgstr "Datum depubliceren"
4834
+
4835
+ msgid "Early bird discount date"
4836
+ msgstr "Korting vroege vogel datum"
4837
+
4838
+ msgid "Early bird discount amount"
4839
+ msgstr "Kortingsbedrag vroege vogels"
4840
+
4841
+ msgid "Late fee date"
4842
+ msgstr "Late vergoedingsdatum"
4843
+
4844
+ msgid "Recurring end date"
4845
+ msgstr "Herhaling einddatum"
4846
+
4847
+ msgid "Max end date"
4848
+ msgstr "Max einddatum"
4849
+
4850
+ msgid "Only display items with these IDs"
4851
+ msgstr "Toon alleen items met deze IDs"
4852
+
4853
+ msgid "Brand"
4854
+ msgstr "Merk"
4855
+
4856
+ msgid "Tag"
4857
+ msgstr "Tag"
4858
+
4859
+ msgid "Warehouse"
4860
+ msgstr "Magazijn"
4861
+
4862
+ msgid "Include all images"
4863
+ msgstr "Neem alle afbeeldingen op"
4864
+
4865
+ msgid "Sales"
4866
+ msgstr "Verkoop"
4867
+
4868
+ msgid "Average score"
4869
+ msgstr "Gemiddelde score"
4870
+
4871
+ msgid "Total vote"
4872
+ msgstr "Totaal stemmen"
4873
+
4874
+ msgid "Product IDs"
4875
+ msgstr "Product IDs"
4876
+
4877
+ msgid "Write the product IDs you want to display here, in the order you want them to appear in the generator. One product ID per line."
4878
+ msgstr "Schrijf hier de product IDs die u wilt tonen, in de volgorde dat ze in de generator moeten verschijnen. Eén product ID per regel."
4879
+
4880
+ msgid "One time events"
4881
+ msgstr "Eenmalige evenementen"
4882
+
4883
+ msgid "Repeating events"
4884
+ msgstr "Herhalende evenementen"
4885
+
4886
+ msgid "Date language"
4887
+ msgstr "Datum taal"
4888
+
4889
+ msgid "Offset value"
4890
+ msgstr "Compensatie waarde"
4891
+
4892
+ msgid "Timezone offset in hours. For example: +2 or -7. If you leave it empty, Joomla's System -> Global Configuration -> Server -> Server Time Zone setting will be used."
4893
+ msgstr "Tijdzone compensatie in uur. Bijvoorbeeld: +2 of -7. Als u dit leeg laat, dan zal de Joomla instelling uit Systeem -> Globale configuratie -> Server -> Servertijdzone gebruikt worden."
4894
+
4895
+ msgid "Status"
4896
+ msgstr "Status"
4897
+
4898
+ msgid "Trashed"
4899
+ msgstr "In prullenbak"
4900
+
4901
+ msgid "Ask down all product images"
4902
+ msgstr "Vraag alle product afbeeldingen op"
4903
+
4904
+ msgid "View item"
4905
+ msgstr "Bekijk item"
4906
+
4907
+ msgid "Viewed"
4908
+ msgstr "Bekeken"
4909
+
4910
+ msgid "View image"
4911
+ msgstr "Bekijk afbeelding"
4912
+
4913
+ msgid "Supplier"
4914
+ msgstr "Leverancier"
4915
+
4916
+ msgid "On sale"
4917
+ msgstr "Te koop"
4918
+
4919
+ msgid "Discount price"
4920
+ msgstr "Kortingsprijs"
4921
+
4922
+ msgid "All day event"
4923
+ msgstr "Ganse dag evenement"
4924
+
4925
+ msgid "Fallback language"
4926
+ msgstr "Terugval taal"
4927
+
4928
+ msgid "Show parent products only"
4929
+ msgstr "Toon alleen bovenliggende producten"
4930
+
4931
+ #, php-format
4932
+ msgid "Creates slides from %1$s events."
4933
+ msgstr "Maakt slides van %1$s evenementen."
4934
+
4935
+ msgid "Create custom date variables"
4936
+ msgstr "Maak aangepaste datumvariabelen"
4937
+
4938
+ msgid "You can write any date format (http://php.net/manual/en/function.date.php) in separate lines, and new variables will be created for them."
4939
+ msgstr "U kunt eender welk datumformaat op aparte regels schrijven (http://php.net/manual/en/function.date.php). Daarna zullen er nieuwe variabelen voor aangemaakt worden."
4940
+
4941
+ msgid "Write the original text, like 'Monday' then two | signs, and the text you want it to be translated to, for example 'Montag'. Together: Monday||Montag"
4942
+ msgstr "Schrijf de originele tekst, zoals 'Monday', daarna twee | tekens en de tekst waarnaar u deze tekst wilt vertalen. Bijvoorbeeld: 'Maandag'. Samen: Monday||Maandag"
4943
+
4944
+ msgid "Event start date"
4945
+ msgstr "Evenement begindatum"
4946
+
4947
+ msgid "Event end date"
4948
+ msgstr "Evenement einddatum"
4949
+
4950
+ msgid "Event creation date"
4951
+ msgstr "Evenement aanmaakdatum"
4952
+
4953
+ msgid "Event modification date"
4954
+ msgstr "Evenement aanpassingsdatum"
4955
+
4956
+ #, php-format
4957
+ msgid "Creates slides from %1$s galleries."
4958
+ msgstr "Maakt slides van %1$s galerijen."
4959
+
4960
+ msgid "Gallery"
4961
+ msgstr "Galerij"
4962
+
4963
+ msgid "View gallery"
4964
+ msgstr "Bekijk galerij"
4965
+
4966
+ msgid "Creates slides by your custom settings."
4967
+ msgstr "Maakt slides volgens uw aangepaste instellingen."
4968
+
4969
+ #, php-format
4970
+ msgid "You don't have custom generators yet. %1$s Check the documentation %2$s to learn how to create your own generator."
4971
+ msgstr "U hebt nog geen aangepaste generatoren. %1$s Raadpleeg de documentatie %2$s om te weten te komen hoe u uw eigen generator moet maken."
4972
+
4973
+ msgid "No options given"
4974
+ msgstr "Geen opties gegeven"
4975
+
4976
+ msgid "Exclude event IDs (One ID per line)"
4977
+ msgstr "Uit te sluiten evenement ID (één ID per regel)"
4978
+
4979
+ msgid "Location town"
4980
+ msgstr "Locatie stad"
4981
+
4982
+ msgid "Location state"
4983
+ msgstr "Locatie provincie"
4984
+
4985
+ msgid "Get all multisite events"
4986
+ msgstr "Haal alle multisite evenementen op"
4987
+
4988
+ msgid "Order result"
4989
+ msgstr "Sorteer resultaat"
4990
+
4991
+ msgid "Events per site"
4992
+ msgstr "Evenementen per site"
4993
+
4994
+ msgid "Format date variables"
4995
+ msgstr "Formatteer datum variabelen"
4996
+
4997
+ msgid "With the WordPress Settings -> General -> Timezone and Date format, new variables will be generated from the given variables. Separate them with comma."
4998
+ msgstr "Met de WordPress instellingen -> Algemeen -> Tijdzone en datum formaat zullen nieuwe variabelen gegenereerd worden vanaf de gegeven variabelen. Scheid ze door een komma."
4999
+
5000
+ msgid "Start time text"
5001
+ msgstr "Begintijd tekst"
5002
+
5003
+ msgid "End date text"
5004
+ msgstr "Einddatum tekst"
5005
+
5006
+ msgid "End time text"
5007
+ msgstr "Eindtijd tekst"
5008
+
5009
+ msgid "Rsvp date"
5010
+ msgstr "Rsvp datum"
5011
+
5012
+ msgid "Multisite Posts"
5013
+ msgstr "Multisite inzendingen"
5014
+
5015
+ msgid "Source gallery"
5016
+ msgstr "Bron galerij"
5017
+
5018
+ msgid "Organizers"
5019
+ msgstr "Organisatoren"
5020
+
5021
+ msgid "Venues"
5022
+ msgstr "Plaatsen"
5023
+
5024
+ msgid "Hide From Event Listings"
5025
+ msgstr "Verberg in evenement listings"
5026
+
5027
+ msgid "Event cost"
5028
+ msgstr "Evenement prijs"
5029
+
5030
+ msgid "Metakey name"
5031
+ msgstr "Metakey naam"
5032
+
5033
+ msgid "If its set, this will be used instead of the 'Field' value."
5034
+ msgstr "Indien dit ingesteld is dan zal het gebruikt worden in plaats van de 'Veld' waarde."
5035
+
5036
+ msgid "Sorting method"
5037
+ msgstr "Sorteermethode"
5038
+
5039
+ msgid "Galleries"
5040
+ msgstr "Galerijen"
5041
+
5042
+ msgid "Upload date"
5043
+ msgstr "Upload datum"
5044
+
5045
+ msgid "Average rating"
5046
+ msgstr "Gemiddelde waardering"
5047
+
5048
+ msgid "Rate count"
5049
+ msgstr "Aantal beoordelingen"
5050
+
5051
+ msgid "Hit count"
5052
+ msgstr "Aantal hits"
5053
+
5054
+ msgid "Root"
5055
+ msgstr "Hoofdmap"
5056
+
5057
+ msgid "Products by filter"
5058
+ msgstr "Producten op filter"
5059
+
5060
+ msgid "Products by IDs and/or SKUs"
5061
+ msgstr "Producten op IDs en/of SKUs"
5062
+
5063
+ msgid "Creates slides from your WooCommece categories. (Not from the products inside them.)"
5064
+ msgstr "Maakt slides van uw WooCommece categorieën (niet van de producten die erin zitten)."
5065
+
5066
+ msgid "Submenu limit"
5067
+ msgstr "Submenu limiet"
5068
+
5069
+ msgid "No limit"
5070
+ msgstr "Geen limiet"
5071
+
5072
+ msgid "Downloadable"
5073
+ msgstr "Downloadbaar"
5074
+
5075
+ msgid "Virtual"
5076
+ msgstr "Virtueel"
5077
+
5078
+ msgid "Create text variables (one per line)"
5079
+ msgstr "Maak tekst variabelen (een per regel)"
5080
+
5081
+ msgid "if 'variable' equals to 'equalvalue', then you will get the text 'true', but if it's not equal, the text will be 'false'. The new variable's name will be textvariable (the 'variable' replaced by your variable's name)."
5082
+ msgstr "als 'variabele' gelijk is aan 'gelijkewaarde' dan krijgt u de tekst 'true', maar als hij niet gelijk is dan zal de tekst 'false' zijn. De naam van de nieuwe variabele zal tekstvariabele zijn (de 'variabele' vervangen door de naam van uw variabele)."
5083
+
5084
+ msgid "Round rating"
5085
+ msgstr "Beoordeling afronden"
5086
+
5087
+ msgid "Half"
5088
+ msgstr "Half"
5089
+
5090
+ msgid "Third"
5091
+ msgstr "Derde"
5092
+
5093
+ msgid "Quarter"
5094
+ msgstr "Kwart"
5095
+
5096
+ msgid "Visibility"
5097
+ msgstr "Zichtbaarheid"
5098
+
5099
+ msgid "Shop and search results"
5100
+ msgstr "Shop en zoek resultaten"
5101
+
5102
+ msgid "Shop only"
5103
+ msgstr "Alleen shoppen"
5104
+
5105
+ msgid "Search results only"
5106
+ msgstr "Alleen zoekresultaten"
5107
+
5108
+ msgid "Replace these timestamp variables"
5109
+ msgstr "Vervang deze tijdstempel variabelen"
5110
+
5111
+ #, php-format
5112
+ msgid "Any PHP date format can be used: %s"
5113
+ msgstr "Eender welk PHP datumformaat mag gebruikt worden: %s"
5114
+
5115
+ msgid "Total sales"
5116
+ msgstr "Totale verkoop"
5117
+
5118
+ msgid "Regular price"
5119
+ msgstr "Normale prijs"
5120
+
5121
+ msgid "Sale price"
5122
+ msgstr "Verkoopsprijs"
5123
+
5124
+ msgid "IDs (one per line)"
5125
+ msgstr "IDs (één per regel)"
5126
+
5127
+ msgid "SKUs (one per line)"
5128
+ msgstr "SKUs (één per regel)"
5129
+
5130
+ msgid "Move"
5131
+ msgstr "Verplaatsen"
5132
+
5133
+ msgid "Reveal"
5134
+ msgstr "Onthullen"
5135
+
5136
+ msgid "Bounce"
5137
+ msgstr "Stuiteren"
5138
+
5139
+ msgid "Special"
5140
+ msgstr "Speciaal"
5141
+
5142
+ msgid "Left fade"
5143
+ msgstr "Links vervagen"
5144
+
5145
+ msgid "Right fade"
5146
+ msgstr "Rechts vervagen"
5147
+
5148
+ msgid "Top fade"
5149
+ msgstr "Bovenaan vervagen"
5150
+
5151
+ msgid "Bottom fade"
5152
+ msgstr "Onderaan vervagen"
5153
+
5154
+ msgid "Flash"
5155
+ msgstr "Flits"
5156
+
5157
+ msgid "Left to Right"
5158
+ msgstr "Links naar rechts"
5159
+
5160
+ msgid "Top to Bottom"
5161
+ msgstr "Van boven naar beneden"
5162
+
5163
+ msgid "Skew Left to Right"
5164
+ msgstr "Links naar rechts scheeftrekken"
5165
+
5166
+ msgid "Downscale back out"
5167
+ msgstr "Terugschalen uitzoomend"
5168
+
5169
+ msgid "Upscale back out"
5170
+ msgstr "Groter maken naar buiten"
5171
+
5172
+ msgid "Pulse"
5173
+ msgstr "Pulseren"
5174
+
5175
+ msgid "Flip left"
5176
+ msgstr "Links spiegelen"
5177
+
5178
+ msgid "Flip right"
5179
+ msgstr "Rechts spiegelen"
5180
+
5181
+ msgid "Flip down"
5182
+ msgstr "Naar onder spiegelen"
5183
+
5184
+ msgid "Flip up"
5185
+ msgstr "Naar boven spiegelen"
5186
+
5187
+ msgid "Flip in X"
5188
+ msgstr "Spiegelen om X"
5189
+
5190
+ msgid "Flip in Y"
5191
+ msgstr "Spiegelen om Y"
5192
+
5193
+ msgid "Flap"
5194
+ msgstr "Afhangende rand"
5195
+
5196
+ msgid "Rotate top left"
5197
+ msgstr "Roteer naar linksboven"
5198
+
5199
+ msgid "Rotate top right"
5200
+ msgstr "Roteer naar rechtsboven"
5201
+
5202
+ msgid "Roll in"
5203
+ msgstr "Binnenrollen"
5204
+
5205
+ msgid "Rotate top left back out"
5206
+ msgstr "Roteer naar linksboven en terug naar buiten"
5207
+
5208
+ msgid "Rotate all axis"
5209
+ msgstr "Roteer alle assen"
5210
+
5211
+ msgid "Bounce in"
5212
+ msgstr "Binnenstuiteren"
5213
+
5214
+ msgid "Bounce in left"
5215
+ msgstr "Links binnenstuiteren"
5216
+
5217
+ msgid "Bounce in right"
5218
+ msgstr "Rechts binnenstuiteren"
5219
+
5220
+ msgid "Bounce in down"
5221
+ msgstr "Naar beneden binnenstuiteren"
5222
+
5223
+ msgid "Bounce in up"
5224
+ msgstr "Naar boven binnenstuiteren"
5225
+
5226
+ msgid "Rubber band"
5227
+ msgstr "Elastiekje"
5228
+
5229
+ msgid "Shake"
5230
+ msgstr "Schudden"
5231
+
5232
+ msgid "Swing"
5233
+ msgstr "Zwaai"
5234
+
5235
+ msgid "Wooble"
5236
+ msgstr "Wooble"
5237
+
5238
+ msgid "Roll"
5239
+ msgstr "Rollen"
5240
+
5241
+ msgid "Grow rotate"
5242
+ msgstr "Groeiend roteren"
5243
+
5244
+ msgid "Pendulum"
5245
+ msgstr "Slinger"
5246
+
5247
+ msgid "Pendulum 3D"
5248
+ msgstr "Slinger 3D"
5249
+
5250
+ msgid "Vertical pendulum 3D"
5251
+ msgstr "Verticale slinger 3D"
5252
+
5253
+ msgid "Before text"
5254
+ msgstr "Voor de tekst"
5255
+
5256
+ msgid "Animated text"
5257
+ msgstr "Geanimeerde tekst"
5258
+
5259
+ msgid "After text"
5260
+ msgstr "Na tekst"
5261
+
5262
+ msgid "Rotating"
5263
+ msgstr "Roteren"
5264
+
5265
+ msgid "Drop-in"
5266
+ msgstr "Binnenvallen"
5267
+
5268
+ msgid "Slide down"
5269
+ msgstr "Naar beneden schuiven"
5270
+
5271
+ msgid "Typewriter"
5272
+ msgstr "Schrijfmachine"
5273
+
5274
+ msgid "Chars"
5275
+ msgstr "Tekens"
5276
+
5277
+ msgid "Chars 2"
5278
+ msgstr "Tekens 2"
5279
+
5280
+ msgid "Auto width"
5281
+ msgstr "Automatische breedte"
5282
+
5283
+ msgid "Cursor color"
5284
+ msgstr "Cursor kleur"
5285
+
5286
+ msgctxt "Effect"
5287
+ msgid "Loop"
5288
+ msgstr "Herhalen"
5289
+
5290
+ msgid "Show duration"
5291
+ msgstr "Toon tijdsduur"
5292
+
5293
+ msgid "Class on the selected tag element."
5294
+ msgstr "Class op het geselecteerde tag element."
5295
+
5296
+ msgid "Area"
5297
+ msgstr "Zone"
5298
+
5299
+ msgid "Write custom CSS codes here without selectors."
5300
+ msgstr "Schrijf hier aangepaste CSS codes zonder selectors."
5301
+
5302
+ msgid "Audio"
5303
+ msgstr "Audio"
5304
+
5305
+ msgid "MP3 audio"
5306
+ msgstr "MP3 audio"
5307
+
5308
+ msgid "Main color"
5309
+ msgstr "Hoofdkleur"
5310
+
5311
+ msgid "Secondary color"
5312
+ msgstr "Secundaire kleur"
5313
+
5314
+ msgid "Audio settings"
5315
+ msgstr "Audio instellingen"
5316
+
5317
+ #, php-format
5318
+ msgid "Audio autoplaying has a lot of limitations made by browsers. You can read about them %1$shere%2$s."
5319
+ msgstr "Audio automatisch spelen heeft een groot aantal beperkingen in bepaalde browsers. U kunt er %1$shier%2$s over lezen."
5320
+
5321
+ msgid "Starts the audio from the beginning when the slide is viewed again."
5322
+ msgstr "Start de audio vanaf het begin als de slide opnieuw bekeken wordt."
5323
+
5324
+ msgid "Progress"
5325
+ msgstr "Voortgang"
5326
+
5327
+ msgid "Time"
5328
+ msgstr "Tijd"
5329
+
5330
+ msgid "Icon Size"
5331
+ msgstr "Icoon grootte"
5332
+
5333
+ msgid "Before After"
5334
+ msgstr "Voor Na"
5335
+
5336
+ msgid "Left top"
5337
+ msgstr "Linksboven"
5338
+
5339
+ msgid "Center top"
5340
+ msgstr "Centraal bovenaan"
5341
+
5342
+ msgid "Right top"
5343
+ msgstr "Rechtsboven"
5344
+
5345
+ msgid "Left center"
5346
+ msgstr "Links midden"
5347
+
5348
+ msgid "Right Center"
5349
+ msgstr "Rechts midden"
5350
+
5351
+ msgid "Left bottom"
5352
+ msgstr "Links onderaan"
5353
+
5354
+ msgid "Center bottom"
5355
+ msgstr "Centraal onderaan"
5356
+
5357
+ msgid "Right bottom"
5358
+ msgstr "Rechtsonder"
5359
+
5360
+ msgid "Before Image"
5361
+ msgstr "Voor de afbeelding"
5362
+
5363
+ msgid "After Image"
5364
+ msgstr "Na de afbeelding"
5365
+
5366
+ msgid "Labels"
5367
+ msgstr "Labels"
5368
+
5369
+ msgid "Show Label"
5370
+ msgstr "Toon label"
5371
+
5372
+ msgid "Always"
5373
+ msgstr "Altijd"
5374
+
5375
+ msgid "Before label"
5376
+ msgstr "Voor het label"
5377
+
5378
+ msgid "After label"
5379
+ msgstr "Na het label"
5380
+
5381
+ msgid "Behavior"
5382
+ msgstr "Gedrag"
5383
+
5384
+ msgid "Interaction"
5385
+ msgstr "Interactie"
5386
+
5387
+ msgid "Divider"
5388
+ msgstr "Scheiding"
5389
+
5390
+ msgid "Line"
5391
+ msgstr "Lijn"
5392
+
5393
+ msgid "Show Caption"
5394
+ msgstr "Toon onderschrift"
5395
+
5396
+ msgid "Caption text"
5397
+ msgstr "Onderschrift tekst"
5398
+
5399
+ msgid "2"
5400
+ msgstr "2"
5401
+
5402
+ msgid "4"
5403
+ msgstr "4"
5404
+
5405
+ msgid "6"
5406
+ msgstr "6"
5407
+
5408
+ msgid "8"
5409
+ msgstr "8"
5410
+
5411
+ msgid "10"
5412
+ msgstr "10"
5413
+
5414
+ msgid "Before image alt tag"
5415
+ msgstr "Voor de afbeelding alt tag"
5416
+
5417
+ msgid "After image alt tag"
5418
+ msgstr "Na de afbeelding alt tag"
5419
+
5420
+ msgid "Optimize images"
5421
+ msgstr "Optimaliseer afbeeldingen"
5422
+
5423
+ msgid "Full"
5424
+ msgstr "Volledig"
5425
+
5426
+ msgid "Scales up the image on hover"
5427
+ msgstr "Vergroot de afbeelding als er met de muis over bewogen wordt"
5428
+
5429
+ msgid "Overlay background"
5430
+ msgstr "Bovenlaag achtergrond"
5431
+
5432
+ msgid "Positions the text inside the overlay."
5433
+ msgstr "Positioneert de tekst binnen de bovenlaag."
5434
+
5435
+ msgid "Circle counter"
5436
+ msgstr "Circel teller"
5437
+
5438
+ msgid "Counter"
5439
+ msgstr "Teller"
5440
+
5441
+ msgid "Value"
5442
+ msgstr "Waarde"
5443
+
5444
+ msgid "Start from"
5445
+ msgstr "Start vanaf"
5446
+
5447
+ msgid "Total"
5448
+ msgstr "Totaal"
5449
+
5450
+ msgid "Active color"
5451
+ msgstr "Actieve kleur"
5452
+
5453
+ msgid "Stroke width"
5454
+ msgstr "Lijn breedte"
5455
+
5456
+ msgid "Inner before"
5457
+ msgstr "Binnenste ervoor"
5458
+
5459
+ msgid "Inner after"
5460
+ msgstr "Binnenste erna"
5461
+
5462
+ msgid "Pre"
5463
+ msgstr "Pre"
5464
+
5465
+ msgid "Animation duration"
5466
+ msgstr "Animatie duur"
5467
+
5468
+ msgid "Circle 1"
5469
+ msgstr "Circel 1"
5470
+
5471
+ msgid "Circle 2"
5472
+ msgstr "Circel 2"
5473
+
5474
+ msgid "Circle 3"
5475
+ msgstr "Circel 3"
5476
+
5477
+ msgid "Curly 1"
5478
+ msgstr "Gekruld 1"
5479
+
5480
+ msgid "Curly 2"
5481
+ msgstr "Gekruld 2"
5482
+
5483
+ msgid "Highlight 1"
5484
+ msgstr "Accentuering 1"
5485
+
5486
+ msgid "Highlight 2"
5487
+ msgstr "Accentuering 2"
5488
+
5489
+ msgid "Highlight 3"
5490
+ msgstr "Accentuering 3"
5491
+
5492
+ msgid "Line Through 1"
5493
+ msgstr "Doorhaling 1"
5494
+
5495
+ msgid "Line Through 2"
5496
+ msgstr "Doorhaling 2"
5497
+
5498
+ msgid "Line Through 3"
5499
+ msgstr "Doorhaling 3"
5500
+
5501
+ msgid "Rectangle 1"
5502
+ msgstr "Rechthoek 1"
5503
+
5504
+ msgid "Rectangle 2"
5505
+ msgstr "Rechthoek 2"
5506
+
5507
+ msgid "Underline 1"
5508
+ msgstr "Onderlijn 1"
5509
+
5510
+ msgid "Underline 2"
5511
+ msgstr "Onderlijn 2"
5512
+
5513
+ msgid "Underline 3"
5514
+ msgstr "Onderlijn 3"
5515
+
5516
+ msgid "Underline double 1"
5517
+ msgstr "Onderlijn dubbel 1"
5518
+
5519
+ msgid "Underline double 2"
5520
+ msgstr "Onderlijn dubbel 2"
5521
+
5522
+ msgid "ZigZag 1"
5523
+ msgstr "ZigZag 1"
5524
+
5525
+ msgid "ZigZag 2"
5526
+ msgstr "ZigZag 2"
5527
+
5528
+ msgid "ZigZag 3"
5529
+ msgstr "ZigZag 3"
5530
+
5531
+ msgid "Highlighted text"
5532
+ msgstr "Geaccentueerde tekst"
5533
+
5534
+ msgid "Bring front"
5535
+ msgstr "Breng naar voor"
5536
+
5537
+ msgid "Puts the shape on top of the text."
5538
+ msgstr "Plaatst de vorm boven op de tekst."
5539
+
5540
+ msgid "Loop delay"
5541
+ msgstr "Herhaling wachttijd"
5542
+
5543
+ msgid "HTML"
5544
+ msgstr "HTML"
5545
+
5546
+ msgid "Please note that <b>we do not support</b> the HTML layer and the 3rd party codes loaded by it. We only suggest using this layer if you are a developer. <br>Also, make sure your HTML code is valid! Invalid HTML codes can mess up the entire slide and the only way resolving this problem is deleting the slide."
5547
+ msgstr "Merk op dat we de HTML laag en de derde partij codes die erdoor geladen worden <b>niet ondersteunen</b>. We raden aan deze laag alleen te gebruiken als u een ontwikkelaar bent. <br>Vergewis u er ook van dat uw HTML code geldig is! Ongeldige HTML codes kunnen de volledige slide verknoeien en de enige manier om dat op te lossen is de volledige slide te verwijderen."
5548
+
5549
+ msgid "Item"
5550
+ msgstr "Item"
5551
+
5552
+ msgid ""
5553
+ "Item 1\n"
5554
+ "Item 2\n"
5555
+ "Item 3"
5556
+ msgstr ""
5557
+ "Item 1\n"
5558
+ "Item 2\n"
5559
+ "Item 3"
5560
+
5561
+ msgid "List type"
5562
+ msgstr "Lijst type"
5563
+
5564
+ msgctxt "List layer type"
5565
+ msgid "None"
5566
+ msgstr "Geen"
5567
+
5568
+ msgctxt "List layer type"
5569
+ msgid "Disc"
5570
+ msgstr "Schijf"
5571
+
5572
+ msgctxt "List layer type"
5573
+ msgid "Square"
5574
+ msgstr "Vierkant"
5575
+
5576
+ msgctxt "List layer type"
5577
+ msgid "Circle"
5578
+ msgstr "Circel"
5579
+
5580
+ msgctxt "List layer type"
5581
+ msgid "Decimal"
5582
+ msgstr "Decimaal"
5583
+
5584
+ msgctxt "List layer type"
5585
+ msgid "Armenian"
5586
+ msgstr "Armenian"
5587
+
5588
+ msgctxt "List layer type"
5589
+ msgid "Cjk-ideographic"
5590
+ msgstr "Cjk-ideographic"
5591
+
5592
+ msgctxt "List layer type"
5593
+ msgid "Decimal-leading-zero"
5594
+ msgstr "Decimaal-leidende-nul"
5595
+
5596
+ msgctxt "List layer type"
5597
+ msgid "Georgian"
5598
+ msgstr "Georgian"
5599
+
5600
+ msgctxt "List layer type"
5601
+ msgid "Hebrew"
5602
+ msgstr "Hebrew"
5603
+
5604
+ msgctxt "List layer type"
5605
+ msgid "Hiragana"
5606
+ msgstr "Hiragana"
5607
+
5608
+ msgctxt "List layer type"
5609
+ msgid "Hiragana-iroha"
5610
+ msgstr "Hiragana-iroha"
5611
+
5612
+ msgctxt "List layer type"
5613
+ msgid "Katakana"
5614
+ msgstr "Katakana"
5615
+
5616
+ msgctxt "List layer type"
5617
+ msgid "Katakana-iroha"
5618
+ msgstr "Katakana-iroha"
5619
+
5620
+ msgctxt "List layer type"
5621
+ msgid "Lower-alpha"
5622
+ msgstr "Lower-alpha"
5623
+
5624
+ msgctxt "List layer type"
5625
+ msgid "Lower-greek"
5626
+ msgstr "Lower-greek"
5627
+
5628
+ msgctxt "List layer type"
5629
+ msgid "Lower-latin"
5630
+ msgstr "Lower-latin"
5631
+
5632
+ msgctxt "List layer type"
5633
+ msgid "Lower-roman"
5634
+ msgstr "Lower-roman"
5635
+
5636
+ msgctxt "List layer type"
5637
+ msgid "Upper-alpha"
5638
+ msgstr "Upper-alpha"
5639
+
5640
+ msgctxt "List layer type"
5641
+ msgid "Upper-latin"
5642
+ msgstr "Upper-latin"
5643
+
5644
+ msgctxt "List layer type"
5645
+ msgid "Upper-roman"
5646
+ msgstr "Upper-roman"
5647
+
5648
+ msgid "Icon not found"
5649
+ msgstr "Icoon niet gevonden"
5650
+
5651
+ msgid "Aria label"
5652
+ msgstr "Aria label"
5653
+
5654
+ #, php-format
5655
+ msgid "Enter an %1$s aria-label attribute %2$s that describes the link."
5656
+ msgstr "Geef een %1$s aria-label attribuut in %2$s dat de link beschrijft."
5657
+
5658
+ msgid "Iframe"
5659
+ msgstr "Iframe"
5660
+
5661
+ msgid "iframe"
5662
+ msgstr "iframe"
5663
+
5664
+ msgid "Please note, that <b>we do not support</b> customized coding! The iframe layer often needs code customizations what you have to do yourself, so we only suggest using this layer if you are a developer!"
5665
+ msgstr "Merk op dat we aangepaste codering <b>niet ondersteunen</b>! De iframe laag heeft vaak code aanpassingen nodig die u zelf moet aanbrengen. We raden dus aan deze laag alleen te gebruiken als u een ontwikkelaar bent!"
5666
+
5667
+ msgid "iframe url"
5668
+ msgstr "iframe URL"
5669
+
5670
+ msgid "Yes"
5671
+ msgstr "Ja"
5672
+
5673
+ msgid "You can disable the scroll on the iframe content."
5674
+ msgstr "U kun het scrollen op de iframe inhoud deactiveren."
5675
+
5676
+ msgid "iframe title"
5677
+ msgstr "iframe titel"
5678
+
5679
+ msgid "Image area"
5680
+ msgstr "Afbeeldingszone"
5681
+
5682
+ msgid "Image box"
5683
+ msgstr "Afbeeldingsvak"
5684
+
5685
+ msgid "Positions the text inside the layer. Only works with left and right layout."
5686
+ msgstr "Positioneert de tekst binnen de laag. Werkt enkel met de linkse en rechtse lay-out."
5687
+
5688
+ msgid "Input"
5689
+ msgstr "Invoer"
5690
+
5691
+ msgid "Container"
5692
+ msgstr "Container"
5693
+
5694
+ msgid "What are you looking for?"
5695
+ msgstr "Waar bent u naar op zoek?"
5696
+
5697
+ msgid "We only suggest using this layer if you are a developer, since the Input layer requires deep understanding how HTML form works."
5698
+ msgstr "We raden aan deze laag alleen te gebruiken als u een ontwikkelaar bent, vermits de invoerlaag een goede kennis vereist over de werking van HTML formulieren."
5699
+
5700
+ msgid "Placeholder text"
5701
+ msgstr "Plaatshouder tekst"
5702
+
5703
+ msgid "Form"
5704
+ msgstr "Formulier"
5705
+
5706
+ msgid "Input name"
5707
+ msgstr "Invoer naam"
5708
+
5709
+ msgid "Method"
5710
+ msgstr "Methode"
5711
+
5712
+ msgid "Form action"
5713
+ msgstr "Formulier actie"
5714
+
5715
+ msgid "Parameters"
5716
+ msgstr "Parameters"
5717
+
5718
+ msgid "Slide action to submit"
5719
+ msgstr "Te verzenden slide actie"
5720
+
5721
+ msgid "JavaScript"
5722
+ msgstr "JavaScript"
5723
+
5724
+ msgid "Progress bar"
5725
+ msgstr "Voortgangsbalk"
5726
+
5727
+ msgid "Over"
5728
+ msgstr "Over"
5729
+
5730
+ msgid "Transition"
5731
+ msgstr "Overgang"
5732
+
5733
+ msgid "Front image"
5734
+ msgstr "Afbeelding voorkant"
5735
+
5736
+ msgid "Back image"
5737
+ msgstr "Afbeelding achterkant"
5738
+
5739
+ msgid "Vertical flip"
5740
+ msgstr "Verticaal spiegelen"
5741
+
5742
+ msgid "Horizontal flip"
5743
+ msgstr "Horizontaal spiegelen"
5744
+
5745
+ msgid "Front image alt tag"
5746
+ msgstr "Afbeelding voorkant alt tag"
5747
+
5748
+ msgid "Back image alt tag"
5749
+ msgstr "Afbeelding achterkant alt tag"
5750
+
5751
+ msgid "MP4 video"
5752
+ msgstr "MP4 video"
5753
+
5754
+ msgid "Preload"
5755
+ msgstr "Vooraf inladen"
5756
+
5757
+ msgid "Joomla module"
5758
+ msgstr "Joomla module"
5759
+
5760
+ msgid "Please note, that <b>we do not support</b> the Joomla module layer!<br>The loaded module often needs code customizations what you have to do yourself, so we only suggest using this layer if you are a developer!"
5761
+ msgstr "Merk op dat we de Joomla module laag <b>niet ondersteunen</b>! De ingeladen module heeft vaak code aanpassingen nodig die u zelf moet aanbrengen. We raden dus aan deze laag alleen te gebruiken als u een ontwikkelaar bent!"
5762
+
5763
+ msgid "Position name or module ID"
5764
+ msgstr "Positie naam of module ID"
5765
+
5766
+ msgid "The position name of your module (for Loadposition and Modulepos) or the module's ID (Module)."
5767
+ msgstr "De positie naam van uw module (voor Loadposition en Modulepos) of het module ID (Module)."
5768
+
5769
+ msgid "Constrain ratio"
5770
+ msgstr "Beperking verhouding"
5771
+
5772
+ msgid "The slide scales horizontally and vertically with the same amount."
5773
+ msgstr "De slide verandert horizontaal en verticaal van grootte met dezelfde waarde."
5774
+
5775
+ msgid "Height based on"
5776
+ msgstr "Hoogte gebaseerd op"
5777
+
5778
+ msgid "The real height makes your slider have the height of the browser without the URL bar, while the CSS 100vh makes it exactly as big as the browser height."
5779
+ msgstr "De werkelijke hoogte maakt dat uw slider de hoogte heeft van de browser zonder de URL balk, terwijl de CSS 100vh hem net zo groot maakt als de hoogte van de browser."
5780
+
5781
+ msgid "Decrease height"
5782
+ msgstr "Verminder hoogte"
5783
+
5784
+ msgid "You can make your slider smaller than the full height of the browser by a given pixel, for example, to fit below your menu without causing scrollbar."
5785
+ msgstr "U kunt uw slider een gegeven pixel kleiner maken dan de volledige hoogte van de browser, bijvoorbeeld om onder uw menu te passen zonder dat er een scrollbalk aan te pas komt."
5786
+
5787
+ msgid "Decrease height by selectors"
5788
+ msgstr "Verminder hoogte door selectors"
5789
+
5790
+ msgid "Use global focus selectors"
5791
+ msgstr "Gebruik globale focus selectors"
5792
+
5793
+ msgid "Use local selectors"
5794
+ msgstr "Gebruik lokale selectors"
5795
+
5796
+ msgid "You can make your slider smaller than the full height of the browser, for example, to fit below your menu without causing scrollbar."
5797
+ msgstr "U kunt uw slider kleiner maken dan de volledige hoogte van de browser, bijvoorbeeld om onder uw menu te passen zonder dat er een scrollbalk aan te pas komt."
5798
+
5799
+ msgid "CSS selector (sum of heights)"
5800
+ msgstr "CSS selector (som van hoogtes)"
5801
+
5802
+ msgctxt "Slider type"
5803
+ msgid "Carousel slider"
5804
+ msgstr "Carousel slider"
5805
+
5806
+ msgid "Slide size"
5807
+ msgstr "Slide grootte"
5808
+
5809
+ msgid "Max pane width"
5810
+ msgstr "Max paneel breedte"
5811
+
5812
+ msgid "You can use this option to limit how many slides can show up next to each other."
5813
+ msgstr "U kunt deze optie gebruiken om te beperken hoeveel slides naast elkaar mogen verschijnen."
5814
+
5815
+ msgid "Minimum slide distance"
5816
+ msgstr "Minimum slide afstand"
5817
+
5818
+ msgid "The minimum space between two slides."
5819
+ msgstr "De minimum ruimte tussen twee slides."
5820
+
5821
+ msgid "Side spacing"
5822
+ msgstr "Zijruimte"
5823
+
5824
+ msgid "Desktop side spacing"
5825
+ msgstr "Desktop zijkant tussenruimte"
5826
+
5827
+ msgid "You can create a fix distance between the slider and the slides where your controls are which appear on this device. This way your controls won't cover the slide content."
5828
+ msgstr "U kunt een vaste afstand tussen de slider en de slides maken waar uw bedieningselementen staan die op dit toestel verschijnen. Op die manier bedekken uw bedieningselementen de inhoud van de slide niet."
5829
+
5830
+ msgid "Tablet side spacing"
5831
+ msgstr "Tablet ruimte zijkant"
5832
+
5833
+ msgid "Mobile side spacing"
5834
+ msgstr "Mobiele zijkant opvulling"
5835
+
5836
+ msgid "Slide background color"
5837
+ msgstr "Slide achtergrondkleur"
5838
+
5839
+ msgid "Slide border width"
5840
+ msgstr "Slide breedte rand"
5841
+
5842
+ msgid "Slide border color"
5843
+ msgstr "Slide randkleur"
5844
+
5845
+ msgid "Slide border radius"
5846
+ msgstr "Slide straal rand"
5847
+
5848
+ msgid "Slider border width"
5849
+ msgstr "Slider breedte rand"
5850
+
5851
+ msgid "Slider border color"
5852
+ msgstr "Slider kleur rand"
5853
+
5854
+ msgid "Slider border radius"
5855
+ msgstr "Slider straal rand"
5856
+
5857
+ msgid "The Single Switch setting can only move the slides horizontally!"
5858
+ msgstr "De enkele schakelaar instelling kan de slides alleen horizontaal verplaatsen!"
5859
+
5860
+ msgid "This option will create a complete round from your slides if you have enough slides. If you don't have enough slides, you could consider duplicating all the slides or just add more slides until you will get a carousel round."
5861
+ msgstr "Deze optie zal een volledige ronde maken van uw slides, als u er genoeg hebt. Als u niet genoeg slides hebt dan kunt u overwegen om alle slides te klonen of gewoon meer slides toe te voegen tot u een carousel ronde hebt."
5862
+
5863
+ msgid "Single switch"
5864
+ msgstr "Enkele schakelaar"
5865
+
5866
+ msgid "It switches one slide instead of moving all the visible slides."
5867
+ msgstr "Dit wisselt één slide in plaats van al de zichtbare slides te verplaatsen."
5868
+
5869
+ msgid "Justify slides"
5870
+ msgstr "Slides volledig uitlijnen"
5871
+
5872
+ msgctxt "Slider type"
5873
+ msgid "Showcase slider"
5874
+ msgstr "Etalage slider"
5875
+
5876
+ msgid "Slide distance"
5877
+ msgstr "Slide afstand"
5878
+
5879
+ msgid "Fix space between the slides."
5880
+ msgstr "Herstel ruimte tussen de slides."
5881
+
5882
+ msgid "Slide CSS Preset"
5883
+ msgstr "Slide CSS voorinstelling"
5884
+
5885
+ msgid "Showcase animation"
5886
+ msgstr "Etalage animatie"
5887
+
5888
+ msgid "Horizontal showcase"
5889
+ msgstr "Horizontale etalage"
5890
+
5891
+ msgid "Vertical showcase"
5892
+ msgstr "Verticale etalage"
5893
+
5894
+ msgid "Horizontal cover flow"
5895
+ msgstr "Horizontale cover stroom"
5896
+
5897
+ msgid "Vertical cover flow"
5898
+ msgstr "Verticale cover flow"
5899
+
5900
+ msgid "Switch with next/previous slides"
5901
+ msgstr "Wissel met volgende/vorige slides"
5902
+
5903
+ msgid "Clicking on any slide that's not in the middle will make the slider switch to that slide. With this option you can disable this behavior, for example, to allow clicking on buttons on the visible slides."
5904
+ msgstr "Klikken op eender welke slide die niet in het midden staat zal de slider doen overschakelen naar die slide. Met deze optie kunt u dit gedrag deactiveren, bijvoorbeeld om toe te laten te klikken op knoppen op de zichtbare slides."
5905
+
5906
+ msgid "Save as new animation"
5907
+ msgstr "Opslaan als nieuwe animatie"
5908
+
5909
+ msgid "Sets"
5910
+ msgstr "Sets"
5911
+
5912
+ msgid "Text animation settings"
5913
+ msgstr "Tekst animatie instellingen"
5914
+
5915
+ msgid "Words"
5916
+ msgstr "Woorden"
5917
+
5918
+ msgid "Sort"
5919
+ msgstr "Sorteren"
5920
+
5921
+ msgid "Reversed"
5922
+ msgstr "Omgekeerd"
5923
+
5924
+ msgid "Side shifted"
5925
+ msgstr "Zijkant verschoven"
5926
+
5927
+ msgid "Center shifted"
5928
+ msgstr "Midden verschoven"
5929
+
5930
+ msgid "Stagger"
5931
+ msgstr "Wankelen"
5932
+
5933
+ msgid "Turn"
5934
+ msgstr "Draai"
5935
+
5936
+ msgid "Prev"
5937
+ msgstr "Vorige"
5938
+
5939
+ msgid "Next"
5940
+ msgstr "Volgende"
5941
+
5942
+ msgid "Previous label"
5943
+ msgstr "Vorige label"
5944
+
5945
+ msgid "Next label"
5946
+ msgstr "Volgende label"
5947
+
5948
+ msgid "To normal"
5949
+ msgstr "Naar normaal"
5950
+
5951
+ msgid "To fullscreen"
5952
+ msgstr "Naar volledig scherm"
5953
+
5954
+ msgid "Fullscreen"
5955
+ msgstr "Volledig scherm"
5956
+
5957
+ msgid "Exit full screen"
5958
+ msgstr "Uit volledig scherm"
5959
+
5960
+ msgid "Enter Full screen"
5961
+ msgstr "Naar volledig scherm"
5962
+
5963
+ #, php-format
5964
+ msgid "%1$s does not support the full screen API. For this reason the full screen button will not appear on %1$s devices."
5965
+ msgstr "%1$s ondersteunt de volledig scherm API niet. Om deze reden zal de volledig scherm knop niet verschijnen op %1$s toestellen."
5966
+
5967
+ msgid "Indicator"
5968
+ msgstr "Indicator"
5969
+
5970
+ msgid "Line thickness"
5971
+ msgstr "Lijndikte"
5972
+
5973
+ msgid "Track color"
5974
+ msgstr "Track kleur"
5975
+
5976
+ msgid "Bar color"
5977
+ msgstr "Balk kleur"
Nextend/Languages/smartslider3.pot CHANGED
@@ -2,7 +2,7 @@
2
  msgid ""
3
  msgstr ""
4
  "Project-Id-Version: \n"
5
- "POT-Creation-Date: 2021-10-16 08:50+0200\n"
6
  "PO-Revision-Date: 2020-03-10 19:30+0100\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -1358,6 +1358,9 @@ msgstr ""
1358
  msgid "JavaScript callbacks"
1359
  msgstr ""
1360
 
 
 
 
1361
  msgid "Post IDs"
1362
  msgstr ""
1363
 
@@ -3401,12 +3404,6 @@ msgstr ""
3401
  msgid "You can pause the video when the visitor scrolls away from the slider"
3402
  msgstr ""
3403
 
3404
- msgid "Private video"
3405
- msgstr ""
3406
-
3407
- msgid "Turn it on to remove the admin warning that your video is not accessible."
3408
- msgstr ""
3409
-
3410
  msgid "Display"
3411
  msgstr ""
3412
 
2
  msgid ""
3
  msgstr ""
4
  "Project-Id-Version: \n"
5
+ "POT-Creation-Date: 2021-11-11 15:39+0100\n"
6
  "PO-Revision-Date: 2020-03-10 19:30+0100\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
1358
  msgid "JavaScript callbacks"
1359
  msgstr ""
1360
 
1361
+ msgid "Loading animation waiting time"
1362
+ msgstr ""
1363
+
1364
  msgid "Post IDs"
1365
  msgstr ""
1366
 
3404
  msgid "You can pause the video when the visitor scrolls away from the slider"
3405
  msgstr ""
3406
 
 
 
 
 
 
 
3407
  msgid "Display"
3408
  msgstr ""
3409
 
Nextend/SmartSlider3/Application/Admin/FormManager/Slider/SliderDeveloper.php CHANGED
@@ -9,6 +9,7 @@ use Nextend\Framework\Form\Element\Message\Warning;
9
  use Nextend\Framework\Form\Element\OnOff;
10
  use Nextend\Framework\Form\Element\Select;
11
  use Nextend\Framework\Form\Element\Text;
 
12
  use Nextend\Framework\Form\Element\Textarea;
13
  use Nextend\Framework\Form\FormTabbed;
14
 
@@ -130,6 +131,12 @@ class SliderDeveloper extends AbstractSliderTab {
130
  'height' => 26,
131
  'resize' => 'both'
132
  ));
 
 
 
 
 
 
133
  $row10 = $table->createRow('developer-10');
134
  new Textarea($row10, 'related-posts', n2_('Post IDs') . ' (' . n2_('one per line') . ')', '', array(
135
  'tipLabel' => n2_('Post IDs') . ' (' . n2_('one per line') . ')',
9
  use Nextend\Framework\Form\Element\OnOff;
10
  use Nextend\Framework\Form\Element\Select;
11
  use Nextend\Framework\Form\Element\Text;
12
+ use Nextend\Framework\Form\Element\Text\Number;
13
  use Nextend\Framework\Form\Element\Textarea;
14
  use Nextend\Framework\Form\FormTabbed;
15
 
131
  'height' => 26,
132
  'resize' => 'both'
133
  ));
134
+
135
+ $row11 = $table->createRow('developer-11');
136
+ new Number($row11, 'loading-time', n2_('Loading animation waiting time'), 2000, array(
137
+ 'wide' => 5,
138
+ 'unit' => 'ms',
139
+ ));
140
  $row10 = $table->createRow('developer-10');
141
  new Textarea($row10, 'related-posts', n2_('Post IDs') . ' (' . n2_('one per line') . ')', '', array(
142
  'tipLabel' => n2_('Post IDs') . ' (' . n2_('one per line') . ')',
Nextend/SmartSlider3/Application/Admin/Help/Template/Index.php CHANGED
@@ -190,6 +190,64 @@ $conflicts = $this->getConflicts();
190
  $debug[] = '';
191
  }
192
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
193
  $debugConflicts = $this->getDebugConflicts();
194
  if (empty($debugConflicts)) {
195
  $debug[] = 'No conflicts detected';
190
  $debug[] = '';
191
  }
192
 
193
+ if (function_exists('get_loaded_extensions')) {
194
+
195
+ $debug[] = 'Uncommon PHP extensions:';
196
+
197
+ $debug[] = implode(" \t", array_diff(get_loaded_extensions(), array(
198
+ 'Core',
199
+ 'openssl',
200
+ 'pcre',
201
+ 'zlib',
202
+ 'SPL',
203
+ 'session',
204
+ 'standard',
205
+ 'cgi-fcgi',
206
+ 'mysqlnd',
207
+ 'PDO',
208
+ 'bz2',
209
+ 'calendar',
210
+ 'filter',
211
+ 'hash',
212
+ 'Reflection',
213
+ 'zip',
214
+ 'Zend OPcache',
215
+ 'shmop',
216
+ 'sodium',
217
+ 'date',
218
+ 'dom',
219
+ 'ctype',
220
+ 'xml',
221
+ 'libxml',
222
+ 'fileinfo',
223
+ 'ftp',
224
+ 'gettext',
225
+ 'iconv',
226
+ 'intl',
227
+ 'json',
228
+ 'exif',
229
+ 'mysqli',
230
+ 'pdo_mysql',
231
+ 'Phar',
232
+ 'posix',
233
+ 'readline',
234
+ 'SimpleXML',
235
+ 'soap',
236
+ 'sockets',
237
+ 'sysvmsg',
238
+ 'sysvsem',
239
+ 'sysvshm',
240
+ 'tokenizer',
241
+ 'wddx',
242
+ 'xmlreader',
243
+ 'xmlwriter',
244
+ 'xsl'
245
+ )));
246
+
247
+ $debug[] = '';
248
+ }
249
+
250
+
251
  $debugConflicts = $this->getDebugConflicts();
252
  if (empty($debugConflicts)) {
253
  $debug[] = 'No conflicts detected';
Nextend/SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php CHANGED
@@ -107,7 +107,7 @@ class LayerWindowSettingsCommon extends AbstractLayerWindowSettings {
107
 
108
  $margin = new MarginPadding($size, 'normal-margin', n2_('Margin'), '0|*|0|*|0|*|0', array(
109
  'rowAttributes' => array(
110
- 'data-devicespecific' => 'right'
111
  ),
112
  'tipLabel' => n2_('Margin'),
113
  'tipDescription' => n2_('With margins you can create distance between your layers.')
@@ -230,7 +230,7 @@ class LayerWindowSettingsCommon extends AbstractLayerWindowSettings {
230
  'unit' => '%',
231
  'wide' => 3,
232
  'rowAttributes' => array(
233
- 'data-devicespecific' => 'right'
234
  )
235
  ));
236
 
107
 
108
  $margin = new MarginPadding($size, 'normal-margin', n2_('Margin'), '0|*|0|*|0|*|0', array(
109
  'rowAttributes' => array(
110
+ 'data-devicespecific' => ''
111
  ),
112
  'tipLabel' => n2_('Margin'),
113
  'tipDescription' => n2_('With margins you can create distance between your layers.')
230
  'unit' => '%',
231
  'wide' => 3,
232
  'rowAttributes' => array(
233
+ 'data-devicespecific' => ''
234
  )
235
  ));
236
 
Nextend/SmartSlider3/Application/Frontend/Slider/ControllerPreRenderSlider.php CHANGED
@@ -17,16 +17,15 @@ class ControllerPreRenderSlider extends AbstractController {
17
 
18
  if (empty($sliderIDorAlias)) {
19
  echo 'Slider ID or alias is empty.';
20
- }
21
-
22
- Css::addStaticGroup(ResourceTranslator::toPath('$ss3-frontend$/dist/normalize.min.css'), 'normalize');
23
 
24
 
25
- $view = new ViewIframe($this);
26
 
27
- $view->setSliderIDorAlias($sliderIDorAlias);
28
-
29
- $view->display();
30
 
 
 
31
  }
32
  }
17
 
18
  if (empty($sliderIDorAlias)) {
19
  echo 'Slider ID or alias is empty.';
20
+ } else {
21
+ Css::addStaticGroup(ResourceTranslator::toPath('$ss3-frontend$/dist/normalize.min.css'), 'normalize');
 
22
 
23
 
24
+ $view = new ViewIframe($this);
25
 
26
+ $view->setSliderIDorAlias($sliderIDorAlias);
 
 
27
 
28
+ $view->display();
29
+ }
30
  }
31
  }
Nextend/SmartSlider3/Application/Model/ModelGenerator.php CHANGED
@@ -232,7 +232,7 @@ class ModelGenerator extends AbstractModelTable {
232
  ));
233
  $vimeo->item->set(array(
234
  "vimeourl" => "{url}",
235
- 'image' => ''
236
  ));
237
 
238
  break;
232
  ));
233
  $vimeo->item->set(array(
234
  "vimeourl" => "{url}",
235
+ 'image' => '{image}'
236
  ));
237
 
238
  break;
Nextend/SmartSlider3/Form/Element/DatePicker.php CHANGED
@@ -7,6 +7,7 @@ use Nextend\Framework\Asset\Js\Js;
7
  use Nextend\Framework\Form\AbstractField;
8
  use Nextend\Framework\Form\ContainerInterface;
9
  use Nextend\Framework\Form\Element\AbstractFieldHidden;
 
10
  use Nextend\Framework\Form\Element\OnOff;
11
  use Nextend\Framework\Form\Element\Select;
12
  use Nextend\Framework\Form\Element\Text\Number;
@@ -21,6 +22,10 @@ class DatePicker extends AbstractFieldHidden implements ContainerInterface {
21
 
22
  protected $onOffLabel = '';
23
 
 
 
 
 
24
  public function __construct($insertAt, $name = '', $label = false, $default = '', $parameters = array()) {
25
 
26
  $this->onOffLabel = $label;
@@ -31,26 +36,28 @@ class DatePicker extends AbstractFieldHidden implements ContainerInterface {
31
  protected function fetchElement() {
32
  $this->addDatePicker();
33
 
34
- $html = '';
35
-
36
  $subElements = array();
37
- $i = 0;
 
 
 
 
 
 
38
 
39
  $element = $this->first;
40
  while ($element) {
41
 
42
  $element->setExposeName(false);
43
 
44
- $html .= $this->decorateElement($element);
45
- $subElements[$i] = $element->getID();
46
- $i++;
47
 
48
  $element = $element->getNext();
49
  }
50
 
51
  $html .= parent::fetchElement();
52
 
53
- Js::addInline('new _N2.FormElementDatePicker("' . $this->fieldID . '", ' . json_encode($subElements) . ');');
54
 
55
  return $html;
56
  }
@@ -79,20 +86,23 @@ class DatePicker extends AbstractFieldHidden implements ContainerInterface {
79
 
80
  $valueArray = $valueArray + $defaultArray;
81
 
82
- $controlName = $this->getControlName();
83
- new OnOff($this, $this->name . '-enable', $this->onOffLabel, 0, array(
84
- 'relatedFieldsOn' => array(
85
- $controlName . $this->name . '-year',
86
- $controlName . $this->name . '-month',
87
- $controlName . $this->name . '-day',
88
- $controlName . $this->name . '-hour',
89
- $controlName . $this->name . '-minute'
90
- )
91
- ));
92
 
 
 
 
 
 
 
 
 
 
 
 
 
93
 
94
  //YEAR
95
- new Number($this, $this->name . '-year', n2_('Year'), $valueArray[0], array(
96
  'wide' => 4,
97
  'min' => 1970,
98
  'max' => 9999
@@ -104,7 +114,7 @@ class DatePicker extends AbstractFieldHidden implements ContainerInterface {
104
  $formattedValue = sprintf("%02d", $i);
105
  $months[$formattedValue] = $formattedValue;
106
  }
107
- new Select($this, $this->name . '-month', n2_('Month'), $valueArray[1], array(
108
  'options' => $months
109
  ));
110
 
@@ -115,25 +125,31 @@ class DatePicker extends AbstractFieldHidden implements ContainerInterface {
115
  $days[$formattedValue] = $formattedValue;
116
  }
117
 
118
- new Select($this, $this->name . '-day', n2_('Day'), $valueArray[2], array(
119
- 'options' => $days,
120
  ));
121
 
 
 
122
  //HOUR
123
  $hours = array();
124
  for ($i = 0; $i < 24; $i++) {
125
  $formattedValue = sprintf("%02d", $i);
126
  $hours[$formattedValue] = $formattedValue;
127
  }
128
- new Select($this, $this->name . '-hour', n2_('Hour'), $valueArray[3], array(
129
  'options' => $hours
130
  ));
131
 
132
  //MINUTE
133
- new NumberSlider($this, $this->name . '-minute', n2_('Minute'), $valueArray[4], array(
134
  'wide' => 2,
135
  'min' => 0,
136
  'max' => 59
137
  ));
138
  }
 
 
 
 
139
  }
7
  use Nextend\Framework\Form\AbstractField;
8
  use Nextend\Framework\Form\ContainerInterface;
9
  use Nextend\Framework\Form\Element\AbstractFieldHidden;
10
+ use Nextend\Framework\Form\Element\Grouping;
11
  use Nextend\Framework\Form\Element\OnOff;
12
  use Nextend\Framework\Form\Element\Select;
13
  use Nextend\Framework\Form\Element\Text\Number;
22
 
23
  protected $onOffLabel = '';
24
 
25
+ protected $hasOnOff = true;
26
+
27
+ private $dateTimeFields = array();
28
+
29
  public function __construct($insertAt, $name = '', $label = false, $default = '', $parameters = array()) {
30
 
31
  $this->onOffLabel = $label;
36
  protected function fetchElement() {
37
  $this->addDatePicker();
38
 
 
 
39
  $subElements = array();
40
+ foreach ($this->dateTimeFields as $dateTimeField) {
41
+
42
+ $dateTimeField->setExposeName(false);
43
+ $subElements[] = $dateTimeField->getID();
44
+ }
45
+
46
+ $html = '';
47
 
48
  $element = $this->first;
49
  while ($element) {
50
 
51
  $element->setExposeName(false);
52
 
53
+ $html .= $this->decorateElement($element);
 
 
54
 
55
  $element = $element->getNext();
56
  }
57
 
58
  $html .= parent::fetchElement();
59
 
60
+ Js::addInline('new _N2.FormElementDatePicker("' . $this->fieldID . '", ' . json_encode($subElements) . ', ' . json_encode($this->hasOnOff) . ');');
61
 
62
  return $html;
63
  }
86
 
87
  $valueArray = $valueArray + $defaultArray;
88
 
89
+ $dateGroup = new Grouping($this, $this->name . '-date');
 
 
 
 
 
 
 
 
 
90
 
91
+ $controlName = $this->getControlName();
92
+ if ($this->hasOnOff) {
93
+ $this->dateTimeFields[] = new OnOff($dateGroup, $this->name . '-enable', $this->onOffLabel, 0, array(
94
+ 'relatedFieldsOn' => array(
95
+ $controlName . $this->name . '-year',
96
+ $controlName . $this->name . '-month',
97
+ $controlName . $this->name . '-day',
98
+ $controlName . $this->name . '-hour',
99
+ $controlName . $this->name . '-minute'
100
+ )
101
+ ));
102
+ }
103
 
104
  //YEAR
105
+ $this->dateTimeFields[] = new Number($dateGroup, $this->name . '-year', n2_('Year'), $valueArray[0], array(
106
  'wide' => 4,
107
  'min' => 1970,
108
  'max' => 9999
114
  $formattedValue = sprintf("%02d", $i);
115
  $months[$formattedValue] = $formattedValue;
116
  }
117
+ $this->dateTimeFields[] = new Select($dateGroup, $this->name . '-month', n2_('Month'), $valueArray[1], array(
118
  'options' => $months
119
  ));
120
 
125
  $days[$formattedValue] = $formattedValue;
126
  }
127
 
128
+ $this->dateTimeFields[] = new Select($dateGroup, $this->name . '-day', n2_('Day'), $valueArray[2], array(
129
+ 'options' => $days
130
  ));
131
 
132
+ $timeGroup = new Grouping($this, $this->name . '-time');
133
+
134
  //HOUR
135
  $hours = array();
136
  for ($i = 0; $i < 24; $i++) {
137
  $formattedValue = sprintf("%02d", $i);
138
  $hours[$formattedValue] = $formattedValue;
139
  }
140
+ $this->dateTimeFields[] = new Select($timeGroup, $this->name . '-hour', n2_('Hour'), $valueArray[3], array(
141
  'options' => $hours
142
  ));
143
 
144
  //MINUTE
145
+ $this->dateTimeFields[] = new NumberSlider($timeGroup, $this->name . '-minute', n2_('Minute'), $valueArray[4], array(
146
  'wide' => 2,
147
  'min' => 0,
148
  'max' => 59
149
  ));
150
  }
151
+
152
+ protected function setOnOff($hasOnOff) {
153
+ $this->hasOnOff = $hasOnOff;
154
+ }
155
  }
Nextend/SmartSlider3/Platform/WordPress/Admin/free/notice.php CHANGED
@@ -3,19 +3,19 @@
3
  use Nextend\Framework\ResourceTranslator\ResourceTranslator;
4
 
5
  $current = time();
6
- if ($current <= mktime(0, 0, 0, 7, 28, 2021)) {
7
- if (get_option('ss3_summer_2021') != '1') {
8
 
9
  add_action('admin_notices', function () {
10
  ?>
11
- <div class="notice notice-info is-dismissible" data-ss3dismissable="ss3_summer_2021" style="display:grid;grid-template-columns: 100px auto;padding-top: 25px; padding-bottom: 22px;">
12
- <img alt="Smart Slider 3" src="<?php echo ResourceTranslator::toUrl('$ss3-admin$/images/notice.png'); ?>" width="64" height="64" style="grid-row: 1 / 4; align-self: center;justify-self: center">
13
- <h3 style="margin:0;">Do you wish to use Smart Slider Pro on your site?</h3>
14
- <p style="margin:0 0 2px;">If the answer is yes, then you may be interested in our <b>Summer Sale</b>.
15
- We are excited to offer a <b>30% discount on all Smart Slider Premium plans!</b>
16
- Limited time offer expires on July 27.</p>
17
  <p style="margin:0;">
18
- <a class="button button-primary" href="https://smartslider3.com/pricing/?coupon=SUMMER21&utm_source=wpfree&utm_medium=wp&utm_campaign=summer21" target="_blank">
19
  Buy Now</a>
20
  <a class="button button-dismiss" href="#">Dismiss</a>
21
  </p>
@@ -71,7 +71,7 @@ if ($current <= mktime(0, 0, 0, 7, 28, 2021)) {
71
  add_action('wp_ajax_ss3_dismiss_admin_notice', function () {
72
  check_ajax_referer('ss3-dismissible-notice', 'nonce');
73
 
74
- update_option('ss3_summer_2021', '1');
75
  wp_die();
76
  });
77
  }
3
  use Nextend\Framework\ResourceTranslator\ResourceTranslator;
4
 
5
  $current = time();
6
+ if (mktime(0, 0, 0, 11, 23, 2021) <= $current && $current < mktime(0, 0, 0, 12, 1, 2021)) {
7
+ if (get_option('ss3_bf_2021') != '1') {
8
 
9
  add_action('admin_notices', function () {
10
  ?>
11
+ <div class="notice notice-info is-dismissible" data-ss3dismissable="ss3_bf_2021" style="display:grid;grid-template-columns: 100px auto;padding-top: 25px; padding-bottom: 22px;">
12
+ <img alt="Smart Slider 3" src="<?php echo ResourceTranslator::toUrl('$ss3-admin$/images/notice.png'); ?>" width="74" height="74" style="grid-row: 1 / 4; align-self: center;justify-self: center">
13
+ <h3 style="margin:0;">Smart Slider 3 Pro Black Friday Deal</h3>
14
+ <p style="margin:0 0 2px;">Don't miss out on our biggest sale of the year!
15
+ Get your <b>Smart Slider 3 Pro plan</b> with <b>40% OFF</b>!
16
+ Limited time offer expires on November 30.</p>
17
  <p style="margin:0;">
18
+ <a class="button button-primary" href="https://smartslider3.com/pricing/?coupon=SAVE4021&utm_source=wpfree&utm_medium=wp&utm_campaign=bf21" target="_blank">
19
  Buy Now</a>
20
  <a class="button button-dismiss" href="#">Dismiss</a>
21
  </p>
71
  add_action('wp_ajax_ss3_dismiss_admin_notice', function () {
72
  check_ajax_referer('ss3-dismissible-notice', 'nonce');
73
 
74
+ update_option('ss3_bf_2021', '1');
75
  wp_die();
76
  });
77
  }
Nextend/SmartSlider3/Platform/WordPress/Integration/Elementor/Elementor.php CHANGED
@@ -21,12 +21,14 @@ class Elementor {
21
 
22
  public function init() {
23
 
24
- add_filter('elementor/widgets/black_list', function ($black_list) {
25
- $black_list[] = 'N2SS3Widget';
26
- $black_list[] = WidgetSmartSlider3::class;
 
27
 
28
- return $black_list;
29
- });
 
30
 
31
  add_action('template_redirect', array(
32
  $this,
@@ -81,7 +83,12 @@ class Elementor {
81
  public function action_widgets_registered() {
82
 
83
  $widget_manager = Plugin::$instance->widgets_manager;
84
- $widget_manager->register_widget_type(new ElementorWidgetSmartSlider());
 
 
 
 
 
85
  }
86
 
87
  public function action_controls_registered($controls_manager) {
21
 
22
  public function init() {
23
 
24
+ if (!defined('SMART_SLIDER_ELEMENTOR_WIDGET_ALLOWED')) {
25
+ add_filter('elementor/widgets/black_list', function ($black_list) {
26
+ $black_list[] = 'N2SS3Widget';
27
+ $black_list[] = WidgetSmartSlider3::class;
28
 
29
+ return $black_list;
30
+ });
31
+ }
32
 
33
  add_action('template_redirect', array(
34
  $this,
83
  public function action_widgets_registered() {
84
 
85
  $widget_manager = Plugin::$instance->widgets_manager;
86
+ if (defined('ELEMENTOR_VERSION') && version_compare(ELEMENTOR_VERSION, '2.9.0', '>=')) {
87
+ $widget_manager->register_widget_type(new ElementorWidgetSmartSlider());
88
+ } else {
89
+ //This is an outdated Elementor version, where we need to use different function overrides.
90
+ $widget_manager->register_widget_type(new ElementorWidgetDeprecatedSmartSlider());
91
+ }
92
  }
93
 
94
  public function action_controls_registered($controls_manager) {
Nextend/SmartSlider3/Platform/WordPress/Integration/Elementor/ElementorWidgetDeprecatedSmartSlider.php ADDED
@@ -0,0 +1,68 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+
4
+ namespace Nextend\SmartSlider3\Platform\WordPress\Integration\Elementor;
5
+
6
+
7
+ use Elementor\Plugin;
8
+ use Elementor\Widget_Base;
9
+ use Nextend\SmartSlider3\Platform\WordPress\Shortcode\Shortcode;
10
+
11
+ class ElementorWidgetDeprecatedSmartSlider extends Widget_Base {
12
+
13
+ public function get_name() {
14
+ return 'smartslider';
15
+ }
16
+
17
+ public function get_title() {
18
+ return 'Smart Slider';
19
+ }
20
+
21
+ public function get_icon() {
22
+ return 'eicon-slider-3d';
23
+ }
24
+
25
+ protected function _register_controls() {
26
+
27
+ $this->start_controls_section('section_smart_slider_elementor', [
28
+ 'label' => esc_html('Smart Slider'),
29
+ ]);
30
+
31
+ $this->add_control('smartsliderid', [
32
+ 'label' => 'Slider ID or Alias',
33
+ 'type' => 'smartsliderfield',
34
+ 'default' => '',
35
+ 'title' => 'Slider ID or Alias',
36
+ ]);
37
+
38
+ $this->end_controls_section();
39
+
40
+ }
41
+
42
+ protected function render() {
43
+ if (Plugin::instance()->editor->is_edit_mode() || Plugin::instance()->preview->is_preview_mode()) {
44
+ echo Shortcode::renderIframe($this->get_settings('smartsliderid'));
45
+ } else {
46
+ $sliderIDorAlias = $this->get_settings('smartsliderid');
47
+ if (is_numeric($sliderIDorAlias)) {
48
+ echo do_shortcode('[smartslider3 slider=' . $sliderIDorAlias . ']');
49
+ } else {
50
+ echo do_shortcode('[smartslider3 alias="' . $sliderIDorAlias . '"]');
51
+ }
52
+ }
53
+ }
54
+
55
+ /**
56
+ * Must be declared as empty method to prevent issues with SEO plugins.
57
+ */
58
+ public function render_plain_content() {
59
+ }
60
+
61
+ /**
62
+ * The Elementor deprecated this function in version 2.9.0 and it will be removed in 3.7.0
63
+ * @url https://developers.elementor.com/v2-9-0-planned-deprecations/
64
+ */
65
+ protected function _content_template() {
66
+ echo Shortcode::renderIframe('{{{settings.smartsliderid}}}');
67
+ }
68
+ }
Nextend/SmartSlider3/Platform/WordPress/Integration/Elementor/ElementorWidgetSmartSlider.php CHANGED
@@ -58,7 +58,7 @@ class ElementorWidgetSmartSlider extends Widget_Base {
58
  public function render_plain_content() {
59
  }
60
 
61
- protected function _content_template() {
62
  echo Shortcode::renderIframe('{{{settings.smartsliderid}}}');
63
  }
64
  }
58
  public function render_plain_content() {
59
  }
60
 
61
+ protected function content_template() {
62
  echo Shortcode::renderIframe('{{{settings.smartsliderid}}}');
63
  }
64
  }
Nextend/SmartSlider3/Renderable/Component/AbstractComponent.php CHANGED
@@ -113,7 +113,7 @@ abstract class AbstractComponent {
113
  }
114
 
115
  /**
116
- * @return AbstractRenderableOwner
117
  */
118
  public function getOwner() {
119
  return $this->owner;
113
  }
114
 
115
  /**
116
+ * @return Slide
117
  */
118
  public function getOwner() {
119
  return $this->owner;
Nextend/SmartSlider3/Renderable/Item/Image/ItemImageFrontend.php CHANGED
@@ -81,7 +81,7 @@ class ItemImageFrontend extends AbstractItemFrontend {
81
  $style = $owner->addStyle($this->data->get('style'), 'heading');
82
 
83
  return Html::tag("div", array(
84
- "class" => $style . ' n2-ss-item-image n2-ss-item-content n2-ow-all'
85
  ), $this->getLink($html, $linkAttributes));
86
  }
87
  }
81
  $style = $owner->addStyle($this->data->get('style'), 'heading');
82
 
83
  return Html::tag("div", array(
84
+ "class" => $style . ' n2-ss-item-image-content n2-ss-item-content n2-ow-all'
85
  ), $this->getLink($html, $linkAttributes));
86
  }
87
  }
Nextend/SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php CHANGED
@@ -61,6 +61,7 @@ class ItemVimeo extends AbstractItem {
61
  public function getValues() {
62
  return parent::getValues() + array(
63
  'vimeourl' => '75251217',
 
64
  'image' => '$ss3-frontend$/images/placeholder/video.png',
65
  'aspect-ratio' => '16:9',
66
  'autoplay' => 0,
@@ -205,12 +206,6 @@ class ItemVimeo extends AbstractItem {
205
  'tipDescription' => n2_('You can pause the video when the visitor scrolls away from the slider')
206
  ));
207
 
208
- new OnOff($misc, 'privateurl', n2_('Private video'), 0, array(
209
- 'tipLabel' => n2_('Private video'),
210
- 'tipDescription' => n2_('Turn it on to remove the admin warning that your video is not accessible.'),
211
- 'tipLink' => 'https://smartslider.helpscoutdocs.com/article/1847-vimeo-layer#private-video'
212
- ));
213
-
214
  new OnOff($misc, 'reset', n2_('Restart on slide change'), 0, array(
215
  'tipLabel' => n2_('Restart on slide change'),
216
  'tipDescription' => n2_('Starts the video from the beginning when the slide is viewed again.')
61
  public function getValues() {
62
  return parent::getValues() + array(
63
  'vimeourl' => '75251217',
64
+ 'privateid' => '',
65
  'image' => '$ss3-frontend$/images/placeholder/video.png',
66
  'aspect-ratio' => '16:9',
67
  'autoplay' => 0,
206
  'tipDescription' => n2_('You can pause the video when the visitor scrolls away from the slider')
207
  ));
208
 
 
 
 
 
 
 
209
  new OnOff($misc, 'reset', n2_('Restart on slide change'), 0, array(
210
  'tipLabel' => n2_('Restart on slide change'),
211
  'tipDescription' => n2_('Starts the video from the beginning when the slide is viewed again.')
Nextend/SmartSlider3/Renderable/Item/Vimeo/ItemVimeoFrontend.php CHANGED
@@ -17,16 +17,31 @@ class ItemVimeoFrontend extends AbstractItemFrontend {
17
  $owner = $this->layer->getOwner();
18
 
19
  $url = $owner->fill($this->data->get("vimeourl"));
20
- if (preg_match('/https?:\/\/(?:www\.|player\.)?vimeo.com\/(?:channels\/(?:\w+\/)?|groups\/([^\/]*)\/videos\/|album\/(\d+)\/video\/|video\/|)(\d+)(?:$|\/|\?)/', $url, $matches)) {
21
- $videoID = $matches[3];
 
 
 
 
 
22
  } else {
23
- $videoID = preg_replace('/\D/', '', $url);
24
  }
25
 
26
  $this->data->set("vimeocode", $videoID);
27
 
 
 
 
 
 
 
 
 
 
 
28
  $hasImage = 0;
29
- $coverImageUrl = $this->data->get('image');
30
 
31
  $coverImage = '';
32
  if (!empty($coverImageUrl)) {
@@ -101,6 +116,8 @@ class ItemVimeoFrontend extends AbstractItemFrontend {
101
 
102
  $aspectRatio = $this->data->get('aspect-ratio', '16:9');
103
 
 
 
104
  $style = '';
105
  if ($aspectRatio == 'custom') {
106
  $style = 'style="padding-top:' . ($this->data->get('aspect-ratio-height', '9') / $this->data->get('aspect-ratio-width', '16') * 100) . '%"';
@@ -132,7 +149,7 @@ class ItemVimeoFrontend extends AbstractItemFrontend {
132
  return Html::tag('div', array(
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>' . '<div class="n2_ss_video_player__cover">' . $playButton . '</div>');
137
 
138
  }
17
  $owner = $this->layer->getOwner();
18
 
19
  $url = $owner->fill($this->data->get("vimeourl"));
20
+
21
+ $urlParts = explode('?', $url);
22
+
23
+ $privateID = '';
24
+ if (preg_match('/https?:\/\/(?:www\.|player\.)?vimeo.com\/(?:channels\/(?:\w+\/)?|groups\/([^\/]*)\/videos\/|album\/(\d+)\/video\/|video\/|)(\d+)(?:$|\/|\?)/', $urlParts[0], $matches)) {
25
+ $videoID = $matches[3];
26
+ $privateID = str_replace($matches, '', $urlParts[0]);
27
  } else {
28
+ $videoID = preg_replace('/\D/', '', $urlParts[0]);
29
  }
30
 
31
  $this->data->set("vimeocode", $videoID);
32
 
33
+ if (isset($urlParts[1])) {
34
+ $parsedUrl = parse_url('https://player.vimeo.com/video/' . $videoID . '?' . $urlParts[1]);
35
+ parse_str($parsedUrl['query'], $query);
36
+ if (isset($query['h'])) {
37
+ $privateID = $query['h'];
38
+ }
39
+ }
40
+
41
+ $this->data->set("privateid", $privateID);
42
+
43
  $hasImage = 0;
44
+ $coverImageUrl = $owner->fill($this->data->get('image'));
45
 
46
  $coverImage = '';
47
  if (!empty($coverImageUrl)) {
116
 
117
  $aspectRatio = $this->data->get('aspect-ratio', '16:9');
118
 
119
+ $owner = $this->layer->getOwner();
120
+
121
  $style = '';
122
  if ($aspectRatio == 'custom') {
123
  $style = 'style="padding-top:' . ($this->data->get('aspect-ratio-height', '9') / $this->data->get('aspect-ratio-width', '16') * 100) . '%"';
149
  return Html::tag('div', array(
150
  "class" => 'n2_ss_video_player n2-ow-all',
151
  'data-aspect-ratio' => $aspectRatio,
152
+ "style" => 'background: URL(' . ResourceTranslator::toUrl($owner->fill($this->data->getIfEmpty('image', '$ss3-frontend$/images/placeholder/video.png'))) . ') no-repeat 50% 50%; background-size: cover;'
153
  ), '<div class="n2_ss_video_player__placeholder" ' . $style . '></div>' . '<div class="n2_ss_video_player__cover">' . $playButton . '</div>');
154
 
155
  }
Nextend/SmartSlider3/Slider/Feature/SlideBackground.php CHANGED
@@ -373,7 +373,7 @@ class SlideBackground {
373
 
374
  $sources[] = Html::tag('img', $imageAttributes, '', false);
375
 
376
- $picture = '<picture>' . implode('', $sources) . '</picture>';
377
 
378
  $originalImage = Html::tag('div', $attributes, $picture);
379
 
@@ -386,7 +386,9 @@ class SlideBackground {
386
  $blurFit = $this->slider->params->get('backgroundBlurFit', 7);
387
  $attributes['data-blurfitmode'] = 'default';
388
  }
389
- $picture = "<picture style='filter:blur(" . $blurFit . "px)'>" . implode('', $sources) . "</picture>";
 
 
390
  $blurFitStyle = array(
391
  'margin:-' . ($blurFit * 2) . 'px',
392
  'padding:' . ($blurFit * 2) . 'px'
373
 
374
  $sources[] = Html::tag('img', $imageAttributes, '', false);
375
 
376
+ $picture = HTML::tag('picture', Html::addExcludeLazyLoadAttributes(), implode('', $sources));
377
 
378
  $originalImage = Html::tag('div', $attributes, $picture);
379
 
386
  $blurFit = $this->slider->params->get('backgroundBlurFit', 7);
387
  $attributes['data-blurfitmode'] = 'default';
388
  }
389
+ $picture = HTML::tag('picture', Html::addExcludeLazyLoadAttributes(array(
390
+ 'style' => 'filter:blur(' . $blurFit . 'px)'
391
+ )), implode('', $sources));
392
  $blurFitStyle = array(
393
  'margin:-' . ($blurFit * 2) . 'px',
394
  'padding:' . ($blurFit * 2) . 'px'
Nextend/SmartSlider3/Slider/FeatureManager.php CHANGED
@@ -122,7 +122,8 @@ class FeatureManager {
122
  $return = array(
123
  'admin' => $this->slider->isAdmin,
124
  'callbacks' => $this->slider->params->get('callbacks', ''),
125
- 'background.video.mobile' => intval($this->slider->params->get('slides-background-video-mobile', 1))
 
126
  );
127
  $randomizeCache = $this->slider->params->get('randomize-cache', 0);
128
  if (!$this->slider->isAdmin && $randomizeCache) {
122
  $return = array(
123
  'admin' => $this->slider->isAdmin,
124
  'callbacks' => $this->slider->params->get('callbacks', ''),
125
+ 'background.video.mobile' => intval($this->slider->params->get('slides-background-video-mobile', 1)),
126
+ 'loadingTime'=>intval($this->slider->params->get('loading-time', 2000))
127
  );
128
  $randomizeCache = $this->slider->params->get('randomize-cache', 0);
129
  if (!$this->slider->isAdmin && $randomizeCache) {
Nextend/SmartSlider3/Slider/Slide.php CHANGED
@@ -898,6 +898,6 @@ class Slide extends AbstractRenderableOwner {
898
 
899
  $sources[] = Html::tag('img', $attributes, false);
900
 
901
- return HTML::tag('picture', array(), implode('', $sources));
902
  }
903
  }
898
 
899
  $sources[] = Html::tag('img', $attributes, false);
900
 
901
+ return HTML::tag('picture', Html::addExcludeLazyLoadAttributes(), implode('', $sources));
902
  }
903
  }
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.5.1.1';
18
 
19
  public static $channel = 'stable';
20
 
21
- public static $revision = 'af21758e4195aac8cb3e9ec0beb7b0526d08b3a0';
22
 
23
- public static $revisionShort = 'af21758e';
24
 
25
- public static $branch = 'release-3.5.1.1';
26
 
27
  public static $completeVersion;
28
 
14
 
15
  class SmartSlider3Info {
16
 
17
+ public static $version = '3.5.1.2';
18
 
19
  public static $channel = 'stable';
20
 
21
+ public static $revision = 'f4759c2e729fca8cf3071d0c6356eadecf6f7308';
22
 
23
+ public static $revisionShort = 'f4759c2e';
24
 
25
+ public static $branch = 'release-3.5.1.2';
26
 
27
  public static $completeVersion;
28
 
Nextend/WordPress/OutputBuffer.php CHANGED
@@ -84,6 +84,18 @@ class OutputBuffer {
84
  ));
85
  });
86
  }
 
 
 
 
 
 
 
 
 
 
 
 
87
  }
88
 
89
  /**
84
  ));
85
  });
86
  }
87
+
88
+ if (defined('PERFMATTERS_VERSION')) {
89
+ /**
90
+ * @see SSDEV-3398
91
+ */
92
+ add_action('template_redirect', function () {
93
+ ob_start(array(
94
+ $this,
95
+ "outputCallback"
96
+ ));
97
+ });
98
+ }
99
  }
100
 
101
  /**
Public/SmartSlider3/Application/Admin/Assets/dist/smartslider-admin.min.css CHANGED
@@ -1 +1 @@
1
- @font-face{font-family:'Inter-Nextend';font-style:normal;font-weight:400;src:url(../fonts/Inter-Medium.woff2) format("woff2");font-display:block}@font-face{font-family:'Inter-Nextend';font-style:normal;font-weight:700;src:url(../fonts/Inter-SemiBold.woff2) format("woff2")}@font-face{font-family:'SmartSliderIcons';src:url(../fonts/SmartSliderIcons.woff2?JJC0J3) format("woff2");font-weight:400;font-style:normal}.ssi_16,.ssi_24,.ssi_32,.ssi_48,.ssi_64{font-family:'SmartSliderIcons'!important;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.ssi_16{font-size:16px!important}.ssi_24{font-size:24px!important}.ssi_32{font-size:32px!important}.ssi_48{font-size:48px!important}.ssi_64{font-size:64px!important}.ssi_16--animation::before{content:"\E91F"}.ssi_16--arrowdown::before{content:"\E14B"}.ssi_16--arrowright::before{content:"\E15E"}.ssi_16--bold::before{content:"\E601"}.ssi_16--breadcrumb::before{content:"\E91E"}.ssi_16--bringforward::before{content:"\E15F"}.ssi_16--bringfront::before{content:"\E143"}.ssi_16--buttonarrow::before{content:"\E155"}.ssi_16--check::before{content:"\E600"}.ssi_16--circularremove::before{content:"\E62C"}.ssi_16--clearanimation::before{content:"\E948"}.ssi_16--cog::before{content:"\E934"}.ssi_16--color::before{content:"\E144"}.ssi_16--column::before{content:"\E145"}.ssi_16--content::before{content:"\E146"}.ssi_16--copy::before{content:"\E907"}.ssi_16--crop::before{content:"\E161"}.ssi_16--dashboard::before{content:"\E149"}.ssi_16--data::before{content:"\E152"}.ssi_16--delete::before{content:"\E612"}.ssi_16--desktoplandscape::before{content:"\E95a"}.ssi_16--desktopportrait::before{content:"\E925"}.ssi_16--divide::before{content:"\E639"}.ssi_16--download::before{content:"\E162"}.ssi_16--dummy::before{content:"\E15D"}.ssi_16--duplicate::before{content:"\E611"}.ssi_16--edit::before{content:"\E154"}.ssi_16--eye::before{content:"\E60F"}.ssi_16--filledcheck::before{content:"\E60C"}.ssi_16--filledremove::before{content:"\E62D"}.ssi_16--folderclosed::before{content:"\E921"}.ssi_16--folderopened::before{content:"\E922"}.ssi_16--fontresize::before{content:"\E650"}.ssi_16--fullscreen::before{content:"\E163"}.ssi_16--grid::before{content:"\E164"}.ssi_16--hide::before{content:"\E923"}.ssi_16--horizontalcenter::before{content:"\E646"}.ssi_16--horizontalleft::before{content:"\E647"}.ssi_16--horizontalright::before{content:"\E645"}.ssi_16--image::before{content:"\E14A"}.ssi_16--info::before{content:"\E620"}.ssi_16--italic::before{content:"\E615"}.ssi_16--keyboard::before{content:"\E165"}.ssi_16--layer::before{content:"\E935"}.ssi_16--link::before{content:"\E64D"}.ssi_16--miniarrowdown::before{content:"\E19E"}.ssi_16--miniarrowright::before{content:"\E19D"}.ssi_16--minidesktopportrait::before{content:"\E980"}.ssi_16--mobilelandscape::before{content:"\E929"}.ssi_16--mobileportrait::before{content:"\E92A"}.ssi_16--mobileportraitlarge::before{content:"\E1AB"}.ssi_16--more::before{content:"\E911"}.ssi_16--none::before{content:"\E971"}.ssi_16--off::before{content:"\E19A"}.ssi_16--on::before{content:"\E199"}.ssi_16--paste::before{content:"\E908"}.ssi_16--pause::before{content:"\E606"}.ssi_16--play::before{content:"\E605"}.ssi_16--plus::before{content:"\E92F"}.ssi_16--position::before{content:"\E14E"}.ssi_16--remove::before{content:"\E90A"}.ssi_16--rename::before{content:"\E19C"}.ssi_16--reset::before{content:"\E946"}.ssi_16--resize::before{content:"\E19F"}.ssi_16--row::before{content:"\E14F"}.ssi_16--save::before{content:"\E947"}.ssi_16--selectarrow::before{content:"\E638"}.ssi_16--sendback::before{content:"\E166"}.ssi_16--sendbackward::before{content:"\E167"}.ssi_16--shrink::before{content:"\E196"}.ssi_16--slides::before{content:"\E151"}.ssi_16--smart::before{content:"\E147"}.ssi_16--star::before{content:"\E603"}.ssi_16--stop::before{content:"\E607"}.ssi_16--style::before{content:"\E169"}.ssi_16--tabletlandscape::before{content:"\E927"}.ssi_16--tabletportrait::before{content:"\E928"}.ssi_16--tabletportraitlarge::before{content:"\E1AC"}.ssi_16--textcenter::before{content:"\E614"}.ssi_16--textjustify::before{content:"\E60B"}.ssi_16--textleft::before{content:"\E60A"}.ssi_16--textright::before{content:"\E604"}.ssi_16--underline::before{content:"\E602"}.ssi_16--unlink::before{content:"\E64B"}.ssi_16--up::before{content:"\E16A"}.ssi_16--verticalaround::before{content:"\E97B"}.ssi_16--verticalbetween::before{content:"\E97A"}.ssi_16--verticalbottom::before{content:"\E97F"}.ssi_16--verticalcenter::before{content:"\E97E"}.ssi_16--verticaltop::before{content:"\E97C"}.ssi_16--video::before{content:"\E153"}.ssi_16--wordpress::before{content:"\E197"}.ssi_24--active::before{content:"\D7FD"}.ssi_24--animation::before{content:"\E115"}.ssi_24--attention::before{content:"\E195"}.ssi_24--bounce::before{content:"\E998"}.ssi_24--button::before{content:"\E192"}.ssi_24--check::before{content:"\E14C"}.ssi_24--circularcheck::before{content:"\E129"}.ssi_24--circularinfo::before{content:"\E11B"}.ssi_24--close::before{content:"\E116"}.ssi_24--cog::before{content:"\E15C"}.ssi_24--col2::before{content:"\E193"}.ssi_24--desktop::before{content:"\E11A"}.ssi_24--desktoplandscape::before{content:"\E119"}.ssi_24--dummy::before{content:"\E17B"}.ssi_24--edit::before{content:"\E117"}.ssi_24--fade::before{content:"\E993"}.ssi_24--flip::before{content:"\E996"}.ssi_24--heading::before{content:"\E17E"}.ssi_24--image::before{content:"\E191"}.ssi_24--info::before{content:"\E14D"}.ssi_24--layers::before{content:"\E11C"}.ssi_24--mobilelandscape::before{content:"\E11D"}.ssi_24--mobileportrait::before{content:"\E11E"}.ssi_24--mobileportraitlarge::before{content:"\E1AD"}.ssi_24--more::before{content:"\E17D"}.ssi_24--move::before{content:"\E995"}.ssi_24--newwindow::before{content:"\E1A2"}.ssi_24--notification::before{content:"\E99F"}.ssi_24--orientation::before{content:"\E1A1"}.ssi_24--play::before{content:"\E11F"}.ssi_24--preview::before{content:"\E121"}.ssi_24--redo::before{content:"\E122"}.ssi_24--refresh::before{content:"\E194"}.ssi_24--remove::before{content:"\E16B"}.ssi_24--reveal::before{content:"\E992"}.ssi_24--rotate::before{content:"\E999"}.ssi_24--scale::before{content:"\E994"}.ssi_24--smart::before{content:"\E16C"}.ssi_24--special::before{content:"\E997"}.ssi_24--star::before{content:"\E1A4"}.ssi_24--stop::before{content:"\E16D"}.ssi_24--style::before{content:"\E123"}.ssi_24--tabletlandscape::before{content:"\E124"}.ssi_24--tabletportrait::before{content:"\E125"}.ssi_24--tabletportraitlarge::before{content:"\E1AE"}.ssi_24--text::before{content:"\E17F"}.ssi_24--timeline::before{content:"\E126"}.ssi_24--undo::before{content:"\E127"}.ssi_32--animatedheading::before{content:"\E991"}.ssi_32--area::before{content:"\E937"}.ssi_32--audio::before{content:"\E986"}.ssi_32--beforeafter::before{content:"\E1B4"}.ssi_32--button::before{content:"\E942"}.ssi_32--circlecounter::before{content:"\E985"}.ssi_32--col1::before{content:"\E112"}.ssi_32--col2::before{content:"\E113"}.ssi_32--col3::before{content:"\E157"}.ssi_32--counter::before{content:"\E984"}.ssi_32--dummy::before{content:"\E15B"}.ssi_32--heading::before{content:"\E945"}.ssi_32--highlightheading::before{content:"\E990"}.ssi_32--html::before{content:"\E93A"}.ssi_32--icon::before{content:"\E941"}.ssi_32--iframe::before{content:"\E938"}.ssi_32--image::before{content:"\E943"}.ssi_32--imagearea::before{content:"\E950"}.ssi_32--imagebox::before{content:"\E983"}.ssi_32--imagecaption::before{content:"\E940"}.ssi_32--input::before{content:"\E939"}.ssi_32--joomla::before{content:"\E19B"}.ssi_32--list::before{content:"\E93E"}.ssi_32--plus::before{content:"\E114"}.ssi_32--progressbar::before{content:"\E982"}.ssi_32--smart::before{content:"\E16E"}.ssi_32--text::before{content:"\E944"}.ssi_32--transition::before{content:"\E93F"}.ssi_32--video::before{content:"\E93B"}.ssi_32--vimeo::before{content:"\E93C"}.ssi_32--youtube::before{content:"\E93D"}.ssi_48--bug::before{content:"\E17C"}.ssi_48--camera::before{content:"\E141"}.ssi_48--convert::before{content:"\E134"}.ssi_48--data::before{content:"\E13E"}.ssi_48--delete::before{content:"\E135"}.ssi_48--doc::before{content:"\E13B"}.ssi_48--drop::before{content:"\E136"}.ssi_48--dummy::before{content:"\E159"}.ssi_48--dynamic::before{content:"\E98F"}.ssi_48--empty::before{content:"\E98E"}.ssi_48--error::before{content:"\E137"}.ssi_48--grid::before{content:"\E16F"}.ssi_48--group::before{content:"\E139"}.ssi_48--help::before{content:"\E13A"}.ssi_48--image::before{content:"\E98D"}.ssi_48--keyboard::before{content:"\E171"}.ssi_48--link::before{content:"\E13C"}.ssi_48--newsletter::before{content:"\E13D"}.ssi_48--plus::before{content:"\D7FE"}.ssi_48--post::before{content:"\E98B"}.ssi_48--protect::before{content:"\E133"}.ssi_48--remove::before{content:"\E156"}.ssi_48--review0::before{content:"\E13F"}.ssi_48--review1::before{content:"\E1A5"}.ssi_48--review2::before{content:"\E1A6"}.ssi_48--review3::before{content:"\E1A7"}.ssi_48--review4::before{content:"\E1A9"}.ssi_48--review5::before{content:"\E1AA"}.ssi_48--static::before{content:"\E98A"}.ssi_48--upgrade::before{content:"\E1A3"}.ssi_48--video::before{content:"\E989"}.ssi_64--accordionslider::before{content:"\E12A"}.ssi_64--auto::before{content:"\E17A"}.ssi_64--block::before{content:"\E12B"}.ssi_64--blurfit::before{content:"\E172"}.ssi_64--carousel::before{content:"\E12C"}.ssi_64--center::before{content:"\E173"}.ssi_64--drop::before{content:"\E12D"}.ssi_64--dummy::before{content:"\E15A"}.ssi_64--fill::before{content:"\E174"}.ssi_64--fit::before{content:"\E175"}.ssi_64--folder::before{content:"\E957"}.ssi_64--folderup::before{content:"\E63E"}.ssi_64--fullwidthslider::before{content:"\E132"}.ssi_64--image::before{content:"\E176"}.ssi_64--page::before{content:"\E12E"}.ssi_64--showcase::before{content:"\E12F"}.ssi_64--slider::before{content:"\E131"}.ssi_64--stretch::before{content:"\E177"}.ssi_64--tile::before{content:"\E179"}.n2_color_picker{position:fixed;top:0;left:0;z-index:10000000;border:2px solid #b9c3c9;border-radius:3px;background-color:#fff;width:min-content;display:grid;grid-gap:10px;grid-template-columns:auto auto auto auto;padding:10px;user-select:none}.n2_color_picker.n2_color_picker--has-opacity{grid-template-columns:auto auto auto auto auto}.n2_color_picker__palette{width:min-content;display:grid;grid-gap:8px;grid-template-columns:1fr 1fr 1fr 1fr}.n2_color_picker__palette_item{width:20px;height:20px;overflow:hidden;border-radius:3px;cursor:pointer}.n2_color_picker__palette_item_color{width:100%;height:100%;background-color:var(--palette-item-color);box-shadow:0 0 1px 1px rgba(0,0,0,.2) inset;border-radius:3px}.n2_color_picker__palette_item_alpha{display:none}.n2_color_picker--has-opacity .n2_color_picker__palette_item_alpha{display:block}.n2_color_picker__palette_history{width:min-content;display:grid;grid-gap:8px;grid-template-columns:1fr;border-left:1px solid rgba(0,0,0,.2);border-right:1px solid rgba(0,0,0,.2);padding:0 10px}.n2_color_picker__palette_history .n2_color_picker__palette_item:last-child{display:none}.n2_color_picker--has-opacity .n2_color_picker__palette_history .n2_color_picker__palette_item:last-child{display:block}.n2_color_picker__picker_area{padding:10px;width:min-content;display:grid;grid-template-columns:auto auto auto;grid-gap:10px;overflow:hidden}.n2_color_picker__picker_canvas{align-self:stretch;position:relative;width:140px;background-color:red;background-image:linear-gradient(to top,#000,rgba(204,154,129,0)),linear-gradient(to right,#fff,rgba(204,154,129,0));box-shadow:0 0 1px 1px rgba(0,0,0,.2) inset}.n2_color_picker__picker_canvas_dot{position:absolute;left:-5px;top:-5px;width:10px;height:10px;border-radius:10px;background:#fff;box-shadow:0 0 0 1px rgba(0,0,0,.4)}.n2_color_picker__picker_hue{align-self:stretch;position:relative;width:20px;background:linear-gradient(to bottom,red 0%,#ff0 17%,#0f0 33%,#0ff 50%,#00f 67%,#f0f 83%,red 100%);box-shadow:0 0 1px 1px rgba(0,0,0,.2) inset}.n2_color_picker__picker_hue_dot{position:absolute;left:-3px;top:-3px;width:calc(100% + 6px);height:6px;border-radius:5px;background:#fff;box-shadow:0 0 0 1px rgba(0,0,0,.4)}.n2_color_picker__picker_opacity{align-self:stretch;display:none;width:20px}.n2_color_picker--has-opacity .n2_color_picker__picker_opacity{display:block}.n2_color_picker__picker_opacity_inner{position:relative;width:100%;height:100%;box-shadow:0 0 1px 1px rgba(0,0,0,.2) inset}.n2_color_picker__picker_opacity_dot{position:absolute;left:-3px;top:-3px;width:calc(100% + 6px);height:6px;border-radius:5px;background:#fff;box-shadow:0 0 0 1px rgba(0,0,0,.4)}.n2_checker_box{background-image:linear-gradient(45deg,gray 25%,transparent 25%),linear-gradient(-45deg,gray 25%,transparent 25%),linear-gradient(45deg,transparent 75%,gray 75%),linear-gradient(-45deg,transparent 75%,gray 75%);background-size:10px 10px;background-position:0 0,0 5px,5px -5px,-5px 0}#dolly{display:none!important}.toplevel_page_smart-slider3 #wpbody-content{padding-bottom:0!important}.toplevel_page_smart-slider3 #wpfooter{display:none}#wpbody-content #n2-admin{margin:10px 20px 20px 0}html[dir=rtl] #wpbody-content #n2-admin{margin:10px 0 0 20px}#wpbody-content #n2-admin a:focus{box-shadow:none}.n2 input{min-height:initial;border-radius:0}.n2 select{background:0 0;max-width:initial;min-height:26px;height:26px;font-size:12px;-webkit-appearance:menulist;-moz-appearance:menulist}.n2 select[multiple]{height:auto;-webkit-appearance:none;-moz-appearance:none}.n2_admin .n2_field_select select{background:0 0}html.n2_html--application-only{background:#fff}html.n2_html--application-only #wpbody{padding:0!important}html.n2_html--application-only.wp-toolbar{padding:0}html.n2_html--application-only,html.n2_html--application-only body{position:relative;height:auto;min-height:100vh;background:#fff}html.n2_html--application-only #wpadminbar,html.n2_html--application-only #adminmenuwrap,html.n2_html--application-only #adminmenuback,html.n2_html--application-only .update-nag{display:none!important}html.n2_html--application-only #wpcontent{margin:0!important;padding-left:0;padding-right:0}html.n2_html--application-only .updated,html.n2_html--application-only .error,html.n2_html--application-only .notice-error,html.n2_html--application-only .notice-success,html.n2_html--application-only .notice-warning,html.n2_html--application-only .notice-info,html.n2_html--application-only .notice,html.n2_html--application-only .wpuf-review-notice,html.n2_html--application-only .analytify-review-notice,html.n2_html--application-only .prompt-box+.overlay{display:none!important}.wp-block-nextend-smartslider3{position:relative;z-index:1;min-height:100px}.wp-block-nextend-smartslider3 iframe{pointer-events:none}.wp-block-nextend-smartslider3__button-container{display:inline-grid;grid-template-columns:auto auto;grid-gap:10px}.wp-customizer .n2_modal{z-index:1000030}.wp-customizer a.n2_button,.wp-customizer a.n2_button:HOVER,.wp-customizer a.n2_button:FOCUS{color:#fff}#gslogo-dummy-data-install--notice,.gslogo-admin-notice,.gslogo-review-notice{display:none!important}#a2020-admin-bar-app{z-index:100000}.a2020_admin_theme #wpwrap{display:block;vertical-align:top}.a2020_admin_theme #wpbody-content #n2-admin{margin:10px 20px 20px 20px}.n2_html--application-only .a2020_admin_theme #a2020-admin-bar-app{display:none!important}.n2_admin{position:relative;min-width:980px}.n2_admin__header{position:relative;z-index:2000;font-family:"Inter-Nextend",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;line-height:1.3;font-size:16px;-webkit-font-smoothing:antialiased}.n2_admin__header a{transition:none 0s;text-decoration:none;box-shadow:none}.n2_admin__content{border-radius:0 0 3px 3px;border-left:1px solid #94b2c1;border-right:1px solid #94b2c1;border-bottom:1px solid #94b2c1;background-color:#f0f4f7;padding-bottom:40px;min-height:calc(100vh - 180px)}.n2_admin_ui{font-family:"Inter-Nextend",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;line-height:1.3;font-size:16px;-webkit-font-smoothing:antialiased}.n2_admin_ui a{transition:none 0s;text-decoration:none;box-shadow:none}.n2_admin_ui a:ACTIVE,.n2_admin_ui a:VISITED,.n2_admin_ui a:FOCUS,.n2_admin_ui a:LINK{text-decoration:none}.n2_admin_ui iframe{border:0}.n2_admin_ui [contenteditable=true]{-webkit-user-select:text;user-select:text}.n2_admin--empty{margin:0!important}.n2_admin--empty.n2_admin{min-width:0}.n2_nav_bar{position:relative;z-index:11;min-height:70px;display:flex;background-color:#1375e9;border-top-left-radius:3px;border-top-right-radius:3px}.n2_nav_bar__logo{flex:0 1 auto;display:flex;justify-content:center}.n2_nav_bar__logo a{display:inline-flex;align-items:center;justify-content:center}.n2_nav_bar__logo svg{max-width:none}.n2_nav_bar__menu{position:relative;z-index:2;flex:1 1 auto;padding:0 10px;width:100%;box-sizing:border-box;display:flex;justify-content:flex-end;align-items:center;margin-left:auto}@media only screen and (max-width:1600px){.n2_nav_bar__menu{width:auto}}.n2_nav_bar__menuitem{margin:10px}.n2_nav_bar__menuitem>a{display:block;padding:0 5px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;max-width:150px}.n2_nav_bar__menuitem a{font-size:14px;line-height:2}.n2_nav_bar__menuitem a,.n2_nav_bar__menuitem a:HOVER,.n2_nav_bar__menuitem a:FOCUS{color:#d0e3fb}.n2_breadcrumbs{padding:0 10px;white-space:nowrap;flex:1 1 auto;width:100%;box-sizing:border-box;position:relative;z-index:2;display:flex;align-items:center}@media only screen and (max-width:1600px){.n2_breadcrumbs{width:auto}}.n2_breadcrumbs__breadcrumb_button{display:flex;align-items:center;padding:0 8px;font-size:14px;line-height:2;text-transform:capitalize;font-weight:700}.n2_breadcrumbs__breadcrumb_button,.n2_breadcrumbs__breadcrumb_button:HOVER,.n2_breadcrumbs__breadcrumb_button:FOCUS{color:#d0e3fb}.n2_breadcrumbs__breadcrumb_button>*{margin:0 2px}.n2_breadcrumbs__breadcrumb_button>span{max-width:150px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.n2_breadcrumbs__breadcrumb_button>.ssi_16{margin:0 3px}.n2_breadcrumbs__breadcrumb--active .n2_breadcrumbs__breadcrumb_button,.n2_breadcrumbs__breadcrumb--active .n2_breadcrumbs__breadcrumb_button:HOVER,.n2_breadcrumbs__breadcrumb--active .n2_breadcrumbs__breadcrumb_button:FOCUS{color:#fff}.n2_breadcrumbs__arrow{font-size:16px;color:#d0e3fb}.n2_breadcrumbs__arrow .ssi_16{display:block}html[dir=rtl] .n2_breadcrumbs__arrow{transform:rotateZ(180deg)}.n2-admin-content-with-sidebar{display:flex}.n2-admin-content-with-sidebar__sidebar{flex:0 0 auto;width:340px;margin-left:-1px;background-color:#4d5d70;border-bottom-left-radius:3px;border-right:1px solid #212d3a;box-sizing:border-box}.n2-admin-content-with-sidebar__content{position:relative;min-height:1000px}.n2_top_bar_main{font-family:"Inter-Nextend",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;line-height:1.3;font-size:16px;-webkit-font-smoothing:antialiased;z-index:1020;margin-left:-1px;margin-right:-1px;position:-webkit-sticky;position:sticky;top:0;display:flex;flex-flow:row-reverse;background-color:#0c1924;padding:12px 10px}.n2_top_bar_main a{transition:none 0s;text-decoration:none;box-shadow:none}.n2_top_bar_main .n2_top_bar_button_icon{font-size:24px;width:24px;height:24px}.n2_top_bar_main .n2_top_bar_button_icon,.n2_top_bar_main .n2_top_bar_button_icon:HOVER,.n2_top_bar_main .n2_top_bar_button_icon:FOCUS{color:#94b2c1}.n2_top_bar_main__primary{display:flex;flex-flow:row-reverse;align-items:center}.n2_top_bar_main__primary>*{margin:0 10px}.n2_top_bar_main__primary .n2_button_spacer{margin:0 10px;width:2px;height:32px}.n2_top_bar_main__primary .n2_button_spacer--visible{height:24px;background-color:#3a4956;border-radius:1px}.n2_top_bar_main__secondary{display:flex;align-items:center;margin-right:auto;padding-left:5px}.n2_top_bar_main__secondary>*{margin:0 5px}.n2_top_bar_group--narrow .n2_top_bar_group__inner{display:flex;flex-flow:row-reverse;margin:0 -5px;direction:ltr}.n2_top_bar_group--narrow .n2_top_bar_group__inner>*{margin:0 5px}.n2_header{position:relative;z-index:990;font-family:"Inter-Nextend",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;line-height:1.3;font-size:16px;-webkit-font-smoothing:antialiased;background-color:#fff;padding:30px 28px}.n2_header a{transition:none 0s;text-decoration:none;box-shadow:none}.n2_header.n2_header--has-menu-items{padding-top:50px;padding-bottom:0}.n2_header__heading_container{margin:0 12px}.n2_header__content{display:flex;align-items:center}.n2_header__heading{display:flex;align-items:center}.n2_header__heading_primary{font-size:32px;line-height:1.25em;color:#283f4d}.n2_header__heading_after{font-size:24px;line-height:1em;color:#94b2c1;margin:0 15px}.n2_header__actions{margin-left:auto;display:flex}.n2_header__actions>*{margin:0 12px}html[dir=rtl] .n2_header__actions{margin-left:0;margin-right:auto}.n2_header__menu{margin:0 -8px;display:flex}.n2_header__menu_item{margin:0 20px;line-height:50px;font-size:16px;font-weight:700;text-transform:capitalize;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.n2_header__menu_item,.n2_header__menu_item:ACTIVE,.n2_header__menu_item:VISITED,.n2_header__menu_item:FOCUS,.n2_header__menu_item:LINK{color:#325c77}.n2_header__menu_item--active,.n2_header__menu_item--active:ACTIVE,.n2_header__menu_item--active:VISITED,.n2_header__menu_item--active:FOCUS,.n2_header__menu_item--active:LINK{box-shadow:inset 0 -3px 0 0 #1375e9!important;color:#1375e9}.n2_notification_center{z-index:9999999999999;position:fixed;right:10px;bottom:0;display:flex;flex-flow:column;align-items:flex-end;width:auto;max-height:310px;padding:10px;overflow-y:auto;overflow-x:hidden}html[dir=rtl] .n2_notification_center{left:10px;right:auto}.n2_notification_center__message{max-width:500px;margin:10px;display:flex;align-items:center;background-color:#0c1924;border-radius:5px;padding:20px;transition:transform .5s ease-in-out .3s;transform:translateX(150%)}html[dir=rtl] .n2_notification_center__message{transform:translateX(-150%)}.n2_notification_center__message--animate{transform:translateX(0%)}html[dir=rtl] .n2_notification_center__message--animate{transform:translateX(0%)}.n2_notification_center__message--success{min-width:250px}.n2_notification_center__message_icon{flex:0 0 auto;display:flex;align-items:center;justify-content:center;width:48px;height:48px;border-radius:100%;color:#fff}.n2_notification_center__message--success .n2_notification_center__message_icon{background-color:#04c018}.n2_notification_center__message--success .n2_notification_center__message_icon .ssi_24::before{content:"\E14C"}.n2_notification_center__message--notice .n2_notification_center__message_icon{background-color:#1d81f9}.n2_notification_center__message--notice .n2_notification_center__message_icon .ssi_24::before{content:"\E14D"}.n2_notification_center__message_content{flex:1 1 auto;padding:0 10px}.n2_notification_center__message_content_label{color:#fff;font-size:14px;line-height:20px;text-transform:uppercase}.n2_notification_center__message_content_description{font-size:14px;line-height:20px;color:#94b2c1}.n2_notification_center__message_action{flex:0 0 auto;margin:0 10px;background-color:#1d81f9;border-radius:3px;padding:0 10px;white-space:nowrap;font-size:11px;color:#fff;line-height:30px;cursor:pointer;text-transform:uppercase}.n2_notification_center__message_action:HOVER{background-color:#338ef9}.n2_body--fullscreen-editor-visible{overflow:hidden}.n2_fullscreen_editor{font-family:"Inter-Nextend",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;line-height:1.3;font-size:16px;-webkit-font-smoothing:antialiased;z-index:100002;position:fixed;left:0;top:0;display:none;box-sizing:border-box;width:100%;height:100%;padding:20px;background:rgba(28,41,51,.8)}.n2_fullscreen_editor a{transition:none 0s;text-decoration:none;box-shadow:none}.n2_fullscreen_editor--visible{display:block}.n2_fullscreen_editor__overlay{z-index:1;position:absolute;left:0;top:0;width:100%;height:100%;cursor:pointer}.n2_fullscreen_editor__window{z-index:2;position:relative;flex:1 1 auto;height:100%;display:flex;flex-flow:column;border-radius:3px;box-shadow:0 1px 5px 1px rgba(55,77,88,.2);overflow:hidden}.n2_fullscreen_editor__window>iframe{display:block;width:100%;height:100%}.n2_fullscreen_editor__nav_bar{position:relative;z-index:2;display:flex;flex:0 0 auto;background-color:#0c1924}.n2_fullscreen_editor__nav_bar_label{position:absolute;width:100%;z-index:1;line-height:60px;color:#fff;font-size:22px;text-align:center;text-transform:capitalize}.n2_fullscreen_editor__nav_bar_actions{position:relative;z-index:2;flex:1 1 auto;display:flex;justify-content:flex-end;padding:12px 10px}.n2_fullscreen_editor__nav_bar_actions>*{margin:0 10px}.n2_fullscreen_editor__content{flex:1 1 auto;display:flex;overflow:hidden}.n2_fullscreen_editor__content_sidebar{position:relative;flex:0 0 340px;width:340px;overflow:auto;background-color:#3a4956}.n2_fullscreen_editor__content_sidebar_top_bar{position:-webkit-sticky;position:sticky;top:0}.n2_fullscreen_editor__save_as_new_container{padding:12px 20px}.n2_fullscreen_editor__save_as_new_container .n2_button{text-align:center;display:block}.n2_fullscreen_editor__visual{display:flex;align-items:center;padding:0 10px;background-color:#2c3a45;border-bottom:1px solid #1e2830}.n2_fullscreen_editor__visual--active{background-color:#1375e9;border-bottom:1px solid #1375e9}.n2_fullscreen_editor__visual_select_tick{width:16px;height:16px;display:inline-flex;align-items:center;justify-content:center;border:2px solid #131c23;border-radius:3px;background-color:#2c3a45;cursor:pointer}.n2_fullscreen_editor__visual_select_tick .ssi_16{display:none;color:#fff}.n2_fullscreen_editor__visual--selected .n2_fullscreen_editor__visual_select_tick{background-color:#04c018;border-color:#04c018}.n2_fullscreen_editor__visual--selected .n2_fullscreen_editor__visual_select_tick .ssi_16{display:inline-block}.n2_fullscreen_editor__visual_label{flex:1 1 auto;padding:0 10px;color:#94b2c1;font-size:12px;line-height:44px;cursor:pointer}.n2_fullscreen_editor__visual--active .n2_fullscreen_editor__visual_label{color:#fff}.n2_fullscreen_editor__visual_action{display:inline-flex;align-items:center;justify-content:center;padding:5px;font-size:16px;color:#94b2c1;cursor:pointer}.n2_fullscreen_editor__visual--active .n2_fullscreen_editor__visual_action{color:#fff}.n2_fullscreen_editor__content_content{position:relative;flex:1 1 auto;overflow:auto;background-color:#f0f4f7}.n2_iframe_application{font-family:"Inter-Nextend",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;line-height:1.3;font-size:16px;-webkit-font-smoothing:antialiased;display:flex;flex-flow:column;margin:0!important;min-width:0;height:100vh;overflow:hidden}.n2_iframe_application a{transition:none 0s;text-decoration:none;box-shadow:none}.n2_iframe_application__nav_bar{position:relative;z-index:2;display:flex;flex:0 0 auto;height:60px;background-color:#0c1924}.n2_iframe_application__nav_bar_label{position:absolute;width:100%;z-index:1;line-height:60px;color:#fff;font-size:22px;text-align:center}.n2_iframe_application__nav_bar_actions{position:relative;z-index:2;flex:1 1 auto;display:flex;justify-content:flex-end;padding:12px 10px}.n2_iframe_application__nav_bar_actions>*{margin:0 10px}.n2_iframe_application__nav_bar_actions .n2_button_spacer{margin:0 10px;width:2px;height:32px}.n2_iframe_application__nav_bar_actions .n2_button_spacer--visible{height:24px;background-color:#3a4956;border-radius:1px}.n2_iframe_application__nav_bar_actions .n2_button_plain_icon{margin:0 5px}.n2_iframe_application__nav_bar_actions .n2_button_plain_icon,.n2_iframe_application__nav_bar_actions .n2_button_plain_icon:HOVER,.n2_iframe_application__nav_bar_actions .n2_button_plain_icon:FOCUS{color:#94b2c1}.n2_iframe_application__content{position:relative;flex:1 1 auto;overflow:auto;background-color:#f0f4f7}.n2_iframe_application__content .n2_form__table[data-field=table-shapedivider] .n2_field__label .ssi_16--minidesktopportrait{color:#325c77}.n2_admin_editor{margin:0!important;min-width:0}.n2_admin_editor_overlay{z-index:10;position:fixed;left:0;top:0;width:100%;height:100%;display:flex;flex-flow:column;visibility:hidden}.n2_admin_editor_overlay__top{position:relative;z-index:10;flex:0 0 auto}.n2_admin_editor_overlay__top_bar_main{position:static;visibility:visible}.n2_admin_editor_overlay__top_bar_main .n2_breadcrumbs{margin:0 -8px;padding:0}.n2_admin_editor_overlay__top_bar_main .n2_breadcrumbs__breadcrumb_button{color:#94b2c1}.n2_admin_editor_overlay__top_bar_main .n2_breadcrumbs__breadcrumb_button,.n2_admin_editor_overlay__top_bar_main .n2_breadcrumbs__breadcrumb_button:HOVER,.n2_admin_editor_overlay__top_bar_main .n2_breadcrumbs__breadcrumb_button:FOCUS{color:#94b2c1}.n2_admin_editor_overlay__top_bar_main .n2_breadcrumbs__arrow{color:#94b2c1}.n2_admin_editor__ui_slide_manager.n2_slide_manager{visibility:visible;position:absolute;left:0;top:60px;width:100%;height:calc(100vh - 60px)}.n2_admin_editor__ui_slide_manager.n2_slide_manager .n2_slide_manager__inner{overflow:auto;max-height:100%}.n2_admin_editor__content{display:flex;position:relative;box-sizing:border-box;width:100%;height:100vh;padding-top:75px;padding-left:65px;background:#f0f4f7}.n2_body--show-add-more .n2_admin_editor__content,.n2_body--attached-layer-list .n2_admin_editor__content{padding-bottom:0!important}.n2_admin_editor__content_inner{position:relative;flex:1 1 auto;background-color:#f0f4f7;overflow:auto}.n2_admin_editor_overlay--show-layer-navigation:not(.n2_admin_editor_overlay--show-add-more):not(.n2_admin_editor_overlay--attached-layer-list) .n2_slide_editor_timeline_toggle--show{display:none}.n2_admin_editor_overlay--show-layer-navigation.n2_admin_editor_overlay--attached-layer-list .n2_slide_editor_timeline_toggle--show{pointer-events:none}.n2_admin_editor_overlay--show-slides .n2_admin_editor_overlay__top_bar_main .n2_top_bar_main__primary{opacity:.5;pointer-events:none}.n2_top_bar_main__logo{flex:1 1 auto;overflow:hidden;display:flex;align-items:center;justify-content:center}.n2_top_bar_main__logo a{display:inline-block;padding:0 10px}.n2_top_bar_main__logo svg{vertical-align:top;display:inline-block}.n2_admin__banner{background-color:#1c2933;z-index:2;position:relative;color:#fff;align-items:center}.n2_admin__banner .n2_admin__banner_inner{max-width:500px;text-align:center;margin:0 auto;padding:40px}.n2_admin__banner .n2_admin__banner_inner .n2_admin__banner_inner_title{font-size:22px;line-height:32px}.n2_admin__banner .n2_admin__banner_inner .n2_admin__banner_inner_description{font-size:14px;color:#94b2c1;line-height:24px}.n2_admin__banner .n2_admin__banner_inner .n2_admin__banner_inner_button{margin-top:20px}.n2_admin__banner .n2_admin__banner_close{margin:10px;width:36px;height:36px;display:flex;align-items:center;justify-content:center;background-color:#6b7986;border-radius:100%;color:#fff;font-size:16px;cursor:pointer;position:absolute;top:0;right:0}.n2_admin__banner .n2_admin__banner_close:HOVER{background-color:#8694a2}.n2_free_need_more{padding:40px 0;display:flex;flex-flow:column;align-items:center;text-align:center}.n2_free_need_more__logo img{display:block;width:64px}.n2_free_need_more__title{margin-top:10px;font-size:16px;line-height:28px;font-weight:700;color:#fff}.n2_modal .n2_free_need_more__title{color:#283f4d}.n2_free_need_more__paragraph{max-width:270px;line-height:24px;font-size:14px;color:#bdcfd9}.n2_modal .n2_free_need_more__paragraph{color:#325c77}.n2_free_need_more__button{margin-top:10px;padding:0 25px;background-color:#1d81f9;border-radius:3px;font-size:12px;line-height:36px;font-weight:700;text-transform:uppercase}.n2_free_need_more__button,.n2_free_need_more__button:HOVER,.n2_free_need_more__button:FOCUS{color:#fff}.n2_free_need_more__button:HOVER{background-color:#338ef9}.n2_body--inherit-cursor *{cursor:inherit!important}.n2_modal{font-family:"Inter-Nextend",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;line-height:1.3;font-size:16px;-webkit-font-smoothing:antialiased;z-index:100003;position:fixed;left:0;top:0;display:none;box-sizing:border-box;width:100%;height:100%;padding:20px;background:rgba(28,41,51,.8);align-items:center;justify-content:center}.n2_modal a{transition:none 0s;text-decoration:none;box-shadow:none}.n2_modal--visible{display:flex}.n2_modal__overlay{z-index:1;position:absolute;width:100%;height:100%;cursor:pointer}.n2_modal__window{position:relative;z-index:2;display:flex;flex-flow:column;width:100%;max-height:100%;border-radius:3px;box-shadow:0 2px 20px 0 rgba(0,0,0,.2)}.n2_modal--simple .n2_modal__window{border-radius:3px;overflow:hidden}.n2_modal--simple .n2_modal__body_outer{flex:1 1 auto;position:relative;background:#fff;border-radius:3px 3px 0 0;overflow:auto}.n2_modal--simple .n2_modal__body{padding:20px 40px 10px}.n2_modal--simple .n2_modal__close_wrap{position:sticky;top:0;height:0;display:flex;justify-content:flex-end}.n2_modal--simple .n2_modal__close{margin:10px;width:36px;height:36px;display:flex;align-items:center;justify-content:center;background-color:#f0f4f7;border-radius:100%;color:#283f4d;font-size:16px;cursor:pointer}.n2_modal--simple .n2_modal__buttons{display:flex;flex:0 0 auto;background-color:#f0f4f7;height:56px;border-radius:0 0 3px 3px;border-top:1px solid #e4e9ec}.n2_modal--simple .n2_modal__buttons[data-buttons="0"]{display:none}.n2_modal--simple .n2_modal__buttons[data-buttons="1"] .n2_modal__button{width:100%;align-items:center;justify-content:center}.n2_modal--simple .n2_modal__buttons[data-buttons="2"] .n2_modal__button{width:50%;align-items:center}.n2_modal--simple .n2_modal__buttons[data-buttons="2"] .n2_modal__button:first-child{justify-content:flex-end;padding-right:10px}.n2_modal--simple .n2_modal__buttons[data-buttons="2"] .n2_modal__button:last-child{justify-content:flex-start;padding-left:10px}.n2_modal--simple .n2_modal__button{display:flex}.n2_modal[data-modal-type=generator-insert-variable] .n2_generator_variables{display:flex;flex-wrap:wrap;padding:3px;background-color:#f0f4f7;border-radius:3px;max-height:130px;overflow-y:auto}.n2_modal[data-modal-type=generator-insert-variable] .n2_generator_variables__variable{margin:3px;padding:0 10px;background-color:#94b2c1;border-radius:3px;color:#fff;font-size:11px;line-height:30px;cursor:pointer}.n2_modal[data-modal-type=generator-insert-variable] .n2_generator_variables__variable:HOVER{background-color:#7f9caa}.n2_modal[data-modal-type=generator-insert-variable] .n2_generator_variables__variable--selected{background-color:#1d81f9;color:#fff}.n2_modal[data-modal-type=generator-insert-variable] .n2_generator_variables__variable--selected:HOVER{background-color:#1d81f9}.n2_modal[data-modal-type=generator-insert-variable] .n2_generator_result{padding:0 8px;background-color:#f0f4f7;border-radius:3px;height:80px;overflow-y:scroll;font-size:12px;line-height:30px;color:#325c77}.n2_modal--lightbox .n2_modal__window{height:100%}.n2_modal--lightbox .n2_modal__top_bar{position:relative;border-radius:3px 3px 0 0;background-color:#0c1924}.n2_modal--lightbox .n2_modal__top_bar_title{position:absolute;width:100%;z-index:1;line-height:60px;color:#fff;font-size:22px;text-align:center;text-transform:capitalize}.n2_modal--lightbox .n2_modal__top_bar_buttons{position:relative;z-index:2;display:flex;justify-content:flex-end;padding:12px 10px}.n2_modal--lightbox .n2_modal__top_bar_buttons>*{margin:0 10px}.n2_modal--lightbox .n2_modal__body{flex:1 1 auto;overflow:auto;background:#f0f4f7;border-radius:0 0 3px 3px}.n2_modal--lightbox[data-modal-type=icons] .n2_modal__body{display:flex;overflow:hidden}.n2_modal--lightbox[data-modal-type=icons] .n2_modal__sidebar{position:relative;flex:0 0 340px;width:340px;background-color:#3a4956}.n2_modal--lightbox[data-modal-type=icons] .n2_modal__sidebar_inner{height:100%;overflow:auto}.n2_modal--lightbox[data-modal-type=icons] .n2_modal__content{position:relative;flex:1 1 auto;background-color:#f0f4f7}.n2_modal--lightbox[data-modal-type=icons] .n2_modal__content_inner{height:100%;overflow:auto}.n2_modal_icons__search_area{padding:10px 20px;background-color:#3a4956;border-bottom:1px solid #1e2830}.n2_modal_icons__search_area .n2_field__label{display:none}.n2_modal_icons__search_area .n2_field_text{display:flex}.n2_modal_icons__search_area .n2_field_text input{width:100%}.n2_modal_icons__list_item{background-color:#2c3a45;padding:0 10px;border-bottom:1px solid #1e2830;color:#94b2c1;font-size:12px;line-height:44px;cursor:pointer}.n2_modal_icons__list_item--active{background-color:#1d81f9;color:#fff}.n2_modal_icons__icon{display:inline-block;margin:5px;width:32px;height:32px;cursor:pointer;font-size:24px;line-height:32px;text-align:center;color:#000}.n2_modal_filesystem__content{display:flex;flex-wrap:wrap;padding:10px}.n2_modal_filesystem__content[data-mode=single] .n2_modal_filesystem_box--file,.n2_modal_filesystem__content[data-mode=multiple] .n2_modal_filesystem_box--file{cursor:pointer}.n2_modal_filesystem__current_path{width:100%;margin:0 10px;font-size:14px;line-height:30px;color:#325c77}.n2_modal_filesystem_box{position:relative;display:flex;flex-flow:column;justify-content:flex-end;margin:10px;width:160px;height:140px;border-radius:3px}.n2_modal_filesystem_box .n2-button{display:none}.n2_modal_filesystem_box--active{box-shadow:0 0 0 3px #1d81f9}.n2_modal_filesystem_box__image{height:100px;background-repeat:no-repeat;background-size:cover}.n2_modal_filesystem_box__icon{height:100px;display:flex;align-items:center;justify-content:center;color:#94b2c1}.n2_modal_filesystem_box__label{padding:0 15px;background-color:#fff;color:#325c77;font-size:12px;line-height:40px;text-align:center;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.n2_modal_filesystem_box--upload{border:2px dashed #bdcfd9}.n2_modal_filesystem_box--upload .n2_modal_filesystem_box__icon{height:84px}.n2_modal_filesystem_box--upload .n2_modal_filesystem_box__label{line-height:20px;white-space:normal;overflow:visible;text-overflow:initial}.n2_modal_filesystem_box--directory-up{cursor:pointer}.n2_modal_filesystem_box--directory{cursor:pointer}.n2_modal_select_slider{position:relative;display:flex;flex-wrap:wrap;margin:0 auto;padding:24px}.n2_modal_select_slider__box{position:relative;flex:0 0 auto;width:270px;height:180px;border-radius:3px;margin:16px;background:#fff;cursor:pointer}.n2_modal[data-modal-type=select-slider] .n2_modal__window{max-width:980px;max-height:744px}.n2_modal--iframe .n2_modal__window{height:100%}.n2_modal--iframe iframe{width:100%;height:100%;border:0}.n2_modal__hotkey{display:flex;flex-wrap:wrap}.n2_modal__hotkey_column{flex:0 0 50%;padding:10px;box-sizing:border-box}.n2_modal__hotkey_group{padding:10px}.n2_modal__hotkey_row{display:flex;justify-content:space-between;margin:5px 0}.n2_modal__hotkey_text{font-size:12px;line-height:28px;color:#325c77}.n2_modal__hotkey_key{font-size:11px;font-weight:700;line-height:30px;text-transform:uppercase;color:#fff;background:#94b2c1;border-radius:3px;padding:0 10px;min-width:11px;text-align:center;margin-left:5px}.n2_modal__hotkey_key:last-child{background:#1d81f9}.n2_modal__hotkey_keys{display:flex}.n2_modal__hotkey_title{text-transform:uppercase;font-size:14px;line-height:26px;color:#325c77;font-weight:700}.n2_modal__icon{margin:0 auto 10px;flex:0 0 auto;width:99px;height:99px;border-radius:100%;display:flex;align-items:center;justify-content:center;font-size:48px}.n2_modal__icon--green{background:#e5f8e7;color:#04c018}.n2_modal__icon--purple{background:#efebf8;color:#5f39c2}.n2_modal__icon--red{background:#f9ebe9;color:#be331f}.n2_modal__icon--blue{background:#e8f2fe;color:#1d81f9}.n2_modal__heading{line-height:28px;font-size:18px;color:#283f4d;font-weight:700;text-transform:capitalize;text-align:center}.n2_modal__subheading{font-size:18px;line-height:30px;color:#283f4d}.n2_modal__paragraph{color:#325c77;font-size:14px;line-height:26px;text-align:center;margin-bottom:20px}input.n2_modal__input{box-sizing:initial;width:100%;max-width:240px;border:2px solid #94b2c1;border-radius:3px;height:32px;line-height:32px;font-size:14px;color:#325c77;text-align:center;margin-bottom:22px}input.n2_modal__input:FOCUS{box-shadow:none;border-color:#1375e9}.n2_modal__form_row{margin:0 -10px}.n2_modal__form_row .n2_field{display:inline-flex;flex-flow:column;vertical-align:top;margin-bottom:15px;padding:5px 10px}.n2_modal__form_row .n2_field .n2_field__label{display:flex;align-items:center}.n2_modal__form_row .n2_field .n2_field__label label{line-height:20px;color:#325c77;font-size:12px;text-transform:capitalize}.n2_modal__form_row .n2_field .n2_field__label .ssi_16--info{margin:0 5px;font-size:16px;color:#94b2c1}.n2_modal__form_row .n2_field.n2_field--label-none>.n2_field__element{display:flex;flex-wrap:wrap}.n2_modal__form_row .n2_field.n2_field--label-placeholder{padding-top:25px}.n2_modal__form_row .n2_field__grouping>.n2_field__element,.n2_modal__form_row .n2_field_mixed>.n2_field__element{margin:-5px -10px}.n2_modal__form_row--fullwidth{display:flex}.n2_modal__form_row--fullwidth .n2_field{display:flex;width:100%}.n2_modal__form_row--fullwidth .n2_field .n2_field__element{display:flex}.n2_modal__form_row--fullwidth .n2_field .n2_field__element>*{flex:1 1 auto}.n2_modal__form_row--fullwidth .n2_field .n2_field_text{display:flex}.n2_modal__form_row--fullwidth .n2_field .n2_field_text input{width:100%}.n2_modal__form_row--fullwidth .n2_field .n2_field_textarea textarea{width:100%}.n2_modal__form_row--fullwidth .n2_field .n2_field_select select{box-sizing:border-box;width:100%;height:30px;line-height:30px}.n2_modal__form_row--fullwidth .n2_field .n2_field_select select[multiple]{height:auto}.n2_modal__container_hidden{display:none}.n2_modal__container_hidden--visible{display:block}.n2_modal__form_row--large .n2_field .n2_field__label label{font-size:18px;line-height:50px;color:#283f4d}.n2_form_element--hidden{display:none!important}.n2_field__label label{display:block;margin:0;white-space:nowrap}.n2_button{display:inline-flex;align-items:center;border-radius:3px;padding:0 18px;font-size:12px;line-height:32px;font-weight:700;text-transform:uppercase;white-space:nowrap}.n2_button .n2_button__label{max-width:150px;text-overflow:ellipsis;overflow:hidden}.n2_button,.n2_button:HOVER,.n2_button:FOCUS{color:#fff}.n2_button .ssi_16,.n2_button .ssi_24,.n2_button .ssi_32{margin-left:5px;margin-right:-5px}html[dir=rtl] .n2_button .ssi_16,html[dir=rtl] .n2_button .ssi_24,html[dir=rtl] .n2_button .ssi_32{margin-left:-5px;margin-right:5px}.n2_button--inactive{opacity:.5}.n2_button--big{padding:0 30px;font-size:12px;line-height:36px}.n2_button--small{padding:0 10px;font-size:11px;line-height:30px}.n2_button--small .ssi_16,.n2_button--small .ssi_24,.n2_button--small .ssi_32{margin-right:0}.n2_button--blue{background-color:#1d81f9}.n2_button--blue:HOVER{background-color:#338ef9}.n2_button--green{background-color:#04c018}.n2_button--green:HOVER{background-color:#07ca1c}.n2_button--red{background-color:#c43e2a}.n2_button--red:HOVER{background-color:#d23923}.n2_button--grey{background-color:#94b2c1}.n2_button--grey:HOVER{background-color:#7f9caa}.n2_button--grey-dark{background-color:#6b7986}.n2_button--grey-dark:HOVER{background-color:#8694a2}.n2_button--purple{background-color:#5f39c2}.n2_button--inactive{opacity:.5}.n2_button_plain{display:inline-flex;align-items:center;padding:0 5px;font-size:16px;line-height:32px;text-transform:capitalize}.n2_button_plain,.n2_button_plain:HOVER,.n2_button_plain:FOCUS{color:#325c77}.n2_button_plain .ssi_16,.n2_button_plain .ssi_24,.n2_button_plain .ssi_32{margin:0 5px}.n2_button_plain--small{font-size:14px;line-height:30px}.n2_button_plain--color-blue:HOVER{color:#005bc6}.n2_button_plain--color-blue,.n2_button_plain--color-blue:FOCUS{color:#1375e9}.n2_button_plain_icon{display:inline-flex;width:30px;height:30px;align-items:center;justify-content:center;border-radius:3px;font-size:16px}.n2_button_plain_icon,.n2_button_plain_icon:HOVER,.n2_button_plain_icon:FOCUS{color:#325c77}.n2_button_plain_icon--active{background:#1d81f9}.n2_button_plain_icon--active,.n2_button_plain_icon--active:HOVER,.n2_button_plain_icon--active:FOCUS{color:#fff}.n2_button_plain_icon--big{font-size:32px;width:36px;height:36px}.n2_button_icon{display:inline-flex;width:30px;height:30px;align-items:center;justify-content:center;border-radius:3px;font-size:16px}.n2_button_icon,.n2_button_icon:HOVER,.n2_button_icon:FOCUS{color:#fff}.n2_button_icon--small{width:24px;height:24px}.n2_button_icon--blue{background-color:#1d81f9}.n2_button_icon--blue:HOVER{background-color:#338ef9}.n2_button_icon--green{background-color:#04c018}.n2_button_icon--green:HOVER{background-color:#07ca1c}.n2_button_icon--red{background-color:#c43e2a}.n2_button_icon--red:HOVER{background-color:#d23923}.n2_button_icon--grey{background-color:#94b2c1}.n2_button_icon--grey:HOVER{background-color:#7f9caa}.n2_button_icon--grey-dark{background-color:#6b7986}.n2_button_icon--grey-dark:HOVER{background-color:#8694a2}.n2_popover{position:relative}.n2_popover_content{font-family:"Inter-Nextend",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;line-height:1.3;font-size:16px;-webkit-font-smoothing:antialiased;display:none;z-index:200000;position:fixed;left:0;top:0}.n2_popover_content a{transition:none 0s;text-decoration:none;box-shadow:none}.n2_popover_content--visible{display:flex;flex-flow:column}.n2_popover_content_exit{cursor:pointer;order:1}.n2_popover_content_inner{order:2;border-radius:3px;background-color:#fff;box-shadow:0 1px 5px 1px rgba(55,77,88,.2)}.n2_floating_menu{display:inline-block}.n2_floating_menu__button{vertical-align:top}.n2_floating_menu__button.n2_button{padding:0 20px 0 16px}.n2_floating_menu__items{display:flex;flex-flow:column;padding:8px 0}.n2_floating_menu__item{display:inline-flex;align-items:center;white-space:nowrap;font-size:12px;line-height:28px;padding:0 10px;text-transform:capitalize}.n2_floating_menu__item .ssi_16{color:#94b2c1;padding:0 5px}.n2_floating_menu__item,.n2_floating_menu__item:FOCUS{color:#325c77}.n2_floating_menu__item:HOVER{background-color:#1d81f9;color:#fff}.n2_floating_menu__item:HOVER .ssi_16{color:#fff}.n2_floating_menu__item[data-state]{display:none}.n2_floating_menu__item--has-state[data-state]{display:block}.n2_floating_menu__item--active,.n2_floating_menu__item--active:FOCUS,.n2_floating_menu__item--active .ssi_16{color:#1375e9}.n2_floating_menu__item--active:HOVER{color:#fff}.n2_floating_menu__item--red,.n2_floating_menu__item--red:FOCUS,.n2_floating_menu__item--red .ssi_16{color:#c43e2a}.n2_floating_menu__item--red:HOVER{color:#fff}.n2_floating_menu__item--red:HOVER .ssi_16{color:#fff}.n2_floating_menu__item_label{padding:0 5px}.n2_floating_menu__item_separator{margin:8px 0;border-top:2px solid rgba(55,77,88,.2)}.n2_form__tab[data-tab]{display:none}.n2_form__tab--active[data-tab]{display:block}.n2_header__menu_item.n2_form__tab_button--active,.n2_header__menu_item.n2_form__tab_button--active:ACTIVE,.n2_header__menu_item.n2_form__tab_button--active:VISITED,.n2_header__menu_item.n2_form__tab_button--active:FOCUS,.n2_header__menu_item.n2_form__tab_button--active:LINK{box-shadow:inset 0 -3px 0 0 #1375e9!important;color:#1375e9}.n2_form__table{margin:20px;background-color:#fff;border-radius:3px}.n2_form__table_label{display:flex;padding:15px 20px}.n2_form__table_label_title{line-height:42px;font-size:22px;color:#283f4d;text-transform:capitalize}.n2_form__table_label_fields{flex:1 1 auto;display:flex;align-items:center;padding:0 5px}.n2_form__table_label_fields--end{justify-content:flex-end}.n2_form__table_label_field{margin:0 5px}.n2_form__table_label_field .n2_field_image_list .n2_field_image_list__preview{height:38px}.n2_form__table_label_field .n2_field_image_list .n2_field_image_list__arrow{line-height:38px}.n2_form__table_label_field .n2_field_image_list .n2_field_image_list__popover{top:42px}.n2_form__table_label_field .n2_field_onoff__labels{display:none}.n2_form__table_preview{border-top:1px solid #e4e9ec;padding:20px}.n2_form__table_row_group_label{color:#283f4d;border-top:1px solid #e4e9ec;padding:20px;font-size:18px;text-transform:capitalize}.n2_form__table_row{display:flex;flex-wrap:wrap;padding:10px;border-top:1px solid #e4e9ec}.n2_form__table_row .n2_field{display:inline-flex;flex-flow:column;vertical-align:top;padding:5px 10px}.n2_form__table_row .n2_field.n2_field--raw{padding:0 10px}.n2_form__table_row .n2_field .n2_field__label{display:flex;align-items:center}.n2_form__table_row .n2_field .n2_field__label label{line-height:20px;color:#325c77;font-size:12px;text-transform:capitalize}.n2_form__table_row .n2_field .n2_field__label .ssi_16--info{margin:0 5px 2px;font-size:16px;color:#94b2c1}.n2_form__table_row .n2_field.n2_field--label-none>.n2_field__element{display:flex;flex-wrap:wrap}.n2_form__table_row .n2_field.n2_field--label-placeholder{padding-top:25px}.n2_form__table_row .n2_field__grouping>.n2_field__element,.n2_form__table_row .n2_field_mixed>.n2_field__element{margin:-5px -10px}.n2_form__table_row--hidden{display:none}.n2_form__table_row_plain{border-top:1px solid #e4e9ec}.n2_fields_layer_window__title{display:flex;padding:7px 10px;background-color:#1c2933;border-bottom:1px solid #131c23}.n2_fields_layer_window__label{flex:1 1 auto;color:#94b2c1;font-size:12px;line-height:30px;font-weight:700;text-transform:uppercase;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.n2_fields_layer_window__title_fields{display:flex}.n2_form--dark .n2_fields_layer_window__title_fields .n2_field_select select{background-color:#2c3a45;border-color:#2c3a45}.n2_form--dark .n2_fields_layer_window__title_fields .n2_field_select select:FOCUS{border:2px solid #1d81f9}.n2_form--dark .n2_fields_layer_window__title_fields .n2_field_icon_tab{background-color:#2c3a45}.n2_fields_layer_window__fields{display:flex;flex-wrap:wrap;padding:5px 0}.n2_fields_layer_window__fields .n2_field{display:inline-flex;flex-flow:column;vertical-align:top;padding:5px 10px}.n2_fields_layer_window__fields .n2_field .n2_field__label{display:flex;align-items:center;max-width:160px}.n2_fields_layer_window__fields .n2_field .n2_field__label label{line-height:20px;font-size:12px;color:#325c77;text-transform:capitalize;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.n2_form--dark .n2_fields_layer_window__fields .n2_field .n2_field__label label{color:#bdcfd9}.n2_fields_layer_window__fields .n2_field .n2_field__label .ssi_16--info{margin:0 5px;font-size:16px;color:#94b2c1}.n2_form--dark .n2_fields_layer_window__fields .n2_field .n2_field__label .ssi_16--info{color:#bdcfd9}.n2_fields_layer_window__fields .n2_field .n2_field__label .ssi_16--minidesktopportrait{color:#bdcfd9}.n2_fields_layer_window__fields .n2_field.n2_field--label-none>.n2_field__element{display:flex;flex-wrap:wrap}.n2_fields_layer_window__fields .n2_field.n2_field--label-placeholder{padding-top:25px}.n2_fields_layer_window__fields .n2_field__grouping>.n2_field__element,.n2_fields_layer_window__fields .n2_field_mixed>.n2_field__element{margin:-5px -10px}.n2_layer_window_notice{line-height:20px;font-size:12px;color:#bdcfd9;padding:10px}body[data-device=desktopPortrait] .n2_layer_window_notice__device_icon{display:none}.n2_form__visual_set{display:flex;background-color:#1c2933;padding:12px 20px}.n2_form__visual_set_label{flex:1 1 auto;line-height:30px;font-size:12px;color:#94b2c1;text-transform:uppercase}.n2_field_text{position:relative;display:inline-flex;vertical-align:top;border-radius:3px;background-color:#fff;border:2px solid #94b2c1}.n2_form--dark .n2_field_text{background-color:#2c3a45;border:2px solid #1c2933}.n2_field_text.n2_field_text--focus{border-color:#1d81f9}.n2_field_text input{background:initial;padding:0;margin:0 6px;height:26px;line-height:1;font-size:12px;color:#325c77}.n2_field_text input::placeholder{color:#325c77;opacity:1}.n2_form--dark .n2_field_text input{color:#bdcfd9}.n2_form--dark .n2_field_text input::placeholder{color:#bdcfd9;opacity:1}.n2_field_text input,.n2_field_text input:FOCUS{border:0;box-shadow:none;outline:0}.n2_field_text input::-ms-clear{display:none}.n2_field_text .n2_field_number__slider{display:none;position:absolute;top:26px;margin:0 -2px;width:100%;min-width:70px;z-index:2;padding-top:7px}.n2_field_text:HOVER .n2_field_number__slider,.n2_field_text.n2_field_text--focus .n2_field_number__slider{display:block}.n2_field_text .n2_field_number__slider_inner{overflow:hidden;height:30px;border-radius:3px;background-color:#fff;box-shadow:0 1px 5px 1px rgba(55,77,88,.2)}.n2_field_text .nui-slider{position:relative;background-color:#94b2c1;height:6px;margin:12px 10px;border-radius:10px}.n2_field_text .nui-slider .nui-slider-handle{position:absolute;top:0;z-index:2;width:10px;height:10px;background-color:#fff;border:2px solid #94b2c1;margin:-4px -7px 0;border-radius:50px;cursor:ew-resize;-ms-touch-action:none;touch-action:none}.n2_field_text__pre_label{padding:0 6px;line-height:26px;background-color:#94b2c1;font-size:11px;color:#fff;text-align:center;text-transform:uppercase}.n2_form--dark .n2_field_text__pre_label{background-color:#1c2933;color:#94b2c1}.n2_field_text--focus .n2_field_text__pre_label{background-color:#1d81f9}.n2_form--dark .n2_field_text--focus .n2_field_text__pre_label{color:#fff}.n2_field_text__clear{display:flex;line-height:26px;width:26px;justify-content:center;align-items:center}.n2_field_text__clear,.n2_field_text__clear:HOVER,.n2_field_text__clear:FOCUS{color:#94b2c1}.n2_field_text--empty .n2_field_text__clear{visibility:hidden}.n2_field_text__choose{display:inline-flex;align-items:center;justify-content:center;margin:-2px -2px -2px 0;background-color:#04c018;width:30px;line-height:30px;border-top-right-radius:3px;border-bottom-right-radius:3px}.n2_field_text__choose:HOVER{background-color:#07ca1c}.n2_field_text__choose,.n2_field_text__choose:HOVER,.n2_field_text__choose:FOCUS{color:#fff}.n2_field_text--empty .n2_field_text__choose{background-color:#94b2c1}.n2_form--dark .n2_field_text--empty .n2_field_text__choose{background-color:#1c2933}.n2_form--dark .n2_field_text--empty .n2_field_text__choose,.n2_form--dark .n2_field_text--empty .n2_field_text__choose:HOVER,.n2_form--dark .n2_field_text--empty .n2_field_text__choose:FOCUS{color:#94b2c1}html[dir=rtl] .n2_field_text__choose{border-radius:3px 0 0 3px;margin:-2px 0 -2px -2px}.n2_field_text__choose_text{margin:-2px -2px -2px 0;padding:0 10px;background-color:#04c018;font-size:11px;line-height:30px;text-transform:uppercase;border-top-right-radius:3px;border-bottom-right-radius:3px}.n2_field_text__choose_text,.n2_field_text__choose_text:HOVER,.n2_field_text__choose_text:FOCUS{color:#fff}.n2_field_text__post .n2_field_unit__current_unit{padding:0 6px;border-radius:0;line-height:26px}.n2_field_text__post .n2_field_unit__units{top:26px;right:-2px}.n2_field_text_image__preview{width:26px;height:26px;background-color:#fff;background-size:cover;background-position:50% 50%;border-right:2px solid #94b2c1}html[dir=rtl] .n2_field_text_image__preview{border-right:0;border-left:2px solid #94b2c1}.n2_form--dark .n2_field_text_image__preview{border-right-color:#1c2933;background-color:#2c3a45}html[dir=rtl] .n2_form--dark .n2_field_text_image__preview{border-left-color:#1c2933}.n2_field_text--focus .n2_field_text_image__preview{border-right-color:#1d81f9}.n2_field_text_image__size_label{display:none;position:absolute;right:28px;top:-20px;color:#325c77;line-height:16px;font-size:11px;background-color:#fff;border:2px solid #94b2c1;border-bottom:0;padding:0 5px;border-radius:2px 2px 0 0}.n2_form--dark .n2_field_text_image__size_label{color:#bdcfd9;background-color:#2c3a45;border-color:#1c2933}html[dir=rtl] .n2_field_text_image__size_label{left:28px;right:unset}.n2_field_text_image__size_label--visible{display:block}.n2_field_text_image__button{margin-left:10px}html[dir=rtl] .n2_field_text_image__button{margin-left:0;margin-right:10px}.n2_field_number input{text-align:center}.n2_field_text__unit,.n2_field_number__unit{padding:0 6px;background-color:#94b2c1;font-size:11px;color:#fff;line-height:26px;text-transform:uppercase}.n2_form--dark .n2_field_text__unit,.n2_form--dark .n2_field_number__unit{background-color:#1c2933;color:#94b2c1}.n2_field_text--focus .n2_field_text__unit,.n2_field_text--focus .n2_field_number__unit{background-color:#1d81f9}.n2_form--dark .n2_field_text--focus .n2_field_text__unit,.n2_form--dark .n2_field_text--focus .n2_field_number__unit{color:#fff}.n2_field_upload{cursor:pointer}.n2_field_upload .n2_field_chooser__label{width:150px;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.n2_field_upload input[type=file]{position:absolute;top:0;left:0;width:100%;height:0;opacity:0;font-size:0;padding:15px 0}.n2_field_upload input[type=file]::-webkit-file-upload-button{cursor:pointer}.n2_field_table__content{display:grid;grid-gap:2px;width:100%}.n2_field_table__cell{padding:5px 10px;background-color:#f0f4f7;font-size:12px;line-height:22px;color:#325c77}.n2_field_tab{display:inline-flex;background-color:#94b2c1;border-radius:2px;overflow:hidden}.n2_field_tab__option--selected{background-color:#1d81f9}.n2_field_tab__option{padding:0 15px;line-height:30px;font-size:12px;color:#fff;cursor:pointer;white-space:nowrap}.n2_modal_tab__tabs{text-align:center;background-color:#f0f4f7;margin:0 -40px 16px -40px}.n2_modal_tab__tabs_button{display:inline-block;font-size:16px;color:#325c77;font-family:inherit;font-weight:500;padding:20px 0 17px 0;margin:0 20px;cursor:pointer;border-bottom:3px solid transparent}.n2_modal_tab__tabs_button--active{border-bottom:3px solid #1375e9;color:#1375e9;box-sizing:border-box}.n2_modal_tab__tabs_content{display:none}.n2_modal_tab__tabs_content--active{display:block}.n2_field_textarea{position:relative;display:inline-block;vertical-align:top;border-radius:3px;background-color:#fff;border:2px solid #94b2c1}.n2_form--dark .n2_field_textarea{background-color:#2c3a45;border:2px solid #1c2933}.n2_field_textarea.n2_field_text--focus{border-color:#1d81f9}.n2_field_textarea textarea{padding:0 6px;margin:0;background:initial;box-sizing:border-box;min-height:44px;vertical-align:top;line-height:20px;font-size:12px;color:#325c77}.n2_form--dark .n2_field_textarea textarea{color:#bdcfd9}.n2_field_textarea textarea,.n2_field_textarea textarea:FOCUS{border:0;outline:0;box-shadow:none}.n2_field_textarea--inline textarea{min-height:26px}.n2_field_textarea_rich{position:relative;border-radius:3px;background-color:#fff;border:2px solid #94b2c1}.n2_form--dark .n2_field_textarea_rich{background-color:#2c3a45;border:2px solid #1c2933}.n2_field_textarea_rich.n2_field_text--focus{border-color:#1d81f9}.n2_field_textarea_rich textarea{display:block;padding:0 6px;margin:0;box-sizing:border-box;min-height:44px;vertical-align:top;line-height:20px;font-size:12px;color:#325c77}.n2_form--dark .n2_field_textarea_rich textarea{background-color:#2c3a45;color:#bdcfd9}.n2_field_textarea_rich textarea,.n2_field_textarea_rich textarea:FOCUS{border:0;outline:0;box-shadow:none}.n2_field_textarea_rich__buttons{display:flex}.n2_form--dark .n2_field_textarea_rich__buttons{background-color:#2c3a45;border-bottom:2px solid #1c2933}.n2_field_textarea_rich__button{display:flex;align-items:center;justify-content:center;width:30px;height:30px;font-size:16px;color:#94b2c1;border-right:2px solid #1c2933;cursor:pointer}.n2_field_select select{margin:0;padding:0 6px;border-radius:3px;max-width:280px;width:auto;line-height:26px;height:26px;box-sizing:content-box;font-size:12px;color:#325c77;background-color:#fff;border:2px solid #94b2c1}.n2_field_select select[multiple]{padding:0;height:auto}.n2_field_select select[multiple] option{padding:6px 6px;font-size:12px;color:#325c77}.n2_form--dark .n2_field_select select{background-color:#2c3a45;border:2px solid #1c2933;color:#bdcfd9}.n2_field_select select,.n2_field_select select:FOCUS{box-shadow:none;outline:0}.n2_field_select select:FOCUS{border:2px solid #1d81f9}.n2_field_onoff{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;padding:3px 0;display:flex;cursor:pointer}.n2_field_onoff__slider{flex:0 0 auto;border-radius:12px;background-color:#94b2c1;padding:3px;width:38px}.n2_field_onoff--on .n2_field_onoff__slider{background-color:#04c018}.n2_field_onoff__slider_bullet{width:18px;height:18px;border-radius:20px;background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,0,.1);transition:transform .25s}.n2_field_onoff--on .n2_field_onoff__slider_bullet{transform:translateX(20px)}html[dir=rtl] .n2_field_onoff--on .n2_field_onoff__slider_bullet{transform:translateX(-20px)}.n2_field_onoff__labels{margin:0 3px;position:relative;overflow:hidden;height:24px}.n2_field_onoff__label{font-size:12px;line-height:24px;font-weight:700;text-transform:uppercase;max-width:100px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.n2_field_onoff__label_off{color:#94b2c1}.n2_field_onoff--on .n2_field_onoff__label_off{margin-top:-24px}.n2_field_onoff__label_on{color:#40bb22}.n2_field_unit{position:relative;display:inline-block;vertical-align:top}.n2_field_unit__current_unit{line-height:30px;padding:0 6px;border-radius:3px;font-size:11px;text-transform:uppercase;background-color:#94b2c1;color:#fff}.n2_form--dark .n2_field_unit__current_unit{background-color:#1c2933;color:#94b2c1}.n2_field_unit__units{display:none;z-index:2;position:absolute;top:30px;right:0;border-bottom-left-radius:3px;border-bottom-right-radius:3px;background:#fff;box-shadow:0 1px 5px 1px rgba(55,77,88,.2)}.n2_field_unit:HOVER .n2_field_unit__units{display:block}.n2_field_unit__unit{padding:0 5px;line-height:24px;cursor:pointer;color:#325c77;font-size:11px;text-transform:uppercase}.n2_field_unit__unit:HOVER{background:#1d81f9;color:#fff}.n2_field_margin_padding{display:inline-flex;vertical-align:top}.n2_field_margin_padding .n2_field_text{position:relative;border-radius:0;margin-left:-2px}.n2_field_margin_padding .n2_field_text.n2_field_text--focus{z-index:2}.n2_field_margin_padding .n2_field_unit{margin-left:-2px}.n2_field_margin_padding .n2_field_unit__current_unit{border-top-left-radius:0;border-bottom-left-radius:0}html[dir=rtl] .n2_field_margin_padding .n2_field_unit__current_unit{border-radius:3px 0 0 3px}.n2_field_margin_padding__pre_label{display:inline-flex;align-items:center;justify-content:center;width:30px;height:30px;background-color:#94b2c1;font-size:16px;color:#fff;text-align:center;border-top-left-radius:3px;border-bottom-left-radius:3px;cursor:pointer}.n2_form--dark .n2_field_margin_padding__pre_label{background-color:#1c2933;color:#94b2c1}html[dir=rtl] .n2_field_margin_padding__pre_label{border-radius:0 3px 3px 0}.n2_field_margin_padding--linked-values .n2_field_margin_padding__pre_label .ssi_16::before{content:"\E64D"}.n2_field_margin_padding--linked-values .n2_field_text+.n2_field_text{display:none}.n2_field_radio{display:inline-flex;vertical-align:top;margin:0 -5px}.n2_field_radio .n2_field_radio__option{display:flex;align-items:center;cursor:pointer;margin:0 5px}.n2_field_radio .n2_field_radio__option_marker{display:flex;justify-content:center;align-items:center;width:14px;height:14px;line-height:14px;background-color:#fff;border:2px solid #94b2c1;border-radius:10px}.n2_field_radio .n2_field_radio__option_marker .ssi_16{display:none;color:#fff}.n2_field_radio .n2_field_radio__option--selected .n2_field_radio__option_marker{background-color:#04c018;border-color:#04c018}.n2_field_radio .n2_field_radio__option--selected .n2_field_radio__option_marker .ssi_16{display:block}.n2_field_radio .n2_field_radio__option_label{margin:0 5px;font-size:12px;line-height:30px;color:#325c77}.n2_field_radio_icon{display:inline-flex;vertical-align:top;overflow:hidden;border-radius:3px}.n2_field_radio_icon .n2_field_radio__option{display:flex;align-items:center;justify-content:center;width:30px;height:30px;background-color:#94b2c1;color:#fff;font-size:16px;cursor:pointer}.n2_form--dark .n2_field_radio_icon .n2_field_radio__option{background-color:#1c2933;color:#94b2c1}.n2_field_radio_icon .n2_field_radio__option--selected{background-color:#1d81f9}.n2_form--dark .n2_field_radio_icon .n2_field_radio__option--selected{background-color:#1d81f9;color:#fff}.n2_field_color .n2-field-color-preview{border-right:2px solid #94b2c1}html[dir=rtl] .n2_field_color .n2-field-color-preview{border-right:0;border-left:2px solid #94b2c1}.n2_form--dark .n2_field_color .n2-field-color-preview{border-right-color:#1c2933}html[dir=rtl] .n2_form--dark .n2_field_color .n2-field-color-preview{border-left-color:#1c2933}.n2_field_color.n2_field_text--focus .n2-field-color-preview{border-right-color:#1d81f9}html[dir=rtl] .n2_field_color.n2_field_text--focus .n2-field-color-preview{border-left-color:#1d81f9}.n2_field_color .n2-field-color-preview-inner{width:26px;height:26px;cursor:pointer}.n2_field_color input{text-transform:uppercase;width:50px;text-align:center}.n2_field_color--alpha input{width:65px}.n2_field_image_list{position:relative;display:inline-flex;vertical-align:top;align-items:center;border-radius:3px;border:2px solid #94b2c1;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.n2_field_image_list>.n2_field_image_list__fields{display:none}.n2_field_image_list--focus{border-color:#1d81f9;z-index:99}.n2_field_image_list__preview{display:inline-flex;background-color:#fff;height:26px;cursor:pointer}.n2_field_image_list__preview img{height:100%;width:auto}.n2_field_image_list__preview_label{padding:0 6px;background:#fff;line-height:26px;font-size:12px;color:#325c77}.n2_field_image_list__arrow{width:18px;line-height:26px;font-size:12px;color:#325c77;text-align:center;cursor:pointer}.n2_field_image_list__popover{display:none;position:absolute;top:30px;padding:10px;border-radius:3px;background-color:#fff;box-shadow:0 1px 5px 1px rgba(55,77,88,.2)}.n2_field_image_list--focus .n2_field_image_list__popover{display:block}.n2_field_image_list__popover_items{max-width:50vw;display:inline-flex;flex-wrap:wrap}.n2_field_image_list__popover_item{margin:10px;background-color:#fff;cursor:pointer}.n2_field_image_list__popover_item_image{border:2px solid #94b2c1;border-radius:3px;padding:3px}.n2_field_image_list__popover_item_image img{display:block;width:100%}.n2_field_image_list__popover_item--selected .n2_field_image_list__popover_item_image{border-color:#1d81f9}.n2_field_image_list__popover_item_disabled{display:inline-flex;align-items:center;min-height:100%;border:2px dashed #94b2c1;border-radius:3px;padding:0 10px;box-sizing:border-box;color:#325c77;font-size:14px;line-height:30px;text-transform:capitalize}.n2_field_image_list__popover_item--selected .n2_field_image_list__popover_item_disabled{border-color:#1d81f9}.n2_field_image_list__popover_item_label{color:#325c77;background:#fff;font-size:12px;text-align:center;line-height:30px}.n2_field_image_list__popover_item--selected .n2_field_image_list__popover_item_label{color:#1d81f9}.n2_field_checkbox_onoff{display:inline-flex;vertical-align:top;width:30px;height:30px;align-items:center;justify-content:center;background-color:#94b2c1;border-radius:3px;font-size:16px;color:#fff;cursor:pointer}.n2_field_checkbox_onoff--active{background-color:#1d81f9}.n2_field_group_checkbox_onoff{border-radius:3px;overflow:hidden;margin:5px 10px}.n2_field_group_checkbox_onoff .n2_field{padding:0}.n2_field_group_checkbox_onoff .n2_field_checkbox_onoff{border-radius:0}.n2_field_widget_position{position:relative;display:inline-flex;vertical-align:top;background-color:#fff;border:2px solid #94b2c1;border-radius:3px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.n2_field_widget_position--focus{border-color:#1d81f9;z-index:99}.n2_field_widget_position__label{display:inline-block;vertical-align:top;padding:0 6px;line-height:26px;font-size:12px;color:#325c77;cursor:pointer}.n2_field_widget_position__arrow{width:18px;line-height:26px;font-size:12px;color:#325c77;text-align:center;cursor:pointer}.n2_field_widget_position__popover{display:none;position:absolute;top:30px;padding:10px;border-radius:3px;background-color:#fff;box-shadow:0 1px 5px 1px rgba(55,77,88,.2)}.n2_field_widget_position--focus .n2_field_widget_position__popover{display:flex}.n2_field_widget_position__popover .n2_field__element{flex-wrap:nowrap!important}.n2_field_control_type_picker{display:flex;flex-wrap:wrap;margin:-10px -5px}.n2_field_control_type_picker__item{margin:10px;position:relative;display:inline-block;border:0;border-radius:1px;height:auto;cursor:pointer}.n2_field_control_type_picker__item img{display:block}.n2_field_control_type_picker__item:hover{box-shadow:0 2px 10px 0 rgba(0,0,0,.1)}.n2_field_control_type_picker__item.n2_field_control_type_picker__item--selected{box-shadow:0 0 0 3px #1375e9}.n2_field_control_type_picker__selected_marker{display:none;position:absolute;top:10px;right:10px;background-color:#1375e9;border-radius:10px;width:16px;height:16px}.n2_field_control_type_picker__item--selected .n2_field_control_type_picker__selected_marker{display:block}.n2_field_control_type_picker__selected_marker .ssi_16{color:#fff}.n2_field_message{border-radius:3px;padding:5px 10px;font-size:12px;line-height:20px}.n2_field_message--notice{background-color:#f0f4f7;color:#325c77}.n2_field_message--notice a:HOVER{color:#005bc6}.n2_field_message--notice a,.n2_field_message--notice a:FOCUS{color:#1375e9}.n2_field_message--warning{background-color:#f5e293;color:#325c77}.n2_field_message--warning a:HOVER{color:#005bc6}.n2_field_message--warning a,.n2_field_message--warning a:FOCUS{color:#1375e9}.n2_ss_layer_window .n2_field_message--warning{width:298px}.n2_field_autocomplete{position:relative}.n2_field_decoration{display:inline-flex;vertical-align:top;margin:0 -3px}.n2_field_decoration__option{margin:0 3px;display:flex;align-items:center;justify-content:center;width:30px;height:30px;background-color:#94b2c1;border-radius:3px;color:#fff;font-size:16px;cursor:pointer}.n2_form--dark .n2_field_decoration__option{background-color:#1c2933;color:#94b2c1}.n2_field_decoration__option--selected{background-color:#1d81f9}.n2_form--dark .n2_field_decoration__option--selected{background-color:#1d81f9;color:#fff}.n2_field_icon__preview{display:inline-flex;align-items:center;justify-content:center;width:30px;height:30px}.n2_field_icon__preview .n2i{color:#fff;font-size:24px!important;vertical-align:top}.n2_field_icon_tab{background-color:#1c2933;border-radius:2px;overflow:hidden;white-space:nowrap}.n2_field_icon_tab__option{display:inline-flex;padding:7px;color:#fff;cursor:pointer}.n2_field_icon_tab__option i{color:#94b2c1}.n2_field_icon_tab__option--selected{background-color:#1d81f9}.n2_field_icon_tab__option--selected i{color:#fff}.n2_field_mixed_font_size__container>.n2_field_text{border-top-right-radius:0;border-bottom-right-radius:0}html[dir=rtl] .n2_field_mixed_font_size__container>.n2_field_text{border-radius:0 3px 3px 0}.n2_field_mixed_font_size__container>.n2_field_unit>.n2_field_unit__current_unit{border-top-left-radius:0;border-bottom-left-radius:0}html[dir=rtl] .n2_field_mixed_font_size__container>.n2_field_unit>.n2_field_unit__current_unit{border-radius:3px 0 0 3px}.n2_field_mixed_box_shadow__container>.n2_field_text{margin-left:-2px;border-radius:0}html[dir=rtl] .n2_field_mixed_box_shadow__container>.n2_field_text{margin-left:0;margin-right:-2px}.n2_field_mixed_box_shadow__container>.n2_field_text:first-child{margin-left:0;border-top-left-radius:3px;border-bottom-left-radius:3px}html[dir=rtl] .n2_field_mixed_box_shadow__container>.n2_field_text:first-child{margin-right:0;border-radius:0 3px 3px 0}.n2_field_mixed_box_shadow__container>.n2_field_text:last-of-type{border-top-right-radius:3px;border-bottom-right-radius:3px}html[dir=rtl] .n2_field_mixed_box_shadow__container>.n2_field_text:last-of-type{border-radius:3px 0 0 3px}.n2_field_mixed_box_shadow__container>.n2_field_text--focus{z-index:2}.n2_field_mixed_text_shadow__container>.n2_field_text{margin-left:-2px}.n2_field_mixed_text_shadow__container>.n2_field_text:first-child{margin-left:0;border-radius:3px 0 0 3px}html[dir=rtl] .n2_field_mixed_text_shadow__container>.n2_field_text:first-child{margin-left:-2px;border-radius:0 3px 3px 0}.n2_field_mixed_text_shadow__container>.n2_field_text:last-child{border-radius:0 3px 3px 0}html[dir=rtl] .n2_field_mixed_text_shadow__container>.n2_field_text:last-child{border-radius:3px 0 0 3px}.n2_field_mixed_text_shadow__container>.n2_field_text--focus{z-index:2}.n2_field_mixed_border__container{display:inline-flex;vertical-align:top;margin:0 -5px}.n2_field_mixed_border__container>*{margin:0 5px}.n2_form__table_row .n2_field.n2_field_mixed_generator_order{padding:0}.n2_field_button{display:inline-block;text-align:center;padding:0 10px;background-color:#94b2c1;font-size:11px;line-height:30px;text-transform:uppercase;border-radius:3px;max-width:150px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.n2_field_button:HOVER{background-color:#7f9caa}.n2_field_button,.n2_field_button:HOVER,.n2_field_button:FOCUS{color:#fff}.n2_form--dark .n2_field_button{background-color:#6b7986}.n2_form--dark .n2_field_button:HOVER{background-color:#8694a2}.n2_form--dark .n2_field_button,.n2_form--dark .n2_field_button:HOVER,.n2_form--dark .n2_field_button:FOCUS{color:#fff}.n2_field_button--icon{display:inline-flex;align-items:center;justify-content:center;padding:0;width:30px;height:30px;font-size:16px}.n2_field_button--blue{background-color:#1d81f9}.n2_field_button--blue:HOVER{background-color:#338ef9}.n2_field_widget_area{width:80px;height:80px;position:relative;margin:0 10px}.n2_field_widget_area__inner{position:absolute;top:14px;left:14px;width:46px;height:46px;border:3px solid #94b2c1;border-radius:3px}.n2_field_widget_area__area{position:absolute;background-color:#94b2c1;border-radius:2px;cursor:pointer;width:10px;height:10px;left:0;top:0}.n2_field_widget_area__area[data-area="1"]{left:35px}.n2_field_widget_area__area[data-area="2"]{left:21px;top:21px}.n2_field_widget_area__area[data-area="3"]{left:35px;top:21px}.n2_field_widget_area__area[data-area="4"]{left:49px;top:21px}.n2_field_widget_area__area[data-area="5"]{top:35px}.n2_field_widget_area__area[data-area="6"]{left:21px;top:35px}.n2_field_widget_area__area[data-area="7"]{left:49px;top:35px}.n2_field_widget_area__area[data-area="8"]{left:70px;top:35px}.n2_field_widget_area__area[data-area="9"]{left:21px;top:49px}.n2_field_widget_area__area[data-area="10"]{left:35px;top:49px}.n2_field_widget_area__area[data-area="11"]{left:49px;top:49px}.n2_field_widget_area__area[data-area="12"]{left:35px;top:70px}.n2_field_widget_area__area--selected{background-color:#1d81f9;cursor:default}.n2_field_columns{display:grid;grid-gap:10px;grid-template-columns:280px 30px;width:310px}.n2_field_columns__content{position:relative;display:flex;overflow:hidden}.n2_field_columns__column{flex:0 0 auto;overflow:hidden;background-color:#04c018;border-radius:2px;font-size:12px;line-height:30px;text-align:center;color:#fff;cursor:ew-resize}.n2_field_columns__handle{display:inline-flex;justify-content:center;align-items:center;width:16px;height:30px;cursor:ew-resize;color:#bdcfd9}.n2_field_columns__content.n2-sortable-currently-sorted .n2_field_columns__column{margin-right:16px}.n2_field_columns__content.n2-sortable-currently-sorted .n2_field_columns__column:last-child{margin-right:0}.n2_field_columns__content.n2-sortable-currently-sorted .n2_field_columns__handle{display:none}.n2_field_columns__add{flex:0 0 auto;display:inline-flex;justify-content:center;align-items:center;width:30px;height:30px;background-color:#04c018;border-radius:2px;color:#fff;cursor:pointer}.n2_field_columns__add:HOVER{background-color:#07ca1c}.n2_field_select_list{height:120px;background-color:#fff;border:2px solid #94b2c1;border-radius:3px;overflow-y:scroll}.n2_field_select_list__option{display:flex;cursor:pointer;line-height:30px;font-size:12px;color:#325c77}.n2_field_select_list__option:nth-child(even){background-color:#f0f4f7}.n2_field_select_list__option.n2_field_select_list__option--selected{background-color:#1d81f9;color:#fff}.n2_field_select_list__option_primary{flex:1 1 auto;padding:0 8px}.n2_field_select_list__option_secondary{padding:0 8px}.n2_field_chooser{position:relative;display:inline-flex;vertical-align:top;border-radius:3px;background-color:#f0f4f7;height:30px}.n2_form--dark .n2_field_chooser{background-color:#2c3a45}.n2_field_chooser__label{min-width:100px;padding:0 8px;font-size:12px;line-height:30px;color:#325c77;cursor:pointer;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.n2_form--dark .n2_field_chooser__label{color:#bdcfd9}.n2_field_chooser__clear{display:flex;line-height:30px;width:30px;justify-content:center;align-items:center}.n2_field_chooser__clear,.n2_field_chooser__clear:HOVER,.n2_field_chooser__clear:FOCUS{color:#94b2c1}.n2_field_chooser--empty .n2_field_chooser__clear{visibility:hidden}.n2_field_chooser__choose{display:inline-flex;align-items:center;justify-content:center;background-color:#04c018;width:30px;line-height:30px;border-top-right-radius:3px;border-bottom-right-radius:3px}.n2_field_chooser__choose:HOVER{background-color:#07ca1c}.n2_field_chooser__choose,.n2_field_chooser__choose:HOVER,.n2_field_chooser__choose:FOCUS{color:#fff}.n2_field_chooser--empty .n2_field_chooser__choose{background-color:#94b2c1}.n2_form--dark .n2_field_chooser--empty .n2_field_chooser__choose{background-color:#1c2933}.n2_form--dark .n2_field_chooser--empty .n2_field_chooser__choose,.n2_form--dark .n2_field_chooser--empty .n2_field_chooser__choose:HOVER,.n2_form--dark .n2_field_chooser--empty .n2_field_chooser__choose:FOCUS{color:#94b2c1}html[dir=rtl] .n2_field_chooser__choose{border-radius:3px 0 0 3px}.n2_field_select_icon{display:flex;flex-wrap:wrap;margin:-10px -20px}.n2_field_select_icon__option{position:relative;display:flex;flex-flow:column;margin:20px;width:130px;padding:15px 10px;cursor:pointer;border-radius:3px}.n2_field_select_icon__option:HOVER{box-shadow:0 2px 10px 0 rgba(0,0,0,.1)}.n2_field_select_icon__option--selected{box-shadow:0 2px 10px 0 rgba(0,0,0,.1)}.n2_field_select_icon__option_icon{display:flex;align-items:center;justify-content:center;color:#94b2c1}.n2_field_select_icon__option--selected .n2_field_select_icon__option_icon{color:#1375e9}.n2_field_select_icon__option_label{font-size:14px;line-height:30px;color:#325c77;text-align:center;font-weight:700}.n2_field_select_icon__option--selected .n2_field_select_icon__option_label{color:#1375e9}.n2_field_select_icon__selected_marker{display:none;position:absolute;top:10px;right:10px;background-color:#1375e9;border-radius:10px;width:16px;height:16px;color:#fff}.n2_field_select_icon__option--selected .n2_field_select_icon__selected_marker{display:block}.n2_field_font{display:inline-flex;align-items:center;justify-content:center;background-color:#04c018;min-width:30px;line-height:30px;border-radius:3px;padding:0 10px;font-size:11px;text-transform:uppercase;cursor:pointer}.n2_field_font:HOVER{background-color:#07ca1c}.n2_field_font,.n2_field_font:HOVER,.n2_field_font:FOCUS{color:#fff}.n2_field_style{display:inline-flex;align-items:center;justify-content:center;background-color:#04c018;min-width:30px;line-height:30px;border-radius:3px;padding:0 10px;font-size:11px;text-transform:uppercase;cursor:pointer}.n2_field_style:HOVER{background-color:#07ca1c}.n2_field_style,.n2_field_style:HOVER,.n2_field_style:FOCUS{color:#fff}.n2_field_subform_icon{margin:-8px;display:flex;flex-wrap:wrap}.n2_field_subform_icon__option{margin:8px;display:flex;flex-flow:column;align-items:center;min-width:120px;border:3px solid #fff;border-radius:3px;cursor:pointer}.n2_field_subform_icon__option_icon{display:flex;align-items:center;justify-content:center;color:#94b2c1}.n2_field_subform_icon__option_label{margin-top:-13px;line-height:28px;font-size:12px;color:#325c77;font-weight:700;padding:0 10px}.n2_field_subform_icon__option--selected{border-color:#1375e9}.n2_field_subform_icon__option--selected .n2_field_subform_icon__option_icon,.n2_field_subform_icon__option--selected .n2_field_subform_icon__option_label{color:#1375e9}.n2_field_autoplaypicker{position:relative;display:inline-flex;vertical-align:top;background-color:#fff;border:2px solid #94b2c1;border-radius:3px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.n2_field_autoplaypicker--focus{border-color:#1d81f9;z-index:99}.n2_field_autoplaypicker__label{display:inline-block;vertical-align:top;padding:0 6px;width:230px;line-height:26px;font-size:12px;color:#325c77;cursor:pointer}.n2_field_autoplaypicker__arrow{width:18px;line-height:26px;font-size:12px;color:#325c77;text-align:center;cursor:pointer}.n2_field_autoplaypicker__popover{display:none;position:absolute;top:30px;padding:10px;border-radius:3px;background-color:#fff;box-shadow:0 1px 5px 1px rgba(55,77,88,.2)}.n2_field_autoplaypicker--focus .n2_field_autoplaypicker__popover{display:flex}.n2_field_autoplaypicker__popover .n2_field__element{flex-wrap:nowrap!important}.n2_field_layer_window_focus{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;position:relative;cursor:pointer;background:#1c2933;border:2px solid #1c2933;border-radius:3px}.n2_field_layer_window_focus__image{display:block;width:100%;height:auto;border-radius:2px}.n2_field_layer_window_focus__dot{position:absolute;left:50%;top:50%;width:12px;height:12px;margin-top:-8px;margin-left:-8px;border:2px solid #fff;border-radius:16px;background:#04c018}.n2_field_breakpoint{display:flex;flex-wrap:wrap}.n2_field_breakpoint__breakpoint_container{position:relative;margin:25px 10px 5px;height:30px;display:flex;align-items:center;background-color:#94b2c1;border-radius:3px}.n2_field_breakpoint__breakpoint_container[data-orientation=portrait] [data-orientation=landscape]{display:none!important}.n2_field_breakpoint__breakpoint_container[data-orientation=landscape] [data-orientation=portrait]{display:none!important}.n2_field_breakpoint__device{position:relative;flex:0 0 auto;width:130px;text-align:center;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.n2_field_breakpoint__device_enable{display:inline-flex;align-items:center;justify-content:center;width:100%;height:30px;color:#fff}.n2_field_breakpoint__device_disable{position:absolute;right:5px;top:0;color:#fff;height:30px;display:none;align-items:center;opacity:.5;cursor:pointer}.n2_field_breakpoint__device_disable:HOVER{opacity:1}.n2_field_breakpoint__device--enabled .n2_field_breakpoint__device_disable{display:flex}.n2_field_breakpoint__breakpoint{position:relative;flex:0 0 auto;height:30px}.n2_field_breakpoint__breakpoint_divider{margin:5px 0;width:0;height:20px;box-shadow:0 0 0 1px #fff}.n2_field_breakpoint__breakpoint_label_container{display:flex;align-items:center;justify-content:center;position:absolute;margin-left:-32px;top:-26px;width:50px}html[dir=rtl] .n2_field_breakpoint__breakpoint_label_container{margin-left:0;margin-right:-32px}.n2_field_breakpoint__breakpoint_start .n2_field_breakpoint__breakpoint_label_container{margin-left:0;justify-content:flex-start}html[dir=rtl] .n2_field_breakpoint__breakpoint_start .n2_field_breakpoint__breakpoint_label_container{margin-right:0}.n2_field_breakpoint__breakpoint_end .n2_field_breakpoint__breakpoint_label_container{margin-left:-50px;justify-content:flex-end}html[dir=rtl] .n2_field_breakpoint__breakpoint_end .n2_field_breakpoint__breakpoint_label_container{margin-left:0;margin-right:-50px}.n2_field_breakpoint__breakpoint_label_rename{display:flex;align-items:center;justify-content:center;width:12px;cursor:pointer;color:#94b2c1;opacity:.7}.n2_field_breakpoint__breakpoint_label_rename:HOVER{opacity:1}.n2_field_breakpoint__breakpoint_label_container--disable-edit .n2_field_breakpoint__breakpoint_label_rename{visibility:hidden;pointer-events:none}.n2_field_breakpoint__breakpoint_label{color:#325c77;font-size:12px;line-height:26px}.n2_field_breakpoint__breakpoint_start .n2_field_breakpoint__breakpoint_label,.n2_field_breakpoint__breakpoint_end .n2_field_breakpoint__breakpoint_label{cursor:default}.n2_field_breakpoint__breakpoint .n2_field_breakpoint__breakpoint_label{cursor:default}.n2_field_breakpoint__breakpoint .n2_field_breakpoint__breakpoint_label[contenteditable=true]{cursor:text;outline:0}.n2_field_breakpoint--with-enables .n2_field_breakpoint__device .n2_field_breakpoint__device_enable{cursor:pointer;opacity:.5}.n2_field_breakpoint--with-enables .n2_field_breakpoint__device--enabled .n2_field_breakpoint__device_enable{opacity:1}.n2_field_breakpoint--with-enables .n2_field_breakpoint__device[data-id=desktopportrait] .n2_field_breakpoint__device_enable,.n2_field_breakpoint--with-enables .n2_field_breakpoint__device[data-id=tabletportrait] .n2_field_breakpoint__device_enable,.n2_field_breakpoint--with-enables .n2_field_breakpoint__device[data-id=mobileportrait] .n2_field_breakpoint__device_enable{cursor:default;opacity:1}.n2_field_breakpoint--with-enables .n2_field_breakpoint__breakpoint{display:none}.n2_field_breakpoint--with-enables .n2_field_breakpoint__breakpoint--enabled,.n2_field_breakpoint--with-enables .n2_field_breakpoint__breakpoint[data-id=desktopportrait],.n2_field_breakpoint--with-enables .n2_field_breakpoint__breakpoint[data-id=tabletportrait],.n2_field_breakpoint--with-enables .n2_field_breakpoint__breakpoint[data-id=mobileportrait]{display:block}body[data-desktoplandscape="0"] .n2-slider-settings-require--desktoplandscape,body[data-tabletlandscape="0"] .n2-slider-settings-require--tabletlandscape,body[data-mobilelandscape="0"] .n2-slider-settings-require--mobilelandscape{display:none!important}.n2_autocomplete_options{font-family:"Inter-Nextend",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;line-height:1.3;font-size:16px;-webkit-font-smoothing:antialiased;position:absolute;top:0;z-index:100003;overflow:auto;max-height:300px;border-bottom-left-radius:3px;border-bottom-right-radius:3px;background:#fff;box-shadow:0 1px 5px 1px rgba(55,77,88,.2)}.n2_autocomplete_options a{transition:none 0s;text-decoration:none;box-shadow:none}.n2_autocomplete_option{padding:0 5px;line-height:24px;cursor:pointer;color:#325c77;font-size:11px}.n2_autocomplete_option:HOVER{background:#1d81f9;color:#fff}.n2_tooltip{font-family:"Inter-Nextend",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;line-height:1.3;font-size:16px;-webkit-font-smoothing:antialiased;visibility:visible;z-index:100000;position:fixed;left:-10000px;top:-10000px;margin-top:-9000000px;opacity:0;border-radius:3px;font-size:12px;line-height:16px;font-weight:700;padding:4px 6px;color:#94b2c1;background:#0c1924;white-space:nowrap}.n2_tooltip a{transition:none 0s;text-decoration:none;box-shadow:none}.n2_tooltip--active{opacity:1;margin:10px}.n2_tooltip--active.n2_tooltip_position{margin:0}.n2_body--tooltip-position-active .n2_tooltip:not(.n2_tooltip_position){display:none}.n2_form_tip{font-family:"Inter-Nextend",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;line-height:1.3;font-size:16px;-webkit-font-smoothing:antialiased;z-index:100000;position:fixed;display:none;max-width:360px;padding:5px 0}.n2_form_tip a{transition:none 0s;text-decoration:none;box-shadow:none}.n2_form_tip--visible{display:block}.n2_form_tip__overlay{position:absolute;width:20px;height:20px}.n2_form_tip[data-position-horizontal=left] .n2_form_tip__overlay{left:0}.n2_form_tip[data-position-horizontal=right] .n2_form_tip__overlay{right:0}.n2_form_tip[data-position-vertical=bottom] .n2_form_tip__overlay{top:100%}.n2_form_tip[data-position-vertical=top] .n2_form_tip__overlay{bottom:100%}.n2_form_tip__content{background-color:rgba(12,25,36,.95);border-radius:5px;padding:20px}.n2_form_tip__label{color:#fff;font-size:14px;line-height:20px;text-transform:capitalize;margin-bottom:10px}.n2_form_tip__description{color:#94b2c1;font-size:14px;line-height:20px}.n2_form_tip__description a,.n2_form_tip__description a:HOVER,.n2_form_tip__description a:FOCUS{color:#1d81f9}.n2_form_tip__link{margin-top:10px;display:inline-block;line-height:30px;background-color:#1d81f9;border-radius:3px;padding:0 10px;font-size:11px;text-transform:capitalize;text-decoration:none}.n2_form_tip__link,.n2_form_tip__link:HOVER,.n2_form_tip__link:FOCUS{color:#fff}.n2_dashboard_info{position:relative}.n2_dashboard_info .n2_button_plain_icon{position:relative}.n2_dashboard_info--visible .n2_button_plain_icon,.n2_dashboard_info--visible .n2_button_plain_icon:HOVER,.n2_dashboard_info--visible .n2_button_plain_icon:FOCUS{color:#fff}.n2_dashboard_info__marker{display:none;position:absolute;top:7px;right:8px;width:8px;height:8px;background-color:#f69300;border-radius:100%;border:2px solid #fff}html[data-ss3-activated="0"] .n2_dashboard_info__marker{display:block}.n2_dashboard_info__content{display:none;position:absolute;right:0;top:45px;padding:24px;border-radius:3px;background-color:#fff;box-shadow:0 1px 5px 1px rgba(55,77,88,.2);white-space:nowrap}.n2_dashboard_info--visible .n2_dashboard_info__content{display:grid;grid-template-columns:24px 1fr auto;grid-gap:15px}html[dir=rtl] .n2_dashboard_info__content{left:0;right:auto}.n2_dashboard_info__row_icon .ssi_24{display:block;font-size:24px;line-height:30px}.n2_dashboard_info__row_content{color:#325c77;line-height:30px;font-size:14px}.n2_dashboard_info__row_action{text-align:right}.n2_dashboard_info__row_action a,.n2_dashboard_info__row_action a:HOVER,.n2_dashboard_info__row_action a:FOCUS{line-height:30px;font-size:14px}.n2_dashboard_info__row_action a,.n2_dashboard_info__row_action a:FOCUS{color:#1375e9}.n2_dashboard_info__row_action a:HOVER{color:#005bc6}html[dir=rtl] .n2_dashboard_info__row_action{text-align:left}html[data-ss3-activated="0"] .n2_dashboard_info__row_icon_activated,html[data-ss3-activated="0"] .n2_dashboard_info__row_content_activated,html[data-ss3-activated="0"] .n2_dashboard_info__row_action_activated{display:none}html[data-ss3-activated="1"] .n2_dashboard_info__row_icon_activate,html[data-ss3-activated="1"] .n2_dashboard_info__row_content_activate,html[data-ss3-activated="1"] .n2_dashboard_info__row_action_activate,html[data-ss3-activated="1"] #n2-ss-activate-license-banner{display:none}.n2_dashboard_info__row_icon_version .ssi_24{color:#94b2c1}.n2_dashboard_info__row_icon_check_update .ssi_24{color:#1d81f9}.n2_dashboard_info__row_icon_activate .ssi_24{color:#c43e2a}.n2_dashboard_info__row_icon_activated .ssi_24{color:#04c018}.n2_dashboard_manager{font-family:"Inter-Nextend",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;padding:0 40px}.n2_dashboard_manager__content{position:relative;display:flex;flex-wrap:wrap;margin:0 -16px}.n2_dashboard_manager__content>*{margin:16px;flex:0 0 auto}.n2_dashboard_manager_upgrade_pro{position:relative;display:flex;flex-flow:column;align-items:center;width:572px;min-height:392px;background-color:#fff;border-radius:5px;box-shadow:0 10px 8px -10px rgba(0,0,0,.1)}.n2_dashboard_manager_upgrade_pro:HOVER{box-shadow:0 10px 8px -10px rgba(0,0,0,.2)}.n2_dashboard_manager_upgrade_pro__logo{margin-top:44px;display:flex;align-items:center;justify-content:center;width:100px;height:100px;background-color:rgba(29,129,249,.1);border-radius:50px;color:#1d81f9}.n2_dashboard_manager_upgrade_pro__heading{margin-top:9px;font-size:18px;line-height:30px;color:#283f4d;font-weight:700}.n2_dashboard_manager_upgrade_pro__details{margin-top:8px;display:grid;grid-template-columns:1fr 1fr;grid-gap:14px;width:100%;padding:0 30px 14px;box-sizing:border-box}.n2_dashboard_manager_upgrade_pro__details_option{display:flex;align-items:center}.n2_dashboard_manager_upgrade_pro__details_option,.n2_dashboard_manager_upgrade_pro__details_option:HOVER,.n2_dashboard_manager_upgrade_pro__details_option:FOCUS{color:#1375e9}.n2_dashboard_manager_upgrade_pro__details_option_label{margin:0 10px;font-size:14px;line-height:16px;text-transform:capitalize;padding:5px 0}.n2_dashboard_manager_upgrade_pro__button{margin-top:4px;margin-bottom:20px;padding:0 20px;min-width:260px;background-color:#1d81f9;border-radius:3px;text-align:center;font-size:12px;line-height:36px;text-transform:uppercase;font-weight:700}.n2_dashboard_manager_upgrade_pro__button,.n2_dashboard_manager_upgrade_pro__button:HOVER,.n2_dashboard_manager_upgrade_pro__button:FOCUS{color:#fff}.n2_dashboard_manager_upgrade_pro__button:HOVER{background-color:#338ef9}.n2_dashboard_manager_upgrade_pro__close{display:flex;position:absolute;top:10px;right:10px;width:36px;height:36px;justify-content:center;align-items:center;background-color:#f0f4f7;border-radius:50px;color:#325c77;cursor:pointer;opacity:0;transition:opacity .3s .5s}.n2_dashboard_manager_upgrade_pro:HOVER .n2_dashboard_manager_upgrade_pro__close{opacity:1}.n2_dashboard_manager_review{position:relative;display:flex;flex-flow:column;align-items:center;width:572px;height:392px;background-color:#fff;border-radius:5px;box-shadow:0 10px 8px -10px rgba(0,0,0,.1)}.n2_dashboard_manager_review:HOVER{box-shadow:0 10px 8px -10px rgba(0,0,0,.2)}.n2_dashboard_manager_review__logo{display:flex;align-items:center;justify-content:center;margin-top:44px;width:100px;height:100px;background-color:rgba(246,183,0,.1);border-radius:50px;overflow:hidden;color:#f6b700}.n2_dashboard_manager_review__logo>*{display:none}.n2_dashboard_manager_review[data-star="0"] .ssi_48--review0,.n2_dashboard_manager_review[data-star="1"] .ssi_48--review1,.n2_dashboard_manager_review[data-star="2"] .ssi_48--review2,.n2_dashboard_manager_review[data-star="3"] .ssi_48--review3,.n2_dashboard_manager_review[data-star="4"] .ssi_48--review4,.n2_dashboard_manager_review[data-star="5"] .ssi_48--review5{display:block}.n2_dashboard_manager_review__heading{margin-top:9px;font-size:18px;line-height:30px;color:#283f4d;font-weight:700}.n2_dashboard_manager_review__paragraph{width:380px;height:78px;color:#325c77;font-size:14px;line-height:26px;text-align:center}.n2_dashboard_manager_review__star_selector{margin-top:25px;display:flex}.n2_dashboard_manager_review__star{display:inline-flex;align-items:center;justify-content:center;width:34px;height:34px;color:#94b2c1;cursor:pointer}.n2_dashboard_manager_review[data-star="1"] .n2_dashboard_manager_review__star[data-star="1"],.n2_dashboard_manager_review[data-star="2"] .n2_dashboard_manager_review__star[data-star="1"],.n2_dashboard_manager_review[data-star="2"] .n2_dashboard_manager_review__star[data-star="2"],.n2_dashboard_manager_review[data-star="3"] .n2_dashboard_manager_review__star[data-star="1"],.n2_dashboard_manager_review[data-star="3"] .n2_dashboard_manager_review__star[data-star="2"],.n2_dashboard_manager_review[data-star="3"] .n2_dashboard_manager_review__star[data-star="3"],.n2_dashboard_manager_review[data-star="4"] .n2_dashboard_manager_review__star[data-star="1"],.n2_dashboard_manager_review[data-star="4"] .n2_dashboard_manager_review__star[data-star="2"],.n2_dashboard_manager_review[data-star="4"] .n2_dashboard_manager_review__star[data-star="3"],.n2_dashboard_manager_review[data-star="4"] .n2_dashboard_manager_review__star[data-star="4"],.n2_dashboard_manager_review[data-star="5"] .n2_dashboard_manager_review__star[data-star="1"],.n2_dashboard_manager_review[data-star="5"] .n2_dashboard_manager_review__star[data-star="2"],.n2_dashboard_manager_review[data-star="5"] .n2_dashboard_manager_review__star[data-star="3"],.n2_dashboard_manager_review[data-star="5"] .n2_dashboard_manager_review__star[data-star="4"],.n2_dashboard_manager_review[data-star="5"] .n2_dashboard_manager_review__star[data-star="5"]{color:#f6b700}.n2_dashboard_manager_review__label{display:none;margin-top:4px;font-size:16px;line-height:28px;color:#283f4d;text-align:center;font-weight:700}.n2_dashboard_manager_review[data-star="0"] .n2_dashboard_manager_review__label[data-star="0"],.n2_dashboard_manager_review[data-star="1"] .n2_dashboard_manager_review__label[data-star="1"],.n2_dashboard_manager_review[data-star="2"] .n2_dashboard_manager_review__label[data-star="2"],.n2_dashboard_manager_review[data-star="3"] .n2_dashboard_manager_review__label[data-star="3"],.n2_dashboard_manager_review[data-star="4"] .n2_dashboard_manager_review__label[data-star="4"],.n2_dashboard_manager_review[data-star="5"] .n2_dashboard_manager_review__label[data-star="5"]{display:block}.n2_dashboard_manager_review__close{display:flex;position:absolute;top:10px;right:10px;width:36px;height:36px;justify-content:center;align-items:center;background-color:#f0f4f7;border-radius:50px;color:#325c77;cursor:pointer;opacity:0;transition:opacity .3s .5s}html[dir=rtl] .n2_dashboard_manager_review__close{right:auto;left:10px}.n2_dashboard_manager_review:HOVER .n2_dashboard_manager_review__close{opacity:1}.n2_dashboard_manager_newsletter{position:relative;display:flex;flex-flow:column;align-items:center;width:572px;height:392px;background-color:#fff;border-radius:5px;box-shadow:0 10px 8px -10px rgba(0,0,0,.1)}.n2_dashboard_manager_newsletter:HOVER{box-shadow:0 10px 8px -10px rgba(0,0,0,.2)}.n2_dashboard_manager_newsletter__logo{margin-top:44px;display:flex;align-items:center;justify-content:center;width:100px;height:100px;background-color:rgba(95,57,194,.1);border-radius:50px;color:#5f39c2}.n2_dashboard_manager_newsletter__heading{margin-top:9px;font-size:18px;line-height:30px;color:#283f4d;font-weight:700}.n2_dashboard_newsletter__paragraph{width:380px;height:78px;color:#325c77;font-size:14px;line-height:26px;text-align:center}.n2_dashboard_newsletter__form{margin-top:10px;display:block}.n2_dashboard_newsletter__form input[type=email]{width:300px;background-color:#fff;border:2px solid #94b2c1;border-radius:3px;color:#325c77;font-size:14px;line-height:36px;text-align:center;box-shadow:none}.n2_dashboard_newsletter__form input[type=email]:FOCUS{border-color:#5f39c2}.n2_dashboard_manager_newsletter__button{margin-top:10px;padding:0 20px;min-width:260px;background-color:#5f39c2;border-radius:3px;text-align:center;font-size:12px;line-height:36px;text-transform:uppercase;font-weight:700;cursor:pointer}.n2_dashboard_manager_newsletter__button,.n2_dashboard_manager_newsletter__button:HOVER,.n2_dashboard_manager_newsletter__button:FOCUS{color:#fff}.n2_dashboard_manager_newsletter__button:HOVER{background-color:#683fd4}.n2_dashboard_manager_newsletter__close{display:flex;position:absolute;top:10px;right:10px;width:36px;height:36px;justify-content:center;align-items:center;background-color:#f0f4f7;border-radius:50px;color:#325c77;cursor:pointer;opacity:0;transition:opacity .3s .5s}html[dir=rtl] .n2_dashboard_manager_newsletter__close{right:auto;left:10px}.n2_dashboard_manager_newsletter:HOVER .n2_dashboard_manager_newsletter__close{opacity:1}.n2_device_changer{display:inline-flex;align-items:center;position:relative;direction:ltr}.n2_device_changer__button{display:inline-flex;align-items:center;justify-content:center;width:24px;height:24px;font-size:24px;color:#94b2c1}.n2_device_changer__button--marked:after{position:absolute;top:-3px;right:-3px;display:block;content:'';width:8px;height:8px;border-radius:20px;border:2px solid #fff;background-color:#f69300}.n2_device_tester{display:none;position:absolute;top:100%;left:12px;transform:translateX(-50%);padding:10px 10px 0;width:260px;background-color:#0c1924}.n2_device_changer--active .n2_device_tester{display:block}.n2_device_tester_devices{display:flex;justify-content:space-around}.n2_device_tester_devices__device{display:inline-flex;align-items:center;justify-content:center;padding:6px 10px;width:24px;height:24px;color:#94b2c1;font-size:24px;cursor:pointer}.n2_device_tester_devices__device--active{color:#1d81f9}.n2_device_tester_zoom{display:flex;align-items:center;padding:10px 0;background-color:#0c1924;border-radius:0 0 3px 3px;text-align:center}.n2_device_tester_zoom__min_label,.n2_device_tester_zoom__max_label{width:30px;padding:0 10px;color:#94b2c1;font-size:10px}.n2_device_tester_zoom__min_label{text-align:right}.n2_device_tester_zoom__max_label{text-align:left}.n2_device_tester_zoom__inner{position:relative;margin:0 0;width:160px;height:34px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.n2_device_tester_zoom__trail{position:absolute;left:0;top:50%;margin:-3px 0;width:160px;background-color:#3a4956;height:6px;border-radius:3px}.n2_device_tester_zoom__editor_size{position:absolute;left:0;top:9px;margin-left:-2px;width:2px;height:16px;background-color:#3a4956}.n2_device_tester_zoom__handle{position:absolute;top:9px;display:block;width:16px;height:16px;margin-left:-8px;background-color:#fff;border-radius:16px;z-index:2;cursor:ew-resize}.n2_device_tester_zoom__handle_label{position:absolute;left:-22px;top:-18px;width:60px;color:#94b2c1;font-size:10px;line-height:16px;text-align:center}.n2_slider_manager{font-family:"Inter-Nextend",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;padding:0 40px}.n2_slider_manager__action_bar{display:flex;padding:16px 0 0;height:30px}.n2_slider_manager__action_bar_left{flex:1 1 auto;display:flex;justify-content:flex-start;align-items:center;margin:0 -5px}html[data-sliders='0'] .n2_slider_manager__action_bar_left{visibility:hidden}.n2_slider_manager__action_bar_right{flex:1 1 auto;display:flex;justify-content:flex-end}.n2_slider_manager__content{position:relative;display:flex;flex-wrap:wrap;margin:0 -16px}.n2_slider_manager__box{position:relative;flex:0 0 auto;width:270px;height:180px;border-radius:3px;margin:16px;background:#fff}.n2_slider_manager__sortable_placeholder{height:200px;margin:5px 0;width:0;box-shadow:0 0 0 2px #1d81f9}.n2_slider_manager__new_slider{background-color:#04c018;color:#fff;display:flex;flex-flow:column;justify-content:center;align-items:center;cursor:pointer}.n2_slider_manager__new_slider:HOVER{background-color:#07ca1c}.n2_slider_manager__new_slider_icon{margin:5px 0 25px}.n2_slider_manager__new_slider_label{font-size:16px;line-height:16px;text-transform:uppercase;font-weight:700;max-width:200px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.n2_slider_box{position:relative;display:flex;flex-flow:column;border-radius:3px;box-shadow:0 10px 8px -10px rgba(0,0,0,.1);overflow:hidden;transition:transform .2s,box-shadow .5s}.n2_slider_box:HOVER,.n2_slider_box.n2_slider_box--context-menu{box-shadow:0 10px 8px -10px rgba(0,0,0,.2)}.n2_slider_box.n2_slider_box--selected{box-shadow:0 0 0 5px #1d81f9;transition:box-shadow 0s}.n2_slider_box.n2-ui-sortable-helper{opacity:.8}.n2_slider_box__content{position:relative;height:100%;background-size:cover;background-position:50% 0;background-repeat:no-repeat}.n2_slider_box__content .n2_slider_box__icon{background:#1375e9;height:100%;width:100%;position:absolute;top:0;left:0;display:flex;align-items:center;justify-content:center;flex-flow:column}.n2_slider_box__content .n2_slider_box__icon.n2_slider_box__icon_grey{background:#6b7986}.n2_slider_box__content .n2_slider_box__icon .n2_slider_box__icon_container{color:#fff}.n2_slider_box__content .n2_slider_box__icon .n2_slider_box__icon_text{color:#fff;text-transform:uppercase;font-weight:700;margin-top:12px}.n2_slider_box--group .n2_slider_box__icon{background:#94b2c1}.n2_slider_box--slider{background-size:cover;background-position:50% 0;background-repeat:no-repeat}.n2_slider_box__footer{flex:0 0 auto;padding:15px 10px;background-color:#fff;border-bottom-left-radius:3px;border-bottom-right-radius:3px;display:flex;align-items:center}.n2_slider_box__footer_title{display:block;padding:0 5px;box-sizing:border-box;width:100%;min-height:20px;max-height:60px;overflow:hidden;word-wrap:break-word;cursor:text;font-size:14px;line-height:20px;font-weight:700;color:#325c77}.n2_slider_box__footer_icon{color:#94b2c1;height:16px;margin:0 5px}.n2_slider_box__footer_children_count{flex:0 0 auto;margin-left:auto;height:24px;width:24px;border-radius:12px;background-color:#94b2c1;font-size:12px;line-height:24px;color:#fff;font-weight:700;text-align:center}.n2_slider_box__slider_overlay{display:none;z-index:10;position:absolute;left:0;top:0;width:100%;height:100%;background-color:rgba(32,41,52,.9);border-top-left-radius:3px;border-top-right-radius:3px;justify-content:center;align-items:center}.n2_slider_box:HOVER .n2_slider_box__slider_overlay,.n2_slider_box--context-menu .n2_slider_box__slider_overlay{display:flex}.n2_slider_box__slider_overlay_link{z-index:1;position:absolute;display:block;width:100%;height:100%}.n2_slider_box__slider_overlay .n2_button{display:inline-block;position:relative;z-index:2;max-width:120px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.n2_slider_box__slider_select_tick{z-index:2;position:absolute;left:8px;top:8px;box-sizing:border-box;width:20px;height:20px;border-radius:3px;border:2px solid #6b7986;cursor:pointer;font-size:16px;line-height:16px;color:#fff}.n2_slider_box__slider_select_tick .ssi_16{display:none}.n2_slider_box__slider_identifiers{z-index:9;position:absolute;left:2px;bottom:2px;display:flex}.n2_slider_box__slider_identifier{margin:3px;padding:0 5px;background-color:#6b7986;border-radius:3px;font-size:12px;line-height:2em;color:#fff;text-transform:uppercase}.n2_slider_box__slider_actions{display:none;position:absolute;right:8px;top:8px;z-index:12}.n2_slider_box:HOVER .n2_slider_box__slider_actions,.n2_slider_box--context-menu .n2_slider_box__slider_actions{display:block}.n2_slider_box--drop-instance{transform:scale(.7)}.n2_slider_box--drop-target{box-shadow:0 0 0 3px #1d81f9}.n2_slide_box__screen_reader{border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}.n2_slider_manager__action_bar_bulk_actions{display:none}.n2_body--bulk-select .n2_slider_manager__action_bar_bulk_actions,.n2_slider_manager__action_bar_bulk_actions.n2_slider_manager__action_bar_bulk_actions--popover-visible{display:block}.n2_body--bulk-select .n2_header__actions{visibility:hidden}.n2_body--bulk-select .n2_slider_box{opacity:.5}.n2_body--bulk-select .n2_slider_box.n2_slider_box--bulk-selected{opacity:1}.n2_body--bulk-select .n2_slider_box.n2_slider_box--bulk-selected .n2_slider_box__slider_select_tick{background-color:#1d81f9;border-color:#1d81f9}.n2_body--bulk-select .n2_slider_box.n2_slider_box--bulk-selected .n2_slider_box__slider_select_tick .ssi_16{display:block}.n2_body--bulk-select .n2_slider_box__slider_overlay{display:flex}.n2_body--bulk-select .n2_slider_box__slider_overlay_link,.n2_body--bulk-select .n2_slider_box__slider_overlay_edit_button,.n2_body--bulk-select .n2_slider_box__slider_actions{display:none!important}.n2_new_project{min-height:100%;display:flex;flex-flow:column;justify-content:center}.n2_new_project__heading{margin-top:30px;color:#283f4d;font-size:32px;line-height:40px;text-align:center}.n2_new_project__sub_heading{color:#325c77;font-size:14px;line-height:30px;text-align:center}.n2_new_project__boxes{display:flex;justify-content:space-between;margin:40px -30px}.n2_new_project__box{flex:1 1 50%;margin:0 30px;padding:30px 40px;background-color:#fff;border-radius:10px;text-align:center;cursor:pointer}.n2_new_project__box:HOVER{box-shadow:0 2px 10px 0 rgba(0,0,0,.1)}.n2_new_project__box_heading{color:#283f4d;font-size:22px;line-height:40px}.n2_new_project__box_sub_heading{color:#325c77;font-size:14px;line-height:24px}.n2_new_project__import{display:block;margin:0 auto 20px;font-size:14px;line-height:30px;text-transform:capitalize}.n2_new_project__import:HOVER{color:#005bc6}.n2_new_project__import,.n2_new_project__import:FOCUS{color:#1375e9}.n2_create_new_project{display:flex;flex-flow:column;max-width:840px;margin:0 auto;box-sizing:border-box;min-height:100%;padding:30px 20px}.n2_create_new_project__heading{color:#283f4d;font-size:32px;line-height:40px;text-align:center}.n2_ss_slider_publish{display:flex}.n2_ss_slider_publish__option{padding:40px 20px;flex:1;display:flex;flex-flow:column;align-items:center}.n2_ss_slider_publish__option img{margin-top:15px;max-width:100%}.n2_ss_slider_publish__option .n2_button{margin-top:15px}.n2_ss_slider_publish__option+.n2_ss_slider_publish__option{border-left:1px solid #e4e9ec}html[dir=rtl] .n2_ss_slider_publish__option+.n2_ss_slider_publish__option{border-left:0;border-right:1px solid #e4e9ec}.n2_ss_slider_publish__option_label{line-height:28px;font-size:18px;color:#283f4d}.n2_ss_slider_publish__option_description{text-align:center;line-height:28px;font-size:14px;color:#325c77}.n2_ss_slider_publish__option_code{margin-top:15px;padding:15px 20px;background-color:#f5e293;border-radius:2px;line-height:20px;font-size:13px;color:#325c77}.n2_ss_slider_publish__related_modules{display:flex;flex-wrap:wrap;margin-top:10px}.n2_ss_slider_publish__related_modules .n2_button{margin:3px}.n2_slider_trash{font-family:"Inter-Nextend",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;padding:24px 40px;position:relative;display:flex;flex-wrap:wrap;margin:0 -16px}.n2_slider_manager__dummy_slider{display:none;background:#f0f4f7;border:2px dashed #94b2c1;flex-flow:column;justify-content:center;align-items:center;box-sizing:border-box}.n2_slider_trash--empty .n2_slider_manager__dummy_slider{display:flex}.n2_slider_manager__dummy_slider_icon{margin:16px 0;color:#94b2c1}.n2_slider_manager__dummy_slider_label{font-size:14px;line-height:22px;color:#325c77;font-weight:700}.n2_slide_manager{position:relative;z-index:1100;font-family:"Inter-Nextend",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;margin:0 -1px}.n2_slide_manager[data-breadcrumbopener="1"]{display:none}.n2_admin_editor_overlay--show-slides .n2_slide_manager[data-breadcrumbopener="1"]{display:flex;flex-flow:column}.n2_slide_manager__inner{background-color:#2c3a45}.n2_slide_manager__exit{flex:1 1 auto;background:rgba(28,41,51,.5);cursor:pointer}.n2_slide_manager__action_bar{position:relative;z-index:3;padding:5px 35px;height:30px;margin-bottom:-40px}.n2_slide_manager__content{position:relative;display:flex;flex-wrap:wrap;padding:30px 30px}.n2_slide_manager__box{position:relative;box-sizing:border-box;flex:0 0 auto;width:200px;height:135px;border-radius:3px;margin:10px;background:#0c1924}.n2_slide_manager__sortable_placeholder{height:135px;margin:5px 0;width:0;box-shadow:0 0 0 2px #1d81f9}.n2_slide_manager__action_bar .n2_button_plain,.n2_slide_manager__action_bar .n2_button_plain:HOVER,.n2_slide_manager__action_bar .n2_button_plain:FOCUS{color:#bdcfd9}.n2_slide_manager__action_bar_bulk_actions{display:none}.n2_slide_manager--bulk-select .n2_slide_manager__action_bar_bulk_actions,.n2_slide_manager__action_bar_bulk_actions .n2_slide_manager__action_bar_bulk_actions--popover-visible{display:block}.n2_slide_manager--bulk-select .n2_slide_box{opacity:.5}.n2_slide_manager--bulk-select .n2_slide_box.n2_slide_box--bulk-selected{opacity:1}.n2_slide_manager--bulk-select .n2_slide_box.n2_slide_box--bulk-selected .n2_slide_box__slide_select_tick{background-color:#1d81f9;border-color:#1d81f9}.n2_slide_manager--bulk-select .n2_slide_box.n2_slide_box--bulk-selected .n2_slide_box__slide_select_tick .ssi_16{display:block}.n2_slide_manager--bulk-select .n2_slide_box__slide_overlay{display:flex}.n2_slide_manager--bulk-select .n2_slide_box__slide_overlay_link,.n2_slide_manager--bulk-select .n2_slide_box__slide_overlay_edit_button,.n2_slide_manager--bulk-select .n2_slide_box__slide_actions{display:none!important}.n2_slide_manager__add_slide{background-color:#04c018;padding:16px 0;display:flex;flex-flow:column;justify-content:center;align-items:center;color:#fff;cursor:pointer}.n2_slide_manager__add_slide:HOVER{background-color:#07ca1c}.n2_slide_manager__add_slide_icon{font-size:48px;margin:16px 0}.n2_slide_manager__add_slide_label{font-size:14px;line-height:22px;font-weight:700;text-transform:uppercase;max-width:160px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.n2_slide_manager__add_slide_label--close{display:none}.n2_slide_manager--add-slide .n2_slide_manager__add_slide{background-color:#6b7986}.n2_slide_manager--add-slide .n2_slide_manager__add_slide:HOVER{background-color:#8694a2}.n2_slide_manager--add-slide .n2_slide_manager__add_slide_icon{transform:rotateZ(45deg)}.n2_slide_manager--add-slide .n2_slide_manager__add_slide_label--add-slide{display:none}.n2_slide_manager--add-slide .n2_slide_manager__add_slide_label--close{display:block}.n2_slide_manager__add_slide_actions{overflow:hidden;height:0;transition:height .4s}.n2_slide_manager--add-slide .n2_slide_manager__add_slide_actions{height:150px}.n2_slide_manager__add_slide_actions_inner{display:flex;padding:10px 30px}.n2_slide_manager__add_slide_action{display:flex;flex-flow:column;align-items:center;justify-content:center;margin:10px;width:140px;height:110px;box-sizing:border-box;padding:14px 0;border-radius:3px}.n2_slide_manager__add_slide_action,.n2_slide_manager__add_slide_action:HOVER,.n2_slide_manager__add_slide_action:FOCUS{color:#bdcfd9}.n2_slide_manager__add_slide_action:not(:first-child):HOVER{color:#fff}.n2_slide_manager__add_slide_action--image{background-color:#04c018}.n2_slide_manager__add_slide_action--image:HOVER{background-color:#07ca1c}.n2_slide_manager__add_slide_action--image,.n2_slide_manager__add_slide_action--image:HOVER,.n2_slide_manager__add_slide_action--image:FOCUS{color:#fff}.n2_slide_manager__add_slide_action_icon{padding:4px 0;font-size:48px;display:flex}.n2_slide_manager__add_slide_action_label{font-size:14px;line-height:26px;font-weight:700;text-transform:capitalize;max-width:120px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.n2_slide_manager__dummy_slide{display:none;background-color:#2c3a45;border:2px dashed #bdcfd9;padding:16px 0;flex-flow:column;justify-content:center;align-items:center;color:#bdcfd9;cursor:pointer}html[data-slides="0"] .n2_slide_manager__dummy_slide{display:flex}.n2_slide_manager__dummy_slide_icon{margin:16px 0}.n2_slide_manager__dummy_slide_label{font-size:14px;line-height:22px}.n2_slide_box{position:relative;opacity:.5;display:flex;flex-flow:column;transition:opacity .6s}.n2_slide_box.n2_slide_box--published{opacity:1}.n2_slide_box--currently-edited{box-shadow:0 0 0 3px #1d81f9}.n2_slide_box--just-added{opacity:0}.n2_slide_box__content{position:relative;height:100%;border-top-left-radius:3px;border-top-right-radius:3px;background-size:cover;background-position:50% 0;background-repeat:no-repeat}.n2_slide_box__footer{flex:0 0 auto;padding:9px 10px;background-color:#0c1924;border-bottom-left-radius:3px;border-bottom-right-radius:3px;display:flex;align-items:center}.n2_slide_box__footer_title{display:block;padding:0 5px;box-sizing:border-box;width:100%;min-height:20px;max-height:60px;overflow:hidden;word-wrap:break-word;cursor:text;font-size:14px;line-height:20px;font-weight:700;color:#bdcfd9}.n2_slide_box__footer_status{margin-left:auto;display:flex;align-items:center}.n2_slide_box__footer_status>*{display:flex;padding:3px}.n2_slide_box__footer_status_first_slide{display:none;color:#e19f21}.n2_slide_box--first-slide .n2_slide_box__footer_status_first_slide{display:flex}.n2_slide_box__footer_status_published{display:none}.n2_slide_box--published .n2_slide_box__footer_status_published{display:flex}.n2_slide_box__footer_status_published,.n2_slide_box__footer_status_published:HOVER,.n2_slide_box__footer_status_published:FOCUS{color:#04c018}.n2_slide_box--published .n2_slide_box__footer_status_unpublished{display:none}.n2_slide_box__footer_status_unpublished,.n2_slide_box__footer_status_unpublished:HOVER,.n2_slide_box__footer_status_unpublished:FOCUS{color:#bdcfd9}.n2_slide_box__footer_status_hidden{display:none}.n2_slide_box__footer_status_hidden:not([data-n2tip=""]){display:flex}.n2_slide_box__footer_status_hidden,.n2_slide_box__footer_status_hidden:HOVER,.n2_slide_box__footer_status_hidden:FOCUS{color:#bdcfd9}.n2_slide_box__slide_overlay{display:none;z-index:2;position:absolute;left:0;top:0;width:100%;height:100%;background-color:rgba(32,41,52,.9);border-top-left-radius:3px;border-top-right-radius:3px;justify-content:center;align-items:center}.n2_slide_box:HOVER .n2_slide_box__slide_overlay,.n2_slide_box--context-menu .n2_slide_box__slide_overlay{display:flex}.n2_slide_box__slide_overlay_link{z-index:1;position:absolute;display:block;width:100%;height:100%}.n2_slide_box__slide_overlay_edit_button{position:relative;z-index:2;padding:0 10px;line-height:28px;border-radius:2px;background-color:#04c018;font-size:11px;text-transform:uppercase;max-width:100px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.n2_slide_box__slide_overlay_edit_button:HOVER{background-color:#07ca1c}.n2_slide_box__slide_overlay_edit_button,.n2_slide_box__slide_overlay_edit_button:HOVER,.n2_slide_box__slide_overlay_edit_button:FOCUS{color:#fff}.n2_slide_box--currently-edited .n2_slide_box__slide_overlay_link,.n2_slide_box--currently-edited .n2_slide_box__slide_overlay_edit_button{display:none}.n2_slide_box__slide_select_tick{z-index:2;position:absolute;left:8px;top:8px;box-sizing:border-box;width:20px;height:20px;border-radius:3px;border:2px solid #6b7986;cursor:pointer;font-size:16px;line-height:16px;color:#fff}.n2_slide_box__slide_select_tick .ssi_16{display:none}html[dir=rtl] .n2_slide_box__slide_select_tick{right:8px;left:auto}.n2_slide_box__slide_actions{display:none;position:absolute;right:8px;top:8px;z-index:12}.n2_slide_box:HOVER .n2_slide_box__slide_actions,.n2_slide_box--context-menu .n2_slide_box__slide_actions{display:block}html[dir=rtl] .n2_slide_box__slide_actions{left:8px;right:auto}.n2_slide_box__details{z-index:1;position:absolute;left:5px;bottom:5px;display:flex;flex-flow:column}.n2_slide_box__details>*{margin:5px;padding:0 3px;background-color:#6b7986;border-radius:3px;font-size:11px;line-height:2em;color:#fff}.n2_slide_box__details_static_slide{text-transform:uppercase}.n2_slide_manager__block_notice{background-color:#0c1924;display:flex;align-items:center;justify-content:center;text-align:center;flex-flow:column}html[data-slides="0"] .n2_slide_manager__block_notice,html[data-slides="1"] .n2_slide_manager__block_notice{display:none}.n2_slide_manager__block_notice_description{margin-bottom:10px}.n2_slide_manager__block_notice_button{background:#1375e9;line-height:30px;border-radius:3px;padding:0 10px;font-size:11px;text-transform:uppercase;font-weight:700;cursor:pointer}.n2_slide_manager__block_notice_button:HOVER{background-color:#005bc6}.n2_slide_manager__block_notice_button,.n2_slide_manager__block_notice_button:HOVER,.n2_slide_manager__block_notice_button:FOCUS{color:#fff}.n2_nav_bar__breadcrumb_button_slides{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer}.n2_nav_bar__breadcrumb_button_slides .ssi_16{display:inline-block;vertical-align:middle}.n2_admin_editor_overlay--show-slides .n2_nav_bar__breadcrumb_button_slides span .ssi_16{transform:rotateZ(180deg)}.n2_breadcrumbs__breadcrumb--active .n2_nav_bar__breadcrumb_button_slides,.n2_breadcrumbs__breadcrumb--active .n2_nav_bar__breadcrumb_button_slides:HOVER,.n2_breadcrumbs__breadcrumb--active .n2_nav_bar__breadcrumb_button_slides:FOCUS{color:#94b2c1}.n2_admin_editor_overlay--show-slides .n2_breadcrumbs__breadcrumb--active .n2_nav_bar__breadcrumb_button_slides,.n2_admin_editor_overlay--show-slides .n2_breadcrumbs__breadcrumb--active .n2_nav_bar__breadcrumb_button_slides:HOVER,.n2_admin_editor_overlay--show-slides .n2_breadcrumbs__breadcrumb--active .n2_nav_bar__breadcrumb_button_slides:FOCUS{color:#fff}.n2_ss_history_action{opacity:.5}.n2_ss_history_action--allowed{opacity:1}#n2-admin[data-slide-background-type=image] .n2_form__table_row[data-field=table-row-background-video]{display:none}#n2-admin[data-slide-background-type=color] .n2_form__table_row[data-field=table-row-background-video],#n2-admin[data-slide-background-type=color] .n2_form__table_row[data-field=table-row-background-image],#n2-admin[data-slide-background-type=color] .n2_field[data-field=slidebackgroundColorOverlay]{display:none}.n2_admin_editor_overlay__middle{flex:1 1 auto;display:flex}[dir=rtl] .n2_admin_editor_overlay__middle{flex-flow:row-reverse}.n2_admin_editor_overlay__middle_center{position:relative;flex:1 1 auto;overflow:hidden}.n2_add_layer{visibility:visible;flex:0 0 auto;position:relative;display:flex;width:50px;z-index:10}.n2_add_layer__bar{position:relative;width:100%;height:100%;background-color:#0c1924;overflow:hidden}.n2_add_layer__bar .n2_button_plain_icon,.n2_add_layer__bar .n2_button_plain_icon:HOVER,.n2_add_layer__bar .n2_button_plain_icon:FOCUS{color:#94b2c1}.n2_add_layer__bar .n2_button_plain_icon--active{background:#1d81f9}.n2_add_layer__bar .n2_button_plain_icon--active,.n2_add_layer__bar .n2_button_plain_icon--active:HOVER,.n2_add_layer__bar .n2_button_plain_icon--active:FOCUS{color:#fff}.n2_add_layer__bar .n2_timeline_control_play_pause--playing{background:#1d81f9}.n2_add_layer__bar .n2_timeline_control_play_pause--playing,.n2_add_layer__bar .n2_timeline_control_play_pause--playing:HOVER,.n2_add_layer__bar .n2_timeline_control_play_pause--playing:FOCUS{color:#fff}.n2_add_layer__bar .n2_timeline_control_play_pause--playing .ssi_24::before{content:"\E16D"}.n2_add_layer__bar_top,.n2_add_layer__bar_bottom{background-color:#0c1924;position:absolute;left:0;display:flex;flex-flow:column;align-items:center;padding:0 10px}.n2_add_layer__bar_top{top:0}.n2_add_layer__bar_top>*{margin-bottom:14px}.n2_add_layer__bar_bottom{bottom:0}.n2_add_layer__bar_bottom>*{margin-bottom:14px}.n2_add_layer__bar_button{flex:0 0 auto;border-radius:2px}.n2_add_layer__more{display:none;flex-flow:column;position:absolute;left:0;top:0;width:330px;height:100%;background-color:#2c3a45}.n2_admin_editor_overlay--show-add-more .n2_add_layer__more{display:flex}.n2_add_layer__more_tab_buttons{flex:0 0 auto;display:flex;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.n2_add_layer__more_tab_button{flex:1 1 0;display:flex;align-items:center;flex-flow:column;padding:14px 0 6px;text-align:center;cursor:pointer;background-color:#0c1924;color:#94b2c1}.n2_add_layer__more_tab_button--active{background-color:#1d81f9;color:#fff}.n2_add_layer__more_tab_button_icon{display:flex;align-items:center;justify-content:center}.n2_add_layer__more_tab_button_label{font-size:11px;line-height:26px;text-transform:uppercase;font-weight:700;max-width:145px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.n2_add_layer__more_tab{display:none;flex-flow:column;flex:1 1 auto;overflow:hidden}.n2_add_layer__more_tab--active{display:flex}.n2_add_layer__more_layers{flex:1 1 auto;overflow-y:auto}.n2_add_layer_group{margin-bottom:10px}.n2_add_layer_group__label{padding:8px 20px;background-color:#1c2933;border-bottom:1px solid #131c23;color:#94b2c1;font-size:12px;line-height:28px;font-weight:700;text-transform:uppercase;margin-bottom:10px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.n2_add_layer_group__content{display:grid;grid-template-columns:repeat(3,1fr);grid-gap:10px;padding:0 10px}.n2_add_layer_box{padding:6px 8px;background-color:#6b7986;border-radius:2px;text-align:center;cursor:pointer}.n2_add_layer_box.n2-ss-layer--drag{pointer-events:none;width:90px;opacity:.8;z-index:9999;margin:0}.n2_add_layer_box__icon{display:flex;align-items:center;justify-content:center;margin-top:4px;color:#fff}.n2_add_layer_box__label_wrap{display:flex;flex-flow:column;justify-content:center;min-height:32px}.n2_add_layer_box__label{font-size:12px;line-height:14px;color:#fff;font-weight:700;text-transform:capitalize}.n2_add_layer__more_position{flex:0 0 auto;display:flex;align-items:center;height:50px;background-color:#0c1924;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.n2_add_layer_position__label{flex:1 1 50%;padding:0 5px;color:#94b2c1;font-size:12px;line-height:24px;font-weight:700;text-transform:uppercase;cursor:pointer;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.n2_add_layer_position__default_label{text-align:right}.n2_add_layer_position[data-position=default] .n2_add_layer_position__default_label{color:#fff;cursor:initial}html[dir=rtl] .n2_add_layer_position__default_label{text-align:left}.n2_add_layer_position__absolute_label{text-align:left}.n2_add_layer_position[data-position=absolute] .n2_add_layer_position__absolute_label{color:#fff;cursor:initial}html[dir=rtl] .n2_add_layer_position__absolute_label{text-align:right}.n2_add_layer_position__switch{padding:3px;width:44px;height:24px;box-sizing:border-box;background-color:#1d81f9;border-radius:12px;cursor:pointer;transition:background-color .3s}.n2_add_layer_position[data-position=absolute] .n2_add_layer_position__switch{background-color:#5f39c2}.n2_add_layer_position__switch_dot{width:18px;height:18px;background-color:#fff;border-radius:18px;box-shadow:0 0 0 1px rgba(0,0,0,.1);transition:transform .3s}.n2_add_layer_position[data-position=absolute] .n2_add_layer_position__switch_dot{transform:translateX(20px)}html[dir=rtl] .n2_add_layer_position[data-position=absolute] .n2_add_layer_position__switch_dot{transform:translateX(-20px)}.n2_add_layer_library__title,.n2_add_layer_library_tag__title{display:flex;padding:7px 10px;background-color:#1c2933;border-bottom:1px solid #131c23}.n2_add_layer_library__title_label,.n2_add_layer_library_tag__title_label{padding:0 10px;flex:1 1 auto;color:#94b2c1;font-size:12px;line-height:30px;font-weight:700;text-transform:uppercase}.n2_add_layer_library__theme{display:none;position:relative;overflow-y:scroll;height:100%;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.n2_add_layer_library__theme--active{display:block}.n2_add_layer_library_tag__title{cursor:pointer}.n2_add_layer_library_tag__title_opener{display:flex;align-items:center;justify-content:center;width:30px;color:#94b2c1}.n2_add_layer_library_tag--active .n2_add_layer_library_tag__title_opener{transform:rotateZ(180deg)}.n2_add_layer_library_tag__sections{flex-flow:column;align-items:center;padding:10px 0}.n2_add_layer_library_tag .n2_add_layer_library_tag__sections{display:none}.n2_add_layer_library_tag--active .n2_add_layer_library_tag__sections{display:flex}.n2_add_layer_library_tag__section{position:relative;margin:10px 0;width:270px;border-radius:3px;overflow:hidden}.n2_add_layer_library_tag__section img{display:block;width:100%}.n2_add_layer_library_tag__section--available{cursor:pointer}.n2_add_layer_library_tag__section_pro{z-index:10;position:absolute;top:5px;right:5px;padding:0 5px;background-color:#6b7986;border-radius:3px;font-size:12px;line-height:2em;color:#fff}.n2_add_layer_library_tag__section_overlay{display:none;z-index:9;position:absolute;left:0;top:0;width:100%;height:100%;padding:0 40px;box-sizing:border-box;background:rgba(12,25,36,.9);align-items:center;color:#94b2c1;font-size:14px;line-height:22px;text-align:center}.n2_add_layer_library_tag__section_overlay a,.n2_add_layer_library_tag__section_overlay a:HOVER,.n2_add_layer_library_tag__section_overlay a:FOCUS{color:#1d81f9}.n2_add_layer_library_tag__section:HOVER .n2_add_layer_library_tag__section_overlay{display:flex}.n2_ss_layer_window{visibility:visible;z-index:5;position:absolute!important;left:100px;top:100px;display:none;flex-flow:column;width:355px}.n2_body--layer-window-visible .n2_ss_layer_window{display:flex}.n2_body--show-add-more .n2_ss_layer_window,.n2_body--drag-layer .n2_ss_layer_window,.n2_body--resize-absolute .n2_ss_layer_window,.n2_body--resize-editor .n2_ss_layer_window{display:none}.n2_ss_layer_window__resize{flex:0 0 auto;position:static!important;height:7px;width:100%;cursor:ns-resize;background-color:#0c1924;border-bottom-left-radius:3px;border-bottom-right-radius:3px}.n2_ss_layer_window__crop{flex:1 1 auto;display:flex;flex-flow:column;position:relative;width:100%;border-top-left-radius:3px;border-top-right-radius:3px;box-shadow:0 1px 10px 0 rgba(0,0,0,.3);overflow:hidden;background-color:#0c1924;z-index:2}.n2_ss_layer_window__title{flex:0 0 auto;display:flex;position:relative;line-height:36px;height:36px;overflow:hidden;background-color:#0c1924;font-size:14px;color:#94b2c1;cursor:move;border-top-left-radius:5px;border-top-right-radius:5px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.n2_ss_layer_window__title_nav a{display:block;width:36px;height:36px;text-align:center}.n2_ss_layer_window__title_nav_button{margin:6px;display:inline-flex;width:24px;height:24px;align-items:center;justify-content:center;border-radius:2px;cursor:pointer;color:#94b2c1}.n2_admin_editor_overlay--attached-layer-list .n2_ss_layer_window__title_nav_button_layer_list{background-color:#1d81f9;color:#fff}.n2_ss_layer_window__title_inner{flex:1 1 auto;padding:0 20px;text-align:center;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-weight:700}.n2_ss_layer_window__tab_buttons{flex:0 0 auto;display:flex;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.n2_ss_layer_window__tab_buttons[data-visible-tabs="1"]{display:none}.n2_admin_editor_overlay--attached-layer-list .n2_ss_layer_window__tab_buttons{display:none}.n2_ss_layer_window__tab_button{display:none;flex:1 1 0;width:33%;flex-flow:column;align-items:center;padding:11px 0 2px;cursor:pointer;background-color:#0c1924;color:#94b2c1}.n2_ss_layer_window__tab_button_icon{display:flex;align-items:center;justify-content:center}.n2_ss_layer_window__tab_button_label{font-size:11px;line-height:23px;text-transform:uppercase;font-weight:700;max-width:100px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.n2_ss_layer_window__tab_button--allowed{display:flex}.n2_ss_layer_window__tab_button--allowed.n2_ss_layer_window__tab_button--active{background-color:#1d81f9;color:#fff}.n2_ss_layer_window__tab_container{position:relative;flex:1 1 auto;overflow-x:hidden;overflow-y:scroll;background-color:#3a4956}.n2_admin_editor_overlay--attached-layer-list .n2_ss_layer_window__tab_container{display:none}.n2_ss_layer_window__tab{display:none;color:#fff}.n2_ss_layer_window__tab[data-tab=item]>*{display:none}.n2_ss_layer_window__tab--allowed.n2_ss_layer_window__tab--active{display:block}.n2_ss_layer_window__tab_panel{display:none}.n2_ss_layer_window__tab_panel--active{display:block}.n2_ss_layer_window [data-generator-related="1"]{display:none}.n2_ss_body--dynamic-slide .n2_ss_layer_window [data-generator-related="1"]{display:block}body[data-device=desktopPortrait] .n2_field[data-field=layer-clear-device-specific-changes],body[data-device=desktopPortrait] .n2_field[data-field=layer-slide-clear-device-specific-changes]{display:none}.n2_admin_editor_overlay--attached-layer-list .n2_layer_navigation_list_title{display:none}.n2_admin_editor_overlay--attached-layer-list .n2_layer_navigation{flex:1 1 auto;width:100%!important;height:auto!important;max-height:none;overflow:auto}.n2_admin_editor_overlay--attached-layer-list .n2_layer_navigation_list{width:100%;overflow-y:auto!important}.n2_admin_editor_overlay--attached-layer-list .n2_layer_navigation_list_layers{padding-bottom:0!important}.n2_admin_editor_overlay--attached-layer-list .n2_layer_navigation_list_layer__title{border-right:0}.n2_admin_editor_overlay--attached-layer-list .n2_timeline{width:0;overflow:hidden}.n2_fields_layer_window__title_fields .n2_form__table_label_field:last-child{margin-right:0}.n2_fields_layer_window[data-fieldset-type=style-mode][data-state=""] .n2_form__table_label_field[data-style-mode-feature=reset-to-normal]{display:none}.n2_ss_design_layer_window_design{display:none}.n2_ss_design_layer_window_design--visible{display:block}.n2_layer_window_design_preset{display:flex;padding:7px 10px;background-color:#1c2933;border-bottom:1px solid #131c23}.n2_layer_window_design_preset__label_container{flex:1 1 auto;display:inline-flex;align-items:center;height:30px}.n2_layer_window_design_preset__label_container .ssi_16--info{margin:0 5px;color:#94b2c1}.n2_layer_window_design_preset__label{font-size:12px;font-weight:700;text-transform:uppercase;color:#94b2c1;max-width:160px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.n2_layer_window_design_preset__fields{display:flex}.n2_layer_window_design_preset__presets{display:none}.n2_layer_window_design_preset__button_choose{display:inline-flex;vertical-align:top;width:30px;height:30px;background-color:#04c018;border-radius:2px;align-items:center;justify-content:center;font-size:16px}.n2_layer_window_design_preset__button_choose:HOVER{background-color:#07ca1c}.n2_layer_window_design_preset__button_choose,.n2_layer_window_design_preset__button_choose:HOVER,.n2_layer_window_design_preset__button_choose:FOCUS{color:#fff}.n2_layer_window_design_preset__button_back{display:none;vertical-align:top;width:30px;height:30px;background-color:#6b7986;border-radius:2px;align-items:center;justify-content:center;font-size:16px}.n2_layer_window_design_preset__button_back:HOVER{background-color:#8694a2}.n2_layer_window_design_preset__button_back,.n2_layer_window_design_preset__button_back:HOVER,.n2_layer_window_design_preset__button_back:FOCUS{color:#fff}.n2_layer_window_design_preset__fields_secondary{display:inline-flex;vertical-align:top;margin:0 10px}.n2_layer_window_design_preset__button_secondary{display:inline-flex;vertical-align:top;width:30px;height:30px;font-size:16px;align-items:center;justify-content:center}.n2_layer_window_design_preset__button_secondary,.n2_layer_window_design_preset__button_secondary:HOVER,.n2_layer_window_design_preset__button_secondary:FOCUS{color:#94b2c1}.n2_ss_layer_window--show-presets .n2_ss_layer_window__tab_panel:not([data-panel=item]){display:none}.n2_ss_layer_window--show-presets .n2_ss_design_layer_window_design .n2_fields_layer_window{display:none}.n2_ss_layer_window--show-presets .n2_layer_window_design_preset__fields_secondary,.n2_ss_layer_window--show-presets .n2_layer_window_design_preset__button_choose{display:none}.n2_ss_layer_window--show-presets .n2_layer_window_design_preset__button_back{display:inline-flex}.n2_ss_layer_window--show-presets .n2_layer_window_design_preset{position:-webkit-sticky;position:sticky;top:0}.n2_ss_layer_window--show-presets .n2_layer_window_design_preset__presets{display:block}.n2_fields_layer_window[data-fieldset-type=design][data-state="0"] .n2_form__table_label_field[data-design-feature=reset-to-normal]{display:none}.n2_fields_layer_window[data-fieldset-type=design][data-elements="0"]{display:none}.n2_fields_layer_window[data-fieldset-type=design][data-elements="1"] [data-design-feature=element]{display:none}.n2_layer_window_design_preset__preset_list_preset{display:flex;padding:5px 10px;background-color:#2c3a45;border-bottom:1px solid #131c23;cursor:pointer}.n2_layer_window_design_preset__preset_list_preset span{font-size:12px;line-height:30px;margin-right:auto;color:#bdcfd9}html[dir=rtl] .n2_layer_window_design_preset__preset_list_preset span{margin-right:0;margin-left:auto}.n2_layer_window_design_preset__preset_list_preset_buttons{display:inline-flex}.n2_layer_window_design_preset__preset_list_preset_button{display:inline-flex;vertical-align:top;width:30px;height:30px;font-size:16px;align-items:center;justify-content:center;cursor:pointer;color:#94b2c1}.n2_container_animation__buttons{display:flex;align-items:center;padding:8px 10px;background-color:#0c1924}.n2_container_animation__button{flex:1 1 0;padding:6px 5px;color:#94b2c1;font-size:12px;line-height:16px;border-radius:14px;text-align:center;text-transform:uppercase;cursor:pointer;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.n2_container_animation__button--active{background-color:#1d81f9;color:#fff}.n2_container_animation__tab{display:none}.n2_container_animation__tab--active{display:block}.n2_layer_window_animations_presets__buttons{display:grid;grid-template-columns:repeat(4,1fr);grid-gap:10px;padding:10px;background-color:#3a4956}.n2_layer_window_animations_presets__button{padding:10px 8px 5px;border-radius:3px;background-color:#6b7986;color:#fff;text-align:center;cursor:pointer}.n2_layer_window_animations_presets__button .ssi_24{margin-bottom:5px;display:block}.n2_layer_window_animations_presets__button--active{background-color:#1d81f9}.n2_layer_window_animations_presets__button_label{font-size:12px;line-height:20px;max-width:56px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.n2_layer_window_animations_presets__presets{display:none}.n2_layer_window_animations_presets__presets--active{display:block}.n2_layer_window_animations_presets__preset{padding:10px 20px;background-color:#2c3a45;border-bottom:1px solid #1e2830;color:#94b2c1;font-size:12px;line-height:20px;cursor:pointer;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.n2_layer_window_animations_editor .n2_fields_layer_window[data-field=fieldset-layer-window-layer-animation-basic-form-in],.n2_layer_window_animations_editor .n2_fields_layer_window[data-field=fieldset-layer-window-layer-animation-basic-form-loop],.n2_layer_window_animations_editor .n2_fields_layer_window[data-field=fieldset-layer-window-layer-animation-basic-form-out]{display:none}.n2_layer_window_animations_editor--settings .n2_fields_layer_window[data-field=fieldset-layer-window-layer-animation-basic-form-in],.n2_layer_window_animations_editor--settings .n2_fields_layer_window[data-field=fieldset-layer-window-layer-animation-basic-form-loop],.n2_layer_window_animations_editor--settings .n2_fields_layer_window[data-field=fieldset-layer-window-layer-animation-basic-form-out]{display:block}.n2_layer_window_animations_editor__title{display:flex;padding:7px 0;background-color:#1c2933;border-bottom:1px solid #131c23}.n2_layer_window_animations_editor__label{flex:1 1 auto;font-size:12px;line-height:30px;color:#94b2c1}.n2_layer_window_animations_editor__title_left{padding:0 10px}.n2_layer_window_animations_editor__button_play{display:inline-flex;align-items:center;justify-content:center;width:30px;height:30px;border-radius:2px;background-color:#6b7986;font-size:16px;color:#fff;cursor:pointer}.n2_layer_window_animations_editor__button_play--active{background-color:#1d81f9}.n2_layer_window_animations_editor__button_play--active .ssi_16::before{content:"\E607"}.n2_layer_window_animations_editor__title_right{padding:0 5px}.n2_layer_window_animations_editor__button_settings{display:inline-flex;align-items:center;justify-content:center;width:30px;height:30px;border-radius:2px;font-size:16px;color:#94b2c1;cursor:pointer}.n2_layer_window_animations_editor__button_settings--active{background-color:#1d81f9;color:#fff}.n2_layer_window_animations_editor__button_delete{display:inline-flex;align-items:center;justify-content:center;width:30px;height:30px;border-radius:2px;font-size:16px;color:#94b2c1;cursor:pointer}.n2_layer_window_animations_editor_basic{position:relative}.n2_layer_window_animations_editor_basic__keyframe.n2-ui-sortable-helper{width:100%;opacity:.5}.n2_layer_window_animations_editor_basic__keyframe--sort .n2_fields_layer_window{display:none}.n2_layer_window_animations_editor_basic__keyframe_title{display:flex;padding:5px 0;background-color:#2c3a45;border-bottom:1px solid #1e2830;color:#94b2c1;font-size:12px;line-height:30px;cursor:pointer}.n2_layer_window_animations_editor_basic__keyframe--active .n2_layer_window_animations_editor_basic__keyframe_title{background-color:#1d81f9;color:#fff}.n2_layer_window_animations_editor_basic--single-keyframe .n2_layer_window_animations_editor_basic__keyframe--active .n2_layer_window_animations_editor_basic__keyframe_title{background-color:#2c3a45;color:#94b2c1;cursor:initial}.n2_layer_window_animations_editor_basic__keyframe_label{flex:1 1 auto;padding:0 20px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.n2_layer_window_animations_editor_basic__keyframe_delete{margin:0 5px;display:inline-flex;align-items:center;justify-content:center;width:30px;height:30px;border-radius:2px;font-size:16px;color:#94b2c1;cursor:pointer}.n2_layer_window_animations_editor_basic__keyframe--active .n2_layer_window_animations_editor_basic__keyframe_delete{color:#fff}.n2_layer_window_animations_editor_basic--single-keyframe .n2_layer_window_animations_editor_basic__keyframe_delete{display:none}.n2_layer_window_animations_editor_basic__add_keyframe{display:flex;justify-content:center;padding:10px 0}.n2_layer_window_animations_editor_basic__button_add_keyframe{padding:0 10px;background-color:#6b7986;border-radius:3px;font-size:11px;line-height:30px;text-transform:uppercase;color:#fff;cursor:pointer}.n2_layer_window_animations_editor_basic__button_add_keyframe:HOVER{background-color:#8694a2}[data-devicespecific]{position:relative}#n2-ss-devicespecific-settings{position:absolute;bottom:40px;left:0;padding:0 10px;white-space:nowrap;z-index:2}html[dir=rtl] #n2-ss-devicespecific-settings{left:auto;right:0}[data-devicespecific=right] #n2-ss-devicespecific-settings{left:auto;right:0}html[dir=rtl] [data-devicespecific=right] #n2-ss-devicespecific-settings{left:0;right:auto}#n2-ss-devicespecific-settings *{cursor:pointer;background:#a1aeb5;display:inline-block;width:20px;height:20px;padding:5px;line-height:20px;text-align:center;font-size:16px;color:#fff}#n2-ss-devicespecific-settings>:first-child{border-top-left-radius:3px;border-bottom-left-radius:3px;border-left:0}html[dir=rtl] #n2-ss-devicespecific-settings>:first-child{border-radius:0 3px 3px 0}#n2-ss-devicespecific-settings>:last-child{border-top-right-radius:3px;border-bottom-right-radius:3px}html[dir=rtl] #n2-ss-devicespecific-settings>:last-child{border-radius:3px 0 0 3px}body[data-device=desktopPortrait] #n2-ss-devicespecific-settings .ssi_16--desktopportrait,body[data-device=desktopLandscape] #n2-ss-devicespecific-settings .ssi_16--desktoplandscape,body[data-device=tabletPortrait] #n2-ss-devicespecific-settings .ssi_16--tabletportrait,body[data-device=tabletLandscape] #n2-ss-devicespecific-settings .ssi_16--tabletportraitlarge,body[data-device=mobilePortrait] #n2-ss-devicespecific-settings .ssi_16--mobileportrait,body[data-device=mobileLandscape] #n2-ss-devicespecific-settings .ssi_16--mobileportraitlarge{background:#1d81f9}[data-placement=absolute] [data-placement]:not([data-placement=absolute]):not([data-placement=all]),[data-placement=content] [data-placement]:not([data-placement=content]):not([data-placement=all]),[data-placement=normal] [data-placement]:not([data-placement=normal]):not([data-placement=all]),[data-placement=default] [data-placement]:not([data-placement=default]):not([data-placement=all]),[data-placement=""] [data-placement]{display:none!important}.n2_layer_navigation{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;flex:0 0 auto;visibility:visible;display:flex;overflow:hidden;max-height:0;z-index:2}.n2_admin_editor_overlay--show-layer-navigation:not(.n2_admin_editor_overlay--show-add-more) .n2_layer_navigation{max-height:none;overflow:auto}.n2_layer_navigation_list{position:relative;width:340px;flex:0 0 auto;overflow-y:auto;overflow-x:hidden;background-color:#1c2933}.n2_layer_navigation--has_timeline .n2_layer_navigation_list{overflow:hidden}.n2_layer_navigation_list_title{position:-webkit-sticky;position:sticky;top:0;z-index:2;display:flex;align-items:center;background-color:#0c1924;height:48px}.n2_layer_navigation_list_title__hide{position:relative;z-index:2;margin:10px;display:inline-flex;align-items:center;justify-content:center;width:30px;height:30px;background-color:#1d81f9;border-radius:2px;cursor:pointer;color:#fff;font-size:16px}.n2_layer_navigation_list_title__label{z-index:1;position:absolute;left:0;top:0;width:100%;text-align:center;cursor:ns-resize;font-size:18px;line-height:48px;color:#fff}.n2_layer_navigation_list_layers{position:relative}.n2_layer_navigation_list_layers__sortable_placeholder{position:relative;height:0;z-index:1001;box-shadow:0 0 0 2px #1d81f9}.n2_layer_navigation_list_layer{position:relative}.n2_layer_navigation_list_layer__title{position:relative;display:flex;height:32px;background-color:#1c2933;border-right:1px solid #0c1924;border-bottom:1px solid #0c1924;color:#94b2c1;cursor:pointer}.n2_layer_navigation_list_layer__title[data-rows="2"]{height:64px}.n2_layer_navigation_list_layer__title:HOVER{background-color:#0c1924;border-bottom:1px solid #0c1924}.n2_layer_navigation_list_layer--active>.n2_layer_navigation_list_layer__title{background-color:#1d81f9;border-color:#1d81f9;color:#fff}.n2_layer_navigation_list_layer--absolute.n2_layer_navigation_list_layer--active>.n2_layer_navigation_list_layer__title{background-color:#5f39c2;border-color:#5f39c2;color:#fff}.n2_layer_navigation_list_layer--absolute.n2_layer_navigation_list_layer--active>.n2_layer_navigation_list_layer__title .n2_layer_navigation_list_layer__title_label_icon{color:#fff}.n2_layer_navigation_list_layer--drop>.n2_layer_navigation_list_layer__title{background:#0c1924;border-color:#0c1924}.n2_layer_navigation_list_layer__title_label{flex:1 1 auto;display:flex;align-items:center;line-height:32px;padding-left:10px;overflow:hidden}.n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__title_label{padding-left:20px}.n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layers__sortable_placeholder{margin-left:30px}.n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__title_label{padding-left:30px}.n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layers__sortable_placeholder{margin-left:40px}.n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__title_label{padding-left:40px}.n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layers__sortable_placeholder{margin-left:50px}.n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__title_label{padding-left:50px}.n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layers__sortable_placeholder{margin-left:60px}.n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__title_label{padding-left:60px}.n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layers__sortable_placeholder{margin-left:70px}.n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__title_label{padding-left:70px}.n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layers__sortable_placeholder{margin-left:80px}.n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__title_label{padding-left:80px}.n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layers__sortable_placeholder{margin-left:90px}.n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__title_label{padding-left:90px}.n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layers__sortable_placeholder{margin-left:100px}.n2_layer_navigation_list_layer__title_label_icon{display:inline-flex;align-items:center;justify-content:center;margin:0 3px;width:20px;height:20px;font-size:16px}.n2_layer_navigation_list_layer__title_label_icon[data-action=hide-show]:HOVER .ssi_16::before{content:"\E60F"}.n2_layer_navigation_list_layer__title--hidden>.n2_layer_navigation_list_layer__title_label .n2_layer_navigation_list_layer__title_label_icon .ssi_16::before{content:"\E923"}.n2_layer_navigation_list_layer__title_label_folder{display:inline-flex;align-items:center;justify-content:center;width:12px;height:12px;font-size:16px;cursor:pointer;opacity:.5}.n2_layer_navigation_list_layer__title_label_folder .ssi_16::before{content:"\E19E"}.n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__title_label_folder{margin-left:-12px}.n2_layer_navigation_list_layer__title_label_folder:HOVER{opacity:1}.n2_layer_navigation_list_layer--closed .n2_layer_navigation_list_layer__title_label_folder .ssi_16::before{content:"\E19D"}.n2_layer_navigation_list_layer__title_label_text{font-size:12px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;max-width:180px;text-transform:capitalize;font-weight:700}.n2_layer_navigation_list_layer__title_label_text[contenteditable=true]:focus{text-overflow:initial;cursor:initial}.n2_layer_navigation_list_layer__title_label_text::selection{background:rgba(255,255,255,.99);color:#1d81f9}.n2_layer_navigation_list_layer__title_actions{display:flex;align-items:center;padding:0 5px}.n2_layer_navigation_list_layer__title_action{margin:3px;display:inline-flex;align-items:center;justify-content:center;width:20px;height:20px;font-size:16px;cursor:pointer}.n2_layer_navigation_list_layer__title_label_rename{display:inline-flex;align-items:center;justify-content:center;width:12px;height:32px;opacity:.5;cursor:pointer}.n2_layer_navigation_list_layer__title_label_rename:HOVER{opacity:1}.n2_layer_navigation_list_layer__title--hidden .n2_layer_navigation_list_layer__title_action_hide .ssi_16::before{content:"\E923"}.n2_ss_layer_window .n2_layer_navigation_list_layer__title_action--add-animation,.n2_layer_navigation_list_layer__title--has-animations .n2_layer_navigation_list_layer__title_action--add-animation{display:none}.n2_ss_layer_window .n2_layer_navigation_list_layer__title_action--remove-animation,.n2_layer_navigation_list_layer__title:not(.n2_layer_navigation_list_layer__title--has-animations) .n2_layer_navigation_list_layer__title_action--remove-animation{display:none}.n2_layer_navigation_list_layer__title_absolute_marker{margin:2px;width:16px;height:16px;background-color:#5f39c2;border-radius:2px;text-align:center;font-size:12px;line-height:16px;color:#fff;font-weight:700}.n2_layer_navigation_list_layer--sorted{position:absolute;left:0;width:100%;overflow:hidden;opacity:.7}.n2_timeline{position:relative;flex:1 1 auto;overflow:scroll;background:#1c2933}.n2_timeline__inner_pane{display:flex;flex-flow:column}.n2_timeline__inner_pane--calculate-duration{width:auto!important}.n2_timeline__time_frames{position:-webkit-sticky;position:sticky;top:0;z-index:100000;display:flex;height:48px;background-color:#0c1924;padding-left:21px}.n2_timeline__inner_pane--calculate-duration .n2_timeline__time_frames{width:0;overflow:hidden}.n2_timeline__cti{position:absolute;left:-10px;top:3px;z-index:100001;width:0;height:1000%;border-left:1px solid RGBA(230,182,37,.5);margin-left:21px;cursor:ew-resize}.n2_timeline__cti_dot{position:relative;left:-6px;top:0;width:11px;height:11px;border-radius:0 50% 50% 50%;transform:rotate(-135deg);background-color:#e6b625}.n2_timeline__time_frames_overlay{position:absolute;left:0;top:0;width:100%;height:100%;z-index:2;display:flex}.n2_timeline__time_frames_overlay svg{flex:1 1 auto;margin-left:19px;height:48px;color:#3a454e}.n2_timeline__one_second{flex:0 0 auto;position:relative;width:195px;height:100%;padding-left:5px;font-size:12px;line-height:48px;color:#94b2c1}.n2_timeline_layer__animations{display:flex;height:32px;padding-left:20px;background-color:#1c2933;border-bottom:1px solid rgba(0,0,0,.2)}.n2_timeline_layer__animations[data-rows="2"]{height:64px}.n2_timeline_layer__animations.n2_timeline_layer__animations--repeated.n2_timeline_layer__animations--has-animation{padding-left:0}.n2_timeline_layer__animations--active{background-color:#0c1924}.n2_timeline_animation_repeat{position:relative;display:none;align-items:center;justify-content:flex-end;line-height:32px;font-size:12px;color:#fff;cursor:ew-resize;padding:0 5px}.n2_timeline_animation_repeat:after{position:absolute;top:50%;margin-top:-5px;display:block;content:'';width:10px;height:10px;border-radius:10px;background-color:rgba(255,255,255,.3)}.n2_timeline_animation_repeat--start{margin-left:-20px;padding:0 20px}.n2_timeline_animation_repeat--start:after{right:5px}.n2_timeline_animation_repeat--end{margin-left:-10px}.n2_timeline_animation_repeat--end:after{right:-15px}.n2_timeline_layer__animations.n2_timeline_layer__animations--repeated.n2_timeline_layer__animations--has-animation .n2_timeline_animation_repeat{display:flex}.n2_timeline_layer__animations.n2_timeline_layer__animations--repeated.n2_timeline_layer__animations--has-animation .n2_timeline_animation_group,.n2_timeline_layer__animations.n2_timeline_layer__animations--repeated.n2_timeline_layer__animations--has-animation .n2_timeline_animation_repeat--end{background-color:#3a4956}.n2_timeline_animation_group__row{display:flex}.nui_resize_bar__handle{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;z-index:90;position:absolute;top:0;width:18px}.nui_resize_bar__handle:after{margin:4px;display:block;content:'';width:10px;height:10px;border-radius:10px;background-color:RGBA(0,0,0,.5)}.nui_resize_bar__handle--e{cursor:e-resize;right:0}.nui_resize_bar__handle--w{cursor:w-resize;left:0}.n2_timeline_animation_bar{position:relative;height:18px;margin:7px 0;border-radius:10px;cursor:ew-resize;z-index:90}.n2_timeline_animation_bar:HOVER{z-index:90}.n2_timeline_animation_bar--in{background-color:#1d81f9}.n2_timeline_animation_bar--loop{background-color:#04c018}.n2_timeline_animation_bar--out{background-color:#6b7986}.n2_timeline_animation_bar--extra{background-color:#6b7986}.n2_timeline_animation_bar__delay{position:absolute;line-height:18px;text-align:right;right:100%;margin-right:5px;font-size:11px;color:#fff}.n2_timeline_animation_bar__delay--small{display:none}.n2_timeline_animation_bar__duration{margin:0 7px;line-height:18px;text-align:center;cursor:ew-resize;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:11px;color:#fff;text-transform:uppercase}.n2_timeline_layer--closed .n2_timeline_layer__children{display:none}.n2_timeline_overlay_playing{display:none;position:fixed;width:100%;height:100%;left:0;top:0;z-index:9999;cursor:pointer}.n2_body--timeline-preview .n2_timeline_overlay_playing{display:block}.n2_body--timeline-preview .n2_ss_layer_window{display:none!important}.n2_body--timeline-preview #n2-ss-0 .n2-ss-layer{cursor:default}.n2_body--timeline-preview #n2-ss-slide-canvas-container #n2-ss-0 .n2-ss-layer .nui_resize_normal__handle{display:none!important}#n2-ss-0[data-responsive=fullpage]{min-height:0!important}#n2-ss-0{box-shadow:0 3px 10px 0 rgba(0,0,0,.1)}#n2-ss-0 .n2-ss-widget{pointer-events:none;opacity:.5!important}#n2-ss-0-align{margin:0!important}body:not(.n2-ss-slider-visible) #n2-ss-0 .n2-ss-layer{opacity:0!important}.n2_slide_editor_slider{position:relative;z-index:1;display:inline-flex;align-items:flex-start;min-width:100%;min-height:calc(100vh - 60px);padding-bottom:100px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.n2_slide_editor_slider__editor{position:relative}.n2_slide_editor_slider__editor_inner{position:relative;background:#f0f4f7;box-shadow:0 2px 20px rgba(0,0,0,.2)}div#n2-ss-0:HOVER .n2-ss-static-slide:not(.n2-ss-currently-edited-slide){visibility:hidden;z-index:-1}div div#n2-ss-0 .n2-ss-static-slide div[data-sstype=slide],div div#n2-ss-0 .n2-ss-static-slide div[data-sstype=content],div div#n2-ss-0 .n2-ss-static-slide div[data-sstype=content] div.n2-ss-section-main-content{visibility:visible}.n2_ruler{display:none;z-index:1;position:absolute;left:0;top:0;height:100%;width:100%;direction:ltr;overflow:hidden;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}html[dir=rtl] .n2_ruler{left:auto;right:0}.n2_body--ruler .n2_ruler{display:block}.n2_ruler_mark{flex:0 0 auto;position:relative;vertical-align:top}.n2_ruler_mark__label{position:absolute;display:block;font-size:9px;color:#325c77;line-height:12px}.n2_ruler--vertical{top:14px;height:calc(100% - 14px)}.n2_ruler--vertical .n2_ruler__inner{width:14px;visibility:visible;position:relative;background:#fff;border-right:1px solid #94b2c1}.n2_ruler--vertical .n2_ruler_mark{width:3px;height:9px;border-top:1px solid #94b2c1}.n2_ruler--vertical .n2_ruler_mark--small{left:11px}.n2_ruler--vertical .n2_ruler_mark--large{width:100%}.n2_ruler--vertical .n2_ruler_mark__label{left:0;top:2px;writing-mode:vertical-rl;-ms-writing-mode:tb-rl;-webkit-writing-mode:vertical-rl;-webkit-text-orientation:upright;text-orientation:upright}.n2_ruler--horizontal{left:14px;width:calc(100% - 14px)}.n2_ruler--horizontal .n2_ruler__inner{visibility:visible;height:14px;position:relative;display:inline-flex;vertical-align:top;flex-wrap:nowrap;direction:ltr;background:#fff;border-bottom:1px solid #94b2c1}.n2_ruler--horizontal .n2_ruler_mark{width:9px;height:3px;border-left:1px solid #94b2c1}.n2_ruler--horizontal .n2_ruler_mark--small{top:11px}.n2_ruler--horizontal .n2_ruler_mark--large{height:100%}.n2_ruler--horizontal .n2_ruler_mark__label{left:2px;top:0}.n2_ruler__guide{visibility:hidden;position:absolute;left:0;top:0;z-index:2}.n2_ruler--vertical .n2_ruler__guide{width:100%;height:0}.n2_ruler--horizontal .n2_ruler__guide{width:0;height:100%}.n2_ruler__guide--measure{z-index:1}.n2_ruler__guide_border{visibility:visible;pointer-events:none}.n2_ruler--vertical .n2_ruler__guide_border{border-bottom:1px solid #ccaa2b;width:100%}.n2_ruler--horizontal .n2_ruler__guide_border{border-right:1px solid #ccaa2b;height:100%}.n2_ruler__guide--measure .n2_ruler__guide_border{border-color:red}.n2_ruler__guide_handle{visibility:visible;position:absolute;left:0;top:0;background:#e6b625;width:9px;height:9px;color:#fff;font-size:9px;line-height:9px;cursor:pointer;display:flex;justify-content:center;align-items:center}.n2_ruler__guide_handle .ssi_16{font-size:9px!important}.n2_ruler--vertical .n2_ruler__guide_handle{top:-4px}.n2_ruler--horizontal .n2_ruler__guide_handle{left:-4px}.n2_ruler_corner{display:block;position:absolute;left:0;top:0;width:14px;height:14px;border-right:1px solid #94b2c1;border-bottom:1px solid #94b2c1;visibility:visible;background:#fff;cursor:pointer}.n2_layer_contextual_hover_layer::after,.n2_layer_context_menu_target::after,.n2_layer_col_highlight::after,.n2_layer_highlight_row_structure::after{display:block!important;content:'';z-index:10;position:absolute;left:0;top:0;box-sizing:border-box!important;width:100%;height:100%;border:2px solid #6b7986;pointer-events:none}.n2_layer_contextual_hover_layer[data-pm=absolute]::after,.n2_layer_context_menu_target[data-pm=absolute]::after,.n2_layer_col_highlight[data-pm=absolute]::after,.n2_layer_highlight_row_structure[data-pm=absolute]::after{display:block!important;content:'';z-index:10;position:absolute;left:0;top:0;box-sizing:border-box!important;width:100%;height:100%;border:2px solid #5f39c2;pointer-events:none}.n2_layer_contextual_active_layer::after,.nui_resize_absolute--resizing::after,.n2_layer_resize_snap_to::after,.n2_layer_drag__dragging::after,.n2_layer_drag_snap_to::after,.n2_layer_parent_highlight::after{display:block!important;content:'';z-index:10;position:absolute;left:0;top:0;box-sizing:border-box!important;width:100%;height:100%;border:2px solid #1d81f9;pointer-events:none}.n2_layer_contextual_active_layer[data-pm=absolute]::after,.nui_resize_absolute--resizing[data-pm=absolute]::after,.n2_layer_resize_snap_to[data-pm=absolute]::after,.n2_layer_drag__dragging[data-pm=absolute]::after,.n2_layer_drag_snap_to[data-pm=absolute]::after,.n2_layer_parent_highlight[data-pm=absolute]::after{display:block!important;content:'';z-index:10;position:absolute;left:0;top:0;box-sizing:border-box!important;width:100%;height:100%;border:2px solid #5f39c2;pointer-events:none}.n2_layer_drag__dragging{opacity:.5}.n2_layer_drag_target_groups[data-sstype=content]::after,.n2_layer_drag_target_groups[data-sstype=col]::after{display:block!important;content:'';z-index:10;position:absolute;left:0;top:0;box-sizing:border-box!important;width:100%;height:100%;border:2px solid #6b7986;pointer-events:none}.n2_layer--creation-in-progress,.n2_layer--creation-in-progress *{visibility:hidden!important}.n2_admin_editor__content--hover .n2-ss-layer-content .n2-ss-layer.n2-active{z-index:10}.n2_admin_editor__content--hover .n2-ss-layer.n2-active{overflow:visible!important}.n2-ss-section-main-content{min-height:20px}.n2-ss-layer-row .n2-ss-layer-content{min-height:20px}[data-visibility=hidden],[data-visibility=hidden] *{visibility:hidden!important;transition:none!important}.n2_admin_editor__content--hover .n2-ss-layer.n2-active{z-index:9999999!important}.n2_layer_layer_list_hover--force-zindex{z-index:9999999!important}.n2-ss-layer-placeholder{display:block;position:relative;width:100%;height:0;z-index:11}.n2-ss-layer-placeholder::after{display:block!important;content:'';position:absolute;left:0;top:-3px;box-sizing:border-box!important;width:100%;border:3px solid #1d81f9}.n2_smartguide{background:#4affff;position:absolute;left:0;top:0;z-index:1000000;display:none}.n2_smartguide--horizontal{width:100%;height:1px}.n2_smartguide--vertical{height:100%;width:1px}.n2-ss-currently-edited-slide .n2-ss-layer[data-sstype=col],.n2-ss-currently-edited-slide .n2-ss-layer[data-sstype=col] .n2-ss-layer{cursor:pointer}.ui-column-width-handle{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:none;position:absolute;top:25%;height:50%;cursor:ew-resize;width:5px;background:#1d81f9;z-index:88;opacity:.5;box-sizing:border-box!important;border-radius:5px}.ui-column-width-handle--visible{display:block}.n2-ss-layer:not(.n2-ss-layer--block)>.n2-ss-layer-row>.ui-column-width-handle,.n2-ss-layer-row[data-row-wrapped="1"]>.ui-column-width-handle{display:none!important}#n2-ss-0 .n2-ss-layer{cursor:not-allowed}#n2-ss-0 .n2-ss-currently-edited-slide .n2-ss-layer{cursor:pointer}div#n2-ss-0 .n2-ss-layer[data-sstype=content] .n2-ss-layer.nui-draggable-dragging,div#n2-ss-0 .n2-ss-layer[data-sstype=col] .n2-ss-layer.nui-draggable-dragging{z-index:100000;outline:0!important}#n2-ss-0 .n2-ss-slide:not(.n2-ss-currently-edited-slide){opacity:.3}.nui_resize_normal__handle{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;position:absolute;z-index:90;display:none;border:2px solid #1d81f9;height:6px;width:6px;background:#fff;border-radius:50px;transform-origin:50% 50%}.nui_resize_normal__handle:HOVER{transform:scale(1.5)}.nui_resize_normal__handle.nui-enabled{display:block}.nui_resize_normal__handle--none{border-color:#6b7986}.nui_resize_normal__handle--e{cursor:e-resize;right:-4px;top:50%;margin-top:-4px}.nui_resize_normal__handle--w{cursor:w-resize;left:-4px;top:50%;margin-top:-4px}.nui_resize_normal__handle--s{cursor:s-resize;bottom:-4px;left:50%;margin-left:-4px}.nui_spacing__handle{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;position:absolute;display:block;z-index:89;background:#1d81f9;overflow:hidden;opacity:0}.nui_spacing__handle.nui-enabled{opacity:.5}.nui_spacing__handle--zero{background:#6b7986}.nui_spacing__handle--negative{background:#be331f}.nui_spacing__handle:HOVER.nui-enabled,.nui_spacing__handle--spacing.nui-enabled{opacity:.8}.nui_spacing__handle--n.nui_spacing__handle.nui-enabled{min-height:5px;cursor:s-resize}.nui_spacing__handle--n.nui_spacing__handle--padding{top:0;margin-left:0;left:25%;width:50%}.nui_spacing__handle--n.nui_spacing__handle--margin{left:0;bottom:100%;width:100%}.nui_spacing__handle--e.nui_spacing__handle.nui-enabled{min-width:5px;cursor:w-resize}.nui_spacing__handle--e.nui_spacing__handle--padding{top:25%;margin-top:0;right:0;height:50%}.nui_spacing__handle--e.nui_spacing__handle--margin{top:0;left:100%;height:100%}.nui_spacing__handle--s.nui_spacing__handle.nui-enabled{min-height:5px;cursor:n-resize}.nui_spacing__handle--s.nui_spacing__handle--padding{bottom:0;margin-left:0;left:25%;width:50%}.nui_spacing__handle--s.nui_spacing__handle--margin{bottom:auto;top:100%;left:0;width:100%}.nui_spacing__handle--w.nui_spacing__handle.nui-enabled{min-width:5px;cursor:e-resize}.nui_spacing__handle--w.nui_spacing__handle--padding{top:25%;margin-top:0;left:0;height:50%}.nui_spacing__handle--w.nui_spacing__handle--margin{left:auto;right:100%;top:0;height:100%}.n2-ss-layer.n2_layer_contextual_hover_layer:not(.n2-active)>.nui_spacing__handle--margin,.n2-ss-layer.n2_layer_contextual_hover_layer:not(.n2-active)>.nui_spacing__handle--padding,.n2-ss-layer.n2_layer_contextual_hover_layer:not(.n2-active)>div>.nui_spacing__handle--padding{display:block;min-width:0;min-height:0;background:#6b7986;opacity:.5}#n2-ss-0 .n2-ss-layer{cursor:not-allowed}#n2-ss-0 .n2-ss-currently-edited-slide .n2-ss-layer{cursor:pointer}div#n2-ss-0 .n2-ss-layer[data-sstype=content] .n2-ss-layer.nui-draggable-dragging,div#n2-ss-0 .n2-ss-layer[data-sstype=col] .n2-ss-layer.nui-draggable-dragging{z-index:100000;outline:0!important}.n2-ss-currently-edited-slide .n2-ss-layer[data-sstype=col],.n2-ss-currently-edited-slide .n2-ss-layer[data-sstype=col] .n2-ss-layer{cursor:pointer}.ui-column-width-handle{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:none;position:absolute;top:25%;height:50%;cursor:ew-resize;width:5px;background:#1d81f9;z-index:88;opacity:.5;box-sizing:border-box!important;border-radius:5px}.ui-column-width-handle--visible{display:block}.n2-ss-layer:not(.n2-ss-layer--block)>.n2-ss-layer-row>.ui-column-width-handle,.n2-ss-layer-row[data-row-wrapped="1"]>.ui-column-width-handle{display:none!important}.n2-ss-layer-cc,.nui_resize_absolute__handle{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;position:absolute;z-index:90;display:none;border:2px solid #5f39c2;height:6px;width:6px;background:#fff;border-radius:50px;transform-origin:50% 50%}.n2-ss-layer-cc:HOVER,.nui_resize_absolute__handle:HOVER{transform:scale(1.5)}.n2-ss-layer-cc.nui-enabled,.nui_resize_absolute__handle.nui-enabled{display:block}.n2-ss-layer-cc{opacity:0;left:50%;top:50%;margin-top:-5px;margin-left:-5px}.n2-ss-layer-cc:HOVER{opacity:1}.n2-ss-layer[data-align=left][data-valign=top] .nui_resize_absolute__handle--nw,.n2-ss-layer[data-align=left][data-valign=middle] .nui_resize_absolute__handle--w,.n2-ss-layer[data-align=left][data-valign=bottom] .nui_resize_absolute__handle--sw,.n2-ss-layer[data-align=center][data-valign=top] .nui_resize_absolute__handle--n,.n2-ss-layer[data-align=center][data-valign=middle] .n2-ss-layer-cc,.n2-ss-layer[data-align=center][data-valign=bottom] .nui_resize_absolute__handle--s,.n2-ss-layer[data-align=right][data-valign=top] .nui_resize_absolute__handle--ne,.n2-ss-layer[data-align=right][data-valign=middle] .nui_resize_absolute__handle--e,.n2-ss-layer[data-align=right][data-valign=bottom] .nui_resize_absolute__handle--se{background:#5f39c2;opacity:1;border:2px solid #fff}.nui_resize_absolute__handle--e{cursor:e-resize;right:-4px;top:50%;margin-top:-5px}.nui_resize_absolute__handle--w{cursor:w-resize;left:-4px;top:50%;margin-top:-5px}.nui_resize_absolute__handle--n{cursor:n-resize;left:50%;top:-4px;margin-left:-5px}.nui_resize_absolute__handle--ne{cursor:ne-resize;right:-4px;top:-4px}.nui_resize_absolute__handle--nw{cursor:nw-resize;left:-4px;top:-4px}.nui_resize_absolute__handle--s{cursor:s-resize;bottom:-4px;left:50%;margin-left:-5px}.nui_resize_absolute__handle--se{cursor:se-resize;right:-4px;bottom:-4px}.nui_resize_absolute__handle--sw{cursor:sw-resize;left:-4px;bottom:-4px}.n2-ss-item-overlay{display:none;position:absolute;top:0;left:0;width:100%;height:100%}.n2-ss-item-html .n2-ss-item-overlay,.n2-ss-item-iframe .n2-ss-item-overlay{display:block}.n2-ss-item{position:relative;float:left;width:100%}.n2-ss-item-video,.n2-ss-item-youtube,.n2-ss-item-vimeo,.n2-ss-item-area,.n2-ss-item-imagearea{height:100%}.n2_ss_absolute_parent_picker{display:inline-flex;align-items:center;justify-content:center;width:30px;height:30px;background:#6b7986;border-radius:3px;cursor:pointer;line-height:30px;color:#fff}.n2_ss_absolute_parent_picker .ssi_16::before{content:"\E64D"}.n2_ss_absolute_parent_picker:HOVER{background-color:#8694a2}.n2_ss_absolute_parent_picker--active{background:#1d81f9}.n2_ss_absolute_parent_picker--active .ssi_16::before{content:"\E64B"}.n2_ss_absolute_parent_picker--active:HOVER{background-color:#338ef9}.n2_ss_absolute_parent_picker__overlay{position:absolute;left:0;top:0;width:100%;height:100%;z-index:1000000;box-shadow:inset 0 0 0 1px rgba(0,0,0,.8);cursor:pointer;background:#5f39c2;opacity:.5}.n2_ss_absolute_parent_picker__overlay--tile{width:33%;height:33%}.n2_ss_absolute_parent_picker__overlay:HOVER,.n2_ss_absolute_parent_picker__overlay--selected{opacity:1}.n2_ss_absolute_parent_picker__component--focused{z-index:2147483647!important}.n2_field_generator_data_button{position:absolute;right:-2px;top:-26px;z-index:10;display:inline-flex;align-items:center;padding:0 5px;background-color:#1d81f9;border-radius:3px;color:#fff;cursor:pointer}.n2_field_generator_data_button:HOVER{background-color:#338ef9}.n2_field_generator_data_button_icon{flex:0 0 auto;display:flex;align-items:center;justify-content:center}.n2_field_generator_data_button_label{padding:0 2px;font-size:10px;line-height:22px;font-weight:700;text-transform:uppercase}.n2_layer_contextual{display:none;position:absolute;z-index:8;height:28px;margin-top:-28px}.n2_layer_contextual--hover-section{z-index:7;opacity:.7}.n2_layer_contextual--hover{z-index:9}.n2_layer_contextual--hover.n2_layer_contextual--hover-active{visibility:hidden;pointer-events:none}.n2_layer_contextual--visible{display:inline-flex}.n2_layer_contextual__inner{display:inline-flex;background-color:#1d81f9;border-top-left-radius:3px;border-top-right-radius:3px;line-height:30px;overflow:hidden}.n2_layer_contextual--invert .n2_layer_contextual__inner{border-radius:0 0 3px 3px}.n2_layer_contextual__label{padding:0 6px;font-size:12px;line-height:30px;text-transform:uppercase;color:#fff;cursor:pointer;max-width:100px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.n2_layer_contextual__button{height:28px;padding:0 6px;display:inline-flex;align-items:center;justify-content:center;color:#fff;cursor:pointer}.n2_layer_contextual__button--active{background:#1167cd}.n2_layer_contextual[data-color=purple] .n2_layer_contextual__inner{background-color:#5f39c2}.n2_layer_contextual[data-color=purple] .n2_layer_contextual__button--active{background-color:#4c2d9b}.n2_layer_contextual[data-color=grey] .n2_layer_contextual__inner{background-color:#6b7986}.n2_layer_contextual__button--responsive-tools{display:none}body:not([data-device=desktopPortrait]) .n2_layer_contextual--has-responsive-tools .n2_layer_contextual__button--responsive-tools{display:inline-flex}.n2_layer_contextual_responsive_tools{display:flex;height:30px}.n2_layer_contextual_responsive_tools .ssi_16{display:block;padding:0 5px;color:#94b2c1}.n2_layer_contextual_responsive_tools__hide{padding:7px 0;cursor:pointer}.n2_layer_contextual_responsive_tools__hide .ssi_16::before{content:"\E60F"}.n2_layer_contextual_responsive_tools__hide--hidden .ssi_16::before{content:"\E923"}.n2_layer_contextual_responsive_tools__text_scale{display:flex}.n2_layer_contextual_responsive_tools__text_scale input{margin:0;padding:0;height:30px;line-height:30px;font-size:12px;color:#325c77;text-align:right}.n2_layer_contextual_responsive_tools__text_scale input,.n2_layer_contextual_responsive_tools__text_scale input:FOCUS{box-shadow:none;outline:0;border:0}.n2_layer_contextual_responsive_tools__text_scale input::-webkit-inner-spin-button,.n2_layer_contextual_responsive_tools__text_scale input::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.n2_layer_contextual_responsive_tools__text_scale input[type=number]{-moz-appearance:textfield}.n2_layer_contextual_responsive_tools__text_scale .nui-slider{position:relative;background-color:#94b2c1;height:6px;margin:12px 10px;border-radius:10px}.n2_layer_contextual_responsive_tools__text_scale .nui-slider .nui-slider-handle{position:absolute;top:0;z-index:2;width:10px;height:10px;background-color:#fff;border:2px solid #94b2c1;margin:-4px -7px 0;border-radius:50px;cursor:ew-resize;-ms-touch-action:none;touch-action:none}.n2_layer_contextual_responsive_tools__text_scale_percent{line-height:30px;font-size:12px;color:#325c77}.n2_context_menu{font-family:"Inter-Nextend",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;line-height:1.3;font-size:16px;-webkit-font-smoothing:antialiased;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;z-index:1000000;position:fixed;left:0;top:0}.n2_context_menu a{transition:none 0s;text-decoration:none;box-shadow:none}.n2_context_menu__inner{background-color:#fff;border-radius:3px;box-shadow:0 1px 5px 1px rgba(55,77,88,.2);overflow:hidden}.n2_context_menu__item{display:flex;align-items:center;padding:0 10px;height:36px;cursor:default}.n2_context_menu__item--has-action{cursor:pointer}.n2_context_menu__item--has-action:HOVER,.n2_context_menu__item--active{background-color:#1d81f9}.n2_context_menu__item_icon{padding:0 5px;color:#94b2c1}.n2_context_menu__item--color-red .n2_context_menu__item_icon{color:#c43e2a}.n2_context_menu__item--has-action:HOVER .n2_context_menu__item_icon,.n2_context_menu__item--active .n2_context_menu__item_icon{color:#fff}.n2_context_menu__item_onoff .n2_context_menu__item_icon::before{content:"\E19A"}.n2_context_menu__item_onoff--on .n2_context_menu__item_icon::before{content:"\E199"}.n2_context_menu__item_label{padding:0 5px;font-size:12px;color:#325c77;white-space:nowrap;text-transform:capitalize}.n2_context_menu__item--color-red .n2_context_menu__item_label{color:#c43e2a}.n2_context_menu__item--has-action:HOVER .n2_context_menu__item_label,.n2_context_menu__item--active .n2_context_menu__item_label{color:#fff}.n2_context_menu__sub_menu{display:none;z-index:2;position:absolute;left:0;top:0;background-color:#fff;border-radius:3px;box-shadow:0 1px 5px 1px rgba(55,77,88,.2);overflow:hidden}.n2_context_menu__sub_menu--active{display:block}html[data-component=layer][data-component-sub=image] .n2_field[data-field=layerfont-size],html[data-component=layer][data-component-sub=transition] .n2_field[data-field=layerfont-size],html[data-component=layer][data-component-sub=youtube] .n2_field[data-field=layerfont-size],html[data-component=layer][data-component-sub=vimeo] .n2_field[data-field=layerfont-size],html[data-component=layer][data-component-sub=video] .n2_field[data-field=layerfont-size],html[data-component=layer][data-component-sub=audio] .n2_field[data-field=layerfont-size],html[data-component=layer][data-component-sub=imagearea] .n2_field[data-field=layerfont-size],html[data-component=layer][data-component-sub=area] .n2_field[data-field=layerfont-size],html[data-component=layer][data-component-sub=iframe] .n2_field[data-field=layerfont-size]{display:none}html[data-component=layer][data-component-sub=animatedHeading] .n2_field .n2_field_decoration__option[data-value=underline],html[data-component=layer][data-component-sub=highlightedHeading] .n2_field .n2_field_decoration__option[data-value=underline]{display:none}.n2_slide_generator_box{position:relative;width:270px;height:180px;border-radius:3px;overflow:hidden;display:flex;flex-flow:column;justify-content:flex-end;background-color:#dce2e5;background-position:left top}.n2_slide_generator_box__title{display:flex;align-items:center;padding:10px;background-color:#0c1924}.n2_slide_generator_box__title_label{flex:1 1 auto;padding:0 5px;font-size:14px;line-height:20px;color:#bdcfd9;display:flex;align-items:center}.n2_slide_generator_box__title_label_inner{margin-right:5px}html[dir=rtl] .n2_slide_generator_box__title_label_inner{margin-right:0;margin-left:5px}.n2_slide_generator_box__title_button{padding:0 10px;background-color:#1d81f9;border-radius:3px;font-size:11px;line-height:30px;text-align:center;text-transform:uppercase}.n2_slide_generator_box__title_button:HOVER{background-color:#338ef9}.n2_slide_generator_box__title_button,.n2_slide_generator_box__title_button:HOVER,.n2_slide_generator_box__title_button:FOCUS{color:#fff}.n2_slide_generator_step1__installed_generators{padding:40px;display:grid;grid-gap:32px;grid-template-columns:repeat(auto-fill,270px)}.n2_slide_generator_step1__not_installed{padding:10px 40px 40px 40px}.n2_slide_generator_step1__not_installed_label{font-size:22px;line-height:32px;color:#283f4d}.n2_slide_generator_step1__not_installed_generators{padding-top:20px;display:grid;grid-gap:32px;grid-template-columns:repeat(auto-fill,270px)}.n2_slide_generator_step3{padding:40px;display:grid;grid-gap:32px;grid-template-columns:repeat(auto-fill,270px)}.n2_generator_records_table{margin:20px 0;display:grid;overflow:auto;background:#fff;grid-gap:2px}.n2_generator_records_table__heading{padding:0 10px;background-color:#f0f4f7;color:#325c77;font-size:12px;line-height:30px;font-weight:700}.n2_generator_records_table__cell{padding:0 10px;background-color:#f0f4f7;color:#325c77;font-size:12px;line-height:30px;max-height:100px;min-width:150px;overflow:auto}.n2_slider_preview_area{margin-top:20px;display:flex;justify-content:center;min-height:150vh}.n2_slider_preview_area__inner{position:relative;background-color:#fff;box-shadow:0 2px 20px 0 rgba(0,0,0,.2)}.n2_preview{display:flex;flex-flow:column;align-items:center;height:calc(100vh - 60px)}.n2_preview__ruler{width:100%;position:relative;flex:0 0 auto;height:20px;background-color:#94b2c1;overflow:hidden}.n2_preview__ruler_device{position:absolute;left:50%;top:0;height:100%;cursor:pointer}.n2_preview__ruler_device div{border-left:1px solid #fff;border-right:1px solid #fff;padding:0 5px;height:100%}.n2_preview__ruler_device:HOVER div{background-color:#1d81f9}.n2_preview__ruler--ready .n2_preview__ruler_device{transition:width .5s,margin-left .5s}.n2_preview__ruler_label{position:absolute;left:50%;top:0;z-index:10;width:200px;margin-left:-100px;pointer-events:none;text-align:center;font-size:12px;line-height:20px;color:#fff}.n2_preview__device_screen{position:relative;flex:1 1 auto;width:100%;height:100%;display:flex;justify-content:center;padding:0 20px 20px;box-sizing:border-box;overflow:hidden}.n2_preview__device_info{margin-top:13px;position:relative;flex:0 0 auto;width:100%;height:26px;display:flex;align-items:center;justify-content:center;font-size:13px;line-height:26px;color:#325c77}.n2_preview__device_info .ssi_16{margin:0 5px;color:#94b2c1}.n2_preview__device_info_state{font-weight:700}.n2_preview__notification_scale{pointer-events:none;position:absolute;left:50%;top:30px;z-index:10;background:RGBA(0,0,0,.5);width:90px;margin-left:-45px;color:#fff;text-align:center;border-radius:5px;line-height:48px;font-size:16px;transition:opacity .5s ease 0s;opacity:0}.n2_preview__notification_scale--visible{opacity:1}.n2_preview__device_screen_inner{position:relative;flex:1 1 auto;width:100%;height:100%;max-width:100%;max-height:100%}.n2_preview__device_screen_inner iframe{border:0;max-width:none;width:100%;height:100%;box-shadow:0 2px 20px rgba(0,0,0,.2);transform-origin:50% 0;transition:transform .5s}.n2_preview__frame_overlay{display:none;position:absolute;left:0;top:0;width:100%;height:100%}.n2_body--resize-horizontal .n2_preview__frame_overlay,.n2_body--resize-vertical .n2_preview__frame_overlay{display:block}.n2_preview__resize_width{position:absolute;top:0;right:-8px;width:8px;height:100%;background:#1d81f9;opacity:0;cursor:ew-resize;transition:opacity .3s}.n2_preview__device_screen:HOVER .n2_preview__resize_width{opacity:.5}.n2_preview__device_screen .n2_preview__resize_width:HOVER,.n2_body--resize-horizontal .n2_preview__device_screen .n2_preview__resize_width{opacity:1}.n2_body--scale-preview .n2_preview__resize_width{opacity:0!important}.n2_preview__resize_height{position:absolute;left:0;bottom:-8px;width:100%;flex:0 0 auto;height:8px;background:#1d81f9;opacity:0;cursor:ns-resize;transition:opacity .3s}.n2_preview__device_screen:HOVER .n2_preview__resize_height{opacity:.5}.n2_preview__device_screen .n2_preview__resize_height:HOVER,.n2_body--resize-vertical .n2_preview__device_screen .n2_preview__resize_height{opacity:1}.n2_body--scale-preview .n2_preview__resize_height{opacity:0!important}#n2_preview_frame{display:block;width:100%;height:100%}.n2_preview_toolbar{display:flex;align-items:center}.n2_preview_toolbar__size{margin:0 10px;display:flex}.n2_preview_toolbar__editable{width:46px;height:28px;background-color:#2c3a45;border-radius:3px;font-size:12px;line-height:28px;color:#bdcfd9;text-align:center}.n2_preview_toolbar__x{margin:0 10px;font-size:12px;line-height:28px;color:#94b2c1}select.n2_preview_toolbar__scale{margin:0;padding:0 10px;max-width:initial;width:auto;height:28px;min-height:28px;font-family:inherit;-webkit-appearance:menulist;-moz-appearance:menulist;background:#2c3a45;font-size:12px;line-height:28px}select.n2_preview_toolbar__scale,select.n2_preview_toolbar__scale:FOCUS,select.n2_preview_toolbar__scale:HOVER{color:#bdcfd9;box-shadow:none;border:0}.n2_html--slider-preview{background:#fff}.n2_html--slider-preview body{width:100%;overflow-x:hidden;overflow-y:scroll;background:#fff}@media only screen and (max-width:700px){.n2_html--slider-preview::-webkit-scrollbar{width:0}.n2_html--slider-preview{-ms-overflow-style:none;scrollbar-width:none}}.n2_getting_started{display:flex;flex-flow:column;align-items:center;padding:60px 0 120px}.n2_getting_started__heading{font-size:32px;line-height:32px;color:#283f4d}.n2_getting_started__subheading{font-size:14px;line-height:28px;color:#325c77}.n2_getting_started__video{margin-top:20px;position:relative;width:100%;max-width:calc(100vh - 100px)}.n2_getting_started__video .n2_getting_started__video_placeholder{padding-top:56.25%;height:0}.n2_getting_started__video iframe,.n2_getting_started__video img{position:absolute;left:0;top:0;width:100%;height:100%;border:0}.n2_getting_started__buttons{margin-top:20px;display:flex;width:100%}.n2_getting_started__buttons>div{width:50%}.n2_getting_started__button_dont_show{text-align:right;padding:0 10px}.n2_getting_started__button_dont_show a{display:inline-block;padding:0 20px;font-size:14px;line-height:36px}.n2_getting_started__button_dont_show a,.n2_getting_started__button_dont_show a:HOVER,.n2_getting_started__button_dont_show a:FOCUS{color:#1375e9}html[dir=rtl] .n2_getting_started__button_dont_show{text-align:left}.n2_getting_started__button_dashboard{text-align:left;padding:0 10px}.n2_getting_started__button_dashboard a{display:inline-block;padding:0 20px;background-color:#04c018;border-radius:3px;font-size:12px;line-height:36px;font-weight:700;text-align:center;text-transform:uppercase}.n2_getting_started__button_dashboard a:HOVER{background-color:#07ca1c}.n2_getting_started__button_dashboard a,.n2_getting_started__button_dashboard a:HOVER,.n2_getting_started__button_dashboard a:FOCUS{color:#fff}html[dir=rtl] .n2_getting_started__button_dashboard{text-align:right}.n2_page_activate{display:flex;flex-flow:column;align-items:center;padding:60px 0 120px}.n2_page_activate__heading{font-size:32px;line-height:32px;color:#283f4d}.n2_page_activate__subheading{font-size:14px;line-height:28px;color:#325c77}.n2_page_activate__video{margin-top:20px;position:relative;width:100%;max-width:calc(100vh - 100px)}.n2_page_activate__video .n2_page_activate__video_placeholder{padding-top:56.25%;height:0}.n2_page_activate__video iframe{position:absolute;left:0;top:0;width:100%;height:100%}.n2_page_activate__buttons{margin-top:20px;display:flex;width:100%}.n2_page_activate__buttons>div{width:50%}.n2_page_activate__button_dont_show{text-align:right;padding:0 10px}.n2_page_activate__button_dont_show a{display:inline-block;padding:0 20px;font-size:14px;line-height:36px}.n2_page_activate__button_dont_show a,.n2_page_activate__button_dont_show a:HOVER,.n2_page_activate__button_dont_show a:FOCUS{color:#1375e9}.n2_page_activate__button_dashboard{text-align:left;padding:0 10px}.n2_page_activate__button_dashboard a{display:inline-block;padding:0 20px;background-color:#04c018;border-radius:3px;font-size:12px;line-height:36px;font-weight:700;text-align:center;text-transform:uppercase}.n2_page_activate__button_dashboard a:HOVER{background-color:#07ca1c}.n2_page_activate__button_dashboard a,.n2_page_activate__button_dashboard a:HOVER,.n2_page_activate__button_dashboard a:FOCUS{color:#fff}.n2_page_free_go_pro{display:flex;padding:30px 0 90px;flex-wrap:wrap;justify-content:center}.n2_page_free_go_pro__col{display:flex;flex-flow:column;align-items:center;padding:30px}.n2_page_free_go_pro__heading{font-size:32px;line-height:32px;color:#283f4d}.n2_page_free_go_pro__subheading{margin-bottom:20px;font-size:14px;line-height:28px;color:#325c77}.n2_page_free_go_pro_already_purchased{position:relative;display:flex;flex-flow:column;align-items:center;width:572px;height:392px;background-color:#fff;border-radius:5px;box-shadow:0 10px 8px -10px rgba(0,0,0,.1)}.n2_page_free_go_pro_already_purchased:HOVER{box-shadow:0 10px 8px -10px rgba(0,0,0,.2)}.n2_page_free_go_pro_already_purchased__logo{margin-top:44px;display:flex;align-items:center;justify-content:center;width:100px;height:100px;background-color:rgba(4,192,24,.1);border-radius:50px;color:#04c018}.n2_page_free_go_pro_already_purchased__heading{margin-top:9px;font-size:18px;line-height:30px;color:#283f4d;font-weight:700}.n2_page_free_go_pro_already_purchased__paragraph{width:380px;height:78px;color:#325c77;font-size:14px;line-height:26px;text-align:center}.n2_page_free_go_pro_already_purchased__paragraph a,.n2_page_free_go_pro_already_purchased__paragraph a:HOVER,.n2_page_free_go_pro_already_purchased__paragraph a:FOCUS{color:#1375e9}.n2_page_free_go_pro_already_purchased__button{margin:20px 0 10px;padding:0 20px;min-width:260px;background-color:#04c018;border-radius:3px;text-align:center;font-size:12px;line-height:36px;text-transform:uppercase;font-weight:700}.n2_page_free_go_pro_already_purchased__button,.n2_page_free_go_pro_already_purchased__button:HOVER,.n2_page_free_go_pro_already_purchased__button:FOCUS{color:#fff}.n2_page_free_go_pro_already_purchased__button:HOVER{background-color:#07ca1c}.n2_help_center{display:flex;flex-flow:column;align-items:center;background-color:#f0f4f7;text-align:center;padding:0 40px}.n2_help_center a:HOVER{color:#005bc6}.n2_help_center a,.n2_help_center a:FOCUS{color:#1375e9}.n2_help_center__getting_started{width:100%;max-width:1140px;margin-top:44px}.n2_help_center__getting_started__heading{font-size:32px;line-height:32px;color:#283f4d}.n2_help_center__getting_started__subheading{font-size:14px;line-height:28px;color:#325c77}.n2_help_center__getting_started__video{margin-top:20px;position:relative;width:100%;max-width:1140px}.n2_help_center__getting_started__video .n2_help_center__getting_started__video_placeholder{padding-top:56.25%;height:0}.n2_help_center__getting_started__video iframe,.n2_help_center__getting_started__video img{position:absolute;left:0;top:0;width:100%;height:100%}.n2_help_center__conflicts{max-width:1140px;width:100%;box-sizing:border-box;border-radius:3px 3px 0 0;background-color:#fff;box-shadow:0 1px 5px 1px rgba(55,77,88,.2);padding:48px 20px 25px;margin-top:60px}.n2_help_center__conflicts_test_api{margin-bottom:20px}.n2_help_center__search{width:100%;box-sizing:border-box;padding:60px 20px 0}.n2_help_center__search_heading{color:#283f4d;font-size:22px;line-height:32px}.n2_help_center__search_field{margin-top:20px}.n2_help_center__search_field form{display:inline-flex;width:100%;max-width:600px}.n2_help_center__search_field form input{flex:1 1 auto;margin:0;padding:0 20px;border:2px solid #94b2c1;border-right:0;border-radius:3px 0 0 3px;background-color:#fff;color:#325c77;font-size:14px;line-height:46px;height:auto}.n2_help_center__search_field form input,.n2_help_center__search_field form input:FOCUS{box-shadow:none;outline:0}.n2_help_center__search_field form input:FOCUS{border-color:#1d81f9}html[dir=rtl] .n2_help_center__search_field form input{border:2px solid #94b2c1;border-left:0;border-radius:0 3px 3px 0}.n2_help_center__search_field form button{padding:0 35px;background-color:#1d81f9;border:0;border-top-right-radius:3px;border-bottom-right-radius:3px;color:#fff;font-size:12px;line-height:50px;text-transform:uppercase}.n2_help_center__search_field form button:HOVER{background-color:#338ef9}.n2_help_center__search_field form button,.n2_help_center__search_field form button:FOCUS{box-shadow:none;outline:0}html[dir=rtl] .n2_help_center__search_field form button{border-radius:3px 0 0 3px}.n2_help_center__actions{margin-top:60px;max-width:1140px;width:100%;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:10px 60px}.n2_help_center__action{position:relative;padding:20px;background-color:#fff;border-radius:3px;box-shadow:0 1px 5px 1px rgba(55,77,88,.2);text-align:center}.n2_help_center__action_link{position:absolute;z-index:2;left:0;top:0;width:100%;height:100%}.n2_help_center__action_icon{margin-top:30px;text-align:center;color:#1375e9}.n2_help_center__conflicts_icon{color:#1375e9}.n2_help_center__action_label,.n2_help_center__conflicts_label{margin-top:16px;color:#283f4d;font-size:18px;line-height:28px}.n2_help_center__conflicts_description,.n2_help_center__action_description{margin:5px 0 15px;color:#325c77;font-size:14px;line-height:24px}.n2_help_center__articles{margin-top:20px;max-width:1140px;width:100%;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:10px 60px}.n2_help_center__articles_heading{color:#283f4d;font-size:22px;line-height:32px;margin-top:60px;max-width:1140px;width:100%}.n2_help_center__article{position:relative;padding:20px 20px;background-color:#fff;border-radius:3px;box-shadow:0 1px 5px 1px rgba(55,77,88,.2);display:flex;align-items:center;color:#325c77;font-size:14px;line-height:20px}.n2_help_center__article:HOVER{color:#1375e9}.n2_help_center__article_link{position:absolute;z-index:2;left:0;top:0;width:100%;height:100%}.n2_help_center__article_label{flex:1 1 auto;text-align:left}html[dir=rtl] .n2_help_center__article_label{text-align:right}.n2_help_center__article_icon{font-size:16px}html[dir=rtl] .n2_help_center__article_icon{transform:rotate(180deg)}.n2_help_center__system_information{margin-top:60px;max-width:1140px;width:100%}.n2_help_center__system_information_label,.n2_help_center__articles_label{color:#283f4d;font-size:22px;line-height:32px}.n2_help_center__system_information_form textarea{display:block;margin-top:30px;height:300px;background-color:#fff;border:2px solid #94b2c1;border-radius:3px;padding:15px 20px;color:#325c77;font-size:14px;line-height:24px}.n2_loading_screen{display:none;position:fixed;z-index:2147483647;width:100%;height:100%;left:0;top:0;background:RGBA(32,41,52,.95)}.n2_loading_screen--visible{display:flex;align-items:center;justify-content:center}.n2_loading_screen__circle{border:10px solid #6b7986;border-left-color:#fff;border-radius:50%;width:40px;height:40px;animation:n2_loading_screen__circle_animation 1.1s infinite linear}@keyframes n2_loading_screen__circle_animation{0%{transform:rotate(0deg)}to{transform:rotate(360deg)}}.n2_ss_background_animation_preview{overflow:hidden}.n2_ss_background_animation_preview .n2-bganim-side{position:absolute;left:0;top:0;overflow:hidden}.n2_ss_background_animation_preview .n2-bganim-tile-overlay-colored{z-index:100000}.n2_ss_background_animation_preview__slider{position:relative;width:800px;height:500px;margin:20px;z-index:3}.n2_ss_background_animation_preview__animation_container,.n2_ss_background_animation_preview__slide{position:absolute;left:0;top:0;width:800px;height:500px}.n2_ss_background_animation_preview__slide{z-index:2}.n2_ss_background_animation_preview__slide_background{height:100%}.n2_ss_background_animation_preview__slide_background_image{height:100%;background-size:cover;background-position:50% 50%}
1
+ @font-face{font-family:'Inter-Nextend';font-style:normal;font-weight:400;src:url(../fonts/Inter-Medium.woff2) format("woff2");font-display:block}@font-face{font-family:'Inter-Nextend';font-style:normal;font-weight:700;src:url(../fonts/Inter-SemiBold.woff2) format("woff2")}@font-face{font-family:'SmartSliderIcons';src:url(../fonts/SmartSliderIcons.woff2?2THTXp) format("woff2");font-weight:400;font-style:normal}.ssi_16,.ssi_24,.ssi_32,.ssi_48,.ssi_64{font-family:'SmartSliderIcons'!important;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.ssi_16{font-size:16px!important}.ssi_24{font-size:24px!important}.ssi_32{font-size:32px!important}.ssi_48{font-size:48px!important}.ssi_64{font-size:64px!important}.ssi_16--animation::before{content:"\E91F"}.ssi_16--arrowdown::before{content:"\E14B"}.ssi_16--arrowright::before{content:"\E15E"}.ssi_16--bold::before{content:"\E601"}.ssi_16--breadcrumb::before{content:"\E91E"}.ssi_16--bringforward::before{content:"\E15F"}.ssi_16--bringfront::before{content:"\E143"}.ssi_16--buttonarrow::before{content:"\E155"}.ssi_16--check::before{content:"\E600"}.ssi_16--circularremove::before{content:"\E62C"}.ssi_16--clearanimation::before{content:"\E948"}.ssi_16--cog::before{content:"\E934"}.ssi_16--color::before{content:"\E144"}.ssi_16--column::before{content:"\E145"}.ssi_16--content::before{content:"\E146"}.ssi_16--copy::before{content:"\E907"}.ssi_16--crop::before{content:"\E161"}.ssi_16--dashboard::before{content:"\E149"}.ssi_16--data::before{content:"\E152"}.ssi_16--delete::before{content:"\E612"}.ssi_16--desktoplandscape::before{content:"\E95a"}.ssi_16--desktopportrait::before{content:"\E925"}.ssi_16--divide::before{content:"\E639"}.ssi_16--download::before{content:"\E162"}.ssi_16--dummy::before{content:"\E15D"}.ssi_16--duplicate::before{content:"\E611"}.ssi_16--edit::before{content:"\E154"}.ssi_16--eye::before{content:"\E60F"}.ssi_16--filledcheck::before{content:"\E60C"}.ssi_16--filledremove::before{content:"\E62D"}.ssi_16--folderclosed::before{content:"\E921"}.ssi_16--folderopened::before{content:"\E922"}.ssi_16--fontresize::before{content:"\E650"}.ssi_16--fullscreen::before{content:"\E163"}.ssi_16--grid::before{content:"\E164"}.ssi_16--hide::before{content:"\E923"}.ssi_16--horizontalcenter::before{content:"\E646"}.ssi_16--horizontalleft::before{content:"\E647"}.ssi_16--horizontalright::before{content:"\E645"}.ssi_16--image::before{content:"\E14A"}.ssi_16--info::before{content:"\E620"}.ssi_16--italic::before{content:"\E615"}.ssi_16--keyboard::before{content:"\E165"}.ssi_16--layer::before{content:"\E935"}.ssi_16--link::before{content:"\E64D"}.ssi_16--miniarrowdown::before{content:"\E19E"}.ssi_16--miniarrowright::before{content:"\E19D"}.ssi_16--minidesktopportrait::before{content:"\E980"}.ssi_16--mobilelandscape::before{content:"\E929"}.ssi_16--mobileportrait::before{content:"\E92A"}.ssi_16--mobileportraitlarge::before{content:"\E1AB"}.ssi_16--more::before{content:"\E911"}.ssi_16--none::before{content:"\E971"}.ssi_16--off::before{content:"\E19A"}.ssi_16--on::before{content:"\E199"}.ssi_16--paste::before{content:"\E908"}.ssi_16--pause::before{content:"\E606"}.ssi_16--play::before{content:"\E605"}.ssi_16--plus::before{content:"\E92F"}.ssi_16--position::before{content:"\E14E"}.ssi_16--remove::before{content:"\E90A"}.ssi_16--rename::before{content:"\E19C"}.ssi_16--reset::before{content:"\E946"}.ssi_16--resize::before{content:"\E19F"}.ssi_16--row::before{content:"\E14F"}.ssi_16--save::before{content:"\E947"}.ssi_16--selectarrow::before{content:"\E638"}.ssi_16--sendback::before{content:"\E166"}.ssi_16--sendbackward::before{content:"\E167"}.ssi_16--shrink::before{content:"\E196"}.ssi_16--slides::before{content:"\E151"}.ssi_16--smart::before{content:"\E147"}.ssi_16--star::before{content:"\E603"}.ssi_16--stop::before{content:"\E607"}.ssi_16--style::before{content:"\E169"}.ssi_16--tabletlandscape::before{content:"\E927"}.ssi_16--tabletportrait::before{content:"\E928"}.ssi_16--tabletportraitlarge::before{content:"\E1AC"}.ssi_16--textcenter::before{content:"\E614"}.ssi_16--textjustify::before{content:"\E60B"}.ssi_16--textleft::before{content:"\E60A"}.ssi_16--textright::before{content:"\E604"}.ssi_16--underline::before{content:"\E602"}.ssi_16--unlink::before{content:"\E64B"}.ssi_16--up::before{content:"\E16A"}.ssi_16--verticalaround::before{content:"\E97B"}.ssi_16--verticalbetween::before{content:"\E97A"}.ssi_16--verticalbottom::before{content:"\E97F"}.ssi_16--verticalcenter::before{content:"\E97E"}.ssi_16--verticaltop::before{content:"\E97C"}.ssi_16--video::before{content:"\E153"}.ssi_16--wordpress::before{content:"\E197"}.ssi_24--active::before{content:"\D7FD"}.ssi_24--animation::before{content:"\E115"}.ssi_24--attention::before{content:"\E195"}.ssi_24--bounce::before{content:"\E998"}.ssi_24--button::before{content:"\E192"}.ssi_24--check::before{content:"\E14C"}.ssi_24--circularcheck::before{content:"\E129"}.ssi_24--circularinfo::before{content:"\E11B"}.ssi_24--close::before{content:"\E116"}.ssi_24--cog::before{content:"\E15C"}.ssi_24--col2::before{content:"\E193"}.ssi_24--desktop::before{content:"\E11A"}.ssi_24--desktoplandscape::before{content:"\E119"}.ssi_24--dummy::before{content:"\E17B"}.ssi_24--edit::before{content:"\E117"}.ssi_24--fade::before{content:"\E993"}.ssi_24--flip::before{content:"\E996"}.ssi_24--heading::before{content:"\E17E"}.ssi_24--image::before{content:"\E191"}.ssi_24--info::before{content:"\E14D"}.ssi_24--layers::before{content:"\E11C"}.ssi_24--mobilelandscape::before{content:"\E11D"}.ssi_24--mobileportrait::before{content:"\E11E"}.ssi_24--mobileportraitlarge::before{content:"\E1AD"}.ssi_24--more::before{content:"\E17D"}.ssi_24--move::before{content:"\E995"}.ssi_24--newwindow::before{content:"\E1A2"}.ssi_24--notification::before{content:"\E99F"}.ssi_24--orientation::before{content:"\E1A1"}.ssi_24--play::before{content:"\E11F"}.ssi_24--preview::before{content:"\E121"}.ssi_24--redo::before{content:"\E122"}.ssi_24--refresh::before{content:"\E194"}.ssi_24--remove::before{content:"\E16B"}.ssi_24--reveal::before{content:"\E992"}.ssi_24--rotate::before{content:"\E999"}.ssi_24--scale::before{content:"\E994"}.ssi_24--smart::before{content:"\E16C"}.ssi_24--special::before{content:"\E997"}.ssi_24--star::before{content:"\E1A4"}.ssi_24--stop::before{content:"\E16D"}.ssi_24--style::before{content:"\E123"}.ssi_24--tabletlandscape::before{content:"\E124"}.ssi_24--tabletportrait::before{content:"\E125"}.ssi_24--tabletportraitlarge::before{content:"\E1AE"}.ssi_24--text::before{content:"\E17F"}.ssi_24--timeline::before{content:"\E126"}.ssi_24--undo::before{content:"\E127"}.ssi_32--animatedheading::before{content:"\E991"}.ssi_32--area::before{content:"\E937"}.ssi_32--audio::before{content:"\E986"}.ssi_32--beforeafter::before{content:"\E1B4"}.ssi_32--button::before{content:"\E942"}.ssi_32--circlecounter::before{content:"\E985"}.ssi_32--col1::before{content:"\E112"}.ssi_32--col2::before{content:"\E113"}.ssi_32--col3::before{content:"\E157"}.ssi_32--countdown::before{content:"\E1B5"}.ssi_32--counter::before{content:"\E984"}.ssi_32--dummy::before{content:"\E15B"}.ssi_32--heading::before{content:"\E945"}.ssi_32--highlightheading::before{content:"\E990"}.ssi_32--html::before{content:"\E93A"}.ssi_32--icon::before{content:"\E941"}.ssi_32--iframe::before{content:"\E938"}.ssi_32--image::before{content:"\E943"}.ssi_32--imagearea::before{content:"\E950"}.ssi_32--imagebox::before{content:"\E983"}.ssi_32--imagecaption::before{content:"\E940"}.ssi_32--input::before{content:"\E939"}.ssi_32--joomla::before{content:"\E19B"}.ssi_32--list::before{content:"\E93E"}.ssi_32--plus::before{content:"\E114"}.ssi_32--progressbar::before{content:"\E982"}.ssi_32--smart::before{content:"\E16E"}.ssi_32--text::before{content:"\E944"}.ssi_32--transition::before{content:"\E93F"}.ssi_32--video::before{content:"\E93B"}.ssi_32--vimeo::before{content:"\E93C"}.ssi_32--youtube::before{content:"\E93D"}.ssi_48--bug::before{content:"\E17C"}.ssi_48--camera::before{content:"\E141"}.ssi_48--convert::before{content:"\E134"}.ssi_48--data::before{content:"\E13E"}.ssi_48--delete::before{content:"\E135"}.ssi_48--doc::before{content:"\E13B"}.ssi_48--drop::before{content:"\E136"}.ssi_48--dummy::before{content:"\E159"}.ssi_48--dynamic::before{content:"\E98F"}.ssi_48--empty::before{content:"\E98E"}.ssi_48--error::before{content:"\E137"}.ssi_48--grid::before{content:"\E16F"}.ssi_48--group::before{content:"\E139"}.ssi_48--help::before{content:"\E13A"}.ssi_48--image::before{content:"\E98D"}.ssi_48--keyboard::before{content:"\E171"}.ssi_48--link::before{content:"\E13C"}.ssi_48--newsletter::before{content:"\E13D"}.ssi_48--plus::before{content:"\D7FE"}.ssi_48--post::before{content:"\E98B"}.ssi_48--protect::before{content:"\E133"}.ssi_48--remove::before{content:"\E156"}.ssi_48--review0::before{content:"\E13F"}.ssi_48--review1::before{content:"\E1A5"}.ssi_48--review2::before{content:"\E1A6"}.ssi_48--review3::before{content:"\E1A7"}.ssi_48--review4::before{content:"\E1A9"}.ssi_48--review5::before{content:"\E1AA"}.ssi_48--static::before{content:"\E98A"}.ssi_48--upgrade::before{content:"\E1A3"}.ssi_48--video::before{content:"\E989"}.ssi_64--accordionslider::before{content:"\E12A"}.ssi_64--auto::before{content:"\E17A"}.ssi_64--block::before{content:"\E12B"}.ssi_64--blurfit::before{content:"\E172"}.ssi_64--carousel::before{content:"\E12C"}.ssi_64--center::before{content:"\E173"}.ssi_64--drop::before{content:"\E12D"}.ssi_64--dummy::before{content:"\E15A"}.ssi_64--fill::before{content:"\E174"}.ssi_64--fit::before{content:"\E175"}.ssi_64--folder::before{content:"\E957"}.ssi_64--folderup::before{content:"\E63E"}.ssi_64--fullwidthslider::before{content:"\E132"}.ssi_64--image::before{content:"\E176"}.ssi_64--page::before{content:"\E12E"}.ssi_64--showcase::before{content:"\E12F"}.ssi_64--slider::before{content:"\E131"}.ssi_64--stretch::before{content:"\E177"}.ssi_64--tile::before{content:"\E179"}.n2_color_picker{position:fixed;top:0;left:0;z-index:10000000;border:2px solid #b9c3c9;border-radius:3px;background-color:#fff;width:min-content;display:grid;grid-gap:10px;grid-template-columns:auto auto auto auto;padding:10px;user-select:none}.n2_color_picker.n2_color_picker--has-opacity{grid-template-columns:auto auto auto auto auto}.n2_color_picker__palette{width:min-content;display:grid;grid-gap:8px;grid-template-columns:1fr 1fr 1fr 1fr}.n2_color_picker__palette_item{width:20px;height:20px;overflow:hidden;border-radius:3px;cursor:pointer}.n2_color_picker__palette_item_color{width:100%;height:100%;background-color:var(--palette-item-color);box-shadow:0 0 1px 1px rgba(0,0,0,.2) inset;border-radius:3px}.n2_color_picker__palette_item_alpha{display:none}.n2_color_picker--has-opacity .n2_color_picker__palette_item_alpha{display:block}.n2_color_picker__palette_history{width:min-content;display:grid;grid-gap:8px;grid-template-columns:1fr;border-left:1px solid rgba(0,0,0,.2);border-right:1px solid rgba(0,0,0,.2);padding:0 10px}.n2_color_picker__palette_history .n2_color_picker__palette_item:last-child{display:none}.n2_color_picker--has-opacity .n2_color_picker__palette_history .n2_color_picker__palette_item:last-child{display:block}.n2_color_picker__picker_area{padding:10px;width:min-content;display:grid;grid-template-columns:auto auto auto;grid-gap:10px;overflow:hidden}.n2_color_picker__picker_canvas{align-self:stretch;position:relative;width:140px;background-color:red;background-image:linear-gradient(to top,#000,rgba(204,154,129,0)),linear-gradient(to right,#fff,rgba(204,154,129,0));box-shadow:0 0 1px 1px rgba(0,0,0,.2) inset}.n2_color_picker__picker_canvas_dot{position:absolute;left:-5px;top:-5px;width:10px;height:10px;border-radius:10px;background:#fff;box-shadow:0 0 0 1px rgba(0,0,0,.4)}.n2_color_picker__picker_hue{align-self:stretch;position:relative;width:20px;background:linear-gradient(to bottom,red 0%,#ff0 17%,#0f0 33%,#0ff 50%,#00f 67%,#f0f 83%,red 100%);box-shadow:0 0 1px 1px rgba(0,0,0,.2) inset}.n2_color_picker__picker_hue_dot{position:absolute;left:-3px;top:-3px;width:calc(100% + 6px);height:6px;border-radius:5px;background:#fff;box-shadow:0 0 0 1px rgba(0,0,0,.4)}.n2_color_picker__picker_opacity{align-self:stretch;display:none;width:20px}.n2_color_picker--has-opacity .n2_color_picker__picker_opacity{display:block}.n2_color_picker__picker_opacity_inner{position:relative;width:100%;height:100%;box-shadow:0 0 1px 1px rgba(0,0,0,.2) inset}.n2_color_picker__picker_opacity_dot{position:absolute;left:-3px;top:-3px;width:calc(100% + 6px);height:6px;border-radius:5px;background:#fff;box-shadow:0 0 0 1px rgba(0,0,0,.4)}.n2_checker_box{background-image:linear-gradient(45deg,gray 25%,transparent 25%),linear-gradient(-45deg,gray 25%,transparent 25%),linear-gradient(45deg,transparent 75%,gray 75%),linear-gradient(-45deg,transparent 75%,gray 75%);background-size:10px 10px;background-position:0 0,0 5px,5px -5px,-5px 0}#dolly{display:none!important}.toplevel_page_smart-slider3 #wpbody-content{padding-bottom:0!important}.toplevel_page_smart-slider3 #wpfooter{display:none}#wpbody-content #n2-admin{margin:10px 20px 20px 0}html[dir=rtl] #wpbody-content #n2-admin{margin:10px 0 0 20px}#wpbody-content #n2-admin a:focus{box-shadow:none}.n2 input{min-height:initial;border-radius:0}.n2 select{background:0 0;max-width:initial;min-height:26px;height:26px;font-size:12px;-webkit-appearance:menulist;-moz-appearance:menulist}.n2 select[multiple]{height:auto;-webkit-appearance:none;-moz-appearance:none}.n2_admin .n2_field_select select{background:0 0}html.n2_html--application-only{background:#fff}html.n2_html--application-only #wpbody{padding:0!important}html.n2_html--application-only.wp-toolbar{padding:0}html.n2_html--application-only,html.n2_html--application-only body{position:relative;height:auto;min-height:100vh;background:#fff}html.n2_html--application-only #wpadminbar,html.n2_html--application-only #adminmenuwrap,html.n2_html--application-only #adminmenuback,html.n2_html--application-only .update-nag{display:none!important}html.n2_html--application-only #wpcontent{margin:0!important;padding-left:0;padding-right:0}html.n2_html--application-only .updated,html.n2_html--application-only .error,html.n2_html--application-only .notice-error,html.n2_html--application-only .notice-success,html.n2_html--application-only .notice-warning,html.n2_html--application-only .notice-info,html.n2_html--application-only .notice,html.n2_html--application-only .wpuf-review-notice,html.n2_html--application-only .analytify-review-notice,html.n2_html--application-only .prompt-box+.overlay{display:none!important}.wp-block-nextend-smartslider3{position:relative;z-index:1;min-height:100px}.wp-block-nextend-smartslider3 iframe{pointer-events:none}.wp-block-nextend-smartslider3__button-container{display:inline-grid;grid-template-columns:auto auto;grid-gap:10px}.wp-customizer .n2_modal{z-index:1000030}.wp-customizer a.n2_button,.wp-customizer a.n2_button:HOVER,.wp-customizer a.n2_button:FOCUS{color:#fff}#gslogo-dummy-data-install--notice,.gslogo-admin-notice,.gslogo-review-notice{display:none!important}#a2020-admin-bar-app{z-index:100000}.a2020_admin_theme #wpwrap{display:block;vertical-align:top}.a2020_admin_theme #wpbody-content #n2-admin{margin:10px 20px 20px 20px}.n2_html--application-only .a2020_admin_theme #a2020-admin-bar-app{display:none!important}.n2_admin{position:relative;min-width:980px}.n2_admin__header{position:relative;z-index:2000;font-family:"Inter-Nextend",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;line-height:1.3;font-size:16px;-webkit-font-smoothing:antialiased}.n2_admin__header a{transition:none 0s;text-decoration:none;box-shadow:none}.n2_admin__content{border-radius:0 0 3px 3px;border-left:1px solid #94b2c1;border-right:1px solid #94b2c1;border-bottom:1px solid #94b2c1;background-color:#f0f4f7;padding-bottom:40px;min-height:calc(100vh - 180px)}.n2_admin_ui{font-family:"Inter-Nextend",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;line-height:1.3;font-size:16px;-webkit-font-smoothing:antialiased}.n2_admin_ui a{transition:none 0s;text-decoration:none;box-shadow:none}.n2_admin_ui a:ACTIVE,.n2_admin_ui a:VISITED,.n2_admin_ui a:FOCUS,.n2_admin_ui a:LINK{text-decoration:none}.n2_admin_ui iframe{border:0}.n2_admin_ui [contenteditable=true]{-webkit-user-select:text;user-select:text}.n2_admin--empty{margin:0!important}.n2_admin--empty.n2_admin{min-width:0}.n2_nav_bar{position:relative;z-index:11;min-height:70px;display:flex;background-color:#1375e9;border-top-left-radius:3px;border-top-right-radius:3px}.n2_nav_bar__logo{flex:0 1 auto;display:flex;justify-content:center}.n2_nav_bar__logo a{display:inline-flex;align-items:center;justify-content:center}.n2_nav_bar__logo svg{max-width:none}.n2_nav_bar__menu{position:relative;z-index:2;flex:1 1 auto;padding:0 10px;width:100%;box-sizing:border-box;display:flex;justify-content:flex-end;align-items:center;margin-left:auto}@media only screen and (max-width:1600px){.n2_nav_bar__menu{width:auto}}.n2_nav_bar__menuitem{margin:10px}.n2_nav_bar__menuitem>a{display:block;padding:0 5px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;max-width:150px}.n2_nav_bar__menuitem a{font-size:14px;line-height:2}.n2_nav_bar__menuitem a,.n2_nav_bar__menuitem a:HOVER,.n2_nav_bar__menuitem a:FOCUS{color:#d0e3fb}.n2_breadcrumbs{padding:0 10px;white-space:nowrap;flex:1 1 auto;width:100%;box-sizing:border-box;position:relative;z-index:2;display:flex;align-items:center}@media only screen and (max-width:1600px){.n2_breadcrumbs{width:auto}}.n2_breadcrumbs__breadcrumb_button{display:flex;align-items:center;padding:0 8px;font-size:14px;line-height:2;text-transform:capitalize;font-weight:700}.n2_breadcrumbs__breadcrumb_button,.n2_breadcrumbs__breadcrumb_button:HOVER,.n2_breadcrumbs__breadcrumb_button:FOCUS{color:#d0e3fb}.n2_breadcrumbs__breadcrumb_button>*{margin:0 2px}.n2_breadcrumbs__breadcrumb_button>span{max-width:150px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.n2_breadcrumbs__breadcrumb_button>.ssi_16{margin:0 3px}.n2_breadcrumbs__breadcrumb--active .n2_breadcrumbs__breadcrumb_button,.n2_breadcrumbs__breadcrumb--active .n2_breadcrumbs__breadcrumb_button:HOVER,.n2_breadcrumbs__breadcrumb--active .n2_breadcrumbs__breadcrumb_button:FOCUS{color:#fff}.n2_breadcrumbs__arrow{font-size:16px;color:#d0e3fb}.n2_breadcrumbs__arrow .ssi_16{display:block}html[dir=rtl] .n2_breadcrumbs__arrow{transform:rotateZ(180deg)}.n2-admin-content-with-sidebar{display:flex}.n2-admin-content-with-sidebar__sidebar{flex:0 0 auto;width:340px;margin-left:-1px;background-color:#4d5d70;border-bottom-left-radius:3px;border-right:1px solid #212d3a;box-sizing:border-box}.n2-admin-content-with-sidebar__content{position:relative;min-height:1000px}.n2_top_bar_main{font-family:"Inter-Nextend",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;line-height:1.3;font-size:16px;-webkit-font-smoothing:antialiased;z-index:1020;margin-left:-1px;margin-right:-1px;position:-webkit-sticky;position:sticky;top:0;display:flex;flex-flow:row-reverse;background-color:#0c1924;padding:12px 10px}.n2_top_bar_main a{transition:none 0s;text-decoration:none;box-shadow:none}.n2_top_bar_main .n2_top_bar_button_icon{font-size:24px;width:24px;height:24px}.n2_top_bar_main .n2_top_bar_button_icon,.n2_top_bar_main .n2_top_bar_button_icon:HOVER,.n2_top_bar_main .n2_top_bar_button_icon:FOCUS{color:#94b2c1}.n2_top_bar_main__primary{display:flex;flex-flow:row-reverse;align-items:center}.n2_top_bar_main__primary>*{margin:0 10px}.n2_top_bar_main__primary .n2_button_spacer{margin:0 10px;width:2px;height:32px}.n2_top_bar_main__primary .n2_button_spacer--visible{height:24px;background-color:#3a4956;border-radius:1px}.n2_top_bar_main__secondary{display:flex;align-items:center;margin-right:auto;padding-left:5px}.n2_top_bar_main__secondary>*{margin:0 5px}.n2_top_bar_group--narrow .n2_top_bar_group__inner{display:flex;flex-flow:row-reverse;margin:0 -5px;direction:ltr}.n2_top_bar_group--narrow .n2_top_bar_group__inner>*{margin:0 5px}.n2_header{position:relative;z-index:990;font-family:"Inter-Nextend",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;line-height:1.3;font-size:16px;-webkit-font-smoothing:antialiased;background-color:#fff;padding:30px 28px}.n2_header a{transition:none 0s;text-decoration:none;box-shadow:none}.n2_header.n2_header--has-menu-items{padding-top:50px;padding-bottom:0}.n2_header__heading_container{margin:0 12px}.n2_header__content{display:flex;align-items:center}.n2_header__heading{display:flex;align-items:center}.n2_header__heading_primary{font-size:32px;line-height:1.25em;color:#283f4d}.n2_header__heading_after{font-size:24px;line-height:1em;color:#94b2c1;margin:0 15px}.n2_header__actions{margin-left:auto;display:flex}.n2_header__actions>*{margin:0 12px}html[dir=rtl] .n2_header__actions{margin-left:0;margin-right:auto}.n2_header__menu{margin:0 -8px;display:flex}.n2_header__menu_item{margin:0 20px;line-height:50px;font-size:16px;font-weight:700;text-transform:capitalize;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.n2_header__menu_item,.n2_header__menu_item:ACTIVE,.n2_header__menu_item:VISITED,.n2_header__menu_item:FOCUS,.n2_header__menu_item:LINK{color:#325c77}.n2_header__menu_item--active,.n2_header__menu_item--active:ACTIVE,.n2_header__menu_item--active:VISITED,.n2_header__menu_item--active:FOCUS,.n2_header__menu_item--active:LINK{box-shadow:inset 0 -3px 0 0 #1375e9!important;color:#1375e9}.n2_notification_center{z-index:9999999999999;position:fixed;right:10px;bottom:0;display:flex;flex-flow:column;align-items:flex-end;width:auto;max-height:310px;padding:10px;overflow-y:auto;overflow-x:hidden}html[dir=rtl] .n2_notification_center{left:10px;right:auto}.n2_notification_center__message{max-width:500px;margin:10px;display:flex;align-items:center;background-color:#0c1924;border-radius:5px;padding:20px;transition:transform .5s ease-in-out .3s;transform:translateX(150%)}html[dir=rtl] .n2_notification_center__message{transform:translateX(-150%)}.n2_notification_center__message--animate{transform:translateX(0%)}html[dir=rtl] .n2_notification_center__message--animate{transform:translateX(0%)}.n2_notification_center__message--success{min-width:250px}.n2_notification_center__message_icon{flex:0 0 auto;display:flex;align-items:center;justify-content:center;width:48px;height:48px;border-radius:100%;color:#fff}.n2_notification_center__message--success .n2_notification_center__message_icon{background-color:#04c018}.n2_notification_center__message--success .n2_notification_center__message_icon .ssi_24::before{content:"\E14C"}.n2_notification_center__message--notice .n2_notification_center__message_icon{background-color:#1d81f9}.n2_notification_center__message--notice .n2_notification_center__message_icon .ssi_24::before{content:"\E14D"}.n2_notification_center__message_content{flex:1 1 auto;padding:0 10px}.n2_notification_center__message_content_label{color:#fff;font-size:14px;line-height:20px;text-transform:uppercase}.n2_notification_center__message_content_description{font-size:14px;line-height:20px;color:#94b2c1}.n2_notification_center__message_action{flex:0 0 auto;margin:0 10px;background-color:#1d81f9;border-radius:3px;padding:0 10px;white-space:nowrap;font-size:11px;color:#fff;line-height:30px;cursor:pointer;text-transform:uppercase}.n2_notification_center__message_action:HOVER{background-color:#338ef9}.n2_body--fullscreen-editor-visible{overflow:hidden}.n2_fullscreen_editor{font-family:"Inter-Nextend",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;line-height:1.3;font-size:16px;-webkit-font-smoothing:antialiased;z-index:100002;position:fixed;left:0;top:0;display:none;box-sizing:border-box;width:100%;height:100%;padding:20px;background:rgba(28,41,51,.8)}.n2_fullscreen_editor a{transition:none 0s;text-decoration:none;box-shadow:none}.n2_fullscreen_editor--visible{display:block}.n2_fullscreen_editor__overlay{z-index:1;position:absolute;left:0;top:0;width:100%;height:100%;cursor:pointer}.n2_fullscreen_editor__window{z-index:2;position:relative;flex:1 1 auto;height:100%;display:flex;flex-flow:column;border-radius:3px;box-shadow:0 1px 5px 1px rgba(55,77,88,.2);overflow:hidden}.n2_fullscreen_editor__window>iframe{display:block;width:100%;height:100%}.n2_fullscreen_editor__nav_bar{position:relative;z-index:2;display:flex;flex:0 0 auto;background-color:#0c1924}.n2_fullscreen_editor__nav_bar_label{position:absolute;width:100%;z-index:1;line-height:60px;color:#fff;font-size:22px;text-align:center;text-transform:capitalize}.n2_fullscreen_editor__nav_bar_actions{position:relative;z-index:2;flex:1 1 auto;display:flex;justify-content:flex-end;padding:12px 10px}.n2_fullscreen_editor__nav_bar_actions>*{margin:0 10px}.n2_fullscreen_editor__content{flex:1 1 auto;display:flex;overflow:hidden}.n2_fullscreen_editor__content_sidebar{position:relative;flex:0 0 340px;width:340px;overflow:auto;background-color:#3a4956}.n2_fullscreen_editor__content_sidebar_top_bar{position:-webkit-sticky;position:sticky;top:0}.n2_fullscreen_editor__save_as_new_container{padding:12px 20px}.n2_fullscreen_editor__save_as_new_container .n2_button{text-align:center;display:block}.n2_fullscreen_editor__visual{display:flex;align-items:center;padding:0 10px;background-color:#2c3a45;border-bottom:1px solid #1e2830}.n2_fullscreen_editor__visual--active{background-color:#1375e9;border-bottom:1px solid #1375e9}.n2_fullscreen_editor__visual_select_tick{width:16px;height:16px;display:inline-flex;align-items:center;justify-content:center;border:2px solid #131c23;border-radius:3px;background-color:#2c3a45;cursor:pointer}.n2_fullscreen_editor__visual_select_tick .ssi_16{display:none;color:#fff}.n2_fullscreen_editor__visual--selected .n2_fullscreen_editor__visual_select_tick{background-color:#04c018;border-color:#04c018}.n2_fullscreen_editor__visual--selected .n2_fullscreen_editor__visual_select_tick .ssi_16{display:inline-block}.n2_fullscreen_editor__visual_label{flex:1 1 auto;padding:0 10px;color:#94b2c1;font-size:12px;line-height:44px;cursor:pointer}.n2_fullscreen_editor__visual--active .n2_fullscreen_editor__visual_label{color:#fff}.n2_fullscreen_editor__visual_action{display:inline-flex;align-items:center;justify-content:center;padding:5px;font-size:16px;color:#94b2c1;cursor:pointer}.n2_fullscreen_editor__visual--active .n2_fullscreen_editor__visual_action{color:#fff}.n2_fullscreen_editor__content_content{position:relative;flex:1 1 auto;overflow:auto;background-color:#f0f4f7}.n2_iframe_application{font-family:"Inter-Nextend",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;line-height:1.3;font-size:16px;-webkit-font-smoothing:antialiased;display:flex;flex-flow:column;margin:0!important;min-width:0;height:100vh;overflow:hidden}.n2_iframe_application a{transition:none 0s;text-decoration:none;box-shadow:none}.n2_iframe_application__nav_bar{position:relative;z-index:2;display:flex;flex:0 0 auto;height:60px;background-color:#0c1924}.n2_iframe_application__nav_bar_label{position:absolute;width:100%;z-index:1;line-height:60px;color:#fff;font-size:22px;text-align:center}.n2_iframe_application__nav_bar_actions{position:relative;z-index:2;flex:1 1 auto;display:flex;justify-content:flex-end;padding:12px 10px}.n2_iframe_application__nav_bar_actions>*{margin:0 10px}.n2_iframe_application__nav_bar_actions .n2_button_spacer{margin:0 10px;width:2px;height:32px}.n2_iframe_application__nav_bar_actions .n2_button_spacer--visible{height:24px;background-color:#3a4956;border-radius:1px}.n2_iframe_application__nav_bar_actions .n2_button_plain_icon{margin:0 5px}.n2_iframe_application__nav_bar_actions .n2_button_plain_icon,.n2_iframe_application__nav_bar_actions .n2_button_plain_icon:HOVER,.n2_iframe_application__nav_bar_actions .n2_button_plain_icon:FOCUS{color:#94b2c1}.n2_iframe_application__content{position:relative;flex:1 1 auto;overflow:auto;background-color:#f0f4f7}.n2_iframe_application__content .n2_form__table[data-field=table-shapedivider] .n2_field__label .ssi_16--minidesktopportrait{color:#325c77}.n2_admin_editor{margin:0!important;min-width:0}.n2_admin_editor_overlay{z-index:10;position:fixed;left:0;top:0;width:100%;height:100%;display:flex;flex-flow:column;visibility:hidden}.n2_admin_editor_overlay__top{position:relative;z-index:10;flex:0 0 auto}.n2_admin_editor_overlay__top_bar_main{position:static;visibility:visible}.n2_admin_editor_overlay__top_bar_main .n2_breadcrumbs{margin:0 -8px;padding:0}.n2_admin_editor_overlay__top_bar_main .n2_breadcrumbs__breadcrumb_button{color:#94b2c1}.n2_admin_editor_overlay__top_bar_main .n2_breadcrumbs__breadcrumb_button,.n2_admin_editor_overlay__top_bar_main .n2_breadcrumbs__breadcrumb_button:HOVER,.n2_admin_editor_overlay__top_bar_main .n2_breadcrumbs__breadcrumb_button:FOCUS{color:#94b2c1}.n2_admin_editor_overlay__top_bar_main .n2_breadcrumbs__arrow{color:#94b2c1}.n2_admin_editor__ui_slide_manager.n2_slide_manager{visibility:visible;position:absolute;left:0;top:60px;width:100%;height:calc(100vh - 60px)}.n2_admin_editor__ui_slide_manager.n2_slide_manager .n2_slide_manager__inner{overflow:auto;max-height:100%}.n2_admin_editor__content{display:flex;position:relative;box-sizing:border-box;width:100%;height:100vh;padding-top:75px;padding-left:65px;background:#f0f4f7}.n2_body--show-add-more .n2_admin_editor__content,.n2_body--attached-layer-list .n2_admin_editor__content{padding-bottom:0!important}.n2_admin_editor__content_inner{position:relative;flex:1 1 auto;background-color:#f0f4f7;overflow:auto}.n2_admin_editor_overlay--show-layer-navigation:not(.n2_admin_editor_overlay--show-add-more):not(.n2_admin_editor_overlay--attached-layer-list) .n2_slide_editor_timeline_toggle--show{display:none}.n2_admin_editor_overlay--show-layer-navigation.n2_admin_editor_overlay--attached-layer-list .n2_slide_editor_timeline_toggle--show{pointer-events:none}.n2_admin_editor_overlay--show-slides .n2_admin_editor_overlay__top_bar_main .n2_top_bar_main__primary{opacity:.5;pointer-events:none}.n2_top_bar_main__logo{flex:1 1 auto;overflow:hidden;display:flex;align-items:center;justify-content:center}.n2_top_bar_main__logo a{display:inline-block;padding:0 10px}.n2_top_bar_main__logo svg{vertical-align:top;display:inline-block}.n2_admin__banner{background-color:#1c2933;z-index:2;position:relative;color:#fff;align-items:center}.n2_admin__banner .n2_admin__banner_inner{max-width:500px;text-align:center;margin:0 auto;padding:40px}.n2_admin__banner .n2_admin__banner_inner .n2_admin__banner_inner_title{font-size:22px;line-height:32px}.n2_admin__banner .n2_admin__banner_inner .n2_admin__banner_inner_description{font-size:14px;color:#94b2c1;line-height:24px}.n2_admin__banner .n2_admin__banner_inner .n2_admin__banner_inner_button{margin-top:20px}.n2_admin__banner .n2_admin__banner_close{margin:10px;width:36px;height:36px;display:flex;align-items:center;justify-content:center;background-color:#6b7986;border-radius:100%;color:#fff;font-size:16px;cursor:pointer;position:absolute;top:0;right:0}.n2_admin__banner .n2_admin__banner_close:HOVER{background-color:#8694a2}.n2_free_need_more{padding:40px 0;display:flex;flex-flow:column;align-items:center;text-align:center}.n2_free_need_more__logo img{display:block;width:64px}.n2_free_need_more__title{margin-top:10px;font-size:16px;line-height:28px;font-weight:700;color:#fff}.n2_modal .n2_free_need_more__title{color:#283f4d}.n2_free_need_more__paragraph{max-width:270px;line-height:24px;font-size:14px;color:#bdcfd9}.n2_modal .n2_free_need_more__paragraph{color:#325c77}.n2_free_need_more__button{margin-top:10px;padding:0 25px;background-color:#1d81f9;border-radius:3px;font-size:12px;line-height:36px;font-weight:700;text-transform:uppercase}.n2_free_need_more__button,.n2_free_need_more__button:HOVER,.n2_free_need_more__button:FOCUS{color:#fff}.n2_free_need_more__button:HOVER{background-color:#338ef9}.n2_body--inherit-cursor *{cursor:inherit!important}.n2_modal{font-family:"Inter-Nextend",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;line-height:1.3;font-size:16px;-webkit-font-smoothing:antialiased;z-index:100003;position:fixed;left:0;top:0;display:none;box-sizing:border-box;width:100%;height:100%;padding:20px;background:rgba(28,41,51,.8);align-items:center;justify-content:center}.n2_modal a{transition:none 0s;text-decoration:none;box-shadow:none}.n2_modal--visible{display:flex}.n2_modal__overlay{z-index:1;position:absolute;width:100%;height:100%;cursor:pointer}.n2_modal__window{position:relative;z-index:2;display:flex;flex-flow:column;width:100%;max-height:100%;border-radius:3px;box-shadow:0 2px 20px 0 rgba(0,0,0,.2)}.n2_modal--simple .n2_modal__window{border-radius:3px;overflow:hidden}.n2_modal--simple .n2_modal__body_outer{flex:1 1 auto;position:relative;background:#fff;border-radius:3px 3px 0 0;overflow:auto}.n2_modal--simple .n2_modal__body{padding:20px 40px 10px}.n2_modal--simple .n2_modal__close_wrap{position:sticky;top:0;height:0;display:flex;justify-content:flex-end}.n2_modal--simple .n2_modal__close{margin:10px;width:36px;height:36px;display:flex;align-items:center;justify-content:center;background-color:#f0f4f7;border-radius:100%;color:#283f4d;font-size:16px;cursor:pointer}.n2_modal--simple .n2_modal__buttons{display:flex;flex:0 0 auto;background-color:#f0f4f7;height:56px;border-radius:0 0 3px 3px;border-top:1px solid #e4e9ec}.n2_modal--simple .n2_modal__buttons[data-buttons="0"]{display:none}.n2_modal--simple .n2_modal__buttons[data-buttons="1"] .n2_modal__button{width:100%;align-items:center;justify-content:center}.n2_modal--simple .n2_modal__buttons[data-buttons="2"] .n2_modal__button{width:50%;align-items:center}.n2_modal--simple .n2_modal__buttons[data-buttons="2"] .n2_modal__button:first-child{justify-content:flex-end;padding-right:10px}.n2_modal--simple .n2_modal__buttons[data-buttons="2"] .n2_modal__button:last-child{justify-content:flex-start;padding-left:10px}.n2_modal--simple .n2_modal__button{display:flex}.n2_modal[data-modal-type=generator-insert-variable] .n2_generator_variables{display:flex;flex-wrap:wrap;padding:3px;background-color:#f0f4f7;border-radius:3px;max-height:130px;overflow-y:auto}.n2_modal[data-modal-type=generator-insert-variable] .n2_generator_variables__variable{margin:3px;padding:0 10px;background-color:#94b2c1;border-radius:3px;color:#fff;font-size:11px;line-height:30px;cursor:pointer}.n2_modal[data-modal-type=generator-insert-variable] .n2_generator_variables__variable:HOVER{background-color:#7f9caa}.n2_modal[data-modal-type=generator-insert-variable] .n2_generator_variables__variable--selected{background-color:#1d81f9;color:#fff}.n2_modal[data-modal-type=generator-insert-variable] .n2_generator_variables__variable--selected:HOVER{background-color:#1d81f9}.n2_modal[data-modal-type=generator-insert-variable] .n2_generator_result{padding:0 8px;background-color:#f0f4f7;border-radius:3px;height:80px;overflow-y:scroll;font-size:12px;line-height:30px;color:#325c77}.n2_modal--lightbox .n2_modal__window{height:100%}.n2_modal--lightbox .n2_modal__top_bar{position:relative;border-radius:3px 3px 0 0;background-color:#0c1924}.n2_modal--lightbox .n2_modal__top_bar_title{position:absolute;width:100%;z-index:1;line-height:60px;color:#fff;font-size:22px;text-align:center;text-transform:capitalize}.n2_modal--lightbox .n2_modal__top_bar_buttons{position:relative;z-index:2;display:flex;justify-content:flex-end;padding:12px 10px}.n2_modal--lightbox .n2_modal__top_bar_buttons>*{margin:0 10px}.n2_modal--lightbox .n2_modal__body{flex:1 1 auto;overflow:auto;background:#f0f4f7;border-radius:0 0 3px 3px}.n2_modal--lightbox[data-modal-type=icons] .n2_modal__body{display:flex;overflow:hidden}.n2_modal--lightbox[data-modal-type=icons] .n2_modal__sidebar{position:relative;flex:0 0 340px;width:340px;background-color:#3a4956}.n2_modal--lightbox[data-modal-type=icons] .n2_modal__sidebar_inner{height:100%;overflow:auto}.n2_modal--lightbox[data-modal-type=icons] .n2_modal__content{position:relative;flex:1 1 auto;background-color:#f0f4f7}.n2_modal--lightbox[data-modal-type=icons] .n2_modal__content_inner{height:100%;overflow:auto}.n2_modal_icons__search_area{padding:10px 20px;background-color:#3a4956;border-bottom:1px solid #1e2830}.n2_modal_icons__search_area .n2_field__label{display:none}.n2_modal_icons__search_area .n2_field_text{display:flex}.n2_modal_icons__search_area .n2_field_text input{width:100%}.n2_modal_icons__list_item{background-color:#2c3a45;padding:0 10px;border-bottom:1px solid #1e2830;color:#94b2c1;font-size:12px;line-height:44px;cursor:pointer}.n2_modal_icons__list_item--active{background-color:#1d81f9;color:#fff}.n2_modal_icons__icon{display:inline-block;margin:5px;width:32px;height:32px;cursor:pointer;font-size:24px;line-height:32px;text-align:center;color:#000}.n2_modal_filesystem__content{display:flex;flex-wrap:wrap;padding:10px}.n2_modal_filesystem__content[data-mode=single] .n2_modal_filesystem_box--file,.n2_modal_filesystem__content[data-mode=multiple] .n2_modal_filesystem_box--file{cursor:pointer}.n2_modal_filesystem__current_path{width:100%;margin:0 10px;font-size:14px;line-height:30px;color:#325c77}.n2_modal_filesystem_box{position:relative;display:flex;flex-flow:column;justify-content:flex-end;margin:10px;width:160px;height:140px;border-radius:3px}.n2_modal_filesystem_box .n2-button{display:none}.n2_modal_filesystem_box--active{box-shadow:0 0 0 3px #1d81f9}.n2_modal_filesystem_box__image{height:100px;background-repeat:no-repeat;background-size:cover}.n2_modal_filesystem_box__icon{height:100px;display:flex;align-items:center;justify-content:center;color:#94b2c1}.n2_modal_filesystem_box__label{padding:0 15px;background-color:#fff;color:#325c77;font-size:12px;line-height:40px;text-align:center;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.n2_modal_filesystem_box--upload{border:2px dashed #bdcfd9}.n2_modal_filesystem_box--upload .n2_modal_filesystem_box__icon{height:84px}.n2_modal_filesystem_box--upload .n2_modal_filesystem_box__label{line-height:20px;white-space:normal;overflow:visible;text-overflow:initial}.n2_modal_filesystem_box--directory-up{cursor:pointer}.n2_modal_filesystem_box--directory{cursor:pointer}.n2_modal_select_slider{position:relative;display:flex;flex-wrap:wrap;margin:0 auto;padding:24px}.n2_modal_select_slider__box{position:relative;flex:0 0 auto;width:270px;height:180px;border-radius:3px;margin:16px;background:#fff;cursor:pointer}.n2_modal[data-modal-type=select-slider] .n2_modal__window{max-width:980px;max-height:744px}.n2_modal--iframe .n2_modal__window{height:100%}.n2_modal--iframe iframe{width:100%;height:100%;border:0}.n2_modal__hotkey{display:flex;flex-wrap:wrap}.n2_modal__hotkey_column{flex:0 0 50%;padding:10px;box-sizing:border-box}.n2_modal__hotkey_group{padding:10px}.n2_modal__hotkey_row{display:flex;justify-content:space-between;margin:5px 0}.n2_modal__hotkey_text{font-size:12px;line-height:28px;color:#325c77}.n2_modal__hotkey_key{font-size:11px;font-weight:700;line-height:30px;text-transform:uppercase;color:#fff;background:#94b2c1;border-radius:3px;padding:0 10px;min-width:11px;text-align:center;margin-left:5px}.n2_modal__hotkey_key:last-child{background:#1d81f9}.n2_modal__hotkey_keys{display:flex}.n2_modal__hotkey_title{text-transform:uppercase;font-size:14px;line-height:26px;color:#325c77;font-weight:700}.n2_modal__icon{margin:0 auto 10px;flex:0 0 auto;width:99px;height:99px;border-radius:100%;display:flex;align-items:center;justify-content:center;font-size:48px}.n2_modal__icon--green{background:#e5f8e7;color:#04c018}.n2_modal__icon--purple{background:#efebf8;color:#5f39c2}.n2_modal__icon--red{background:#f9ebe9;color:#be331f}.n2_modal__icon--blue{background:#e8f2fe;color:#1d81f9}.n2_modal__heading{line-height:28px;font-size:18px;color:#283f4d;font-weight:700;text-transform:capitalize;text-align:center}.n2_modal__subheading{font-size:18px;line-height:30px;color:#283f4d}.n2_modal__paragraph{color:#325c77;font-size:14px;line-height:26px;text-align:center;margin-bottom:20px}input.n2_modal__input{box-sizing:initial;width:100%;max-width:240px;border:2px solid #94b2c1;border-radius:3px;height:32px;line-height:32px;font-size:14px;color:#325c77;text-align:center;margin-bottom:22px}input.n2_modal__input:FOCUS{box-shadow:none;border-color:#1375e9}.n2_modal__form_row{margin:0 -10px}.n2_modal__form_row .n2_field{display:inline-flex;flex-flow:column;vertical-align:top;margin-bottom:15px;padding:5px 10px}.n2_modal__form_row .n2_field .n2_field__label{display:flex;align-items:center}.n2_modal__form_row .n2_field .n2_field__label label{line-height:20px;color:#325c77;font-size:12px;text-transform:capitalize}.n2_modal__form_row .n2_field .n2_field__label .ssi_16--info{margin:0 5px;font-size:16px;color:#94b2c1}.n2_modal__form_row .n2_field.n2_field--label-none>.n2_field__element{display:flex;flex-wrap:wrap}.n2_modal__form_row .n2_field.n2_field--label-placeholder{padding-top:25px}.n2_modal__form_row .n2_field__grouping>.n2_field__element,.n2_modal__form_row .n2_field_mixed>.n2_field__element{margin:-5px -10px}.n2_modal__form_row--fullwidth{display:flex}.n2_modal__form_row--fullwidth .n2_field{display:flex;width:100%}.n2_modal__form_row--fullwidth .n2_field .n2_field__element{display:flex}.n2_modal__form_row--fullwidth .n2_field .n2_field__element>*{flex:1 1 auto}.n2_modal__form_row--fullwidth .n2_field .n2_field_text{display:flex}.n2_modal__form_row--fullwidth .n2_field .n2_field_text input{width:100%}.n2_modal__form_row--fullwidth .n2_field .n2_field_textarea textarea{width:100%}.n2_modal__form_row--fullwidth .n2_field .n2_field_select select{box-sizing:border-box;width:100%;height:30px;line-height:30px}.n2_modal__form_row--fullwidth .n2_field .n2_field_select select[multiple]{height:auto}.n2_modal__container_hidden{display:none}.n2_modal__container_hidden--visible{display:block}.n2_modal__form_row--large .n2_field .n2_field__label label{font-size:18px;line-height:50px;color:#283f4d}.n2_form_element--hidden{display:none!important}.n2_field__label label{display:block;margin:0;white-space:nowrap}.n2_button{display:inline-flex;align-items:center;border-radius:3px;padding:0 18px;font-size:12px;line-height:32px;font-weight:700;text-transform:uppercase;white-space:nowrap}.n2_button .n2_button__label{max-width:150px;text-overflow:ellipsis;overflow:hidden}.n2_button,.n2_button:HOVER,.n2_button:FOCUS{color:#fff}.n2_button .ssi_16,.n2_button .ssi_24,.n2_button .ssi_32{margin-left:5px;margin-right:-5px}html[dir=rtl] .n2_button .ssi_16,html[dir=rtl] .n2_button .ssi_24,html[dir=rtl] .n2_button .ssi_32{margin-left:-5px;margin-right:5px}.n2_button--inactive{opacity:.5}.n2_button--big{padding:0 30px;font-size:12px;line-height:36px}.n2_button--small{padding:0 10px;font-size:11px;line-height:30px}.n2_button--small .ssi_16,.n2_button--small .ssi_24,.n2_button--small .ssi_32{margin-right:0}.n2_button--blue{background-color:#1d81f9}.n2_button--blue:HOVER{background-color:#338ef9}.n2_button--green{background-color:#04c018}.n2_button--green:HOVER{background-color:#07ca1c}.n2_button--red{background-color:#c43e2a}.n2_button--red:HOVER{background-color:#d23923}.n2_button--grey{background-color:#94b2c1}.n2_button--grey:HOVER{background-color:#7f9caa}.n2_button--grey-dark{background-color:#6b7986}.n2_button--grey-dark:HOVER{background-color:#8694a2}.n2_button--purple{background-color:#5f39c2}.n2_button--inactive{opacity:.5}.n2_button_plain{display:inline-flex;align-items:center;padding:0 5px;font-size:16px;line-height:32px;text-transform:capitalize}.n2_button_plain,.n2_button_plain:HOVER,.n2_button_plain:FOCUS{color:#325c77}.n2_button_plain .ssi_16,.n2_button_plain .ssi_24,.n2_button_plain .ssi_32{margin:0 5px}.n2_button_plain--small{font-size:14px;line-height:30px}.n2_button_plain--color-blue:HOVER{color:#005bc6}.n2_button_plain--color-blue,.n2_button_plain--color-blue:FOCUS{color:#1375e9}.n2_button_plain_icon{display:inline-flex;width:30px;height:30px;align-items:center;justify-content:center;border-radius:3px;font-size:16px}.n2_button_plain_icon,.n2_button_plain_icon:HOVER,.n2_button_plain_icon:FOCUS{color:#325c77}.n2_button_plain_icon--active{background:#1d81f9}.n2_button_plain_icon--active,.n2_button_plain_icon--active:HOVER,.n2_button_plain_icon--active:FOCUS{color:#fff}.n2_button_plain_icon--big{font-size:32px;width:36px;height:36px}.n2_button_icon{display:inline-flex;width:30px;height:30px;align-items:center;justify-content:center;border-radius:3px;font-size:16px}.n2_button_icon,.n2_button_icon:HOVER,.n2_button_icon:FOCUS{color:#fff}.n2_button_icon--small{width:24px;height:24px}.n2_button_icon--blue{background-color:#1d81f9}.n2_button_icon--blue:HOVER{background-color:#338ef9}.n2_button_icon--green{background-color:#04c018}.n2_button_icon--green:HOVER{background-color:#07ca1c}.n2_button_icon--red{background-color:#c43e2a}.n2_button_icon--red:HOVER{background-color:#d23923}.n2_button_icon--grey{background-color:#94b2c1}.n2_button_icon--grey:HOVER{background-color:#7f9caa}.n2_button_icon--grey-dark{background-color:#6b7986}.n2_button_icon--grey-dark:HOVER{background-color:#8694a2}.n2_popover{position:relative}.n2_popover_content{font-family:"Inter-Nextend",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;line-height:1.3;font-size:16px;-webkit-font-smoothing:antialiased;display:none;z-index:200000;position:fixed;left:0;top:0}.n2_popover_content a{transition:none 0s;text-decoration:none;box-shadow:none}.n2_popover_content--visible{display:flex;flex-flow:column}.n2_popover_content_exit{cursor:pointer;order:1}.n2_popover_content_inner{order:2;border-radius:3px;background-color:#fff;box-shadow:0 1px 5px 1px rgba(55,77,88,.2)}.n2_floating_menu{display:inline-block}.n2_floating_menu__button{vertical-align:top}.n2_floating_menu__button.n2_button{padding:0 20px 0 16px}.n2_floating_menu__items{display:flex;flex-flow:column;padding:8px 0}.n2_floating_menu__item{display:inline-flex;align-items:center;white-space:nowrap;font-size:12px;line-height:28px;padding:0 10px;text-transform:capitalize}.n2_floating_menu__item .ssi_16{color:#94b2c1;padding:0 5px}.n2_floating_menu__item,.n2_floating_menu__item:FOCUS{color:#325c77}.n2_floating_menu__item:HOVER{background-color:#1d81f9;color:#fff}.n2_floating_menu__item:HOVER .ssi_16{color:#fff}.n2_floating_menu__item[data-state]{display:none}.n2_floating_menu__item--has-state[data-state]{display:block}.n2_floating_menu__item--active,.n2_floating_menu__item--active:FOCUS,.n2_floating_menu__item--active .ssi_16{color:#1375e9}.n2_floating_menu__item--active:HOVER{color:#fff}.n2_floating_menu__item--red,.n2_floating_menu__item--red:FOCUS,.n2_floating_menu__item--red .ssi_16{color:#c43e2a}.n2_floating_menu__item--red:HOVER{color:#fff}.n2_floating_menu__item--red:HOVER .ssi_16{color:#fff}.n2_floating_menu__item_label{padding:0 5px}.n2_floating_menu__item_separator{margin:8px 0;border-top:2px solid rgba(55,77,88,.2)}.n2_form__tab[data-tab]{display:none}.n2_form__tab--active[data-tab]{display:block}.n2_header__menu_item.n2_form__tab_button--active,.n2_header__menu_item.n2_form__tab_button--active:ACTIVE,.n2_header__menu_item.n2_form__tab_button--active:VISITED,.n2_header__menu_item.n2_form__tab_button--active:FOCUS,.n2_header__menu_item.n2_form__tab_button--active:LINK{box-shadow:inset 0 -3px 0 0 #1375e9!important;color:#1375e9}.n2_form__table{margin:20px;background-color:#fff;border-radius:3px}.n2_form__table_label{display:flex;padding:15px 20px}.n2_form__table_label_title{line-height:42px;font-size:22px;color:#283f4d;text-transform:capitalize}.n2_form__table_label_fields{flex:1 1 auto;display:flex;align-items:center;padding:0 5px}.n2_form__table_label_fields--end{justify-content:flex-end}.n2_form__table_label_field{margin:0 5px}.n2_form__table_label_field .n2_field_image_list .n2_field_image_list__preview{height:38px}.n2_form__table_label_field .n2_field_image_list .n2_field_image_list__arrow{line-height:38px}.n2_form__table_label_field .n2_field_image_list .n2_field_image_list__popover{top:42px}.n2_form__table_label_field .n2_field_onoff__labels{display:none}.n2_form__table_preview{border-top:1px solid #e4e9ec;padding:20px}.n2_form__table_row_group_label{color:#283f4d;border-top:1px solid #e4e9ec;padding:20px;font-size:18px;text-transform:capitalize}.n2_form__table_row{display:flex;flex-wrap:wrap;padding:10px;border-top:1px solid #e4e9ec}.n2_form__table_row .n2_field{display:inline-flex;flex-flow:column;vertical-align:top;padding:5px 10px}.n2_form__table_row .n2_field.n2_field--raw{padding:0 10px}.n2_form__table_row .n2_field .n2_field__label{display:flex;align-items:center}.n2_form__table_row .n2_field .n2_field__label label{line-height:20px;color:#325c77;font-size:12px;text-transform:capitalize}.n2_form__table_row .n2_field .n2_field__label .ssi_16--info{margin:0 5px 2px;font-size:16px;color:#94b2c1}.n2_form__table_row .n2_field.n2_field--label-none>.n2_field__element{display:flex;flex-wrap:wrap}.n2_form__table_row .n2_field.n2_field--label-placeholder{padding-top:25px}.n2_form__table_row .n2_field__grouping>.n2_field__element,.n2_form__table_row .n2_field_mixed>.n2_field__element{margin:-5px -10px}.n2_form__table_row--hidden{display:none}.n2_form__table_row_plain{border-top:1px solid #e4e9ec}.n2_fields_layer_window__title{display:flex;padding:7px 10px;background-color:#1c2933;border-bottom:1px solid #131c23}.n2_fields_layer_window__label{flex:1 1 auto;color:#94b2c1;font-size:12px;line-height:30px;font-weight:700;text-transform:uppercase;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.n2_fields_layer_window__title_fields{display:flex}.n2_form--dark .n2_fields_layer_window__title_fields .n2_field_select select{background-color:#2c3a45;border-color:#2c3a45}.n2_form--dark .n2_fields_layer_window__title_fields .n2_field_select select:FOCUS{border:2px solid #1d81f9}.n2_form--dark .n2_fields_layer_window__title_fields .n2_field_icon_tab{background-color:#2c3a45}.n2_fields_layer_window__fields{display:flex;flex-wrap:wrap;padding:5px 0}.n2_fields_layer_window__fields .n2_field{display:inline-flex;flex-flow:column;vertical-align:top;padding:5px 10px}.n2_fields_layer_window__fields .n2_field .n2_field__label{display:flex;align-items:center;max-width:160px}.n2_fields_layer_window__fields .n2_field .n2_field__label label{line-height:20px;font-size:12px;color:#325c77;text-transform:capitalize;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.n2_form--dark .n2_fields_layer_window__fields .n2_field .n2_field__label label{color:#bdcfd9}.n2_fields_layer_window__fields .n2_field .n2_field__label .ssi_16--info{margin:0 5px;font-size:16px;color:#94b2c1}.n2_form--dark .n2_fields_layer_window__fields .n2_field .n2_field__label .ssi_16--info{color:#bdcfd9}.n2_fields_layer_window__fields .n2_field .n2_field__label .ssi_16--minidesktopportrait{color:#bdcfd9}.n2_fields_layer_window__fields .n2_field.n2_field--label-none>.n2_field__element{display:flex;flex-wrap:wrap}.n2_fields_layer_window__fields .n2_field.n2_field--label-placeholder{padding-top:25px}.n2_fields_layer_window__fields .n2_field__grouping>.n2_field__element,.n2_fields_layer_window__fields .n2_field_mixed>.n2_field__element{margin:-5px -10px}.n2_layer_window_notice{line-height:20px;font-size:12px;color:#bdcfd9;padding:10px}body[data-device=desktopPortrait] .n2_layer_window_notice__device_icon{display:none}.n2_form__visual_set{display:flex;background-color:#1c2933;padding:12px 20px}.n2_form__visual_set_label{flex:1 1 auto;line-height:30px;font-size:12px;color:#94b2c1;text-transform:uppercase}.n2_field_text{position:relative;display:inline-flex;vertical-align:top;border-radius:3px;background-color:#fff;border:2px solid #94b2c1}.n2_form--dark .n2_field_text{background-color:#2c3a45;border:2px solid #1c2933}.n2_field_text.n2_field_text--focus{border-color:#1d81f9}.n2_field_text input{background:initial;padding:0;margin:0 6px;height:26px;line-height:1;font-size:12px;color:#325c77}.n2_field_text input::placeholder{color:#325c77;opacity:1}.n2_form--dark .n2_field_text input{color:#bdcfd9}.n2_form--dark .n2_field_text input::placeholder{color:#bdcfd9;opacity:1}.n2_field_text input,.n2_field_text input:FOCUS{border:0;box-shadow:none;outline:0}.n2_field_text input::-ms-clear{display:none}.n2_field_text .n2_field_number__slider{display:none;position:absolute;top:26px;margin:0 -2px;width:100%;min-width:70px;z-index:2;padding-top:7px}.n2_field_text:HOVER .n2_field_number__slider,.n2_field_text.n2_field_text--focus .n2_field_number__slider{display:block}.n2_field_text .n2_field_number__slider_inner{overflow:hidden;height:30px;border-radius:3px;background-color:#fff;box-shadow:0 1px 5px 1px rgba(55,77,88,.2)}.n2_field_text .nui-slider{position:relative;background-color:#94b2c1;height:6px;margin:12px 10px;border-radius:10px}.n2_field_text .nui-slider .nui-slider-handle{position:absolute;top:0;z-index:2;width:10px;height:10px;background-color:#fff;border:2px solid #94b2c1;margin:-4px -7px 0;border-radius:50px;cursor:ew-resize;-ms-touch-action:none;touch-action:none}.n2_field_text__pre_label{padding:0 6px;line-height:26px;background-color:#94b2c1;font-size:11px;color:#fff;text-align:center;text-transform:uppercase}.n2_form--dark .n2_field_text__pre_label{background-color:#1c2933;color:#94b2c1}.n2_field_text--focus .n2_field_text__pre_label{background-color:#1d81f9}.n2_form--dark .n2_field_text--focus .n2_field_text__pre_label{color:#fff}.n2_field_text__clear{display:flex;line-height:26px;width:26px;justify-content:center;align-items:center}.n2_field_text__clear,.n2_field_text__clear:HOVER,.n2_field_text__clear:FOCUS{color:#94b2c1}.n2_field_text--empty .n2_field_text__clear{visibility:hidden}.n2_field_text__choose{display:inline-flex;align-items:center;justify-content:center;margin:-2px -2px -2px 0;background-color:#04c018;width:30px;line-height:30px;border-top-right-radius:3px;border-bottom-right-radius:3px}.n2_field_text__choose:HOVER{background-color:#07ca1c}.n2_field_text__choose,.n2_field_text__choose:HOVER,.n2_field_text__choose:FOCUS{color:#fff}.n2_field_text--empty .n2_field_text__choose{background-color:#94b2c1}.n2_form--dark .n2_field_text--empty .n2_field_text__choose{background-color:#1c2933}.n2_form--dark .n2_field_text--empty .n2_field_text__choose,.n2_form--dark .n2_field_text--empty .n2_field_text__choose:HOVER,.n2_form--dark .n2_field_text--empty .n2_field_text__choose:FOCUS{color:#94b2c1}html[dir=rtl] .n2_field_text__choose{border-radius:3px 0 0 3px;margin:-2px 0 -2px -2px}.n2_field_text__choose_text{margin:-2px -2px -2px 0;padding:0 10px;background-color:#04c018;font-size:11px;line-height:30px;text-transform:uppercase;border-top-right-radius:3px;border-bottom-right-radius:3px}.n2_field_text__choose_text,.n2_field_text__choose_text:HOVER,.n2_field_text__choose_text:FOCUS{color:#fff}.n2_field_text__post .n2_field_unit__current_unit{padding:0 6px;border-radius:0;line-height:26px}.n2_field_text__post .n2_field_unit__units{top:26px;right:-2px}.n2_field_text_image__preview{width:26px;height:26px;background-color:#fff;background-size:cover;background-position:50% 50%;border-right:2px solid #94b2c1}html[dir=rtl] .n2_field_text_image__preview{border-right:0;border-left:2px solid #94b2c1}.n2_form--dark .n2_field_text_image__preview{border-right-color:#1c2933;background-color:#2c3a45}html[dir=rtl] .n2_form--dark .n2_field_text_image__preview{border-left-color:#1c2933}.n2_field_text--focus .n2_field_text_image__preview{border-right-color:#1d81f9}.n2_field_text_image__size_label{display:none;position:absolute;right:28px;top:-20px;color:#325c77;line-height:16px;font-size:11px;background-color:#fff;border:2px solid #94b2c1;border-bottom:0;padding:0 5px;border-radius:2px 2px 0 0}.n2_form--dark .n2_field_text_image__size_label{color:#bdcfd9;background-color:#2c3a45;border-color:#1c2933}html[dir=rtl] .n2_field_text_image__size_label{left:28px;right:unset}.n2_field_text_image__size_label--visible{display:block}.n2_field_text_image__button{margin-left:10px}html[dir=rtl] .n2_field_text_image__button{margin-left:0;margin-right:10px}.n2_field_number input{text-align:center}.n2_field_text__unit,.n2_field_number__unit{padding:0 6px;background-color:#94b2c1;font-size:11px;color:#fff;line-height:26px;text-transform:uppercase}.n2_form--dark .n2_field_text__unit,.n2_form--dark .n2_field_number__unit{background-color:#1c2933;color:#94b2c1}.n2_field_text--focus .n2_field_text__unit,.n2_field_text--focus .n2_field_number__unit{background-color:#1d81f9}.n2_form--dark .n2_field_text--focus .n2_field_text__unit,.n2_form--dark .n2_field_text--focus .n2_field_number__unit{color:#fff}.n2_field_upload{cursor:pointer}.n2_field_upload .n2_field_chooser__label{width:150px;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.n2_field_upload input[type=file]{position:absolute;top:0;left:0;width:100%;height:0;opacity:0;font-size:0;padding:15px 0}.n2_field_upload input[type=file]::-webkit-file-upload-button{cursor:pointer}.n2_field_table__content{display:grid;grid-gap:2px;width:100%}.n2_field_table__cell{padding:5px 10px;background-color:#f0f4f7;font-size:12px;line-height:22px;color:#325c77}.n2_field_tab{display:inline-flex;background-color:#94b2c1;border-radius:2px;overflow:hidden}.n2_field_tab__option--selected{background-color:#1d81f9}.n2_field_tab__option{padding:0 15px;line-height:30px;font-size:12px;color:#fff;cursor:pointer;white-space:nowrap}.n2_modal_tab__tabs{text-align:center;background-color:#f0f4f7;margin:0 -40px 16px -40px}.n2_modal_tab__tabs_button{display:inline-block;font-size:16px;color:#325c77;font-family:inherit;font-weight:500;padding:20px 0 17px 0;margin:0 20px;cursor:pointer;border-bottom:3px solid transparent}.n2_modal_tab__tabs_button--active{border-bottom:3px solid #1375e9;color:#1375e9;box-sizing:border-box}.n2_modal_tab__tabs_content{display:none}.n2_modal_tab__tabs_content--active{display:block}.n2_field_textarea{position:relative;display:inline-block;vertical-align:top;border-radius:3px;background-color:#fff;border:2px solid #94b2c1}.n2_form--dark .n2_field_textarea{background-color:#2c3a45;border:2px solid #1c2933}.n2_field_textarea.n2_field_text--focus{border-color:#1d81f9}.n2_field_textarea textarea{padding:0 6px;margin:0;background:initial;box-sizing:border-box;min-height:44px;vertical-align:top;line-height:20px;font-size:12px;color:#325c77}.n2_form--dark .n2_field_textarea textarea{color:#bdcfd9}.n2_field_textarea textarea,.n2_field_textarea textarea:FOCUS{border:0;outline:0;box-shadow:none}.n2_field_textarea--inline textarea{min-height:26px}.n2_field_textarea_rich{position:relative;border-radius:3px;background-color:#fff;border:2px solid #94b2c1}.n2_form--dark .n2_field_textarea_rich{background-color:#2c3a45;border:2px solid #1c2933}.n2_field_textarea_rich.n2_field_text--focus{border-color:#1d81f9}.n2_field_textarea_rich textarea{display:block;padding:0 6px;margin:0;box-sizing:border-box;min-height:44px;vertical-align:top;line-height:20px;font-size:12px;color:#325c77}.n2_form--dark .n2_field_textarea_rich textarea{background-color:#2c3a45;color:#bdcfd9}.n2_field_textarea_rich textarea,.n2_field_textarea_rich textarea:FOCUS{border:0;outline:0;box-shadow:none}.n2_field_textarea_rich__buttons{display:flex}.n2_form--dark .n2_field_textarea_rich__buttons{background-color:#2c3a45;border-bottom:2px solid #1c2933}.n2_field_textarea_rich__button{display:flex;align-items:center;justify-content:center;width:30px;height:30px;font-size:16px;color:#94b2c1;border-right:2px solid #1c2933;cursor:pointer}.n2_field_select select{margin:0;padding:0 6px;border-radius:3px;max-width:280px;width:auto;line-height:26px;height:26px;box-sizing:content-box;font-size:12px;color:#325c77;background-color:#fff;border:2px solid #94b2c1}.n2_field_select select[multiple]{padding:0;height:auto}.n2_field_select select[multiple] option{padding:6px 6px;font-size:12px;color:#325c77}.n2_form--dark .n2_field_select select{background-color:#2c3a45;border:2px solid #1c2933;color:#bdcfd9}.n2_field_select select,.n2_field_select select:FOCUS{box-shadow:none;outline:0}.n2_field_select select:FOCUS{border:2px solid #1d81f9}.n2_field_onoff{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;padding:3px 0;display:flex;cursor:pointer}.n2_field_onoff__slider{flex:0 0 auto;border-radius:12px;background-color:#94b2c1;padding:3px;width:38px}.n2_field_onoff--on .n2_field_onoff__slider{background-color:#04c018}.n2_field_onoff__slider_bullet{width:18px;height:18px;border-radius:20px;background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,0,.1);transition:transform .25s}.n2_field_onoff--on .n2_field_onoff__slider_bullet{transform:translateX(20px)}html[dir=rtl] .n2_field_onoff--on .n2_field_onoff__slider_bullet{transform:translateX(-20px)}.n2_field_onoff__labels{margin:0 3px;position:relative;overflow:hidden;height:24px}.n2_field_onoff__label{font-size:12px;line-height:24px;font-weight:700;text-transform:uppercase;max-width:100px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.n2_field_onoff__label_off{color:#94b2c1}.n2_field_onoff--on .n2_field_onoff__label_off{margin-top:-24px}.n2_field_onoff__label_on{color:#40bb22}.n2_field_unit{position:relative;display:inline-block;vertical-align:top}.n2_field_unit__current_unit{line-height:30px;padding:0 6px;border-radius:3px;font-size:11px;text-transform:uppercase;background-color:#94b2c1;color:#fff}.n2_form--dark .n2_field_unit__current_unit{background-color:#1c2933;color:#94b2c1}.n2_field_unit__units{display:none;z-index:2;position:absolute;top:30px;right:0;border-bottom-left-radius:3px;border-bottom-right-radius:3px;background:#fff;box-shadow:0 1px 5px 1px rgba(55,77,88,.2)}.n2_field_unit:HOVER .n2_field_unit__units{display:block}.n2_field_unit__unit{padding:0 5px;line-height:24px;cursor:pointer;color:#325c77;font-size:11px;text-transform:uppercase}.n2_field_unit__unit:HOVER{background:#1d81f9;color:#fff}.n2_field_margin_padding{display:inline-flex;vertical-align:top}.n2_field_margin_padding .n2_field_text{position:relative;border-radius:0;margin-left:-2px}.n2_field_margin_padding .n2_field_text.n2_field_text--focus{z-index:2}.n2_field_margin_padding .n2_field_unit{margin-left:-2px}.n2_field_margin_padding .n2_field_unit__current_unit{border-top-left-radius:0;border-bottom-left-radius:0}html[dir=rtl] .n2_field_margin_padding .n2_field_unit__current_unit{border-radius:3px 0 0 3px}.n2_field_margin_padding__pre_label{display:inline-flex;align-items:center;justify-content:center;width:30px;height:30px;background-color:#94b2c1;font-size:16px;color:#fff;text-align:center;border-top-left-radius:3px;border-bottom-left-radius:3px;cursor:pointer}.n2_form--dark .n2_field_margin_padding__pre_label{background-color:#1c2933;color:#94b2c1}html[dir=rtl] .n2_field_margin_padding__pre_label{border-radius:0 3px 3px 0}.n2_field_margin_padding--linked-values .n2_field_margin_padding__pre_label .ssi_16::before{content:"\E64D"}.n2_field_margin_padding--linked-values .n2_field_text+.n2_field_text{display:none}.n2_field_radio{display:inline-flex;vertical-align:top;margin:0 -5px}.n2_field_radio .n2_field_radio__option{display:flex;align-items:center;cursor:pointer;margin:0 5px}.n2_field_radio .n2_field_radio__option_marker{display:flex;justify-content:center;align-items:center;width:14px;height:14px;line-height:14px;background-color:#fff;border:2px solid #94b2c1;border-radius:10px}.n2_field_radio .n2_field_radio__option_marker .ssi_16{display:none;color:#fff}.n2_field_radio .n2_field_radio__option--selected .n2_field_radio__option_marker{background-color:#04c018;border-color:#04c018}.n2_field_radio .n2_field_radio__option--selected .n2_field_radio__option_marker .ssi_16{display:block}.n2_field_radio .n2_field_radio__option_label{margin:0 5px;font-size:12px;line-height:30px;color:#325c77}.n2_field_radio_icon{display:inline-flex;vertical-align:top;overflow:hidden;border-radius:3px}.n2_field_radio_icon .n2_field_radio__option{display:flex;align-items:center;justify-content:center;width:30px;height:30px;background-color:#94b2c1;color:#fff;font-size:16px;cursor:pointer}.n2_form--dark .n2_field_radio_icon .n2_field_radio__option{background-color:#1c2933;color:#94b2c1}.n2_field_radio_icon .n2_field_radio__option--selected{background-color:#1d81f9}.n2_form--dark .n2_field_radio_icon .n2_field_radio__option--selected{background-color:#1d81f9;color:#fff}.n2_field_color .n2-field-color-preview{border-right:2px solid #94b2c1}html[dir=rtl] .n2_field_color .n2-field-color-preview{border-right:0;border-left:2px solid #94b2c1}.n2_form--dark .n2_field_color .n2-field-color-preview{border-right-color:#1c2933}html[dir=rtl] .n2_form--dark .n2_field_color .n2-field-color-preview{border-left-color:#1c2933}.n2_field_color.n2_field_text--focus .n2-field-color-preview{border-right-color:#1d81f9}html[dir=rtl] .n2_field_color.n2_field_text--focus .n2-field-color-preview{border-left-color:#1d81f9}.n2_field_color .n2-field-color-preview-inner{width:26px;height:26px;cursor:pointer}.n2_field_color input{text-transform:uppercase;width:50px;text-align:center}.n2_field_color--alpha input{width:65px}.n2_field_image_list{position:relative;display:inline-flex;vertical-align:top;align-items:center;border-radius:3px;border:2px solid #94b2c1;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.n2_field_image_list>.n2_field_image_list__fields{display:none}.n2_field_image_list--focus{border-color:#1d81f9;z-index:99}.n2_field_image_list__preview{display:inline-flex;background-color:#fff;height:26px;cursor:pointer}.n2_field_image_list__preview img{height:100%;width:auto}.n2_field_image_list__preview_label{padding:0 6px;background:#fff;line-height:26px;font-size:12px;color:#325c77}.n2_field_image_list__arrow{width:18px;line-height:26px;font-size:12px;color:#325c77;text-align:center;cursor:pointer}.n2_field_image_list__popover{display:none;position:absolute;top:30px;padding:10px;border-radius:3px;background-color:#fff;box-shadow:0 1px 5px 1px rgba(55,77,88,.2)}.n2_field_image_list--focus .n2_field_image_list__popover{display:block}.n2_field_image_list__popover_items{max-width:50vw;display:inline-flex;flex-wrap:wrap}.n2_field_image_list__popover_item{margin:10px;background-color:#fff;cursor:pointer}.n2_field_image_list__popover_item_image{border:2px solid #94b2c1;border-radius:3px;padding:3px}.n2_field_image_list__popover_item_image img{display:block;width:100%}.n2_field_image_list__popover_item--selected .n2_field_image_list__popover_item_image{border-color:#1d81f9}.n2_field_image_list__popover_item_disabled{display:inline-flex;align-items:center;min-height:100%;border:2px dashed #94b2c1;border-radius:3px;padding:0 10px;box-sizing:border-box;color:#325c77;font-size:14px;line-height:30px;text-transform:capitalize}.n2_field_image_list__popover_item--selected .n2_field_image_list__popover_item_disabled{border-color:#1d81f9}.n2_field_image_list__popover_item_label{color:#325c77;background:#fff;font-size:12px;text-align:center;line-height:30px}.n2_field_image_list__popover_item--selected .n2_field_image_list__popover_item_label{color:#1d81f9}.n2_field_checkbox_onoff{display:inline-flex;vertical-align:top;width:30px;height:30px;align-items:center;justify-content:center;background-color:#94b2c1;border-radius:3px;font-size:16px;color:#fff;cursor:pointer}.n2_field_checkbox_onoff--active{background-color:#1d81f9}.n2_field_group_checkbox_onoff{border-radius:3px;overflow:hidden;margin:5px 10px}.n2_field_group_checkbox_onoff .n2_field{padding:0}.n2_field_group_checkbox_onoff .n2_field_checkbox_onoff{border-radius:0}.n2_field_widget_position{position:relative;display:inline-flex;vertical-align:top;background-color:#fff;border:2px solid #94b2c1;border-radius:3px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.n2_field_widget_position--focus{border-color:#1d81f9;z-index:99}.n2_field_widget_position__label{display:inline-block;vertical-align:top;padding:0 6px;line-height:26px;font-size:12px;color:#325c77;cursor:pointer}.n2_field_widget_position__arrow{width:18px;line-height:26px;font-size:12px;color:#325c77;text-align:center;cursor:pointer}.n2_field_widget_position__popover{display:none;position:absolute;top:30px;padding:10px;border-radius:3px;background-color:#fff;box-shadow:0 1px 5px 1px rgba(55,77,88,.2)}.n2_field_widget_position--focus .n2_field_widget_position__popover{display:flex}.n2_field_widget_position__popover .n2_field__element{flex-wrap:nowrap!important}.n2_field_control_type_picker{display:flex;flex-wrap:wrap;margin:-10px -5px}.n2_field_control_type_picker__item{margin:10px;position:relative;display:inline-block;border:0;border-radius:1px;height:auto;cursor:pointer}.n2_field_control_type_picker__item img{display:block}.n2_field_control_type_picker__item:hover{box-shadow:0 2px 10px 0 rgba(0,0,0,.1)}.n2_field_control_type_picker__item.n2_field_control_type_picker__item--selected{box-shadow:0 0 0 3px #1375e9}.n2_field_control_type_picker__selected_marker{display:none;position:absolute;top:10px;right:10px;background-color:#1375e9;border-radius:10px;width:16px;height:16px}.n2_field_control_type_picker__item--selected .n2_field_control_type_picker__selected_marker{display:block}.n2_field_control_type_picker__selected_marker .ssi_16{color:#fff}.n2_field_message{border-radius:3px;padding:5px 10px;font-size:12px;line-height:20px}.n2_field_message--notice{background-color:#f0f4f7;color:#325c77}.n2_field_message--notice a:HOVER{color:#005bc6}.n2_field_message--notice a,.n2_field_message--notice a:FOCUS{color:#1375e9}.n2_field_message--warning{background-color:#f5e293;color:#325c77}.n2_field_message--warning a:HOVER{color:#005bc6}.n2_field_message--warning a,.n2_field_message--warning a:FOCUS{color:#1375e9}.n2_ss_layer_window .n2_field_message--warning{width:298px}.n2_field_autocomplete{position:relative}.n2_field_decoration{display:inline-flex;vertical-align:top;margin:0 -3px}.n2_field_decoration__option{margin:0 3px;display:flex;align-items:center;justify-content:center;width:30px;height:30px;background-color:#94b2c1;border-radius:3px;color:#fff;font-size:16px;cursor:pointer}.n2_form--dark .n2_field_decoration__option{background-color:#1c2933;color:#94b2c1}.n2_field_decoration__option--selected{background-color:#1d81f9}.n2_form--dark .n2_field_decoration__option--selected{background-color:#1d81f9;color:#fff}.n2_field_icon__preview{display:inline-flex;align-items:center;justify-content:center;width:30px;height:30px}.n2_field_icon__preview .n2i{color:#fff;font-size:24px!important;vertical-align:top}.n2_field_icon_tab{background-color:#1c2933;border-radius:2px;overflow:hidden;white-space:nowrap}.n2_field_icon_tab__option{display:inline-flex;padding:7px;color:#fff;cursor:pointer}.n2_field_icon_tab__option i{color:#94b2c1}.n2_field_icon_tab__option--selected{background-color:#1d81f9}.n2_field_icon_tab__option--selected i{color:#fff}.n2_field_mixed_font_size__container>.n2_field_text{border-top-right-radius:0;border-bottom-right-radius:0}html[dir=rtl] .n2_field_mixed_font_size__container>.n2_field_text{border-radius:0 3px 3px 0}.n2_field_mixed_font_size__container>.n2_field_unit>.n2_field_unit__current_unit{border-top-left-radius:0;border-bottom-left-radius:0}html[dir=rtl] .n2_field_mixed_font_size__container>.n2_field_unit>.n2_field_unit__current_unit{border-radius:3px 0 0 3px}.n2_field_mixed_box_shadow__container>.n2_field_text{margin-left:-2px;border-radius:0}html[dir=rtl] .n2_field_mixed_box_shadow__container>.n2_field_text{margin-left:0;margin-right:-2px}.n2_field_mixed_box_shadow__container>.n2_field_text:first-child{margin-left:0;border-top-left-radius:3px;border-bottom-left-radius:3px}html[dir=rtl] .n2_field_mixed_box_shadow__container>.n2_field_text:first-child{margin-right:0;border-radius:0 3px 3px 0}.n2_field_mixed_box_shadow__container>.n2_field_text:last-of-type{border-top-right-radius:3px;border-bottom-right-radius:3px}html[dir=rtl] .n2_field_mixed_box_shadow__container>.n2_field_text:last-of-type{border-radius:3px 0 0 3px}.n2_field_mixed_box_shadow__container>.n2_field_text--focus{z-index:2}.n2_field_mixed_text_shadow__container>.n2_field_text{margin-left:-2px}.n2_field_mixed_text_shadow__container>.n2_field_text:first-child{margin-left:0;border-radius:3px 0 0 3px}html[dir=rtl] .n2_field_mixed_text_shadow__container>.n2_field_text:first-child{margin-left:-2px;border-radius:0 3px 3px 0}.n2_field_mixed_text_shadow__container>.n2_field_text:last-child{border-radius:0 3px 3px 0}html[dir=rtl] .n2_field_mixed_text_shadow__container>.n2_field_text:last-child{border-radius:3px 0 0 3px}.n2_field_mixed_text_shadow__container>.n2_field_text--focus{z-index:2}.n2_field_mixed_border__container{display:inline-flex;vertical-align:top;margin:0 -5px}.n2_field_mixed_border__container>*{margin:0 5px}.n2_form__table_row .n2_field.n2_field_mixed_generator_order{padding:0}.n2_field_button{display:inline-block;text-align:center;padding:0 10px;background-color:#94b2c1;font-size:11px;line-height:30px;text-transform:uppercase;border-radius:3px;max-width:150px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.n2_field_button:HOVER{background-color:#7f9caa}.n2_field_button,.n2_field_button:HOVER,.n2_field_button:FOCUS{color:#fff}.n2_form--dark .n2_field_button{background-color:#6b7986}.n2_form--dark .n2_field_button:HOVER{background-color:#8694a2}.n2_form--dark .n2_field_button,.n2_form--dark .n2_field_button:HOVER,.n2_form--dark .n2_field_button:FOCUS{color:#fff}.n2_field_button--icon{display:inline-flex;align-items:center;justify-content:center;padding:0;width:30px;height:30px;font-size:16px}.n2_field_button--blue{background-color:#1d81f9}.n2_field_button--blue:HOVER{background-color:#338ef9}.n2_field_widget_area{width:80px;height:80px;position:relative;margin:0 10px}.n2_field_widget_area__inner{position:absolute;top:14px;left:14px;width:46px;height:46px;border:3px solid #94b2c1;border-radius:3px}.n2_field_widget_area__area{position:absolute;background-color:#94b2c1;border-radius:2px;cursor:pointer;width:10px;height:10px;left:0;top:0}.n2_field_widget_area__area[data-area="1"]{left:35px}.n2_field_widget_area__area[data-area="2"]{left:21px;top:21px}.n2_field_widget_area__area[data-area="3"]{left:35px;top:21px}.n2_field_widget_area__area[data-area="4"]{left:49px;top:21px}.n2_field_widget_area__area[data-area="5"]{top:35px}.n2_field_widget_area__area[data-area="6"]{left:21px;top:35px}.n2_field_widget_area__area[data-area="7"]{left:49px;top:35px}.n2_field_widget_area__area[data-area="8"]{left:70px;top:35px}.n2_field_widget_area__area[data-area="9"]{left:21px;top:49px}.n2_field_widget_area__area[data-area="10"]{left:35px;top:49px}.n2_field_widget_area__area[data-area="11"]{left:49px;top:49px}.n2_field_widget_area__area[data-area="12"]{left:35px;top:70px}.n2_field_widget_area__area--selected{background-color:#1d81f9;cursor:default}.n2_field_columns{display:grid;grid-gap:10px;grid-template-columns:280px 30px;width:310px}.n2_field_columns__content{position:relative;display:flex;overflow:hidden}.n2_field_columns__column{flex:0 0 auto;overflow:hidden;background-color:#04c018;border-radius:2px;font-size:12px;line-height:30px;text-align:center;color:#fff;cursor:ew-resize}.n2_field_columns__handle{display:inline-flex;justify-content:center;align-items:center;width:16px;height:30px;cursor:ew-resize;color:#bdcfd9}.n2_field_columns__content.n2-sortable-currently-sorted .n2_field_columns__column{margin-right:16px}.n2_field_columns__content.n2-sortable-currently-sorted .n2_field_columns__column:last-child{margin-right:0}.n2_field_columns__content.n2-sortable-currently-sorted .n2_field_columns__handle{display:none}.n2_field_columns__add{flex:0 0 auto;display:inline-flex;justify-content:center;align-items:center;width:30px;height:30px;background-color:#04c018;border-radius:2px;color:#fff;cursor:pointer}.n2_field_columns__add:HOVER{background-color:#07ca1c}.n2_field_select_list{height:120px;background-color:#fff;border:2px solid #94b2c1;border-radius:3px;overflow-y:scroll}.n2_field_select_list__option{display:flex;cursor:pointer;line-height:30px;font-size:12px;color:#325c77}.n2_field_select_list__option:nth-child(even){background-color:#f0f4f7}.n2_field_select_list__option.n2_field_select_list__option--selected{background-color:#1d81f9;color:#fff}.n2_field_select_list__option_primary{flex:1 1 auto;padding:0 8px}.n2_field_select_list__option_secondary{padding:0 8px}.n2_field_chooser{position:relative;display:inline-flex;vertical-align:top;border-radius:3px;background-color:#f0f4f7;height:30px}.n2_form--dark .n2_field_chooser{background-color:#2c3a45}.n2_field_chooser__label{min-width:100px;padding:0 8px;font-size:12px;line-height:30px;color:#325c77;cursor:pointer;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.n2_form--dark .n2_field_chooser__label{color:#bdcfd9}.n2_field_chooser__clear{display:flex;line-height:30px;width:30px;justify-content:center;align-items:center}.n2_field_chooser__clear,.n2_field_chooser__clear:HOVER,.n2_field_chooser__clear:FOCUS{color:#94b2c1}.n2_field_chooser--empty .n2_field_chooser__clear{visibility:hidden}.n2_field_chooser__choose{display:inline-flex;align-items:center;justify-content:center;background-color:#04c018;width:30px;line-height:30px;border-top-right-radius:3px;border-bottom-right-radius:3px}.n2_field_chooser__choose:HOVER{background-color:#07ca1c}.n2_field_chooser__choose,.n2_field_chooser__choose:HOVER,.n2_field_chooser__choose:FOCUS{color:#fff}.n2_field_chooser--empty .n2_field_chooser__choose{background-color:#94b2c1}.n2_form--dark .n2_field_chooser--empty .n2_field_chooser__choose{background-color:#1c2933}.n2_form--dark .n2_field_chooser--empty .n2_field_chooser__choose,.n2_form--dark .n2_field_chooser--empty .n2_field_chooser__choose:HOVER,.n2_form--dark .n2_field_chooser--empty .n2_field_chooser__choose:FOCUS{color:#94b2c1}html[dir=rtl] .n2_field_chooser__choose{border-radius:3px 0 0 3px}.n2_field_select_icon{display:flex;flex-wrap:wrap;margin:-10px -20px}.n2_field_select_icon__option{position:relative;display:flex;flex-flow:column;margin:20px;width:130px;padding:15px 10px;cursor:pointer;border-radius:3px}.n2_field_select_icon__option:HOVER{box-shadow:0 2px 10px 0 rgba(0,0,0,.1)}.n2_field_select_icon__option--selected{box-shadow:0 2px 10px 0 rgba(0,0,0,.1)}.n2_field_select_icon__option_icon{display:flex;align-items:center;justify-content:center;color:#94b2c1}.n2_field_select_icon__option--selected .n2_field_select_icon__option_icon{color:#1375e9}.n2_field_select_icon__option_label{font-size:14px;line-height:30px;color:#325c77;text-align:center;font-weight:700}.n2_field_select_icon__option--selected .n2_field_select_icon__option_label{color:#1375e9}.n2_field_select_icon__selected_marker{display:none;position:absolute;top:10px;right:10px;background-color:#1375e9;border-radius:10px;width:16px;height:16px;color:#fff}.n2_field_select_icon__option--selected .n2_field_select_icon__selected_marker{display:block}.n2_field_font{display:inline-flex;align-items:center;justify-content:center;background-color:#04c018;min-width:30px;line-height:30px;border-radius:3px;padding:0 10px;font-size:11px;text-transform:uppercase;cursor:pointer}.n2_field_font:HOVER{background-color:#07ca1c}.n2_field_font,.n2_field_font:HOVER,.n2_field_font:FOCUS{color:#fff}.n2_field_style{display:inline-flex;align-items:center;justify-content:center;background-color:#04c018;min-width:30px;line-height:30px;border-radius:3px;padding:0 10px;font-size:11px;text-transform:uppercase;cursor:pointer}.n2_field_style:HOVER{background-color:#07ca1c}.n2_field_style,.n2_field_style:HOVER,.n2_field_style:FOCUS{color:#fff}.n2_field_subform_icon{margin:-8px;display:flex;flex-wrap:wrap}.n2_field_subform_icon__option{margin:8px;display:flex;flex-flow:column;align-items:center;min-width:120px;border:3px solid #fff;border-radius:3px;cursor:pointer}.n2_field_subform_icon__option_icon{display:flex;align-items:center;justify-content:center;color:#94b2c1}.n2_field_subform_icon__option_label{margin-top:-13px;line-height:28px;font-size:12px;color:#325c77;font-weight:700;padding:0 10px}.n2_field_subform_icon__option--selected{border-color:#1375e9}.n2_field_subform_icon__option--selected .n2_field_subform_icon__option_icon,.n2_field_subform_icon__option--selected .n2_field_subform_icon__option_label{color:#1375e9}.n2_field_autoplaypicker{position:relative;display:inline-flex;vertical-align:top;background-color:#fff;border:2px solid #94b2c1;border-radius:3px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.n2_field_autoplaypicker--focus{border-color:#1d81f9;z-index:99}.n2_field_autoplaypicker__label{display:inline-block;vertical-align:top;padding:0 6px;width:230px;line-height:26px;font-size:12px;color:#325c77;cursor:pointer}.n2_field_autoplaypicker__arrow{width:18px;line-height:26px;font-size:12px;color:#325c77;text-align:center;cursor:pointer}.n2_field_autoplaypicker__popover{display:none;position:absolute;top:30px;padding:10px;border-radius:3px;background-color:#fff;box-shadow:0 1px 5px 1px rgba(55,77,88,.2)}.n2_field_autoplaypicker--focus .n2_field_autoplaypicker__popover{display:flex}.n2_field_autoplaypicker__popover .n2_field__element{flex-wrap:nowrap!important}.n2_field_layer_window_focus{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;position:relative;cursor:pointer;background:#1c2933;border:2px solid #1c2933;border-radius:3px}.n2_field_layer_window_focus__image{display:block;width:100%;height:auto;border-radius:2px}.n2_field_layer_window_focus__dot{position:absolute;left:50%;top:50%;width:12px;height:12px;margin-top:-8px;margin-left:-8px;border:2px solid #fff;border-radius:16px;background:#04c018}.n2_field_breakpoint{display:flex;flex-wrap:wrap}.n2_field_breakpoint__breakpoint_container{position:relative;margin:25px 10px 5px;height:30px;display:flex;align-items:center;background-color:#94b2c1;border-radius:3px}.n2_field_breakpoint__breakpoint_container[data-orientation=portrait] [data-orientation=landscape]{display:none!important}.n2_field_breakpoint__breakpoint_container[data-orientation=landscape] [data-orientation=portrait]{display:none!important}.n2_field_breakpoint__device{position:relative;flex:0 0 auto;width:130px;text-align:center;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.n2_field_breakpoint__device_enable{display:inline-flex;align-items:center;justify-content:center;width:100%;height:30px;color:#fff}.n2_field_breakpoint__device_disable{position:absolute;right:5px;top:0;color:#fff;height:30px;display:none;align-items:center;opacity:.5;cursor:pointer}.n2_field_breakpoint__device_disable:HOVER{opacity:1}.n2_field_breakpoint__device--enabled .n2_field_breakpoint__device_disable{display:flex}.n2_field_breakpoint__breakpoint{position:relative;flex:0 0 auto;height:30px}.n2_field_breakpoint__breakpoint_divider{margin:5px 0;width:0;height:20px;box-shadow:0 0 0 1px #fff}.n2_field_breakpoint__breakpoint_label_container{display:flex;align-items:center;justify-content:center;position:absolute;margin-left:-32px;top:-26px;width:50px}html[dir=rtl] .n2_field_breakpoint__breakpoint_label_container{margin-left:0;margin-right:-32px}.n2_field_breakpoint__breakpoint_start .n2_field_breakpoint__breakpoint_label_container{margin-left:0;justify-content:flex-start}html[dir=rtl] .n2_field_breakpoint__breakpoint_start .n2_field_breakpoint__breakpoint_label_container{margin-right:0}.n2_field_breakpoint__breakpoint_end .n2_field_breakpoint__breakpoint_label_container{margin-left:-50px;justify-content:flex-end}html[dir=rtl] .n2_field_breakpoint__breakpoint_end .n2_field_breakpoint__breakpoint_label_container{margin-left:0;margin-right:-50px}.n2_field_breakpoint__breakpoint_label_rename{display:flex;align-items:center;justify-content:center;width:12px;cursor:pointer;color:#94b2c1;opacity:.7}.n2_field_breakpoint__breakpoint_label_rename:HOVER{opacity:1}.n2_field_breakpoint__breakpoint_label_container--disable-edit .n2_field_breakpoint__breakpoint_label_rename{visibility:hidden;pointer-events:none}.n2_field_breakpoint__breakpoint_label{color:#325c77;font-size:12px;line-height:26px}.n2_field_breakpoint__breakpoint_start .n2_field_breakpoint__breakpoint_label,.n2_field_breakpoint__breakpoint_end .n2_field_breakpoint__breakpoint_label{cursor:default}.n2_field_breakpoint__breakpoint .n2_field_breakpoint__breakpoint_label{cursor:default}.n2_field_breakpoint__breakpoint .n2_field_breakpoint__breakpoint_label[contenteditable=true]{cursor:text;outline:0}.n2_field_breakpoint--with-enables .n2_field_breakpoint__device .n2_field_breakpoint__device_enable{cursor:pointer;opacity:.5}.n2_field_breakpoint--with-enables .n2_field_breakpoint__device--enabled .n2_field_breakpoint__device_enable{opacity:1}.n2_field_breakpoint--with-enables .n2_field_breakpoint__device[data-id=desktopportrait] .n2_field_breakpoint__device_enable,.n2_field_breakpoint--with-enables .n2_field_breakpoint__device[data-id=tabletportrait] .n2_field_breakpoint__device_enable,.n2_field_breakpoint--with-enables .n2_field_breakpoint__device[data-id=mobileportrait] .n2_field_breakpoint__device_enable{cursor:default;opacity:1}.n2_field_breakpoint--with-enables .n2_field_breakpoint__breakpoint{display:none}.n2_field_breakpoint--with-enables .n2_field_breakpoint__breakpoint--enabled,.n2_field_breakpoint--with-enables .n2_field_breakpoint__breakpoint[data-id=desktopportrait],.n2_field_breakpoint--with-enables .n2_field_breakpoint__breakpoint[data-id=tabletportrait],.n2_field_breakpoint--with-enables .n2_field_breakpoint__breakpoint[data-id=mobileportrait]{display:block}body[data-desktoplandscape="0"] .n2-slider-settings-require--desktoplandscape,body[data-tabletlandscape="0"] .n2-slider-settings-require--tabletlandscape,body[data-mobilelandscape="0"] .n2-slider-settings-require--mobilelandscape{display:none!important}.n2_autocomplete_options{font-family:"Inter-Nextend",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;line-height:1.3;font-size:16px;-webkit-font-smoothing:antialiased;position:absolute;top:0;z-index:100003;overflow:auto;max-height:300px;border-bottom-left-radius:3px;border-bottom-right-radius:3px;background:#fff;box-shadow:0 1px 5px 1px rgba(55,77,88,.2)}.n2_autocomplete_options a{transition:none 0s;text-decoration:none;box-shadow:none}.n2_autocomplete_option{padding:0 5px;line-height:24px;cursor:pointer;color:#325c77;font-size:11px}.n2_autocomplete_option:HOVER{background:#1d81f9;color:#fff}.n2_tooltip{font-family:"Inter-Nextend",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;line-height:1.3;font-size:16px;-webkit-font-smoothing:antialiased;visibility:visible;z-index:100000;position:fixed;left:-10000px;top:-10000px;margin-top:-9000000px;opacity:0;border-radius:3px;font-size:12px;line-height:16px;font-weight:700;padding:4px 6px;color:#94b2c1;background:#0c1924;white-space:nowrap}.n2_tooltip a{transition:none 0s;text-decoration:none;box-shadow:none}.n2_tooltip--active{opacity:1;margin:10px}.n2_tooltip--active.n2_tooltip_position{margin:0}.n2_body--tooltip-position-active .n2_tooltip:not(.n2_tooltip_position){display:none}.n2_form_tip{font-family:"Inter-Nextend",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;line-height:1.3;font-size:16px;-webkit-font-smoothing:antialiased;z-index:100000;position:fixed;display:none;max-width:360px;padding:5px 0}.n2_form_tip a{transition:none 0s;text-decoration:none;box-shadow:none}.n2_form_tip--visible{display:block}.n2_form_tip__overlay{position:absolute;width:20px;height:20px}.n2_form_tip[data-position-horizontal=left] .n2_form_tip__overlay{left:0}.n2_form_tip[data-position-horizontal=right] .n2_form_tip__overlay{right:0}.n2_form_tip[data-position-vertical=bottom] .n2_form_tip__overlay{top:100%}.n2_form_tip[data-position-vertical=top] .n2_form_tip__overlay{bottom:100%}.n2_form_tip__content{background-color:rgba(12,25,36,.95);border-radius:5px;padding:20px}.n2_form_tip__label{color:#fff;font-size:14px;line-height:20px;text-transform:capitalize;margin-bottom:10px}.n2_form_tip__description{color:#94b2c1;font-size:14px;line-height:20px}.n2_form_tip__description a,.n2_form_tip__description a:HOVER,.n2_form_tip__description a:FOCUS{color:#1d81f9}.n2_form_tip__link{margin-top:10px;display:inline-block;line-height:30px;background-color:#1d81f9;border-radius:3px;padding:0 10px;font-size:11px;text-transform:capitalize;text-decoration:none}.n2_form_tip__link,.n2_form_tip__link:HOVER,.n2_form_tip__link:FOCUS{color:#fff}.n2_dashboard_info{position:relative}.n2_dashboard_info .n2_button_plain_icon{position:relative}.n2_dashboard_info--visible .n2_button_plain_icon,.n2_dashboard_info--visible .n2_button_plain_icon:HOVER,.n2_dashboard_info--visible .n2_button_plain_icon:FOCUS{color:#fff}.n2_dashboard_info__marker{display:none;position:absolute;top:7px;right:8px;width:8px;height:8px;background-color:#f69300;border-radius:100%;border:2px solid #fff}html[data-ss3-activated="0"] .n2_dashboard_info__marker{display:block}.n2_dashboard_info__content{display:none;position:absolute;right:0;top:45px;padding:24px;border-radius:3px;background-color:#fff;box-shadow:0 1px 5px 1px rgba(55,77,88,.2);white-space:nowrap}.n2_dashboard_info--visible .n2_dashboard_info__content{display:grid;grid-template-columns:24px 1fr auto;grid-gap:15px}html[dir=rtl] .n2_dashboard_info__content{left:0;right:auto}.n2_dashboard_info__row_icon .ssi_24{display:block;font-size:24px;line-height:30px}.n2_dashboard_info__row_content{color:#325c77;line-height:30px;font-size:14px}.n2_dashboard_info__row_action{text-align:right}.n2_dashboard_info__row_action a,.n2_dashboard_info__row_action a:HOVER,.n2_dashboard_info__row_action a:FOCUS{line-height:30px;font-size:14px}.n2_dashboard_info__row_action a,.n2_dashboard_info__row_action a:FOCUS{color:#1375e9}.n2_dashboard_info__row_action a:HOVER{color:#005bc6}html[dir=rtl] .n2_dashboard_info__row_action{text-align:left}html[data-ss3-activated="0"] .n2_dashboard_info__row_icon_activated,html[data-ss3-activated="0"] .n2_dashboard_info__row_content_activated,html[data-ss3-activated="0"] .n2_dashboard_info__row_action_activated{display:none}html[data-ss3-activated="1"] .n2_dashboard_info__row_icon_activate,html[data-ss3-activated="1"] .n2_dashboard_info__row_content_activate,html[data-ss3-activated="1"] .n2_dashboard_info__row_action_activate,html[data-ss3-activated="1"] #n2-ss-activate-license-banner{display:none}.n2_dashboard_info__row_icon_version .ssi_24{color:#94b2c1}.n2_dashboard_info__row_icon_check_update .ssi_24{color:#1d81f9}.n2_dashboard_info__row_icon_activate .ssi_24{color:#c43e2a}.n2_dashboard_info__row_icon_activated .ssi_24{color:#04c018}.n2_dashboard_manager{font-family:"Inter-Nextend",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;padding:0 40px}.n2_dashboard_manager__content{position:relative;display:flex;flex-wrap:wrap;margin:0 -16px}.n2_dashboard_manager__content>*{margin:16px;flex:0 0 auto}.n2_dashboard_manager_upgrade_pro{position:relative;display:flex;flex-flow:column;align-items:center;width:572px;min-height:392px;background-color:#fff;border-radius:5px;box-shadow:0 10px 8px -10px rgba(0,0,0,.1)}.n2_dashboard_manager_upgrade_pro:HOVER{box-shadow:0 10px 8px -10px rgba(0,0,0,.2)}.n2_dashboard_manager_upgrade_pro__logo{margin-top:44px;display:flex;align-items:center;justify-content:center;width:100px;height:100px;background-color:rgba(29,129,249,.1);border-radius:50px;color:#1d81f9}.n2_dashboard_manager_upgrade_pro__heading{margin-top:9px;font-size:18px;line-height:30px;color:#283f4d;font-weight:700}.n2_dashboard_manager_upgrade_pro__details{margin-top:8px;display:grid;grid-template-columns:1fr 1fr;grid-gap:14px;width:100%;padding:0 30px 14px;box-sizing:border-box}.n2_dashboard_manager_upgrade_pro__details_option{display:flex;align-items:center}.n2_dashboard_manager_upgrade_pro__details_option,.n2_dashboard_manager_upgrade_pro__details_option:HOVER,.n2_dashboard_manager_upgrade_pro__details_option:FOCUS{color:#1375e9}.n2_dashboard_manager_upgrade_pro__details_option_label{margin:0 10px;font-size:14px;line-height:16px;text-transform:capitalize;padding:5px 0}.n2_dashboard_manager_upgrade_pro__button{margin-top:4px;margin-bottom:20px;padding:0 20px;min-width:260px;background-color:#1d81f9;border-radius:3px;text-align:center;font-size:12px;line-height:36px;text-transform:uppercase;font-weight:700}.n2_dashboard_manager_upgrade_pro__button,.n2_dashboard_manager_upgrade_pro__button:HOVER,.n2_dashboard_manager_upgrade_pro__button:FOCUS{color:#fff}.n2_dashboard_manager_upgrade_pro__button:HOVER{background-color:#338ef9}.n2_dashboard_manager_upgrade_pro__close{display:flex;position:absolute;top:10px;right:10px;width:36px;height:36px;justify-content:center;align-items:center;background-color:#f0f4f7;border-radius:50px;color:#325c77;cursor:pointer;opacity:0;transition:opacity .3s .5s}.n2_dashboard_manager_upgrade_pro:HOVER .n2_dashboard_manager_upgrade_pro__close{opacity:1}.n2_dashboard_manager_review{position:relative;display:flex;flex-flow:column;align-items:center;width:572px;height:392px;background-color:#fff;border-radius:5px;box-shadow:0 10px 8px -10px rgba(0,0,0,.1)}.n2_dashboard_manager_review:HOVER{box-shadow:0 10px 8px -10px rgba(0,0,0,.2)}.n2_dashboard_manager_review__logo{display:flex;align-items:center;justify-content:center;margin-top:44px;width:100px;height:100px;background-color:rgba(246,183,0,.1);border-radius:50px;overflow:hidden;color:#f6b700}.n2_dashboard_manager_review__logo>*{display:none}.n2_dashboard_manager_review[data-star="0"] .ssi_48--review0,.n2_dashboard_manager_review[data-star="1"] .ssi_48--review1,.n2_dashboard_manager_review[data-star="2"] .ssi_48--review2,.n2_dashboard_manager_review[data-star="3"] .ssi_48--review3,.n2_dashboard_manager_review[data-star="4"] .ssi_48--review4,.n2_dashboard_manager_review[data-star="5"] .ssi_48--review5{display:block}.n2_dashboard_manager_review__heading{margin-top:9px;font-size:18px;line-height:30px;color:#283f4d;font-weight:700}.n2_dashboard_manager_review__paragraph{width:380px;height:78px;color:#325c77;font-size:14px;line-height:26px;text-align:center}.n2_dashboard_manager_review__star_selector{margin-top:25px;display:flex}.n2_dashboard_manager_review__star{display:inline-flex;align-items:center;justify-content:center;width:34px;height:34px;color:#94b2c1;cursor:pointer}.n2_dashboard_manager_review[data-star="1"] .n2_dashboard_manager_review__star[data-star="1"],.n2_dashboard_manager_review[data-star="2"] .n2_dashboard_manager_review__star[data-star="1"],.n2_dashboard_manager_review[data-star="2"] .n2_dashboard_manager_review__star[data-star="2"],.n2_dashboard_manager_review[data-star="3"] .n2_dashboard_manager_review__star[data-star="1"],.n2_dashboard_manager_review[data-star="3"] .n2_dashboard_manager_review__star[data-star="2"],.n2_dashboard_manager_review[data-star="3"] .n2_dashboard_manager_review__star[data-star="3"],.n2_dashboard_manager_review[data-star="4"] .n2_dashboard_manager_review__star[data-star="1"],.n2_dashboard_manager_review[data-star="4"] .n2_dashboard_manager_review__star[data-star="2"],.n2_dashboard_manager_review[data-star="4"] .n2_dashboard_manager_review__star[data-star="3"],.n2_dashboard_manager_review[data-star="4"] .n2_dashboard_manager_review__star[data-star="4"],.n2_dashboard_manager_review[data-star="5"] .n2_dashboard_manager_review__star[data-star="1"],.n2_dashboard_manager_review[data-star="5"] .n2_dashboard_manager_review__star[data-star="2"],.n2_dashboard_manager_review[data-star="5"] .n2_dashboard_manager_review__star[data-star="3"],.n2_dashboard_manager_review[data-star="5"] .n2_dashboard_manager_review__star[data-star="4"],.n2_dashboard_manager_review[data-star="5"] .n2_dashboard_manager_review__star[data-star="5"]{color:#f6b700}.n2_dashboard_manager_review__label{display:none;margin-top:4px;font-size:16px;line-height:28px;color:#283f4d;text-align:center;font-weight:700}.n2_dashboard_manager_review[data-star="0"] .n2_dashboard_manager_review__label[data-star="0"],.n2_dashboard_manager_review[data-star="1"] .n2_dashboard_manager_review__label[data-star="1"],.n2_dashboard_manager_review[data-star="2"] .n2_dashboard_manager_review__label[data-star="2"],.n2_dashboard_manager_review[data-star="3"] .n2_dashboard_manager_review__label[data-star="3"],.n2_dashboard_manager_review[data-star="4"] .n2_dashboard_manager_review__label[data-star="4"],.n2_dashboard_manager_review[data-star="5"] .n2_dashboard_manager_review__label[data-star="5"]{display:block}.n2_dashboard_manager_review__close{display:flex;position:absolute;top:10px;right:10px;width:36px;height:36px;justify-content:center;align-items:center;background-color:#f0f4f7;border-radius:50px;color:#325c77;cursor:pointer;opacity:0;transition:opacity .3s .5s}html[dir=rtl] .n2_dashboard_manager_review__close{right:auto;left:10px}.n2_dashboard_manager_review:HOVER .n2_dashboard_manager_review__close{opacity:1}.n2_dashboard_manager_newsletter{position:relative;display:flex;flex-flow:column;align-items:center;width:572px;height:392px;background-color:#fff;border-radius:5px;box-shadow:0 10px 8px -10px rgba(0,0,0,.1)}.n2_dashboard_manager_newsletter:HOVER{box-shadow:0 10px 8px -10px rgba(0,0,0,.2)}.n2_dashboard_manager_newsletter__logo{margin-top:44px;display:flex;align-items:center;justify-content:center;width:100px;height:100px;background-color:rgba(95,57,194,.1);border-radius:50px;color:#5f39c2}.n2_dashboard_manager_newsletter__heading{margin-top:9px;font-size:18px;line-height:30px;color:#283f4d;font-weight:700}.n2_dashboard_newsletter__paragraph{width:380px;height:78px;color:#325c77;font-size:14px;line-height:26px;text-align:center}.n2_dashboard_newsletter__form{margin-top:10px;display:block}.n2_dashboard_newsletter__form input[type=email]{width:300px;background-color:#fff;border:2px solid #94b2c1;border-radius:3px;color:#325c77;font-size:14px;line-height:36px;text-align:center;box-shadow:none}.n2_dashboard_newsletter__form input[type=email]:FOCUS{border-color:#5f39c2}.n2_dashboard_manager_newsletter__button{margin-top:10px;padding:0 20px;min-width:260px;background-color:#5f39c2;border-radius:3px;text-align:center;font-size:12px;line-height:36px;text-transform:uppercase;font-weight:700;cursor:pointer}.n2_dashboard_manager_newsletter__button,.n2_dashboard_manager_newsletter__button:HOVER,.n2_dashboard_manager_newsletter__button:FOCUS{color:#fff}.n2_dashboard_manager_newsletter__button:HOVER{background-color:#683fd4}.n2_dashboard_manager_newsletter__close{display:flex;position:absolute;top:10px;right:10px;width:36px;height:36px;justify-content:center;align-items:center;background-color:#f0f4f7;border-radius:50px;color:#325c77;cursor:pointer;opacity:0;transition:opacity .3s .5s}html[dir=rtl] .n2_dashboard_manager_newsletter__close{right:auto;left:10px}.n2_dashboard_manager_newsletter:HOVER .n2_dashboard_manager_newsletter__close{opacity:1}.n2_device_changer{display:inline-flex;align-items:center;position:relative;direction:ltr}.n2_device_changer__button{display:inline-flex;align-items:center;justify-content:center;width:24px;height:24px;font-size:24px;color:#94b2c1}.n2_device_changer__button--marked:after{position:absolute;top:-3px;right:-3px;display:block;content:'';width:8px;height:8px;border-radius:20px;border:2px solid #fff;background-color:#f69300}.n2_device_tester{display:none;position:absolute;top:100%;left:12px;transform:translateX(-50%);padding:10px 10px 0;width:260px;background-color:#0c1924}.n2_device_changer--active .n2_device_tester{display:block}.n2_device_tester_devices{display:flex;justify-content:space-around}.n2_device_tester_devices__device{display:inline-flex;align-items:center;justify-content:center;padding:6px 10px;width:24px;height:24px;color:#94b2c1;font-size:24px;cursor:pointer}.n2_device_tester_devices__device--active{color:#1d81f9}.n2_device_tester_zoom{display:flex;align-items:center;padding:10px 0;background-color:#0c1924;border-radius:0 0 3px 3px;text-align:center}.n2_device_tester_zoom__min_label,.n2_device_tester_zoom__max_label{width:30px;padding:0 10px;color:#94b2c1;font-size:10px}.n2_device_tester_zoom__min_label{text-align:right}.n2_device_tester_zoom__max_label{text-align:left}.n2_device_tester_zoom__inner{position:relative;margin:0 0;width:160px;height:34px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.n2_device_tester_zoom__trail{position:absolute;left:0;top:50%;margin:-3px 0;width:160px;background-color:#3a4956;height:6px;border-radius:3px}.n2_device_tester_zoom__editor_size{position:absolute;left:0;top:9px;margin-left:-2px;width:2px;height:16px;background-color:#3a4956}.n2_device_tester_zoom__handle{position:absolute;top:9px;display:block;width:16px;height:16px;margin-left:-8px;background-color:#fff;border-radius:16px;z-index:2;cursor:ew-resize}.n2_device_tester_zoom__handle_label{position:absolute;left:-22px;top:-18px;width:60px;color:#94b2c1;font-size:10px;line-height:16px;text-align:center}.n2_slider_manager{font-family:"Inter-Nextend",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;padding:0 40px}.n2_slider_manager__action_bar{display:flex;padding:16px 0 0;height:30px}.n2_slider_manager__action_bar_left{flex:1 1 auto;display:flex;justify-content:flex-start;align-items:center;margin:0 -5px}html[data-sliders='0'] .n2_slider_manager__action_bar_left{visibility:hidden}.n2_slider_manager__action_bar_right{flex:1 1 auto;display:flex;justify-content:flex-end}.n2_slider_manager__content{position:relative;display:flex;flex-wrap:wrap;margin:0 -16px}.n2_slider_manager__box{position:relative;flex:0 0 auto;width:270px;height:180px;border-radius:3px;margin:16px;background:#fff}.n2_slider_manager__sortable_placeholder{height:200px;margin:5px 0;width:0;box-shadow:0 0 0 2px #1d81f9}.n2_slider_manager__new_slider{background-color:#04c018;color:#fff;display:flex;flex-flow:column;justify-content:center;align-items:center;cursor:pointer}.n2_slider_manager__new_slider:HOVER{background-color:#07ca1c}.n2_slider_manager__new_slider_icon{margin:5px 0 25px}.n2_slider_manager__new_slider_label{font-size:16px;line-height:16px;text-transform:uppercase;font-weight:700;max-width:200px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.n2_slider_box{position:relative;display:flex;flex-flow:column;border-radius:3px;box-shadow:0 10px 8px -10px rgba(0,0,0,.1);overflow:hidden;transition:transform .2s,box-shadow .5s}.n2_slider_box:HOVER,.n2_slider_box.n2_slider_box--context-menu{box-shadow:0 10px 8px -10px rgba(0,0,0,.2)}.n2_slider_box.n2_slider_box--selected{box-shadow:0 0 0 5px #1d81f9;transition:box-shadow 0s}.n2_slider_box.n2-ui-sortable-helper{opacity:.8}.n2_slider_box__content{position:relative;height:100%;background-size:cover;background-position:50% 0;background-repeat:no-repeat}.n2_slider_box__content .n2_slider_box__icon{background:#1375e9;height:100%;width:100%;position:absolute;top:0;left:0;display:flex;align-items:center;justify-content:center;flex-flow:column}.n2_slider_box__content .n2_slider_box__icon.n2_slider_box__icon_grey{background:#6b7986}.n2_slider_box__content .n2_slider_box__icon .n2_slider_box__icon_container{color:#fff}.n2_slider_box__content .n2_slider_box__icon .n2_slider_box__icon_text{color:#fff;text-transform:uppercase;font-weight:700;margin-top:12px}.n2_slider_box--group .n2_slider_box__icon{background:#94b2c1}.n2_slider_box--slider{background-size:cover;background-position:50% 0;background-repeat:no-repeat}.n2_slider_box__footer{flex:0 0 auto;padding:15px 10px;background-color:#fff;border-bottom-left-radius:3px;border-bottom-right-radius:3px;display:flex;align-items:center}.n2_slider_box__footer_title{display:block;padding:0 5px;box-sizing:border-box;width:100%;min-height:20px;max-height:60px;overflow:hidden;word-wrap:break-word;cursor:text;font-size:14px;line-height:20px;font-weight:700;color:#325c77}.n2_slider_box__footer_icon{color:#94b2c1;height:16px;margin:0 5px}.n2_slider_box__footer_children_count{flex:0 0 auto;margin-left:auto;height:24px;width:24px;border-radius:12px;background-color:#94b2c1;font-size:12px;line-height:24px;color:#fff;font-weight:700;text-align:center}.n2_slider_box__slider_overlay{display:none;z-index:10;position:absolute;left:0;top:0;width:100%;height:100%;background-color:rgba(32,41,52,.9);border-top-left-radius:3px;border-top-right-radius:3px;justify-content:center;align-items:center}.n2_slider_box:HOVER .n2_slider_box__slider_overlay,.n2_slider_box--context-menu .n2_slider_box__slider_overlay{display:flex}.n2_slider_box__slider_overlay_link{z-index:1;position:absolute;display:block;width:100%;height:100%}.n2_slider_box__slider_overlay .n2_button{display:inline-block;position:relative;z-index:2;max-width:120px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.n2_slider_box__slider_select_tick{z-index:2;position:absolute;left:8px;top:8px;box-sizing:border-box;width:20px;height:20px;border-radius:3px;border:2px solid #6b7986;cursor:pointer;font-size:16px;line-height:16px;color:#fff}.n2_slider_box__slider_select_tick .ssi_16{display:none}.n2_slider_box__slider_identifiers{z-index:9;position:absolute;left:2px;bottom:2px;display:flex}.n2_slider_box__slider_identifier{margin:3px;padding:0 5px;background-color:#6b7986;border-radius:3px;font-size:12px;line-height:2em;color:#fff;text-transform:uppercase}.n2_slider_box__slider_actions{display:none;position:absolute;right:8px;top:8px;z-index:12}.n2_slider_box:HOVER .n2_slider_box__slider_actions,.n2_slider_box--context-menu .n2_slider_box__slider_actions{display:block}.n2_slider_box--drop-instance{transform:scale(.7)}.n2_slider_box--drop-target{box-shadow:0 0 0 3px #1d81f9}.n2_slide_box__screen_reader{border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}.n2_slider_manager__action_bar_bulk_actions{display:none}.n2_body--bulk-select .n2_slider_manager__action_bar_bulk_actions,.n2_slider_manager__action_bar_bulk_actions.n2_slider_manager__action_bar_bulk_actions--popover-visible{display:block}.n2_body--bulk-select .n2_header__actions{visibility:hidden}.n2_body--bulk-select .n2_slider_box{opacity:.5}.n2_body--bulk-select .n2_slider_box.n2_slider_box--bulk-selected{opacity:1}.n2_body--bulk-select .n2_slider_box.n2_slider_box--bulk-selected .n2_slider_box__slider_select_tick{background-color:#1d81f9;border-color:#1d81f9}.n2_body--bulk-select .n2_slider_box.n2_slider_box--bulk-selected .n2_slider_box__slider_select_tick .ssi_16{display:block}.n2_body--bulk-select .n2_slider_box__slider_overlay{display:flex}.n2_body--bulk-select .n2_slider_box__slider_overlay_link,.n2_body--bulk-select .n2_slider_box__slider_overlay_edit_button,.n2_body--bulk-select .n2_slider_box__slider_actions{display:none!important}.n2_new_project{min-height:100%;display:flex;flex-flow:column;justify-content:center}.n2_new_project__heading{margin-top:30px;color:#283f4d;font-size:32px;line-height:40px;text-align:center}.n2_new_project__sub_heading{color:#325c77;font-size:14px;line-height:30px;text-align:center}.n2_new_project__boxes{display:flex;justify-content:space-between;margin:40px -30px}.n2_new_project__box{flex:1 1 50%;margin:0 30px;padding:30px 40px;background-color:#fff;border-radius:10px;text-align:center;cursor:pointer}.n2_new_project__box:HOVER{box-shadow:0 2px 10px 0 rgba(0,0,0,.1)}.n2_new_project__box_heading{color:#283f4d;font-size:22px;line-height:40px}.n2_new_project__box_sub_heading{color:#325c77;font-size:14px;line-height:24px}.n2_new_project__import{display:block;margin:0 auto 20px;font-size:14px;line-height:30px;text-transform:capitalize}.n2_new_project__import:HOVER{color:#005bc6}.n2_new_project__import,.n2_new_project__import:FOCUS{color:#1375e9}.n2_create_new_project{display:flex;flex-flow:column;max-width:840px;margin:0 auto;box-sizing:border-box;min-height:100%;padding:30px 20px}.n2_create_new_project__heading{color:#283f4d;font-size:32px;line-height:40px;text-align:center}.n2_ss_slider_publish{display:flex}.n2_ss_slider_publish__option{padding:40px 20px;flex:1;display:flex;flex-flow:column;align-items:center}.n2_ss_slider_publish__option img{margin-top:15px;max-width:100%}.n2_ss_slider_publish__option .n2_button{margin-top:15px}.n2_ss_slider_publish__option+.n2_ss_slider_publish__option{border-left:1px solid #e4e9ec}html[dir=rtl] .n2_ss_slider_publish__option+.n2_ss_slider_publish__option{border-left:0;border-right:1px solid #e4e9ec}.n2_ss_slider_publish__option_label{line-height:28px;font-size:18px;color:#283f4d}.n2_ss_slider_publish__option_description{text-align:center;line-height:28px;font-size:14px;color:#325c77}.n2_ss_slider_publish__option_code{margin-top:15px;padding:15px 20px;background-color:#f5e293;border-radius:2px;line-height:20px;font-size:13px;color:#325c77}.n2_ss_slider_publish__related_modules{display:flex;flex-wrap:wrap;margin-top:10px}.n2_ss_slider_publish__related_modules .n2_button{margin:3px}.n2_slider_trash{font-family:"Inter-Nextend",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;padding:24px 40px;position:relative;display:flex;flex-wrap:wrap;margin:0 -16px}.n2_slider_manager__dummy_slider{display:none;background:#f0f4f7;border:2px dashed #94b2c1;flex-flow:column;justify-content:center;align-items:center;box-sizing:border-box}.n2_slider_trash--empty .n2_slider_manager__dummy_slider{display:flex}.n2_slider_manager__dummy_slider_icon{margin:16px 0;color:#94b2c1}.n2_slider_manager__dummy_slider_label{font-size:14px;line-height:22px;color:#325c77;font-weight:700}.n2_slide_manager{position:relative;z-index:1100;font-family:"Inter-Nextend",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;margin:0 -1px}.n2_slide_manager[data-breadcrumbopener="1"]{display:none}.n2_admin_editor_overlay--show-slides .n2_slide_manager[data-breadcrumbopener="1"]{display:flex;flex-flow:column}.n2_slide_manager__inner{background-color:#2c3a45}.n2_slide_manager__exit{flex:1 1 auto;background:rgba(28,41,51,.5);cursor:pointer}.n2_slide_manager__action_bar{position:relative;z-index:3;padding:5px 35px;height:30px;margin-bottom:-40px}.n2_slide_manager__content{position:relative;display:flex;flex-wrap:wrap;padding:30px 30px}.n2_slide_manager__box{position:relative;box-sizing:border-box;flex:0 0 auto;width:200px;height:135px;border-radius:3px;margin:10px;background:#0c1924}.n2_slide_manager__sortable_placeholder{height:135px;margin:5px 0;width:0;box-shadow:0 0 0 2px #1d81f9}.n2_slide_manager__action_bar .n2_button_plain,.n2_slide_manager__action_bar .n2_button_plain:HOVER,.n2_slide_manager__action_bar .n2_button_plain:FOCUS{color:#bdcfd9}.n2_slide_manager__action_bar_bulk_actions{display:none}.n2_slide_manager--bulk-select .n2_slide_manager__action_bar_bulk_actions,.n2_slide_manager__action_bar_bulk_actions .n2_slide_manager__action_bar_bulk_actions--popover-visible{display:block}.n2_slide_manager--bulk-select .n2_slide_box{opacity:.5}.n2_slide_manager--bulk-select .n2_slide_box.n2_slide_box--bulk-selected{opacity:1}.n2_slide_manager--bulk-select .n2_slide_box.n2_slide_box--bulk-selected .n2_slide_box__slide_select_tick{background-color:#1d81f9;border-color:#1d81f9}.n2_slide_manager--bulk-select .n2_slide_box.n2_slide_box--bulk-selected .n2_slide_box__slide_select_tick .ssi_16{display:block}.n2_slide_manager--bulk-select .n2_slide_box__slide_overlay{display:flex}.n2_slide_manager--bulk-select .n2_slide_box__slide_overlay_link,.n2_slide_manager--bulk-select .n2_slide_box__slide_overlay_edit_button,.n2_slide_manager--bulk-select .n2_slide_box__slide_actions{display:none!important}.n2_slide_manager__add_slide{background-color:#04c018;padding:16px 0;display:flex;flex-flow:column;justify-content:center;align-items:center;color:#fff;cursor:pointer}.n2_slide_manager__add_slide:HOVER{background-color:#07ca1c}.n2_slide_manager__add_slide_icon{font-size:48px;margin:16px 0}.n2_slide_manager__add_slide_label{font-size:14px;line-height:22px;font-weight:700;text-transform:uppercase;max-width:160px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.n2_slide_manager__add_slide_label--close{display:none}.n2_slide_manager--add-slide .n2_slide_manager__add_slide{background-color:#6b7986}.n2_slide_manager--add-slide .n2_slide_manager__add_slide:HOVER{background-color:#8694a2}.n2_slide_manager--add-slide .n2_slide_manager__add_slide_icon{transform:rotateZ(45deg)}.n2_slide_manager--add-slide .n2_slide_manager__add_slide_label--add-slide{display:none}.n2_slide_manager--add-slide .n2_slide_manager__add_slide_label--close{display:block}.n2_slide_manager__add_slide_actions{overflow:hidden;height:0;transition:height .4s}.n2_slide_manager--add-slide .n2_slide_manager__add_slide_actions{height:150px}.n2_slide_manager__add_slide_actions_inner{display:flex;padding:10px 30px}.n2_slide_manager__add_slide_action{display:flex;flex-flow:column;align-items:center;justify-content:center;margin:10px;width:140px;height:110px;box-sizing:border-box;padding:14px 0;border-radius:3px}.n2_slide_manager__add_slide_action,.n2_slide_manager__add_slide_action:HOVER,.n2_slide_manager__add_slide_action:FOCUS{color:#bdcfd9}.n2_slide_manager__add_slide_action:not(:first-child):HOVER{color:#fff}.n2_slide_manager__add_slide_action--image{background-color:#04c018}.n2_slide_manager__add_slide_action--image:HOVER{background-color:#07ca1c}.n2_slide_manager__add_slide_action--image,.n2_slide_manager__add_slide_action--image:HOVER,.n2_slide_manager__add_slide_action--image:FOCUS{color:#fff}.n2_slide_manager__add_slide_action_icon{padding:4px 0;font-size:48px;display:flex}.n2_slide_manager__add_slide_action_label{font-size:14px;line-height:26px;font-weight:700;text-transform:capitalize;max-width:120px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.n2_slide_manager__dummy_slide{display:none;background-color:#2c3a45;border:2px dashed #bdcfd9;padding:16px 0;flex-flow:column;justify-content:center;align-items:center;color:#bdcfd9;cursor:pointer}html[data-slides="0"] .n2_slide_manager__dummy_slide{display:flex}.n2_slide_manager__dummy_slide_icon{margin:16px 0}.n2_slide_manager__dummy_slide_label{font-size:14px;line-height:22px}.n2_slide_box{position:relative;opacity:.5;display:flex;flex-flow:column;transition:opacity .6s}.n2_slide_box.n2_slide_box--published{opacity:1}.n2_slide_box--currently-edited{box-shadow:0 0 0 3px #1d81f9}.n2_slide_box--just-added{opacity:0}.n2_slide_box__content{position:relative;height:100%;border-top-left-radius:3px;border-top-right-radius:3px;background-size:cover;background-position:50% 0;background-repeat:no-repeat}.n2_slide_box__footer{flex:0 0 auto;padding:9px 10px;background-color:#0c1924;border-bottom-left-radius:3px;border-bottom-right-radius:3px;display:flex;align-items:center}.n2_slide_box__footer_title{display:block;padding:0 5px;box-sizing:border-box;width:100%;min-height:20px;max-height:60px;overflow:hidden;word-wrap:break-word;cursor:text;font-size:14px;line-height:20px;font-weight:700;color:#bdcfd9}.n2_slide_box__footer_status{margin-left:auto;display:flex;align-items:center}.n2_slide_box__footer_status>*{display:flex;padding:3px}.n2_slide_box__footer_status_first_slide{display:none;color:#e19f21}.n2_slide_box--first-slide .n2_slide_box__footer_status_first_slide{display:flex}.n2_slide_box__footer_status_published{display:none}.n2_slide_box--published .n2_slide_box__footer_status_published{display:flex}.n2_slide_box__footer_status_published,.n2_slide_box__footer_status_published:HOVER,.n2_slide_box__footer_status_published:FOCUS{color:#04c018}.n2_slide_box--published .n2_slide_box__footer_status_unpublished{display:none}.n2_slide_box__footer_status_unpublished,.n2_slide_box__footer_status_unpublished:HOVER,.n2_slide_box__footer_status_unpublished:FOCUS{color:#bdcfd9}.n2_slide_box__footer_status_hidden{display:none}.n2_slide_box__footer_status_hidden:not([data-n2tip=""]){display:flex}.n2_slide_box__footer_status_hidden,.n2_slide_box__footer_status_hidden:HOVER,.n2_slide_box__footer_status_hidden:FOCUS{color:#bdcfd9}.n2_slide_box__slide_overlay{display:none;z-index:2;position:absolute;left:0;top:0;width:100%;height:100%;background-color:rgba(32,41,52,.9);border-top-left-radius:3px;border-top-right-radius:3px;justify-content:center;align-items:center}.n2_slide_box:HOVER .n2_slide_box__slide_overlay,.n2_slide_box--context-menu .n2_slide_box__slide_overlay{display:flex}.n2_slide_box__slide_overlay_link{z-index:1;position:absolute;display:block;width:100%;height:100%}.n2_slide_box__slide_overlay_edit_button{position:relative;z-index:2;padding:0 10px;line-height:28px;border-radius:2px;background-color:#04c018;font-size:11px;text-transform:uppercase;max-width:100px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.n2_slide_box__slide_overlay_edit_button:HOVER{background-color:#07ca1c}.n2_slide_box__slide_overlay_edit_button,.n2_slide_box__slide_overlay_edit_button:HOVER,.n2_slide_box__slide_overlay_edit_button:FOCUS{color:#fff}.n2_slide_box--currently-edited .n2_slide_box__slide_overlay_link,.n2_slide_box--currently-edited .n2_slide_box__slide_overlay_edit_button{display:none}.n2_slide_box__slide_select_tick{z-index:2;position:absolute;left:8px;top:8px;box-sizing:border-box;width:20px;height:20px;border-radius:3px;border:2px solid #6b7986;cursor:pointer;font-size:16px;line-height:16px;color:#fff}.n2_slide_box__slide_select_tick .ssi_16{display:none}html[dir=rtl] .n2_slide_box__slide_select_tick{right:8px;left:auto}.n2_slide_box__slide_actions{display:none;position:absolute;right:8px;top:8px;z-index:12}.n2_slide_box:HOVER .n2_slide_box__slide_actions,.n2_slide_box--context-menu .n2_slide_box__slide_actions{display:block}html[dir=rtl] .n2_slide_box__slide_actions{left:8px;right:auto}.n2_slide_box__details{z-index:1;position:absolute;left:5px;bottom:5px;display:flex;flex-flow:column}.n2_slide_box__details>*{margin:5px;padding:0 3px;background-color:#6b7986;border-radius:3px;font-size:11px;line-height:2em;color:#fff}.n2_slide_box__details_static_slide{text-transform:uppercase}.n2_slide_manager__block_notice{background-color:#0c1924;display:flex;align-items:center;justify-content:center;text-align:center;flex-flow:column}html[data-slides="0"] .n2_slide_manager__block_notice,html[data-slides="1"] .n2_slide_manager__block_notice{display:none}.n2_slide_manager__block_notice_description{margin-bottom:10px}.n2_slide_manager__block_notice_button{background:#1375e9;line-height:30px;border-radius:3px;padding:0 10px;font-size:11px;text-transform:uppercase;font-weight:700;cursor:pointer}.n2_slide_manager__block_notice_button:HOVER{background-color:#005bc6}.n2_slide_manager__block_notice_button,.n2_slide_manager__block_notice_button:HOVER,.n2_slide_manager__block_notice_button:FOCUS{color:#fff}.n2_nav_bar__breadcrumb_button_slides{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer}.n2_nav_bar__breadcrumb_button_slides .ssi_16{display:inline-block;vertical-align:middle}.n2_admin_editor_overlay--show-slides .n2_nav_bar__breadcrumb_button_slides span .ssi_16{transform:rotateZ(180deg)}.n2_breadcrumbs__breadcrumb--active .n2_nav_bar__breadcrumb_button_slides,.n2_breadcrumbs__breadcrumb--active .n2_nav_bar__breadcrumb_button_slides:HOVER,.n2_breadcrumbs__breadcrumb--active .n2_nav_bar__breadcrumb_button_slides:FOCUS{color:#94b2c1}.n2_admin_editor_overlay--show-slides .n2_breadcrumbs__breadcrumb--active .n2_nav_bar__breadcrumb_button_slides,.n2_admin_editor_overlay--show-slides .n2_breadcrumbs__breadcrumb--active .n2_nav_bar__breadcrumb_button_slides:HOVER,.n2_admin_editor_overlay--show-slides .n2_breadcrumbs__breadcrumb--active .n2_nav_bar__breadcrumb_button_slides:FOCUS{color:#fff}.n2_ss_history_action{opacity:.5}.n2_ss_history_action--allowed{opacity:1}#n2-admin[data-slide-background-type=image] .n2_form__table_row[data-field=table-row-background-video]{display:none}#n2-admin[data-slide-background-type=color] .n2_form__table_row[data-field=table-row-background-video],#n2-admin[data-slide-background-type=color] .n2_form__table_row[data-field=table-row-background-image],#n2-admin[data-slide-background-type=color] .n2_field[data-field=slidebackgroundColorOverlay]{display:none}.n2_admin_editor_overlay__middle{flex:1 1 auto;display:flex}[dir=rtl] .n2_admin_editor_overlay__middle{flex-flow:row-reverse}.n2_admin_editor_overlay__middle_center{position:relative;flex:1 1 auto;overflow:hidden}.n2_add_layer{visibility:visible;flex:0 0 auto;position:relative;display:flex;width:50px;z-index:10}.n2_add_layer__bar{position:relative;width:100%;height:100%;background-color:#0c1924;overflow:hidden}.n2_add_layer__bar .n2_button_plain_icon,.n2_add_layer__bar .n2_button_plain_icon:HOVER,.n2_add_layer__bar .n2_button_plain_icon:FOCUS{color:#94b2c1}.n2_add_layer__bar .n2_button_plain_icon--active{background:#1d81f9}.n2_add_layer__bar .n2_button_plain_icon--active,.n2_add_layer__bar .n2_button_plain_icon--active:HOVER,.n2_add_layer__bar .n2_button_plain_icon--active:FOCUS{color:#fff}.n2_add_layer__bar .n2_timeline_control_play_pause--playing{background:#1d81f9}.n2_add_layer__bar .n2_timeline_control_play_pause--playing,.n2_add_layer__bar .n2_timeline_control_play_pause--playing:HOVER,.n2_add_layer__bar .n2_timeline_control_play_pause--playing:FOCUS{color:#fff}.n2_add_layer__bar .n2_timeline_control_play_pause--playing .ssi_24::before{content:"\E16D"}.n2_add_layer__bar_top,.n2_add_layer__bar_bottom{background-color:#0c1924;position:absolute;left:0;display:flex;flex-flow:column;align-items:center;padding:0 10px}.n2_add_layer__bar_top{top:0}.n2_add_layer__bar_top>*{margin-bottom:14px}.n2_add_layer__bar_bottom{bottom:0}.n2_add_layer__bar_bottom>*{margin-bottom:14px}.n2_add_layer__bar_button{flex:0 0 auto;border-radius:2px}.n2_add_layer__more{display:none;flex-flow:column;position:absolute;left:0;top:0;width:330px;height:100%;background-color:#2c3a45}.n2_admin_editor_overlay--show-add-more .n2_add_layer__more{display:flex}.n2_add_layer__more_tab_buttons{flex:0 0 auto;display:flex;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.n2_add_layer__more_tab_button{flex:1 1 0;display:flex;align-items:center;flex-flow:column;padding:14px 0 6px;text-align:center;cursor:pointer;background-color:#0c1924;color:#94b2c1}.n2_add_layer__more_tab_button--active{background-color:#1d81f9;color:#fff}.n2_add_layer__more_tab_button_icon{display:flex;align-items:center;justify-content:center}.n2_add_layer__more_tab_button_label{font-size:11px;line-height:26px;text-transform:uppercase;font-weight:700;max-width:145px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.n2_add_layer__more_tab{display:none;flex-flow:column;flex:1 1 auto;overflow:hidden}.n2_add_layer__more_tab--active{display:flex}.n2_add_layer__more_layers{flex:1 1 auto;overflow-y:auto}.n2_add_layer_group{margin-bottom:10px}.n2_add_layer_group__label{padding:8px 20px;background-color:#1c2933;border-bottom:1px solid #131c23;color:#94b2c1;font-size:12px;line-height:28px;font-weight:700;text-transform:uppercase;margin-bottom:10px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.n2_add_layer_group__content{display:grid;grid-template-columns:repeat(3,1fr);grid-gap:10px;padding:0 10px}.n2_add_layer_box{padding:6px 8px;background-color:#6b7986;border-radius:2px;text-align:center;cursor:pointer}.n2_add_layer_box.n2-ss-layer--drag{pointer-events:none;width:90px;opacity:.8;z-index:9999;margin:0}.n2_add_layer_box__icon{display:flex;align-items:center;justify-content:center;margin-top:4px;color:#fff}.n2_add_layer_box__label_wrap{display:flex;flex-flow:column;justify-content:center;min-height:32px}.n2_add_layer_box__label{font-size:12px;line-height:14px;color:#fff;font-weight:700;text-transform:capitalize}.n2_add_layer__more_position{flex:0 0 auto;display:flex;align-items:center;height:50px;background-color:#0c1924;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.n2_add_layer_position__label{flex:1 1 50%;padding:0 5px;color:#94b2c1;font-size:12px;line-height:24px;font-weight:700;text-transform:uppercase;cursor:pointer;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.n2_add_layer_position__default_label{text-align:right}.n2_add_layer_position[data-position=default] .n2_add_layer_position__default_label{color:#fff;cursor:initial}html[dir=rtl] .n2_add_layer_position__default_label{text-align:left}.n2_add_layer_position__absolute_label{text-align:left}.n2_add_layer_position[data-position=absolute] .n2_add_layer_position__absolute_label{color:#fff;cursor:initial}html[dir=rtl] .n2_add_layer_position__absolute_label{text-align:right}.n2_add_layer_position__switch{padding:3px;width:44px;height:24px;box-sizing:border-box;background-color:#1d81f9;border-radius:12px;cursor:pointer;transition:background-color .3s}.n2_add_layer_position[data-position=absolute] .n2_add_layer_position__switch{background-color:#5f39c2}.n2_add_layer_position__switch_dot{width:18px;height:18px;background-color:#fff;border-radius:18px;box-shadow:0 0 0 1px rgba(0,0,0,.1);transition:transform .3s}.n2_add_layer_position[data-position=absolute] .n2_add_layer_position__switch_dot{transform:translateX(20px)}html[dir=rtl] .n2_add_layer_position[data-position=absolute] .n2_add_layer_position__switch_dot{transform:translateX(-20px)}.n2_add_layer_library__title,.n2_add_layer_library_tag__title{display:flex;padding:7px 10px;background-color:#1c2933;border-bottom:1px solid #131c23}.n2_add_layer_library__title_label,.n2_add_layer_library_tag__title_label{padding:0 10px;flex:1 1 auto;color:#94b2c1;font-size:12px;line-height:30px;font-weight:700;text-transform:uppercase}.n2_add_layer_library__theme{display:none;position:relative;overflow-y:scroll;height:100%;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.n2_add_layer_library__theme--active{display:block}.n2_add_layer_library_tag__title{cursor:pointer}.n2_add_layer_library_tag__title_opener{display:flex;align-items:center;justify-content:center;width:30px;color:#94b2c1}.n2_add_layer_library_tag--active .n2_add_layer_library_tag__title_opener{transform:rotateZ(180deg)}.n2_add_layer_library_tag__sections{flex-flow:column;align-items:center;padding:10px 0}.n2_add_layer_library_tag .n2_add_layer_library_tag__sections{display:none}.n2_add_layer_library_tag--active .n2_add_layer_library_tag__sections{display:flex}.n2_add_layer_library_tag__section{position:relative;margin:10px 0;width:270px;border-radius:3px;overflow:hidden}.n2_add_layer_library_tag__section img{display:block;width:100%}.n2_add_layer_library_tag__section--available{cursor:pointer}.n2_add_layer_library_tag__section_pro{z-index:10;position:absolute;top:5px;right:5px;padding:0 5px;background-color:#6b7986;border-radius:3px;font-size:12px;line-height:2em;color:#fff}.n2_add_layer_library_tag__section_overlay{display:none;z-index:9;position:absolute;left:0;top:0;width:100%;height:100%;padding:0 40px;box-sizing:border-box;background:rgba(12,25,36,.9);align-items:center;color:#94b2c1;font-size:14px;line-height:22px;text-align:center}.n2_add_layer_library_tag__section_overlay a,.n2_add_layer_library_tag__section_overlay a:HOVER,.n2_add_layer_library_tag__section_overlay a:FOCUS{color:#1d81f9}.n2_add_layer_library_tag__section:HOVER .n2_add_layer_library_tag__section_overlay{display:flex}.n2_ss_layer_window{visibility:visible;z-index:5;position:absolute!important;left:100px;top:100px;display:none;flex-flow:column;width:355px}.n2_body--layer-window-visible .n2_ss_layer_window{display:flex}.n2_body--show-add-more .n2_ss_layer_window,.n2_body--drag-layer .n2_ss_layer_window,.n2_body--resize-absolute .n2_ss_layer_window,.n2_body--resize-editor .n2_ss_layer_window{display:none}.n2_ss_layer_window__resize{flex:0 0 auto;position:static!important;height:7px;width:100%;cursor:ns-resize;background-color:#0c1924;border-bottom-left-radius:3px;border-bottom-right-radius:3px}.n2_ss_layer_window__crop{flex:1 1 auto;display:flex;flex-flow:column;position:relative;width:100%;border-top-left-radius:3px;border-top-right-radius:3px;box-shadow:0 1px 10px 0 rgba(0,0,0,.3);overflow:hidden;background-color:#0c1924;z-index:2}.n2_ss_layer_window__title{flex:0 0 auto;display:flex;position:relative;line-height:36px;height:36px;overflow:hidden;background-color:#0c1924;font-size:14px;color:#94b2c1;cursor:move;border-top-left-radius:5px;border-top-right-radius:5px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.n2_ss_layer_window__title_nav a{display:block;width:36px;height:36px;text-align:center}.n2_ss_layer_window__title_nav_button{margin:6px;display:inline-flex;width:24px;height:24px;align-items:center;justify-content:center;border-radius:2px;cursor:pointer;color:#94b2c1}.n2_admin_editor_overlay--attached-layer-list .n2_ss_layer_window__title_nav_button_layer_list{background-color:#1d81f9;color:#fff}.n2_ss_layer_window__title_inner{flex:1 1 auto;padding:0 20px;text-align:center;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-weight:700}.n2_ss_layer_window__tab_buttons{flex:0 0 auto;display:flex;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.n2_ss_layer_window__tab_buttons[data-visible-tabs="1"]{display:none}.n2_admin_editor_overlay--attached-layer-list .n2_ss_layer_window__tab_buttons{display:none}.n2_ss_layer_window__tab_button{display:none;flex:1 1 0;width:33%;flex-flow:column;align-items:center;padding:11px 0 2px;cursor:pointer;background-color:#0c1924;color:#94b2c1}.n2_ss_layer_window__tab_button_icon{display:flex;align-items:center;justify-content:center}.n2_ss_layer_window__tab_button_label{font-size:11px;line-height:23px;text-transform:uppercase;font-weight:700;max-width:100px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.n2_ss_layer_window__tab_button--allowed{display:flex}.n2_ss_layer_window__tab_button--allowed.n2_ss_layer_window__tab_button--active{background-color:#1d81f9;color:#fff}.n2_ss_layer_window__tab_container{position:relative;flex:1 1 auto;overflow-x:hidden;overflow-y:scroll;background-color:#3a4956}.n2_admin_editor_overlay--attached-layer-list .n2_ss_layer_window__tab_container{display:none}.n2_ss_layer_window__tab{display:none;color:#fff}.n2_ss_layer_window__tab[data-tab=item]>*{display:none}.n2_ss_layer_window__tab--allowed.n2_ss_layer_window__tab--active{display:block}.n2_ss_layer_window__tab_panel{display:none}.n2_ss_layer_window__tab_panel--active{display:block}.n2_ss_layer_window [data-generator-related="1"]{display:none}.n2_ss_body--dynamic-slide .n2_ss_layer_window [data-generator-related="1"]{display:block}body[data-device=desktopPortrait] .n2_field[data-field=layer-clear-device-specific-changes],body[data-device=desktopPortrait] .n2_field[data-field=layer-slide-clear-device-specific-changes]{display:none}.n2_admin_editor_overlay--attached-layer-list .n2_layer_navigation_list_title{display:none}.n2_admin_editor_overlay--attached-layer-list .n2_layer_navigation{flex:1 1 auto;width:100%!important;height:auto!important;max-height:none;overflow:auto}.n2_admin_editor_overlay--attached-layer-list .n2_layer_navigation_list{width:100%;overflow-y:auto!important}.n2_admin_editor_overlay--attached-layer-list .n2_layer_navigation_list_layers{padding-bottom:0!important}.n2_admin_editor_overlay--attached-layer-list .n2_layer_navigation_list_layer__title{border-right:0}.n2_admin_editor_overlay--attached-layer-list .n2_timeline{width:0;overflow:hidden}.n2_fields_layer_window__title_fields .n2_form__table_label_field:last-child{margin-right:0}.n2_fields_layer_window[data-fieldset-type=style-mode][data-state=""] .n2_form__table_label_field[data-style-mode-feature=reset-to-normal]{display:none}.n2_ss_design_layer_window_design{display:none}.n2_ss_design_layer_window_design--visible{display:block}.n2_layer_window_design_preset{display:flex;padding:7px 10px;background-color:#1c2933;border-bottom:1px solid #131c23}.n2_layer_window_design_preset__label_container{flex:1 1 auto;display:inline-flex;align-items:center;height:30px}.n2_layer_window_design_preset__label_container .ssi_16--info{margin:0 5px;color:#94b2c1}.n2_layer_window_design_preset__label{font-size:12px;font-weight:700;text-transform:uppercase;color:#94b2c1;max-width:160px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.n2_layer_window_design_preset__fields{display:flex}.n2_layer_window_design_preset__presets{display:none}.n2_layer_window_design_preset__button_choose{display:inline-flex;vertical-align:top;width:30px;height:30px;background-color:#04c018;border-radius:2px;align-items:center;justify-content:center;font-size:16px}.n2_layer_window_design_preset__button_choose:HOVER{background-color:#07ca1c}.n2_layer_window_design_preset__button_choose,.n2_layer_window_design_preset__button_choose:HOVER,.n2_layer_window_design_preset__button_choose:FOCUS{color:#fff}.n2_layer_window_design_preset__button_back{display:none;vertical-align:top;width:30px;height:30px;background-color:#6b7986;border-radius:2px;align-items:center;justify-content:center;font-size:16px}.n2_layer_window_design_preset__button_back:HOVER{background-color:#8694a2}.n2_layer_window_design_preset__button_back,.n2_layer_window_design_preset__button_back:HOVER,.n2_layer_window_design_preset__button_back:FOCUS{color:#fff}.n2_layer_window_design_preset__fields_secondary{display:inline-flex;vertical-align:top;margin:0 10px}.n2_layer_window_design_preset__button_secondary{display:inline-flex;vertical-align:top;width:30px;height:30px;font-size:16px;align-items:center;justify-content:center}.n2_layer_window_design_preset__button_secondary,.n2_layer_window_design_preset__button_secondary:HOVER,.n2_layer_window_design_preset__button_secondary:FOCUS{color:#94b2c1}.n2_ss_layer_window--show-presets .n2_ss_layer_window__tab_panel:not([data-panel=item]){display:none}.n2_ss_layer_window--show-presets .n2_ss_design_layer_window_design .n2_fields_layer_window{display:none}.n2_ss_layer_window--show-presets .n2_layer_window_design_preset__fields_secondary,.n2_ss_layer_window--show-presets .n2_layer_window_design_preset__button_choose{display:none}.n2_ss_layer_window--show-presets .n2_layer_window_design_preset__button_back{display:inline-flex}.n2_ss_layer_window--show-presets .n2_layer_window_design_preset{position:-webkit-sticky;position:sticky;top:0}.n2_ss_layer_window--show-presets .n2_layer_window_design_preset__presets{display:block}.n2_fields_layer_window[data-fieldset-type=design][data-state="0"] .n2_form__table_label_field[data-design-feature=reset-to-normal]{display:none}.n2_fields_layer_window[data-fieldset-type=design][data-elements="0"]{display:none}.n2_fields_layer_window[data-fieldset-type=design][data-elements="1"] [data-design-feature=element]{display:none}.n2_layer_window_design_preset__preset_list_preset{display:flex;padding:5px 10px;background-color:#2c3a45;border-bottom:1px solid #131c23;cursor:pointer}.n2_layer_window_design_preset__preset_list_preset span{font-size:12px;line-height:30px;margin-right:auto;color:#bdcfd9}html[dir=rtl] .n2_layer_window_design_preset__preset_list_preset span{margin-right:0;margin-left:auto}.n2_layer_window_design_preset__preset_list_preset_buttons{display:inline-flex}.n2_layer_window_design_preset__preset_list_preset_button{display:inline-flex;vertical-align:top;width:30px;height:30px;font-size:16px;align-items:center;justify-content:center;cursor:pointer;color:#94b2c1}.n2_container_animation__buttons{display:flex;align-items:center;padding:8px 10px;background-color:#0c1924}.n2_container_animation__button{flex:1 1 0;padding:6px 5px;color:#94b2c1;font-size:12px;line-height:16px;border-radius:14px;text-align:center;text-transform:uppercase;cursor:pointer;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.n2_container_animation__button--active{background-color:#1d81f9;color:#fff}.n2_container_animation__tab{display:none}.n2_container_animation__tab--active{display:block}.n2_layer_window_animations_presets__buttons{display:grid;grid-template-columns:repeat(4,1fr);grid-gap:10px;padding:10px;background-color:#3a4956}.n2_layer_window_animations_presets__button{padding:10px 8px 5px;border-radius:3px;background-color:#6b7986;color:#fff;text-align:center;cursor:pointer}.n2_layer_window_animations_presets__button .ssi_24{margin-bottom:5px;display:block}.n2_layer_window_animations_presets__button--active{background-color:#1d81f9}.n2_layer_window_animations_presets__button_label{font-size:12px;line-height:20px;max-width:56px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.n2_layer_window_animations_presets__presets{display:none}.n2_layer_window_animations_presets__presets--active{display:block}.n2_layer_window_animations_presets__preset{padding:10px 20px;background-color:#2c3a45;border-bottom:1px solid #1e2830;color:#94b2c1;font-size:12px;line-height:20px;cursor:pointer;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.n2_layer_window_animations_editor .n2_fields_layer_window[data-field=fieldset-layer-window-layer-animation-basic-form-in],.n2_layer_window_animations_editor .n2_fields_layer_window[data-field=fieldset-layer-window-layer-animation-basic-form-loop],.n2_layer_window_animations_editor .n2_fields_layer_window[data-field=fieldset-layer-window-layer-animation-basic-form-out]{display:none}.n2_layer_window_animations_editor--settings .n2_fields_layer_window[data-field=fieldset-layer-window-layer-animation-basic-form-in],.n2_layer_window_animations_editor--settings .n2_fields_layer_window[data-field=fieldset-layer-window-layer-animation-basic-form-loop],.n2_layer_window_animations_editor--settings .n2_fields_layer_window[data-field=fieldset-layer-window-layer-animation-basic-form-out]{display:block}.n2_layer_window_animations_editor__title{display:flex;padding:7px 0;background-color:#1c2933;border-bottom:1px solid #131c23}.n2_layer_window_animations_editor__label{flex:1 1 auto;font-size:12px;line-height:30px;color:#94b2c1}.n2_layer_window_animations_editor__title_left{padding:0 10px}.n2_layer_window_animations_editor__button_play{display:inline-flex;align-items:center;justify-content:center;width:30px;height:30px;border-radius:2px;background-color:#6b7986;font-size:16px;color:#fff;cursor:pointer}.n2_layer_window_animations_editor__button_play--active{background-color:#1d81f9}.n2_layer_window_animations_editor__button_play--active .ssi_16::before{content:"\E607"}.n2_layer_window_animations_editor__title_right{padding:0 5px}.n2_layer_window_animations_editor__button_settings{display:inline-flex;align-items:center;justify-content:center;width:30px;height:30px;border-radius:2px;font-size:16px;color:#94b2c1;cursor:pointer}.n2_layer_window_animations_editor__button_settings--active{background-color:#1d81f9;color:#fff}.n2_layer_window_animations_editor__button_delete{display:inline-flex;align-items:center;justify-content:center;width:30px;height:30px;border-radius:2px;font-size:16px;color:#94b2c1;cursor:pointer}.n2_layer_window_animations_editor_basic{position:relative}.n2_layer_window_animations_editor_basic__keyframe.n2-ui-sortable-helper{width:100%;opacity:.5}.n2_layer_window_animations_editor_basic__keyframe--sort .n2_fields_layer_window{display:none}.n2_layer_window_animations_editor_basic__keyframe_title{display:flex;padding:5px 0;background-color:#2c3a45;border-bottom:1px solid #1e2830;color:#94b2c1;font-size:12px;line-height:30px;cursor:pointer}.n2_layer_window_animations_editor_basic__keyframe--active .n2_layer_window_animations_editor_basic__keyframe_title{background-color:#1d81f9;color:#fff}.n2_layer_window_animations_editor_basic--single-keyframe .n2_layer_window_animations_editor_basic__keyframe--active .n2_layer_window_animations_editor_basic__keyframe_title{background-color:#2c3a45;color:#94b2c1;cursor:initial}.n2_layer_window_animations_editor_basic__keyframe_label{flex:1 1 auto;padding:0 20px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.n2_layer_window_animations_editor_basic__keyframe_delete{margin:0 5px;display:inline-flex;align-items:center;justify-content:center;width:30px;height:30px;border-radius:2px;font-size:16px;color:#94b2c1;cursor:pointer}.n2_layer_window_animations_editor_basic__keyframe--active .n2_layer_window_animations_editor_basic__keyframe_delete{color:#fff}.n2_layer_window_animations_editor_basic--single-keyframe .n2_layer_window_animations_editor_basic__keyframe_delete{display:none}.n2_layer_window_animations_editor_basic__add_keyframe{display:flex;justify-content:center;padding:10px 0}.n2_layer_window_animations_editor_basic__button_add_keyframe{padding:0 10px;background-color:#6b7986;border-radius:3px;font-size:11px;line-height:30px;text-transform:uppercase;color:#fff;cursor:pointer}.n2_layer_window_animations_editor_basic__button_add_keyframe:HOVER{background-color:#8694a2}[data-devicespecific]{position:relative}#n2-ss-devicespecific-settings{position:absolute;bottom:40px;left:0;padding:0 10px;white-space:nowrap;z-index:2}html[dir=rtl] #n2-ss-devicespecific-settings{left:auto;right:0}#n2-ss-devicespecific-settings *{cursor:pointer;background:#a1aeb5;display:inline-block;width:20px;height:20px;padding:5px;line-height:20px;text-align:center;font-size:16px;color:#fff}#n2-ss-devicespecific-settings>:first-child{border-top-left-radius:3px;border-bottom-left-radius:3px;border-left:0}html[dir=rtl] #n2-ss-devicespecific-settings>:first-child{border-radius:0 3px 3px 0}#n2-ss-devicespecific-settings>:last-child{border-top-right-radius:3px;border-bottom-right-radius:3px}html[dir=rtl] #n2-ss-devicespecific-settings>:last-child{border-radius:3px 0 0 3px}body[data-device=desktopPortrait] #n2-ss-devicespecific-settings .ssi_16--desktopportrait,body[data-device=desktopLandscape] #n2-ss-devicespecific-settings .ssi_16--desktoplandscape,body[data-device=tabletPortrait] #n2-ss-devicespecific-settings .ssi_16--tabletportrait,body[data-device=tabletLandscape] #n2-ss-devicespecific-settings .ssi_16--tabletportraitlarge,body[data-device=mobilePortrait] #n2-ss-devicespecific-settings .ssi_16--mobileportrait,body[data-device=mobileLandscape] #n2-ss-devicespecific-settings .ssi_16--mobileportraitlarge{background:#1d81f9}[data-placement=absolute] [data-placement]:not([data-placement=absolute]):not([data-placement=all]),[data-placement=content] [data-placement]:not([data-placement=content]):not([data-placement=all]),[data-placement=normal] [data-placement]:not([data-placement=normal]):not([data-placement=all]),[data-placement=default] [data-placement]:not([data-placement=default]):not([data-placement=all]),[data-placement=""] [data-placement]{display:none!important}.n2_layer_navigation{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;flex:0 0 auto;visibility:visible;display:flex;overflow:hidden;max-height:0;z-index:2}.n2_admin_editor_overlay--show-layer-navigation:not(.n2_admin_editor_overlay--show-add-more) .n2_layer_navigation{max-height:none;overflow:auto}.n2_layer_navigation_list{position:relative;width:340px;flex:0 0 auto;overflow-y:auto;overflow-x:hidden;background-color:#1c2933}.n2_layer_navigation--has_timeline .n2_layer_navigation_list{overflow:hidden}.n2_layer_navigation_list_title{position:-webkit-sticky;position:sticky;top:0;z-index:2;display:flex;align-items:center;background-color:#0c1924;height:48px}.n2_layer_navigation_list_title__hide{position:relative;z-index:2;margin:10px;display:inline-flex;align-items:center;justify-content:center;width:30px;height:30px;background-color:#1d81f9;border-radius:2px;cursor:pointer;color:#fff;font-size:16px}.n2_layer_navigation_list_title__label{z-index:1;position:absolute;left:0;top:0;width:100%;text-align:center;cursor:ns-resize;font-size:18px;line-height:48px;color:#fff}.n2_layer_navigation_list_layers{position:relative}.n2_layer_navigation_list_layers__sortable_placeholder{position:relative;height:0;z-index:1001;box-shadow:0 0 0 2px #1d81f9}.n2_layer_navigation_list_layer{position:relative}.n2_layer_navigation_list_layer__title{position:relative;display:flex;height:32px;background-color:#1c2933;border-right:1px solid #0c1924;border-bottom:1px solid #0c1924;color:#94b2c1;cursor:pointer}.n2_layer_navigation_list_layer__title[data-rows="2"]{height:64px}.n2_layer_navigation_list_layer__title:HOVER{background-color:#0c1924;border-bottom:1px solid #0c1924}.n2_layer_navigation_list_layer--active>.n2_layer_navigation_list_layer__title{background-color:#1d81f9;border-color:#1d81f9;color:#fff}.n2_layer_navigation_list_layer--absolute.n2_layer_navigation_list_layer--active>.n2_layer_navigation_list_layer__title{background-color:#5f39c2;border-color:#5f39c2;color:#fff}.n2_layer_navigation_list_layer--absolute.n2_layer_navigation_list_layer--active>.n2_layer_navigation_list_layer__title .n2_layer_navigation_list_layer__title_label_icon{color:#fff}.n2_layer_navigation_list_layer--drop>.n2_layer_navigation_list_layer__title{background:#0c1924;border-color:#0c1924}.n2_layer_navigation_list_layer__title_label{flex:1 1 auto;display:flex;align-items:center;line-height:32px;padding-left:10px;overflow:hidden}.n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__title_label{padding-left:20px}.n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layers__sortable_placeholder{margin-left:30px}.n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__title_label{padding-left:30px}.n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layers__sortable_placeholder{margin-left:40px}.n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__title_label{padding-left:40px}.n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layers__sortable_placeholder{margin-left:50px}.n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__title_label{padding-left:50px}.n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layers__sortable_placeholder{margin-left:60px}.n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__title_label{padding-left:60px}.n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layers__sortable_placeholder{margin-left:70px}.n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__title_label{padding-left:70px}.n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layers__sortable_placeholder{margin-left:80px}.n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__title_label{padding-left:80px}.n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layers__sortable_placeholder{margin-left:90px}.n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__title_label{padding-left:90px}.n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layers__sortable_placeholder{margin-left:100px}.n2_layer_navigation_list_layer__title_label_icon{display:inline-flex;align-items:center;justify-content:center;margin:0 3px;width:20px;height:20px;font-size:16px}.n2_layer_navigation_list_layer__title_label_icon[data-action=hide-show]:HOVER .ssi_16::before{content:"\E60F"}.n2_layer_navigation_list_layer__title--hidden>.n2_layer_navigation_list_layer__title_label .n2_layer_navigation_list_layer__title_label_icon .ssi_16::before{content:"\E923"}.n2_layer_navigation_list_layer__title_label_folder{display:inline-flex;align-items:center;justify-content:center;width:12px;height:12px;font-size:16px;cursor:pointer;opacity:.5}.n2_layer_navigation_list_layer__title_label_folder .ssi_16::before{content:"\E19E"}.n2_layer_navigation_list_layer__children .n2_layer_navigation_list_layer__title_label_folder{margin-left:-12px}.n2_layer_navigation_list_layer__title_label_folder:HOVER{opacity:1}.n2_layer_navigation_list_layer--closed .n2_layer_navigation_list_layer__title_label_folder .ssi_16::before{content:"\E19D"}.n2_layer_navigation_list_layer__title_label_text{font-size:12px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;max-width:180px;text-transform:capitalize;font-weight:700}.n2_layer_navigation_list_layer__title_label_text[contenteditable=true]:focus{text-overflow:initial;cursor:initial}.n2_layer_navigation_list_layer__title_label_text::selection{background:rgba(255,255,255,.99);color:#1d81f9}.n2_layer_navigation_list_layer__title_actions{display:flex;align-items:center;padding:0 5px}.n2_layer_navigation_list_layer__title_action{margin:3px;display:inline-flex;align-items:center;justify-content:center;width:20px;height:20px;font-size:16px;cursor:pointer}.n2_layer_navigation_list_layer__title_label_rename{display:inline-flex;align-items:center;justify-content:center;width:12px;height:32px;opacity:.5;cursor:pointer}.n2_layer_navigation_list_layer__title_label_rename:HOVER{opacity:1}.n2_layer_navigation_list_layer__title--hidden .n2_layer_navigation_list_layer__title_action_hide .ssi_16::before{content:"\E923"}.n2_ss_layer_window .n2_layer_navigation_list_layer__title_action--add-animation,.n2_layer_navigation_list_layer__title--has-animations .n2_layer_navigation_list_layer__title_action--add-animation{display:none}.n2_ss_layer_window .n2_layer_navigation_list_layer__title_action--remove-animation,.n2_layer_navigation_list_layer__title:not(.n2_layer_navigation_list_layer__title--has-animations) .n2_layer_navigation_list_layer__title_action--remove-animation{display:none}.n2_layer_navigation_list_layer__title_absolute_marker{margin:2px;width:16px;height:16px;background-color:#5f39c2;border-radius:2px;text-align:center;font-size:12px;line-height:16px;color:#fff;font-weight:700}.n2_layer_navigation_list_layer--sorted{position:absolute;left:0;width:100%;overflow:hidden;opacity:.7}.n2_timeline{position:relative;flex:1 1 auto;overflow:scroll;background:#1c2933}.n2_timeline__inner_pane{display:flex;flex-flow:column}.n2_timeline__inner_pane--calculate-duration{width:auto!important}.n2_timeline__time_frames{position:-webkit-sticky;position:sticky;top:0;z-index:100000;display:flex;height:48px;background-color:#0c1924;padding-left:21px}.n2_timeline__inner_pane--calculate-duration .n2_timeline__time_frames{width:0;overflow:hidden}.n2_timeline__cti{position:absolute;left:-10px;top:3px;z-index:100001;width:0;height:1000%;border-left:1px solid RGBA(230,182,37,.5);margin-left:21px;cursor:ew-resize}.n2_timeline__cti_dot{position:relative;left:-6px;top:0;width:11px;height:11px;border-radius:0 50% 50% 50%;transform:rotate(-135deg);background-color:#e6b625}.n2_timeline__time_frames_overlay{position:absolute;left:0;top:0;width:100%;height:100%;z-index:2;display:flex}.n2_timeline__time_frames_overlay svg{flex:1 1 auto;margin-left:19px;height:48px;color:#3a454e}.n2_timeline__one_second{flex:0 0 auto;position:relative;width:195px;height:100%;padding-left:5px;font-size:12px;line-height:48px;color:#94b2c1}.n2_timeline_layer__animations{display:flex;height:32px;padding-left:20px;background-color:#1c2933;border-bottom:1px solid rgba(0,0,0,.2)}.n2_timeline_layer__animations[data-rows="2"]{height:64px}.n2_timeline_layer__animations.n2_timeline_layer__animations--repeated.n2_timeline_layer__animations--has-animation{padding-left:0}.n2_timeline_layer__animations--active{background-color:#0c1924}.n2_timeline_animation_repeat{position:relative;display:none;align-items:center;justify-content:flex-end;line-height:32px;font-size:12px;color:#fff;cursor:ew-resize;padding:0 5px}.n2_timeline_animation_repeat:after{position:absolute;top:50%;margin-top:-5px;display:block;content:'';width:10px;height:10px;border-radius:10px;background-color:rgba(255,255,255,.3)}.n2_timeline_animation_repeat--start{margin-left:-20px;padding:0 20px}.n2_timeline_animation_repeat--start:after{right:5px}.n2_timeline_animation_repeat--end{margin-left:-10px}.n2_timeline_animation_repeat--end:after{right:-15px}.n2_timeline_layer__animations.n2_timeline_layer__animations--repeated.n2_timeline_layer__animations--has-animation .n2_timeline_animation_repeat{display:flex}.n2_timeline_layer__animations.n2_timeline_layer__animations--repeated.n2_timeline_layer__animations--has-animation .n2_timeline_animation_group,.n2_timeline_layer__animations.n2_timeline_layer__animations--repeated.n2_timeline_layer__animations--has-animation .n2_timeline_animation_repeat--end{background-color:#3a4956}.n2_timeline_animation_group__row{display:flex}.nui_resize_bar__handle{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;z-index:90;position:absolute;top:0;width:18px}.nui_resize_bar__handle:after{margin:4px;display:block;content:'';width:10px;height:10px;border-radius:10px;background-color:RGBA(0,0,0,.5)}.nui_resize_bar__handle--e{cursor:e-resize;right:0}.nui_resize_bar__handle--w{cursor:w-resize;left:0}.n2_timeline_animation_bar{position:relative;height:18px;margin:7px 0;border-radius:10px;cursor:ew-resize;z-index:90}.n2_timeline_animation_bar:HOVER{z-index:90}.n2_timeline_animation_bar--in{background-color:#1d81f9}.n2_timeline_animation_bar--loop{background-color:#04c018}.n2_timeline_animation_bar--out{background-color:#6b7986}.n2_timeline_animation_bar--extra{background-color:#6b7986}.n2_timeline_animation_bar__delay{position:absolute;line-height:18px;text-align:right;right:100%;margin-right:5px;font-size:11px;color:#fff}.n2_timeline_animation_bar__delay--small{display:none}.n2_timeline_animation_bar__duration{margin:0 7px;line-height:18px;text-align:center;cursor:ew-resize;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:11px;color:#fff;text-transform:uppercase}.n2_timeline_layer--closed .n2_timeline_layer__children{display:none}.n2_timeline_overlay_playing{display:none;position:fixed;width:100%;height:100%;left:0;top:0;z-index:9999;cursor:pointer}.n2_body--timeline-preview .n2_timeline_overlay_playing{display:block}.n2_body--timeline-preview .n2_ss_layer_window{display:none!important}.n2_body--timeline-preview #n2-ss-0 .n2-ss-layer{cursor:default}.n2_body--timeline-preview #n2-ss-slide-canvas-container #n2-ss-0 .n2-ss-layer .nui_resize_normal__handle{display:none!important}#n2-ss-0[data-responsive=fullpage]{min-height:0!important}#n2-ss-0{box-shadow:0 3px 10px 0 rgba(0,0,0,.1)}#n2-ss-0 .n2-ss-widget{pointer-events:none;opacity:.5!important}#n2-ss-0-align{margin:0!important}body:not(.n2-ss-slider-visible) #n2-ss-0 .n2-ss-layer{opacity:0!important}.n2_slide_editor_slider{position:relative;z-index:1;display:inline-flex;align-items:flex-start;min-width:100%;min-height:calc(100vh - 60px);padding-bottom:100px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.n2_slide_editor_slider__editor{position:relative}.n2_slide_editor_slider__editor_inner{position:relative;background:#f0f4f7;box-shadow:0 2px 20px rgba(0,0,0,.2)}div#n2-ss-0:HOVER .n2-ss-static-slide:not(.n2-ss-currently-edited-slide){visibility:hidden;z-index:-1}div div#n2-ss-0 .n2-ss-static-slide div[data-sstype=slide],div div#n2-ss-0 .n2-ss-static-slide div[data-sstype=content],div div#n2-ss-0 .n2-ss-static-slide div[data-sstype=content] div.n2-ss-section-main-content{visibility:visible}.n2_ruler{display:none;z-index:1;position:absolute;left:0;top:0;height:100%;width:100%;direction:ltr;overflow:hidden;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}html[dir=rtl] .n2_ruler{left:auto;right:0}.n2_body--ruler .n2_ruler{display:block}.n2_ruler_mark{flex:0 0 auto;position:relative;vertical-align:top}.n2_ruler_mark__label{position:absolute;display:block;font-size:9px;color:#325c77;line-height:12px}.n2_ruler--vertical{top:14px;height:calc(100% - 14px)}.n2_ruler--vertical .n2_ruler__inner{width:14px;visibility:visible;position:relative;background:#fff;border-right:1px solid #94b2c1}.n2_ruler--vertical .n2_ruler_mark{width:3px;height:9px;border-top:1px solid #94b2c1}.n2_ruler--vertical .n2_ruler_mark--small{left:11px}.n2_ruler--vertical .n2_ruler_mark--large{width:100%}.n2_ruler--vertical .n2_ruler_mark__label{left:0;top:2px;writing-mode:vertical-rl;-ms-writing-mode:tb-rl;-webkit-writing-mode:vertical-rl;-webkit-text-orientation:upright;text-orientation:upright}.n2_ruler--horizontal{left:14px;width:calc(100% - 14px)}.n2_ruler--horizontal .n2_ruler__inner{visibility:visible;height:14px;position:relative;display:inline-flex;vertical-align:top;flex-wrap:nowrap;direction:ltr;background:#fff;border-bottom:1px solid #94b2c1}.n2_ruler--horizontal .n2_ruler_mark{width:9px;height:3px;border-left:1px solid #94b2c1}.n2_ruler--horizontal .n2_ruler_mark--small{top:11px}.n2_ruler--horizontal .n2_ruler_mark--large{height:100%}.n2_ruler--horizontal .n2_ruler_mark__label{left:2px;top:0}.n2_ruler__guide{visibility:hidden;position:absolute;left:0;top:0;z-index:2}.n2_ruler--vertical .n2_ruler__guide{width:100%;height:0}.n2_ruler--horizontal .n2_ruler__guide{width:0;height:100%}.n2_ruler__guide--measure{z-index:1}.n2_ruler__guide_border{visibility:visible;pointer-events:none}.n2_ruler--vertical .n2_ruler__guide_border{border-bottom:1px solid #ccaa2b;width:100%}.n2_ruler--horizontal .n2_ruler__guide_border{border-right:1px solid #ccaa2b;height:100%}.n2_ruler__guide--measure .n2_ruler__guide_border{border-color:red}.n2_ruler__guide_handle{visibility:visible;position:absolute;left:0;top:0;background:#e6b625;width:9px;height:9px;color:#fff;font-size:9px;line-height:9px;cursor:pointer;display:flex;justify-content:center;align-items:center}.n2_ruler__guide_handle .ssi_16{font-size:9px!important}.n2_ruler--vertical .n2_ruler__guide_handle{top:-4px}.n2_ruler--horizontal .n2_ruler__guide_handle{left:-4px}.n2_ruler_corner{display:block;position:absolute;left:0;top:0;width:14px;height:14px;border-right:1px solid #94b2c1;border-bottom:1px solid #94b2c1;visibility:visible;background:#fff;cursor:pointer}.n2_layer_contextual_hover_layer::after,.n2_layer_context_menu_target::after,.n2_layer_col_highlight::after,.n2_layer_highlight_row_structure::after{display:block!important;content:'';z-index:10;position:absolute;left:0;top:0;box-sizing:border-box!important;width:100%;height:100%;border:2px solid #6b7986;pointer-events:none}.n2_layer_contextual_hover_layer[data-pm=absolute]::after,.n2_layer_context_menu_target[data-pm=absolute]::after,.n2_layer_col_highlight[data-pm=absolute]::after,.n2_layer_highlight_row_structure[data-pm=absolute]::after{display:block!important;content:'';z-index:10;position:absolute;left:0;top:0;box-sizing:border-box!important;width:100%;height:100%;border:2px solid #5f39c2;pointer-events:none}.n2_layer_contextual_active_layer::after,.nui_resize_absolute--resizing::after,.n2_layer_resize_snap_to::after,.n2_layer_drag__dragging::after,.n2_layer_drag_snap_to::after,.n2_layer_parent_highlight::after{display:block!important;content:'';z-index:10;position:absolute;left:0;top:0;box-sizing:border-box!important;width:100%;height:100%;border:2px solid #1d81f9;pointer-events:none}.n2_layer_contextual_active_layer[data-pm=absolute]::after,.nui_resize_absolute--resizing[data-pm=absolute]::after,.n2_layer_resize_snap_to[data-pm=absolute]::after,.n2_layer_drag__dragging[data-pm=absolute]::after,.n2_layer_drag_snap_to[data-pm=absolute]::after,.n2_layer_parent_highlight[data-pm=absolute]::after{display:block!important;content:'';z-index:10;position:absolute;left:0;top:0;box-sizing:border-box!important;width:100%;height:100%;border:2px solid #5f39c2;pointer-events:none}.n2_layer_drag__dragging{opacity:.5}.n2_layer_drag_target_groups[data-sstype=content]::after,.n2_layer_drag_target_groups[data-sstype=col]::after{display:block!important;content:'';z-index:10;position:absolute;left:0;top:0;box-sizing:border-box!important;width:100%;height:100%;border:2px solid #6b7986;pointer-events:none}.n2_layer--creation-in-progress,.n2_layer--creation-in-progress *{visibility:hidden!important}.n2_admin_editor__content--hover .n2-ss-layer-content .n2-ss-layer.n2-active{z-index:10}.n2_admin_editor__content--hover .n2-ss-layer.n2-active{overflow:visible!important}.n2-ss-section-main-content{min-height:20px}.n2-ss-layer-row .n2-ss-layer-content{min-height:20px}[data-visibility=hidden],[data-visibility=hidden] *{visibility:hidden!important;transition:none!important}.n2_admin_editor__content--hover .n2-ss-layer.n2-active{z-index:9999999!important}.n2_layer_layer_list_hover--force-zindex{z-index:9999999!important}.n2-ss-layer-placeholder{display:block;position:relative;width:100%;height:0;z-index:11}.n2-ss-layer-placeholder::after{display:block!important;content:'';position:absolute;left:0;top:-3px;box-sizing:border-box!important;width:100%;border:3px solid #1d81f9}.n2_smartguide{background:#4affff;position:absolute;left:0;top:0;z-index:1000000;display:none}.n2_smartguide--horizontal{width:100%;height:1px}.n2_smartguide--vertical{height:100%;width:1px}.n2-ss-currently-edited-slide .n2-ss-layer[data-sstype=col],.n2-ss-currently-edited-slide .n2-ss-layer[data-sstype=col] .n2-ss-layer{cursor:pointer}.ui-column-width-handle{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:none;position:absolute;top:25%;height:50%;cursor:ew-resize;width:5px;background:#1d81f9;z-index:88;opacity:.5;box-sizing:border-box!important;border-radius:5px}.ui-column-width-handle--visible{display:block}.n2-ss-layer:not(.n2-ss-layer--block)>.n2-ss-layer-row>.ui-column-width-handle,.n2-ss-layer-row[data-row-wrapped="1"]>.ui-column-width-handle{display:none!important}#n2-ss-0 .n2-ss-layer{cursor:not-allowed}#n2-ss-0 .n2-ss-currently-edited-slide .n2-ss-layer{cursor:pointer}div#n2-ss-0 .n2-ss-layer[data-sstype=content] .n2-ss-layer.nui-draggable-dragging,div#n2-ss-0 .n2-ss-layer[data-sstype=col] .n2-ss-layer.nui-draggable-dragging{z-index:100000;outline:0!important}#n2-ss-0 .n2-ss-slide:not(.n2-ss-currently-edited-slide){opacity:.3}.nui_resize_normal__handle{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;position:absolute;z-index:90;display:none;border:2px solid #1d81f9;height:6px;width:6px;background:#fff;border-radius:50px;transform-origin:50% 50%}.nui_resize_normal__handle:HOVER{transform:scale(1.5)}.nui_resize_normal__handle.nui-enabled{display:block}.nui_resize_normal__handle--none{border-color:#6b7986}.nui_resize_normal__handle--e{cursor:e-resize;right:-4px;top:50%;margin-top:-4px}.nui_resize_normal__handle--w{cursor:w-resize;left:-4px;top:50%;margin-top:-4px}.nui_resize_normal__handle--s{cursor:s-resize;bottom:-4px;left:50%;margin-left:-4px}.nui_spacing__handle{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;position:absolute;display:block;z-index:89;background:#1d81f9;overflow:hidden;opacity:0}.nui_spacing__handle.nui-enabled{opacity:.5}.nui_spacing__handle--zero{background:#6b7986}.nui_spacing__handle--negative{background:#be331f}.nui_spacing__handle:HOVER.nui-enabled,.nui_spacing__handle--spacing.nui-enabled{opacity:.8}.nui_spacing__handle--n.nui_spacing__handle.nui-enabled{min-height:5px;cursor:s-resize}.nui_spacing__handle--n.nui_spacing__handle--padding{top:0;margin-left:0;left:25%;width:50%}.nui_spacing__handle--n.nui_spacing__handle--margin{left:0;bottom:100%;width:100%}.nui_spacing__handle--e.nui_spacing__handle.nui-enabled{min-width:5px;cursor:w-resize}.nui_spacing__handle--e.nui_spacing__handle--padding{top:25%;margin-top:0;right:0;height:50%}.nui_spacing__handle--e.nui_spacing__handle--margin{top:0;left:100%;height:100%}.nui_spacing__handle--s.nui_spacing__handle.nui-enabled{min-height:5px;cursor:n-resize}.nui_spacing__handle--s.nui_spacing__handle--padding{bottom:0;margin-left:0;left:25%;width:50%}.nui_spacing__handle--s.nui_spacing__handle--margin{bottom:auto;top:100%;left:0;width:100%}.nui_spacing__handle--w.nui_spacing__handle.nui-enabled{min-width:5px;cursor:e-resize}.nui_spacing__handle--w.nui_spacing__handle--padding{top:25%;margin-top:0;left:0;height:50%}.nui_spacing__handle--w.nui_spacing__handle--margin{left:auto;right:100%;top:0;height:100%}.n2-ss-layer.n2_layer_contextual_hover_layer:not(.n2-active)>.nui_spacing__handle--margin,.n2-ss-layer.n2_layer_contextual_hover_layer:not(.n2-active)>.nui_spacing__handle--padding,.n2-ss-layer.n2_layer_contextual_hover_layer:not(.n2-active)>div>.nui_spacing__handle--padding{display:block;min-width:0;min-height:0;background:#6b7986;opacity:.5}#n2-ss-0 .n2-ss-layer{cursor:not-allowed}#n2-ss-0 .n2-ss-currently-edited-slide .n2-ss-layer{cursor:pointer}div#n2-ss-0 .n2-ss-layer[data-sstype=content] .n2-ss-layer.nui-draggable-dragging,div#n2-ss-0 .n2-ss-layer[data-sstype=col] .n2-ss-layer.nui-draggable-dragging{z-index:100000;outline:0!important}.n2-ss-currently-edited-slide .n2-ss-layer[data-sstype=col],.n2-ss-currently-edited-slide .n2-ss-layer[data-sstype=col] .n2-ss-layer{cursor:pointer}.ui-column-width-handle{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:none;position:absolute;top:25%;height:50%;cursor:ew-resize;width:5px;background:#1d81f9;z-index:88;opacity:.5;box-sizing:border-box!important;border-radius:5px}.ui-column-width-handle--visible{display:block}.n2-ss-layer:not(.n2-ss-layer--block)>.n2-ss-layer-row>.ui-column-width-handle,.n2-ss-layer-row[data-row-wrapped="1"]>.ui-column-width-handle{display:none!important}.n2-ss-layer-cc,.nui_resize_absolute__handle{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;position:absolute;z-index:90;display:none;border:2px solid #5f39c2;height:6px;width:6px;background:#fff;border-radius:50px;transform-origin:50% 50%}.n2-ss-layer-cc:HOVER,.nui_resize_absolute__handle:HOVER{transform:scale(1.5)}.n2-ss-layer-cc.nui-enabled,.nui_resize_absolute__handle.nui-enabled{display:block}.n2-ss-layer-cc{opacity:0;left:50%;top:50%;margin-top:-5px;margin-left:-5px}.n2-ss-layer-cc:HOVER{opacity:1}.n2-ss-layer[data-align=left][data-valign=top] .nui_resize_absolute__handle--nw,.n2-ss-layer[data-align=left][data-valign=middle] .nui_resize_absolute__handle--w,.n2-ss-layer[data-align=left][data-valign=bottom] .nui_resize_absolute__handle--sw,.n2-ss-layer[data-align=center][data-valign=top] .nui_resize_absolute__handle--n,.n2-ss-layer[data-align=center][data-valign=middle] .n2-ss-layer-cc,.n2-ss-layer[data-align=center][data-valign=bottom] .nui_resize_absolute__handle--s,.n2-ss-layer[data-align=right][data-valign=top] .nui_resize_absolute__handle--ne,.n2-ss-layer[data-align=right][data-valign=middle] .nui_resize_absolute__handle--e,.n2-ss-layer[data-align=right][data-valign=bottom] .nui_resize_absolute__handle--se{background:#5f39c2;opacity:1;border:2px solid #fff}.nui_resize_absolute__handle--e{cursor:e-resize;right:-4px;top:50%;margin-top:-5px}.nui_resize_absolute__handle--w{cursor:w-resize;left:-4px;top:50%;margin-top:-5px}.nui_resize_absolute__handle--n{cursor:n-resize;left:50%;top:-4px;margin-left:-5px}.nui_resize_absolute__handle--ne{cursor:ne-resize;right:-4px;top:-4px}.nui_resize_absolute__handle--nw{cursor:nw-resize;left:-4px;top:-4px}.nui_resize_absolute__handle--s{cursor:s-resize;bottom:-4px;left:50%;margin-left:-5px}.nui_resize_absolute__handle--se{cursor:se-resize;right:-4px;bottom:-4px}.nui_resize_absolute__handle--sw{cursor:sw-resize;left:-4px;bottom:-4px}.n2-ss-item-overlay{display:none;position:absolute;top:0;left:0;width:100%;height:100%}.n2-ss-item-html .n2-ss-item-overlay,.n2-ss-item-iframe .n2-ss-item-overlay{display:block}.n2-ss-item{position:relative;float:left;width:100%}.n2-ss-item-video,.n2-ss-item-youtube,.n2-ss-item-vimeo,.n2-ss-item-area,.n2-ss-item-imagearea{height:100%}.n2_ss_absolute_parent_picker{display:inline-flex;align-items:center;justify-content:center;width:30px;height:30px;background:#6b7986;border-radius:3px;cursor:pointer;line-height:30px;color:#fff}.n2_ss_absolute_parent_picker .ssi_16::before{content:"\E64D"}.n2_ss_absolute_parent_picker:HOVER{background-color:#8694a2}.n2_ss_absolute_parent_picker--active{background:#1d81f9}.n2_ss_absolute_parent_picker--active .ssi_16::before{content:"\E64B"}.n2_ss_absolute_parent_picker--active:HOVER{background-color:#338ef9}.n2_ss_absolute_parent_picker__overlay{position:absolute;left:0;top:0;width:100%;height:100%;z-index:1000000;box-shadow:inset 0 0 0 1px rgba(0,0,0,.8);cursor:pointer;background:#5f39c2;opacity:.5}.n2_ss_absolute_parent_picker__overlay--tile{width:33%;height:33%}.n2_ss_absolute_parent_picker__overlay:HOVER,.n2_ss_absolute_parent_picker__overlay--selected{opacity:1}.n2_ss_absolute_parent_picker__component--focused{z-index:2147483647!important}.n2_field_generator_data_button{position:absolute;right:-2px;top:-26px;z-index:10;display:inline-flex;align-items:center;padding:0 5px;background-color:#1d81f9;border-radius:3px;color:#fff;cursor:pointer}.n2_field_generator_data_button:HOVER{background-color:#338ef9}.n2_field_generator_data_button_icon{flex:0 0 auto;display:flex;align-items:center;justify-content:center}.n2_field_generator_data_button_label{padding:0 2px;font-size:10px;line-height:22px;font-weight:700;text-transform:uppercase}.n2_layer_contextual{display:none;position:absolute;z-index:8;height:28px;margin-top:-28px}.n2_layer_contextual--hover-section{z-index:7;opacity:.7}.n2_layer_contextual--hover{z-index:9}.n2_layer_contextual--hover.n2_layer_contextual--hover-active{visibility:hidden;pointer-events:none}.n2_layer_contextual--visible{display:inline-flex}.n2_layer_contextual__inner{display:inline-flex;background-color:#1d81f9;border-top-left-radius:3px;border-top-right-radius:3px;line-height:30px;overflow:hidden}.n2_layer_contextual--invert .n2_layer_contextual__inner{border-radius:0 0 3px 3px}.n2_layer_contextual__label{padding:0 6px;font-size:12px;line-height:30px;text-transform:uppercase;color:#fff;cursor:pointer;max-width:100px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.n2_layer_contextual__button{height:28px;padding:0 6px;display:inline-flex;align-items:center;justify-content:center;color:#fff;cursor:pointer}.n2_layer_contextual__button--active{background:#1167cd}.n2_layer_contextual[data-color=purple] .n2_layer_contextual__inner{background-color:#5f39c2}.n2_layer_contextual[data-color=purple] .n2_layer_contextual__button--active{background-color:#4c2d9b}.n2_layer_contextual[data-color=grey] .n2_layer_contextual__inner{background-color:#6b7986}.n2_layer_contextual__button--responsive-tools{display:none}body:not([data-device=desktopPortrait]) .n2_layer_contextual--has-responsive-tools .n2_layer_contextual__button--responsive-tools{display:inline-flex}.n2_layer_contextual_responsive_tools{display:flex;height:30px}.n2_layer_contextual_responsive_tools .ssi_16{display:block;padding:0 5px;color:#94b2c1}.n2_layer_contextual_responsive_tools__hide{padding:7px 0;cursor:pointer}.n2_layer_contextual_responsive_tools__hide .ssi_16::before{content:"\E60F"}.n2_layer_contextual_responsive_tools__hide--hidden .ssi_16::before{content:"\E923"}.n2_layer_contextual_responsive_tools__text_scale{display:flex}.n2_layer_contextual_responsive_tools__text_scale input{margin:0;padding:0;height:30px;line-height:30px;font-size:12px;color:#325c77;text-align:right}.n2_layer_contextual_responsive_tools__text_scale input,.n2_layer_contextual_responsive_tools__text_scale input:FOCUS{box-shadow:none;outline:0;border:0}.n2_layer_contextual_responsive_tools__text_scale input::-webkit-inner-spin-button,.n2_layer_contextual_responsive_tools__text_scale input::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.n2_layer_contextual_responsive_tools__text_scale input[type=number]{-moz-appearance:textfield}.n2_layer_contextual_responsive_tools__text_scale .nui-slider{position:relative;background-color:#94b2c1;height:6px;margin:12px 10px;border-radius:10px}.n2_layer_contextual_responsive_tools__text_scale .nui-slider .nui-slider-handle{position:absolute;top:0;z-index:2;width:10px;height:10px;background-color:#fff;border:2px solid #94b2c1;margin:-4px -7px 0;border-radius:50px;cursor:ew-resize;-ms-touch-action:none;touch-action:none}.n2_layer_contextual_responsive_tools__text_scale_percent{line-height:30px;font-size:12px;color:#325c77}.n2_context_menu{font-family:"Inter-Nextend",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;line-height:1.3;font-size:16px;-webkit-font-smoothing:antialiased;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;z-index:1000000;position:fixed;left:0;top:0}.n2_context_menu a{transition:none 0s;text-decoration:none;box-shadow:none}.n2_context_menu__inner{background-color:#fff;border-radius:3px;box-shadow:0 1px 5px 1px rgba(55,77,88,.2);overflow:hidden}.n2_context_menu__item{display:flex;align-items:center;padding:0 10px;height:36px;cursor:default}.n2_context_menu__item--has-action{cursor:pointer}.n2_context_menu__item--has-action:HOVER,.n2_context_menu__item--active{background-color:#1d81f9}.n2_context_menu__item_icon{padding:0 5px;color:#94b2c1}.n2_context_menu__item--color-red .n2_context_menu__item_icon{color:#c43e2a}.n2_context_menu__item--has-action:HOVER .n2_context_menu__item_icon,.n2_context_menu__item--active .n2_context_menu__item_icon{color:#fff}.n2_context_menu__item_onoff .n2_context_menu__item_icon::before{content:"\E19A"}.n2_context_menu__item_onoff--on .n2_context_menu__item_icon::before{content:"\E199"}.n2_context_menu__item_label{padding:0 5px;font-size:12px;color:#325c77;white-space:nowrap;text-transform:capitalize}.n2_context_menu__item--color-red .n2_context_menu__item_label{color:#c43e2a}.n2_context_menu__item--has-action:HOVER .n2_context_menu__item_label,.n2_context_menu__item--active .n2_context_menu__item_label{color:#fff}.n2_context_menu__sub_menu{display:none;z-index:2;position:absolute;left:0;top:0;background-color:#fff;border-radius:3px;box-shadow:0 1px 5px 1px rgba(55,77,88,.2);overflow:hidden}.n2_context_menu__sub_menu--active{display:block}html[data-component=layer][data-component-sub=image] .n2_field[data-field=layerfont-size],html[data-component=layer][data-component-sub=transition] .n2_field[data-field=layerfont-size],html[data-component=layer][data-component-sub=youtube] .n2_field[data-field=layerfont-size],html[data-component=layer][data-component-sub=vimeo] .n2_field[data-field=layerfont-size],html[data-component=layer][data-component-sub=video] .n2_field[data-field=layerfont-size],html[data-component=layer][data-component-sub=audio] .n2_field[data-field=layerfont-size],html[data-component=layer][data-component-sub=imagearea] .n2_field[data-field=layerfont-size],html[data-component=layer][data-component-sub=area] .n2_field[data-field=layerfont-size],html[data-component=layer][data-component-sub=iframe] .n2_field[data-field=layerfont-size]{display:none}html[data-component=layer][data-component-sub=animatedHeading] .n2_field .n2_field_decoration__option[data-value=underline],html[data-component=layer][data-component-sub=highlightedHeading] .n2_field .n2_field_decoration__option[data-value=underline]{display:none}.n2_slide_generator_box{position:relative;width:270px;height:180px;border-radius:3px;overflow:hidden;display:flex;flex-flow:column;justify-content:flex-end;background-color:#dce2e5;background-position:left top}.n2_slide_generator_box__title{display:flex;align-items:center;padding:10px;background-color:#0c1924}.n2_slide_generator_box__title_label{flex:1 1 auto;padding:0 5px;font-size:14px;line-height:20px;color:#bdcfd9;display:flex;align-items:center}.n2_slide_generator_box__title_label_inner{margin-right:5px}html[dir=rtl] .n2_slide_generator_box__title_label_inner{margin-right:0;margin-left:5px}.n2_slide_generator_box__title_button{padding:0 10px;background-color:#1d81f9;border-radius:3px;font-size:11px;line-height:30px;text-align:center;text-transform:uppercase}.n2_slide_generator_box__title_button:HOVER{background-color:#338ef9}.n2_slide_generator_box__title_button,.n2_slide_generator_box__title_button:HOVER,.n2_slide_generator_box__title_button:FOCUS{color:#fff}.n2_slide_generator_step1__installed_generators{padding:40px;display:grid;grid-gap:32px;grid-template-columns:repeat(auto-fill,270px)}.n2_slide_generator_step1__not_installed{padding:10px 40px 40px 40px}.n2_slide_generator_step1__not_installed_label{font-size:22px;line-height:32px;color:#283f4d}.n2_slide_generator_step1__not_installed_generators{padding-top:20px;display:grid;grid-gap:32px;grid-template-columns:repeat(auto-fill,270px)}.n2_slide_generator_step3{padding:40px;display:grid;grid-gap:32px;grid-template-columns:repeat(auto-fill,270px)}.n2_generator_records_table{margin:20px 0;display:grid;overflow:auto;background:#fff;grid-gap:2px}.n2_generator_records_table__heading{padding:0 10px;background-color:#f0f4f7;color:#325c77;font-size:12px;line-height:30px;font-weight:700}.n2_generator_records_table__cell{padding:0 10px;background-color:#f0f4f7;color:#325c77;font-size:12px;line-height:30px;max-height:100px;min-width:150px;overflow:auto}.n2_slider_preview_area{margin-top:20px;display:flex;justify-content:center;min-height:150vh}.n2_slider_preview_area__inner{position:relative;background-color:#fff;box-shadow:0 2px 20px 0 rgba(0,0,0,.2)}.n2_preview{display:flex;flex-flow:column;align-items:center;height:calc(100vh - 60px)}.n2_preview__ruler{width:100%;position:relative;flex:0 0 auto;height:20px;background-color:#94b2c1;overflow:hidden}.n2_preview__ruler_device{position:absolute;left:50%;top:0;height:100%;cursor:pointer}.n2_preview__ruler_device div{border-left:1px solid #fff;border-right:1px solid #fff;padding:0 5px;height:100%}.n2_preview__ruler_device:HOVER div{background-color:#1d81f9}.n2_preview__ruler--ready .n2_preview__ruler_device{transition:width .5s,margin-left .5s}.n2_preview__ruler_label{position:absolute;left:50%;top:0;z-index:10;width:200px;margin-left:-100px;pointer-events:none;text-align:center;font-size:12px;line-height:20px;color:#fff}.n2_preview__device_screen{position:relative;flex:1 1 auto;width:100%;height:100%;display:flex;justify-content:center;padding:0 20px 20px;box-sizing:border-box;overflow:hidden}.n2_preview__device_info{margin-top:13px;position:relative;flex:0 0 auto;width:100%;height:26px;display:flex;align-items:center;justify-content:center;font-size:13px;line-height:26px;color:#325c77}.n2_preview__device_info .ssi_16{margin:0 5px;color:#94b2c1}.n2_preview__device_info_state{font-weight:700}.n2_preview__notification_scale{pointer-events:none;position:absolute;left:50%;top:30px;z-index:10;background:RGBA(0,0,0,.5);width:90px;margin-left:-45px;color:#fff;text-align:center;border-radius:5px;line-height:48px;font-size:16px;transition:opacity .5s ease 0s;opacity:0}.n2_preview__notification_scale--visible{opacity:1}.n2_preview__device_screen_inner{position:relative;flex:1 1 auto;width:100%;height:100%;max-width:100%;max-height:100%}.n2_preview__device_screen_inner iframe{border:0;max-width:none;width:100%;height:100%;box-shadow:0 2px 20px rgba(0,0,0,.2);transform-origin:50% 0;transition:transform .5s}.n2_preview__frame_overlay{display:none;position:absolute;left:0;top:0;width:100%;height:100%}.n2_body--resize-horizontal .n2_preview__frame_overlay,.n2_body--resize-vertical .n2_preview__frame_overlay{display:block}.n2_preview__resize_width{position:absolute;top:0;right:-8px;width:8px;height:100%;background:#1d81f9;opacity:0;cursor:ew-resize;transition:opacity .3s}.n2_preview__device_screen:HOVER .n2_preview__resize_width{opacity:.5}.n2_preview__device_screen .n2_preview__resize_width:HOVER,.n2_body--resize-horizontal .n2_preview__device_screen .n2_preview__resize_width{opacity:1}.n2_body--scale-preview .n2_preview__resize_width{opacity:0!important}.n2_preview__resize_height{position:absolute;left:0;bottom:-8px;width:100%;flex:0 0 auto;height:8px;background:#1d81f9;opacity:0;cursor:ns-resize;transition:opacity .3s}.n2_preview__device_screen:HOVER .n2_preview__resize_height{opacity:.5}.n2_preview__device_screen .n2_preview__resize_height:HOVER,.n2_body--resize-vertical .n2_preview__device_screen .n2_preview__resize_height{opacity:1}.n2_body--scale-preview .n2_preview__resize_height{opacity:0!important}#n2_preview_frame{display:block;width:100%;height:100%}.n2_preview_toolbar{display:flex;align-items:center}.n2_preview_toolbar__size{margin:0 10px;display:flex}.n2_preview_toolbar__editable{width:46px;height:28px;background-color:#2c3a45;border-radius:3px;font-size:12px;line-height:28px;color:#bdcfd9;text-align:center}.n2_preview_toolbar__x{margin:0 10px;font-size:12px;line-height:28px;color:#94b2c1}select.n2_preview_toolbar__scale{margin:0;padding:0 10px;max-width:initial;width:auto;height:28px;min-height:28px;font-family:inherit;-webkit-appearance:menulist;-moz-appearance:menulist;background:#2c3a45;font-size:12px;line-height:28px}select.n2_preview_toolbar__scale,select.n2_preview_toolbar__scale:FOCUS,select.n2_preview_toolbar__scale:HOVER{color:#bdcfd9;box-shadow:none;border:0}.n2_html--slider-preview{background:#fff}.n2_html--slider-preview body{width:100%;overflow-x:hidden;overflow-y:scroll;background:#fff}@media only screen and (max-width:700px){.n2_html--slider-preview::-webkit-scrollbar{width:0}.n2_html--slider-preview{-ms-overflow-style:none;scrollbar-width:none}}.n2_getting_started{display:flex;flex-flow:column;align-items:center;padding:60px 0 120px}.n2_getting_started__heading{font-size:32px;line-height:32px;color:#283f4d}.n2_getting_started__subheading{font-size:14px;line-height:28px;color:#325c77}.n2_getting_started__video{margin-top:20px;position:relative;width:100%;max-width:calc(100vh - 100px)}.n2_getting_started__video .n2_getting_started__video_placeholder{padding-top:56.25%;height:0}.n2_getting_started__video iframe,.n2_getting_started__video img{position:absolute;left:0;top:0;width:100%;height:100%;border:0}.n2_getting_started__buttons{margin-top:20px;display:flex;width:100%}.n2_getting_started__buttons>div{width:50%}.n2_getting_started__button_dont_show{text-align:right;padding:0 10px}.n2_getting_started__button_dont_show a{display:inline-block;padding:0 20px;font-size:14px;line-height:36px}.n2_getting_started__button_dont_show a,.n2_getting_started__button_dont_show a:HOVER,.n2_getting_started__button_dont_show a:FOCUS{color:#1375e9}html[dir=rtl] .n2_getting_started__button_dont_show{text-align:left}.n2_getting_started__button_dashboard{text-align:left;padding:0 10px}.n2_getting_started__button_dashboard a{display:inline-block;padding:0 20px;background-color:#04c018;border-radius:3px;font-size:12px;line-height:36px;font-weight:700;text-align:center;text-transform:uppercase}.n2_getting_started__button_dashboard a:HOVER{background-color:#07ca1c}.n2_getting_started__button_dashboard a,.n2_getting_started__button_dashboard a:HOVER,.n2_getting_started__button_dashboard a:FOCUS{color:#fff}html[dir=rtl] .n2_getting_started__button_dashboard{text-align:right}.n2_page_activate{display:flex;flex-flow:column;align-items:center;padding:60px 0 120px}.n2_page_activate__heading{font-size:32px;line-height:32px;color:#283f4d}.n2_page_activate__subheading{font-size:14px;line-height:28px;color:#325c77}.n2_page_activate__video{margin-top:20px;position:relative;width:100%;max-width:calc(100vh - 100px)}.n2_page_activate__video .n2_page_activate__video_placeholder{padding-top:56.25%;height:0}.n2_page_activate__video iframe{position:absolute;left:0;top:0;width:100%;height:100%}.n2_page_activate__buttons{margin-top:20px;display:flex;width:100%}.n2_page_activate__buttons>div{width:50%}.n2_page_activate__button_dont_show{text-align:right;padding:0 10px}.n2_page_activate__button_dont_show a{display:inline-block;padding:0 20px;font-size:14px;line-height:36px}.n2_page_activate__button_dont_show a,.n2_page_activate__button_dont_show a:HOVER,.n2_page_activate__button_dont_show a:FOCUS{color:#1375e9}.n2_page_activate__button_dashboard{text-align:left;padding:0 10px}.n2_page_activate__button_dashboard a{display:inline-block;padding:0 20px;background-color:#04c018;border-radius:3px;font-size:12px;line-height:36px;font-weight:700;text-align:center;text-transform:uppercase}.n2_page_activate__button_dashboard a:HOVER{background-color:#07ca1c}.n2_page_activate__button_dashboard a,.n2_page_activate__button_dashboard a:HOVER,.n2_page_activate__button_dashboard a:FOCUS{color:#fff}.n2_page_free_go_pro{display:flex;padding:30px 0 90px;flex-wrap:wrap;justify-content:center}.n2_page_free_go_pro__col{display:flex;flex-flow:column;align-items:center;padding:30px}.n2_page_free_go_pro__heading{font-size:32px;line-height:32px;color:#283f4d}.n2_page_free_go_pro__subheading{margin-bottom:20px;font-size:14px;line-height:28px;color:#325c77}.n2_page_free_go_pro_already_purchased{position:relative;display:flex;flex-flow:column;align-items:center;width:572px;height:392px;background-color:#fff;border-radius:5px;box-shadow:0 10px 8px -10px rgba(0,0,0,.1)}.n2_page_free_go_pro_already_purchased:HOVER{box-shadow:0 10px 8px -10px rgba(0,0,0,.2)}.n2_page_free_go_pro_already_purchased__logo{margin-top:44px;display:flex;align-items:center;justify-content:center;width:100px;height:100px;background-color:rgba(4,192,24,.1);border-radius:50px;color:#04c018}.n2_page_free_go_pro_already_purchased__heading{margin-top:9px;font-size:18px;line-height:30px;color:#283f4d;font-weight:700}.n2_page_free_go_pro_already_purchased__paragraph{width:380px;height:78px;color:#325c77;font-size:14px;line-height:26px;text-align:center}.n2_page_free_go_pro_already_purchased__paragraph a,.n2_page_free_go_pro_already_purchased__paragraph a:HOVER,.n2_page_free_go_pro_already_purchased__paragraph a:FOCUS{color:#1375e9}.n2_page_free_go_pro_already_purchased__button{margin:20px 0 10px;padding:0 20px;min-width:260px;background-color:#04c018;border-radius:3px;text-align:center;font-size:12px;line-height:36px;text-transform:uppercase;font-weight:700}.n2_page_free_go_pro_already_purchased__button,.n2_page_free_go_pro_already_purchased__button:HOVER,.n2_page_free_go_pro_already_purchased__button:FOCUS{color:#fff}.n2_page_free_go_pro_already_purchased__button:HOVER{background-color:#07ca1c}.n2_help_center{display:flex;flex-flow:column;align-items:center;background-color:#f0f4f7;text-align:center;padding:0 40px}.n2_help_center a:HOVER{color:#005bc6}.n2_help_center a,.n2_help_center a:FOCUS{color:#1375e9}.n2_help_center__getting_started{width:100%;max-width:1140px;margin-top:44px}.n2_help_center__getting_started__heading{font-size:32px;line-height:32px;color:#283f4d}.n2_help_center__getting_started__subheading{font-size:14px;line-height:28px;color:#325c77}.n2_help_center__getting_started__video{margin-top:20px;position:relative;width:100%;max-width:1140px}.n2_help_center__getting_started__video .n2_help_center__getting_started__video_placeholder{padding-top:56.25%;height:0}.n2_help_center__getting_started__video iframe,.n2_help_center__getting_started__video img{position:absolute;left:0;top:0;width:100%;height:100%}.n2_help_center__conflicts{max-width:1140px;width:100%;box-sizing:border-box;border-radius:3px 3px 0 0;background-color:#fff;box-shadow:0 1px 5px 1px rgba(55,77,88,.2);padding:48px 20px 25px;margin-top:60px}.n2_help_center__conflicts_test_api{margin-bottom:20px}.n2_help_center__search{width:100%;box-sizing:border-box;padding:60px 20px 0}.n2_help_center__search_heading{color:#283f4d;font-size:22px;line-height:32px}.n2_help_center__search_field{margin-top:20px}.n2_help_center__search_field form{display:inline-flex;width:100%;max-width:600px}.n2_help_center__search_field form input{flex:1 1 auto;margin:0;padding:0 20px;border:2px solid #94b2c1;border-right:0;border-radius:3px 0 0 3px;background-color:#fff;color:#325c77;font-size:14px;line-height:46px;height:auto}.n2_help_center__search_field form input,.n2_help_center__search_field form input:FOCUS{box-shadow:none;outline:0}.n2_help_center__search_field form input:FOCUS{border-color:#1d81f9}html[dir=rtl] .n2_help_center__search_field form input{border:2px solid #94b2c1;border-left:0;border-radius:0 3px 3px 0}.n2_help_center__search_field form button{padding:0 35px;background-color:#1d81f9;border:0;border-top-right-radius:3px;border-bottom-right-radius:3px;color:#fff;font-size:12px;line-height:50px;text-transform:uppercase}.n2_help_center__search_field form button:HOVER{background-color:#338ef9}.n2_help_center__search_field form button,.n2_help_center__search_field form button:FOCUS{box-shadow:none;outline:0}html[dir=rtl] .n2_help_center__search_field form button{border-radius:3px 0 0 3px}.n2_help_center__actions{margin-top:60px;max-width:1140px;width:100%;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:10px 60px}.n2_help_center__action{position:relative;padding:20px;background-color:#fff;border-radius:3px;box-shadow:0 1px 5px 1px rgba(55,77,88,.2);text-align:center}.n2_help_center__action_link{position:absolute;z-index:2;left:0;top:0;width:100%;height:100%}.n2_help_center__action_icon{margin-top:30px;text-align:center;color:#1375e9}.n2_help_center__conflicts_icon{color:#1375e9}.n2_help_center__action_label,.n2_help_center__conflicts_label{margin-top:16px;color:#283f4d;font-size:18px;line-height:28px}.n2_help_center__conflicts_description,.n2_help_center__action_description{margin:5px 0 15px;color:#325c77;font-size:14px;line-height:24px}.n2_help_center__articles{margin-top:20px;max-width:1140px;width:100%;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:10px 60px}.n2_help_center__articles_heading{color:#283f4d;font-size:22px;line-height:32px;margin-top:60px;max-width:1140px;width:100%}.n2_help_center__article{position:relative;padding:20px 20px;background-color:#fff;border-radius:3px;box-shadow:0 1px 5px 1px rgba(55,77,88,.2);display:flex;align-items:center;color:#325c77;font-size:14px;line-height:20px}.n2_help_center__article:HOVER{color:#1375e9}.n2_help_center__article_link{position:absolute;z-index:2;left:0;top:0;width:100%;height:100%}.n2_help_center__article_label{flex:1 1 auto;text-align:left}html[dir=rtl] .n2_help_center__article_label{text-align:right}.n2_help_center__article_icon{font-size:16px}html[dir=rtl] .n2_help_center__article_icon{transform:rotate(180deg)}.n2_help_center__system_information{margin-top:60px;max-width:1140px;width:100%}.n2_help_center__system_information_label,.n2_help_center__articles_label{color:#283f4d;font-size:22px;line-height:32px}.n2_help_center__system_information_form textarea{display:block;margin-top:30px;height:300px;background-color:#fff;border:2px solid #94b2c1;border-radius:3px;padding:15px 20px;color:#325c77;font-size:14px;line-height:24px}.n2_loading_screen{display:none;position:fixed;z-index:2147483647;width:100%;height:100%;left:0;top:0;background:RGBA(32,41,52,.95)}.n2_loading_screen--visible{display:flex;align-items:center;justify-content:center}.n2_loading_screen__circle{border:10px solid #6b7986;border-left-color:#fff;border-radius:50%;width:40px;height:40px;animation:n2_loading_screen__circle_animation 1.1s infinite linear}@keyframes n2_loading_screen__circle_animation{0%{transform:rotate(0deg)}to{transform:rotate(360deg)}}.n2_ss_background_animation_preview{overflow:hidden}.n2_ss_background_animation_preview .n2-bganim-side{position:absolute;left:0;top:0;overflow:hidden}.n2_ss_background_animation_preview .n2-bganim-tile-overlay-colored{z-index:100000}.n2_ss_background_animation_preview__slider{position:relative;width:800px;height:500px;margin:20px;z-index:3}.n2_ss_background_animation_preview__animation_container,.n2_ss_background_animation_preview__slide{position:absolute;left:0;top:0;width:800px;height:500px}.n2_ss_background_animation_preview__slide{z-index:2}.n2_ss_background_animation_preview__slide_background{height:100%}.n2_ss_background_animation_preview__slide_background_image{height:100%;background-size:cover;background-position:50% 50%}
Public/SmartSlider3/Application/Admin/Assets/dist/smartslider-backend.min.js CHANGED
@@ -1 +1 @@
1
- (function(t){var i=t;i._N2=i._N2||{_r:[],_d:[],r:function(){this._r.push(arguments)},d:function(){this._d.push(arguments)}};var s=t.document,n=s.documentElement,h,r,o=t.setTimeout,a=t.clearTimeout,c=i._N2,l=t.requestAnimationFrame,u=s.createElement.bind(s),d=function(){return u("div")},f=Object.assign,_=function(t,i){for(var s=Object(t),n=1;n<arguments.length;n++){var h=arguments[n];if(null!==h&&h!==r)for(var o in h)null!==h[o]&&Object.prototype.hasOwnProperty.call(h,o)&&("object"==typeof h[o]&&(h[o].constructor===Object||Array.isArray(h[o]))?(Array.isArray(h[o])?s[o]=[]:("object"!=typeof s[o]||Array.isArray(s[o]))&&(s[o]={}),s[o]=_(s[o],h[o])):s[o]=h[o])}return s},v=function(t,i){return t.getAttribute(i)},p=function(t,i,s){t.setAttribute(i,s)},b=function(t,i){for(var s in i)p(t,s,i[s])},m=function(t,i){t.removeAttribute(i)},g=function(t,i,s){t.forEach((function(t){p(t,i,s)}))},y=function(t,i){t.forEach((function(t){b(t,i)}))},w=function(t,i){t.forEach((function(t){L(t,i)}))},k=function(t,i){t.forEach((function(t){E(t,i)}))},x=function(t,i){return t.dataset[i]},S=function(t,i,s){t.dataset[i]=s},M=function(t,i){delete t.dataset[i]},C=function(t,s){return i.getComputedStyle(t).getPropertyValue(s)},I=function(t,i,s){t.style.setProperty(i,s)},N=function(t,i){for(var s in i)I(t,s,i[s])},O=function(t,i){t.style.removeProperty(i)},j=function(t,i){i.forEach((function(i){O(t,i)}))},P=function(t,i,s){t.forEach((function(t){I(t,i,s)}))},T=function(t,i){t.forEach((function(t){N(t,i)}))},F=function(t,i){t.forEach((function(t){O(t,i)}))},A=function(t){t&&t.parentNode&&t.parentNode.removeChild(t)},z=function(t){t.forEach((function(t){A(t)}))},L=function(t,i){t.classList.add(i)},E=function(t,i){t.classList.remove(i)},R=function(t,i){return t.dispatchEvent(i)},D=function(t,i,s){return s=f({bubbles:!0,cancelable:!0},s),R(t,new Event(i,s))},U=function(t,i){return R(t,new Event(i,{bubbles:!1,cancelable:!1}))},B=function(t,i,s){return R(t,new CustomEvent(i,{bubbles:!1,cancelable:!1,detail:s}))},W=function(t,i,s,n){t.removeEventListener(i,s,n)},H=function(t){t.forEach((function(t){t()})),t.splice(0,t.length)},V=function(t,i,s,n){return n=n||{},t.addEventListener(i,s,n),t.removeEventListener.bind(t,i,s,n)},G=function(t,i,s,n){n=n||{},t.addEventListener(i,s,n)},J=function(t,i,s){t.addEventListener(i,s,{once:!0})},Y=function(t,i,s){t.ssEvent&&t.ssEvent[i]&&t.ssEvent[i].forEach((function(t){t(s)}))},q=function(t,i,s){t.ssEvent||(t.ssEvent={}),t.ssEvent[i]||(t.ssEvent[i]=[]),t.ssEvent[i].push(s)},X=function(t,i,s){return q(t,i,s),Z.bind(t,i,s)},Z=function(t,i){if(this.ssEvent&&this.ssEvent[t])for(var s=this.ssEvent[t],n=s.length-1;n>=0;n--)s[n]===i&&s.splice(n,1)},Q=function(){return n.scrollTop},K=function(t){n.scrollTop=t},tt=function(){return n.scrollLeft},it=function(t){return t.getBoundingClientRect().width},st=function(t){return t.getBoundingClientRect().height},nt=function(t){return s.scrollingElement.scrollTop+t.getBoundingClientRect().top},et=function(t){"complete"===s.readyState||"interactive"===s.readyState?t():Document&&Document.prototype&&Document.prototype.addEventListener&&Document.prototype.addEventListener!==s.addEventListener?Document.prototype.addEventListener.call(s,"DOMContentLoaded",t):s.addEventListener("DOMContentLoaded",t)},ht=function(t,i,s,n){if(Math.abs(t.scrollTop-i)<1)n&&n();else{s=Math.max(300,s||300);var h=t.scrollTop,r=i-h,o=performance.now(),a=function(i){var c=Math.min(1,(i-o)/s);c<.5?c*=2*c:c=(4-2*c)*c-1,t.scrollTop=h+c*r,c<1?requestAnimationFrame(a):n&&n()};a(o)}},rt=function(t,i,n){var h=s.createElementNS("http://www.w3.org/2000/svg",t);return i&&(at(h,i),n&&n.appendChild(h)),h},ot=function(t,i,s){t.setAttributeNS(null,i,s)},at=function(t,i){for(var s in i)ot(t,s,i[s])},ct=function(t){return t.charAt(0).toUpperCase()+t.slice(1)},lt=navigator.userAgent.indexOf("+http://www.google.com/bot.html")>-1?function(t){t()}:i.requestIdleCallback||function(t){return o(t,1)},ut=i.cancelIdleCallback||function(t){a(t)};et((function(){h=s.body})),c.d("Base64",(function(){return{_keyStr:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",encode:function(t){var i,s,n,h,r,o,a,c="",l=0;for(t=function(t){t=t.replace(/\r\n/g,"\n");for(var i="",s=0;s<t.length;s++){var n=t.charCodeAt(s);n<128?i+=String.fromCharCode(n):n>127&&n<2048?(i+=String.fromCharCode(n>>6|192),i+=String.fromCharCode(63&n|128)):(i+=String.fromCharCode(n>>12|224),i+=String.fromCharCode(n>>6&63|128),i+=String.fromCharCode(63&n|128))}return i}(t);l<t.length;)h=(i=t.charCodeAt(l++))>>2,r=(3&i)<<4|(s=t.charCodeAt(l++))>>4,o=(15&s)<<2|(n=t.charCodeAt(l++))>>6,a=63&n,isNaN(s)?o=a=64:isNaN(n)&&(a=64),c=c+this._keyStr.charAt(h)+this._keyStr.charAt(r)+this._keyStr.charAt(o)+this._keyStr.charAt(a);return c},decode:function(t){var i,s,n,h,r,o,a="",c=0;for(t=t.replace(/[^A-Za-z0-9\+\/\=]/g,"");c<t.length;)i=this._keyStr.indexOf(t.charAt(c++))<<2|(h=this._keyStr.indexOf(t.charAt(c++)))>>4,s=(15&h)<<4|(r=this._keyStr.indexOf(t.charAt(c++)))>>2,n=(3&r)<<6|(o=this._keyStr.indexOf(t.charAt(c++))),a+=String.fromCharCode(i),64!=r&&(a+=String.fromCharCode(s)),64!=o&&(a+=String.fromCharCode(n));return a=function(t){for(var i="",s=0,n=c1=c2=0;s<t.length;)(n=t.charCodeAt(s))<128?(i+=String.fromCharCode(n),s++):n>191&&n<224?(c2=t.charCodeAt(s+1),i+=String.fromCharCode((31&n)<<6|63&c2),s+=2):(c2=t.charCodeAt(s+1),c3=t.charCodeAt(s+2),i+=String.fromCharCode((15&n)<<12|(63&c2)<<6|63&c3),s+=3);return i}(a)}}})),i.n2_=function(t){return c._localization&&c._localization[t]!==r?c._localization[t]:t},i.n2_sprintf=function(t){var i=arguments,s=1;return t.replace(/%s/g,(function(){return i[s++]}))},c.r("$",(function(){var $=c.$;c._animationManager=null,c._browse=null,c._roundTo=5,c._roundHelper=function(t){return c._roundTo<=1?t:Math.round(t/c._roundTo)*c._roundTo},$.fn.n2opener=function(){return this.each((function(){console.error("deprecated $.fn.n2opener");var t=$(this).on("click",(function(e){t.toggleClass("n2-active")}));t.siblings("span").on("click",(function(e){t.toggleClass("n2-active")})),t.parent().on("mouseleave",(function(){t.removeClass("n2-active")})),t.find(".n2-button-menu").on("click",(function(e){e.stopPropagation(),t.removeClass("n2-active")}))}))},jQuery!==r&&jQuery(s).on("wp-collapse-menu",(function(){$(i).trigger("resize")})),c._deepDiff={map:function(t,i){if(this.isValue(t))return t!==r&&t!=i?t:r;for(var s in i)this.isFunction(i[s])||(t[s]=this.map(t[s],i[s]),(t[s]===r||$.isPlainObject(t[s])&&$.isEmptyObject(t[s])||this.isArray(t[s])&&0==t[s].length)&&delete t[s]);return t},isFunction:function(t){return"[object Function]"==={}.toString.apply(t)},isArray:function(t){return"[object Array]"==={}.toString.apply(t)},isObject:function(t){return"[object Object]"==={}.toString.apply(t)},isValue:function(t){return!this.isObject(t)&&!this.isArray(t)}},c._UnicodeToHTMLEntity=function(t){try{var i,s=/(?:[\uD800-\uDBFF][\uDC00-\uDFFF])/g;function n(t){for(var i,s,n,h=[],r=0;r<t.length;)55296==(63488&(i=t.charCodeAt(r)))?h.push((s=i,n=t.charCodeAt(++r),((1023&s)<<10)+(1023&n)+65536)):h.push(i),++r;return"&#"+h+";"}for(;i=s.exec(t);)t=t.substr(0,i.index)+n(t.substr(i.index,s.lastIndex-i.index))+t.substr(s.lastIndex)}catch(i){return console.error(i),t}return t}})),c.d("Popover",["$"],(function(){var $=c.$;function t(t){this.$container=t,this.$content=t.find(".n2_popover_content"),this.$exit=this.$content.find(".n2_popover_content_exit").on("click",this.hide.bind(this)),this.positionCallback=this.position.bind(this),this.$trigger=t.find(".n2_popover__trigger").on("click",this.show.bind(this))}return t.prototype.lazyLoad=function(){this.options=f({horizontal:"right",vertical:"below",relatedclass:!1},this.$container.data()),this.$content.appendTo("body"),this.$inner=this.$content.find(".n2_popover_content_inner"),this.$content.find(".n2_floating_menu__item").on("click",function(e){$(e.currentTarget).data("stay-open")||this.hide(e)}.bind(this)),this.lazyLoad=function(){}},t.prototype.position=function(){var t=this.$trigger[0].getBoundingClientRect(),s=this.$inner[0].getBoundingClientRect(),n=0,h=0,r=1;"left"===this.options.horizontal?(n=this.getXLeft(t,s))<0&&(n=this.getXRight(t,s)):(n=this.getXRight(t,s))<0&&(n=this.getXLeft(t,s)),"above"===this.options.vertical?(h=this.getYAbove(t,s))<0?h=this.getYBelow(t,s):r=3:(h=this.getYBelow(t,s))+s.height>i.innerHeight&&(h=this.getYAbove(t,s),r=3),this.$content.css({transform:"translate("+Math.round(n)+"px, "+Math.round(h)+"px)"}),this.$exit.css({order:String(r),height:t.height+5+"px"})},t.prototype.getXLeft=function(t,i){return t.x},t.prototype.getXRight=function(t,i){return t.x-i.width+t.width},t.prototype.getYAbove=function(t,i){return t.y-i.height-5},t.prototype.getYBelow=function(t,i){return t.y},t.prototype.show=function(e){e&&e.preventDefault(),this.lazyLoad(),this.options.relatedclass&&(this.$related=this.$container.closest("."+this.options.relatedclass),this.$related.addClass(this.options.relatedclass+"--popover-visible")),this.$content.addClass("n2_popover_content--visible").on("mouseleave",this.hide.bind(this)),this.position(),i.addEventListener("scroll",this.positionCallback,{capture:!0,passive:!0})},t.prototype.hide=function(e){this.$related&&(this.$related.removeClass(this.options.relatedclass+"--popover-visible"),delete this.$related),this.$content.off("mouseleave").removeClass("n2_popover_content--visible"),i.removeEventListener("scroll",this.positionCallback,{capture:!0,passive:!0})},t.prototype.setStates=function(t){this.$content.find("a[data-state]").each((function(){var i=$(this),s=i.data("state").match(/^(!)?(.*)$/);"!"===s[1]?i.toggleClass("n2_floating_menu__item--has-state",!t[s[2]]):i.toggleClass("n2_floating_menu__item--has-state",t[s[2]])}))},$.fn.nextendPopover=function(){return this.each((function(){var i=$(this);i.data("popover",new t(i))}))},t})),c.d("NextendHeadingPane",["$"],(function(){var $=c.$;function t(t,i,s,n){this.$node=t.data("pane",this),this.headings=i,this.contents=s,this.tabNames=[],this.headings.each(function(t,i){this.tabNames.push($(i).data("tab"))}.bind(this)),this.identifier=n,this._active=i.index(i.filter(".n2-active"));for(var h=0;h<i.length;h++)i.eq(h).on("click",this.switchToPane.bind(this,h));if(n){var r=localStorage.getItem(this.identifier+"-pane")||-1;if(-1!=r)return void this.switchToPane(r)}this.hideAndShow()}return t.prototype.switchToPane=function(t,e){e&&e.preventDefault(),this.headings.eq(this._active).removeClass("n2-active"),this.headings.eq(t).addClass("n2-active"),this._active=t,this.hideAndShow(),this.store(this._active),this.$node.triggerHandler("changetab")},t.prototype.hideAndShow=function(){$(this.contents[this._active]).css("display","block").trigger("activate");for(var t=0;t<this.contents.length;t++)t!=this._active&&$(this.contents[t]).css("display","none")},t.prototype.store=function(t){this.identifier&&localStorage.setItem(this.identifier+"-pane",t)},t.prototype.showTabs=function(t){for(var i=!1,s=0;s<this.tabNames.length;s++)"-1"!=t.indexOf(this.tabNames[s])?(this.headings.eq(s).css("display",""),$(this.contents[s]).css("display",""),(s==this._active||!1===i)&&(i=s)):(this.headings.eq(s).css("display","none"),$(this.contents[s]).css("display","none"));this.switchToPane(i)},t})),c.d("Window",(function(){var t=!1;var h={getTopOffset:function(){var i=s.getElementById("wpadminbar");return i&&(t=i.getBoundingClientRect().height),h.getTopOffset=function(){return t},t},getBottomOffset:function(){return 0},getHeight:function(){return(i.innerHeight||n.clientHeight)-h.getTopOffset()},getWidth:function(){return i.innerWidth||n.clientWidth}};return h})),c.d("WindowManager",(function(){var t=["main"],i={};return{addWindow:function(i){t.push(i)},removeWindow:function(){t.pop()},getCurrentWindow:function(){return t[t.length-1]},actionPrevent:function(t){this.actionCancelPreventRelease(t),i[t]=requestAnimationFrame(this.actionPreventRelease.bind(this,t))},actionPreventFunction:function(t){return this.actionPrevent.bind(this,t)},actionCancelPreventRelease:function(t){i[t]!==r&&(cancelAnimationFrame(i[t]),delete i[t])},actionPreventRelease:function(t){delete i[t]},isActionPrevented:function(t){return i[t]!==r}}})),c.d("LoadingScreen",["$"],(function(){var t,i,s,$=c.$;c.r("documentReady",(function(){t=$('<div class="n2_loading_screen"><div class="n2_loading_screen__circle"></div></div>').appendTo("body")}));var n={startLoading:function(){i&&a(i),s=$.now(),t.addClass("n2_loading_screen--visible")},stopLoading:function(){var n=$.now()-s;n>=300?t.removeClass("n2_loading_screen--visible"):i=o((function(){t.removeClass("n2_loading_screen--visible")}),300-n)}};return n})),c.d("AjaxHelper",["$"],(function(){var $=c.$;function t(){}t.query={};var s={};return t.addAdminUrl=function(t,i){s[t]=i},t.getAdminUrl=function(t){return s[t]},t.addAjaxArray=function(i){for(var s in i)t.query[s]=i[s]},t.makeAjaxUrl=function(i,s){var n=i.split("?");n.length<2&&(n[1]="");var h=c.N2QueryString.parse(n[1]);if(s!==r)for(var o in s)h[o]=s[o];for(var o in t.query)h[o]=t.query[o];return c.N2QueryString.add_query_arg(h,n[0])},t.ajax=function(s){return c.LoadingScreen.startLoading(),s.data=s.data||{},$.ajax(s).always((function(s,n){c.LoadingScreen.stopLoading();try{if("success"!==n?s=JSON.parse(s.responseText):"string"==typeof s&&(s=JSON.parse(s)),s.redirect!==r)return c.LoadingScreen.startLoading(),void(i.location.href=s.redirect);t.notification(s)}catch(t){var h=/<body[^>]*>((.|[\n\r])*)<\/body>/im.exec(s.responseText);h?c.ModalSafeHTML(h[1]):console.error(s.responseText,s)}}))},t.notification=function(t){if(t.notification!==r&&t.notification)for(var i in t.notification)for(var s=0;s<t.notification[i].length;s++)c.Notification[i](t.notification[i][s][0],t.notification[i][s][1])},t.getJSON=function(t){return c.LoadingScreen.startLoading(),$.getJSON(t).always((function(){c.LoadingScreen.stopLoading()}))},t})),c.d("Esc",["$"],(function(){var $=c.$;function t(){this.FiLo=[],this.doc=$(s),this.isListening=!1}return t.prototype.add=function(t){this.FiLo.push(t),this.isListening||(this.doc.on("keydown.n2-esc",function(e){"Escape"!==e.code&&"Backspace"!==e.code||($(e.target).is("input, textarea")?"Escape"===e.code&&(e.preventDefault(),$(e.target).trigger("blur")):(e.preventDefault(),this.onClose()))}.bind(this)).on("n2Close.n2-esc",function(e){this.onClose()}.bind(this)),this.isListening=!0)},t.prototype.pop=function(){this.FiLo.pop(),0===this.FiLo.length&&(this.doc.off(".n2-esc"),this.isListening=!1)},t.prototype.onClose=function(){this.FiLo[this.FiLo.length-1]()&&this.pop()},new t})),c.d("tooltip",["$"],(function(){var $=c.$;function t(){this.$element=$('<div class="n2_tooltip"></div>'),this.timeout=null,this.$tipFor=null,et(this.ready.bind(this))}function s(){this.isVisible=!1,this.$body=$("body"),this.$element=$('<div class="n2_tooltip"></div>').appendTo(this.$body)}return t.prototype.ready=function(){this.$element.appendTo("body"),this.add($("body"))},t.prototype.add=function(t){t.find("[data-n2tip]").off(".n2hastip").on({"mouseenter.n2hastip":this.onEnter.bind(this)})},t.prototype.addElement=function(t,i,s,n){t.data({n2tip:i,n2tipv:n,n2tiph:s}).off(".n2hastip").on({"mouseenter.n2hastip":this.onEnter.bind(this)})},t.prototype.removeElement=function(t){t.off(".n2hastip")},t.prototype.hide=function(){this.onLeave()},t.prototype.onEnter=function(e){this.lastE=e,this.timeout&&a(this.timeout),this.$tipFor=$(e.currentTarget).on({"mousemove.n2tip":this.onMove.bind(this),"mouseleave.n2tip":this.onLeave.bind(this)}),this.timeout=o(function(){var t=this.$tipFor.data("n2tipv"),i=this.$tipFor.data("n2tiph");t===r&&(t=10),i===r&&(i=10);var s=this.$tipFor.data("n2tip");"function"==typeof s&&(s=s.call()),this.$element.css({margin:t+"px "+i+"px"}).html(s).addClass("n2_tooltip--active"),this.onMove(this.lastE)}.bind(this),500)},t.prototype.onMove=function(e){this.lastE=e,this.$element.css({left:Math.min(e.clientX,i.innerWidth-this.$element.outerWidth()-30)+"px",top:Math.min(e.clientY,i.innerHeight-this.$element.height()-20)+"px"})},t.prototype.onLeave=function(){this.timeout&&a(this.timeout),this.$tipFor&&(this.$tipFor.off(".n2tip"),this.$tipFor=null,this.$element.removeClass("n2_tooltip--active").css("margin",""))},s.prototype.show=function(t,e){this.isVisible?this.$element.html(t):(this.isVisible=!0,this.$body.on("mousemove.tooltipMouse",this.mouseMove.bind(this)),this.mouseMove(e),this.$element.html(t).addClass("n2_tooltip--active"))},s.prototype.mouseMove=function(e){this.$element.css({left:Math.min(e.clientX+10,i.innerWidth-this.$element.outerWidth()-32)+"px",top:Math.min(e.clientY+10,i.innerHeight-this.$element.height()-40)+"px"})},s.prototype.hide=function(){this.$body.off("mousemove.tooltipMouse"),this.$element.removeClass("n2_tooltip--active").html(""),this.isVisible=!1},c._tooltip=new t,et((function(){c._tooltipMouse=new s})),c._tooltip})),c.d("FormTipManager",["$"],(function(){var $=c.$,t=1;function s(i){this.$el=i,this.id=t++,this.isVisible=!1,this.$tip=!1,this.ui="el",this.$el.on({"mouseenter.formTip":this.onMouseEnter.bind(this),"mouseleave.formTip":this.onMouseLeave.bind(this)})}s.prototype.onMouseEnter=function(){this.mouseLeaveTimeout&&a(this.mouseLeaveTimeout),this.mouseEnterTimeout=o(this.onMouseEnterTimeout.bind(this),300)},s.prototype.onMouseEnterTimeout=function(){delete this.mouseEnterTimeout,this.isVisible||(this.ui="el",this.show(),this.isVisible=!0)},s.prototype.onMouseLeave=function(){this.mouseEnterTimeout&&a(this.mouseEnterTimeout),this.mouseLeaveTimeout=o(this.onMouseLeaveTimeout.bind(this),300)},s.prototype.onMouseLeaveTimeout=function(){delete this.mouseLeaveTimeout,this.isVisible&&"el"===this.ui&&this.hide()},s.prototype.show=function(){!1===this.$tip&&this.buildTip(),this.$tip.addClass("n2_form_tip--visible"),$(i).on("scroll.formTip"+this.id,this.positionTip.bind(this)).on("resize.formTip"+this.id,this.positionTip.bind(this)),this.positionTip()},s.prototype.hide=function(){$(i).off(".formTip"+this.id),this.$tip.removeClass("n2_form_tip--visible"),this.isVisible=!1},s.prototype.stopPropagation=function(e){e.stopPropagation()},s.prototype.buildTip=function(){this.$tip=$('<div class="n2_form_tip"></div>').on({mouseenter:this.onTipMouseEnter.bind(this),mouseleave:this.onTipMouseLeave.bind(this),mousedown:this.stopPropagation.bind(this),mouseup:this.stopPropagation.bind(this),click:this.stopPropagation.bind(this)}).appendTo("body"),$('<div class="n2_form_tip__overlay"></div>').appendTo(this.$tip);var t=$('<div class="n2_form_tip__content"></div>').appendTo(this.$tip);this.$el.data("tip-label")&&$('<div class="n2_form_tip__label"></div>').text(this.$el.data("tip-label")).appendTo(t),this.$description=$('<div class="n2_form_tip__description"></div>').html(this.$el.data("tip-description")).appendTo(t),this.$el.data("tip-link")&&$('<a class="n2_form_tip__link" href="'+this.$el.data("tip-link")+'" target="_blank">'+n2_("Open docs")+"</a>").appendTo(t)},s.prototype.setDescription=function(t){this.$description?this.$description.html(t):this.$el.data("tip-description",t)},s.prototype.onTipMouseEnter=function(){this.ui="tip"},s.prototype.onTipMouseLeave=function(){this.hide()},s.prototype.positionTip=function(){this.$tip.css({left:"0",top:"0"});var t,s,n=i.innerWidth,h=(i.innerHeight,this.$el[0].getBoundingClientRect()),r=this.$tip[0].getBoundingClientRect(),o={left:"0",top:"0"};(n2const.rtl.isRtl?h.left>r.width:n-h.left<r.width)?(t="right",o.left=h.left+h.width-r.width+"px"):(t="left",o.left=h.left+"px"),h.top>r.height?(s="bottom",o.top=h.top-r.height+"px"):(s="top",o.top=h.top+h.height+"px"),this.$tip.attr("data-position-horizontal",t).attr("data-position-vertical",s).css(o)};var n={add:function(t){t.find("[data-tip-description]").each((function(){var t=$(this);t.data("formTip")||t.data("formTip",new s(t))}))}};return c.r("windowLoad",(function(){n.add($("body"))})),n})),i.N2Color={hex2rgba:function(t){6===t.length&&(t+="ff");var i=parseInt(t,16);return[i>>24&255,i>>16&255,i>>8&255,(255&i)/255]},hex2rgbaCSS:function(t){return"RGBA("+N2Color.hex2rgba(t).join(",")+")"},hexdec:function(t){return t=(t+"").replace(/[^a-f0-9]/gi,""),parseInt(t,16)},hex2alpha:function(t){return 8!==t.length?1:((255&parseInt(t,16))/255).toFixed(3)},colorizeSVG:function(t,i){var s=t.split("base64,");return 1===s.length?t:(s[1]=c.Base64.encode(c.Base64.decode(s[1]).replace('fill="#FFF"','fill="#'+i.substr(0,6)+'"').replace('opacity="1"','opacity="'+N2Color.hex2alpha(i)+'"')),s.join("base64,"))},colorToSVG:function(t){var i=parseInt(t,16);return[t.substr(0,6),(255&i)/255]}},c.d("N2QueryString",(function(){"use strict";return{parse:function(t){return"string"!=typeof t?{}:(t=t.trim().replace(/^(\?|#)/,""))?t.trim().split("&").reduce((function(t,i){var s=i.replace(/\+/g," ").split("="),n=s[0],h=s[1];return n=decodeURIComponent(n),h=h===r?null:decodeURIComponent(h),t.hasOwnProperty(n)?Array.isArray(t[n])?t[n].push(h):t[n]=[t[n],h]:t[n]=h,t}),{}):{}},stringify:function(t){return t?Object.keys(t).map((function(i){var s=t[i];return Array.isArray(s)?s.map((function(t){return encodeURIComponent(i)+"[]="+encodeURIComponent(t)})).join("&"):encodeURIComponent(i)+"="+encodeURIComponent(s)})).join("&"):""},add_query_arg:function(t,i){var s=i.split("?");s.length<2&&(s[1]="");var n=this.parse(s[1]);for(var h in t)t.hasOwnProperty(h)&&(n[h]=t[h]);return s[0]+"?"+this.stringify(n)}}})),function(t){var i=[],s=[],n=[],h=[],r="0123456789abcdef".split(""),o=[],a=[],c=!1,l=0,u=0,d=[];if(t.Int32Array)s=new Int32Array(16),n=new Int32Array(16),h=new Int32Array(4),o=new Int32Array(4),a=new Int32Array(4),d=new Int32Array(4);else{var f;for(f=0;f<16;f++)s[f]=n[f]=0;for(f=0;f<4;f++)h[f]=o[f]=a[f]=d[f]=0}function _(t){for(var i=16;i--;){var s=i<<2;n[i]=t.charCodeAt(s)+(t.charCodeAt(s+1)<<8)+(t.charCodeAt(s+2)<<16)+(t.charCodeAt(s+3)<<24)}}function v(t,i,s,n,h,r,o){return((i+=t+n+o)<<h|i>>>r)+s<<0}function p(t){m(0,0,0,0,t),a[0]=d[0]+1732584193<<0,a[1]=d[1]-271733879<<0,a[2]=d[2]-1732584194<<0,a[3]=d[3]+271733878<<0}function b(t){m(a[0],a[1],a[2],a[3],t),a[0]=d[0]+a[0]<<0,a[1]=d[1]+a[1]<<0,a[2]=d[2]+a[2]<<0,a[3]=d[3]+a[3]<<0}function m(t,i,s,n,h){var r,o;c?(t=v((s^n)&i^n,t,i,h[0],7,25,-680876936),n=v((i^s)&t^s,n,t,h[1],12,20,-389564586),s=v((t^i)&n^i,s,n,h[2],17,15,606105819),i=v((n^t)&s^t,i,s,h[3],22,10,-1044525330)):(t=((t=h[0]-680876937)<<7|t>>>25)-271733879<<0,n=((n=h[1]-117830708+(2004318071&t^-1732584194))<<12|n>>>20)+t<<0,s=((s=h[2]-1126478375+((-271733879^t)&n^-271733879))<<17|s>>>15)+n<<0,i=((i=h[3]-1316259209+((n^t)&s^t))<<22|i>>>10)+s<<0),t=v((s^n)&i^n,t,i,h[4],7,25,-176418897),n=v((i^s)&t^s,n,t,h[5],12,20,1200080426),s=v((t^i)&n^i,s,n,h[6],17,15,-1473231341),i=v((n^t)&s^t,i,s,h[7],22,10,-45705983),t=v((s^n)&i^n,t,i,h[8],7,25,1770035416),n=v((i^s)&t^s,n,t,h[9],12,20,-1958414417),s=v((t^i)&n^i,s,n,h[10],17,15,-42063),i=v((n^t)&s^t,i,s,h[11],22,10,-1990404162),t=v((s^n)&i^n,t,i,h[12],7,25,1804603682),n=v((i^s)&t^s,n,t,h[13],12,20,-40341101),s=v((t^i)&n^i,s,n,h[14],17,15,-1502002290),i=v((n^t)&s^t,i,s,h[15],22,10,1236535329),t=v((i^s)&n^s,t,i,h[1],5,27,-165796510),n=v((t^i)&s^i,n,t,h[6],9,23,-1069501632),s=v((n^t)&i^t,s,n,h[11],14,18,643717713),i=v((s^n)&t^n,i,s,h[0],20,12,-373897302),t=v((i^s)&n^s,t,i,h[5],5,27,-701558691),n=v((t^i)&s^i,n,t,h[10],9,23,38016083),s=v((n^t)&i^t,s,n,h[15],14,18,-660478335),i=v((s^n)&t^n,i,s,h[4],20,12,-405537848),t=v((i^s)&n^s,t,i,h[9],5,27,568446438),n=v((t^i)&s^i,n,t,h[14],9,23,-1019803690),s=v((n^t)&i^t,s,n,h[3],14,18,-187363961),i=v((s^n)&t^n,i,s,h[8],20,12,1163531501),t=v((i^s)&n^s,t,i,h[13],5,27,-1444681467),n=v((t^i)&s^i,n,t,h[2],9,23,-51403784),s=v((n^t)&i^t,s,n,h[7],14,18,1735328473),i=v((s^n)&t^n,i,s,h[12],20,12,-1926607734),t=v((r=i^s)^n,t,i,h[5],4,28,-378558),n=v(r^t,n,t,h[8],11,21,-2022574463),s=v((o=n^t)^i,s,n,h[11],16,16,1839030562),i=v(o^s,i,s,h[14],23,9,-35309556),t=v((r=i^s)^n,t,i,h[1],4,28,-1530992060),n=v(r^t,n,t,h[4],11,21,1272893353),s=v((o=n^t)^i,s,n,h[7],16,16,-155497632),i=v(o^s,i,s,h[10],23,9,-1094730640),t=v((r=i^s)^n,t,i,h[13],4,28,681279174),n=v(r^t,n,t,h[0],11,21,-358537222),s=v((o=n^t)^i,s,n,h[3],16,16,-722521979),i=v(o^s,i,s,h[6],23,9,76029189),t=v((r=i^s)^n,t,i,h[9],4,28,-640364487),n=v(r^t,n,t,h[12],11,21,-421815835),s=v((o=n^t)^i,s,n,h[15],16,16,530742520),i=v(o^s,i,s,h[2],23,9,-995338651),t=v(s^(i|~n),t,i,h[0],6,26,-198630844),n=v(i^(t|~s),n,t,h[7],10,22,1126891415),s=v(t^(n|~i),s,n,h[14],15,17,-1416354905),i=v(n^(s|~t),i,s,h[5],21,11,-57434055),t=v(s^(i|~n),t,i,h[12],6,26,1700485571),n=v(i^(t|~s),n,t,h[3],10,22,-1894986606),s=v(t^(n|~i),s,n,h[10],15,17,-1051523),i=v(n^(s|~t),i,s,h[1],21,11,-2054922799),t=v(s^(i|~n),t,i,h[8],6,26,1873313359),n=v(i^(t|~s),n,t,h[15],10,22,-30611744),s=v(t^(n|~i),s,n,h[6],15,17,-1560198380),i=v(n^(s|~t),i,s,h[13],21,11,1309151649),t=v(s^(i|~n),t,i,h[4],6,26,-145523070),n=v(i^(t|~s),n,t,h[11],10,22,-1120210379),s=v(t^(n|~i),s,n,h[2],15,17,718787259),i=v(n^(s|~t),i,s,h[9],21,11,-343485551),d[0]=t,d[1]=i,d[2]=s,d[3]=n}h[0]=128,h[1]=32768,h[2]=8388608,h[3]=-2147483648,o[0]=0,o[1]=8,o[2]=16,o[3]=24,t.md5=t.md5||function(t,d,f){!function(t){var i,r;if(c=!1,l=u=(t+="").length,u>63){for(_(t.substring(0,64)),p(n),c=!0,i=128;i<=u;i+=64)_(t.substring(i-64,i)),b(n);t=t.substring(i-64),u=t.length}for(s[0]=0,s[1]=0,s[2]=0,s[3]=0,s[4]=0,s[5]=0,s[6]=0,s[7]=0,s[8]=0,s[9]=0,s[10]=0,s[11]=0,s[12]=0,s[13]=0,s[14]=0,s[15]=0,i=0;i<u;i++)0==(r=i%4)?s[i>>2]=t.charCodeAt(i):s[i>>2]|=t.charCodeAt(i)<<o[r];if(s[i>>2]|=h[i%4],i>55)return c?b(s):(p(s),c=!0),b([0,0,0,0,0,0,0,0,0,0,0,0,0,0,l<<3,0]);s[14]=l<<3,c?b(s):p(s)}(d?t:function(t){for(var i=enc="",s=end=0,n=0,h=t.length;n<h;n++){var r=t.charCodeAt(n);r<128?end++:(enc=r>127&&r<2048?String.fromCharCode(r>>6|192,63&r|128):String.fromCharCode(r>>12|224,r>>6&63|128,63&r|128),end>s&&(i+=t.slice(s,end)),i+=enc,s=end=n+1)}return end>s&&(i+=t.slice(s,h)),i}(t));var v=a[0];return i[1]=r[15&v],i[0]=r[15&(v>>=4)],i[3]=r[15&(v>>=4)],i[2]=r[15&(v>>=4)],i[5]=r[15&(v>>=4)],i[4]=r[15&(v>>=4)],i[7]=r[15&(v>>=4)],i[6]=r[15&(v>>=4)],v=a[1],i[9]=r[15&v],i[8]=r[15&(v>>=4)],i[11]=r[15&(v>>=4)],i[10]=r[15&(v>>=4)],i[13]=r[15&(v>>=4)],i[12]=r[15&(v>>=4)],i[15]=r[15&(v>>=4)],i[14]=r[15&(v>>=4)],v=a[2],i[17]=r[15&v],i[16]=r[15&(v>>=4)],i[19]=r[15&(v>>=4)],i[18]=r[15&(v>>=4)],i[21]=r[15&(v>>=4)],i[20]=r[15&(v>>=4)],i[23]=r[15&(v>>=4)],i[22]=r[15&(v>>=4)],v=a[3],i[25]=r[15&v],i[24]=r[15&(v>>=4)],i[27]=r[15&(v>>=4)],i[26]=r[15&(v>>=4)],i[29]=r[15&(v>>=4)],i[28]=r[15&(v>>=4)],i[31]=r[15&(v>>=4)],i[30]=r[15&(v>>=4)],f?i:i.join("")}}(i),c.d("CssInjection",(function(){function t(t,i){this.baseClassName=t,this.style=u("style"),this.style.setAttribute("data-base-class-name",t),this.style.setAttribute("type","text/css"),this.style.styleSheet?this.style.styleSheet.cssText=i:this.style.appendChild(s.createTextNode(i)),h.appendChild(this.style)}return t.prototype.getBaseClassName=function(){return this.baseClassName},t.prototype.destroy=function(){this.style.parentNode.removeChild(this.style)},t})),c.d("NextendCSS",(function(){function t(){this.style=""}return t.prototype.add=function(t,i){return new c.CssInjection(t,i)},t.prototype.deleteRule=function(t){for(var i=t.toLowerCase(),n=i.replace(".","\\."),h=s.styleSheets.length-1;h>=0;h--)for(var r=this._getRulesArray(h),o=0;r&&o<r.length;o++)if(r[o].selectorText){var a=r[o].selectorText.toLowerCase();a!=i&&a!=n||(s.styleSheets[h].cssRules?s.styleSheets[h].deleteRule(o):s.styleSheets[h].removeRule(o))}return!0},t.prototype._getRulesArray=function(t){var i=null;try{s.styleSheets[t].cssRules?i=s.styleSheets[t].cssRules:s.styleSheets[t].rules&&(i=s.styleSheets[t].rules)}catch(t){}return i},c._css=new t,c._css})),c.d("ImageHelper",(function(){function t(t){c._imageHelper=this,this.parameters=f({siteKeywords:[],imageUrls:[],wordpressUrl:"",placeholderImage:"",placeholderRepeatedImage:"",protocolRelative:1},t)}return t.prototype.protocolRelative=function(t){return this.parameters.protocolRelative?t.replace(/^http(s)?:\/\//,"//"):t},t.prototype.dynamic=function(t){for(var i=this.parameters.imageUrls,s=this.parameters.siteKeywords,n=this.protocolRelative(t),h=0;h<s.length;h++)if(0===n.indexOf(i[h])){t=s[h]+n.slice(i[h].length);break}return t},t.prototype.fixed=function(t){if("string"==typeof t)for(var i=this.parameters.imageUrls,s=this.parameters.siteKeywords,n=0;n<s.length;n++)if(0===t.indexOf(s[n])){t=i[n]+t.slice(s[n].length);break}return t},t.prototype.openLightbox=function(t){c.PlatformImageChooser.single(t)},t.prototype.openMultipleLightbox=function(t){c.PlatformImageChooser.multiple(t)},t.prototype.getPlaceholder=function(){return this.fixed(this.parameters.placeholderImage)},t.prototype.getRepeatedPlaceholder=function(){return this.fixed(this.parameters.placeholderRepeatedImage)},t})),c.d("PlatformImageChooser",["$"],(function(){function t(){}return t.single=function(t){c.WindowManager.addWindow("imagechooser");var i={states:[new wp.media.controller.Library({filterable:"all",priority:20})]};wp.media.controller.EditImage!==r&&i.states.push(new wp.media.controller.EditImage);var s=wp.media(i);s.on("content:render:edit-image",(function(){var t=this.state().get("image"),i=new wp.media.view.EditImage({model:t,controller:this}).render();this.content.set(i),i.loadEditor()}),s),s.on("select",function(){var i=s.state().get("selection").first().toJSON();t(c._imageHelper.dynamic(i.url),{alt:i.alt})}.bind(this)),s.on("close",(function(){c.WindowManager.removeWindow(),o((function(){c.Esc.pop()}),50)})),c.Esc.add((function(){return!1})),s.open()},t.multiple=function(t){c.WindowManager.addWindow("imagechooser");var i={states:[new wp.media.controller.Library({filterable:"all",multiple:"add",priority:20})]};wp.media.controller.EditImage!==r&&i.states.push(new wp.media.controller.EditImage);var s=wp.media(i);s.on("content:render:edit-image",(function(){var t=this.state().get("image"),i=new wp.media.view.EditImage({model:t,controller:this}).render();this.content.set(i),i.loadEditor()}),s),s.on("select",function(){for(var i=s.state().get("selection").toJSON(),n=[],h=0;h<i.length;h++){var r=i[h];n.push({title:r.title,description:r.description,image:c._imageHelper.dynamic(r.url),alt:r.alt})}t(n)}.bind(this)),s.on("close",(function(){c.WindowManager.removeWindow(),o((function(){c.Esc.pop()}),50)})),s.open(),c.Esc.add((function(){return!1}))},t})),c.d("AbstractModal",["$"],(function(){var $=c.$;function t(i,s){t.counter++,this.id=t.counter,this.type=i,this.buttons=[],this.options=f({hasClose:!0,width:!1,destroyOnHide:!1},s),this.$modal=$('<div class="n2 n2_modal" data-modal-type="'+this.type+'"></div>').appendTo("body"),this.options.hasClose&&$('<div class="n2_modal__overlay"></div>').on("click",this.hide.bind(this)).appendTo(this.$modal),this.$modalWindow=$('<div class="n2_modal__window"></div>').appendTo(this.$modal),!1!==this.options.width&&this.$modalWindow.css("width",this.options.width+"px"),this.renderModal()}return t.counter=0,t.prototype.renderModal=function(){},t.prototype.show=function(){s.activeElement&&s.activeElement!==h&&s.activeElement.blur(),c.WindowManager.addWindow("modal"),this.options.hasClose&&c.Esc.add(function(){return this.hide("esc"),!0}.bind(this)),this.$modal.addClass("n2_modal--visible")},t.prototype.hide=function(e){c.WindowManager.removeWindow(),"esc"!==e&&(c.Esc.pop(),e&&e.preventDefault()),this.$modal.removeClass("n2_modal--visible"),this.options.destroyOnHide&&this.$modal.remove(),s.activeElement&&s.activeElement!==h&&s.activeElement.blur()},t.prototype.getBody=function(){return this.$modalBody},t.prototype.addContent=function(t){t.appendTo(this.$modalBody)},t.prototype.clearButtons=function(){for(var t in this.buttons)this.buttons[t].remove();this.buttons=[],this.$modalButtons.html("").attr("data-buttons",0)},t.prototype.addButton=function(t,i){i=i||!1;var s=$('<div class="n2_modal__button"></div>').append(t);return i?s.prependTo(this.$modalButtons):s.appendTo(this.$modalButtons),this.buttons.push(s),this.$modalButtons.attr("data-buttons",this.buttons.length),s},t})),c.d("ModalDeleteConfirm",["$"],(function(){var $=c.$;function t(t,i){var s=new c.ModalSimple("delete",{destroyOnHide:!0});s.addContent(c.UI.modalIcon("ssi_48 ssi_48--delete","red")),s.addContent(c.UI.modalHeading(n2_("Are you sure?"))),s.addContent(c.UI.modalParagraphHTML(n2_sprintf(n2_("You're about to %s. "),t)+n2_sprintf(n2_("The deletion is irreversible, and it's not possible to recover %s."),t)).css("margin-bottom","19px"));var n=c.UI.modalButton(n2_("Cancel"),"grey").on("click",(function(e){e.preventDefault(),s.hide()}));s.addButton(n);var h=c.UI.modalButton(n2_("Delete"),"red").on("click",(function(e){e.preventDefault(),i(),s.hide(e)}));s.addButton(h),s.show()}return t.href=function(e,s,n){e.preventDefault(),t(n,(function(){i.location.href=$(s).attr("href")}))},t})),c.d("ModalIframe",["$","AbstractModal"],(function(){var $=c.$;function t(t,i){c.AbstractModal.prototype.constructor.call(this,t,f({},i))}return t.prototype=Object.create(c.AbstractModal.prototype),t.prototype.constructor=t,t.prototype.renderModal=function(){this.$modal.addClass("n2_modal--iframe"),this.$frame=$('<iframe name="'+this.type+'" src="about:blank" style="width: 100%;height:100%;" allowfullscreen></iframe>').appendTo(this.$modalWindow)},t.prototype.setSrc=function(t){this.$frame.attr("src",t)},t.prototype.hide=function(e){c.AbstractModal.prototype.hide.call(this,e),this.$frame.attr("src","about:blank")},t})),c.d("ModalLightbox",["$","AbstractModal"],(function(){var $=c.$;function t(t,i,s){this.title=t,c.AbstractModal.prototype.constructor.call(this,i,f({},s))}return t.prototype=Object.create(c.AbstractModal.prototype),t.prototype.constructor=t,t.prototype.renderModal=function(){if(this.$modal.addClass("n2_modal--lightbox"),this.$modalTopBar=$('<div class="n2_modal__top_bar"></div>').appendTo(this.$modalWindow),this.$title=$('<div class="n2_modal__top_bar_title"></div>').text(this.title).appendTo(this.$modalTopBar),this.$modalButtons=$('<div class="n2_modal__top_bar_buttons" data-buttons="0"></div>').appendTo(this.$modalTopBar),this.options.hasClose){var t=c.UI.modalButton(n2_("Close"),"grey-dark").on("click",this.hide.bind(this));this.addButton(t)}this.$modalBody=$('<div class="n2_modal__body"></div>').appendTo(this.$modalWindow)},t.prototype.setTitle=function(t){this.title=t,this.$title.text(t)},t})),c.d("ModalSimple",["$","AbstractModal"],(function(){var $=c.$;function t(t,i){c.AbstractModal.prototype.constructor.call(this,t,f({width:500},i))}return t.prototype=Object.create(c.AbstractModal.prototype),t.prototype.constructor=t,t.prototype.renderModal=function(){if(this.$modal.addClass("n2_modal--simple"),this.$modalBodyOuter=$('<div class="n2_modal__body_outer"></div>').appendTo(this.$modalWindow),this.options.hasClose){var t=$('<div class="n2_modal__close_wrap"></div>').appendTo(this.$modalBodyOuter);$('<div class="n2_modal__close"><i class="ssi_16 ssi_16--remove"></i></div>').on("click",this.hide.bind(this)).appendTo(t)}this.$modalBody=$('<div class="n2_modal__body"></div>').appendTo(this.$modalBodyOuter),this.$modalButtons=$('<div class="n2_modal__buttons" data-buttons="0"></div>').appendTo(this.$modalWindow)},t})),c.d("PreviewPopup",["$"],(function(){return function(t,s){var n=["height="+screen.availHeight,"width="+screen.availWidth,"toolbar=yes,scrollbars=yes,resizable=yes"].join(","),h=i.open(t,s,n);return h.moveTo(0,0),h.resizeTo(screen.availWidth,screen.availHeight),h}})),c.d("ModalGeneratorRecordViewer",["$"],(function(){var $=c.$;return function(t,i){this.createRecordModal=new c.ModalSimple("generator-record-viewer",{width:1e3,destroyOnHide:!0}),this.createRecordModal.addContent(c.UI.modalIcon("ssi_48 ssi_48--data","blue")),this.createRecordModal.addContent(c.UI.modalHeading(n2_("Records"))),function(t,i,s){var n=$('<div class="n2_generator_records_table"></div>').css("grid-template-columns","40px repeat("+(i.length-1)+", auto)").appendTo(t),h=0;for($('<div class="n2_generator_records_table__heading" data-col="1"></div>').text(i[h]).appendTo(n),h=1;h<i.length;h++)$('<div class="n2_generator_records_table__heading"></div>').text(i[h]).appendTo(n);for(h=0;h<s.length;h++){var r=0;for($('<div class="n2_generator_records_table__heading" data-col="1"></div>').text(s[h][r]).appendTo(n),r=1;r<s[h].length;r++)$('<div class="n2_generator_records_table__cell"></div>').html(s[h][r]).appendTo(n)}}(this.createRecordModal.getBody(),t,i),this.createRecordModal.show()}})),c.d("ModalHotkey",["$"],(function(){var $=c.$;function t(){var t=this.getHotkeys();this.modal=new c.ModalSimple("hotkey",{width:800}),this.modal.addContent(c.UI.modalIcon("ssi_48 ssi_48--keyboard","blue")),this.modal.addContent(c.UI.modalHeading(n2_("Keyboard shortcuts")));var i=$('<div class="n2_modal__hotkey"></div>');this.modal.addContent(i);for(var s=0;s<t.length;s++)for(var n=$('<div class="n2_modal__hotkey_column"></div>').appendTo(i),h=0;h<t[s].length;h++){var r=t[s][h][0],o=t[s][h][1],a=$('<div class="n2_modal__hotkey_group"></div>').appendTo(n);$('<div class="n2_modal__hotkey_title">'+r+"</div>").appendTo(a);for(var l=0;l<o.length;l++){var u=$('<div class="n2_modal__hotkey_row"></div>').appendTo(a),d=o[l][0];$('<div class="n2_modal__hotkey_text">'+d+"</div>").appendTo(u);for(var f=$('<div class="n2_modal__hotkey_keys"></div>').appendTo(u),_=o[l][1],v=0;v<_.length;v++)$('<div class="n2_modal__hotkey_key">'+_[v]+"</div>").appendTo(f)}}var p=c.UI.modalButton(n2_("Got it"),"blue");this.modal.addButton(p),p.on("click",function(e){this.modal.hide()}.bind(this))}t.prototype.getHotkeys=function(){var t="ctrl",i=[],s=[];this.isMac()&&(t="cmd");var n=[n2_("General"),[[n2_("Content tab"),["q"]],[n2_("Style tab"),["w"]]]];i.push(n),n[1].push([n2_("Add Layer"),["a"]],[n2_("Layer List"),["s"]]);var h=[n2_("View"),[[n2_("Preview"),[t,"1"]],[n2_("Desktop"),[t,"2"]],[n2_("Tablet"),[t,"3"]],[n2_("Mobile"),[t,"4"]]]];i.push(h);var r=[n2_("Adjust"),[[n2_("Move (Absolute)"),[n2_("Arrows")]],[n2_("Align (Absolute)"),[n2_("Numeric keys")]]]];i.push(r);var o=[n2_("Action"),[[n2_("Delete"),["del"]],[n2_("Duplicate"),[t,"d"]],[n2_("Copy"),[t,"c"]],[n2_("Paste"),[t,"v"]],[n2_("Undo"),[t,"z"]],[n2_("Redo"),[t,"shift","z"]],[n2_("Save"),[t,"s"]]]];s.push(o);var a=[n2_("Clear device specific settings"),[[n2_("Current layer, current device"),["shift","e"]],[n2_("Current layer, all devices"),["shift","alt","e"]],[n2_("All layers, current device"),["shift","r"]],[n2_("All layers, all devices"),["shift","alt","r"]]]];return s.push(a),[i,s]},t.prototype.isMac=function(){return navigator.platform.toUpperCase().indexOf("MAC")>=0},t.prototype.show=function(){this.modal.show()};var i=!1;function s(){}return s.show=function(){i||(i=new t),i.show()},s})),c.d("ModalSafeHTML",["$"],(function(){var $=c.$;return function(t){var s=new c.ModalSimple("safe-html",{destroyOnHide:!1,width:440});s.addContent(c.UI.modalHeading(n2_("Unexpected response")));var n=$(t.replace(/document\.write/g,"n2Write"));i.n2Write=function(t){s.addContent($("<span></span>").html(t))},n.each((function(t,i){s.addContent($(i))})),delete i.n2Write,s.show()}})),c.d("ModalUrlTabPro",["$"],(function(){var $=c.$;function t(t,i){$(".n2_free_need_more").eq(0).clone().appendTo(t)}return t.prototype.show=function(t){},t})),c.d("ModalUrlTabUrl",["$"],(function(){var $=c.$;function t(t,i){this.modalManager=i,this.cache={};var s=c.UI.modalFormRow(!0).appendTo(t);this.$url=c.UI.modalFieldText(s,"url",n2_("URL"),"");var n=c.UI.modalFormRow(!0).appendTo(t);this.$searchKeyword=c.UI.modalFieldText(n,"search-keyword",n2_("Search keyword"),"").on("keyup",this.search.bind(this)).trigger("focus");var h=c.UI.modalFormRow(!0).appendTo(t);this.$postSelector=c.UI.modalSelectList(h,"url-post",n2_("Posts"),function(t){this.$url.val(t.link)}.bind(this),{mode:"insert"})}return t.prototype.show=function(t){this.$url.val(t),this.$searchKeyword.val(""),this.search()},t.prototype.search=function(){this.searchString=this.$searchKeyword.val(),this.getAjaxSearchResult(this.searchString).done(function(t){if(this.$searchKeyword.val()===this.searchString){this.$postSelector.removeOptions();for(var i=t.data,s=0;s<i.length;s++)this.$postSelector.addOption(i[s].title,i[s].info,i[s])}}.bind(this))},t.prototype.getAjaxSearchResult=function(t){return this.cache[t]===r&&(this.cache[t]=$.ajax({type:"POST",url:c.AjaxHelper.makeAjaxUrl(this.modalManager.ajaxUrl),data:{keyword:t},dataType:"json"})),this.cache[t]},t.prototype.getResult=function(){return this.$url.val()},t})),c.d("ModalUrl",["$"],(function(){function t(t){this.ajaxUrl=t,this.activeTab="",this.modal=new c.ModalSimple("url-modal"),this.modal.addContent(c.UI.modalIcon("ssi_48 ssi_48--link","green").css("margin-bottom","20px")),this.uiTabs=c.UI.modalTabs(this.modal.getBody(),"url-tabs",{url:n2_("URL"),lightbox:n2_("Lightbox"),action:n2_("Action")},this.onTabActiveChange.bind(this)),this.tabs={},this.tabs.url=new c.ModalUrlTabUrl(this.uiTabs.tabs.url.$content,this),this.tabs.lightbox=new c.ModalUrlTabPro(this.uiTabs.tabs.lightbox.$content),this.tabs.action=new c.ModalUrlTabPro(this.uiTabs.tabs.action.$content);var i=c.UI.modalButton(n2_("Insert"),"green");this.modal.addButton(i),i.on("click",function(e){e.preventDefault(),this.setCallback(this.tabs[this.activeTab].getResult()),this.modal.hide()}.bind(this))}t.prototype.onTabActiveChange=function(t){this.activeTab=t,this.tabs[t].show(this.originalValue)},t.prototype.show=function(t,i){this.originalValue=t,this.setCallback=i,t.match(/lightbox\[(.+)\]/)?this.uiTabs.setActiveTab("lightbox"):t.match(/ScrollTo|ScrollToAlias|SlideEvent|ToSlide|ToSlideID|\[(.+)\]/)||t.match(/PreviousSlide|NextSlide|\[\]/)?this.uiTabs.setActiveTab("action"):this.uiTabs.setActiveTab("url"),this.modal.show()};var i=!1;function s(){}return s.show=function(s,n,h){i||(i=new t(n)),i.show(s,h)},s})),c.d("UI",["$"],(function(){var $=c.$,t={modalButton:function(t,i,s){return $('<a class="n2_button n2_button--'+(s=s||"big")+" n2_button--"+i+'" href="#"><span class="n2_button__label">'+t+"</span></a>")},modalIcon:function(t,i){return $('<div class="n2_modal__icon n2_modal__icon--'+i+'"><i class="'+t+'"></i></div>')},modalHeading:function(t){return $('<div class="n2_modal__heading"></div>').text(t)},modalSubHeading:function(t){return $('<div class="n2_modal__subheading"></div>').text(t)},modalParagraph:function(t){return $('<div class="n2_modal__paragraph"></div>').text(t)},modalParagraphHTML:function(t){return $('<div class="n2_modal__paragraph"></div>').html(t)},modalInput:function(t,i,s,n){return $('<input class="n2_modal__input" type="'+i+'" id="'+t+'" name="'+t+'" value="'+s+'" '+(n!==r?'placeholder="'+n+'"':"")+">")},modalFormTable:function(t){var i=$('<div class="n2_form__table"></div>');return $('<div class="n2_form__table_label"></div>').append($('<div class="n2_form__table_label_title"></div>').text(t)).appendTo(i),{$table:i,$content:$('<div class="n2_form__table_preview"></div>').appendTo(i)}},modalFormContainer:function(t,i){return $('<div class="n2_modal__form_container" data-field="'+i+'"></div>').appendTo(t)},modalHiddenContainer:function(t){return $('<div class="n2_modal__container_hidden"></div>').appendTo(t)},modalFormRow:function(t){return $('<div class="n2_modal__form_row"></div>').toggleClass("n2_modal__form_row--fullwidth",!0===t)},modalFormRowLarge:function(t){return $('<div class="n2_modal__form_row n2_modal__form_row--large"></div>').toggleClass("n2_modal__form_row--fullwidth",!0===t)},modalFieldWrapper:function(t,i,s){var n=$('<div class="n2_field" data-field="'+i+'"></div>').appendTo(t);return!1===s?n.addClass("n2_field--label-none"):""===s&&n.addClass("n2_field--label-placeholder"),s&&$('<div class="n2_field__label"><label for="modal-field-'+i+'">'+s+"</label></div>").appendTo(n),{$field:n,$element:$('<div class="n2_field__element"></div>').appendTo(n)}},modalFieldText:function(i,s,n,h){var r=t.modalFieldWrapper(i,s,n),o=$('<div class="n2_field_text"></div>').appendTo(r.$element),a=$('<input type="text" id="modal-field-'+s+'" name="'+s+'" autocomplete="off">').val(h).appendTo(o);return new c.FormElementText("modal-field-"+s),a},modalOnOff:function(i,s,n,h,r){var o=t.modalFieldWrapper(i,s,n),a=$('<div class="n2_field_onoff"><div class="n2_field_onoff__slider"><div class="n2_field_onoff__slider_bullet"></div></div><div class="n2_field_onoff__labels"><div class="n2_field_onoff__label n2_field_onoff__label_off">'+n2_("Off")+'</div><div class="n2_field_onoff__label n2_field_onoff__label_on">'+n2_("On")+"</div></div></div>").appendTo(o.$element),l=$('<input id="modal-field-'+s+'" name="'+s+'" value="'+h+'" type="hidden" autocomplete="off">').val(h).appendTo(a);return new c.FormElementOnoff("modal-field-"+s,r),l},modalSelect:function(i,s,n,h,r,o){o=f({isMultiple:!1},o);var a=t.modalFieldWrapper(i,s,n),l=$('<input id="modal-field-'+s+'" name="'+s+'" value="'+r+'" type="hidden" autocomplete="off">').appendTo(a.$element),u=$('<select id="modal-field-'+s+'_select" name="select'+s+'" autocomplete="off"></select>');for(var d in o.isMultiple&&u.attr("multiple","multiple").attr("size","8"),h)u.append('<option value="'+d+'">'+h[d]+"</option>");return $('<div class="n2_field_select"></div>').append(u).appendTo(a.$element),new c.FormElementList("modal-field-"+s).insideChange(r),l},modalNumber:function(i,s,n,h,r){var o=100;switch((r=f({unit:!1,min:-Number.MAX_VALUE,max:Number.MAX_VALUE,wide:4,sublabel:""},r)).wide){case 2:o=20;break;case 3:o=26;break;case 4:o=32;break;case 5:o=44;break;case 6:o=60}var a=t.modalFieldWrapper(i,s,n),l=$('<div class="n2_field_text n2_field_number"></div>').appendTo(a.$element);""!==r.sublabel&&$('<div class="n2_field_number__unit"></div>').text(r.sublabel).appendTo(l);var u=$('<input id="modal-field-'+s+'" name="'+s+'" value="'+h+'" type="text" autocomplete="off">').css("width",o+"px").appendTo(l);return r.unit&&$('<div class="n2_field_number__unit"></div>').text(r.unit).appendTo(l),new c.FormElementNumber("modal-field-"+s,r.min,r.max),u},modalTextarea:function(i,s,n){var h=t.modalFieldWrapper(i,s,n),r=$('<div class="n2_field_textarea"></div>').appendTo(h.$element);return $('<textarea name="'+s+'" autocomplete="off"></textarea>').appendTo(r)},modalTable:function(i,s,n,h){var r=t.modalFieldWrapper(i,s,n);r.$field.addClass("n2_field_table");for(var o=$('<div class="n2_field_table__content"></div>').css("grid-template-columns","repeat("+h[0].length+", auto)").appendTo(r.$element),a=0;a<h.length;a++)for(var c=0;c<h[a].length;c++)$('<div class="n2_field_table__cell">'+h[a][c]+"</div>").appendTo(o);return o},modalSelectList:function(i,s,n,h,r){r=f({mode:"select"},r);var o=t.modalFieldWrapper(i,s,n),a=$('<div class="n2_field_select_list"></div>').appendTo(o.$element);return{getField:function(){return o.$field},addOption:function(t,i,s){$('<div class="n2_field_select_list__option"></div>').on("click",function(t,e){"select"===r.mode&&(o.$field.find(".n2_field_select_list__option--selected").removeClass("n2_field_select_list__option--selected"),$(e.currentTarget).addClass("n2_field_select_list__option--selected")),h(t)}.bind(this,s)).append($('<div class="n2_field_select_list__option_primary"></div>').text(t)).append($('<div class="n2_field_select_list__option_secondary"></div>').text(i)).appendTo(a)},removeOptions:function(){a.html("")}}},modalGeneratorVariableList:function(t,i,s,n,h,r){t.addContent(this.modalHeading(n2_(s)));var o=c.UI.modalFormRow(!0);t.addContent(o);var a,l=c.UI.modalFieldWrapper(o,n,h),u=$('<div class="n2_generator_variables"></div>').appendTo(l.$element),d=[];if(Number.isInteger(i))for(var f=1;f<=i;f++)d[f]=f;else d=i;for(var _ in d){var v=$('<div class="n2_generator_variables__variable"></div>');v.text(_).on("click",function(t){a.removeClass("n2_generator_variables__variable--selected"),this.addClass("n2_generator_variables__variable--selected"),r(t)}.bind(v,_)).appendTo(u)}(a=u.find(".n2_generator_variables__variable")).eq(0).addClass("n2_generator_variables__variable--selected")},modalTabs:function(t,i,s,n){var h=$('<div class="n2_modal_tab"></div>').appendTo(t),r=$('<div class="n2_modal_tab__tabs"></div>').appendTo(h),o=$('<div class="n2_modal_tab__tabs_contents"></div>').appendTo(h),a=!1,c={};function l(t){a&&a!==t&&(c[a].$button.removeClass("n2_modal_tab__tabs_button--active"),c[a].$content.removeClass("n2_modal_tab__tabs_content--active")),c[a=t].$button.addClass("n2_modal_tab__tabs_button--active"),c[a].$content.addClass("n2_modal_tab__tabs_content--active"),n(a)}for(var u in s)c[u]={$button:$('<div class="n2_modal_tab__tabs_button" data-tab="'+u+'">'+s[u]+"</div>").on("click",l.bind(this,u)).appendTo(r),$content:$('<div class="n2_modal_tab__tabs_content" data-tab="'+u+'"></div>').appendTo(o)};return{tabs:c,setActiveTab:l}},modalFieldSelectIcon:function(i,s,n,h,r,o){var a=t.modalFieldWrapper(i,s,n),l=$('<div class="n2_field_select_icon"></div>').appendTo(a.$element);for(var u in h)$('<div class="n2_field_select_icon__option"></div>').attr("data-value",u).toggleClass("n2_field_select_icon__option--selected",u===r).append('<div class="n2_field_select_icon__option_icon"><i class="'+h[u].icon+'"></i></div>').append('<div class="n2_field_select_icon__option_label">'+h[u].label+"</div>").append('<div class="n2_field_select_icon__selected_marker"><i class="ssi_16 ssi_16--check"></i></div>').appendTo(l);var d=$('<input id="modal-field-'+s+'" name="'+s+'" value="'+r+'" type="hidden">').appendTo(a.$element);return new c.FormElementSelectIcon("modal-field-"+s,o),d},modalNotice:function(i,s,n){var h=t.modalFieldWrapper(i,"notice",n2_("Notice"));return $('<div class="n2_field_message n2_field_message--'+n+'"></div>').html(n2_(s)).appendTo(h.$element)}};return t})),c.d("AutocompleteSimple",["$"],(function(){var $=c.$;return function(t,i){var s=$("#"+t);new c.UIAutocomplete(s,{positionTo:".n2_autocomplete_position_to",y:-2,appendTo:function(){return s.closest(".n2_container_scrollable, body")},source:function(){return i},select:function(t,i){$(this).val(i.value).trigger("change")}})}}));const dt={DecToHex:function(t){var i=Math.round(t).toString(16);return 1===i.length?"0"+i:i},HexToDec:function(t){return parseInt(t,16)},HSVtoRGB:function(t,i,s){var n,h,r,o,a,c,l,u;switch(c=s*(1-i),l=s*(1-(a=6*t-(o=Math.floor(6*t)))*i),u=s*(1-(1-a)*i),o%6){case 0:n=s,h=u,r=c;break;case 1:n=l,h=s,r=c;break;case 2:n=c,h=s,r=u;break;case 3:n=c,h=l,r=s;break;case 4:n=u,h=c,r=s;break;case 5:n=s,h=c,r=l}return[Math.round(255*n),Math.round(255*h),Math.round(255*r)]},HSVtoHex6:function(t,i,s){var n=dt.HSVtoRGB(t,i,s);return dt.DecToHex(n[0])+dt.DecToHex(n[1])+dt.DecToHex(n[2])},RGBtoHSV:function(t,i,s){var n=Math.max(t,i,s),h=n-Math.min(t,i,s),r=h&&(n==t?(i-s)/h:n==i?2+(s-t)/h:4+(t-i)/h);return[60*(r<0?r+6:r)/360,n&&h/n,n/255]},Hex6toHSV:function(t){return dt.RGBtoHSV(dt.HexToDec(t.substr(0,2)),dt.HexToDec(t.substr(2,2)),dt.HexToDec(t.substr(4,2)))},Hex8toRGBA:function(t){var i=1;return 8===t.length?i=dt.HexToDec(t.substr(6,2))/255:3===t.length&&(t=t[0]+t[0]+t[1]+t[1]+t[2]+t[2]),[dt.HexToDec(t.substr(0,2)),dt.HexToDec(t.substr(2,2)),dt.HexToDec(t.substr(4,2)),i]},Hex8toCssRGBA:function(t){for(var i=dt.Hex8toRGBA(t),s=0;s<i.length;s++)isNaN(i[s])&&(i[s]=0,i[3]=0);return"RGBA("+i.join(",")+")"}};c.d("ColorPicker",(function(){class t{constructor(t){this._t=t,this.xt=["000000","81898d","ced3d5","ffffff","55aa39","5cba3c","27ae60","2ecc71","357cbd","4594e1","01add3","00c1c4","bb4a28","d85935","e79d19","ecc31f","8757b2","9e74c2","e264af","ec87c0","000000CC","00000080","FFFFFFCC","FFFFFF80"],this.Mt=[];var i=localStorage.getItem("n2-colors");i&&(this.Mt=JSON.parse(i),this.Mt.splice(6))}initUI(t){var i=d();L(i,"n2_color_picker__palette"),t.appendChild(i);for(var s=["000000","81898d","ced3d5","ffffff","55aa39","5cba3c","27ae60","2ecc71","357cbd","4594e1","01add3","00c1c4","bb4a28","d85935","e79d19","ecc31f","8757b2","9e74c2","e264af","ec87c0","000000CC","00000080","FFFFFFCC","FFFFFF80"],n=0;n<s.length;n++){var h=d();L(h,"n2_color_picker__palette_item"),L(h,"n2_checker_box"),8===s[n].length&&L(h,"n2_color_picker__palette_item_alpha"),I(h,"--palette-item-color",dt.Hex8toCssRGBA(s[n])),i.appendChild(h);var r=d();L(r,"n2_color_picker__palette_item_color"),h.appendChild(r),G(h,"click",this._t.setColor.bind(this._t,s[n]))}this.Ct(t)}Ct(t){this.It=[];var i=d();L(i,"n2_color_picker__palette_history"),t.appendChild(i);for(var s=0;s<6;s++){var n=d();L(n,"n2_color_picker__palette_item"),L(n,"n2_checker_box"),S(n,"color","ffffffff"),I(n,"--palette-item-color","#fff"),i.appendChild(n);var h=d();L(h,"n2_color_picker__palette_item_color"),n.appendChild(h),this.It.push(n),G(n,"click",function(e){this._t.setColor(x(e.currentTarget,"color"))}.bind(this))}this.Nt()}Nt(){for(var t=0;t<this.Mt.length;t++)S(this.It[t],"color",this.Mt[t]),I(this.It[t],"--palette-item-color",dt.Hex8toCssRGBA(this.Mt[t]))}addHistoryColor(t){if(-1===this.xt.indexOf(t)&&-1===this.Mt.indexOf(t)){this.Mt.unshift(t),this.Mt.splice(6);try{localStorage.setItem("n2-colors",JSON.stringify(this.Mt))}catch(t){}this.Nt()}}}class n{constructor(t){this._t=t,this.Ot=[]}initUI(t){this.$t=d(),L(this.$t,"n2_color_picker__picker_canvas"),t.appendChild(this.$t),this.jt=d(),L(this.jt,"n2_color_picker__picker_canvas_dot"),this.$t.appendChild(this.jt),this.$t.addEventListener("pointerdown",this.Pt.bind(this))}Pt(e){this.Ot.push(V(this._t.area,"pointermove",this.Tt.bind(this))),this.Ot.push(V(this._t.area,"pointerup",this.Ft.bind(this))),this.Ot.push(V(this._t.area,"pointerleave",this.At.bind(this))),this.zt(e)}Tt(e){this.zt(e)}Ft(e){this.zt(e),this.Lt()}At(e){this.Lt()}Lt(){H(this.Ot)}zt(e){var t=this.$t.getBoundingClientRect(),i=Math.max(0,Math.min(t.width,e.clientX-t.left)),s=Math.max(0,Math.min(t.height,e.clientY-t.top));this.jt.style.setProperty("transform","translate("+i+"px, "+s+"px)"),this._t.setSaturationValue(i/t.width,1-s/t.height)}updateHue(t){this.$t.style.setProperty("background-color","#"+dt.HSVtoHex6(t,1,1))}sync(){var t=this._t.currentSaturation,i=this._t.currentValue,s=this.$t.getBoundingClientRect();this.jt.style.setProperty("transform","translate("+s.width*t+"px, "+s.height*(1-i)+"px)")}}class h{constructor(t){this._t=t,this.Ot=[]}initUI(t){this.Et=d(),L(this.Et,"n2_color_picker__picker_hue"),t.appendChild(this.Et),this.jt=d(),L(this.jt,"n2_color_picker__picker_hue_dot"),this.Et.appendChild(this.jt),this.Et.addEventListener("pointerdown",this.Pt.bind(this))}Pt(e){this.Ot.push(V(this._t.area,"pointermove",this.Tt.bind(this))),this.Ot.push(V(this._t.area,"pointerup",this.Ft.bind(this))),this.Ot.push(V(this._t.area,"pointerleave",this.At.bind(this))),this.zt(e)}Tt(e){this.zt(e)}Ft(e){this.zt(e),this.Lt()}At(e){this.Lt()}Lt(){H(this.Ot)}zt(e){var t=this.Et.getBoundingClientRect(),i=Math.max(0,Math.min(t.height,e.clientY-t.top));this.jt.style.setProperty("transform","translateY("+i+"px)"),this._t.setHue(i/t.height)}sync(){var t=this._t.currentHue,i=this.Et.getBoundingClientRect();this.jt.style.setProperty("transform","translateY("+i.height*t+"px)")}}class r{constructor(t){this._t=t,this.Ot=[]}initUI(t){var i=d();L(i,"n2_color_picker__picker_opacity"),L(i,"n2_checker_box"),t.appendChild(i),this.Rt=d(),L(this.Rt,"n2_color_picker__picker_opacity_inner"),i.appendChild(this.Rt),this.jt=d(),L(this.jt,"n2_color_picker__picker_opacity_dot"),this.Rt.appendChild(this.jt),this.Rt.addEventListener("pointerdown",this.Pt.bind(this))}Pt(e){this.Ot.push(V(this._t.area,"pointermove",this.Tt.bind(this))),this.Ot.push(V(this._t.area,"pointerup",this.Ft.bind(this))),this.Ot.push(V(this._t.area,"pointerleave",this.At.bind(this))),this.zt(e)}Tt(e){this.zt(e)}Ft(e){this.zt(e),this.Lt()}At(e){this.Lt()}Lt(){H(this.Ot)}zt(e){var t=this.Rt.getBoundingClientRect(),i=Math.max(0,Math.min(t.height,e.clientY-t.top));this.jt.style.setProperty("transform","translateY("+i+"px)"),this._t.setOpacity(1-i/t.height)}update(){var t=this._t.rgb.join(",");this.Rt.style.setProperty("background-image","linear-gradient(180deg, RGBA("+t+", 1) 0%, RGBA("+t+", 0) 100%)")}sync(){var t=this._t.currentOpacity,i=this.Rt.getBoundingClientRect();this.jt.style.setProperty("transform","translateY("+i.height*(1-t)+"px)")}}return new class{constructor(){this.Dt=0,this.Ut=0,this.Bt=0,this.Wt=0,this.Ot=[],this.Ht=new t(this),this.Vt=new n(this),this.Gt=new h(this),this.Jt=new r(this)}Yt(){this.qt||(this.qt=d(),L(this.qt,"n2_color_picker"),this.Ht.initUI(this.qt),this.Vt.initUI(this.qt),this.Gt.initUI(this.qt),this.Jt.initUI(this.qt),s.body.appendChild(this.qt))}get area(){return this.qt}get rgb(){return dt.HSVtoRGB(this.Dt,this.Ut,this.Bt)}get rgba(){var t=dt.HSVtoRGB(this.Dt,this.Ut,this.Bt);return t.push(this.opacity),t}get hex(){return dt.HSVtoHex6(this.Dt,this.Ut,this.Bt)}get hexa(){return dt.HSVtoHex6(this.Dt,this.Ut,this.Bt)+dt.DecToHex(Math.round(255*this.opacity))}get opacity(){return this.Wt}get cssRGB(){return"#"+this.hex}get cssRGBA(){return"RGBA("+this.rgba.join(",")+")"}get currentHue(){return this.Dt}get currentSaturation(){return this.Ut}get currentValue(){return this.Bt}get currentOpacity(){return this.Wt}updateUI(){this.Vt.updateHue(this.Dt),this.Jt.update()}setHue(t){this.Dt=t,this.updateUI(),this.updateTargetValue()}setSaturationValue(t,i){this.Ut=t,this.Bt=i,this.updateUI(),this.updateTargetValue()}setOpacity(t){this.Wt=t,this.updateTargetValue()}show(t,i,n,h,r){if(this.l=t,this.Xt=i,this.Zt=!1,(6!==i.length&&8!==i.length||i.length>0&&"{"===i.charAt(0))&&(i="ffffff"),this.Qt=n,this.Kt=h,this.ti=r||function(){},this.Yt(),this.Qt?this.ii={width:390,height:184}:this.ii={width:360,height:156},this.si(),I(this.qt,"display",""),this.qt.classList.toggle("n2_color_picker--has-opacity",this.Qt),8===i.length?(this.Wt=dt.HexToDec(i.substr(6,2))/255,i=i.substr(0,6)):this.Wt=1,6===i.length){var o=dt.Hex6toHSV(i);this.Dt=o[0],this.Ut=o[1],this.Bt=o[2]}this.Gt.sync(),this.Vt.sync(),this.Jt.sync(),this.updateUI(),this.Ot.push(V(s,"scroll",this.detach.bind(this))),this.Ot.push(V(s.body,"pointerdown",function(e){this.qt===e.target||this.qt.contains(e.target)||this.detach()}.bind(this),{capture:!0}))}detach(){var t=this.Qt?this.hexa:this.hex;this.Zt&&this.Xt!==t&&(this.Kt(t),this.Ht.addHistoryColor(t)),I(this.qt,"display","none"),H(this.Ot)}si(){var t=this.l.getBoundingClientRect(),s=t.top+t.height;s>i.innerHeight-this.ii.height-5&&(s=t.top-this.ii.height-5),N(this.qt,{left:Math.min(t.left,i.innerWidth-this.ii.width-5)+"px",top:s+"px"})}updateTargetValue(){this.Zt=!0,this.ti(this.Qt?this.hexa:this.hex)}setColor(t){var i=t;if(8===t.length?(this.Wt=dt.HexToDec(t.substr(6,2))/255,i=i.substr(0,6)):this.Wt=1,6===i.length){var s=dt.Hex6toHSV(i);this.Dt=s[0],this.Ut=s[1],this.Bt=s[2]}this.Gt.sync(),this.Vt.sync(),this.Jt.sync(),this.updateUI(),this.updateTargetValue(),this.detach()}}})),c.d("Notification",["$"],(function(){var $=c.$;function t(){this.deferred=$.Deferred(),c.r("documentReady",this.ready.bind(this))}return t.prototype.ready=function(){this.$container=$('<div class="n2_notification_center n2_admin_ui"></div>').appendTo("body"),this.deferred.resolve()},t.prototype.error=function(t,i){i=f({wide:!1,heading:n2_("Oops, Something Went Wrong")},i);var s=new c.ModalSimple("notification error",{width:i.wide?1e3:440});s.addContent(c.UI.modalIcon("ssi_48 ssi_48--error","red")),s.addContent(c.UI.modalHeading(i.heading)),s.addContent(c.UI.modalParagraphHTML(t));var n=c.UI.modalButton(n2_("Got it"),"red");s.addButton(n),n.on("click",(function(e){e.preventDefault(),s.hide(e)})),s.show()},t.prototype.success=function(t){this.message("success",n2_("Success"),t,{timeout:3})},t.prototype.notice=function(t){this.message("notice",n2_("Notice"),t)},t.prototype.message=function(t,i,s,n){n=f({timeout:0},n);var h=$('<div class="n2_notification_center__message n2_notification_center__message--'+t+'"></div>').scrollTop(0).prependTo(this.$container);$('<div class="n2_notification_center__message_icon"><i class="ssi_24"></i></div>').appendTo(h);var r=$('<div class="n2_notification_center__message_content"></div>').appendTo(h);$('<div class="n2_notification_center__message_content_label">'+i+"</div>").appendTo(r),$('<div class="n2_notification_center__message_content_description">'+s+"</div>").appendTo(r),n.timeout?(h.one("mouseenter",(function(){h.remove()})),o((function(){h.remove()}),1e3*n.timeout)):$('<div class="n2_notification_center__message_action"></div>').text(n2_("Got it")).on("click",(function(){h.remove()})).appendTo(h),o(function(t){t.addClass("n2_notification_center__message--animate")}.bind(this,h),100)},new t})),c.d("Form",["$"],(function(){var $=c.$;function t(){this.skipChangeConfirm=!1,this.onChangeCallback=this.onChange.bind(this)}return t.prototype.setID=function(t){this.$form=$(t).data("form",this)},t.prototype.onReady=function(){this.window=$("#n2-admin")[0],this.initButtons(),this.resetChangeTracker(),this.registerBeforeUnload(),s.addEventListener("keydown",this.onKeyDown.bind(this),{capture:!0})},t.prototype.initButtons=function(){},t.prototype.resetChangeTracker=function(){this.hasChange=!1,this.window.addEventListener("nextendChange",this.onChangeCallback,{passive:!0,capture:!0}),this.window.addEventListener("change",this.onChangeCallback,{passive:!0,capture:!0}),this.$saveButton.addClass("n2_button--inactive")},t.prototype.onChange=function(){this.hasChange=!0,this.$saveButton.removeClass("n2_button--inactive"),this.window.removeEventListener("nextendChange",this.onChangeCallback,{passive:!0,capture:!0}),this.window.removeEventListener("change",this.onChangeCallback,{passive:!0,capture:!0})},t.prototype.onKeyDown=function(e){if(!e.defaultPrevented){var t=!1;e.ctrlKey||e.metaKey?"KeyS"===e.code&&(this.actionSave(),t=!0):"Escape"===e.code&&("INPUT"!==e.target.tagName&&"textarea"!==e.target.tagName||(e.target.blur(),t=!0)),t&&e.preventDefault()}},t.prototype.isChanged=function(){return this.hasChange},t.prototype.registerBeforeUnload=function(){i.addEventListener("beforeunload",this.actionUnload.bind(this))},t.prototype.actionUnload=function(e){if(!this.skipChangeConfirm&&this.isChanged()){var t=n2_("The changes you made will be lost if you navigate away from this page.");return e.returnValue=t,t}},t.prototype.actionSave=function(){},t.prototype.afterSave=function(){this.resetChangeTracker()},t})),c.d("FormElement",(function(){function t(){this.connectedField=null,this.element.data("field",this)}return t.prototype.triggerOutsideChange=function(){this.element[0].dispatchEvent(new CustomEvent("outsideChange",{cancelable:!1,bubbles:!0,detail:{field:this}})),this.element[0].dispatchEvent(new CustomEvent("nextendChange",{cancelable:!1,bubbles:!0,detail:{field:this}}))},t.prototype.triggerInsideChange=function(){this.element[0].dispatchEvent(new CustomEvent("insideChange",{cancelable:!1,bubbles:!0,detail:{field:this}})),this.element[0].dispatchEvent(new CustomEvent("nextendChange",{cancelable:!1,bubbles:!0,detail:{field:this}}))},t.prototype.focus=function(t){this.connectedField&&this.connectedField.focus(t)},t})),c.d("FormElementAutocomplete",["$","FormElementText"],(function(){var $=c.$;function t(t,i){this.tags=i,c.FormElementText.prototype.constructor.call(this,t),this.parent.find(".n2_field_text__clear").on("click",this.clear.bind(this)),new c.UIAutocomplete(this.element,{positionTo:".n2_field_autocomplete",y:-2,appendTo:function(){return this.element.closest(".n2_container_scrollable, body")}.bind(this),source:function(){return this.tags}.bind(this),select:function(t,i){var s=this.value.split(/,/);s.pop(),s.push(i.value),s.push(""),this.value=s.join(","),$(this).trigger("change")}})}return t.prototype=Object.create(c.FormElementText.prototype),t.prototype.constructor=t,t.prototype.clear=function(e){e.preventDefault(),this.element.val(""),this.change()},t})),c.d("BasicCSSFont",["$","BasicCSSSkeleton"],(function(){var $=c.$;function t(){this._singular="font",this._prular="fonts",c.BasicCSSSkeleton.prototype.constructor.apply(this,arguments),this.form={afont:$("#layer-font-family"),color:$("#layer-font-color"),size:$("#layer-font-size"),weight:$("#layer-font-weight"),lineheight:$("#layer-font-lineheight"),align:$("#layer-font-textalign"),underline:$("#layer-font-decoration"),italic:$("#layer-font-decoration"),letterspacing:$("#layer-font-letterspacing"),wordspacing:$("#layer-font-wordspacing"),texttransform:$("#layer-font-texttransform"),tshadow:$("#layer-font-tshadow"),extra:$("#layer-font-extracss")},this.loaded()}return t.prototype=Object.create(c.BasicCSSSkeleton.prototype),t.prototype.constructor=t,t.prototype.activateVisual=function(t){this.activeVisual=t,this.setValue(c.CSSRendererFont.transformData(this.visuals[t].value,this.visuals[t].mode)),this.setStates(c.CSSRendererFont.rendererModes[this.visuals[t].mode].tabs),c.BasicCSSSkeleton.prototype.activateVisual.call(this,t)},t.prototype.setValue=function(t){this.value=c.CSSRendererFont.fixBold(t)},t.prototype._transformsize=function(t){return t.split("||").join("|*|")},t.prototype._setsize=function(t,i){t.size=i.replace("|*|","||")},t.prototype._transformweight=function(t){return parseInt(t)},t.prototype._setweight=function(t,i){t.weight=parseInt(i)},t.prototype._transformunderline=function(t){return[1==this.value[this.activeState].italic?"italic":"",1==t?"underline":""].join("||")},t.prototype._setunderline=function(t,i){var s=i.split("||");t.underline="underline"===s[1]?1:0},t.prototype._transformitalic=function(t){return[1==t?"italic":"",1==this.value[this.activeState].underline?"underline":""].join("||")},t.prototype._setitalic=function(t,i){var s=i.split("||");t.italic="italic"===s[0]?1:0},t})),c.d("BasicCSSSkeleton",["$"],(function(){var $=c.$;function t(t){this.hasVisuals=!1,this.isInsideChange=!1,this.isReload=!1,this.manager=t,this.$container=t.$container.find('.n2_fields_layer_window[data-field="fieldset-layer-window-basiccss-'+this._singular+'"]'),this.$relatedContainers=t.$container.find('.n2_fields_layer_window[data-parent-design="fieldset-layer-window-basiccss-'+this._singular+'"]'),this.$containers=this.$container.add(this.$relatedContainers).attr("data-state","0"),this.elementField=$("#layerbasiccss-"+this._singular+"-element").data("field"),this.elementField.element.on("nextendChange",function(){this.activateVisual(this.elementField.element.val()),this.activateState(0)}.bind(this)),this.stateField=$("#layerbasiccss-"+this._singular+"-state").data("field"),this.stateField.element.on("nextendChange",function(){this.activateState(this.stateField.element.val())}.bind(this)),this.relatedElementFields=[],this.relatedStateFields=[],this.$relatedContainers.each(function(t,i){var s=$(i),n=s.find("#layerbasiccss-"+s.data("singular")+"-element").data("field"),h=s.find("#layerbasiccss-"+s.data("singular")+"-state").data("field");n.element.on("outsideChange",function(t){this.elementField.insideChange(t.val())}.bind(this,n.element)),h.element.on("outsideChange",function(t){this.stateField.insideChange(t.val())}.bind(this,h.element)),this.relatedElementFields.push(n),this.relatedStateFields.push(h)}.bind(this)),this.$containers.find('.n2_form__table_label_field[data-design-feature="reset-to-normal"] a').on("click",function(e){e.preventDefault(),this.value[this.activeState]={},this._lazySave(e),this.activateState(this.activeState)}.bind(this)),this.activeVisual=0,this.activeState=0}return t.prototype.loaded=function(){for(var t in this.form)this.form[t].on({nextendChange:this.changeValue.bind(this,t)})},t.prototype.changeValue=function(t,e){this.isReload||("function"==typeof this["_set"+t]?this["_set"+t](this.value[this.activeState],this.form[t].val()):this.value[this.activeState][t]=this.form[t].val(),this._lazySave(e))},t.prototype._lazySave=NextendDeBounce((function(e){this.isInsideChange=!0;var t=this.getData();this.visuals[this.activeVisual].field.save(e,t),this.visuals[this.activeVisual].value=t,this.isInsideChange=!1}),50),t.prototype.save=function(t){for(var i in this.isInsideChange=!0,t)this.visualsByName[i].field.save({},t[i]),this.visualsByName[i].value=t[i];this.isInsideChange=!1},t.prototype.getData=function(){return JSON.stringify({data:this.value})},t.prototype.load=function(t,i){if(this.hasVisuals=i.length>0,this.$containers.attr("data-elements",i.length),this.hasVisuals){var s={};this.visuals=[],this.visualsByName={};for(var n=0;n<i.length;n++){var h=i[n];this.visualsByName[h.name]={value:t[h.name],mode:h.mode,field:h.field},h.field.element.off(".basiccss").on("outsideChange.basiccss",this.loadSingleValue.bind(this,n,h.name)),this.visuals.push(this.visualsByName[h.name]),s[n]=h.field.getLabel()}this.elementField.setOptions(s);for(n=0;n<this.relatedElementFields.length;n++)this.relatedElementFields[n].setOptions(s);this.activateVisual(0),this.activateState(0)}},t.prototype.loadSingleValue=function(t){this.isInsideChange||(this.visuals[t].value=this.visuals[t].field.element.val(),this.activeVisual==t&&(this.activateVisual(t),this.activateState(this.activeState)))},t.prototype.activateVisual=function(t){for(var i=0;i<this.relatedElementFields.length;i++)parseInt(this.relatedElementFields[i].element.val())!==t&&this.relatedElementFields[i].insideChange(t)},t.prototype.setValue=function(t){this.value=t},t.prototype.setStates=function(t){for(var i={},s=0;s<t.length;s++)i[s]=t[s];this.stateField.setOptions(i);for(s=0;s<this.relatedStateFields.length;s++)this.relatedStateFields[s].setOptions(i)},t.prototype.activateState=function(t){var i;for(var s in t=Math.max(0,parseInt(t)),this.isReload=!0,this.activeState=t,this.$containers.attr("data-state",t),i=0===t?this.value[0]:f({},this.value[0],this.value[t]))this.form[s]!==r&&("function"==typeof this["_transform"+s]?this.form[s].data("field").insideChange(this["_transform"+s](i[s])):this.form[s].data("field").insideChange(i[s]));for(var n=0;n<this.relatedStateFields.length;n++)parseInt(this.relatedStateFields[n].element.val())!==t&&this.relatedStateFields[n].insideChange(t);this.isReload=!1},t.prototype.serialize=function(){if(this.hasVisuals){var t={};for(var i in this.visualsByName)t[i]=this.visualsByName[i].value;return t}return{}},t.prototype.unSerialize=function(t){for(var i in t)t.hasOwnProperty(i)&&(this.visualsByName[i].field.save({},t[i]),this.visualsByName[i].value=t[i])},t})),c.d("BasicCSSStyle",["$","BasicCSSSkeleton"],(function(){var $=c.$;function t(){this._singular="style",this._prular="styles",c.BasicCSSSkeleton.prototype.constructor.apply(this,arguments),this.form={backgroundcolor:$("#layer-style-backgroundcolor"),opacity:$("#layer-style-opacity"),padding:$("#layer-style-padding"),border:$("#layer-style-border"),borderradius:$("#layer-style-borderradius"),boxshadow:$("#layer-style-boxshadow"),extra:$("#layer-style-extracss")},this.loaded()}return t.prototype=Object.create(c.BasicCSSSkeleton.prototype),t.prototype.constructor=t,t.prototype.activateVisual=function(t){this.activeVisual=t,this.setValue(c.CSSRendererStyle.transformData(this.visuals[t].value,this.visuals[t].mode)),this.setStates(c.CSSRendererStyle.rendererModes[this.visuals[t].mode].tabs),c.BasicCSSSkeleton.prototype.activateVisual.call(this,t)},t})),c.d("BasicCSS",["$"],(function(){var $=c.$;function t(t,i){this.inPresetList=!1,this.$container=$("#"+t),this.options=f({ajaxUrl:""},i),this.throttleSetTimeout=null,this.throttleExitTimeout=null,this.storage={},this.assets={font:new c.BasicCSSFont(this),style:new c.BasicCSSStyle(this)},this.$preset=$('<div class="n2_layer_window_design_preset"><div class="n2_layer_window_design_preset__label_container"><div class="n2_layer_window_design_preset__label">'+n2_("Preset")+'</div><i class="ssi_16 ssi_16--info" data-tip-description="'+n2_("You can use presets to save style settings for later use. Clicking on any preset will load its styling to your current layer, and the previous style settings will be lost.")+'" data-tip-label="'+n2_("Preset")+'"></i></div></div>').prependTo(this.$container),this.$notice=$('<div class="n2_layer_window_notice n2_layer_window_notice__device_icon"><div class="n2_field" data-field="layerslide-background-notice-image"><div class="n2_field__label"><label for="layerslide-background-notice-image">Note</label></div><div class="n2_field__element"><div class="n2_field_message n2_field_message--warning">'+n2_("Layer design options affect every device. If you need to make responsive adjustments, look for the options with the device icon.")+"</div></div></div></div>").prependTo(this.$container);var s=$('<div class="n2_layer_window_design_preset__fields"></div>').appendTo(this.$preset),n=$('<div class="n2_layer_window_design_preset__fields_secondary"></div>').appendTo(s);$('<a class="n2_layer_window_design_preset__button_secondary" href="#" data-n2tip="'+n2_("Reset style to default")+'"><i class="ssi_16 ssi_16--reset"></i></a>').on("click",function(e){e.preventDefault(),this.exitPresetList(this.defs,e)}.bind(this)).appendTo(n),$('<a class="n2_layer_window_design_preset__button_secondary" href="#" data-n2tip="'+n2_("Save style as new preset")+'"><i class="ssi_16 ssi_16--save"></i></a>').on("click",function(e){e.preventDefault(),this.saveAsNew()}.bind(this)).appendTo(n),this.$presets=$('<div class="n2_layer_window_design_preset__presets"></div>').insertAfter(this.$preset),$('<a class="n2_layer_window_design_preset__button_choose" data-n2tip="'+n2_("Load style")+'" href="#"><i class="ssi_16 ssi_16--plus"></i></a>').on("click",function(e){e.preventDefault(),this.showList()}.bind(this)).appendTo(s),$('<a class="n2_layer_window_design_preset__button_back" href="#"><i class="ssi_16 ssi_16--remove"></i></a>').on("click",function(e){e.preventDefault(),this.exitPresetList(!1,e)}.bind(this)).appendTo(s),c._basicCSS=this}return t.prototype.showList=function(){this.inPresetList=!0,this.lastState=this.serialize(),this.$presets.on("mouseleave",function(){this.throttledUnSerialize(this.lastState)}.bind(this)),$.when(this.loadType()).done(function(t){0===this.storage[this.type].data("presets")?(c.Notification.notice(n2_("You have not created any presets for this layer yet.")),this.deActivate()):(this.$presets.append(this.storage[this.type]),$(".n2_ss_layer_window").addClass("n2_ss_layer_window--show-presets"),$(".n2_ss_layer_window__tab_container").scrollTop(0))}.bind(this))},t.prototype.activate=function(t,i,s){this.inPresetList&&this.exitPresetList(!1),this.type&&this.type!==t&&this.storage[this.type]!==r&&this.storage[this.type].detach();var n=!1;for(var h in this.defs={font:[],style:[]},this.type=t,this.assets){for(var o=0;o<s[h].length;o++)this.defs[h][s[h][o].name]=s[h][o].def;this.assets[h].load(i,s[h]),n=n||this.assets[h].hasVisuals}this.$container.toggleClass("n2_ss_design_layer_window_design--visible",n)},t.prototype.deActivate=function(){this.inPresetList&&this.exitPresetList(!1)},t.prototype.serialize=function(){var t={};for(var i in this.assets)t[i]=this.assets[i].serialize();return t},t.prototype.unSerialize=function(t){this.assets.font.unSerialize(t.font),this.assets.style.unSerialize(t.style)},t.prototype.throttledUnSerialize=function(t){this._addThrottledRenderTimeout(this.unSerialize.bind(this,t))},t.prototype.saveAsNew=function(t){var i=new c.ModalSimple("section-save-as",{destroyOnHide:!1,width:440});i.addContent(c.UI.modalIcon("ssi_48 ssi_48--plus","green")),i.addContent(c.UI.modalHeading(n2_("Save as")));var s=c.UI.modalFormRow(!0);i.addContent(s);var n=c.UI.modalFieldText(s,"name",n2_("Name"),""),h=c.UI.modalButton(n2_("Save as"),"green");i.addButton(h),h.on("click",function(e){e.preventDefault();var t=n.val();""===t?c.Notification.error(n2_("Please fill the name field!")):c.AjaxHelper.ajax({type:"POST",url:c.AjaxHelper.makeAjaxUrl(this.options.ajaxUrl,{nextendaction:"addVisual"}),data:{type:this.type,value:c.Base64.encode(JSON.stringify({name:t,data:this.serialize()}))},dataType:"json"}).done(function(t){$.when(this.loadType()).done(function(){this.addVisual(t.data.visual).prependTo(this.storage[this.type])}.bind(this)),i.hide(e),c.Notification.success(n2_("Preset saved."))}.bind(this))}.bind(this)),i.show()},t.prototype.loadType=function(){if(this.storage[this.type]===r){var t=$.Deferred(),s=function(i){this.storage[this.type]=$('<div class="n2_layer_window_design_preset__presets_list"></div>').data("presets",0);for(var s=0;s<i.length;s++)this.addVisual(i[s]);t.resolve()}.bind(this);i[this.type]===r?(this.storage[this.type]=t,c.AjaxHelper.ajax({type:"POST",url:c.AjaxHelper.makeAjaxUrl(this.options.ajaxUrl,{nextendaction:"loadVisuals"}),data:{type:this.type},dataType:"json"}).done(function(t){s(t.data.visuals)}.bind(this))):s(i[this.type])}return this.storage[this.type]},t.prototype.addVisual=function(t){var i=t.value;"{"!==i[0]&&(i=c.Base64.decode(i));var s=JSON.parse(i),n=$('<div class="n2_layer_window_design_preset__preset_list_preset"><span>'+s.name+"</span></div>").on({mouseenter:function(t,e){this.throttledUnSerialize(t.data)}.bind(this,s),click:function(t,e){e.preventDefault(),this.exitPresetList(t,e)}.bind(this,s.data)}).appendTo(this.storage[this.type]);if(this.storage[this.type].data("presets",this.storage[this.type].data("presets")+1),t.id>1e4){var h=$('<div class="n2_layer_window_design_preset__preset_list_preset_buttons"></div>').appendTo(n);$('<div class="n2_layer_window_design_preset__preset_list_preset_button" data-n2tip="'+n2_("Overwrite preset")+'"><i class="ssi_16 ssi_16--save"></i></div>').on("click",function(t,i,e){e.stopPropagation(),c.AjaxHelper.ajax({type:"POST",url:c.AjaxHelper.makeAjaxUrl(this.options.ajaxUrl,{nextendaction:"changeVisual"}),data:{visualId:t,value:c.Base64.encode(JSON.stringify({name:i,data:this.lastState})),type:this.type},dataType:"json"}).done(function(t){n.replaceWith(this.addVisual(t.data.visual)),this.storage[this.type].data("presets",this.storage[this.type].data("presets")-1),c.Notification.success(n2_("Preset saved."))}.bind(this))}.bind(this,t.id,s.name)).appendTo(h),$('<div class="n2_layer_window_design_preset__preset_list_preset_button"><i class="ssi_16 ssi_16--delete"></i></div>').on("click",function(t,e){e.preventDefault(),e.stopPropagation(),c.AjaxHelper.ajax({type:"POST",url:c.AjaxHelper.makeAjaxUrl(this.options.ajaxUrl,{nextendaction:"deleteVisual"}),data:{visualId:t,type:this.type},dataType:"json"}).done(function(t){n.remove(),this.storage[this.type].data("presets",this.storage[this.type].data("presets")-1),c.Notification.success(n2_("Preset deleted."))}.bind(this))}.bind(this,t.id)).appendTo(h),c._tooltip.add(h)}return n},t.prototype.exitPresetList=function(t,e){this.throttleSetTimeout&&a(this.throttleSetTimeout),this.$presets.off("mouseleave"),t?(this.inPresetList=!1,this.unSerialize(t)):this.unSerialize(this.lastState),$(".n2_ss_layer_window").removeClass("n2_ss_layer_window--show-presets"),$(".n2_ss_layer_window__tab_container").scrollTop(0),this.inPresetList=!1},t.prototype._addThrottledRenderTimeout=function(t){this.throttleSetTimeout&&a(this.throttleSetTimeout),this.throttleSetTimeout=o(t,100)},t.prototype._addThrottledExitTimeout=function(t){this.throttleExitTimeout&&a(this.throttleExitTimeout),this.throttleExitTimeout=o(t,100)},t})),c.d("FormElementBreakpoint",["$"],(function(){var $=c.$;function t(t,i){this.$container=$("#"+t).find(".n2_field_breakpoint__breakpoint_container"),this.options=f({orientation:"",devices:[],fields:{},enables:!1,global:!1},i),this.hasEnables=!!this.options.enables,this.useGlobal=!1,this.$container.toggleClass("n2_field_breakpoint--with-enables",this.hasEnables),this.$orientationField=$("#"+this.options.orientation).on("nextendChange",this.onOrientationChanged.bind(this)),this.breakpoints={},$('<div class="n2_field_breakpoint__breakpoint_start"><div class="n2_field_breakpoint__breakpoint_label_container"><div class="n2_field_breakpoint__breakpoint_label">0</div></div></div>').prependTo(this.$container),this.$devices=this.$container.find(".n2_field_breakpoint__device"),this.options.global&&(this.$useGlobalField=$("#"+this.options.global.field).on("nextendChange",this.syncUseGlobal.bind(this)),this.useGlobal="1"===this.$useGlobalField.val(),this.syncUseGlobal());for(var s=!1,n=!1,h=0;h<this.$devices.length;h++){var o=this.createBreakpoint(this.$devices.eq(h),s);o!==r?(n?o.$breakpoint.insertBefore(o.$device):o.$breakpoint.insertAfter(o.$device),s=o):n=!0}this.options.global&&this.syncUseGlobal(),$('<div class="n2_field_breakpoint__breakpoint_end"><div class="n2_field_breakpoint__breakpoint_label_container"><div class="n2_field_breakpoint__breakpoint_label">&infin;</div></div></div>').appendTo(this.$container)}function i(t,i,s,n){this.parentField=t,this.prev=n,n&&n.setNext(this),this.next=!1,this.disableEdit=!1,this.orientation="portrait",this.device=i,this.$device=s,this.$breakpoint=$('<div class="n2_field_breakpoint__breakpoint" data-id="'+i+'"><div class="n2_field_breakpoint__breakpoint_divider"></div></div>'),this.$fieldPortrait=$("#"+t.options.fields[i+"-portrait"]),this.$fieldLandscape=$("#"+t.options.fields[i+"-landscape"]),this.$labelContainer=$('<div class="n2_field_breakpoint__breakpoint_label_container"></div>').appendTo(this.$breakpoint),$('<div class="n2_field_breakpoint__breakpoint_label_rename"><i class="ssi_16 ssi_16--rename"></i></div>').on("click",this.edit.bind(this)).appendTo(this.$labelContainer),this.$labelPortrait=$('<div class="n2_field_breakpoint__breakpoint_label" data-orientation="portrait"></div>').text(this.$fieldPortrait.val()).appendTo(this.$labelContainer),this.$labelLandscape=$('<div class="n2_field_breakpoint__breakpoint_label" data-orientation="landscape"></div>').text(this.$fieldLandscape.val()).appendTo(this.$labelContainer),t.hasEnables&&t.options.enables[i]&&(this.$enableField=$("#"+t.options.enables[i]),this.enableField=this.$enableField.data("field"),this.isEnabled=1===parseInt(this.$enableField.val()),this.syncEnabledClass(),this.$device.append('<div class="n2_field_breakpoint__device_disable"><i class="ssi_16 ssi_16--remove"></i></div>'),this.$device.on("click",this.toggleEnable.bind(this)))}return t.prototype.syncUseGlobal=function(){for(var t in this.useGlobal="1"===this.$useGlobalField.val(),this.breakpoints)this.breakpoints[t].syncUseGlobal(this.useGlobal)},t.prototype.createBreakpoint=function(t,s){var n=t.data("id");return"desktopportrait"!==n?(this.breakpoints[n]=new i(this,n,t,s),this.breakpoints[n]):r},t.prototype.onOrientationChanged=function(){var t=this.$orientationField.val();for(var i in this.breakpoints)this.breakpoints[i].setOrientation(t);this.$container.attr("data-orientation",t)},i.prototype.setOrientation=function(t){this.orientation=t},i.prototype.setNext=function(t){this.next=t},i.prototype.getValue=function(){return parseInt(this.$fieldPortrait.val())},i.prototype.syncUseGlobal=function(t){t?(this.disableEdit=!0,this.$labelPortrait.text(this.parentField.options.global.values[this.device+"-portrait"]),this.$labelLandscape.text(this.parentField.options.global.values[this.device+"-landscape"])):(this.disableEdit=!1,this.$labelPortrait.text(this.$fieldPortrait.val()),this.$labelLandscape.text(this.$fieldLandscape.val())),this.$labelContainer.toggleClass("n2_field_breakpoint__breakpoint_label_container--disable-edit",this.disableEdit)},i.prototype.toggleEnable=function(e){e.preventDefault(),this.isEnabled=!this.isEnabled,this.enableField.insideChange(this.isEnabled?1:0),this.syncEnabledClass()},i.prototype.syncEnabledClass=function(){this.$device.toggleClass("n2_field_breakpoint__device--enabled",this.isEnabled),this.$breakpoint.toggleClass("n2_field_breakpoint__breakpoint--enabled",this.isEnabled),$("body").attr("data-"+this.device,this.isEnabled?1:0)},i.prototype.edit=function(e){var t="portrait"===this.orientation?this.$labelPortrait:this.$labelLandscape,i="portrait"===this.orientation?this.$fieldPortrait:this.$fieldLandscape;this.disableEdit||"true"===t[0].contentEditable||(e.preventDefault(),new c.InlineTextEditor(t[0],{filter:this.onFilter.bind(this),onSave:this.onSave.bind(this,i,t),onCancel:this.onCancel.bind(this,i,t)}))},i.prototype.onFilter=function(t){return t.replace(/[^0-9]/gi,"").replace(/^[0]+/gi,"").substr(0,4)},i.prototype.onSave=function(t,i,s){(s=parseInt(s))?(s=Math.max(100,Math.min(99999,parseInt(s))),t.val(s).trigger("change"),i.text(s)):this.onCancel(t,i)},i.prototype.onCancel=function(t,i){i.text(parseInt(t.val()))},t})),c.d("FormElementButtonMoreLess",["$"],(function(){var $=c.$;function t(t,i){if(this.$button=$("#"+t).on("click",this.switchState.bind(this)),this.options=f({labelMore:"",labelLess:"",relatedFields:[]},i),this.shownMore=!1,this.relatedFields=$(""),i.relatedFields!==r&&i.relatedFields.length)for(var s=0;s<i.relatedFields.length;s++)this.relatedFields=this.relatedFields.add($('[data-field="'+i.relatedFields[s]+'"]'));this.syncState()}return t.prototype.switchState=function(e){e.preventDefault(),this.shownMore=!this.shownMore,this.shownMore?this.$button.text(this.options.labelLess):this.$button.text(this.options.labelMore),this.syncState()},t.prototype.syncState=function(){this.relatedFields.toggleClass("n2_form_element--hidden",!this.shownMore)},t})),c.d("FormElementCheckboxOnOff",["$","FormElement"],(function(){var $=c.$;function t(t,i){if(this.separator="||",this.element=$("#"+t),this.$parent=this.element.parent(),this.options=f({invert:!1},i),this.relatedFields=$(""),i.relatedFields!==r&&i.relatedFields.length){for(var s=0;s<i.relatedFields.length;s++)this.relatedFields=this.relatedFields.add($('[data-field="'+i.relatedFields[s]+'"]'));this.setValue(parseInt(this.element.val())?1:0)}c.FormElement.prototype.constructor.call(this),this.$parent.on("click",this.switchCheckbox.bind(this))}return t.prototype=Object.create(c.FormElement.prototype),t.prototype.constructor=t,t.prototype.switchCheckbox=function(){this.setValue(parseInt(this.element.val())?0:1),this.triggerOutsideChange()},t.prototype.setValue=function(t){this.element.val(t);var i=!1;this.options.invert||1!==t?this.options.invert&&1!==t&&(i=!0):i=!0,this.$parent.toggleClass("n2_field_checkbox_onoff--active",i),this.relatedFields.toggleClass("n2_form_element--hidden",this.options.invert?i:!i)},t.prototype.insideChange=function(t){this.setValue(parseInt(t)?1:0),this.triggerInsideChange()},t})),c.d("FormElementColor",["$","FormElement"],(function(){var $=c.$;function t(t,i){this.element=$("#"+t),this.elementInner=this.element[0].parentNode.querySelector(".n2-field-color-preview-inner"),this.elementInnerSMW=c.MW.k(this.elementInner),this.alpha=1===i,this.element.on("change",this.onChange.bind(this)),this.text=this.element.data("field"),c.FormElement.prototype.constructor.call(this),this.syncUI(),G(this.elementInner,"click",this.showColorPicker.bind(this))}return t.prototype=Object.create(c.FormElement.prototype),t.prototype.constructor=t,t.prototype.syncUI=function(){this.elementInnerSMW.background=dt.Hex8toCssRGBA(this.element.val())},t.prototype.showColorPicker=function(){c.ColorPicker.show(this.element[0].parentNode,this.element.val(),this.alpha,this.notifySaveCallback.bind(this),this.notifyChangeCallback.bind(this))},t.prototype.notifyChangeCallback=function(t){this.element.val(t),this.triggerOutsideChange(),this.syncUI()},t.prototype.notifySaveCallback=function(t){this.element.val(t),this.element.trigger("change")},t.prototype.onChange=function(e){var t=this.element.val().trim(),i=t;if(0===t.length)t=this.alpha?"00000000":"000000";else{var s=/rgb\((\d{1,3}), ?(\d{1,3}), ?(\d{1,3})\)/i.exec(t);if(s&&(t=dt.DecToHex(s[1])+dt.DecToHex(s[2])+dt.DecToHex(s[3])),this.alpha){var n=/rgba\((\d{1,3}), ?(\d{1,3}), ?(\d{1,3}), ?([0-9.]+)\)/i.exec(t);if(n){var h=+n[4];isNaN(h)&&(h=1),t=dt.DecToHex(n[1])+dt.DecToHex(n[2])+dt.DecToHex(n[3])+dt.DecToHex(Math.floor(255*h))}}"#"===t.charAt(0)&&(t=t.substr(1)),3===t.length&&(t=t[0]+t[0]+t[1]+t[1]+t[2]+t[2]),6===t.length&&this.alpha&&(t+="ff")}i!==t&&this.element.val(t),this.triggerInsideChange(),this.triggerOutsideChange(),this.syncUI(),e&&e.stopImmediatePropagation()},t.prototype.insideChange=function(t){this.element.val(t),this.triggerInsideChange(),this.syncUI()},t})),c.d("FormElementDecoration",["$","FormElement"],(function(){var $=c.$;function t(t,i){this.separator="||",this.element=$("#"+t),this.values=i,this.checkboxes=this.element.parent().find(".n2_field_decoration__option"),this.states=this.element.val().split(this.separator);for(var s=0;s<this.checkboxes.length;s++)this.states[s]!==r&&this.states[s]===this.values[s]||(this.states[s]=""),this.checkboxes.eq(s).on("click",this.switchCheckbox.bind(this,s));c.FormElement.prototype.constructor.call(this)}return t.prototype=Object.create(c.FormElement.prototype),t.prototype.constructor=t,t.prototype.switchCheckbox=function(t){this.states[t]===this.values[t]?(this.states[t]="",this.setSelected(t,0)):(this.states[t]=this.values[t],this.setSelected(t,1)),this.element.val(this.states.join(this.separator)),this.triggerOutsideChange()},t.prototype.insideChange=function(t){for(var i=t.split(this.separator),s=0;s<this.checkboxes.length;s++)i[s]===r||i[s]!==this.values[s]?(this.states[s]="",this.setSelected(s,0)):(this.states[s]=this.values[s],this.setSelected(s,1));this.element.val(this.states.join(this.separator)),this.triggerInsideChange()},t.prototype.setSelected=function(t,i){this.checkboxes.eq(t).toggleClass("n2_field_decoration__option--selected",1===i)},t})),c.d("FormElementDevice",["FormElementOnoff"],(function(){function t(t){c.FormElementOnoff.prototype.constructor.call(this,t,{values:{0:1,1:0}})}return t.prototype=Object.create(c.FormElementOnoff.prototype),t.prototype.constructor=t,t.prototype.detach=function(){this.onoff.detach()},t.prototype.syncOff=function(){this.onoff.removeClass("n2_field_radio__option--selected")},t.prototype.syncOn=function(){this.onoff.addClass("n2_field_radio__option--selected")},t})),c.d("FormElementDevices",["$","FormElementDevice"],(function(){var $=c.$;function t(t,i){this.$el=$("#"+t).data("field",this),this.fields={};for(var s=0;s<i.length;s++)this.fields[i[s]]=new c.FormElementDevice(t+"-"+i[s])}return t.prototype.setAvailableDevices=function(t){for(var i in t){var s=this.fields[i.replace(/([a-z])([A-Z])/g,"$1-$2").toLowerCase()];!t[i]&&s&&s.detach()}this.$el.children().first().addClass("n2-first"),this.$el.children().last().addClass("n2-last")},t})),c.d("FormElementFolders",["FormElementText"],(function(){function t(t,i){c.FormElementText.prototype.constructor.call(this,t),this.parameters=i,this.parent.find(".n2_field_text__clear").on("click",this.clear.bind(this)),this.parent.find(".n2_field_text__choose").on("click",this.show.bind(this)),c.FormElement.prototype.constructor.call(this)}return t.prototype=Object.create(c.FormElementText.prototype),t.prototype.constructor=t,t.prototype.clear=function(e){e.preventDefault(),this.val("")},t.prototype.val=function(t){this.element.val(t),this.change()},t.prototype.show=function(e){e.preventDefault(),this.modal=new c.ModalLightbox(n2_("Choose folder"),"filesystem"),this.modal.addContent(c._browse.getNode("folder"));var t=c.UI.modalButton(n2_("Select"),"green").on("click",function(e){e.preventDefault(),this.modal.hide(e),this.val(c._browse.getCurrentFolder())}.bind(this));this.modal.addButton(t),this.modal.show()},t})),c.d("FormElementFontHidden",["$","FormElement"],(function(){var $=c.$;function t(t,i){this.element=$("#"+t),this.parameters=f({mode:"",label:""},i),c.FormElement.prototype.constructor.call(this)}return t.prototype=Object.create(c.FormElement.prototype),t.prototype.constructor=t,t.prototype.getLabel=function(){return this.parameters.label},t.prototype.save=function(e,t){this.val(t)},t.prototype.val=function(t){this.element.val(t),this.triggerOutsideChange()},t.prototype.insideChange=function(t){this.element.val(t),this.triggerInsideChange()},t.prototype.renderFont=function(){return c.CSSRendererFont.addCSS("",c.CSSRendererFont.getClass(),this.element.val(),c.CSSRendererFont.rendererModes[this.parameters.mode])},t})),c.d("FormElementFont",["$","FormElement"],(function(){var $=c.$;function t(t,i){this.element=$("#"+t),this.parent=this.element.parent(),this.parameters=f({mode:"",label:"",style:"",style2:"",preview:""},i),c.FormElement.prototype.constructor.call(this),this.parent.on("click",this.show.bind(this))}return t.prototype=Object.create(c.FormElement.prototype),t.prototype.constructor=t,t.prototype.getLabel=function(){return this.parameters.label},t.prototype.show=function(e){e.preventDefault(),""!==this.parameters.style&&c._fontManager.setConnectedStyle(this.parameters.style),""!==this.parameters.style2&&c._fontManager.setConnectedStyle2(this.parameters.style2),c._fontManager.setFieldID(this.element.attr("id")),c._fontManager.show(this.element.val(),this.save.bind(this),{previewMode:this.parameters.mode,previewHTML:this.parameters.preview})},t.prototype.save=function(e,t){this.val(t)},t.prototype.val=function(t){this.element.val(t),this.triggerOutsideChange()},t.prototype.insideChange=function(t){this.element.val(t),this.triggerInsideChange()},t.prototype.renderFont=function(){return c.CSSRendererFont.addCSS("",c.CSSRendererFont.getClass(),this.element.val(),c.CSSRendererFont.rendererModes[this.parameters.mode])},t})),c.d("FormTabbed",["$"],(function(){var $=c.$;function t(t,i){if(this.options=f({toggleMode:!1,sessionID:""},i),this.id=t,this.$buttons=$('.n2_form__tab_button[data-related-form="'+t+'"]'),this.$tabs=$('.n2_form__tab[data-related-form="'+t+'"]'),this.$buttons.on("click",this.showTab.bind(this)),!this.options.toggleMode){var s=this.$buttons.eq(0).data("related-tab");""!==this.options.sessionID&&(s=sessionStorage.getItem(this.options.sessionID));var n=this.$buttons.filter('[data-related-tab="'+s+'"]');0===n.length&&(n=this.$buttons.eq(0)),n.triggerHandler("click")}}return t.prototype.showTab=function(e){e.preventDefault();var t=$(e.currentTarget),i=t.data("related-tab");this.$buttons.removeClass("n2_form__tab_button--active"),this.$tabs.removeClass("n2_form__tab--active"),this.options.toggleMode&&this.currentTab===i?delete this.currentTab:(t.addClass("n2_form__tab_button--active"),this.$tabs.filter('[data-tab="'+i+'"]').addClass("n2_form__tab--active"),this.currentTab=i,""!==this.options.sessionID&&sessionStorage.setItem(this.options.sessionID,i))},t})),c.d("FormElementIconTab",["$","FormElement"],(function(){var $=c.$;function t(t,i){if(this.options=f({relatedValueFields:[],relatedAttribute:""},i),this.parent=$("#"+t+"_icon_tab"),this.parent.find(".n2_field_icon_tab__option").each(function(t,i){$(i).on("click",function(e){this.onClick($(e.currentTarget))}.bind(this))}.bind(this)),this.element=$("#"+t).on("change",this.onHiddenChange.bind(this)),this.relatedValueFields=!1,this.options.relatedValueFields.length){var s=this.element.val();this.relatedValueFields=$("");for(var n=0;n<this.options.relatedValueFields.length;n++)for(var h,r=0;r<this.options.relatedValueFields[n].field.length;r++)(h=$('[data-field="'+this.options.relatedValueFields[n].field[r]+'"]').data("show-values",this.options.relatedValueFields[n].values)).toggleClass("n2_form_element--hidden",-1===this.options.relatedValueFields[n].values.indexOf(s)),this.relatedValueFields=this.relatedValueFields.add(h)}if(""!==this.options.relatedAttribute){var o=$("#n2-admin").attr("data-"+this.options.relatedAttribute,this.element.val());this.element.on("nextendChange",function(){o.attr("data-"+this.options.relatedAttribute,this.element.val())}.bind(this))}c.FormElement.prototype.constructor.call(this)}return t.prototype=Object.create(c.FormElement.prototype),t.prototype.constructor=t,t.prototype.onHiddenChange=function(){var t=this.element.val();t&&this.insideChange(t)},t.prototype.onClick=function(t){t.hasClass("n2_field_icon_tab__option--selected")||(this.parent.find(".n2_field_icon_tab__option--selected").removeClass("n2_field_icon_tab__option--selected"),t.addClass("n2_field_icon_tab__option--selected"),this.setHiddenValue(t.attr("data-ssoption")),this.triggerOutsideChange())},t.prototype.insideChange=function(t){this.setHiddenValue(t);var i=this.parent.find('.n2_field_icon_tab__option[data-ssoption="'+t+'"]');this.onClick(i),this.triggerInsideChange()},t.prototype.setHiddenValue=function(t){this.element.val(t),this.relatedValueFields&&this.relatedValueFields.each((function(){var i=$(this);i.toggleClass("n2_form_element--hidden",-1===i.data("show-values").indexOf(t))}))},t})),c.d("FormElementIcon2Manager",["$","FormElement"],(function(){var $=c.$;function t(t){this.element=$("#"+t),this.parent=this.element.parent(),c.FormElement.prototype.constructor.call(this),this.parent.find(".n2_field_chooser__clear").on("click",this.clear.bind(this)),this.parent.find(".n2_field_chooser__choose").on("click",this.openModal.bind(this)),this.$preview=this.parent.find(".n2_field_icon__preview").on("click",this.openModal.bind(this)),this.updateIsEmpty()}return t.prototype=Object.create(c.FormElement.prototype),t.prototype.constructor=t,t.prototype.isEmpty=function(t){return""===t},t.prototype.clear=function(e){e.preventDefault(),this.val("")},t.prototype.insideChange=function(t){this.updatePreview(t),this.element.val(t),this.updateIsEmpty(),this.triggerInsideChange()},t.prototype.openModal=function(e){e&&e.preventDefault(),c.Icons.showModal(this.setIcon.bind(this),this.element.val())},t.prototype.val=function(t){this.element.val(t),this.updatePreview(t),this.updateIsEmpty(),this.triggerOutsideChange()},t.prototype.setIcon=function(t){this.val(t)},t.prototype.updateIsEmpty=function(){this.parent.toggleClass("n2_field_chooser--empty",this.isEmpty(this.element.val()))},t.prototype.updatePreview=function(t){var i=c.Icons.render(t);i?this.$preview.html('<i class="n2i '+i.class+'">'+i.ligature+"</i>"):this.$preview.html("")},t.prototype.focus=function(t){t&&this.openModal()},t})),c.d("FormElementImageList",["$","FormElement"],(function(){var $=c.$;function t(t,i,s){if(this.id=t,this.element=$("#"+t),this.$parent=this.element.parent(),this.$preview=this.$parent.find(".n2_field_image_list__preview"),this.$fields=this.$parent.find(".n2_field_image_list__fields"),this.$fields.length&&(this.field=this.$fields.find('input[type="text"]').data("field"),this.field.element.on("outsideChange",function(){var t=this.element.val();this.markSelected(t),this.renderPreview(t)}.bind(this))),this.$popover=!1,this.parameters=f({width:120,column:3,hasDisabled:!1,options:[]},i),this.realItemWidth=this.parameters.width+10,this.relatedFields=!1,s!==r&&s.length){this.relatedFields=$("");for(var n=0;n<s.length;n++)this.relatedFields=this.relatedFields.add($('[data-field="'+s[n]+'"]'));this.relatedFields.toggleClass("n2_form_element--hidden",this.isOff(this.element.val()))}c.FormElement.prototype.constructor.call(this),this.$parent.on("click",this.toggle.bind(this)),this.renderPreview(this.element.val())}return t.prototype=Object.create(c.FormElement.prototype),t.prototype.constructor=t,t.prototype.stopPropagation=function(e){return e.originalEvent["handled"+this.id]!==r||(e.originalEvent["handled"+this.id]=!0,!1)},t.prototype.toggle=function(e){this.$parent.hasClass("n2_field_image_list--focus")?this.blur(e):this.focus(e)},t.prototype.focus=function(e){this.stopPropagation(e)||(this.$parent.addClass("n2_field_image_list--focus"),$("body").on("click."+this.id,this.blur.bind(this)),this.buildPopover(),this.markSelected(this.element.val()))},t.prototype.blur=function(e){this.stopPropagation(e)||(this.$parent.removeClass("n2_field_image_list--focus"),$("body").off("click."+this.id))},t.prototype.isOff=function(t){return"-1"===t},t.prototype.buildPopover=function(){if(!this.$popover){this.items={},this.$popover=$('<div class="n2_field_image_list__popover"></div>').on("click",this.stopPropagation.bind(this));var t=$('<div class="n2_field_image_list__popover_items"></div>').css("width",(this.realItemWidth+20)*this.parameters.column+"px").appendTo(this.$popover);for(var i in this.parameters.options){this.items[i]=$('<div class="n2_field_image_list__popover_item"></div>').css("width",this.realItemWidth+"px").on("click",this.selectOption.bind(this,i)).appendTo(t);var s=$('<div class="n2_field_image_list__popover_item_image"></div>').appendTo(this.items[i]);this.loadImage(this.parameters.options[i].url,s),this.parameters.options[i].label!==r&&$('<div class="n2_field_image_list__popover_item_label"></div>').text(this.parameters.options[i].label).appendTo(this.items[i])}this.parameters.hasDisabled&&(this.parameters.options[-1]={url:""},this.items[-1]=$('<div class="n2_field_image_list__popover_item"></div>').on("click",this.selectOption.bind(this,"-1")).append($('<div class="n2_field_image_list__popover_item_disabled"></div>').text(n2_("Disabled"))).appendTo(t)),this.$fields.appendTo(this.$popover),this.$parent.append(this.$popover),this.$items=this.$popover.find(".n2_field_image_list__popover_item")}},t.prototype.selectOption=function(t,e){this.setValue(t),this.markSelected(t),this.renderPreview(t),this.triggerOutsideChange(),this.blur(e)},t.prototype.setValue=function(t){this.element.val(t),this.relatedFields&&this.relatedFields.toggleClass("n2_form_element--hidden",this.isOff(t))},t.prototype.markSelected=function(t){this.$items.removeClass("n2_field_image_list__popover_item--selected"),this.field&&""!==this.field.element.val()||this.items[t].addClass("n2_field_image_list__popover_item--selected")},t.prototype.renderPreview=function(t){var i,s;this.$preview.html(""),this.field&&""!==this.field.element.val()?i=c._imageHelper.fixed(this.field.element.val()):"-1"!==t&&this.parameters.options[t]!==r&&(i=this.parameters.options[t].url,s=this.parameters.options[t].label),i!==r?(this.loadImage(i,this.$preview),s&&$('<div class="n2_field_image_list__preview_label"></div>').text(s).appendTo(this.$preview)):$('<div class="n2_field_image_list__preview_label"></div>').text(n2_("Disabled")).appendTo(this.$preview)},t.prototype.insideChange=function(t){this.parameters.options[t]!==r&&(this.setValue(t),this.markSelected(t),this.renderPreview(t),this.triggerInsideChange())},t.prototype.loadImage=function(t,i){this.getImage(t,"94b2c1").done((function(t){$('<img alt="" src="'+t+'">').prependTo(i)}))},t.prototype.getCurrentImage=function(t){var i=this.element.val(),s="";return this.parameters.options[i]&&(s=this.parameters.options[i].url),this.getImage(s,t)},t.prototype.getImage=function(t,i){var s=$.Deferred();return"svg"===t.split("?")[0].split(".").pop()?$.ajax({url:t,method:"GET",dataType:"text",data:{},success:function(t){var n=t.replace(/fill="#FFF"/gi,'fill="#'+i.substr(0,6)+'"').replace('opacity="1"','opacity="'+N2Color.hex2alpha(i)+'"');s.resolve("data:image/svg+xml;base64,"+btoa(n))}.bind(this)}):s.resolve(t),s},t})),c.d("FormElementImage",["$","FormElementText"],(function(){var $=c.$;function t(t,i){c.FormElementText.prototype.constructor.call(this,t),this.parameters=f({alt:!1},i),this.preview=this.parent.find(".n2_field_text_image__preview").on("click",this.open.bind(this)),this.element.on("nextendChange",this.makePreview.bind(this)),this.parent.find(".n2_field_text__choose").on("click",this.open.bind(this)),this.parent.find(".n2_field_text__clear").on("click",this.clear.bind(this)),this.$sizeLabel=$('<div class="n2_field_text_image__size_label"></div>').appendTo(this.parent),this.refreshSizeLabel()}return t.prototype=Object.create(c.FormElementText.prototype),t.prototype.constructor=t,t.prototype.clear=function(e){e.preventDefault(),this.val("")},t.prototype.val=function(t,i){(i=f({alt:!1},i)).alt&&""!==i.alt&&this.parameters.alt&&""!==this.parameters.alt&&$("#"+this.parameters.alt).val(i.alt).trigger("change"),this.element.val(t),this.change()},t.prototype.makePreview=function(){var t=this.element.val();"{"===t.substr(0,1)?this.preview.css("background-image",""):this.preview.css("background-image","url("+c._imageHelper.fixed(t)+")"),this.refreshSizeLabel()},t.prototype.open=function(e){e&&e.preventDefault(),c._imageHelper.openLightbox(this.val.bind(this))},t.prototype.focus=function(t){t&&this.open()},t.prototype.refreshSizeLabel=function(){this.$sizeLabel.removeClass("n2_field_text_image__size_label--visible");var t=this.element.val();if(""!==t&&"{"!==t.substr(0,1)){var i=new Image;i.addEventListener("load",function(){i.naturalWidth&&i.naturalHeight&&this.$sizeLabel.text(i.naturalWidth+"x"+i.naturalHeight).addClass("n2_field_text_image__size_label--visible")}.bind(this)),i.src=c._imageHelper.fixed(t)}},t})),c.d("FormElementLayerWindowFocus",["$","UIDragTooltip"],(function(){var $=c.$,t=new c.UIDragTooltip("Focus");function i(t,i){this.$field=$("#"+t).on("mousedown",this.onMouseDown.bind(this)),this.onMouseMoveCallback=this.onMouseMove.bind(this),this.onMouseUpCallback=this.onMouseUp.bind(this),this.$image=this.$field.find(".n2_field_layer_window_focus__image").on({error:function(){this.$image.attr("src",c._imageHelper.fixed("$system$/images/placeholder/image.png"))}.bind(this)}),this.$dot=$('<div class="n2_field_layer_window_focus__dot"></div>').on("mouseenter",this.onMouseEnter.bind(this)).appendTo(this.$field),this.options=f({image:"",focusX:"",focusY:""},i),this.$imageField=$("#"+this.options.image).on("nextendChange",this.onImageChange.bind(this)),this.imageField=this.$imageField.data("field"),this.$focusXField=$("#"+this.options.focusX).on("nextendChange",this.onFocusXChange.bind(this)),this.focusXField=this.$focusXField.data("field"),this.$focusYField=$("#"+this.options.focusY).on("nextendChange",this.onFocusYChange.bind(this)),this.focusYField=this.$focusYField.data("field")}return i.prototype.onImageChange=function(){var t=c._imageHelper.fixed(c._currentEditor.generator.fill(this.$imageField.val()));this.image!==t&&(this.image=t,this.$image.attr("src",this.image))},i.prototype.onFocusXChange=function(){var t=this.$focusXField.val();t!==this.focusX&&(this.focusX=t,this.$dot.css("left",this.focusX+"%"))},i.prototype.onFocusYChange=function(){var t=this.$focusYField.val();t!==this.focusY&&(this.focusY=t,this.$dot.css("top",this.focusY+"%"))},i.prototype.onMouseDown=function(e){this.context={originalFocusX:this.$focusXField.val(),originalFocusY:this.$focusYField.val()},c.History.get().off(),t.dragShow(),this.onMouseMove(e),s.addEventListener("mousemove",this.onMouseMoveCallback),s.addEventListener("mouseup",this.onMouseUpCallback)},i.prototype.onMouseMove=function(e){e.preventDefault();var i=this.$field[0].getBoundingClientRect(),s=Math.max(Math.min(Math.round((e.clientX-i.left)/i.width*100),100),0),n=Math.max(Math.min(Math.round((e.clientY-i.top)/i.height*100),100),0);this.$focusXField.val(s).trigger("change"),this.$focusYField.val(n).trigger("change"),t.dragUpdate(e,"X: "+s+"%<br>Y: "+n+"%")},i.prototype.onMouseUp=function(e){this.$focusXField.val(this.context.originalFocusX).trigger("change"),this.$focusYField.val(this.context.originalFocusY).trigger("change"),c.History.get().on(),t.dragHide(),s.removeEventListener("mousemove",this.onMouseMoveCallback),s.removeEventListener("mouseup",this.onMouseUpCallback),this.onMouseMove(e),delete this.context},i.prototype.onMouseEnter=function(e){t.hoverShow(e,function(){return"X: "+this.$focusXField.val()+"%<br>Y: "+this.$focusYField.val()+"%"}.bind(this)),this.$dot.on({"mousemove.tooltip":function(e){t.hoverUpdatePosition(e)},"mouseleave.tooltip":function(){this.timeout&&(a(this.timeout),delete this.timeout),this.$dot.off(".tooltip"),t.hoverHide()}.bind(this)})},i})),c.d("FormElementList",["$","FormElement"],(function(){var $=c.$;function t(t,i){if(this.separator="||",this.options=f({relatedFields:[],relatedValueFields:[],relatedAttribute:""},i),this.element=$("#"+t).on("change",this.onHiddenChange.bind(this)),this.select=$("#"+t+"_select").on("change",this.onChange.bind(this)),this.relatedFields=!1,this.options.relatedFields.length){this.relatedFields=$("");for(var s=0;s<this.options.relatedFields.length;s++)this.relatedFields=this.relatedFields.add($('[data-field="'+this.options.relatedFields[s]+'"]'));this.relatedFields.toggleClass("n2_form_element--hidden",this.isOff(this.element.val()))}if(this.relatedValueFields=!1,this.options.relatedValueFields.length){var n=this.element.val();this.relatedValueFields=$("");for(s=0;s<this.options.relatedValueFields.length;s++)for(var h,r=0;r<this.options.relatedValueFields[s].field.length;r++)(h=$('[data-field="'+this.options.relatedValueFields[s].field[r]+'"]').data("show-values",this.options.relatedValueFields[s].values)).toggleClass("n2_form_element--hidden",-1===this.options.relatedValueFields[s].values.indexOf(n)),this.relatedValueFields=this.relatedValueFields.add(h)}if(""!==this.options.relatedAttribute){var o=$("#n2-admin").attr("data-"+this.options.relatedAttribute,this.element.val());this.element.on("nextendChange",function(){o.attr("data-"+this.options.relatedAttribute,this.element.val())}.bind(this))}c.FormElement.prototype.constructor.call(this)}return t.prototype=Object.create(c.FormElement.prototype),t.prototype.constructor=t,t.prototype.onHiddenChange=function(){var t=this.element.val();t&&t!==this.select.val()&&this.insideChange(t)},t.prototype.onChange=function(){var t=this.select.val();null!==t&&"object"==typeof t&&(t=t.join(this.separator)),this.setHiddenValue(t),this.triggerOutsideChange()},t.prototype.insideChange=function(t){"object"==typeof t?(this.select.val(t),t=t.join("||")):this.select.val(t),this.setHiddenValue(t),this.triggerInsideChange()},t.prototype.setHiddenValue=function(t){this.element.val(t),this.relatedFields&&this.relatedFields.toggleClass("n2_form_element--hidden",this.isOff(t)),this.relatedValueFields&&this.relatedValueFields.each((function(){var i=$(this);i.toggleClass("n2_form_element--hidden",-1===i.data("show-values").indexOf(t))}))},t.prototype.isOff=function(t){return""==t||"0"==t||"off"==t},t.prototype.setOptions=function(t){for(var i in this.select.html(""),t)$('<option value="'+i+'"></option>').text(t[i]).appendTo(this.select)},t})),c.d("FormElementMarginPadding",["FormElementMixed"],(function(){function t(t,i,s){this.linkedValues=!1,c.FormElementMixed.prototype.constructor.apply(this,arguments),this.$field=this.element.parent(),this.$field.find(".n2_field_margin_padding__pre_label").on("click",function(e){e.preventDefault(),this.linkedValues=!this.linkedValues,this.$field.toggleClass("n2_field_margin_padding--linked-values",this.linkedValues),this.linkedValues&&this.elements[0].trigger("change")}.bind(this)),this.refresh()}return t.prototype=Object.create(c.FormElementMixed.prototype),t.prototype.constructor=t,t.prototype.onFieldChange=function(){if(this.linkedValues)for(var t=this.elements[0].val(),i=1;i<4;i++)this.elements[i].data("field").insideChange(t);this.element.val(this.getValue()),this.triggerOutsideChange()},t.prototype.insideChange=function(t){c.FormElementMixed.prototype.insideChange.apply(this,arguments),this.refresh()},t.prototype.refresh=function(){this.linkedValues=!0;for(var t=this.elements[0].val(),i=1;i<4;i++)if(t!==this.elements[i].val()){this.linkedValues=!1;break}this.$field.toggleClass("n2_field_margin_padding--linked-values",this.linkedValues)},t.prototype.relatedFieldsOff=function(){return"0|*|0|*|0|*|0"===this.element.val()},t.prototype.isEmpty=function(t){return"|*||*||*|"===t||"0|*|0|*|0|*|0"===t},t})),c.d("FormElementMixed",["$","FormElement"],(function(){var $=c.$;function t(t,i,s){this.element=$("#"+t),this.elements=[];for(var n=0;n<i.length;n++)this.elements.push($("#"+i[n]).on("outsideChange",this.onFieldChange.bind(this)));this.separator=s,c.FormElement.prototype.constructor.call(this)}return t.prototype=Object.create(c.FormElement.prototype),t.prototype.constructor=t,t.prototype.onFieldChange=function(){this.element.val(this.getValue()),this.triggerOutsideChange()},t.prototype.insideChange=function(t){this.element.val(t);for(var i=t.split(this.separator),s=0;s<this.elements.length;s++)this.elements[s].data("field").insideChange(i[s]);this.triggerInsideChange()},t.prototype.getValue=function(){for(var t=[],i=0;i<this.elements.length;i++)t.push(this.elements[i].val());return t.join(this.separator)},t})),c.d("FormElementNumberSlider",["$"],(function(){var $=c.$;function t(t,i){this.localChange=!1,this.element=$("#"+t),this.$parent=this.element.parent().on({"mouseenter.n2slider":this.startSlider.bind(this,i)});var s=this.$parent.siblings(".n2_field_unit").find("> input");if(i.units&&s.length){var n=i.units;s.on("nextendChange",function(){i.min=n[s.val()+"Min"],i.max=n[s.val()+"SliderMax"],this.slider&&(this.uiSlider.setOption("min",i.min),this.uiSlider.setOption("max",i.max))}.bind(this))}}return t.prototype.startSlider=function(t,e){if(this.element.parent().off(".n2slider"),!this.slider){var i=$('<div class="n2_field_number__slider"></div>').appendTo(this.$parent),s=$('<div class="n2_field_number__slider_inner"></div>').appendTo(i);this.slider=$("<div></div>").appendTo(s).removeAttr("slide").prop("slide",!1),this.uiSlider=new c.UISlider(this.slider,f({start:function(){this.element.parent().addClass("n2-active")}.bind(this),stop:function(){this.element.parent().removeClass("n2-active")}.bind(this),sliding:function(e,t){this.localChange=!0,this.element.val(t.value).trigger("change"),this.localChange=!1}.bind(this)},t)),this.slider[0].slide!==r&&(this.slider[0].slide=null),this.element.on("nextendChange",function(){if(!this.localChange){var t=parseFloat(this.element.val());isFinite(t)&&this.uiSlider.setOption("value",t)}}.bind(this))}this.uiSlider.setOption("value",parseFloat(this.element.val()))},t})),c.d("FormElementNumber",["$","FormElement"],(function(){var $=c.$;function t(t,i,s,n){this.min=i,this.max=s,this.element=$("#"+t).on({focus:this._focus.bind(this),blur:this.blur.bind(this),change:this.change.bind(this)}),this.parent=this.element.parent();var h=this.parent.siblings(".n2-form-element-units").find("> input");n&&h.length&&h.on("nextendChange",function(){this.min=n[h.val()+"Min"],this.max=n[h.val()+"Max"]}.bind(this)),c.FormElement.prototype.constructor.call(this)}return t.prototype=Object.create(c.FormElement.prototype),t.prototype.constructor=t,t.prototype._focus=function(){this.parent.addClass("n2_field_text--focus"),this.element.on("keypress.n2-text",function(e){"Enter"===e.code&&(this.element.off("keypress.n2-text"),this.element.trigger("blur"))}.bind(this))},t.prototype.blur=function(){this.parent.removeClass("n2_field_text--focus")},t.prototype.change=function(){var t=this.validate(this.element.val());!0===t?this.triggerOutsideChange():this.element.val(t).trigger("change")},t.prototype.insideChange=function(t){var i=this.validate(t);!0===i?this.element.val(t):this.element.val(i),this.triggerInsideChange()},t.prototype.validate=function(t){if(t!==r&&t.length>0&&"{"===t.charAt(0))return!0;var i=parseFloat(t);return isNaN(i)&&(i=0),(i=Math.max(this.min,Math.min(this.max,i)))+""===t||i},t.prototype.relatedFieldsOff=function(){return 0===parseInt(this.element.val())},t.prototype.isEmpty=function(t){return""===t||0===t},t})),c.d("FormElementOnoff",["$","FormElement"],(function(){var $=c.$;function t(t,i){for(var s in this.element=$("#"+t),this.options=f({values:{0:0,1:1},relatedFieldsOff:[],relatedFieldsOn:[],relatedAttribute:""},i),this.options.valuesDict={},this.options.values)this.options.valuesDict[this.options.values[s]]=s;if(this.options.relatedFieldsOff.length){this.relatedFieldsOff=$("");for(var n=0;n<this.options.relatedFieldsOff.length;n++)this.relatedFieldsOff=this.relatedFieldsOff.add($('[data-field="'+this.options.relatedFieldsOff[n]+'"]'))}else this.relatedFieldsOff=!1;if(this.options.relatedFieldsOn.length){this.relatedFieldsOn=$("");for(n=0;n<this.options.relatedFieldsOn.length;n++)this.relatedFieldsOn=this.relatedFieldsOn.add($('[data-field="'+this.options.relatedFieldsOn[n]+'"]'))}else this.relatedFieldsOn=!1;if(""!==this.options.relatedAttribute){var h=$("#n2-admin");h.attr("data-"+this.options.relatedAttribute,this.element.val()),this.element.on("nextendChange",function(){h.attr("data-"+this.options.relatedAttribute,this.element.val())}.bind(this))}this.onoff=this.element.parent().on({click:this.switch.bind(this),keydown:function(e){"Space"===e.code&&(e.stopPropagation(),e.preventDefault(),this.onoff.trigger("click"))}.bind(this)}),this.options.values[this.element.val()]?this.syncOn():this.syncOff(),c.FormElement.prototype.constructor.call(this)}return t.prototype=Object.create(c.FormElement.prototype),t.prototype.constructor=t,t.prototype.switch=function(){var t=this.options.values[this.element.val()]?0:1;this.element.val(this.options.valuesDict[t]),this.setSelected(t),this.triggerOutsideChange()},t.prototype.insideChange=function(t){var i=this.options.values[t];this.element.val(this.options.valuesDict[i]),this.setSelected(i),this.triggerInsideChange()},t.prototype.setSelected=function(t){t?this.syncOn():this.syncOff()},t.prototype.syncOff=function(){this.onoff.removeClass("n2_field_onoff--on").attr("aria-checked","false"),this.relatedFieldsOff&&this.relatedFieldsOff.removeClass("n2_form_element--hidden"),this.relatedFieldsOn&&this.relatedFieldsOn.addClass("n2_form_element--hidden")},t.prototype.syncOn=function(){this.onoff.addClass("n2_field_onoff--on").attr("aria-checked","true"),this.relatedFieldsOff&&this.relatedFieldsOff.addClass("n2_form_element--hidden"),this.relatedFieldsOn&&this.relatedFieldsOn.removeClass("n2_form_element--hidden")},t})),c.d("FormElementRadio",["$","FormElement"],(function(){var $=c.$;function t(t,i,s){if(this.element=$("#"+t),this.values=i,this.relatedFields=!1,s!==r&&s.length){this.relatedFields=$("");for(var n=0;n<s.length;n++)this.relatedFields=this.relatedFields.add($('[data-field="'+s[n]+'"]'));this.relatedFields.toggleClass("n2_form_element--hidden",this.isOff(this.element.val()))}this.parent=this.element.parent(),this.options=this.parent.find(".n2_field_radio__option");for(n=0;n<this.options.length;n++)this.options.eq(n).on("click",this.click.bind(this));c.FormElement.prototype.constructor.call(this)}return t.prototype=Object.create(c.FormElement.prototype),t.prototype.constructor=t,t.prototype.click=function(e){this.changeSelectedIndex(this.options.index(e.currentTarget))},t.prototype.changeSelectedIndex=function(t){var i=this.values[t];this.setValue(i),this.setSelected(t),this.triggerOutsideChange()},t.prototype.insideChange=function(t,i){var s=this.values.indexOf(t);-1===s&&(s=this.partialSearch(t)),-1===s&&i!==r&&(s=this.addOption(t,i)),-1!==s?(this.setValue(this.values[s]),this.setSelected(s),this.triggerInsideChange()):this.options.eq(0).trigger("click")},t.prototype.setSelected=function(t){this.options.removeClass("n2_field_radio__option--selected"),this.options.eq(t).addClass("n2_field_radio__option--selected")},t.prototype.partialSearch=function(t){t=t.replace(/^.*[\\\/]/,"");for(var i=0;i<this.values.length;i++)if(-1!==this.values[i].indexOf(t))return i;return-1},t.prototype.addOption=function(t,i){var s=this.values.push(t)-1;return i.appendTo(this.parent).on("click",this.click.bind(this)),this.options=this.options.add(i),s},t.prototype.addTabOption=function(t,i){var s=this.values.push(t)-1,n=$('<div class="n2_field_radio__option">'+i+"</div>").insertAfter(this.options.last()).on("click",this.click.bind(this));return this.options=this.options.add(n),s},t.prototype.removeTabOption=function(t){var i=this.values.indexOf(t),s=this.options.eq(i);this.options=this.options.not(s),s.remove(),this.values.splice(i,1)},t.prototype.moveTab=function(t,i){},t.prototype.setValue=function(t){this.element.val(t),this.relatedFields&&this.relatedFields.toggleClass("n2_form_element--hidden",this.isOff(t))},t.prototype.isOff=function(t){return""===t||"0"===t||0===t||"off"===t},t})),c.d("FormRelatedFields",["$"],(function(){var $=c.$;function t(t,i){this.$field=$("#"+t),this.options=f({relatedFieldsOn:[],relatedFieldsOff:[]},i),this.field=this.$field.data("field"),this.field&&this.field.relatedFieldsOff!==r?this.fieldChanged=this.fieldChangedCallback:this.fieldChanged=this.fieldChangedSimple,this.$field.on("nextendChange",this.fieldChanged.bind(this)),this.relatedFieldsOn=$("");for(var s=0;s<this.options.relatedFieldsOn.length;s++)this.relatedFieldsOn=this.relatedFieldsOn.add($('[data-field="'+this.options.relatedFieldsOn[s]+'"]'));this.relatedFieldsOff=$("");for(s=0;s<this.options.relatedFieldsOff.length;s++)this.relatedFieldsOff=this.relatedFieldsOff.add($('[data-field="'+this.options.relatedFieldsOff[s]+'"]'));this.fieldChanged()}return t.prototype.fieldChangedSimple=function(){var t=this.$field.val(),i=this.field.isEmpty(t);this.relatedFieldsOn.toggleClass("n2_form_element--hidden",i),this.relatedFieldsOff.toggleClass("n2_form_element--hidden",!i)},t.prototype.fieldChangedCallback=function(){var t=this.field.relatedFieldsOff();this.relatedFieldsOn.toggleClass("n2_form_element--hidden",t),this.relatedFieldsOff.toggleClass("n2_form_element--hidden",!t)},t})),c.d("FormElementRichText",["$","FormElementText"],(function(){var $=c.$;function t(t){c.FormElementText.prototype.constructor.apply(this,arguments),this.parent.find(".n2_field_textarea_rich__button").on("click",this.onButtonClick.bind(this))}return t.prototype=Object.create(c.FormElementText.prototype),t.prototype.constructor=t,t.prototype.onButtonClick=function(e){switch($(e.currentTarget).data("action")){case"bold":this.bold();break;case"italic":this.italic();break;case"link":this.link()}},t.prototype.bold=function(){this.wrapText("<b>","</b>")},t.prototype.italic=function(){this.wrapText("<i>","</i>")},t.prototype.link=function(){this.wrapText('<a href="#">',"</a>")},t.prototype.wrapText=function(t,i){var s=this.element,n=s.val().length,h=s[0].selectionStart,r=s[0].selectionEnd,o=t+s.val().substring(h,r)+i;s.val(s.val().substring(0,h)+o+s.val().substring(r,n)),this.triggerOutsideChange(),this.element.focus(),s[0].selectionEnd=r+t.length+i.length},t})),c.d("FormElementSelectIcon",["$","FormElement"],(function(){var $=c.$;function t(t,i){if(this.options=f({relatedFields:[],relatedValueFields:[]},i),this.element=$("#"+t),this.$parent=this.element.parent(),this.$options=this.$parent.find(".n2_field_select_icon__option").on("click",this.onSelect.bind(this)),this.relatedFields=!1,this.options.relatedFields.length){this.relatedFields=$("");for(var s=0;s<this.options.relatedFields.length;s++)this.relatedFields=this.relatedFields.add($('[data-field="'+this.options.relatedFields[s]+'"]'));this.relatedFields.toggleClass("n2_form_element--hidden",this.isOff(this.element.val()))}if(this.relatedValueFields=!1,this.options.relatedValueFields.length){var n=this.element.val();this.relatedValueFields=$("");for(s=0;s<this.options.relatedValueFields.length;s++)for(var h,r=0;r<this.options.relatedValueFields[s].field.length;r++)(h=$('[data-field="'+this.options.relatedValueFields[s].field[r]+'"]').data("show-values",this.options.relatedValueFields[s].values)).toggleClass("n2_form_element--hidden",-1===this.options.relatedValueFields[s].values.indexOf(n)),this.relatedValueFields=this.relatedValueFields.add(h)}c.FormElement.prototype.constructor.call(this)}return t.prototype=Object.create(c.FormElement.prototype),t.prototype.constructor=t,t.prototype.onSelect=function(e){var t=$(e.currentTarget);t.data("value")!==this.element.val()&&(this.$options.removeClass("n2_field_select_icon__option--selected"),t.addClass("n2_field_select_icon__option--selected"),this.setHiddenValue(t.data("value")),this.triggerOutsideChange())},t.prototype.insideChange=function(t){this.$options.removeClass("n2_field_select_icon__option--selected"),this.$options.filter('[data-value="'+t+'"]').addClass("n2_field_select_icon__option--selected"),this.setHiddenValue(t),this.triggerInsideChange()},t.prototype.setHiddenValue=function(t){this.element.val(t),this.relatedFields&&this.relatedFields.toggleClass("n2_form_element--hidden",this.isOff(t)),this.relatedValueFields&&this.relatedValueFields.each((function(){var i=$(this);i.toggleClass("n2_form_element--hidden",-1===i.data("show-values").indexOf(t))}))},t})),c.d("FormElementSkin",["$","FormElement"],(function(){var $=c.$;function t(t,i,s,n){this.element=$("#"+t),this.preId=i,this.skins=s,this.list=this.element.data("field"),this.fixedMode=n,this.firstOption=this.list.select.find("option").eq(0),this.originalText=this.firstOption.text(),this.element.on("outsideChange",this.onSkinSelect.bind(this)),c.FormElement.prototype.constructor.call(this)}return t.prototype=Object.create(c.FormElement.prototype),t.prototype.constructor=t,t.prototype.onSkinSelect=function(){var t=this.element.val();if("0"!==t){for(var i in t=this.skins[t].settings)if(t.hasOwnProperty(i)){var s=$("#"+this.preId+i);if(s.length)s.data("field").insideChange(t[i])}this.fixedMode||(this.changeFirstOptionText(n2_("Done")),this.list.insideChange("0"),o(this.changeFirstOptionText.bind(this,this.originalText),3e3))}},t.prototype.changeFirstOptionText=function(t){this.firstOption.text(t)},t.prototype.insideChange=function(t){this.element.val(t),this.list.insideChange(t)},t})),c.d("FormElementStyleHidden",["$","FormElement"],(function(){var $=c.$;function t(t,i){this.element=$("#"+t),this.parameters=f({mode:"",label:""},i),c.FormElement.prototype.constructor.call(this)}return t.prototype=Object.create(c.FormElement.prototype),t.prototype.constructor=t,t.prototype.getLabel=function(){return this.parameters.label},t.prototype.save=function(e,t){this.val(t)},t.prototype.val=function(t){this.element.val(t),this.triggerOutsideChange()},t.prototype.insideChange=function(t){this.element.val(t),this.triggerInsideChange()},t.prototype.renderStyle=function(){return c.CSSRendererStyle.addCSS("",c.CSSRendererStyle.getClass(),this.element.val(),c.CSSRendererStyle.rendererModes[this.parameters.mode])},t})),c.d("FormElementStyle",["$","FormElement"],(function(){var $=c.$;function t(t,i){this.element=$("#"+t),this.parent=this.element.parent(),this.parameters=f({mode:"",label:"",font:"",font2:"",style2:"",preview:""},i),c.FormElement.prototype.constructor.call(this),this.parent.on("click",this.show.bind(this))}return t.prototype=Object.create(c.FormElement.prototype),t.prototype.constructor=t,t.prototype.getLabel=function(){return this.parameters.label},t.prototype.show=function(e){e.preventDefault(),""!==this.parameters.font&&c._styleManager.setConnectedFont(this.parameters.font),""!==this.parameters.font2&&c._styleManager.setConnectedFont2(this.parameters.font2),""!==this.parameters.style2&&c._styleManager.setConnectedStyle(this.parameters.style2),c._styleManager.setFieldID(this.element.attr("id")),c._styleManager.show(this.element.val(),this.save.bind(this),{previewMode:this.parameters.mode,previewHTML:this.parameters.preview})},t.prototype.save=function(e,t){this.val(t)},t.prototype.val=function(t){this.element.val(t),this.triggerOutsideChange()},t.prototype.insideChange=function(t){this.element.val(t),this.triggerInsideChange()},t.prototype.renderStyle=function(){return c.CSSRendererStyle.addCSS("",c.CSSRendererStyle.getClass(),this.element.val(),c.CSSRendererStyle.rendererModes[this.parameters.mode])},t})),c.d("FormElementSubformIcon",["$","FormElement"],(function(){var $=c.$;function t(t,i,s,n){this.id=t,this.ajaxUrl=i,this.element=$("#"+t).data("field",this),this.$parent=this.element.parent(),this.$targetContainer=$("#"+s),this.originalValue=n,this.form=this.element.closest("form"),this.$options=this.$parent.find(".n2_field_subform_icon__option").on("click",this.selectOption.bind(this)),c.FormElement.prototype.constructor.call(this)}return t.prototype=Object.create(c.FormElement.prototype),t.prototype.constructor=t,t.prototype.selectOption=function(e){var t=$(e.currentTarget),i=t.data("value");this.$options.removeClass("n2_field_subform_icon__option--selected"),t.addClass("n2_field_subform_icon__option--selected"),this.element.val(i),this.triggerOutsideChange(),this.loadSubform(i)},t.prototype.loadSubform=function(t){var i={values:[],value:t};t===this.originalValue&&(i.values=this.form.data("form").values),c.AjaxHelper.ajax({type:"POST",url:c.AjaxHelper.makeAjaxUrl(this.ajaxUrl),data:i,dataType:"json"}).done(this.load.bind(this))},t.prototype.load=function(t){this.$targetContainer.html(t.data.html),eval(t.data.scripts),c.FormTipManager.add(this.$targetContainer)},t})),c.d("FormElementSubformImage",["$","FormElement"],(function(){var $=c.$;function t(t,i){this.element=$("#"+t),this.options=$("#"+i).find(".n2-subform-image-option"),this.subform=this.element.data("field"),this.active=this.getIndex(this.options.filter(".n2-active").get(0));for(var s=0;s<this.options.length;s++)this.options.eq(s).on("click",this.selectOption.bind(this));c.FormElement.prototype.constructor.call(this)}return t.prototype=Object.create(c.FormElement.prototype),t.prototype.constructor=t,t.prototype.selectOption=function(e){var t=this.getIndex(e.currentTarget);if(t!=this.active){this.options.eq(t).addClass("n2-active"),this.options.eq(this.active).removeClass("n2-active"),this.active=t;var i=this.subform.list.select.find("option").eq(t).val();this.subform.list.insideChange(i)}},t.prototype.getIndex=function(t){return this.options.indexOf(t)},t})),c.d("FormElementTab",["$","FormElement"],(function(){var $=c.$;function t(t,i){if(this.parent=$("#"+t+"_tab"),this.parent.find(".n2_field_tab__option").each(function(t,i){$(i).on("click",function(e){this.onClick($(e.currentTarget))}.bind(this))}.bind(this)),this.element=$("#"+t).on("change",this.onHiddenChange.bind(this)),this.relatedValueFields=!1,i.length){var s=this.element.val();this.relatedValueFields=$("");for(var n=0;n<i.length;n++)for(var h,r=0;r<i[n].field.length;r++)(h=$('[data-field="'+i[n].field[r]+'"]').data("show-values",i[n].values)).toggleClass("n2_form_element--hidden",-1===i[n].values.indexOf(s)),this.relatedValueFields=this.relatedValueFields.add(h)}c.FormElement.prototype.constructor.call(this)}return t.prototype=Object.create(c.FormElement.prototype),t.prototype.constructor=t,t.prototype.onHiddenChange=function(){var t=this.element.val();t&&this.insideChange(t)},t.prototype.onClick=function(t){t.hasClass("n2_field_tab__option--selected")||(this.parent.find(".n2_field_tab__option--selected").removeClass("n2_field_tab__option--selected"),t.addClass("n2_field_tab__option--selected"),this.setHiddenValue(t.attr("data-ssoption")),this.triggerOutsideChange())},t.prototype.insideChange=function(t){this.setHiddenValue(t),this.triggerInsideChange()},t.prototype.setHiddenValue=function(t){this.element.val(t),this.relatedValueFields&&this.relatedValueFields.each((function(){var i=$(this);i.toggleClass("n2_form_element--hidden",-1===i.data("show-values").indexOf(t))}))},t.prototype.setOptions=function(i,s,n,h){for(var r in h||(h=[]),s.html(""),i){var o=$('<div class="n2_field_tab__option" data-ssoption="'+r+'">'+i[r]+"</div>");n===r&&o.addClass("n2_field_tab__option--selected"),s.append(o),new t(s.attr("id").replace("_tab",""),h)}},t})),c.d("FormElementText",["$","FormElement"],(function(){var $=c.$;function t(t){this.element=$("#"+t).on({focus:this._focus.bind(this),blur:this._blur.bind(this),change:this.change.bind(this)}),this.tagName=this.element.prop("tagName"),this.parent=this.element.parent(),c.FormElement.prototype.constructor.call(this),this.updateIsEmpty()}return t.prototype=Object.create(c.FormElement.prototype),t.prototype.constructor=t,t.prototype._focus=function(){this.parent.addClass("n2_field_text--focus"),"TEXTAREA"!==this.tagName&&this.element.on("keypress.n2-text",function(e){"Enter"===e.code&&(this.element.off("keypress.n2-text"),this.element.trigger("blur"))}.bind(this))},t.prototype._blur=function(){this.parent.removeClass("n2_field_text--focus")},t.prototype.change=function(){this.updateIsEmpty(),this.triggerOutsideChange()},t.prototype.insideChange=function(t){this.element.val(t),this.updateIsEmpty(),this.triggerInsideChange()},t.prototype.updateIsEmpty=function(){this.parent.toggleClass("n2_field_text--empty",this.isEmpty(this.element.val()))},t.prototype.isEmpty=function(t){return""===t},t.prototype.focus=function(t){this.connectedField?this.connectedField.focus(t):t&&this.element.focus().select()},t})),c.d("FormElementUnits",["$","FormElement"],(function(){var $=c.$;function t(t,i){this.element=$("#"+t),this.$parent=this.element.parent(),this.options=this.$parent.find(".n2_field_unit__unit"),this.currentUnit=this.$parent.find(".n2_field_unit__current_unit"),this.values=i;for(var s=0;s<this.options.length;s++)this.options.eq(s).on("click",this.switch.bind(this,s));c.FormElement.prototype.constructor.call(this)}return t.prototype=Object.create(c.FormElement.prototype),t.prototype.constructor=t,t.prototype.switch=function(t,e){this.element.val(this.values[t]),this.setSelected(t),this.triggerOutsideChange()},t.prototype.insideChange=function(t){var i=this.values.indexOf(t);this.element.val(this.values[i]),this.setSelected(i),this.triggerInsideChange()},t.prototype.setSelected=function(t){this.currentUnit.html(this.options.eq(t).html())},t})),c.d("FormElementUpload",["$","FormElement"],(function(){var $=c.$;function t(t){this.element=$("#"+t).on("change",this.updateName.bind(this)),this.parent=this.element.parent(),this.$name=this.parent.find(".n2_field_chooser__label"),this.updateName(this.element.val()),c.FormElement.prototype.constructor.call(this)}return t.prototype=Object.create(c.FormElement.prototype),t.prototype.constructor=t,t.prototype.insideChange=function(t){this.updateName(),this.triggerInsideChange()},t.prototype.updateName=function(){var t=this.element[0].value;if(this.parent.toggleClass("n2_field_chooser--empty",""===t),this.isEmpty(t))this.$name.text(n2_("No file selected."));else{var i=t.split("\\").pop();this.$name.text(i)}},t.prototype.isEmpty=function(t){return""===t},t})),c.d("FormElementUrl",["$","FormElementText"],(function(){function t(t,i){c.FormElementText.prototype.constructor.call(this,t),this.parameters=i,this.button=this.parent.find(".n2_field_text__choose").on("click",this.open.bind(this)),this.element.siblings(".n2_field_text__clear").on("click",this.clear.bind(this))}return t.prototype=Object.create(c.FormElementText.prototype),t.prototype.constructor=t,t.prototype.isEmpty=function(t){return""===t||"#"===t},t.prototype.clear=function(e){e.preventDefault(),this.val("#")},t.prototype.val=function(t){this.element.val(t),this.change()},t.prototype.open=function(e){e.preventDefault(),this.element.val(),c.ModalUrl.show(this.element.val(),this.parameters.url,function(t){this.val(t)}.bind(this))},t})),c.r("$",(function(){var $=c.$;function t(t){return t+Math.floor(281474976710656*(1+Math.random())).toString(16)}$.fn.uid=function(i){var s=null;i=i||"n";do{s=t(i)}while($("#"+s).length>0);return s},$.fn.generateUniqueClass=function(i){var s=null;i=i||"n";do{s=t(i)}while($("."+s).length>0);return s}})),c.d("UIAutocomplete",["$","UIWidgetBase"],(function(){var $=c.$;function t(t,i){this.isRendered=!1,this.element=t,this.widgetName=this.widgetName||"UIAutocomplete",this.widgetEventPrefix="autocomplete",this.isActive=!1,this.allowBlur=!0,this.options=f({appendTo:"body",source:null,select:null,positionTo:"self",x:0,y:0},this.options,i),c.UIWidgetBase.prototype.constructor.apply(this,arguments),this.element.on({focus:this.focus.bind(this),blur:this.blur.bind(this)}),"self"===this.options.positionTo?this.positionTo=this.element:this.positionTo=this.element.closest(this.options.positionTo)}return t.prototype=Object.create(c.UIWidgetBase.prototype),t.prototype.constructor=t,t.prototype.focus=function(e){!1===this.isActive&&(this.showList(e),this.element.on("click."+this.widgetEventPrefix,this.showList.bind(this)),this.isActive=!0)},t.prototype.showList=function(e){"function"==typeof this.options.appendTo?this.options.appendTo=this.options.appendTo.call(i):this.options.appendTo=$(this.options.appendTo);var t=this.getList().appendTo(this.options.appendTo),s={left:0,top:0},n=this.positionTo.offset(),h=0;if(!this.options.appendTo.is($("body"))){(s=this.options.appendTo.offset()).top-=this.options.appendTo.scrollTop(),t.css("height","");var r=t.height(),o=this.options.appendTo[0].getBoundingClientRect(),a=this.positionTo[0].getBoundingClientRect(),c=Math.min(o.top+o.height-a.top-a.height-10,r);c<100&&c<r&&(c=Math.min(a.top-o.top-10,r),s.top=s.top+a.height+c),t.css("height",c+"px"),n2const.rtl.isRtl&&(h=o.width-this.options.appendTo[0].clientWidth)}t.css({left:n.left-s.left+this.options.x-h+"px",top:n.top+this.positionTo.outerHeight()-s.top+this.options.y+"px",minWidth:this.element.parent().outerWidth()+"px"}),t.off("."+this.widgetEventPrefix).on("mousedown."+this.widgetEventPrefix,function(e){$(e.target).is(t)&&(this.element.parent().addClass("focus2"),this.allowBlur=!1)}.bind(this)).on("mouseup."+this.widgetEventPrefix,function(e){$(e.target).is(t)&&(this.allowBlur=!0,this.element.focus(),this.element.parent().removeClass("focus2"))}.bind(this))},t.prototype.blur=function(e){this.allowBlur&&(this.hide(),this.element.off("."+this.widgetEventPrefix))},t.prototype.hide=function(){this.$list.detach(),this.isActive=!1},t.prototype.getList=function(){if(!this.isRendered){this.$list=$('<div class="n2_autocomplete_options"></div>').attr({unselectable:"on"}).on({wheel:function(e){e.stopPropagation()}});for(var t=this.options.source.call(this,this.ui()),i=0;i<t.length;i++)$('<div class="n2_autocomplete_option" tabindex="-1">'+t[i]+"</div>").on({mousedown:function(e){e.preventDefault()},click:function(t,e){this._trigger("select",e,{value:t}),this.hide()}.bind(this,t[i])}).appendTo(this.$list);this.isRendered=!0}return this.$list},t.prototype.ui=function(){return{}},t})),c.d("UIDraggableBar",["$","UIMouse"],(function(){"use strict";function t(t,i){this.element=t,this.widgetName=this.widgetName||"UIDraggable",this.widgetEventPrefix="drag",this.options=f({drag:null,start:null,stop:null},this.options,i),c.UIMouse.prototype.constructor.apply(this,arguments),this._mouseInit()}return t.prototype=Object.create(c.UIMouse.prototype),t.prototype.constructor=t,t.prototype._mouseStart=function(t){return this.currentData=this.originalData={margin:parseInt(this.element.css("marginLeft"))},this.originalMousePosition={left:t.pageX},this.element.addClass("nui-draggable-dragging"),this._trigger("start",t,this.ui()),this._mouseDrag(t),!0},t.prototype._mouseDrag=function(t){var i=t.pageX-this.originalMousePosition.left||0;return this.currentData={},this.currentData.margin=Math.max(0,this.originalData.margin+i),this._trigger("drag",t,this.ui()),this.element.css("marginLeft",this.currentData.margin+"px"),!0},t.prototype._mouseStop=function(t){return this._trigger("stop",t,this.ui()),!0},t.prototype.ui=function(){return{currentData:this.currentData}},t})),c.d("UIDraggableDelay",["$","UIMouse"],(function(){"use strict";function t(t,i){this.element=t,this.widgetName=this.widgetName||"UIDraggable",this.widgetEventPrefix="drag",this.options=f({drag:null,start:null,stop:null},this.options,i),c.UIMouse.prototype.constructor.apply(this,arguments),this._mouseInit()}return t.prototype=Object.create(c.UIMouse.prototype),t.prototype.constructor=t,t.prototype._mouseStart=function(t){return this.currentData=this.originalData={width:parseInt(this.element.width())},this.originalMousePosition={left:t.pageX},this.element.addClass("nui-draggable-dragging"),this._trigger("start",t,this.ui()),this._mouseDrag(t),!0},t.prototype._mouseDrag=function(t){var i=t.pageX-this.originalMousePosition.left||0;return this.currentData={},this.currentData.width=Math.max(0,this.originalData.width+i),this._trigger("drag",t,this.ui()),this.element.width(this.currentData.width+"px"),!0},t.prototype._mouseStop=function(t){return this._trigger("stop",t,this.ui()),!0},t.prototype.ui=function(){return{currentData:this.currentData}},t})),c.d("UIDraggable",["$","UIMouse"],(function(){var $=c.$;function t(t,i){this.element=t,this.widgetName=this.widgetName||"UIDraggable",this.widgetEventPrefix="drag",this.options=_({addClasses:!0,appendTo:"parent",axis:!1,containment:!1,cursor:"auto",cursorAt:!1,handle:!1,helper:"original",scroll:!0,scrollSensitivity:20,scrollSpeed:20,min:{top:!1,left:!1},drag:null,start:null,stop:null},this.options,i),c.UIMouse.prototype.constructor.apply(this,arguments),this.create()}t.prototype=Object.create(c.UIMouse.prototype),t.prototype.constructor=t,t.prototype.create=function(){"original"===this.options.helper&&this._setPositionRelative(),this.options.addClasses&&this.element.addClass("nui-draggable"),this._setHandleClassName(),this._mouseInit()},t.prototype._setPositionRelative=function(){/^(?:r|a|f)/.test(this.element.css("position"))||(this.element[0].style.position="relative")},t.prototype._getHandle=function(t){return!this.options.handle||!!$(t.target).closest(this.element.find(this.options.handle)).length},t.prototype._setHandleClassName=function(){this.handleElement=this.options.handle?this.element.find(this.options.handle):this.element,this.handleElement.addClass("nui-draggable-handle")},t.prototype._mouseCapture=function(t){var i=this.options;return!(this.helper||i.disabled||$(t.target).closest(".nui_resize_absolute").length>0)&&(this.handle=this._getHandle(t),!!this.handle&&(this._blurActiveElement(t),!0))},t.prototype.cancel=function(){return this.helper.is(".nui-draggable-dragging")?this._mouseUp(new $.Event("mouseup",{target:this.element[0]})):this._clear(),this},$.fn.nuiScrollParent=function(t){var i=this.css("position"),n="absolute"===i,h=t?/(auto|scroll|hidden)/:/(auto|scroll)/,r=this.parents().filter((function(){var t=$(this);return(!n||"static"!==t.css("position"))&&h.test(t.css("overflow")+t.css("overflow-y")+t.css("overflow-x"))})).eq(0);return"fixed"!==i&&r.length?r:$(this[0].ownerDocument||s)},t.prototype._mouseStart=function(t){var i=this.options;return this.helper=this._createHelper(t),this.helper.addClass("nui-draggable-dragging"),this._cacheHelperProportions(),this._cacheMargins(),this.cssPosition=this.helper.css("position"),this.scrollParent=this.helper.nuiScrollParent(!0),this.offsetParent=this.helper.offsetParent(),this.hasFixedAncestor=this.helper.parents().filter((function(){return"fixed"===$(this).css("position")})).length>0,this.positionAbs=this.element.offset(),this._refreshOffsets(t),this.originalPosition=this.position=this._generatePosition(t,!1),this.originalPageX=t.pageX,this.originalPageY=t.pageY,i.cursorAt&&this._adjustOffsetFromHelper(i.cursorAt),this._setContainment(),!1===this._trigger("start",t)?(this._clear(),!1):(this._cacheHelperProportions(),this._mouseDrag(t,!0),!0)},t.prototype._mouseDrag=function(t,i){if(this.hasFixedAncestor&&(this.offset.parent=this._getParentOffset()),this.position=this._generatePosition(t,!0),this.positionAbs=this._convertPositionTo("absolute"),!i){var s=this._uiHash();if(!1===this._trigger("drag",t,s))return this._mouseUp(new $.Event("mouseup",t)),!1;this.position=s.position}return!1!==this.options.min.top&&(this.position.top=Math.max(this.position.top,this.options.min.top)),!1!==this.options.min.left&&(this.position.left=Math.max(this.position.left,this.options.min.left)),this.helper[0].style.left=this.position.left+"px",this.helper[0].style.top=this.position.top+"px",!1},t.prototype._mouseStop=function(t){return!1!==this._trigger("stop",t)&&this._clear(),!1},t.prototype._mouseUp=function(t){return this.handleElement.is(t.target)&&this.element.trigger("focus"),c.UIMouse.prototype._mouseUp.call(this,t)},t.prototype._trigger=function(t,i,s){return s=s||this._uiHash(),c.UIWidgetBase.prototype._trigger.call(this,t,i,s)},t.prototype._uiHash=function(){return{helper:this.helper,position:this.position,originalPosition:this.originalPosition}},t.prototype._createHelper=function(t){var i=this.options,s="function"==typeof i.helper,n=s?$(i.helper.apply(this.element[0],[t])):"clone"===i.helper?this.element.clone().removeAttr("id"):this.element;return n.parents("body").length||n.appendTo("parent"===i.appendTo?this.element[0].parentNode:i.appendTo),s&&n[0]===this.element[0]&&this._setPositionRelative(),n[0]===this.element[0]||/(fixed|absolute)/.test(n.css("position"))||n.css("position","absolute"),n},t.prototype._cacheHelperProportions=function(){this.helperProportions={width:this.helper.outerWidth(),height:this.helper.outerHeight()}},t.prototype._cacheMargins=function(){this.margins={left:parseInt(this.element.css("marginLeft"),10)||0,top:parseInt(this.element.css("marginTop"),10)||0,right:parseInt(this.element.css("marginRight"),10)||0,bottom:parseInt(this.element.css("marginBottom"),10)||0}},t.prototype._refreshOffsets=function(t){this.offset={top:this.positionAbs.top-this.margins.top,left:this.positionAbs.left-this.margins.left,scroll:!1,parent:this._getParentOffset(),relative:this._getRelativeOffset()},this.offset.click={left:t.pageX-this.offset.left,top:t.pageY-this.offset.top}},t.prototype._getParentOffset=function(){var t=this.offsetParent.offset(),i=this.document[0];return"absolute"===this.cssPosition&&this.scrollParent[0]!==i&&$.contains(this.scrollParent[0],this.offsetParent[0])&&(t.left+=this.scrollParent.scrollLeft(),t.top+=this.scrollParent.scrollTop()),this._isRootNode(this.offsetParent[0])&&(t={top:0,left:0}),{top:t.top+(parseInt(this.offsetParent.css("borderTopWidth"),10)||0),left:t.left+(parseInt(this.offsetParent.css("borderLeftWidth"),10)||0)}},t.prototype._getRelativeOffset=function(){if("relative"!==this.cssPosition)return{top:0,left:0};var t=this.element.position(),i=this._isRootNode(this.scrollParent[0]);return{top:t.top-(parseInt(this.helper.css("top"),10)||0)+(i?0:this.scrollParent.scrollTop()),left:t.left-(parseInt(this.helper.css("left"),10)||0)+(i?0:this.scrollParent.scrollLeft())}},t.prototype._convertPositionTo=function(t,i){i||(i=this.position);var s="absolute"===t?1:-1,n=this._isRootNode(this.scrollParent[0]);return{top:i.top+this.offset.relative.top*s+this.offset.parent.top*s-("fixed"===this.cssPosition?-this.offset.scroll.top:n?0:this.offset.scroll.top)*s,left:i.left+this.offset.relative.left*s+this.offset.parent.left*s-("fixed"===this.cssPosition?-this.offset.scroll.left:n?0:this.offset.scroll.left)*s}},t.prototype._setContainment=function(){var t,s,n,r=this.options;this.document[0];this.relativeContainer=null,r.containment?"window"!==r.containment?"document"!==r.containment?r.containment.constructor!==Array?("parent"===r.containment&&(r.containment=this.helper[0].parentNode),(n=(s=$(r.containment))[0])&&(t=/(scroll|auto)/.test(s.css("overflow")),this.containment=[(parseInt(s.css("borderLeftWidth"),10)||0)+(parseInt(s.css("paddingLeft"),10)||0),(parseInt(s.css("borderTopWidth"),10)||0)+(parseInt(s.css("paddingTop"),10)||0),(t?Math.max(n.scrollWidth,n.offsetWidth):n.offsetWidth)-(parseInt(s.css("borderRightWidth"),10)||0)-(parseInt(s.css("paddingRight"),10)||0)-this.helperProportions.width-this.margins.left-this.margins.right,(t?Math.max(n.scrollHeight,n.offsetHeight):n.offsetHeight)-(parseInt(s.css("borderBottomWidth"),10)||0)-(parseInt(s.css("paddingBottom"),10)||0)-this.helperProportions.height-this.margins.top-this.margins.bottom],this.relativeContainer=s)):this.containment=r.containment:this.containment=[0,0,h.scrollWidth-this.helperProportions.width-this.margins.left,h.scrollHeight-this.helperProportions.height-this.margins.top]:this.containment=[tt()-this.offset.relative.left-this.offset.parent.left,Q()-this.offset.relative.top-this.offset.parent.top,tt()+i.innerWidth-this.helperProportions.width-this.margins.left,Q()+i.innerHeight-this.helperProportions.height-this.margins.top]:this.containment=null},t.prototype._adjustOffsetFromHelper=function(t){"string"==typeof t&&(t=t.split(" ")),Array.isArray(t)&&(t={left:+t[0],top:+t[1]||0}),"left"in t&&(this.offset.click.left=t.left+this.margins.left),"right"in t&&(this.offset.click.left=this.helperProportions.width-t.right+this.margins.left),"top"in t&&(this.offset.click.top=t.top+this.margins.top),"bottom"in t&&(this.offset.click.top=this.helperProportions.height-t.bottom+this.margins.top)},t.prototype._isRootNode=function(t){return/(html|body)/i.test(t.tagName)||t===this.document[0]},t.prototype._generatePosition=function(t,i){var s,n,h=this.options,r=this._isRootNode(this.scrollParent[0]),o=t.pageX,a=t.pageY;return r&&this.offset.scroll||(this.offset.scroll={top:this.scrollParent.scrollTop(),left:this.scrollParent.scrollLeft()}),i&&(this.containment&&(this.relativeContainer?(n=this.relativeContainer.offset(),s=[this.containment[0]+n.left,this.containment[1]+n.top,this.containment[2]+n.left,this.containment[3]+n.top]):s=this.containment,t.pageX-this.offset.click.left<s[0]&&(o=s[0]+this.offset.click.left),t.pageY-this.offset.click.top<s[1]&&(a=s[1]+this.offset.click.top),t.pageX-this.offset.click.left>s[2]&&(o=s[2]+this.offset.click.left),t.pageY-this.offset.click.top>s[3]&&(a=s[3]+this.offset.click.top)),"y"===h.axis&&(o=this.originalPageX),"x"===h.axis&&(a=this.originalPageY)),{top:a-this.offset.click.top-this.offset.relative.top-this.offset.parent.top+("fixed"===this.cssPosition?-this.offset.scroll.top:r?0:this.offset.scroll.top),left:o-this.offset.click.left-this.offset.relative.left-this.offset.parent.left+("fixed"===this.cssPosition?-this.offset.scroll.left:r?0:this.offset.scroll.left)}},t.prototype._clear=function(){this.helper.removeClass("nui-draggable-dragging"),this.helper[0]===this.element[0]||this.cancelHelperRemoval||this.helper.remove(),this.helper=null,this.cancelHelperRemoval=!1,this.destroyOnClear&&this.destroy()};return t.prototype._blurActiveElement=function(t){var i,s=function(t){var i;try{i=t.activeElement}catch(t){i=h}return i||(i=h),i.nodeName||(i=h),i}(this.document[0]);$(t.target).closest(s).length||(i=s)&&"body"!==i.nodeName.toLowerCase()&&$(i).trigger("blur")},t})),c.d("UILayerWindow",["$","UIMouse"],(function(){var $=c.$;function t(t,i){this.element=t,this.widgetName=this.widgetName||"UILayerWindow",this.widgetEventPrefix="layerWindow",this.options=_(this.options,i),c.UIMouse.prototype.constructor.apply(this,arguments),this.create()}return t.prototype=Object.create(c.UIMouse.prototype),t.prototype.constructor=t,t.prototype.create=function(){this.bodyRect=h.getBoundingClientRect(),i.addEventListener("resize",function(){this.bodyRect=h.getBoundingClientRect(),this.limitHorizontal(this.left,this.width,!0),this.limitVertical(this.top,this.height,!0)}.bind(this),{passive:!0}),this.left=parseInt(localStorage.getItem("ssPanelLeft")),this.left||(this.left=200),this.top=parseInt(localStorage.getItem("ssPanelTop")),this.top||(this.top=100),this.width=355,this.height=parseInt(localStorage.getItem("ssPanelHeight")),this.height||(this.height=400),this.limitHorizontal(this.left,this.width),this.limitVertical(this.top,this.height),this._setupHandles(),this._mouseInit()},t.prototype._setupHandles=function(){this.$title=this.element.find(".n2_ss_layer_window__title_inner").on("mousedown",this._mouseDown.bind(this)),this.$resize=$('<div class="n2_ss_layer_window__resize"></div>').on("mousedown",this._mouseDown.bind(this)).appendTo(this.element)},t.prototype._mouseInit=function(){},t.prototype._mouseCapture=function(e){return this.$title.is(e.target)?(this.currentAction="move",!0):!!this.$resize.is(e.target)&&(this.currentAction="resize",!0)},t.prototype._mouseStart=function(e){var t=this.element[0].getBoundingClientRect();this.context={},"move"===this.currentAction?this.context.mouseDiff={x:e.clientX-t.left,y:e.clientY-t.top}:"resize"===this.currentAction&&(this.context.mouseDiff={y:e.clientY-t.top-t.height})},t.prototype._mouseDrag=function(e){"move"===this.currentAction?(this.limitHorizontal(e.clientX-this.context.mouseDiff.x,this.width),this.limitVertical(e.clientY-this.context.mouseDiff.y,this.height)):"resize"===this.currentAction&&this.limitVertical(this.top,e.clientY-this.top-this.context.mouseDiff.y)},t.prototype._mouseStop=function(e){"move"===this.currentAction?(this.limitHorizontal(e.clientX-this.context.mouseDiff.x,this.width,!0),this.limitVertical(e.clientY-this.context.mouseDiff.y,this.height,!0)):"resize"===this.currentAction&&this.limitVertical(this.top,e.clientY-this.top-this.context.mouseDiff.y,!0),delete this.currentAction},t.prototype.limitVertical=function(t,i,s){this.height=i,this.top=Math.min(Math.max(t,60),this.bodyRect.height-this.height),this.top<60&&(this.height=this.height+this.top-60,this.top=60),this.height=Math.max(this.height,200),this.element.css({top:this.top+"px",height:this.height+"px"}),s&&(localStorage.setItem("ssPanelTop",this.top),localStorage.setItem("ssPanelHeight",this.height))},t.prototype.limitHorizontal=function(t,i,s){this.left=Math.min(Math.max(t,50),this.bodyRect.width-i),this.element.css({left:this.left+"px"}),s&&localStorage.setItem("ssPanelLeft",this.left)},t})),c.d("UIMouse",["$","UIWidgetBase"],(function(){var $=c.$,t=!!/msie [\w.]+/.exec(navigator.userAgent.toLowerCase()),i=!1;function n(t,i){this.widgetName=this.widgetName||"UIMouse",this.options=f({cancel:"input, textarea, button, select, option",distance:1,delay:0},this.options),c.UIWidgetBase.prototype.constructor.apply(this,arguments)}return $(s).on("mouseup",(function(){i=!1})),n.prototype=Object.create(c.UIWidgetBase.prototype),n.prototype.constructor=n,n.prototype._mouseInit=function(){var t=this;this.element.on("mousedown."+this.widgetName,(function(i){return t._mouseDown(i)})).on("click."+this.widgetName,(function(i){if(!0===$.data(i.target,t.widgetName+".preventClickEvent"))return $.removeData(i.target,t.widgetName+".preventClickEvent"),i.stopImmediatePropagation(),!1}))},n.prototype._mouseDestroy=function(){this.element.off("."+this.widgetName),this._mouseMoveDelegate&&this.document.off("mousemove."+this.widgetName,this._mouseMoveDelegate).off("mouseup."+this.widgetName,this._mouseUpDelegate)},n.prototype._mouseDown=function(t){if(!i){s.activeElement&&s.activeElement!==h&&s.activeElement.blur(),this._mouseMoved=!1,this._mouseStarted&&this._mouseUp(t),this._mouseDownEvent=t;var n=this,r=1===t.which,a=!("string"!=typeof this.options.cancel||!t.target.nodeName)&&$(t.target).closest(this.options.cancel).length;return!(r&&!a&&this._mouseCapture(t))||(this.mouseDelayMet=!this.options.delay,this.mouseDelayMet||(this._mouseDelayTimer=o((function(){n.mouseDelayMet=!0}),this.options.delay)),this._mouseDistanceMet(t)&&this._mouseDelayMet(t)&&(this._mouseStarted=!1!==this._mouseStart(t),!this._mouseStarted)?(t.preventDefault(),!0):(!0===$.data(t.target,this.widgetName+".preventClickEvent")&&$.removeData(t.target,this.widgetName+".preventClickEvent"),this._mouseMoveDelegate=function(t){return n._mouseMove(t)},this._mouseUpDelegate=function(t){return n._mouseUp(t)},this.document.on("mousemove."+this.widgetName,this._mouseMoveDelegate).on("mouseup."+this.widgetName,this._mouseUpDelegate),t.preventDefault(),i=!0,!0))}},n.prototype._mouseMove=function(i){if(this._mouseMoved){if(t&&(!s.documentMode||s.documentMode<9)&&!i.button)return this._mouseUp(i);if(!i.which)if(i.originalEvent.altKey||i.originalEvent.ctrlKey||i.originalEvent.metaKey||i.originalEvent.shiftKey)this.ignoreMissingWhich=!0;else if(!this.ignoreMissingWhich)return this._mouseUp(i)}return(i.which||i.button)&&(this._mouseMoved=!0),this._mouseStarted?(this._mouseDrag(i),i.preventDefault()):(this._mouseDistanceMet(i)&&this._mouseDelayMet(i)&&(this._mouseStarted=!1!==this._mouseStart(this._mouseDownEvent,i),this._mouseStarted?this._mouseDrag(i):this._mouseUp(i)),!this._mouseStarted)},n.prototype._mouseUp=function(t){this.document.off("mousemove."+this.widgetName,this._mouseMoveDelegate).off("mouseup."+this.widgetName,this._mouseUpDelegate),this._mouseStarted?(this._mouseStarted=!1,t.target===this._mouseDownEvent.target&&$.data(t.target,this.widgetName+".preventClickEvent",!0),this._mouseStop(t)):this._mouseCancel(t),this._mouseDelayTimer&&(a(this._mouseDelayTimer),delete this._mouseDelayTimer),this.ignoreMissingWhich=!1,i=!1,t.preventDefault()},n.prototype._mouseDistanceMet=function(t){return Math.max(Math.abs(this._mouseDownEvent.pageX-t.pageX),Math.abs(this._mouseDownEvent.pageY-t.pageY))>=this.options.distance},n.prototype._mouseDelayMet=function(){return this.mouseDelayMet},n.prototype._mouseStart=function(){},n.prototype._mouseDrag=function(){},n.prototype._mouseStop=function(){},n.prototype._mouseCancel=function(){},n.prototype._mouseCapture=function(){return!0},n})),c.d("UIResizeBar",["$","UIMouse"],(function(){var $=c.$;function t(t,i){this.element=t,this.widgetName=this.widgetName||"UIResizable",this.widgetEventPrefix="resize",this.options=f({resize:null,start:null,stop:null},this.options,i),c.UIMouse.prototype.constructor.apply(this,arguments),this.create()}return t.prototype=Object.create(c.UIMouse.prototype),t.prototype.constructor=t,t.prototype.create=function(){this.options;this.element.addClass("nui_resize_bar"),this._setupHandles(),this._mouseInit(),this._trigger("create",null,{})},t.prototype._setupHandles=function(){var t=["e","w"];this.handles={},this.$handles=$();for(var i=0;i<t.length;i++){var s=t[i],n=$("<div>").addClass("nui_resize_bar__handle nui_resize_bar__handle--"+s).on({mousedown:function(t,e){this.currentHandle=t,this._mouseDown(e)}.bind(this,s)}).appendTo(this.element);this.handles[s]=n,this.$handles=this.$handles.add(n)}},t.prototype._mouseStart=function(t){this.currentData=this.originalData={margin:parseInt(this.element.css("marginLeft")),width:parseInt(this.element.width())},this.originalMousePosition={left:t.pageX};var i=this.handles[this.currentHandle].css("cursor");return $("body").css("cursor",i),this._trigger("start",t,this.ui()),!0},t.prototype._mouseDrag=function(t){var i=t.pageX-this.originalMousePosition.left||0;this.currentData={},"e"===this.currentHandle?(this.currentData.margin=this.originalData.margin,this.currentData.width=Math.max(0,this.originalData.width+i)):"w"===this.currentHandle&&(this.currentData.margin=Math.max(0,this.originalData.margin+i),this.currentData.width=Math.max(0,this.originalData.width-i)),this.currentData.width=Math.max(0,this.currentData.width),this._trigger("resize",t,this.ui()),this.element.css("marginLeft",this.currentData.margin+"px"),this.element.css("width",this.currentData.width+"px")},t.prototype._mouseStop=function(t){$("body").css("cursor","auto"),this._trigger("stop",t,this.ui())},t.prototype.ui=function(){return{currentData:this.currentData}},t})),c.d("UISlider",["$","UIMouse"],(function(){var $=c.$;function t(t,i){this.element=$(t),this.widgetName=this.widgetName||"UISlider",this.widgetEventPrefix="sliding",this.options=f({min:0,max:100,step:1,value:0,change:null,sliding:null,start:null,stop:null},this.options,i),c.UIMouse.prototype.constructor.apply(this,arguments),this.create()}return t.prototype=Object.create(c.UIMouse.prototype),t.prototype.constructor=t,t.prototype.create=function(){this._mouseSliding=!1,this._mouseInit(),this._calculateNewMax(),this.element.addClass("nui-slider nui-slider-horizontal"),this._refresh()},t.prototype.doAction=function(t){switch(c.UIWidgetBase.prototype.doAction.apply(this,arguments),t){case"value":return this._value()}},t.prototype.setOption=function(t,i){switch(c.UIWidgetBase.prototype.setOption.call(this,t,i),t){case"value":this._refreshValue(),this._change(null,0);break;case"step":case"min":case"max":this._calculateNewMax(),this._refreshValue()}},t.prototype._refresh=function(){this._createHandle(),this._refreshValue()},t.prototype._createHandle=function(){var t=this.element.find(".nui-slider-handle");t.length?this.handle=t:this.handle=$("<span></span>"),this.handle.addClass("nui-slider-handle").appendTo(this.element)},t.prototype._mouseCapture=function(t){var i,s,n=this.handle;return!this.options.disabled&&(this.elementSize={width:this.element.outerWidth(),height:this.element.outerHeight()},this.elementOffset=this.element.offset(),i={x:t.pageX,y:t.pageY},s=this._normValueFromMouse(i),!1!==this._start(t)&&(this._mouseSliding=!0,n.trigger("focus"),this._slide(t,s),!0))},t.prototype._mouseStart=function(){return this.lastValue=Number.MAX_VALUE,!0},t.prototype._mouseDrag=function(t){var i={x:t.pageX,y:t.pageY},s=this._normValueFromMouse(i);return this.lastValue!=s&&(this._slide(t,s),this.lastValue=s),!1},t.prototype._mouseStop=function(t){return this._mouseSliding=!1,this._stop(t),this._change(t),!1},t.prototype._mouseCancel=function(e){this._trigger("cancel",e)},t.prototype._normValueFromMouse=function(t){var i,s,n,h;return i=this.elementSize.width,(s=(t.x-this.elementOffset.left)/i)>1&&(s=1),s<0&&(s=0),n=this._valueMax()-this._valueMin(),h=this._valueMin()+s*n,this._trimAlignValue(h)},t.prototype._trimAlignValue=function(t){if(t<=this._valueMin())return this._valueMin();if(t>=this._valueMax())return this._valueMax();var i=this.options.step>0?this.options.step:1,s=(t-this._valueMin())%i,n=t-s;return 2*Math.abs(s)>=i&&(n+=s>0?i:-i),parseFloat(n.toFixed(5))},t.prototype._calculateNewMax=function(){var t=this.options.max,i=this._valueMin(),s=this.options.step;(t=Math.round((t-i)/s)*s+i)>this.options.max&&(t-=s),this.max=parseFloat(t.toFixed(this._precision()))},t.prototype._precision=function(){var t=this._precisionOf(this.options.step);return null!==this.options.min&&(t=Math.max(t,this._precisionOf(this.options.min))),t},t.prototype._precisionOf=function(t){var i=t.toString(),s=i.indexOf(".");return-1===s?0:i.length-s-1},t.prototype._change=function(t){this._mouseSliding||this._trigger("change",t,this._uiHash())},t.prototype.value=function(t){return arguments.length?(this.options.value=this._trimAlignValue(t),this._refreshValue(),void this._change(null,0)):this._value()},t.prototype._value=function(){var t=this.options.value;return t=this._trimAlignValue(t)},t.prototype._valueMin=function(){return this.options.min},t.prototype._valueMax=function(){return this.max},t.prototype._refreshValue=function(){var t=this.value(),i=this._valueMin(),s=this._valueMax(),n=s!==i?(t-i)/(s-i)*100:0;this.handle.css("left",n+"%")},t.prototype._uiHash=function(t){return{handle:this.handle[0],value:t!==r?t:this.value()}},t.prototype._start=function(t){return this._trigger("start",t,this._uiHash())},t.prototype._slide=function(t,i){i!==this.value()&&!1!==this._trigger("sliding",t,this._uiHash(i))&&this.value(i)},t.prototype._stop=function(t){this._trigger("stop",t,this._uiHash())},t})),c.d("UISortable",["$","UIMouse"],(function(){var $=c.$;function t(t,i){this.element=t,this.widgetName=this.widgetName||"UISortable",this.widgetEventPrefix="sortable",this.options=f({items:"> *",handle:"",placeholder:!1,helper:"original",forcePlaceholderSize:!1,forceHelperSize:!1,axis:!1,droppables:!1},this.options,i),this.isOver=!1,c.UIMouse.prototype.constructor.apply(this,arguments),this.create()}return t.prototype=Object.create(c.UIMouse.prototype),t.prototype.constructor=t,t.prototype.create=function(){this._mouseInit()},t.prototype._mouseCapture=function(e){if(this.options.disabled)return!1;var t=null,i=$(e.target);if(""!==this.options.handle){var s=this.element.find(this.options.items+" "+this.options.handle);if(-1===s.index(i)&&!s.has(i).length)return!1}var n=this.element.find(this.options.items);return!!(t=-1!==n.index(i)?i:n.has(i)).length&&(this.currentItem=t,!0)},t.prototype._mouseStart=function(e){this._trigger("beforestart",e,{currentItem:this.currentItem}),this.context={e:e,original:{pageX:e.pageX,pageY:e.pageY,clientX:e.clientX,clientY:e.clientY,elementBCR:this.element[0].getBoundingClientRect(),currentItemBCR:this.currentItem[0].getBoundingClientRect()},offsetShift:{top:0,left:0},scrollCB:this._mouseScroll.bind(this)},this.element.addClass("n2-ui-sortable-in-progress"),this._cacheItems(),this.placeholder=$("<div></div>").addClass(this.options.placeholder||this.currentItem[0].className);var t={width:this.currentItem.width()+"px",height:this.currentItem.height()+"px"};"clone"===this.options.helper?this.helper=this.currentItem.clone():"clone_hide"===this.options.helper?(this.helper=this.currentItem.clone(),this.currentItem.css("display","none")):this.helper=this.currentItem,this.options.forceHelperSize&&this.helper.css(t),this.options.forcePlaceholderSize&&this.placeholder.css(t),this.helper.addClass("n2-ui-sortable-helper").css({position:"absolute",zIndex:"1000"}).appendTo(this.element),this._trigger("start",e,this.ui()),i.addEventListener("scroll",this.context.scrollCB,{capture:!0,passive:!0})},t.prototype._mouseDrag=function(e){this.context.e=e;var t=this.element[0].getBoundingClientRect(),i={};if(!this.options.axis||"x"===this.options.axis){var s=t.left+this.context.original.clientX-e.clientX;this.context.offsetShift.left=e.pageX-this.context.original.pageX-this.context.original.elementBCR.left+s,i.left=this.context.original.currentItemBCR.left-s+"px"}if(!this.options.axis||"y"===this.options.axis){var n=t.top+this.context.original.clientY-e.clientY;this.context.offsetShift.top=e.pageY-this.context.original.pageY-this.context.original.elementBCR.top+n,i.top=this.context.original.currentItemBCR.top-n+"px"}this.helper.css(i);var h=this._findClosestItem(e),r="before"===h[1]?this.items[Math.max(0,h[2]-1)]:this.items[Math.min(this.items.length-1,h[2])];"clone"===this.options.helper&&(h[0].is(this.currentItem)||$(r).is(this.currentItem))?this.placeholder.detach():this.positionPlaceholder(h),this.options.droppables&&("over"!==h[1]?this.isOver&&(this._trigger("out",e,this.ui()),this.isOver=!1):(this.isOver&&!this.isOver.is(h[0])&&(this._trigger("out",e,this.ui()),this.isOver=!1),this.isOver||(this.isOver=h[0],this._trigger("over",e,this.ui()))))},t.prototype.positionPlaceholder=function(t){switch(t[1]){case"before":this.placeholder.insertBefore(t[0]);break;case"after":this.placeholder.insertAfter(t[0]);break;case"over":this.placeholder.detach()}},t.prototype._mouseStop=function(e){this.context.e=e,this._trigger("beforestop",e,this.ui()),i.removeEventListener("scroll",this.context.scrollCB,{capture:!0,passive:!0}),this.placeholder.remove();var t=this._findClosestItem(e);switch(t[1]){case"before":this.currentItem.insertBefore(t[0]);break;case"after":this.currentItem.insertAfter(t[0])}this.helper.removeClass("n2-ui-sortable-helper").css({position:"",zIndex:"",left:"",top:""}),"clone"!==this.options.helper&&"clone_hide"!==this.options.helper||this.helper.remove(),"clone_hide"===this.options.helper&&this.currentItem.css("display",""),this.element.removeClass("n2-ui-sortable-in-progress"),"over"===t[1]?(this._trigger("drop",e,this.ui()),this._trigger("out",e,this.ui())):this._trigger("stop",e,this.ui()),this.currentItem=null},t.prototype._findClosestItem=function(e){for(var t,i,s,n=Number.MAX_VALUE,h=e.pageX-this.context.offsetShift.left,r=e.pageY-this.context.offsetShift.top,o=0;o<this.itemsData.length;o++){var a=this.itemsData[o];for(var c in a.side){var l=Math.sqrt(Math.pow((h-a.side[c].left)/a.width,2)+Math.pow((r-a.side[c].top)/a.height,2));l<n&&(n=l,t=a.item,i=c,"after"===c?s=o+1:"before"===c&&(s=o))}}return[t,i,s]},t.prototype.getItems=function(){return this.element.find(this.options.items)},t.prototype._cacheItems=function(){this.items=this.getItems(),this.itemsData=[];for(var t=0;t<this.items.length;t++)if("original"!==this.options.helper||this.items[t]!==this.currentItem[0]){var s=this.items.eq(t).offset(),n=this.items.eq(t).width(),h=this.items.eq(t).height(),r={};if(this.options.droppables&&!this.currentItem.hasClass(this.options.droppables)&&this.items.eq(t).hasClass(this.options.droppables)?(r.before={left:s.left+n/6,top:s.top+h/6},r.over={left:s.left+3*n/6,top:s.top+3*h/6},r.after={left:s.left+5*n/6,top:s.top+5*h/6}):(r.before={left:s.left+n/4,top:s.top+h/4},r.after={left:s.left+3*n/4,top:s.top+3*h/4}),i.n2const.isRTL()){var o=r.after;r.after=r.before,r.before=o}this.itemsData.push({item:this.items.eq(t),side:r,width:n,height:h})}},t.prototype._mouseScroll=function(){var e=this.context.e;s.dispatchEvent(new MouseEvent("mousemove",{clientX:e.clientX,clientY:e.clientY}))},t.prototype.ui=function(){return{placeholder:this.placeholder,helper:this.helper,item:this.currentItem,droppable:this.isOver}},t})),c.d("UIWidgetBase",["$"],(function(){var $=c.$;function t(t,i){var s=t[0];this.document=$(s.style?s.ownerDocument:s.document||s),this.window=$(this.document[0].defaultView||this.document[0].parentWindow),this.disabled=!1,this.plugins=[]}return t.prototype.setOption=function(t,i){return this.options[t]=i,this},t.prototype.destroy=function(){return this},t.prototype._trigger=function(t,i,s){var n,h,r=this.options[t];if(s=s||{},(i=$.Event(i)).type=(t===this.widgetEventPrefix?t:this.widgetEventPrefix+t).toLowerCase(),i.target=this.element[0],h=i.originalEvent)for(n in h)n in i||(i[n]=h[n]);return this.element.trigger(i,s),!("function"==typeof r&&!1===r.apply(this.element[0],[i].concat(s))||i.isDefaultPrevented())},t.prototype._triggerInteraction=function(){this.element.trigger("interaction")},t.addPlugin=function(t,i,s){for(var n in s)t.plugins[n]=t.plugins[n]||[],t.plugins[n].push([i,s[n]])},t.prototype.callPlugin=function(t,i,s){var n=this.constructor.plugins[t];if(n&&(s||this.element[0].parentNode&&11!==this.element[0].parentNode.nodeType))for(var h=0;h<n.length;h++)this.options[n[h][0]]&&n[h][1].apply(this.element,i)},t})),c.d("NextendVisualCore",["$"],(function(){function t(t,i){this.id=t.id,this.visualManager=i,this.setValue(t.value,!1),this.visual=t,this.visualManager.visuals[this.id]=this}return t.prototype.compare=function(t){for(var i=Math.max(this.value.length,t.length),s=0;s<i;s++)if(!this._compareTab(this.value[s]===r?{}:this.value[s],t[s]===r?{}:t[s]))return!1;return!0},t.prototype._compareTab=function(t,i){var s=Object.getOwnPropertyNames(t),n=Object.getOwnPropertyNames(i);if(0===t.length&&0===n.length)return!0;if(s.length!=n.length)return!1;for(var h=0;h<s.length;h++){var r=s[h];if(t[r]!==i[r])return!1}return!0},t.prototype.setValue=function(t,i){var s=null;if("string"==typeof t){var n=t;"{"!=n[0]?(this.base64=n,n=c.Base64.decode(n)):this.base64=c.Base64.encode(n),s=JSON.parse(n)}else s=t;this.name=s.name,this.value=s.data,i&&this.render()},t.prototype.isSystem=function(){return 1==this.visual.system},t.prototype.isEditable=function(){return 1==this.visual.editable},t.prototype.activate=function(e,t){e&&e.preventDefault(),this.visualManager.changeActiveVisual(this),"function"==typeof t?this.visualManager.controller.asyncVisualData(this.value,this.visualManager.showParameters,t):this.visualManager.controller.load(this.value,!1,this.visualManager.showParameters)},t.prototype.active=function(){},t.prototype.notActive=function(){},t.prototype.delete=function(e){e&&e.preventDefault(),this._delete()},t.prototype._delete=function(){return c.AjaxHelper.ajax({type:"POST",url:c.AjaxHelper.makeAjaxUrl(this.visualManager.parameters.ajaxUrl,{nextendaction:"deleteVisual"}),data:{visualId:this.id},dataType:"json"}).done(function(t){t.data.visual;this.visualManager.activeVisual&&this.id==this.visualManager.activeVisual.id&&this.visualManager.changeActiveVisual(null),delete this.visualManager.visuals[this.id],delete this.set.visuals[this.id],this.row.remove(),this.visualManager.$.trigger("visualDelete",[this.id]),c.Notification.success(n2_("Deleted."))}.bind(this))},t.prototype.render=function(){},t.prototype.isUsed=function(){return!1},t})),c.d("NextendFragmentEditorController",["$","NextendFragmentEditorControllerWithEditor"],(function(){var $=c.$;function t(){c.NextendFragmentEditorControllerWithEditor.prototype.constructor.apply(this,arguments),this.clearTabButton=$("#n2-"+this.type+"-editor"+this.type+"-clear-tab").on("click",this.clearCurrentTab.bind(this)),this.$tabField=$("#n2-"+this.type+"-editor"+this.type+"-state").on("nextendChange.n2-editor",this.tabChanged.bind(this)),this.$tabContainer=$("#n2-"+this.type+"-editor"+this.type+"-state_tab")}return t.prototype=Object.create(c.NextendFragmentEditorControllerWithEditor.prototype),t.prototype.constructor=t,t.prototype.loadDefaults=function(){c.NextendFragmentEditorControllerWithEditor.prototype.loadDefaults.call(this),this.currentTabIndex=0,this._renderTimeout=!1,this._delayStart=0},t.prototype._load=function(t,i,s){this.currentVisual=[];for(var n=0;n<t.length;n++)this.currentVisual[n]=_(this.getCleanVisual(),t[n]);this.localModePreview={},this.mode=s.previewMode,!1===i&&(i=this.getTabs());for(n=this.currentVisual.length;n<i.length;n++)this.currentVisual[n]=this.getCleanVisual();if(!1!==s.previewHTML&&""!==s.previewHTML&&(this.localModePreview[s.previewMode]=s.previewHTML),this.setPreview(),!1===i){i=[];for(n=0;n<this.currentVisual.length;n++)i.push("#"+n)}this.setTabs(i)},t.prototype.getCleanVisual=function(){return{}},t.prototype.getTabs=function(){return[]},t.prototype.setTabs=function(t){for(var i=this.$tabField.data("field"),s={},n=0;n<t.length;n++)s[n]=t[n];i.setOptions(s,this.$tabContainer,"0"),i.insideChange("0")},t.prototype.tabChanged=function(){s.activeElement&&s.activeElement.blur();var t=this.$tabField.val();this.currentTabIndex=t,this.currentVisual[t]===r&&(this.currentVisual[t]={});var i=f({},this.currentVisual[0]);"0"!==t?(f(i,this.currentVisual[t]),this.clearTabButton.css("display","")):this.clearTabButton.css("display","none"),this.editor.load(i),this._tabChanged()},t.prototype._tabChanged=function(){this.renderCSS()},t.prototype.clearCurrentTab=function(e){e&&e.preventDefault(),this.currentVisual[this.currentTabIndex]={},this.tabChanged(),this.renderCSS()},t.prototype.setPreview=function(){},t.prototype.propertyChanged=function(e,t,i){this.isChanged=!0,this.currentVisual[this.currentTabIndex][t]=i,this.renderPreview()},t.prototype.renderPreview=function(){var t=$.now();this._renderTimeout?(a(this._renderTimeout),t-this._delayStart>100&&(this.renderCSS(),this._delayStart=t)):this._delayStart=t,this._renderTimeout=o(this.renderCSS.bind(this),33)},t.prototype.renderCSS=function(){this._renderTimeout=!1},t})),c.d("NextendFragmentEditorControllerWithEditor",["$"],(function(){var $=c.$;function t(){this.loadDefaults(),this.lightbox=$("#n2-lightbox-"+this.type),this.editor=this.initEditor(),this.editor.$.on("change",this.propertyChanged.bind(this))}return t.prototype.loadDefaults=function(){this.type="",this.isChanged=!1,this.visible=!1},t.prototype.pause=function(){},t.prototype.getEmptyVisual=function(){return[]},t.prototype.get=function(){return this.currentVisual},t.prototype.initEditor=function(){return new c.NextendFragmentEditor},t.prototype.propertyChanged=function(e,t,i){this.isChanged=!0,this.currentVisual[t]=i},t.prototype.load=function(t,i,s){this.isChanged=!1,this._load(t,i,s)},t.prototype._load=function(t,i,s){this.currentVisual=_({},t),this.loadToEditor()},t.prototype.loadToEditor=function(){this.editor.load(this.currentVisual)},t.prototype.show=function(){this.visible=!0,c.WindowManager.addWindow("visual")},t.prototype.close=function(){this.visible=!1,c.WindowManager.removeWindow()},t})),c.d("CSSRenderer","$",(function(){function t(){}return t.prototype.decodeData=function(t){if("object"==typeof t)return t;if(""===t)return!1;"{"!==t[0]&&(t=c.Base64.decode(t));var i=JSON.parse(t);return i.data!==r&&i.data},t.prototype.getCSS=function(t,i,s,n,h){h=f({deleteRule:!1},h);var r="",o=new RegExp("@pre","g"),a=new RegExp("@selector","g");for(var l in n.selectors){var u=l.replace(o,t).replace(a,i);r+=u+"{\n"+n.selectors[l]+"}\n",h.deleteRule&&c._css.deleteRule(u)}if(n.renderOptions.combined)for(var d=0;d<s.length;d++)r=r.replace(new RegExp("@tab"+d,"g"),this.render(s[d]));else for(d=0;d<s.length;d++)s[d]=f({},s[d]),r=r.replace(new RegExp("@tab"+d,"g"),this.render(s[d]));return r},t.prototype.render=function(t){var i=this.makeVisualData(t),s="",n="";for(var h in i.raw!==r&&(n=i.raw,delete i.raw),i)s+=this.deCase(h)+": "+i[h]+";\n";return s+=n},t.prototype.makeVisualData=function(t){var i={};for(var s in t)t.hasOwnProperty(s)&&"function"!=typeof t[s]&&this["makeStyle"+s](t[s],i);return i},t.prototype.deCase=function(t){return t.replace(/[A-Z]/g,(function(t){return"-"+t.toLowerCase()}))},t})),c.d("NextendFragmentEditor","$",(function(){var $=c.$;function t(){this.fields={},this.$=$(this)}return t.prototype.load=function(t){this._off(),this._on()},t.prototype._on=function(){for(var t in this.fields)this.fields[t].element.on(this.fields[t].events)},t.prototype._off=function(){for(var t in this.fields)this.fields[t].element.off(".n2-editor")},t.prototype.trigger=function(t,i){this.$.trigger("change",[t,i])},t})),c.d("NextendVisualWithSet",["$","NextendVisualCore"],(function(){function t(t,i,s){this.set=i,c.NextendVisualCore.prototype.constructor.call(this,t,s)}return t.prototype=Object.create(c.NextendVisualCore.prototype),t.prototype.constructor=t,t.prototype.active=function(){var t=this.set.set.id;this.visualManager.changeSet(t),c.NextendVisualCore.prototype.active.call(this)},t})),c.d("NextendVisualWithSetRow",["$","NextendVisualWithSet"],(function(){var $=c.$;function t(){c.NextendVisualWithSet.prototype.constructor.apply(this,arguments)}return t.prototype=Object.create(c.NextendVisualWithSet.prototype),t.prototype.constructor=t,t.prototype.createRow=function(){return this.row=$('<div class="n2_fullscreen_editor__visual"></div>').append($('<div class="n2_fullscreen_editor__visual_label"></div>').text(this.name).on("click",this.activate.bind(this))),this.isSystem()||this.row.append($('<div class="n2_fullscreen_editor__visual_actions"></div>').append($('<div class="n2_fullscreen_editor__visual_action"><i class="ssi_16 ssi_16--delete"></i></div>').on("click",this.delete.bind(this)))),this.row},t.prototype.setValue=function(t,i){c.NextendVisualWithSet.prototype.setValue.call(this,t,i),this.row&&this.row.find(".n2_fullscreen_editor__visual_label").text(this.name)},t.prototype.active=function(){this.row.addClass("n2_fullscreen_editor__visual--active"),c.NextendVisualWithSet.prototype.active.call(this)},t.prototype.notActive=function(){this.row.removeClass("n2_fullscreen_editor__visual--active"),c.NextendVisualWithSet.prototype.notActive.call(this)},t})),c.d("NextendVisualWithSetRowMultipleSelection",["$","NextendVisualWithSetRow"],(function(){var $=c.$;function t(t,i,s){this.checked=!1,t.system=1,t.editable=0,c.NextendVisualWithSetRow.prototype.constructor.apply(this,arguments)}return t.prototype=Object.create(c.NextendVisualWithSetRow.prototype),t.prototype.constructor=t,t.prototype.createRow=function(){var t=c.NextendVisualWithSetRow.prototype.createRow.call(this);return this.checkbox=$('<div class="n2_fullscreen_editor__visual_select_tick"><i class="ssi_16 ssi_16--check"></i></div>').on("click",this.checkOrUnCheck.bind(this)).prependTo(t),t},t.prototype.setValue=function(t,i){this.name=t.name,this.value=t.data,this.row&&this.row.find(".n2_fullscreen_editor__visual_label").text(this.name),i&&this.render()},t.prototype.activate=function(e,t){e&&e.preventDefault(),this.visualManager.changeActiveVisual(this),this.visualManager.controller.setAnimationProperties(this.value)},t.prototype.checkOrUnCheck=function(e){e.preventDefault(),e.stopPropagation(),this.checked?this.unCheck():this.check()},t.prototype.check=function(){this.checked=!0,this.row.addClass("n2_fullscreen_editor__visual--selected"),this.activate()},t.prototype.unCheck=function(){this.checked=!1,this.row.removeClass("n2_fullscreen_editor__visual--selected"),this.activate()},t})),c.d("NextendVisualSetsManager","$",(function(){var $=c.$;return function(t){this.visualManager=t,this.$=$(this)}})),c.d("NextendVisualSet","$",(function(){var $=c.$;function t(t,i){this.set=t,this.visualManager=i,this.visualList=$('<div class="n2_fullscreen_editor__visual_list"></div>'),this.visualManager.sets[t.id]=this,""!==t.referencekey&&(this.visualManager.setsByReference[t.referencekey]=t),this.visualManager.setsSelector&&(this.option=$('<option value="'+t.id+'"></option>').text(t.value).appendTo(this.visualManager.setsSelector))}return t.prototype.active=function(){$.when(this._loadVisuals()).done(function(){this.visualList.appendTo(this.visualManager.visualListContainer)}.bind(this))},t.prototype.notActive=function(){this.visualList.detach()},t.prototype.loadVisuals=function(t){if(this.visuals===r){this.visuals={};for(var i=0;i<t.length;i++)this.addVisual(t[i])}},t.prototype._loadVisuals=function(){return null!=this.visuals||c.AjaxHelper.ajax({type:"POST",url:c.AjaxHelper.makeAjaxUrl(this.visualManager.parameters.ajaxUrl,{nextendaction:"loadVisualsForSet"}),data:{setId:this.set.id},dataType:"json"}).done(function(t){this.loadVisuals(t.data.visuals)}.bind(this))},t.prototype.addVisual=function(t){return this.visuals[t.id]===r&&(this.visuals[t.id]=this.visualManager.createVisual(t,this),this.visualList.append(this.visuals[t.id].createRow())),this.visuals[t.id]},t.prototype.rename=function(t){this.set.value=t,this.option.text(t)},t.prototype.delete=function(){this.option.remove(),delete this.visualManager.sets[this.set.id]},t})),c.d("NextendVisualManagerCore","$",(function(){var $=c.$;function t(t){this.loadDefaults(),this.$=$(this),c["_"+this.type+"Manager"]=this,this.lightbox=$("#n2-lightbox-"+this.type),this.lightbox.find(".n2_fullscreen_editor__overlay").on("click",this.hide.bind(this)),this.visualListContainer=$('<div class="n2_fullscreen_editor__visual_list_container"></div>').appendTo(this.lightbox.find(".n2_fullscreen_editor__content_sidebar")),this.parameters=t,this.visuals={},this.controller=this.initController(),this.controller&&(this.renderer=this.controller.renderer),this.firstLoadVisuals(t.visuals),this.lightbox.find(".n2_fullscreen_editor__save_as_new").on("click",this.saveAsNew.bind(this)),this.cancelButton=this.lightbox.find(".n2_fullscreen_editor__cancel").on("click",this.hide.bind(this)),this.saveButton=this.lightbox.find(".n2_fullscreen_editor__save"),this.setVisual!==r&&this.saveButton.on("click",this.setVisual.bind(this))}return t.prototype.loadDefaults=function(){this.mode="linked",this.labels={visual:"visual",visuals:"visuals"},this.visualLoadDeferreds={},this.showParameters=!1},t.prototype.firstLoadVisuals=function(t){for(var i in t)this.sets[i].loadVisuals(t[i])},t.prototype.initController=function(){},t.prototype.getVisual=function(t){if(parseInt(t)>0){if(this.visuals[t]!==r)return this.visuals[t];if(this.visualLoadDeferreds[t]!==r)return this.visualLoadDeferreds[t];var i=$.Deferred();return this.visualLoadDeferreds[t]=i,this._loadVisualFromServer(t).done(function(){i.resolve(this.visuals[t]),delete this.visualLoadDeferreds[t]}.bind(this)).fail(function(){i.resolve({id:-1,name:n2_("Empty")}),delete this.visualLoadDeferreds[t]}.bind(this)),i}try{var s=t;return"{"!=s[0]&&(s=c.Base64.decode(s)),JSON.parse(s),{id:0,name:n2_("Static")}}catch(t){return{id:-1,name:n2_("Empty")}}},t.prototype._loadVisualFromServer=function(t){return c.AjaxHelper.ajax({type:"POST",url:c.AjaxHelper.makeAjaxUrl(this.parameters.ajaxUrl,{nextendaction:"loadVisual"}),data:{visualId:t},dataType:"json"})},t.prototype.show=function(t,i,s){c.Esc.add(function(){return this.hide(),!0}.bind(this)),this.showParameters=f({previewMode:!1,previewHTML:!1},s),$("body").addClass("n2_body--fullscreen-editor-visible"),this.lightbox.addClass("n2_fullscreen_editor--visible"),this.loadDataToController(t),this.$.on("save",i),this._show()},t.prototype._show=function(){$(":focus").trigger("blur"),this.controller.show(),$(i).on({"keydown.visual":function(e){"TEXTAREA"===e.target.tagName||"INPUT"===e.target.tagName||e.target.isContentEditable||"Enter"===e.code&&this.saveButton.trigger("click")}.bind(this)})},t.prototype.setAndClose=function(t){this.$.trigger("save",[t])},t.prototype.hide=function(e){this.controller.pause(),e!==r&&(e.preventDefault(),c.Esc.pop()),this.controller.close(),this.$.off("save"),$("body").removeClass("n2_body--fullscreen-editor-visible"),this.lightbox.removeClass("n2_fullscreen_editor--visible"),$(i).off("keydown.visual")},t.prototype.getDataFromController=function(t,i,s){return this.showParameters=f({previewMode:!1,previewHTML:!1},i),this.loadDataToController(t,s)},t.prototype.loadDataToController=function(t){this.isVisualData(t)?$.when(this.getVisual(t)).done(function(i){i.id>0?i.activate():console.error(t+" visual is not found linked")}.bind(this)):console.error(t+" visual not found")},t.prototype.isVisualData=function(t){return parseInt(t)>0},t.prototype.saveAsNew=function(e){e.preventDefault();var t=new c.ModalSimple("section-save-as",{destroyOnHide:!1,width:440});t.addContent(c.UI.modalIcon("ssi_48 ssi_48--plus","green")),t.addContent(c.UI.modalHeading(n2_("Save as")));var i=c.UI.modalFormRow(!0);t.addContent(i);var s=c.UI.modalFieldText(i,"name",n2_("Name"),""),n=c.UI.modalButton(n2_("Save as New"),"green");t.addButton(n),n.on("click",function(e){e.preventDefault();var i=s.val();""===i?c.Notification.error(n2_("Please fill the name field!")):this._saveAsNew(i).done(t.hide.bind(t,e),c.Notification.success(n2_("Saved.")))}.bind(this)),t.show()},t.prototype._saveAsNew=function(t){return c.AjaxHelper.ajax({type:"POST",url:c.AjaxHelper.makeAjaxUrl(this.parameters.ajaxUrl,{nextendaction:"addVisual"}),data:{setId:this.getSetValue(),value:c.Base64.encode(JSON.stringify({name:t,data:this.controller.get("saveAsNew")}))},dataType:"json"}).done(function(t){var i=t.data.visual;this.changeActiveVisual(this.sets[i.referencekey].addVisual(i))}.bind(this))},t.prototype.saveActiveVisual=function(t){return c.AjaxHelper.ajax({type:"POST",url:c.AjaxHelper.makeAjaxUrl(this.parameters.ajaxUrl,{nextendaction:"changeVisual"}),data:{visualId:this.activeVisual.id,value:this.getBase64(t)},dataType:"json"}).done(function(t){this.activeVisual.setValue(t.data.visual.value,!0)}.bind(this))},t.prototype.changeActiveVisual=function(t){this.activeVisual&&(this.activeVisual.notActive(),this.activeVisual=!1),t&&("static"==this.mode&&this.setMode("linked"),t.active(),this.activeVisual=t)},t.prototype.getBase64=function(t){return c.Base64.encode(JSON.stringify({name:t,data:this.controller.get("set")}))},t})),c.d("NextendVisualManagerMultipleSelection",["$","NextendVisualManagerVisibleSets"],(function(){var $=c.$;function t(t){c["_"+this.type+"Manager"]=this,this._lateInit=function(t){c.NextendVisualManagerVisibleSets.prototype.constructor.call(this,t)}.bind(this,t)}return t.prototype=Object.create(c.NextendVisualManagerVisibleSets.prototype),t.prototype.constructor=t,t.prototype.lateInit=function(){this.inited||(this.inited=!0,this._lateInit())},t.prototype.show=function(t,i,s){this.lateInit(),c.Esc.add(function(){return this.hide(),!0}.bind(this)),$("body").addClass("n2_body--fullscreen-editor-visible"),this.lightbox.addClass("n2_fullscreen_editor--visible");var n=0;if(""!=t)for(var h=t.split("||"),r=!1;n<h.length;n++)$.when(this.getVisual(h[n])).done((function(t){t&&t.check&&(t.check(),r||(r=!0,t.activate()))}));this.$.on("save",i),this.controller.start(s),0==n&&$.when(this.activeSet._loadVisuals()).done(function(){for(var t in this.activeSet.visuals){this.activeSet.visuals[t].activate();break}}.bind(this)),this._show()},t.prototype.setVisual=function(e){e.preventDefault(),this.setAndClose(this.getAsString()),this.hide(e)},t.prototype.getAsString=function(){var t=[];for(var i in this.sets){var s=this.sets[i];for(var n in s.visuals)s.visuals[n].checked&&t.push(s.visuals[n].id)}return 0==t.length&&this.activeVisual&&t.push(this.activeVisual.id),t.join("||")},t.prototype.hide=function(e){for(var t in c.NextendVisualManagerVisibleSets.prototype.hide.apply(this,arguments),this.sets){var i=this.sets[t];for(var s in i.visuals)i.visuals[s].unCheck()}},t})),c.d("NextendVisualManagerSetsAndMore",["$","NextendVisualManagerVisibleSets"],(function(){var $=c.$;function t(){c.NextendVisualManagerVisibleSets.prototype.constructor.apply(this,arguments),this.setMode(0)}return t.prototype=Object.create(c.NextendVisualManagerVisibleSets.prototype),t.prototype.constructor=t,t.prototype.setMode=function(t){if("static"==t&&this.changeActiveVisual(null),this.mode!=t){switch(t){case 0:this.cancelButton.css("display","none"),this.saveButton.off("click");break;case"static":default:this.cancelButton.css("display","inline-block"),this.saveButton.off("click").on("click",this.setVisualAsStatic.bind(this))}this.mode=t}},t.prototype.loadDataToController=function(t,i){if(parseInt(t)>0)$.when(this.getVisual(t)).done(function(t){t.id>0?(this.setMode("linked"),t.activate(r,i)):(this.setMode("static"),"function"==typeof i?this.controller.asyncVisualData("",this.showParameters,i):this.controller.load("",!1,this.showParameters))}.bind(this));else{var s="";this.setMode("static");try{s=this.getStaticData(t)}catch(t){}"function"==typeof i?this.controller.asyncVisualData(s,this.showParameters,i):this.controller.load(s,!1,this.showParameters)}},t.prototype.getStaticData=function(t){var i=t;"{"!==i[0]&&(i=c.Base64.decode(i));var s=JSON.parse(i).data;return s===r?"":s},t.prototype.setVisualAsStatic=function(e){e.preventDefault(),this.setAndClose(this.getBase64(n2_("Static"))),this.hide(e)},t})),c.d("NextendVisualManagerVisibleSets",["$","NextendVisualManagerCore"],(function(){var $=c.$;function t(){c.NextendVisualManagerCore.prototype.constructor.apply(this,arguments)}return t.prototype=Object.create(c.NextendVisualManagerCore.prototype),t.prototype.constructor=t,t.prototype.firstLoadVisuals=function(t){this.sets={},this.setsByReference={},this.setsSelector=$("#"+this.parameters.setsIdentifier+"sets_select");for(var i=0;i<this.parameters.sets.length;i++)this.newVisualSet(this.parameters.sets[i]);for(var s in this.initSetsManager(),t)this.sets[s].loadVisuals(t[s]);this.activeSet=this.sets[this.getSetValue()],this.activeSet.active(),this.setsSelector.length&&this.setsSelector.on("change",function(){this.activeSet.notActive(),this.activeSet=this.sets[this.getSetValue()],this.activeSet.active()}.bind(this))},t.prototype.initSetsManager=function(){new c.NextendVisualSetsManager(this)},t.prototype._loadVisualFromServer=function(t){return c.AjaxHelper.ajax({type:"POST",url:c.AjaxHelper.makeAjaxUrl(this.parameters.ajaxUrl,{nextendaction:"loadSetByVisualId"}),data:{visualId:t},dataType:"json"}).done(function(t){this.sets[t.data.set.setId].loadVisuals(t.data.set.visuals)}.bind(this))},t.prototype.changeSet=function(t){this.getSetValue()!=t&&this.setsSelector.val(t).trigger("change")},t.prototype.changeSetById=function(t){this.sets[t]!==r&&this.changeSet(t)},t.prototype.newVisualSet=function(t){return new c.NextendVisualSet(t,this)},t.prototype.getSetValue=function(){return this.setsSelector.length?this.setsSelector.val():this.parameters.fixedSet},t})),c.d("NextendBrowse",["$"],(function(){var $=c.$,t={};function i(t){return $('<div class="n2_modal_filesystem_box n2_modal_filesystem_box--directory"><div class="n2_modal_filesystem_box__icon"><i class="ssi_64 ssi_64--folder"></i></div><div class="n2_modal_filesystem_box__label">'+t+"</div></div>")}function n(t,i){var s=$('<div class="n2_modal_filesystem_box n2_modal_filesystem_box--file" title="'+t+'"><div class="n2-button n2-button-icon n2-button-s n2-button-blue"><i class="ssi_16 ssi_16--check"></i></div><div class="n2_modal_filesystem_box__label">'+t+"</div></div>"),n=t.split(".").pop();return"mp4"!==n&&"mp3"!==n?$('<div class="n2_modal_filesystem_box__image"></div>').css("background-image","url("+encodeURI(c._imageHelper.fixed(i))+")").prependTo(s):$('<div class="n2_modal_filesystem_box__icon"><i class="ssi_64 ssi_64--dummy"></i></div>').prependTo(s),s}function h(t,i){this.url=t,this.uploadAllowed=parseInt(i),this.currentPath=localStorage.getItem("browsePath")||"",this.listeners=[];var s=null;this.node=$('<div class="n2_modal_filesystem__content"></div>').on("dragover",(function(e){null!==s?(a(s),s=null):$(e.currentTarget).addClass("n2-drag-over"),s=o((function(){$(e.currentTarget).removeClass("n2-drag-over"),s=null}),400)})),c._browse=this}return h.prototype.clear=function(){H(this.listeners),this.node.empty()},h.prototype.getNode=function(t,i){return this.clear(),this.node.attr("data-mode",t),this.mode=t,"multiple"===t&&(this.selected=[]),this.callback=i,this._loadPath(this.getCurrentFolder(),this._renderBoxes.bind(this)),this.node},h.prototype._renderBoxes=function(t){for(var s in this.clear(),localStorage.setItem("browsePath",this.getCurrentFolder()),$('<div class="n2_modal_filesystem__current_path">'+n2_("Current path")+": "+t.fullPath+"</div>").appendTo(this.node),this.uploadAllowed&&this.initUpload(),""!==t.path&&$('<div class="n2_modal_filesystem_box n2_modal_filesystem_box--directory-up"><div class="n2_modal_filesystem_box__icon"><i class="ssi_64 ssi_64--folderup"></i></div><div class="n2_modal_filesystem_box__label">'+n2_("Parent directory")+"</div></div>").appendTo(this.node).on("click",function(t){this._loadPath(t,this._renderBoxes.bind(this))}.bind(this,t.path+"/..")),t.directories)t.directories.hasOwnProperty(s)&&i(s).appendTo(this.node).on("click",function(t){this._loadPath(t,this._renderBoxes.bind(this))}.bind(this,t.directories[s]));for(var h in t.files)if(t.files.hasOwnProperty(h)){var r=n(h,t.files[h]).appendTo(this.node).on("click",this.clickImage.bind(this,t.files[h]));"multiple"===this.mode&&-1!==this.selected.indexOf(t.files[h])&&r.addClass("n2_modal_filesystem_box--active")}},h.prototype._loadPath=function(i,s){t[i]===r&&(t[i]=c.AjaxHelper.ajax({type:"POST",url:c.AjaxHelper.makeAjaxUrl(this.url),data:{path:i},dataType:"json"})),$.when(t[i]).done(function(n){this.currentPath=n.data.path,t[n.data.path]=n,t[i]=n,s(n.data)}.bind(this))},h.prototype.initUpload=function(){$('<div class="n2_modal_filesystem_box n2_modal_filesystem_box--upload" id="n2-browse-upload"></div>').append('<div class="n2_modal_filesystem_box__icon"><i class="ssi_48 ssi_48--drop"></i></div>').append('<div class="n2_modal_filesystem_box__label">'+n2_("Drop files here")+"</div>").appendTo(this.node);var i=s.getElementById("n2-browse-upload");this.listeners.push(V(i,"dragover",function(e){e.preventDefault()}.bind(this))),this.listeners.push(V(i,"drop",function(e){e.preventDefault();var i=[];if(e.dataTransfer.items)for(var s=0;s<e.dataTransfer.items.length;s++)"file"===e.dataTransfer.items[s].kind&&i.push(e.dataTransfer.items[s].getAsFile());else for(s=0;s<e.dataTransfer.files.length;s++)i.push(e.dataTransfer.files[s]);if(i.length){var h=[];c.LoadingScreen.startLoading();for(s=0;s<i.length;s++)h.push(new Promise(function(h,r){var o=new XMLHttpRequest,a=new FormData;o.open("POST",c.AjaxHelper.makeAjaxUrl(this.url,{nextendaction:"upload"}),!0),o.onload=function(){var i=JSON.parse(o.response);i.data&&i.data.name?(t[i.data.path].data.files[i.data.name]=i.data.url,n(i.data.name,i.data.url).appendTo(this.node).on("click",this.clickImage.bind(this,i.data.url))):c.AjaxHelper.notification(i),h()}.bind(this),o.onerror=function(){r()},a.append("image",i[s]),a.append("path",this.currentPath),o.send(a)}.bind(this)));Promise.all(h).finally(function(){c.LoadingScreen.stopLoading()}.bind(this))}}.bind(this)))},h.prototype.clickImage=function(t,e){if("single"===this.mode)this.callback(t);else if("multiple"===this.mode){var i=this.selected.indexOf(t);-1===i?($(e.currentTarget).addClass("n2_modal_filesystem_box--active"),this.selected.push(t)):($(e.currentTarget).removeClass("n2_modal_filesystem_box--active"),this.selected.splice(i,1))}},h.prototype.getSelected=function(){return this.selected},h.prototype.getCurrentFolder=function(){return this.currentPath},h})),c.d("IconPack",["$"],(function(){var $=c.$;function t(t,i){this.currentQuery="",this.manager=t,this.data=i,this.$li=$('<div class="n2_modal_icons__list_item">'+i.label+"</div>").on("click",function(e){e.preventDefault(),this.activate()}.bind(this)).appendTo(this.manager.$list)}return t.prototype.load=function(){this.data.isLoaded===r&&($("head").append("<link rel='stylesheet' href='"+this.data.css+"' type='text/css' media='screen'>"),this.data.isLoaded=!0)},t.prototype.render=function(){if(this.table===r){for(var t in this.table=c.UI.modalFormTable(this.data.label),this.data.data)$('<div class="n2_modal_icons__icon" data-identifier="'+this.data.id+":"+t+'" data-kw="'+this.data.data[t].kw.toLowerCase()+'">'+this._render(t)+"</div>").on("click",function(e){this.manager.selectIcon($(e.currentTarget).data("identifier"),e)}.bind(this)).appendTo(this.table.$content);this.$icons=this.table.$content.find(".n2_modal_icons__icon")}},t.prototype.activate=function(){this.manager.activate(this),this.$li.addClass("n2_modal_icons__list_item--active"),this.load(),this.render(),this.search(this.manager.getQuery()),this.manager.$content.append(this.table.$table)},t.prototype.search=function(t){if(this.currentQuery!==t)if(t.length<=1)this.$icons.css("display","");else{var i=this.$icons.filter("[data-kw*='"+t+"']");this.$icons.not(i).css("display","none"),i.css("display","")}this.currentQuery=t},t.prototype.deActivate=function(){this.$li.removeClass("n2_modal_icons__list_item--active"),this.table.$table.detach()},t.prototype._render=function(t){return this.data.isLigature?'<i class="n2i '+this.data.class+'">'+t+"</i>":'<i class="n2i '+this.data.class+" "+this.data.prefix+t+'"></i>'},t.prototype.getIcon=function(t){return this.data.isLigature?{class:this.data.class,ligature:t}:{class:this.data.class+" "+this.data.prefix+t,ligature:""}},t})),c.d("Icons",["$"],(function(){var $=c.$;function t(t){for(var i in c.Icons=this,this.data=t,this.$list=$('<div class="n2_modal_icons__list"></div>'),this.iconPacks={},this.data)this.iconPacks[this.data[i].id]=new c.IconPack(this,this.data[i]);this.defaultId=Object.keys(this.iconPacks)[0]}return t.prototype.render=function(t){var i=t.split(":");if(2!==i.length)return!1;var s=i[0],n=i[1];if(this.iconPacks[s]===r)return!1;var h=this.iconPacks[s];return h.data.data[n]!==r&&(h.load(),h.getIcon(n))},t.prototype.showModal=function(t,i){this.callback=t;var s=!1;this.modal===r&&(s=!0,this.startModal());var n=!1,h=i.split(":");this.iconPacks[h[0]]!==r&&(this.iconPacks[h[0]].activate(),n=!0),s&&!n&&this.iconPacks[this.defaultId].activate(),this.modal.show()},t.prototype.selectIcon=function(t,e){this.callback(t),this.modal.hide(e)},t.prototype.startModal=function(){this.modal=new c.ModalLightbox(n2_("Icons"),"icons");var t=$('<div class="n2_modal__sidebar n2_form--dark"></div>');this.modal.addContent(t),this.$sidebar=$('<div class="n2_modal__sidebar_inner"></div>').appendTo(t);var i=$('<div class="n2_modal_icons__search_area"></div>').appendTo(this.$sidebar);this.$searchField=c.UI.modalFieldText(i,"search-icon",!1,"").attr("placeholder",n2_("Search")).on("keyup",function(e){this.activePack.search(this.$searchField.val())}.bind(this)),this.$list.appendTo(this.$sidebar);var s=$('<div class="n2_modal__content"></div>');this.$content=$('<div class="n2_modal__content_inner"></div>').appendTo(s),this.modal.addContent(s)},t.prototype.activate=function(t){this.activePack!==r&&this.activePack.deActivate(),this.activePack=t},t.prototype.getQuery=function(){return this.$searchField.val()},t})),c.d("NextendFontServiceGoogle",["$"],(function(){var $=c.$;function t(t,s,n){this.style=t,this.fonts=s,this.loadedFamilies=n,$(i).on("n2Family",this.loadFamily.bind(this))}return t.prototype.loadFamily=function(e,t){var i=t.toLowerCase();return this.fonts[i]!==r&&-1===this.loadedFamilies.indexOf(this.fonts[i])?($("<link>").attr({rel:"stylesheet",type:"text/css",href:"//fonts.googleapis.com/css?family="+encodeURIComponent(this.fonts[i]+":"+this.style)}).appendTo($("head")),this.loadedFamilies.push(this.fonts[i]),this.fonts[i]):t},t})),c.d("NextendFontEditor",["$","NextendFragmentEditor"],(function(){var $=c.$;function t(){c.NextendFragmentEditor.prototype.constructor.apply(this,arguments),this.fields={family:{element:$("#n2-font-editorfamily"),events:{"nextendChange.n2-editor":this.changeFamily.bind(this)}},color:{element:$("#n2-font-editorcolor"),events:{"outsideChange.n2-editor":this.changeColor.bind(this)}},size:{element:$("#n2-font-editorsize"),events:{"outsideChange.n2-editor":this.changeSize.bind(this)}},lineHeight:{element:$("#n2-font-editorlineheight"),events:{"outsideChange.n2-editor":this.changeLineHeight.bind(this)}},weight:{element:$("#n2-font-editorweight"),events:{"outsideChange.n2-editor":this.changeWeight.bind(this)}},decoration:{element:$("#n2-font-editordecoration"),events:{"outsideChange.n2-editor":this.changeDecoration.bind(this)}},align:{element:$("#n2-font-editortextalign"),events:{"outsideChange.n2-editor":this.changeAlign.bind(this)}},shadow:{element:$("#n2-font-editortshadow"),events:{"outsideChange.n2-editor":this.changeShadow.bind(this)}},letterSpacing:{element:$("#n2-font-editorletterspacing"),events:{"outsideChange.n2-editor":this.changeLetterSpacing.bind(this)}},wordSpacing:{element:$("#n2-font-editorwordspacing"),events:{"outsideChange.n2-editor":this.changeWordSpacing.bind(this)}},textTransform:{element:$("#n2-font-editortexttransform"),events:{"outsideChange.n2-editor":this.changeTextTransform.bind(this)}},css:{element:$("#n2-font-editorextracss"),events:{"outsideChange.n2-editor":this.changeCSS.bind(this)}}}}return t.prototype=Object.create(c.NextendFragmentEditor.prototype),t.prototype.constructor=t,t.prototype.load=function(t){this._off();var i=t.afont.split("||");this.fields.family.element.data("field").insideChange(i[0]),this.fields.color.element.data("field").insideChange(t.color),this.fields.size.element.data("field").insideChange(t.size.split("||").join("|*|")),this.fields.lineHeight.element.data("field").insideChange(t.lineheight),this.fields.weight.element.data("field").insideChange(t.weight),this.fields.decoration.element.data("field").insideChange([1==t.italic?"italic":"",1==t.underline?"underline":""].join("||")),this.fields.align.element.data("field").insideChange(t.align),this.fields.shadow.element.data("field").insideChange(t.tshadow.replace(/\|\|px/g,"")),this.fields.letterSpacing.element.data("field").insideChange(t.letterspacing),this.fields.wordSpacing.element.data("field").insideChange(t.wordspacing),this.fields.textTransform.element.data("field").insideChange(t.texttransform),this.fields.css.element.data("field").insideChange(t.extra),this._on()},t.prototype.changeFamily=function(){this.trigger("afont",this.fields.family.element.val())},t.prototype.changeColor=function(){this.trigger("color",this.fields.color.element.val())},t.prototype.changeSize=function(){this.trigger("size",this.fields.size.element.val().replace("|*|","||"))},t.prototype.changeLineHeight=function(){this.trigger("lineheight",this.fields.lineHeight.element.val())},t.prototype.changeWeight=function(){this.trigger("weight",this.fields.weight.element.val())},t.prototype.changeDecoration=function(){var t=this.fields.decoration.element.val(),i=0;-1!=t.indexOf("italic")&&(i=1),this.trigger("italic",i);var s=0;-1!=t.indexOf("underline")&&(s=1),this.trigger("underline",s)},t.prototype.changeAlign=function(){this.trigger("align",this.fields.align.element.val())},t.prototype.changeShadow=function(){this.trigger("tshadow",this.fields.shadow.element.val())},t.prototype.changeLetterSpacing=function(){this.trigger("letterspacing",this.fields.letterSpacing.element.val())},t.prototype.changeWordSpacing=function(){this.trigger("wordspacing",this.fields.wordSpacing.element.val())},t.prototype.changeTextTransform=function(){this.trigger("texttransform",this.fields.textTransform.element.val())},t.prototype.changeCSS=function(){this.trigger("extra",this.fields.css.element.val())},t})),c.d("NextendFontEditorController",["$","NextendFragmentEditorController"],(function(){var $=c.$;function t(){this.css=[],c.NextendFragmentEditorController.prototype.constructor.apply(this,arguments),this.preview=$('<div class="n2_form__table_preview"></div>').css("fontSize",c.CSSRendererFont.fontSize+"px").appendTo('.n2_form__table[data-field="table-font-preview"]'),this.initBackgroundColor()}return t.prototype=Object.create(c.NextendFragmentEditorController.prototype),t.prototype.constructor=t,t.prototype.loadDefaults=function(){c.NextendFragmentEditorController.prototype.loadDefaults.call(this),this.type="font",this.preview=null},t.prototype.initEditor=function(){return new c.NextendFontEditor},t.prototype.getCleanVisual=function(){return c.CSSRendererFont.getEmpty()},t.prototype.initBackgroundColor=function(){this.$background=$("#n2-font-editorpreview-background").on("nextendChange",function(){this.preview.css("background","#"+this.$background.val())}.bind(this)),this.preview.css("background","#"+this.$background.val())},t.prototype.getTabs=function(){return c.CSSRendererFont.rendererModes[this.mode].tabs},t.prototype.renderCSS=function(){this._renderTimeout=!1,this.clearCSS();var t=c.CSSRendererFont.addCSS("",this.getPreviewCssClass(),this.currentVisual,c.CSSRendererFont.rendererModes[this.mode]);this.css.push(t)},t.prototype.setPreview=function(){var t={fontClassName:this.getPreviewCssClass(),styleClassName:c._fontManager.styleClassName,styleClassName2:c._fontManager.styleClassName2},i="";this.localModePreview[this.mode]!==r?(this.preview.html(""),this.preview.append(c[this.localModePreview[this.mode]].renderFont(c._fontManager.fieldID,t))):(i=(i=c.CSSRendererFont.rendererModes[this.mode].preview).replace(/\{([^]*?)\}/g,(function(i,s){return t[s]})),this.preview.html(i))},t.prototype.getPreviewCssClass=function(){return"n2-"+this.type+"-editor-preview"},t.prototype.pause=function(){this.clearCSS()},t.prototype.clearCSS=function(){for(var t=0;t<this.css.length;t++)this.css[t].destroy();this.css=[]},t})),c.d("NextendFontManager",["$"],(function(){var $=c.$;function t(){this.$=$(this),this.showParameters=!1,this.type="font",this.css=[],this.styleClassName="",this.styleClassName2="",c._fontManager=this,this.lightbox=$("#n2-lightbox-"+this.type),this.lightbox.find(".n2_fullscreen_editor__overlay").on("click",this.hide.bind(this)),this.controller=this.initController(),this.lightbox.find(".n2_fullscreen_editor__cancel").on("click",this.hide.bind(this)),this.saveButton=this.lightbox.find(".n2_fullscreen_editor__save").on("click",this.setVisualAsStatic.bind(this))}return t.prototype.initController=function(){return new c.NextendFontEditorController},t.prototype.setFieldID=function(t){this.fieldID=t},t.prototype.setConnectedStyle=function(t){var i=$("#"+t).data("field").renderStyle();this.css.push(i),this.styleClassName=i.getBaseClassName()},t.prototype.setConnectedStyle2=function(t){var i=$("#"+t).data("field").renderStyle();this.css.push(i),this.styleClassName2=i.getBaseClassName()},t.prototype.setAndClose=function(t){this.$.trigger("save",[t])},t.prototype.setVisualAsStatic=function(e){e.preventDefault(),this.setAndClose(JSON.stringify({data:this.controller.get("set")})),this.hide(e)},t.prototype.hide=function(e){this.controller.pause();for(var t=0;t<this.css.length;t++)this.css[t].destroy();this.css=[],e!==r&&(e.preventDefault(),c.Esc.pop()),this.controller.close(),this.$.off("save"),$("body").removeClass("n2_body--fullscreen-editor-visible"),this.lightbox.removeClass("n2_fullscreen_editor--visible"),$(i).off("keydown.visual")},t.prototype.loadDataToController=function(t){this.controller.load(c.CSSRendererFont.parseRawData(t),!1,this.showParameters)},t.prototype.show=function(t,i,s){c.Esc.add(function(){return this.hide(),!0}.bind(this)),this.showParameters=f({previewMode:!1,previewHTML:!1},s),$("body").addClass("n2_body--fullscreen-editor-visible"),this.lightbox.addClass("n2_fullscreen_editor--visible"),this.loadDataToController(t),this.controller.show(),this.$.on("save",i),this._show()},t.prototype._show=function(){$(":focus").trigger("blur"),$(i).on({"keydown.visual":function(e){"TEXTAREA"===e.target.tagName||"INPUT"===e.target.tagName||e.target.isContentEditable||"Enter"===e.code&&this.saveButton.trigger("click")}.bind(this)})},t})),c.d("CSSRendererFont",["$","CSSRenderer"],(function(){var $=c.$;function t(){}t.prototype=Object.create(c.CSSRenderer.prototype),t.prototype.constructor=t,t.prototype.getCSS=function(t,i,s,n,h){if(!1===(s=this.decodeData(s)))return"";if((s=f([],s))[0]=f(c.CSSRendererFont.getDefault(),s[0]),n.renderOptions.combined)for(var o=1;o<s.length;o++)if(s[o]=f({},s[o-1],s[o]),s[o].size===s[0].size)s[o].size="100||%";else{var a=s[0].size.split("||"),l=s[o].size.split("||");2===a.length&&2===l.length&&"px"===a[1]&&"px"===l[1]&&(s[o].size=Math.round(l[0]/a[0]*100)+"||%")}return t===r&&(t=c.CSSRendererFont.pre),c.CSSRenderer.prototype.getCSS.call(this,t,i,s,n,h)},t.prototype.makeStylecolor=function(t,i){i.color="#"+t.substr(0,6)+";\ncolor: "+N2Color.hex2rgbaCSS(t)},t.prototype.makeStylesize=function(t,i){var s=t.split("||");"px"===s[1]?i.fontSize=s[0]/c.CSSRendererFont.fontSize*100+"%":i.fontSize=t.replace("||","")},t.prototype.makeStyletshadow=function(t,i){var s=t.split("|*|");"0"==s[0]&&"0"==s[1]&&"0"==s[2]?i.textShadow="none":i.textShadow=s[0]+"px "+s[1]+"px "+s[2]+"px "+N2Color.hex2rgbaCSS(s[3])},t.prototype.makeStyleafont=function(t,i){for(var s=t.split(","),n=0;n<s.length;n++)s[n]=this.getFamily(s[n].replace(/^\s+|\s+$/gm,"").replace(/"|'/gm,""));i.fontFamily=s.join(",")},t.prototype.getFamily=function(t){var s=$(i).triggerHandler("n2Family",[t]);return s===r&&(s=t),"'"+s+"'"},t.prototype.makeStylelineheight=function(t,i){i.lineHeight=t},t.prototype.makeStyleweight=t.prototype.makeStylebold=function(t,i){i.fontWeight=1==t?"bold":t>1?t:"normal"},t.prototype.makeStyleitalic=function(t,i){i.fontStyle=1==t?"italic":"normal"},t.prototype.makeStyleunderline=function(t,i){i.textDecoration=1==t?"underline":"none"},t.prototype.makeStylealign=function(t,i){i.textAlign=t},t.prototype.makeStyleletterspacing=function(t,i){i.letterSpacing=t},t.prototype.makeStylewordspacing=function(t,i){i.wordSpacing=t},t.prototype.makeStyletexttransform=function(t,i){i.textTransform=t},t.prototype.makeStyleextra=function(t,i){i.raw=t};var s=1,n=new t,h={pre:"",defaultFamily:"Roboto,Arial",fontSize:16,rendererModes:{},getDefault:function(){return{color:"000000ff",size:"14||px",tshadow:"0|*|0|*|0|*|000000ff",afont:h.defaultFamily,lineheight:"1.5",weight:400,italic:0,underline:0,align:"left",letterspacing:"normal",wordspacing:"normal",texttransform:"none",extra:""}},getEmpty:function(){return{extra:""}},getClass:function(){return"n2-font-"+s++},addCSS:function(t,i,s,h,r){return c._css.add(i,n.getCSS.call(n,t,"."+i,s,h,r))},fixBold:function(t){for(var i=0;i<t.length;i++)t[i].bold!==r&&(t[i].weight!==r||(1===parseInt(t[i].bold)?t[i].weight=700:t[i].bold>0&&(t[i].weight=t[i].bold)),delete t[i].bold);return t},parseRawData:function(t){if(t.length>0){"{"!==t[0]&&(t=c.Base64.decode(t));try{var i=JSON.parse(t);if(i.data!==r)return i.data=this.fixBold(i.data),i.data[0]=f({},this.getDefault(),i.data[0]),i.data}catch(i){console.error("Unexpected data",t,i)}}return[this.getDefault()]},transformData:function(t,i){var s,n=this.parseRawData(t),h=this.rendererModes[i].tabs,r=[];for(s=0;s<n.length;s++)r[s]=_(this.getEmpty(),n[s]);for(s=r.length;s<h.length;s++)r[s]=this.getEmpty();return r}};return h})),c.d("NextendStyleEditor",["$","NextendFragmentEditor"],(function(){var $=c.$;function t(){c.NextendFragmentEditor.prototype.constructor.apply(this,arguments),this.fields={backgroundColor:{element:$("#n2-style-editorbackgroundcolor"),events:{"nextendChange.n2-editor":this.changeBackgroundColor.bind(this)}},opacity:{element:$("#n2-style-editoropacity"),events:{"outsideChange.n2-editor":this.changeOpacity.bind(this)}},padding:{element:$("#n2-style-editorpadding"),events:{"outsideChange.n2-editor":this.changePadding.bind(this)}},boxShadow:{element:$("#n2-style-editorboxshadow"),events:{"outsideChange.n2-editor":this.changeBoxShadow.bind(this)}},border:{element:$("#n2-style-editorborder"),events:{"outsideChange.n2-editor":this.changeBorder.bind(this)}},borderRadius:{element:$("#n2-style-editorborderradius"),events:{"outsideChange.n2-editor":this.changeBorderRadius.bind(this)}},extracss:{element:$("#n2-style-editorextracss"),events:{"outsideChange.n2-editor":this.changeExtraCSS.bind(this)}}}}return t.prototype=Object.create(c.NextendFragmentEditor.prototype),t.prototype.constructor=t,t.prototype.load=function(t){this._off(),this.fields.backgroundColor.element.data("field").insideChange(t.backgroundcolor),this.fields.opacity.element.data("field").insideChange(t.opacity),this.fields.padding.element.data("field").insideChange(t.padding),this.fields.boxShadow.element.data("field").insideChange(t.boxshadow),this.fields.border.element.data("field").insideChange(t.border),this.fields.borderRadius.element.data("field").insideChange(t.borderradius),this.fields.extracss.element.data("field").insideChange(t.extra),this._on()},t.prototype.changeBackgroundColor=function(){this.trigger("backgroundcolor",this.fields.backgroundColor.element.val())},t.prototype.changeOpacity=function(){this.trigger("opacity",this.fields.opacity.element.val())},t.prototype.changePadding=function(){this.trigger("padding",this.fields.padding.element.val())},t.prototype.changeBoxShadow=function(){this.trigger("boxshadow",this.fields.boxShadow.element.val())},t.prototype.changeBorder=function(){this.trigger("border",this.fields.border.element.val())},t.prototype.changeBorderRadius=function(){this.trigger("borderradius",this.fields.borderRadius.element.val())},t.prototype.changeExtraCSS=function(){this.trigger("extra",this.fields.extracss.element.val())},t})),c.d("NextendStyleEditorController",["$","NextendFragmentEditorController"],(function(){var $=c.$;function t(){this.css=[],c.NextendFragmentEditorController.prototype.constructor.apply(this,arguments),this.preview=$('<div class="n2_form__table_preview"></div>').css("fontSize","16px").appendTo('.n2_form__table[data-field="table-style-preview"]'),this.initBackgroundColor()}return t.prototype=Object.create(c.NextendFragmentEditorController.prototype),t.prototype.constructor=t,t.prototype.loadDefaults=function(){c.NextendFragmentEditorController.prototype.loadDefaults.call(this),this.type="style",this.preview=null},t.prototype.initEditor=function(){return new c.NextendStyleEditor},t.prototype.getCleanVisual=function(){return c.CSSRendererStyle.getEmpty()},t.prototype.initBackgroundColor=function(){this.$background=$("#n2-style-editorpreview-background").on("nextendChange",function(){this.preview.css("background","#"+this.$background.val())}.bind(this)),this.preview.css("background","#"+this.$background.val())},t.prototype.getTabs=function(){return c.CSSRendererStyle.rendererModes[this.mode].tabs},t.prototype.renderCSS=function(){this._renderTimeout=!1,this.clearCSS();var t=c.CSSRendererStyle.addCSS("",this.getPreviewCssClass(),this.currentVisual,c.CSSRendererStyle.rendererModes[this.mode]);this.css.push(t)},t.prototype.setPreview=function(){var t={styleClassName:this.getPreviewCssClass(),fontClassName:c._styleManager.fontClassName,fontClassName2:c._styleManager.fontClassName2,styleClassName2:c._styleManager.styleClassName2},i="";this.localModePreview[this.mode]!==r&&""!==this.localModePreview[this.mode]?(this.preview.html(""),this.preview.append(c[this.localModePreview[this.mode]].renderStyle(c._styleManager.fieldID,t))):(i=(i=c.CSSRendererStyle.rendererModes[this.mode].preview).replace(/\{([^]*?)\}/g,(function(i,s){return t[s]})),this.preview.html(i))},t.prototype.getPreviewCssClass=function(){return"n2-"+this.type+"-editor-preview"},t.prototype.pause=function(){this.clearCSS()},t.prototype.clearCSS=function(){for(var t=0;t<this.css.length;t++)this.css[t].destroy();this.css=[]},t})),c.d("NextendStyleManager",["$"],(function(){var $=c.$;function t(){this.$=$(this),this.showParameters=!1,this.type="style",this.css=[],this.styleClassName2="",this.fontClassName="",this.fontClassName2="",c._styleManager=this,this.lightbox=$("#n2-lightbox-"+this.type),this.lightbox.find(".n2_fullscreen_editor__overlay").on("click",this.hide.bind(this)),this.controller=this.initController(),this.controller&&(this.renderer=this.controller.renderer),this.lightbox.find(".n2_fullscreen_editor__cancel").on("click",this.hide.bind(this)),this.saveButton=this.lightbox.find(".n2_fullscreen_editor__save").on("click",this.setVisualAsStatic.bind(this))}return t.prototype.initController=function(){return new c.NextendStyleEditorController},t.prototype.setFieldID=function(t){this.fieldID=t},t.prototype.setConnectedStyle=function(t){var i=$("#"+t).data("field").renderStyle();this.css.push(i),this.styleClassName2=i.getBaseClassName()},t.prototype.setConnectedFont=function(t){var i=$("#"+t).data("field").renderFont();this.css.push(i),this.fontClassName=i.getBaseClassName()},t.prototype.setConnectedFont2=function(t){var i=$("#"+t).data("field").renderFont();this.css.push(i),this.fontClassName2=i.getBaseClassName()},t.prototype.setAndClose=function(t){this.$.trigger("save",[t])},t.prototype.setVisualAsStatic=function(e){e.preventDefault(),this.setAndClose(JSON.stringify({data:this.controller.get("set")})),this.hide(e)},t.prototype.hide=function(e){this.controller.pause();for(var t=0;t<this.css.length;t++)this.css[t].destroy();this.css=[],e!==r&&(e.preventDefault(),c.Esc.pop()),this.controller.close(),this.$.off("save"),$("body").removeClass("n2_body--fullscreen-editor-visible"),this.lightbox.removeClass("n2_fullscreen_editor--visible"),$(i).off("keydown.visual")},t.prototype.loadDataToController=function(t){this.controller.load(c.CSSRendererStyle.parseRawData(t),!1,this.showParameters)},t.prototype.show=function(t,i,s){c.Esc.add(function(){return this.hide(),!0}.bind(this)),this.showParameters=f({previewMode:!1,previewHTML:!1},s),$("body").addClass("n2_body--fullscreen-editor-visible"),this.lightbox.addClass("n2_fullscreen_editor--visible"),this.loadDataToController(t),this.controller.show(),this.$.on("save",i),this._show()},t.prototype._show=function(){$(":focus").trigger("blur"),$(i).on({"keydown.visual":function(e){"TEXTAREA"===e.target.tagName||"INPUT"===e.target.tagName||e.target.isContentEditable||"Enter"===e.code&&this.saveButton.trigger("click")}.bind(this)})},t})),c.d("CSSRendererStyle",["CSSRenderer"],(function(){function t(){}t.prototype=Object.create(c.CSSRenderer.prototype),t.prototype.constructor=t,t.prototype.getCSS=function(t,i,s,n,h){return!1===(s=this.decodeData(s))?"":(s[0]=f(c.CSSRendererStyle.getDefault(),s[0]),t===r&&(t=c.CSSRendererStyle.pre),c.CSSRenderer.prototype.getCSS.call(this,t,i,s,n,h))},t.prototype.makeStylebackgroundcolor=function(t,i){i.background="#"+t.substr(0,6)+";\n\tbackground: "+N2Color.hex2rgbaCSS(t)},t.prototype.makeStyleopacity=function(t,i){i.opacity=parseInt(t)/100},t.prototype.makeStylepadding=function(t,i){for(var s=t.split("|*|"),n=s.pop(),h=0;h<s.length;h++)s[h]+=n;i.padding=s.join(" ")},t.prototype.makeStyleboxshadow=function(t,i){var s=t.split("|*|");"0"==s[0]&&"0"==s[1]&&"0"==s[2]&&"0"==s[3]?i.boxShadow="none":i.boxShadow=s[0]+"px "+s[1]+"px "+s[2]+"px "+s[3]+"px "+N2Color.hex2rgbaCSS(s[4])},t.prototype.makeStyleborder=function(t,i){var s=t.split("|*|");i.borderWidth=s[0]+"px",i.borderStyle=s[1],i.borderColor="#"+s[2].substr(0,6)+";\n\tborder-color:"+N2Color.hex2rgbaCSS(s[2])},t.prototype.makeStyleborderradius=function(t,i){t.split("|*|").push(""),i.borderRadius=t+"px"},t.prototype.makeStyleextra=function(t,i){i.raw=t};var i=1,s=new t;return{pre:"",rendererModes:{},getDefault:function(){return{backgroundcolor:"ffffff00",opacity:100,padding:"0|*|0|*|0|*|0|*|px",boxshadow:"0|*|0|*|0|*|0|*|000000ff",border:"0|*|solid|*|000000ff",borderradius:"0",extra:""}},getEmpty:function(){return{extra:""}},getClass:function(){return"n2-style-"+i++},addCSS:function(t,i,n,h,r){return c._css.add(i,s.getCSS.call(s,t,"."+i,n,h,r))},parseRawData:function(t){if(t.length>0){"{"!==t[0]&&(t=c.Base64.decode(t));try{var i=JSON.parse(t);if(i.data!==r)return i.data[0]=f({},this.getDefault(),i.data[0]),i.data}catch(i){console.error("Unexpected data",t,i)}}return[this.getDefault()]},transformData:function(t,i){var s,n=this.parseRawData(t),h=this.rendererModes[i].tabs,r=[];for(s=0;s<n.length;s++)r[s]=_(this.getEmpty(),n[s]);for(s=r.length;s<h.length;s++)r[s]=this.getEmpty();return r}}})),c.d("NextendImageEditorController",["NextendFragmentEditorControllerWithEditor"],(function(){function t(){c.NextendFragmentEditorControllerWithEditor.prototype.constructor.apply(this,arguments)}return t.prototype=Object.create(c.NextendFragmentEditorControllerWithEditor.prototype),t.prototype.constructor=t,t.prototype.loadDefaults=function(){c.NextendFragmentEditorControllerWithEditor.prototype.loadDefaults.call(this),this.type="image",this.currentImage=""},t.prototype.get=function(t){return this.currentVisual},t.prototype.getEmptyVisual=function(){return{"desktop-retina":{image:""},tablet:{image:""},mobile:{image:""}}},t.prototype._load=function(t,i,s){this.currentImage=t.visual.image,c.NextendFragmentEditorControllerWithEditor.prototype._load.call(this,t.value,i,s)},t.prototype.loadToEditor=function(){this.currentVisual=f({},this.getEmptyVisual(),this.currentVisual),this.editor.load(this.currentImage,this.currentVisual)},t.prototype.propertyChanged=function(e,t,i,s){this.isChanged=!0,this.currentVisual[t][i]=s},t})),c.d("NextendImage",["NextendVisualCore"],(function(){function t(){c.NextendVisualCore.prototype.constructor.apply(this,arguments)}return t.prototype=Object.create(c.NextendVisualCore.prototype),t.prototype.constructor=t,t.prototype.setValue=function(t,i){this.base64=t,this.value=JSON.parse(c.Base64.decode(t))},t.prototype.activate=function(e){e!==r&&e.preventDefault(),this.visualManager.changeActiveVisual(this),this.visualManager.controller.load(this,!1,this.visualManager.showParameters)},t})),c.d("NextendImageManager",["$","NextendVisualManagerCore"],(function(){var $=c.$;function t(){this.referenceKeys={},c.NextendVisualManagerCore.prototype.constructor.apply(this,arguments)}return t.prototype=Object.create(c.NextendVisualManagerCore.prototype),t.prototype.constructor=t,t.prototype.loadDefaults=function(){c.NextendVisualManagerCore.prototype.loadDefaults.apply(this,arguments),this.type="image",this.labels={visual:"image",visuals:"images"},this.fontClassName=""},t.prototype.initController=function(){return new c.NextendImageEditorController},t.prototype.createVisual=function(t){return new c.NextendImage(t,this)},t.prototype.firstLoadVisuals=function(t){for(var i=0;i<t.length;i++)this.referenceKeys[t[i].hash]=this.visuals[t[i].id]=this.createVisual(t[i])},t.prototype.getVisual=function(t){if(""!=t){var i=md5(t);if(this.referenceKeys[i]!==r)return this.referenceKeys[i];if(this.visualLoadDeferreds[i]!==r)return this.visualLoadDeferreds[i];var s=$.Deferred();return this.visualLoadDeferreds[i]=s,this._loadVisualFromServer(t).done(function(){s.resolve(this.referenceKeys[i]),delete this.visualLoadDeferreds[i]}.bind(this)).fail(function(){s.resolve({id:-1,name:n2_("Empty")}),delete this.visualLoadDeferreds[i]}.bind(this)),s}c.Notification.error(n2_("The image is empty"),{timeout:3})},t.prototype._loadVisualFromServer=function(t){return c.AjaxHelper.ajax({type:"POST",url:c.AjaxHelper.makeAjaxUrl(this.parameters.ajaxUrl,{nextendaction:"loadVisualForImage"}),data:{image:t},dataType:"json"}).done(function(t){var i=t.data.visual;this.referenceKeys[i.hash]=this.visuals[i.id]=this.createVisual(i)}.bind(this))},t.prototype.isVisualData=function(t){return""!==t},t.prototype.setVisual=function(e){e.preventDefault(),this.controller.isChanged?this.saveActiveVisual(this.activeVisual.name).done(function(t){$(i).trigger(t.data.visual.hash,this.activeVisual.value),this.hide(e)}.bind(this)):this.hide(e)},t.prototype.getBase64=function(){return c.Base64.encode(JSON.stringify(this.controller.get("set")))},t.prototype.loadDataToController=function(t){$.when(this.getVisual(t)).done(function(i){i.id>0?i.activate():console.error(t+" visual is not found linked")}.bind(this))},t})),c.d("BrowserCompatibility",(function(){var t=52,s=18,n=55,h=10,r=68,o=604;return function(a){i.location.href.match(/nextendcontroller=(sliders|slider|slides|generator)/)&&!function(){var i=navigator.userAgent,a=i.match(/Firefox\/([0-9]+)/);if(a&&parseInt(a[1])>=t)return!0;if((a=i.match(/Edge\/([0-9]+)/))&&parseInt(a[1])>=s)return!0;if((a=i.match(/OPR\/([0-9]+)/))&&parseInt(a[1])>=n)return!0;if((a=i.match(/Version\/([0-9]+)[0-9. ]*?Safari/))&&parseInt(a[1])>=h)return!0;if((a=i.match(/Chrome\/([0-9]+)/))&&parseInt(a[1])>=r)return!0;if((a=i.match(/Safari\/([0-9]+)/))&&parseInt(a[1])>=o)return!0;return!1}()&&(i.location=a)}})),c.d("ContextMenu",["$"],(function(){var t,n,h,o,a,l,u,d,_,v,$=c.$;function p(e){n[0]===e.target||$.contains(n[0],e.target)||v&&(v===e.target||$.contains(v,e.target))||b()}function b(){0===t&&(x(),y(),o[0].removeEventListener("mouseover",m,{passive:!0,capture:!0}),o[0].removeEventListener("mouseleave",g,{passive:!0,capture:!0}),n.remove(),n=r,o=r,a=r,u=r,s.removeEventListener("mousedown",p,{passive:!0,capture:!0}),s.removeEventListener("pointerdown",p,{passive:!0,capture:!0}),cancelAnimationFrame(this.frame),i.removeEventListener("scroll",b,{passive:!0,capture:!0}),i.removeEventListener("resize",b),i.removeEventListener("blur",b),d.onClose&&d.onClose.call(i))}function m(e){var t=$(e.target);if(t.hasClass("n2_context_menu__item")||(t=t.closest(".n2_context_menu__item")),(!a||t[0]!==a[0])&&(x(),(a=t).length)){var s=a.data("items");s!==r&&(a.addClass("n2_context_menu__item--active"),(u=a.data("submenu"))||(u=function(t,s){for(var r=s.getBoundingClientRect(),o=$('<div class="n2_context_menu__sub_menu"></div>').appendTo(n),a=0;a<t.length;a++)switch(t[a].type){case"onoff":new C(o,t[a]);break;default:new M(o,t[a])}var c,l,u=o.width();l=n2const.rtl.isRtl?r.left<u:r.left+r.width+u<i.innerWidth;c=l?Math.round(r.width-3):-Math.round(u-3);return o.css({left:c+"px",top:Math.round(Math.min(r.top,i.innerHeight-o.height()-5)-h.top)+"px"}),o[0].addEventListener("mouseover",w,{passive:!0,capture:!0}),o[0].addEventListener("mouseleave",w,{passive:!0,capture:!0}),o}(s,a[0]),a.data("submenu",u)),u.addClass("n2_context_menu__sub_menu--active"))}g(e)}function g(e){var t=$(e.target);t.hasClass("n2_context_menu__item")||(t=t.closest(".n2_context_menu__item")),l&&t[0]===l[0]||(y(),(l=t).length&&l.data("item").onFocus())}function y(){if(l&&l.length){var t=l.data("item");t&&t.onBlur(),l=r}}function w(e){var t=$(e.target);t.hasClass("n2_context_menu__item")||(t=t.closest(".n2_context_menu__item")),_&&t[0]===_[0]||(k(),(_=t).length&&_.data("item").onFocus())}function k(){if(_&&_.length){var t=_.data("item");t&&t.onBlur(),_=r}}function x(){u!==r&&(k(),u.removeClass("n2_context_menu__sub_menu--active"),u=r,_=r,a.removeClass("n2_context_menu__item--active"))}function S(t,i){this.$item=$('<div class="n2_context_menu__item"></div>').data("item",this).appendTo(t),i.color!==r&&this.$item.addClass("n2_context_menu__item--color-"+i.color),this.setData(i)}function M(t,i){S.prototype.constructor.call(this,t,i)}function C(t,i){M.prototype.constructor.call(this,t,i),this.$item.addClass("n2_context_menu__item_onoff")}return S.prototype.setData=function(t){this.data=t,this.$item.html(""),this.render(t),t.items!==r&&this.$item.data("items",t.items)},S.prototype.render=function(t){t.render(this.$item)},S.prototype.onClick=function(){!1!==this.data.action.call(i,this)&&b()},S.prototype.onFocus=function(){this.data.focus!==r&&this.data.focus.call()},S.prototype.onBlur=function(){this.data.blur!==r&&this.data.blur.call()},M.prototype=Object.create(S.prototype),M.prototype.constructor=M,M.prototype.render=function(t){this.$icon=$('<i class="n2_context_menu__item_icon '+t.icon+'"></i>').appendTo(this.$item),this.$label=$('<div class="n2_context_menu__item_label"></div>').appendTo(this.$item),"function"==typeof t.label?t.label.call(this,this):this.$label.text(t.label),this.$item.off("click"),t.action!==r?(this.$item.on("click",this.onClick.bind(this)),this.$item.addClass("n2_context_menu__item--has-action")):this.$item.removeClass("n2_context_menu__item--has-action")},C.prototype=Object.create(M.prototype),C.prototype.constructor=C,C.prototype.render=function(t){this.isOn=!!t.isOn.call(this),this.syncClass(),$('<i class="n2_context_menu__item_icon ssi_16"></i>').appendTo(this.$item),this.$label=$('<div class="n2_context_menu__item_label"></div>').appendTo(this.$item),"function"==typeof t.label?t.label.call(this,this.$label):this.$label.text(t.label),this.$item.off("click"),this.$item.on("click",this.toggle.bind(this)),this.$item.addClass("n2_context_menu__item--has-action")},C.prototype.syncClass=function(){this.$item.toggleClass("n2_context_menu__item_onoff--on",this.isOn)},C.prototype.toggle=function(){this.isOn=!this.isOn,this.syncClass(),this.data.action(this.isOn)},function(a,c,l){if(t=0,d=f({x:0,y:0,horizontalAlign:"right",verticalAlign:"bottom",onClose:!1,forceLtr:!1},l),n===r||(b(),v!==a)){n=$('<div class="n2_context_menu"></div>').appendTo("body"),d.forceLtr&&n.attr("dir","ltr"),o=$('<div class="n2_context_menu__inner"></div>').appendTo(n),c.sort((function(t,i){return t.priority-i.priority}));for(var u=0;u<c.length;u++)switch(c[u].type){case"raw":new S(o,c[u]);break;case"onoff":new C(o,c[u]);break;default:new M(o,c[u])}var _={top:"auto",right:"auto",bottom:"auto",left:"auto"};if(a instanceof Element){v=a;var y=a.getBoundingClientRect();if("right"===d.horizontalAlign?_.left=Math.min(y.left+d.x,i.innerWidth-o.width()-d.x-10)+"px":"left"===d.horizontalAlign&&(_.left=y.right-o.width()-d.x+"px"),"bottom"===d.verticalAlign){var w=y.top+y.height+d.y;w<=i.innerHeight-o.height()-10?_.top=w+"px":_.bottom=i.innerHeight-y.top+d.y+"px"}else"top"===d.verticalAlign&&(y.top-10>=o.height()?_.bottom=i.innerHeight-y.top+d.y+"px":_.top=y.top+y.height+d.y+"px")}else v=!1,_.left=Math.min(a.clientX+1,i.innerWidth-o.width()-10)+"px",_.top=Math.min(a.clientY+1,i.innerHeight-o.height()-10)+"px";return n.css(_),h=o[0].getBoundingClientRect(),o[0].addEventListener("mouseover",m,{passive:!0,capture:!0}),o[0].addEventListener("mouseleave",g,{passive:!0,capture:!0}),s.addEventListener("mousedown",p,{passive:!0,capture:!0}),s.addEventListener("pointerdown",p,{passive:!0,capture:!0}),this.frame=requestAnimationFrame((function(){i.addEventListener("scroll",b,{passive:!0,capture:!0})})),i.addEventListener("resize",b),i.addEventListener("blur",b),{lock:function(){t++},unlock:function(){t--,t=Math.max(t,0)}}}}})),c.d("DashboardInfo",["$"],(function(){var $=c.$;function t(){this.isVisible=!1,this.blurInteractionCallback=this.blurInteraction.bind(this),this.blurCallback=this.blur.bind(this),c.r("documentReady",this.onReady.bind(this))}return t.prototype.onReady=function(){this.$info=$(".n2_dashboard_info"),this.$button=this.$info.find("> .n2_button_plain_icon").on("click",this.toggleInfo.bind(this))},t.prototype.toggleInfo=function(e){e.preventDefault(),this.isVisible?this.hideInfo():this.showInfo()},t.prototype.showInfo=function(){this.isVisible||(this.isVisible=!this.isVisible,s.addEventListener("mousedown",this.blurInteractionCallback,{passive:!0,capture:!0}),i.addEventListener("scroll",this.blurCallback,{passive:!0,capture:!0}),this.syncClass())},t.prototype.hideInfo=function(){this.isVisible&&(this.isVisible=!this.isVisible,this.syncClass(),s.removeEventListener("mousedown",this.blurInteractionCallback,{passive:!0,capture:!0}),i.removeEventListener("scroll",this.blurCallback,{passive:!0,capture:!0}))},t.prototype.syncClass=function(){this.$info.toggleClass("n2_dashboard_info--visible",this.isVisible)},t.prototype.blur=function(){this.hideInfo()},t.prototype.blurInteraction=function(e){this.$info[0]===e.target||$.contains(this.$info[0],e.target)||this.hideInfo()},t})),c.d("DeviceChanger",["$"],(function(){var $=c.$;function t(t,i){this.slider=t,this.containerElement=i,this.activeStates={hover:!1,drag:!1},this.devices={},this.slider.stages.done("ResponsiveStart",this.onResponsiveStart.bind(this))}function i(t,i,s,n){this.deviceChanger=t,this.device=i,this.data=s,this.icon=n,this.$button=$('<div class="n2_device_tester_devices__device" data-device="'+i+'"><i class="ssi_24 '+n+'"></i></div>').on("click",this.activate.bind(this)).appendTo(t.$containerDevices),t.registerDevice(i,this)}function n(t){this.trailSize=160,this.deviceChanger=t;var i=$('<div class="n2_device_tester_zoom"></div>').appendTo(t.$deviceTester);this.$min=$('<div class="n2_device_tester_zoom__min_label">0</div>').appendTo(i),this.mouseMoveDelegate=this.onMouseMove.bind(this),this.mouseUpDelegate=this.onMouseUp.bind(this),this.$zoomInner=$('<div class="n2_device_tester_zoom__inner"></div>').on("mousedown",this.onMouseDown.bind(this)).appendTo(i),this.$max=$('<div class="n2_device_tester_zoom__max_label">3000</div>').appendTo(i),$('<div class="n2_device_tester_zoom__trail"></div>').appendTo(this.$zoomInner),this.$editorSize=$('<div class="n2_device_tester_zoom__editor_size"></div>').appendTo(this.$zoomInner),this.$handle=$('<div class="n2_device_tester_zoom__handle"></div>').appendTo(this.$zoomInner),this.$handleLabel=$('<div class="n2_device_tester_zoom__handle_label"></div>').appendTo(this.$handle)}return t.prototype.registerDevice=function(t,i){this.devices[t]=i},t.prototype.setActiveState=function(t,i){this.activeStates[t]=i,this.$deviceChanger.toggleClass("n2_device_changer--active",this.activeStates.hover||this.activeStates.drag)},t.prototype.onResponsiveStart=function(){var t;this.$deviceChanger=$(".n2_device_changer").on({mouseenter:function(){t&&(a(t),t=r),this.setActiveState("hover",!0)}.bind(this),mouseleave:function(){t=o(function(){this.setActiveState("hover",!1)}.bind(this),500)}.bind(this)}),this.$icon=this.$deviceChanger.find(".n2_device_changer__button .ssi_24"),this.responsive=this.slider.responsive,this.container=this.containerElement?$(this.containerElement):$(this.responsive.containerElement.closest(".n2_slider_preview_area__inner, .n2_slide_editor_slider__editor")),this.$deviceTester=this.$deviceChanger.find(".n2_device_tester"),this.$containerDevices=$('<div class="n2_device_tester_devices"></div>').appendTo(this.$deviceTester),this.resizer=new n(this);var s=this.responsive.parameters.enabledDevices;s.mobilePortrait&&new i(this,"mobilePortrait",this.responsive.parameters.sizes.mobilePortrait,"ssi_24--mobileportrait"),s.tabletPortrait&&new i(this,"tabletPortrait",this.responsive.parameters.sizes.tabletPortrait,"ssi_24--tabletportrait"),new i(this,"desktopPortrait",this.responsive.parameters.sizes.desktopPortrait,"ssi_24--desktop").activate(),this.responsive.identifyDeviceID=this.proxyIdentifyDeviceID.bind(this)},t.prototype.setDevice=function(t,i,s,n){this.device&&(this.devices[this.device].markInActive(),this.$icon.removeClass(this.devices[this.device].icon)),this.device=t,$("body").attr("data-device",t),this.devices[this.device].markActive(),this.$icon.addClass(this.devices[this.device].icon),this.width=i,this.minWidth=s,this.maxWidth=n,this.resizer.setLimits(s,n,i),this.resizer.setValue(this.width),this.container.width(this.width+"px"),this.slider.stages.resolved("Resized")&&this.responsive.doResize()},t.prototype.setWidth=function(t){(t=Math.max(Math.min(t,this.maxWidth),this.minWidth))!==this.width&&(this.width=t,this.resizer.setValue(t),this.container.width(this.width+"px"),this.responsive.doResize())},t.prototype.proxyIdentifyDeviceID=function(){return this.slider.sliderElement.ownerDocument.defaultView._N2.SmartSliderResponsive.DeviceMode[this.device.toLowerCase()]},i.prototype.markActive=function(){this.$button.addClass("n2_device_tester_devices__device--active")},i.prototype.markInActive=function(){this.$button.removeClass("n2_device_tester_devices__device--active")},i.prototype.activate=function(){this.deviceChanger.setDevice(this.device,this.data.width,this.data.min,this.data.max)},n.prototype.setLimits=function(t,i,s){this.min=t,this.$min.text(t),this.max=i,this.$max.text(i),this.editorSize=s,this.onePxToReal=(i-t)/this.trailSize,this.$editorSize.css("left",Math.round((s-t)/(i-t)*this.trailSize)+"px")},n.prototype.setValue=function(t){this.$handleLabel.text(t),this.$handle.css("left",Math.round((t-this.min)/(this.max-this.min)*this.trailSize)+"px")},n.prototype.onMouseDown=function(e){e.preventDefault(),$("body").addClass("n2_body--resize-editor"),this.resizeContext={clientX:this.$zoomInner[0].getBoundingClientRect().left,width:this.deviceChanger.width},s.addEventListener("mousemove",this.mouseMoveDelegate),s.addEventListener("mouseup",this.mouseUpDelegate),this.deviceChanger.setActiveState("drag",!0),this.onMouseMove(e)},n.prototype.onMouseMove=function(e){var t=Math.round(this.min+(e.clientX-this.resizeContext.clientX)*this.onePxToReal);Math.abs(this.editorSize-t)<2*this.onePxToReal&&(t=this.editorSize),this.deviceChanger.setWidth(t)},n.prototype.onMouseUp=function(e){s.removeEventListener("mousemove",this.mouseMoveDelegate),s.removeEventListener("mouseup",this.mouseUpDelegate),this.deviceChanger.setActiveState("drag",!1),$("body").removeClass("n2_body--resize-editor")},t})),c.d("SliderPreview",["$","UIDragTooltip"],(function(){var t,$=c.$,n=new c.UIDragTooltip("Resize");function h(){t={desktopPortrait:n2_("Desktop"),desktopLandscape:n2_("Large desktop"),tabletPortrait:n2_("Tablet"),tabletLandscape:n2_("Large tablet"),mobilePortrait:n2_("Mobile"),mobileLandscape:n2_("Large mobile")},this.frameScrollTop=0,this.scale=1,this.activeInfo=!1,this.sliderInfos={},this.isIframeContext=i.parent!==i,this.isIframeContext?(this.$parentDocument=i.parent._N2.$(i.parent.document),s.addEventListener("wheel",function(e){e.preventDefault()}.bind(this),{passive:!1}),i.addEventListener("message",function(e){var t={};try{t=JSON.parse(e.data)}catch(e){}switch(t.action){case"cancel":this.$parentDocument.triggerHandler("n2Close");break;case"scrollTop":this.updateFrameScrollTop(t.data);break;case"device_info":this.updateDeviceInfo(t.data)}}.bind(this),!1),s.addEventListener("keydown",function(e){e.defaultPrevented||"Escape"===e.code&&(e.preventDefault(),this.$parentDocument.triggerHandler("n2Close"))}.bind(this)),$(".n2_preview_slider__close").on("click",function(e){e.preventDefault(),this.$parentDocument.triggerHandler("n2Close")}.bind(this))):i.addEventListener("message",function(e){var t={};try{t=JSON.parse(e.data)}catch(e){}switch(t.action){case"scrollTop":this.updateFrameScrollTop(t.data);break;case"device_info":this.updateDeviceInfo(t.data)}}.bind(this),!1),this.init(),this.$frame=$(".n2_preview__device_screen_inner iframe"),$(".n2_preview form").trigger("submit")}function l(t){return t.replace(/[^0-9]/gi,"").replace(/^[0]+/gi,"").substr(0,5)}function u(t,i,s,n){this.sliderPreview=t,this.label=i,this.width=s,this.height=n,t.devices.push(this),this.$bar=$('<div class="n2_preview__ruler_device"><div></div></div>').on({mouseenter:function(){this.sliderPreview.setTempLabel(this.getLabel())}.bind(this),mouseleave:function(){this.sliderPreview.resetLabel()}.bind(this),click:function(){this.sliderPreview.setDimensions(this.width,this.height),this.sliderPreview.setCurrentDevice(this)}.bind(this)}).prependTo(t.$ruler),this.refreshScale()}function d(t,i){this.sliderPreview=t,this.id=i,this.top=0,this.$tip=$('<div class="n2_preview__slider_info"></div>').appendTo(this.sliderPreview.$infoState)}return h.prototype.init=function(){this.$fieldWidth=$(".n2_preview_toolbar__width").on("click",function(){"true"!==this.$fieldWidth[0].contentEditable&&new c.InlineTextEditor(this.$fieldWidth[0],{filter:l,onSave:function(t){(t=parseInt(t))?this.setWidth(t):this.onResize()}.bind(this),onCancel:function(){this.onResize()}.bind(this)})}.bind(this)),this.$fieldHeight=$(".n2_preview_toolbar__height").on("click",function(){"true"!==this.$fieldHeight[0].contentEditable&&new c.InlineTextEditor(this.$fieldHeight[0],{filter:l,onSave:function(t){(t=parseInt(t))?this.setHeight(t):this.onResize()}.bind(this),onCancel:function(){this.onResize()}.bind(this)})}.bind(this)),this.$fieldScale=$(".n2_preview_toolbar__scale").on("change",function(){this.setScale(this.$fieldScale.val()/100)}.bind(this)),this.devices=[],this.$ruler=$(".n2_preview__ruler"),new u(this,n2_("Mobile")+" S",375,667),new u(this,n2_("Mobile")+" L",425,756),new u(this,n2_("Tablet"),768,1024),new u(this,n2_("Laptop"),1024,768),new u(this,n2_("Laptop")+" L",1440,900),new u(this,"Full HD",1920,1080),new u(this,"4K",2560,1440),this.$label=$(".n2_preview__ruler_label"),this.$infoState=$(".n2_preview__device_info_state"),this.$infoTip=$(".n2_preview__device_info .ssi_16"),this.$screen=$(".n2_preview__device_screen"),this.$notification=$('<div class="n2_preview__notification_scale"></div>').appendTo(this.$screen),this.$screenInner=$(".n2_preview__device_screen_inner"),$(".n2_preview__resize_width").on("mousedown",function(e){e.preventDefault(),n.dragShow(),$("body").addClass("n2_body--resize-horizontal");var t=e.clientX,i=Math.floor(this.$screenInner.width()/this.scale);n.dragUpdate(e,n2_("Width")+": "+Math.max(320,Math.ceil(i))+"px"),$(s).on({"mousemove.resize":function(e){var s=Math.floor(i-2*(t-e.clientX)/this.scale);this.setWidth(s),this.removeCurrentDevice(),n.dragUpdate(e,n2_("Width")+": "+Math.max(320,Math.ceil(s))+"px")}.bind(this),"mouseup.resize":function(){n.dragHide(),$(s).off(".resize"),$("body").removeClass("n2_body--resize-horizontal")},"mouseleave.resize":function(){n.dragHide(),$(s).off(".resize"),$("body").removeClass("n2_body--resize-horizontal")}})}.bind(this)),$(".n2_preview__resize_height").on("mousedown",function(e){e.preventDefault(),n.dragShow(),$("body").addClass("n2_body--resize-vertical");var t=e.clientY,i=Math.floor(this.$screenInner.height()/this.scale);n.dragUpdate(e,n2_("Height")+": "+Math.max(320,i)+"px"),$(s).on({"mousemove.resize":function(e){var s=Math.floor(i-(t-e.clientY)/this.scale);this.setHeight(s),this.removeCurrentDevice(),n.dragUpdate(e,n2_("Height")+": "+Math.max(320,s)+"px")}.bind(this),"mouseup.resize":function(){n.dragHide(),$(s).off(".resize"),$("body").removeClass("n2_body--resize-vertical")}})}.bind(this)),$(".n2_button_preview_orientation").on("click",function(e){e.preventDefault(),this.removeCurrentDevice(),this.setDimensions(this.$screenInner.height()/this.scale,this.$screenInner.width()/this.scale)}.bind(this)),$(".n2_button_preview_reload").on("click",function(e){e.preventDefault(),this.reload()}.bind(this)),$(i).on("resize",this.onResize.bind(this)),this.onResize(),this.$ruler.addClass("n2_preview__ruler--ready")},h.prototype.reload=function(){$(".n2_preview form").trigger("submit")},h.prototype.onResize=function(){this.$fieldWidth.text(Math.floor(this.$screenInner.width()/this.scale)),this.$fieldHeight.text(Math.floor(this.$screenInner.height()/this.scale))},h.prototype.displayNotification=function(t){this.notificationTimeout&&a(this.notificationTimeout),this.$notification.text(t).addClass("n2_preview__notification_scale--visible"),this.notificationTimeout=o(function(){this.$notification.removeClass("n2_preview__notification_scale--visible"),delete this.notificationTimeout}.bind(this),600)},h.prototype.setScale=function(t){this.displayNotification(100*t+"%");var i=this.scale;this.scale=t,$("body").addClass("n2_body--scale-preview"),o((function(){$("body").removeClass("n2_body--scale-preview")}),1500),this.$screen=$(".n2_preview__device_screen");var s=this.$screenInner.width(),n=this.$screenInner.height();this.$frame.css({transform:"scale("+this.scale+")",width:1/this.scale*100+"%",height:1/this.scale*100+"%",marginLeft:(100-1/this.scale*100)/2+"%",marginRight:(100-1/this.scale*100)/2+"%"});for(var h=0;h<this.devices.length;h++)this.devices[h].refreshScale();this._setDimensions(s/i,n/i),this.onResize()},h.prototype.setDimensions=function(t,i){var s=this.$screen.width(),n=this.$screen.height(),h=Math.max(25,25*Math.floor(100*Math.min(1,s/t,n/i)/25));parseInt(this.$fieldScale.val())!==h&&h<=100&&this.$fieldScale.val(h).trigger("change"),this._setDimensions(t,i)},h.prototype._setDimensions=function(t,i){this.setWidth(t),this.setHeight(i)},h.prototype.setWidth=function(t){t=Math.floor(Math.max(320,t)*this.scale),this.$screenInner.css("maxWidth",t+"px"),this.$fieldWidth.text(Math.floor(this.$screenInner.width()/this.scale))},h.prototype.setHeight=function(t){t=Math.floor(Math.max(320,t)*this.scale),this.$screenInner.css("maxHeight",t+"px"),this.$fieldHeight.text(Math.floor(this.$screenInner.height()/this.scale))},h.prototype.setCurrentDevice=function(t){this.currentDevice&&this.currentDevice!==t&&this.removeCurrentDevice(),this.currentDevice=t,this.resetLabel()},h.prototype.removeCurrentDevice=function(){this.currentDevice&&(this.currentDevice.deActivate(),delete this.currentDevice,this.resetLabel())},h.prototype.setTempLabel=function(t){this.currentDevice&&this.currentDevice.deActivate(),this.$label.text(t)},h.prototype.resetLabel=function(){this.currentDevice?(this.$label.text(this.currentDevice.getLabel()),this.currentDevice.activate()):this.$label.text("")},h.prototype.setInfo=function(t,i,s,n){this.$infoState.text(t);var h=[];h.push("<b>"+n2_("Orientation")+": </b>"+(i?n2_("Landscape"):n2_("Portrait"))),s<=0?h.push("<b>"+n2_("Size")+": </b>"+n2_sprintf(n2_("Below %s pixels."),n)):n>=1e5?h.push("<b>"+n2_("Size")+": </b>"+n2_sprintf(n2_("Above %s pixels."),s)):h.push("<b>"+n2_("Size")+": </b>"+n2_sprintf(n2_("Between %s and %s pixels."),s,n)),this.$infoTip.data("formTip")?this.$infoTip.data("formTip").setDescription(h.join("<br>")):this.$infoTip.data("tip-description",h.join("<br>"))},h.prototype.updateFrameScrollTop=function(t){this.frameScrollTop=t.scrollTop,this.updateActive()},h.prototype.updateDeviceInfo=function(t){this.sliderInfos[t.id]===r&&(this.sliderInfos[t.id]=new d(this,t.id)),this.sliderInfos[t.id].update(t),this.updateActive()},h.prototype.updateActive=function(){var t=!1,i=Number.POSITIVE_INFINITY;for(var s in this.sliderInfos)this.sliderInfos[s].top<i&&(i=this.sliderInfos[s].top,t=this.sliderInfos[s]);for(var s in this.sliderInfos)this.sliderInfos[s].top<=this.frameScrollTop&&t.top<this.sliderInfos[s].top&&(t=this.sliderInfos[s]);this.activeInfo!==t&&(this.activeInfo=t,this.updateInfo(t))},h.prototype.updateInfo=function(t){this.activeInfo===t&&this.setInfo(this.activeInfo.device,this.activeInfo.isLandscape,this.activeInfo.minScreenWidth,this.activeInfo.maxScreenWidth)},u.prototype.activate=function(){this.$bar.addClass("n2_preview__ruler_device--active")},u.prototype.deActivate=function(){this.$bar.removeClass("n2_preview__ruler_device--active")},u.prototype.getLabel=function(){return this.label+" "+this.width+" x "+this.height+"px"},u.prototype.refreshScale=function(){var t=this.width*this.sliderPreview.scale;this.$bar.css({width:t+"px",marginLeft:-t/2+"px"})},d.prototype.update=function(i){this.device=t[i.device],this.isLandscape=i.isLandscape,this.minScreenWidth=i.minScreenWidth,this.maxScreenWidth=i.maxScreenWidth,this.top=i.top,this.sliderPreview.updateInfo(this)},h})),c.d("SliderChangeType","$",(function(){var $=c.$;function t(t){c._changeSliderType=this,this.options=f({types:{},currentType:"simple",ajaxUrl:""},t),c.r("documentReady",this.onReady.bind(this))}return t.prototype.onReady=function(){$(".n2_slider_action__change_slider_type").on("click",this.showModal.bind(this))},t.prototype.showModal=function(e){e&&e.preventDefault();var t=new c.ModalSimple("activate",{destroyOnHide:!0,width:630});t.addContent(c.UI.modalIcon("ssi_48 ssi_48--convert","blue")),t.addContent(c.UI.modalHeading(n2_("Change slider type")));var i=c.UI.modalFormRow(!0);t.addContent(i),c.UI.modalNotice(i,n2_("Changing your slider type is irreversible. After changing your slider type, <b>you will lose all slider type related settings</b>."),"notice");var s=c.UI.modalFormRow(!0);t.addContent(s);var n=c.UI.modalFieldSelectIcon(s,"slider-type",n2_("Slider type"),this.options.types,this.options.currentType),h=c.UI.modalButton(n2_("Convert"),"blue");t.addButton(h),h.on("click",function(e){e.preventDefault(),this.convertSliderType(n.val()),t.hide()}.bind(this)),t.show()},t.prototype.convertSliderType=function(t){this.options.currentType!==t&&c.AjaxHelper.ajax({type:"POST",url:this.options.ajaxUrl,data:{targetSliderType:t},dataType:"json"}).done((function(){i.location.reload()}))},t})),c.d("CreateSlider","$",(function(){var $=c.$;function t(t,s,n,h,r,o){this.groupID=t,this.ajaxUrl=s,this.userEmail=h,this.shouldSkipLicenseModal=n,this.skipNewsletter=r,this.importUrl=o,$(".n2_slider_manager__new_slider").on("click",this.createProject.bind(this)),"createslider"===i.location.hash.substring(1)&&this.createProject()}return t.prototype.createProject=function(){var t=new c.ModalSimple("new-project",{destroyOnHide:!0,width:1e3}),i=$('<div class="n2_new_project"></div>');t.addContent(i),$('<div class="n2_new_project__heading"></div>').text(n2_("What do you want to create today?")).appendTo(i),$('<div class="n2_new_project__sub_heading"></div>').text(n2_("Use our powerful visual editor, or simply import one of our existing template.")).appendTo(i);var s=$('<div class="n2_new_project__boxes"></div>').appendTo(i),n=$('<div class="n2_new_project__box"></div>').on("click",function(e){t.hide(e),this.createSlider()}.bind(this)).appendTo(s);$('<div class="n2_new_project__box_illustration"><img src="'+c._imageHelper.fixed("$ss3-admin$/images/sliders/newproject.svg")+'" alt="" width="160" /></div>').appendTo(n),$('<div class="n2_new_project__box_heading"></div>').text(n2_("Create a New Project")).appendTo(n),$('<div class="n2_new_project__box_sub_heading"></div>').text(n2_("Start a new project from scratch and build exactly what you’ve imagined. You can easily customize every pixels and create anything with layers.")).appendTo(n);var h=$('<div class="n2_new_project__box"></div>').on("click",function(e){this.showExampleSlidersWindow(),t.hide(e)}.bind(this)).appendTo(s);$('<div class="n2_new_project__box_illustration"><img src="'+c._imageHelper.fixed("$ss3-admin$/images/sliders/template.svg")+'" alt="" width="160" /></div>').appendTo(h),$('<div class="n2_new_project__box_heading"></div>').text(n2_("Start with a Template")).appendTo(h),$('<div class="n2_new_project__box_sub_heading"></div>').text(n2_("Start with a template and make it your own with the innovative drag and drop interface. You can choose from hundreds of premade templates.")).appendTo(h),$('<a class="n2_new_project__import" href="'+this.importUrl+'"></a>').text(n2_("or import your own files")).appendTo(i),t.show()},t.prototype.createSlider=function(){var t=new c.ModalSimple("create-new-project",{destroyOnHide:!0,width:900}),i=$('<div class="n2_create_new_project"></div>');t.addContent(i),$('<div class="n2_create_new_project__heading"></div>').text(n2_("Create new project")).appendTo(i);var n=c.UI.modalFormRowLarge().appendTo(i),h=c.UI.modalFieldSelectIcon(n,"project-type",n2_("Project type"),{slider:{icon:"ssi_64 ssi_64--fullwidthslider",label:n2_("Slider")},block:{icon:"ssi_64 ssi_64--block",label:n2_("Block")}},"slider"),r=function(){var t=h.val();o.toggleClass("n2_form_element--hidden","block"===t)};h.on("nextendChange",r);var o=c.UI.modalFormContainer(i,"slider-settings-container"),a=c.UI.modalFormRowLarge().appendTo(o);c.UI.modalFieldSelectIcon(a,"slider-type",n2_("Slider type"),{simple:{icon:"ssi_64 ssi_64--slider",label:n2_("Simple")},carousel:{icon:"ssi_64 ssi_64--carousel",label:n2_("Carousel")},showcase:{icon:"ssi_64 ssi_64--showcase",label:n2_("Showcase")}},"simple").on("nextendChange",r),a.find('.n2_field_select_icon__option:not([data-value="simple"])').css({"pointer-events":"none",opacity:.5}).find(".n2_field_select_icon__option_label").append(s.createTextNode(" ("+n2_("Pro")+")")),c.UI.modalSubHeading(n2_("Settings")).appendTo(i);var l=c.UI.modalFormRow().appendTo(i),u=c.UI.modalFieldText(l,"project-name",n2_("Name"),n2_("My project")).css("width","200px"),d=c.UI.modalNumber(l,"slider-width",n2_("Width"),1200,{min:200,unit:"px"}),f=c.UI.modalNumber(l,"slider-height",n2_("Height"),600,{min:100,unit:"px"}),_={boxed:n2_("Boxed"),fullwidth:n2_("Full width"),fullpage:n2_("Full page")},v=c.UI.modalSelect(l,"slider-responsive-mode",n2_("Layout"),_,"fullwidth");l.find('option[value="fullpage"]').attr("disabled","disabled").text(n2_("Full page")+" ("+n2_("Pro")+")");var p=c.UI.modalButton(n2_("Create"),"green").on("click",function(e){e.preventDefault();var t={groupID:this.groupID,projectName:u.val(),projectType:h.val(),sliderWidth:parseInt(d.val()),sliderHeight:parseInt(f.val()),responsiveMode:v.val()};c.AjaxHelper.ajax({type:"POST",url:c.AjaxHelper.makeAjaxUrl(this.ajaxUrl,{nextendaction:"create"}),data:t,dataType:"json"}).done(function(t){c.LoadingScreen.startLoading()}.bind(this))}.bind(this));t.addButton(p),r(),t.show()},t.prototype.showExampleSlidersWindow=function(){var t=this;$("body").css("overflow","hidden");var s=$('<iframe src="//smartslider3.com/demo-import/?pro=0&version='+N2SS3VERSION+"&utm_campaign="+N2SS3C+"&utm_source=import-slider-frame&utm_medium=smartslider-"+N2PLATFORM+'-free"></iframe>').css({position:"fixed",zIndex:1e5,left:0,top:0,width:"100%",height:"100%"}).appendTo("body"),n=function(){$("body").css("overflow",""),s.remove(),i.removeEventListener("message",r,!1)},h=function(i){c.AjaxHelper.ajax({type:"POST",url:c.AjaxHelper.makeAjaxUrl(t.ajaxUrl,{nextendaction:"importDemo"}),data:{groupID:t.groupID,key:c.Base64.encode(i.replace(/^(http(s)?:)?\/\//,"//"))},dataType:"json"}).fail((function(){}))},r=function(e){if("http://smartslider3.com"===e.origin||"https://smartslider3.com"===e.origin){var i=e.data;switch(i.key){case"importSlider":return void(t.skipNewsletter?h(i.data.href):t.joinCommunity((function(){h(i.data.href)})));case"closeWindow":n()}}};c.Esc.add(function(){return n(),!0}.bind(this)),i.addEventListener("message",r,!1)},t.prototype.joinCommunity=function(t){var i=function(e,t){c.AjaxHelper.ajax({type:"POST",url:c.AjaxHelper.makeAjaxUrl(c.AjaxHelper.getAdminUrl("ss3-admin"),{nextendcontroller:"settings",nextendaction:t||"dismissNewsletterSampleSliders"}),dataType:"json"})};this.modal=new c.ModalSimple("url-modal"),this.modal.addContent(c.UI.modalIcon("ssi_48 ssi_48--newsletter","purple")),this.modal.addContent(c.UI.modalHeading(n2_("Join The Smart Slider 3 Community"))),this.modal.addContent(c.UI.modalParagraph(n2_("Join more than 120,000 subscribers and get access to the latest slider templates, tips, tutorials and other exclusive contents directly to your inbox.")).css("margin-bottom","12px")),this.modal.$modalBody.css("text-align","center");var s=$("<form></form>");s.append(c.UI.modalInput("EMAIL","email","","example@google.com")),s.append(c.UI.modalInput(N2PLATFORM.toUpperCase(),"hidden","Yes")),s.append(c.UI.modalInput("SOURCE","hidden","Smart Slider 3")),this.modal.addContent(s);var n=c.UI.modalButton(n2_("Subscribe"),"purple");this.modal.addButton(n),n.on("click",function(e){c.AjaxHelper.ajax({type:"POST",url:"https://secure.nextendweb.com/mailchimp/subscribe.php",data:s.serialize(),dataType:"json"}).done((function(){t()})),i(0,"subscribed")}.bind(this)),this.modal.$modalBodyOuter.find(".n2_modal__close").on("click",(function(e){i(),t()})),this.modal.show()},t})),c.d("SliderEdit","$",(function(){var $=c.$;function t(t){this.options=f({previewInNewWindow:!1,saveAjaxUrl:"",previewUrl:"",ajaxUrl:"",formData:{}},t),this.url=this.options.ajaxUrl,this.values=this.options.formData,c.Form.prototype.constructor.call(this),c.r("documentReady",this.onReady.bind(this))}return t.prototype=Object.create(c.Form.prototype),t.prototype.constructor=t,t.prototype.onReady=function(){this.setID("#n2-ss-edit-slider-form"),c.Form.prototype.onReady.call(this),this.$form.on("submit",this.onSaveSubmit.bind(this)),this.initPreview()},t.prototype.onKeyDown=function(e){var t=!1;return(e.ctrlKey||e.metaKey)&&"Digit1"===e.code&&(this.showPreview(),t=!0),t?e.preventDefault():t=c.Form.prototype.onKeyDown.call(this,e),t},t.prototype.initButtons=function(){this.$saveButton=$(".n2_slider_settings_save").on("click",this.actionSave.bind(this)),$(".n2_slider_settings_back").on("click",this.actionCancel.bind(this))},t.prototype.actionSave=function(e){e&&e.preventDefault(),this.skipChangeConfirm=!0,this.$form.trigger("submit")},t.prototype.actionCancel=function(e){e&&e.preventDefault(),i.location=e.currentTarget.href},t.prototype.onSaveSubmit=function(e){this.$form.attr("target")===r&&(e.preventDefault(),c.AjaxHelper.ajax({type:"POST",url:this.options.saveAjaxUrl,data:this.$form.serialize(),dataType:"json",success:this.onAfterSave.bind(this)}))},t.prototype.onAfterSave=function(t){if($(".n2_header__heading_primary").text($("#slidertitle").val()),t&&t.data&&t.data.changedFields){for(var i in t.data.changedFields)t.data.changedFields.hasOwnProperty(i)&&$("#"+i).val(t.data.changedFields[i]);if(t.data.changedFields.slideralias!==r){var s=t.data.changedFields[i],n=$('.n2_ss_slider_publish__option_code[data-mode="alias"]');n.length||(n=$('<div class="n2_ss_slider_publish__option_code" data-mode="alias"></div>').insertAfter($('.n2_ss_slider_publish__option_code[data-mode="id"]'))),s?n.text('[smartslider3 alias="'+s+'"]'):n.remove()}}this.afterSave()},t.prototype.initPreview=function(){this.options.previewInNewWindow||(this.modal=new c.ModalIframe("preview-slider")),$(".n2_top_bar_main__preview").on("click",function(e){e.preventDefault(),this.showPreview()}.bind(this))},t.prototype.showPreview=function(){"main"===c.WindowManager.getCurrentWindow()&&(this.options.previewInNewWindow?c.PreviewPopup("","preview-slider"):this.modal.show(),this.$form.attr({action:c.AjaxHelper.makeAjaxUrl(this.options.previewUrl,{nextendaction:this.options.previewInNewWindow?"index":"slider"}),target:"preview-slider"}).trigger("submit").attr({action:this.formAction,target:null}))},t})),c.d("SliderImport","$",(function(){var $=c.$;function t(t){c.Form.prototype.constructor.call(this),c.r("documentReady",this.onReady.bind(this))}return t.prototype=Object.create(c.Form.prototype),t.prototype.constructor=t,t.prototype.onReady=function(){this.setID("#n2-ss-form-slider-import"),c.Form.prototype.onReady.call(this),this.$localImportSwitch=$("#sliderupload_or_local"),this.$localImport=$("#sliderlocal-import-file"),this.$uploadImport=$("#sliderimport-file"),this.$form.on("submit",this.onSubmit.bind(this))},t.prototype.onChange=function(){this.hasChange=!1,parseInt(this.$localImportSwitch.val())?""!==this.$localImport.val()&&(this.hasChange=!0):""!==this.$uploadImport.val()&&(this.hasChange=!0),this.$saveButton.toggleClass("n2_button--inactive",!this.hasChange)},t.prototype.initButtons=function(){this.$saveButton=$(".n2_slider_import").on("click",this.actionSave.bind(this)),$(".n2_slider_import_back").on("click",this.actionCancel.bind(this))},t.prototype.actionSave=function(e){e&&e.preventDefault(),this.skipChangeConfirm=!0,this.$form.trigger("submit"),this.afterSave()},t.prototype.actionCancel=function(e){e&&e.preventDefault(),i.location=e.currentTarget.href},t.prototype.onSubmit=function(e){e.preventDefault();var t=new FormData(this.$form[0]);c.AjaxHelper.ajax({type:"POST",contentType:!1,url:this.$form.attr("action"),processData:!1,data:t,dataType:"json"})},t})),c.d("ManageSliders","$",(function(){var $=c.$;function t(t,i,s){this.groupID=t,this.exportAllUrl=i.exportAllUrl,this.ajaxUrl=i.ajaxUrl,this.previewUrl=i.previewUrl,this.importUrl=i.importUrl,this.sliders=[],this.sliderPanel=$(".n2_slider_manager"),this.orderBy="ordering"===this.sliderPanel.data("orderby"),this.slidersContainer=this.sliderPanel.find(".n2_slider_manager__content");for(var n=this.slidersContainer.find(".n2_slider_box"),h=0;h<n.length;h++)this.sliders.push(new c.Slider(this,n.eq(h)));this.changed(),this.initOrderable(),this.create=new c.CreateSlider(t,this.ajaxUrl,s,i.userEmail,i.skipNewsletter,this.importUrl),this.initBulk()}return t.prototype.changed=function(){$("html").attr("data-sliders",this.sliders.length)},t.prototype.initSliders=function(){for(var t=this.slidersContainer.find(".n2_slider_box"),s=[],n=0;n<t.length;n++){var h=t.eq(n).data("slider");s.push(h)}this.sliders=s,this.changed(),$(i).triggerHandler("SmartSliderSidebarSlidersChanged")},t.prototype.initOrderable=function(){if(this.orderBy){var t={helper:"clone",items:"> .n2_slider_box",stop:this.saveOrder.bind(this),placeholder:"n2_slider_manager__sortable_placeholder",distance:10};this.uiSortable=new c.UISortable(this.slidersContainer,t)}},t.prototype.saveOrder=function(e,t){var s,n=this.slidersContainer.find(".n2_slider_box"),h=[],r=[],o=[];for(s=0;s<n.length;s++){var a=n.eq(s).data("slider");h.push(a),r.push(a.getId())}for(s=0;s<this.sliders.length;s++)o.push(this.sliders[s].getId());if(JSON.stringify(o)!==JSON.stringify(r)){$(i).triggerHandler("SmartSliderSidebarSlidersOrderChanged");c.AjaxHelper.ajax({type:"POST",url:c.AjaxHelper.makeAjaxUrl(this.ajaxUrl,{nextendcontroller:"sliders",nextendaction:"order"}),data:{groupID:this.groupID,sliderorder:r,isReversed:"DESC"===this.sliderPanel.data("orderbydirection")?1:0}}),this.sliders=h}},t.prototype.trashSliders=function(t,i){c.AjaxHelper.ajax({url:c.AjaxHelper.makeAjaxUrl(this.ajaxUrl,{nextendcontroller:"sliders",nextendaction:"trash"}),type:"POST",data:{groupID:this.groupID,sliders:t}}).done(function(){for(var t=0;t<i.length;t++)i[t].remove();this.initSliders(),this.leaveBulk()}.bind(this))},t.prototype.duplicateSliders=function(t,i){for(var s=0;s<this.sliders.length;s++)this.sliders[s].selected&&this.sliders[s].duplicate($.Event("click",{currentTarget:null}))},t.prototype.exportSliders=function(t,s){i.location.href=c.N2QueryString.add_query_arg({sliders:t},this.exportAllUrl)},t.prototype.initBulk=function(){this.selection=[],this.isBulkSelection=!1,$("#n2_slider_manager_bulk_actions a[data-action]").on("click",function(e){switch(e.preventDefault(),$(e.currentTarget).data("action")){case"duplicate":this.bulkAction("duplicateSliders",!1);break;case"trash":this.bulkAction("trashSliders",!1);break;case"export":this.bulkAction("exportSliders",!1);break;case"select-all":this.bulkSelect((function(t){t.select()}));break;case"select-none":this.bulkSelect((function(t){t.deSelect()}))}}.bind(this))},t.prototype.addSelection=function(t){0===this.selection.length&&this.enterBulk(),this.selection.push(t)},t.prototype.removeSelection=function(t){this.selection.splice(this.selection.indexOf(t),1),0===this.selection.length&&this.leaveBulk()},t.prototype.bulkSelect=function(t){for(var i=0;i<this.sliders.length;i++)t(this.sliders[i])},t.prototype.bulkAction=function(t,i){var s=[],n=[];this.bulkSelect((function(t){!t.selected||i&&t.isGroup||(s.push(t),n.push(t.getId()))})),n.length?(this[t](n,s),this.leaveBulk()):i?c.Notification.notice("Please select one or more sliders for the action!"):c.Notification.notice("Please select one or more sliders or groups for the action!")},t.prototype.enterBulk=function(){this.isBulkSelection||(this.isBulkSelection=!0,this.orderBy&&this.uiSortable.setOption("disabled",!0),$("body").addClass("n2_body--bulk-select"))},t.prototype.leaveBulk=function(){if(this.isBulkSelection){this.orderBy&&this.uiSortable.setOption("disabled",!1),$("body").removeClass("n2_body--bulk-select");for(var t=0;t<this.sliders.length;t++)this.sliders[t].deSelect();this.selection=[],this.isBulkSelection=!1}},t})),c.d("SelectSlider","$",(function(){var $=c.$,t=!1;function s(){this.cache={},this.ajaxUrl=c.AjaxHelper.makeAjaxUrl(c.AjaxHelper.getAdminUrl("ss3-admin"),{nextendcontroller:"sliders",nextendaction:"list"}),this.modal=new c.ModalLightbox("","select-slider"),this.modal.insertButton=c.UI.modalButton(n2_("Insert"),"green").addClass("n2_button--inactive"),this.modal.addButton(this.modal.insertButton),this.modal.insertButton.on("click",function(e){this.insertSlider(e)}.bind(this)),this.$content=$('<div class="n2_modal_select_slider"></div>'),this.modal.addContent(this.$content)}return s.prototype.setSkipGroup=function(t){this.skipGroup=t},s.prototype.setTitle=function(t){this.modal.setTitle(t)},s.prototype.displayList=function(t){t===r&&(t=0),this.cache[t]===r?c.AjaxHelper.ajax({url:this.ajaxUrl,type:"POST",data:{parentID:t}}).done(function(t,i){this.cache[t]=i.data,this.renderResponse(t,i.data)}.bind(this,t)):this.renderResponse(t,this.cache[t])},s.prototype.renderResponse=function(t,i){(this.$content.html(""),this.selectedSlider=[0],this.modal.insertButton.addClass("n2_button--inactive"),t>0)&&($('<div class="n2_slider_box__content"></div>').append($('<div class="n2_modal_select_slider__box n2_slider_box"></div>').append($('<div class="n2_slider_box__icon n2_slider_box__icon_grey"></div>').append($('<div class="n2_slider_box__icon_container"><i class="ssi_64 ssi_64--folderup"></i></div>')).append($('<div class="n2_slider_box__icon_text">'+n2_("Up")+"</div>")))).appendTo(this.$content).on("click",this.displayList.bind(this,0)),this.skipGroup||$('<div class="n2_slider_box__content"></div>').append($('<div class="n2_modal_select_slider__box n2_slider_box"></div>').append($('<div class="n2_slider_box__icon n2_slider_box__icon_grey"></div>').append($('<div class="n2_slider_box__icon_container"><i class="ssi_64 ssi_64--folder"></i></div>')).append($('<div class="n2_slider_box__icon_text">'+n2_("Insert group")+"</div>")))).appendTo(this.$content).on("click",function(e){this.selectedSlider=[t],this.insertSlider(e)}.bind(this)));for(var s=0;s<i.length;s++){var n=i[s],h=$('<div class="n2_slider_box__slider_identifiers"></div>').append($('<div class="n2_slider_box__slider_identifier"></div>').text("#"+n.id));n.isGroup&&h.append($('<div class="n2_slider_box__slider_identifier"></div>').text(n2_("Group"))),n.alias&&h.append($('<div class="n2_slider_box__slider_identifier"></div>').text(n.alias));var r="ssi_64 ssi_64--image";n.isGroup&&(r="ssi_64 ssi_64--folder");var o=$('<div class="n2_slider_box__icon"><div class="n2_slider_box__icon_container"><i class="'+r+'"></i></div></div>'),a=$('<div class="n2_slider_box__content"></div>').append(h);""===n.thumbnail&&a.append(o);var c=$('<div class="n2_slider_box__footer"></div>');n.isGroup&&c.append($('<div class="n2_slider_box__footer_icon"><i class="ssi_16 ssi_16--folderclosed"></i></div>'));var l=$('<div class="n2_modal_select_slider__box n2_slider_box"></div>').css("background-image","url("+n.thumbnail+")").append(a).append(c.append($('<div class="n2_slider_box__footer_title"></div>').text(n.title)).append($('<div class="n2_slider_box__footer_children_count"></div>').text(n.childrenCount))).appendTo(this.$content);n.isGroup?l.addClass("n2_slider_box--group").on("click",this.displayList.bind(this,n.id)):l.addClass("n2_slider_box--slider").on("click",this.select.bind(this,n.id,n.alias,t))}},s.prototype.select=function(t,i,s,e){this.$content.find(".n2_slider_box--selected").removeClass("n2_slider_box--selected"),$(e.currentTarget).addClass("n2_slider_box--selected"),this.selectedSlider=[t,i,s],this.modal.insertButton.removeClass("n2_button--inactive")},s.prototype.insertSlider=function(e){var t=this.selectedSlider[0],s=this.selectedSlider[1],n=this.selectedSlider[2];0!==t&&(this.callback.call(i,t,s,n),this.modal.hide(e))},s.prototype.show=function(t){this.callback=t,this.displayList(),this.modal.show()},function(i,n,h){!1===t&&(t=new s),t.setSkipGroup(h),t.setTitle(i),t.show(n)}})),c.d("Slider","$",(function(){var $=c.$;function t(t,i){this.selected=!1,this.manager=t,this.box=i.data("slider",this),this.isGroup=!!this.box.data("group"),this.editUrl=this.box.find(".n2_slider_box__slider_overlay_edit_button").attr("href"),this.box.on("contextmenu",this.onContextMenu.bind(this)),this.box.find(".n2_slider_box__slider_select_tick").on("click",function(e){e.stopPropagation(),e.preventDefault(),this.invertSelection()}.bind(this)),this.$more=this.box.find(".n2_slider_box__slider_action_more").on("click",this.onMore.bind(this)),this.initRename()}return t.prototype.getId=function(){return this.box.data("sliderid")},t.prototype.onContextMenu=function(e){e.preventDefault(),this.showContextMenu(e)},t.prototype.onMore=function(e){e.preventDefault(),this.showContextMenu(this.$more[0])},t.prototype.showContextMenu=function(t){var i=[];i.push({priority:10,label:n2_("Preview"),icon:"ssi_16 ssi_16--eye",action:this.preview.bind(this)}),i.push({priority:55,label:n2_("Duplicate"),icon:"ssi_16 ssi_16--duplicate",action:this.duplicate.bind(this)}),i.push({priority:1e3,label:n2_("Move to trash"),icon:"ssi_16 ssi_16--delete",action:this.trash.bind(this),color:"red"}),this.box.addClass("n2_slider_box--context-menu"),c.ContextMenu(t,i,{y:5,horizontalAlign:"left",onClose:function(){this.box.removeClass("n2_slider_box--context-menu")}.bind(this)})},t.prototype.preview=function(){i.open(c.N2QueryString.add_query_arg({sliderid:this.getId()},this.manager.previewUrl),"_blank")},t.prototype.duplicate=function(){var i=$.Deferred();return c.AjaxHelper.ajax({url:c.AjaxHelper.makeAjaxUrl(this.manager.ajaxUrl,{nextendcontroller:"slider",nextendaction:"duplicate",sliderid:this.getId()})}).done(function(s){var n=$(s.data).insertAfter(this.box),h=new t(this.manager,n);this.manager.initSliders(),i.resolve(h)}.bind(this)),i},t.prototype.trash=function(){this.manager.trashSliders([this.getId()],[this])},t.prototype.remove=function(){this.box.remove()},t.prototype.invertSelection=function(e){e&&e.preventDefault(),this.selected?this.deSelect():this.select()},t.prototype.select=function(){this.selected||(this.selected=!0,this.box.addClass("n2_slider_box--bulk-selected"),this.manager.addSelection(this))},t.prototype.deSelect=function(){this.selected&&(this.selected=!1,this.box.removeClass("n2_slider_box--bulk-selected"),this.manager.removeSelection(this))},t.prototype.initRename=function(){this.dblClickTimeout=!1,this.$label=this.box.find(".n2_slider_box__footer_title").on("click",function(e){"true"!==this.$label[0].contentEditable&&(this.dblClickTimeout?(a(this.dblClickTimeout),this.dblClickTimeout=!1,this.editName()):this.dblClickTimeout=o(function(){i.location=this.editUrl,this.dblClickTimeout=!1}.bind(this),500))}.bind(this)),this.title=this.$label.text().trim(),this.$label.text(this.title)},t.prototype.editName=function(){new c.InlineTextEditor(this.$label[0],{onSave:function(t){this.title!==t&&c.AjaxHelper.ajax({url:c.AjaxHelper.makeAjaxUrl(this.manager.ajaxUrl,{nextendcontroller:"slider",nextendaction:"rename",sliderid:this.getId(),title:t})}).done(function(){this.title=t}.bind(this)).fail(function(){this.$label.text(this.title)}.bind(this))}.bind(this),onCancel:function(){this.$label.text(this.title)}.bind(this),onTab:function(e){for(var t=$(".n2_slider_box__footer_title"),i=0;i<t.length;i++)if(this.$label.is(t[i])){e.shiftKey?i--:i++;break}i<0?i=t.length-1:i>=t.length&&(i=0),t.eq(i).trigger("click").trigger("click")}.bind(this)})},t})),c.d("SlidersTrash","$",(function(){var $=c.$;function t(t){this.options=t,this.$container=$(".n2_slider_trash");for(var i=this.$container.find(".n2_slider_box"),n=0;n<i.length;n++)new s(this,i.eq(n));this.$emptyTrashButton=$(".n2_slider_empty_trash").on("click",this.emptyTrash.bind(this)),this.refreshEmptyTrashStatus()}function s(t,i){this.manager=t,this.$box=i,this.$box.on("contextmenu",this.onContextMenu.bind(this)),this.$box.find(".n2_slider_box__slider_overlay_restore_button").on("click",this.restore.bind(this)),this.$more=this.$box.find(".n2_slider_box__slider_action_more").on("click",this.onMore.bind(this))}return t.prototype.emptyTrash=function(e){e.preventDefault(),this.isEmpty()||c.ModalDeleteConfirm(n2_("empty the trash"),function(){c.AjaxHelper.ajax({url:c.AjaxHelper.makeAjaxUrl(this.options.ajaxUrl,{nextendcontroller:"sliders",nextendaction:"emptyTrash"}),type:"POST"}).done(function(){this.$container.find(".n2_slider_box").remove(),this.refreshEmptyTrashStatus()}.bind(this))}.bind(this))},t.prototype.isEmpty=function(){return 0===this.$container.find(".n2_slider_box").length},t.prototype.refreshEmptyTrashStatus=function(){var t=this.isEmpty();this.$container.toggleClass("n2_slider_trash--empty",t),this.$emptyTrashButton.toggleClass("n2_button--inactive",t)},s.prototype.getId=function(){return this.$box.data("sliderid")},s.prototype.onContextMenu=function(e){e.preventDefault(),this.showContextMenu(e)},s.prototype.onMore=function(e){e.preventDefault(),this.showContextMenu(this.$more[0])},s.prototype.showContextMenu=function(t){var i=[];i.push({priority:20,label:n2_("Preview"),icon:"ssi_16 ssi_16--eye",action:this.preview.bind(this)}),i.push({priority:30,label:n2_("Delete permanently"),icon:"ssi_16 ssi_16--delete",action:this.deletePermanently.bind(this),color:"red"}),this.$box.addClass("n2_slider_box--context-menu"),c.ContextMenu(t,i,{y:5,horizontalAlign:"left",onClose:function(){this.$box.removeClass("n2_slider_box--context-menu"),this.manager.refreshEmptyTrashStatus()}.bind(this)})},s.prototype.restore=function(e){e.preventDefault(),c.AjaxHelper.ajax({url:c.AjaxHelper.makeAjaxUrl(this.manager.options.ajaxUrl,{nextendcontroller:"slider",nextendaction:"restore"}),type:"POST",data:{slider:this.getId()}}).done(function(){this.$box.remove(),this.manager.refreshEmptyTrashStatus()}.bind(this))},s.prototype.preview=function(){i.open(c.N2QueryString.add_query_arg({sliderid:this.getId()},this.manager.options.previewUrl),"_blank")},s.prototype.deletePermanently=function(){c.ModalDeleteConfirm(n2_("delete this slider"),function(){c.AjaxHelper.ajax({url:c.AjaxHelper.makeAjaxUrl(this.manager.options.ajaxUrl,{nextendcontroller:"slider",nextendaction:"deletePermanently"}),type:"POST",data:{slider:this.getId()}}).done(function(t){this.$box.remove();for(var i=t.data.sliderIDs,s=0;s<i.length;s++)$('.n2_slider_manager__box[data-sliderid="'+i[s]+'"]').remove();this.manager.refreshEmptyTrashStatus()}.bind(this))}.bind(this))},t})),c.d("FormElementAnimationManager",["$","FormElement"],(function(){var $=c.$;function t(t,i){this.element=$("#"+t),this.parent=this.element.parent(),this.managerIdentifier=i,this.parent.find(".n2_field_chooser__choose, .n2_field_chooser__label").on("click",this.show.bind(this)),this.parent.find(".n2_field_chooser__clear").on("click",this.clear.bind(this)),this.$name=this.parent.find(".n2_field_chooser__label"),this.updateName(this.element.val()),c.FormElement.prototype.constructor.call(this)}return t.prototype=Object.create(c.FormElement.prototype),t.prototype.constructor=t,t.prototype.show=function(e){e.preventDefault(),c["_"+this.managerIdentifier].show(this.element.val(),this.save.bind(this))},t.prototype.clear=function(e){e.preventDefault(),e.stopPropagation(),this.val("")},t.prototype.save=function(e,t){this.val(t)},t.prototype.val=function(t){this.element.val(t),this.updateName(t),this.triggerOutsideChange()},t.prototype.insideChange=function(t){this.element.val(t),this.updateName(t),this.triggerInsideChange()},t.prototype.updateName=function(t){var i;this.parent.toggleClass("n2_field_chooser--empty",""===t),i=""===t?n2_("Disabled"):n2_("Enabled"),this.$name.text(i)},t.prototype.isEmpty=function(t){return""===t},t})),c.d("FormElementColumns",["$","FormElement"],(function(){var $=c.$;function t(t){this.denominators={1:100,2:100,3:144,4:100,5:100,6:144},this.element=$("#"+t),c.FormElement.prototype.constructor.call(this),this.$c=$("#"+t).parent(),this.$container=this.$c.find(".n2_field_columns__content"),this.containerWidth=280,this.maxWidth=0,new c.UISortable(this.$container,{axis:"x",items:".n2_field_columns__column",helper:"clone_hide",start:function(e,t){this.$container.addClass("n2-sortable-currently-sorted"),t.placeholder.css({width:t.item.width()+"px",visibility:"hidden"});var i=this.$container.find(".n2_field_columns__column");t.item.data("index",i.index(t.item))}.bind(this),stop:function(e,t){var i=this.$container.find(".n2_field_columns__column"),s=t.item.data("index"),n=i.index(t.item);s!=n&&(this.currentRow.moveColOrOrder(s,n),t.item.data("index",null)),this.makeResizable(),this.$container.removeClass("n2-sortable-currently-sorted")}.bind(this)}),this.$c.find(".n2_field_columns__add").on({click:function(){this.currentRow.createCol()}.bind(this)})}return t.prototype=Object.create(c.FormElement.prototype),t.prototype.constructor=t,t.prototype.getDenominator=function(t){return this.denominators[t]===r&&(this.denominators[t]=15*t),this.denominators[t]},t.prototype.setRow=function(t){this.currentRow=t,this.insideChange(t.getColumnsOrdered())},t.prototype.setValue=function(t){},t.prototype.insideChange=function(t){this.start(t)},t.prototype.activateColumn=function(e){var t=this.$container.find(".n2_field_columns__column").index(e.currentTarget);this.currentRow.activateColumn(t,e)},t.prototype.start=function(t){this.percentages=[];for(var i=t.split("+"),s=0;s<i.length;s++)this.percentages.push(new Fraction(i[s]));this.refreshMaxWidth(),this.$container.empty();for(s=0;s<this.percentages.length;s++){var n=$('<div class="n2_field_columns__column">').on("click",this.activateColumn.bind(this)).appendTo(this.$container);c._tooltip.addElement(n,n2_("Column")),this.updateColumn(n,this.percentages[s])}this.makeResizable()},t.prototype.refreshMaxWidth=function(){this.maxWidth=this.containerWidth-16*(this.percentages.length-1)},t.prototype.updateColumn=function(t,i){t.css("width",this.maxWidth*i.valueOf()+"px").html(Math.round(100*i.valueOf()*10)/10+"%")},t.prototype.makeResizable=function(){this.handles&&this.handles.remove(),this.$columns=this.$container.find(".n2_field_columns__column"),$('<div class="n2_field_columns__handle"><div class="ssi_16 ssi_16--divide"></div></div>').insertAfter(this.$columns.not(this.$columns.last())),this.handles=this.$container.find(".n2_field_columns__handle").on("mousedown",this._resizeStart.bind(this))},t.prototype._resizeStart=function(e){var t=this.handles.index(e.currentTarget),i=this.$container.offset().left+8;this.resizeContext={index:t,cLeft:i,$currentCol:this.$columns.eq(t),$nextCol:this.$columns.eq(t+1),startX:Math.max(0,Math.min(e.clientX-i,this.containerWidth))},this._resizeMove(e),$("html").off(".resizecol").on({"mousemove.resizecol":this._resizeMove.bind(this),"mouseup.resizecol mouseleave.resizecol":this._resizeStop.bind(this)})},t.prototype._resizeMove=function(e){e.preventDefault();var t=Math.max(0,Math.min(e.clientX-this.resizeContext.cLeft,this.containerWidth)),i=this.getDenominator(this.percentages.length),s=new Fraction(Math.round((t-this.resizeContext.startX)/(this.maxWidth/i)),i);s.compare(this.percentages[this.resizeContext.index].clone().mul(-1))<0&&(s=this.percentages[this.resizeContext.index].clone().mul(-1)),s.compare(this.percentages[this.resizeContext.index+1])>0&&(s=this.percentages[this.resizeContext.index+1].clone());var n=this.percentages[this.resizeContext.index].add(s),h=this.percentages[this.resizeContext.index+1].sub(s);this.updateColumn(this.resizeContext.$currentCol,n),this.updateColumn(this.resizeContext.$nextCol,h);var r=f([],this.percentages);return r[this.resizeContext.index]=n,r[this.resizeContext.index+1]=h,this.onColumnWidthChange(r),[n,h]},t.prototype._resizeStop=function(e){var t=this._resizeMove(e);this.percentages[this.resizeContext.index]=t[0],this.percentages[this.resizeContext.index+1]=t[1],$("html").off(".resizecol"),delete this.resizeContext,this.currentRow.setRealColsWidth(this.percentages)},t.prototype.onColumnWidthChange=function(t){for(var i=[],s=0;s<t.length;s++)i.push(t[s].valueOf());this.currentRow.updateColumnWidth(i)},t})),c.d("FormElementControlTypePicker",["$","FormElement"],(function(){var $=c.$;function t(t,i){this.options=f({ajaxUrl:"",target:"",originalValue:""},i),this.id=t,this.element=$("#"+t);var s=this.element.parent();this.$items=s.find(".n2_field_control_type_picker__item"),this.target=$("#"+this.options.target),this.form=this.element.closest("form"),this.element.on("nextendChange",this.loadSubform.bind(this)),this.$items.on("click",function(e){this.selectOption($(e.currentTarget).data("controltype"))}.bind(this)),this.markSelected(this.options.originalValue),c.FormElement.prototype.constructor.call(this)}return t.prototype=Object.create(c.FormElement.prototype),t.prototype.constructor=t,t.prototype.loadSubform=function(){var t=this.element.val(),i=[];t===this.options.originalValue&&(i=this.form.data("form").values);var s={values:i,value:t};c.AjaxHelper.ajax({type:"POST",url:c.AjaxHelper.makeAjaxUrl(this.options.ajaxUrl),data:s,dataType:"json"}).done(this.load.bind(this))},t.prototype.load=function(t){this.target.html(t.data.html),eval(t.data.scripts),c.FormTipManager.add(this.target)},t.prototype.selectOption=function(t){this.setValue(t),this.markSelected(t),this.triggerOutsideChange()},t.prototype.setValue=function(t){this.element.val(t)},t.prototype.markSelected=function(t){this.$items.removeClass("n2_field_control_type_picker__item--selected");for(var i=0;i<this.$items.length;i++){if(this.$items.eq(i).data("controltype")===t)$(this.$items[i]).addClass("n2_field_control_type_picker__item--selected")}},t})),c.d("FormElementDatePicker",["$","FormElement"],(function(){var $=c.$;function t(t,i){this.element=$("#"+t),this.elements=[],this.elements.push($("#"+i[0]).on("outsideChange",this.onFieldOnOffChange.bind(this)));for(var s=1;s<i.length;s++)this.elements.push($("#"+i[s]).on("outsideChange",this.onFieldChange.bind(this)));c.FormElement.prototype.constructor.call(this),this.syncOnOff(),this.fixDate()}return t.prototype=Object.create(c.FormElement.prototype),t.prototype.constructor=t,t.prototype.getValue=function(){if(1===parseInt(this.elements[0].val())){var t=[this.elements[1].val(),this.pad(this.elements[2].val()),this.pad(this.elements[3].val())],i=[this.pad(this.elements[4].val()),this.pad(this.elements[5].val()),"00"];return t.join("-")+" "+i.join(":")}return this.getEmptyDate()},t.prototype.onFieldOnOffChange=function(){if(1===parseInt(this.elements[0].val())&&"0000"===this.elements[1].val()){var t=new Date,i=[t.getFullYear(),this.pad(t.getMonth()+1),this.pad(t.getDate())],s=[this.pad(t.getHours()),this.pad(t.getMinutes()),"00"];this.insideChange(i.join("-")+" "+s.join(":"))}this.onFieldChange()},t.prototype.onFieldChange=function(){this.fixDate()||(this.element.val(this.getValue()),this.triggerOutsideChange())},t.prototype.insideChange=function(t){if(this.element.val(t),t===this.getEmptyDate())this.elements[0].data("field").insideChange(0);else{var i=t.split(" "),s=i[0].split("-"),n=i[1].split(":");this.elements[0].data("field").insideChange(1),this.elements[1].data("field").insideChange(s[0]),this.elements[2].data("field").insideChange(s[1]),this.elements[3].data("field").insideChange(s[2]),this.elements[4].data("field").insideChange(n[0]),this.elements[5].data("field").insideChange(n[1]),this.fixDate()}this.triggerInsideChange()},t.prototype.syncOnOff=function(){this.element.val()===this.getEmptyDate()?this.elements[0].data("field").insideChange(0):this.elements[0].data("field").insideChange(1)},t.prototype.getEmptyDate=function(){return"0000-00-00 00:00:00"},t.prototype.pad=function(t,i){i=i||2;for(var s=t+"";s.length<i;)s="0"+s;return s},t.prototype.fixDate=function(){if(1===parseInt(this.elements[0].val())){for(var t=this.elements[1].val(),i=this.elements[2].val(),s=this.elements[3].val(),n=this.elements[3].data("field").select,h=new Date(t,i,0).getDate(),r=n[0].length,o=r;o>0;o--)n[0][o-1].removeAttribute("hidden");for(var a=r;a>h;a--)n[0][a-1].setAttribute("hidden","hidden");if(s>h)return this.elements[3].data("field").insideChange(h),this.onFieldChange(),!0}return!1},t})),function(t){"use strict";var i={s:1,n:0,d:1};function s(t,i){return isNaN(t=parseInt(t,10))&&n(),t*i}function n(){throw"Invalid Param"}var h=function(t,h){var o,a=0,c=1,l=1,u=0,d=0,f=0,_=1,v=1,p=0,b=1,m=1,g=1,y=1e7;if(t===r||null===t);else if(h!==r)l=(a=t)*(c=h);else switch(typeof t){case"object":"d"in t&&"n"in t?(a=t.n,c=t.d,"s"in t&&(a*=t.s)):0 in t?(a=t[0],1 in t&&(c=t[1])):n(),l=a*c;break;case"number":if(t<0&&(l=t,t=-t),t%1==0)a=t;else if(t>0){for(t>=1&&(t/=v=Math.pow(10,Math.floor(1+Math.log(t)/Math.LN10)));b<=y&&g<=y;){if(t===(o=(p+m)/(b+g))){b+g<=y?(a=p+m,c=b+g):g>b?(a=m,c=g):(a=p,c=b);break}t>o?(p+=m,b+=g):(m+=p,g+=b),b>y?(a=m,c=g):(a=p,c=b)}a*=v}else(isNaN(t)||isNaN(h))&&(c=a=NaN);break;case"string":if("-"===(b=t.match(/\d+|./g))[p]?(l=-1,p++):"+"===b[p]&&p++,b.length===p+1?d=s(b[p++],l):"."===b[p+1]||"."===b[p]?("."!==b[p]&&(u=s(b[p++],l)),(++p+1===b.length||"("===b[p+1]&&")"===b[p+3]||"'"===b[p+1]&&"'"===b[p+3])&&(d=s(b[p],l),_=Math.pow(10,b[p].length),p++),("("===b[p]&&")"===b[p+2]||"'"===b[p]&&"'"===b[p+2])&&(f=s(b[p+1],l),v=Math.pow(10,b[p+1].length)-1,p+=3)):"/"===b[p+1]||":"===b[p+1]?(d=s(b[p],l),_=s(b[p+2],1),p+=3):"/"===b[p+3]&&" "===b[p+1]&&(u=s(b[p],l),d=s(b[p+2],l),_=s(b[p+4],1),p+=5),b.length<=p){l=a=f+(c=_*v)*u+v*d;break}default:n()}if(0===c)throw"DIV/0";i.s=l<0?-1:1,i.n=Math.abs(a),i.d=Math.abs(c)},o=function(t,i){if(!t)return i;if(!i)return t;for(;;){if(!(t%=i))return i;if(!(i%=t))return t}};function a(t,s){if(!(this instanceof a))return new a(t,s);h(t,s),t=a.REDUCE?o(i.d,i.n):1,this.s=i.s,this.n=i.n/t,this.d=i.d/t}a.REDUCE=1,a.prototype={s:1,n:0,d:1,abs:function(){return new a(this.n,this.d)},neg:function(){return new a(-this.s*this.n,this.d)},add:function(t,s){return h(t,s),new a(this.s*this.n*i.d+i.s*this.d*i.n,this.d*i.d)},sub:function(t,s){return h(t,s),new a(this.s*this.n*i.d-i.s*this.d*i.n,this.d*i.d)},mul:function(t,s){return h(t,s),new a(this.s*i.s*this.n*i.n,this.d*i.d)},div:function(t,s){return h(t,s),new a(this.s*i.s*this.n*i.d,this.d*i.n)},clone:function(){return new a(this)},mod:function(t,s){return isNaN(this.n)||isNaN(this.d)?new a(NaN):t===r?new a(this.s*this.n%this.d,1):(h(t,s),0===i.n&&0===this.d&&a(0,0),new a(this.s*i.d*this.n%(i.n*this.d),i.d*this.d))},gcd:function(t,s){return h(t,s),new a(o(i.n,this.n),i.d*this.d/o(i.d,this.d))},lcm:function(t,s){return h(t,s),0===i.n&&0===this.n?new a:new a(i.n*this.n/o(i.n,this.n),o(i.d,this.d))},ceil:function(t){return t=Math.pow(10,t||0),isNaN(this.n)||isNaN(this.d)?new a(NaN):new a(Math.ceil(t*this.s*this.n/this.d),t)},floor:function(t){return t=Math.pow(10,t||0),isNaN(this.n)||isNaN(this.d)?new a(NaN):new a(Math.floor(t*this.s*this.n/this.d),t)},round:function(t){return t=Math.pow(10,t||0),isNaN(this.n)||isNaN(this.d)?new a(NaN):new a(Math.round(t*this.s*this.n/this.d),t)},inverse:function(){return new a(this.s*this.d,this.n)},pow:function(t){return t<0?new a(Math.pow(this.s*this.d,-t),Math.pow(this.n,-t)):new a(Math.pow(this.s*this.n,t),Math.pow(this.d,t))},equals:function(t,s){return h(t,s),this.s*this.n*i.d==i.s*i.n*this.d},compare:function(t,s){h(t,s);var n=this.s*this.n*i.d-i.s*i.n*this.d;return(0<n)-(n<0)},divisible:function(t,s){return h(t,s),!(!(i.n*this.d)||this.n*i.d%(i.n*this.d))},valueOf:function(){return this.s*this.n/this.d},toFraction:function(t){var i,s="",n=this.n,h=this.d;return this.s<0&&(s+="-"),1===h?s+=n:(t&&(i=Math.floor(n/h))>0&&(s+=i,s+=" ",n%=h),s+=n,s+="/",s+=h),s},toLatex:function(t){var i,s="",n=this.n,h=this.d;return this.s<0&&(s+="-"),1===h?s+=n:(t&&(i=Math.floor(n/h))>0&&(s+=i,n%=h),s+="\\frac{",s+=n,s+="}{",s+=h,s+="}"),s},toContinued:function(){var t,i=this.n,s=this.d,n=[];do{n.push(Math.floor(i/s)),t=i%s,i=s,s=t}while(1!==i);return n},toString:function(){var t,i=this.n,s=this.d;if(isNaN(i)||isNaN(s))return"NaN";a.REDUCE||(i/=t=o(i,s),s/=t);for(var n=String(i).split(""),h=0,r=[~this.s?"":"-","",""],c="",l=function(t,i){for(;i%2==0;i/=2);for(;i%5==0;i/=5);if(1===i)return 0;for(var s=10%i,n=1;1!==s;n++)if(s=10*s%i,n>2e3)return 0;return n}(0,s),u=function(t,i,s){for(var n=1,h=function(t,e,i){for(var s=1;e>0;t=t*t%i,e>>=1)1&e&&(s=s*t%i);return s}(10,s,i),r=0;r<300;r++){if(n===h)return r;n=10*n%i,h=10*h%i}return 0}(0,s,l),d=-1,f=1,_=15+l+u+n.length,v=0;v<_;v++,h*=10){if(v<n.length?h+=Number(n[v]):(f=2,d++),l>0)if(d===u)r[f]+=c+"(",c="";else if(d===l+u){r[f]+=c+")";break}h>=s?(r[f]+=c+(h/s|0),c="",h%=s):f>1?c+="0":r[f]&&(r[f]+="0")}return r[0]+=r[1]||"0",r[2]?r[0]+"."+r[2]:r[0]}},t.Fraction=a}(i),c.d("FormElementSliderWidgetArea",["$","FormElement"],(function(){var $=c.$;function t(t){this.element=$("#"+t),this.area=this.element.parent(),this.areas=this.area.find(".n2_field_widget_area__area"),this.areas.on("click",this.chooseArea.bind(this)),c.FormElement.prototype.constructor.call(this)}return t.prototype=Object.create(c.FormElement.prototype),t.prototype.constructor=t,t.prototype.chooseArea=function(e){var t=parseInt($(e.target).data("area"));this.element.val(t),this.setSelected(t),this.triggerOutsideChange()},t.prototype.insideChange=function(t){t=parseInt(t),this.element.val(t),this.setSelected(t),this.triggerInsideChange()},t.prototype.setSelected=function(t){this.areas.removeClass("n2_field_widget_area__area--selected"),this.areas.eq(t-1).addClass("n2_field_widget_area__area--selected")},t})),c.d("FormElementWidgetPosition","$",(function(){var $=c.$;function t(t){this.id=t,this.$element=$("#"+t),this.$label=this.$element.find(".n2_field_widget_position__label"),this.$positionElement=$("#"+t+"-area").on("nextendChange",this.onPositionChange.bind(this)),this.positionValue=this.$positionElement.val(),this.$offsetElement=$("#"+t+"-offset").on("nextendChange",this.onOffsetChange.bind(this)),this.offsetValue=this.$offsetElement.val(),this.$positionMode=$("#"+t+"-mode").on("nextendChange",this.onModeChange.bind(this)),this.modeValue=this.$positionMode.val(),this.refreshLabel(),this.$element.on("click",this.toggle.bind(this)),this.$element.find(".n2_field_widget_position__popover").on("click",this.stopPropagation.bind(this))}return t.prototype.stopPropagation=function(e){return e.originalEvent["handled"+this.id]!==r||(e.originalEvent["handled"+this.id]=!0,!1)},t.prototype.toggle=function(e){this.$element.hasClass("n2_field_widget_position--focus")?this.blur(e):this.focus(e)},t.prototype.focus=function(e){this.stopPropagation(e)||(this.$element.addClass("n2_field_widget_position--focus"),$("body").on("click."+this.id,this.blur.bind(this)))},t.prototype.blur=function(e){this.stopPropagation(e)||(this.$element.removeClass("n2_field_widget_position--focus"),$("body").off("click."+this.id))},t.prototype.refreshLabel=function(){var t="";if("advanced"===this.modeValue)t=n2_("Advanced");else{switch(parseInt(this.positionValue)){case 1:t=n2_sprintf(n2_("Outer %s"),n2_("Top"));break;case 2:t=n2_("Top")+" "+n2_("Left");break;case 3:t=n2_("Top")+" "+n2_("Center");break;case 4:t=n2_("Top")+" "+n2_("Right");break;case 5:t=n2_sprintf(n2_("Outer %s"),n2_("Left"));break;case 6:t=n2_("Middle")+" "+n2_("Left");break;case 7:t=n2_("Middle")+" "+n2_("Right");break;case 8:t=n2_sprintf(n2_("Outer %s"),n2_("Right"));break;case 9:t=n2_("Bottom")+" "+n2_("Left");break;case 10:t=n2_("Bottom")+" "+n2_("Center");break;case 11:t=n2_("Bottom")+" "+n2_("Right");break;case 12:t=n2_sprintf(n2_("Outer %s"),n2_("Bottom"))}0!==parseInt(this.offsetValue)&&(t+=" + "+this.offsetValue+"px")}this.$label.text(t)},t.prototype.onPositionChange=function(){this.positionValue=this.$positionElement.val(),this.refreshLabel()},t.prototype.onOffsetChange=function(){this.offsetValue=this.$offsetElement.val(),this.refreshLabel()},t.prototype.onModeChange=function(){this.modeValue=this.$positionMode.val(),this.refreshLabel()},t})),c.d("GeneratorAdd","$",(function(){var $=c.$;function t(t){c.Form.prototype.constructor.call(this),c.r("documentReady",this.onReady.bind(this))}return t.prototype=Object.create(c.Form.prototype),t.prototype.constructor=t,t.prototype.onReady=function(){this.setID("#n2-ss-form-generator-add"),c.Form.prototype.onReady.call(this),this.$form.on("submit",this.onSubmit.bind(this))},t.prototype.resetChangeTracker=function(){},t.prototype.initButtons=function(){this.$saveButton=$(".n2_generator_add").on("click",this.actionSave.bind(this)),$(".n2_generator_add_cancel").on("click",this.actionCancel.bind(this))},t.prototype.actionSave=function(e){e&&e.preventDefault(),this.skipChangeConfirm=!0,this.$form.trigger("submit"),this.afterSave()},t.prototype.actionCancel=function(e){e&&e.preventDefault(),i.location=e.currentTarget.href},t.prototype.onSubmit=function(e){e.preventDefault(),c.AjaxHelper.ajax({type:"POST",url:this.$form.attr("action"),data:this.$form.serialize(),dataType:"json"})},t})),c.d("GeneratorConfigure","$",(function(){var $=c.$;function t(t){c.Form.prototype.constructor.call(this),c.r("documentReady",this.onReady.bind(this))}return t.prototype=Object.create(c.Form.prototype),t.prototype.constructor=t,t.prototype.onReady=function(){this.setID("#n2-ss-form-generator-configure"),c.Form.prototype.onReady.call(this),this.$form.on("submit",this.onSubmit.bind(this))},t.prototype.initButtons=function(){this.$saveButton=$(".n2_generator_configuration_save").on("click",this.actionSave.bind(this)),$(".n2_generator_configuration_cancel").on("click",this.actionCancel.bind(this))},t.prototype.actionSave=function(e){e&&e.preventDefault(),this.skipChangeConfirm=!0,this.$form.trigger("submit"),this.afterSave()},t.prototype.actionCancel=function(e){e&&e.preventDefault(),i.location=e.currentTarget.href},t.prototype.onSubmit=function(e){e.preventDefault(),c.AjaxHelper.ajax({type:"POST",url:this.$form.attr("action"),data:this.$form.serialize(),dataType:"json"})},t})),c.d("GeneratorEdit","$",(function(){var $=c.$;function t(t){c.Form.prototype.constructor.call(this),this.options=f({previewInNewWindow:!1,previewUrl:""},t),c.r("documentReady",this.onReady.bind(this))}return t.prototype=Object.create(c.Form.prototype),t.prototype.constructor=t,t.prototype.onReady=function(){this.setID("#n2-ss-form-generator-edit"),c.Form.prototype.onReady.call(this),this.$form.on("submit",this.onSubmit.bind(this)),this.initPreview()},t.prototype.initButtons=function(){this.$saveButton=$(".n2_generator_settings_save").on("click",this.actionSave.bind(this)),$(".n2_generator_settings_back").on("click",this.actionCancel.bind(this))},t.prototype.actionSave=function(e){e&&e.preventDefault(),this.skipChangeConfirm=!0,this.$form.trigger("submit"),this.afterSave()},t.prototype.actionCancel=function(e){e&&e.preventDefault(),i.location=e.currentTarget.href},t.prototype.onSubmit=function(e){!0!==this.$form.data("preview")&&(e.preventDefault(),c.AjaxHelper.ajax({type:"POST",url:this.$form.attr("action"),data:this.$form.serialize(),dataType:"json"}))},t.prototype.initPreview=function(){this.options.previewInNewWindow||(this.modal=new c.ModalIframe("preview-slider")),$("#n2-ss-preview").on("click",function(e){e.preventDefault(),this.$form.data("preview",!0),this.options.previewInNewWindow?c.PreviewPopup("","preview-slider"):this.modal.show();var t=this.$form.attr("action");this.$form.attr({action:c.AjaxHelper.makeAjaxUrl(this.options.previewUrl,{nextendaction:this.options.previewInNewWindow?"index":"generator"}),target:"preview-slider"}).trigger("submit").attr({action:t,target:null}),this.$form.data("preview",!1)}.bind(this))},t})),c.d("FieldRecordViewer","$",(function(){var $=c.$;function t(t,i){this.ajaxUrl=i,this.$element=$("#"+t).on("click",this.showRecords.bind(this)),this.$form=this.$element.closest("form")}return t.prototype.showRecords=function(e){e.preventDefault(),c.AjaxHelper.ajax({type:"POST",url:this.ajaxUrl,data:this.$form.serialize(),dataType:"json"}).done((function(t){null!==t.data&&c.ModalGeneratorRecordViewer(t.data.headings,t.data.rows)}))},t})),c.d("SettingsFonts","$",(function(){var $=c.$;function t(t){c.Form.prototype.constructor.call(this),c.r("documentReady",this.onReady.bind(this))}return t.prototype=Object.create(c.Form.prototype),t.prototype.constructor=t,t.prototype.onReady=function(){this.setID("#n2-ss-form-settings-fonts"),c.Form.prototype.onReady.call(this),this.$form.on("submit",this.onSubmit.bind(this))},t.prototype.initButtons=function(){this.$saveButton=$(".n2_settings_save").on("click",this.actionSave.bind(this))},t.prototype.actionSave=function(e){e&&e.preventDefault(),this.skipChangeConfirm=!0,this.$form.trigger("submit"),this.afterSave()},t.prototype.onSubmit=function(e){e.preventDefault(),c.AjaxHelper.ajax({type:"POST",url:this.$form.attr("action"),data:this.$form.serialize(),dataType:"json"})},t})),c.d("SettingsFramework","$",(function(){var $=c.$;function t(t){c.Form.prototype.constructor.call(this),c.r("documentReady",this.onReady.bind(this))}return t.prototype=Object.create(c.Form.prototype),t.prototype.constructor=t,t.prototype.onReady=function(){this.setID("#n2-ss-form-settings-framework"),c.Form.prototype.onReady.call(this),this.$form.on("submit",this.onSubmit.bind(this))},t.prototype.initButtons=function(){this.$saveButton=$(".n2_settings_save").on("click",this.actionSave.bind(this))},t.prototype.actionSave=function(e){e&&e.preventDefault(),this.skipChangeConfirm=!0,this.$form.trigger("submit"),this.afterSave()},t.prototype.onSubmit=function(e){e.preventDefault(),c.AjaxHelper.ajax({type:"POST",url:this.$form.attr("action"),data:this.$form.serialize(),dataType:"json"})},t})),c.d("SettingsGeneral","$",(function(){var $=c.$;function t(t){c.Form.prototype.constructor.call(this),c.r("documentReady",this.onReady.bind(this))}return t.prototype=Object.create(c.Form.prototype),t.prototype.constructor=t,t.prototype.onReady=function(){this.setID("#n2-ss-form-settings-general"),c.Form.prototype.onReady.call(this),this.$form.on("submit",this.onSubmit.bind(this))},t.prototype.initButtons=function(){this.$saveButton=$(".n2_settings_save").on("click",this.actionSave.bind(this))},t.prototype.actionSave=function(e){e&&e.preventDefault(),this.skipChangeConfirm=!0,this.$form.trigger("submit"),this.afterSave()},t.prototype.onSubmit=function(e){e.preventDefault(),c.AjaxHelper.ajax({type:"POST",url:this.$form.attr("action"),data:this.$form.serialize(),dataType:"json"})},t})),c.d("SettingsItemDefaults","$",(function(){var $=c.$;function t(t){c.Form.prototype.constructor.call(this),c.r("documentReady",this.onReady.bind(this))}return t.prototype=Object.create(c.Form.prototype),t.prototype.constructor=t,t.prototype.onReady=function(){this.setID("#n2-ss-form-settings-item-defaults"),c.Form.prototype.onReady.call(this),this.$form.on("submit",this.onSubmit.bind(this))},t.prototype.initButtons=function(){this.$saveButton=$(".n2_settings_save").on("click",this.actionSave.bind(this))},t.prototype.actionSave=function(e){e&&e.preventDefault(),this.skipChangeConfirm=!0,this.$form.trigger("submit"),this.afterSave()},t.prototype.onSubmit=function(e){e.preventDefault(),c.AjaxHelper.ajax({type:"POST",url:this.$form.attr("action"),data:this.$form.serialize(),dataType:"json"})},t})),c.d("Slide","$",(function(){var $=c.$;function t(t,i){this.selected=!1,this.manager=t,this.box=i.data("slide",this),this.editUrl=this.box.find(".n2_slide_box__slide_overlay_edit_button").attr("href"),this.isEdited=this.box.hasClass("n2_slide_box--currently-edited"),this.box.on("contextmenu",this.onContextMenu.bind(this)),this.box.find(".n2_slide_box__footer_status_published, .n2_slide_box__footer_status_unpublished").on("click",this.switchPublished.bind(this)),this.box.find(".n2_slide_box__slide_select_tick").on("click",function(e){e.preventDefault(),this.invertSelection()}.bind(this)),this.$more=this.box.find(".n2_slide_box__slide_action_more").on("click",this.onMore.bind(this)),this.initRename()}return t.prototype.onContextMenu=function(e){e.preventDefault(),this.showContextMenu(e)},t.prototype.onMore=function(e){e.preventDefault(),this.showContextMenu(this.$more[0])},t.prototype.showContextMenu=function(t){var i=[];i.push({priority:55,label:n2_("Duplicate"),icon:"ssi_16 ssi_16--duplicate",action:this.duplicate.bind(this)}),i.push({priority:55,label:n2_("Copy"),icon:"ssi_16 ssi_16--copy",action:this.copy.bind(this)}),this.box.hasClass("n2_slide_box--published")?i.push({priority:55,label:n2_("Unpublish"),icon:"ssi_16 ssi_16--filledremove",action:this.unpublish.bind(this)}):i.push({priority:55,label:n2_("Publish"),icon:"ssi_16 ssi_16--filledcheck",action:this.publish.bind(this)}),this.box.hasClass("n2_slide_box--has-generator")&&i.push({priority:55,label:n2_("Edit generator"),icon:"ssi_16 ssi_16--cog",action:this.goToEditGenerator.bind(this)}),this.box.hasClass("n2_slide_box--first-slide")||this.box.hasClass("n2_slide_box--static-overlay")||i.push({priority:55,label:n2_("Set as first"),icon:"ssi_16 ssi_16--star",action:function(){this.setFirst()}.bind(this)}),this.box.hasClass("n2_slide_box--static-overlay")&&i.push({priority:55,label:n2_("Convert to slide"),icon:"ssi_16 ssi_16--paste",action:this.convertToSlide.bind(this)}),i.push({priority:1e3,label:n2_("Delete"),icon:"ssi_16 ssi_16--delete",action:function(){this.delete()}.bind(this),color:"red"}),this.box.addClass("n2_slide_box--context-menu"),c.ContextMenu(t,i,{y:5,horizontalAlign:n2const.isRTL()?"right":"left",onClose:function(){this.box.removeClass("n2_slide_box--context-menu")}.bind(this)})},t.prototype.getSliderId=function(){return this.box.data("sliderid")},t.prototype.getId=function(){return this.box.data("slideid")},t.prototype.setFirst=function(e){e&&e.preventDefault(),c.AjaxHelper.ajax({url:c.AjaxHelper.makeAjaxUrl(this.manager.ajaxUrl,{nextendaction:"first"}),type:"POST",data:{id:this.getId()}}).done(function(){this.manager.unsetFirst(),this.box.addClass("n2_slide_box--first-slide")}.bind(this))},t.prototype.unsetFirst=function(){this.box.removeClass("n2_slide_box--first-slide")},t.prototype.publish=function(){this.switchPublished()},t.prototype.unpublish=function(){this.switchPublished()},t.prototype.switchPublished=function(e){e&&e.preventDefault(),this.isPublished()?this.manager.unPublishSlides([this.getId()],[this]):this.manager.publishSlides([this.getId()],[this])},t.prototype.isPublished=function(){return this.box.hasClass("n2_slide_box--published")},t.prototype.published=function(){this.box.addClass("n2_slide_box--published")},t.prototype.unPublished=function(){this.box.removeClass("n2_slide_box--published")},t.prototype.duplicate=function(){var i=$.Deferred();return c.AjaxHelper.ajax({url:c.AjaxHelper.makeAjaxUrl(this.manager.ajaxUrl,{nextendcontroller:"slides",nextendaction:"duplicate",sliderid:this.getSliderId(),slideid:this.getId()})}).done(function(s){var n=$(s.data).insertAfter(this.box),h=new t(this.manager,n);this.manager.initSlides(),i.resolve(h),c._tooltip.add(n)}.bind(this)),i},t.prototype.delete=function(e){e&&e.preventDefault(),this.manager.deleteSlides([this.getId()],[this])},t.prototype.deleted=function(){this.box.remove()},t.prototype.invertSelection=function(e){e&&e.preventDefault(),this.selected?this.deSelect():this.select()},t.prototype.select=function(){this.selected||(this.selected=!0,this.box.addClass("n2_slide_box--bulk-selected"),this.manager.addSelection(this))},t.prototype.deSelect=function(){this.selected&&(this.selected=!1,this.box.removeClass("n2_slide_box--bulk-selected"),this.manager.removeSelection(this))},t.prototype.goToEditGenerator=function(){i.location=this.box.data("generator-edit")},t.prototype.copy=function(){c.SelectSlider(n2_("Copy slide to")+" ...",function(t,i,s){c.AjaxHelper.ajax({url:c.AjaxHelper.makeAjaxUrl(this.manager.ajaxUrl,{nextendcontroller:"slides",nextendaction:"copy",targetGroupID:s,targetSliderID:t,sliderid:this.getSliderId(),slideid:this.getId()})})}.bind(this),!0)},t.prototype.initRename=function(){this.dblClickTimeout=!1,this.$label=this.box.find(".n2_slide_box__footer_title").on("click",function(e){"true"!==this.$label[0].contentEditable&&(this.dblClickTimeout?(a(this.dblClickTimeout),this.dblClickTimeout=!1,this.editName()):this.dblClickTimeout=o(function(){this.isEdited||(i.location=this.editUrl),this.dblClickTimeout=!1}.bind(this),500))}.bind(this)),this.title=this.$label.text().trim(),this.$label.text(this.title)},t.prototype.editName=function(){new c.InlineTextEditor(this.$label[0],{onSave:function(t){this.title!==t&&c.AjaxHelper.ajax({url:c.AjaxHelper.makeAjaxUrl(this.manager.ajaxUrl,{nextendcontroller:"slides",nextendaction:"rename",slideid:this.getId(),title:t})}).done(function(){this.title=t,this.isEdited&&(c.History.get().off(),c._currentEditor.fragmentEditor.mainContainer.outsideStoreProperty(r,"title",t,"slideTitleRename"),c.History.get().on())}.bind(this)).fail(function(){this.$label.text(this.title)}.bind(this))}.bind(this),onCancel:function(){this.$label.text(this.title)}.bind(this),onTab:function(e){for(var t=$(".n2_slide_box__footer_title"),i=0;i<t.length;i++)if(this.$label.is(t[i])){e.shiftKey?i--:i++;break}i<0?i=t.length-1:i>=t.length&&(i=0),t.eq(i).trigger("click").trigger("click")}.bind(this)})},t.prototype.convertToSlide=function(){c.AjaxHelper.ajax({url:c.AjaxHelper.makeAjaxUrl(this.manager.ajaxUrl,{nextendcontroller:"slides",nextendaction:"convertToSlide",sliderid:this.getSliderId(),slideid:this.getId()})}).done(function(){this.box.removeClass("n2_slide_box--static-overlay"),this.box.find(".n2_slide_box__details_static_slide").remove()}.bind(this))},t})),c.d("SlidesManager","$",(function(){var $=c.$;function t(t,s,h,r,a){this.quickPostModal=null,this.parameters=s,this.slides=[],this.options=f({sliderUrl:""},t),this.url=t.url,this.ajaxUrl=t.ajaxUrl,this.contentAjaxUrl=t.contentAjaxUrl,this.$slideManager=$(".n2_slide_manager"),this.slidesContainer=$(".n2_slide_manager__content"),this.initSlidesOrderable();for(var l=this.slidesContainer.find(".n2_slide_box"),u=0;u<l.length;u++)this.slides.push(new c.Slide(this,l.eq(u)));if(n.setAttribute("data-slides",this.slides.length),$(".n2_slide_manager__add_slide, .n2_slide_manager__dummy_slide").on("click",function(){this.$slideManager.toggleClass("n2_slide_manager--add-slide")}.bind(this)),$(".n2_slide_manager__add_slide_action[data-action]").on("click",function(e){switch(e.preventDefault(),$(e.currentTarget).data("action")){case"image":this.addQuickImage(e);break;case"empty-slide":e.preventDefault(),this.createSlide("empty-slide");break;case"post":this.addQuickPost(e);break;case"static-overlay":e.preventDefault(),this.createSlide("static-overlay")}}.bind(this)),$(".n2-box-slide-dummy").on("click",this.addQuickImage.bind(this)),$(".n2_slide_manager__block_notice_button").on("click",this.changeSliderType.bind(this)),"changeslidertype"===i.location.hash.substring(1)&&(i.location.hash="",this.changeSliderType()),this.initBulk(),!h){var d=this.slidesContainer[0];G(d,"dragover",function(e){e.preventDefault()}.bind(this)),G(d,"drop",function(e){e.preventDefault();var t=[];if(e.dataTransfer.items)for(var i=0;i<e.dataTransfer.items.length;i++)"file"===e.dataTransfer.items[i].kind&&t.push(e.dataTransfer.items[i].getAsFile());else for(i=0;i<e.dataTransfer.files.length;i++)t.push(e.dataTransfer.files[i]);if(t.length){var s=[],n=[];c.LoadingScreen.startLoading();for(i=0;i<t.length;i++)n.push(new Promise((function(n,h){var o=new XMLHttpRequest,l=new FormData;o.open("POST",r,!0),o.onload=function(){var t=JSON.parse(o.response);t.data&&t.data.name?s.push({title:t.data.name.replace(/\.[^\/.]+$/,""),description:"",image:t.data.url}):c.AjaxHelper.notification(t),n()},o.onerror=function(){h()},l.append("image",t[i]),l.append("path","/"+a),o.send(l)})));Promise.all(n).finally(function(){s.length?this._addQuickImages(s):o((function(){c.LoadingScreen.stopLoading()}),100),s=[]}.bind(this))}}.bind(this))}}return t.prototype.changed=function(){},t.prototype.initSlidesOrderable=function(){this.uiSortable=new c.UISortable(this.slidesContainer,{items:".n2_slide_box",stop:this.saveSlideOrder.bind(this),placeholder:"n2_slide_manager__sortable_placeholder",distance:10,helper:"clone"})},t.prototype.saveSlideOrder=function(){for(var t=this.slidesContainer.find(".n2_slide_box"),s=[],n=[],h=[],r=0;r<t.length;r++){var o=t.eq(r).data("slide");s.push(o),n.push(o.getId())}for(r=0;r<this.slides.length;r++)h.push(this.slides[r].getId());if(JSON.stringify(h)!==JSON.stringify(n)){$(i).triggerHandler("SmartSliderSidebarSlidesOrderChanged");c.AjaxHelper.ajax({type:"POST",url:c.AjaxHelper.makeAjaxUrl(this.ajaxUrl,{nextendcontroller:"slides",nextendaction:"order"}),data:{slideorder:n}}),this.slides=s,this.changed()}},t.prototype.initSlides=function(){for(var t=this.slidesContainer.find(".n2_slide_box"),s=[],h=0;h<t.length;h++){var r=t.eq(h).data("slide");s.push(r)}this.slides=s,this.changed(),$(i).triggerHandler("SmartSliderSidebarSlidesChanged"),n.setAttribute("data-slides",this.slides.length)},t.prototype.unsetFirst=function(){for(var t=0;t<this.slides.length;t++)this.slides[t].unsetFirst();this.changed()},t.prototype.addBoxes=function(t){t.appendTo(this.slidesContainer),t.addClass("n2_slide_box--just-added").each(function(t,i){new c.Slide(this,$(i))}.bind(this)),this.initSlides(),o((function(){t.removeClass("n2_slide_box--just-added")}),200)},t.prototype.createSlide=function(t,i){return c.AjaxHelper.ajax({type:"POST",url:c.AjaxHelper.makeAjaxUrl(this.ajaxUrl,{nextendaction:"create",type:t}),data:i}).done(function(t){this.addBoxes($(t.data))}.bind(this))},t.prototype.addQuickImage=function(e){e.preventDefault(),c._imageHelper.openMultipleLightbox(this._addQuickImages.bind(this))},t.prototype._addQuickImages=function(t){for(var i=[],s=0;s<t.length;s++)t[s].image.match(/\.(mp4)/i)||i.push(t[s]);i.length&&this.createSlide("image",{images:c.Base64.encode(JSON.stringify(i))})},t.prototype.addQuickPost=function(e){if(e.preventDefault(),!this.quickPostModal){var t=this,i={},s=function(t){return i[t]===r&&(i[t]=c.AjaxHelper.ajax({type:"POST",url:c.AjaxHelper.makeAjaxUrl(this.contentAjaxUrl),data:{keyword:t},dataType:"json"})),i[t]}.bind(this);this.quickPostModal=new c.ModalSimple("create-quick-post"),this.quickPostModal.addContent(c.UI.modalIcon("ssi_48 ssi_48--post","green")),this.quickPostModal.addContent(c.UI.modalHeading(n2_("Add post")));var n=c.UI.modalFormRow(!0);this.quickPostModal.addContent(n);var h=c.UI.modalFieldText(n,"keyword",n2_("Search keyword"),""),o="",a=c.UI.modalFormRow(!0);this.quickPostModal.addContent(a);var l=!1,u=c.UI.modalSelectList(a,"quick-post",n2_("Posts"),(function(t){l=t}));h.on("keyup",function(){o=h.val(),s(o).done(function(t){if(h.val()===o){u.removeOptions();for(var i=t.data,s=0;s<i.length;s++)u.addOption(i[s].title,i[s].info,i[s])}}.bind(this))}.bind(this)).trigger("keyup").focus();var d=c.UI.modalButton(n2_("Add post"),"green");this.quickPostModal.addButton(d),d.on("click",function(){l?t._addQuickPost(this.quickPostModal,l):c.Notification.error(n2_("Please select a Post first!"))}.bind(this))}this.quickPostModal.show()},t.prototype._addQuickPost=function(t,i){i.image||(i.image=""),this.createSlide("post",{post:i}),t&&this.quickPostModal.hide()},t.prototype.initBulk=function(){this.selection=[],this.isBulkSelection=!1,$("#n2_slide_manager_bulk_actions a[data-action]").on("click",function(e){switch(e.preventDefault(),$(e.currentTarget).data("action")){case"duplicate":this.bulkAction("duplicateSlides");break;case"copy":this.bulkAction("copySlides");break;case"delete":this.bulkAction("deleteSlides");break;case"publish":this.bulkAction("publishSlides");break;case"unpublish":this.bulkAction("unPublishSlides");break;case"select-all":this.bulkSelect((function(t){t.select()}));break;case"select-none":this.bulkSelect((function(t){t.deSelect()}));break;case"select-published":this.bulkSelect((function(t){t.box.hasClass("n2_slide_box--published")?t.select():t.deSelect()}));break;case"select-unpublished":this.bulkSelect((function(t){t.box.hasClass("n2_slide_box--published")?t.deSelect():t.select()}))}}.bind(this)),$(".n2-bulk-actions a").on("click",function(e){var t=$(e.currentTarget).data("action");t&&(e.preventDefault(),this.bulkAction(t))}.bind(this))},t.prototype.addSelection=function(t){0==this.selection.length&&this.enterBulk(),this.selection.push(t)},t.prototype.removeSelection=function(t){this.selection.splice(this.selection.indexOf(t),1),0==this.selection.length&&this.leaveBulk()},t.prototype.bulkSelect=function(t){for(var i=0;i<this.slides.length;i++)t(this.slides[i])},t.prototype.bulkAction=function(t){var i=[],s=[];this.bulkSelect((function(t){t.selected&&(i.push(t),s.push(t.getId()))})),s.length?this[t](s,i):c.Notification.notice("Please select one or more slides for the action!")},t.prototype.enterBulk=function(){this.isBulkSelection||(this.isBulkSelection=!0,this.uiSortable.setOption("disabled",!0),$(".n2_slide_manager").addClass("n2_slide_manager--bulk-select"))},t.prototype.leaveBulk=function(){if(this.isBulkSelection){this.uiSortable.setOption("disabled",!1),$(".n2_slide_manager").removeClass("n2_slide_manager--bulk-select");for(var t=0;t<this.slides.length;t++)this.slides[t].deSelect();this.selection=[],this.isBulkSelection=!1}},t.prototype.deleteSlides=function(t,s){var n=s.length>1?n2_("delete these slides"):n2_("delete this slide"),h=parseInt($(".n2-ss-currently-edited-slide").attr("data-id"));c.ModalDeleteConfirm(n,function(){c.AjaxHelper.ajax({url:c.AjaxHelper.makeAjaxUrl(this.ajaxUrl,{nextendaction:"delete"}),type:"POST",data:{slides:t}}).done(function(){for(var n=0;n<s.length;n++)s[n].deleted();this.initSlides(),this.leaveBulk(),-1!==t.indexOf(h)&&(i.location=this.options.sliderUrl)}.bind(this))}.bind(this))},t.prototype.duplicateSlides=function(t,i){for(var s=0;s<this.slides.length;s++)this.slides[s].selected&&this.slides[s].duplicate($.Event("click",{currentTarget:null}))},t.prototype.copySlides=function(t){c.SelectSlider(n2_("Copy slide to")+" ...",function(i,s,n){c.AjaxHelper.ajax({url:c.AjaxHelper.makeAjaxUrl(this.ajaxUrl,{nextendaction:"copySlides",targetGroupID:n,targetSliderID:i}),type:"POST",data:{slides:t}})}.bind(this),!0)},t.prototype.publishSlides=function(t,i){c.AjaxHelper.ajax({url:c.AjaxHelper.makeAjaxUrl(this.ajaxUrl,{nextendaction:"publish"}),type:"POST",data:{slides:t}}).done(function(){for(var t=0;t<i.length;t++)i[t].published();this.changed()}.bind(this))},t.prototype.unPublishSlides=function(t,i){c.AjaxHelper.ajax({url:c.AjaxHelper.makeAjaxUrl(this.ajaxUrl,{nextendaction:"unpublish"}),type:"POST",data:{slides:t}}).done(function(){for(var t=0;t<i.length;t++)i[t].unPublished();this.changed()}.bind(this))},t.prototype.changeSliderType=function(e){c._changeSliderType!==r&&(e&&e.preventDefault(),c._changeSliderType.showModal())},t})),c.d("SmartSliderSlideBackgroundAdmin",["$","SmartSliderSlideBackground"],(function(){var $=c.$;function t(t,i,s){this.types={color:"SmartSliderAdminSlideBackgroundColor",image:"SmartSliderAdminSlideBackgroundImage",video:"SmartSliderAdminSlideBackgroundVideo"},this.allowVisualLoad=!1,this.slider=t.slider,c.SmartSliderSlideBackground.prototype.constructor.call(this,t,i,s)}return t.prototype=Object.create(c.SmartSliderSlideBackground.prototype),t.prototype.constructor=t,t.prototype.setRelatedSectionSlide=function(t){this.sectionSlide=t},t.prototype.setVisualLoad=function(t){this.allowVisualLoad=t},t.prototype.setType=function(t){"color"===t?(this.elements.color||this.createColorElement(!0),this.elements.image&&(this.elements.image.kill(),this.elements.image=!1)):"image"===t&&(this.elements.color||this.createColorElement(!0),this.elements.image||this.createImageElement())},t.prototype.setMode=function(t){"blurfit"===t&&(this.elements.image.blurFitMode=""),"default"===t&&(t=this.slider.editor.options.slideBackgroundMode,"blurfit"===this.slider.editor.options.slideBackgroundMode&&(this.elements.image.blurFitMode="default")),S(this.element,"mode",t),this.elements.image&&this.elements.image.updateMode(t,this.mode),this.mode=t},t.prototype.setFocus=function(t,i){this.elements.image&&this.elements.image.updateFocus(t,i)},t.prototype.setImageOpacity=function(t){this.elements.image&&this.elements.image.updateOpacity(t)},t.prototype.setBlur=function(t,i=!1){this.elements.image&&this.elements.image.updateBlur(t,i)},t.prototype.createColorElement=function(t){t=t||!1;var i=d();L(i,"n2-ss-slide-background-color"),this.element.appendChild(i),this.elements.color=new c[this.types.color](this,i),t&&this.elements.color.update(this.sectionSlide.getProperty("backgroundColor"),this.sectionSlide.getProperty("backgroundGradient"),this.sectionSlide.getProperty("backgroundColorEnd"),this.sectionSlide.getProperty("backgroundColorOverlay"))},t.prototype.updateColor=function(t,i,s,n){this.elements.color||this.createColorElement(),this.elements.color.update(t,i,s,n)},t.prototype.createImageElement=function(){var t=c._currentEditor.generator.fill(this.sectionSlide.getProperty("backgroundImage"));if(""!==t){var i=c._imageHelper.fixed(t),s=d(),n=u("picture"),h=u("img");s.appendChild(n),n.appendChild(h),L(s,"n2-ss-slide-background-image"),S(s,"hash",md5(t)),S(s,"desktop",i),S(s,"blur",this.sectionSlide.getProperty("backgroundImageBlur")),N(s,{opacity:this.sectionSlide.getProperty("backgroundImageOpacity")/100,backgroundPosition:c._currentEditor.generator.fill(this.sectionSlide.getProperty("backgroundFocusX"))+"% "+c._currentEditor.generator.fill(this.sectionSlide.getProperty("backgroundFocusY"))+"%"}),this.element.appendChild(s),this.elements.image=new c[this.types.image](this.slide,this.manager,this,[s]),this.elements.image.preLoadAdmin(t)}},t.prototype.setImage=function(t){t?this.elements.image?this.elements.image.setDesktopSrc(t):""!==t&&(null===t.match(/\.(png|jpg|jpeg|gif|webp|svg)/i)?(c.Notification.error("The background image format is not correct! The supported image formats are: png, jpg, jpeg, gif, webp, svg."),$("#layerslide-backgroundImage").val("").trigger("change")):"image"===this.sectionSlide.getProperty("background-type")&&this.createImageElement()):this.elements.image&&(this.elements.image.kill(),this.elements.image=!1)},t.prototype.setThumbnail=function(t,i){var s=$("#layerslide-thumbnail");""===t||!t.match(/\.(png|jpg|jpeg|gif|webp|svg)/i)||""!==s.val()&&s.val()!==i||s.val(t).trigger("change")},t})),c.d("SlideEdit","$",(function(){var $=c.$;function t(t){this.options=f({ajaxUrl:"",slideAsFile:0,nextendAction:"",previewInNewWindow:!1,previewUrl:"",sliderElementID:"",slideEditorOptions:{}},t),this.editor=new c.EditorSlide(this,this.options.sliderElementID,this.options.slideEditorOptions),c.Form.prototype.constructor.call(this),c.r("documentReady",this.onReady.bind(this))}return t.prototype=Object.create(c.Form.prototype),t.prototype.constructor=t,t.prototype.onReady=function(){"create"===this.options.nextendAction&&this.initBackgroundOpen(),this.setID("#n2-ss-form-slide-edit"),c.Form.prototype.onReady.call(this),this.initPreview()},t.prototype.initBackgroundOpen=function(){c.r(["$","windowLoad"],(function(){(0,c.$)(".n2_form__tab_button[data-related-tab=n2_form__tab_slide_slide-background]").trigger("click")}))},t.prototype.resetChangeTracker=function(){this.hasChange=!1,s.addEventListener("historyChange",this.onChangeCallback,{passive:!0,capture:!0}),this.$saveButton.addClass("n2_button--inactive")},t.prototype.onChange=function(){this.hasChange=!0,this.$saveButton.removeClass("n2_button--inactive"),s.removeEventListener("historyChange",this.onChangeCallback,{passive:!0,capture:!0})},t.prototype.initButtons=function(){this.$saveButton=$(".n2_slide_settings_save").on("click",this.actionSave.bind(this)),$(".n2_slide_settings_back").on("click",this.actionCancel.bind(this)),$(".n2_slide_generator_static_save").on("click",function(e){this.actionSave(e,!0)}.bind(this))},t.prototype.actionSave=function(e,t){e&&e.preventDefault();var s=this.editor.getFormData();if(!0===t&&(s.generatorStatic="1"),this.options.slideAsFile&&typeof i.FormData!==r&&i.File!==r){var n=new FormData;try{n.append("slide",new Blob([s.slide]),"slide.txt")}catch(e){try{n.append("slide",new Blob([s.slide]))}catch(e){try{n.append("slide",new File([s.slide],"slide.txt"))}catch(e){c.Notification.notice('Your browser does not support File api, please disable "Send slide as file" option in the global settings.')}}}for(var h in delete s.slide,s)n.append(h,s[h]);c.AjaxHelper.ajax({url:c.AjaxHelper.makeAjaxUrl(this.options.ajaxUrl),type:"POST",data:n,contentType:!1,processData:!1}).done(this.afterSave.bind(this))}else c.AjaxHelper.ajax({type:"POST",url:c.AjaxHelper.makeAjaxUrl(this.options.ajaxUrl),data:s,dataType:"json"}).done(this.afterSave.bind(this))},t.prototype.actionCancel=function(e){e&&e.preventDefault(),i.location=e.currentTarget.href},t.prototype.afterSave=function(){var t=this.editor.fragmentEditor.mainContainer,i=$(".n2_admin_editor__ui_slide_manager .n2_slide_box--currently-edited ");i.find(".n2_slide_box__footer_title").text(t.getProperty("title")),i.find(".n2_slide_box__content").css("background-image","url("+c._imageHelper.fixed(this.editor.generator.fill(t.getProperty("thumbnail")||t.getProperty("backgroundImage")||"$ss3-frontend$/images/placeholder/image.png"))+")");var s=[];parseInt(t.getProperty("desktopPortrait"))||s.push(n2_("Desktop")),parseInt(t.getProperty("tabletPortrait"))||s.push(n2_("Tablet")),parseInt(t.getProperty("mobilePortrait"))||s.push(n2_("Mobile"));var n="";s.length&&(n=n2_sprintf(n2_("This slide is hidden on the following devices: %s"),s.join(", "))),i.find(".n2_slide_box__footer_status_hidden").data("n2tip",n),c.Form.prototype.afterSave.call(this)},t.prototype.initPreview=function(){this.options.previewInNewWindow||(this.modal=new c.ModalIframe("preview-slider")),$("#n2-ss-preview").on("click",function(e){e.preventDefault(),this.options.previewInNewWindow?c.PreviewPopup("","preview-slider"):this.modal.show();var t=$('<form style="display:none;"></form>').attr({method:"post",action:c.AjaxHelper.makeAjaxUrl(this.options.previewUrl,{nextendaction:"slide",frame:this.options.previewInNewWindow?0:1}),target:"preview-slider"}).appendTo("body"),i=this.editor.getFormData();$('<input name="slide">').val(i.slide).appendTo(t),t.trigger("submit")}.bind(this))},t})),c.d("EditorAbstract","$",(function(){var $=c.$;function t(t,s){var n,h;h=navigator.userAgent.toLowerCase(),(n=-1!==h.indexOf("msie")&&parseInt(h.split("msie")[1]))&&n<10&&alert(i.ss2lang.The_editor_was_tested_under_Internet_Explorer_10_Firefox_and_Chrome_Please_use_one_of_the_tested_browser),this.readyDeferred=$.Deferred(),this.sliderElementID=t,this.readyDeferred.done(function(){c.d("SSEditor",function(){return this}.bind(this))}.bind(this)),this.options=f({isUploadDisabled:!0,uploadUrl:"",uploadDir:"",settingsGoProUrl:"",sectionLibraryFree:!0,sectionLibraryUrl:"",sectionLibraryGoProUrl:""},s),c._currentEditor=this,this.frontend=null,this.generator=null,this.fragmentEditor=null,this.$editedElement=null,this.editedInstance=null,c.r(["$","documentReady"],function(){n2const.fonts.then(this.startEditor.bind(this))}.bind(this))}return t.prototype.startEditor=function(){},t.prototype.ready=function(t){this.readyDeferred.done(t)},t.prototype.getSelf=function(){return this},t.prototype.getAvailableDeviceModes=function(){return{desktopPortrait:1,desktopLandscape:0,tabletPortrait:1,tabletLandscape:0,mobilePortrait:1,mobileLandscape:0}},t.prototype.getGeneratorVariables=function(){return this.$editedElement.data("variables")},t.prototype.getMainContainerElement=function(){return this.$editedElement.find(".n2-ss-layers-container").addBack().last()},t})),c.d("EditorSlide",["$","EditorAbstract"],(function(){var $=c.$;function t(t,i,s){this.slideEdit=t,c.EditorAbstract.prototype.constructor.call(this,i,f({slideBackgroundMode:"fill"},s)),this.onTickCallback=this.onTick.bind(this)}return t.prototype=Object.create(c.EditorAbstract.prototype),t.prototype.constructor=t,t.prototype.startEditor=function(){c.r("#"+this.sliderElementID,function(){var t=c["#"+this.sliderElementID];this.frontend=t,this.frontend.editor=this,c._pre="div#"+this.frontend.elementID+" ",this.frontend.visible(this.sliderStarted.bind(this))}.bind(this))},t.prototype.sliderStarted=function(){$("body").addClass("n2-ss-slider-visible"),this.$editedElement=$(this.frontend.sliderElement.querySelector(".n2-ss-currently-edited-slide")),this.editedInstance=this.$editedElement[0].ssSlide,this.generator=new c.Generator(this),this.generator.registerGlobalField("slide","name","#layerslide-title"),this.generator.registerGlobalField("slide","description","#layerslide-description"),this.getMainContainerElement().on({updateSize:this.updateSize.bind(this),interaction:this.updateSize.bind(this)}),this.fragmentEditor=new c.FragmentEditor(this,$(this.getFrontendSlide().element),this.options);var t=this.getFrontendElement();G(t[0],"SliderDeviceOrientation",this.fragmentEditor.onChangeDeviceOrientation.bind(this.fragmentEditor)),G(t[0],"SliderResize",function(e){this.fragmentEditor.onResize(e.detail.ratios)}.bind(this)),this.readyDeferred.resolve()},t.prototype.getFormData=function(){return{guides:c.Base64.encode(JSON.stringify(this.fragmentEditor.canvasSettings.ruler.toArray())),slide:c.Base64.encode(c._UnicodeToHTMLEntity(JSON.stringify(this.fragmentEditor.getData())))}},t.prototype.getAvailableDeviceModes=function(){return this.frontend.responsive.parameters.enabledDevices},t.prototype.getSlideBackground=function(){return this.$editedElement[0].ssSlideBackground},t.prototype.getFrontendElement=function(){return $(this.frontend.sliderElement)},t.prototype.getFrontendSlide=function(){return this.editedInstance},t.prototype.getHorizontalRatio=function(){return this.frontend.responsive.ratios.slideW},t.prototype.getVerticalRatio=function(){return this.frontend.responsive.ratios.slideH},t.prototype.updateSize=function(){this.ni||(this.frontend.responsive.doResize(),c.t.add(this.onTickCallback),this.ni=!0)},t.prototype.onTick=function(){c.t.remove(this.onTickCallback),this.frontend.responsive.doResize(),delete this.ni},t.prototype.getDeviceMode=function(){return this.frontend.responsive.getNormalizedModeString()},t})),c.d("Generator",["$","EditorAbstract"],(function(){var $=c.$;function t(t){this.editor=t,this._refreshTimeout=null,this.modal=!1,this.group=0,this.editor.generator=this;var i=this.editor.getGeneratorVariables();if(i){for(var s in this.variables=i,this.variables)!isNaN(parseFloat(s))&&isFinite(s)&&(this.group=Math.max(this.group,parseInt(s)+1));this.fill=this.generatorFill,this.group>0&&(this.registerField=this.generatorRegisterField,this.button=$('<div class="n2_field_generator_data_button"><div class="n2_field_generator_data_button_icon"><i class="ssi_16 ssi_16--data"></i></div><div class="n2_field_generator_data_button_label">'+n2_("Data")+"</div></div>").on("click",function(e){this.showModal()}.bind(this)),$("body").addClass("n2_ss_body--dynamic-slide"))}else this.variables=null}return t.prototype.isDynamicSlide=function(){return this.group>0},t.prototype.splitTokens=function(t){for(var i=[],s="",n=0,h=0;h<t.length;h++){var r=t[h];","===r&&0===n?(i.push(s),s=""):(s+=r,"("===r?n++:")"===r&&n--)}return s.length&&i.push(s),i},t.prototype.fill=function(t){return t},t.prototype.generatorFill=function(t){return"string"==typeof t?t.replace(/{((([a-z]+)\(([^}]+)\))|([a-zA-Z0-9][a-zA-Z0-9_\/]*))}/g,this.parseFunction.bind(this)):t},t.prototype.parseFunction=function(t,i,s,n,h,o){if(o===r){for(var a=this.splitTokens(h),c=0;c<a.length;c++)a[c]=this.parseVariable(a[c]);return"function"==typeof this[n]?this[n].apply(this,a):t}return this.parseVariable(o)},t.prototype.parseVariable=function(t){var i=t.match(/^("|')(.*)("|')$/);if(i)return i[2];var s=t.match(/((([a-z]+)\(([^}]+)\)))/);if(s)return this.parseFunction.apply(this,s);var n=t.match(/([a-zA-Z][0-9a-zA-Z_]*)(\/([0-9a-z]+))?/);if(n){var h=n[3];if(h===r)h=0;else{var o=parseInt(h);isNaN(o)||(h=Math.max(h,1)-1)}return this.variables[h]!==r&&this.variables[h][n[1]]!==r?this.variables[h][n[1]]:""}return t},t.prototype.fallback=function(t,i){return""==t?i:t},t.prototype.cleanhtml=function(t){return this.stripTags(t,"<p><a><b><br /><br/><br><i>")},t.prototype.stripTags=function(t,i){i=(((i||"")+"").toLowerCase().match(/<[a-z][a-z0-9]*>/g)||[]).join("");return t.replace(/<!--[\s\S]*?-->|<\?(?:php)?[\s\S]*?\?>/gi,"").replace(/<\/?([a-z][a-z0-9]*)\b[^>]*>/gi,(function(t,s){return i.indexOf("<"+s.toLowerCase()+">")>-1?t:""}))},t.prototype.removehtml=function(t){return $("<div>"+t+"</div>").text()},t.prototype.splitbychars=function(t,i,s){return t.substr(i,s)},t.prototype.splitbywords=function(t,i,s){var n=t,h=n.length,r=Math.max(0,0==i?0:n.indexOf(" ",i)),o=Math.max(0,s>h?h:n.indexOf(" ",s));return 0==o&&s<=h&&(o=h),n.substr(r,o)},t.prototype.findimage=function(t,i){var s=t,n=/(<img.*?src=[\'"](.*?)[\'"][^>]*>)|(background(-image)??\s*?:.*?url\((["|\']?)?(.+?)(["|\']?)?\))/gi,h=[],o=null;for(i=i!==r?parseInt(i)-1:0;o=n.exec(s);)o[2]!==r?h.push(o[2]):o[6]!==r&&h.push(o[6]);return h.length?h.length>i?h[i]:h[h.length-1]:""},t.prototype.findlink=function(t,i){var s=t,n=/href=["\']?([^"\'>]+)["\']?/gi,h=[],o=null;for(i=i!==r?parseInt(i)-1:0;o=n.exec(s);)o[1]!==r&&h.push(o[1]);return h.length?h.length>i?h[i]:h[h.length-1]:""},t.prototype.removevarlink=function(t){return String(t).replace(/<a href=\"(.*?)\">(.*?)<\/a>/g,"")},t.prototype.removelinebreaks=function(t){return String(t).replace(/\r?\n|\r/g,"")},t.prototype.registerFields=function(t){for(var i=0;i<t.length;i++)this.registerField(t[i])},t.prototype.registerGlobalField=function(t,i,s){null!==this.variables&&(s=$(s).on("outsideChange",function(){this.variables[t][i]=s.val(),this.refresh()}.bind(this)))},t.prototype.registerField=function(t){},t.prototype.generatorRegisterField=function(t){var i=(t=$(t)).parent();i.on({mouseenter:function(){this.activeField=t,this.button.prependTo(i)}.bind(this)})},t.prototype.getModal=function(){if(!this.selectVariableModal){var t={key:"",group:1,filter:"no",split:"no",splitStart:0,splitLength:300,findImage:0,findImageIndex:1,findLink:0,findLinkIndex:1,removeVarLink:0,removelinebreaks:0},i=function(){var i=t.key+"/"+t.group;return 0!=t.findImage&&(i="findimage("+i+","+Math.max(1,t.findImageIndex)+")"),0!=t.findLink&&(i="findlink("+i+","+Math.max(1,t.findLinkIndex)+")"),0!=t.removeVarLink&&(i="removevarlink("+i+")"),0!=t.removelinebreaks&&(i="removelinebreaks("+i+")"),"no"!=t.filter&&(i=t.filter+"("+i+")"),"no"!=t.split&&t.splitStart>=0&&t.splitLength>0&&(i=t.split+"("+i+","+t.splitStart+","+t.splitLength+")"),"{"+i+"}"},s=function(){a.text(this.fill(i()))}.bind(this);this.selectVariableModal=new c.ModalSimple("generator-insert-variable",{width:760}),this.selectVariableModal.addContent(c.UI.modalIcon("ssi_48 ssi_48--data","blue")),this.group>1&&c.UI.modalGeneratorVariableList(this.selectVariableModal,this.group,"Select group","group","Groups",(function(i){t.group=i,s()})),c.UI.modalGeneratorVariableList(this.selectVariableModal,this.variables[0],"Insert variable","variable","Variables",(function(i){t.key=i,s()})),t.key=Object.keys(this.variables[0])[0];var n=c.UI.modalFormRow();this.selectVariableModal.addContent(n),c.UI.modalSelect(n,"filter-select",n2_("Filter"),{no:n2_("No"),cleanhtml:n2_("Clean HTML"),removehtml:n2_("Remove HTML")},"no").on("nextendChange",(function(){t.filter=$(this).val(),s()})),c.UI.modalSelect(n,"split-select",n2_("Split by Chars"),{no:n2_("No"),splitbychars:n2_("Strict"),splitbywords:n2_("Respect words")},"no").on("nextendChange",(function(){t.split=$(this).val(),s()})),c.UI.modalNumber(n,"split-start","",0,{wide:2,sublabel:"start"}).on("nextendChange",(function(){t.splitStart=$(this).val(),s()})),c.UI.modalNumber(n,"split-length","",300,{wide:3,sublabel:"length"}).on("nextendChange",(function(){t.splitLength=$(this).val(),s()}));var h=c.UI.modalFormRow();this.selectVariableModal.addContent(h),c.UI.modalOnOff(h,"find-image",n2_("Find image"),0).on("nextendChange",(function(){t.findImage=$(this).val(),s()})),c.UI.modalNumber(h,"find-image-index","",1,{wide:2,sublabel:"index"}).on("nextendChange",(function(){t.findImageIndex=$(this).val(),s()})),c.UI.modalOnOff(h,"find-link",n2_("Find link"),0)