Brizy – Page Builder - Version 2.3.27

Version Description

  • 2022-01-14 =
  • New: Added border, background-color and shadow for content
  • New: Added Image width px unit for svg and gif type
  • Improved: XSS in RichText and all Links
  • Fixed: Login entered information error
  • Fixed: Dashboard news
  • Fixed: Update pot file and corrected some strings translations
  • Fixed: Fatal error on duplicate page with wpml, restore asset url by wp option siteurl
Download this release

Release Info

Developer themefusecom
Plugin Icon 128x128 Brizy – Page Builder
Version 2.3.27
Comparing to
See all releases

Code changes from version 2.3.26 to 2.3.27

README.md CHANGED
@@ -3,7 +3,7 @@ Contributors: themefuse<br>
3
  Requires at least: 4.5<br>
4
  Tested up to: 5.8.3<br>
5
  Requires PHP: 5.6.20<br>
6
- Stable tag: 2.3.26<br>
7
  License: GPLv3<br>
8
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
9
 
@@ -118,6 +118,15 @@ $bodyHtml = apply_filters( 'brizy_content', $html->get_body(), Brizy_Editor_Proj
118
 
119
  ## Changelog
120
 
 
 
 
 
 
 
 
 
 
121
  ### 2.3.26 - 2022-01-10
122
  * Improved: Removed icon ids
123
  * Fixed: Video with cover was not playing on click
3
  Requires at least: 4.5<br>
4
  Tested up to: 5.8.3<br>
5
  Requires PHP: 5.6.20<br>
6
+ Stable tag: 2.3.27<br>
7
  License: GPLv3<br>
8
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
9
 
118
 
119
  ## Changelog
120
 
121
+ ### 2.3.27 - 2022-01-14
122
+ * New: Added border, background-color and shadow for content
123
+ * New: Added Image width px unit for svg and gif type
124
+ * Improved: XSS in RichText and all Links
125
+ * Fixed: Login entered information error
126
+ * Fixed: Dashboard news
127
+ * Fixed: Update pot file and corrected some strings translations
128
+ * Fixed: Fatal error on duplicate page with wpml, restore asset url by wp option siteurl
129
+
130
  ### 2.3.26 - 2022-01-10
131
  * Improved: Removed icon ids
132
  * Fixed: Video with cover was not playing on click
admin/dashboard-widget.php CHANGED
@@ -3,9 +3,6 @@
3
 
4
  class Brizy_Admin_DashboardWidget extends Brizy_Admin_AbstractWidget {
5
 
6
- /**
7
- * @throws Exception
8
- */
9
  public static function _init() {
10
  static $instance;
11
 
@@ -39,67 +36,89 @@ class Brizy_Admin_DashboardWidget extends Brizy_Admin_AbstractWidget {
39
  * @return string
40
  */
41
  public function getName() {
42
- return Brizy_Editor::get()->get_name() . " Overview";
43
  }
44
 
45
  public function render() {
 
 
 
 
 
 
46
  echo Brizy_Admin_View::render( 'dashboard', array(
47
- 'news' => $this->renderNews(),
48
  'posts' => $this->renderBrizyPosts()
49
  ) );
50
  }
51
 
52
  /**
53
- * @return string
 
54
  */
55
- private function renderNews() {
56
 
57
  $transient_key = 'brizy_feed_news';
58
 
59
  if ( ! ( $news = get_transient( $transient_key ) ) ) {
60
 
61
- $request = wp_remote_get( 'https://www.brizy.io/index.php/wp-json/wp/v2/posts?categories=6' );
62
 
63
  if ( is_wp_error( $request ) ) {
 
 
 
 
 
 
64
 
65
- return $request->get_error_message();
66
-
67
- } elseif ( ! isset( $request['response'], $request['response']['code'] ) || ! is_array( $request['response'] ) ) {
 
 
68
 
69
- return esc_html__( 'Something went wrong. There is no a valid response code.', 'brizy' );
 
 
70
 
71
- } elseif ( 200 !== $request['response']['code'] ) {
 
 
72
 
73
- if ( isset( $request['response']['message'] ) ) {
74
- return $request['response']['message'];
75
- } else {
76
- return esc_html__( 'The request was blocked, or something is wrong with the remote server.', 'brizy' );
77
  }
78
-
79
- } elseif ( empty( $request['body'] ) ) {
80
- return esc_html__( 'There is no body in the remote server response.', 'brizy' );
81
  }
82
 
83
- $items = json_decode( $request['body'], true );
84
-
85
- if ( ! $items ) {
86
- return esc_html__( 'Filed decode returned json by brizy.io', 'brizy' );
87
  }
88
 
89
- $news = [];
 
90
 
91
- foreach ( array_slice( $items, 0, 3 ) as $item ) {
92
- $news[] = [
93
- 'url' => $item['link'],
94
- 'title' => $item['title']['rendered'],
95
- 'excerpt' => $item['excerpt']['rendered'],
96
- ];
97
- }
98
 
99
- set_transient( $transient_key, $news, 2 * DAY_IN_SECONDS );
 
 
 
 
 
 
 
100
  }
101
 
102
- return Brizy_Admin_View::render( 'dashboard-news', [ 'news' => $news ] );
 
 
 
 
103
  }
104
 
105
  /**
3
 
4
  class Brizy_Admin_DashboardWidget extends Brizy_Admin_AbstractWidget {
5
 
 
 
 
6
  public static function _init() {
7
  static $instance;
8
 
36
  * @return string
37
  */
38
  public function getName() {
39
+ return sprintf( __( '%s Overview', 'brizy' ), Brizy_Editor::get()->get_name() );
40
  }
41
 
42
  public function render() {
43
+ try {
44
+ $news = $this->getNews();
45
+ } catch ( Exception $e ) {
46
+ $news = $e->getMessage();
47
+ }
48
+
49
  echo Brizy_Admin_View::render( 'dashboard', array(
50
+ 'news' => Brizy_Admin_View::render( 'dashboard-news', [ 'news' => $news ] ),
51
  'posts' => $this->renderBrizyPosts()
52
  ) );
53
  }
54
 
55
  /**
56
+ * @return array
57
+ * @throws Exception
58
  */
59
+ private function getNews() {
60
 
61
  $transient_key = 'brizy_feed_news';
62
 
63
  if ( ! ( $news = get_transient( $transient_key ) ) ) {
64
 
65
+ $request = wp_remote_get( 'https://www.brizy.io/blog' );
66
 
67
  if ( is_wp_error( $request ) ) {
68
+ throw new Exception( $request->get_error_message() );
69
+ } elseif ( 200 !== wp_remote_retrieve_response_code( $request ) ) {
70
+ throw new Exception( wp_remote_retrieve_response_message( $request ) );
71
+ } elseif ( empty( $request['body'] ) ) {
72
+ throw new Exception( esc_html__( 'There is no body in the remote server response.', 'brizy' ) );
73
+ }
74
 
75
+ $dom = Brizy_Parser_Pquery::parseStr( $request['body'] );
76
+ $news = [];
77
+ $titles = $dom->query( '.brz-wp-title .brz-a .brz-wp-title-content' );
78
+ $links = $dom->query( '.brz-wp-title .brz-a' );
79
+ $excerpts = $dom->query( '.brz-posts .brz-posts__item .brz-css-qtnxu' );
80
 
81
+ if ( count( $titles ) !== 5 || count( $links ) !== 5 || count( $excerpts ) !== 5 ) {
82
+ throw new Exception( __( 'Parsing failed!', 'brizy' ) );
83
+ }
84
 
85
+ foreach ( $titles as $title ) {
86
+ $news[]['title'] = $title->getInnerText();
87
+ }
88
 
89
+ foreach ( $links as $i => $link ) {
90
+ if ( isset( $news[ $i ] ) ) {
91
+ $news[ $i ]['url'] = esc_url( 'https://www.brizy.io' . $link->getAttribute( 'href' ) );
 
92
  }
 
 
 
93
  }
94
 
95
+ foreach ( $excerpts as $i => $excerpt ) {
96
+ if ( isset( $news[ $i ] ) ) {
97
+ $news[ $i ]['excerpt'] = wp_trim_words( wp_strip_all_tags( $excerpt->getInnerText() ), 40, '...' );
98
+ }
99
  }
100
 
101
+ set_transient( $transient_key, $news, 5 * DAY_IN_SECONDS );
102
+ }
103
 
104
+ return $news;
105
+ }
 
 
 
 
 
106
 
107
+ /**
108
+ * @throws Exception
109
+ */
110
+ private function parseQuery( $selector, $dom, &$news, $key, $callback ) {
111
+ $items = $dom->query( $selector );
112
+
113
+ if ( ! $items || count( $items ) !== 5 ) {
114
+ throw new Exception( __( 'Parsing failed!', 'brizy' ) );
115
  }
116
 
117
+ foreach ( $items as $i => $item ) {
118
+ if ( isset( $news[ $i ] ) ) {
119
+ $news[ $i ][$key] = wp_strip_all_tags( $item->{$callback}() );
120
+ }
121
+ }
122
  }
123
 
124
  /**
admin/views/dashboard-news.php CHANGED
@@ -1,4 +1,4 @@
1
- <?php if ( $news ) : ?>
2
  <div class="brizy-overview__feed">
3
  <h3 class="brizy-overview__heading">
4
  <?php _e( 'News & Updates', 'brizy' ); ?>
@@ -16,5 +16,7 @@
16
  </ul>
17
  </div>
18
  <?php else : ?>
19
- <p><?php _e( 'No News', 'brizy' ); ?></p>
 
 
20
  <?php endif; ?>
1
+ <?php if ( is_array( $news ) ) : ?>
2
  <div class="brizy-overview__feed">
3
  <h3 class="brizy-overview__heading">
4
  <?php _e( 'News & Updates', 'brizy' ); ?>
16
  </ul>
17
  </div>
18
  <?php else : ?>
19
+ <p>
20
+ <?php echo is_string( $news ) ? $news : __( 'No News', 'brizy' ); ?>
21
+ </p>
22
  <?php endif; ?>
brizy.php CHANGED
@@ -5,7 +5,7 @@
5
  * Plugin URI: https://brizy.io/
6
  * Author: Brizy.io
7
  * Author URI: https://brizy.io/
8
- * Version: 2.3.26
9
  * Text Domain: brizy
10
  * License: GPLv3
11
  * Domain Path: /languages
@@ -19,10 +19,10 @@ if ( isset( $_SERVER['HTTP_X_FORWARDED_PROTO'] ) && stripos( $_SERVER['HTTP_X_FO
19
 
20
  define( 'BRIZY_DEVELOPMENT', false );
21
  define( 'BRIZY_LOG', false );
22
- define( 'BRIZY_VERSION', '2.3.26' );
23
  define( 'BRIZY_MINIMUM_PRO_VERSION', '2.3.0' );
24
- define( 'BRIZY_EDITOR_VERSION', BRIZY_DEVELOPMENT ? 'dev' : '214-wp' );
25
- define( 'BRIZY_SYNC_VERSION', '214' );
26
  define( 'BRIZY_FILE', __FILE__ );
27
  define( 'BRIZY_PLUGIN_BASE', plugin_basename( BRIZY_FILE ) );
28
  define( 'BRIZY_PLUGIN_PATH', dirname( BRIZY_FILE ) );
5
  * Plugin URI: https://brizy.io/
6
  * Author: Brizy.io
7
  * Author URI: https://brizy.io/
8
+ * Version: 2.3.27
9
  * Text Domain: brizy
10
  * License: GPLv3
11
  * Domain Path: /languages
19
 
20
  define( 'BRIZY_DEVELOPMENT', false );
21
  define( 'BRIZY_LOG', false );
22
+ define( 'BRIZY_VERSION', '2.3.27' );
23
  define( 'BRIZY_MINIMUM_PRO_VERSION', '2.3.0' );
24
+ define( 'BRIZY_EDITOR_VERSION', BRIZY_DEVELOPMENT ? 'dev' : '215-wp' );
25
+ define( 'BRIZY_SYNC_VERSION', '215' );
26
  define( 'BRIZY_FILE', __FILE__ );
27
  define( 'BRIZY_PLUGIN_BASE', plugin_basename( BRIZY_FILE ) );
28
  define( 'BRIZY_PLUGIN_PATH', dirname( BRIZY_FILE ) );
compatibilities/wpml.php CHANGED
@@ -26,8 +26,8 @@ class Brizy_Compatibilities_WPML {
26
 
27
  if ( isset( $_POST['langs'] ) ) {
28
  if ( $wpml_post_translations && is_post_type_translated( $postType ) ) {
29
- $currentBrizyPost = Brizy_Editor_Post::get( (int) $postId );
30
- $currentBrizyPost->duplicateTo( (int) $_POST['post_id'] );
31
  }
32
  }
33
 
26
 
27
  if ( isset( $_POST['langs'] ) ) {
28
  if ( $wpml_post_translations && is_post_type_translated( $postType ) ) {
29
+ $currentBrizyPost = Brizy_Editor_Post::get( (int) $_POST['post_id'] );
30
+ $currentBrizyPost->duplicateTo( (int) $postId );
31
  }
32
  }
33
 
editor.php CHANGED
@@ -188,15 +188,6 @@ class Brizy_Editor {
188
  $this->loadEditorApi( $post, $user );
189
  $this->loadEditorAdminSettings();
190
 
191
- function brizy_add_dashboard_widgets() {
192
- try {
193
-
194
- Brizy_Admin_DashboardWidget::_init();
195
- } catch ( Exception $e ) {
196
- // ignore this exceptions for now.
197
- }
198
- }
199
-
200
  if ( $post && $post->uses_editor() ) {
201
 
202
  if ( is_user_logged_in() ) {
@@ -206,7 +197,9 @@ class Brizy_Editor {
206
 
207
  if ( ! class_exists( 'BrizyPro_Admin_WhiteLabel' ) || ! BrizyPro_Admin_WhiteLabel::_init()->getEnabled() ) {
208
  if ( current_user_can( 'manage_options' ) ) {
209
- add_action( 'wp_dashboard_setup', 'brizy_add_dashboard_widgets' );
 
 
210
  }
211
  }
212
 
188
  $this->loadEditorApi( $post, $user );
189
  $this->loadEditorAdminSettings();
190
 
 
 
 
 
 
 
 
 
 
191
  if ( $post && $post->uses_editor() ) {
192
 
193
  if ( is_user_logged_in() ) {
197
 
198
  if ( ! class_exists( 'BrizyPro_Admin_WhiteLabel' ) || ! BrizyPro_Admin_WhiteLabel::_init()->getEnabled() ) {
199
  if ( current_user_can( 'manage_options' ) ) {
200
+ add_action( 'wp_dashboard_setup', function () {
201
+ Brizy_Admin_DashboardWidget::_init();
202
+ } );
203
  }
204
  }
205
 
languages/brizy.pot CHANGED
@@ -1,17 +1,17 @@
1
- # Copyright (C) 2021 Brizy.io
2
- # This file is distributed under the same license as the Brizy plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Brizy 2.2.13\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/brizy\n"
7
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
  "Language-Team: LANGUAGE <LL@li.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2021-05-05T16:10:49+03:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
- "X-Generator: WP-CLI 2.4.0\n"
15
  "X-Domain: brizy\n"
16
 
17
  #. Plugin Name of the plugin
@@ -125,6 +125,7 @@ msgstr ""
125
 
126
  #: admin/form-entries.php:62
127
  #: languages/texts.php:314
 
128
  msgid "Date"
129
  msgstr ""
130
 
@@ -167,9 +168,10 @@ msgid "Lead"
167
  msgstr ""
168
 
169
  #: admin/form-entries.php:319
170
- #: admin/popups/main.php:49
171
  #: admin/templates.php:245
172
  #: languages/texts.php:74
 
173
  msgid "Add New"
174
  msgstr ""
175
 
@@ -209,230 +211,157 @@ msgstr ""
209
  msgid "Layout."
210
  msgstr ""
211
 
212
- #: admin/main.php:218
213
- #: admin/optimize-images.php:354
214
  #: admin/settings.php:108
215
- #: admin/settings.php:109
216
  #: languages/texts.php:181
 
217
  msgid "Settings"
218
  msgstr ""
219
 
220
- #: admin/main.php:226
221
- #: admin/settings.php:147
222
  msgid "Go Pro"
223
  msgstr ""
224
 
225
- #: admin/main.php:285
226
  msgid "Submit & Deactivate"
227
  msgstr ""
228
 
229
- #: admin/main.php:286
230
  msgid "Skip & Deactivate"
231
  msgstr ""
232
 
233
- #: admin/main.php:400
 
 
 
 
234
  msgid "Edit with %s"
235
  msgstr ""
236
 
237
- #: admin/main.php:510
238
  msgid "Importing Brizy post &#8220;%s&#8221; will be skipped due to incompatible version: %s "
239
  msgstr ""
240
 
241
- #: admin/membership/membership.php:48
242
- msgctxt "post type general name"
243
- msgid "Roles"
244
- msgstr ""
245
-
246
- #: admin/membership/membership.php:49
247
- msgctxt "post type singular name"
248
- msgid "Role"
249
- msgstr ""
250
-
251
- #: admin/membership/membership.php:50
252
- msgctxt "admin menu"
253
- msgid "Roles"
254
- msgstr ""
255
-
256
- #: admin/membership/membership.php:51
257
- msgctxt "add new on admin bar"
258
- msgid "Role"
259
- msgstr ""
260
-
261
- #: admin/membership/membership.php:52
262
- msgctxt "add new post type role"
263
- msgid "Add Role"
264
- msgstr ""
265
-
266
- #: admin/membership/membership.php:53
267
- msgid "Add New Role"
268
- msgstr ""
269
-
270
- #: admin/membership/membership.php:54
271
- msgid "New Role"
272
- msgstr ""
273
-
274
- #: admin/membership/membership.php:55
275
- msgid "Edit Role"
276
- msgstr ""
277
-
278
- #: admin/membership/membership.php:56
279
- msgid "View Role"
280
- msgstr ""
281
-
282
- #: admin/membership/membership.php:57
283
- #: admin/views/settings/maintenance.php:33
284
- msgid "Roles"
285
- msgstr ""
286
-
287
- #: admin/membership/membership.php:58
288
- msgid "Search Role"
289
- msgstr ""
290
-
291
- #: admin/membership/membership.php:59
292
- msgid "Parent Role:"
293
- msgstr ""
294
-
295
- #: admin/membership/membership.php:60
296
- msgid "No Roles found."
297
- msgstr ""
298
-
299
- #: admin/membership/membership.php:61
300
- msgid "No Roles found in Trash."
301
- msgstr ""
302
-
303
- #: admin/membership/membership.php:69
304
- msgid "roles"
305
- msgstr ""
306
-
307
- #: admin/membership/membership.php:91
308
- msgid "Enter Role Name"
309
- msgstr ""
310
-
311
- #: admin/membership/membership.php:136
312
- #: admin/membership/membership.php:139
313
- msgid "Role updated."
314
- msgstr ""
315
-
316
- #: admin/membership/membership.php:137
317
- msgid "Custom field updated."
318
  msgstr ""
319
 
320
- #: admin/membership/membership.php:138
321
- msgid "Custom field deleted."
322
  msgstr ""
323
 
324
- #: admin/membership/membership.php:140
325
- msgid "Role published."
 
326
  msgstr ""
327
 
328
- #: admin/membership/membership.php:141
329
- msgid "Role saved."
330
  msgstr ""
331
 
332
- #: admin/membership/membership.php:142
333
- msgid "Role submitted."
334
  msgstr ""
335
 
336
  #: admin/network-settings.php:82
337
- #: admin/settings.php:296
338
  msgid "Full Access"
339
  msgstr ""
340
 
341
- #: admin/optimize-images.php:115
342
- #: admin/optimize-images.php:348
343
- msgid "Optimize"
344
- msgstr ""
345
-
346
- #: admin/popups/main.php:45
347
  msgctxt "post type general name"
348
  msgid "Popups"
349
  msgstr ""
350
 
351
- #: admin/popups/main.php:46
352
  msgctxt "post type singular name"
353
  msgid "Popup"
354
  msgstr ""
355
 
356
- #: admin/popups/main.php:47
357
  msgctxt "admin menu"
358
  msgid "Popups"
359
  msgstr ""
360
 
361
- #: admin/popups/main.php:48
362
  msgctxt "add new on admin bar"
363
  msgid "Popup"
364
  msgstr ""
365
 
366
- #: admin/popups/main.php:50
367
  msgid "Add New Popup"
368
  msgstr ""
369
 
370
- #: admin/popups/main.php:51
371
  msgid "New Popup"
372
  msgstr ""
373
 
374
- #: admin/popups/main.php:52
375
  msgid "Edit Popup"
376
  msgstr ""
377
 
378
- #: admin/popups/main.php:53
379
  msgid "View Popup"
380
  msgstr ""
381
 
382
- #: admin/popups/main.php:54
383
- #: admin/popups/main.php:67
 
384
  msgid "Popups"
385
  msgstr ""
386
 
387
- #: admin/popups/main.php:55
388
  msgid "Search Popups"
389
  msgstr ""
390
 
391
- #: admin/popups/main.php:56
392
  msgid "Parent Popups:"
393
  msgstr ""
394
 
395
- #: admin/popups/main.php:57
396
  msgid "No Popups found."
397
  msgstr ""
398
 
399
- #: admin/popups/main.php:58
400
  msgid "No Popups found in Trash."
401
  msgstr ""
402
 
403
- #: admin/popups/main.php:59
404
  msgid "Popup attributes:"
405
  msgstr ""
406
 
407
- #: admin/rules/api.php:463
408
  msgid "From"
409
  msgstr ""
410
 
411
- #: admin/rules/api.php:475
412
  msgid "From any child of"
413
  msgstr ""
414
 
415
- #: admin/rules/api.php:534
416
  msgid "Specific"
417
  msgstr ""
418
 
419
- #: admin/rules/api.php:544
420
  msgid "Any child of"
421
  msgstr ""
422
 
423
- #: admin/settings.php:130
424
  msgid "Get Help"
425
  msgstr ""
426
 
427
- #: admin/settings.php:159
428
  msgid "General"
429
  msgstr ""
430
 
431
- #: admin/settings.php:165
432
  msgid "Role Manager"
433
  msgstr ""
434
 
435
- #: admin/settings.php:171
436
  msgid "Maintenance Mode"
437
  msgstr ""
438
 
@@ -474,6 +403,7 @@ msgid "View Story"
474
  msgstr ""
475
 
476
  #: admin/stories/main.php:48
 
477
  msgid "Stories"
478
  msgstr ""
479
 
@@ -494,6 +424,7 @@ msgid "No Stories found in Trash."
494
  msgstr ""
495
 
496
  #: admin/stories/main.php:60
 
497
  msgid "stories"
498
  msgstr ""
499
 
@@ -502,11 +433,13 @@ msgid "Single"
502
  msgstr ""
503
 
504
  #: admin/templates.php:126
 
505
  msgid "Archive"
506
  msgstr ""
507
 
508
  #: admin/templates.php:131
509
  #: languages/texts.php:56
 
510
  msgid "Product"
511
  msgstr ""
512
 
@@ -582,30 +515,20 @@ msgstr ""
582
  msgid "Unable to show the rule box."
583
  msgstr ""
584
 
585
- #: admin/templates.php:914
586
  msgid "Unable to get the rule validator for this post type."
587
  msgstr ""
588
 
589
- #: admin/templates.php:921
590
- #: admin/templates.php:942
591
  msgid "Invalid data version."
592
  msgstr ""
593
 
594
- #: admin/views/button.php:20
595
- #: compatibilities/gutenberg.php:91
596
  msgid "Back to WordPress Editor"
597
  msgstr ""
598
 
599
- #: admin/views/button.php:24
600
- #: compatibilities/gutenberg.php:109
601
- msgid "Edit with"
602
- msgstr ""
603
-
604
- #: admin/views/button.php:44
605
- #: admin/views/editor.php:21
606
- msgid "Continue to edit with"
607
- msgstr ""
608
-
609
  #: admin/views/dashboard-news.php:4
610
  msgid "News & Updates"
611
  msgstr ""
@@ -623,6 +546,7 @@ msgid "Recently Edited"
623
  msgstr ""
624
 
625
  #: admin/views/dashboard.php:12
 
626
  msgid "Blog"
627
  msgstr ""
628
 
@@ -638,7 +562,7 @@ msgstr ""
638
  msgid "Dismiss this notice"
639
  msgstr ""
640
 
641
- #: admin/views/settings/general.php:46
642
  #: admin/views/settings/maintenance.php:76
643
  #: admin/views/settings/roles.php:26
644
  msgid "Save Changes"
@@ -664,15 +588,17 @@ msgstr ""
664
  msgid "Who Can Access"
665
  msgstr ""
666
 
667
- #: admin/views/settings/maintenance.php:26
668
- msgid "Logged In"
669
- msgstr ""
670
-
671
  #: admin/views/settings/maintenance.php:27
672
  #: languages/texts.php:140
 
673
  msgid "Custom"
674
  msgstr ""
675
 
 
 
 
 
 
676
  #: admin/views/settings/maintenance.php:49
677
  msgid "Choose a Page"
678
  msgstr ""
@@ -689,28 +615,33 @@ msgstr ""
689
  msgid "Whitelisted IP Addresses"
690
  msgstr ""
691
 
692
- #: brizy.php:108
 
693
  msgid "%1$s requires PHP version 5.6+, you currently running PHP %2$s. <b>%3$s IS NOT RUNNING.</b>"
694
  msgstr ""
695
 
696
- #: compatibilities/gutenberg.php:98
697
- msgid "Continue to edit with "
698
  msgstr ""
699
 
700
- #: content/providers/free-provider.php:106
701
  msgid "%s comment"
702
  msgid_plural "%s comments"
703
  msgstr[0] ""
704
  msgstr[1] ""
705
 
706
- #: content/providers/free-provider.php:144
707
  msgid "Please set a valid product"
708
  msgstr ""
709
 
710
- #: editor.php:278
711
  msgid " Template"
712
  msgstr ""
713
 
 
 
 
 
714
  #: editor/asset/cleaner.php:86
715
  msgid "Every Ten Minutes"
716
  msgstr ""
@@ -719,83 +650,101 @@ msgstr ""
719
  msgid "Bad request"
720
  msgstr ""
721
 
722
- #: editor/block-screenshot-api.php:81
723
- msgid "Invalid image content"
724
  msgstr ""
725
 
726
- #: editor/post.php:501
727
- msgid "Default"
728
  msgstr ""
729
 
730
  #: languages/texts.php:9
 
731
  msgid "START BUILDING YOUR PAGE"
732
  msgstr ""
733
 
734
  #: languages/texts.php:10
 
735
  msgid "Press the button above to add blocks"
736
  msgstr ""
737
 
738
  #: languages/texts.php:14
 
739
  msgid "SWITCH TO DESKTOP"
740
  msgstr ""
741
 
742
  #: languages/texts.php:15
 
743
  msgid "Switch to desktop to add blocks"
744
  msgstr ""
745
 
746
  #: languages/texts.php:21
 
747
  msgid "Add a new block"
748
  msgstr ""
749
 
750
  #: languages/texts.php:22
 
751
  msgid "Press the button to add blocks"
752
  msgstr ""
753
 
754
  #: languages/texts.php:29
 
755
  msgid "Add Elements"
756
  msgstr ""
757
 
758
  #: languages/texts.php:30
 
759
  msgid "Text"
760
  msgstr ""
761
 
762
  #: languages/texts.php:31
 
763
  msgid "Button"
764
  msgstr ""
765
 
766
  #: languages/texts.php:32
 
767
  msgid "Icon"
768
  msgstr ""
769
 
770
  #: languages/texts.php:33
 
771
  msgid "Image"
772
  msgstr ""
773
 
774
  #: languages/texts.php:34
 
775
  msgid "Video"
776
  msgstr ""
777
 
778
  #: languages/texts.php:35
 
779
  msgid "Spacer"
780
  msgstr ""
781
 
782
  #: languages/texts.php:36
 
783
  msgid "Line"
784
  msgstr ""
785
 
786
  #: languages/texts.php:37
 
787
  msgid "Map"
788
  msgstr ""
789
 
790
  #: languages/texts.php:38
 
791
  msgid "Embed"
792
  msgstr ""
793
 
794
  #: languages/texts.php:39
 
795
  msgid "Form"
796
  msgstr ""
797
 
798
  #: languages/texts.php:40
 
799
  msgid "Icon Box"
800
  msgstr ""
801
 
@@ -804,71 +753,88 @@ msgid "SndCloud"
804
  msgstr ""
805
 
806
  #: languages/texts.php:42
 
807
  msgid "Counter"
808
  msgstr ""
809
 
810
  #: languages/texts.php:43
 
811
  msgid "Countdown"
812
  msgstr ""
813
 
814
  #: languages/texts.php:44
 
815
  msgid "Tabs"
816
  msgstr ""
817
 
818
  #: languages/texts.php:45
 
819
  msgid "Progress"
820
  msgstr ""
821
 
822
  #: languages/texts.php:46
 
823
  msgid "Accordion"
824
  msgstr ""
825
 
826
  #: languages/texts.php:47
 
827
  msgid "Row"
828
  msgstr ""
829
 
830
  #: languages/texts.php:48
 
831
  msgid "Column"
832
  msgstr ""
833
 
834
  #: languages/texts.php:49
 
835
  msgid "Rows"
836
  msgstr ""
837
 
838
  #: languages/texts.php:50
 
839
  msgid "Columns"
840
  msgstr ""
841
 
842
  #: languages/texts.php:51
 
843
  msgid "Add to cart"
844
  msgstr ""
845
 
846
  #: languages/texts.php:52
 
847
  msgid "Categories"
848
  msgstr ""
849
 
850
  #: languages/texts.php:53
 
851
  msgid "Layouts"
852
  msgstr ""
853
 
854
  #: languages/texts.php:54
855
  #: languages/texts.php:443
 
856
  msgid "layouts"
857
  msgstr ""
858
 
859
  #: languages/texts.php:55
 
860
  msgid "layout"
861
  msgstr ""
862
 
863
  #: languages/texts.php:57
 
864
  msgid "Products"
865
  msgstr ""
866
 
867
  #: languages/texts.php:58
 
868
  msgid "Shortcode"
869
  msgstr ""
870
 
871
  #: languages/texts.php:59
 
872
  msgid "Menu"
873
  msgstr ""
874
 
@@ -877,10 +843,12 @@ msgid "WP Menu"
877
  msgstr ""
878
 
879
  #: languages/texts.php:61
 
880
  msgid "Posts"
881
  msgstr ""
882
 
883
  #: languages/texts.php:62
 
884
  msgid "Archives"
885
  msgstr ""
886
 
@@ -889,22 +857,27 @@ msgid "Taxonomy"
889
  msgstr ""
890
 
891
  #: languages/texts.php:64
 
892
  msgid "Pagination"
893
  msgstr ""
894
 
895
  #: languages/texts.php:65
 
896
  msgid "Sidebar"
897
  msgstr ""
898
 
899
  #: languages/texts.php:67
 
900
  msgid "Reorder Blocks"
901
  msgstr ""
902
 
903
  #: languages/texts.php:68
 
904
  msgid "Drag to reorder"
905
  msgstr ""
906
 
907
  #: languages/texts.php:70
 
908
  msgid "Styling"
909
  msgstr ""
910
 
@@ -917,26 +890,32 @@ msgid "Type font name"
917
  msgstr ""
918
 
919
  #: languages/texts.php:73
 
920
  msgid "Add new option"
921
  msgstr ""
922
 
923
  #: languages/texts.php:75
 
924
  msgid "New Style #%s"
925
  msgstr ""
926
 
927
  #: languages/texts.php:76
 
928
  msgid "Copy"
929
  msgstr ""
930
 
931
  #: languages/texts.php:77
 
932
  msgid "Paste"
933
  msgstr ""
934
 
935
  #: languages/texts.php:78
 
936
  msgid "Paste Styles"
937
  msgstr ""
938
 
939
  #: languages/texts.php:80
 
940
  msgid "Mobile view"
941
  msgstr ""
942
 
@@ -945,18 +924,22 @@ msgid "Tablet view"
945
  msgstr ""
946
 
947
  #: languages/texts.php:82
 
948
  msgid "Desktop"
949
  msgstr ""
950
 
951
  #: languages/texts.php:83
 
952
  msgid "Tablet"
953
  msgstr ""
954
 
955
  #: languages/texts.php:84
 
956
  msgid "Mobile"
957
  msgstr ""
958
 
959
  #: languages/texts.php:86
 
960
  msgid "More"
961
  msgstr ""
962
 
@@ -969,6 +952,7 @@ msgid "Back to Brizy"
969
  msgstr ""
970
 
971
  #: languages/texts.php:89
 
972
  msgid "Plugin Settings"
973
  msgstr ""
974
 
@@ -977,6 +961,7 @@ msgid "Back to WordPress"
977
  msgstr ""
978
 
979
  #: languages/texts.php:91
 
980
  msgid "Featured Image"
981
  msgstr ""
982
 
@@ -985,6 +970,7 @@ msgid "Submit an Issue"
985
  msgstr ""
986
 
987
  #: languages/texts.php:93
 
988
  msgid "Upgrade to Pro"
989
  msgstr ""
990
 
@@ -993,38 +979,47 @@ msgid "Save HTML"
993
  msgstr ""
994
 
995
  #: languages/texts.php:97
 
996
  msgid "Update"
997
  msgstr ""
998
 
999
  #: languages/texts.php:98
 
1000
  msgid "Publish"
1001
  msgstr ""
1002
 
1003
  #: languages/texts.php:101
 
1004
  msgid "More Settings"
1005
  msgstr ""
1006
 
1007
  #: languages/texts.php:102
 
1008
  msgid "Advanced"
1009
  msgstr ""
1010
 
1011
  #: languages/texts.php:103
 
1012
  msgid "Show on Desktop"
1013
  msgstr ""
1014
 
1015
  #: languages/texts.php:104
 
1016
  msgid "Disable on Mobile"
1017
  msgstr ""
1018
 
1019
  #: languages/texts.php:105
 
1020
  msgid "Disable on Tablet"
1021
  msgstr ""
1022
 
1023
  #: languages/texts.php:106
 
1024
  msgid "Enable on Mobile"
1025
  msgstr ""
1026
 
1027
  #: languages/texts.php:107
 
1028
  msgid "Enable on Tablet"
1029
  msgstr ""
1030
 
@@ -1033,6 +1028,7 @@ msgid "Write your CSS here..."
1033
  msgstr ""
1034
 
1035
  #: languages/texts.php:109
 
1036
  msgid "Z-index"
1037
  msgstr ""
1038
 
@@ -1041,110 +1037,137 @@ msgid "Anchor Name"
1041
  msgstr ""
1042
 
1043
  #: languages/texts.php:111
 
1044
  msgid "CSS Class"
1045
  msgstr ""
1046
 
1047
  #: languages/texts.php:112
 
1048
  msgid "Custom CSS"
1049
  msgstr ""
1050
 
1051
  #: languages/texts.php:116
 
1052
  msgid "Slider"
1053
  msgstr ""
1054
 
1055
  #: languages/texts.php:118
 
1056
  msgid "Make it a Slider"
1057
  msgstr ""
1058
 
1059
  #: languages/texts.php:119
 
1060
  msgid "Auto Play"
1061
  msgstr ""
1062
 
1063
  #: languages/texts.php:120
 
1064
  msgid "Speed"
1065
  msgstr ""
1066
 
1067
  #: languages/texts.php:121
 
1068
  msgid "Navigation"
1069
  msgstr ""
1070
 
1071
  #: languages/texts.php:122
 
1072
  msgid "Dots"
1073
  msgstr ""
1074
 
1075
  #: languages/texts.php:123
 
1076
  msgid "None"
1077
  msgstr ""
1078
 
1079
  #: languages/texts.php:124
 
1080
  msgid "Circle"
1081
  msgstr ""
1082
 
1083
  #: languages/texts.php:125
 
1084
  msgid "Diamond"
1085
  msgstr ""
1086
 
1087
  #: languages/texts.php:126
 
1088
  msgid "Square"
1089
  msgstr ""
1090
 
1091
  #: languages/texts.php:127
 
1092
  msgid "Arrows"
1093
  msgstr ""
1094
 
1095
  #: languages/texts.php:128
 
1096
  msgid "Arrows Spacing"
1097
  msgstr ""
1098
 
1099
  #: languages/texts.php:129
 
1100
  msgid "Thin"
1101
  msgstr ""
1102
 
1103
  #: languages/texts.php:130
 
1104
  msgid "Heavy"
1105
  msgstr ""
1106
 
1107
  #: languages/texts.php:131
 
1108
  msgid "Tail"
1109
  msgstr ""
1110
 
1111
  #: languages/texts.php:132
 
1112
  msgid "Round"
1113
  msgstr ""
1114
 
1115
  #: languages/texts.php:133
 
1116
  msgid "Outline"
1117
  msgstr ""
1118
 
1119
  #: languages/texts.php:135
 
1120
  msgid "Full Height"
1121
  msgstr ""
1122
 
1123
  #: languages/texts.php:136
 
1124
  msgid "Width"
1125
  msgstr ""
1126
 
1127
  #: languages/texts.php:137
 
1128
  msgid "Height"
1129
  msgstr ""
1130
 
1131
  #: languages/texts.php:138
 
1132
  msgid "Boxed"
1133
  msgstr ""
1134
 
1135
  #: languages/texts.php:139
 
1136
  msgid "Auto"
1137
  msgstr ""
1138
 
1139
  #: languages/texts.php:141
 
1140
  msgid "Full"
1141
  msgstr ""
1142
 
1143
  #: languages/texts.php:142
 
1144
  msgid "Hover Transition"
1145
  msgstr ""
1146
 
1147
  #: languages/texts.php:144
 
1148
  msgid "Carousel"
1149
  msgstr ""
1150
 
@@ -1153,50 +1176,62 @@ msgid "Swipe"
1153
  msgstr ""
1154
 
1155
  #: languages/texts.php:148
 
1156
  msgid "Missing Element"
1157
  msgstr ""
1158
 
1159
  #: languages/texts.php:149
 
1160
  msgid "Could not find"
1161
  msgstr ""
1162
 
1163
  #: languages/texts.php:150
 
1164
  msgid "component"
1165
  msgstr ""
1166
 
1167
  #: languages/texts.php:153
 
1168
  msgid "Add New Column"
1169
  msgstr ""
1170
 
1171
  #: languages/texts.php:155
 
1172
  msgid "Background"
1173
  msgstr ""
1174
 
1175
  #: languages/texts.php:156
 
1176
  msgid "Bg Size"
1177
  msgstr ""
1178
 
1179
  #: languages/texts.php:157
 
1180
  msgid "Parallax"
1181
  msgstr ""
1182
 
1183
  #: languages/texts.php:158
 
1184
  msgid "Fixed"
1185
  msgstr ""
1186
 
1187
  #: languages/texts.php:159
 
1188
  msgid "Animated"
1189
  msgstr ""
1190
 
1191
  #: languages/texts.php:160
 
1192
  msgid "Sticky"
1193
  msgstr ""
1194
 
1195
  #: languages/texts.php:161
 
1196
  msgid "URL"
1197
  msgstr ""
1198
 
1199
  #: languages/texts.php:162
 
1200
  msgid "YouTube or Vimeo"
1201
  msgstr ""
1202
 
@@ -1213,130 +1248,162 @@ msgid "720p"
1213
  msgstr ""
1214
 
1215
  #: languages/texts.php:166
 
1216
  msgid "Loop"
1217
  msgstr ""
1218
 
1219
  #: languages/texts.php:167
 
1220
  msgid "Address"
1221
  msgstr ""
1222
 
1223
  #: languages/texts.php:168
 
1224
  msgid "Enter address"
1225
  msgstr ""
1226
 
1227
  #: languages/texts.php:169
 
1228
  msgid "Zoom"
1229
  msgstr ""
1230
 
1231
  #: languages/texts.php:171
 
1232
  msgid "Colors"
1233
  msgstr ""
1234
 
1235
  #: languages/texts.php:172
 
1236
  msgid "Color"
1237
  msgstr ""
1238
 
1239
  #: languages/texts.php:173
 
1240
  msgid "Overlay"
1241
  msgstr ""
1242
 
1243
  #: languages/texts.php:174
 
1244
  msgid "Border"
1245
  msgstr ""
1246
 
1247
  #: languages/texts.php:175
 
1248
  msgid "Solid"
1249
  msgstr ""
1250
 
1251
  #: languages/texts.php:176
 
1252
  msgid "Gradient"
1253
  msgstr ""
1254
 
1255
  #: languages/texts.php:177
 
1256
  msgid "Linear"
1257
  msgstr ""
1258
 
1259
  #: languages/texts.php:178
 
1260
  msgid "Radial"
1261
  msgstr ""
1262
 
1263
  #: languages/texts.php:180
 
1264
  msgid "Dynamic Content"
1265
  msgstr ""
1266
 
1267
  #: languages/texts.php:183
 
1268
  msgid "Duplicate"
1269
  msgstr ""
1270
 
1271
  #: languages/texts.php:184
 
1272
  msgid "Delete"
1273
  msgstr ""
1274
 
1275
  #: languages/texts.php:186
 
1276
  msgid "Entrance Animation"
1277
  msgstr ""
1278
 
1279
  #: languages/texts.php:187
 
1280
  msgid "Duration"
1281
  msgstr ""
1282
 
1283
  #: languages/texts.php:188
 
1284
  msgid "Delay"
1285
  msgstr ""
1286
 
1287
  #: languages/texts.php:189
 
1288
  msgid "Bounce"
1289
  msgstr ""
1290
 
1291
  #: languages/texts.php:190
 
1292
  msgid "Flash"
1293
  msgstr ""
1294
 
1295
  #: languages/texts.php:191
 
1296
  msgid "Pulse"
1297
  msgstr ""
1298
 
1299
  #: languages/texts.php:192
 
1300
  msgid "RubberBand"
1301
  msgstr ""
1302
 
1303
  #: languages/texts.php:193
 
1304
  msgid "Shake"
1305
  msgstr ""
1306
 
1307
  #: languages/texts.php:194
 
1308
  msgid "Swing"
1309
  msgstr ""
1310
 
1311
  #: languages/texts.php:195
 
1312
  msgid "Tada"
1313
  msgstr ""
1314
 
1315
  #: languages/texts.php:196
 
1316
  msgid "Wobble"
1317
  msgstr ""
1318
 
1319
  #: languages/texts.php:197
 
1320
  msgid "Jello"
1321
  msgstr ""
1322
 
1323
  #: languages/texts.php:198
 
1324
  msgid "BounceIn"
1325
  msgstr ""
1326
 
1327
  #: languages/texts.php:199
 
1328
  msgid "BounceInDown"
1329
  msgstr ""
1330
 
1331
  #: languages/texts.php:200
 
1332
  msgid "BounceInLeft"
1333
  msgstr ""
1334
 
1335
  #: languages/texts.php:201
 
1336
  msgid "BounceInRight"
1337
  msgstr ""
1338
 
1339
  #: languages/texts.php:202
 
1340
  msgid "BounceInUp"
1341
  msgstr ""
1342
 
@@ -1361,38 +1428,47 @@ msgid "BounceOutUp"
1361
  msgstr ""
1362
 
1363
  #: languages/texts.php:208
 
1364
  msgid "FadeIn"
1365
  msgstr ""
1366
 
1367
  #: languages/texts.php:209
 
1368
  msgid "FadeInDown"
1369
  msgstr ""
1370
 
1371
  #: languages/texts.php:210
 
1372
  msgid "FadeInDownBig"
1373
  msgstr ""
1374
 
1375
  #: languages/texts.php:211
 
1376
  msgid "FadeInLeft"
1377
  msgstr ""
1378
 
1379
  #: languages/texts.php:212
 
1380
  msgid "FadeInLeftBig"
1381
  msgstr ""
1382
 
1383
  #: languages/texts.php:213
 
1384
  msgid "FadeInRight"
1385
  msgstr ""
1386
 
1387
  #: languages/texts.php:214
 
1388
  msgid "FadeInRightBig"
1389
  msgstr ""
1390
 
1391
  #: languages/texts.php:215
 
1392
  msgid "FadeInUp"
1393
  msgstr ""
1394
 
1395
  #: languages/texts.php:216
 
1396
  msgid "FadeInUpBig"
1397
  msgstr ""
1398
 
@@ -1433,14 +1509,17 @@ msgid "FadeOutUpBig"
1433
  msgstr ""
1434
 
1435
  #: languages/texts.php:226
 
1436
  msgid "Flip"
1437
  msgstr ""
1438
 
1439
  #: languages/texts.php:227
 
1440
  msgid "FlipInX"
1441
  msgstr ""
1442
 
1443
  #: languages/texts.php:228
 
1444
  msgid "FlipInY"
1445
  msgstr ""
1446
 
@@ -1453,26 +1532,32 @@ msgid "FlipOutY"
1453
  msgstr ""
1454
 
1455
  #: languages/texts.php:231
 
1456
  msgid "LightSpeedIn"
1457
  msgstr ""
1458
 
1459
  #: languages/texts.php:232
 
1460
  msgid "RotateIn"
1461
  msgstr ""
1462
 
1463
  #: languages/texts.php:233
 
1464
  msgid "RotateInDownLeft"
1465
  msgstr ""
1466
 
1467
  #: languages/texts.php:234
 
1468
  msgid "RotateInDownRight"
1469
  msgstr ""
1470
 
1471
  #: languages/texts.php:235
 
1472
  msgid "RotateInUpLeft"
1473
  msgstr ""
1474
 
1475
  #: languages/texts.php:236
 
1476
  msgid "RotateInUpRight"
1477
  msgstr ""
1478
 
@@ -1497,18 +1582,22 @@ msgid "RotateOutUpRight"
1497
  msgstr ""
1498
 
1499
  #: languages/texts.php:242
 
1500
  msgid "SlideInUp"
1501
  msgstr ""
1502
 
1503
  #: languages/texts.php:243
 
1504
  msgid "SlideInDown"
1505
  msgstr ""
1506
 
1507
  #: languages/texts.php:244
 
1508
  msgid "SlideInLeft"
1509
  msgstr ""
1510
 
1511
  #: languages/texts.php:245
 
1512
  msgid "SlideInRight"
1513
  msgstr ""
1514
 
@@ -1529,22 +1618,27 @@ msgid "SlideOutRight"
1529
  msgstr ""
1530
 
1531
  #: languages/texts.php:250
 
1532
  msgid "ZoomIn"
1533
  msgstr ""
1534
 
1535
  #: languages/texts.php:251
 
1536
  msgid "ZoomInDown"
1537
  msgstr ""
1538
 
1539
  #: languages/texts.php:252
 
1540
  msgid "ZoomInLeft"
1541
  msgstr ""
1542
 
1543
  #: languages/texts.php:253
 
1544
  msgid "ZoomInRight"
1545
  msgstr ""
1546
 
1547
  #: languages/texts.php:254
 
1548
  msgid "ZoomInUp"
1549
  msgstr ""
1550
 
@@ -1573,10 +1667,12 @@ msgid "Hinge"
1573
  msgstr ""
1574
 
1575
  #: languages/texts.php:261
 
1576
  msgid "JackInTheBox"
1577
  msgstr ""
1578
 
1579
  #: languages/texts.php:262
 
1580
  msgid "RollIn"
1581
  msgstr ""
1582
 
@@ -1585,98 +1681,122 @@ msgid "RollOut"
1585
  msgstr ""
1586
 
1587
  #: languages/texts.php:265
 
1588
  msgid "Content"
1589
  msgstr ""
1590
 
1591
  #: languages/texts.php:266
 
1592
  msgid "Align"
1593
  msgstr ""
1594
 
1595
  #: languages/texts.php:267
 
1596
  msgid "Position"
1597
  msgstr ""
1598
 
1599
  #: languages/texts.php:269
 
1600
  msgid "Typography"
1601
  msgstr ""
1602
 
1603
  #: languages/texts.php:270
 
1604
  msgid "Font Family"
1605
  msgstr ""
1606
 
1607
  #: languages/texts.php:271
 
1608
  msgid "Size"
1609
  msgstr ""
1610
 
1611
  #: languages/texts.php:272
 
1612
  msgid "Line Hgt."
1613
  msgstr ""
1614
 
1615
  #: languages/texts.php:273
 
1616
  msgid "Letter Sp."
1617
  msgstr ""
1618
 
1619
  #: languages/texts.php:274
 
1620
  msgid "List"
1621
  msgstr ""
1622
 
1623
  #: languages/texts.php:275
 
1624
  msgid "Bold"
1625
  msgstr ""
1626
 
1627
  #: languages/texts.php:276
 
1628
  msgid "Italic"
1629
  msgstr ""
1630
 
1631
  #: languages/texts.php:277
 
1632
  msgid "Gap Above"
1633
  msgstr ""
1634
 
1635
  #: languages/texts.php:278
 
1636
  msgid "Gap Below"
1637
  msgstr ""
1638
 
1639
  #: languages/texts.php:279
 
1640
  msgid "HTML Tag"
1641
  msgstr ""
1642
 
1643
  #: languages/texts.php:280
 
1644
  msgid "P"
1645
  msgstr ""
1646
 
1647
  #: languages/texts.php:281
 
1648
  msgid "H1"
1649
  msgstr ""
1650
 
1651
  #: languages/texts.php:282
 
1652
  msgid "H2"
1653
  msgstr ""
1654
 
1655
  #: languages/texts.php:283
 
1656
  msgid "H3"
1657
  msgstr ""
1658
 
1659
  #: languages/texts.php:284
 
1660
  msgid "H4"
1661
  msgstr ""
1662
 
1663
  #: languages/texts.php:285
 
1664
  msgid "H5"
1665
  msgstr ""
1666
 
1667
  #: languages/texts.php:286
 
1668
  msgid "H6"
1669
  msgstr ""
1670
 
1671
  #: languages/texts.php:287
 
1672
  msgid "PRE"
1673
  msgstr ""
1674
 
1675
  #: languages/texts.php:288
 
1676
  msgid "Editable Text"
1677
  msgstr ""
1678
 
1679
  #: languages/texts.php:290
 
1680
  msgid "Link"
1681
  msgstr ""
1682
 
@@ -1685,126 +1805,157 @@ msgid "Anchor"
1685
  msgstr ""
1686
 
1687
  #: languages/texts.php:292
 
1688
  msgid "Link to"
1689
  msgstr ""
1690
 
1691
  #: languages/texts.php:293
 
1692
  msgid "Open In New Tab"
1693
  msgstr ""
1694
 
1695
  #: languages/texts.php:296
 
1696
  msgid "Padding"
1697
  msgstr ""
1698
 
1699
  #: languages/texts.php:297
 
1700
  msgid "Margin"
1701
  msgstr ""
1702
 
1703
  #: languages/texts.php:298
 
1704
  msgid "Corner"
1705
  msgstr ""
1706
 
1707
  #: languages/texts.php:299
 
1708
  msgid "Fill"
1709
  msgstr ""
1710
 
1711
  #: languages/texts.php:300
 
1712
  msgid "Spacing"
1713
  msgstr ""
1714
 
1715
  #: languages/texts.php:303
 
1716
  msgid "Shadow"
1717
  msgstr ""
1718
 
1719
  #: languages/texts.php:306
 
1720
  msgid "Normal"
1721
  msgstr ""
1722
 
1723
  #: languages/texts.php:307
 
1724
  msgid "Hover"
1725
  msgstr ""
1726
 
1727
  #: languages/texts.php:310
 
1728
  msgid "Reverse Columns"
1729
  msgstr ""
1730
 
1731
  #: languages/texts.php:315
 
1732
  msgid "Hour"
1733
  msgstr ""
1734
 
1735
  #: languages/texts.php:316
 
1736
  msgid "Minutes"
1737
  msgstr ""
1738
 
1739
  #: languages/texts.php:317
 
1740
  msgid "Time Zone"
1741
  msgstr ""
1742
 
1743
  #: languages/texts.php:318
 
1744
  msgid "- 11:00 (Niue)"
1745
  msgstr ""
1746
 
1747
  #: languages/texts.php:319
 
1748
  msgid "- 10:00 (Honolulu, Papeete)"
1749
  msgstr ""
1750
 
1751
  #: languages/texts.php:320
 
1752
  msgid "- 9:00 (Anchorage)"
1753
  msgstr ""
1754
 
1755
  #: languages/texts.php:321
 
1756
  msgid "- 8:00 (Los Angeles)"
1757
  msgstr ""
1758
 
1759
  #: languages/texts.php:322
 
1760
  msgid "- 7:00 (Denver, Phoenix)"
1761
  msgstr ""
1762
 
1763
  #: languages/texts.php:323
 
1764
  msgid "- 6:00 (Chicago, Dallas)"
1765
  msgstr ""
1766
 
1767
  #: languages/texts.php:324
 
1768
  msgid "- 5:00 (New York, Miami)"
1769
  msgstr ""
1770
 
1771
  #: languages/texts.php:325
 
1772
  msgid "- 4:00 (Halifax, Manaus)"
1773
  msgstr ""
1774
 
1775
  #: languages/texts.php:326
 
1776
  msgid "- 3:00 (Brasilia, Santiago)"
1777
  msgstr ""
1778
 
1779
  #: languages/texts.php:327
 
1780
  msgid "- 2:00 (Noronha)"
1781
  msgstr ""
1782
 
1783
  #: languages/texts.php:328
 
1784
  msgid "- 1:00 (Cape Verde)"
1785
  msgstr ""
1786
 
1787
  #: languages/texts.php:329
 
1788
  msgid "00:00 (London, Dublin)"
1789
  msgstr ""
1790
 
1791
  #: languages/texts.php:330
 
1792
  msgid "+ 1:00 (Berlin, Paris)"
1793
  msgstr ""
1794
 
1795
  #: languages/texts.php:331
 
1796
  msgid "+ 2:00 (Athens, Istanbul)"
1797
  msgstr ""
1798
 
1799
  #: languages/texts.php:332
 
1800
  msgid "+ 3:00 (Moscow, Baghdad)"
1801
  msgstr ""
1802
 
1803
  #: languages/texts.php:333
 
1804
  msgid "+ 4:00 (Dubai, Baku)"
1805
  msgstr ""
1806
 
1807
  #: languages/texts.php:334
 
1808
  msgid "+ 5:00 (Yekaterinburg)"
1809
  msgstr ""
1810
 
@@ -1813,14 +1964,17 @@ msgid "+ 6:00 (Astana)"
1813
  msgstr ""
1814
 
1815
  #: languages/texts.php:336
 
1816
  msgid "+ 7:00 (Bangkok, Jakarta)"
1817
  msgstr ""
1818
 
1819
  #: languages/texts.php:337
 
1820
  msgid "+ 8:00 (Singapore, Beijing)"
1821
  msgstr ""
1822
 
1823
  #: languages/texts.php:338
 
1824
  msgid "+ 9:00 (Tokyo, Seoul)"
1825
  msgstr ""
1826
 
@@ -1829,118 +1983,147 @@ msgid "+ 10:00 (Sidney, Melbourne)"
1829
  msgstr ""
1830
 
1831
  #: languages/texts.php:340
 
1832
  msgid "+ 11:00 (Ponape)"
1833
  msgstr ""
1834
 
1835
  #: languages/texts.php:341
 
1836
  msgid "+ 12:00 (Auckland)"
1837
  msgstr ""
1838
 
1839
  #: languages/texts.php:342
 
1840
  msgid "Language"
1841
  msgstr ""
1842
 
1843
  #: languages/texts.php:343
 
1844
  msgid "German"
1845
  msgstr ""
1846
 
1847
  #: languages/texts.php:344
 
1848
  msgid "English"
1849
  msgstr ""
1850
 
1851
  #: languages/texts.php:345
 
1852
  msgid "Spanish"
1853
  msgstr ""
1854
 
1855
  #: languages/texts.php:346
 
1856
  msgid "French"
1857
  msgstr ""
1858
 
1859
  #: languages/texts.php:347
 
1860
  msgid "Italian"
1861
  msgstr ""
1862
 
1863
  #: languages/texts.php:348
 
1864
  msgid "Dutch"
1865
  msgstr ""
1866
 
1867
  #: languages/texts.php:349
 
1868
  msgid "Russian"
1869
  msgstr ""
1870
 
1871
  #: languages/texts.php:351
 
1872
  msgid "Start"
1873
  msgstr ""
1874
 
1875
  #: languages/texts.php:352
 
1876
  msgid "End"
1877
  msgstr ""
1878
 
1879
  #: languages/texts.php:354
 
1880
  msgid "Paste your code here..."
1881
  msgstr ""
1882
 
1883
  #: languages/texts.php:356
 
1884
  msgid "Field"
1885
  msgstr ""
1886
 
1887
  #: languages/texts.php:357
 
1888
  msgid "Field Type"
1889
  msgstr ""
1890
 
1891
  #: languages/texts.php:358
 
1892
  msgid "Label"
1893
  msgstr ""
1894
 
1895
  #: languages/texts.php:359
 
1896
  msgid "Message"
1897
  msgstr ""
1898
 
1899
  #: languages/texts.php:360
 
1900
  msgid "Success"
1901
  msgstr ""
1902
 
1903
  #: languages/texts.php:361
 
1904
  msgid "Error"
1905
  msgstr ""
1906
 
1907
  #: languages/texts.php:362
 
1908
  msgid "Message sent"
1909
  msgstr ""
1910
 
1911
  #: languages/texts.php:363
 
1912
  msgid "Message not sent"
1913
  msgstr ""
1914
 
1915
  #: languages/texts.php:364
 
1916
  msgid "Redirect"
1917
  msgstr ""
1918
 
1919
  #: languages/texts.php:365
 
1920
  msgid "Go to"
1921
  msgstr ""
1922
 
1923
  #: languages/texts.php:366
 
1924
  msgid "Required"
1925
  msgstr ""
1926
 
1927
  #: languages/texts.php:367
 
1928
  msgid "Email"
1929
  msgstr ""
1930
 
1931
  #: languages/texts.php:368
 
1932
  msgid "Number"
1933
  msgstr ""
1934
 
1935
  #: languages/texts.php:369
 
1936
  msgid "Paragraph"
1937
  msgstr ""
1938
 
1939
  #: languages/texts.php:370
 
1940
  msgid "Select"
1941
  msgstr ""
1942
 
1943
  #: languages/texts.php:373
 
1944
  msgid "Style"
1945
  msgstr ""
1946
 
@@ -1969,14 +2152,17 @@ msgid "LightBox"
1969
  msgstr ""
1970
 
1971
  #: languages/texts.php:381
 
1972
  msgid "Open in Lightbox"
1973
  msgstr ""
1974
 
1975
  #: languages/texts.php:383
 
1976
  msgid "Gallery"
1977
  msgstr ""
1978
 
1979
  #: languages/texts.php:385
 
1980
  msgid "Percentage"
1981
  msgstr ""
1982
 
@@ -1985,14 +2171,17 @@ msgid "Show Percentage"
1985
  msgstr ""
1986
 
1987
  #: languages/texts.php:387
 
1988
  msgid "Bar"
1989
  msgstr ""
1990
 
1991
  #: languages/texts.php:389
 
1992
  msgid "SoundCloud"
1993
  msgstr ""
1994
 
1995
  #: languages/texts.php:390
 
1996
  msgid "SoundCloud Link"
1997
  msgstr ""
1998
 
@@ -2001,26 +2190,32 @@ msgid "Video Link"
2001
  msgstr ""
2002
 
2003
  #: languages/texts.php:393
 
2004
  msgid "Ratio"
2005
  msgstr ""
2006
 
2007
  #: languages/texts.php:394
 
2008
  msgid "Controls"
2009
  msgstr ""
2010
 
2011
  #: languages/texts.php:395
 
2012
  msgid "Cover"
2013
  msgstr ""
2014
 
2015
  #: languages/texts.php:396
 
2016
  msgid "Play"
2017
  msgstr ""
2018
 
2019
  #: languages/texts.php:399
 
2020
  msgid "Header"
2021
  msgstr ""
2022
 
2023
  #: languages/texts.php:402
 
2024
  msgid "Footer"
2025
  msgstr ""
2026
 
@@ -2029,46 +2224,57 @@ msgid "MultiPage"
2029
  msgstr ""
2030
 
2031
  #: languages/texts.php:406
 
2032
  msgid "Type"
2033
  msgstr ""
2034
 
2035
  #: languages/texts.php:407
 
2036
  msgid "Static"
2037
  msgstr ""
2038
 
2039
  #: languages/texts.php:410
 
2040
  msgid "No matches found"
2041
  msgstr ""
2042
 
2043
  #: languages/texts.php:413
 
2044
  msgid "Popup"
2045
  msgstr ""
2046
 
2047
  #: languages/texts.php:414
 
2048
  msgid "Close"
2049
  msgstr ""
2050
 
2051
  #: languages/texts.php:417
 
2052
  msgid "Comments"
2053
  msgstr ""
2054
 
2055
  #: languages/texts.php:418
 
2056
  msgid "Like"
2057
  msgstr ""
2058
 
2059
  #: languages/texts.php:419
 
2060
  msgid "Recommend"
2061
  msgstr ""
2062
 
2063
  #: languages/texts.php:420
 
2064
  msgid "Include Share Button"
2065
  msgstr ""
2066
 
2067
  #: languages/texts.php:421
 
2068
  msgid "Show Friends' Faces"
2069
  msgstr ""
2070
 
2071
  #: languages/texts.php:422
 
2072
  msgid "Show Button Counter"
2073
  msgstr ""
2074
 
@@ -2077,58 +2283,72 @@ msgid "Dark Scheme"
2077
  msgstr ""
2078
 
2079
  #: languages/texts.php:424
 
2080
  msgid "Target URL"
2081
  msgstr ""
2082
 
2083
  #: languages/texts.php:425
 
2084
  msgid "Current Page"
2085
  msgstr ""
2086
 
2087
  #: languages/texts.php:426
 
2088
  msgid "Custom Page"
2089
  msgstr ""
2090
 
2091
  #: languages/texts.php:427
 
2092
  msgid "Include Full Post"
2093
  msgstr ""
2094
 
2095
  #: languages/texts.php:428
 
2096
  msgid "Full Screen"
2097
  msgstr ""
2098
 
2099
  #: languages/texts.php:429
 
2100
  msgid "AutoPlay"
2101
  msgstr ""
2102
 
2103
  #: languages/texts.php:430
 
2104
  msgid "Captions"
2105
  msgstr ""
2106
 
2107
  #: languages/texts.php:431
 
2108
  msgid "Timeline"
2109
  msgstr ""
2110
 
2111
  #: languages/texts.php:432
 
2112
  msgid "Events"
2113
  msgstr ""
2114
 
2115
  #: languages/texts.php:433
 
2116
  msgid "Messages"
2117
  msgstr ""
2118
 
2119
  #: languages/texts.php:434
 
2120
  msgid "Use Small Header"
2121
  msgstr ""
2122
 
2123
  #: languages/texts.php:435
 
2124
  msgid "Hide Cover Photo"
2125
  msgstr ""
2126
 
2127
  #: languages/texts.php:436
 
2128
  msgid "Show Friend's Faces"
2129
  msgstr ""
2130
 
2131
  #: languages/texts.php:437
 
2132
  msgid "Facebook Button"
2133
  msgstr ""
2134
 
@@ -2137,46 +2357,57 @@ msgid "Facebook Comments"
2137
  msgstr ""
2138
 
2139
  #: languages/texts.php:439
 
2140
  msgid "Facebook Embed"
2141
  msgstr ""
2142
 
2143
  #: languages/texts.php:440
 
2144
  msgid "Facebook Page"
2145
  msgstr ""
2146
 
2147
  #: languages/texts.php:442
 
2148
  msgid "Back to Layouts"
2149
  msgstr ""
2150
 
2151
  #: languages/texts.php:444
 
2152
  msgid "Import This Layout"
2153
  msgstr ""
2154
 
2155
  #: languages/texts.php:445
 
2156
  msgid "Nothing here yet, save a block first."
2157
  msgstr ""
2158
 
2159
  #: languages/texts.php:446
 
2160
  msgid "Nothing here yet, make a global block first."
2161
  msgstr ""
2162
 
2163
  #: languages/texts.php:448
 
2164
  msgid "Query"
2165
  msgstr ""
2166
 
2167
  #: languages/texts.php:449
 
2168
  msgid "Product ID"
2169
  msgstr ""
2170
 
2171
  #: languages/texts.php:450
 
2172
  msgid "Product ID or SKU"
2173
  msgstr ""
2174
 
2175
  #: languages/texts.php:451
 
2176
  msgid "Products Count"
2177
  msgstr ""
2178
 
2179
  #: languages/texts.php:452
 
2180
  msgid "Layout"
2181
  msgstr ""
2182
 
@@ -2185,86 +2416,107 @@ msgid "Style Add to Cart"
2185
  msgstr ""
2186
 
2187
  #: languages/texts.php:454
 
2188
  msgid "Categories Count"
2189
  msgstr ""
2190
 
2191
  #: languages/texts.php:455
 
2192
  msgid "Order"
2193
  msgstr ""
2194
 
2195
  #: languages/texts.php:456
 
2196
  msgid "Asc"
2197
  msgstr ""
2198
 
2199
  #: languages/texts.php:457
 
2200
  msgid "Desc"
2201
  msgstr ""
2202
 
2203
  #: languages/texts.php:458
 
2204
  msgid "Order By"
2205
  msgstr ""
2206
 
2207
  #: languages/texts.php:459
 
2208
  msgid "Name"
2209
  msgstr ""
2210
 
2211
  #: languages/texts.php:460
 
2212
  msgid "Slug"
2213
  msgstr ""
2214
 
2215
  #: languages/texts.php:461
 
2216
  msgid "Description"
2217
  msgstr ""
2218
 
2219
  #: languages/texts.php:462
 
2220
  msgid "Count"
2221
  msgstr ""
2222
 
2223
  #: languages/texts.php:463
 
2224
  msgid "Page"
2225
  msgstr ""
2226
 
2227
  #: languages/texts.php:464
 
2228
  msgid "Cart"
2229
  msgstr ""
2230
 
2231
  #: languages/texts.php:465
 
2232
  msgid "Checkout"
2233
  msgstr ""
2234
 
2235
  #: languages/texts.php:466
 
2236
  msgid "My Account"
2237
  msgstr ""
2238
 
2239
  #: languages/texts.php:467
 
2240
  msgid "Order Tracking"
2241
  msgstr ""
2242
 
2243
  #: languages/texts.php:468
 
2244
  msgid "Filter"
2245
  msgstr ""
2246
 
2247
  #: languages/texts.php:469
 
2248
  msgid "Title"
2249
  msgstr ""
2250
 
2251
  #: languages/texts.php:470
 
2252
  msgid "Rating"
2253
  msgstr ""
2254
 
2255
  #: languages/texts.php:471
 
2256
  msgid "Popularity"
2257
  msgstr ""
2258
 
2259
  #: languages/texts.php:472
 
2260
  msgid "Menu Order"
2261
  msgstr ""
2262
 
2263
  #: languages/texts.php:473
 
2264
  msgid "Random"
2265
  msgstr ""
2266
 
2267
  #: languages/texts.php:474
 
2268
  msgid "ID"
2269
  msgstr ""
2270
 
@@ -2273,14 +2525,17 @@ msgid "Paste your wordpress shortcode here..."
2273
  msgstr ""
2274
 
2275
  #: languages/texts.php:476
 
2276
  msgid "Weight"
2277
  msgstr ""
2278
 
2279
  #: languages/texts.php:477
 
2280
  msgid "Post Type"
2281
  msgstr ""
2282
 
2283
  #: languages/texts.php:478
 
2284
  msgid "Post"
2285
  msgstr ""
2286
 
@@ -2289,90 +2544,112 @@ msgid "Number posts"
2289
  msgstr ""
2290
 
2291
  #: languages/texts.php:480
 
2292
  msgid "Category"
2293
  msgstr ""
2294
 
2295
  #: languages/texts.php:481
 
2296
  msgid "Author"
2297
  msgstr ""
2298
 
2299
  #: languages/texts.php:482
 
2300
  msgid "Include"
2301
  msgstr ""
2302
 
2303
  #: languages/texts.php:483
 
2304
  msgid "Exclude"
2305
  msgstr ""
2306
 
2307
  #: languages/texts.php:484
 
2308
  msgid "Status"
2309
  msgstr ""
2310
 
2311
  #: languages/texts.php:485
 
2312
  msgid "Future"
2313
  msgstr ""
2314
 
2315
  #: languages/texts.php:486
 
2316
  msgid "Draft"
2317
  msgstr ""
2318
 
2319
  #: languages/texts.php:487
 
2320
  msgid "Pending"
2321
  msgstr ""
2322
 
2323
  #: languages/texts.php:488
 
2324
  msgid "Private"
2325
  msgstr ""
2326
 
2327
  #: languages/texts.php:489
 
2328
  msgid "Trash"
2329
  msgstr ""
2330
 
2331
  #: languages/texts.php:490
 
2332
  msgid "Auto-Draft"
2333
  msgstr ""
2334
 
2335
  #: languages/texts.php:491
 
2336
  msgid "Inherit"
2337
  msgstr ""
2338
 
2339
  #: languages/texts.php:492
 
2340
  msgid "Meta Key"
2341
  msgstr ""
2342
 
2343
  #: languages/texts.php:493
 
2344
  msgid "Meta Value"
2345
  msgstr ""
2346
 
2347
  #: languages/texts.php:494
 
2348
  msgid "Modified"
2349
  msgstr ""
2350
 
2351
  #: languages/texts.php:495
 
2352
  msgid "Parent"
2353
  msgstr ""
2354
 
2355
  #: languages/texts.php:496
 
2356
  msgid "Comment Count"
2357
  msgstr ""
2358
 
2359
  #: languages/texts.php:497
 
2360
  msgid "Filter By"
2361
  msgstr ""
2362
 
2363
  #: languages/texts.php:498
 
2364
  msgid "Block"
2365
  msgstr ""
2366
 
2367
  #: languages/texts.php:499
 
2368
  msgid "Make it Global"
2369
  msgstr ""
2370
 
2371
  #: languages/texts.php:500
 
2372
  msgid "Save"
2373
  msgstr ""
2374
 
2375
  #: languages/texts.php:501
 
2376
  msgid "Blocks"
2377
  msgstr ""
2378
 
@@ -2381,18 +2658,22 @@ msgid "Saved Blocks"
2381
  msgstr ""
2382
 
2383
  #: languages/texts.php:503
 
2384
  msgid "Global Blocks"
2385
  msgstr ""
2386
 
2387
  #: languages/texts.php:504
 
2388
  msgid "Light"
2389
  msgstr ""
2390
 
2391
  #: languages/texts.php:505
 
2392
  msgid "Dark"
2393
  msgstr ""
2394
 
2395
  #: languages/texts.php:506
 
2396
  msgid "All Categories"
2397
  msgstr ""
2398
 
@@ -2401,6 +2682,7 @@ msgid "Enter Search Keyword"
2401
  msgstr ""
2402
 
2403
  #: languages/texts.php:508
 
2404
  msgid "Type to search"
2405
  msgstr ""
2406
 
@@ -2413,14 +2695,17 @@ msgid "An error happened while trying to display this block"
2413
  msgstr ""
2414
 
2415
  #: languages/texts.php:511
 
2416
  msgid "You can"
2417
  msgstr ""
2418
 
2419
  #: languages/texts.php:512
 
2420
  msgid "open an issue"
2421
  msgstr ""
2422
 
2423
  #: languages/texts.php:513
 
2424
  msgid "or"
2425
  msgstr ""
2426
 
@@ -2429,22 +2714,27 @@ msgid "remove this block"
2429
  msgstr ""
2430
 
2431
  #: languages/texts.php:515
 
2432
  msgid "Page Template"
2433
  msgstr ""
2434
 
2435
  #: languages/texts.php:516
 
2436
  msgid "Toggle Menu"
2437
  msgstr ""
2438
 
2439
  #: languages/texts.php:517
 
2440
  msgid "Make it Nofollow"
2441
  msgstr ""
2442
 
2443
  #: languages/texts.php:518
 
2444
  msgid "Dividers"
2445
  msgstr ""
2446
 
2447
  #: languages/texts.php:519
 
2448
  msgid "Arrangement"
2449
  msgstr ""
2450
 
@@ -2453,6 +2743,7 @@ msgid "Repeat"
2453
  msgstr ""
2454
 
2455
  #: languages/texts.php:521
 
2456
  msgid "Make it Hamburger"
2457
  msgstr ""
2458
 
@@ -2465,14 +2756,17 @@ msgid "Please select a menu"
2465
  msgstr ""
2466
 
2467
  #: languages/texts.php:524
 
2468
  msgid "Select a Menu"
2469
  msgstr ""
2470
 
2471
  #: languages/texts.php:525
 
2472
  msgid "in your WordPress admin"
2473
  msgstr ""
2474
 
2475
  #: languages/texts.php:526
 
2476
  msgid "Drawer Position"
2477
  msgstr ""
2478
 
@@ -2481,10 +2775,12 @@ msgid "anchor-name"
2481
  msgstr ""
2482
 
2483
  #: languages/texts.php:528
 
2484
  msgid "APPS"
2485
  msgstr ""
2486
 
2487
  #: languages/texts.php:529
 
2488
  msgid "It's a sample"
2489
  msgstr ""
2490
 
@@ -2495,3 +2791,2059 @@ msgstr ""
2495
  #: maintenance-mode.php:117
2496
  msgid "Edit Page"
2497
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2022 Brizy.io
2
+ # This file is distributed under the GPLv3.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Brizy 2.3.26\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/brizy\n"
7
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
  "Language-Team: LANGUAGE <LL@li.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2022-01-13T13:53:17+02:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
+ "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: brizy\n"
16
 
17
  #. Plugin Name of the plugin
125
 
126
  #: admin/form-entries.php:62
127
  #: languages/texts.php:314
128
+ #: public/editor-build/214-wp/texts.php:216
129
  msgid "Date"
130
  msgstr ""
131
 
168
  msgstr ""
169
 
170
  #: admin/form-entries.php:319
171
+ #: admin/popups/main.php:115
172
  #: admin/templates.php:245
173
  #: languages/texts.php:74
174
+ #: public/editor-build/214-wp/texts.php:47
175
  msgid "Add New"
176
  msgstr ""
177
 
211
  msgid "Layout."
212
  msgstr ""
213
 
214
+ #: admin/main.php:248
215
+ #: admin/settings.php:107
216
  #: admin/settings.php:108
 
217
  #: languages/texts.php:181
218
+ #: public/editor-build/214-wp/texts.php:683
219
  msgid "Settings"
220
  msgstr ""
221
 
222
+ #: admin/main.php:256
223
+ #: admin/settings.php:146
224
  msgid "Go Pro"
225
  msgstr ""
226
 
227
+ #: admin/main.php:315
228
  msgid "Submit & Deactivate"
229
  msgstr ""
230
 
231
+ #: admin/main.php:316
232
  msgid "Skip & Deactivate"
233
  msgstr ""
234
 
235
+ #: admin/main.php:430
236
+ #: admin/views/button.php:25
237
+ #: admin/views/button.php:44
238
+ #: compatibilities/gutenberg.php:98
239
+ #: compatibilities/gutenberg.php:112
240
  msgid "Edit with %s"
241
  msgstr ""
242
 
243
+ #: admin/main.php:541
244
  msgid "Importing Brizy post &#8220;%s&#8221; will be skipped due to incompatible version: %s "
245
  msgstr ""
246
 
247
+ #: admin/membership/membership.php:64
248
+ #: editor/post.php:627
249
+ msgid "Default"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
250
  msgstr ""
251
 
252
+ #: admin/membership/membership.php:68
253
+ msgid "Not Logged"
254
  msgstr ""
255
 
256
+ #: admin/membership/membership.php:72
257
+ #: admin/views/settings/maintenance.php:26
258
+ msgid "Logged In"
259
  msgstr ""
260
 
261
+ #: admin/membership/membership.php:79
262
+ msgid "View Page By Roles"
263
  msgstr ""
264
 
265
+ #: admin/membership/membership.php:89
266
+ msgid "View Page As %s"
267
  msgstr ""
268
 
269
  #: admin/network-settings.php:82
270
+ #: admin/settings.php:302
271
  msgid "Full Access"
272
  msgstr ""
273
 
274
+ #: admin/popups/main.php:111
 
 
 
 
 
275
  msgctxt "post type general name"
276
  msgid "Popups"
277
  msgstr ""
278
 
279
+ #: admin/popups/main.php:112
280
  msgctxt "post type singular name"
281
  msgid "Popup"
282
  msgstr ""
283
 
284
+ #: admin/popups/main.php:113
285
  msgctxt "admin menu"
286
  msgid "Popups"
287
  msgstr ""
288
 
289
+ #: admin/popups/main.php:114
290
  msgctxt "add new on admin bar"
291
  msgid "Popup"
292
  msgstr ""
293
 
294
+ #: admin/popups/main.php:116
295
  msgid "Add New Popup"
296
  msgstr ""
297
 
298
+ #: admin/popups/main.php:117
299
  msgid "New Popup"
300
  msgstr ""
301
 
302
+ #: admin/popups/main.php:118
303
  msgid "Edit Popup"
304
  msgstr ""
305
 
306
+ #: admin/popups/main.php:119
307
  msgid "View Popup"
308
  msgstr ""
309
 
310
+ #: admin/popups/main.php:120
311
+ #: admin/popups/main.php:134
312
+ #: public/editor-build/214-wp/texts.php:559
313
  msgid "Popups"
314
  msgstr ""
315
 
316
+ #: admin/popups/main.php:121
317
  msgid "Search Popups"
318
  msgstr ""
319
 
320
+ #: admin/popups/main.php:122
321
  msgid "Parent Popups:"
322
  msgstr ""
323
 
324
+ #: admin/popups/main.php:123
325
  msgid "No Popups found."
326
  msgstr ""
327
 
328
+ #: admin/popups/main.php:124
329
  msgid "No Popups found in Trash."
330
  msgstr ""
331
 
332
+ #: admin/popups/main.php:125
333
  msgid "Popup attributes:"
334
  msgstr ""
335
 
336
+ #: admin/rules/api.php:476
337
  msgid "From"
338
  msgstr ""
339
 
340
+ #: admin/rules/api.php:488
341
  msgid "From any child of"
342
  msgstr ""
343
 
344
+ #: admin/rules/api.php:548
345
  msgid "Specific"
346
  msgstr ""
347
 
348
+ #: admin/rules/api.php:558
349
  msgid "Any child of"
350
  msgstr ""
351
 
352
+ #: admin/settings.php:129
353
  msgid "Get Help"
354
  msgstr ""
355
 
356
+ #: admin/settings.php:158
357
  msgid "General"
358
  msgstr ""
359
 
360
+ #: admin/settings.php:164
361
  msgid "Role Manager"
362
  msgstr ""
363
 
364
+ #: admin/settings.php:170
365
  msgid "Maintenance Mode"
366
  msgstr ""
367
 
403
  msgstr ""
404
 
405
  #: admin/stories/main.php:48
406
+ #: public/editor-build/214-wp/texts.php:743
407
  msgid "Stories"
408
  msgstr ""
409
 
424
  msgstr ""
425
 
426
  #: admin/stories/main.php:60
427
+ #: public/editor-build/214-wp/texts.php:893
428
  msgid "stories"
429
  msgstr ""
430
 
433
  msgstr ""
434
 
435
  #: admin/templates.php:126
436
+ #: public/editor-build/214-wp/texts.php:74
437
  msgid "Archive"
438
  msgstr ""
439
 
440
  #: admin/templates.php:131
441
  #: languages/texts.php:56
442
+ #: public/editor-build/214-wp/texts.php:581
443
  msgid "Product"
444
  msgstr ""
445
 
515
  msgid "Unable to show the rule box."
516
  msgstr ""
517
 
518
+ #: admin/templates.php:899
519
  msgid "Unable to get the rule validator for this post type."
520
  msgstr ""
521
 
522
+ #: admin/templates.php:906
523
+ #: admin/templates.php:927
524
  msgid "Invalid data version."
525
  msgstr ""
526
 
527
+ #: admin/views/button.php:19
528
+ #: compatibilities/gutenberg.php:90
529
  msgid "Back to WordPress Editor"
530
  msgstr ""
531
 
 
 
 
 
 
 
 
 
 
 
532
  #: admin/views/dashboard-news.php:4
533
  msgid "News & Updates"
534
  msgstr ""
546
  msgstr ""
547
 
548
  #: admin/views/dashboard.php:12
549
+ #: public/editor-build/214-wp/texts.php:114
550
  msgid "Blog"
551
  msgstr ""
552
 
562
  msgid "Dismiss this notice"
563
  msgstr ""
564
 
565
+ #: admin/views/settings/general.php:60
566
  #: admin/views/settings/maintenance.php:76
567
  #: admin/views/settings/roles.php:26
568
  msgid "Save Changes"
588
  msgid "Who Can Access"
589
  msgstr ""
590
 
 
 
 
 
591
  #: admin/views/settings/maintenance.php:27
592
  #: languages/texts.php:140
593
+ #: public/editor-build/214-wp/texts.php:206
594
  msgid "Custom"
595
  msgstr ""
596
 
597
+ #: admin/views/settings/maintenance.php:33
598
+ #: public/editor-build/214-wp/texts.php:639
599
+ msgid "Roles"
600
+ msgstr ""
601
+
602
  #: admin/views/settings/maintenance.php:49
603
  msgid "Choose a Page"
604
  msgstr ""
615
  msgid "Whitelisted IP Addresses"
616
  msgstr ""
617
 
618
+ #: brizy.php:66
619
+ #: system-checks.php:37
620
  msgid "%1$s requires PHP version 5.6+, you currently running PHP %2$s. <b>%3$s IS NOT RUNNING.</b>"
621
  msgstr ""
622
 
623
+ #: brizy.php:83
624
+ msgid "%1$s failed to start. Please contact the support <a href=\"%s\">here</a>."
625
  msgstr ""
626
 
627
+ #: content/providers/free-provider.php:117
628
  msgid "%s comment"
629
  msgid_plural "%s comments"
630
  msgstr[0] ""
631
  msgstr[1] ""
632
 
633
+ #: content/providers/free-provider.php:153
634
  msgid "Please set a valid product"
635
  msgstr ""
636
 
637
+ #: editor.php:286
638
  msgid " Template"
639
  msgstr ""
640
 
641
+ #: editor.php:609
642
+ msgid "Original"
643
+ msgstr ""
644
+
645
  #: editor/asset/cleaner.php:86
646
  msgid "Every Ten Minutes"
647
  msgstr ""
650
  msgid "Bad request"
651
  msgstr ""
652
 
653
+ #: editor/block-screenshot-api.php:71
654
+ msgid "Invalid uid string"
655
  msgstr ""
656
 
657
+ #: editor/block-screenshot-api.php:81
658
+ msgid "Invalid image content"
659
  msgstr ""
660
 
661
  #: languages/texts.php:9
662
+ #: public/editor-build/214-wp/texts.php:656
663
  msgid "START BUILDING YOUR PAGE"
664
  msgstr ""
665
 
666
  #: languages/texts.php:10
667
+ #: public/editor-build/214-wp/texts.php:575
668
  msgid "Press the button above to add blocks"
669
  msgstr ""
670
 
671
  #: languages/texts.php:14
672
+ #: public/editor-build/214-wp/texts.php:658
673
  msgid "SWITCH TO DESKTOP"
674
  msgstr ""
675
 
676
  #: languages/texts.php:15
677
+ #: public/editor-build/214-wp/texts.php:757
678
  msgid "Switch to desktop to add blocks"
679
  msgstr ""
680
 
681
  #: languages/texts.php:21
682
+ #: public/editor-build/214-wp/texts.php:53
683
  msgid "Add a new block"
684
  msgstr ""
685
 
686
  #: languages/texts.php:22
687
+ #: public/editor-build/214-wp/texts.php:577
688
  msgid "Press the button to add blocks"
689
  msgstr ""
690
 
691
  #: languages/texts.php:29
692
+ #: public/editor-build/214-wp/texts.php:45
693
  msgid "Add Elements"
694
  msgstr ""
695
 
696
  #: languages/texts.php:30
697
+ #: public/editor-build/214-wp/texts.php:779
698
  msgid "Text"
699
  msgstr ""
700
 
701
  #: languages/texts.php:31
702
+ #: public/editor-build/214-wp/texts.php:134
703
  msgid "Button"
704
  msgstr ""
705
 
706
  #: languages/texts.php:32
707
+ #: public/editor-build/214-wp/texts.php:381
708
  msgid "Icon"
709
  msgstr ""
710
 
711
  #: languages/texts.php:33
712
+ #: public/editor-build/214-wp/texts.php:385
713
  msgid "Image"
714
  msgstr ""
715
 
716
  #: languages/texts.php:34
717
+ #: public/editor-build/214-wp/texts.php:845
718
  msgid "Video"
719
  msgstr ""
720
 
721
  #: languages/texts.php:35
722
+ #: public/editor-build/214-wp/texts.php:727
723
  msgid "Spacer"
724
  msgstr ""
725
 
726
  #: languages/texts.php:36
727
+ #: public/editor-build/214-wp/texts.php:425
728
  msgid "Line"
729
  msgstr ""
730
 
731
  #: languages/texts.php:37
732
+ #: public/editor-build/214-wp/texts.php:450
733
  msgid "Map"
734
  msgstr ""
735
 
736
  #: languages/texts.php:38
737
+ #: public/editor-build/214-wp/texts.php:256
738
  msgid "Embed"
739
  msgstr ""
740
 
741
  #: languages/texts.php:39
742
+ #: public/editor-build/214-wp/texts.php:326
743
  msgid "Form"
744
  msgstr ""
745
 
746
  #: languages/texts.php:40
747
+ #: public/editor-build/214-wp/texts.php:382
748
  msgid "Icon Box"
749
  msgstr ""
750
 
753
  msgstr ""
754
 
755
  #: languages/texts.php:42
756
+ #: public/editor-build/214-wp/texts.php:198
757
  msgid "Counter"
758
  msgstr ""
759
 
760
  #: languages/texts.php:43
761
+ #: public/editor-build/214-wp/texts.php:197
762
  msgid "Countdown"
763
  msgstr ""
764
 
765
  #: languages/texts.php:44
766
+ #: public/editor-build/214-wp/texts.php:768
767
  msgid "Tabs"
768
  msgstr ""
769
 
770
  #: languages/texts.php:45
771
+ #: public/editor-build/214-wp/texts.php:600
772
  msgid "Progress"
773
  msgstr ""
774
 
775
  #: languages/texts.php:46
776
+ #: public/editor-build/214-wp/texts.php:38
777
  msgid "Accordion"
778
  msgstr ""
779
 
780
  #: languages/texts.php:47
781
+ #: public/editor-build/214-wp/texts.php:648
782
  msgid "Row"
783
  msgstr ""
784
 
785
  #: languages/texts.php:48
786
+ #: public/editor-build/214-wp/texts.php:170
787
  msgid "Column"
788
  msgstr ""
789
 
790
  #: languages/texts.php:49
791
+ #: public/editor-build/214-wp/texts.php:649
792
  msgid "Rows"
793
  msgstr ""
794
 
795
  #: languages/texts.php:50
796
+ #: public/editor-build/214-wp/texts.php:171
797
  msgid "Columns"
798
  msgstr ""
799
 
800
  #: languages/texts.php:51
801
+ #: public/editor-build/214-wp/texts.php:58
802
  msgid "Add to cart"
803
  msgstr ""
804
 
805
  #: languages/texts.php:52
806
+ #: public/editor-build/214-wp/texts.php:149
807
  msgid "Categories"
808
  msgstr ""
809
 
810
  #: languages/texts.php:53
811
+ #: public/editor-build/214-wp/texts.php:419
812
  msgid "Layouts"
813
  msgstr ""
814
 
815
  #: languages/texts.php:54
816
  #: languages/texts.php:443
817
+ #: public/editor-build/214-wp/texts.php:888
818
  msgid "layouts"
819
  msgstr ""
820
 
821
  #: languages/texts.php:55
822
+ #: public/editor-build/214-wp/texts.php:887
823
  msgid "layout"
824
  msgstr ""
825
 
826
  #: languages/texts.php:57
827
+ #: public/editor-build/214-wp/texts.php:596
828
  msgid "Products"
829
  msgstr ""
830
 
831
  #: languages/texts.php:58
832
+ #: public/editor-build/214-wp/texts.php:691
833
  msgid "Shortcode"
834
  msgstr ""
835
 
836
  #: languages/texts.php:59
837
+ #: public/editor-build/214-wp/texts.php:461
838
  msgid "Menu"
839
  msgstr ""
840
 
843
  msgstr ""
844
 
845
  #: languages/texts.php:61
846
+ #: public/editor-build/214-wp/texts.php:571
847
  msgid "Posts"
848
  msgstr ""
849
 
850
  #: languages/texts.php:62
851
+ #: public/editor-build/214-wp/texts.php:75
852
  msgid "Archives"
853
  msgstr ""
854
 
857
  msgstr ""
858
 
859
  #: languages/texts.php:64
860
+ #: public/editor-build/214-wp/texts.php:535
861
  msgid "Pagination"
862
  msgstr ""
863
 
864
  #: languages/texts.php:65
865
+ #: public/editor-build/214-wp/texts.php:703
866
  msgid "Sidebar"
867
  msgstr ""
868
 
869
  #: languages/texts.php:67
870
+ #: public/editor-build/214-wp/texts.php:627
871
  msgid "Reorder Blocks"
872
  msgstr ""
873
 
874
  #: languages/texts.php:68
875
+ #: public/editor-build/214-wp/texts.php:240
876
  msgid "Drag to reorder"
877
  msgstr ""
878
 
879
  #: languages/texts.php:70
880
+ #: public/editor-build/214-wp/texts.php:748
881
  msgid "Styling"
882
  msgstr ""
883
 
890
  msgstr ""
891
 
892
  #: languages/texts.php:73
893
+ #: public/editor-build/214-wp/texts.php:56
894
  msgid "Add new option"
895
  msgstr ""
896
 
897
  #: languages/texts.php:75
898
+ #: public/editor-build/214-wp/texts.php:495
899
  msgid "New Style #%s"
900
  msgstr ""
901
 
902
  #: languages/texts.php:76
903
+ #: public/editor-build/214-wp/texts.php:183
904
  msgid "Copy"
905
  msgstr ""
906
 
907
  #: languages/texts.php:77
908
+ #: public/editor-build/214-wp/texts.php:541
909
  msgid "Paste"
910
  msgstr ""
911
 
912
  #: languages/texts.php:78
913
+ #: public/editor-build/214-wp/texts.php:543
914
  msgid "Paste Styles"
915
  msgstr ""
916
 
917
  #: languages/texts.php:80
918
+ #: public/editor-build/214-wp/texts.php:480
919
  msgid "Mobile view"
920
  msgstr ""
921
 
924
  msgstr ""
925
 
926
  #: languages/texts.php:82
927
+ #: public/editor-build/214-wp/texts.php:224
928
  msgid "Desktop"
929
  msgstr ""
930
 
931
  #: languages/texts.php:83
932
+ #: public/editor-build/214-wp/texts.php:767
933
  msgid "Tablet"
934
  msgstr ""
935
 
936
  #: languages/texts.php:84
937
+ #: public/editor-build/214-wp/texts.php:479
938
  msgid "Mobile"
939
  msgstr ""
940
 
941
  #: languages/texts.php:86
942
+ #: public/editor-build/214-wp/texts.php:482
943
  msgid "More"
944
  msgstr ""
945
 
952
  msgstr ""
953
 
954
  #: languages/texts.php:89
955
+ #: public/editor-build/214-wp/texts.php:555
956
  msgid "Plugin Settings"
957
  msgstr ""
958
 
961
  msgstr ""
962
 
963
  #: languages/texts.php:91
964
+ #: public/editor-build/214-wp/texts.php:299
965
  msgid "Featured Image"
966
  msgstr ""
967
 
970
  msgstr ""
971
 
972
  #: languages/texts.php:93
973
+ #: public/editor-build/214-wp/texts.php:831
974
  msgid "Upgrade to Pro"
975
  msgstr ""
976
 
979
  msgstr ""
980
 
981
  #: languages/texts.php:97
982
+ #: public/editor-build/214-wp/texts.php:825
983
  msgid "Update"
984
  msgstr ""
985
 
986
  #: languages/texts.php:98
987
+ #: public/editor-build/214-wp/texts.php:603
988
  msgid "Publish"
989
  msgstr ""
990
 
991
  #: languages/texts.php:101
992
+ #: public/editor-build/214-wp/texts.php:483
993
  msgid "More Settings"
994
  msgstr ""
995
 
996
  #: languages/texts.php:102
997
+ #: public/editor-build/214-wp/texts.php:61
998
  msgid "Advanced"
999
  msgstr ""
1000
 
1001
  #: languages/texts.php:103
1002
+ #: public/editor-build/214-wp/texts.php:701
1003
  msgid "Show on Desktop"
1004
  msgstr ""
1005
 
1006
  #: languages/texts.php:104
1007
+ #: public/editor-build/214-wp/texts.php:226
1008
  msgid "Disable on Mobile"
1009
  msgstr ""
1010
 
1011
  #: languages/texts.php:105
1012
+ #: public/editor-build/214-wp/texts.php:227
1013
  msgid "Disable on Tablet"
1014
  msgstr ""
1015
 
1016
  #: languages/texts.php:106
1017
+ #: public/editor-build/214-wp/texts.php:258
1018
  msgid "Enable on Mobile"
1019
  msgstr ""
1020
 
1021
  #: languages/texts.php:107
1022
+ #: public/editor-build/214-wp/texts.php:259
1023
  msgid "Enable on Tablet"
1024
  msgstr ""
1025
 
1028
  msgstr ""
1029
 
1030
  #: languages/texts.php:109
1031
+ #: public/editor-build/214-wp/texts.php:874
1032
  msgid "Z-index"
1033
  msgstr ""
1034
 
1037
  msgstr ""
1038
 
1039
  #: languages/texts.php:111
1040
+ #: public/editor-build/214-wp/texts.php:139
1041
  msgid "CSS Class"
1042
  msgstr ""
1043
 
1044
  #: languages/texts.php:112
1045
+ #: public/editor-build/214-wp/texts.php:209
1046
  msgid "Custom CSS"
1047
  msgstr ""
1048
 
1049
  #: languages/texts.php:116
1050
+ #: public/editor-build/214-wp/texts.php:717
1051
  msgid "Slider"
1052
  msgstr ""
1053
 
1054
  #: languages/texts.php:118
1055
+ #: public/editor-build/214-wp/texts.php:448
1056
  msgid "Make it a Slider"
1057
  msgstr ""
1058
 
1059
  #: languages/texts.php:119
1060
+ #: public/editor-build/214-wp/texts.php:88
1061
  msgid "Auto Play"
1062
  msgstr ""
1063
 
1064
  #: languages/texts.php:120
1065
+ #: public/editor-build/214-wp/texts.php:733
1066
  msgid "Speed"
1067
  msgstr ""
1068
 
1069
  #: languages/texts.php:121
1070
+ #: public/editor-build/214-wp/texts.php:493
1071
  msgid "Navigation"
1072
  msgstr ""
1073
 
1074
  #: languages/texts.php:122
1075
+ #: public/editor-build/214-wp/texts.php:237
1076
  msgid "Dots"
1077
  msgstr ""
1078
 
1079
  #: languages/texts.php:123
1080
+ #: public/editor-build/214-wp/texts.php:499
1081
  msgid "None"
1082
  msgstr ""
1083
 
1084
  #: languages/texts.php:124
1085
+ #: public/editor-build/214-wp/texts.php:159
1086
  msgid "Circle"
1087
  msgstr ""
1088
 
1089
  #: languages/texts.php:125
1090
+ #: public/editor-build/214-wp/texts.php:225
1091
  msgid "Diamond"
1092
  msgstr ""
1093
 
1094
  #: languages/texts.php:126
1095
+ #: public/editor-build/214-wp/texts.php:735
1096
  msgid "Square"
1097
  msgstr ""
1098
 
1099
  #: languages/texts.php:127
1100
+ #: public/editor-build/214-wp/texts.php:78
1101
  msgid "Arrows"
1102
  msgstr ""
1103
 
1104
  #: languages/texts.php:128
1105
+ #: public/editor-build/214-wp/texts.php:79
1106
  msgid "Arrows Spacing"
1107
  msgstr ""
1108
 
1109
  #: languages/texts.php:129
1110
+ #: public/editor-build/214-wp/texts.php:785
1111
  msgid "Thin"
1112
  msgstr ""
1113
 
1114
  #: languages/texts.php:130
1115
+ #: public/editor-build/214-wp/texts.php:366
1116
  msgid "Heavy"
1117
  msgstr ""
1118
 
1119
  #: languages/texts.php:131
1120
+ #: public/editor-build/214-wp/texts.php:772
1121
  msgid "Tail"
1122
  msgstr ""
1123
 
1124
  #: languages/texts.php:132
1125
+ #: public/editor-build/214-wp/texts.php:647
1126
  msgid "Round"
1127
  msgstr ""
1128
 
1129
  #: languages/texts.php:133
1130
+ #: public/editor-build/214-wp/texts.php:522
1131
  msgid "Outline"
1132
  msgstr ""
1133
 
1134
  #: languages/texts.php:135
1135
+ #: public/editor-build/214-wp/texts.php:337
1136
  msgid "Full Height"
1137
  msgstr ""
1138
 
1139
  #: languages/texts.php:136
1140
+ #: public/editor-build/214-wp/texts.php:857
1141
  msgid "Width"
1142
  msgstr ""
1143
 
1144
  #: languages/texts.php:137
1145
+ #: public/editor-build/214-wp/texts.php:367
1146
  msgid "Height"
1147
  msgstr ""
1148
 
1149
  #: languages/texts.php:138
1150
+ #: public/editor-build/214-wp/texts.php:124
1151
  msgid "Boxed"
1152
  msgstr ""
1153
 
1154
  #: languages/texts.php:139
1155
+ #: public/editor-build/214-wp/texts.php:87
1156
  msgid "Auto"
1157
  msgstr ""
1158
 
1159
  #: languages/texts.php:141
1160
+ #: public/editor-build/214-wp/texts.php:336
1161
  msgid "Full"
1162
  msgstr ""
1163
 
1164
  #: languages/texts.php:142
1165
+ #: public/editor-build/214-wp/texts.php:379
1166
  msgid "Hover Transition"
1167
  msgstr ""
1168
 
1169
  #: languages/texts.php:144
1170
+ #: public/editor-build/214-wp/texts.php:145
1171
  msgid "Carousel"
1172
  msgstr ""
1173
 
1176
  msgstr ""
1177
 
1178
  #: languages/texts.php:148
1179
+ #: public/editor-build/214-wp/texts.php:478
1180
  msgid "Missing Element"
1181
  msgstr ""
1182
 
1183
  #: languages/texts.php:149
1184
+ #: public/editor-build/214-wp/texts.php:192
1185
  msgid "Could not find"
1186
  msgstr ""
1187
 
1188
  #: languages/texts.php:150
1189
+ #: public/editor-build/214-wp/texts.php:882
1190
  msgid "component"
1191
  msgstr ""
1192
 
1193
  #: languages/texts.php:153
1194
+ #: public/editor-build/214-wp/texts.php:49
1195
  msgid "Add New Column"
1196
  msgstr ""
1197
 
1198
  #: languages/texts.php:155
1199
+ #: public/editor-build/214-wp/texts.php:99
1200
  msgid "Background"
1201
  msgstr ""
1202
 
1203
  #: languages/texts.php:156
1204
+ #: public/editor-build/214-wp/texts.php:104
1205
  msgid "Bg Size"
1206
  msgstr ""
1207
 
1208
  #: languages/texts.php:157
1209
+ #: public/editor-build/214-wp/texts.php:537
1210
  msgid "Parallax"
1211
  msgstr ""
1212
 
1213
  #: languages/texts.php:158
1214
+ #: public/editor-build/214-wp/texts.php:311
1215
  msgid "Fixed"
1216
  msgstr ""
1217
 
1218
  #: languages/texts.php:159
1219
+ #: public/editor-build/214-wp/texts.php:73
1220
  msgid "Animated"
1221
  msgstr ""
1222
 
1223
  #: languages/texts.php:160
1224
+ #: public/editor-build/214-wp/texts.php:741
1225
  msgid "Sticky"
1226
  msgstr ""
1227
 
1228
  #: languages/texts.php:161
1229
+ #: public/editor-build/214-wp/texts.php:816
1230
  msgid "URL"
1231
  msgstr ""
1232
 
1233
  #: languages/texts.php:162
1234
+ #: public/editor-build/214-wp/texts.php:869
1235
  msgid "YouTube or Vimeo"
1236
  msgstr ""
1237
 
1248
  msgstr ""
1249
 
1250
  #: languages/texts.php:166
1251
+ #: public/editor-build/214-wp/texts.php:439
1252
  msgid "Loop"
1253
  msgstr ""
1254
 
1255
  #: languages/texts.php:167
1256
+ #: public/editor-build/214-wp/texts.php:60
1257
  msgid "Address"
1258
  msgstr ""
1259
 
1260
  #: languages/texts.php:168
1261
+ #: public/editor-build/214-wp/texts.php:264
1262
  msgid "Enter address"
1263
  msgstr ""
1264
 
1265
  #: languages/texts.php:169
1266
+ #: public/editor-build/214-wp/texts.php:875
1267
  msgid "Zoom"
1268
  msgstr ""
1269
 
1270
  #: languages/texts.php:171
1271
+ #: public/editor-build/214-wp/texts.php:169
1272
  msgid "Colors"
1273
  msgstr ""
1274
 
1275
  #: languages/texts.php:172
1276
+ #: public/editor-build/214-wp/texts.php:168
1277
  msgid "Color"
1278
  msgstr ""
1279
 
1280
  #: languages/texts.php:173
1281
+ #: public/editor-build/214-wp/texts.php:524
1282
  msgid "Overlay"
1283
  msgstr ""
1284
 
1285
  #: languages/texts.php:174
1286
+ #: public/editor-build/214-wp/texts.php:116
1287
  msgid "Border"
1288
  msgstr ""
1289
 
1290
  #: languages/texts.php:175
1291
+ #: public/editor-build/214-wp/texts.php:719
1292
  msgid "Solid"
1293
  msgstr ""
1294
 
1295
  #: languages/texts.php:176
1296
+ #: public/editor-build/214-wp/texts.php:353
1297
  msgid "Gradient"
1298
  msgstr ""
1299
 
1300
  #: languages/texts.php:177
1301
+ #: public/editor-build/214-wp/texts.php:427
1302
  msgid "Linear"
1303
  msgstr ""
1304
 
1305
  #: languages/texts.php:178
1306
+ #: public/editor-build/214-wp/texts.php:607
1307
  msgid "Radial"
1308
  msgstr ""
1309
 
1310
  #: languages/texts.php:180
1311
+ #: public/editor-build/214-wp/texts.php:246
1312
  msgid "Dynamic Content"
1313
  msgstr ""
1314
 
1315
  #: languages/texts.php:183
1316
+ #: public/editor-build/214-wp/texts.php:242
1317
  msgid "Duplicate"
1318
  msgstr ""
1319
 
1320
  #: languages/texts.php:184
1321
+ #: public/editor-build/214-wp/texts.php:220
1322
  msgid "Delete"
1323
  msgstr ""
1324
 
1325
  #: languages/texts.php:186
1326
+ #: public/editor-build/214-wp/texts.php:266
1327
  msgid "Entrance Animation"
1328
  msgstr ""
1329
 
1330
  #: languages/texts.php:187
1331
+ #: public/editor-build/214-wp/texts.php:244
1332
  msgid "Duration"
1333
  msgstr ""
1334
 
1335
  #: languages/texts.php:188
1336
+ #: public/editor-build/214-wp/texts.php:219
1337
  msgid "Delay"
1338
  msgstr ""
1339
 
1340
  #: languages/texts.php:189
1341
+ #: public/editor-build/214-wp/texts.php:118
1342
  msgid "Bounce"
1343
  msgstr ""
1344
 
1345
  #: languages/texts.php:190
1346
+ #: public/editor-build/214-wp/texts.php:312
1347
  msgid "Flash"
1348
  msgstr ""
1349
 
1350
  #: languages/texts.php:191
1351
+ #: public/editor-build/214-wp/texts.php:605
1352
  msgid "Pulse"
1353
  msgstr ""
1354
 
1355
  #: languages/texts.php:192
1356
+ #: public/editor-build/214-wp/texts.php:650
1357
  msgid "RubberBand"
1358
  msgstr ""
1359
 
1360
  #: languages/texts.php:193
1361
+ #: public/editor-build/214-wp/texts.php:685
1362
  msgid "Shake"
1363
  msgstr ""
1364
 
1365
  #: languages/texts.php:194
1366
+ #: public/editor-build/214-wp/texts.php:755
1367
  msgid "Swing"
1368
  msgstr ""
1369
 
1370
  #: languages/texts.php:195
1371
+ #: public/editor-build/214-wp/texts.php:770
1372
  msgid "Tada"
1373
  msgstr ""
1374
 
1375
  #: languages/texts.php:196
1376
+ #: public/editor-build/214-wp/texts.php:858
1377
  msgid "Wobble"
1378
  msgstr ""
1379
 
1380
  #: languages/texts.php:197
1381
+ #: public/editor-build/214-wp/texts.php:412
1382
  msgid "Jello"
1383
  msgstr ""
1384
 
1385
  #: languages/texts.php:198
1386
+ #: public/editor-build/214-wp/texts.php:119
1387
  msgid "BounceIn"
1388
  msgstr ""
1389
 
1390
  #: languages/texts.php:199
1391
+ #: public/editor-build/214-wp/texts.php:120
1392
  msgid "BounceInDown"
1393
  msgstr ""
1394
 
1395
  #: languages/texts.php:200
1396
+ #: public/editor-build/214-wp/texts.php:121
1397
  msgid "BounceInLeft"
1398
  msgstr ""
1399
 
1400
  #: languages/texts.php:201
1401
+ #: public/editor-build/214-wp/texts.php:122
1402
  msgid "BounceInRight"
1403
  msgstr ""
1404
 
1405
  #: languages/texts.php:202
1406
+ #: public/editor-build/214-wp/texts.php:123
1407
  msgid "BounceInUp"
1408
  msgstr ""
1409
 
1428
  msgstr ""
1429
 
1430
  #: languages/texts.php:208
1431
+ #: public/editor-build/214-wp/texts.php:286
1432
  msgid "FadeIn"
1433
  msgstr ""
1434
 
1435
  #: languages/texts.php:209
1436
+ #: public/editor-build/214-wp/texts.php:287
1437
  msgid "FadeInDown"
1438
  msgstr ""
1439
 
1440
  #: languages/texts.php:210
1441
+ #: public/editor-build/214-wp/texts.php:288
1442
  msgid "FadeInDownBig"
1443
  msgstr ""
1444
 
1445
  #: languages/texts.php:211
1446
+ #: public/editor-build/214-wp/texts.php:289
1447
  msgid "FadeInLeft"
1448
  msgstr ""
1449
 
1450
  #: languages/texts.php:212
1451
+ #: public/editor-build/214-wp/texts.php:290
1452
  msgid "FadeInLeftBig"
1453
  msgstr ""
1454
 
1455
  #: languages/texts.php:213
1456
+ #: public/editor-build/214-wp/texts.php:291
1457
  msgid "FadeInRight"
1458
  msgstr ""
1459
 
1460
  #: languages/texts.php:214
1461
+ #: public/editor-build/214-wp/texts.php:292
1462
  msgid "FadeInRightBig"
1463
  msgstr ""
1464
 
1465
  #: languages/texts.php:215
1466
+ #: public/editor-build/214-wp/texts.php:293
1467
  msgid "FadeInUp"
1468
  msgstr ""
1469
 
1470
  #: languages/texts.php:216
1471
+ #: public/editor-build/214-wp/texts.php:294
1472
  msgid "FadeInUpBig"
1473
  msgstr ""
1474
 
1509
  msgstr ""
1510
 
1511
  #: languages/texts.php:226
1512
+ #: public/editor-build/214-wp/texts.php:313
1513
  msgid "Flip"
1514
  msgstr ""
1515
 
1516
  #: languages/texts.php:227
1517
+ #: public/editor-build/214-wp/texts.php:314
1518
  msgid "FlipInX"
1519
  msgstr ""
1520
 
1521
  #: languages/texts.php:228
1522
+ #: public/editor-build/214-wp/texts.php:315
1523
  msgid "FlipInY"
1524
  msgstr ""
1525
 
1532
  msgstr ""
1533
 
1534
  #: languages/texts.php:231
1535
+ #: public/editor-build/214-wp/texts.php:423
1536
  msgid "LightSpeedIn"
1537
  msgstr ""
1538
 
1539
  #: languages/texts.php:232
1540
+ #: public/editor-build/214-wp/texts.php:642
1541
  msgid "RotateIn"
1542
  msgstr ""
1543
 
1544
  #: languages/texts.php:233
1545
+ #: public/editor-build/214-wp/texts.php:643
1546
  msgid "RotateInDownLeft"
1547
  msgstr ""
1548
 
1549
  #: languages/texts.php:234
1550
+ #: public/editor-build/214-wp/texts.php:644
1551
  msgid "RotateInDownRight"
1552
  msgstr ""
1553
 
1554
  #: languages/texts.php:235
1555
+ #: public/editor-build/214-wp/texts.php:645
1556
  msgid "RotateInUpLeft"
1557
  msgstr ""
1558
 
1559
  #: languages/texts.php:236
1560
+ #: public/editor-build/214-wp/texts.php:646
1561
  msgid "RotateInUpRight"
1562
  msgstr ""
1563
 
1582
  msgstr ""
1583
 
1584
  #: languages/texts.php:242
1585
+ #: public/editor-build/214-wp/texts.php:716
1586
  msgid "SlideInUp"
1587
  msgstr ""
1588
 
1589
  #: languages/texts.php:243
1590
+ #: public/editor-build/214-wp/texts.php:713
1591
  msgid "SlideInDown"
1592
  msgstr ""
1593
 
1594
  #: languages/texts.php:244
1595
+ #: public/editor-build/214-wp/texts.php:714
1596
  msgid "SlideInLeft"
1597
  msgstr ""
1598
 
1599
  #: languages/texts.php:245
1600
+ #: public/editor-build/214-wp/texts.php:715
1601
  msgid "SlideInRight"
1602
  msgstr ""
1603
 
1618
  msgstr ""
1619
 
1620
  #: languages/texts.php:250
1621
+ #: public/editor-build/214-wp/texts.php:876
1622
  msgid "ZoomIn"
1623
  msgstr ""
1624
 
1625
  #: languages/texts.php:251
1626
+ #: public/editor-build/214-wp/texts.php:877
1627
  msgid "ZoomInDown"
1628
  msgstr ""
1629
 
1630
  #: languages/texts.php:252
1631
+ #: public/editor-build/214-wp/texts.php:878
1632
  msgid "ZoomInLeft"
1633
  msgstr ""
1634
 
1635
  #: languages/texts.php:253
1636
+ #: public/editor-build/214-wp/texts.php:879
1637
  msgid "ZoomInRight"
1638
  msgstr ""
1639
 
1640
  #: languages/texts.php:254
1641
+ #: public/editor-build/214-wp/texts.php:880
1642
  msgid "ZoomInUp"
1643
  msgstr ""
1644
 
1667
  msgstr ""
1668
 
1669
  #: languages/texts.php:261
1670
+ #: public/editor-build/214-wp/texts.php:411
1671
  msgid "JackInTheBox"
1672
  msgstr ""
1673
 
1674
  #: languages/texts.php:262
1675
+ #: public/editor-build/214-wp/texts.php:640
1676
  msgid "RollIn"
1677
  msgstr ""
1678
 
1681
  msgstr ""
1682
 
1683
  #: languages/texts.php:265
1684
+ #: public/editor-build/214-wp/texts.php:179
1685
  msgid "Content"
1686
  msgstr ""
1687
 
1688
  #: languages/texts.php:266
1689
+ #: public/editor-build/214-wp/texts.php:62
1690
  msgid "Align"
1691
  msgstr ""
1692
 
1693
  #: languages/texts.php:267
1694
+ #: public/editor-build/214-wp/texts.php:562
1695
  msgid "Position"
1696
  msgstr ""
1697
 
1698
  #: languages/texts.php:269
1699
+ #: public/editor-build/214-wp/texts.php:813
1700
  msgid "Typography"
1701
  msgstr ""
1702
 
1703
  #: languages/texts.php:270
1704
+ #: public/editor-build/214-wp/texts.php:318
1705
  msgid "Font Family"
1706
  msgstr ""
1707
 
1708
  #: languages/texts.php:271
1709
+ #: public/editor-build/214-wp/texts.php:705
1710
  msgid "Size"
1711
  msgstr ""
1712
 
1713
  #: languages/texts.php:272
1714
+ #: public/editor-build/214-wp/texts.php:426
1715
  msgid "Line Hgt."
1716
  msgstr ""
1717
 
1718
  #: languages/texts.php:273
1719
+ #: public/editor-build/214-wp/texts.php:421
1720
  msgid "Letter Sp."
1721
  msgstr ""
1722
 
1723
  #: languages/texts.php:274
1724
+ #: public/editor-build/214-wp/texts.php:431
1725
  msgid "List"
1726
  msgstr ""
1727
 
1728
  #: languages/texts.php:275
1729
+ #: public/editor-build/214-wp/texts.php:115
1730
  msgid "Bold"
1731
  msgstr ""
1732
 
1733
  #: languages/texts.php:276
1734
+ #: public/editor-build/214-wp/texts.php:409
1735
  msgid "Italic"
1736
  msgstr ""
1737
 
1738
  #: languages/texts.php:277
1739
+ #: public/editor-build/214-wp/texts.php:344
1740
  msgid "Gap Above"
1741
  msgstr ""
1742
 
1743
  #: languages/texts.php:278
1744
+ #: public/editor-build/214-wp/texts.php:345
1745
  msgid "Gap Below"
1746
  msgstr ""
1747
 
1748
  #: languages/texts.php:279
1749
+ #: public/editor-build/214-wp/texts.php:361
1750
  msgid "HTML Tag"
1751
  msgstr ""
1752
 
1753
  #: languages/texts.php:280
1754
+ #: public/editor-build/214-wp/texts.php:526
1755
  msgid "P"
1756
  msgstr ""
1757
 
1758
  #: languages/texts.php:281
1759
+ #: public/editor-build/214-wp/texts.php:355
1760
  msgid "H1"
1761
  msgstr ""
1762
 
1763
  #: languages/texts.php:282
1764
+ #: public/editor-build/214-wp/texts.php:356
1765
  msgid "H2"
1766
  msgstr ""
1767
 
1768
  #: languages/texts.php:283
1769
+ #: public/editor-build/214-wp/texts.php:357
1770
  msgid "H3"
1771
  msgstr ""
1772
 
1773
  #: languages/texts.php:284
1774
+ #: public/editor-build/214-wp/texts.php:358
1775
  msgid "H4"
1776
  msgstr ""
1777
 
1778
  #: languages/texts.php:285
1779
+ #: public/editor-build/214-wp/texts.php:359
1780
  msgid "H5"
1781
  msgstr ""
1782
 
1783
  #: languages/texts.php:286
1784
+ #: public/editor-build/214-wp/texts.php:360
1785
  msgid "H6"
1786
  msgstr ""
1787
 
1788
  #: languages/texts.php:287
1789
+ #: public/editor-build/214-wp/texts.php:527
1790
  msgid "PRE"
1791
  msgstr ""
1792
 
1793
  #: languages/texts.php:288
1794
+ #: public/editor-build/214-wp/texts.php:249
1795
  msgid "Editable Text"
1796
  msgstr ""
1797
 
1798
  #: languages/texts.php:290
1799
+ #: public/editor-build/214-wp/texts.php:428
1800
  msgid "Link"
1801
  msgstr ""
1802
 
1805
  msgstr ""
1806
 
1807
  #: languages/texts.php:292
1808
+ #: public/editor-build/214-wp/texts.php:429
1809
  msgid "Link to"
1810
  msgstr ""
1811
 
1812
  #: languages/texts.php:293
1813
+ #: public/editor-build/214-wp/texts.php:516
1814
  msgid "Open In New Tab"
1815
  msgstr ""
1816
 
1817
  #: languages/texts.php:296
1818
+ #: public/editor-build/214-wp/texts.php:528
1819
  msgid "Padding"
1820
  msgstr ""
1821
 
1822
  #: languages/texts.php:297
1823
+ #: public/editor-build/214-wp/texts.php:451
1824
  msgid "Margin"
1825
  msgstr ""
1826
 
1827
  #: languages/texts.php:298
1828
+ #: public/editor-build/214-wp/texts.php:184
1829
  msgid "Corner"
1830
  msgstr ""
1831
 
1832
  #: languages/texts.php:299
1833
+ #: public/editor-build/214-wp/texts.php:306
1834
  msgid "Fill"
1835
  msgstr ""
1836
 
1837
  #: languages/texts.php:300
1838
+ #: public/editor-build/214-wp/texts.php:728
1839
  msgid "Spacing"
1840
  msgstr ""
1841
 
1842
  #: languages/texts.php:303
1843
+ #: public/editor-build/214-wp/texts.php:684
1844
  msgid "Shadow"
1845
  msgstr ""
1846
 
1847
  #: languages/texts.php:306
1848
+ #: public/editor-build/214-wp/texts.php:500
1849
  msgid "Normal"
1850
  msgstr ""
1851
 
1852
  #: languages/texts.php:307
1853
+ #: public/editor-build/214-wp/texts.php:378
1854
  msgid "Hover"
1855
  msgstr ""
1856
 
1857
  #: languages/texts.php:310
1858
+ #: public/editor-build/214-wp/texts.php:636
1859
  msgid "Reverse Columns"
1860
  msgstr ""
1861
 
1862
  #: languages/texts.php:315
1863
+ #: public/editor-build/214-wp/texts.php:376
1864
  msgid "Hour"
1865
  msgstr ""
1866
 
1867
  #: languages/texts.php:316
1868
+ #: public/editor-build/214-wp/texts.php:477
1869
  msgid "Minutes"
1870
  msgstr ""
1871
 
1872
  #: languages/texts.php:317
1873
+ #: public/editor-build/214-wp/texts.php:790
1874
  msgid "Time Zone"
1875
  msgstr ""
1876
 
1877
  #: languages/texts.php:318
1878
+ #: public/editor-build/214-wp/texts.php:21
1879
  msgid "- 11:00 (Niue)"
1880
  msgstr ""
1881
 
1882
  #: languages/texts.php:319
1883
+ #: public/editor-build/214-wp/texts.php:20
1884
  msgid "- 10:00 (Honolulu, Papeete)"
1885
  msgstr ""
1886
 
1887
  #: languages/texts.php:320
1888
+ #: public/editor-build/214-wp/texts.php:30
1889
  msgid "- 9:00 (Anchorage)"
1890
  msgstr ""
1891
 
1892
  #: languages/texts.php:321
1893
+ #: public/editor-build/214-wp/texts.php:29
1894
  msgid "- 8:00 (Los Angeles)"
1895
  msgstr ""
1896
 
1897
  #: languages/texts.php:322
1898
+ #: public/editor-build/214-wp/texts.php:28
1899
  msgid "- 7:00 (Denver, Phoenix)"
1900
  msgstr ""
1901
 
1902
  #: languages/texts.php:323
1903
+ #: public/editor-build/214-wp/texts.php:27
1904
  msgid "- 6:00 (Chicago, Dallas)"
1905
  msgstr ""
1906
 
1907
  #: languages/texts.php:324
1908
+ #: public/editor-build/214-wp/texts.php:26
1909
  msgid "- 5:00 (New York, Miami)"
1910
  msgstr ""
1911
 
1912
  #: languages/texts.php:325
1913
+ #: public/editor-build/214-wp/texts.php:25
1914
  msgid "- 4:00 (Halifax, Manaus)"
1915
  msgstr ""
1916
 
1917
  #: languages/texts.php:326
1918
+ #: public/editor-build/214-wp/texts.php:24
1919
  msgid "- 3:00 (Brasilia, Santiago)"
1920
  msgstr ""
1921
 
1922
  #: languages/texts.php:327
1923
+ #: public/editor-build/214-wp/texts.php:23
1924
  msgid "- 2:00 (Noronha)"
1925
  msgstr ""
1926
 
1927
  #: languages/texts.php:328
1928
+ #: public/editor-build/214-wp/texts.php:22
1929
  msgid "- 1:00 (Cape Verde)"
1930
  msgstr ""
1931
 
1932
  #: languages/texts.php:329
1933
+ #: public/editor-build/214-wp/texts.php:31
1934
  msgid "00:00 (London, Dublin)"
1935
  msgstr ""
1936
 
1937
  #: languages/texts.php:330
1938
+ #: public/editor-build/214-wp/texts.php:11
1939
  msgid "+ 1:00 (Berlin, Paris)"
1940
  msgstr ""
1941
 
1942
  #: languages/texts.php:331
1943
+ #: public/editor-build/214-wp/texts.php:12
1944
  msgid "+ 2:00 (Athens, Istanbul)"
1945
  msgstr ""
1946
 
1947
  #: languages/texts.php:332
1948
+ #: public/editor-build/214-wp/texts.php:13
1949
  msgid "+ 3:00 (Moscow, Baghdad)"
1950
  msgstr ""
1951
 
1952
  #: languages/texts.php:333
1953
+ #: public/editor-build/214-wp/texts.php:14
1954
  msgid "+ 4:00 (Dubai, Baku)"
1955
  msgstr ""
1956
 
1957
  #: languages/texts.php:334
1958
+ #: public/editor-build/214-wp/texts.php:15
1959
  msgid "+ 5:00 (Yekaterinburg)"
1960
  msgstr ""
1961
 
1964
  msgstr ""
1965
 
1966
  #: languages/texts.php:336
1967
+ #: public/editor-build/214-wp/texts.php:17
1968
  msgid "+ 7:00 (Bangkok, Jakarta)"
1969
  msgstr ""
1970
 
1971
  #: languages/texts.php:337
1972
+ #: public/editor-build/214-wp/texts.php:18
1973
  msgid "+ 8:00 (Singapore, Beijing)"
1974
  msgstr ""
1975
 
1976
  #: languages/texts.php:338
1977
+ #: public/editor-build/214-wp/texts.php:19
1978
  msgid "+ 9:00 (Tokyo, Seoul)"
1979
  msgstr ""
1980
 
1983
  msgstr ""
1984
 
1985
  #: languages/texts.php:340
1986
+ #: public/editor-build/214-wp/texts.php:9
1987
  msgid "+ 11:00 (Ponape)"
1988
  msgstr ""
1989
 
1990
  #: languages/texts.php:341
1991
+ #: public/editor-build/214-wp/texts.php:10
1992
  msgid "+ 12:00 (Auckland)"
1993
  msgstr ""
1994
 
1995
  #: languages/texts.php:342
1996
+ #: public/editor-build/214-wp/texts.php:415
1997
  msgid "Language"
1998
  msgstr ""
1999
 
2000
  #: languages/texts.php:343
2001
+ #: public/editor-build/214-wp/texts.php:346
2002
  msgid "German"
2003
  msgstr ""
2004
 
2005
  #: languages/texts.php:344
2006
+ #: public/editor-build/214-wp/texts.php:263
2007
  msgid "English"
2008
  msgstr ""
2009
 
2010
  #: languages/texts.php:345
2011
+ #: public/editor-build/214-wp/texts.php:730
2012
  msgid "Spanish"
2013
  msgstr ""
2014
 
2015
  #: languages/texts.php:346
2016
+ #: public/editor-build/214-wp/texts.php:333
2017
  msgid "French"
2018
  msgstr ""
2019
 
2020
  #: languages/texts.php:347
2021
+ #: public/editor-build/214-wp/texts.php:408
2022
  msgid "Italian"
2023
  msgstr ""
2024
 
2025
  #: languages/texts.php:348
2026
+ #: public/editor-build/214-wp/texts.php:245
2027
  msgid "Dutch"
2028
  msgstr ""
2029
 
2030
  #: languages/texts.php:349
2031
+ #: public/editor-build/214-wp/texts.php:651
2032
  msgid "Russian"
2033
  msgstr ""
2034
 
2035
  #: languages/texts.php:351
2036
+ #: public/editor-build/214-wp/texts.php:738
2037
  msgid "Start"
2038
  msgstr ""
2039
 
2040
  #: languages/texts.php:352
2041
+ #: public/editor-build/214-wp/texts.php:262
2042
  msgid "End"
2043
  msgstr ""
2044
 
2045
  #: languages/texts.php:354
2046
+ #: public/editor-build/214-wp/texts.php:545
2047
  msgid "Paste your code here..."
2048
  msgstr ""
2049
 
2050
  #: languages/texts.php:356
2051
+ #: public/editor-build/214-wp/texts.php:301
2052
  msgid "Field"
2053
  msgstr ""
2054
 
2055
  #: languages/texts.php:357
2056
+ #: public/editor-build/214-wp/texts.php:302
2057
  msgid "Field Type"
2058
  msgstr ""
2059
 
2060
  #: languages/texts.php:358
2061
+ #: public/editor-build/214-wp/texts.php:414
2062
  msgid "Label"
2063
  msgstr ""
2064
 
2065
  #: languages/texts.php:359
2066
+ #: public/editor-build/214-wp/texts.php:465
2067
  msgid "Message"
2068
  msgstr ""
2069
 
2070
  #: languages/texts.php:360
2071
+ #: public/editor-build/214-wp/texts.php:752
2072
  msgid "Success"
2073
  msgstr ""
2074
 
2075
  #: languages/texts.php:361
2076
+ #: public/editor-build/214-wp/texts.php:267
2077
  msgid "Error"
2078
  msgstr ""
2079
 
2080
  #: languages/texts.php:362
2081
+ #: public/editor-build/214-wp/texts.php:467
2082
  msgid "Message sent"
2083
  msgstr ""
2084
 
2085
  #: languages/texts.php:363
2086
+ #: public/editor-build/214-wp/texts.php:466
2087
  msgid "Message not sent"
2088
  msgstr ""
2089
 
2090
  #: languages/texts.php:364
2091
+ #: public/editor-build/214-wp/texts.php:615
2092
  msgid "Redirect"
2093
  msgstr ""
2094
 
2095
  #: languages/texts.php:365
2096
+ #: public/editor-build/214-wp/texts.php:351
2097
  msgid "Go to"
2098
  msgstr ""
2099
 
2100
  #: languages/texts.php:366
2101
+ #: public/editor-build/214-wp/texts.php:632
2102
  msgid "Required"
2103
  msgstr ""
2104
 
2105
  #: languages/texts.php:367
2106
+ #: public/editor-build/214-wp/texts.php:252
2107
  msgid "Email"
2108
  msgstr ""
2109
 
2110
  #: languages/texts.php:368
2111
+ #: public/editor-build/214-wp/texts.php:510
2112
  msgid "Number"
2113
  msgstr ""
2114
 
2115
  #: languages/texts.php:369
2116
+ #: public/editor-build/214-wp/texts.php:536
2117
  msgid "Paragraph"
2118
  msgstr ""
2119
 
2120
  #: languages/texts.php:370
2121
+ #: public/editor-build/214-wp/texts.php:675
2122
  msgid "Select"
2123
  msgstr ""
2124
 
2125
  #: languages/texts.php:373
2126
+ #: public/editor-build/214-wp/texts.php:746
2127
  msgid "Style"
2128
  msgstr ""
2129
 
2152
  msgstr ""
2153
 
2154
  #: languages/texts.php:381
2155
+ #: public/editor-build/214-wp/texts.php:517
2156
  msgid "Open in Lightbox"
2157
  msgstr ""
2158
 
2159
  #: languages/texts.php:383
2160
+ #: public/editor-build/214-wp/texts.php:341
2161
  msgid "Gallery"
2162
  msgstr ""
2163
 
2164
  #: languages/texts.php:385
2165
+ #: public/editor-build/214-wp/texts.php:548
2166
  msgid "Percentage"
2167
  msgstr ""
2168
 
2171
  msgstr ""
2172
 
2173
  #: languages/texts.php:387
2174
+ #: public/editor-build/214-wp/texts.php:100
2175
  msgid "Bar"
2176
  msgstr ""
2177
 
2178
  #: languages/texts.php:389
2179
+ #: public/editor-build/214-wp/texts.php:722
2180
  msgid "SoundCloud"
2181
  msgstr ""
2182
 
2183
  #: languages/texts.php:390
2184
+ #: public/editor-build/214-wp/texts.php:723
2185
  msgid "SoundCloud Link"
2186
  msgstr ""
2187
 
2190
  msgstr ""
2191
 
2192
  #: languages/texts.php:393
2193
+ #: public/editor-build/214-wp/texts.php:611
2194
  msgid "Ratio"
2195
  msgstr ""
2196
 
2197
  #: languages/texts.php:394
2198
+ #: public/editor-build/214-wp/texts.php:182
2199
  msgid "Controls"
2200
  msgstr ""
2201
 
2202
  #: languages/texts.php:395
2203
+ #: public/editor-build/214-wp/texts.php:199
2204
  msgid "Cover"
2205
  msgstr ""
2206
 
2207
  #: languages/texts.php:396
2208
+ #: public/editor-build/214-wp/texts.php:552
2209
  msgid "Play"
2210
  msgstr ""
2211
 
2212
  #: languages/texts.php:399
2213
+ #: public/editor-build/214-wp/texts.php:364
2214
  msgid "Header"
2215
  msgstr ""
2216
 
2217
  #: languages/texts.php:402
2218
+ #: public/editor-build/214-wp/texts.php:324
2219
  msgid "Footer"
2220
  msgstr ""
2221
 
2224
  msgstr ""
2225
 
2226
  #: languages/texts.php:406
2227
+ #: public/editor-build/214-wp/texts.php:810
2228
  msgid "Type"
2229
  msgstr ""
2230
 
2231
  #: languages/texts.php:407
2232
+ #: public/editor-build/214-wp/texts.php:739
2233
  msgid "Static"
2234
  msgstr ""
2235
 
2236
  #: languages/texts.php:410
2237
+ #: public/editor-build/214-wp/texts.php:496
2238
  msgid "No matches found"
2239
  msgstr ""
2240
 
2241
  #: languages/texts.php:413
2242
+ #: public/editor-build/214-wp/texts.php:557
2243
  msgid "Popup"
2244
  msgstr ""
2245
 
2246
  #: languages/texts.php:414
2247
+ #: public/editor-build/214-wp/texts.php:164
2248
  msgid "Close"
2249
  msgstr ""
2250
 
2251
  #: languages/texts.php:417
2252
+ #: public/editor-build/214-wp/texts.php:174
2253
  msgid "Comments"
2254
  msgstr ""
2255
 
2256
  #: languages/texts.php:418
2257
+ #: public/editor-build/214-wp/texts.php:424
2258
  msgid "Like"
2259
  msgstr ""
2260
 
2261
  #: languages/texts.php:419
2262
+ #: public/editor-build/214-wp/texts.php:614
2263
  msgid "Recommend"
2264
  msgstr ""
2265
 
2266
  #: languages/texts.php:420
2267
+ #: public/editor-build/214-wp/texts.php:396
2268
  msgid "Include Share Button"
2269
  msgstr ""
2270
 
2271
  #: languages/texts.php:421
2272
+ #: public/editor-build/214-wp/texts.php:696
2273
  msgid "Show Friends' Faces"
2274
  msgstr ""
2275
 
2276
  #: languages/texts.php:422
2277
+ #: public/editor-build/214-wp/texts.php:694
2278
  msgid "Show Button Counter"
2279
  msgstr ""
2280
 
2283
  msgstr ""
2284
 
2285
  #: languages/texts.php:424
2286
+ #: public/editor-build/214-wp/texts.php:775
2287
  msgid "Target URL"
2288
  msgstr ""
2289
 
2290
  #: languages/texts.php:425
2291
+ #: public/editor-build/214-wp/texts.php:205
2292
  msgid "Current Page"
2293
  msgstr ""
2294
 
2295
  #: languages/texts.php:426
2296
+ #: public/editor-build/214-wp/texts.php:210
2297
  msgid "Custom Page"
2298
  msgstr ""
2299
 
2300
  #: languages/texts.php:427
2301
+ #: public/editor-build/214-wp/texts.php:395
2302
  msgid "Include Full Post"
2303
  msgstr ""
2304
 
2305
  #: languages/texts.php:428
2306
+ #: public/editor-build/214-wp/texts.php:338
2307
  msgid "Full Screen"
2308
  msgstr ""
2309
 
2310
  #: languages/texts.php:429
2311
+ #: public/editor-build/214-wp/texts.php:91
2312
  msgid "AutoPlay"
2313
  msgstr ""
2314
 
2315
  #: languages/texts.php:430
2316
+ #: public/editor-build/214-wp/texts.php:144
2317
  msgid "Captions"
2318
  msgstr ""
2319
 
2320
  #: languages/texts.php:431
2321
+ #: public/editor-build/214-wp/texts.php:791
2322
  msgid "Timeline"
2323
  msgstr ""
2324
 
2325
  #: languages/texts.php:432
2326
+ #: public/editor-build/214-wp/texts.php:269
2327
  msgid "Events"
2328
  msgstr ""
2329
 
2330
  #: languages/texts.php:433
2331
+ #: public/editor-build/214-wp/texts.php:468
2332
  msgid "Messages"
2333
  msgstr ""
2334
 
2335
  #: languages/texts.php:434
2336
+ #: public/editor-build/214-wp/texts.php:836
2337
  msgid "Use Small Header"
2338
  msgstr ""
2339
 
2340
  #: languages/texts.php:435
2341
+ #: public/editor-build/214-wp/texts.php:371
2342
  msgid "Hide Cover Photo"
2343
  msgstr ""
2344
 
2345
  #: languages/texts.php:436
2346
+ #: public/editor-build/214-wp/texts.php:695
2347
  msgid "Show Friend's Faces"
2348
  msgstr ""
2349
 
2350
  #: languages/texts.php:437
2351
+ #: public/editor-build/214-wp/texts.php:282
2352
  msgid "Facebook Button"
2353
  msgstr ""
2354
 
2357
  msgstr ""
2358
 
2359
  #: languages/texts.php:439
2360
+ #: public/editor-build/214-wp/texts.php:283
2361
  msgid "Facebook Embed"
2362
  msgstr ""
2363
 
2364
  #: languages/texts.php:440
2365
+ #: public/editor-build/214-wp/texts.php:285
2366
  msgid "Facebook Page"
2367
  msgstr ""
2368
 
2369
  #: languages/texts.php:442
2370
+ #: public/editor-build/214-wp/texts.php:96
2371
  msgid "Back to Layouts"
2372
  msgstr ""
2373
 
2374
  #: languages/texts.php:444
2375
+ #: public/editor-build/214-wp/texts.php:391
2376
  msgid "Import This Layout"
2377
  msgstr ""
2378
 
2379
  #: languages/texts.php:445
2380
+ #: public/editor-build/214-wp/texts.php:505
2381
  msgid "Nothing here yet, save a block first."
2382
  msgstr ""
2383
 
2384
  #: languages/texts.php:446
2385
+ #: public/editor-build/214-wp/texts.php:503
2386
  msgid "Nothing here yet, make a global block first."
2387
  msgstr ""
2388
 
2389
  #: languages/texts.php:448
2390
+ #: public/editor-build/214-wp/texts.php:606
2391
  msgid "Query"
2392
  msgstr ""
2393
 
2394
  #: languages/texts.php:449
2395
+ #: public/editor-build/214-wp/texts.php:587
2396
  msgid "Product ID"
2397
  msgstr ""
2398
 
2399
  #: languages/texts.php:450
2400
+ #: public/editor-build/214-wp/texts.php:588
2401
  msgid "Product ID or SKU"
2402
  msgstr ""
2403
 
2404
  #: languages/texts.php:451
2405
+ #: public/editor-build/214-wp/texts.php:597
2406
  msgid "Products Count"
2407
  msgstr ""
2408
 
2409
  #: languages/texts.php:452
2410
+ #: public/editor-build/214-wp/texts.php:418
2411
  msgid "Layout"
2412
  msgstr ""
2413
 
2416
  msgstr ""
2417
 
2418
  #: languages/texts.php:454
2419
+ #: public/editor-build/214-wp/texts.php:150
2420
  msgid "Categories Count"
2421
  msgstr ""
2422
 
2423
  #: languages/texts.php:455
2424
+ #: public/editor-build/214-wp/texts.php:518
2425
  msgid "Order"
2426
  msgstr ""
2427
 
2428
  #: languages/texts.php:456
2429
+ #: public/editor-build/214-wp/texts.php:81
2430
  msgid "Asc"
2431
  msgstr ""
2432
 
2433
  #: languages/texts.php:457
2434
+ #: public/editor-build/214-wp/texts.php:221
2435
  msgid "Desc"
2436
  msgstr ""
2437
 
2438
  #: languages/texts.php:458
2439
+ #: public/editor-build/214-wp/texts.php:519
2440
  msgid "Order By"
2441
  msgstr ""
2442
 
2443
  #: languages/texts.php:459
2444
+ #: public/editor-build/214-wp/texts.php:490
2445
  msgid "Name"
2446
  msgstr ""
2447
 
2448
  #: languages/texts.php:460
2449
+ #: public/editor-build/214-wp/texts.php:718
2450
  msgid "Slug"
2451
  msgstr ""
2452
 
2453
  #: languages/texts.php:461
2454
+ #: public/editor-build/214-wp/texts.php:222
2455
  msgid "Description"
2456
  msgstr ""
2457
 
2458
  #: languages/texts.php:462
2459
+ #: public/editor-build/214-wp/texts.php:196
2460
  msgid "Count"
2461
  msgstr ""
2462
 
2463
  #: languages/texts.php:463
2464
+ #: public/editor-build/214-wp/texts.php:529
2465
  msgid "Page"
2466
  msgstr ""
2467
 
2468
  #: languages/texts.php:464
2469
+ #: public/editor-build/214-wp/texts.php:146
2470
  msgid "Cart"
2471
  msgstr ""
2472
 
2473
  #: languages/texts.php:465
2474
+ #: public/editor-build/214-wp/texts.php:157
2475
  msgid "Checkout"
2476
  msgstr ""
2477
 
2478
  #: languages/texts.php:466
2479
+ #: public/editor-build/214-wp/texts.php:488
2480
  msgid "My Account"
2481
  msgstr ""
2482
 
2483
  #: languages/texts.php:467
2484
+ #: public/editor-build/214-wp/texts.php:520
2485
  msgid "Order Tracking"
2486
  msgstr ""
2487
 
2488
  #: languages/texts.php:468
2489
+ #: public/editor-build/214-wp/texts.php:307
2490
  msgid "Filter"
2491
  msgstr ""
2492
 
2493
  #: languages/texts.php:469
2494
+ #: public/editor-build/214-wp/texts.php:797
2495
  msgid "Title"
2496
  msgstr ""
2497
 
2498
  #: languages/texts.php:470
2499
+ #: public/editor-build/214-wp/texts.php:610
2500
  msgid "Rating"
2501
  msgstr ""
2502
 
2503
  #: languages/texts.php:471
2504
+ #: public/editor-build/214-wp/texts.php:556
2505
  msgid "Popularity"
2506
  msgstr ""
2507
 
2508
  #: languages/texts.php:472
2509
+ #: public/editor-build/214-wp/texts.php:463
2510
  msgid "Menu Order"
2511
  msgstr ""
2512
 
2513
  #: languages/texts.php:473
2514
+ #: public/editor-build/214-wp/texts.php:609
2515
  msgid "Random"
2516
  msgstr ""
2517
 
2518
  #: languages/texts.php:474
2519
+ #: public/editor-build/214-wp/texts.php:380
2520
  msgid "ID"
2521
  msgstr ""
2522
 
2525
  msgstr ""
2526
 
2527
  #: languages/texts.php:476
2528
+ #: public/editor-build/214-wp/texts.php:855
2529
  msgid "Weight"
2530
  msgstr ""
2531
 
2532
  #: languages/texts.php:477
2533
+ #: public/editor-build/214-wp/texts.php:569
2534
  msgid "Post Type"
2535
  msgstr ""
2536
 
2537
  #: languages/texts.php:478
2538
+ #: public/editor-build/214-wp/texts.php:563
2539
  msgid "Post"
2540
  msgstr ""
2541
 
2544
  msgstr ""
2545
 
2546
  #: languages/texts.php:480
2547
+ #: public/editor-build/214-wp/texts.php:153
2548
  msgid "Category"
2549
  msgstr ""
2550
 
2551
  #: languages/texts.php:481
2552
+ #: public/editor-build/214-wp/texts.php:86
2553
  msgid "Author"
2554
  msgstr ""
2555
 
2556
  #: languages/texts.php:482
2557
+ #: public/editor-build/214-wp/texts.php:393
2558
  msgid "Include"
2559
  msgstr ""
2560
 
2561
  #: languages/texts.php:483
2562
+ #: public/editor-build/214-wp/texts.php:271
2563
  msgid "Exclude"
2564
  msgstr ""
2565
 
2566
  #: languages/texts.php:484
2567
+ #: public/editor-build/214-wp/texts.php:740
2568
  msgid "Status"
2569
  msgstr ""
2570
 
2571
  #: languages/texts.php:485
2572
+ #: public/editor-build/214-wp/texts.php:340
2573
  msgid "Future"
2574
  msgstr ""
2575
 
2576
  #: languages/texts.php:486
2577
+ #: public/editor-build/214-wp/texts.php:239
2578
  msgid "Draft"
2579
  msgstr ""
2580
 
2581
  #: languages/texts.php:487
2582
+ #: public/editor-build/214-wp/texts.php:546
2583
  msgid "Pending"
2584
  msgstr ""
2585
 
2586
  #: languages/texts.php:488
2587
+ #: public/editor-build/214-wp/texts.php:580
2588
  msgid "Private"
2589
  msgstr ""
2590
 
2591
  #: languages/texts.php:489
2592
+ #: public/editor-build/214-wp/texts.php:803
2593
  msgid "Trash"
2594
  msgstr ""
2595
 
2596
  #: languages/texts.php:490
2597
+ #: public/editor-build/214-wp/texts.php:90
2598
  msgid "Auto-Draft"
2599
  msgstr ""
2600
 
2601
  #: languages/texts.php:491
2602
+ #: public/editor-build/214-wp/texts.php:400
2603
  msgid "Inherit"
2604
  msgstr ""
2605
 
2606
  #: languages/texts.php:492
2607
+ #: public/editor-build/214-wp/texts.php:471
2608
  msgid "Meta Key"
2609
  msgstr ""
2610
 
2611
  #: languages/texts.php:493
2612
+ #: public/editor-build/214-wp/texts.php:472
2613
  msgid "Meta Value"
2614
  msgstr ""
2615
 
2616
  #: languages/texts.php:494
2617
+ #: public/editor-build/214-wp/texts.php:481
2618
  msgid "Modified"
2619
  msgstr ""
2620
 
2621
  #: languages/texts.php:495
2622
+ #: public/editor-build/214-wp/texts.php:538
2623
  msgid "Parent"
2624
  msgstr ""
2625
 
2626
  #: languages/texts.php:496
2627
+ #: public/editor-build/214-wp/texts.php:173
2628
  msgid "Comment Count"
2629
  msgstr ""
2630
 
2631
  #: languages/texts.php:497
2632
+ #: public/editor-build/214-wp/texts.php:308
2633
  msgid "Filter By"
2634
  msgstr ""
2635
 
2636
  #: languages/texts.php:498
2637
+ #: public/editor-build/214-wp/texts.php:108
2638
  msgid "Block"
2639
  msgstr ""
2640
 
2641
  #: languages/texts.php:499
2642
+ #: public/editor-build/214-wp/texts.php:445
2643
  msgid "Make it Global"
2644
  msgstr ""
2645
 
2646
  #: languages/texts.php:500
2647
+ #: public/editor-build/214-wp/texts.php:661
2648
  msgid "Save"
2649
  msgstr ""
2650
 
2651
  #: languages/texts.php:501
2652
+ #: public/editor-build/214-wp/texts.php:113
2653
  msgid "Blocks"
2654
  msgstr ""
2655
 
2658
  msgstr ""
2659
 
2660
  #: languages/texts.php:503
2661
+ #: public/editor-build/214-wp/texts.php:348
2662
  msgid "Global Blocks"
2663
  msgstr ""
2664
 
2665
  #: languages/texts.php:504
2666
+ #: public/editor-build/214-wp/texts.php:422
2667
  msgid "Light"
2668
  msgstr ""
2669
 
2670
  #: languages/texts.php:505
2671
+ #: public/editor-build/214-wp/texts.php:215
2672
  msgid "Dark"
2673
  msgstr ""
2674
 
2675
  #: languages/texts.php:506
2676
+ #: public/editor-build/214-wp/texts.php:66
2677
  msgid "All Categories"
2678
  msgstr ""
2679
 
2682
  msgstr ""
2683
 
2684
  #: languages/texts.php:508
2685
+ #: public/editor-build/214-wp/texts.php:812
2686
  msgid "Type to search"
2687
  msgstr ""
2688
 
2695
  msgstr ""
2696
 
2697
  #: languages/texts.php:511
2698
+ #: public/editor-build/214-wp/texts.php:862
2699
  msgid "You can"
2700
  msgstr ""
2701
 
2702
  #: languages/texts.php:512
2703
+ #: public/editor-build/214-wp/texts.php:889
2704
  msgid "open an issue"
2705
  msgstr ""
2706
 
2707
  #: languages/texts.php:513
2708
+ #: public/editor-build/214-wp/texts.php:890
2709
  msgid "or"
2710
  msgstr ""
2711
 
2714
  msgstr ""
2715
 
2716
  #: languages/texts.php:515
2717
+ #: public/editor-build/214-wp/texts.php:531
2718
  msgid "Page Template"
2719
  msgstr ""
2720
 
2721
  #: languages/texts.php:516
2722
+ #: public/editor-build/214-wp/texts.php:800
2723
  msgid "Toggle Menu"
2724
  msgstr ""
2725
 
2726
  #: languages/texts.php:517
2727
+ #: public/editor-build/214-wp/texts.php:447
2728
  msgid "Make it Nofollow"
2729
  msgstr ""
2730
 
2731
  #: languages/texts.php:518
2732
+ #: public/editor-build/214-wp/texts.php:232
2733
  msgid "Dividers"
2734
  msgstr ""
2735
 
2736
  #: languages/texts.php:519
2737
+ #: public/editor-build/214-wp/texts.php:77
2738
  msgid "Arrangement"
2739
  msgstr ""
2740
 
2743
  msgstr ""
2744
 
2745
  #: languages/texts.php:521
2746
+ #: public/editor-build/214-wp/texts.php:446
2747
  msgid "Make it Hamburger"
2748
  msgstr ""
2749
 
2756
  msgstr ""
2757
 
2758
  #: languages/texts.php:524
2759
+ #: public/editor-build/214-wp/texts.php:677
2760
  msgid "Select a Menu"
2761
  msgstr ""
2762
 
2763
  #: languages/texts.php:525
2764
+ #: public/editor-build/214-wp/texts.php:884
2765
  msgid "in your WordPress admin"
2766
  msgstr ""
2767
 
2768
  #: languages/texts.php:526
2769
+ #: public/editor-build/214-wp/texts.php:241
2770
  msgid "Drawer Position"
2771
  msgstr ""
2772
 
2775
  msgstr ""
2776
 
2777
  #: languages/texts.php:528
2778
+ #: public/editor-build/214-wp/texts.php:35
2779
  msgid "APPS"
2780
  msgstr ""
2781
 
2782
  #: languages/texts.php:529
2783
+ #: public/editor-build/214-wp/texts.php:407
2784
  msgid "It's a sample"
2785
  msgstr ""
2786
 
2791
  #: maintenance-mode.php:117
2792
  msgid "Edit Page"
2793
  msgstr ""
2794
+
2795
+ #: public/editor-build/214-wp/texts.php:6
2796
+ msgid " Display Conditions"
2797
+ msgstr ""
2798
+
2799
+ #: public/editor-build/214-wp/texts.php:7
2800
+ msgid "%s Selected"
2801
+ msgstr ""
2802
+
2803
+ #: public/editor-build/214-wp/texts.php:8
2804
+ msgid "+ 10:00 (Sydney, Melbourne)"
2805
+ msgstr ""
2806
+
2807
+ #: public/editor-build/214-wp/texts.php:16
2808
+ msgid "+ 6:00 (Nur-Sultan)"
2809
+ msgstr ""
2810
+
2811
+ #: public/editor-build/214-wp/texts.php:32
2812
+ msgid "? (%s)"
2813
+ msgstr ""
2814
+
2815
+ #: public/editor-build/214-wp/texts.php:33
2816
+ msgid "ADD FONT VARIATION"
2817
+ msgstr ""
2818
+
2819
+ #: public/editor-build/214-wp/texts.php:34
2820
+ msgid "ADD GOOGLE FONT"
2821
+ msgstr ""
2822
+
2823
+ #: public/editor-build/214-wp/texts.php:36
2824
+ msgid "About us"
2825
+ msgstr ""
2826
+
2827
+ #: public/editor-build/214-wp/texts.php:37
2828
+ msgid "Access your Library in any WP install by connecting your Account"
2829
+ msgstr ""
2830
+
2831
+ #: public/editor-build/214-wp/texts.php:39
2832
+ msgid "Accordion Items"
2833
+ msgstr ""
2834
+
2835
+ #: public/editor-build/214-wp/texts.php:40
2836
+ msgid "Accordion Tags"
2837
+ msgstr ""
2838
+
2839
+ #: public/editor-build/214-wp/texts.php:41
2840
+ msgid "Accounts are empty. Please connect a new account and try again."
2841
+ msgstr ""
2842
+
2843
+ #: public/editor-build/214-wp/texts.php:42
2844
+ msgid "Action"
2845
+ msgstr ""
2846
+
2847
+ #: public/editor-build/214-wp/texts.php:43
2848
+ msgid "Activate Tab"
2849
+ msgstr ""
2850
+
2851
+ #: public/editor-build/214-wp/texts.php:44
2852
+ msgid "Active"
2853
+ msgstr ""
2854
+
2855
+ #: public/editor-build/214-wp/texts.php:46
2856
+ msgid "Add Font"
2857
+ msgstr ""
2858
+
2859
+ #: public/editor-build/214-wp/texts.php:48
2860
+ msgid "Add New Block / Layout"
2861
+ msgstr ""
2862
+
2863
+ #: public/editor-build/214-wp/texts.php:50
2864
+ msgid "Add New Font"
2865
+ msgstr ""
2866
+
2867
+ #: public/editor-build/214-wp/texts.php:51
2868
+ msgid "Add To Cart"
2869
+ msgstr ""
2870
+
2871
+ #: public/editor-build/214-wp/texts.php:52
2872
+ msgid "Add To Cart Input"
2873
+ msgstr ""
2874
+
2875
+ #: public/editor-build/214-wp/texts.php:54
2876
+ msgid "Add new display condition"
2877
+ msgstr ""
2878
+
2879
+ #: public/editor-build/214-wp/texts.php:55
2880
+ msgid "Add new font variation"
2881
+ msgstr ""
2882
+
2883
+ #: public/editor-build/214-wp/texts.php:57
2884
+ msgid "Add new trigger condition"
2885
+ msgstr ""
2886
+
2887
+ #: public/editor-build/214-wp/texts.php:59
2888
+ msgid "Additionals"
2889
+ msgstr ""
2890
+
2891
+ #: public/editor-build/214-wp/texts.php:63
2892
+ msgid "Aligned Left"
2893
+ msgstr ""
2894
+
2895
+ #: public/editor-build/214-wp/texts.php:64
2896
+ msgid "Aligned Right"
2897
+ msgstr ""
2898
+
2899
+ #: public/editor-build/214-wp/texts.php:65
2900
+ msgid "All"
2901
+ msgstr ""
2902
+
2903
+ #: public/editor-build/214-wp/texts.php:67
2904
+ msgid "All fields cannot be empty"
2905
+ msgstr ""
2906
+
2907
+ #: public/editor-build/214-wp/texts.php:68
2908
+ msgid "All fields marked with an asterisk ( * ) must be completed."
2909
+ msgstr ""
2910
+
2911
+ #: public/editor-build/214-wp/texts.php:69
2912
+ msgid "All fields marked with an asterisk ( * ) must be mapped."
2913
+ msgstr ""
2914
+
2915
+ #: public/editor-build/214-wp/texts.php:70
2916
+ msgid "Allowed File Types"
2917
+ msgstr ""
2918
+
2919
+ #: public/editor-build/214-wp/texts.php:71
2920
+ msgid "Alt Title"
2921
+ msgstr ""
2922
+
2923
+ #: public/editor-build/214-wp/texts.php:72
2924
+ msgid "An error happened while trying to display this element"
2925
+ msgstr ""
2926
+
2927
+ #: public/editor-build/214-wp/texts.php:76
2928
+ msgid "Are you want to delete account"
2929
+ msgstr ""
2930
+
2931
+ #: public/editor-build/214-wp/texts.php:80
2932
+ msgid "Article"
2933
+ msgstr ""
2934
+
2935
+ #: public/editor-build/214-wp/texts.php:82
2936
+ msgid "Aside"
2937
+ msgstr ""
2938
+
2939
+ #: public/editor-build/214-wp/texts.php:83
2940
+ msgid "Attributes"
2941
+ msgstr ""
2942
+
2943
+ #: public/editor-build/214-wp/texts.php:84
2944
+ msgid "Audio"
2945
+ msgstr ""
2946
+
2947
+ #: public/editor-build/214-wp/texts.php:85
2948
+ msgid "Authentication"
2949
+ msgstr ""
2950
+
2951
+ #: public/editor-build/214-wp/texts.php:89
2952
+ msgid "Auto play"
2953
+ msgstr ""
2954
+
2955
+ #: public/editor-build/214-wp/texts.php:92
2956
+ msgid "Automotive"
2957
+ msgstr ""
2958
+
2959
+ #: public/editor-build/214-wp/texts.php:93
2960
+ msgid "Autoplay"
2961
+ msgstr ""
2962
+
2963
+ #: public/editor-build/214-wp/texts.php:94
2964
+ msgid "Avatar"
2965
+ msgstr ""
2966
+
2967
+ #: public/editor-build/214-wp/texts.php:95
2968
+ msgid "Back"
2969
+ msgstr ""
2970
+
2971
+ #: public/editor-build/214-wp/texts.php:97
2972
+ msgid "Back to Login"
2973
+ msgstr ""
2974
+
2975
+ #: public/editor-build/214-wp/texts.php:98
2976
+ msgid "Back to Stories"
2977
+ msgstr ""
2978
+
2979
+ #: public/editor-build/214-wp/texts.php:101
2980
+ msgid "Bcc"
2981
+ msgstr ""
2982
+
2983
+ #: public/editor-build/214-wp/texts.php:102
2984
+ msgid "Between"
2985
+ msgstr ""
2986
+
2987
+ #: public/editor-build/214-wp/texts.php:103
2988
+ msgid "Bg"
2989
+ msgstr ""
2990
+
2991
+ #: public/editor-build/214-wp/texts.php:105
2992
+ msgid "Bg Star"
2993
+ msgstr ""
2994
+
2995
+ #: public/editor-build/214-wp/texts.php:106
2996
+ msgid "Black"
2997
+ msgstr ""
2998
+
2999
+ #: public/editor-build/214-wp/texts.php:107
3000
+ msgid "Blank"
3001
+ msgstr ""
3002
+
3003
+ #: public/editor-build/214-wp/texts.php:109
3004
+ msgid "Block Name"
3005
+ msgstr ""
3006
+
3007
+ #: public/editor-build/214-wp/texts.php:110
3008
+ msgid "Block conditions are available only in PRO"
3009
+ msgstr ""
3010
+
3011
+ #: public/editor-build/214-wp/texts.php:111
3012
+ msgid "Block is synchronized"
3013
+ msgstr ""
3014
+
3015
+ #: public/editor-build/214-wp/texts.php:112
3016
+ msgid "Block will be synchronized"
3017
+ msgstr ""
3018
+
3019
+ #: public/editor-build/214-wp/texts.php:117
3020
+ msgid "Bottom"
3021
+ msgstr ""
3022
+
3023
+ #: public/editor-build/214-wp/texts.php:125
3024
+ msgid "Branding"
3025
+ msgstr ""
3026
+
3027
+ #: public/editor-build/214-wp/texts.php:126
3028
+ msgid "Breadcrumbs"
3029
+ msgstr ""
3030
+
3031
+ #: public/editor-build/214-wp/texts.php:127
3032
+ msgid "Btn Bg"
3033
+ msgstr ""
3034
+
3035
+ #: public/editor-build/214-wp/texts.php:128
3036
+ msgid "Btn Color"
3037
+ msgstr ""
3038
+
3039
+ #: public/editor-build/214-wp/texts.php:129
3040
+ msgid "Bub."
3041
+ msgstr ""
3042
+
3043
+ #: public/editor-build/214-wp/texts.php:130
3044
+ msgid "Bub. Bg"
3045
+ msgstr ""
3046
+
3047
+ #: public/editor-build/214-wp/texts.php:131
3048
+ msgid "Bubble"
3049
+ msgstr ""
3050
+
3051
+ #: public/editor-build/214-wp/texts.php:132
3052
+ msgid "Business"
3053
+ msgstr ""
3054
+
3055
+ #: public/editor-build/214-wp/texts.php:133
3056
+ msgid "Business Hour"
3057
+ msgstr ""
3058
+
3059
+ #: public/editor-build/214-wp/texts.php:135
3060
+ msgid "Button Size"
3061
+ msgstr ""
3062
+
3063
+ #: public/editor-build/214-wp/texts.php:136
3064
+ msgid "Buttons"
3065
+ msgstr ""
3066
+
3067
+ #: public/editor-build/214-wp/texts.php:137
3068
+ msgid "CMS"
3069
+ msgstr ""
3070
+
3071
+ #: public/editor-build/214-wp/texts.php:138
3072
+ msgid "CREATE LIST"
3073
+ msgstr ""
3074
+
3075
+ #: public/editor-build/214-wp/texts.php:140
3076
+ msgid "CSS ID"
3077
+ msgstr ""
3078
+
3079
+ #: public/editor-build/214-wp/texts.php:141
3080
+ msgid "CTA"
3081
+ msgstr ""
3082
+
3083
+ #: public/editor-build/214-wp/texts.php:142
3084
+ msgid "Cancel"
3085
+ msgstr ""
3086
+
3087
+ #: public/editor-build/214-wp/texts.php:143
3088
+ msgid "Capitalize"
3089
+ msgstr ""
3090
+
3091
+ #: public/editor-build/214-wp/texts.php:147
3092
+ msgid "Cart Items"
3093
+ msgstr ""
3094
+
3095
+ #: public/editor-build/214-wp/texts.php:148
3096
+ msgid "Cart Settings"
3097
+ msgstr ""
3098
+
3099
+ #: public/editor-build/214-wp/texts.php:151
3100
+ msgid "Categories Pagination"
3101
+ msgstr ""
3102
+
3103
+ #: public/editor-build/214-wp/texts.php:152
3104
+ msgid "Categories Tags"
3105
+ msgstr ""
3106
+
3107
+ #: public/editor-build/214-wp/texts.php:154
3108
+ msgid "Cc"
3109
+ msgstr ""
3110
+
3111
+ #: public/editor-build/214-wp/texts.php:155
3112
+ msgid "Check your email address"
3113
+ msgstr ""
3114
+
3115
+ #: public/editor-build/214-wp/texts.php:156
3116
+ msgid "Checkbox"
3117
+ msgstr ""
3118
+
3119
+ #: public/editor-build/214-wp/texts.php:158
3120
+ msgid "Children"
3121
+ msgstr ""
3122
+
3123
+ #: public/editor-build/214-wp/texts.php:160
3124
+ msgid "Classic"
3125
+ msgstr ""
3126
+
3127
+ #: public/editor-build/214-wp/texts.php:161
3128
+ msgid "Clear"
3129
+ msgstr ""
3130
+
3131
+ #: public/editor-build/214-wp/texts.php:162
3132
+ msgid "Clear Layout"
3133
+ msgstr ""
3134
+
3135
+ #: public/editor-build/214-wp/texts.php:163
3136
+ msgid "Click Outside to Close"
3137
+ msgstr ""
3138
+
3139
+ #: public/editor-build/214-wp/texts.php:165
3140
+ msgid "Close Popup"
3141
+ msgstr ""
3142
+
3143
+ #: public/editor-build/214-wp/texts.php:166
3144
+ msgid "Cloud"
3145
+ msgstr ""
3146
+
3147
+ #: public/editor-build/214-wp/texts.php:167
3148
+ msgid "Collapsible"
3149
+ msgstr ""
3150
+
3151
+ #: public/editor-build/214-wp/texts.php:172
3152
+ msgid "Comment"
3153
+ msgstr ""
3154
+
3155
+ #: public/editor-build/214-wp/texts.php:175
3156
+ msgid "Conditions"
3157
+ msgstr ""
3158
+
3159
+ #: public/editor-build/214-wp/texts.php:176
3160
+ msgid "Connect"
3161
+ msgstr ""
3162
+
3163
+ #: public/editor-build/214-wp/texts.php:177
3164
+ msgid "Connect a new account"
3165
+ msgstr ""
3166
+
3167
+ #: public/editor-build/214-wp/texts.php:178
3168
+ msgid "Contact"
3169
+ msgstr ""
3170
+
3171
+ #: public/editor-build/214-wp/texts.php:180
3172
+ msgid "Content Gap"
3173
+ msgstr ""
3174
+
3175
+ #: public/editor-build/214-wp/texts.php:181
3176
+ msgid "Continue"
3177
+ msgstr ""
3178
+
3179
+ #: public/editor-build/214-wp/texts.php:185
3180
+ msgid "Could not Create Global Block"
3181
+ msgstr ""
3182
+
3183
+ #: public/editor-build/214-wp/texts.php:186
3184
+ msgid "Could not Create Global Popup"
3185
+ msgstr ""
3186
+
3187
+ #: public/editor-build/214-wp/texts.php:187
3188
+ msgid "Could not Create Saved Block"
3189
+ msgstr ""
3190
+
3191
+ #: public/editor-build/214-wp/texts.php:188
3192
+ msgid "Could not Create Saved Popup"
3193
+ msgstr ""
3194
+
3195
+ #: public/editor-build/214-wp/texts.php:189
3196
+ msgid "Could not download Saved Layout"
3197
+ msgstr ""
3198
+
3199
+ #: public/editor-build/214-wp/texts.php:190
3200
+ msgid "Could not download Saved Popup"
3201
+ msgstr ""
3202
+
3203
+ #: public/editor-build/214-wp/texts.php:191
3204
+ msgid "Could not download Saved block"
3205
+ msgstr ""
3206
+
3207
+ #: public/editor-build/214-wp/texts.php:193
3208
+ msgid "Could not publish or save page"
3209
+ msgstr ""
3210
+
3211
+ #: public/editor-build/214-wp/texts.php:194
3212
+ msgid "Could not save layout"
3213
+ msgstr ""
3214
+
3215
+ #: public/editor-build/214-wp/texts.php:195
3216
+ msgid "Could not switch to draft"
3217
+ msgstr ""
3218
+
3219
+ #: public/editor-build/214-wp/texts.php:200
3220
+ msgid "Create"
3221
+ msgstr ""
3222
+
3223
+ #: public/editor-build/214-wp/texts.php:201
3224
+ msgid "Create Account & Connect"
3225
+ msgstr ""
3226
+
3227
+ #: public/editor-build/214-wp/texts.php:202
3228
+ msgid "Create a menu"
3229
+ msgstr ""
3230
+
3231
+ #: public/editor-build/214-wp/texts.php:203
3232
+ msgid "Create a new list"
3233
+ msgstr ""
3234
+
3235
+ #: public/editor-build/214-wp/texts.php:204
3236
+ msgid "Create your own"
3237
+ msgstr ""
3238
+
3239
+ #: public/editor-build/214-wp/texts.php:207
3240
+ msgid "Custom Attributes"
3241
+ msgstr ""
3242
+
3243
+ #: public/editor-build/214-wp/texts.php:208
3244
+ msgid "Custom Attributes asd"
3245
+ msgstr ""
3246
+
3247
+ #: public/editor-build/214-wp/texts.php:211
3248
+ msgid "Custom Text"
3249
+ msgstr ""
3250
+
3251
+ #: public/editor-build/214-wp/texts.php:212
3252
+ msgid "Custom Video"
3253
+ msgstr ""
3254
+
3255
+ #: public/editor-build/214-wp/texts.php:213
3256
+ msgid "DELETE"
3257
+ msgstr ""
3258
+
3259
+ #: public/editor-build/214-wp/texts.php:214
3260
+ msgid "DIV"
3261
+ msgstr ""
3262
+
3263
+ #: public/editor-build/214-wp/texts.php:217
3264
+ msgid "Days"
3265
+ msgstr ""
3266
+
3267
+ #: public/editor-build/214-wp/texts.php:218
3268
+ msgid "Default Roles"
3269
+ msgstr ""
3270
+
3271
+ #: public/editor-build/214-wp/texts.php:223
3272
+ msgid "Deselected the “Verify the origin of reCAPTCHA solutions” checkbox within your Google account."
3273
+ msgstr ""
3274
+
3275
+ #: public/editor-build/214-wp/texts.php:228
3276
+ msgid "Disconnect"
3277
+ msgstr ""
3278
+
3279
+ #: public/editor-build/214-wp/texts.php:229
3280
+ msgid "Display Close Button"
3281
+ msgstr ""
3282
+
3283
+ #: public/editor-build/214-wp/texts.php:230
3284
+ msgid "Disqus"
3285
+ msgstr ""
3286
+
3287
+ #: public/editor-build/214-wp/texts.php:231
3288
+ msgid "Div"
3289
+ msgstr ""
3290
+
3291
+ #: public/editor-build/214-wp/texts.php:233
3292
+ msgid "Don't have items"
3293
+ msgstr ""
3294
+
3295
+ #: public/editor-build/214-wp/texts.php:234
3296
+ msgid "Don't have tags"
3297
+ msgstr ""
3298
+
3299
+ #: public/editor-build/214-wp/texts.php:235
3300
+ msgid "Done"
3301
+ msgstr ""
3302
+
3303
+ #: public/editor-build/214-wp/texts.php:236
3304
+ msgid "Done, your library was synced"
3305
+ msgstr ""
3306
+
3307
+ #: public/editor-build/214-wp/texts.php:238
3308
+ msgid "Download this block"
3309
+ msgstr ""
3310
+
3311
+ #: public/editor-build/214-wp/texts.php:243
3312
+ msgid "Duplicate Account"
3313
+ msgstr ""
3314
+
3315
+ #: public/editor-build/214-wp/texts.php:247
3316
+ msgid "EOT File"
3317
+ msgstr ""
3318
+
3319
+ #: public/editor-build/214-wp/texts.php:248
3320
+ msgid "Edit"
3321
+ msgstr ""
3322
+
3323
+ #: public/editor-build/214-wp/texts.php:250
3324
+ msgid "Education"
3325
+ msgstr ""
3326
+
3327
+ #: public/editor-build/214-wp/texts.php:251
3328
+ msgid "Elements"
3329
+ msgstr ""
3330
+
3331
+ #: public/editor-build/214-wp/texts.php:253
3332
+ msgid "Email To"
3333
+ msgstr ""
3334
+
3335
+ #: public/editor-build/214-wp/texts.php:254
3336
+ msgid "Email confirmation to join the list"
3337
+ msgstr ""
3338
+
3339
+ #: public/editor-build/214-wp/texts.php:255
3340
+ msgid "Email to recover password cannot be empty"
3341
+ msgstr ""
3342
+
3343
+ #: public/editor-build/214-wp/texts.php:257
3344
+ msgid "Enable Tags"
3345
+ msgstr ""
3346
+
3347
+ #: public/editor-build/214-wp/texts.php:260
3348
+ msgid "Enable tags"
3349
+ msgstr ""
3350
+
3351
+ #: public/editor-build/214-wp/texts.php:261
3352
+ msgid "Encryption"
3353
+ msgstr ""
3354
+
3355
+ #: public/editor-build/214-wp/texts.php:265
3356
+ msgid "Enter the allowed file types, separated by a comma (jpg, gif, pdf, etc)."
3357
+ msgstr ""
3358
+
3359
+ #: public/editor-build/214-wp/texts.php:268
3360
+ msgid "Established a stable internet connection"
3361
+ msgstr ""
3362
+
3363
+ #: public/editor-build/214-wp/texts.php:270
3364
+ msgid "Excerpt"
3365
+ msgstr ""
3366
+
3367
+ #: public/editor-build/214-wp/texts.php:272
3368
+ msgid "Exclude By"
3369
+ msgstr ""
3370
+
3371
+ #: public/editor-build/214-wp/texts.php:273
3372
+ msgid "Export All Blocks"
3373
+ msgstr ""
3374
+
3375
+ #: public/editor-build/214-wp/texts.php:274
3376
+ msgid "Export All Layouts"
3377
+ msgstr ""
3378
+
3379
+ #: public/editor-build/214-wp/texts.php:275
3380
+ msgid "Export All Popups"
3381
+ msgstr ""
3382
+
3383
+ #: public/editor-build/214-wp/texts.php:276
3384
+ msgid "Extra Bold"
3385
+ msgstr ""
3386
+
3387
+ #: public/editor-build/214-wp/texts.php:277
3388
+ msgid "Extra Light"
3389
+ msgstr ""
3390
+
3391
+ #: public/editor-build/214-wp/texts.php:278
3392
+ msgid "FIELDS"
3393
+ msgstr ""
3394
+
3395
+ #: public/editor-build/214-wp/texts.php:279
3396
+ msgid "FONT VARIATION"
3397
+ msgstr ""
3398
+
3399
+ #: public/editor-build/214-wp/texts.php:280
3400
+ msgid "FORM FIELDS"
3401
+ msgstr ""
3402
+
3403
+ #: public/editor-build/214-wp/texts.php:281
3404
+ msgid "Facebook"
3405
+ msgstr ""
3406
+
3407
+ #: public/editor-build/214-wp/texts.php:284
3408
+ msgid "Facebook Group"
3409
+ msgstr ""
3410
+
3411
+ #: public/editor-build/214-wp/texts.php:295
3412
+ msgid "Failed to fetch api data"
3413
+ msgstr ""
3414
+
3415
+ #: public/editor-build/214-wp/texts.php:296
3416
+ msgid "Failed to reset password"
3417
+ msgstr ""
3418
+
3419
+ #: public/editor-build/214-wp/texts.php:297
3420
+ msgid "Failed to update page"
3421
+ msgstr ""
3422
+
3423
+ #: public/editor-build/214-wp/texts.php:298
3424
+ msgid "Failed to upload file. Please upload a valid JPG, PNG, SVG or GIF image."
3425
+ msgstr ""
3426
+
3427
+ #: public/editor-build/214-wp/texts.php:300
3428
+ msgid "Features"
3429
+ msgstr ""
3430
+
3431
+ #: public/editor-build/214-wp/texts.php:303
3432
+ msgid "Fields are empty"
3433
+ msgstr ""
3434
+
3435
+ #: public/editor-build/214-wp/texts.php:304
3436
+ msgid "Fields are empty. Please add fields and try again."
3437
+ msgstr ""
3438
+
3439
+ #: public/editor-build/214-wp/texts.php:305
3440
+ msgid "File"
3441
+ msgstr ""
3442
+
3443
+ #: public/editor-build/214-wp/texts.php:309
3444
+ msgid "Filters"
3445
+ msgstr ""
3446
+
3447
+ #: public/editor-build/214-wp/texts.php:310
3448
+ msgid "First Name"
3449
+ msgstr ""
3450
+
3451
+ #: public/editor-build/214-wp/texts.php:316
3452
+ msgid "Follow"
3453
+ msgstr ""
3454
+
3455
+ #: public/editor-build/214-wp/texts.php:317
3456
+ msgid "Followers"
3457
+ msgstr ""
3458
+
3459
+ #: public/editor-build/214-wp/texts.php:319
3460
+ msgid "Font Name is Required"
3461
+ msgstr ""
3462
+
3463
+ #: public/editor-build/214-wp/texts.php:320
3464
+ msgid "Font name"
3465
+ msgstr ""
3466
+
3467
+ #: public/editor-build/214-wp/texts.php:321
3468
+ msgid "Font weight"
3469
+ msgstr ""
3470
+
3471
+ #: public/editor-build/214-wp/texts.php:322
3472
+ msgid "Fonts"
3473
+ msgstr ""
3474
+
3475
+ #: public/editor-build/214-wp/texts.php:323
3476
+ msgid "Food"
3477
+ msgstr ""
3478
+
3479
+ #: public/editor-build/214-wp/texts.php:325
3480
+ msgid "Footers"
3481
+ msgstr ""
3482
+
3483
+ #: public/editor-build/214-wp/texts.php:327
3484
+ msgid "Form Fields"
3485
+ msgstr ""
3486
+
3487
+ #: public/editor-build/214-wp/texts.php:328
3488
+ msgid "Form Labels"
3489
+ msgstr ""
3490
+
3491
+ #: public/editor-build/214-wp/texts.php:329
3492
+ msgid "Form Select Dropdowns"
3493
+ msgstr ""
3494
+
3495
+ #: public/editor-build/214-wp/texts.php:330
3496
+ msgid "Form Submit"
3497
+ msgstr ""
3498
+
3499
+ #: public/editor-build/214-wp/texts.php:331
3500
+ msgid "Forms"
3501
+ msgstr ""
3502
+
3503
+ #: public/editor-build/214-wp/texts.php:332
3504
+ msgid "Free"
3505
+ msgstr ""
3506
+
3507
+ #: public/editor-build/214-wp/texts.php:334
3508
+ msgid "From Email"
3509
+ msgstr ""
3510
+
3511
+ #: public/editor-build/214-wp/texts.php:335
3512
+ msgid "From Name"
3513
+ msgstr ""
3514
+
3515
+ #: public/editor-build/214-wp/texts.php:339
3516
+ msgid "Full name"
3517
+ msgstr ""
3518
+
3519
+ #: public/editor-build/214-wp/texts.php:342
3520
+ msgid "Gallery Tags"
3521
+ msgstr ""
3522
+
3523
+ #: public/editor-build/214-wp/texts.php:343
3524
+ msgid "Gaming"
3525
+ msgstr ""
3526
+
3527
+ #: public/editor-build/214-wp/texts.php:347
3528
+ msgid "Get a PRO plan"
3529
+ msgstr ""
3530
+
3531
+ #: public/editor-build/214-wp/texts.php:349
3532
+ msgid "Global Popups"
3533
+ msgstr ""
3534
+
3535
+ #: public/editor-build/214-wp/texts.php:350
3536
+ msgid "Go Back"
3537
+ msgstr ""
3538
+
3539
+ #: public/editor-build/214-wp/texts.php:352
3540
+ msgid "Go to Dashboard"
3541
+ msgstr ""
3542
+
3543
+ #: public/editor-build/214-wp/texts.php:354
3544
+ msgid "Group"
3545
+ msgstr ""
3546
+
3547
+ #: public/editor-build/214-wp/texts.php:362
3548
+ msgid "Handle"
3549
+ msgstr ""
3550
+
3551
+ #: public/editor-build/214-wp/texts.php:363
3552
+ msgid "Head"
3553
+ msgstr ""
3554
+
3555
+ #: public/editor-build/214-wp/texts.php:365
3556
+ msgid "Health / Beauty"
3557
+ msgstr ""
3558
+
3559
+ #: public/editor-build/214-wp/texts.php:368
3560
+ msgid "Hero"
3561
+ msgstr ""
3562
+
3563
+ #: public/editor-build/214-wp/texts.php:369
3564
+ msgid "Hidden"
3565
+ msgstr ""
3566
+
3567
+ #: public/editor-build/214-wp/texts.php:370
3568
+ msgid "Hide"
3569
+ msgstr ""
3570
+
3571
+ #: public/editor-build/214-wp/texts.php:372
3572
+ msgid "Hide Hidden Elements"
3573
+ msgstr ""
3574
+
3575
+ #: public/editor-build/214-wp/texts.php:373
3576
+ msgid "Horizontal Align"
3577
+ msgstr ""
3578
+
3579
+ #: public/editor-build/214-wp/texts.php:374
3580
+ msgid "Horizontal Offset"
3581
+ msgstr ""
3582
+
3583
+ #: public/editor-build/214-wp/texts.php:375
3584
+ msgid "Host"
3585
+ msgstr ""
3586
+
3587
+ #: public/editor-build/214-wp/texts.php:377
3588
+ msgid "Hours"
3589
+ msgstr ""
3590
+
3591
+ #: public/editor-build/214-wp/texts.php:383
3592
+ msgid "Icons"
3593
+ msgstr ""
3594
+
3595
+ #: public/editor-build/214-wp/texts.php:384
3596
+ msgid "If you need to increase max upload size please contact your hosting."
3597
+ msgstr ""
3598
+
3599
+ #: public/editor-build/214-wp/texts.php:386
3600
+ msgid "Image Test"
3601
+ msgstr ""
3602
+
3603
+ #: public/editor-build/214-wp/texts.php:387
3604
+ msgid "Image file is too large."
3605
+ msgstr ""
3606
+
3607
+ #: public/editor-build/214-wp/texts.php:388
3608
+ msgid "Import New Block"
3609
+ msgstr ""
3610
+
3611
+ #: public/editor-build/214-wp/texts.php:389
3612
+ msgid "Import New Layout"
3613
+ msgstr ""
3614
+
3615
+ #: public/editor-build/214-wp/texts.php:390
3616
+ msgid "Import New Popup"
3617
+ msgstr ""
3618
+
3619
+ #: public/editor-build/214-wp/texts.php:392
3620
+ msgid "Import This Story"
3621
+ msgstr ""
3622
+
3623
+ #: public/editor-build/214-wp/texts.php:394
3624
+ msgid "Include By"
3625
+ msgstr ""
3626
+
3627
+ #: public/editor-build/214-wp/texts.php:397
3628
+ msgid "Incorrect"
3629
+ msgstr ""
3630
+
3631
+ #: public/editor-build/214-wp/texts.php:398
3632
+ msgid "Incorrect username or password"
3633
+ msgstr ""
3634
+
3635
+ #: public/editor-build/214-wp/texts.php:399
3636
+ msgid "Info"
3637
+ msgstr ""
3638
+
3639
+ #: public/editor-build/214-wp/texts.php:401
3640
+ msgid "Inline"
3641
+ msgstr ""
3642
+
3643
+ #: public/editor-build/214-wp/texts.php:402
3644
+ msgid "Input"
3645
+ msgstr ""
3646
+
3647
+ #: public/editor-build/214-wp/texts.php:403
3648
+ msgid "Inputted a valid site key"
3649
+ msgstr ""
3650
+
3651
+ #: public/editor-build/214-wp/texts.php:404
3652
+ msgid "Inset"
3653
+ msgstr ""
3654
+
3655
+ #: public/editor-build/214-wp/texts.php:405
3656
+ msgid "Intro"
3657
+ msgstr ""
3658
+
3659
+ #: public/editor-build/214-wp/texts.php:406
3660
+ msgid "Invalid api data"
3661
+ msgstr ""
3662
+
3663
+ #: public/editor-build/214-wp/texts.php:410
3664
+ msgid "Item"
3665
+ msgstr ""
3666
+
3667
+ #: public/editor-build/214-wp/texts.php:413
3668
+ msgid "Keyboard Shortcuts"
3669
+ msgstr ""
3670
+
3671
+ #: public/editor-build/214-wp/texts.php:416
3672
+ msgid "Last Name"
3673
+ msgstr ""
3674
+
3675
+ #: public/editor-build/214-wp/texts.php:417
3676
+ msgid "Lateral"
3677
+ msgstr ""
3678
+
3679
+ #: public/editor-build/214-wp/texts.php:420
3680
+ msgid "Left"
3681
+ msgstr ""
3682
+
3683
+ #: public/editor-build/214-wp/texts.php:430
3684
+ msgid "Links"
3685
+ msgstr ""
3686
+
3687
+ #: public/editor-build/214-wp/texts.php:432
3688
+ msgid "List are not created please connect the support"
3689
+ msgstr ""
3690
+
3691
+ #: public/editor-build/214-wp/texts.php:433
3692
+ msgid "Lists are empty. Please add a new list and try again."
3693
+ msgstr ""
3694
+
3695
+ #: public/editor-build/214-wp/texts.php:434
3696
+ msgid "Loading..."
3697
+ msgstr ""
3698
+
3699
+ #: public/editor-build/214-wp/texts.php:435
3700
+ msgid "Locked"
3701
+ msgstr ""
3702
+
3703
+ #: public/editor-build/214-wp/texts.php:436
3704
+ msgid "Login"
3705
+ msgstr ""
3706
+
3707
+ #: public/editor-build/214-wp/texts.php:437
3708
+ msgid "Login Submit"
3709
+ msgstr ""
3710
+
3711
+ #: public/editor-build/214-wp/texts.php:438
3712
+ msgid "Logout"
3713
+ msgstr ""
3714
+
3715
+ #: public/editor-build/214-wp/texts.php:440
3716
+ msgid "Lost Password"
3717
+ msgstr ""
3718
+
3719
+ #: public/editor-build/214-wp/texts.php:441
3720
+ msgid "Lottie"
3721
+ msgstr ""
3722
+
3723
+ #: public/editor-build/214-wp/texts.php:442
3724
+ msgid "Lottie File"
3725
+ msgstr ""
3726
+
3727
+ #: public/editor-build/214-wp/texts.php:443
3728
+ msgid "Lottie Link"
3729
+ msgstr ""
3730
+
3731
+ #: public/editor-build/214-wp/texts.php:444
3732
+ msgid "Main"
3733
+ msgstr ""
3734
+
3735
+ #: public/editor-build/214-wp/texts.php:449
3736
+ msgid "Manual"
3737
+ msgstr ""
3738
+
3739
+ #: public/editor-build/214-wp/texts.php:452
3740
+ msgid "Mask"
3741
+ msgstr ""
3742
+
3743
+ #: public/editor-build/214-wp/texts.php:453
3744
+ msgid "Max"
3745
+ msgstr ""
3746
+
3747
+ #: public/editor-build/214-wp/texts.php:454
3748
+ msgid "Max Date"
3749
+ msgstr ""
3750
+
3751
+ #: public/editor-build/214-wp/texts.php:455
3752
+ msgid "Max Time"
3753
+ msgstr ""
3754
+
3755
+ #: public/editor-build/214-wp/texts.php:456
3756
+ msgid "Max. File Size"
3757
+ msgstr ""
3758
+
3759
+ #: public/editor-build/214-wp/texts.php:457
3760
+ msgid "Medium"
3761
+ msgstr ""
3762
+
3763
+ #: public/editor-build/214-wp/texts.php:458
3764
+ msgid "Mega Menu"
3765
+ msgstr ""
3766
+
3767
+ #: public/editor-build/214-wp/texts.php:459
3768
+ msgid "Membership"
3769
+ msgstr ""
3770
+
3771
+ #: public/editor-build/214-wp/texts.php:460
3772
+ msgid "Mention"
3773
+ msgstr ""
3774
+
3775
+ #: public/editor-build/214-wp/texts.php:462
3776
+ msgid "Menu Items"
3777
+ msgstr ""
3778
+
3779
+ #: public/editor-build/214-wp/texts.php:464
3780
+ msgid "Menu order"
3781
+ msgstr ""
3782
+
3783
+ #: public/editor-build/214-wp/texts.php:469
3784
+ msgid "Meta"
3785
+ msgstr ""
3786
+
3787
+ #: public/editor-build/214-wp/texts.php:470
3788
+ msgid "Meta Data"
3789
+ msgstr ""
3790
+
3791
+ #: public/editor-build/214-wp/texts.php:473
3792
+ msgid "Min"
3793
+ msgstr ""
3794
+
3795
+ #: public/editor-build/214-wp/texts.php:474
3796
+ msgid "Min Date"
3797
+ msgstr ""
3798
+
3799
+ #: public/editor-build/214-wp/texts.php:475
3800
+ msgid "Min Time"
3801
+ msgstr ""
3802
+
3803
+ #: public/editor-build/214-wp/texts.php:476
3804
+ msgid "Minimal"
3805
+ msgstr ""
3806
+
3807
+ #: public/editor-build/214-wp/texts.php:484
3808
+ msgid "Move left"
3809
+ msgstr ""
3810
+
3811
+ #: public/editor-build/214-wp/texts.php:485
3812
+ msgid "Move right"
3813
+ msgstr ""
3814
+
3815
+ #: public/editor-build/214-wp/texts.php:486
3816
+ msgid "Multiple Selection"
3817
+ msgstr ""
3818
+
3819
+ #: public/editor-build/214-wp/texts.php:487
3820
+ msgid "Muted"
3821
+ msgstr ""
3822
+
3823
+ #: public/editor-build/214-wp/texts.php:489
3824
+ msgid "N/A"
3825
+ msgstr ""
3826
+
3827
+ #: public/editor-build/214-wp/texts.php:491
3828
+ msgid "Native HTML5"
3829
+ msgstr ""
3830
+
3831
+ #: public/editor-build/214-wp/texts.php:492
3832
+ msgid "Nav"
3833
+ msgstr ""
3834
+
3835
+ #: public/editor-build/214-wp/texts.php:494
3836
+ msgid "Need help"
3837
+ msgstr ""
3838
+
3839
+ #: public/editor-build/214-wp/texts.php:497
3840
+ msgid "No results"
3841
+ msgstr ""
3842
+
3843
+ #: public/editor-build/214-wp/texts.php:498
3844
+ msgid "Non Profit"
3845
+ msgstr ""
3846
+
3847
+ #: public/editor-build/214-wp/texts.php:501
3848
+ msgid "Not Required"
3849
+ msgstr ""
3850
+
3851
+ #: public/editor-build/214-wp/texts.php:502
3852
+ msgid "Nothing Found"
3853
+ msgstr ""
3854
+
3855
+ #: public/editor-build/214-wp/texts.php:504
3856
+ msgid "Nothing here yet, make a global popup first."
3857
+ msgstr ""
3858
+
3859
+ #: public/editor-build/214-wp/texts.php:506
3860
+ msgid "Nothing here yet, save a layout first."
3861
+ msgstr ""
3862
+
3863
+ #: public/editor-build/214-wp/texts.php:507
3864
+ msgid "Nothing here yet, save a popup first."
3865
+ msgstr ""
3866
+
3867
+ #: public/editor-build/214-wp/texts.php:508
3868
+ msgid "Nothing here, please refine your search."
3869
+ msgstr ""
3870
+
3871
+ #: public/editor-build/214-wp/texts.php:509
3872
+ msgid "Nr"
3873
+ msgstr ""
3874
+
3875
+ #: public/editor-build/214-wp/texts.php:511
3876
+ msgid "Number of posts"
3877
+ msgstr ""
3878
+
3879
+ #: public/editor-build/214-wp/texts.php:512
3880
+ msgid "Offset"
3881
+ msgstr ""
3882
+
3883
+ #: public/editor-build/214-wp/texts.php:513
3884
+ msgid "On Click"
3885
+ msgstr ""
3886
+
3887
+ #: public/editor-build/214-wp/texts.php:514
3888
+ msgid "On Hover"
3889
+ msgstr ""
3890
+
3891
+ #: public/editor-build/214-wp/texts.php:515
3892
+ msgid "One Page"
3893
+ msgstr ""
3894
+
3895
+ #: public/editor-build/214-wp/texts.php:521
3896
+ msgid "Orientation"
3897
+ msgstr ""
3898
+
3899
+ #: public/editor-build/214-wp/texts.php:523
3900
+ msgid "Outset"
3901
+ msgstr ""
3902
+
3903
+ #: public/editor-build/214-wp/texts.php:525
3904
+ msgid "Overlay "
3905
+ msgstr ""
3906
+
3907
+ #: public/editor-build/214-wp/texts.php:530
3908
+ msgid "Page Layout"
3909
+ msgstr ""
3910
+
3911
+ #: public/editor-build/214-wp/texts.php:532
3912
+ msgid "Page Title"
3913
+ msgstr ""
3914
+
3915
+ #: public/editor-build/214-wp/texts.php:533
3916
+ msgid "Page title"
3917
+ msgstr ""
3918
+
3919
+ #: public/editor-build/214-wp/texts.php:534
3920
+ msgid "Pages"
3921
+ msgstr ""
3922
+
3923
+ #: public/editor-build/214-wp/texts.php:539
3924
+ msgid "Password"
3925
+ msgstr ""
3926
+
3927
+ #: public/editor-build/214-wp/texts.php:540
3928
+ msgid "Password and confirm password is not the same"
3929
+ msgstr ""
3930
+
3931
+ #: public/editor-build/214-wp/texts.php:542
3932
+ msgid "Paste Style"
3933
+ msgstr ""
3934
+
3935
+ #: public/editor-build/214-wp/texts.php:544
3936
+ msgid "Paste your WordPress shortcode here ..."
3937
+ msgstr ""
3938
+
3939
+ #: public/editor-build/214-wp/texts.php:547
3940
+ msgid "Percent"
3941
+ msgstr ""
3942
+
3943
+ #: public/editor-build/214-wp/texts.php:549
3944
+ msgid "Phone Number"
3945
+ msgstr ""
3946
+
3947
+ #: public/editor-build/214-wp/texts.php:550
3948
+ msgid "Placeholder"
3949
+ msgstr ""
3950
+
3951
+ #: public/editor-build/214-wp/texts.php:551
3952
+ msgid "Plain"
3953
+ msgstr ""
3954
+
3955
+ #: public/editor-build/214-wp/texts.php:553
3956
+ msgid "Playlist"
3957
+ msgstr ""
3958
+
3959
+ #: public/editor-build/214-wp/texts.php:554
3960
+ msgid "Playlist Items"
3961
+ msgstr ""
3962
+
3963
+ #: public/editor-build/214-wp/texts.php:558
3964
+ msgid "Popup Close Icon"
3965
+ msgstr ""
3966
+
3967
+ #: public/editor-build/214-wp/texts.php:560
3968
+ msgid "Port"
3969
+ msgstr ""
3970
+
3971
+ #: public/editor-build/214-wp/texts.php:561
3972
+ msgid "Portfolio"
3973
+ msgstr ""
3974
+
3975
+ #: public/editor-build/214-wp/texts.php:564
3976
+ msgid "Post Content"
3977
+ msgstr ""
3978
+
3979
+ #: public/editor-build/214-wp/texts.php:565
3980
+ msgid "Post Excerpt"
3981
+ msgstr ""
3982
+
3983
+ #: public/editor-build/214-wp/texts.php:566
3984
+ msgid "Post Info"
3985
+ msgstr ""
3986
+
3987
+ #: public/editor-build/214-wp/texts.php:567
3988
+ msgid "Post Navigation"
3989
+ msgstr ""
3990
+
3991
+ #: public/editor-build/214-wp/texts.php:568
3992
+ msgid "Post Title"
3993
+ msgstr ""
3994
+
3995
+ #: public/editor-build/214-wp/texts.php:570
3996
+ msgid "Post info"
3997
+ msgstr ""
3998
+
3999
+ #: public/editor-build/214-wp/texts.php:572
4000
+ msgid "Posts Pagination"
4001
+ msgstr ""
4002
+
4003
+ #: public/editor-build/214-wp/texts.php:573
4004
+ msgid "Posts Tags"
4005
+ msgstr ""
4006
+
4007
+ #: public/editor-build/214-wp/texts.php:574
4008
+ msgid "Prefix"
4009
+ msgstr ""
4010
+
4011
+ #: public/editor-build/214-wp/texts.php:576
4012
+ msgid "Press the button above to add popup"
4013
+ msgstr ""
4014
+
4015
+ #: public/editor-build/214-wp/texts.php:578
4016
+ msgid "Price"
4017
+ msgstr ""
4018
+
4019
+ #: public/editor-build/214-wp/texts.php:579
4020
+ msgid "Pricing"
4021
+ msgstr ""
4022
+
4023
+ #: public/editor-build/214-wp/texts.php:582
4024
+ msgid "Product Attributes"
4025
+ msgstr ""
4026
+
4027
+ #: public/editor-build/214-wp/texts.php:583
4028
+ msgid "Product Breadcrumbs"
4029
+ msgstr ""
4030
+
4031
+ #: public/editor-build/214-wp/texts.php:584
4032
+ msgid "Product Content"
4033
+ msgstr ""
4034
+
4035
+ #: public/editor-build/214-wp/texts.php:585
4036
+ msgid "Product Excerpt"
4037
+ msgstr ""
4038
+
4039
+ #: public/editor-build/214-wp/texts.php:586
4040
+ msgid "Product Gallery"
4041
+ msgstr ""
4042
+
4043
+ #: public/editor-build/214-wp/texts.php:589
4044
+ msgid "Product Meta"
4045
+ msgstr ""
4046
+
4047
+ #: public/editor-build/214-wp/texts.php:590
4048
+ msgid "Product Price"
4049
+ msgstr ""
4050
+
4051
+ #: public/editor-build/214-wp/texts.php:591
4052
+ msgid "Product Rating"
4053
+ msgstr ""
4054
+
4055
+ #: public/editor-build/214-wp/texts.php:592
4056
+ msgid "Product Sku"
4057
+ msgstr ""
4058
+
4059
+ #: public/editor-build/214-wp/texts.php:593
4060
+ msgid "Product Stock"
4061
+ msgstr ""
4062
+
4063
+ #: public/editor-build/214-wp/texts.php:594
4064
+ msgid "Product Thumbnail"
4065
+ msgstr ""
4066
+
4067
+ #: public/editor-build/214-wp/texts.php:595
4068
+ msgid "Product Title"
4069
+ msgstr ""
4070
+
4071
+ #: public/editor-build/214-wp/texts.php:598
4072
+ msgid "Products Pagination"
4073
+ msgstr ""
4074
+
4075
+ #: public/editor-build/214-wp/texts.php:599
4076
+ msgid "Products Tags"
4077
+ msgstr ""
4078
+
4079
+ #: public/editor-build/214-wp/texts.php:601
4080
+ msgid "Protected Form"
4081
+ msgstr ""
4082
+
4083
+ #: public/editor-build/214-wp/texts.php:602
4084
+ msgid "Protected Page"
4085
+ msgstr ""
4086
+
4087
+ #: public/editor-build/214-wp/texts.php:604
4088
+ msgid "Publish Page"
4089
+ msgstr ""
4090
+
4091
+ #: public/editor-build/214-wp/texts.php:608
4092
+ msgid "Radio"
4093
+ msgstr ""
4094
+
4095
+ #: public/editor-build/214-wp/texts.php:612
4096
+ msgid "ReCAPTCHA"
4097
+ msgstr ""
4098
+
4099
+ #: public/editor-build/214-wp/texts.php:613
4100
+ msgid "Real-Estate"
4101
+ msgstr ""
4102
+
4103
+ #: public/editor-build/214-wp/texts.php:616
4104
+ msgid "Redirect After Login"
4105
+ msgstr ""
4106
+
4107
+ #: public/editor-build/214-wp/texts.php:617
4108
+ msgid "Redirect After Logout"
4109
+ msgstr ""
4110
+
4111
+ #: public/editor-build/214-wp/texts.php:618
4112
+ msgid "Redo"
4113
+ msgstr ""
4114
+
4115
+ #: public/editor-build/214-wp/texts.php:619
4116
+ msgid "Refresh"
4117
+ msgstr ""
4118
+
4119
+ #: public/editor-build/214-wp/texts.php:620
4120
+ msgid "Register"
4121
+ msgstr ""
4122
+
4123
+ #: public/editor-build/214-wp/texts.php:621
4124
+ msgid "Register Info"
4125
+ msgstr ""
4126
+
4127
+ #: public/editor-build/214-wp/texts.php:622
4128
+ msgid "Related Products"
4129
+ msgstr ""
4130
+
4131
+ #: public/editor-build/214-wp/texts.php:623
4132
+ msgid "Related Products Pagination"
4133
+ msgstr ""
4134
+
4135
+ #: public/editor-build/214-wp/texts.php:624
4136
+ msgid "Related Products Tags"
4137
+ msgstr ""
4138
+
4139
+ #: public/editor-build/214-wp/texts.php:625
4140
+ msgid "Religion"
4141
+ msgstr ""
4142
+
4143
+ #: public/editor-build/214-wp/texts.php:626
4144
+ msgid "Remember me"
4145
+ msgstr ""
4146
+
4147
+ #: public/editor-build/214-wp/texts.php:628
4148
+ msgid "Repair"
4149
+ msgstr ""
4150
+
4151
+ #: public/editor-build/214-wp/texts.php:629
4152
+ msgid "Replace global styling"
4153
+ msgstr ""
4154
+
4155
+ #: public/editor-build/214-wp/texts.php:630
4156
+ msgid "Reply"
4157
+ msgstr ""
4158
+
4159
+ #: public/editor-build/214-wp/texts.php:631
4160
+ msgid "Reply-To"
4161
+ msgstr ""
4162
+
4163
+ #: public/editor-build/214-wp/texts.php:633
4164
+ msgid "Reset Password"
4165
+ msgstr ""
4166
+
4167
+ #: public/editor-build/214-wp/texts.php:634
4168
+ msgid "Responsive Zoom In / Out"
4169
+ msgstr ""
4170
+
4171
+ #: public/editor-build/214-wp/texts.php:635
4172
+ msgid "Reverse"
4173
+ msgstr ""
4174
+
4175
+ #: public/editor-build/214-wp/texts.php:637
4176
+ msgid "Review"
4177
+ msgstr ""
4178
+
4179
+ #: public/editor-build/214-wp/texts.php:638
4180
+ msgid "Right"
4181
+ msgstr ""
4182
+
4183
+ #: public/editor-build/214-wp/texts.php:641
4184
+ msgid "Rotate"
4185
+ msgstr ""
4186
+
4187
+ #: public/editor-build/214-wp/texts.php:652
4188
+ msgid "SELECT ACCOUNT"
4189
+ msgstr ""
4190
+
4191
+ #: public/editor-build/214-wp/texts.php:653
4192
+ msgid "SELECT FOR WHAT TEMPLATE IS USED"
4193
+ msgstr ""
4194
+
4195
+ #: public/editor-build/214-wp/texts.php:654
4196
+ msgid "SELECT LIST"
4197
+ msgstr ""
4198
+
4199
+ #: public/editor-build/214-wp/texts.php:655
4200
+ msgid "SPAN"
4201
+ msgstr ""
4202
+
4203
+ #: public/editor-build/214-wp/texts.php:657
4204
+ msgid "START BUILDING YOUR POPUP"
4205
+ msgstr ""
4206
+
4207
+ #: public/editor-build/214-wp/texts.php:659
4208
+ msgid "Sale"
4209
+ msgstr ""
4210
+
4211
+ #: public/editor-build/214-wp/texts.php:660
4212
+ msgid "Same Page"
4213
+ msgstr ""
4214
+
4215
+ #: public/editor-build/214-wp/texts.php:662
4216
+ msgid "Save Draft"
4217
+ msgstr ""
4218
+
4219
+ #: public/editor-build/214-wp/texts.php:663
4220
+ msgid "Save Draft / Update Page"
4221
+ msgstr ""
4222
+
4223
+ #: public/editor-build/214-wp/texts.php:664
4224
+ msgid "Save Layout"
4225
+ msgstr ""
4226
+
4227
+ #: public/editor-build/214-wp/texts.php:665
4228
+ msgid "Saved"
4229
+ msgstr ""
4230
+
4231
+ #: public/editor-build/214-wp/texts.php:666
4232
+ msgid "Saved Library is syncing to your Account"
4233
+ msgstr ""
4234
+
4235
+ #: public/editor-build/214-wp/texts.php:667
4236
+ msgid "Saved Popups"
4237
+ msgstr ""
4238
+
4239
+ #: public/editor-build/214-wp/texts.php:668
4240
+ msgid "Saving"
4241
+ msgstr ""
4242
+
4243
+ #: public/editor-build/214-wp/texts.php:669
4244
+ msgid "Scroll Page Behind"
4245
+ msgstr ""
4246
+
4247
+ #: public/editor-build/214-wp/texts.php:670
4248
+ msgid "Search"
4249
+ msgstr ""
4250
+
4251
+ #: public/editor-build/214-wp/texts.php:671
4252
+ msgid "Search element"
4253
+ msgstr ""
4254
+
4255
+ #: public/editor-build/214-wp/texts.php:672
4256
+ msgid "Searching..."
4257
+ msgstr ""
4258
+
4259
+ #: public/editor-build/214-wp/texts.php:673
4260
+ msgid "Seconds"
4261
+ msgstr ""
4262
+
4263
+ #: public/editor-build/214-wp/texts.php:674
4264
+ msgid "Section"
4265
+ msgstr ""
4266
+
4267
+ #: public/editor-build/214-wp/texts.php:676
4268
+ msgid "Select Parent Element"
4269
+ msgstr ""
4270
+
4271
+ #: public/editor-build/214-wp/texts.php:678
4272
+ msgid "Select a menu from the element options"
4273
+ msgstr ""
4274
+
4275
+ #: public/editor-build/214-wp/texts.php:679
4276
+ msgid "Select an element on the page to display more settings"
4277
+ msgstr ""
4278
+
4279
+ #: public/editor-build/214-wp/texts.php:680
4280
+ msgid "Select tags"
4281
+ msgstr ""
4282
+
4283
+ #: public/editor-build/214-wp/texts.php:681
4284
+ msgid "Semi Bold"
4285
+ msgstr ""
4286
+
4287
+ #: public/editor-build/214-wp/texts.php:682
4288
+ msgid "Separator"
4289
+ msgstr ""
4290
+
4291
+ #: public/editor-build/214-wp/texts.php:686
4292
+ msgid "Shape"
4293
+ msgstr ""
4294
+
4295
+ #: public/editor-build/214-wp/texts.php:687
4296
+ msgid "Shop Cart"
4297
+ msgstr ""
4298
+
4299
+ #: public/editor-build/214-wp/texts.php:688
4300
+ msgid "Shop Categories"
4301
+ msgstr ""
4302
+
4303
+ #: public/editor-build/214-wp/texts.php:689
4304
+ msgid "Shop Pages"
4305
+ msgstr ""
4306
+
4307
+ #: public/editor-build/214-wp/texts.php:690
4308
+ msgid "Shop Products"
4309
+ msgstr ""
4310
+
4311
+ #: public/editor-build/214-wp/texts.php:692
4312
+ msgid "Shortcuts"
4313
+ msgstr ""
4314
+
4315
+ #: public/editor-build/214-wp/texts.php:693
4316
+ msgid "Shortname"
4317
+ msgstr ""
4318
+
4319
+ #: public/editor-build/214-wp/texts.php:697
4320
+ msgid "Show Hidden Elements"
4321
+ msgstr ""
4322
+
4323
+ #: public/editor-build/214-wp/texts.php:698
4324
+ msgid "Show Meta Data"
4325
+ msgstr ""
4326
+
4327
+ #: public/editor-build/214-wp/texts.php:699
4328
+ msgid "Show Social Context"
4329
+ msgstr ""
4330
+
4331
+ #: public/editor-build/214-wp/texts.php:700
4332
+ msgid "Show message"
4333
+ msgstr ""
4334
+
4335
+ #: public/editor-build/214-wp/texts.php:702
4336
+ msgid "Show to"
4337
+ msgstr ""
4338
+
4339
+ #: public/editor-build/214-wp/texts.php:704
4340
+ msgid "SignUp"
4341
+ msgstr ""
4342
+
4343
+ #: public/editor-build/214-wp/texts.php:706
4344
+ msgid "Skin"
4345
+ msgstr ""
4346
+
4347
+ #: public/editor-build/214-wp/texts.php:707
4348
+ msgid "Skin 1"
4349
+ msgstr ""
4350
+
4351
+ #: public/editor-build/214-wp/texts.php:708
4352
+ msgid "Skin 2"
4353
+ msgstr ""
4354
+
4355
+ #: public/editor-build/214-wp/texts.php:709
4356
+ msgid "Skin 3"
4357
+ msgstr ""
4358
+
4359
+ #: public/editor-build/214-wp/texts.php:710
4360
+ msgid "Skin 4"
4361
+ msgstr ""
4362
+
4363
+ #: public/editor-build/214-wp/texts.php:711
4364
+ msgid "Skip"
4365
+ msgstr ""
4366
+
4367
+ #: public/editor-build/214-wp/texts.php:712
4368
+ msgid "Sku"
4369
+ msgstr ""
4370
+
4371
+ #: public/editor-build/214-wp/texts.php:720
4372
+ msgid "Some integrations are available only in PRO"
4373
+ msgstr ""
4374
+
4375
+ #: public/editor-build/214-wp/texts.php:721
4376
+ msgid "Something went wrong"
4377
+ msgstr ""
4378
+
4379
+ #: public/editor-build/214-wp/texts.php:724
4380
+ msgid "Source"
4381
+ msgstr ""
4382
+
4383
+ #: public/editor-build/214-wp/texts.php:725
4384
+ msgid "Source ID"
4385
+ msgstr ""
4386
+
4387
+ #: public/editor-build/214-wp/texts.php:726
4388
+ msgid "Source Type"
4389
+ msgstr ""
4390
+
4391
+ #: public/editor-build/214-wp/texts.php:729
4392
+ msgid "Span"
4393
+ msgstr ""
4394
+
4395
+ #: public/editor-build/214-wp/texts.php:731
4396
+ msgid "Specify a start time (in seconds)"
4397
+ msgstr ""
4398
+
4399
+ #: public/editor-build/214-wp/texts.php:732
4400
+ msgid "Specify an end time (in seconds)"
4401
+ msgstr ""
4402
+
4403
+ #: public/editor-build/214-wp/texts.php:734
4404
+ msgid "Sport"
4405
+ msgstr ""
4406
+
4407
+ #: public/editor-build/214-wp/texts.php:736
4408
+ msgid "Stars"
4409
+ msgstr ""
4410
+
4411
+ #: public/editor-build/214-wp/texts.php:737
4412
+ msgid "Stars Bg"
4413
+ msgstr ""
4414
+
4415
+ #: public/editor-build/214-wp/texts.php:742
4416
+ msgid "Stock"
4417
+ msgstr ""
4418
+
4419
+ #: public/editor-build/214-wp/texts.php:744
4420
+ msgid "Story"
4421
+ msgstr ""
4422
+
4423
+ #: public/editor-build/214-wp/texts.php:745
4424
+ msgid "Strike"
4425
+ msgstr ""
4426
+
4427
+ #: public/editor-build/214-wp/texts.php:747
4428
+ msgid "Styles"
4429
+ msgstr ""
4430
+
4431
+ #: public/editor-build/214-wp/texts.php:749
4432
+ msgid "Sub Title"
4433
+ msgstr ""
4434
+
4435
+ #: public/editor-build/214-wp/texts.php:750
4436
+ msgid "Subject"
4437
+ msgstr ""
4438
+
4439
+ #: public/editor-build/214-wp/texts.php:751
4440
+ msgid "Subtotal"
4441
+ msgstr ""
4442
+
4443
+ #: public/editor-build/214-wp/texts.php:753
4444
+ msgid "Suffix"
4445
+ msgstr ""
4446
+
4447
+ #: public/editor-build/214-wp/texts.php:754
4448
+ msgid "Support"
4449
+ msgstr ""
4450
+
4451
+ #: public/editor-build/214-wp/texts.php:756
4452
+ msgid "Switch to Draft"
4453
+ msgstr ""
4454
+
4455
+ #: public/editor-build/214-wp/texts.php:758
4456
+ msgid "Switch to desktop to add popup"
4457
+ msgstr ""
4458
+
4459
+ #: public/editor-build/214-wp/texts.php:759
4460
+ msgid "Switcher"
4461
+ msgstr ""
4462
+
4463
+ #: public/editor-build/214-wp/texts.php:760
4464
+ msgid "Switcher Tabs"
4465
+ msgstr ""
4466
+
4467
+ #: public/editor-build/214-wp/texts.php:761
4468
+ msgid "Sync Now"
4469
+ msgstr ""
4470
+
4471
+ #: public/editor-build/214-wp/texts.php:762
4472
+ msgid "TTF File"
4473
+ msgstr ""
4474
+
4475
+ #: public/editor-build/214-wp/texts.php:763
4476
+ msgid "Tab"
4477
+ msgstr ""
4478
+
4479
+ #: public/editor-build/214-wp/texts.php:764
4480
+ msgid "Table"
4481
+ msgstr ""
4482
+
4483
+ #: public/editor-build/214-wp/texts.php:765
4484
+ msgid "Table Head"
4485
+ msgstr ""
4486
+
4487
+ #: public/editor-build/214-wp/texts.php:766
4488
+ msgid "Table Sidebar"
4489
+ msgstr ""
4490
+
4491
+ #: public/editor-build/214-wp/texts.php:769
4492
+ msgid "Tabs Items"
4493
+ msgstr ""
4494
+
4495
+ #: public/editor-build/214-wp/texts.php:771
4496
+ msgid "Tags"
4497
+ msgstr ""
4498
+
4499
+ #: public/editor-build/214-wp/texts.php:773
4500
+ msgid "Take over"
4501
+ msgstr ""
4502
+
4503
+ #: public/editor-build/214-wp/texts.php:774
4504
+ msgid "Take over failed please refresh the page"
4505
+ msgstr ""
4506
+
4507
+ #: public/editor-build/214-wp/texts.php:776
4508
+ msgid "Team"
4509
+ msgstr ""
4510
+
4511
+ #: public/editor-build/214-wp/texts.php:777
4512
+ msgid "Tel"
4513
+ msgstr ""
4514
+
4515
+ #: public/editor-build/214-wp/texts.php:778
4516
+ msgid "Testimonials"
4517
+ msgstr ""
4518
+
4519
+ #: public/editor-build/214-wp/texts.php:780
4520
+ msgid "The element you have selected doesn't have more settings"
4521
+ msgstr ""
4522
+
4523
+ #: public/editor-build/214-wp/texts.php:781
4524
+ msgid "The email address format is not valid"
4525
+ msgstr ""
4526
+
4527
+ #: public/editor-build/214-wp/texts.php:782
4528
+ msgid "The integration is not responding, please try again or verify the account credentials"
4529
+ msgstr ""
4530
+
4531
+ #: public/editor-build/214-wp/texts.php:783
4532
+ msgid "Theme"
4533
+ msgstr ""
4534
+
4535
+ #: public/editor-build/214-wp/texts.php:784
4536
+ msgid "There are no choices"
4537
+ msgstr ""
4538
+
4539
+ #: public/editor-build/214-wp/texts.php:786
4540
+ msgid "This is Lottie .json URL. Get more from LottieFiles.com."
4541
+ msgstr ""
4542
+
4543
+ #: public/editor-build/214-wp/texts.php:787
4544
+ msgid "This page needs a refresh. You’ve probably updated this page (or another page) in a different tab or browser."
4545
+ msgstr ""
4546
+
4547
+ #: public/editor-build/214-wp/texts.php:788
4548
+ msgid "Thumbs"
4549
+ msgstr ""
4550
+
4551
+ #: public/editor-build/214-wp/texts.php:789
4552
+ msgid "Time"
4553
+ msgstr ""
4554
+
4555
+ #: public/editor-build/214-wp/texts.php:792
4556
+ msgid "Timeline Items"
4557
+ msgstr ""
4558
+
4559
+ #: public/editor-build/214-wp/texts.php:793
4560
+ msgid "Timeline Labels"
4561
+ msgstr ""
4562
+
4563
+ #: public/editor-build/214-wp/texts.php:794
4564
+ msgid "Timer"
4565
+ msgstr ""
4566
+
4567
+ #: public/editor-build/214-wp/texts.php:795
4568
+ msgid "Tip: Use these shortcodes to populate your template"
4569
+ msgstr ""
4570
+
4571
+ #: public/editor-build/214-wp/texts.php:796
4572
+ msgid "Tip: You can browse the Google font library"
4573
+ msgstr ""
4574
+
4575
+ #: public/editor-build/214-wp/texts.php:798
4576
+ msgid "Titles"
4577
+ msgstr ""
4578
+
4579
+ #: public/editor-build/214-wp/texts.php:799
4580
+ msgid "To Dashboard"
4581
+ msgstr ""
4582
+
4583
+ #: public/editor-build/214-wp/texts.php:801
4584
+ msgid "Top"
4585
+ msgstr ""
4586
+
4587
+ #: public/editor-build/214-wp/texts.php:802
4588
+ msgid "Total"
4589
+ msgstr ""
4590
+
4591
+ #: public/editor-build/214-wp/texts.php:804
4592
+ msgid "Travel"
4593
+ msgstr ""
4594
+
4595
+ #: public/editor-build/214-wp/texts.php:805
4596
+ msgid "Trigger Popup Only Once"
4597
+ msgstr ""
4598
+
4599
+ #: public/editor-build/214-wp/texts.php:806
4600
+ msgid "Triggers"
4601
+ msgstr ""
4602
+
4603
+ #: public/editor-build/214-wp/texts.php:807
4604
+ msgid "Try Again"
4605
+ msgstr ""
4606
+
4607
+ #: public/editor-build/214-wp/texts.php:808
4608
+ msgid "Tweet"
4609
+ msgstr ""
4610
+
4611
+ #: public/editor-build/214-wp/texts.php:809
4612
+ msgid "Twitter"
4613
+ msgstr ""
4614
+
4615
+ #: public/editor-build/214-wp/texts.php:811
4616
+ msgid "Type to Search ..."
4617
+ msgstr ""
4618
+
4619
+ #: public/editor-build/214-wp/texts.php:814
4620
+ msgid "UPLOAD"
4621
+ msgstr ""
4622
+
4623
+ #: public/editor-build/214-wp/texts.php:815
4624
+ msgid "UPLOAD FONT"
4625
+ msgstr ""
4626
+
4627
+ #: public/editor-build/214-wp/texts.php:817
4628
+ msgid "USE CUSTOM TEMPLATE"
4629
+ msgstr ""
4630
+
4631
+ #: public/editor-build/214-wp/texts.php:818
4632
+ msgid "Unable to insert block. Please try again or contact support"
4633
+ msgstr ""
4634
+
4635
+ #: public/editor-build/214-wp/texts.php:819
4636
+ msgid "Unable to insert layout. Please try again or contact support"
4637
+ msgstr ""
4638
+
4639
+ #: public/editor-build/214-wp/texts.php:820
4640
+ msgid "Unable to insert popup. Please try again or contact support"
4641
+ msgstr ""
4642
+
4643
+ #: public/editor-build/214-wp/texts.php:821
4644
+ msgid "Underline"
4645
+ msgstr ""
4646
+
4647
+ #: public/editor-build/214-wp/texts.php:822
4648
+ msgid "Undo"
4649
+ msgstr ""
4650
+
4651
+ #: public/editor-build/214-wp/texts.php:823
4652
+ msgid "Unlocked"
4653
+ msgstr ""
4654
+
4655
+ #: public/editor-build/214-wp/texts.php:824
4656
+ msgid "Unsuccessful sync"
4657
+ msgstr ""
4658
+
4659
+ #: public/editor-build/214-wp/texts.php:826
4660
+ msgid "Upgrade to PRO to use this block"
4661
+ msgstr ""
4662
+
4663
+ #: public/editor-build/214-wp/texts.php:827
4664
+ msgid "Upgrade to PRO to use this element"
4665
+ msgstr ""
4666
+
4667
+ #: public/editor-build/214-wp/texts.php:828
4668
+ msgid "Upgrade to PRO to use this integration"
4669
+ msgstr ""
4670
+
4671
+ #: public/editor-build/214-wp/texts.php:829
4672
+ msgid "Upgrade to PRO to use this layout"
4673
+ msgstr ""
4674
+
4675
+ #: public/editor-build/214-wp/texts.php:830
4676
+ msgid "Upgrade to PRO to use this story"
4677
+ msgstr ""
4678
+
4679
+ #: public/editor-build/214-wp/texts.php:832
4680
+ msgid "Upsell"
4681
+ msgstr ""
4682
+
4683
+ #: public/editor-build/214-wp/texts.php:833
4684
+ msgid "Upsell Pagination"
4685
+ msgstr ""
4686
+
4687
+ #: public/editor-build/214-wp/texts.php:834
4688
+ msgid "Upsell Tags"
4689
+ msgstr ""
4690
+
4691
+ #: public/editor-build/214-wp/texts.php:835
4692
+ msgid "Url"
4693
+ msgstr ""
4694
+
4695
+ #: public/editor-build/214-wp/texts.php:837
4696
+ msgid "Username"
4697
+ msgstr ""
4698
+
4699
+ #: public/editor-build/214-wp/texts.php:838
4700
+ msgid "Users"
4701
+ msgstr ""
4702
+
4703
+ #: public/editor-build/214-wp/texts.php:839
4704
+ msgid "Value"
4705
+ msgstr ""
4706
+
4707
+ #: public/editor-build/214-wp/texts.php:840
4708
+ msgid "Values"
4709
+ msgstr ""
4710
+
4711
+ #: public/editor-build/214-wp/texts.php:841
4712
+ msgid "Verification process failed, please make sure you have done the following three things and try again in a few minutes."
4713
+ msgstr ""
4714
+
4715
+ #: public/editor-build/214-wp/texts.php:842
4716
+ msgid "Vertical"
4717
+ msgstr ""
4718
+
4719
+ #: public/editor-build/214-wp/texts.php:843
4720
+ msgid "Vertical Align"
4721
+ msgstr ""
4722
+
4723
+ #: public/editor-build/214-wp/texts.php:844
4724
+ msgid "Vertical Offset"
4725
+ msgstr ""
4726
+
4727
+ #: public/editor-build/214-wp/texts.php:846
4728
+ msgid "View as"
4729
+ msgstr ""
4730
+
4731
+ #: public/editor-build/214-wp/texts.php:847
4732
+ msgid "Vimeo"
4733
+ msgstr ""
4734
+
4735
+ #: public/editor-build/214-wp/texts.php:848
4736
+ msgid "Volume"
4737
+ msgstr ""
4738
+
4739
+ #: public/editor-build/214-wp/texts.php:849
4740
+ msgid "WHAT WILL TRIGGER THE POPUP TO OPEN"
4741
+ msgstr ""
4742
+
4743
+ #: public/editor-build/214-wp/texts.php:850
4744
+ msgid "WHERE DO YOU WANT TO DISPLAY IT?"
4745
+ msgstr ""
4746
+
4747
+ #: public/editor-build/214-wp/texts.php:851
4748
+ msgid "WOFF File"
4749
+ msgstr ""
4750
+
4751
+ #: public/editor-build/214-wp/texts.php:852
4752
+ msgid "WOFF2 File"
4753
+ msgstr ""
4754
+
4755
+ #: public/editor-build/214-wp/texts.php:853
4756
+ msgid "WOOCart"
4757
+ msgstr ""
4758
+
4759
+ #: public/editor-build/214-wp/texts.php:854
4760
+ msgid "WOORating"
4761
+ msgstr ""
4762
+
4763
+ #: public/editor-build/214-wp/texts.php:856
4764
+ msgid "When Finished"
4765
+ msgstr ""
4766
+
4767
+ #: public/editor-build/214-wp/texts.php:859
4768
+ msgid "Woo Product"
4769
+ msgstr ""
4770
+
4771
+ #: public/editor-build/214-wp/texts.php:860
4772
+ msgid "WordPress"
4773
+ msgstr ""
4774
+
4775
+ #: public/editor-build/214-wp/texts.php:861
4776
+ msgid "YOUR PAGE IS READY TO PUBLISH!"
4777
+ msgstr ""
4778
+
4779
+ #: public/editor-build/214-wp/texts.php:863
4780
+ msgid "You can't add it again"
4781
+ msgstr ""
4782
+
4783
+ #: public/editor-build/214-wp/texts.php:864
4784
+ msgid "You can’t make changes"
4785
+ msgstr ""
4786
+
4787
+ #: public/editor-build/214-wp/texts.php:865
4788
+ msgid "You have successfully connect the form with"
4789
+ msgstr ""
4790
+
4791
+ #: public/editor-build/214-wp/texts.php:866
4792
+ msgid "You must be have one font added"
4793
+ msgstr ""
4794
+
4795
+ #: public/editor-build/214-wp/texts.php:867
4796
+ msgid "You must be have one selected item"
4797
+ msgstr ""
4798
+
4799
+ #: public/editor-build/214-wp/texts.php:868
4800
+ msgid "You must specify a title"
4801
+ msgstr ""
4802
+
4803
+ #: public/editor-build/214-wp/texts.php:870
4804
+ msgid "Your Plugin version is incompatible with Account version, please update plugin"
4805
+ msgstr ""
4806
+
4807
+ #: public/editor-build/214-wp/texts.php:871
4808
+ msgid "Your block was saved without screenshot, browser is not compatible"
4809
+ msgstr ""
4810
+
4811
+ #: public/editor-build/214-wp/texts.php:872
4812
+ msgid "Your link is not correct"
4813
+ msgstr ""
4814
+
4815
+ #: public/editor-build/214-wp/texts.php:873
4816
+ msgid "Youtube"
4817
+ msgstr ""
4818
+
4819
+ #: public/editor-build/214-wp/texts.php:881
4820
+ msgid "block-name"
4821
+ msgstr ""
4822
+
4823
+ #: public/editor-build/214-wp/texts.php:883
4824
+ msgid "here"
4825
+ msgstr ""
4826
+
4827
+ #: public/editor-build/214-wp/texts.php:885
4828
+ msgid "is already editing project"
4829
+ msgstr ""
4830
+
4831
+ #: public/editor-build/214-wp/texts.php:886
4832
+ msgid "is currently working on this page. Do you want to take over"
4833
+ msgstr ""
4834
+
4835
+ #: public/editor-build/214-wp/texts.php:891
4836
+ msgid "remove this element"
4837
+ msgstr ""
4838
+
4839
+ #: public/editor-build/214-wp/texts.php:892
4840
+ msgid "required"
4841
+ msgstr ""
4842
+
4843
+ #: public/editor-build/214-wp/texts.php:894
4844
+ msgid "story"
4845
+ msgstr ""
4846
+
4847
+ #: public/main.php:225
4848
+ msgid "Edit %s with %s"
4849
+ msgstr ""
public/asset-enqueue-manager.php CHANGED
@@ -214,7 +214,7 @@ class Brizy_Public_AssetEnqueueManager {
214
  $this->enqueued[ $handle ] = $asset;
215
  break;
216
  case Asset::TYPE_FILE:
217
- wp_register_style( $handle, Brizy_SiteUrlReplacer::restoreSiteUrl( $asset->getUrl() ), [], BRIZY_VERSION );
218
  wp_enqueue_style( $handle );
219
  $this->enqueued[ $handle ] = $asset;
220
  break;
@@ -229,7 +229,7 @@ class Brizy_Public_AssetEnqueueManager {
229
  $this->enqueued[ $handle ] = $asset;
230
  break;
231
  case Asset::TYPE_FILE:
232
- wp_register_script( $handle, Brizy_SiteUrlReplacer::restoreSiteUrl( $asset->getUrl() ), [], BRIZY_VERSION, true );
233
  wp_enqueue_script( $handle );
234
  $this->enqueued[ $handle ] = $asset;
235
  break;
214
  $this->enqueued[ $handle ] = $asset;
215
  break;
216
  case Asset::TYPE_FILE:
217
+ wp_register_style( $handle, Brizy_SiteUrlReplacer::restoreAssetUrl( $asset->getUrl() ), [], BRIZY_VERSION );
218
  wp_enqueue_style( $handle );
219
  $this->enqueued[ $handle ] = $asset;
220
  break;
229
  $this->enqueued[ $handle ] = $asset;
230
  break;
231
  case Asset::TYPE_FILE:
232
+ wp_register_script( $handle, Brizy_SiteUrlReplacer::restoreAssetUrl( $asset->getUrl() ), [], BRIZY_VERSION, true );
233
  wp_enqueue_script( $handle );
234
  $this->enqueued[ $handle ] = $asset;
235
  break;
public/editor-build/214-wp/editor/js/editor.js DELETED
@@ -1 +0,0 @@
1
- !function(e){function t(t){for(var n,i,l=t[0],s=t[1],c=t[2],u=0,p=[];u<l.length;u++)i=l[u],Object.prototype.hasOwnProperty.call(a,i)&&a[i]&&p.push(a[i][0]),a[i]=0;for(n in s)Object.prototype.hasOwnProperty.call(s,n)&&(e[n]=s[n]);for(d&&d(t);p.length;)p.shift()();return r.push.apply(r,c||[]),o()}function o(){for(var e,t=0;t<r.length;t++){for(var o=r[t],n=!0,l=1;l<o.length;l++){var s=o[l];0!==a[s]&&(n=!1)}n&&(r.splice(t--,1),e=i(i.s=o[0]))}return e}var n={},a={0:0},r=[];function i(t){if(n[t])return n[t].exports;var o=n[t]={i:t,l:!1,exports:{}};return e[t].call(o.exports,o,o.exports,i),o.l=!0,o.exports}i.e=function(e){var t=[],o=a[e];if(0!==o)if(o)t.push(o[2]);else{var n=new Promise((function(t,n){o=a[e]=[t,n]}));t.push(o[2]=n);var r,l=document.createElement("script");l.charset="utf-8",l.timeout=120,i.nc&&l.setAttribute("nonce",i.nc),l.src=function(e){return i.p+""+({}[e]||e)+".js"}(e);var s=new Error;r=function(t){l.onerror=l.onload=null,clearTimeout(c);var o=a[e];if(0!==o){if(o){var n=t&&("load"===t.type?"missing":t.type),r=t&&t.target&&t.target.src;s.message="Loading chunk "+e+" failed.\n("+n+": "+r+")",s.name="ChunkLoadError",s.type=n,s.request=r,o[1](s)}a[e]=void 0}};var c=setTimeout((function(){r({type:"timeout",target:l})}),12e4);l.onerror=l.onload=r,document.head.appendChild(l)}return Promise.all(t)},i.m=e,i.c=n,i.d=function(e,t,o){i.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:o})},i.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},i.t=function(e,t){if(1&t&&(e=i(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var o=Object.create(null);if(i.r(o),Object.defineProperty(o,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var n in e)i.d(o,n,function(t){return e[t]}.bind(null,n));return o},i.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return i.d(t,"a",t),t},i.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},i.p="",i.oe=function(e){throw console.error(e),e};var l=window.webpackJsonp=window.webpackJsonp||[],s=l.push.bind(l);l.push=t,l=l.slice();for(var c=0;c<l.length;c++)t(l[c]);var d=s;r.push([640,1]),o()}([,function(e,t,o){"use strict";var n=o(273);o.d(t,"a",(function(){return n.a}))},,function(e,t,o){"use strict";o.r(t),o.d(t,"saveOnChanges",(function(){return c})),o.d(t,"defaultValueKey",(function(){return i.a})),o.d(t,"defaultValueValue",(function(){return i.b})),o.d(t,"deviceStateValueByKey",(function(){return i.c})),o.d(t,"makeKeyByStateDevice",(function(){return i.e})),o.d(t,"onChangeBgImage",(function(){return v})),o.d(t,"onChangeBgImageBgOpacity",(function(){return f})),o.d(t,"onChangeBgImageDependencies",(function(){return y})),o.d(t,"onChangeBgImageColumnAndRowSyncMobile",(function(){return O})),o.d(t,"onChangeBorderStyle2",(function(){return C})),o.d(t,"onChangeElementBorderStyleDependencies2",(function(){return j})),o.d(t,"onChangeContainerBorderStyleDependencies2",(function(){return P})),o.d(t,"onChangeBorderColorHexAndOpacity2",(function(){return B})),o.d(t,"onChangeBorderColorHexAndOpacityPalette2",(function(){return w})),o.d(t,"onChangeElementBorderColorHexAndOpacityDependencies2",(function(){return T})),o.d(t,"onChangeContainerBorderColorHexAndOpacityDependencies2",(function(){return z})),o.d(t,"onChangeBorderColorHexAndOpacityColumnAndRowSyncTablet2",(function(){return E})),o.d(t,"onChangeBorderColorHexAndOpacityColumnAndRowSyncMobile2",(function(){return k})),o.d(t,"onChangeBorderColorPalette2",(function(){return H})),o.d(t,"onChangeBorderColorPaletteOpacity2",(function(){return F})),o.d(t,"onChangeBorderWidthType2",(function(){return _})),o.d(t,"onChangeBorderWidthGrouped2",(function(){return R})),o.d(t,"onChangeBorderWidthGroupedDependencies2",(function(){return L})),o.d(t,"onChangeBorderWidthUngrouped2",(function(){return M})),o.d(t,"onChangeBorderWidthUngroupedDependencies2",(function(){return I})),o.d(t,"onChangeBorderRadiusGrouped",(function(){return V})),o.d(t,"onChangeBorderRadiusGroupedDependencies",(function(){return D})),o.d(t,"onChangeBorderRadiusUngrouped",(function(){return $})),o.d(t,"onChangeBorderRadiusUngroupedDependencies",(function(){return G})),o.d(t,"onChangeColorHexAndOpacity",(function(){return U})),o.d(t,"onChangeColorHexAndOpacityPalette",(function(){return K})),o.d(t,"onChangeColorPalette",(function(){return Y})),o.d(t,"onChangeColorPaletteOpacity",(function(){return q})),o.d(t,"onChangeBgColorType2",(function(){return Z})),o.d(t,"onChangeGradientRange2",(function(){return J})),o.d(t,"onChangeBgColorHexAndOpacity2",(function(){return Q})),o.d(t,"onChangeBgColorHexAndOpacityPalette2",(function(){return ee})),o.d(t,"onChangeBgColorHexAndOpacityDependencies2",(function(){return te})),o.d(t,"onChangeBgColorHexAndOpacityColumnAndRowSyncMobile2",(function(){return oe})),o.d(t,"onChangeBgColorPalette2",(function(){return ne})),o.d(t,"onChangeBgColorPaletteOpacity2",(function(){return ae})),o.d(t,"onChangeBoxShadowHexAndOpacity2",(function(){return se})),o.d(t,"onChangeBoxShadowHexAndOpacityPalette2",(function(){return ce})),o.d(t,"onChangeBoxShadowHexAndOpacityDependencies2",(function(){return de})),o.d(t,"onChangeBoxShadowPalette2",(function(){return ue})),o.d(t,"onChangeBoxShadowPaletteOpacity2",(function(){return pe})),o.d(t,"onChangeBoxShadowType2",(function(){return ie})),o.d(t,"onChangeBoxShadowTypeDependencies2",(function(){return le})),o.d(t,"onChangeBoxShadowFields2",(function(){return be})),o.d(t,"onChangeBoxShadowFieldsDependencies2",(function(){return me})),o.d(t,"onChangeBoxShadowOpacity2",(function(){return he})),o.d(t,"onChangeTextShadowType",(function(){return ge})),o.d(t,"onChangeTextShadowHexAndOpacity",(function(){return ve})),o.d(t,"onChangeTextShadowHexAndOpacityPalette",(function(){return fe})),o.d(t,"onChangeTextShadowPalette",(function(){return ye})),o.d(t,"onChangeTextShadowPaletteOpacity",(function(){return Oe})),o.d(t,"onChangeTextShadowFields",(function(){return Se})),o.d(t,"onChangePaddingGrouped",(function(){return Pe})),o.d(t,"onChangePaddingUngrouped",(function(){return Be})),o.d(t,"onChangeMarginGrouped",(function(){return ze})),o.d(t,"onChangeMarginUngrouped",(function(){return Ee})),o.d(t,"onChangeElementSectionBoxShadowHexAndOpacityDependencies",(function(){return ke})),o.d(t,"onChangeElementRichTextBgColorType2",(function(){return He})),o.d(t,"onChangeElementProgressBarBg2ColorHexAndOpacity",(function(){return Fe})),o.d(t,"onChangeElementProgressBarBg2ColorHexAndOpacityPalette",(function(){return _e})),o.d(t,"onChangeElementProgressBarBg2ColorHexAndOpacityDependencies",(function(){return Re})),o.d(t,"onChangeElementProgressBarBg2ColorPalette",(function(){return Le})),o.d(t,"onChangeElementProgressBarBg2ColorPaletteOpacity",(function(){return Me})),o.d(t,"onChangeElementIconBorderColorHex2",(function(){return We})),o.d(t,"onChangeElementIconBorderColorPalette2",(function(){return Ne})),o.d(t,"onChangeElementIconBorderColorFields2",(function(){return Ae})),o.d(t,"onChangeElementIconBorderHoverColorHex2",(function(){return Ve})),o.d(t,"onChangeElementIconBorderHoverColorPalette2",(function(){return De})),o.d(t,"onChangeElementIconBorderHoverColorFields2",(function(){return $e})),o.d(t,"onChangeElementButtonBorderColorHex2",(function(){return Ue})),o.d(t,"onChangeElementButtonBorderColorPalette2",(function(){return Ke})),o.d(t,"onChangeElementButtonBorderColorFields2",(function(){return Ye})),o.d(t,"onChangeElementButtonBorderHoverColorHex2",(function(){return qe})),o.d(t,"onChangeElementButtonBorderHoverColorPalette2",(function(){return Xe})),o.d(t,"onChangeElementButtonBorderHoverColorFields2",(function(){return Ze})),o.d(t,"onChangeBgColorHexButton2",(function(){return Je})),o.d(t,"onChangeBgColorPaletteButton2",(function(){return Qe})),o.d(t,"onChangeBgColorFieldsButton2",(function(){return et})),o.d(t,"onChangeHoverBgColorHexButton2",(function(){return tt})),o.d(t,"onChangeHoverBgColorPaletteButton2",(function(){return ot})),o.d(t,"onChangeHoverBgColorFieldsButton2",(function(){return nt})),o.d(t,"onChangeColorHexButtonIcon2",(function(){return at})),o.d(t,"onChangeColorPaletteButtonIcon2",(function(){return rt})),o.d(t,"onChangeColorFieldsButtonIcon2",(function(){return it})),o.d(t,"onChangeHoverColorHexButtonIcon2",(function(){return lt})),o.d(t,"onChangeHoverColorPaletteButtonIcon2",(function(){return st})),o.d(t,"onChangeHoverColorFieldsButtonIcon2",(function(){return ct})),o.d(t,"onChangeMenuColorHex2",(function(){return dt})),o.d(t,"onChangeMenuColorPalette2",(function(){return ut})),o.d(t,"onChangeMenuColorFields2",(function(){return pt})),o.d(t,"onChangeMenuHoverColorHex2",(function(){return bt})),o.d(t,"onChangeMenuHoverColorPalette2",(function(){return mt})),o.d(t,"onChangeMenuHoverColorFields2",(function(){return ht})),o.d(t,"onChangeActiveColorHexSubMenu2",(function(){return Jt})),o.d(t,"onChangeActiveColorPaletteSubMenu2",(function(){return Qt})),o.d(t,"onChangeActiveColorFieldsSubMenu2",(function(){return eo})),o.d(t,"onChangeBgActiveColorHexSubMenu2",(function(){return to})),o.d(t,"onChangeBgActiveColorPaletteSubMenu2",(function(){return oo})),o.d(t,"onChangeBgActiveColorFieldsSubMenu2",(function(){return no})),o.d(t,"onChangeColorHexMMenu2",(function(){return gt})),o.d(t,"onChangeColorPaletteMMenu2",(function(){return vt})),o.d(t,"onChangeColorFieldsMMenu2",(function(){return ft})),o.d(t,"onChangeHoverColorHexMMenu2",(function(){return yt})),o.d(t,"onChangeHoverColorPaletteMMenu2",(function(){return Ot})),o.d(t,"onChangeHoverColorFieldsMMenu2",(function(){return St})),o.d(t,"onChangeColorHexSubMenu2",(function(){return xt})),o.d(t,"onChangeColorPaletteSubMenu2",(function(){return Ct})),o.d(t,"onChangeColorFieldsSubMenu2",(function(){return jt})),o.d(t,"onChangeHoverColorHexSubMenu2",(function(){return Pt})),o.d(t,"onChangeHoverColorPaletteSubMenu2",(function(){return Bt})),o.d(t,"onChangeHoverColorFieldsSubMenu2",(function(){return wt})),o.d(t,"onChangeColorHexIconMenu2",(function(){return Tt})),o.d(t,"onChangeColorPaletteIconMenu2",(function(){return zt})),o.d(t,"onChangeColorFieldsIconMenu2",(function(){return Et})),o.d(t,"onChangeTabletColorHexIconMMenu2",(function(){return kt})),o.d(t,"onChangeTabletColorPaletteIconMMenu2",(function(){return Ht})),o.d(t,"onChangeTabletColorFieldsIconMMenu2",(function(){return Ft})),o.d(t,"onChangeMobileColorHexIconMMenu2",(function(){return _t})),o.d(t,"onChangeMobileColorPaletteIconMMenu2",(function(){return Rt})),o.d(t,"onChangeMobileColorFieldsIconMMenu2",(function(){return Lt})),o.d(t,"onChangeActiveColorHexMMenu2",(function(){return ao})),o.d(t,"onChangeActiveColorPaletteMMenu2",(function(){return ro})),o.d(t,"onChangeActiveColorFieldsMMenu2",(function(){return io})),o.d(t,"onChangeBgColorHexMMenu2",(function(){return Mt})),o.d(t,"onChangeBgColorPaletteMMenu2",(function(){return It})),o.d(t,"onChangeBgColorFieldsMMenu2",(function(){return Wt})),o.d(t,"onChangeBgColorHexSubMenu2",(function(){return Nt})),o.d(t,"onChangeBgColorPaletteSubMenu2",(function(){return At})),o.d(t,"onChangeBgColorFieldsSubMenu2",(function(){return Vt})),o.d(t,"onChangeBgHoverColorHexSubMenu2",(function(){return Dt})),o.d(t,"onChangeBgHoverColorPaletteSubMenu2",(function(){return $t})),o.d(t,"onChangeBgHoverColorFieldsSubMenu2",(function(){return Gt})),o.d(t,"onChangeBorderColorHexMMenu2",(function(){return Ut})),o.d(t,"onChangeBorderColorPaletteMMenu2",(function(){return Kt})),o.d(t,"onChangeBorderColorFieldsMMenu2",(function(){return Yt})),o.d(t,"onChangeBorderColorHexSubMenu2",(function(){return qt})),o.d(t,"onChangeBorderColorPaletteSubMenu2",(function(){return Xt})),o.d(t,"onChangeBorderColorFieldsSubMenu2",(function(){return Zt})),o.d(t,"onChangeTypography",(function(){return uo})),o.d(t,"onChangeTypographyTablet",(function(){return po})),o.d(t,"onChangeTypographyMobile",(function(){return bo})),o.d(t,"tabletSyncOnChange",(function(){return i.g})),o.d(t,"mobileSyncOnChange",(function(){return i.f})),o.d(t,"keySyncOnChange",(function(){return i.d})),o.d(t,"validateKeyByProperty",(function(){return i.h})),o.d(t,"onChangeTypography2",(function(){return vo}));var n={};o.r(n),o.d(n,"saveOnChanges",(function(){return c})),o.d(n,"defaultValueKey",(function(){return i.a})),o.d(n,"defaultValueValue",(function(){return i.b})),o.d(n,"deviceStateValueByKey",(function(){return i.c})),o.d(n,"makeKeyByStateDevice",(function(){return i.e})),o.d(n,"onChangeBgImage",(function(){return v})),o.d(n,"onChangeBgImageBgOpacity",(function(){return f})),o.d(n,"onChangeBgImageDependencies",(function(){return y})),o.d(n,"onChangeBgImageColumnAndRowSyncMobile",(function(){return O})),o.d(n,"onChangeBorderStyle2",(function(){return C})),o.d(n,"onChangeElementBorderStyleDependencies2",(function(){return j})),o.d(n,"onChangeContainerBorderStyleDependencies2",(function(){return P})),o.d(n,"onChangeBorderColorHexAndOpacity2",(function(){return B})),o.d(n,"onChangeBorderColorHexAndOpacityPalette2",(function(){return w})),o.d(n,"onChangeElementBorderColorHexAndOpacityDependencies2",(function(){return T})),o.d(n,"onChangeContainerBorderColorHexAndOpacityDependencies2",(function(){return z})),o.d(n,"onChangeBorderColorHexAndOpacityColumnAndRowSyncTablet2",(function(){return E})),o.d(n,"onChangeBorderColorHexAndOpacityColumnAndRowSyncMobile2",(function(){return k})),o.d(n,"onChangeBorderColorPalette2",(function(){return H})),o.d(n,"onChangeBorderColorPaletteOpacity2",(function(){return F})),o.d(n,"onChangeBorderWidthType2",(function(){return _})),o.d(n,"onChangeBorderWidthGrouped2",(function(){return R})),o.d(n,"onChangeBorderWidthGroupedDependencies2",(function(){return L})),o.d(n,"onChangeBorderWidthUngrouped2",(function(){return M})),o.d(n,"onChangeBorderWidthUngroupedDependencies2",(function(){return I})),o.d(n,"onChangeBorderRadiusGrouped",(function(){return V})),o.d(n,"onChangeBorderRadiusGroupedDependencies",(function(){return D})),o.d(n,"onChangeBorderRadiusUngrouped",(function(){return $})),o.d(n,"onChangeBorderRadiusUngroupedDependencies",(function(){return G})),o.d(n,"onChangeColorHexAndOpacity",(function(){return U})),o.d(n,"onChangeColorHexAndOpacityPalette",(function(){return K})),o.d(n,"onChangeColorPalette",(function(){return Y})),o.d(n,"onChangeColorPaletteOpacity",(function(){return q})),o.d(n,"onChangeBgColorType2",(function(){return Z})),o.d(n,"onChangeGradientRange2",(function(){return J})),o.d(n,"onChangeBgColorHexAndOpacity2",(function(){return Q})),o.d(n,"onChangeBgColorHexAndOpacityPalette2",(function(){return ee})),o.d(n,"onChangeBgColorHexAndOpacityDependencies2",(function(){return te})),o.d(n,"onChangeBgColorHexAndOpacityColumnAndRowSyncMobile2",(function(){return oe})),o.d(n,"onChangeBgColorPalette2",(function(){return ne})),o.d(n,"onChangeBgColorPaletteOpacity2",(function(){return ae})),o.d(n,"onChangeBoxShadowHexAndOpacity2",(function(){return se})),o.d(n,"onChangeBoxShadowHexAndOpacityPalette2",(function(){return ce})),o.d(n,"onChangeBoxShadowHexAndOpacityDependencies2",(function(){return de})),o.d(n,"onChangeBoxShadowPalette2",(function(){return ue})),o.d(n,"onChangeBoxShadowPaletteOpacity2",(function(){return pe})),o.d(n,"onChangeBoxShadowType2",(function(){return ie})),o.d(n,"onChangeBoxShadowTypeDependencies2",(function(){return le})),o.d(n,"onChangeBoxShadowFields2",(function(){return be})),o.d(n,"onChangeBoxShadowFieldsDependencies2",(function(){return me})),o.d(n,"onChangeBoxShadowOpacity2",(function(){return he})),o.d(n,"onChangeTextShadowType",(function(){return ge})),o.d(n,"onChangeTextShadowHexAndOpacity",(function(){return ve})),o.d(n,"onChangeTextShadowHexAndOpacityPalette",(function(){return fe})),o.d(n,"onChangeTextShadowPalette",(function(){return ye})),o.d(n,"onChangeTextShadowPaletteOpacity",(function(){return Oe})),o.d(n,"onChangeTextShadowFields",(function(){return Se})),o.d(n,"onChangePaddingGrouped",(function(){return Pe})),o.d(n,"onChangePaddingUngrouped",(function(){return Be})),o.d(n,"onChangeMarginGrouped",(function(){return ze})),o.d(n,"onChangeMarginUngrouped",(function(){return Ee})),o.d(n,"onChangeElementSectionBoxShadowHexAndOpacityDependencies",(function(){return ke})),o.d(n,"onChangeElementRichTextBgColorType2",(function(){return He})),o.d(n,"onChangeElementProgressBarBg2ColorHexAndOpacity",(function(){return Fe})),o.d(n,"onChangeElementProgressBarBg2ColorHexAndOpacityPalette",(function(){return _e})),o.d(n,"onChangeElementProgressBarBg2ColorHexAndOpacityDependencies",(function(){return Re})),o.d(n,"onChangeElementProgressBarBg2ColorPalette",(function(){return Le})),o.d(n,"onChangeElementProgressBarBg2ColorPaletteOpacity",(function(){return Me})),o.d(n,"onChangeElementIconBorderColorHex2",(function(){return We})),o.d(n,"onChangeElementIconBorderColorPalette2",(function(){return Ne})),o.d(n,"onChangeElementIconBorderColorFields2",(function(){return Ae})),o.d(n,"onChangeElementIconBorderHoverColorHex2",(function(){return Ve})),o.d(n,"onChangeElementIconBorderHoverColorPalette2",(function(){return De})),o.d(n,"onChangeElementIconBorderHoverColorFields2",(function(){return $e})),o.d(n,"onChangeElementButtonBorderColorHex2",(function(){return Ue})),o.d(n,"onChangeElementButtonBorderColorPalette2",(function(){return Ke})),o.d(n,"onChangeElementButtonBorderColorFields2",(function(){return Ye})),o.d(n,"onChangeElementButtonBorderHoverColorHex2",(function(){return qe})),o.d(n,"onChangeElementButtonBorderHoverColorPalette2",(function(){return Xe})),o.d(n,"onChangeElementButtonBorderHoverColorFields2",(function(){return Ze})),o.d(n,"onChangeBgColorHexButton2",(function(){return Je})),o.d(n,"onChangeBgColorPaletteButton2",(function(){return Qe})),o.d(n,"onChangeBgColorFieldsButton2",(function(){return et})),o.d(n,"onChangeHoverBgColorHexButton2",(function(){return tt})),o.d(n,"onChangeHoverBgColorPaletteButton2",(function(){return ot})),o.d(n,"onChangeHoverBgColorFieldsButton2",(function(){return nt})),o.d(n,"onChangeColorHexButtonIcon2",(function(){return at})),o.d(n,"onChangeColorPaletteButtonIcon2",(function(){return rt})),o.d(n,"onChangeColorFieldsButtonIcon2",(function(){return it})),o.d(n,"onChangeHoverColorHexButtonIcon2",(function(){return lt})),o.d(n,"onChangeHoverColorPaletteButtonIcon2",(function(){return st})),o.d(n,"onChangeHoverColorFieldsButtonIcon2",(function(){return ct})),o.d(n,"onChangeMenuColorHex2",(function(){return dt})),o.d(n,"onChangeMenuColorPalette2",(function(){return ut})),o.d(n,"onChangeMenuColorFields2",(function(){return pt})),o.d(n,"onChangeMenuHoverColorHex2",(function(){return bt})),o.d(n,"onChangeMenuHoverColorPalette2",(function(){return mt})),o.d(n,"onChangeMenuHoverColorFields2",(function(){return ht})),o.d(n,"onChangeActiveColorHexSubMenu2",(function(){return Jt})),o.d(n,"onChangeActiveColorPaletteSubMenu2",(function(){return Qt})),o.d(n,"onChangeActiveColorFieldsSubMenu2",(function(){return eo})),o.d(n,"onChangeBgActiveColorHexSubMenu2",(function(){return to})),o.d(n,"onChangeBgActiveColorPaletteSubMenu2",(function(){return oo})),o.d(n,"onChangeBgActiveColorFieldsSubMenu2",(function(){return no})),o.d(n,"onChangeColorHexMMenu2",(function(){return gt})),o.d(n,"onChangeColorPaletteMMenu2",(function(){return vt})),o.d(n,"onChangeColorFieldsMMenu2",(function(){return ft})),o.d(n,"onChangeHoverColorHexMMenu2",(function(){return yt})),o.d(n,"onChangeHoverColorPaletteMMenu2",(function(){return Ot})),o.d(n,"onChangeHoverColorFieldsMMenu2",(function(){return St})),o.d(n,"onChangeColorHexSubMenu2",(function(){return xt})),o.d(n,"onChangeColorPaletteSubMenu2",(function(){return Ct})),o.d(n,"onChangeColorFieldsSubMenu2",(function(){return jt})),o.d(n,"onChangeHoverColorHexSubMenu2",(function(){return Pt})),o.d(n,"onChangeHoverColorPaletteSubMenu2",(function(){return Bt})),o.d(n,"onChangeHoverColorFieldsSubMenu2",(function(){return wt})),o.d(n,"onChangeColorHexIconMenu2",(function(){return Tt})),o.d(n,"onChangeColorPaletteIconMenu2",(function(){return zt})),o.d(n,"onChangeColorFieldsIconMenu2",(function(){return Et})),o.d(n,"onChangeTabletColorHexIconMMenu2",(function(){return kt})),o.d(n,"onChangeTabletColorPaletteIconMMenu2",(function(){return Ht})),o.d(n,"onChangeTabletColorFieldsIconMMenu2",(function(){return Ft})),o.d(n,"onChangeMobileColorHexIconMMenu2",(function(){return _t})),o.d(n,"onChangeMobileColorPaletteIconMMenu2",(function(){return Rt})),o.d(n,"onChangeMobileColorFieldsIconMMenu2",(function(){return Lt})),o.d(n,"onChangeActiveColorHexMMenu2",(function(){return ao})),o.d(n,"onChangeActiveColorPaletteMMenu2",(function(){return ro})),o.d(n,"onChangeActiveColorFieldsMMenu2",(function(){return io})),o.d(n,"onChangeBgColorHexMMenu2",(function(){return Mt})),o.d(n,"onChangeBgColorPaletteMMenu2",(function(){return It})),o.d(n,"onChangeBgColorFieldsMMenu2",(function(){return Wt})),o.d(n,"onChangeBgColorHexSubMenu2",(function(){return Nt})),o.d(n,"onChangeBgColorPaletteSubMenu2",(function(){return At})),o.d(n,"onChangeBgColorFieldsSubMenu2",(function(){return Vt})),o.d(n,"onChangeBgHoverColorHexSubMenu2",(function(){return Dt})),o.d(n,"onChangeBgHoverColorPaletteSubMenu2",(function(){return $t})),o.d(n,"onChangeBgHoverColorFieldsSubMenu2",(function(){return Gt})),o.d(n,"onChangeBorderColorHexMMenu2",(function(){return Ut})),o.d(n,"onChangeBorderColorPaletteMMenu2",(function(){return Kt})),o.d(n,"onChangeBorderColorFieldsMMenu2",(function(){return Yt})),o.d(n,"onChangeBorderColorHexSubMenu2",(function(){return qt})),o.d(n,"onChangeBorderColorPaletteSubMenu2",(function(){return Xt})),o.d(n,"onChangeBorderColorFieldsSubMenu2",(function(){return Zt})),o.d(n,"onChangeTypography",(function(){return uo})),o.d(n,"onChangeTypographyTablet",(function(){return po})),o.d(n,"onChangeTypographyMobile",(function(){return bo})),o.d(n,"tabletSyncOnChange",(function(){return i.g})),o.d(n,"mobileSyncOnChange",(function(){return i.f})),o.d(n,"keySyncOnChange",(function(){return i.d})),o.d(n,"validateKeyByProperty",(function(){return i.h})),o.d(n,"onChangeTypography2",(function(){return vo}));var a=o(2),r=o(9),i=o(27);function l(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function s(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?l(Object(o),!0).forEach((function(t){Object(a.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):l(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function c(e){return e.onChange.reduce((t,o)=>{const a=n[o](e);return Object.assign(t,a)},{})}function d({v:e,device:t,state:o,me:n,childs:a,value:l,dragEnd:c=!0,tempZero:d=!1}){const u=e=>Object(i.a)({key:e,device:t,state:o});let p={};var b;return b=n,(Object(i.b)({v:e,key:b,device:t,state:o})!==l||c)&&(p=s(s({[u(n)]:l},a?a.reduce((e,t)=>(e[u(t)]=l,e),{}):{}),c&&(d||!d&&0!==l&&""!==l)?s({[u("temp"+Object(r.c)(n))]:l},a?a.reduce((e,t)=>(e[u("temp"+Object(r.c)(t))]=l,e),{}):{}):{})),p}function u({v:e,device:t,state:o,me:n,childs:a,current:l,value:c,dragEnd:d=!0,tempZero:u=!1}){const p=e=>Object(i.a)({key:e,device:t,state:o});let b={};var m;return m=l,(Object(i.b)({v:e,key:m,device:t,state:o})!==c||d)&&(b=s(s({[p(l)]:c},d&&(u||!u&&0!==c&&""!==c)?{[p("temp"+Object(r.c)(l))]:c}:{}),a.filter(e=>e!==l).every(t=>e[t]===c)?s({[p(n)]:c},d&&(u||!u&&0!==c&&""!==c)?{[p("temp"+Object(r.c)(n))]:c}:{}):{})),b}function p({v:e,device:t,state:o,parent:n,childs:a,value:l,sliderDragEnd:c=!0,temp:d=!1,tempZero:u=!1}){const p=s({[Object(i.a)({key:n,device:t,state:o})]:l},a.reduce((e,n)=>(e[Object(i.a)({key:n,device:t,state:o})]=l,e),{})),b=d&&!u?s({[Object(i.a)({key:"temp"+Object(r.c)(n),device:t,state:o})]:l>0&&c?l:Object(i.b)({v:e,key:"temp"+Object(r.c)(n),device:t,state:o})},a.reduce((n,a)=>(n[Object(i.a)({key:"temp"+Object(r.c)(a),device:t,state:o})]=l>0&&c?l:Object(i.b)({v:e,key:"temp"+Object(r.c)(a),device:t,state:o}),n),{})):d?s({[Object(i.a)({key:"temp"+Object(r.c)(n),device:t,state:o})]:l},a.reduce((e,n)=>(e[Object(i.a)({key:"temp"+Object(r.c)(n),device:t,state:o})]=l,e),{})):{};return Object.assign(p,b)}function b({v:e,device:t,state:o,parent:n,childs:a,current:l,value:s,temp:c=!1,tempZero:d=!1}){const u=a.filter(e=>e!==l).every(t=>e[t]===s)?s:Object(i.b)({v:e,key:n,device:t,state:o}),p=a.filter(e=>e!==l).every(t=>e[t]===s)?s:s>0?Object(i.b)({v:e,key:"temp"+Object(r.c)(n),device:t,state:o}):Object(i.b)({v:e,key:n,device:t,state:o});return c&&d?{[Object(i.a)({key:n,device:t,state:o})]:u,[Object(i.a)({key:"temp"+Object(r.c)(n),device:t,state:o})]:p}:{[Object(i.a)({key:n,device:t,state:o})]:u}}function m({v:e,device:t,state:o,childs:n,current:a,value:l,temp:c=!1}){return c?s({[Object(i.a)({key:a,device:t,state:o})]:l,[Object(i.a)({key:"temp"+Object(r.c)(a),device:t,state:o})]:l},n.filter(e=>e!==a).reduce((n,a)=>(n[Object(i.a)({key:"temp"+Object(r.c)(a),device:t,state:o})]=0===e[a]?0:Object(i.b)({v:e,key:"temp"+Object(r.c)(a),device:t,state:o}),n),{})):{[Object(i.a)({key:a,device:t,state:o})]:l}}function h({v:e,device:t="desktop",state:o="normal",value:n,dependencies:a}){const l=n=>Object(i.b)({v:e,key:n,device:t,state:o});return Object.entries(a).reduce((a,[s,c])=>{const d=!(0!==n&&""!==n||void 0===c.nullValue||!(c.nullValue.length>0&&c.nullValue.every(t=>""===e[t]||0===e[t])||0===c.nullValue.length)),u=!(0===n||""===n||0!==l(s)&&""!==l(s)&&"off"!==l("boxShadow")||!(c.tempValue.length>0&&c.tempValue.every(t=>""===e[t]||0===e[t])||0===c.tempValue.length)),p=null===l(s)||void 0===l(s);return p&&console.log("onChange "+s+" "+l(s)),p||(a[(e=>Object(i.a)({key:e,device:t,state:o}))(s)]=d?"string"===c.type?"":0:l(u?"temp"+Object(r.c)(s):s)),Object.assign(a,c.childs.reduce((a,l)=>(null===e[Object(i.a)({key:l,device:t,state:o})]||void 0===e[Object(i.a)({key:l,device:t,state:o})]||(a[Object(i.a)({key:l,device:t,state:o})]=0!==n&&""!==n||void 0===c.nullValue||!(c.nullValue.length>0&&c.nullValue.every(t=>""===e[t]||0===e[t])||0===c.nullValue.length)?(n>0||""!==n)&&c.childs.every(n=>0===Object(i.b)({v:e,key:"temp"+Object(r.c)(n),device:t,state:o}))?Object(i.b)({v:e,key:"temp"+Object(r.c)(s),device:t,state:o}):(n>0||""!==n)&&(c.tempValue.length>0&&c.tempValue.every(t=>""===e[t]||0===e[t])||0===c.tempValue.length)?Object(i.b)({v:e,key:"temp"+Object(r.c)(l),device:t,state:o}):Object(i.b)({v:e,key:l,device:t,state:o}):"string"===c.type?"":0),a),{}),c.childs.reduce((a,l)=>(null===e[Object(i.a)({key:"temp"+Object(r.c)(l),device:t,state:o})]||void 0===e[Object(i.a)({key:"temp"+Object(r.c)(l),device:t,state:o})]||(a[Object(i.a)({key:"temp"+Object(r.c)(l),device:t,state:o})]=(n>0||""!==n)&&c.childs.every(n=>0===Object(i.b)({v:e,key:"temp"+Object(r.c)(n),device:t,state:o}))?Object(i.b)({v:e,key:s,device:t,state:o}):Object(i.b)({v:e,key:"temp"+Object(r.c)(l),device:t,state:o})),a),{})),a},{})}function g({v:e,device:t,state:o,childs:n,current:a,value:l,dependencies:s}){return Object.entries(s).reduce((s,[c,d])=>(null===e[c]||(s[Object(i.a)({key:c,device:t,state:o})]=(0===l||""===l)&&(n.length>0&&n.filter(e=>e!==a).every(t=>0===e[t])||0===n.length)&&void 0!==d.nullValue&&(d.nullValue.length>0&&d.nullValue.every(t=>""===e[t]||0===e[t])||0===d.nullValue.length)?"string"===d.type?"":0:(l>0||""!==l)&&(d.tempValue.length>0&&d.tempValue.every(t=>""===e[t]||0===e[t])||0===d.tempValue.length)?Object(i.b)({v:e,key:"temp"+Object(r.c)(c),device:t,state:o}):Object(i.b)({v:e,key:c,device:t,state:o})),Object.assign(s,d.childs.reduce((s,c)=>{var u,p;return null===e[c]||(s[Object(i.a)({key:c,device:t,state:o})]=(0===l||""===l)&&(n.length>0&&n.filter(e=>e!==a).every(t=>0===e[t])||0===n.length)&&((null===(u=d.nullValue)||void 0===u?void 0:u.length)>0&&d.nullValue.every(t=>""===e[t]||0===e[t])||0===(null===(p=d.nullValue)||void 0===p?void 0:p.length))?"string"===d.type?"":0:(l>0||""!==l)&&0===d.tempValue.length?Object(i.b)({v:e,key:"temp"+Object(r.c)(c),device:t,state:o}):Object(i.b)({v:e,key:c,device:t,state:o})),s},{})),s),{})}function v({device:e,state:t,width:o,height:n,extension:a,src:r,x:l,y:s,population:c,isChanged:d}){return"image"===d?{[Object(i.a)({key:"bgImageWidth",device:e,state:t})]:o,[Object(i.a)({key:"bgImageHeight",device:e,state:t})]:n,[Object(i.a)({key:"bgImageExtension",device:e,state:t})]:a,[Object(i.a)({key:"bgImageSrc",device:e,state:t})]:r}:"population"===d?{[Object(i.a)({key:"bgPopulation",device:e,state:t})]:c}:{[Object(i.a)({key:"bgPositionX",device:e,state:t})]:l,[Object(i.a)({key:"bgPositionY",device:e,state:t})]:s}}function f({v:e,device:t,state:o,src:n,isChanged:a}){const r=""!==n&&1===Object(i.b)({v:e,key:"bgColorOpacity",device:t,state:o})?.9:Object(i.b)({v:e,key:"bgColorOpacity",device:t,state:o}),l=""!==n&&1===Object(i.b)({v:e,key:"bgColorOpacity",device:t,state:o})?.9:Object(i.b)({v:e,key:"tempBgColorOpacity",device:t,state:o});return"image"===a?{[Object(i.a)({key:"bgColorOpacity",device:t,state:o})]:r,[Object(i.a)({key:"tempBgColorOpacity",device:t,state:o})]:l}:{}}function y({v:e,device:t,state:o,src:n}){return h({v:e,device:t,state:o,value:n,dependencies:{borderRadius:{childs:["borderTopLeftRadius","borderTopRightRadius","borderBottomLeftRadius","borderBottomRightRadius"],nullValue:["bgColorOpacity","borderColorOpacity"],tempValue:[]}}})}function O({v:e,device:t,src:o}){return"desktop"===t||"mobile"===t?{mobilePaddingRight:o?e.tempMobilePaddingRight:0,mobilePaddingLeft:o?e.tempMobilePaddingLeft:0}:{}}function S(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function x(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?S(Object(o),!0).forEach((function(t){Object(a.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):S(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function C({v:e,device:t,state:o,borderStyle:n,prefix:a=""}){const l=e=>Object(i.a)({key:e,device:t,state:o}),s=Object(r.b)(a,"border"),c=Object(r.b)(s,"style"),d=Object(r.b)("temp",c);return{[l(c)]:n,[l(d)]:""!==n?n:(u=d,Object(i.b)({v:e,key:u,device:t,state:o}))};var u}function j({v:e,device:t,state:o,borderStyle:n,prefix:a=""}){const i=Object(r.b)(a,"border");return h({v:e,device:t,state:o,value:n,dependencies:{[Object(r.b)(i,"colorOpacity")]:{childs:[],nullValue:[],tempValue:[]},[Object(r.b)(i,"colorPalette")]:{childs:[],nullValue:[],tempValue:[]},[Object(r.b)(i,"width")]:{childs:[Object(r.b)(i,"topWidth"),Object(r.b)(i,"rightWidth"),Object(r.b)(i,"bottomWidth"),Object(r.b)(i,"leftWidth")],nullValue:[],tempValue:[]}}})}function P({v:e,device:t,state:o,borderStyle:n}){return h({v:e,device:t,state:o,value:n,dependencies:{borderColorOpacity:{childs:[],nullValue:[],tempValue:[]},borderColorPalette:{childs:[],nullValue:[],tempValue:[]},borderWidth:{childs:["borderTopWidth","borderRightWidth","borderBottomWidth","borderLeftWidth"],nullValue:[],tempValue:[]},borderRadius:{childs:["borderTopLeftRadius","borderTopRightRadius","borderBottomLeftRadius","borderBottomRightRadius"],nullValue:["bgColorOpacity","bgImageSrc"],tempValue:[]}}})}function B({v:e,device:t,state:o,hex:n,opacity:a,prefix:l="",isChanged:s="hex",opacityDragEnd:c=!1}){const d=e=>Object(i.a)({key:e,device:t,state:o}),u=Object(r.b)(l,"border"),p=Object(r.b)(u,"colorHex"),b=Object(r.b)(u,"colorOpacity"),m=Object(r.b)("temp",b),h=(a=W({v:e,device:t,state:o,opacity:a,prefix:l,isChanged:s}))>0&&c?a:(g=m,Object(i.b)({v:e,key:g,device:t,state:o}));var g;return{[d(p)]:n,[d(b)]:a,[d(m)]:h}}function w({v:e,device:t,state:o,opacity:n,prefix:a="",isChanged:l="hex"}){const s=e=>Object(i.a)({key:e,device:t,state:o}),c=n=>Object(i.b)({v:e,key:n,device:t,state:o}),d=Object(r.b)(a,"border"),u=Object(r.b)(d,"colorPalette"),p=Object(r.b)("temp",u);n=W({v:e,device:t,state:o,opacity:n,prefix:a,isChanged:l});const b="hex"===l||0===n?"":c(n>0?p:u),m="hex"===l?"":c(p);return{[s(u)]:b,[s(p)]:m}}function T({v:e,device:t,state:o,opacity:n,isChanged:a,prefix:i=""}){const l=Object(r.b)(i,"border"),s={[Object(r.b)(l,"style")]:{childs:[],nullValue:[],tempValue:[]},[Object(r.b)(l,"width")]:{childs:[Object(r.b)(l,"topWidth"),Object(r.b)(l,"rightWidth"),Object(r.b)(l,"bottomWidth"),Object(r.b)(l,"leftWidth")],nullValue:[],tempValue:[]}};return h({v:e,device:t,state:o,value:n=W({v:e,device:t,state:o,opacity:n,prefix:i,isChanged:a}),dependencies:s})}function z({v:e,device:t,state:o,opacity:n,isChanged:a}){return h({v:e,device:t,state:o,value:n=W({v:e,device:t,state:o,opacity:n,isChanged:a}),dependencies:{borderStyle:{childs:[],nullValue:[],tempValue:[]},borderWidth:{childs:["borderTopWidth","borderRightWidth","borderBottomWidth","borderLeftWidth"],nullValue:[],tempValue:[]},borderRadius:{childs:["borderTopLeftRadius","borderTopRightRadius","borderBottomLeftRadius","borderBottomRightRadius"],nullValue:["bgColorOpacity","bgImageSrc"],tempValue:[]}}})}function E({v:e,device:t,opacity:o,isChanged:n}){if("desktop"===t||"tablet"===t){return{tabletPaddingRight:0===(o=W({v:e,device:t,opacity:o,isChanged:n}))?0:"hex"===n||o>0?e.tempTabletPaddingRight:e.tabletPaddingRight,tabletPaddingLeft:0===o?0:"hex"===n||o>0?e.tempTabletPaddingLeft:e.tabletPaddingLeft}}return{}}function k({v:e,device:t,opacity:o,isChanged:n}){if("desktop"===t||"mobile"===t){return{mobilePaddingRight:0===(o=W({v:e,device:t,opacity:o,isChanged:n}))?0:"hex"===n||o>0?e.tempMobilePaddingRight:e.mobilePaddingRight,mobilePaddingLeft:0===o?0:"hex"===n||o>0?e.tempMobilePaddingLeft:e.mobilePaddingLeft}}return{}}function H({device:e,state:t,palette:o,prefix:n=""}){const a=o=>Object(i.a)({key:o,device:e,state:t}),l=Object(r.b)(n,"border"),s=Object(r.b)(l,"colorPalette"),c=Object(r.b)("temp",s);return{[a(s)]:o,[a(c)]:o}}function F({v:e,device:t,state:o,opacity:n,isChanged:a,prefix:l=""}){const s=Object(r.b)(l,"border"),c=Object(r.b)(s,"colorOpacity");return n=W({v:e,device:t,state:o,opacity:n,prefix:l,isChanged:a}),{[(d=c,Object(i.a)({key:d,device:t,state:o}))]:n};var d}function _({device:e,state:t,type:o,prefix:n=""}){const a=Object(r.b)(n,"border"),l=Object(r.b)(a,"widthType");return{[(s=l,Object(i.a)({key:s,device:e,state:t}))]:o};var s}function R({v:e,device:t,state:o,value:n,sliderDragEnd:a,prefix:i=""}){const l=Object(r.b)(i,"border");return p({v:e,device:t,state:o,parent:Object(r.b)(l,"width"),childs:[Object(r.b)(l,"topWidth"),Object(r.b)(l,"rightWidth"),Object(r.b)(l,"bottomWidth"),Object(r.b)(l,"leftWidth")],value:n,sliderDragEnd:a,temp:!0,tempZero:!1})}function L({v:e,device:t,state:o,value:n,prefix:a=""}){const i=Object(r.b)(a,"border"),l=Object(r.b)(i,"style"),s=Object(r.b)(i,"radius"),c=Object(r.b)(i,"colorOpacity"),d=Object(r.b)(i,"colorPalette");return h({v:e,device:t,state:o,value:n,dependencies:{[l]:{childs:[],nullValue:[],tempValue:[]},[s]:{childs:[Object(r.b)(i,"topLeftRadius"),Object(r.b)(i,"topRightRadius"),Object(r.b)(i,"bottomLeftRadius"),Object(r.b)(i,"bottomRightRadius")],nullValue:["bgColorOpacity","bgImageSrc"],tempValue:[]},[c]:{childs:[],nullValue:[],tempValue:[]},[d]:{childs:[],nullValue:[],tempValue:[]}}})}function M({v:e,device:t,state:o,current:n,value:a,prefix:i=""}){const l=Object(r.b)(i,"border"),s=Object(r.b)(l,"width"),c=[Object(r.b)(l,"topWidth"),Object(r.b)(l,"rightWidth"),Object(r.b)(l,"bottomWidth"),Object(r.b)(l,"leftWidth")];return x(x({},m({v:e,device:t,state:o,childs:c,current:n,value:a,temp:!0})),b({v:e,device:t,state:o,parent:s,childs:c,current:n,value:a,temp:!0}))}function I({v:e,device:t,state:o,current:n,value:a,prefix:i=""}){const l=Object(r.b)(i,"border"),s=Object(r.b)(l,"width"),c=[Object(r.b)(l,"topWidth"),Object(r.b)(l,"rightWidth"),Object(r.b)(l,"bottomWidth"),Object(r.b)(l,"leftWidth")],d=Object(r.b)(l,"style"),u=Object(r.b)(l,"radius"),p=Object(r.b)(l,"colorOpacity"),b=Object(r.b)(l,"colorPalette");return g({v:e,device:t,state:o,parent:s,childs:c,current:n,value:a,dependencies:{[d]:{childs:[],nullValue:[],tempValue:[]},[u]:{childs:[Object(r.b)(l,"topLeftRadius"),Object(r.b)(l,"topRightRadius"),Object(r.b)(l,"bottomLeftRadius"),Object(r.b)(l,"bottomRightRadius")],nullValue:["bgColorOpacity","bgImageSrc"],tempValue:[]},[p]:{childs:[],nullValue:[],tempValue:[]},[b]:{childs:[],nullValue:[],tempValue:[]}}})}function W({v:e,device:t,state:o,prefix:n="",opacity:a,isChanged:l="hex"}){const s=n=>Object(i.b)({v:e,key:n,device:t,state:o}),c=Object(r.b)(n,"border"),d=Object(r.b)(c,"colorOpacity"),u=Object(r.b)("temp",d);return"hex"!==l&&"palette"!==l||0!==s(d)?void 0===a?s(d):a:s(u)}function N(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function A(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?N(Object(o),!0).forEach((function(t){Object(a.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):N(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function V({v:e,device:t,state:o,value:n,sliderDragEnd:a,prefix:i=""}){return p({v:e,device:t,state:o,parent:Object(r.b)(i,"borderRadius"),childs:["borderTopLeftRadius","borderTopRightRadius","borderBottomLeftRadius","borderBottomRightRadius"].map(e=>Object(r.b)(i,e)),value:n,sliderDragEnd:a,temp:!0,tempZero:!0})}function D({v:e,device:t,state:o,value:n,prefix:a=""}){return h({v:e,device:t,state:o,value:n,tempZero:!0,dependencies:{borderStyle:{childs:[],tempValue:["bgColorOpacity","bgImageSrc"]},borderWidth:{childs:["borderTopWidth","borderRightWidth","borderBottomWidth","borderLeftWidth"].map(e=>Object(r.b)(a,e)),tempValue:["bgColorOpacity","bgImageSrc"]},borderColorOpacity:{childs:[],tempValue:["bgColorOpacity","bgImageSrc"]},borderColorPalette:{childs:[],tempValue:["bgColorOpacity","bgImageSrc"]}}})}function $({v:e,device:t,state:o,value:n,current:a,prefix:i=""}){const l=Object(r.b)(i,a),s=Object(r.b)(i,"borderRadius"),c=["borderTopLeftRadius","borderTopRightRadius","borderBottomLeftRadius","borderBottomRightRadius"].map(e=>Object(r.b)(i,e));return A(A({},m({v:e,device:t,childs:c,state:o,current:l,value:n,temp:!0})),b({v:e,device:t,state:o,parent:s,childs:c,current:l,value:n,temp:!0,tempZero:!0}))}function G({v:e,device:t,state:o,value:n,current:a,prefix:i=""}){const l=Object(r.b)(i,a);return A({},g({v:e,device:t,state:o,parent:Object(r.b)(i,"borderRadius"),childs:["borderTopLeftRadius","borderTopRightRadius","borderBottomLeftRadius","borderBottomRightRadius"].map(e=>Object(r.b)(i,e)),current:l,value:n,dependencies:{borderStyle:{childs:[],tempValue:["bgColorOpacity","bgImageSrc"]},borderWidth:{childs:["borderTopWidth","borderRightWidth","borderBottomWidth","borderLeftWidth"].map(e=>Object(r.b)(i,e)),tempValue:["bgColorOpacity","bgImageSrc"]},borderColorOpacity:{childs:[],tempValue:["bgColorOpacity","bgImageSrc"]},borderColorPalette:{childs:[],tempValue:["bgColorOpacity","bgImageSrc"]}}}))}function U({v:e,device:t,state:o,prefix:n="color",hex:a,opacity:l,isChanged:s="hex",opacityDragEnd:c=!1}){const d=e=>Object(i.a)({key:e,device:t,state:o}),u="temp"+Object(r.c)(n),p=(l=X({v:e,device:t,state:o,prefix:n,opacity:l,isChanged:s}))>0&&c?l:(b=Object(r.b)(u,"opacity"),Object(i.b)({v:e,key:b,device:t,state:o}));var b;return{[d(Object(r.b)(n,"hex"))]:a,[d(Object(r.b)(n,"opacity"))]:l,[d(Object(r.b)(u,"opacity"))]:p}}function K({v:e,device:t,state:o,prefix:n="color",opacity:a,isChanged:l="hex"}){const s=e=>Object(i.a)({key:e,device:t,state:o}),c=n=>Object(i.b)({v:e,key:n,device:t,state:o}),d="temp"+Object(r.c)(n);a=X({v:e,device:t,state:o,prefix:n,opacity:a,isChanged:l});const u="hex"===l||0===a?"":c(a>0?Object(r.b)(d,"palette"):Object(r.b)(n,"palette")),p="hex"===l?"":c(Object(r.b)(d,"palette"));return{[s(Object(r.b)(n,"palette"))]:u,[s(Object(r.b)(d,"palette"))]:p}}function Y({device:e,state:t,prefix:o="color",palette:n}){const a=o=>Object(i.a)({key:o,device:e,state:t}),l="temp"+Object(r.c)(o);return{[a(Object(r.b)(o,"palette"))]:n,[a(Object(r.b)(l,"palette"))]:n}}function q({v:e,device:t,state:o,prefix:n="color",opacity:a,isChanged:l="hex"}){return a=X({v:e,device:t,state:o,prefix:n,opacity:a,isChanged:l}),{[(s=Object(r.b)(n,"opacity"),Object(i.a)({key:s,device:t,state:o}))]:a};var s}function X({v:e,device:t,state:o,prefix:n="color",opacity:a,isChanged:l="hex"}){const s=n=>Object(i.b)({v:e,key:n,device:t,state:o}),c="temp"+Object(r.c)(n);return"hex"===l&&0===s(Object(r.b)(n,"opacity"))?s(Object(r.b)(c,"opacity")):void 0===a?s(Object(r.b)(n,"opacity")):a}function Z({v:e,device:t,state:o,bgColorType:n}){const a=e=>Object(i.a)({key:e,device:t,state:o});return{[a("bgColorType")]:n,[a("gradientActivePointer")]:"solid"===n?"startPointer":(r="gradientActivePointer",Object(i.b)({v:e,key:r,device:t,state:o}))};var r}function J({device:e,state:t,startPointer:o,finishPointer:n,activePointer:a}){const r=o=>Object(i.a)({key:o,device:e,state:t});return{[r("gradientStartPointer")]:o,[r("gradientFinishPointer")]:n,[r("gradientActivePointer")]:a}}function Q({v:e,device:t,state:o,prefix:n,hex:a,opacity:l,isChanged:s="hex",opacityDragEnd:c=!1}){const d=e=>Object(i.a)({key:e,device:t,state:o}),u="temp"+Object(r.c)(n),p=(l=re({v:e,device:t,state:o,prefix:n,opacity:l,isChanged:s}))>0&&c?l:(b=Object(r.b)(u,"colorOpacity"),Object(i.b)({v:e,key:b,device:t,state:o}));var b;return{[d(Object(r.b)(n,"colorHex"))]:a,[d(Object(r.b)(n,"colorOpacity"))]:l,[d(Object(r.b)(u,"colorOpacity"))]:p}}function ee({v:e,device:t,state:o,prefix:n,opacity:a,isChanged:l="hex"}){const s=e=>Object(i.a)({key:e,device:t,state:o}),c=n=>Object(i.b)({v:e,key:n,device:t,state:o}),d="temp"+Object(r.c)(n);a=re({v:e,device:t,state:o,prefix:n,opacity:a,isChanged:l});const u="hex"===l||0===a?"":c(a>0?Object(r.b)(d,"colorPalette"):Object(r.b)(n,"colorPalette")),p="hex"===l?"":c(Object(r.b)(d,"colorPalette"));return{[s(Object(r.b)(n,"colorPalette"))]:u,[s(Object(r.b)(d,"colorPalette"))]:p}}function te({v:e,device:t,state:o,prefix:n,opacity:a,isChanged:r="hex"}){return h({v:e,device:t,state:o,value:a=re({v:e,device:t,state:o,prefix:n,opacity:a,isChanged:r}),dependencies:{borderRadius:{childs:["borderTopLeftRadius","borderTopRightRadius","borderBottomLeftRadius","borderBottomRightRadius"],nullValue:["bgImageSrc","borderColorOpacity"],tempValue:[]}}})}function oe({v:e,device:t,prefix:o,opacity:n,isChanged:a="hex"}){if("desktop"===t||"mobile"===t){return{mobilePaddingRight:0===(n=re({v:e,device:t,prefix:o,opacity:n,isChanged:a}))?0:"hex"===a||n>0?e.tempMobilePaddingRight:e.mobilePaddingRight,mobilePaddingLeft:0===n?0:"hex"===a||n>0?e.tempMobilePaddingLeft:e.mobilePaddingLeft}}return{}}function ne({device:e,state:t,prefix:o,palette:n}){const a=o=>Object(i.a)({key:o,device:e,state:t}),l="temp"+Object(r.c)(o);return{[a(Object(r.b)(o,"colorPalette"))]:n,[a(Object(r.b)(l,"colorPalette"))]:n}}function ae({v:e,device:t,state:o,prefix:n,opacity:a,isChanged:l="hex"}){return a=re({v:e,device:t,state:o,prefix:n,opacity:a,isChanged:l}),{[(s=Object(r.b)(n,"colorOpacity"),Object(i.a)({key:s,device:t,state:o}))]:a};var s}function re({v:e,device:t,state:o,prefix:n,opacity:a,isChanged:l="hex"}){const s=n=>Object(i.b)({v:e,key:n,device:t,state:o}),c="temp"+Object(r.c)(n);return"hex"!==l&&"palette"!==l||0!==s(Object(r.b)(n,"colorOpacity"))||1!==s(Object(r.b)(c,"colorOpacity"))||""===s("bgImageSrc")?"hex"!==l&&"palette"!==l||0!==s(Object(r.b)(n,"colorOpacity"))?void 0===a?s(Object(r.b)(n,"colorOpacity")):a:s(Object(r.b)(c,"colorOpacity")):.9}function ie({v:e,device:t,state:o,boxShadowType:n,prefix:a=""}){const l=e=>Object(i.a)({key:e,device:t,state:o}),s=Object(r.b)(a,"boxShadow"),c=Object(r.b)("temp",s);return{[l(s)]:n,[l(c)]:""!==n?n:(d=c,Object(i.b)({v:e,key:d,device:t,state:o}))};var d}function le({v:e,device:t,state:o,boxShadowType:n,prefix:a=""}){const i=Object(r.b)(a,"boxShadow");return h({v:e,device:t,state:o,value:n,dependencies:{[Object(r.b)(i,"colorOpacity")]:{childs:[],nullValue:[],tempValue:[]},[Object(r.b)(i,"colorPalette")]:{childs:[],nullValue:[],tempValue:[]},[Object(r.b)(i,"blur")]:{childs:[],nullValue:[],tempValue:[]},[Object(r.b)(i,"spread")]:{childs:[],nullValue:[],tempValue:[]},[Object(r.b)(i,"vertical")]:{childs:[],nullValue:[],tempValue:[]},[Object(r.b)(i,"horizontal")]:{childs:[],nullValue:[],tempValue:[]}}})}function se({v:e,device:t,state:o,hex:n,opacity:a,prefix:l="",isChanged:s="hex",opacityDragEnd:c=!1}){const d=e=>Object(i.a)({key:e,device:t,state:o}),u=Object(r.b)(l,"boxShadow"),p=Object(r.b)(u,"colorHex"),b=Object(r.b)(u,"colorOpacity"),m=Object(r.b)("temp",b),h=(a=he({v:e,device:t,state:o,opacity:a,prefix:l,isChanged:s}))>0&&c?a:(g=m,Object(i.b)({v:e,key:g,device:t,state:o}));var g;return{[d(p)]:n,[d(b)]:a,[d(m)]:h}}function ce({v:e,device:t,state:o,opacity:n,prefix:a="",isChanged:l="hex"}){const s=e=>Object(i.a)({key:e,device:t,state:o}),c=n=>Object(i.b)({v:e,key:n,device:t,state:o}),d=Object(r.b)(a,"boxShadow"),u=Object(r.b)(d,"colorPalette"),p=Object(r.b)("temp",u);n=he({v:e,device:t,state:o,opacity:n,isChanged:l});const b="hex"===l||0===n?"":c(n>0?p:u),m="hex"===l?"":c(p);return{[s(u)]:b,[s(p)]:m}}function de({v:e,device:t,state:o,opacity:n,isChanged:a,prefix:i=""}){const l=Object(r.b)(i,"boxShadow"),s={[l]:{childs:[],nullValue:[],tempValue:[]},[Object(r.b)(l,"blur")]:{childs:[],nullValue:[],tempValue:[]},[Object(r.b)(l,"spread")]:{childs:[],nullValue:[],tempValue:[]},[Object(r.b)(l,"vertical")]:{childs:[],nullValue:[],tempValue:[]},[Object(r.b)(l,"horizontal")]:{childs:[],nullValue:[],tempValue:[]}};return h({v:e,device:t,state:o,value:n=he({v:e,device:t,state:o,opacity:n,prefix:i,isChanged:a}),dependencies:s})}function ue({device:e,state:t,palette:o,prefix:n=""}){const a=o=>Object(i.a)({key:o,device:e,state:t}),l=Object(r.b)(n,"boxShadow"),s=Object(r.b)(l,"colorPalette"),c=Object(r.b)("temp",s);return{[a(s)]:o,[a(c)]:o}}function pe({v:e,device:t,state:o,opacity:n,isChanged:a,prefix:l=""}){const s=Object(r.b)(l,"boxShadow"),c=Object(r.b)(s,"colorOpacity");return n=he({v:e,device:t,state:o,opacity:n,prefix:l,isChanged:a}),{[(d=c,Object(i.a)({key:d,device:t,state:o}))]:n};var d}function be({device:e,state:t,boxShadowBlur:o=0,boxShadowSpread:n=0,boxShadowVertical:a=0,boxShadowHorizontal:l=0,prefix:s=""}){const c=o=>Object(i.a)({key:o,device:e,state:t}),d=Object(r.b)(s,"boxShadow"),u=Object(r.b)(d,"blur"),p=Object(r.b)(d,"spread"),b=Object(r.b)(d,"vertical"),m=Object(r.b)(d,"horizontal"),h=Object(r.b)("temp",u),g=Object(r.b)("temp",p),v=Object(r.b)("temp",b),f=Object(r.b)("temp",m);return{[c(u)]:o,[c(h)]:o,[c(p)]:n,[c(g)]:n,[c(b)]:a,[c(v)]:a,[c(m)]:l,[c(f)]:l}}function me({v:e,device:t,state:o,boxShadowBlur:n=0,boxShadowSpread:a=0,boxShadowVertical:i=0,boxShadowHorizontal:l=0,prefix:s=""}){const c=Math.max(n,a,i,l),d=Object(r.b)(s,"boxShadow");return h({v:e,device:t,state:o,value:c,dependencies:{[d]:{childs:[],nullValue:[],tempValue:[]},[Object(r.b)(d,"colorOpacity")]:{childs:[],nullValue:[],tempValue:[]},[Object(r.b)(d,"colorPalette")]:{childs:[],nullValue:[],tempValue:[]}}})}function he({v:e,device:t,state:o,prefix:n="",opacity:a,isChanged:l="hex"}){const s=n=>Object(i.b)({v:e,key:n,device:t,state:o}),c=Object(r.b)(n,"boxShadow"),d=Object(r.b)(c,"colorOpacity"),u=Object(r.b)("temp",d);return"hex"!==l&&"palette"!==l||0!==s(d)?void 0===a?s(d):a:s(u)}function ge({v:e,device:t,state:o,textShadowType:n,prefix:a=""}){const l=e=>Object(i.a)({key:e,device:t,state:o}),s=Object(r.b)(a,"textShadow"),c=Object(r.b)("temp",s);return{[l(s)]:n,[l(c)]:""!==n?n:(d=c,Object(i.b)({v:e,key:d,device:t,state:o}))};var d}function ve({v:e,device:t,state:o,hex:n,opacity:a,prefix:l="",isChanged:s="hex",opacityDragEnd:c=!1}){const d=e=>Object(i.a)({key:e,device:t,state:o}),u=Object(r.b)(l,"textShadow"),p=Object(r.b)(u,"colorHex"),b=Object(r.b)(u,"colorOpacity"),m=Object(r.b)("temp",b),h=(a=xe({v:e,device:t,state:o,opacity:a,prefix:l,isChanged:s}))>0&&c?a:(g=m,Object(i.b)({v:e,key:g,device:t,state:o}));var g;return{[d(u)]:"shadow",[d(p)]:n,[d(b)]:a,[d(m)]:h}}function fe({v:e,device:t,state:o,opacity:n,prefix:a="",isChanged:l="hex"}){const s=e=>Object(i.a)({key:e,device:t,state:o}),c=n=>Object(i.b)({v:e,key:n,device:t,state:o}),d=Object(r.b)(a,"textShadow"),u=Object(r.b)(d,"colorPalette"),p=Object(r.b)("temp",u);n=xe({v:e,device:t,state:o,opacity:n,isChanged:l});const b="hex"===l||0===n?"":c(n>0?p:u),m="hex"===l?"":c(p);return{[s(d)]:"shadow",[s(u)]:b,[s(p)]:m}}function ye({device:e,state:t,palette:o,prefix:n=""}){const a=o=>Object(i.a)({key:o,device:e,state:t}),l=Object(r.b)(n,"textShadow"),s=Object(r.b)(l,"colorPalette"),c=Object(r.b)("temp",s);return{[a(l)]:"shadow",[a(s)]:o,[a(c)]:o}}function Oe({v:e,device:t,state:o,opacity:n,isChanged:a,prefix:l=""}){const s=e=>Object(i.a)({key:e,device:t,state:o}),c=Object(r.b)(l,"textShadow"),d=Object(r.b)(c,"colorOpacity");return n=xe({v:e,device:t,state:o,opacity:n,prefix:l,isChanged:a}),{[s(c)]:"shadow",[s(d)]:n}}function Se({device:e,state:t,textShadowBlur:o=0,textShadowVertical:n=0,textShadowHorizontal:a=0,prefix:l=""}){const s=o=>Object(i.a)({key:o,device:e,state:t}),c=Object(r.b)(l,"textShadow"),d=Object(r.b)(c,"blur"),u=Object(r.b)(c,"vertical"),p=Object(r.b)(c,"horizontal"),b=Object(r.b)("temp",d),m=Object(r.b)("temp",u),h=Object(r.b)("temp",p);return{[s(c)]:"shadow",[s(d)]:o,[s(b)]:o,[s(u)]:n,[s(m)]:n,[s(p)]:a,[s(h)]:a}}function xe({v:e,device:t,state:o,prefix:n="",opacity:a,isChanged:l="hex"}){const s=n=>Object(i.b)({v:e,key:n,device:t,state:o}),c=Object(r.b)(n,"textShadow"),d=Object(r.b)(c,"colorOpacity"),u=Object(r.b)("temp",d);return"hex"!==l&&"palette"!==l||0!==s(d)?void 0===a?s(d):a:s(u)}function Ce(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function je(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?Ce(Object(o),!0).forEach((function(t){Object(a.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):Ce(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function Pe({v:e,device:t,state:o,me:n="padding",childs:a,value:i,suffix:l,sliderDragEnd:s,prefix:c=""}){const u=[],p=[],b=Object(r.b)(c,n);return a.forEach(e=>{const t=Object(r.b)(c,e);u.push(t),p.push(Object(r.b)(t,"suffix"))}),je(je({},d({v:e,device:t,state:o,me:b+"Suffix",childs:p,value:l,dragEnd:s})),d({v:e,device:t,state:o,childs:u,value:i,me:b,dragEnd:s}))}function Be({v:e,device:t,state:o,value:n,suffix:a,sliderDragEnd:i,childs:l,current:s,me:c="padding",prefix:d=""}){const p=[],b=[],m=Object(r.b)(d,c),h=Object(r.b)(d,s);return l.forEach(e=>{const t=Object(r.b)(d,e);p.push(t),b.push(Object(r.b)(t,"suffix"))}),je(je({},u({v:e,device:t,state:o,me:m+"Suffix",childs:b,current:h+"Suffix",value:a,dragEnd:i})),u({v:e,device:t,state:o,childs:p,current:h,value:n,me:m,dragEnd:i}))}function we(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function Te(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?we(Object(o),!0).forEach((function(t){Object(a.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):we(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function ze({v:e,device:t,state:o,value:n,suffix:a}){const r=["marginTop","marginRight","marginBottom","marginLeft"],i=[];for(var l=0;l<r.length;l++)i[l]=r[l]+"Suffix";return Te(Te({},p({v:e,device:t,state:o,parent:"marginSuffix",childs:i,value:a})),p({v:e,device:t,state:o,parent:"margin",childs:r,value:n}))}function Ee({v:e,device:t,state:o,current:n,value:a,suffix:r}){const l=["marginTop","marginRight","marginBottom","marginLeft"],s=[];for(var c=0;c<l.length;c++)s[c]=l[c]+"Suffix";return Te(Te(Te({[""+Object(i.a)({key:n+"Suffix",device:t,state:o})]:r},m({v:e,device:t,state:o,childs:l,current:n,value:a})),b({v:e,device:t,state:o,parent:"margin",childs:l,current:n,value:a})),b({v:e,device:t,state:o,parent:"marginSuffix",childs:s,current:n+"Suffix",value:r}))}function ke({v:e,device:t,state:o,opacity:n,isChanged:a="hex"}){return h({v:e,device:t,state:o,value:n=function({v:e,device:t,state:o,opacity:n,isChanged:a}){return"hex"===a&&0===Object(i.b)({v:e,key:"boxShadowColorOpacity",device:t,state:o})?Object(i.b)({v:e,key:"tempBoxShadowColorOpacity",device:t,state:o}):void 0===n?Object(i.b)({v:e,key:"boxShadowColorOpacity",device:t,state:o}):n}({v:e,device:t,state:o,opacity:n,isChanged:a}),dependencies:{boxShadowBlur:{childs:[],nullValue:[],tempValue:[]},boxShadowVertical:{childs:[],nullValue:[],tempValue:[]}}})}function He({v:e,device:t,state:o,colorType:n}){const a=e=>Object(i.a)({key:e,device:t,state:o});return{[a("colorType")]:n,[a("gradientActivePointer")]:"solid"===n?"startPointer":(r="gradientActivePointer",Object(i.b)({v:e,key:r,device:t,state:o}))};var r}function Fe({v:e,device:t,state:o,hex:n,opacity:a,isChanged:r="hex",opacityDragEnd:l=!1}){const s=(a=Ie({v:e,device:t,state:o,opacity:a,isChanged:r}))>0&&l?a:Object(i.b)({v:e,key:"tempBg2ColorOpacity",device:t,state:o});return{[Object(i.a)({key:"bg2ColorHex",device:t,state:o})]:n,[Object(i.a)({key:"bg2ColorOpacity",device:t,state:o})]:a,[Object(i.a)({key:"tempBg2ColorOpacity",device:t,state:o})]:s}}function _e({v:e,device:t,state:o,opacity:n,isChanged:a="hex"}){n=Ie({v:e,device:t,state:o,opacity:n,isChanged:a});const r="hex"===a||0===n?"":n>0?Object(i.b)({v:e,key:"tempBg2ColorPalette",device:t,state:o}):Object(i.b)({v:e,key:"bg2ColorPalette",device:t,state:o}),l="hex"===a?"":Object(i.b)({v:e,key:"tempBg2ColorPalette",device:t,state:o});return{[Object(i.a)({key:"bg2ColorPalette",device:t,state:o})]:r,[Object(i.a)({key:"tempBg2ColorPalette",device:t,state:o})]:l}}function Re({v:e,device:t,state:o,opacity:n,isChanged:a="hex"}){return h({v:e,device:t,state:o,value:n=Ie({v:e,device:t,state:o,opacity:n,isChanged:a}),dependencies:{borderRadius:{childs:["borderTopLeftRadius","borderTopRightRadius","borderBottomLeftRadius","borderBottomRightRadius"],nullValue:["bg2ImageSrc","borderColorOpacity"],tempValue:[]}}})}function Le({device:e,state:t,palette:o}){return{[Object(i.a)({key:"bg2ColorPalette",device:e,state:t})]:o,[Object(i.a)({key:"tempBg2ColorPalette",device:e,state:t})]:o}}function Me({v:e,device:t,state:o,opacity:n,isChanged:a="hex"}){return n=Ie({v:e,device:t,state:o,opacity:n,isChanged:a}),{[Object(i.a)({key:"bg2ColorOpacity",device:t,state:o})]:n}}function Ie({v:e,device:t,state:o,opacity:n,isChanged:a}){return"hex"===a&&0===Object(i.b)({v:e,key:"bg2ColorOpacity",device:t,state:o})&&1===Object(i.b)({v:e,key:"tempBg2ColorOpacity",device:t,state:o})&&""!==Object(i.b)({v:e,key:"bg2ImageSrc",device:t,state:o})?.9:"hex"===a&&0===Object(i.b)({v:e,key:"bg2ColorOpacity",device:t,state:o})?Object(i.b)({v:e,key:"tempBg2ColorOpacity",device:t,state:o}):void 0===n?Object(i.b)({v:e,key:"bg2ColorOpacity",device:t,state:o}):n}function We({v:e,hex:t,opacity:o,isChanged:n="hex"}){return{borderColorHex:t,borderColorOpacity:o=t!==e.borderColorHex&&0===e.borderColorOpacity?e.tempBorderColorOpacity:o,borderColorPalette:"hex"===n?"":e.borderColorPalette,tempBorderColorOpacity:o>0?o:e.tempBorderColorOpacity,tempBorderColorPalette:"hex"===n?"":e.tempBorderColorPalette,padding:0===o&&0===e.bgColorOpacity?0:o>0?e.tempPadding:e.padding,borderRadiusType:0===o&&0===e.bgColorOpacity?"":o>0?e.tempBorderRadiusType:e.borderRadiusType,fillType:0===o&&0===e.bgColorOpacity?"default":o>0&&0===e.bgColorOpacity?"outline":e.fillType,borderWidth:0===o?0:o>0?e.tempBorderWidth:e.borderWidth,bgColorOpacity:o>0&&e.bgColorOpacity>0?e.tempBgColorOpacity:e.bgColorOpacity,hoverBgColorHex:e.bgColorHex===e.hoverBgColorHex?t:e.hoverBgColorHex,hoverBgColorOpacity:0===o&&0===e.bgColorOpacity?0:e.bgColorOpacity===e.hoverBgColorOpacity?o:e.hoverBgColorOpacity}}function Ne({v:e,palette:t}){return{borderColorPalette:t,tempBorderColorPalette:t,borderColorOpacity:0===e.borderColorOpacity?e.tempBorderColorOpacity:e.borderColorOpacity,padding:e.tempPadding,borderRadiusType:e.tempBorderRadiusType,fillType:0===e.bgColorOpacity?"outline":e.bgColorOpacity>0?"filled":e.fillType,borderWidth:e.tempBorderWidth}}function Ae({v:e,hex:t,opacity:o,isChanged:n}){return{borderColorPalette:"hex"===n?"":e.borderColorPalette,borderColorHex:t,borderColorOpacity:o}}function Ve({v:e,hex:t,opacity:o,isChanged:n="hex"}){return{hoverBorderColorHex:t,hoverBorderColorOpacity:t!==e.hoverBorderColorHex&&0==e.hoverBorderColorOpacity?e.tempHoverBorderColorOpacity:o,hoverBorderColorPalette:"hex"===n?"":e.hoverBorderColorPalette}}function De({v:e,palette:t}){return{hoverBorderColorPalette:t,hoverBorderColorOpacity:0===e.hoverBorderColorOpacity?e.tempHoverBorderColorOpacity:e.hoverBorderColorOpacity}}function $e({v:e,hex:t,opacity:o,isChanged:n}){return{hoverBorderColorPalette:"hex"===n?"":e.hoverBorderColorPalette,hoverBorderColorHex:t,hoverBorderColorOpacity:o}}var Ge=o(16);function Ue({v:e,hex:t,opacity:o,isChanged:n="hex",opacityDragEnd:a=!1}){return{borderColorHex:t,borderColorOpacity:o=t!==e.borderColorHex&&0===e.borderColorOpacity?e.tempBorderColorOpacity:o,tempBorderColorOpacity:o>0&&a?o:e.tempBorderColorOpacity,borderColorPalette:"hex"===n?"":e.borderColorPalette,tempBorderColorPalette:"hex"===n?"":e.tempBorderColorPalette,paddingRL:0===o&&0===e.bgColorOpacity?0:o>0&&!Ge.d?e.tempPaddingRL:e.paddingRL,paddingRight:0===o&&0===e.bgColorOpacity?0:o>0&&!Ge.d?e.tempPaddingRight:e.paddingRight,paddingLeft:0===o&&0===e.bgColorOpacity?0:o>0&&!Ge.d?e.tempPaddingLeft:e.paddingRight,paddingTB:0!==o||0!==e.bgColorOpacity||Ge.d?e.paddingTB:e.tempPaddingTB,paddingTop:0!==o||0!==e.bgColorOpacity||Ge.d?e.paddingTop:e.tempPaddingTop,paddingBottom:0!==o||0!==e.bgColorOpacity||Ge.d?e.paddingBottom:e.tempPaddingBottom,fillType:0===o&&0===e.bgColorOpacity?"default":o>0&&0===e.bgColorOpacity?"outline":e.fillType,borderRadiusType:0===o&&0===e.bgColorOpacity?"":o>0?e.tempBorderRadiusType:e.borderRadiusType,borderWidth:0===o?0:o>0?e.tempBorderWidth:e.borderWidth,bgColorOpacity:o>0&&e.bgColorOpacity>0?e.tempBgColorOpacity:e.bgColorOpacity,hoverBgColorHex:e.bgColorHex===e.hoverBgColorHex?t:e.hoverBgColorHex,hoverBgColorOpacity:0===o&&0===e.bgColorOpacity?0:e.bgColorOpacity===e.hoverBgColorOpacity?o:e.hoverBgColorOpacity}}function Ke({v:e,palette:t}){return{borderColorPalette:t,tempBorderColorPalette:t,borderColorOpacity:0===e.borderColorOpacity?e.tempBorderColorOpacity:e.borderColorOpacity,borderRadiusType:e.tempBorderRadiusType,fillType:0===e.bgColorOpacity?"outline":e.bgColorOpacity>0?"filled":e.fillType,borderWidth:e.tempBorderWidth}}function Ye({v:e,hex:t,opacity:o,isChanged:n="hex"}){return{borderColorPalette:"hex"===n?"":e.borderColorPalette,borderColorHex:t,borderColorOpacity:o}}function qe({v:e,hex:t,opacity:o,isChanged:n="hex"}){return{hoverBorderColorHex:t,hoverBorderColorOpacity:t!==e.hoverBorderColorHex&&0==e.hoverBorderColorOpacity?e.tempHoverBorderColorOpacity:o,hoverBorderColorPalette:"hex"===n?"":e.hoverBorderColorPalette}}function Xe({v:e,palette:t}){return{hoverBorderColorPalette:t,hoverBorderColorOpacity:0===e.hoverBorderColorOpacity?e.tempHoverBorderColorOpacity:e.hoverBorderColorOpacity}}function Ze({v:e,hex:t,opacity:o,isChanged:n="hex"}){return{hoverBorderColorPalette:"hex"===n?"":e.hoverBorderColorPalette,hoverBorderColorHex:t,hoverBorderColorOpacity:o}}function Je({v:e,hex:t,opacity:o,isChanged:n="hex",opacityDragEnd:a=!1}){return{bgColorHex:t,bgColorOpacity:o=t!==e.bgColorHex&&0===e.bgColorOpacity?e.tempBgColorOpacity:o,bgColorPalette:"hex"===n?"":e.bgColorPalette,tempBgColorPalette:"hex"===n?"":e.tempBgColorPalette,tempBgColorOpacity:o>0&&a?o:e.tempBgColorOpacity,borderRadiusType:0===o&&0===e.borderColorOpacity?"":o>0?e.tempBorderRadiusType:e.borderRadiusType,fillType:0===o&&0===e.borderColorOpacity?"default":0===o&&e.borderColorOpacity>0?"outline":o>0?"filled":e.fillType,borderWidth:0===o&&0===e.borderColorOpacity?0:e.borderWidth,borderColorHex:""!==e.bgColorPalette&&e.bgColorPalette===e.borderColorPalette&&"filled"===e.fillType||""===e.bgColorPalette&&e.bgColorHex===e.borderColorHex&&"filled"===e.fillType?t:e.borderColorHex,borderColorPalette:""!==e.bgColorPalette&&e.bgColorPalette===e.borderColorPalette&&"filled"===e.fillType?"":e.borderColorPalette,tempBorderColorPalette:""!==e.bgColorPalette&&e.bgColorPalette===e.borderColorPalette&&"filled"===e.fillType?"":e.tempBorderColorPalette,borderColorOpacity:""===e.bgColorPalette&&e.bgColorHex===e.borderColorHex&&e.bgColorOpacity===e.tempBorderColorOpacity&&"filled"===e.fillType||0===o&&0===e.borderColorOpacity?0:e.borderColorOpacity,hoverBgColorOpacity:0===o&&0===e.borderColorOpacity?0:o>0?e.tempHoverBgColorOpacity:e.hoverBgColorOpacity,hoverBorderColorHex:e.borderColorHex===e.hoverBorderColorHex?t:e.hoverBorderColorHex,hoverBorderColorOpacity:0===o&&0===e.bgColorOpacity?0:e.hoverBorderColorOpacity}}function Qe({v:e,palette:t}){return{bgColorPalette:t,tempBgColorPalette:t,bgColorOpacity:0===e.bgColorOpacity?e.tempBgColorOpacity:e.bgColorOpacity,borderRadiusType:e.tempBorderRadiusType,fillType:"filled",borderColorPalette:""!==e.bgColorPalette&&e.bgColorPalette===e.borderColorPalette&&"filled"===e.fillType||""===e.bgColorPalette&&e.bgColorHex===e.borderColorHex&&"filled"===e.fillType?t:e.borderColorPalette,tempBorderColorPalette:""!==e.bgColorPalette&&e.bgColorPalette===e.borderColorPalette&&"filled"===e.fillType||""===e.bgColorPalette&&e.bgColorHex===e.borderColorHex&&"filled"===e.fillType?t:e.borderColorPalette,hoverBgColorOpacity:e.tempHoverBgColorOpacity}}function et({v:e,hex:t,opacity:o,isChanged:n="hex"}){return"startPointer"===e.gradientActivePointer?{bgColorPalette:"hex"===n?"":e.bgColorPalette,bgColorHex:t,bgColorOpacity:o}:{gradientColorPalette:"hex"===n?"":e.gradientColorPalette,gradientColorHex:t,gradientColorOpacity:o}}function tt({v:e,hex:t,opacity:o,isChanged:n="hex",opacityDragEnd:a=!1}){return{hoverBgColorHex:t,hoverBgColorOpacity:o=t!==e.hoverBgColorHex&&0===e.hoverBgColorOpacity?e.tempHoverBgColorOpacity:o,tempHoverBgColorOpacity:o>0&&a?o:e.tempHoverBgColorOpacity,hoverBgColorPalette:"hex"===n?"":e.hoverBgColorPalette,tempHoverBgColorPalette:"hex"===n?"":e.tempHoverBgColorPalette,hoverBorderColorHex:""!==e.hoverBgColorPalette&&e.hoverBgColorPalette===e.hoverBorderColorPalette&&"filled"===e.fillType||""===e.hoverBgColorPalette&&e.hoverBgColorHex===e.hoverBorderColorHex&&"filled"===e.fillType?t:e.hoverBorderColorHex,hoverBorderColorPalette:""!==e.hoverBgColorPalette&&e.hoverBgColorPalette===e.hoverBorderColorPalette&&"filled"===e.fillType?"":e.hoverBorderColorPalette,tempHoverBorderColorPalette:""!==e.hoverBgColorPalette&&e.hoverBgColorPalette===e.hoverBorderColorPalette&&"filled"===e.fillType?"":e.tempHoverBorderColorPalette,hoverBorderColorOpacity:""===e.hoverBgColorPalette&&e.hoverBgColorHex===e.hoverBorderColorHex&&e.hoverBgColorOpacity===e.tempHoverBorderColorOpacity&&"filled"===e.fillType?0:e.hoverBorderColorOpacity}}function ot({v:e,palette:t}){return{hoverBgColorPalette:t,hoverBgColorOpacity:0===e.hoverBgColorOpacity?e.tempHoverBgColorOpacity:e.hoverBgColorOpacity,hoverBorderColorPalette:""!==e.hoverBgColorPalette&&e.hoverBgColorPalette===e.hoverBorderColorPalette&&"filled"===e.fillType||""===e.hoverBgColorPalette&&e.hoverBgColorHex===e.hoverBorderColorHex&&"filled"===e.fillType?t:e.hoverBorderColorPalette,tempHoverBorderColorPalette:""!==e.hoverBgColorPalette&&e.hoverBgColorPalette===e.hoverBorderColorPalette&&"filled"===e.fillType||""===e.hoverBgColorPalette&&e.hoverBgColorHex===e.hoverBorderColorHex&&"filled"===e.fillType?t:e.hoverBorderColorPalette}}function nt({v:e,hex:t,opacity:o,isChanged:n="hex"}){return{hoverBgColorPalette:"hex"===n?"":e.hoverBgColorPalette,hoverBgColorHex:t,hoverBgColorOpacity:o}}function at({v:e,hex:t,opacity:o,isChanged:n,opacityDragEnd:a}){return{colorHex:t,colorOpacity:o=t!==e.colorHex&&0==e.colorOpacity?e.tempColorOpacity:o,colorPalette:"hex"===n?"":e.colorPalette,tempColorOpacity:o>0&&a?o:e.tempColorOpacity,hoverColorHex:e.colorHex===e.hoverColorHex?t:e.hoverColorHex,hoverColorOpacity:e.colorOpacity===e.hoverColorOpacity?o:e.hoverColorOpacity}}function rt({v:e,palette:t}){return{colorPalette:t,colorOpacity:0===e.colorOpacity?e.tempColorOpacity:e.colorOpacity}}function it({v:e,hex:t,opacity:o,isChanged:n="hex"}){return{colorPalette:"hex"===n?"":e.colorPalette,colorHex:t,colorOpacity:o}}function lt({v:e,hex:t,opacity:o,isChanged:n="hex"}){return{hoverColorHex:t,hoverColorOpacity:t!==e.hoverColorHex&&0==e.hoverColorOpacity?e.tempHoverColorOpacity:o,hoverColorPalette:"hex"===n?"":e.hoverColorPalette}}function st({v:e,palette:t}){return{hoverColorPalette:t,hoverColorOpacity:0===e.hoverColorOpacity?e.tempHoverColorOpacity:e.hoverColorOpacity}}function ct({v:e,hex:t,opacity:o,isChanged:n="hex"}){return{hoverColorPalette:"hex"===n?"":e.hoverColorPalette,hoverColorHex:t,hoverColorOpacity:o}}function dt({v:e,hex:t,opacity:o,isChanged:n,opacityDragEnd:a}){return{colorHex:t,colorOpacity:o=t!==e.colorHex&&0===e.colorOpacity?e.tempColorOpacity:o,colorPalette:"hex"===n?"":e.colorPalette,tempColorOpacity:o>0&&a?o:e.tempColorOpacity,hoverColorHex:e.colorHex===e.hoverColorHex?t:e.hoverColorHex,hoverColorOpacity:e.colorOpacity===e.hoverColorOpacity?o:e.hoverColorOpacity}}function ut({v:e,palette:t}){return{colorPalette:t,colorOpacity:0===e.colorOpacity?e.tempColorOpacity:e.colorOpacity,hoverColorPalette:e.colorPalette===e.hoverColorPalette?t:e.hoverColorPalette}}function pt({v:e,hex:t,opacity:o,isChanged:n}){return{colorPalette:"hex"===n?"":e.colorPalette,colorHex:t,colorOpacity:o,hoverColorHex:e.colorHex===e.hoverColorHex?t:e.hoverColorHex,hoverColorOpacity:e.colorOpacity===e.hoverColorOpacity?o:e.hoverColorOpacity}}function bt({v:e,hex:t,opacity:o,isChanged:n}){return o=t!==e.colorHex&&0===e.colorOpacity?e.tempColorOpacity:o,{hoverColorHex:t,hoverColorOpacity:t!==e.hoverColorHex&&0===e.hoverColorOpacity?e.tempHoverColorOpacity:o,hoverColorPalette:"hex"===n?"":e.hoverColorPalette}}function mt({v:e,palette:t}){return{hoverColorPalette:t,hoverColorOpacity:0===e.hoverColorOpacity?e.tempHoverColorOpacity:e.hoverColorOpacity}}function ht({v:e,hex:t,opacity:o,isChanged:n}){return{hoverColorPalette:"hex"===n?"":e.hoverColorPalette,hoverColorHex:t,hoverColorOpacity:o}}function gt({v:e,hex:t,opacity:o,isChanged:n,opacityDragEnd:a}){return{mMenuColorHex:t,mMenuColorOpacity:o=t!==e.mMenuColorHex&&0==e.mMenuColorOpacity?e.mMenuTempColorOpacity:o,mMenuColorPalette:"hex"===n?"":e.mMenuColorPalette,mMenuTempColorOpacity:o>0&&a?o:e.mMenuTempColorOpacity,mMenuHoverColorHex:e.mMenuColorHex===e.mMenuHoverColorHex?t:e.mMenuHoverColorHex,mMenuHoverColorOpacity:e.mMenuColorOpacity===e.mMenuHoverColorOpacity?o:e.mMenuHoverColorOpacity}}function vt({v:e,palette:t}){return{mMenuColorPalette:t,mMenuColorOpacity:0===e.mMenuColorOpacity?e.mMenuTempColorOpacity:e.mMenuColorOpacity}}function ft({v:e,hex:t,opacity:o,isChanged:n}){return{mMenuColorPalette:"hex"===n?"":e.mMenuColorPalette,mMenuColorHex:t,mMenuColorOpacity:o}}function yt({v:e,hex:t,opacity:o,isChanged:n}){return{mMenuHoverColorHex:t,mMenuHoverColorOpacity:t!==e.mMenuHoverColorHex&&0==e.mMenuHoverColorOpacity?e.mMenuTempHoverColorOpacity:o,mMenuHoverColorPalette:"hex"===n?"":e.mMenuHoverColorPalette}}function Ot({v:e,palette:t}){return{mMenuHoverColorPalette:t,mMenuHoverColorOpacity:0===e.mMenuHoverColorOpacity?e.mMenuTempHoverColorOpacity:e.mMenuHoverColorOpacity}}function St({v:e,hex:t,opacity:o,isChanged:n}){return{mMenuHoverColorPalette:"hex"===n?"":e.mMenuHoverColorPalette,mMenuHoverColorHex:t,mMenuHoverColorOpacity:o}}function xt({v:e,hex:t,opacity:o,isChanged:n,opacityDragEnd:a}){return{subMenuColorHex:t,subMenuColorOpacity:o=t!==e.subMenuColorHex&&0===e.subMenuColorOpacity?e.subMenuTempColorOpacity:o,subMenuColorPalette:"hex"===n?"":e.subMenuColorPalette,subMenuTempColorOpacity:o>0&&a?o:e.subMenuTempColorOpacity,subMenuHoverColorHex:e.subMenuColorHex===e.subMenuHoverColorHex?t:e.subMenuHoverColorHex,subMenuHoverColorOpacity:e.subMenuColorOpacity===e.subMenuHoverColorOpacity?o:e.subMenuHoverColorOpacity,mMenuColorHex:e.subMenuColorHex===e.mMenuColorHex?t:e.mMenuColorHex,mMenuColorOpacity:e.subMenuColorOpacity===e.mMenuColorOpacity?o:e.mMenuColorOpacity,mMenuHoverColorHex:e.subMenuColorHex===e.mMenuHoverColorHex?t:e.mMenuHoverColorHex,mMenuHoverColorOpacity:e.subMenuColorOpacity===e.mMenuHoverColorOpacity?o:e.mMenuHoverColorOpacity}}function Ct({v:e,palette:t}){return{subMenuColorPalette:t,subMenuColorOpacity:0===e.subMenuColorOpacity?e.subMenuTempColorOpacity:e.subMenuColorOpacity,subMenuHoverColorPalette:e.subMenuColorPalette===e.subMenuHoverColorPalette?t:e.subMenuHoverColorPalette,mMenuColorPalette:e.subMenuColorPalette===e.mMenuColorPalette?t:e.mMenuColorPalette,mMenuHoverColorPalette:e.subMenuColorPalette===e.mMenuHoverColorPalette?t:e.mMenuHoverColorPalette}}function jt({v:e,hex:t,opacity:o,isChanged:n}){return{subMenuColorPalette:"hex"===n?"":e.subMenuColorPalette,subMenuColorHex:t,subMenuColorOpacity:o,subMenuHoverColorHex:e.subMenuColorHex===e.subMenuHoverColorHex?t:e.subMenuHoverColorHex,subMenuHoverColorOpacity:e.subMenuColorOpacity===e.subMenuHoverColorOpacity?t:e.subMenuHoverColorOpacity,mMenuColorHex:e.subMenuColorHex===e.mMenuColorHex?t:e.mMenuBgColorHex,mMenuColorOpacity:e.subMenuColorOpacity===e.mMenuColorOpacity?o:e.mMenuColorOpacity,mMenuHoverColorHex:e.subMenuColorHex===e.mMenuHoverColorHex?t:e.mMenuHoverColorHex,mMenuHoverColorOpacity:e.subMenuColorOpacity===e.mMenuHoverColorOpacity?o:e.mMenuHoverColorOpacity}}function Pt({v:e,hex:t,opacity:o,isChanged:n}){return{subMenuHoverColorHex:t,subMenuHoverColorOpacity:t!==e.subMenuHoverColorHex&&0===e.subMenuHoverColorOpacity?e.subMenuTempHoverColorOpacity:o,subMenuHoverColorPalette:"hex"===n?"":e.subMenuHoverColorPalette,mMenuHoverColorHex:e.subMenuHoverColorHex===e.mMenuHoverColorHex?t:e.mMenuHoverColorHex,mMenuHoverColorOpacity:e.subMenuHoverColorOpacity===e.mMenuHoverColorOpacity?o:e.mMenuHoverColorOpacity}}function Bt({v:e,palette:t}){return{subMenuHoverColorPalette:t,subMenuHoverColorOpacity:0===e.subMenuHoverColorOpacity?e.subMenuTempHoverColorOpacity:e.subMenuHoverColorOpacity,mMenuHoverColorPalette:e.subMenuHoverColorPalette===e.mMenuHoverColorPalette?t:e.mMenuHoverColorPalette}}function wt({v:e,hex:t,opacity:o,isChanged:n}){return{subMenuHoverColorPalette:"hex"===n?"":e.subMenuHoverColorPalette,subMenuHoverColorHex:t,subMenuHoverColorOpacity:o,mMenuHoverColorHex:e.subMenuHoverColorHex===e.mMenuHoverColorHex?t:e.mMenuHoverColorHex,mMenuHoverColorOpacity:e.subMenuHoverColorOpacity===e.mMenuHoverColorOpacity?o:e.mMenuHoverColorOpacity}}function Tt({v:e,hex:t,opacity:o,isChanged:n}){return{mMenuIconColorHex:t,mMenuIconColorOpacity:t!==e.mMenuIconColorHex&&0===e.mMenuIconColorOpacity?e.mMenuTempIconColorOpacity:o,mMenuIconColorPalette:"hex"===n?"":e.mMenuIconColorPalette}}function zt({v:e,palette:t}){return{mMenuIconColorPalette:t,mMenuIconColorHex:"",mMenuIconColorOpacity:0===e.mMenuIconColorOpacity?e.mMenuTempIconColorOpacity:e.mMenuIconColorOpacity}}function Et({v:e,hex:t,opacity:o,isChanged:n}){const a=t!==e.mMenuIconColorHex&&0===e.mMenuIconColorOpacity?e.mMenuTempIconColorOpacity:o;return{mMenuIconColorPalette:"hex"===n?"":e.mMenuIconColorPalette,mMenuIconColorHex:t,mMenuIconColorOpacity:a}}function kt({v:e,hex:t,opacity:o,isChanged:n}){return{tabletMMenuIconColorHex:t,tabletMMenuIconColorOpacity:t!==e.tabletMMenuIconColorHex&&0===e.tabletMMenuIconColorOpacity?e.mMenuTempIconColorOpacity:o,tabletMMenuIconColorPalette:"hex"===n?"":e.tabletMMenuIconColorPalette}}function Ht({v:e,palette:t}){return{tabletMMenuIconColorPalette:t,tabletMMenuIconColorHex:"",tabletMMenuIconColorOpacity:0===e.tabletMMenuIconColorOpacity?e.mMenuTempIconColorOpacity:e.tabletMMenuIconColorOpacity}}function Ft({v:e,hex:t,opacity:o,isChanged:n}){const a=t!==e.tabletMMenuIconColorHex&&0===e.tabletMMenuIconColorOpacity?e.mMenuTempIconColorOpacity:o;return{tabletMMenuIconColorPalette:"hex"===n?"":e.tabletMMenuIconColorPalette,tabletMMenuIconColorHex:t,tabletMMenuIconColorOpacity:a}}function _t({v:e,hex:t,opacity:o,isChanged:n}){return{mobileMMenuIconColorHex:t,mobileMMenuIconColorOpacity:t!==e.mobileMMenuIconColorHex&&0===e.mobileMMenuIconColorOpacity?e.mMenuTempIconColorOpacity:o,mobileMMenuIconColorPalette:"hex"===n?"":e.mobileMMenuIconColorPalette}}function Rt({v:e,palette:t}){return{mobileMMenuIconColorPalette:t,mobileMMenuIconColorHex:"",mobileMMenuIconColorOpacity:0===e.mobileMMenuIconColorOpacity?e.mMenuTempIconColorOpacity:e.mobileMMenuIconColorOpacity}}function Lt({v:e,hex:t,opacity:o,isChanged:n}){const a=t!==e.mobileMMenuIconColorHex&&0===e.mobileMMenuIconColorOpacity?e.mMenuTempIconColorOpacity:o;return{mobileMMenuIconColorPalette:"hex"===n?"":e.mobileMMenuIconColorPalette,mobileMMenuIconColorHex:t,mobileMMenuIconColorOpacity:a}}function Mt({v:e,hex:t,opacity:o,isChanged:n,opacityDragEnd:a}){return{mMenuBgColorHex:t,mMenuBgColorOpacity:o=t!==e.mMenuBgColorHex&&0==e.mMenuBgColorOpacity?e.mMenuTempBgColorOpacity:o,mMenuBgColorPalette:"hex"===n?"":e.mMenuBgColorPalette,mMenuTempBgColorOpacity:o>0&&a?o:e.mMenuTempBgColorOpacity}}function It({v:e,palette:t}){return{mMenuBgColorPalette:t,mMenuBgColorOpacity:0===e.mMenuBgColorOpacity?e.mMenuTempBgColorOpacity:e.mMenuBgColorOpacity}}function Wt({v:e,hex:t,opacity:o,isChanged:n}){return{mMenuBgColorPalette:"hex"===n?"":e.mMenuBgColorPalette,mMenuBgColorHex:t,mMenuBgColorOpacity:o}}function Nt({v:e,hex:t,opacity:o,isChanged:n,opacityDragEnd:a=!1}){return{subMenuBgColorHex:t,subMenuBgColorOpacity:o=t!==e.subMenuBgColorHex&&0===e.subMenuBgColorOpacity?e.subMenuTempBgColorOpacity:o,subMenuBgColorPalette:"hex"===n?"":e.subMenuBgColorPalette,subMenuTempBgColorOpacity:o>0&&a?o:e.subMenuTempBgColorOpacity,subMenuHoverBgColorHex:e.subMenuBgColorHex===e.subMenuHoverBgColorHex?t:e.subMenuHoverBgColorHex,subMenuHoverBgColorOpacity:e.subMenuBgColorOpacity===e.subMenuHoverBgColorOpacity?t:e.subMenuHoverBgColorOpacity,mMenuBgColorHex:e.subMenuBgColorHex===e.mMenuBgColorHex?t:e.mMenuBgColorHex,mMenuBgColorOpacity:e.subMenuBgColorOpacity===e.mMenuBgColorOpacity?o:e.mMenuBgColorOpacity}}function At({v:e,palette:t}){return{subMenuBgColorPalette:t,subMenuBgColorOpacity:0===e.subMenuBgColorOpacity?e.subMenuTempBgColorOpacity:e.subMenuBgColorOpacity,subMenuHoverBgColorPalette:e.subMenuBgColorPalette===e.subMenuHoverBgColorPalette?t:e.subMenuHoverBgColorPalette,mMenuBgColorPalette:e.subMenuBgColorPalette===e.mMenuBgColorPalette?t:e.mMenuBgColorPalette}}function Vt({v:e,hex:t,opacity:o,isChanged:n}){return{subMenuBgColorPalette:"hex"===n?"":e.subMenuBgColorPalette,subMenuBgColorHex:t,subMenuBgColorOpacity:o,subMenuHoverBgColorHex:e.subMenuBgColorHex===e.subMenuHoverBgColorHex?t:e.subMenuHoverBgColorHex,subMenuHoverBgColorOpacity:e.subMenuBgColorOpacity===e.subMenuHoverBgColorOpacity?t:e.subMenuHoverBgColorOpacity,mMenuBgColorHex:e.subMenuBgColorHex===e.mMenuBgColorHex?t:e.mMenuBgColorHex,mMenuBgColorOpacity:e.subMenuBgColorOpacity===e.mMenuBgColorOpacity?o:e.mMenuBgColorOpacity}}function Dt({v:e,hex:t,opacity:o,isChanged:n}){return{subMenuHoverBgColorHex:t,subMenuHoverBgColorOpacity:t!==e.subMenuHoverBgColorHex&&0===e.subMenuHoverBgColorOpacity?e.subMenuTempHoverBgColorOpacity:o,subMenuHoverBgColorPalette:"hex"===n?"":e.subMenuHoverBgColorPalette}}function $t({v:e,palette:t}){return{subMenuHoverBgColorPalette:t,subMenuHoverBgColorOpacity:0===e.subMenuHoverBgColorOpacity?e.subMenuTempHoverBgColorOpacity:e.subMenuHoverBgColorOpacity}}function Gt({v:e,hex:t,opacity:o,isChanged:n}){return{subMenuHoverBgColorPalette:"hex"===n?"":e.subMenuHoverBgColorPalette,subMenuHoverBgColorHex:t,subMenuHoverBgColorOpacity:o}}function Ut({v:e,hex:t,opacity:o,isChanged:n,opacityDragEnd:a}){return{mMenuBorderColorHex:t,mMenuBorderColorOpacity:o=t!==e.mMenuBorderColorHex&&0==e.mMenuBorderColorOpacity?e.mMenuTempBorderColorOpacity:o,mMenuBorderColorPalette:"hex"===n?"":e.mMenuBorderColorPalette,mMenuTempBorderColorOpacity:o>0&&a?o:e.mMenuTempBorderColorOpacity}}function Kt({v:e,palette:t}){return{mMenuBorderColorPalette:t,mMenuBorderColorOpacity:0===e.mMenuBorderColorOpacity?e.mMenuTempBorderColorOpacity:e.mMenuBorderColorOpacity}}function Yt({v:e,hex:t,opacity:o,isChanged:n}){return{mMenuBorderColorPalette:"hex"===n?"":e.mMenuBorderColorPalette,mMenuBorderColorHex:t,mMenuBorderColorOpacity:o}}function qt({v:e,hex:t,opacity:o,isChanged:n,opacityDragEnd:a}){return{subMenuBorderColorHex:t,subMenuBorderColorOpacity:o=t!==e.subMenuBorderColorHex&&0===e.subMenuBorderColorOpacity?e.subMenuTempBorderColorOpacity:o,subMenuBorderColorPalette:"hex"===n?"":e.subMenuBorderColorPalette,subMenuTempBorderColorOpacity:o>0&&a?o:e.subMenuTempBorderColorOpacity,mMenuBorderColorHex:e.subMenuBorderColorHex===e.mMenuBorderColorHex?t:e.mMenuBorderColorHex,mMenuBorderColorOpacity:e.subMenuBorderColorOpacity===e.mMenuBorderColorOpacity?o:e.mMenuBorderColorOpacity}}function Xt({v:e,palette:t}){return{subMenuBorderColorPalette:t,subMenuBorderColorOpacity:0===e.subMenuBorderColorOpacity?e.subMenuTempBorderColorOpacity:e.subMenuBorderColorOpacity,mMenuBorderColorPalette:e.subMenuBorderColorPalette===e.mMenuBorderColorPalette?t:e.mMenuBorderColorPalette}}function Zt({v:e,hex:t,opacity:o,isChanged:n}){return{subMenuBorderColorPalette:"hex"===n?"":e.subMenuBorderColorPalette,subMenuBorderColorHex:t,subMenuBorderColorOpacity:o,mMenuBorderColorHex:e.subMenuBorderColorHex===e.mMenuBorderColorHex?t:e.mMenuBorderColorHex,mMenuBorderColorOpacity:e.subMenuBorderColorOpacity===e.mMenuBorderColorOpacity?o:e.mMenuBorderColorOpacity}}function Jt({v:e,hex:t,opacity:o,isChanged:n}){return{activeSubMenuColorHex:t,activeSubMenuColorOpacity:t!==e.activeSubMenuColorHex&&0===e.activeSubMenuColorOpacity?e.tempActiveSubMenuColorOpacity:o,activeSubMenuColorPalette:"hex"===n?"":e.activeSubMenuColorPalette,activeMMenuColorHex:e.activeSubMenuColorHex===e.activeMMenuColorHex?t:e.activeMMenuColorHex,activeMMenuColorOpacity:e.activeSubMenuColorOpacity===e.activeMMenuColorOpacity?o:e.activeMMenuColorOpacity}}function Qt({v:e,palette:t}){return{activeSubMenuColorPalette:t,activeSubMenuColorOpacity:0===e.activeSubMenuColorOpacity?e.tempActiveSubMenuColorOpacity:e.activeSubMenuColorOpacity,activeMMenuColorPalette:e.activeSubMenuColorPalette===e.activeMMenuColorPalette?t:e.activeMMenuColorPalette}}function eo({v:e,hex:t,opacity:o,isChanged:n}){return{activeSubMenuColorPalette:"hex"===n?"":e.activeSubMenuColorPalette,activeSubMenuColorHex:t,activeSubMenuColorOpacity:o,activeMMenuColorHex:e.activeSubMenuColorHex===e.activeMMenuColorHex?t:e.activeMMenuColorHex,activeMMenuColorOpacity:e.activeSubMenuColorOpacity===e.activeMMenuColorOpacity?o:e.activeMMenuColorOpacity}}function to({v:e,hex:t,opacity:o,isChanged:n}){return{activeSubMenuBgColorHex:t,activeSubMenuBgColorOpacity:t!==e.activeSubMenuBgColorHex&&0===e.activeSubMenuBgColorOpacity?e.tempActiveSubMenuBgColorOpacity:o,activeSubMenuBgColorPalette:"hex"===n?"":e.activeSubMenuBgColorPalette}}function oo({v:e,palette:t}){return{activeSubMenuBgColorPalette:t,activeSubMenuBgColorOpacity:0===e.activeSubMenuBgColorOpacity?e.tempActiveSubMenuBgColorOpacity:e.activeSubMenuBgColorOpacity}}function no({v:e,hex:t,opacity:o,isChanged:n}){return{activeSubMenuBgColorPalette:"hex"===n?"":e.activeSubMenuBgColorPalette,activeSubMenuBgColorHex:t,activeSubMenuBgColorOpacity:o}}function ao({v:e,hex:t,opacity:o,isChanged:n}){return{activeMMenuColorHex:t,activeMMenuColorOpacity:t!==e.activeMMenuColorHex&&0==e.activeMMenuColorOpacity?e.tempActiveMMenuHoverColorOpacity:o,activeMMenuColorPalette:"hex"===n?"":e.activeMMenuColorPalette}}function ro({v:e,palette:t}){return{activeMMenuColorPalette:t,activeMMenuColorOpacity:0===e.activeMMenuColorOpacity?e.tempActiveMMenuHoverColorOpacity:e.activeMMenuColorOpacity}}function io({v:e,hex:t,opacity:o,isChanged:n}){return{activeMMenuColorPalette:"hex"===n?"":e.activeMMenuColorPalette,activeMMenuColorHex:t,activeMMenuColorOpacity:o}}var lo=o(43);function so(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function co(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?so(Object(o),!0).forEach((function(t){Object(a.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):so(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function uo(e,t){const{fontSize:o,fontFamily:n,fontFamilyType:a,lineHeight:r,letterSpacing:i,fontWeight:l}=""===t.fontStyle?t:Object(lo.e)(t.fontStyle);return co({fontSize:o,fontFamily:n,fontFamilyType:a,lineHeight:r,letterSpacing:i,fontWeight:l,fontStyle:""},e)}function po(e,t){const{tabletFontSize:o,tabletLineHeight:n,tabletLetterSpacing:a,tabletFontWeight:r}=""===t.tabletFontStyle?t:Object(lo.e)(t.tabletFontStyle);return co({tabletFontSize:o,tabletLineHeight:n,tabletLetterSpacing:a,tabletFontWeight:r,tabletFontStyle:""},e)}function bo(e,t){const{mobileFontSize:o,mobileLineHeight:n,mobileLetterSpacing:a,mobileFontWeight:r}=""===t.mobileFontStyle?t:Object(lo.e)(t.mobileFontStyle);return co({mobileFontSize:o,mobileLineHeight:n,mobileLetterSpacing:a,mobileFontWeight:r,mobileFontStyle:""},e)}var mo=o(13);function ho(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function go(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?ho(Object(o),!0).forEach((function(t){Object(a.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):ho(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function vo({v:e,prefix:t="",current:o,value:n,weights:a,type:l,device:s,state:c}){const d=Object(i.a)({key:Object(r.b)(t,"fontStyle"),device:s,state:c}),u=Object(i.a)({key:Object(r.b)(t,"fontFamily"),device:s,state:c}),p=Object(i.a)({key:Object(r.b)(t,"fontFamilyType"),device:s,state:c}),b=Object(i.a)({key:Object(r.b)(t,"fontSize"),device:s,state:c}),m=Object(i.a)({key:Object(r.b)(t,"lineHeight"),device:s,state:c}),h=Object(i.a)({key:Object(r.b)(t,"letterSpacing"),device:s,state:c}),g=Object(i.a)({key:Object(r.b)(t,"fontWeight"),device:s,state:c}),v=Object(mo.e)("fontFamilyType",Object(i.b)({v:e,key:Object(r.b)(t,"fontFamilyType"),device:s,state:c}),Object(i.b)({v:e,key:Object(r.b)(t,"fontStyle"),device:s,state:c})),f=Object(mo.e)("fontFamily",Object(i.b)({v:e,key:Object(r.b)(t,"fontFamily"),device:s,state:c}),Object(i.b)({v:e,key:Object(r.b)(t,"fontStyle"),device:s,state:c})),y=Object(mo.e)("fontSize",Object(i.b)({v:e,key:Object(r.b)(t,"fontSize"),device:s,state:c}),Object(i.b)({v:e,key:Object(r.b)(t,"fontStyle"),device:s,state:c})),O=Object(mo.e)("lineHeight",Object(i.b)({v:e,key:Object(r.b)(t,"lineHeight"),device:s,state:c}),Object(i.b)({v:e,key:Object(r.b)(t,"fontStyle"),device:s,state:c})),S=Object(mo.e)("letterSpacing",Object(i.b)({v:e,key:Object(r.b)(t,"letterSpacing"),device:s,state:c}),Object(i.b)({v:e,key:Object(r.b)(t,"fontStyle"),device:s,state:c})),x=Object(mo.e)("fontWeight",Object(i.b)({v:e,key:Object(r.b)(t,"fontWeight"),device:s,state:c}),Object(i.b)({v:e,key:Object(r.b)(t,"fontStyle"),device:s,state:c}));return go(go(go(go(go({[d]:""},o===u?{[u]:n,[p]:l}:{[u]:f,[p]:v}),o===b?{[b]:n}:{[b]:y}),o===m?{[m]:n}:{[m]:O}),o===h?{[h]:n}:{[h]:S}),o===g?{[g]:n}:o===u?{[g]:Object(lo.l)(x,a)}:{[g]:x})}},,function(e,t,o){"use strict";function n({v:e}){const{tabsState:t}=e;return"tabHover"===t?"hover":"normal"}o.d(t,"ae",(function(){return n})),o.d(t,"wd",(function(){return r})),o.d(t,"k",(function(){return c})),o.d(t,"l",(function(){return d})),o.d(t,"m",(function(){return u})),o.d(t,"g",(function(){return p})),o.d(t,"p",(function(){return h})),o.d(t,"o",(function(){return g})),o.d(t,"q",(function(){return v})),o.d(t,"r",(function(){return S})),o.d(t,"n",(function(){return x})),o.d(t,"t",(function(){return C})),o.d(t,"s",(function(){return j})),o.d(t,"u",(function(){return P})),o.d(t,"B",(function(){return B})),o.d(t,"h",(function(){return T})),o.d(t,"i",(function(){return z})),o.d(t,"j",(function(){return E})),o.d(t,"gd",(function(){return H})),o.d(t,"b",(function(){return F})),o.d(t,"a",(function(){return _})),o.d(t,"c",(function(){return R})),o.d(t,"Ed",(function(){return L})),o.d(t,"Cd",(function(){return M})),o.d(t,"Zd",(function(){return W})),o.d(t,"Vd",(function(){return N})),o.d(t,"Wd",(function(){return A})),o.d(t,"Ud",(function(){return V})),o.d(t,"Xd",(function(){return $})),o.d(t,"Yd",(function(){return D})),o.d(t,"Pb",(function(){return G})),o.d(t,"Ob",(function(){return U})),o.d(t,"Tb",(function(){return K})),o.d(t,"Qb",(function(){return Y})),o.d(t,"Rb",(function(){return q})),o.d(t,"Sb",(function(){return X})),o.d(t,"zd",(function(){return Z})),o.d(t,"xd",(function(){return J})),o.d(t,"Ad",(function(){return Q})),o.d(t,"yd",(function(){return ee})),o.d(t,"Bd",(function(){return te})),o.d(t,"qd",(function(){return oe})),o.d(t,"pd",(function(){return ne})),o.d(t,"nd",(function(){return ae})),o.d(t,"od",(function(){return re})),o.d(t,"td",(function(){return ie})),o.d(t,"rd",(function(){return le})),o.d(t,"ud",(function(){return se})),o.d(t,"sd",(function(){return ce})),o.d(t,"vd",(function(){return de})),o.d(t,"md",(function(){return ue})),o.d(t,"ld",(function(){return pe})),o.d(t,"jd",(function(){return be})),o.d(t,"kd",(function(){return me})),o.d(t,"z",(function(){return ge})),o.d(t,"w",(function(){return ve})),o.d(t,"x",(function(){return fe})),o.d(t,"A",(function(){return ye})),o.d(t,"v",(function(){return Oe})),o.d(t,"y",(function(){return Se})),o.d(t,"ee",(function(){return Ce})),o.d(t,"ce",(function(){return je})),o.d(t,"de",(function(){return Pe})),o.d(t,"fe",(function(){return Be})),o.d(t,"be",(function(){return we})),o.d(t,"Qd",(function(){return ze})),o.d(t,"Pd",(function(){return Ee})),o.d(t,"Md",(function(){return ke})),o.d(t,"Nd",(function(){return He})),o.d(t,"Ld",(function(){return Fe})),o.d(t,"Od",(function(){return _e})),o.d(t,"Kd",(function(){return Re})),o.d(t,"Jd",(function(){return Le})),o.d(t,"Gd",(function(){return Me})),o.d(t,"Hd",(function(){return Ie})),o.d(t,"Fd",(function(){return We})),o.d(t,"Id",(function(){return Ne})),o.d(t,"Rd",(function(){return Ae})),o.d(t,"Sd",(function(){return Ve})),o.d(t,"te",(function(){return Ge})),o.d(t,"ne",(function(){return Ke})),o.d(t,"oe",(function(){return Ye})),o.d(t,"pe",(function(){return qe})),o.d(t,"se",(function(){return Xe})),o.d(t,"qe",(function(){return Ze})),o.d(t,"re",(function(){return Je})),o.d(t,"ge",(function(){return Qe})),o.d(t,"he",(function(){return et})),o.d(t,"ie",(function(){return tt})),o.d(t,"le",(function(){return ot})),o.d(t,"je",(function(){return nt})),o.d(t,"ke",(function(){return at})),o.d(t,"cd",(function(){return rt})),o.d(t,"ed",(function(){return it})),o.d(t,"fd",(function(){return lt})),o.d(t,"dd",(function(){return st})),o.d(t,"id",(function(){return dt})),o.d(t,"hd",(function(){return ut})),o.d(t,"Dd",(function(){return pt})),o.d(t,"Y",(function(){return bt})),o.d(t,"W",(function(){return mt})),o.d(t,"X",(function(){return ht})),o.d(t,"Lb",(function(){return gt})),o.d(t,"me",(function(){return vt})),o.d(t,"bb",(function(){return ft})),o.d(t,"db",(function(){return yt})),o.d(t,"cb",(function(){return Ot})),o.d(t,"fb",(function(){return St})),o.d(t,"gb",(function(){return xt})),o.d(t,"hb",(function(){return Ct})),o.d(t,"kb",(function(){return jt})),o.d(t,"lb",(function(){return Pt})),o.d(t,"jb",(function(){return Bt})),o.d(t,"Dc",(function(){return wt})),o.d(t,"zc",(function(){return Tt})),o.d(t,"pc",(function(){return zt})),o.d(t,"wc",(function(){return Et})),o.d(t,"uc",(function(){return kt})),o.d(t,"vc",(function(){return Ht})),o.d(t,"xc",(function(){return Ft})),o.d(t,"Bc",(function(){return _t})),o.d(t,"Ac",(function(){return Rt})),o.d(t,"yc",(function(){return Lt})),o.d(t,"Td",(function(){return Mt})),o.d(t,"Cc",(function(){return It})),o.d(t,"tc",(function(){return Wt})),o.d(t,"sc",(function(){return Nt})),o.d(t,"rc",(function(){return At})),o.d(t,"qc",(function(){return Vt})),o.d(t,"sb",(function(){return Dt})),o.d(t,"R",(function(){return $t})),o.d(t,"U",(function(){return Gt})),o.d(t,"V",(function(){return Ut})),o.d(t,"S",(function(){return Kt})),o.d(t,"T",(function(){return Yt})),o.d(t,"ib",(function(){return qt})),o.d(t,"O",(function(){return Xt})),o.d(t,"P",(function(){return Zt})),o.d(t,"J",(function(){return Jt})),o.d(t,"C",(function(){return io})),o.d(t,"I",(function(){return lo})),o.d(t,"G",(function(){return Qt})),o.d(t,"H",(function(){return eo})),o.d(t,"K",(function(){return to})),o.d(t,"L",(function(){return oo})),o.d(t,"F",(function(){return no})),o.d(t,"D",(function(){return ao})),o.d(t,"E",(function(){return ro})),o.d(t,"Q",(function(){return so})),o.d(t,"M",(function(){return co})),o.d(t,"N",(function(){return uo})),o.d(t,"Kb",(function(){return po})),o.d(t,"Ib",(function(){return bo})),o.d(t,"Jb",(function(){return mo})),o.d(t,"eb",(function(){return ho})),o.d(t,"Vc",(function(){return go})),o.d(t,"Wc",(function(){return vo})),o.d(t,"Fc",(function(){return fo})),o.d(t,"Ec",(function(){return yo})),o.d(t,"Gc",(function(){return Oo})),o.d(t,"nc",(function(){return So})),o.d(t,"oc",(function(){return xo})),o.d(t,"lc",(function(){return Co})),o.d(t,"mc",(function(){return jo})),o.d(t,"gc",(function(){return Po})),o.d(t,"hc",(function(){return Bo})),o.d(t,"fc",(function(){return wo})),o.d(t,"jc",(function(){return To})),o.d(t,"kc",(function(){return zo})),o.d(t,"ic",(function(){return Eo})),o.d(t,"Z",(function(){return ko})),o.d(t,"ab",(function(){return Ho})),o.d(t,"Ub",(function(){return Fo})),o.d(t,"Wb",(function(){return Ro})),o.d(t,"Vb",(function(){return _o})),o.d(t,"Nb",(function(){return Lo})),o.d(t,"Mb",(function(){return Mo})),o.d(t,"bd",(function(){return Io})),o.d(t,"Zc",(function(){return Wo})),o.d(t,"Yc",(function(){return No})),o.d(t,"Xc",(function(){return Ao})),o.d(t,"ad",(function(){return Vo})),o.d(t,"Sc",(function(){return Do})),o.d(t,"Jc",(function(){return $o})),o.d(t,"Hc",(function(){return Go})),o.d(t,"Ic",(function(){return Uo})),o.d(t,"Oc",(function(){return Ko})),o.d(t,"Pc",(function(){return Yo})),o.d(t,"Qc",(function(){return qo})),o.d(t,"Rc",(function(){return Xo})),o.d(t,"Mc",(function(){return Zo})),o.d(t,"Lc",(function(){return Jo})),o.d(t,"Nc",(function(){return Qo})),o.d(t,"Kc",(function(){return en})),o.d(t,"Ab",(function(){return tn})),o.d(t,"Cb",(function(){return on})),o.d(t,"Bb",(function(){return nn})),o.d(t,"Db",(function(){return an})),o.d(t,"Eb",(function(){return rn})),o.d(t,"mb",(function(){return ln})),o.d(t,"rb",(function(){return sn})),o.d(t,"ob",(function(){return dn})),o.d(t,"qb",(function(){return cn})),o.d(t,"pb",(function(){return un})),o.d(t,"nb",(function(){return pn})),o.d(t,"Fb",(function(){return bn})),o.d(t,"Hb",(function(){return mn})),o.d(t,"Gb",(function(){return hn})),o.d(t,"yb",(function(){return gn})),o.d(t,"zb",(function(){return vn})),o.d(t,"wb",(function(){return fn})),o.d(t,"tb",(function(){return yn})),o.d(t,"ub",(function(){return On})),o.d(t,"vb",(function(){return Sn})),o.d(t,"xb",(function(){return xn})),o.d(t,"ec",(function(){return Cn})),o.d(t,"Xb",(function(){return zn})),o.d(t,"Yb",(function(){return En})),o.d(t,"Zb",(function(){return Tn})),o.d(t,"ac",(function(){return wn})),o.d(t,"bc",(function(){return Pn})),o.d(t,"cc",(function(){return jn})),o.d(t,"dc",(function(){return Bn})),o.d(t,"f",(function(){return kn})),o.d(t,"e",(function(){return Hn})),o.d(t,"d",(function(){return Fn})),o.d(t,"Uc",(function(){return _n})),o.d(t,"Tc",(function(){return Rn}));var a=o(3);function r({v:e,device:t}){return Object(a.defaultValueValue)({v:e,key:"media",device:t})}var i=o(71),l=o(49);const s=e=>"svg"===e;function c({v:e,device:t,state:o}){const n=Object(i.i)({v:e,state:o}),r=Object(a.defaultValueValue)({v:e,key:"media",device:t,state:o}),c=Object(a.defaultValueValue)({v:e,key:"bgImageSrc",device:t,state:o}),d=Object(a.defaultValueValue)({v:e,key:"bgImageExtension",device:t,state:o}),u=Object(a.defaultValueValue)({v:e,key:"bgPopulation",device:t,state:o}),p=Object(a.defaultValueValue)({v:e,key:"media",device:t,state:"hover"}),b=Object(a.defaultValueValue)({v:e,key:"bgImageSrc",device:t,state:"hover"}),m=Object(a.defaultValueValue)({v:e,key:"bgImageExtension",device:t,state:"hover"}),h=Object(a.defaultValueValue)({v:e,key:"bgPopulation",device:t,state:"hover"}),g="image"===p&&""!==b&&""===h?`url(${s(m)?Object(l.g)(b):Object(l.d)(b)})`:"none",v="image"===r&&""!==c&&""===u?`url(${s(d)?Object(l.g)(c):Object(l.d)(c)})`:"none";return"hover"===n?g:v}function d({v:e,device:t,state:o}){const n=Object(i.i)({v:e,state:o}),r=Object(a.defaultValueValue)({v:e,key:"bgPopulation",device:t,state:o}),l=Object(a.defaultValueValue)({v:e,key:"bgPositionX",device:t,state:o}),s=Object(a.defaultValueValue)({v:e,key:"bgPopulation",device:t,state:"hover"}),c=Object(a.defaultValueValue)({v:e,key:"bgPositionX",device:t,state:"hover"});return"hover"===n&&""===s?c+"%":""===r?l+"%":0}function u({v:e,device:t,state:o}){const n=Object(i.i)({v:e,state:o}),r=Object(a.defaultValueValue)({v:e,key:"bgPopulation",device:t,state:o}),l=Object(a.defaultValueValue)({v:e,key:"bgPositionY",device:t,state:o}),s=Object(a.defaultValueValue)({v:e,key:"bgPopulation",device:t,state:"hover"}),c=Object(a.defaultValueValue)({v:e,key:"bgPositionY",device:t,state:"hover"});return"hover"===n&&""===s?c+"%":""===r?l+"%":0}function p({v:e,isSlider:t}){const{bgAttachment:o}=e;return{none:"scroll",fixed:"fixed",animated:"scroll"}[t?"none":o]}var b=o(9);const m=(e,t)=>"hover"===Object(i.i)({v:e,state:t})?"hover":t;function h({v:e,device:t,state:o,prefix:n=""}){o=m(e,o);const r=Object(b.b)(n,"borderRadius");return i=Object(b.b)(r,"type"),Object(a.defaultValueValue)({v:e,key:i,device:t,state:o});var i}function g({v:e,device:t,state:o,prefix:n=""}){o=m(e,o);return r=Object(b.b)(n,"borderRadius"),Object(a.defaultValueValue)({v:e,key:r,device:t,state:o});var r}function v({v:e,device:t,state:o,prefix:n="",current:r="topLeft"}){o=m(e,o);const i=Object(b.b)(n,"border");return l=Object(b.b)(i,r+"Radius"),Object(a.defaultValueValue)({v:e,key:l,device:t,state:o});var l}var f=o(17),y=o(13);const O=(e,t)=>"hover"===Object(i.i)({v:e,state:t})?"hover":t;function S({v:e,device:t,state:o,prefix:n=""}){o=O(e,o);const r=Object(b.b)(n,"border");return i=Object(b.b)(r,"style"),Object(a.defaultValueValue)({v:e,key:i,device:t,state:o});var i}function x({v:e,device:t,state:o,prefix:n=""}){o=O(e,o);const r=n=>Object(a.defaultValueValue)({v:e,key:n,device:t,state:o}),i=Object(b.b)(n,"border"),l=Object(b.b)(i,"colorHex"),s=Object(b.b)(i,"colorOpacity"),c=Object(b.b)(i,"colorPalette"),{hex:d}=Object(y.d)(r(l),r(c));return Object(f.c)(d,r(s))}function C({v:e,device:t,state:o,prefix:n=""}){o=O(e,o);const r=Object(b.b)(n,"border");return i=Object(b.b)(r,"widthType"),Object(a.defaultValueValue)({v:e,key:i,device:t,state:o});var i}function j({v:e,device:t,state:o,prefix:n=""}){o=O(e,o);const r=Object(b.b)(n,"border");return i=Object(b.b)(r,"width"),Object(a.defaultValueValue)({v:e,key:i,device:t,state:o});var i}function P({v:e,device:t,state:o,prefix:n="",current:r="top"}){o=O(e,o);const i=Object(b.b)(n,"border"),l=Object(b.b)(i,r+"Width");return s=l,Object(a.defaultValueValue)({v:e,key:s,device:t,state:o});var s}function B({v:e,device:t,state:o,prefix:n="color"}){o=((e,t)=>"hover"===Object(i.i)({v:e,state:t})?"hover":t)(e,o);const r=n=>Object(a.defaultValueValue)({v:e,key:n,device:t,state:o}),{hex:l}=Object(y.d)(r(Object(b.b)(n,"hex")),r(Object(b.b)(n,"palette")));return Object(f.c)(l,r(Object(b.b)(n,"opacity")))}const w=(e,t)=>"hover"===Object(i.i)({v:e,state:t})?"hover":t;function T({v:e,device:t,state:o,prefix:n="bg"}){o=w(e,o);const r=n=>Object(a.defaultValueValue)({v:e,key:n,device:t,state:o}),{hex:i}=Object(y.d)(r(Object(b.b)(n,"colorHex")),r(Object(b.b)(n,"colorPalette")));return Object(f.c)(i,r(Object(b.b)(n,"colorOpacity")))}function z({v:e,device:t,state:o,prefix:n="bg"}){o=w(e,o);const r=n=>Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});return Object(y.d)(r(Object(b.b)(n,"colorHex")),r(Object(b.b)(n,"colorPalette"))).hex}function E({v:e,device:t,state:o}){o=k(e,o);const n=n=>Object(a.defaultValueValue)({v:e,key:n,device:t,state:o}),r=n("bgColorType"),i=n("gradientType"),{hex:l}=Object(y.d)(n("bgColorHex"),n("bgColorPalette")),{hex:s}=Object(y.d)(n("gradientColorHex"),n("gradientColorPalette")),c=n("bgColorOpacity"),d=n("gradientColorOpacity"),u=n("gradientStartPointer"),p=n("gradientFinishPointer"),b=n("gradientLinearDegree"),m=n("gradientRadialDegree");return"gradient"===r?"linear"===i?`linear-gradient(${b}deg, ${Object(f.c)(l,c)} ${u}%, ${Object(f.c)(s,d)} ${p}%)`:`radial-gradient(circle ${m}px, ${Object(f.c)(l,c)} ${u}%, ${Object(f.c)(s,d)} ${p}%)`:"none"}const k=(e,t)=>"hover"===Object(i.i)({v:e,state:t})?"hover":t;function H({v:e,device:t,state:o}){return Object(a.defaultValueValue)({v:e,key:"hoverTransition",device:t,state:o})}function F({v:e,device:t,state:o,prefix:n=""}){const r=(i=Object(b.b)(n,"verticalAlign"),Object(a.defaultValueValue)({v:e,key:i,device:t,state:o}));var i;return void 0===r?r:{top:"flex-start",center:"center",bottom:"flex-end"}[r]}function _({v:e,device:t,state:o}){const n=Object(a.defaultValueValue)({v:e,key:"horizontalAlign",device:t,state:o});return void 0===n?n:{left:"flex-start",center:"center",right:"flex-end"}[n]}function R({v:e,device:t,state:o,prefix:n=""}){return r=Object(b.b)(n,"horizontalAlign"),Object(a.defaultValueValue)({v:e,key:r,device:t,state:o});var r}function L({v:e,device:t}){return Object(a.defaultValueValue)({v:e,key:"reverseColumns",device:t})}function M({v:e,device:t}){return Object(a.defaultValueValue)({v:e,key:"reverseColumns",device:t})}var I=o(29);function W({v:e,device:t,state:o,prefix:n=""}){return I.b((r=Object(b.b)(n,"width"),Object(a.defaultValueValue)({v:e,key:r,device:t,state:o})));var r}function N({v:e,device:t}){return I.b(Object(a.defaultValueValue)({v:e,key:"height",device:t}))}function A({v:e,device:t}){return I.b(Object(a.defaultValueValue)({v:e,key:"size",device:t}))}function V({v:e,device:t,state:o}){return I.b(Object(a.defaultValueValue)({v:e,key:"containerSize",device:t,state:o}))}function D({v:e,device:t,state:o}){return I.b(Object(a.defaultValueValue)({v:e,key:"textSpacing",device:t,state:o}))}function $({v:e,device:t,state:o}){return I.b((n="spacing",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o})));var n}function G({v:e,device:t,state:o}){return n="containerType",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function U({v:e,device:t,state:o}){return n="containerSize",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function K({v:e}){const{slider:t}=e;return t}function Y({v:e,device:t}){return Object(a.defaultValueValue)({v:e,key:"fullHeight",device:t})}function q({v:e,device:t}){return Object(a.defaultValueValue)({v:e,key:"sectionHeight",device:t})}function X({v:e,device:t}){return Object(a.defaultValueValue)({v:e,key:"sectionHeightSuffix",device:t})}function Z({v:e,device:t,state:o,prefix:n=""}){const r=Object(b.b)(n,"padding");return i=Object(b.b)(r,"type"),Object(a.defaultValueValue)({v:e,key:i,device:t,state:o});var i}function J({v:e,device:t,state:o,prefix:n=""}){return r=Object(b.b)(n,"padding"),Object(a.defaultValueValue)({v:e,key:r,device:t,state:o});var r}function Q({v:e,device:t,state:o,prefix:n="",current:r="paddingTop"}){return i=Object(b.b)(n,r),Object(a.defaultValueValue)({v:e,key:i,device:t,state:o});var i}function ee({v:e,device:t,state:o,prefix:n=""}){const r=Object(b.b)(n,"padding");return i=Object(b.b)(r,"suffix"),Object(a.defaultValueValue)({v:e,key:i,device:t,state:o});var i}function te({v:e,device:t,state:o,prefix:n="",current:r="paddingTopSuffix"}){return i=Object(b.b)(n,r),Object(a.defaultValueValue)({v:e,key:i,device:t,state:o});var i}function oe({v:e,device:t}){return Object(a.defaultValueValue)({v:e,key:"itemPaddingTop",device:t})+"px"}function ne({v:e,device:t}){return parseFloat(Object(a.defaultValueValue)({v:e,key:"itemPaddingRight",device:t})/2)+"px"}function ae({v:e,device:t}){return Object(a.defaultValueValue)({v:e,key:"itemPaddingBottom",device:t})+"px"}function re({v:e,device:t}){return parseFloat(Object(a.defaultValueValue)({v:e,key:"itemPaddingLeft",device:t})/2)+"px"}function ie({v:e,device:t,state:o}){return Object(a.defaultValueValue)({v:e,key:"marginType",device:t,state:o})}function le({v:e,device:t,state:o}){return Object(a.defaultValueValue)({v:e,key:"margin",device:t,state:o})}function se({v:e,device:t,state:o,current:n}){return Object(a.defaultValueValue)({v:e,key:n,device:t,state:o})}function ce({v:e,device:t,state:o}){return Object(a.defaultValueValue)({v:e,key:"marginSuffix",device:t,state:o})}function de({v:e,device:t,state:o,current:n}){return Object(a.defaultValueValue)({v:e,key:n,device:t,state:o})}function ue({v:e,device:t}){return-Object(a.defaultValueValue)({v:e,key:"itemPaddingTop",device:t})+"px"}function pe({v:e,device:t}){return parseFloat(-Object(a.defaultValueValue)({v:e,key:"itemPaddingRight",device:t})/2)+"px"}function be({v:e,device:t}){return-Object(a.defaultValueValue)({v:e,key:"itemPaddingBottom",device:t})+"px"}function me({v:e,device:t}){return parseFloat(-Object(a.defaultValueValue)({v:e,key:"itemPaddingLeft",device:t})/2)+"px"}const he=(e,t)=>"hover"===Object(i.i)({v:e,state:t})?"hover":t;function ge({v:e,device:t,state:o,prefix:n=""}){o=he(e,o);return r=Object(b.b)(n,"boxShadow"),Object(a.defaultValueValue)({v:e,key:r,device:t,state:o});var r}function ve({v:e,device:t,state:o,prefix:n=""}){o=he(e,o);const r=n=>Object(a.defaultValueValue)({v:e,key:n,device:t,state:o}),i=Object(b.b)(n,"boxShadow"),l=Object(b.b)(i,"colorHex"),s=Object(b.b)(i,"colorOpacity"),c=Object(b.b)(i,"colorPalette"),{hex:d}=Object(y.d)(r(l),r(c));return Object(f.c)(d,r(s))}function fe({v:e,device:t,state:o,prefix:n=""}){o=he(e,o);const r=Object(b.b)(n,"boxShadow");return i=Object(b.b)(r,"horizontal"),Object(a.defaultValueValue)({v:e,key:i,device:t,state:o});var i}function ye({v:e,device:t,state:o,prefix:n=""}){o=he(e,o);const r=Object(b.b)(n,"boxShadow");return i=Object(b.b)(r,"vertical"),Object(a.defaultValueValue)({v:e,key:i,device:t,state:o});var i}function Oe({v:e,device:t,state:o,prefix:n=""}){o=he(e,o);const r=Object(b.b)(n,"boxShadow");return i=Object(b.b)(r,"blur"),Object(a.defaultValueValue)({v:e,key:i,device:t,state:o});var i}function Se({v:e,device:t,state:o,prefix:n=""}){o=he(e,o);const r=Object(b.b)(n,"boxShadow");return i=Object(b.b)(r,"spread"),Object(a.defaultValueValue)({v:e,key:i,device:t,state:o});var i}const xe=(e,t)=>"hover"===Object(i.i)({v:e,state:t})?"hover":t;function Ce({v:e,device:t,state:o,prefix:n=""}){o=xe(e,o);return r=Object(b.b)(n,"textShadow"),Object(a.defaultValueValue)({v:e,key:r,device:t,state:o});var r}function je({v:e,device:t,state:o,prefix:n=""}){o=xe(e,o);const r=n=>Object(a.defaultValueValue)({v:e,key:n,device:t,state:o}),i=Object(b.b)(n,"textShadow"),l=Object(b.b)(i,"colorHex"),s=Object(b.b)(i,"colorOpacity"),c=Object(b.b)(i,"colorPalette"),{hex:d}=Object(y.d)(r(l),r(c));return Object(f.c)(d,r(s))}function Pe({v:e,device:t,state:o,prefix:n=""}){o=xe(e,o);const r=Object(b.b)(n,"textShadow");return i=Object(b.b)(r,"horizontal"),Object(a.defaultValueValue)({v:e,key:i,device:t,state:o});var i}function Be({v:e,device:t,state:o,prefix:n=""}){o=xe(e,o);const r=Object(b.b)(n,"textShadow");return i=Object(b.b)(r,"vertical"),Object(a.defaultValueValue)({v:e,key:i,device:t,state:o});var i}function we({v:e,device:t,state:o,prefix:n=""}){o=xe(e,o);const r=Object(b.b)(n,"textShadow");return i=Object(b.b)(r,"blur"),Object(a.defaultValueValue)({v:e,key:i,device:t,state:o});var i}var Te=o(167);function ze({v:e,device:t,state:o}){return Object(a.defaultValueValue)({v:e,key:"shapeTopType",device:t,state:o})}function Ee({v:e,device:t,state:o}){const{hex:n}=Object(y.d)(Object(a.defaultValueValue)({v:e,key:"shapeTopColorHex",device:t,state:o}),Object(a.defaultValueValue)({v:e,key:"shapeTopColorPalette",device:t,state:o})),r=Object(a.defaultValueValue)({v:e,key:"shapeTopColorOpacity",device:t,state:o}),i=Object(a.defaultValueValue)({v:e,key:"shapeTopType",device:t,state:o});return Object(Te.b)(i,Object(f.c)(n,r))}function ke({v:e,device:t,state:o}){return Object(a.defaultValueValue)({v:e,key:"shapeTopHeight",device:t,state:o})}function He({v:e,device:t,state:o}){return Object(a.defaultValueValue)({v:e,key:"shapeTopHeightSuffix",device:t,state:o})}function Fe({v:e,device:t,state:o}){return Object(a.defaultValueValue)({v:e,key:"shapeTopHorizontal",device:t,state:o})}function _e({v:e,device:t,state:o}){return Object(a.defaultValueValue)({v:e,key:"shapeTopIndex",device:t,state:o})}function Re({v:e,device:t,state:o}){return Object(a.defaultValueValue)({v:e,key:"shapeBottomType",device:t,state:o})}function Le({v:e,device:t,state:o}){const{hex:n}=Object(y.d)(Object(a.defaultValueValue)({v:e,key:"shapeBottomColorHex",device:t,state:o}),Object(a.defaultValueValue)({v:e,key:"shapeBottomColorPalette",device:t,state:o})),r=Object(a.defaultValueValue)({v:e,key:"shapeBottomColorOpacity",device:t,state:o}),i=Object(a.defaultValueValue)({v:e,key:"shapeBottomType",device:t,state:o});return Object(Te.b)(i,Object(f.c)(n,r))}function Me({v:e,device:t,state:o}){return Object(a.defaultValueValue)({v:e,key:"shapeBottomHeight",device:t,state:o})}function Ie({v:e,device:t,state:o}){return Object(a.defaultValueValue)({v:e,key:"shapeBottomHeightSuffix",device:t,state:o})}function We({v:e,device:t,state:o}){return Object(a.defaultValueValue)({v:e,key:"shapeBottomHorizontal",device:t,state:o})}function Ne({v:e,device:t,state:o}){return Object(a.defaultValueValue)({v:e,key:"shapeBottomIndex",device:t,state:o})}function Ae({v:e,device:t,state:o}){let n;return n="desktop"===t?function({v:e}){const t=e.showOnDesktop;return"on"===t||void 0===t?"":"blur(3px)"}({v:e,device:t,state:o}):"tablet"===t?function({v:e}){const t=e.showOnTablet;return"on"===t||void 0===t?"":"blur(3px)"}({v:e,device:t,state:o}):function({v:e}){const t=e.showOnMobile;return"on"===t||void 0===t?"":"blur(3px)"}({v:e,device:t,state:o}),n}function Ve({v:e,device:t,state:o}){let n;return n="desktop"===t?function({v:e}){const t=e.showOnDesktop;return"on"===t||void 0===t?1:.9}({v:e,device:t,state:o}):"tablet"===t?function({v:e}){const t=e.showOnTablet;return"on"===t||void 0===t?1:.9}({v:e,device:t,state:o}):function({v:e}){const t=e.showOnMobile;return"on"===t||void 0===t?1:.9}({v:e,device:t,state:o}),n}var De=o(2);function $e(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function Ge(e){return I.b((t="zIndex",Object(a.defaultValueValue)(function(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?$e(Object(o),!0).forEach((function(t){Object(De.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):$e(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}({key:t},e))));var t}var Ue=o(43);function Ke({v:e}){const{fontFamily:t,fontFamilyType:o}=e;return void 0===t?t:Object(Ue.d)({family:t,type:o}).family}function Ye({v:e,device:t,state:o}){return Object(a.defaultValueValue)({v:e,key:"fontSize",device:t,state:o})}function qe({v:e,device:t,state:o}){return Object(a.defaultValueValue)({v:e,key:"fontSizeSuffix",device:t,state:o})}function Xe({v:e,device:t,state:o}){return Object(a.defaultValueValue)({v:e,key:"lineHeight",device:t,state:o})}function Ze({v:e,device:t,state:o}){return Object(a.defaultValueValue)({v:e,key:"fontWeight",device:t,state:o})}function Je({v:e,device:t,state:o}){return Object(a.defaultValueValue)({v:e,key:"letterSpacing",device:t,state:o})}function Qe({v:e,device:t,state:o,prefix:n=""}){const r=n=>Object(a.defaultValueValue)({v:e,key:n,device:t,state:o}),i=Object(b.b)(n,"fontFamily"),l=Object(b.b)(n,"fontFamilyType"),s=Object(b.b)(n,"fontStyle"),c=Object(y.e)("fontFamily",e[i],r(s)),d=Object(y.e)("fontFamilyType",e[l],r(s));return Object(Ue.d)({type:d,family:c}).family}function et({v:e,device:t,state:o,prefix:n=""}){const r=n=>Object(a.defaultValueValue)({v:e,key:n,device:t,state:o}),i=Object(b.b)(n,"fontSize"),l=Object(b.b)(n,"fontStyle");return Object(y.e)((s="fontSize",Object(a.defaultValueKey)({key:s,device:t,state:o})),r(i),r(l));var s}function tt({v:e,device:t,state:o,prefix:n=""}){const r=n=>Object(a.defaultValueValue)({v:e,key:n,device:t,state:o}),i=Object(b.b)(n,"fontSizeSuffix"),l=Object(b.b)(n,"fontStyle");return Object(y.e)((s="fontSizeSuffix",Object(a.defaultValueKey)({key:s,device:t,state:o})),r(i),r(l));var s}function ot({v:e,device:t,state:o,prefix:n=""}){const r=n=>Object(a.defaultValueValue)({v:e,key:n,device:t,state:o}),i=Object(b.b)(n,"lineHeight"),l=Object(b.b)(n,"fontStyle");return Object(y.e)((s="lineHeight",Object(a.defaultValueKey)({key:s,device:t,state:o})),r(i),r(l));var s}function nt({v:e,device:t,state:o,prefix:n=""}){const r=n=>Object(a.defaultValueValue)({v:e,key:n,device:t,state:o}),i=Object(b.b)(n,"fontWeight"),l=Object(b.b)(n,"fontStyle");return Object(y.e)((s="fontWeight",Object(a.defaultValueKey)({key:s,device:t,state:o})),r(i),r(l));var s}function at({v:e,device:t,state:o,prefix:n=""}){const r=n=>Object(a.defaultValueValue)({v:e,key:n,device:t,state:o}),i=Object(b.b)(n,"letterSpacing"),l=Object(b.b)(n,"fontStyle");return Object(y.e)((s="letterSpacing",Object(a.defaultValueKey)({key:s,device:t,state:o})),r(i),r(l));var s}function rt({v:e,device:t,state:o,prefix:n=""}){o=ct(e,o);return r=Object(b.b)(n,"brightness"),Object(a.defaultValueValue)({v:e,key:r,device:t,state:o});var r}function it({v:e,device:t,state:o,prefix:n=""}){o=ct(e,o);return r=Object(b.b)(n,"hue"),Object(a.defaultValueValue)({v:e,key:r,device:t,state:o});var r}function lt({v:e,device:t,state:o,prefix:n=""}){o=ct(e,o);return r=Object(b.b)(n,"saturation"),Object(a.defaultValueValue)({v:e,key:r,device:t,state:o});var r}function st({v:e,device:t,state:o,prefix:n=""}){o=ct(e,o);return r=Object(b.b)(n,"contrast"),Object(a.defaultValueValue)({v:e,key:r,device:t,state:o});var r}const ct=(e,t)=>"hover"===Object(i.i)({v:e,state:t})?"hover":t;function dt({v:e,device:t,state:o}){return n="iconSpacing",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function ut({v:e,device:t,state:o}){return n="iconCustomSize",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function pt({v:e,device:t}){return Object(a.defaultValueValue)({v:e,key:"reverseColumns",device:t})}function bt({v:e,device:t}){return Object(a.defaultValueValue)({v:e,key:"columnsHeightStyle",device:t})}function mt({v:e,device:t}){return Object(a.defaultValueValue)({v:e,key:"columnsHeight",device:t})}function ht({v:e,device:t}){return Object(a.defaultValueValue)({v:e,key:"columnsHeightSuffix",device:t})}function gt({v:e,device:t,state:o}){return n="percentage",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function vt({v:e,device:t,state:o}){const n=Object(y.e)(Object(a.defaultValueKey)({key:"fontSize",device:t,state:o}),Object(a.defaultValueValue)({v:e,key:"fontSize",device:t,state:o}),Object(a.defaultValueValue)({v:e,key:"fontStyle",device:t,state:o}));return`calc(${n}px - ${(e=>e<=24?20:e>24&&e<=32?40:60)(n)}%)`}function ft({v:e,device:t}){return Object(a.defaultValueValue)({v:e,key:"spacing",device:t})+"px"}function yt({v:e,device:t,state:o,prefix:n="strokeColor"}){return B({v:e,device:t,state:o,prefix:n})}function Ot({v:e,device:t,state:o,prefix:n="fillColor"}){return B({v:e,device:t,state:o,prefix:n})}function St({v:e}){const{iconPosition:t}=e;return"right"===t?"row-reverse":"row"}function xt({v:e,device:t}){const{iconPosition:o}=e;return"right"===o?(n="iconSpacing",Object(a.defaultValueValue)({v:e,key:n,device:t}))+"px":"auto";var n}function Ct({v:e,device:t}){const{iconPosition:o}=e;return"left"===o?(n="iconSpacing",Object(a.defaultValueValue)({v:e,key:n,device:t}))+"px":"auto";var n}function jt({v:e,device:t}){return Object(a.defaultValueValue)({v:e,key:"gridColumn",device:t})}function Pt({v:e,device:t}){return Object(a.defaultValueValue)({v:e,key:"spacing",device:t})}function Bt({v:e,device:t}){return Object(a.defaultValueValue)({v:e,key:"filterStyle",device:t})}function wt({v:e,device:t,state:o}){const n=Object(a.defaultValueValue)({v:e,key:"ratio",device:t,state:o});return void 0===n?n:{"1:1":"100%","2:1":"50%","2:3":"150%","3:4":"125%","3:2":"66.67%","4:3":"75%","9:16":"177.78%","16:9":"56.25%","21:9":"42.86%"}[n]}function Tt({v:e,device:t,state:o}){const n=Object(a.defaultValueValue)({v:e,key:"iconSize",device:t,state:o}),r=Math.round(.35*n);return void 0===n?n:r}function zt({v:e,device:t,state:o}){const n=Object(a.defaultValueValue)({v:e,key:"ratio",device:t,state:o});return void 0===n?n:"4:3"===n?"#000":"transparent"}function Et({v:e,device:t,state:o}){const n=n=>Object(a.defaultValueValue)({v:e,key:n,device:t,state:o}),r=n("coverImageSrc"),i=n("coverImageExtension"),s=n("coverSizeType");if(void 0!==r)return""===r?"none":(e=>"svg"===e)(i)?`url(${Object(l.g)(r)})`:"custom"===s?`url(${Object(l.d)(r)})`:`url(${Object(l.c)(r,s)})`}function kt({v:e,device:t,state:o}){return Object(a.defaultValueValue)({v:e,key:"coverPositionX",device:t,state:o})}function Ht({v:e,device:t,state:o}){return Object(a.defaultValueValue)({v:e,key:"coverPositionY",device:t,state:o})}function Ft({v:e,device:t,state:o}){return Object(a.defaultValueValue)({v:e,key:"coverZoom",device:t,state:o})}function _t({v:e,device:t,state:o}){return Object(a.defaultValueValue)({v:e,key:"iconSizeWidth",device:t,state:o})}function Rt({v:e,device:t,state:o}){return Object(a.defaultValueValue)({v:e,key:"iconSizeHeight",device:t,state:o})}function Lt({v:e,device:t,state:o}){return Object(a.defaultValueValue)({v:e,key:"controlsIconCustomSize",device:t,state:o})}function Mt({v:e,device:t,state:o,prefix:n=""}){return r=Object(b.b)(n,"widthSidebar"),Object(a.defaultValueValue)({v:e,key:r,device:t,state:o});var r}function It({v:e,device:t,state:o,prefix:n=""}){return r=Object(b.b)(n,"widthImage"),Object(a.defaultValueValue)({v:e,key:r,device:t,state:o});var r}function Wt({v:e,device:t,state:o}){return Object(a.defaultValueValue)({v:e,key:"boxShadowColorOpacity",device:t,state:o})}function Nt({v:e,device:t,state:o}){return Object(a.defaultValueValue)({v:e,key:"boxShadowColorHex",device:t,state:o})}function At({v:e,device:t,state:o}){return Object(a.defaultValueValue)({v:e,key:"borderColorOpacity",device:t,state:o})}function Vt({v:e,device:t,state:o}){return Object(a.defaultValueValue)({v:e,key:"borderColorHex",device:t,state:o})}function Dt({v:e,device:t,state:o}){return Object(a.defaultValueValue)({v:e,key:"iconCustomSize",device:t,state:o})}function $t({v:e,device:t,state:o}){const n=Object(a.defaultValueValue)({v:e,key:"tempBorderRadiusType",device:t,state:o}),r=Object(a.defaultValueValue)({v:e,key:"borderRadius",device:t,state:o});return void 0===n||"hover"===o?void 0:"rounded"===n?500:r}function Gt({v:e,device:t,state:o}){const n=Object(a.defaultValueValue)({v:e,key:"iconPosition",device:t,state:o});return void 0===n?void 0:n}function Ut({v:e,device:t,state:o}){const n=Gt({v:e,device:t,state:o});return void 0===n?void 0:"left"===n?"row nowrap":"row-reverse nowrap"}function Kt({v:e,device:t,state:o}){return Object(a.defaultValueValue)({v:e,key:"iconCustomSize",device:t,state:o})}function Yt({v:e,device:t,state:o}){const n=Gt({v:e,device:t,state:o}),r=Object(a.defaultValueValue)({v:e,key:"iconSpacing",device:t,state:o});return void 0===n||void 0===r?void 0:r}function qt({v:e,device:t,state:o}){const n=Object(a.defaultValueValue)({v:e,key:"iconCustomSize",device:t,state:o}),r=Object(a.defaultValueValue)({v:e,key:"iconType",device:t,state:o});return void 0===r||void 0===n?void 0:"outline"===r&&n<=24?1:"outline"===r&&n>24&&n<=32?1.1:"outline"===r&&n>32&&n<=48?1.4:"outline"===r&&n>48&&n<=64?2.3:"outline"===r&&n>64?3:0}function Xt({v:e,device:t,state:o}){return n="width",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function Zt({v:e,device:t,state:o}){return n="widthSuffix",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function Jt({v:e,device:t,state:o}){return"on"===(n="showCloseButton",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o}))?"block":"none";var n}function Qt({v:e,device:t,state:o}){return n="closeHorizontalPosition",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function eo({v:e,device:t,state:o}){return n="closeHorizontalPositionSuffix",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function to({v:e,device:t,state:o}){return n="closeVerticalPosition",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function oo({v:e,device:t,state:o}){return n="closeVerticalPositionSuffix",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function no({v:e,device:t,state:o}){return n="closeCustomSize",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function ao({v:e,device:t,state:o}){return n="closeBgSize",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function ro({v:e,device:t,state:o}){return n="closeBorderRadius",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function io({v:e,device:t,state:o}){return n="closeAlign",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function lo({v:e,device:t,state:o}){return n="closePosition",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function so({v:e,device:t,state:o}){return n="columnsHeightStyle",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function co({v:e,device:t,state:o}){return n="columnsHeight",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function uo({v:e,device:t,state:o}){return n="columnsHeightSuffix",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function po({v:e,device:t,state:o}){return Object(a.defaultValueValue)({v:e,key:"spacing",device:t,state:o})}function bo({v:e,device:t,state:o}){return Object(a.defaultValueValue)({v:e,key:"showPost",device:t,state:o})}function mo({v:e,device:t,state:o}){return Object(a.defaultValueValue)({v:e,key:"showSeparation",device:t,state:o})}function ho({v:e,device:t,state:o,prefix:n=""}){return r=Object(b.b)(n,"columns"),Object(a.defaultValueValue)({v:e,key:r,device:t,state:o});var r}function go({v:e,device:t,state:o}){return Object(a.defaultValueValue)({v:e,key:"column",device:t,state:o})}function vo({v:e,device:t,state:o}){return Object(a.defaultValueValue)({v:e,key:"spacing",device:t,state:o})}function fo({v:e,device:t,state:o}){return n="spacing",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function yo({v:e,device:t,state:o}){return n="between",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function Oo({v:e,device:t,state:o}){return n="style",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function So({v:e,device:t,state:o}){return n="width",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function xo({v:e,device:t,state:o}){return n="widthSuffix",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function Co({v:e,device:t,state:o}){return n="tabsCount",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function jo({v:e,device:t,state:o}){return n="verticalMode",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function Po({v:e,device:t,state:o}){return n="customSize",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function Bo({v:e,device:t,state:o}){return n="iconPadding",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function wo({v:e,device:t,state:o}){return n="enableText",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function To({v:e,device:t,state:o}){return n="spacing",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function zo({v:e,device:t,state:o}){return n="timelineStyle",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function Eo({v:e,device:t,state:o}){return n="verticalMode",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function ko({v:e,device:t,state:o="normal"}){return Object(a.defaultValueValue)({v:e,key:"logoSize",device:t,state:o})}function Ho({v:e,device:t,state:o="normal"}){return Object(a.defaultValueValue)({v:e,key:"skin",device:t,state:o})}function Fo({v:e,device:t,state:o}){return n="navStyle2Size",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function _o({v:e,device:t,state:o}){return n="spacing",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function Ro({v:e,device:t,state:o}){return n="navStyle1Width",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function Lo({v:e,device:t,state:o}){return n="openButtonWidth",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function Mo({v:e,device:t,state:o}){return n="openButtonHeight",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function Io({v:e,device:t}){return Object(a.defaultValueValue)({v:e,key:"large",device:t})}function Wo({v:e,device:t,state:o}){return n="elementType",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function No({v:e,device:t,state:o}){return n="topSpacing",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function Ao({v:e,device:t,state:o}){return n="rightSpacing",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function Vo({v:e,device:t,state:o}){return n="ratingSize",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function Do({v:e,device:t,state:o}){return n="subtotal",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function $o({v:e,device:t,state:o}){return n="purchases",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function Go({v:e,device:t,state:o}){return n="buttonDirection",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function Uo({v:e,device:t,state:o}){return n="buttonSpacing",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function Ko({v:e,device:t,state:o}){return n="cartHorizontalAlign",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function Yo({v:e,device:t,state:o}){return n="cartVerticalAlign",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function qo({v:e,device:t,state:o}){return n="sidebarWidth",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function Xo({v:e,device:t,state:o}){return n="sidebarWidthSuffix",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function Zo({v:e,device:t,state:o}){return n="sidebarHeightStyle",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function Jo({v:e,device:t,state:o}){return n="sidebarHeight",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function Qo({v:e,device:t,state:o}){return n="sidebarHeightSuffix",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function en({v:e,device:t,state:o}){return n="purchasesType",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function tn({v:e,device:t,state:o}){return n="iconPosition",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function on({v:e,device:t,state:o}){return n="iconSpacing",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function nn({v:e,device:t,state:o}){return n="iconSize",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function an({v:e,device:t,state:o}){return n="verticalMode",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function rn({v:e,device:t,state:o}){return n="menuSize",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function ln({v:e,device:t,state:o}){return n="mMenu",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function sn({v:e,device:t,state:o}){return n="mMenuSize",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function cn({v:e,device:t,state:o}){return n="mMenuIconSpacing",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function dn({v:e,device:t,state:o}){return n="mMenuIconPosition",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function un({v:e,device:t,state:o}){return n="mMenuIconSize",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function pn({v:e,device:t,state:o}){const n=n=>Object(a.defaultValueValue)({v:e,key:n,device:t,state:o}),{hex:r}=Object(y.d)(n("mMenuHoverColorHex"),n("mMenuHoverColorPalette"));return Object(f.c)(r,n("mMenuHoverColorOpacity"))}function bn({v:e,device:t,state:o}){return n="subMenuIconPosition",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function mn({v:e,device:t,state:o}){return n="subMenuIconSpacing",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function hn({v:e,device:t,state:o}){return n="subMenuIconSize",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function gn({v:e,device:t,state:o}){return n="megaMenuWidth",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function vn({v:e,device:t,state:o}){return n="megaMenuWidthSuffix",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function fn({v:e,device:t,state:o}){return n="megaMenuOffsetTop",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function yn({v:e,device:t,state:o}){return n="sectionHeight",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function On({v:e,device:t,state:o}){return n="sectionHeightStyle",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function Sn({v:e,device:t,state:o}){return n="sectionHeightSuffix",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function xn({v:e,device:t,state:o}){return n="megaMenuPlacement",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function Cn({v:e,device:t,state:o}){return n="width",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function jn({v:e,device:t,state:o}){return n="iconCustomSize",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function Pn({v:e,device:t,state:o}){return n="iconPosition",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function Bn({v:e,device:t,state:o}){return n="iconSpacing",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function wn({v:e,device:t,state:o}){return n="horizontalAlign",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function Tn({v:e,device:t,state:o}){return n="columns",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function zn({v:e,device:t,state:o}){return n="tableAside",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function En({v:e,device:t,state:o}){return n="asideWidth",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function kn({v:e,device:t,state:o}){return n="animationName",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function Hn({v:e,device:t,state:o}){return n="animationDuration",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function Fn({v:e,device:t,state:o}){return n="animationDelay",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function _n({v:e,device:t,state:o}){return n="spacing",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function Rn({v:e,device:t,state:o}){return n="betweenThumbnail",Object(a.defaultValueValue)({v:e,key:n,device:t,state:o});var n}},function(e,t,o){"use strict";o.d(t,"c",(function(){return a})),o.d(t,"b",(function(){return r})),o.d(t,"a",(function(){return i})),o.d(t,"f",(function(){return l})),o.d(t,"d",(function(){return c})),o.d(t,"e",(function(){return d})),o.d(t,"g",(function(){return u}));var n=o(24);const a="normal",r="hover",i="active",l=()=>[a,r,i],s=e=>{const t=n.a.read(e);if(void 0===t)return;const o="tabNormal"===t?a:"tabHover"===t?r:t;return l().includes(o)?o:void 0},c=a,d=e=>{var t;return null!==(t=s(e))&&void 0!==t?t:c},u=e=>{switch(e){case a:return"tabNormal";case r:return"tabHover";default:return e}}},,,function(e,t,o){"use strict";o.d(t,"h",(function(){return n})),o.d(t,"f",(function(){return a})),o.d(t,"c",(function(){return r})),o.d(t,"b",(function(){return i})),o.d(t,"a",(function(){return l})),o.d(t,"g",(function(){return s})),o.d(t,"e",(function(){return c})),o.d(t,"d",(function(){return d}));o(80);const n=(e,t)=>"string"==typeof e?e:t,a=(e,t)=>n(e)||t,r=e=>e&&e[0].toUpperCase()+e.slice(1),i=(e,t)=>""===e?t:e+r(t),l=e=>e.reduce(i,""),s=(e,...t)=>{let o=0;return e.replace(/%s/g,()=>t[o++])},c=e=>encodeURIComponent(JSON.stringify(e)),d=e=>JSON.parse(decodeURIComponent(e))},function(e,t,o){"use strict";o.d(t,"a",(function(){return et})),o.d(t,"d",(function(){return s})),o.d(t,"g",(function(){return p})),o.d(t,"m",(function(){return v})),o.d(t,"n",(function(){return f})),o.d(t,"Z",(function(){return y})),o.d(t,"X",(function(){return O})),o.d(t,"Y",(function(){return S})),o.d(t,"b",(function(){return j})),o.d(t,"c",(function(){return P})),o.d(t,"e",(function(){return z})),o.d(t,"f",(function(){return E})),o.d(t,"i",(function(){return k})),o.d(t,"h",(function(){return H})),o.d(t,"j",(function(){return R})),o.d(t,"l",(function(){return L})),o.d(t,"k",(function(){return M})),o.d(t,"qb",(function(){return N})),o.d(t,"sb",(function(){return A})),o.d(t,"rb",(function(){return V})),o.d(t,"cb",(function(){return D})),o.d(t,"db",(function(){return G})),o.d(t,"eb",(function(){return U})),o.d(t,"fb",(function(){return K})),o.d(t,"gb",(function(){return Y})),o.d(t,"hb",(function(){return $})),o.d(t,"jb",(function(){return Z})),o.d(t,"kb",(function(){return J})),o.d(t,"ib",(function(){return ae})),o.d(t,"pb",(function(){return re})),o.d(t,"p",(function(){return ie})),o.d(t,"o",(function(){return le})),o.d(t,"S",(function(){return ce})),o.d(t,"V",(function(){return de})),o.d(t,"W",(function(){return ue})),o.d(t,"T",(function(){return pe})),o.d(t,"U",(function(){return be})),o.d(t,"q",(function(){return me})),o.d(t,"u",(function(){return fe})),o.d(t,"w",(function(){return he})),o.d(t,"v",(function(){return ge})),o.d(t,"t",(function(){return ve})),o.d(t,"s",(function(){return ye})),o.d(t,"r",(function(){return Oe})),o.d(t,"C",(function(){return Se})),o.d(t,"L",(function(){return je})),o.d(t,"N",(function(){return Pe})),o.d(t,"M",(function(){return we})),o.d(t,"R",(function(){return ze})),o.d(t,"Q",(function(){return Te})),o.d(t,"D",(function(){return Ee})),o.d(t,"O",(function(){return ke})),o.d(t,"B",(function(){return He})),o.d(t,"ab",(function(){return Fe})),o.d(t,"bb",(function(){return _e})),o.d(t,"H",(function(){return Ie})),o.d(t,"E",(function(){return We})),o.d(t,"G",(function(){return Ne})),o.d(t,"F",(function(){return Ae})),o.d(t,"I",(function(){return Ve})),o.d(t,"ob",(function(){return De})),o.d(t,"nb",(function(){return $e})),o.d(t,"mb",(function(){return Ge})),o.d(t,"lb",(function(){return Ue})),o.d(t,"y",(function(){return Ke})),o.d(t,"x",(function(){return Ye})),o.d(t,"J",(function(){return qe})),o.d(t,"K",(function(){return Xe})),o.d(t,"A",(function(){return Ze})),o.d(t,"z",(function(){return Je})),o.d(t,"P",(function(){return Qe}));var n=o(2),a=o(1),r=o(3),i=o(13),l=o(45);function s({v:e,device:t,devices:o="all",state:n,states:i,disabled:l=!1}){const s=o=>Object(r.defaultValueValue)({v:e,key:o,device:t,state:n});return{id:(c="bgVideo",Object(r.defaultValueKey)({key:c,device:t,state:n})),label:Object(a.a)("URL"),type:"input",inputType:"video",placeholder:Object(a.a)("YouTube or Vimeo"),disabled:l,devices:o,states:i,value:{value:s("bgVideo")},onChange:({value:e})=>({bgVideo:e,bgColorOpacity:""!==e&&1===s("bgColorOpacity")?.8:s("bgColorOpacity"),tempBgColorOpacity:""!==e&&1===s("bgColorOpacity")?.8:s("tempBgColorOpacity")})};var c}var c=o(9);function d(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function u(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?d(Object(o),!0).forEach((function(t){Object(n.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):d(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function p({v:e,device:t,devices:o="all",state:n,onChangeGrouped:i,onChangeUngrouped:l,prefix:s="",position:d=65}){const u=o=>Object(r.defaultValueValue)({v:e,key:o,device:t,state:n}),p=Object(c.b)(s,"borderRadiusType");return{id:"borderRadiusGroup",type:"group-dev",devices:o,position:d,options:[{id:p,label:Object(a.a)("Corner"),type:"radioGroup-dev",choices:[{value:"grouped",icon:"nc-corners-all"},{value:"ungrouped",icon:"nc-corners-individual"}]},b({v:e,device:t,state:n,prefix:s,disabled:"grouped"!==u(p),onChange:i}),...m({v:e,device:t,state:n,prefix:s,disabled:"ungrouped"!==u(p),onChange:l})]}}function b({v:e,device:t,state:o,onChange:n,disabled:a=!1,prefix:i=""}){const l=Object(c.b)(i,"borderRadius");return{id:(s=l,Object(r.defaultValueKey)({key:s,device:t,state:o})),type:"slider",disabled:a,slider:{min:0,max:100},input:{show:!0,min:0},suffix:{show:!0,choices:[{title:"px",value:"px"}]},value:{value:(n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}))(l)},onChange:({value:a},{sliderDragEnd:l})=>{const s=u(u({},{v:e,device:t,state:o,prefix:i,onChange:n}),{value:a,sliderDragEnd:l});return Object(r.saveOnChanges)(s)}};var s}function m({v:e,device:t,state:o,onChange:n,disabled:a=!1,prefix:i=""}){const l=e=>Object(r.defaultValueKey)({key:e,device:t,state:o}),s=n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}),d=Object(c.b)(i,"borderTopLeftRadius"),p=Object(c.b)(i,"borderTopRightRadius"),b=Object(c.b)(i,"borderBottomRightRadius"),m=Object(c.b)(i,"borderBottomLeftRadius");return[{id:l(d),icon:"nc-corners-top-left",type:"slider",disabled:a,slider:{min:0,max:100},input:{show:!0,min:0},suffix:{show:!0,choices:[{title:"px",value:"px"}]},value:{value:s(d)},onChange:({value:a},{sliderDragEnd:l})=>{const s=u(u({},{v:e,device:t,state:o,prefix:i,onChange:n}),{current:"borderTopLeftRadius",value:a,sliderDragEnd:l});return Object(r.saveOnChanges)(s)}},{id:l(p),icon:"nc-corners-top-right",type:"slider",disabled:a,slider:{min:0,max:100},input:{show:!0,min:0},suffix:{show:!0,choices:[{title:"px",value:"px"}]},value:{value:s(p)},onChange:({value:a},{sliderDragEnd:l})=>{const s=u(u({},{v:e,device:t,state:o,prefix:i,onChange:n}),{current:"borderTopRightRadius",value:a,sliderDragEnd:l});return Object(r.saveOnChanges)(s)}},{id:l(b),icon:"nc-corners-bottom-right",type:"slider",disabled:a,slider:{min:0,max:100},input:{show:!0,min:0},suffix:{show:!0,choices:[{title:"px",value:"px"}]},value:{value:s(b)},onChange:({value:a},{sliderDragEnd:l})=>{const s=u(u({},{v:e,device:t,state:o,prefix:i,onChange:n}),{current:"borderBottomRightRadius",value:a,sliderDragEnd:l});return Object(r.saveOnChanges)(s)}},{id:l(m),icon:"nc-corners-bottom-left",type:"slider",disabled:a,slider:{min:0,max:100},input:{show:!0,min:0},suffix:{show:!0,choices:[{title:"px",value:"px"}]},value:{value:s(m)},onChange:({value:a},{sliderDragEnd:l})=>{const s=u(u({},{v:e,device:t,state:o,prefix:i,onChange:n}),{current:"borderBottomLeftRadius",value:a,sliderDragEnd:l});return Object(r.saveOnChanges)(s)}}]}function h(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function g(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?h(Object(o),!0).forEach((function(t){Object(n.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):h(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function v({v:e,device:t,state:o,states:n,disabled:a=!1,prefix:l="color",devices:s="all",onChangeHex:d,onChangePalette:u}){const p=n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}),{hex:b}=Object(i.d)(p(Object(c.b)(l,"hex")),p(Object(c.b)(l,"palette")));return{id:(m=l,Object(r.defaultValueKey)({key:m,device:t,state:o})),type:"colorPicker2",disabled:a,devices:s,states:n,select:{show:!1},value:{hex:b,opacity:p(Object(c.b)(l,"opacity")),palette:p(Object(c.b)(l,"palette"))},onChange:({hex:n,opacity:a,palette:i,isChanged:s,opacityDragEnd:c})=>{const p=g(g({},{v:e,device:t,state:o,prefix:l,onChange:d}),{hex:n,opacity:a,isChanged:s,opacityDragEnd:c}),b=g(g({},{v:e,device:t,state:o,prefix:l,onChange:u}),{opacity:a,palette:i});return"hex"===s||"opacity"===s?Object(r.saveOnChanges)(p):Object(r.saveOnChanges)(b)}};var m}function f({v:e,device:t,state:o,disabled:n=!1,states:a,devices:l="all",prefix:s="color",onChange:d}){const u=n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}),{hex:p}=Object(i.d)(u(Object(c.b)(s,"hex")),u(Object(c.b)(s,"palette")));return{id:(b=Object(c.b)(s,"field"),Object(r.defaultValueKey)({key:b,device:t,state:o})),type:"colorFields",devices:l,disabled:n,states:a,value:{hex:p,opacity:u(Object(c.b)(s,"opacity"))},onChange:({hex:n})=>{const a=g(g({},{v:e,device:t,state:o,prefix:s,onChange:d}),{hex:n});return Object(r.saveOnChanges)(a)}};var b}function y({v:e,device:t,state:o,states:n,devices:i="all",className:l,disabled:s}){return{id:(c="gradientType",Object(r.defaultValueKey)({key:c,device:t,state:o})),type:"select",devices:i,states:n,disabled:s,className:l,choices:[{title:Object(a.a)("Linear"),value:"linear"},{title:Object(a.a)("Radial"),value:"radial"}],value:(n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}))("gradientType")};var c}function O({v:e,device:t,state:o,states:n,devices:a="all",disabled:i}){return{id:(l="gradientLinearDegree",Object(r.defaultValueKey)({key:l,device:t,state:o})),type:"inputNumber",className:"brz-ed-grid__gradient__size",devices:a,states:n,disabled:i,min:0,max:360,value:(n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}))("gradientLinearDegree")};var l}function S({v:e,device:t,state:o,states:n,devices:a="all",disabled:i}){return{id:(l="gradientRadialDegree",Object(r.defaultValueKey)({key:l,device:t,state:o})),type:"inputNumber",className:"brz-ed-grid__gradient__degree",devices:a,states:n,disabled:i,min:0,max:1e3,value:(n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}))("gradientRadialDegree")};var l}function x(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function C(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?x(Object(o),!0).forEach((function(t){Object(n.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):x(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function j({v:e,device:t,state:o,states:n,devices:l="all",disabled:s=!1,prefix:d="bg",showSelect:u=!0,onChangeType:p,onChangeHex:b,onChangePalette:m,onChangeGradientHex:h,onChangeGradientPalette:g,onChangeGradient:v}){const f=n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}),y=f(Object(c.b)(d,"colorType")),{hex:O}=Object(i.d)(f(Object(c.b)(d,"colorHex")),f(Object(c.b)(d,"colorPalette"))),{hex:S}=Object(i.d)(f("gradientColorHex"),f("gradientColorPalette")),x=f("gradientActivePointer");return{id:(j=Object(c.b)(d,"color"),Object(r.defaultValueKey)({key:j,device:t,state:o})),type:"colorPicker2",disabled:s,devices:l,states:n,select:{show:u,choices:[{title:Object(a.a)("Solid"),value:"solid"},{title:Object(a.a)("Gradient"),value:"gradient"}]},gradient:{show:"gradient"===y},value:{hex:O,opacity:f(Object(c.b)(d,"colorOpacity")),palette:f(Object(c.b)(d,"colorPalette")),select:y,gradientColorHex:S,gradientColorOpacity:f("gradientColorOpacity"),gradientColorPalette:f("gradientColorPalette"),startPointer:f("gradientStartPointer"),finishPointer:f("gradientFinishPointer"),activePointer:x},onChange:({hex:n,opacity:a,palette:i,select:l,opacityDragEnd:s,startPointer:u,finishPointer:f,activePointer:O,isChanged:S})=>{const x=C(C({},{v:e,device:t,state:o,prefix:d,onChange:p}),{[Object(c.b)(d,"colorType")]:l}),j=C(C({},{v:e,device:t,state:o,prefix:"startPointer"===O||"solid"===y?d:"gradient",onChange:"startPointer"===O||"solid"===y?b:h}),{hex:n,opacity:a,isChanged:S,opacityDragEnd:s}),P=C(C({},{v:e,device:t,state:o,prefix:"startPointer"===O||"solid"===y?d:"gradient",onChange:"startPointer"===O||"solid"===y?m:g}),{opacity:a,palette:i}),B=C(C({},{v:e,device:t,state:o,prefix:d,onChange:v}),{startPointer:u,finishPointer:f,activePointer:O});return"select"===S?Object(r.saveOnChanges)(x):"hex"===S||"opacity"===S?Object(r.saveOnChanges)(j):"palette"===S?Object(r.saveOnChanges)(P):Object(r.saveOnChanges)(B)}};var j}function P({v:e,device:t,state:o,states:n,devices:a="all",prefix:l="bg",className:s="",disabled:d=!1,onChange:u}){const p=n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}),{hex:b}=Object(i.d)(p(Object(c.b)(l,"colorHex")),p(Object(c.b)(l,"colorPalette")));return{id:(m=Object(c.b)(l,"colorField"),Object(r.defaultValueKey)({key:m,device:t,state:o})),type:"colorFields",devices:a,states:n,disabled:d,className:s,value:{hex:b,opacity:p(Object(c.b)(l,"colorOpacity"))},onChange:({hex:n})=>{const a=C(C({},{v:e,device:t,state:o,prefix:l,onChange:u}),{hex:n});return Object(r.saveOnChanges)(a)}};var m}var B=o(36);function w(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function T(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?w(Object(o),!0).forEach((function(t){Object(n.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):w(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function z({v:e,device:t,state:o,states:n,onChangeStyle:l,onChangeHex:s,onChangePalette:d,devices:u="all",prefix:p="",showSelect:b=!0,choices:m=[{title:Object(a.a)("None"),value:""},{value:"solid",icon:"nc-solid"},{value:"dashed",icon:"nc-dashed"},{value:"dotted",icon:"nc-dotted"}]}){const h=n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}),g=Object(c.b)(p,"border"),v=Object(c.b)(g,"color"),f=Object(c.b)(g,"colorHex"),y=Object(c.b)(g,"colorOpacity"),O=Object(c.b)(g,"colorPalette"),S=Object(c.b)(g,"style"),{hex:x}=Object(i.d)(h(f),h(O));return{devices:u,id:(C=v,Object(r.defaultValueKey)({key:C,device:t,state:o})),type:"colorPicker2",states:n,select:{show:b,choices:m},value:{hex:x,opacity:h(y),palette:h(O),select:h(S)},onChange:({hex:n,opacity:a,palette:i,select:c,isChanged:u,opacityDragEnd:b})=>{const m=T(T({},{v:e,device:t,state:o,prefix:p,onChange:l}),{borderStyle:c,isChanged:u}),h=T(T({},{v:e,device:t,state:o,prefix:p,onChange:s}),{hex:n,opacity:a,isChanged:u,opacityDragEnd:b}),g=T(T({},{v:e,device:t,state:o,prefix:p,onChange:d}),{opacity:a,palette:i});return"select"===u?Object(r.saveOnChanges)(m):"hex"===u||"opacity"===u?Object(r.saveOnChanges)(h):Object(r.saveOnChanges)(g)}};var C}function E({v:e,device:t,state:o,states:n,onChange:a,devices:l="all",prefix:s=""}){const d=n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}),u=Object(c.b)(s,"border"),p=Object(c.b)(u,"colorHex"),b=Object(c.b)(u,"colorOpacity"),m=Object(c.b)(u,"colorPalette"),{hex:h}=Object(i.d)(d(p),d(m));return{devices:l,id:(g=Object(c.b)(u,"colorField"),Object(r.defaultValueKey)({key:g,device:t,state:o})),type:"colorFields",states:n,value:{hex:h,opacity:d(b)},onChange:({hex:n})=>{const i=T(T({},{v:e,device:t,state:o,prefix:s,onChange:a}),{hex:n});return Object(r.saveOnChanges)(i)}};var g}function k({v:e,device:t,state:o,onChange:n,devices:i="all",prefix:l=""}){const s=Object(c.b)(l,"border"),d=Object(c.b)(s,"width");return{devices:i,id:(u=d,Object(r.defaultValueKey)({key:u,device:t,state:o})),label:Object(a.a)("Size"),type:"inputNumber",min:0,max:360,value:(n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}))(d),onChange:a=>{const i=T(T({},{v:e,device:t,state:o,prefix:l,onChange:n}),{value:a});return Object(r.saveOnChanges)(i)}};var u}function H({v:e,device:t,state:o,states:n,onChangeType:i,onChangeGrouped:l,onChangeUngrouped:s,devices:d="all",prefix:u=""}){const p=n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}),b=Object(c.b)(u,"border"),m=Object(c.b)(b,"width"),h=Object(c.b)(m,"type"),g=Object(c.b)(b,"topWidth"),v=Object(c.b)(b,"rightWidth"),f=Object(c.b)(b,"bottomWidth"),y=Object(c.b)(b,"leftWidth"),O={grouped:[m],ungrouped:[g,v,f,y]};return{devices:d,id:(S=m,Object(r.defaultValueKey)({key:S,device:t,state:o})),type:"multiInputPicker",states:n,label:"grouped"===p(h)&&Object(a.a)("Size"),value:{type:p(h),grouped:[p(m)],ungrouped:[p(g),p(v),p(f),p(y)]},onChange:n=>{let{type:a,isChanged:c,isChangedIndex:d}=n,p=Object(B.a)(n,["type","isChanged","isChangedIndex"]);const b=T(T({},{v:e,device:t,state:o,prefix:u,onChange:i}),{type:a}),m=T(T({},{v:e,device:t,state:o,prefix:u,onChange:"grouped"===a?l:s}),{current:O[a][d],value:p[a][d]});return"type"===c?Object(r.saveOnChanges)(b):Object(r.saveOnChanges)(m)}};var S}function F(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function _(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?F(Object(o),!0).forEach((function(t){Object(n.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):F(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function R({v:e,device:t,disabled:o=!1,state:n,states:l,onChangeType:s,onChangeHex:d,onChangePalette:u,prefix:p="",devices:b="all",choices:m="all"}){const h=o=>Object(r.defaultValueValue)({v:e,key:o,device:t,state:n}),g=Object(c.b)(p,"boxShadow"),v=Object(c.b)(g,"colorHex"),f=Object(c.b)(g,"colorOpacity"),y=Object(c.b)(g,"colorPalette"),{hex:O}=Object(i.d)(h(v),h(y)),S=[{title:Object(a.a)("None"),value:""},{title:Object(a.a)("Inset"),value:"inset"},{title:Object(a.a)("Outset"),value:"on"}],x=[{title:Object(a.a)("None"),value:""},{title:Object(a.a)("Inset"),value:"inset"}],C=[{title:Object(a.a)("None"),value:""},{title:Object(a.a)("Outset"),value:"on"}];return{devices:b,states:l,disabled:o,id:(j=g,Object(r.defaultValueKey)({key:j,device:t,state:n})),type:"colorPicker2",select:{choices:"all"===m?S:"inset"===m?x:C},value:{hex:O,opacity:h(f),palette:h(y),select:h(g)},onChange:({hex:o,opacity:a,palette:i,select:l,isChanged:c,opacityDragEnd:b})=>{const m=_(_({},{v:e,device:t,state:n,prefix:p,onChange:s}),{boxShadowType:l,isChanged:c}),h=_(_({},{v:e,device:t,state:n,prefix:p,onChange:d}),{hex:o,opacity:a,isChanged:c,opacityDragEnd:b}),g=_(_({},{v:e,device:t,state:n,prefix:p,onChange:u}),{opacity:a,palette:i});return"select"===c?Object(r.saveOnChanges)(m):"hex"===c||"opacity"===c?Object(r.saveOnChanges)(h):Object(r.saveOnChanges)(g)}};var j}function L({v:e,device:t,disabled:o=!1,state:n,states:a,onChange:l,prefix:s="",devices:d="all"}){const u=o=>Object(r.defaultValueValue)({v:e,key:o,device:t,state:n}),p=Object(c.b)(s,"boxShadow"),b=Object(c.b)(p,"field"),m=Object(c.b)(p,"colorHex"),h=Object(c.b)(p,"colorPalette"),g=Object(c.b)(p,"colorOpacity"),{hex:v}=Object(i.d)(u(m),u(h));return{devices:d,disabled:o,id:(f=b,Object(r.defaultValueKey)({key:f,device:t,state:n})),type:"colorFields",states:a,value:{hex:v,opacity:u(g)},onChange:({hex:o})=>{const a=_(_({},{v:e,device:t,state:n,prefix:s,onChange:l}),{hex:o});return Object(r.saveOnChanges)(a)}};var f}function M({v:e,device:t,disabled:o=!1,state:n,states:a,onChange:i,prefix:l="",devices:s="all"}){const d=o=>Object(r.defaultValueValue)({v:e,key:o,device:t,state:n}),u=Object(c.b)(l,"boxShadow"),p=Object(c.b)(u,"fields"),b=Object(c.b)(u,"blur"),m=Object(c.b)(u,"spread"),h=Object(c.b)(u,"vertical"),g=Object(c.b)(u,"horizontal");return{devices:s,disabled:o,states:a,id:(v=p,Object(r.defaultValueKey)({key:v,device:t,state:n})),type:"multiInput",config:{defaultIcon:["nc-shadow"],icons:["nc-blur","nc-size","nc-vertical","nc-horizontal"]},value:[d(b),d(m),d(h),d(g)],onChange:([o,a,s,c])=>{const d=_(_({},{v:e,device:t,state:n,prefix:l,onChange:i}),{boxShadowBlur:o,boxShadowSpread:a,boxShadowVertical:s,boxShadowHorizontal:c});return Object(r.saveOnChanges)(d)}};var v}function I(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function W(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?I(Object(o),!0).forEach((function(t){Object(n.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):I(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function N({v:e,device:t,disabled:o=!1,state:n,states:l,onChangeType:s,onChangeHex:d,onChangePalette:u,prefix:p="",devices:b="all"}){const m=o=>Object(r.defaultValueValue)({v:e,key:o,device:t,state:n}),h=Object(c.b)(p,"textShadow"),g=Object(c.b)(h,"colorHex"),v=Object(c.b)(h,"colorOpacity"),f=Object(c.b)(h,"colorPalette"),{hex:y}=Object(i.d)(m(g),m(f));return{devices:b,states:l,disabled:o,id:(O=h,Object(r.defaultValueKey)({key:O,device:t,state:n})),type:"colorPicker2",select:{show:!0,choices:[{title:Object(a.a)("Shadow"),value:"on"},{title:Object(a.a)("None"),value:""}]},value:{hex:y,opacity:m(v),palette:m(f),select:m(h)},onChange:({hex:o,opacity:a,palette:i,select:l,isChanged:c,opacityDragEnd:b})=>{const m=W(W({},{v:e,device:t,state:n,prefix:p,onChange:s}),{textShadowType:l,isChanged:c}),h=W(W({},{v:e,device:t,state:n,prefix:p,onChange:d}),{hex:o,opacity:a,isChanged:c,opacityDragEnd:b}),g=W(W({},{v:e,device:t,state:n,prefix:p,onChange:u}),{opacity:a,palette:i});return"select"===c?Object(r.saveOnChanges)(m):"hex"===c||"opacity"===c?Object(r.saveOnChanges)(h):Object(r.saveOnChanges)(g)}};var O}function A({v:e,device:t,disabled:o=!1,state:n,states:a,onChange:l,prefix:s="",devices:d="all"}){const u=o=>Object(r.defaultValueValue)({v:e,key:o,device:t,state:n}),p=Object(c.b)(s,"textShadow"),b=Object(c.b)(p,"field"),m=Object(c.b)(p,"colorHex"),h=Object(c.b)(p,"colorPalette"),g=Object(c.b)(p,"colorOpacity"),{hex:v}=Object(i.d)(u(m),u(h));return{devices:d,disabled:o,id:(f=b,Object(r.defaultValueKey)({key:f,device:t,state:n})),type:"colorFields",states:a,value:{hex:v,opacity:u(g)},onChange:({hex:o})=>{const a=W(W({},{v:e,device:t,state:n,prefix:s,onChange:l}),{hex:o});return Object(r.saveOnChanges)(a)}};var f}function V({v:e,device:t,disabled:o=!1,state:n,states:a,onChange:i,prefix:l="",devices:s="all"}){const d=o=>Object(r.defaultValueValue)({v:e,key:o,device:t,state:n}),u=Object(c.b)(l,"textShadow"),p=Object(c.b)(u,"fields"),b=Object(c.b)(u,"blur"),m=Object(c.b)(u,"vertical"),h=Object(c.b)(u,"horizontal");return{devices:s,disabled:o,states:a,id:(g=p,Object(r.defaultValueKey)({key:g,device:t,state:n})),type:"multiInput",config:{defaultIcon:["nc-shadow"],icons:["nc-blur","nc-vertical","nc-horizontal"]},value:[d(b),d(m),d(h)],onChange:([o,a,s])=>{const c=W(W({},{v:e,device:t,state:n,prefix:l,onChange:i}),{textShadowBlur:o,textShadowVertical:a,textShadowHorizontal:s});return Object(r.saveOnChanges)(c)}};var g}function D({v:e,device:t,state:o,devices:n="all",disabled:i=!1}){return{id:(l="linkAnchor",Object(r.defaultValueKey)({key:l,device:t,state:o})),label:Object(a.a)("Block"),type:"blockThumbnail",devices:n,disabled:i,value:(n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}))("linkAnchor")};var l}function $({v:e,device:t,state:o,disabled:n=!1,devices:i="all"}){return{id:Object(r.defaultValueKey)({key:"linkUpload",device:t,state:o}),label:Object(a.a)("File"),type:"fileUpload",disabled:n,devices:i,value:Object(r.defaultValueValue)({v:e,key:"linkUpload",device:t,state:o})}}function G({v:e,config:t,devices:o="all"}){const n=Object(i.c)(t,l.a.link);return{id:"linkExternal",type:"input",devices:o,label:Object(a.a)("Link to"),placeholder:"http://",population:{show:n.length>0,choices:n},value:{value:e.linkExternal,population:e.linkPopulation},onChange:({value:e,population:t},{changed:o})=>({linkExternal:e,linkPopulation:t,linkExternalType:"value"===o||""===t?"linkExternal":"linkPopulation"})}}function U({v:e,device:t,state:o,devices:n="all"}){return{id:(i="linkExternalBlank",Object(r.defaultValueKey)({key:i,device:t,state:o})),type:"switch",label:Object(a.a)("Open In New Tab"),devices:n,value:(n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}))("linkExternalBlank")};var i}function K({v:e,device:t,state:o,devices:n="all"}){return{id:(i="linkExternalRel",Object(r.defaultValueKey)({key:i,device:t,state:o})),type:"switch",label:Object(a.a)("Make it Nofollow"),devices:n,value:(n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}))("linkExternalRel")};var i}function Y({v:e,device:t,state:o,canDelete:n=!0,disabled:i=!1,component:l,devices:s="all"}){const c=e=>Object(r.defaultValueKey)({key:e,device:t,state:o}),d=n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o});return{id:c("linkPopup"),type:"promptAddPopup",label:Object(a.a)("Popup"),canDelete:n,disabled:i,popupKey:`${l.getId()}_${d("linkPopup")}`,devices:s,value:{value:d("linkPopup"),popups:d("popups")},onChange:({value:e,popups:t})=>({[c("linkPopup")]:e,[c("popups")]:t})}}function q(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function X(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?q(Object(o),!0).forEach((function(t){Object(n.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):q(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function Z({v:e,device:t,state:o,devices:n,position:a,prefix:r="",disabled:i=!1}){return Q({v:e,device:t,state:o,devices:n,position:a,prefix:r,disabled:i})}function J({v:e,device:t,state:o,devices:n,position:a,prefix:r="",disabled:i=!1}){return Q({v:e,device:t,state:o,devices:n,position:a,prefix:r,disabled:i,suffixChoices:[{title:"px",value:"px"}]})}function Q({v:e,device:t,state:o,prefix:n="",devices:i="all",disabled:l=!1,position:s=50,childs:d=["paddingTop","paddingRight","paddingBottom","paddingLeft"],suffixChoices:u=[{title:"px",value:"px"},{title:"%",value:"%"}]}){const p=n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}),b=Object(c.b)(n,"padding"),m=Object(c.b)(b,"type");return{id:b,type:"group-dev",devices:i,position:s,disabled:l,options:[{id:m,label:Object(a.a)("Padding"),type:"radioGroup-dev",choices:[{value:"grouped",icon:"nc-styling-all"},{value:"ungrouped",icon:"nc-styling-individual"}]},ee({v:e,device:t,state:o,childs:d,suffixChoices:u,prefix:n,disabled:"grouped"!==p(m),onChange:["onChangePaddingGrouped"]}),...te({v:e,device:t,state:o,childs:d,suffixChoices:u,prefix:n,disabled:"ungrouped"!==p(m),onChange:["onChangePaddingUngrouped"]})]}}function ee({v:e,device:t,state:o,childs:n,suffixChoices:a,onChange:i,disabled:l=!1,prefix:s=""}){const d=n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}),u=Object(c.b)(s,"padding"),p=Object(c.b)(u,"suffix");return{id:(b=u,Object(r.defaultValueKey)({key:b,device:t,state:o})),type:"slider",disabled:l,slider:{min:0,max:100},input:{show:!0,min:0},suffix:{show:!0,choices:a},value:{value:d(u),suffix:d(p)},onChange:({value:a,suffix:l},{sliderDragEnd:c})=>{const d=X(X({},{v:e,device:t,state:o,childs:n,onChange:i,prefix:s}),{value:a,suffix:l,sliderDragEnd:c});return Object(r.saveOnChanges)(d)}};var b}function te({v:e,device:t,state:o,childs:n,suffixChoices:a,onChange:i,disabled:l=!1,prefix:s=""}){const d=e=>Object(r.defaultValueKey)({key:e,device:t,state:o}),u=n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}),p=Object(c.b)(s,"paddingTop"),b=Object(c.b)(p,"suffix"),m=Object(c.b)(s,"paddingRight"),h=Object(c.b)(m,"suffix"),g=Object(c.b)(s,"paddingBottom"),v=Object(c.b)(g,"suffix"),f=Object(c.b)(s,"paddingLeft"),y=Object(c.b)(f,"suffix");return[{id:d(p),icon:"nc-styling-top",type:"slider",disabled:l,slider:{min:0,max:100},input:{show:!0,min:0},suffix:{show:!0,choices:a},value:{value:u(p),suffix:u(b)},onChange:({value:a,suffix:l},{sliderDragEnd:c})=>{const d=X(X({},{v:e,device:t,state:o,childs:n,onChange:i,prefix:s}),{current:"paddingTop",value:a,suffix:l,sliderDragEnd:c});return Object(r.saveOnChanges)(d)}},n.includes("paddingRight")?{id:d(m),icon:"nc-styling-right",type:"slider",disabled:l,slider:{min:0,max:100},input:{show:!0,min:0},suffix:{show:!0,choices:a},value:{value:u(m),suffix:u(h)},onChange:({value:a,suffix:l},{sliderDragEnd:c})=>{const d=X(X({},{v:e,device:t,state:o,childs:n,onChange:i,prefix:s}),{current:"paddingRight",value:a,suffix:l,sliderDragEnd:c});return Object(r.saveOnChanges)(d)}}:{},{id:d(g),icon:"nc-styling-bottom",type:"slider",disabled:l,slider:{min:0,max:100},input:{show:!0,min:0},suffix:{show:!0,choices:a},value:{value:u(g),suffix:u(v)},onChange:({value:a,suffix:l},{sliderDragEnd:c})=>{const d=X(X({},{v:e,device:t,state:o,childs:n,onChange:i,prefix:s}),{current:"paddingBottom",value:a,suffix:l,sliderDragEnd:c});return Object(r.saveOnChanges)(d)}},n.includes("paddingLeft")?{id:d(f),icon:"nc-styling-left",type:"slider",disabled:l,slider:{min:0,max:100},input:{show:!0,min:0},suffix:{show:!0,choices:a},value:{value:u(f),suffix:u(y)},onChange:({value:a,suffix:l},{sliderDragEnd:c})=>{const d=X(X({},{v:e,device:t,state:o,childs:n,onChange:i,prefix:s}),{current:"paddingLeft",value:a,suffix:l,sliderDragEnd:c});return Object(r.saveOnChanges)(d)}}:{}]}function oe(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function ne(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?oe(Object(o),!0).forEach((function(t){Object(n.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):oe(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function ae({v:e,device:t,state:o,devices:n="all",disabled:i=!1,position:l=60,marginType:s,onChangeGrouped:c,onChangeUngrouped:d}){const u=e=>Object(r.defaultValueKey)({key:e,device:t,state:o}),p=n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o});return{id:"margin",type:"group-dev",position:l,devices:n,disabled:i,options:[{id:"marginType",label:Object(a.a)("Margin"),type:"radioGroup-dev",choices:[{value:"grouped",icon:"nc-styling-all"},{value:"ungrouped",icon:"nc-styling-individual"}]},{id:u("margin"),type:"slider",disabled:"grouped"!==p("marginType"),slider:{min:-100,max:100},input:{show:!0},suffix:{show:!0,choices:[{title:"px",value:"px"},{title:"%",value:"%"}]},value:{value:p("margin"),suffix:p("marginSuffix")},onChange:({value:n,suffix:a})=>{const i=ne(ne({},{v:e,device:t,state:o,marginType:s,onChange:c}),{value:n,suffix:a});return Object(r.saveOnChanges)(i)}},{id:u("marginTop"),icon:"nc-styling-top",type:"slider",disabled:"ungrouped"!==p("marginType"),slider:{min:-100,max:100},input:{show:!0},suffix:{show:!0,choices:[{title:"px",value:"px"},{title:"%",value:"%"}]},value:{value:p("marginTop"),suffix:p("marginTopSuffix")},onChange:({value:n,suffix:a})=>{const i=ne(ne({},{v:e,device:t,state:o,onChange:d}),{current:"marginTop",value:n,suffix:a});return Object(r.saveOnChanges)(i)}},{id:u("marginRight"),icon:"nc-styling-right",type:"slider",disabled:"ungrouped"!==p("marginType"),slider:{min:-100,max:100},input:{show:!0},suffix:{show:!0,choices:[{title:"px",value:"px"},{title:"%",value:"%"}]},value:{value:p("marginRight"),suffix:p("marginRightSuffix")},onChange:({value:n,suffix:a})=>{const i=ne(ne({},{v:e,device:t,state:o,onChange:d}),{current:"marginRight",value:n,suffix:a});return Object(r.saveOnChanges)(i)}},{id:u("marginBottom"),icon:"nc-styling-bottom",type:"slider",disabled:"ungrouped"!==p("marginType"),slider:{min:-100,max:100},input:{show:!0},suffix:{show:!0,choices:[{title:"px",value:"px"},{title:"%",value:"%"}]},value:{value:p("marginBottom"),suffix:p("marginBottomSuffix")},onChange:({value:n,suffix:a})=>{const i=ne(ne({},{v:e,device:t,state:o,onChange:d}),{current:"marginBottom",value:n,suffix:a});return Object(r.saveOnChanges)(i)}},{id:u("marginLeft"),icon:"nc-styling-left",type:"slider",disabled:"ungrouped"!==p("marginType"),slider:{min:-100,max:100},input:{show:!0},suffix:{show:!0,choices:[{title:"px",value:"px"},{title:"%",value:"%"}]},value:{value:p("marginLeft"),suffix:p("marginLeftSuffix")},onChange:({value:n,suffix:a})=>{const i=ne(ne({},{v:e,device:t,state:o,onChange:d}),{current:"marginLeft",value:n,suffix:a});return Object(r.saveOnChanges)(i)}}]}}function re({v:e,device:t,devices:o="all",position:n=10,closeTooltip:r=!0}){return"tablet"===t?function({v:e,position:t=10,devices:o="all",closeTooltip:n=!0}){return{id:"showOnTablet",type:"toggle",devices:o,position:t,closeTooltip:n,choices:[{icon:"nc-eye-17",title:Object(a.a)("Disable on Tablet"),value:"on"},{icon:"nc-eye-ban-18",title:Object(a.a)("Enable on Tablet"),value:"off"}],value:e.showOnTablet}}({v:e,position:n,devices:o,closeTooltip:r}):"mobile"===t?function({v:e,position:t=10,devices:o="all",closeTooltip:n=!0}){return{id:"showOnMobile",type:"toggle",devices:o,position:t,closeTooltip:n,choices:[{icon:"nc-eye-17",title:Object(a.a)("Disable on Mobile"),value:"on"},{icon:"nc-eye-ban-18",title:Object(a.a)("Enable on Mobile"),value:"off"}],value:e.showOnMobile}}({v:e,position:n,devices:o,closeTooltip:r}):{}}function ie({v:e,position:t=40,device:o,state:n,devices:i="all",population:l}){const s=e=>Object(r.defaultValueKey)({key:e,device:o,state:n}),c=t=>Object(r.defaultValueValue)({v:e,key:t,device:o,state:n});return{id:s("customClassName"),label:Object(a.a)("CSS Class"),position:t,display:"block",type:"input",devices:i,helper:!0,helperContent:"\n<span>Add your custom class without the .dot, example: my-class</span>",population:{show:l.length>0,choices:l},value:{value:c("customClassName"),population:c("cssClassPopulation")},onChange:({value:e,population:t})=>({[s("customClassName")]:e,[s("cssClassPopulation")]:t})}}function le({v:e,device:t,state:o,devices:n="all",position:i=45}){return{id:(l="customCSS",Object(r.defaultValueKey)({key:l,device:t,state:o})),type:"codeMirror",label:Object(a.a)("Custom CSS"),position:i,display:"block",devices:n,helper:!0,helperContent:'\n<p class="brz-p">You can use the following selectors to create targeted CSS.</p>\n<p class="brz-p">\n <span class="brz-span brz-ed-tooltip__overlay-code">element</span> {...}\n <br class="brz-br">\n <span class="brz-span brz-ed-tooltip__overlay-code">element .child-element</span> {...}\n</p>',placeholder:"element { CSS goes here }",value:(n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}))("customCSS")};var l}var se=o(176);function ce({v:e,position:t=60,device:o,state:n,choices:i=Object(se.a)(),devices:l="all"}){const s=e=>Object(r.defaultValueKey)({key:e,device:o,state:n}),c=t=>Object(r.defaultValueValue)({v:e,key:t,device:o,state:n});return{id:"animation",type:"group-dev",position:t,devices:l,options:[{id:s("animationName"),label:Object(a.a)("Entrance Animation"),type:"select",choices:i,value:"initial"===c("animationName")?c("tempAnimationName"):c("animationName"),onChange:e=>({[s("animationName")]:e,[s("tempAnimationName")]:e})},{id:s("animationDuration"),label:Object(a.a)("Duration"),type:"slider",disabled:"none"===c("animationName")&&"initial"!==c("animationName"),slider:{min:0,max:5,step:.1},input:{show:!0,min:0},suffix:{show:!0,choices:[{title:"s",value:"s"}]},value:{value:c("animationDuration")/1e3},onChange:({value:e},{sliderDragEnd:t})=>({[s("animationName")]:t?c("tempAnimationName"):"initial",[s("animationDuration")]:1e3*e})},{id:s("animationDelay"),label:Object(a.a)("Delay"),type:"slider",disabled:"none"===c("animationName")&&"initial"!==c("animationName"),slider:{min:0,max:5,step:.1},input:{show:!0,min:0},suffix:{show:!0,choices:[{title:"s",value:"s"}]},value:{value:c("animationDelay")/1e3},onChange:({value:e},{sliderDragEnd:t})=>({[s("animationName")]:t?c("tempAnimationName"):"initial",[s("animationDelay")]:1e3*e})}]}}function de({v:e,device:t,prefix:o="",devices:n="all",state:a,states:i}){return{id:Object(r.defaultValueKey)({key:Object(c.b)(o,"hue"),device:t,state:a}),icon:"nc-hue",className:"brz-ed-option__slider--hue",type:"slider",devices:n,states:i,slider:{min:0,max:360},input:{show:!0,min:0,max:360},suffix:{show:!0,choices:[{title:"deg",value:"deg"}]},value:{value:Object(r.defaultValueValue)({v:e,key:Object(c.b)(o,"hue"),device:t,state:a})},onChange:({value:n})=>({[Object(r.defaultValueKey)({v:e,key:Object(c.b)(o,"hue"),device:t,state:a})]:n})}}function ue({v:e,device:t,prefix:o="",devices:n="all",state:a,states:i}){return{id:Object(r.defaultValueKey)({key:Object(c.b)(o,"saturation"),device:t,state:a}),icon:"nc-saturation",className:"brz-ed-option__slider--saturation",type:"slider",devices:n,states:i,slider:{min:0,max:200},input:{show:!0,min:0,max:200},suffix:{show:!0,choices:[{title:"%",value:"%"}]},value:{value:Object(r.defaultValueValue)({v:e,key:Object(c.b)(o,"saturation"),device:t,state:a})},onChange:({value:e})=>({[Object(r.defaultValueKey)({key:Object(c.b)(o,"saturation"),device:t,state:a})]:e})}}function pe({v:e,device:t,prefix:o="",devices:n="all",state:a,states:i}){return{id:Object(r.defaultValueKey)({key:Object(c.b)(o,"brightness"),device:t,state:a}),icon:"nc-brightness",className:"brz-ed-option__slider--brightness",type:"slider",devices:n,states:i,slider:{min:10,max:200},input:{show:!0,min:0,max:200},suffix:{show:!0,choices:[{title:"%",value:"%"}]},value:{value:Object(r.defaultValueValue)({v:e,key:Object(c.b)(o,"brightness"),device:t,state:a})},onChange:({value:e})=>({[Object(r.defaultValueKey)({key:Object(c.b)(o,"brightness"),device:t,state:a})]:e})}}function be({v:e,device:t,prefix:o="",devices:n="all",state:a,states:i}){return{id:Object(r.defaultValueKey)({key:Object(c.b)(o,"contrast"),device:t,state:a}),icon:"nc-contrast",className:"brz-ed-option__slider--contrast",type:"slider",devices:n,states:i,slider:{min:0,max:200},input:{show:!0,min:0,max:200},suffix:{show:!0,choices:[{title:"%",value:"%"}]},value:{value:Object(r.defaultValueValue)({v:e,key:Object(c.b)(o,"contrast"),device:t,state:a})},onChange:({value:e})=>({[Object(r.defaultValueKey)({key:Object(c.b)(o,"contrast"),device:t,state:a})]:e})}}function me({device:e,devices:t="all",state:o}){return{id:Object(r.defaultValueKey)({key:"advancedSettings",device:e,state:o}),type:"advancedSettings",devices:t,disabled:!0}}function he({devices:e="all"}){return{id:"toolbarSettings",type:"popover-dev",devices:e,disabled:!0}}function ge({devices:e="responsive"}){return{id:"showOnTablet",type:"toggle",disabled:!0,devices:e}}function ve({devices:e="responsive"}){return{id:"showOnMobile",type:"toggle",disabled:!0,devices:e}}function fe({device:e}){let t;return t="tablet"===e?ge({}):"mobile"===e?ve({}):{},t}function ye({prefix:e="",devices:t="all"}){return{devices:t,id:Object(c.b)(e,"padding"),type:"group-dev",disabled:!0}}function Oe({devices:e="all"}){return{devices:e,id:"margin",type:"group-dev",disabled:!0}}function Se({v:e,device:t,devices:o="all",state:n,states:i}){const l=o=>Object(r.defaultValueValue)({v:e,key:o,device:t,state:n});return{id:(s="media",Object(r.defaultValueKey)({key:s,device:t,state:n})),label:Object(a.a)("Type"),type:"radioGroup",devices:o,states:i,choices:[{value:"image",icon:"nc-media-image"},{value:"map",icon:"nc-media-map"}],value:"video"===l("media")?"image":l("media")};var s}function xe(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function Ce(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?xe(Object(o),!0).forEach((function(t){Object(n.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):xe(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function je({v:e,device:t,state:o,onChange:n}){const a=Object(r.defaultValueValue)({v:e,key:"boxShadowBlur",device:t,state:o}),i=Object(r.defaultValueValue)({v:e,key:"boxShadowVertical",device:t,state:o});return{id:Object(r.defaultValueKey)({key:"boxShadow",device:t,state:o}),type:"multiInput",config:{defaultIcon:["nc-shadow"],icons:["nc-blur","nc-vertical"]},value:[a,i],onChange:([a,i])=>{const l=Ce(Ce({},{v:e,device:t,state:o,onChange:n}),{boxShadowBlur:a,boxShadowVertical:i});return Object(r.saveOnChanges)(l)}}}function Pe({device:e,component:t,state:o,blockType:n,position:i=90,disabled:l=!1,devices:s="all"}){return{devices:s,position:i,blockType:n,id:(c="makeItSaved",Object(r.defaultValueKey)({key:c,device:e,state:o})),type:"savedBlock",icon:"nc-save-section",disabled:l,title:Object(a.a)("Save"),tooltipContent:Object(a.a)("Saved"),value:{blockId:t.getId()}};var c}const Be=(e,t)=>{if(e&&"popup"===t)return e.split("_")[0]};function we({device:e,component:t,state:o,blockType:n,devices:i="all"}){const l=t.getId();return{devices:i,blockType:n,id:(s="makeItGlobal",Object(r.defaultValueKey)({key:s,device:e,state:o})),label:Object(a.a)("Make it Global"),type:"globalBlock",value:{_id:l,parentId:Be(t.props.instanceKey,n)}};var s}function Te({v:e,device:t,devices:o="all",disabled:n=!1,state:i}){const l=e=>Object(r.defaultValueKey)({key:e,device:t,state:i});return{id:l("iconSize"),label:Object(a.a)("Play"),type:"slider",devices:o,disabled:n,roles:["admin"],slider:{min:50,max:200},input:{show:!0,min:50,max:200},suffix:{show:!0,choices:[{title:"px",value:"px"}]},value:{value:(s="iconSize",Object(r.defaultValueValue)({v:e,key:s,device:t,state:i}))},onChange:({value:e})=>({[l("iconSize")]:e,[l("iconSizeWidth")]:e,[l("iconSizeHeight")]:e})};var s}function ze({v:e,device:t,state:o,devices:n="all",disabled:i=!1}){return{id:(l="custom",Object(r.defaultValueKey)({key:l,device:t,state:o})),label:Object(a.a)("File"),type:"fileUpload",acceptedExtensions:["video/*"],devices:n,disabled:i,value:(n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}))("custom")};var l}function Ee({v:e,device:t,devices:o="all",disabled:n=!1,state:i}){const l=e=>Object(r.defaultValueKey)({key:e,device:t,state:i}),s=o=>Object(r.defaultValueValue)({v:e,key:o,device:t,state:i});return{id:l("type"),label:Object(a.a)("Style"),type:"radioGroup",disabled:n,devices:o,choices:[{value:"simple",icon:"nc-counter-style-1"},{value:"radial",icon:"nc-counter-style-2"},{value:"empty",icon:"nc-counter-style-3"},{value:"pie",icon:"nc-counter-style-4"}],value:s("type"),onChange:e=>({[l("type")]:e,[l("start")]:"simple"!==s("type")?s("start"):0})}}function ke({v:e,device:t,devices:o="all",disabled:n=!1,state:i}){const l=e=>Object(r.defaultValueKey)({key:e,device:t,state:i}),s=o=>Object(r.defaultValueValue)({v:e,key:o,device:t,state:i});return{id:l("style"),label:Object(a.a)("Style"),type:"radioGroup",devices:o,disabled:n,choices:[{value:"basic",icon:"nc-sndcloud-style-1"},{value:"artwork",icon:"nc-sndcloud-style-2"}],value:s("style"),onChange:e=>({[l("style")]:e,[l("showArtwork")]:"basic"===e?"off":"on",[l("height")]:s("basic"===e?"mediumHeight":"artwork"===e?"largeHeight":"height")})}}function He({v:e,device:t,devices:o="all",state:n,position:i=350}){return{id:Object(r.defaultValueKey)({key:"itemPadding",device:t,state:n}),type:"slider",label:Object(a.a)("Spacing"),roles:["admin"],devices:o,position:i,slider:{min:0,max:100},input:{show:!0},suffix:{show:!0,choices:[{title:"px",value:"px"}]},disabled:1===e.items.length,value:{value:Object(r.defaultValueValue)({v:e,key:"itemPadding",device:t,state:n})},onChange:({value:e})=>({[Object(r.defaultValueKey)({key:"itemPadding",device:t,state:n})]:e,[Object(r.defaultValueKey)({key:"itemPaddingRight",device:t,state:n})]:e,[Object(r.defaultValueKey)({key:"itemPaddingLeft",device:t,state:n})]:e})}}function Fe({v:e,config:t,inGallery:o,device:n,state:s,devices:c="all"}){const d=t=>Object(r.defaultValueValue)({v:e,key:t,device:n,state:s}),u=Object(i.c)(t,l.a.link);return{id:(p="linkExternal",Object(r.defaultValueKey)({key:p,device:n,state:s})),type:"input",label:Object(a.a)("Link to"),placeholder:"http://",devices:c,population:{show:u.length>0&&!o,choices:u},value:{population:d("linkPopulation"),value:d("linkExternal")},onChange:({value:e,population:t},{changed:o})=>({linkExternal:e,linkPopulation:t,linkExternalType:"value"===o||""===t?"linkExternal":"linkPopulation"})};var p}function _e({devices:e="all",gallery:t,enableTags:o}){const{inGallery:n=!1}=t||{};return{label:"Tags",id:"tags",type:"inputText-dev",helper:{enabled:!0,content:"Enter the tags, separated by a comma (art, sport, nature, etc).",position:"top-end"},placeholder:"art, nature, etc.",devices:e,disabled:!n||!o}}o(16),o(43),o(136);var Re=o(8);function Le(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function Me(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?Le(Object(o),!0).forEach((function(t){Object(n.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):Le(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function Ie({v:e,device:t,state:o,devices:n="all"}){const i=e=>Object(r.defaultValueKey)({key:e,device:t,state:o});return{devices:n,id:i("padding"),type:"slider",label:Object(a.a)("Spacing"),slider:{min:0,max:100},input:{show:!0},suffix:{show:!0,choices:[{title:"px",value:"px"}]},value:{value:(l="padding",Object(r.defaultValueValue)({v:e,key:l,device:t,state:o}))},onChange:({value:e})=>({[i("padding")]:e,[i("paddingRight")]:e,[i("paddingBottom")]:e,[i("paddingLeft")]:e})};var l}function We({v:e,device:t,state:o,devices:n="all"}){const a=Re.default.pluck(e.items[0].value.items,"value");return{devices:n,id:(i="apps",Object(r.defaultValueKey)({key:i,device:t,state:o})),type:"formApps",icon:"nc-extensions-2",value:{id:e._id,fields:a}};var i}function Ne({v:e,device:t,state:o,devices:n="all"}){const i=e=>Object(r.defaultValueKey)({key:e,device:t,state:o}),l=n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}),s={small:l("sizeSmallPadding"),medium:l("sizeMediumPadding"),large:l("sizeLargePadding")};return{devices:n,id:i("size"),label:Object(a.a)("Size"),type:"radioGroup",position:17,choices:[{icon:"nc-small",value:"small"},{icon:"nc-medium",value:"medium"},{icon:"nc-large",value:"large"}],value:l("size"),onChange:e=>({[i("size")]:e,[i("paddingTop")]:s[e],[i("paddingRight")]:s[e]+10,[i("paddingBottom")]:s[e],[i("paddingLeft")]:s[e]+10})}}function Ae({v:e,device:t,state:o,onChange:n,devices:i="all"}){return{devices:i,id:(l="borderRadius",Object(r.defaultValueKey)({key:l,device:t,state:o})),label:Object(a.a)("Corner"),type:"slider",slider:{min:0,max:100},input:{show:!0,min:0},suffix:{show:!0,choices:[{title:"px",value:"px"}]},value:{value:(n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}))("borderRadius")},onChange:({value:a},{sliderDragEnd:i})=>{const l=Me(Me({},{v:e,device:t,state:o,onChange:n}),{value:a,sliderDragEnd:i});return Object(r.saveOnChanges)(l)}};var l}function Ve({v:e,device:t,state:o,prefix:n="field",devices:i="all"}){const l=e=>Object(r.defaultValueKey)({key:e,device:t,state:o});return{devices:i,id:l(Object(c.b)(n,"padding")),type:"slider",label:Object(a.a)("Spacing"),slider:{min:0,max:100},input:{show:!0},suffix:{show:!0,choices:[{title:"px",value:"px"}]},value:{value:(s=Object(c.b)(n,"padding"),Object(r.defaultValueValue)({v:e,key:s,device:t,state:o}))},onChange:({value:e})=>({[l(Object(c.b)(n,"padding"))]:e,[l(Object(c.b)(n,"paddingRight"))]:e,[l(Object(c.b)(n,"paddingBottom"))]:e,[l(Object(c.b)(n,"paddingLeft"))]:e})};var s}function De({v:e,device:t,devices:o="all",state:n}){return{id:(l="shapeTopType",Object(r.defaultValueKey)({key:l,device:t,state:n})),label:Object(a.a)("Type"),type:"select",devices:o,className:"brz-control__select-option--icon",choices:Object(i.f)(),value:(o=>Object(r.defaultValueValue)({v:e,key:o,device:t,state:n}))("shapeTopType")};var l}function $e({v:e,device:t,devices:o="all",disabled:n=!1,state:i}){const l=e=>Object(r.defaultValueKey)({key:e,device:t,state:i});return{id:l("shapeTopFlip"),label:Object(a.a)("Flip"),type:"checkGroup",disabled:n,devices:o,choices:[{value:"shapeTopHorizontal",icon:"nc-flip-horizontal"}],value:{shapeTopHorizontal:"on"===(s="shapeTopHorizontal",Object(r.defaultValueValue)({v:e,key:s,device:t,state:i}))},onChange:({shapeTopHorizontal:e})=>({[l("shapeTopHorizontal")]:e?"on":"off"})};var s}function Ge({v:e,device:t,devices:o="all",state:n}){return{id:(l="shapeBottomType",Object(r.defaultValueKey)({key:l,device:t,state:n})),label:Object(a.a)("Type"),type:"select",devices:o,className:"brz-control__select-option--icon brz-control__select-option--icon--bottom",choices:Object(i.f)(),value:(o=>Object(r.defaultValueValue)({v:e,key:o,device:t,state:n}))("shapeBottomType")};var l}function Ue({v:e,device:t,devices:o="all",disabled:n=!1,state:i}){const l=e=>Object(r.defaultValueKey)({key:e,device:t,state:i});return{id:l("shapeBottomFlip"),label:Object(a.a)("Flip"),type:"checkGroup",devices:o,disabled:n,choices:[{value:"shapeBottomHorizontal",icon:"nc-flip-horizontal"}],value:{shapeBottomHorizontal:"on"===(s="shapeBottomHorizontal",Object(r.defaultValueValue)({v:e,key:s,device:t,state:i}))},onChange:({shapeBottomHorizontal:e})=>({[l("shapeBottomHorizontal")]:e?"on":"off"})};var s}function Ke({v:e,device:t,state:o,devices:n="all",disabled:i=!1}){return{id:(l="audio",Object(r.defaultValueKey)({key:l,device:t,state:o})),label:Object(a.a)("File"),type:"fileUpload",acceptedExtensions:[".mp3",".ogg",".wav"],devices:n,disabled:i,value:(n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}))("audio")};var l}function Ye({v:e,device:t,state:o,devices:n="all",disabled:i=!1}){const l=n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}),s=e=>Object(r.defaultValueKey)({key:e,device:t,state:o});return{id:s("iconSize"),label:Object(a.a)("Icons"),type:"radioGroup",disabled:i,devices:n,choices:[{value:"small",icon:"nc-16"},{value:"medium",icon:"nc-24"},{value:"large",icon:"nc-32"},{value:"custom",icon:"nc-more"}],value:l("iconSize"),onChange:e=>({[s("iconSize")]:e,iconCustomSize:l("small"===e?"smallIconSize":"medium"===e?"mediumIconSize":"large"===e?"largeIconSize":"iconCustomSize")})}}function qe({v:e,device:t,devices:o="all",state:n}){const i="desktop"===t?6:Math.min(e.gridColumn*e.gridRow,6);return{id:Object(r.defaultValueKey)({key:"gridColumn",device:t,state:n}),type:"slider",label:Object(a.a)("Columns"),devices:o,className:"brz-ed-option__slider--skin-dev",slider:{min:1,max:i,step:1},input:{show:!0,min:1,max:i,step:1},value:{value:Object(r.defaultValueValue)({v:e,key:"gridColumn",device:t,state:n}),suffix:null},onChange:({value:o})=>{const a=Object(r.defaultValueKey)({key:"gridColumn",device:t,state:n}),i={[a]:o,[a+"Suffix"]:""};if("desktop"===t){const t=Number(o)*Number(e.gridRow);t<e.tabletGridColumn&&(i.tabletGridColumn=t),t<e.mobileGridColumn&&(i.mobileGridColumn=t)}return i}}}function Xe({v:e,device:t,devices:o="all",state:n}){return{id:Object(r.defaultValueKey)({key:"gridRow",device:t,state:n}),type:"slider",label:Object(a.a)("Rows"),devices:o,className:"brz-ed-option__slider--skin-dev",slider:{min:1,max:15,step:1},input:{show:!0,min:1,max:50,step:1},value:{value:Object(r.defaultValueValue)({v:e,key:"gridRow",device:t,state:n}),suffix:null},onChange:({value:o})=>{const a=Object(r.defaultValueKey)({key:"gridRow",device:t,state:n}),i={[a]:o,[a+"Suffix"]:""};if("desktop"===t){const t=Number(o)*Number(e.gridColumn);t<e.tabletGridColumn&&(i.tabletGridColumn=t),t<e.mobileGridColumn&&(i.mobileGridColumn=t)}return i}}}function Ze({v:e,device:t,state:o,choices:n=[],disabled:i=!1,devices:l="all"}){const s=n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}),c=e=>Object(r.defaultValueKey)({key:e,device:t,state:o});return{id:c("taxonomy"),label:Object(a.a)("Categories"),disabled:i,devices:l,type:"select",choices:n,value:`${s("taxonomy")}|${s("taxonomyId")}`,onChange:e=>{const[t,o]=e.split("|");return{[c("taxonomy")]:t,[c("taxonomyId")]:o}}}}function Je({v:e,device:t,state:o,disabled:n=!1,devices:i="all"}){const l=n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}),s=e=>Object(r.defaultValueKey)({key:e,device:t,state:o});return{id:"sliderPaddingType",type:"group-dev",disabled:n,devices:i,position:50,options:[{id:"sliderPaddingType",label:Object(a.a)("Padding"),type:"radioGroup-dev",choices:[{value:"grouped",icon:"nc-styling-all"},{value:"ungrouped",icon:"nc-styling-individual"}]},{id:s("sliderPadding"),type:"slider",disabled:"grouped"!==l("sliderPaddingType"),slider:{min:0,max:100},input:{show:!0,min:0},suffix:{show:!0,choices:[{title:"px",value:"px"},{title:"%",value:"%"}]},value:{value:l("sliderPadding"),suffix:l("sliderPaddingSuffix")},onChange:({value:e,suffix:t})=>({[s("sliderPadding")]:e,[s("sliderPaddingSuffix")]:t,[s("sliderPaddingTop")]:e,[s("sliderPaddingRight")]:e,[s("sliderPaddingBottom")]:e,[s("sliderPaddingLeft")]:e})},{id:s("sliderPaddingTop"),icon:"nc-styling-top",type:"slider",disabled:"ungrouped"!==l("sliderPaddingType"),slider:{min:0,max:100},input:{show:!0,min:0},suffix:{show:!0,choices:[{title:"px",value:"px"},{title:"%",value:"%"}]},value:{value:l("sliderPaddingTop"),suffix:l("sliderPaddingTopSuffix")},onChange:({value:e,suffix:t})=>({[s("sliderPaddingTop")]:e,[s("sliderPaddingTopSuffix")]:t,[s("sliderPadding")]:e===l("sliderPaddingRight")&&e===l("sliderPaddingLeft")&&e===l("sliderPaddingBottom")?e:l("sliderPadding")})},{id:s("sliderPaddingRight"),icon:"nc-styling-right",type:"slider",disabled:"ungrouped"!==l("sliderPaddingType"),slider:{min:0,max:100},input:{show:!0,min:0},suffix:{show:!0,choices:[{title:"px",value:"px"},{title:"%",value:"%"}]},value:{value:l("sliderPaddingRight"),suffix:l("sliderPaddingRightSuffix")},onChange:({value:e,suffix:t})=>({[s("sliderPaddingRight")]:e,[s("sliderPaddingRightSuffix")]:t,[s("sliderPadding")]:e===l("sliderPaddingTop")&&e===l("sliderPaddingLeft")&&e===l("sliderPaddingBottom")?e:l("sliderPadding")})},{id:s("sliderPaddingBottom"),icon:"nc-styling-bottom",type:"slider",disabled:"ungrouped"!==l("sliderPaddingType"),slider:{min:0,max:100},input:{show:!0,min:0},suffix:{show:!0,choices:[{title:"px",value:"px"},{title:"%",value:"%"}]},value:{value:l("sliderPaddingBottom"),suffix:l("sliderPaddingBottomSuffix")},onChange:({value:e,suffix:t})=>({[s("sliderPaddingBottom")]:e,[s("sliderPaddingBottomSuffix")]:t,[s("sliderPadding")]:e===l("sliderPaddingRight")&&e===l("sliderPaddingLeft")&&e===l("sliderPaddingTop")?e:l("sliderPadding")})},{id:s("sliderPaddingLeft"),icon:"nc-styling-left",type:"slider",disabled:"ungrouped"!==l("sliderPaddingType"),slider:{min:0,max:100},input:{show:!0,min:0},suffix:{show:!0,choices:[{title:"px",value:"px"},{title:"%",value:"%"}]},value:{value:l("sliderPaddingLeft"),suffix:l("sliderPaddingLeftSuffix")},onChange:({value:e,suffix:t})=>({[s("sliderPaddingLeft")]:e,[s("sliderPaddingLeftSuffix")]:t,[s("sliderPadding")]:e===l("sliderPaddingRight")&&e===l("sliderPaddingTop")&&e===l("sliderPaddingBottom")?e:l("sliderPadding")})}]}}function Qe({v:e,device:t,devices:o="all",state:n}){const i=e=>Object(r.defaultValueKey)({key:e,device:t,state:n});return{id:i("twitter"),label:Object(a.a)("Twitter"),type:"select",devices:o,choices:[{title:Object(a.a)("Embed"),value:"embed"},{title:Object(a.a)("Button"),value:"button"}],value:(l="twitter",Object(r.defaultValueValue)({v:e,key:l,device:t,state:n})),onChange:e=>({[i("twitter")]:e,[i("twitterType")]:"embed"===e?"embed":"followButton"})};var l}function et({title:e}){return{title:e,getItems:()=>[]}}},function(e,t,o){"use strict";o.r(t),o.d(t,"renderStyles",(function(){return b})),o.d(t,"parseOutputCss",(function(){return h})),o.d(t,"css",(function(){return v})),o.d(t,"css1",(function(){return f})),o.d(t,"clearCache",(function(){return y})),o.d(t,"tmpCSSFromCache",(function(){return O})),o.d(t,"replacePlaceholders",(function(){return S})),o.d(t,"cssStyleSizeWidthPercent",(function(){return H})),o.d(t,"cssStyleSizeWidthPx",(function(){return F})),o.d(t,"cssStyleSizeMaxWidthPercent",(function(){return R})),o.d(t,"cssStyleSizeWidthStoryOnly",(function(){return _})),o.d(t,"cssStyleSizeHeightPx",(function(){return L})),o.d(t,"cssStyleSizeMinHeightPx",(function(){return M})),o.d(t,"cssStyleSizeMaxWidthSize",(function(){return I})),o.d(t,"cssStyleSizeSizePercent",(function(){return W})),o.d(t,"cssStyleSizeMaxWidthContainer",(function(){return V})),o.d(t,"cssStyleSizeTextSpacing",(function(){return $})),o.d(t,"cssStyleSizeSpacing",(function(){return D})),o.d(t,"cssStyleSizeHeightPxOnly",(function(){return G})),o.d(t,"cssStyleSizeHeightPercentOnly",(function(){return U})),o.d(t,"cssStyleSizeSize",(function(){return N})),o.d(t,"cssStyleSizeWidth",(function(){return A})),o.d(t,"cssStyleElementLineBorder",(function(){return K})),o.d(t,"cssStyleTypographyElementCountdownLabelFontSize",(function(){return ae})),o.d(t,"cssStyleNumberTypography2FontFamily",(function(){return le})),o.d(t,"cssStyleNumberTypography2FontSize",(function(){return se})),o.d(t,"cssStyleNumberTypography2LetterSpacing",(function(){return ue})),o.d(t,"cssStyleNumberTypography2FontWeight",(function(){return de})),o.d(t,"cssStyleNumberTypography2LineHeight",(function(){return ce})),o.d(t,"cssStyleTitleTypography2FontFamily",(function(){return pe})),o.d(t,"cssStyleTitleTypography2FontSize",(function(){return be})),o.d(t,"cssStyleTitleTypography2LetterSpacing",(function(){return ge})),o.d(t,"cssStyleTitleTypography2FontWeight",(function(){return he})),o.d(t,"cssStyleTitleTypography2LineHeight",(function(){return me})),o.d(t,"cssStyleMessageTypography2FontFamily",(function(){return ve})),o.d(t,"cssStyleMessageTypography2FontSize",(function(){return fe})),o.d(t,"cssStyleMessageTypography2LetterSpacing",(function(){return Se})),o.d(t,"cssStyleMessageTypography2FontWeight",(function(){return Oe})),o.d(t,"cssStyleMessageTypography2LineHeight",(function(){return ye})),o.d(t,"cssStyleElementCountDown2NumberColor",(function(){return xe})),o.d(t,"cssStyleElementCountDown2TitleColor",(function(){return Ce})),o.d(t,"cssStyleElementCountDown2MessageColor",(function(){return je})),o.d(t,"cssStyleElementCountDown2SpacingLeft",(function(){return re})),o.d(t,"cssStyleElementCountDown2SpacingRight",(function(){return ie})),o.d(t,"cssStyleElementCountDown2HoverTransitionProperty",(function(){return Pe})),o.d(t,"cssStyleElementCounterChartEnd",(function(){return Be})),o.d(t,"cssStyleElementCounterChartWidth",(function(){return we})),o.d(t,"cssStyleElementCounterFillColor",(function(){return Te})),o.d(t,"cssStyleElementCounterStrokeColor",(function(){return ze})),o.d(t,"cssStyleElementCounterTransitionHoverProperty",(function(){return Ee})),o.d(t,"cssStyleElementIconBoxFlexDirection",(function(){return ke})),o.d(t,"cssStyleElementIconBoxMarginRight",(function(){return He})),o.d(t,"cssStyleElementIconBoxMarginLeft",(function(){return Fe})),o.d(t,"cssStyleElementProtectedPageAutocompleteColor",(function(){return _e})),o.d(t,"cssStyleElementProtectedPagePropertyHoverTransition",(function(){return Re})),o.d(t,"cssStyleElementProtectedPageInputWidth",(function(){return Le})),o.d(t,"cssStyleElementProtectedPageInputSpacing",(function(){return Me})),o.d(t,"cssStyleElementProtectedPageInputHeight",(function(){return Ie})),o.d(t,"cssStyleBorder",(function(){return We})),o.d(t,"cssStyleBorderTransparentColor",(function(){return Ne})),o.d(t,"cssStyleElementImageGallery3FontFamily",(function(){return tt})),o.d(t,"cssStyleElementImageGallery3FontSize",(function(){return ot})),o.d(t,"cssStyleElementImageGallery3LineHeight",(function(){return nt})),o.d(t,"cssStyleElementImageGallery3FontWeight",(function(){return at})),o.d(t,"cssStyleElementImageGallery3LetterSpacing",(function(){return rt})),o.d(t,"cssStyleElementImageGalleryWidth",(function(){return Ve})),o.d(t,"cssStyleElementImageGalleryMargin",(function(){return De})),o.d(t,"cssStyleElementImageGalleryItemWidth",(function(){return $e})),o.d(t,"cssStyleElementImageGalleryItemPadding",(function(){return Ge})),o.d(t,"cssStyleElementImageGalleryFilterSpacing",(function(){return Ue})),o.d(t,"cssStyleElementImageGalleryFilterAfterSpacing",(function(){return Ke})),o.d(t,"cssStyleElementImageGalleryFilterHorizontalAlign",(function(){return Ye})),o.d(t,"cssStyleElementImageGalleryPaddingFourFields",(function(){return qe})),o.d(t,"cssStyleElementImageGalleryBorderRadius",(function(){return et})),o.d(t,"cssStyleElementImageGalleryFilterColor",(function(){return Xe})),o.d(t,"cssStyleElementImageGalleryFilterBgColor",(function(){return Ze})),o.d(t,"cssStyleElementImageGalleryFilterBoxShadow",(function(){return Je})),o.d(t,"cssStyleElementImageGalleryFilterBorder",(function(){return Qe})),o.d(t,"cssStyleElementImageGalleryFilterActiveColor",(function(){return it})),o.d(t,"cssStyleElementImageGalleryFilterActiveBgColor",(function(){return lt})),o.d(t,"cssStyleElementImageGalleryFilterActiveBorder",(function(){return st})),o.d(t,"cssStyleElementImageGalleryFilterActiveShadow",(function(){return ct})),o.d(t,"cssStyleBorderRadius",(function(){return Ae})),o.d(t,"cssStyleBgColor",(function(){return dt})),o.d(t,"cssStyleBgColorHex",(function(){return ut})),o.d(t,"cssStyleBg2Color",(function(){return pt})),o.d(t,"cssStyleBgGradient",(function(){return bt})),o.d(t,"cssStyleBgImage",(function(){return mt})),o.d(t,"cssStyleBgImageHover",(function(){return ht})),o.d(t,"cssStyleBgMediaImage",(function(){return gt})),o.d(t,"cssStyleBgImagePosition",(function(){return vt})),o.d(t,"cssStyleBgImageAttachment",(function(){return ft})),o.d(t,"cssStyleBgMediaMap",(function(){return yt})),o.d(t,"cssStyleBgMediaVideo",(function(){return Ot})),o.d(t,"cssStyleColor",(function(){return St})),o.d(t,"cssStyleLabelColor",(function(){return xt})),o.d(t,"cssStyleBoxShadow",(function(){return jt})),o.d(t,"cssStyleBoxShadowSuffixForGlamour",(function(){return Ct})),o.d(t,"cssStyleBoxShadowSection",(function(){return Pt})),o.d(t,"cssStyleTextShadow",(function(){return Bt})),o.d(t,"cssStyleShapeTopType",(function(){return wt})),o.d(t,"cssStyleShapeTopHeight",(function(){return Tt})),o.d(t,"cssStyleShapeTopFlip",(function(){return zt})),o.d(t,"cssStyleShapeTopIndex",(function(){return Et})),o.d(t,"cssStyleShapeBottomType",(function(){return kt})),o.d(t,"cssStyleShapeBottomHeight",(function(){return Ht})),o.d(t,"cssStyleShapeBottomFlip",(function(){return Ft})),o.d(t,"cssStyleShapeBottomIndex",(function(){return _t})),o.d(t,"cssStyleHoverTransition",(function(){return Rt})),o.d(t,"cssStylePropertyHoverTransition",(function(){return Lt})),o.d(t,"cssStyleTypographyFontFamily",(function(){return Mt})),o.d(t,"cssStyleTypographyFontSize",(function(){return It})),o.d(t,"cssStyleTypographyLineHeight",(function(){return Wt})),o.d(t,"cssStyleTypographyFontWeight",(function(){return Nt})),o.d(t,"cssStyleTypographyLetterSpacing",(function(){return At})),o.d(t,"cssStyleTypography2FontFamily",(function(){return Y})),o.d(t,"cssStyleTypography2FontSize",(function(){return q})),o.d(t,"cssStyleTypography2LineHeight",(function(){return X})),o.d(t,"cssStyleTypography2FontWeight",(function(){return Z})),o.d(t,"cssStyleTypography2LetterSpacing",(function(){return J})),o.d(t,"cssStyleTypography3FontFamily",(function(){return Q})),o.d(t,"cssStyleTypography3FontSize",(function(){return ee})),o.d(t,"cssStyleTypography3LineHeight",(function(){return te})),o.d(t,"cssStyleTypography3FontWeight",(function(){return oe})),o.d(t,"cssStyleTypography3LetterSpacing",(function(){return ne})),o.d(t,"cssStyleElementProgressBarPadding",(function(){return Vt})),o.d(t,"cssStyleSizeProgressBarMaxWidthPercent",(function(){return Dt})),o.d(t,"cssStyleElementProgressBarPropertyHoverTransition",(function(){return $t})),o.d(t,"cssStyleElementRichTextMartinTop",(function(){return Zt})),o.d(t,"cssStyleElementRichTextMartinBottom",(function(){return Jt})),o.d(t,"cssStyleElementRichTextGradient",(function(){return Qt})),o.d(t,"cssStyleElementRichTextFontSize",(function(){return eo})),o.d(t,"cssStyleElementRichTextBgImage",(function(){return to})),o.d(t,"cssStyleElementRichTextFontFamily",(function(){return oo})),o.d(t,"cssStyleElementRichTextColor",(function(){return no})),o.d(t,"cssStyleElementButtonBorderRadius",(function(){return ao})),o.d(t,"cssStyleElementButtonIconPosition",(function(){return ro})),o.d(t,"cssStyleElementButtonIconFontSize",(function(){return io})),o.d(t,"cssStyleElementButtonIconMargin",(function(){return lo})),o.d(t,"cssStyleElementIconStrokeWidth",(function(){return so})),o.d(t,"cssStyleElementButtonPropertyHoverTransition",(function(){return co})),o.d(t,"cssStyleElementButtonPropertyContentAlign",(function(){return uo})),o.d(t,"cssStyleElementFacebookButtonPropertyHoverTransition",(function(){return po})),o.d(t,"cssStyleElementFacebookCommentsPropertyHoverTransition",(function(){return bo})),o.d(t,"cssStyleElementFacebookEmbedPropertyHoverTransition",(function(){return mo})),o.d(t,"cssStyleElementFacebookGroupPropertyHoverTransition",(function(){return ho})),o.d(t,"cssStyleElementFacebookPagePropertyHoverTransition",(function(){return go})),o.d(t,"cssStyleElementMapPropertyHoverTransition",(function(){return vo})),o.d(t,"cssStyleElementMapPropertyPositionFixed",(function(){return fo})),o.d(t,"cssStyleElementSoundCloudPropertyHoverTransition",(function(){return yo})),o.d(t,"cssStyleContainerPopup2ContainerWidth",(function(){return Oo})),o.d(t,"cssStyleContainerPopup2CloseState",(function(){return So})),o.d(t,"cssStyleContainerPopup2ClosePosition",(function(){return wo})),o.d(t,"cssStyleContainerPopup2CloseFontSize",(function(){return Co})),o.d(t,"cssStyleContainerPopup2CloseBgSize",(function(){return jo})),o.d(t,"cssStyleContainerPopup2CloseBorderRadius",(function(){return Po})),o.d(t,"cssStyleContainerPopup2CloseColor",(function(){return xo})),o.d(t,"cssStyleContainerPopup2CloseBgColor",(function(){return Bo})),o.d(t,"cssStyleContainerPopup2RowFlexVerticalAlign",(function(){return To})),o.d(t,"cssStyleContainerPopup2CustomHeight",(function(){return zo})),o.d(t,"cssStyleContainerPopup2CustomHeightOverflow",(function(){return Eo})),o.d(t,"cssStyleContainerPopup2Custom2Height100",(function(){return ko})),o.d(t,"cssStyleContainerPopup2Custom2MaxHeight100",(function(){return Ho})),o.d(t,"cssStyleZIndex",(function(){return Fo})),o.d(t,"cssStyleZIndexStory",(function(){return _o})),o.d(t,"cssStyleFlexVerticalAlign",(function(){return Ro})),o.d(t,"cssStyleFlexColumnVerticalAlign",(function(){return Wo})),o.d(t,"cssStyleFlexHorizontalAlign",(function(){return Lo})),o.d(t,"cssStyleContentAlign",(function(){return Mo})),o.d(t,"cssStyleMarginAlign",(function(){return Io})),o.d(t,"cssStyleExcerptAlign",(function(){return No})),o.d(t,"cssStyleFlexColumn",(function(){return Ao})),o.d(t,"cssStylePadding",(function(){return Ko})),o.d(t,"cssStylePaddingFourFields",(function(){return Vo})),o.d(t,"cssStylePaddingPreview",(function(){return Do})),o.d(t,"cssStylePaddingTopForEditorResizer",(function(){return $o})),o.d(t,"cssStylePaddingBottomForEditorResizer",(function(){return Go})),o.d(t,"cssStylePaddingRightLeftForEditor",(function(){return Uo})),o.d(t,"cssStyleItemPadding",(function(){return Yo})),o.d(t,"cssStyleMargin",(function(){return qo})),o.d(t,"cssStyleItemMargin",(function(){return Xo})),o.d(t,"cssStyleDisplayFlex",(function(){return Zo})),o.d(t,"cssStyleDisplayInlineFlex",(function(){return Jo})),o.d(t,"cssStyleDisplayBlock",(function(){return Qo})),o.d(t,"cssStyleVisible",(function(){return en})),o.d(t,"cssStyleVisibleEditorDisplayNoneOrFlex",(function(){return tn})),o.d(t,"cssStyleVisibleEditorDisplayNoneOrBlock",(function(){return nn})),o.d(t,"cssStyleVisibleEditorDisplayNoneOrInlineFlex",(function(){return on})),o.d(t,"cssStyleVisibleMode",(function(){return an})),o.d(t,"cssStyleShowMembershipBlock",(function(){return ln})),o.d(t,"cssStyleShowMembershipFlex",(function(){return sn})),o.d(t,"cssStyleFilter",(function(){return dn})),o.d(t,"cssStyleFilterSuffixForGlamour",(function(){return cn})),o.d(t,"cssStyleElementVideoPaddingRatio",(function(){return un})),o.d(t,"cssStyleElementVideoFilter",(function(){return pn})),o.d(t,"cssStyleElementVideoIframeFix",(function(){return mn})),o.d(t,"cssStyleElementVideoBgSize",(function(){return bn})),o.d(t,"cssStyleElementVideoIconFontSize",(function(){return hn})),o.d(t,"cssStyleElementVideoIconWidth",(function(){return gn})),o.d(t,"cssStyleElementVideoIconHeight",(function(){return vn})),o.d(t,"cssStyleElementVideoControlsIconFontSize",(function(){return jn})),o.d(t,"cssStyleElementVideoBgColorRatio",(function(){return fn})),o.d(t,"cssStyleElementVideoCoverSrc",(function(){return yn})),o.d(t,"cssStyleElementVideoCoverPosition",(function(){return On})),o.d(t,"cssStyleElementVideoPropertyHoverTransition",(function(){return Sn})),o.d(t,"cssStyleVideoControlsBgColor",(function(){return xn})),o.d(t,"cssStyleVideoIconControls",(function(){return Cn})),o.d(t,"cssStyleElementVideoPlaylistSubTitleVideoTypography2FontFamily",(function(){return Pn})),o.d(t,"cssStyleElementVideoPlaylistSubTitleVideoTypography2FontSize",(function(){return Bn})),o.d(t,"cssStyleElementVideoPlaylistSubTitleVideoTypography2LineHeight",(function(){return wn})),o.d(t,"cssStyleElementVideoPlaylistSubTitleVideoTypography2FontWeight",(function(){return Tn})),o.d(t,"cssStyleElementVideoPlaylistSubTitleVideoTypography2LetterSpacing",(function(){return zn})),o.d(t,"cssStyleElementVideoPlaylistBorderItem",(function(){return Hn})),o.d(t,"cssStyleElementVideoPlaylistGridItemWidth",(function(){return _n})),o.d(t,"cssStyleSizeWidthPixel",(function(){return En})),o.d(t,"cssStyleElementVideoPlaylistImageSize",(function(){return kn})),o.d(t,"cssStyleSizeWidthVideoBlock",(function(){return Fn})),o.d(t,"cssStyleBgIconCoverColor",(function(){return Mn})),o.d(t,"cssStyleCoverIconColor",(function(){return Rn})),o.d(t,"cssStyleCoverSubTitleColor",(function(){return Ln})),o.d(t,"cssStyleElementVideoPlaylistItemActiveBg",(function(){return In})),o.d(t,"cssStyleElementVideoPlaylistBorderItemActive",(function(){return Wn})),o.d(t,"cssStyleElementVideoPlaylistItemActiveColor",(function(){return Nn})),o.d(t,"cssStyleElementVideoPlaylistItemSubtitleActiveColor",(function(){return An})),o.d(t,"cssStyleElementMediaIconFontSize",(function(){return Vn})),o.d(t,"cssStyleElementMediaPadding",(function(){return Dn})),o.d(t,"cssStyleRowMinHeight",(function(){return $n})),o.d(t,"cssStyleRowReverseColumn",(function(){return Gn})),o.d(t,"cssStylePosition",(function(){return Jn})),o.d(t,"cssStylePositionMode",(function(){return Qn})),o.d(t,"cssStyleCustomPosition",(function(){return ea})),o.d(t,"cssStyleCustomWidth",(function(){return ta})),o.d(t,"cssStyleOffset",(function(){return oa})),o.d(t,"cssStyleIconSpacing",(function(){return na})),o.d(t,"cssStyleIconSize",(function(){return aa})),o.d(t,"cssStyleSectionMaxWidth",(function(){return la})),o.d(t,"cssStyleSectionSliderHeight",(function(){return sa})),o.d(t,"cssStyleSectionColorDots",(function(){return ca})),o.d(t,"cssStyleSectionColorArrows",(function(){return da})),o.d(t,"cssStyleSectionPropertyHoverTransition",(function(){return ua})),o.d(t,"cssStyleSectionToolbarOffset",(function(){return pa})),o.d(t,"cssStyleSectionHeightStyle",(function(){return ba})),o.d(t,"cssStyleSectionPaddingsForEditorResize",(function(){return ma})),o.d(t,"cssStyleSectionPopupContainerWrap",(function(){return ha})),o.d(t,"cssStyleElementBreadcrumbsArrowSize",(function(){return ga})),o.d(t,"cssStyleElementBreadcrumbsColorActive",(function(){return va})),o.d(t,"cssStyleElementBreadcrumbsColorArrows",(function(){return fa})),o.d(t,"cssStyleElementForm2FlexBasisPercent",(function(){return ya})),o.d(t,"cssStyleElementForm2SubmitWidth",(function(){return Oa})),o.d(t,"cssStyleElementForm2InputHeight",(function(){return Sa})),o.d(t,"cssStyleElementForm2FieldsLineHeight",(function(){return Pa})),o.d(t,"cssStyleElementForm2FieldsLabelFontFamily",(function(){return Ba})),o.d(t,"cssStyleElementForm2FieldsLabelFontSize",(function(){return wa})),o.d(t,"cssStyleElementForm2FieldsLabelFontWeight",(function(){return za})),o.d(t,"cssStyleElementForm2FieldsLabelLetterSpacing",(function(){return Ea})),o.d(t,"cssStyleElementForm2FieldsLabelAlign",(function(){return xa})),o.d(t,"cssStyleElementForm2FieldsLabelLineHeight",(function(){return Ta})),o.d(t,"cssStyleElementForm2FieldsLabelPadding",(function(){return ka})),o.d(t,"cssStyleElementForm2Margin",(function(){return Ca})),o.d(t,"cssStyleElementForm2Padding",(function(){return ja})),o.d(t,"cssStyleElementForm2FieldsBorderRequired",(function(){return Na})),o.d(t,"cssStyleElementForm2FieldsCheckboxColor",(function(){return Ha})),o.d(t,"cssStyleElementForm2FieldsCheckboxFontFamily",(function(){return Fa})),o.d(t,"cssStyleElementForm2FieldsCheckboxFontSize",(function(){return _a})),o.d(t,"cssStyleElementForm2FieldsCheckboxFontWeight",(function(){return Ra})),o.d(t,"cssStyleElementForm2FieldsCheckboxLetterSpacing",(function(){return La})),o.d(t,"cssStyleElementForm2FieldsCheckboxLineHeight",(function(){return Ma})),o.d(t,"cssStyleElementForm2FieldsSelectColor",(function(){return Ia})),o.d(t,"cssStyleElementForm2FieldsSelectBgColor",(function(){return Wa})),o.d(t,"cssStyleElementForm2FieldsSelectChoiceBgColor",(function(){return Aa})),o.d(t,"cssStyleElementForm2FieldsSelectBorder",(function(){return Va})),o.d(t,"cssStyleElementForm2FieldsSelectBorderRadius",(function(){return Da})),o.d(t,"cssStyleElementForm2FieldsSelectBoxShadow",(function(){return $a})),o.d(t,"cssStyleElementForm2FieldColumns",(function(){return Ga})),o.d(t,"cssStyleElementForm2StoryButtonHeight",(function(){return Ua})),o.d(t,"cssStyleElementLoginFormMargin",(function(){return Ka})),o.d(t,"cssStyleElementLoginFieldPadding",(function(){return Ya})),o.d(t,"cssStyleElementLoginLostPasswordColor",(function(){return er})),o.d(t,"cssStyleElementLoginLostPasswordAlign",(function(){return tr})),o.d(t,"cssStyleElementLoginRememberMeAlign",(function(){return or})),o.d(t,"cssStyleElementLoginLostPasswordTypography2FontFamily",(function(){return qa})),o.d(t,"cssStyleElementLoginLostPasswordTypography2FontSize",(function(){return Xa})),o.d(t,"cssStyleElementLoginLostPasswordTypography2FontWeight",(function(){return Ja})),o.d(t,"cssStyleElementLoginLostPasswordTypography2LetterSpacing",(function(){return Qa})),o.d(t,"cssStyleElementLoginLostPasswordTypography2LineHeight",(function(){return Za})),o.d(t,"cssStyleElementLoginAutorizedAlign",(function(){return nr})),o.d(t,"cssStyleElementLoginTextTypography2FontFamily",(function(){return ar})),o.d(t,"cssStyleElementLoginTextTypography2FontSize",(function(){return rr})),o.d(t,"cssStyleElementLoginTextTypography2LineHeight",(function(){return ir})),o.d(t,"cssStyleElementLoginTextTypography2FontWeight",(function(){return lr})),o.d(t,"cssStyleElementLoginTextTypography2LetterSpacing",(function(){return sr})),o.d(t,"cssStyleElementLoginTextColor",(function(){return cr})),o.d(t,"cssStyleElementLoginLinkColor",(function(){return dr})),o.d(t,"cssStyleElementLoginRegisterInfoTypography2FontFamily",(function(){return ur})),o.d(t,"cssStyleElementLoginRegisterInfoTypography2FontSize",(function(){return pr})),o.d(t,"cssStyleElementLoginRegisterInfoTypography2LineHeight",(function(){return br})),o.d(t,"cssStyleElementLoginRegisterInfoTypography2FontWeight",(function(){return mr})),o.d(t,"cssStyleElementLoginRegisterInfoTypography2LetterSpacing",(function(){return hr})),o.d(t,"cssStyleElementRegisterInfoColor",(function(){return gr})),o.d(t,"cssStyleElementRegisterInfoAlign",(function(){return vr})),o.d(t,"cssStyleElementLoginRegisterLinkTypography2FontFamily",(function(){return fr})),o.d(t,"cssStyleElementLoginRegisterLinkTypography2FontSize",(function(){return yr})),o.d(t,"cssStyleElementLoginRegisterLinkTypography2LineHeight",(function(){return Or})),o.d(t,"cssStyleElementLoginRegisterLinkTypography2FontWeight",(function(){return Sr})),o.d(t,"cssStyleElementLoginRegisterLinkTypography2LetterSpacing",(function(){return xr})),o.d(t,"cssStyleElementLoginRegisterLinkColor",(function(){return Cr})),o.d(t,"cssStyleElementLoginRegisterLinkAlign",(function(){return jr})),o.d(t,"cssStyleElementLoginLoginLinkTypography2FontFamily",(function(){return Pr})),o.d(t,"cssStyleElementLoginLoginLinkTypography2FontSize",(function(){return Br})),o.d(t,"cssStyleElementLoginLoginLinkTypography2LineHeight",(function(){return wr})),o.d(t,"cssStyleElementLoginLoginLinkTypography2FontWeight",(function(){return Tr})),o.d(t,"cssStyleElementLoginLoginLinkTypography2LetterSpacing",(function(){return zr})),o.d(t,"cssStyleElementLoginLoginLinkColor",(function(){return Er})),o.d(t,"cssStyleElementLoginLoginLinkAlign",(function(){return kr})),o.d(t,"cssStyleElementPostInfoColorText",(function(){return Fr})),o.d(t,"cssStyleElementPostInfoColorIcons",(function(){return Hr})),o.d(t,"cssStyleElementPostInfoSpacing",(function(){return _r})),o.d(t,"cssStyleElementPostNavigation2TitleFontFamily",(function(){return Rr})),o.d(t,"cssStyleElementPostNavigation2TitleFontSize",(function(){return Lr})),o.d(t,"cssStyleElementPostNavigation2TitleLineHeight",(function(){return Mr})),o.d(t,"cssStyleElementPostNavigation2TitleFontWeight",(function(){return Ir})),o.d(t,"cssStyleElementPostNavigation2TitleLetterSpacing",(function(){return Wr})),o.d(t,"cssStyleElementPostNavigation2PostFontFamily",(function(){return Nr})),o.d(t,"cssStyleElementPostNavigation2PostFontSize",(function(){return Ar})),o.d(t,"cssStyleElementPostNavigation2PostLineHeight",(function(){return Vr})),o.d(t,"cssStyleElementPostNavigation2PostFontWeight",(function(){return Dr})),o.d(t,"cssStyleElementPostNavigation2PostLetterSpacing",(function(){return $r})),o.d(t,"cssStyleElementPostNavigationColorTitle",(function(){return Gr})),o.d(t,"cssStyleElementPostNavigationColorPost",(function(){return Ur})),o.d(t,"cssStyleElementPostNavigationSpacing",(function(){return Kr})),o.d(t,"cssStyleElementPostNavigationSeparationHeight",(function(){return Yr})),o.d(t,"cssStyleElementPostNavigationShowSeparation",(function(){return qr})),o.d(t,"cssStyleElementStarRatingRatingColor",(function(){return Xr})),o.d(t,"cssStyleElementStarRatingRatingBackgroundColor",(function(){return Zr})),o.d(t,"cssStyleElementStarRatingPropertyHoverTransition",(function(){return ei})),o.d(t,"cssStyleElementStarRatingTextSpacing",(function(){return oi})),o.d(t,"cssStyleElementStarRatingStyle2Background",(function(){return Jr})),o.d(t,"cssStyleElementStarRatingStyle2BorderRadius",(function(){return Qr})),o.d(t,"cssStyleElementStarRatingDirection",(function(){return ti})),o.d(t,"cssStyleElementTimelineTabContentArrowColor",(function(){return Ni})),o.d(t,"cssStyleElementTimelineTabContentArrowCustomColor",(function(){return Ai})),o.d(t,"cssStyleElementTimelineTabContentArrowCustomColor1",(function(){return Vi})),o.d(t,"cssStyleElementTimelineBeforeDisplay",(function(){return Ci})),o.d(t,"cssStyleElementTimelineCustomLineOdd",(function(){return ki})),o.d(t,"cssStyleElementTimelineVerticalTab",(function(){return el})),o.d(t,"cssStyleElementTimelineVerticalLastTab",(function(){return tl})),o.d(t,"cssStyleElementTimelineTabsVerticalContent",(function(){return Qi})),o.d(t,"cssStyleElementTimelineTabsVerticalNavIcon",(function(){return Ji})),o.d(t,"cssStyleElementTimelineTabsHorizontalStyle3",(function(){return Zi})),o.d(t,"cssStyleElementTimelineTabHorizontalStyle3Odd",(function(){return Xi})),o.d(t,"cssStyleElementTimelineTabCustomStyle",(function(){return qi})),o.d(t,"cssStyleElementTimelineContentBeforeStyle3",(function(){return Ui})),o.d(t,"cssStyleElementTimelineVerticalTabBeforeNone",(function(){return ol})),o.d(t,"cssStyleElementTimelineVerticalTabBeforeStyle3",(function(){return nl})),o.d(t,"cssStyleElementTimelineNavTitleStyle3",(function(){return Yi})),o.d(t,"cssStyleElementTimelineTab",(function(){return $i})),o.d(t,"cssStyleElementTimelineTabs",(function(){return Di})),o.d(t,"cssStyleElementTimelineTabContentBefore",(function(){return Gi})),o.d(t,"cssStyleElementTimelineNavTitleSpacing",(function(){return Ki})),o.d(t,"cssStyleElementTimelineWidth",(function(){return Wi})),o.d(t,"cssStyleElementTimelineIconSize",(function(){return si})),o.d(t,"cssStyleElementTimelineIconWidth",(function(){return di})),o.d(t,"cssStyleElementTimelineIconHeight",(function(){return ui})),o.d(t,"cssStyleElementTimelineIconBorderRadius",(function(){return fi})),o.d(t,"cssStyleElementTimelineNavTitleWidth",(function(){return pi})),o.d(t,"cssStyleElementTimelineLineBgColor",(function(){return mi})),o.d(t,"cssStyleElementTimelineLineTop",(function(){return hi})),o.d(t,"cssStyleElementTimelineArrowBorder",(function(){return vi})),o.d(t,"cssStyleElementTimelineVerticalCustomTabPositionOdd",(function(){return Ri})),o.d(t,"cssStyleElementTimelineContentSpacing",(function(){return gi})),o.d(t,"cssStyleElementTimelineVerticalCustomContentSpacing",(function(){return Ii})),o.d(t,"cssStyleElementTimelinePaddingForIcon",(function(){return ci})),o.d(t,"cssStyleElementTimelineNavTitleVisible",(function(){return bi})),o.d(t,"cssStyleElementTimelineVerticalPosition",(function(){return yi})),o.d(t,"cssStyleElementTimelineLineWidthHeightBefore",(function(){return Oi})),o.d(t,"cssStyleElementTimelineLineWidthHeightAfter",(function(){return Si})),o.d(t,"cssStyleElementTimelineVerticalLinePosition",(function(){return xi})),o.d(t,"cssStyleElementTimelineVerticalLineTopPosition",(function(){return ji})),o.d(t,"cssStyleElementTimelineVerticalLineBottomPosition",(function(){return Pi})),o.d(t,"cssStyleElementTimelineCustomTabWidth",(function(){return Bi})),o.d(t,"cssStyleElementTimelineCustomLastTabWidth",(function(){return wi})),o.d(t,"cssStyleElementTimelineVerticalInvertPosition",(function(){return Ti})),o.d(t,"cssStyleElementTimelineVerticalInvertLinePosition",(function(){return zi})),o.d(t,"cssStyleElementTimelineCustomLineTop",(function(){return Ei})),o.d(t,"cssStyleElementTimelineCustomContentSpacing",(function(){return Hi})),o.d(t,"cssStyleElementTimelineCustomContentBottomSpacing",(function(){return Fi})),o.d(t,"cssStyleElementTimelineVerticalCustomTabPosition",(function(){return _i})),o.d(t,"cssStyleElementTimelineVerticalCustomPosition",(function(){return Li})),o.d(t,"cssStyleElementTimelineVerticalStyle3ArrowPosition",(function(){return Mi})),o.d(t,"cssStyleElementSwitcherNavSpacing",(function(){return ll})),o.d(t,"cssStyleElementSwitcherNavBeforeBg",(function(){return il})),o.d(t,"cssStyleElementSwitcherActiveTextColor",(function(){return sl})),o.d(t,"cssStyleElementSwitcherNav2Width",(function(){return al})),o.d(t,"cssStyleElementSwitcherNav2Height",(function(){return rl})),o.d(t,"cssStyleElementSwitcherWidth",(function(){return cl})),o.d(t,"cssStyleElementWPPostContentH1Color",(function(){return dl})),o.d(t,"cssStyleElementWPPostContentH2Color",(function(){return ul})),o.d(t,"cssStyleElementWPPostContentH3Color",(function(){return pl})),o.d(t,"cssStyleElementWPPostContentH4Color",(function(){return bl})),o.d(t,"cssStyleElementWPPostContentH5Color",(function(){return ml})),o.d(t,"cssStyleElementWPPostContentH6Color",(function(){return hl})),o.d(t,"cssStyleElementWPPostContentParagraphColor",(function(){return gl})),o.d(t,"cssStyleElementWPPostContentTypography2ParagraphFontFamily",(function(){return vl})),o.d(t,"cssStyleElementWPPostContentTypography2ParagraphFontSize",(function(){return fl})),o.d(t,"cssStyleElementWPPostContentTypography2ParagraphLineHeight",(function(){return yl})),o.d(t,"cssStyleElementWPPostContentTypography2ParagraphFontWeight",(function(){return Ol})),o.d(t,"cssStyleElementWPPostContentTypography2ParagraphLetterSpacing",(function(){return Sl})),o.d(t,"cssStyleElementWPPostContentTypography2H1FontFamily",(function(){return xl})),o.d(t,"cssStyleElementWPPostContentTypography2H1FontSize",(function(){return Cl})),o.d(t,"cssStyleElementWPPostContentTypography2H1LineHeight",(function(){return jl})),o.d(t,"cssStyleElementWPPostContentTypography2H1FontWeight",(function(){return Pl})),o.d(t,"cssStyleElementWPPostContentTypography2H1LetterSpacing",(function(){return Bl})),o.d(t,"cssStyleElementWPPostContentTypography2H2FontFamily",(function(){return wl})),o.d(t,"cssStyleElementWPPostContentTypography2H2FontSize",(function(){return Tl})),o.d(t,"cssStyleElementWPPostContentTypography2H2LineHeight",(function(){return zl})),o.d(t,"cssStyleElementWPPostContentTypography2H2FontWeight",(function(){return El})),o.d(t,"cssStyleElementWPPostContentTypography2H2LetterSpacing",(function(){return kl})),o.d(t,"cssStyleElementWPPostContentTypography2H3FontFamily",(function(){return Hl})),o.d(t,"cssStyleElementWPPostContentTypography2H3FontSize",(function(){return Fl})),o.d(t,"cssStyleElementWPPostContentTypography2H3LineHeight",(function(){return _l})),o.d(t,"cssStyleElementWPPostContentTypography2H3FontWeight",(function(){return Rl})),o.d(t,"cssStyleElementWPPostContentTypography2H3LetterSpacing",(function(){return Ll})),o.d(t,"cssStyleElementWPPostContentTypography2H4FontFamily",(function(){return Ml})),o.d(t,"cssStyleElementWPPostContentTypography2H4FontSize",(function(){return Il})),o.d(t,"cssStyleElementWPPostContentTypography2H4LineHeight",(function(){return Wl})),o.d(t,"cssStyleElementWPPostContentTypography2H4FontWeight",(function(){return Nl})),o.d(t,"cssStyleElementWPPostContentTypography2H4LetterSpacing",(function(){return Al})),o.d(t,"cssStyleElementWPPostContentTypography2H5FontFamily",(function(){return Vl})),o.d(t,"cssStyleElementWPPostContentTypography2H5FontSize",(function(){return Dl})),o.d(t,"cssStyleElementWPPostContentTypography2H5LineHeight",(function(){return $l})),o.d(t,"cssStyleElementWPPostContentTypography2H5FontWeight",(function(){return Gl})),o.d(t,"cssStyleElementWPPostContentTypography2H5LetterSpacing",(function(){return Ul})),o.d(t,"cssStyleElementWPPostContentTypography2H6FontFamily",(function(){return Kl})),o.d(t,"cssStyleElementWPPostContentTypography2H6FontSize",(function(){return Yl})),o.d(t,"cssStyleElementWPPostContentTypography2H6LineHeight",(function(){return ql})),o.d(t,"cssStyleElementWPPostContentTypography2H6FontWeight",(function(){return Xl})),o.d(t,"cssStyleElementWPPostContentTypography2H6LetterSpacing",(function(){return Zl})),o.d(t,"cssStyleElementWPPostContentFontWeightInherit",(function(){return Jl})),o.d(t,"cssStyleElementWOOPriceColorSale",(function(){return Ql})),o.d(t,"cssStyleElementWOOPriceSaleFontFamily",(function(){return es})),o.d(t,"cssStyleElementWOOPriceSaleFontSize",(function(){return ts})),o.d(t,"cssStyleElementWOOPriceSaleLineHeight",(function(){return os})),o.d(t,"cssStyleElementWOOPriceSaleFontWeight",(function(){return ns})),o.d(t,"cssStyleElementWOOPriceSaleLetterSpacing",(function(){return as})),o.d(t,"cssStyleElementWOOPriceColumn",(function(){return rs})),o.d(t,"cssStyleElementWOOPriceSpacingFirst",(function(){return is})),o.d(t,"cssStyleElementWOOPriceSpacingLast",(function(){return ls})),o.d(t,"cssStyleElementWOOAdditionalTitleFontFamily",(function(){return ss})),o.d(t,"cssStyleElementWOOAdditionalTitleFontSize",(function(){return cs})),o.d(t,"cssStyleElementWOOAdditionalTitleLineHeight",(function(){return ds})),o.d(t,"cssStyleElementWOOAdditionalTitleFontWeight",(function(){return us})),o.d(t,"cssStyleElementWOOAdditionalTitleLetterSpacing",(function(){return ps})),o.d(t,"cssStyleElementWOOAdditionalTitleColor",(function(){return bs})),o.d(t,"cssStyleElementWOOAdditionalTitleSpacing",(function(){return ms})),o.d(t,"cssStyleElementWOOAttributesAttributesFontFamily",(function(){return hs})),o.d(t,"cssStyleElementWOOAttributesAttributesFontSize",(function(){return gs})),o.d(t,"cssStyleElementWOOAttributesAttributesLineHeight",(function(){return vs})),o.d(t,"cssStyleElementWOOAttributesAttributesFontWeight",(function(){return fs})),o.d(t,"cssStyleElementWOOAttributesAttributesLetterSpacing",(function(){return ys})),o.d(t,"cssStyleElementWOOAttributesSpacing",(function(){return Os})),o.d(t,"cssStyleElementWOOAttributesAttributeColor",(function(){return Ss})),o.d(t,"cssStyleElementWOOAttributesBorder",(function(){return xs})),o.d(t,"cssStyleElementWOOAttributesLastElementBorder",(function(){return Cs})),o.d(t,"cssStyleElementPostsItemWidth",(function(){return Ps})),o.d(t,"cssStyleElementPostsItemSpacing",(function(){return Bs})),o.d(t,"cssStyleElementPostsPaginationSpacing",(function(){return ws})),o.d(t,"cssStyleElementPostsPaginationFontFamily",(function(){return Ts})),o.d(t,"cssStyleElementPostsPaginationFontSize",(function(){return zs})),o.d(t,"cssStyleElementPostsPaginationLineHeight",(function(){return Es})),o.d(t,"cssStyleElementPostsPaginationFontWeight",(function(){return ks})),o.d(t,"cssStyleElementPostsPaginationLetterSpacing",(function(){return Hs})),o.d(t,"cssStyleElementPostsPaginationColor",(function(){return Fs})),o.d(t,"cssStyleElementPostsPaginationBgColor",(function(){return _s})),o.d(t,"cssStyleElementPostsPaginationBorder",(function(){return Rs})),o.d(t,"cssStyleElementPostsPaginationActiveColor",(function(){return Ls})),o.d(t,"cssStyleElementPostsPaginationActiveBgColor",(function(){return Ms})),o.d(t,"cssStyleElementPostsPaginationActiveBorder",(function(){return Is})),o.d(t,"cssStyleElementPostsPaginationBorderRadius",(function(){return Ws})),o.d(t,"cssStyleElementPostsFilterDisplay",(function(){return Ns})),o.d(t,"cssStyleElementPostsFilterHorizontalAlign",(function(){return As})),o.d(t,"cssStyleElementPostsFilterSpacing",(function(){return Vs})),o.d(t,"cssStyleElementPostsFilterAfterSpacing",(function(){return Ds})),o.d(t,"cssStyleElementPostsFilterFontFamily",(function(){return $s})),o.d(t,"cssStyleElementPostsFilterFontSize",(function(){return Gs})),o.d(t,"cssStyleElementPostsFilterLineHeight",(function(){return Us})),o.d(t,"cssStyleElementPostsFilterFontWeight",(function(){return Ks})),o.d(t,"cssStyleElementPostsFilterLetterSpacing",(function(){return Ys})),o.d(t,"cssStyleElementPostsFilterColor",(function(){return qs})),o.d(t,"cssStyleElementPostsFilterBgColor",(function(){return Xs})),o.d(t,"cssStyleElementPostsFilterBorder",(function(){return Zs})),o.d(t,"cssStyleElementPostsFilterBorderRadius",(function(){return Js})),o.d(t,"cssStyleElementPostsFilterShadow",(function(){return Qs})),o.d(t,"cssStyleElementPostsFilterPaddingFourFields",(function(){return ec})),o.d(t,"cssStyleElementPostsFilterActiveColor",(function(){return tc})),o.d(t,"cssStyleElementPostsFilterActiveBgColor",(function(){return oc})),o.d(t,"cssStyleElementPostsFilterActiveBorder",(function(){return nc})),o.d(t,"cssStyleElementPostsFilterActiveShadow",(function(){return ac})),o.d(t,"cssStyleElementPostsHoverTransition",(function(){return rc})),o.d(t,"cssStyleElementAccordion3FontFamily",(function(){return Bc})),o.d(t,"cssStyleElementAccordion3FontSize",(function(){return wc})),o.d(t,"cssStyleElementAccordion3LineHeight",(function(){return Tc})),o.d(t,"cssStyleElementAccordion3FontWeight",(function(){return zc})),o.d(t,"cssStyleElementAccordion3LetterSpacing",(function(){return Ec})),o.d(t,"cssStyleElementAccordionFilterColor",(function(){return lc})),o.d(t,"cssStyleElementAccordionFilterBgColor",(function(){return pc})),o.d(t,"cssStyleElementAccordionFilterBorder",(function(){return bc})),o.d(t,"cssStyleElementAccordionFilterBorderRadius",(function(){return mc})),o.d(t,"cssStyleElementAccordionFilterShadow",(function(){return hc})),o.d(t,"cssStyleElementAccordionMarginTop",(function(){return gc})),o.d(t,"cssStyleElementAccordionSpacing",(function(){return vc})),o.d(t,"cssStyleElementAccordionFilterSpacing",(function(){return fc})),o.d(t,"cssStyleElementAccordionFilterAfterSpacing",(function(){return yc})),o.d(t,"cssStyleElementAccordionNavAlign",(function(){return Oc})),o.d(t,"cssStyleElementAccordionNavTextAlign",(function(){return Sc})),o.d(t,"cssStyleElementAccordionNavIconSpacing",(function(){return xc})),o.d(t,"cssStyleElementAccordionNavIconSize",(function(){return Cc})),o.d(t,"cssStyleElementAccordionFilterHorizontalAlign",(function(){return jc})),o.d(t,"cssStyleElementAccordionFilterPaddingFourFields",(function(){return Pc})),o.d(t,"cssStyleElementAccordionFilterActiveColor",(function(){return sc})),o.d(t,"cssStyleElementAccordionFilterActiveBgColor",(function(){return cc})),o.d(t,"cssStyleElementAccordionFilterActiveBorder",(function(){return dc})),o.d(t,"cssStyleElementAccordionFilterActiveShadow",(function(){return uc})),o.d(t,"cssStyleElementAccordionActiveColor",(function(){return kc})),o.d(t,"cssStyleElementAccordionActiveBgColor",(function(){return Hc})),o.d(t,"cssStyleElementAccordionActiveBorder",(function(){return Fc})),o.d(t,"cssStyleElementAccordionActiveShadow",(function(){return _c})),o.d(t,"cssStyleElementAccordionAnimDuration",(function(){return Rc})),o.d(t,"cssStyleElementAccordionPropertyHoverTransition",(function(){return Lc})),o.d(t,"cssStyleElementTabsBtnSpacing",(function(){return Mc})),o.d(t,"cssStyleElementTabsBtnIconSize",(function(){return Ic})),o.d(t,"cssStyleElementTabsBtnActiveBorderBottomColor",(function(){return Wc})),o.d(t,"cssStyleElementTabsBtnActiveBorderRightColor",(function(){return Nc})),o.d(t,"cssStyleElementTabsBtnActiveBorderLeftColor",(function(){return Ac})),o.d(t,"cssStyleElementTabsActiveBeforeAfterColor",(function(){return Vc})),o.d(t,"cssStyleElementTabsActiveBeforeHeight",(function(){return Dc})),o.d(t,"cssStyleElementTabsActiveBeforeWidth",(function(){return $c})),o.d(t,"cssStyleElementTabsBeforeAfterRightWidth",(function(){return Gc})),o.d(t,"cssStyleElementTabsBeforeAfterLeftWidth",(function(){return Uc})),o.d(t,"cssStyleElementTabsBorderMobileWidth",(function(){return Kc})),o.d(t,"cssStyleElementTabsEmptyContent",(function(){return Yc})),o.d(t,"cssStyleElementTabsBtnIconPosition",(function(){return qc})),o.d(t,"cssStyleElementTabsBtnIconJustifyContent",(function(){return Xc})),o.d(t,"cssStyleElementTabsBeforeAfterTop",(function(){return Zc})),o.d(t,"cssStyleElementTabsBeforeAfterBottom",(function(){return Jc})),o.d(t,"cssStyleElementTabsAfterSpacing",(function(){return Qc})),o.d(t,"cssStyleElementTabsSpacing",(function(){return td})),o.d(t,"cssStyleElementTabsAfterSpacingVertical",(function(){return ed})),o.d(t,"cssStyleElementTabsNavAlign",(function(){return od})),o.d(t,"cssStyleElementTabsNavBorderBottom",(function(){return ad})),o.d(t,"cssStyleElementTabsNavStyle3Before",(function(){return rd})),o.d(t,"cssStyleElementTabsPadding",(function(){return nd})),o.d(t,"cssStyleElementTabsActiveColor",(function(){return id})),o.d(t,"cssStyleElementTabsActiveBgColor",(function(){return ld})),o.d(t,"cssStyleElementTabsActiveBorder",(function(){return cd})),o.d(t,"cssStyleElementTabsActiveShadow",(function(){return sd})),o.d(t,"cssStyleElementCommentsNameFontFamily",(function(){return dd})),o.d(t,"cssStyleElementCommentsNameFontSize",(function(){return ud})),o.d(t,"cssStyleElementCommentsNameLineHeight",(function(){return pd})),o.d(t,"cssStyleElementCommentsNameFontWeight",(function(){return bd})),o.d(t,"cssStyleElementCommentsNameLetterSpacing",(function(){return md})),o.d(t,"cssStyleElementCommentsDateFontFamily",(function(){return Od})),o.d(t,"cssStyleElementCommentsDateFontSize",(function(){return Sd})),o.d(t,"cssStyleElementCommentsDateLineHeight",(function(){return xd})),o.d(t,"cssStyleElementCommentsDateFontWeight",(function(){return Cd})),o.d(t,"cssStyleElementCommentsDateLetterSpacing",(function(){return jd})),o.d(t,"cssStyleElementCommentsCommentFontFamily",(function(){return hd})),o.d(t,"cssStyleElementCommentsCommentFontSize",(function(){return gd})),o.d(t,"cssStyleElementCommentsCommentLineHeight",(function(){return vd})),o.d(t,"cssStyleElementCommentsCommentFontWeight",(function(){return fd})),o.d(t,"cssStyleElementCommentsCommentLetterSpacing",(function(){return yd})),o.d(t,"cssStyleElementCommentsReplyFontFamily",(function(){return Pd})),o.d(t,"cssStyleElementCommentsReplyFontSize",(function(){return Bd})),o.d(t,"cssStyleElementCommentsReplyLineHeight",(function(){return wd})),o.d(t,"cssStyleElementCommentsReplyFontWeight",(function(){return Td})),o.d(t,"cssStyleElementCommentsReplyLetterSpacing",(function(){return zd})),o.d(t,"cssStyleElementCommentsPostButtonFontFamily",(function(){return Ed})),o.d(t,"cssStyleElementCommentsPostButtonFontSize",(function(){return kd})),o.d(t,"cssStyleElementCommentsPostButtonLineHeight",(function(){return Hd})),o.d(t,"cssStyleElementCommentsPostButtonFontWeight",(function(){return Fd})),o.d(t,"cssStyleElementCommentsPostButtonLetterSpacing",(function(){return _d})),o.d(t,"cssStyleElementCommentsLogoSize",(function(){return Rd})),o.d(t,"cssStyleElementCommentsWidthContainer",(function(){return Ld})),o.d(t,"cssStyleElementCommentsPostButtonColor",(function(){return Md})),o.d(t,"cssStyleElementCommentsPostButtonBg",(function(){return Id})),o.d(t,"cssStyleElementCommentsColorLink",(function(){return Wd})),o.d(t,"cssStyleElementCommentsNameColor",(function(){return Nd})),o.d(t,"cssStyleElementCommentsCommentsColor",(function(){return Ad})),o.d(t,"cssStyleElementCommentsChildMargin",(function(){return Vd})),o.d(t,"cssStyleElementCommentsStarsColor",(function(){return Dd})),o.d(t,"cssStyleElementCommentsStarsBgColor",(function(){return $d})),o.d(t,"cssStyleElementCommentsStarsSize",(function(){return Gd})),o.d(t,"cssStyleElementSearchAutocompleteColor",(function(){return Ud})),o.d(t,"cssStyleElementSearchMinWidth",(function(){return Kd})),o.d(t,"cssStyleElementSearchMinHeight",(function(){return Yd})),o.d(t,"cssStyleElementSearchPropertyHoverTransition",(function(){return qd})),o.d(t,"cssStyleElementSearchLineHeight",(function(){return Xd})),o.d(t,"cssStyleElementWOOProductMetaType",(function(){return Zd})),o.d(t,"cssStyleElementWOOProductMetaCategoryFontFamily",(function(){return Jd})),o.d(t,"cssStyleElementWOOProductMetaCategoryFontSize",(function(){return Qd})),o.d(t,"cssStyleElementWOOProductMetaCategoryLineHeight",(function(){return eu})),o.d(t,"cssStyleElementWOOProductMetaCategoryFontWeight",(function(){return tu})),o.d(t,"cssStyleElementWOOProductMetaCategoryLetterSpacing",(function(){return ou})),o.d(t,"cssStyleElementWOOProductMetaValueFontFamily",(function(){return nu})),o.d(t,"cssStyleElementWOOProductMetaValueFontSize",(function(){return au})),o.d(t,"cssStyleElementWOOProductMetaValueLineHeight",(function(){return ru})),o.d(t,"cssStyleElementWOOProductMetaValueFontWeight",(function(){return iu})),o.d(t,"cssStyleElementWOOProductMetaValueLetterSpacing",(function(){return lu})),o.d(t,"cssStyleElementWOOProductMetaTopSpacing",(function(){return su})),o.d(t,"cssStyleElementWOOProductMetaRightSpacing",(function(){return cu})),o.d(t,"cssStyleElementWOOProductMetaRightSpacingInline",(function(){return du})),o.d(t,"cssStyleElementWOOProductMetaCategoryColor",(function(){return uu})),o.d(t,"cssStyleElementWOOProductMetaValueColor",(function(){return pu})),o.d(t,"cssStyleElementWOOProductMetaDividers",(function(){return bu})),o.d(t,"cssStyleElementWOORatingSize",(function(){return mu})),o.d(t,"cssStyleElementWOORatingTextColor",(function(){return hu})),o.d(t,"cssStyleElementWOORatingSpacing",(function(){return gu})),o.d(t,"cssStyleElementWOORatingBgStarColor",(function(){return vu})),o.d(t,"cssStyleElementWOOCartIconColor",(function(){return fu})),o.d(t,"cssStyleElementWOOCartSubtotalDisabled",(function(){return yu})),o.d(t,"cssStyleElementWOOCartPurchasesDisabled",(function(){return Ou})),o.d(t,"cssStyleElementWOOCartTransitionProperty",(function(){return Su})),o.d(t,"cssStyleElementWOOCartPurchasesColor",(function(){return xu})),o.d(t,"cssStyleElementWOOCartPurchasesFontFamily",(function(){return Cu})),o.d(t,"cssStyleElementWOOCartPurchasesFontSize",(function(){return ju})),o.d(t,"cssStyleElementWOOCartPurchasesLineHeight",(function(){return Pu})),o.d(t,"cssStyleElementWOOCartPurchasesFontWeight",(function(){return Bu})),o.d(t,"cssStyleElementWOOCartPurchasesLetterSpacing",(function(){return wu})),o.d(t,"cssStyleElementWOOCartTitleFontFamily",(function(){return Tu})),o.d(t,"cssStyleElementWOOCartTitleFontSize",(function(){return zu})),o.d(t,"cssStyleElementWOOCartTitleLineHeight",(function(){return Eu})),o.d(t,"cssStyleElementWOOCartTitleFontWeight",(function(){return ku})),o.d(t,"cssStyleElementWOOCartTitleLetterSpacing",(function(){return Hu})),o.d(t,"cssStyleElementWOOCartCostFontFamily",(function(){return Fu})),o.d(t,"cssStyleElementWOOCartCostFontSize",(function(){return _u})),o.d(t,"cssStyleElementWOOCartCostLineHeight",(function(){return Ru})),o.d(t,"cssStyleElementWOOCartCostFontWeight",(function(){return Lu})),o.d(t,"cssStyleElementWOOCartCostLetterSpacing",(function(){return Mu})),o.d(t,"cssStyleElementWOOCartSubtotalFontFamily",(function(){return Iu})),o.d(t,"cssStyleElementWOOCartSubtotalFontSize",(function(){return Wu})),o.d(t,"cssStyleElementWOOCartSubtotalLineHeight",(function(){return Nu})),o.d(t,"cssStyleElementWOOCartSubtotalFontWeight",(function(){return Au})),o.d(t,"cssStyleElementWOOCartSubtotalLetterSpacing",(function(){return Vu})),o.d(t,"cssStyleElementWOOCartButtonFontFamily",(function(){return Du})),o.d(t,"cssStyleElementWOOCartButtonFontSize",(function(){return $u})),o.d(t,"cssStyleElementWOOCartButtonLineHeight",(function(){return Gu})),o.d(t,"cssStyleElementWOOCartButtonFontWeight",(function(){return Uu})),o.d(t,"cssStyleElementWOOCartButtonLetterSpacing",(function(){return Ku})),o.d(t,"cssStyleElementWOOCartTitleColor",(function(){return Yu})),o.d(t,"cssStyleElementWOOCartCostColor",(function(){return qu})),o.d(t,"cssStyleElementWOOCartSubtotalColor",(function(){return Xu})),o.d(t,"cssStyleElementWOOCartButtonColor",(function(){return Zu})),o.d(t,"cssStyleElementWOOCartButtonBgColor",(function(){return Ju})),o.d(t,"cssStyleElementWOOCartButtonDirection",(function(){return Qu})),o.d(t,"cssStyleElementWOOCartButtonSpacing",(function(){return ep})),o.d(t,"cssStyleElementWOOCartButtonBorderRadius",(function(){return tp})),o.d(t,"cssStyleElementWOOCartSidebarHorizontalAlign",(function(){return op})),o.d(t,"cssStyleElementWOOCartSidebarVerticalAlign",(function(){return np})),o.d(t,"cssStyleElementWOOCartSidebarWidth",(function(){return ap})),o.d(t,"cssStyleElementWOOCartSidebarHeight",(function(){return rp})),o.d(t,"cssStyleElementWOOCartBubbleColor",(function(){return ip})),o.d(t,"cssStyleElementWOOCartBubbleBg",(function(){return lp})),o.d(t,"cssStyleWrapperCustomHeight",(function(){return cp})),o.d(t,"cssStyleWrapperContainerFlex",(function(){return pp})),o.d(t,"cssStyleWrapperFixedFlex",(function(){return dp})),o.d(t,"cssStyleWrapperBorderFlex",(function(){return up})),o.d(t,"cssStyleWrapperContainerSize",(function(){return bp})),o.d(t,"cssStyleElementMenuAlign",(function(){return mp})),o.d(t,"cssStyleElementMenuMode",(function(){return Op})),o.d(t,"cssStyleElementMenuSize",(function(){return Sp})),o.d(t,"cssStyleElementMenuDropdown",(function(){return yb})),o.d(t,"cssStyleElementMenuDropdownOpened",(function(){return Sb})),o.d(t,"cssStyleElementMenuInnerDropdown",(function(){return Ob})),o.d(t,"cssStyleElementMenuDropdownInnerOpened",(function(){return xb})),o.d(t,"cssStyleElementMenuDropdownArrow",(function(){return Cb})),o.d(t,"cssStyleElementMenuShow",(function(){return yp})),o.d(t,"cssStyleElementMenuShowIcon",(function(){return fp})),o.d(t,"cssStyleElementMenuIconPosition",(function(){return hp})),o.d(t,"cssStyleElementMenuIconSpacing",(function(){return gp})),o.d(t,"cssStyleElementMenuIconSize",(function(){return vp})),o.d(t,"cssStyleElementMenuBgColor",(function(){return xp})),o.d(t,"cssStyleElementMenuLinkBgColor",(function(){return Cp})),o.d(t,"cssStyleElementMenuPadding",(function(){return Pp})),o.d(t,"cssStyleElementMenuActiveColor",(function(){return Bp})),o.d(t,"cssStyleElementMenuActiveBgColor",(function(){return Tp})),o.d(t,"cssStyleElementMenuActiveLinkBgColor",(function(){return wp})),o.d(t,"cssStyleElementMenuActiveBorder",(function(){return zp})),o.d(t,"cssStyleElementMenuCurrentColor",(function(){return Ep})),o.d(t,"cssStyleElementMenuCurrentLinkBgColor",(function(){return Hp})),o.d(t,"cssStyleElementMenuCurrentBgColor",(function(){return kp})),o.d(t,"cssStyleElementMenuCurrentBorder",(function(){return Fp})),o.d(t,"cssStyleElementMenuBorder",(function(){return jp})),o.d(t,"cssStyleElementMMenuFontFamily",(function(){return Rp})),o.d(t,"cssStyleElementMMenuFontSize",(function(){return Lp})),o.d(t,"cssStyleElementMMenuLineHeight",(function(){return Mp})),o.d(t,"cssStyleElementMMenuFontWeight",(function(){return Ip})),o.d(t,"cssStyleElementMMenuLetterSpacing",(function(){return Wp})),o.d(t,"cssStyleElementMMenuColor",(function(){return Np})),o.d(t,"cssStyleElementMMenuHoverColor",(function(){return Ap})),o.d(t,"cssStyleElementMMenuActiveColor",(function(){return Vp})),o.d(t,"cssStyleElementMMenuBorderColor",(function(){return Dp})),o.d(t,"cssStyleElementMMenuBackgroundColor",(function(){return $p})),o.d(t,"cssStyleElementMMenuItemHorizontalAlign",(function(){return Gp})),o.d(t,"cssStyleElementMMenuIconColor",(function(){return Up})),o.d(t,"cssStyleElementMMenuSize",(function(){return _p})),o.d(t,"cssStyleElementMMenuIconPosition",(function(){return qp})),o.d(t,"cssStyleElementMMenuIconSpacing",(function(){return Kp})),o.d(t,"cssStyleElementMMenuIconSize",(function(){return Yp})),o.d(t,"cssStyleElementMMenuBtnNext",(function(){return Xp})),o.d(t,"cssStyleElementMMenuListViewMargin",(function(){return Zp})),o.d(t,"cssStyleElementMMenuItemPadding",(function(){return Jp})),o.d(t,"cssStyleElementMMenuItemPaddingTopZero",(function(){return Qp})),o.d(t,"cssStyleElementMMenuItemPaddingBottomZero",(function(){return eb})),o.d(t,"cssStyleElementMMenuPadding",(function(){return tb})),o.d(t,"cssStyleElementMenuSubMenuFontFamily",(function(){return ob})),o.d(t,"cssStyleElementMenuSubMenuFontSize",(function(){return nb})),o.d(t,"cssStyleElementMenuSubMenuLineHeight",(function(){return ab})),o.d(t,"cssStyleElementMenuSubMenuFontWeight",(function(){return rb})),o.d(t,"cssStyleElementMenuSubMenuLetterSpacing",(function(){return ib})),o.d(t,"cssStyleElementMenuSubMenuColor",(function(){return lb})),o.d(t,"cssStyleElementMenuSubMenuHoverColor",(function(){return sb})),o.d(t,"cssStyleElementMenuSubMenuIconPosition",(function(){return cb})),o.d(t,"cssStyleElementMenuSubMenuIconSpacing",(function(){return db})),o.d(t,"cssStyleElementMenuSubMenuIconSize",(function(){return ub})),o.d(t,"cssStyleElementMenuSubMenuBgColor",(function(){return pb})),o.d(t,"cssStyleElementMenuSubMenuHoverBgColor",(function(){return bb})),o.d(t,"cssStyleElementMenuSubMenuBorderColor",(function(){return mb})),o.d(t,"cssStyleElementMenuSubMenuBorderBottom",(function(){return hb})),o.d(t,"cssStyleElementMenuSubMenuCurrentColor",(function(){return gb})),o.d(t,"cssStyleElementMenuSubMenuCurrentBgColor",(function(){return vb})),o.d(t,"cssStyleElementMenuSubMenuCurrentBoxShadow",(function(){return fb})),o.d(t,"cssStyleMenuDropdownPosition",(function(){return jb})),o.d(t,"cssStyleMenuDropdownPositionLeft",(function(){return Pb})),o.d(t,"cssStyleMenuDropdownPositionRight",(function(){return Bb})),o.d(t,"cssStyleMenuFirstDropdownPosition",(function(){return wb})),o.d(t,"cssStyleMenuFirstDropdownPositionLeft",(function(){return Tb})),o.d(t,"cssStyleMenuFirstDropdownPositionRight",(function(){return zb})),o.d(t,"cssStyleElementMegaMenuWidth",(function(){return Eb})),o.d(t,"cssStyleElementMegaMenuOffsetTop",(function(){return kb})),o.d(t,"cssStyleElementMegaMenuOpened",(function(){return Fb})),o.d(t,"cssStyleElementMegaMenuHeight",(function(){return Hb})),o.d(t,"cssStyleElementTableWidth",(function(){return _b})),o.d(t,"cssStyleElementTableIconSize",(function(){return Rb})),o.d(t,"cssStyleElementTableSpacing",(function(){return Lb})),o.d(t,"cssStyleElementTableBtnIconPosition",(function(){return Mb})),o.d(t,"cssStyleElementTableCustomFlexHorizontalAlign",(function(){return Ib})),o.d(t,"cssStyleElementTableCustomTextHorizontalAlign",(function(){return Wb})),o.d(t,"cssStyleElementTableAsideWidth",(function(){return Nb})),o.d(t,"cssStyleElementTableEvenBgColor",(function(){return Ab})),o.d(t,"cssStyleElementTableEvenColor",(function(){return Vb})),o.d(t,"cssStyleTablePadding",(function(){return Db})),o.d(t,"cssStyleElementMenuSimpleItemPadding",(function(){return $b})),o.d(t,"cssStyleElementMenuSimpleColorBars",(function(){return Gb})),o.d(t,"cssStyleElementMenuSimpleWidth",(function(){return Ub})),o.d(t,"cssStyleElementMenuSimpleActiveColor",(function(){return Kb})),o.d(t,"cssStyleElementImageMaxWidthPreview",(function(){return Zb})),o.d(t,"cssStyleElementImageHeightPreview",(function(){return Jb})),o.d(t,"cssStyleElementImageSizePreview",(function(){return lm})),o.d(t,"cssStyleElementImageMaxWidthEditor",(function(){return Qb})),o.d(t,"cssStyleElementImageHeightEditor",(function(){return em})),o.d(t,"cssStyleElementImageWidthWrapper",(function(){return tm})),o.d(t,"cssStyleElementImageHeightWrapper",(function(){return om})),o.d(t,"cssStyleElementImagePosition",(function(){return nm})),o.d(t,"cssStyleElementImageMarginLeft",(function(){return am})),o.d(t,"cssStyleElementImageMarginTop",(function(){return rm})),o.d(t,"cssStyleElementImagePictureSizePreview",(function(){return im})),o.d(t,"cssStyleElementImageTransitionProperty",(function(){return sm})),o.d(t,"cssStyleElementImageFilter",(function(){return cm})),o.d(t,"cssStyleAnimation",(function(){return dm})),o.d(t,"cssStyleAnimationDuration",(function(){return um})),o.d(t,"cssStyleAnimationDelay",(function(){return pm})),o.d(t,"cssStyleRotate",(function(){return hm})),o.d(t,"cssStyleElementWOOAddToCartSize",(function(){return gm})),o.d(t,"cssStyleElementWOOAddToCartSpacing",(function(){return fm})),o.d(t,"cssStyleElementWOOAddToCartInputSize",(function(){return ym})),o.d(t,"cssStyleElementWOOAddToCartInputPosition",(function(){return Om})),o.d(t,"cssStyleElementWOOAddToCartInputFontFamily",(function(){return xm})),o.d(t,"cssStyleElementWOOAddToCartInputFontSize",(function(){return Cm})),o.d(t,"cssStyleElementWOOAddToCartInputLineHeight",(function(){return jm})),o.d(t,"cssStyleElementWOOAddToCartInputFontWeight",(function(){return Pm})),o.d(t,"cssStyleElementWOOAddToCartInputLetterSpacing",(function(){return Bm})),o.d(t,"cssStyleElementWOOAddToCartInputAlign",(function(){return Sm})),o.d(t,"cssStyleElementWOOAddToCartInputColor",(function(){return wm})),o.d(t,"cssStyleElementWOOAddToCartInputBg",(function(){return qm})),o.d(t,"cssStyleElementWOOAddToCartInputBorder",(function(){return Zm})),o.d(t,"cssStyleElementWOOAddToCartInputRadius",(function(){return vm})),o.d(t,"cssStyleElementWOOAddToCartInputBoxShadow",(function(){return Jm})),o.d(t,"cssStyleElementWOOAddToCartButtonColor",(function(){return Tm})),o.d(t,"cssStyleElementWOOAddToCartLabelFontFamily",(function(){return zm})),o.d(t,"cssStyleElementWOOAddToCartLabelFontSize",(function(){return Em})),o.d(t,"cssStyleElementWOOAddToCartLabelLineHeight",(function(){return km})),o.d(t,"cssStyleElementWOOAddToCartLabelFontWeight",(function(){return Hm})),o.d(t,"cssStyleElementWOOAddToCartLabelLetterSpacing",(function(){return Fm})),o.d(t,"cssStyleElementWOOAddToCartValueFontFamily",(function(){return _m})),o.d(t,"cssStyleElementWOOAddToCartValueFontSize",(function(){return Rm})),o.d(t,"cssStyleElementWOOAddToCartValueLineHeight",(function(){return Lm})),o.d(t,"cssStyleElementWOOAddToCartValueFontWeight",(function(){return Mm})),o.d(t,"cssStyleElementWOOAddToCartValueLetterSpacing",(function(){return Im})),o.d(t,"cssStyleElementWOOAddToCartLabelColor",(function(){return Wm})),o.d(t,"cssStyleElementWOOAddToCartValueColor",(function(){return Nm}));o.d(t,"cssStyleElementWOOAddToCartClearFontFamily",(function(){return Am})),o.d(t,"cssStyleElementWOOAddToCartClearFontSize",(function(){return Vm})),o.d(t,"cssStyleElementWOOAddToCartClearLineHeight",(function(){return Dm})),o.d(t,"cssStyleElementWOOAddToCartClearFontWeight",(function(){return $m})),o.d(t,"cssStyleElementWOOAddToCartClearLetterSpacing",(function(){return Gm})),o.d(t,"cssStyleElementWOOAddToCartClearColor",(function(){return Um})),o.d(t,"cssStyleElementWOOAddToCartTableMargin",(function(){return Km})),o.d(t,"cssStyleElementWOOAddToCartTableBorder",(function(){return Ym})),o.d(t,"cssStyleElementWOOAddToCartTableBg",(function(){return Xm})),o.d(t,"cssStyleElementWOOAddToCartTableBoxShadow",(function(){return Qm})),o.d(t,"cssStyleElementWOOAddToCartBorder",(function(){return eh})),o.d(t,"cssStyleElementWOOAddToCartBorderRadius",(function(){return th})),o.d(t,"cssStyleElementWOOGalleryBorderRadiusThumbnail",(function(){return nh})),o.d(t,"cssStyleElementWOOGalleryBorderThumbnail",(function(){return oh})),o.d(t,"cssStyleElementWOOGalleryBoxShadowThumbnail",(function(){return ah})),o.d(t,"cssStyleElementWOOGallerySpacing",(function(){return rh})),o.d(t,"cssStyleElementWOOGalleryParentSize",(function(){return ih})),o.d(t,"cssStyleElementWOOGalleryBetweenThumbnail",(function(){return lh})),o.d(t,"cssStyleElementWOOGalleryThumbnailSize",(function(){return sh})),o.d(t,"cssStyleElementWOOGalleryChildStyle",(function(){return ch})),o.d(t,"cssStyleElementWOOGallerySpacingStyleLeftRigth",(function(){return dh})),o.d(t,"cssStyleElementWOOGalleryZoomReposition",(function(){return uh})),o.d(t,"cssStyleElementTitleTextShadow",(function(){return bh}));var n={};o.r(n),o.d(n,"renderStyles",(function(){return b})),o.d(n,"parseOutputCss",(function(){return h})),o.d(n,"css",(function(){return v})),o.d(n,"css1",(function(){return f})),o.d(n,"clearCache",(function(){return y})),o.d(n,"tmpCSSFromCache",(function(){return O})),o.d(n,"replacePlaceholders",(function(){return S})),o.d(n,"cssStyleSizeWidthPercent",(function(){return H})),o.d(n,"cssStyleSizeWidthPx",(function(){return F})),o.d(n,"cssStyleSizeMaxWidthPercent",(function(){return R})),o.d(n,"cssStyleSizeWidthStoryOnly",(function(){return _})),o.d(n,"cssStyleSizeHeightPx",(function(){return L})),o.d(n,"cssStyleSizeMinHeightPx",(function(){return M})),o.d(n,"cssStyleSizeMaxWidthSize",(function(){return I})),o.d(n,"cssStyleSizeSizePercent",(function(){return W})),o.d(n,"cssStyleSizeMaxWidthContainer",(function(){return V})),o.d(n,"cssStyleSizeTextSpacing",(function(){return $})),o.d(n,"cssStyleSizeSpacing",(function(){return D})),o.d(n,"cssStyleSizeHeightPxOnly",(function(){return G})),o.d(n,"cssStyleSizeHeightPercentOnly",(function(){return U})),o.d(n,"cssStyleSizeSize",(function(){return N})),o.d(n,"cssStyleSizeWidth",(function(){return A})),o.d(n,"cssStyleElementLineBorder",(function(){return K})),o.d(n,"cssStyleTypographyElementCountdownLabelFontSize",(function(){return ae})),o.d(n,"cssStyleNumberTypography2FontFamily",(function(){return le})),o.d(n,"cssStyleNumberTypography2FontSize",(function(){return se})),o.d(n,"cssStyleNumberTypography2LetterSpacing",(function(){return ue})),o.d(n,"cssStyleNumberTypography2FontWeight",(function(){return de})),o.d(n,"cssStyleNumberTypography2LineHeight",(function(){return ce})),o.d(n,"cssStyleTitleTypography2FontFamily",(function(){return pe})),o.d(n,"cssStyleTitleTypography2FontSize",(function(){return be})),o.d(n,"cssStyleTitleTypography2LetterSpacing",(function(){return ge})),o.d(n,"cssStyleTitleTypography2FontWeight",(function(){return he})),o.d(n,"cssStyleTitleTypography2LineHeight",(function(){return me})),o.d(n,"cssStyleMessageTypography2FontFamily",(function(){return ve})),o.d(n,"cssStyleMessageTypography2FontSize",(function(){return fe})),o.d(n,"cssStyleMessageTypography2LetterSpacing",(function(){return Se})),o.d(n,"cssStyleMessageTypography2FontWeight",(function(){return Oe})),o.d(n,"cssStyleMessageTypography2LineHeight",(function(){return ye})),o.d(n,"cssStyleElementCountDown2NumberColor",(function(){return xe})),o.d(n,"cssStyleElementCountDown2TitleColor",(function(){return Ce})),o.d(n,"cssStyleElementCountDown2MessageColor",(function(){return je})),o.d(n,"cssStyleElementCountDown2SpacingLeft",(function(){return re})),o.d(n,"cssStyleElementCountDown2SpacingRight",(function(){return ie})),o.d(n,"cssStyleElementCountDown2HoverTransitionProperty",(function(){return Pe})),o.d(n,"cssStyleElementCounterChartEnd",(function(){return Be})),o.d(n,"cssStyleElementCounterChartWidth",(function(){return we})),o.d(n,"cssStyleElementCounterFillColor",(function(){return Te})),o.d(n,"cssStyleElementCounterStrokeColor",(function(){return ze})),o.d(n,"cssStyleElementCounterTransitionHoverProperty",(function(){return Ee})),o.d(n,"cssStyleElementIconBoxFlexDirection",(function(){return ke})),o.d(n,"cssStyleElementIconBoxMarginRight",(function(){return He})),o.d(n,"cssStyleElementIconBoxMarginLeft",(function(){return Fe})),o.d(n,"cssStyleElementProtectedPageAutocompleteColor",(function(){return _e})),o.d(n,"cssStyleElementProtectedPagePropertyHoverTransition",(function(){return Re})),o.d(n,"cssStyleElementProtectedPageInputWidth",(function(){return Le})),o.d(n,"cssStyleElementProtectedPageInputSpacing",(function(){return Me})),o.d(n,"cssStyleElementProtectedPageInputHeight",(function(){return Ie})),o.d(n,"cssStyleBorder",(function(){return We})),o.d(n,"cssStyleBorderTransparentColor",(function(){return Ne})),o.d(n,"cssStyleElementImageGallery3FontFamily",(function(){return tt})),o.d(n,"cssStyleElementImageGallery3FontSize",(function(){return ot})),o.d(n,"cssStyleElementImageGallery3LineHeight",(function(){return nt})),o.d(n,"cssStyleElementImageGallery3FontWeight",(function(){return at})),o.d(n,"cssStyleElementImageGallery3LetterSpacing",(function(){return rt})),o.d(n,"cssStyleElementImageGalleryWidth",(function(){return Ve})),o.d(n,"cssStyleElementImageGalleryMargin",(function(){return De})),o.d(n,"cssStyleElementImageGalleryItemWidth",(function(){return $e})),o.d(n,"cssStyleElementImageGalleryItemPadding",(function(){return Ge})),o.d(n,"cssStyleElementImageGalleryFilterSpacing",(function(){return Ue})),o.d(n,"cssStyleElementImageGalleryFilterAfterSpacing",(function(){return Ke})),o.d(n,"cssStyleElementImageGalleryFilterHorizontalAlign",(function(){return Ye})),o.d(n,"cssStyleElementImageGalleryPaddingFourFields",(function(){return qe})),o.d(n,"cssStyleElementImageGalleryBorderRadius",(function(){return et})),o.d(n,"cssStyleElementImageGalleryFilterColor",(function(){return Xe})),o.d(n,"cssStyleElementImageGalleryFilterBgColor",(function(){return Ze})),o.d(n,"cssStyleElementImageGalleryFilterBoxShadow",(function(){return Je})),o.d(n,"cssStyleElementImageGalleryFilterBorder",(function(){return Qe})),o.d(n,"cssStyleElementImageGalleryFilterActiveColor",(function(){return it})),o.d(n,"cssStyleElementImageGalleryFilterActiveBgColor",(function(){return lt})),o.d(n,"cssStyleElementImageGalleryFilterActiveBorder",(function(){return st})),o.d(n,"cssStyleElementImageGalleryFilterActiveShadow",(function(){return ct})),o.d(n,"cssStyleBorderRadius",(function(){return Ae})),o.d(n,"cssStyleBgColor",(function(){return dt})),o.d(n,"cssStyleBgColorHex",(function(){return ut})),o.d(n,"cssStyleBg2Color",(function(){return pt})),o.d(n,"cssStyleBgGradient",(function(){return bt})),o.d(n,"cssStyleBgImage",(function(){return mt})),o.d(n,"cssStyleBgImageHover",(function(){return ht})),o.d(n,"cssStyleBgMediaImage",(function(){return gt})),o.d(n,"cssStyleBgImagePosition",(function(){return vt})),o.d(n,"cssStyleBgImageAttachment",(function(){return ft})),o.d(n,"cssStyleBgMediaMap",(function(){return yt})),o.d(n,"cssStyleBgMediaVideo",(function(){return Ot})),o.d(n,"cssStyleColor",(function(){return St})),o.d(n,"cssStyleLabelColor",(function(){return xt})),o.d(n,"cssStyleBoxShadow",(function(){return jt})),o.d(n,"cssStyleBoxShadowSuffixForGlamour",(function(){return Ct})),o.d(n,"cssStyleBoxShadowSection",(function(){return Pt})),o.d(n,"cssStyleTextShadow",(function(){return Bt})),o.d(n,"cssStyleShapeTopType",(function(){return wt})),o.d(n,"cssStyleShapeTopHeight",(function(){return Tt})),o.d(n,"cssStyleShapeTopFlip",(function(){return zt})),o.d(n,"cssStyleShapeTopIndex",(function(){return Et})),o.d(n,"cssStyleShapeBottomType",(function(){return kt})),o.d(n,"cssStyleShapeBottomHeight",(function(){return Ht})),o.d(n,"cssStyleShapeBottomFlip",(function(){return Ft})),o.d(n,"cssStyleShapeBottomIndex",(function(){return _t})),o.d(n,"cssStyleHoverTransition",(function(){return Rt})),o.d(n,"cssStylePropertyHoverTransition",(function(){return Lt})),o.d(n,"cssStyleTypographyFontFamily",(function(){return Mt})),o.d(n,"cssStyleTypographyFontSize",(function(){return It})),o.d(n,"cssStyleTypographyLineHeight",(function(){return Wt})),o.d(n,"cssStyleTypographyFontWeight",(function(){return Nt})),o.d(n,"cssStyleTypographyLetterSpacing",(function(){return At})),o.d(n,"cssStyleTypography2FontFamily",(function(){return Y})),o.d(n,"cssStyleTypography2FontSize",(function(){return q})),o.d(n,"cssStyleTypography2LineHeight",(function(){return X})),o.d(n,"cssStyleTypography2FontWeight",(function(){return Z})),o.d(n,"cssStyleTypography2LetterSpacing",(function(){return J})),o.d(n,"cssStyleTypography3FontFamily",(function(){return Q})),o.d(n,"cssStyleTypography3FontSize",(function(){return ee})),o.d(n,"cssStyleTypography3LineHeight",(function(){return te})),o.d(n,"cssStyleTypography3FontWeight",(function(){return oe})),o.d(n,"cssStyleTypography3LetterSpacing",(function(){return ne})),o.d(n,"cssStyleElementProgressBarPadding",(function(){return Vt})),o.d(n,"cssStyleSizeProgressBarMaxWidthPercent",(function(){return Dt})),o.d(n,"cssStyleElementProgressBarPropertyHoverTransition",(function(){return $t})),o.d(n,"cssStyleElementRichTextMartinTop",(function(){return Zt})),o.d(n,"cssStyleElementRichTextMartinBottom",(function(){return Jt})),o.d(n,"cssStyleElementRichTextGradient",(function(){return Qt})),o.d(n,"cssStyleElementRichTextFontSize",(function(){return eo})),o.d(n,"cssStyleElementRichTextBgImage",(function(){return to})),o.d(n,"cssStyleElementRichTextFontFamily",(function(){return oo})),o.d(n,"cssStyleElementRichTextColor",(function(){return no})),o.d(n,"cssStyleElementButtonBorderRadius",(function(){return ao})),o.d(n,"cssStyleElementButtonIconPosition",(function(){return ro})),o.d(n,"cssStyleElementButtonIconFontSize",(function(){return io})),o.d(n,"cssStyleElementButtonIconMargin",(function(){return lo})),o.d(n,"cssStyleElementIconStrokeWidth",(function(){return so})),o.d(n,"cssStyleElementButtonPropertyHoverTransition",(function(){return co})),o.d(n,"cssStyleElementButtonPropertyContentAlign",(function(){return uo})),o.d(n,"cssStyleElementFacebookButtonPropertyHoverTransition",(function(){return po})),o.d(n,"cssStyleElementFacebookCommentsPropertyHoverTransition",(function(){return bo})),o.d(n,"cssStyleElementFacebookEmbedPropertyHoverTransition",(function(){return mo})),o.d(n,"cssStyleElementFacebookGroupPropertyHoverTransition",(function(){return ho})),o.d(n,"cssStyleElementFacebookPagePropertyHoverTransition",(function(){return go})),o.d(n,"cssStyleElementMapPropertyHoverTransition",(function(){return vo})),o.d(n,"cssStyleElementMapPropertyPositionFixed",(function(){return fo})),o.d(n,"cssStyleElementSoundCloudPropertyHoverTransition",(function(){return yo})),o.d(n,"cssStyleContainerPopup2ContainerWidth",(function(){return Oo})),o.d(n,"cssStyleContainerPopup2CloseState",(function(){return So})),o.d(n,"cssStyleContainerPopup2ClosePosition",(function(){return wo})),o.d(n,"cssStyleContainerPopup2CloseFontSize",(function(){return Co})),o.d(n,"cssStyleContainerPopup2CloseBgSize",(function(){return jo})),o.d(n,"cssStyleContainerPopup2CloseBorderRadius",(function(){return Po})),o.d(n,"cssStyleContainerPopup2CloseColor",(function(){return xo})),o.d(n,"cssStyleContainerPopup2CloseBgColor",(function(){return Bo})),o.d(n,"cssStyleContainerPopup2RowFlexVerticalAlign",(function(){return To})),o.d(n,"cssStyleContainerPopup2CustomHeight",(function(){return zo})),o.d(n,"cssStyleContainerPopup2CustomHeightOverflow",(function(){return Eo})),o.d(n,"cssStyleContainerPopup2Custom2Height100",(function(){return ko})),o.d(n,"cssStyleContainerPopup2Custom2MaxHeight100",(function(){return Ho})),o.d(n,"cssStyleZIndex",(function(){return Fo})),o.d(n,"cssStyleZIndexStory",(function(){return _o})),o.d(n,"cssStyleFlexVerticalAlign",(function(){return Ro})),o.d(n,"cssStyleFlexColumnVerticalAlign",(function(){return Wo})),o.d(n,"cssStyleFlexHorizontalAlign",(function(){return Lo})),o.d(n,"cssStyleContentAlign",(function(){return Mo})),o.d(n,"cssStyleMarginAlign",(function(){return Io})),o.d(n,"cssStyleExcerptAlign",(function(){return No})),o.d(n,"cssStyleFlexColumn",(function(){return Ao})),o.d(n,"cssStylePadding",(function(){return Ko})),o.d(n,"cssStylePaddingFourFields",(function(){return Vo})),o.d(n,"cssStylePaddingPreview",(function(){return Do})),o.d(n,"cssStylePaddingTopForEditorResizer",(function(){return $o})),o.d(n,"cssStylePaddingBottomForEditorResizer",(function(){return Go})),o.d(n,"cssStylePaddingRightLeftForEditor",(function(){return Uo})),o.d(n,"cssStyleItemPadding",(function(){return Yo})),o.d(n,"cssStyleMargin",(function(){return qo})),o.d(n,"cssStyleItemMargin",(function(){return Xo})),o.d(n,"cssStyleDisplayFlex",(function(){return Zo})),o.d(n,"cssStyleDisplayInlineFlex",(function(){return Jo})),o.d(n,"cssStyleDisplayBlock",(function(){return Qo})),o.d(n,"cssStyleVisible",(function(){return en})),o.d(n,"cssStyleVisibleEditorDisplayNoneOrFlex",(function(){return tn})),o.d(n,"cssStyleVisibleEditorDisplayNoneOrBlock",(function(){return nn})),o.d(n,"cssStyleVisibleEditorDisplayNoneOrInlineFlex",(function(){return on})),o.d(n,"cssStyleVisibleMode",(function(){return an})),o.d(n,"cssStyleShowMembershipBlock",(function(){return ln})),o.d(n,"cssStyleShowMembershipFlex",(function(){return sn})),o.d(n,"cssStyleFilter",(function(){return dn})),o.d(n,"cssStyleFilterSuffixForGlamour",(function(){return cn})),o.d(n,"cssStyleElementVideoPaddingRatio",(function(){return un})),o.d(n,"cssStyleElementVideoFilter",(function(){return pn})),o.d(n,"cssStyleElementVideoIframeFix",(function(){return mn})),o.d(n,"cssStyleElementVideoBgSize",(function(){return bn})),o.d(n,"cssStyleElementVideoIconFontSize",(function(){return hn})),o.d(n,"cssStyleElementVideoIconWidth",(function(){return gn})),o.d(n,"cssStyleElementVideoIconHeight",(function(){return vn})),o.d(n,"cssStyleElementVideoControlsIconFontSize",(function(){return jn})),o.d(n,"cssStyleElementVideoBgColorRatio",(function(){return fn})),o.d(n,"cssStyleElementVideoCoverSrc",(function(){return yn})),o.d(n,"cssStyleElementVideoCoverPosition",(function(){return On})),o.d(n,"cssStyleElementVideoPropertyHoverTransition",(function(){return Sn})),o.d(n,"cssStyleVideoControlsBgColor",(function(){return xn})),o.d(n,"cssStyleVideoIconControls",(function(){return Cn})),o.d(n,"cssStyleElementVideoPlaylistSubTitleVideoTypography2FontFamily",(function(){return Pn})),o.d(n,"cssStyleElementVideoPlaylistSubTitleVideoTypography2FontSize",(function(){return Bn})),o.d(n,"cssStyleElementVideoPlaylistSubTitleVideoTypography2LineHeight",(function(){return wn})),o.d(n,"cssStyleElementVideoPlaylistSubTitleVideoTypography2FontWeight",(function(){return Tn})),o.d(n,"cssStyleElementVideoPlaylistSubTitleVideoTypography2LetterSpacing",(function(){return zn})),o.d(n,"cssStyleElementVideoPlaylistBorderItem",(function(){return Hn})),o.d(n,"cssStyleElementVideoPlaylistGridItemWidth",(function(){return _n})),o.d(n,"cssStyleSizeWidthPixel",(function(){return En})),o.d(n,"cssStyleElementVideoPlaylistImageSize",(function(){return kn})),o.d(n,"cssStyleSizeWidthVideoBlock",(function(){return Fn})),o.d(n,"cssStyleBgIconCoverColor",(function(){return Mn})),o.d(n,"cssStyleCoverIconColor",(function(){return Rn})),o.d(n,"cssStyleCoverSubTitleColor",(function(){return Ln})),o.d(n,"cssStyleElementVideoPlaylistItemActiveBg",(function(){return In})),o.d(n,"cssStyleElementVideoPlaylistBorderItemActive",(function(){return Wn})),o.d(n,"cssStyleElementVideoPlaylistItemActiveColor",(function(){return Nn})),o.d(n,"cssStyleElementVideoPlaylistItemSubtitleActiveColor",(function(){return An})),o.d(n,"cssStyleElementMediaIconFontSize",(function(){return Vn})),o.d(n,"cssStyleElementMediaPadding",(function(){return Dn})),o.d(n,"cssStyleRowMinHeight",(function(){return $n})),o.d(n,"cssStyleRowReverseColumn",(function(){return Gn})),o.d(n,"cssStylePosition",(function(){return Jn})),o.d(n,"cssStylePositionMode",(function(){return Qn})),o.d(n,"cssStyleCustomPosition",(function(){return ea})),o.d(n,"cssStyleCustomWidth",(function(){return ta})),o.d(n,"cssStyleOffset",(function(){return oa})),o.d(n,"cssStyleIconSpacing",(function(){return na})),o.d(n,"cssStyleIconSize",(function(){return aa})),o.d(n,"cssStyleSectionMaxWidth",(function(){return la})),o.d(n,"cssStyleSectionSliderHeight",(function(){return sa})),o.d(n,"cssStyleSectionColorDots",(function(){return ca})),o.d(n,"cssStyleSectionColorArrows",(function(){return da})),o.d(n,"cssStyleSectionPropertyHoverTransition",(function(){return ua})),o.d(n,"cssStyleSectionToolbarOffset",(function(){return pa})),o.d(n,"cssStyleSectionHeightStyle",(function(){return ba})),o.d(n,"cssStyleSectionPaddingsForEditorResize",(function(){return ma})),o.d(n,"cssStyleSectionPopupContainerWrap",(function(){return ha})),o.d(n,"cssStyleElementBreadcrumbsArrowSize",(function(){return ga})),o.d(n,"cssStyleElementBreadcrumbsColorActive",(function(){return va})),o.d(n,"cssStyleElementBreadcrumbsColorArrows",(function(){return fa})),o.d(n,"cssStyleElementForm2FlexBasisPercent",(function(){return ya})),o.d(n,"cssStyleElementForm2SubmitWidth",(function(){return Oa})),o.d(n,"cssStyleElementForm2InputHeight",(function(){return Sa})),o.d(n,"cssStyleElementForm2FieldsLineHeight",(function(){return Pa})),o.d(n,"cssStyleElementForm2FieldsLabelFontFamily",(function(){return Ba})),o.d(n,"cssStyleElementForm2FieldsLabelFontSize",(function(){return wa})),o.d(n,"cssStyleElementForm2FieldsLabelFontWeight",(function(){return za})),o.d(n,"cssStyleElementForm2FieldsLabelLetterSpacing",(function(){return Ea})),o.d(n,"cssStyleElementForm2FieldsLabelAlign",(function(){return xa})),o.d(n,"cssStyleElementForm2FieldsLabelLineHeight",(function(){return Ta})),o.d(n,"cssStyleElementForm2FieldsLabelPadding",(function(){return ka})),o.d(n,"cssStyleElementForm2Margin",(function(){return Ca})),o.d(n,"cssStyleElementForm2Padding",(function(){return ja})),o.d(n,"cssStyleElementForm2FieldsBorderRequired",(function(){return Na})),o.d(n,"cssStyleElementForm2FieldsCheckboxColor",(function(){return Ha})),o.d(n,"cssStyleElementForm2FieldsCheckboxFontFamily",(function(){return Fa})),o.d(n,"cssStyleElementForm2FieldsCheckboxFontSize",(function(){return _a})),o.d(n,"cssStyleElementForm2FieldsCheckboxFontWeight",(function(){return Ra})),o.d(n,"cssStyleElementForm2FieldsCheckboxLetterSpacing",(function(){return La})),o.d(n,"cssStyleElementForm2FieldsCheckboxLineHeight",(function(){return Ma})),o.d(n,"cssStyleElementForm2FieldsSelectColor",(function(){return Ia})),o.d(n,"cssStyleElementForm2FieldsSelectBgColor",(function(){return Wa})),o.d(n,"cssStyleElementForm2FieldsSelectChoiceBgColor",(function(){return Aa})),o.d(n,"cssStyleElementForm2FieldsSelectBorder",(function(){return Va})),o.d(n,"cssStyleElementForm2FieldsSelectBorderRadius",(function(){return Da})),o.d(n,"cssStyleElementForm2FieldsSelectBoxShadow",(function(){return $a})),o.d(n,"cssStyleElementForm2FieldColumns",(function(){return Ga})),o.d(n,"cssStyleElementForm2StoryButtonHeight",(function(){return Ua})),o.d(n,"cssStyleElementLoginFormMargin",(function(){return Ka})),o.d(n,"cssStyleElementLoginFieldPadding",(function(){return Ya})),o.d(n,"cssStyleElementLoginLostPasswordColor",(function(){return er})),o.d(n,"cssStyleElementLoginLostPasswordAlign",(function(){return tr})),o.d(n,"cssStyleElementLoginRememberMeAlign",(function(){return or})),o.d(n,"cssStyleElementLoginLostPasswordTypography2FontFamily",(function(){return qa})),o.d(n,"cssStyleElementLoginLostPasswordTypography2FontSize",(function(){return Xa})),o.d(n,"cssStyleElementLoginLostPasswordTypography2FontWeight",(function(){return Ja})),o.d(n,"cssStyleElementLoginLostPasswordTypography2LetterSpacing",(function(){return Qa})),o.d(n,"cssStyleElementLoginLostPasswordTypography2LineHeight",(function(){return Za})),o.d(n,"cssStyleElementLoginAutorizedAlign",(function(){return nr})),o.d(n,"cssStyleElementLoginTextTypography2FontFamily",(function(){return ar})),o.d(n,"cssStyleElementLoginTextTypography2FontSize",(function(){return rr})),o.d(n,"cssStyleElementLoginTextTypography2LineHeight",(function(){return ir})),o.d(n,"cssStyleElementLoginTextTypography2FontWeight",(function(){return lr})),o.d(n,"cssStyleElementLoginTextTypography2LetterSpacing",(function(){return sr})),o.d(n,"cssStyleElementLoginTextColor",(function(){return cr})),o.d(n,"cssStyleElementLoginLinkColor",(function(){return dr})),o.d(n,"cssStyleElementLoginRegisterInfoTypography2FontFamily",(function(){return ur})),o.d(n,"cssStyleElementLoginRegisterInfoTypography2FontSize",(function(){return pr})),o.d(n,"cssStyleElementLoginRegisterInfoTypography2LineHeight",(function(){return br})),o.d(n,"cssStyleElementLoginRegisterInfoTypography2FontWeight",(function(){return mr})),o.d(n,"cssStyleElementLoginRegisterInfoTypography2LetterSpacing",(function(){return hr})),o.d(n,"cssStyleElementRegisterInfoColor",(function(){return gr})),o.d(n,"cssStyleElementRegisterInfoAlign",(function(){return vr})),o.d(n,"cssStyleElementLoginRegisterLinkTypography2FontFamily",(function(){return fr})),o.d(n,"cssStyleElementLoginRegisterLinkTypography2FontSize",(function(){return yr})),o.d(n,"cssStyleElementLoginRegisterLinkTypography2LineHeight",(function(){return Or})),o.d(n,"cssStyleElementLoginRegisterLinkTypography2FontWeight",(function(){return Sr})),o.d(n,"cssStyleElementLoginRegisterLinkTypography2LetterSpacing",(function(){return xr})),o.d(n,"cssStyleElementLoginRegisterLinkColor",(function(){return Cr})),o.d(n,"cssStyleElementLoginRegisterLinkAlign",(function(){return jr})),o.d(n,"cssStyleElementLoginLoginLinkTypography2FontFamily",(function(){return Pr})),o.d(n,"cssStyleElementLoginLoginLinkTypography2FontSize",(function(){return Br})),o.d(n,"cssStyleElementLoginLoginLinkTypography2LineHeight",(function(){return wr})),o.d(n,"cssStyleElementLoginLoginLinkTypography2FontWeight",(function(){return Tr})),o.d(n,"cssStyleElementLoginLoginLinkTypography2LetterSpacing",(function(){return zr})),o.d(n,"cssStyleElementLoginLoginLinkColor",(function(){return Er})),o.d(n,"cssStyleElementLoginLoginLinkAlign",(function(){return kr})),o.d(n,"cssStyleElementPostInfoColorText",(function(){return Fr})),o.d(n,"cssStyleElementPostInfoColorIcons",(function(){return Hr})),o.d(n,"cssStyleElementPostInfoSpacing",(function(){return _r})),o.d(n,"cssStyleElementPostNavigation2TitleFontFamily",(function(){return Rr})),o.d(n,"cssStyleElementPostNavigation2TitleFontSize",(function(){return Lr})),o.d(n,"cssStyleElementPostNavigation2TitleLineHeight",(function(){return Mr})),o.d(n,"cssStyleElementPostNavigation2TitleFontWeight",(function(){return Ir})),o.d(n,"cssStyleElementPostNavigation2TitleLetterSpacing",(function(){return Wr})),o.d(n,"cssStyleElementPostNavigation2PostFontFamily",(function(){return Nr})),o.d(n,"cssStyleElementPostNavigation2PostFontSize",(function(){return Ar})),o.d(n,"cssStyleElementPostNavigation2PostLineHeight",(function(){return Vr})),o.d(n,"cssStyleElementPostNavigation2PostFontWeight",(function(){return Dr})),o.d(n,"cssStyleElementPostNavigation2PostLetterSpacing",(function(){return $r})),o.d(n,"cssStyleElementPostNavigationColorTitle",(function(){return Gr})),o.d(n,"cssStyleElementPostNavigationColorPost",(function(){return Ur})),o.d(n,"cssStyleElementPostNavigationSpacing",(function(){return Kr})),o.d(n,"cssStyleElementPostNavigationSeparationHeight",(function(){return Yr})),o.d(n,"cssStyleElementPostNavigationShowSeparation",(function(){return qr})),o.d(n,"cssStyleElementStarRatingRatingColor",(function(){return Xr})),o.d(n,"cssStyleElementStarRatingRatingBackgroundColor",(function(){return Zr})),o.d(n,"cssStyleElementStarRatingPropertyHoverTransition",(function(){return ei})),o.d(n,"cssStyleElementStarRatingTextSpacing",(function(){return oi})),o.d(n,"cssStyleElementStarRatingStyle2Background",(function(){return Jr})),o.d(n,"cssStyleElementStarRatingStyle2BorderRadius",(function(){return Qr})),o.d(n,"cssStyleElementStarRatingDirection",(function(){return ti})),o.d(n,"cssStyleElementTimelineTabContentArrowColor",(function(){return Ni})),o.d(n,"cssStyleElementTimelineTabContentArrowCustomColor",(function(){return Ai})),o.d(n,"cssStyleElementTimelineTabContentArrowCustomColor1",(function(){return Vi})),o.d(n,"cssStyleElementTimelineBeforeDisplay",(function(){return Ci})),o.d(n,"cssStyleElementTimelineCustomLineOdd",(function(){return ki})),o.d(n,"cssStyleElementTimelineVerticalTab",(function(){return el})),o.d(n,"cssStyleElementTimelineVerticalLastTab",(function(){return tl})),o.d(n,"cssStyleElementTimelineTabsVerticalContent",(function(){return Qi})),o.d(n,"cssStyleElementTimelineTabsVerticalNavIcon",(function(){return Ji})),o.d(n,"cssStyleElementTimelineTabsHorizontalStyle3",(function(){return Zi})),o.d(n,"cssStyleElementTimelineTabHorizontalStyle3Odd",(function(){return Xi})),o.d(n,"cssStyleElementTimelineTabCustomStyle",(function(){return qi})),o.d(n,"cssStyleElementTimelineContentBeforeStyle3",(function(){return Ui})),o.d(n,"cssStyleElementTimelineVerticalTabBeforeNone",(function(){return ol})),o.d(n,"cssStyleElementTimelineVerticalTabBeforeStyle3",(function(){return nl})),o.d(n,"cssStyleElementTimelineNavTitleStyle3",(function(){return Yi})),o.d(n,"cssStyleElementTimelineTab",(function(){return $i})),o.d(n,"cssStyleElementTimelineTabs",(function(){return Di})),o.d(n,"cssStyleElementTimelineTabContentBefore",(function(){return Gi})),o.d(n,"cssStyleElementTimelineNavTitleSpacing",(function(){return Ki})),o.d(n,"cssStyleElementTimelineWidth",(function(){return Wi})),o.d(n,"cssStyleElementTimelineIconSize",(function(){return si})),o.d(n,"cssStyleElementTimelineIconWidth",(function(){return di})),o.d(n,"cssStyleElementTimelineIconHeight",(function(){return ui})),o.d(n,"cssStyleElementTimelineIconBorderRadius",(function(){return fi})),o.d(n,"cssStyleElementTimelineNavTitleWidth",(function(){return pi})),o.d(n,"cssStyleElementTimelineLineBgColor",(function(){return mi})),o.d(n,"cssStyleElementTimelineLineTop",(function(){return hi})),o.d(n,"cssStyleElementTimelineArrowBorder",(function(){return vi})),o.d(n,"cssStyleElementTimelineVerticalCustomTabPositionOdd",(function(){return Ri})),o.d(n,"cssStyleElementTimelineContentSpacing",(function(){return gi})),o.d(n,"cssStyleElementTimelineVerticalCustomContentSpacing",(function(){return Ii})),o.d(n,"cssStyleElementTimelinePaddingForIcon",(function(){return ci})),o.d(n,"cssStyleElementTimelineNavTitleVisible",(function(){return bi})),o.d(n,"cssStyleElementTimelineVerticalPosition",(function(){return yi})),o.d(n,"cssStyleElementTimelineLineWidthHeightBefore",(function(){return Oi})),o.d(n,"cssStyleElementTimelineLineWidthHeightAfter",(function(){return Si})),o.d(n,"cssStyleElementTimelineVerticalLinePosition",(function(){return xi})),o.d(n,"cssStyleElementTimelineVerticalLineTopPosition",(function(){return ji})),o.d(n,"cssStyleElementTimelineVerticalLineBottomPosition",(function(){return Pi})),o.d(n,"cssStyleElementTimelineCustomTabWidth",(function(){return Bi})),o.d(n,"cssStyleElementTimelineCustomLastTabWidth",(function(){return wi})),o.d(n,"cssStyleElementTimelineVerticalInvertPosition",(function(){return Ti})),o.d(n,"cssStyleElementTimelineVerticalInvertLinePosition",(function(){return zi})),o.d(n,"cssStyleElementTimelineCustomLineTop",(function(){return Ei})),o.d(n,"cssStyleElementTimelineCustomContentSpacing",(function(){return Hi})),o.d(n,"cssStyleElementTimelineCustomContentBottomSpacing",(function(){return Fi})),o.d(n,"cssStyleElementTimelineVerticalCustomTabPosition",(function(){return _i})),o.d(n,"cssStyleElementTimelineVerticalCustomPosition",(function(){return Li})),o.d(n,"cssStyleElementTimelineVerticalStyle3ArrowPosition",(function(){return Mi})),o.d(n,"cssStyleElementSwitcherNavSpacing",(function(){return ll})),o.d(n,"cssStyleElementSwitcherNavBeforeBg",(function(){return il})),o.d(n,"cssStyleElementSwitcherActiveTextColor",(function(){return sl})),o.d(n,"cssStyleElementSwitcherNav2Width",(function(){return al})),o.d(n,"cssStyleElementSwitcherNav2Height",(function(){return rl})),o.d(n,"cssStyleElementSwitcherWidth",(function(){return cl})),o.d(n,"cssStyleElementWPPostContentH1Color",(function(){return dl})),o.d(n,"cssStyleElementWPPostContentH2Color",(function(){return ul})),o.d(n,"cssStyleElementWPPostContentH3Color",(function(){return pl})),o.d(n,"cssStyleElementWPPostContentH4Color",(function(){return bl})),o.d(n,"cssStyleElementWPPostContentH5Color",(function(){return ml})),o.d(n,"cssStyleElementWPPostContentH6Color",(function(){return hl})),o.d(n,"cssStyleElementWPPostContentParagraphColor",(function(){return gl})),o.d(n,"cssStyleElementWPPostContentTypography2ParagraphFontFamily",(function(){return vl})),o.d(n,"cssStyleElementWPPostContentTypography2ParagraphFontSize",(function(){return fl})),o.d(n,"cssStyleElementWPPostContentTypography2ParagraphLineHeight",(function(){return yl})),o.d(n,"cssStyleElementWPPostContentTypography2ParagraphFontWeight",(function(){return Ol})),o.d(n,"cssStyleElementWPPostContentTypography2ParagraphLetterSpacing",(function(){return Sl})),o.d(n,"cssStyleElementWPPostContentTypography2H1FontFamily",(function(){return xl})),o.d(n,"cssStyleElementWPPostContentTypography2H1FontSize",(function(){return Cl})),o.d(n,"cssStyleElementWPPostContentTypography2H1LineHeight",(function(){return jl})),o.d(n,"cssStyleElementWPPostContentTypography2H1FontWeight",(function(){return Pl})),o.d(n,"cssStyleElementWPPostContentTypography2H1LetterSpacing",(function(){return Bl})),o.d(n,"cssStyleElementWPPostContentTypography2H2FontFamily",(function(){return wl})),o.d(n,"cssStyleElementWPPostContentTypography2H2FontSize",(function(){return Tl})),o.d(n,"cssStyleElementWPPostContentTypography2H2LineHeight",(function(){return zl})),o.d(n,"cssStyleElementWPPostContentTypography2H2FontWeight",(function(){return El})),o.d(n,"cssStyleElementWPPostContentTypography2H2LetterSpacing",(function(){return kl})),o.d(n,"cssStyleElementWPPostContentTypography2H3FontFamily",(function(){return Hl})),o.d(n,"cssStyleElementWPPostContentTypography2H3FontSize",(function(){return Fl})),o.d(n,"cssStyleElementWPPostContentTypography2H3LineHeight",(function(){return _l})),o.d(n,"cssStyleElementWPPostContentTypography2H3FontWeight",(function(){return Rl})),o.d(n,"cssStyleElementWPPostContentTypography2H3LetterSpacing",(function(){return Ll})),o.d(n,"cssStyleElementWPPostContentTypography2H4FontFamily",(function(){return Ml})),o.d(n,"cssStyleElementWPPostContentTypography2H4FontSize",(function(){return Il})),o.d(n,"cssStyleElementWPPostContentTypography2H4LineHeight",(function(){return Wl})),o.d(n,"cssStyleElementWPPostContentTypography2H4FontWeight",(function(){return Nl})),o.d(n,"cssStyleElementWPPostContentTypography2H4LetterSpacing",(function(){return Al})),o.d(n,"cssStyleElementWPPostContentTypography2H5FontFamily",(function(){return Vl})),o.d(n,"cssStyleElementWPPostContentTypography2H5FontSize",(function(){return Dl})),o.d(n,"cssStyleElementWPPostContentTypography2H5LineHeight",(function(){return $l})),o.d(n,"cssStyleElementWPPostContentTypography2H5FontWeight",(function(){return Gl})),o.d(n,"cssStyleElementWPPostContentTypography2H5LetterSpacing",(function(){return Ul})),o.d(n,"cssStyleElementWPPostContentTypography2H6FontFamily",(function(){return Kl})),o.d(n,"cssStyleElementWPPostContentTypography2H6FontSize",(function(){return Yl})),o.d(n,"cssStyleElementWPPostContentTypography2H6LineHeight",(function(){return ql})),o.d(n,"cssStyleElementWPPostContentTypography2H6FontWeight",(function(){return Xl})),o.d(n,"cssStyleElementWPPostContentTypography2H6LetterSpacing",(function(){return Zl})),o.d(n,"cssStyleElementWPPostContentFontWeightInherit",(function(){return Jl})),o.d(n,"cssStyleElementWOOPriceColorSale",(function(){return Ql})),o.d(n,"cssStyleElementWOOPriceSaleFontFamily",(function(){return es})),o.d(n,"cssStyleElementWOOPriceSaleFontSize",(function(){return ts})),o.d(n,"cssStyleElementWOOPriceSaleLineHeight",(function(){return os})),o.d(n,"cssStyleElementWOOPriceSaleFontWeight",(function(){return ns})),o.d(n,"cssStyleElementWOOPriceSaleLetterSpacing",(function(){return as})),o.d(n,"cssStyleElementWOOPriceColumn",(function(){return rs})),o.d(n,"cssStyleElementWOOPriceSpacingFirst",(function(){return is})),o.d(n,"cssStyleElementWOOPriceSpacingLast",(function(){return ls})),o.d(n,"cssStyleElementWOOAdditionalTitleFontFamily",(function(){return ss})),o.d(n,"cssStyleElementWOOAdditionalTitleFontSize",(function(){return cs})),o.d(n,"cssStyleElementWOOAdditionalTitleLineHeight",(function(){return ds})),o.d(n,"cssStyleElementWOOAdditionalTitleFontWeight",(function(){return us})),o.d(n,"cssStyleElementWOOAdditionalTitleLetterSpacing",(function(){return ps})),o.d(n,"cssStyleElementWOOAdditionalTitleColor",(function(){return bs})),o.d(n,"cssStyleElementWOOAdditionalTitleSpacing",(function(){return ms})),o.d(n,"cssStyleElementWOOAttributesAttributesFontFamily",(function(){return hs})),o.d(n,"cssStyleElementWOOAttributesAttributesFontSize",(function(){return gs})),o.d(n,"cssStyleElementWOOAttributesAttributesLineHeight",(function(){return vs})),o.d(n,"cssStyleElementWOOAttributesAttributesFontWeight",(function(){return fs})),o.d(n,"cssStyleElementWOOAttributesAttributesLetterSpacing",(function(){return ys})),o.d(n,"cssStyleElementWOOAttributesSpacing",(function(){return Os})),o.d(n,"cssStyleElementWOOAttributesAttributeColor",(function(){return Ss})),o.d(n,"cssStyleElementWOOAttributesBorder",(function(){return xs})),o.d(n,"cssStyleElementWOOAttributesLastElementBorder",(function(){return Cs})),o.d(n,"cssStyleElementPostsItemWidth",(function(){return Ps})),o.d(n,"cssStyleElementPostsItemSpacing",(function(){return Bs})),o.d(n,"cssStyleElementPostsPaginationSpacing",(function(){return ws})),o.d(n,"cssStyleElementPostsPaginationFontFamily",(function(){return Ts})),o.d(n,"cssStyleElementPostsPaginationFontSize",(function(){return zs})),o.d(n,"cssStyleElementPostsPaginationLineHeight",(function(){return Es})),o.d(n,"cssStyleElementPostsPaginationFontWeight",(function(){return ks})),o.d(n,"cssStyleElementPostsPaginationLetterSpacing",(function(){return Hs})),o.d(n,"cssStyleElementPostsPaginationColor",(function(){return Fs})),o.d(n,"cssStyleElementPostsPaginationBgColor",(function(){return _s})),o.d(n,"cssStyleElementPostsPaginationBorder",(function(){return Rs})),o.d(n,"cssStyleElementPostsPaginationActiveColor",(function(){return Ls})),o.d(n,"cssStyleElementPostsPaginationActiveBgColor",(function(){return Ms})),o.d(n,"cssStyleElementPostsPaginationActiveBorder",(function(){return Is})),o.d(n,"cssStyleElementPostsPaginationBorderRadius",(function(){return Ws})),o.d(n,"cssStyleElementPostsFilterDisplay",(function(){return Ns})),o.d(n,"cssStyleElementPostsFilterHorizontalAlign",(function(){return As})),o.d(n,"cssStyleElementPostsFilterSpacing",(function(){return Vs})),o.d(n,"cssStyleElementPostsFilterAfterSpacing",(function(){return Ds})),o.d(n,"cssStyleElementPostsFilterFontFamily",(function(){return $s})),o.d(n,"cssStyleElementPostsFilterFontSize",(function(){return Gs})),o.d(n,"cssStyleElementPostsFilterLineHeight",(function(){return Us})),o.d(n,"cssStyleElementPostsFilterFontWeight",(function(){return Ks})),o.d(n,"cssStyleElementPostsFilterLetterSpacing",(function(){return Ys})),o.d(n,"cssStyleElementPostsFilterColor",(function(){return qs})),o.d(n,"cssStyleElementPostsFilterBgColor",(function(){return Xs})),o.d(n,"cssStyleElementPostsFilterBorder",(function(){return Zs})),o.d(n,"cssStyleElementPostsFilterBorderRadius",(function(){return Js})),o.d(n,"cssStyleElementPostsFilterShadow",(function(){return Qs})),o.d(n,"cssStyleElementPostsFilterPaddingFourFields",(function(){return ec})),o.d(n,"cssStyleElementPostsFilterActiveColor",(function(){return tc})),o.d(n,"cssStyleElementPostsFilterActiveBgColor",(function(){return oc})),o.d(n,"cssStyleElementPostsFilterActiveBorder",(function(){return nc})),o.d(n,"cssStyleElementPostsFilterActiveShadow",(function(){return ac})),o.d(n,"cssStyleElementPostsHoverTransition",(function(){return rc})),o.d(n,"cssStyleElementAccordion3FontFamily",(function(){return Bc})),o.d(n,"cssStyleElementAccordion3FontSize",(function(){return wc})),o.d(n,"cssStyleElementAccordion3LineHeight",(function(){return Tc})),o.d(n,"cssStyleElementAccordion3FontWeight",(function(){return zc})),o.d(n,"cssStyleElementAccordion3LetterSpacing",(function(){return Ec})),o.d(n,"cssStyleElementAccordionFilterColor",(function(){return lc})),o.d(n,"cssStyleElementAccordionFilterBgColor",(function(){return pc})),o.d(n,"cssStyleElementAccordionFilterBorder",(function(){return bc})),o.d(n,"cssStyleElementAccordionFilterBorderRadius",(function(){return mc})),o.d(n,"cssStyleElementAccordionFilterShadow",(function(){return hc})),o.d(n,"cssStyleElementAccordionMarginTop",(function(){return gc})),o.d(n,"cssStyleElementAccordionSpacing",(function(){return vc})),o.d(n,"cssStyleElementAccordionFilterSpacing",(function(){return fc})),o.d(n,"cssStyleElementAccordionFilterAfterSpacing",(function(){return yc})),o.d(n,"cssStyleElementAccordionNavAlign",(function(){return Oc})),o.d(n,"cssStyleElementAccordionNavTextAlign",(function(){return Sc})),o.d(n,"cssStyleElementAccordionNavIconSpacing",(function(){return xc})),o.d(n,"cssStyleElementAccordionNavIconSize",(function(){return Cc})),o.d(n,"cssStyleElementAccordionFilterHorizontalAlign",(function(){return jc})),o.d(n,"cssStyleElementAccordionFilterPaddingFourFields",(function(){return Pc})),o.d(n,"cssStyleElementAccordionFilterActiveColor",(function(){return sc})),o.d(n,"cssStyleElementAccordionFilterActiveBgColor",(function(){return cc})),o.d(n,"cssStyleElementAccordionFilterActiveBorder",(function(){return dc})),o.d(n,"cssStyleElementAccordionFilterActiveShadow",(function(){return uc})),o.d(n,"cssStyleElementAccordionActiveColor",(function(){return kc})),o.d(n,"cssStyleElementAccordionActiveBgColor",(function(){return Hc})),o.d(n,"cssStyleElementAccordionActiveBorder",(function(){return Fc})),o.d(n,"cssStyleElementAccordionActiveShadow",(function(){return _c})),o.d(n,"cssStyleElementAccordionAnimDuration",(function(){return Rc})),o.d(n,"cssStyleElementAccordionPropertyHoverTransition",(function(){return Lc})),o.d(n,"cssStyleElementTabsBtnSpacing",(function(){return Mc})),o.d(n,"cssStyleElementTabsBtnIconSize",(function(){return Ic})),o.d(n,"cssStyleElementTabsBtnActiveBorderBottomColor",(function(){return Wc})),o.d(n,"cssStyleElementTabsBtnActiveBorderRightColor",(function(){return Nc})),o.d(n,"cssStyleElementTabsBtnActiveBorderLeftColor",(function(){return Ac})),o.d(n,"cssStyleElementTabsActiveBeforeAfterColor",(function(){return Vc})),o.d(n,"cssStyleElementTabsActiveBeforeHeight",(function(){return Dc})),o.d(n,"cssStyleElementTabsActiveBeforeWidth",(function(){return $c})),o.d(n,"cssStyleElementTabsBeforeAfterRightWidth",(function(){return Gc})),o.d(n,"cssStyleElementTabsBeforeAfterLeftWidth",(function(){return Uc})),o.d(n,"cssStyleElementTabsBorderMobileWidth",(function(){return Kc})),o.d(n,"cssStyleElementTabsEmptyContent",(function(){return Yc})),o.d(n,"cssStyleElementTabsBtnIconPosition",(function(){return qc})),o.d(n,"cssStyleElementTabsBtnIconJustifyContent",(function(){return Xc})),o.d(n,"cssStyleElementTabsBeforeAfterTop",(function(){return Zc})),o.d(n,"cssStyleElementTabsBeforeAfterBottom",(function(){return Jc})),o.d(n,"cssStyleElementTabsAfterSpacing",(function(){return Qc})),o.d(n,"cssStyleElementTabsSpacing",(function(){return td})),o.d(n,"cssStyleElementTabsAfterSpacingVertical",(function(){return ed})),o.d(n,"cssStyleElementTabsNavAlign",(function(){return od})),o.d(n,"cssStyleElementTabsNavBorderBottom",(function(){return ad})),o.d(n,"cssStyleElementTabsNavStyle3Before",(function(){return rd})),o.d(n,"cssStyleElementTabsPadding",(function(){return nd})),o.d(n,"cssStyleElementTabsActiveColor",(function(){return id})),o.d(n,"cssStyleElementTabsActiveBgColor",(function(){return ld})),o.d(n,"cssStyleElementTabsActiveBorder",(function(){return cd})),o.d(n,"cssStyleElementTabsActiveShadow",(function(){return sd})),o.d(n,"cssStyleElementCommentsNameFontFamily",(function(){return dd})),o.d(n,"cssStyleElementCommentsNameFontSize",(function(){return ud})),o.d(n,"cssStyleElementCommentsNameLineHeight",(function(){return pd})),o.d(n,"cssStyleElementCommentsNameFontWeight",(function(){return bd})),o.d(n,"cssStyleElementCommentsNameLetterSpacing",(function(){return md})),o.d(n,"cssStyleElementCommentsDateFontFamily",(function(){return Od})),o.d(n,"cssStyleElementCommentsDateFontSize",(function(){return Sd})),o.d(n,"cssStyleElementCommentsDateLineHeight",(function(){return xd})),o.d(n,"cssStyleElementCommentsDateFontWeight",(function(){return Cd})),o.d(n,"cssStyleElementCommentsDateLetterSpacing",(function(){return jd})),o.d(n,"cssStyleElementCommentsCommentFontFamily",(function(){return hd})),o.d(n,"cssStyleElementCommentsCommentFontSize",(function(){return gd})),o.d(n,"cssStyleElementCommentsCommentLineHeight",(function(){return vd})),o.d(n,"cssStyleElementCommentsCommentFontWeight",(function(){return fd})),o.d(n,"cssStyleElementCommentsCommentLetterSpacing",(function(){return yd})),o.d(n,"cssStyleElementCommentsReplyFontFamily",(function(){return Pd})),o.d(n,"cssStyleElementCommentsReplyFontSize",(function(){return Bd})),o.d(n,"cssStyleElementCommentsReplyLineHeight",(function(){return wd})),o.d(n,"cssStyleElementCommentsReplyFontWeight",(function(){return Td})),o.d(n,"cssStyleElementCommentsReplyLetterSpacing",(function(){return zd})),o.d(n,"cssStyleElementCommentsPostButtonFontFamily",(function(){return Ed})),o.d(n,"cssStyleElementCommentsPostButtonFontSize",(function(){return kd})),o.d(n,"cssStyleElementCommentsPostButtonLineHeight",(function(){return Hd})),o.d(n,"cssStyleElementCommentsPostButtonFontWeight",(function(){return Fd})),o.d(n,"cssStyleElementCommentsPostButtonLetterSpacing",(function(){return _d})),o.d(n,"cssStyleElementCommentsLogoSize",(function(){return Rd})),o.d(n,"cssStyleElementCommentsWidthContainer",(function(){return Ld})),o.d(n,"cssStyleElementCommentsPostButtonColor",(function(){return Md})),o.d(n,"cssStyleElementCommentsPostButtonBg",(function(){return Id})),o.d(n,"cssStyleElementCommentsColorLink",(function(){return Wd})),o.d(n,"cssStyleElementCommentsNameColor",(function(){return Nd})),o.d(n,"cssStyleElementCommentsCommentsColor",(function(){return Ad})),o.d(n,"cssStyleElementCommentsChildMargin",(function(){return Vd})),o.d(n,"cssStyleElementCommentsStarsColor",(function(){return Dd})),o.d(n,"cssStyleElementCommentsStarsBgColor",(function(){return $d})),o.d(n,"cssStyleElementCommentsStarsSize",(function(){return Gd})),o.d(n,"cssStyleElementSearchAutocompleteColor",(function(){return Ud})),o.d(n,"cssStyleElementSearchMinWidth",(function(){return Kd})),o.d(n,"cssStyleElementSearchMinHeight",(function(){return Yd})),o.d(n,"cssStyleElementSearchPropertyHoverTransition",(function(){return qd})),o.d(n,"cssStyleElementSearchLineHeight",(function(){return Xd})),o.d(n,"cssStyleElementWOOProductMetaType",(function(){return Zd})),o.d(n,"cssStyleElementWOOProductMetaCategoryFontFamily",(function(){return Jd})),o.d(n,"cssStyleElementWOOProductMetaCategoryFontSize",(function(){return Qd})),o.d(n,"cssStyleElementWOOProductMetaCategoryLineHeight",(function(){return eu})),o.d(n,"cssStyleElementWOOProductMetaCategoryFontWeight",(function(){return tu})),o.d(n,"cssStyleElementWOOProductMetaCategoryLetterSpacing",(function(){return ou})),o.d(n,"cssStyleElementWOOProductMetaValueFontFamily",(function(){return nu})),o.d(n,"cssStyleElementWOOProductMetaValueFontSize",(function(){return au})),o.d(n,"cssStyleElementWOOProductMetaValueLineHeight",(function(){return ru})),o.d(n,"cssStyleElementWOOProductMetaValueFontWeight",(function(){return iu})),o.d(n,"cssStyleElementWOOProductMetaValueLetterSpacing",(function(){return lu})),o.d(n,"cssStyleElementWOOProductMetaTopSpacing",(function(){return su})),o.d(n,"cssStyleElementWOOProductMetaRightSpacing",(function(){return cu})),o.d(n,"cssStyleElementWOOProductMetaRightSpacingInline",(function(){return du})),o.d(n,"cssStyleElementWOOProductMetaCategoryColor",(function(){return uu})),o.d(n,"cssStyleElementWOOProductMetaValueColor",(function(){return pu})),o.d(n,"cssStyleElementWOOProductMetaDividers",(function(){return bu})),o.d(n,"cssStyleElementWOORatingSize",(function(){return mu})),o.d(n,"cssStyleElementWOORatingTextColor",(function(){return hu})),o.d(n,"cssStyleElementWOORatingSpacing",(function(){return gu})),o.d(n,"cssStyleElementWOORatingBgStarColor",(function(){return vu})),o.d(n,"cssStyleElementWOOCartIconColor",(function(){return fu})),o.d(n,"cssStyleElementWOOCartSubtotalDisabled",(function(){return yu})),o.d(n,"cssStyleElementWOOCartPurchasesDisabled",(function(){return Ou})),o.d(n,"cssStyleElementWOOCartTransitionProperty",(function(){return Su})),o.d(n,"cssStyleElementWOOCartPurchasesColor",(function(){return xu})),o.d(n,"cssStyleElementWOOCartPurchasesFontFamily",(function(){return Cu})),o.d(n,"cssStyleElementWOOCartPurchasesFontSize",(function(){return ju})),o.d(n,"cssStyleElementWOOCartPurchasesLineHeight",(function(){return Pu})),o.d(n,"cssStyleElementWOOCartPurchasesFontWeight",(function(){return Bu})),o.d(n,"cssStyleElementWOOCartPurchasesLetterSpacing",(function(){return wu})),o.d(n,"cssStyleElementWOOCartTitleFontFamily",(function(){return Tu})),o.d(n,"cssStyleElementWOOCartTitleFontSize",(function(){return zu})),o.d(n,"cssStyleElementWOOCartTitleLineHeight",(function(){return Eu})),o.d(n,"cssStyleElementWOOCartTitleFontWeight",(function(){return ku})),o.d(n,"cssStyleElementWOOCartTitleLetterSpacing",(function(){return Hu})),o.d(n,"cssStyleElementWOOCartCostFontFamily",(function(){return Fu})),o.d(n,"cssStyleElementWOOCartCostFontSize",(function(){return _u})),o.d(n,"cssStyleElementWOOCartCostLineHeight",(function(){return Ru})),o.d(n,"cssStyleElementWOOCartCostFontWeight",(function(){return Lu})),o.d(n,"cssStyleElementWOOCartCostLetterSpacing",(function(){return Mu})),o.d(n,"cssStyleElementWOOCartSubtotalFontFamily",(function(){return Iu})),o.d(n,"cssStyleElementWOOCartSubtotalFontSize",(function(){return Wu})),o.d(n,"cssStyleElementWOOCartSubtotalLineHeight",(function(){return Nu})),o.d(n,"cssStyleElementWOOCartSubtotalFontWeight",(function(){return Au})),o.d(n,"cssStyleElementWOOCartSubtotalLetterSpacing",(function(){return Vu})),o.d(n,"cssStyleElementWOOCartButtonFontFamily",(function(){return Du})),o.d(n,"cssStyleElementWOOCartButtonFontSize",(function(){return $u})),o.d(n,"cssStyleElementWOOCartButtonLineHeight",(function(){return Gu})),o.d(n,"cssStyleElementWOOCartButtonFontWeight",(function(){return Uu})),o.d(n,"cssStyleElementWOOCartButtonLetterSpacing",(function(){return Ku})),o.d(n,"cssStyleElementWOOCartTitleColor",(function(){return Yu})),o.d(n,"cssStyleElementWOOCartCostColor",(function(){return qu})),o.d(n,"cssStyleElementWOOCartSubtotalColor",(function(){return Xu})),o.d(n,"cssStyleElementWOOCartButtonColor",(function(){return Zu})),o.d(n,"cssStyleElementWOOCartButtonBgColor",(function(){return Ju})),o.d(n,"cssStyleElementWOOCartButtonDirection",(function(){return Qu})),o.d(n,"cssStyleElementWOOCartButtonSpacing",(function(){return ep})),o.d(n,"cssStyleElementWOOCartButtonBorderRadius",(function(){return tp})),o.d(n,"cssStyleElementWOOCartSidebarHorizontalAlign",(function(){return op})),o.d(n,"cssStyleElementWOOCartSidebarVerticalAlign",(function(){return np})),o.d(n,"cssStyleElementWOOCartSidebarWidth",(function(){return ap})),o.d(n,"cssStyleElementWOOCartSidebarHeight",(function(){return rp})),o.d(n,"cssStyleElementWOOCartBubbleColor",(function(){return ip})),o.d(n,"cssStyleElementWOOCartBubbleBg",(function(){return lp})),o.d(n,"cssStyleWrapperCustomHeight",(function(){return cp})),o.d(n,"cssStyleWrapperContainerFlex",(function(){return pp})),o.d(n,"cssStyleWrapperFixedFlex",(function(){return dp})),o.d(n,"cssStyleWrapperBorderFlex",(function(){return up})),o.d(n,"cssStyleWrapperContainerSize",(function(){return bp})),o.d(n,"cssStyleElementMenuAlign",(function(){return mp})),o.d(n,"cssStyleElementMenuMode",(function(){return Op})),o.d(n,"cssStyleElementMenuSize",(function(){return Sp})),o.d(n,"cssStyleElementMenuDropdown",(function(){return yb})),o.d(n,"cssStyleElementMenuDropdownOpened",(function(){return Sb})),o.d(n,"cssStyleElementMenuInnerDropdown",(function(){return Ob})),o.d(n,"cssStyleElementMenuDropdownInnerOpened",(function(){return xb})),o.d(n,"cssStyleElementMenuDropdownArrow",(function(){return Cb})),o.d(n,"cssStyleElementMenuShow",(function(){return yp})),o.d(n,"cssStyleElementMenuShowIcon",(function(){return fp})),o.d(n,"cssStyleElementMenuIconPosition",(function(){return hp})),o.d(n,"cssStyleElementMenuIconSpacing",(function(){return gp})),o.d(n,"cssStyleElementMenuIconSize",(function(){return vp})),o.d(n,"cssStyleElementMenuBgColor",(function(){return xp})),o.d(n,"cssStyleElementMenuLinkBgColor",(function(){return Cp})),o.d(n,"cssStyleElementMenuPadding",(function(){return Pp})),o.d(n,"cssStyleElementMenuActiveColor",(function(){return Bp})),o.d(n,"cssStyleElementMenuActiveBgColor",(function(){return Tp})),o.d(n,"cssStyleElementMenuActiveLinkBgColor",(function(){return wp})),o.d(n,"cssStyleElementMenuActiveBorder",(function(){return zp})),o.d(n,"cssStyleElementMenuCurrentColor",(function(){return Ep})),o.d(n,"cssStyleElementMenuCurrentLinkBgColor",(function(){return Hp})),o.d(n,"cssStyleElementMenuCurrentBgColor",(function(){return kp})),o.d(n,"cssStyleElementMenuCurrentBorder",(function(){return Fp})),o.d(n,"cssStyleElementMenuBorder",(function(){return jp})),o.d(n,"cssStyleElementMMenuFontFamily",(function(){return Rp})),o.d(n,"cssStyleElementMMenuFontSize",(function(){return Lp})),o.d(n,"cssStyleElementMMenuLineHeight",(function(){return Mp})),o.d(n,"cssStyleElementMMenuFontWeight",(function(){return Ip})),o.d(n,"cssStyleElementMMenuLetterSpacing",(function(){return Wp})),o.d(n,"cssStyleElementMMenuColor",(function(){return Np})),o.d(n,"cssStyleElementMMenuHoverColor",(function(){return Ap})),o.d(n,"cssStyleElementMMenuActiveColor",(function(){return Vp})),o.d(n,"cssStyleElementMMenuBorderColor",(function(){return Dp})),o.d(n,"cssStyleElementMMenuBackgroundColor",(function(){return $p})),o.d(n,"cssStyleElementMMenuItemHorizontalAlign",(function(){return Gp})),o.d(n,"cssStyleElementMMenuIconColor",(function(){return Up})),o.d(n,"cssStyleElementMMenuSize",(function(){return _p})),o.d(n,"cssStyleElementMMenuIconPosition",(function(){return qp})),o.d(n,"cssStyleElementMMenuIconSpacing",(function(){return Kp})),o.d(n,"cssStyleElementMMenuIconSize",(function(){return Yp})),o.d(n,"cssStyleElementMMenuBtnNext",(function(){return Xp})),o.d(n,"cssStyleElementMMenuListViewMargin",(function(){return Zp})),o.d(n,"cssStyleElementMMenuItemPadding",(function(){return Jp})),o.d(n,"cssStyleElementMMenuItemPaddingTopZero",(function(){return Qp})),o.d(n,"cssStyleElementMMenuItemPaddingBottomZero",(function(){return eb})),o.d(n,"cssStyleElementMMenuPadding",(function(){return tb})),o.d(n,"cssStyleElementMenuSubMenuFontFamily",(function(){return ob})),o.d(n,"cssStyleElementMenuSubMenuFontSize",(function(){return nb})),o.d(n,"cssStyleElementMenuSubMenuLineHeight",(function(){return ab})),o.d(n,"cssStyleElementMenuSubMenuFontWeight",(function(){return rb})),o.d(n,"cssStyleElementMenuSubMenuLetterSpacing",(function(){return ib})),o.d(n,"cssStyleElementMenuSubMenuColor",(function(){return lb})),o.d(n,"cssStyleElementMenuSubMenuHoverColor",(function(){return sb})),o.d(n,"cssStyleElementMenuSubMenuIconPosition",(function(){return cb})),o.d(n,"cssStyleElementMenuSubMenuIconSpacing",(function(){return db})),o.d(n,"cssStyleElementMenuSubMenuIconSize",(function(){return ub})),o.d(n,"cssStyleElementMenuSubMenuBgColor",(function(){return pb})),o.d(n,"cssStyleElementMenuSubMenuHoverBgColor",(function(){return bb})),o.d(n,"cssStyleElementMenuSubMenuBorderColor",(function(){return mb})),o.d(n,"cssStyleElementMenuSubMenuBorderBottom",(function(){return hb})),o.d(n,"cssStyleElementMenuSubMenuCurrentColor",(function(){return gb})),o.d(n,"cssStyleElementMenuSubMenuCurrentBgColor",(function(){return vb})),o.d(n,"cssStyleElementMenuSubMenuCurrentBoxShadow",(function(){return fb})),o.d(n,"cssStyleMenuDropdownPosition",(function(){return jb})),o.d(n,"cssStyleMenuDropdownPositionLeft",(function(){return Pb})),o.d(n,"cssStyleMenuDropdownPositionRight",(function(){return Bb})),o.d(n,"cssStyleMenuFirstDropdownPosition",(function(){return wb})),o.d(n,"cssStyleMenuFirstDropdownPositionLeft",(function(){return Tb})),o.d(n,"cssStyleMenuFirstDropdownPositionRight",(function(){return zb})),o.d(n,"cssStyleElementMegaMenuWidth",(function(){return Eb})),o.d(n,"cssStyleElementMegaMenuOffsetTop",(function(){return kb})),o.d(n,"cssStyleElementMegaMenuOpened",(function(){return Fb})),o.d(n,"cssStyleElementMegaMenuHeight",(function(){return Hb})),o.d(n,"cssStyleElementTableWidth",(function(){return _b})),o.d(n,"cssStyleElementTableIconSize",(function(){return Rb})),o.d(n,"cssStyleElementTableSpacing",(function(){return Lb})),o.d(n,"cssStyleElementTableBtnIconPosition",(function(){return Mb})),o.d(n,"cssStyleElementTableCustomFlexHorizontalAlign",(function(){return Ib})),o.d(n,"cssStyleElementTableCustomTextHorizontalAlign",(function(){return Wb})),o.d(n,"cssStyleElementTableAsideWidth",(function(){return Nb})),o.d(n,"cssStyleElementTableEvenBgColor",(function(){return Ab})),o.d(n,"cssStyleElementTableEvenColor",(function(){return Vb})),o.d(n,"cssStyleTablePadding",(function(){return Db})),o.d(n,"cssStyleElementMenuSimpleItemPadding",(function(){return $b})),o.d(n,"cssStyleElementMenuSimpleColorBars",(function(){return Gb})),o.d(n,"cssStyleElementMenuSimpleWidth",(function(){return Ub})),o.d(n,"cssStyleElementMenuSimpleActiveColor",(function(){return Kb})),o.d(n,"cssStyleElementImageMaxWidthPreview",(function(){return Zb})),o.d(n,"cssStyleElementImageHeightPreview",(function(){return Jb})),o.d(n,"cssStyleElementImageSizePreview",(function(){return lm})),o.d(n,"cssStyleElementImageMaxWidthEditor",(function(){return Qb})),o.d(n,"cssStyleElementImageHeightEditor",(function(){return em})),o.d(n,"cssStyleElementImageWidthWrapper",(function(){return tm})),o.d(n,"cssStyleElementImageHeightWrapper",(function(){return om})),o.d(n,"cssStyleElementImagePosition",(function(){return nm})),o.d(n,"cssStyleElementImageMarginLeft",(function(){return am})),o.d(n,"cssStyleElementImageMarginTop",(function(){return rm})),o.d(n,"cssStyleElementImagePictureSizePreview",(function(){return im})),o.d(n,"cssStyleElementImageTransitionProperty",(function(){return sm})),o.d(n,"cssStyleElementImageFilter",(function(){return cm})),o.d(n,"cssStyleAnimation",(function(){return dm})),o.d(n,"cssStyleAnimationDuration",(function(){return um})),o.d(n,"cssStyleAnimationDelay",(function(){return pm})),o.d(n,"cssStyleRotate",(function(){return hm})),o.d(n,"cssStyleElementWOOAddToCartSize",(function(){return gm})),o.d(n,"cssStyleElementWOOAddToCartSpacing",(function(){return fm})),o.d(n,"cssStyleElementWOOAddToCartInputSize",(function(){return ym})),o.d(n,"cssStyleElementWOOAddToCartInputPosition",(function(){return Om})),o.d(n,"cssStyleElementWOOAddToCartInputFontFamily",(function(){return xm})),o.d(n,"cssStyleElementWOOAddToCartInputFontSize",(function(){return Cm})),o.d(n,"cssStyleElementWOOAddToCartInputLineHeight",(function(){return jm})),o.d(n,"cssStyleElementWOOAddToCartInputFontWeight",(function(){return Pm})),o.d(n,"cssStyleElementWOOAddToCartInputLetterSpacing",(function(){return Bm})),o.d(n,"cssStyleElementWOOAddToCartInputAlign",(function(){return Sm})),o.d(n,"cssStyleElementWOOAddToCartInputColor",(function(){return wm})),o.d(n,"cssStyleElementWOOAddToCartInputBg",(function(){return qm})),o.d(n,"cssStyleElementWOOAddToCartInputBorder",(function(){return Zm})),o.d(n,"cssStyleElementWOOAddToCartInputRadius",(function(){return vm})),o.d(n,"cssStyleElementWOOAddToCartInputBoxShadow",(function(){return Jm})),o.d(n,"cssStyleElementWOOAddToCartButtonColor",(function(){return Tm})),o.d(n,"cssStyleElementWOOAddToCartLabelFontFamily",(function(){return zm})),o.d(n,"cssStyleElementWOOAddToCartLabelFontSize",(function(){return Em})),o.d(n,"cssStyleElementWOOAddToCartLabelLineHeight",(function(){return km})),o.d(n,"cssStyleElementWOOAddToCartLabelFontWeight",(function(){return Hm})),o.d(n,"cssStyleElementWOOAddToCartLabelLetterSpacing",(function(){return Fm})),o.d(n,"cssStyleElementWOOAddToCartValueFontFamily",(function(){return _m})),o.d(n,"cssStyleElementWOOAddToCartValueFontSize",(function(){return Rm})),o.d(n,"cssStyleElementWOOAddToCartValueLineHeight",(function(){return Lm})),o.d(n,"cssStyleElementWOOAddToCartValueFontWeight",(function(){return Mm})),o.d(n,"cssStyleElementWOOAddToCartValueLetterSpacing",(function(){return Im})),o.d(n,"cssStyleElementWOOAddToCartLabelColor",(function(){return Wm})),o.d(n,"cssStyleElementWOOAddToCartValueColor",(function(){return Nm}));o.d(n,"cssStyleElementWOOAddToCartClearFontFamily",(function(){return Am})),o.d(n,"cssStyleElementWOOAddToCartClearFontSize",(function(){return Vm})),o.d(n,"cssStyleElementWOOAddToCartClearLineHeight",(function(){return Dm})),o.d(n,"cssStyleElementWOOAddToCartClearFontWeight",(function(){return $m})),o.d(n,"cssStyleElementWOOAddToCartClearLetterSpacing",(function(){return Gm})),o.d(n,"cssStyleElementWOOAddToCartClearColor",(function(){return Um})),o.d(n,"cssStyleElementWOOAddToCartTableMargin",(function(){return Km})),o.d(n,"cssStyleElementWOOAddToCartTableBorder",(function(){return Ym})),o.d(n,"cssStyleElementWOOAddToCartTableBg",(function(){return Xm})),o.d(n,"cssStyleElementWOOAddToCartTableBoxShadow",(function(){return Qm})),o.d(n,"cssStyleElementWOOAddToCartBorder",(function(){return eh})),o.d(n,"cssStyleElementWOOAddToCartBorderRadius",(function(){return th})),o.d(n,"cssStyleElementWOOGalleryBorderRadiusThumbnail",(function(){return nh})),o.d(n,"cssStyleElementWOOGalleryBorderThumbnail",(function(){return oh})),o.d(n,"cssStyleElementWOOGalleryBoxShadowThumbnail",(function(){return ah})),o.d(n,"cssStyleElementWOOGallerySpacing",(function(){return rh})),o.d(n,"cssStyleElementWOOGalleryParentSize",(function(){return ih})),o.d(n,"cssStyleElementWOOGalleryBetweenThumbnail",(function(){return lh})),o.d(n,"cssStyleElementWOOGalleryThumbnailSize",(function(){return sh})),o.d(n,"cssStyleElementWOOGalleryChildStyle",(function(){return ch})),o.d(n,"cssStyleElementWOOGallerySpacingStyleLeftRigth",(function(){return dh})),o.d(n,"cssStyleElementWOOGalleryZoomReposition",(function(){return uh})),o.d(n,"cssStyleElementTitleTextShadow",(function(){return bh}));o(80);var a=o(65);function r(e){return function(e,t){let o=1540483477,n=t^e.length,a=e.length,r=0;for(;a>=4;){let t=i(e,r);t=s(t,o),t^=t>>>24,t=s(t,o),n=s(n,o),n^=t,r+=4,a-=4}switch(a){case 3:n^=l(e,r),n^=e.charCodeAt(r+2)<<16,n=s(n,o);break;case 2:n^=l(e,r),n=s(n,o);break;case 1:n^=e.charCodeAt(r),n=s(n,o)}return n^=n>>>13,n=s(n,o),n^=n>>>15,n>>>0}(e).toString(36)}function i(e,t){return e.charCodeAt(t++)+(e.charCodeAt(t++)<<8)+(e.charCodeAt(t++)<<16)+(e.charCodeAt(t)<<24)}function l(e,t){return e.charCodeAt(t++)+(e.charCodeAt(t++)<<8)}function s(e,t){return(65535&(e|=0))*(t|=0)+(((e>>>16)*t&65535)<<16)|0}var c=o(16);const d=c.d?{desktop:1500}:{desktop:1500,tablet:991,mobile:767},u=c.d?{normal:"normal"}:{normal:"normal",hover:"hover"};let p={};function b({v:e,vs:t,vd:o,styles:a,props:r}){if(o){const{defaultCSS:i,rulesCSS:l,customCSS:s}=function({v:e,vs:t,vd:o,styles:a,props:r}){let i="",l="",s="",c={},b={},h={},v="";Object.entries(d).forEach((function([d,p]){Object.entries(u).forEach((function([u,p]){"desktop"!==d&&"normal"!==u||Object.entries(a).forEach((function([a,p]){Object.entries(p).forEach((function([p,m]){m.forEach((function(p){const m=p.split("|||");v=2===m.length?m[1]:"";const f=m[0];if(!n[f])throw`The style function ${f} is missing`;i=n[f]({v:e,device:d,state:u,mode:v,props:r}),c=g({legacy:c,out:i,styleKey:a,state:u,currentStyle:p}),l=n[f]({v:t,device:d,state:u,mode:v,props:r}),b=g({legacy:b,out:l,styleKey:a,state:u,currentStyle:p}),s=n[f]({v:o,device:d,state:u,mode:v,props:r}),h=g({legacy:h,out:s,styleKey:a,state:u,currentStyle:p})}))}))}))}))}));const f=m({v:void 0,styles:a,legacy:h});p=h;const y=m({v:t,styles:a,legacy:b});p=b;const O=m({v:e,styles:a,legacy:c});return{defaultCSS:f,rulesCSS:y,customCSS:O}}({v:e,vs:t,vd:o,styles:a,props:r});return[i,l,s]}throw new Error("this should not happen. we must have accidentally omitted some element")}function m({v:e,styles:t,legacy:o}){let n="",a="",r="",i="",l="",s=0,c="",b="";return Object.entries(d).forEach((function([d,m],h,g){Object.entries(u).forEach((function([u,h]){o[u]&&(r="",i="",Object.entries(o[u]).forEach((function([l,c]){let d;n="",a="",Object.entries(c).forEach((function([r,i]){let c=i[s];e&&JSON.stringify(p[u][l][r])===JSON.stringify(o[u][l][r])&&(c=""),n+=t[l].standart&&-1!==t[l].standart.indexOf(r)&&""!==c&&void 0!==c?c:"",a+=t[l].interval&&-1!==t[l].interval.indexOf(r)&&""!==c&&void 0!==c?c:""})),d="normal"===u?l.replace(":hover","")+"{":l+"{",""!==n&&(r+=d+n+"}"),""!==a&&(i+=d+a+"}")}))),""!==r&&(c="desktop"===d&&"hover"===u?`@media(min-width:${g[s+1][1]}px){`:"desktop"===d?"":s===g.length-1?`@media(max-width:${m}px){`:`@media(max-width:${g[s][1]}px) and (min-width:${g[s+1][1]+1}px){`,l+=c+r+(""!==c?"}":"")),""!==i&&(b=g.length>1?0===s?`@media(min-width:${g[s+1][1]}px){`:s===g.length-1?`@media(max-width:${m}px){`:`@media(max-width:${g[s][1]}px) and (min-width:${g[s+1][1]+1}px){`:"",l+=b+i+(""!==b?"}":""))})),s++})),l}function h(e,t){let o=e;const n=new RegExp(t+"{(.+?)}");let a={};if(d.mobile){const t=/@media\(max-width:767px\)\{(.+?\})\}/,i=e.match(t)[1];a.mobile=r(i.match(n)[1].split(";")),o=o.replace(t,"")}if(d.tablet){const t=/@media\(max-width:991px\) and \(min-width:768px\){(.+?\})\}/,i=e.match(t)[1];a.tablet=r(i.match(n)[1].split(";")),o=o.replace(t,"")}return a.desktop=r(o.match(n)[1].split(";")),a;function r(e){return e.reduce((e,t)=>{const[o,n]=t.split(":");return o&&n&&(e[o]=n),e},{})}}function g({legacy:e,out:t,styleKey:o,state:n,currentStyle:a}){return"hover"===n&&e.normal&&e.normal[o]&&e.normal[o][a]&&(t=e.normal[o][a][0]===t?"":t),e[n]?e[n][o]?e[n][o][a]?e[n][o][a].push(t):e[n][o][a]=[t]:e[n][o]={[a]:[t]}:e[n]={[o]:{[a]:[t]}},e}function v(e,t,[o,n,i]){let l,s,c;if(o)if(l=C.get(e),l){const{node:e,className:t,cssText:n}=l,a=S(o,t);a!==n&&(v.isServer||(e.childNodes[0].nodeValue=a),l.cssText=a)}else{const t="brz-css-"+Object(a.a)(5),n=S(o,t);let r;v.isServer||(r=document.createElement("style"),r.appendChild(document.createTextNode("")),r.childNodes[0].nodeValue=n,x("default",r)),l={node:r,className:t,cssText:n},j.default.push(l),C.set(e,l)}if(n){const e=r(n);if(s=C.get(e),!s){const t="brz-css-"+Object(a.a)(5),o=S(n,t);let r;v.isServer||(r=document.createElement("style"),r.appendChild(document.createTextNode("")),r.childNodes[0].nodeValue=o,x("rules",r)),s={node:r,className:t,cssText:o},j.rules.push(s),C.set(e,s)}}if(i)if(c=C.get(t),c){const{node:e,className:t,cssText:o}=c,n=S(i,t);n!==o&&(v.isServer||(e.childNodes[0].nodeValue=n),c.cssText=n)}else{const e="brz-css-"+Object(a.a)(5),o=S(i,e);let n;v.isServer||(n=document.createElement("style"),n.appendChild(document.createTextNode("")),n.childNodes[0].nodeValue=o,x("custom",n)),c={node:n,className:e,cssText:o},j.custom.push(c),C.set(t,c)}return[...l?[l.className]:[],...s?[s.className]:[],...c?[c.className]:[]].join(" ")}function f(e,t,o=S){let n;if(n=C.get(e),n){const{node:a,className:r,cssText:i}=n,l=o(t,r);l!==i&&(v.isServer||(a.childNodes[0].nodeValue=l),n={node:a,className:r,cssText:l},C.set(e,n))}else{const r="brz-css-"+Object(a.a)(5),i=o(t,r);let l;v.isServer||(l=document.createElement("style"),l.appendChild(document.createTextNode("")),l.childNodes[0].nodeValue=i,x("custom",l)),n={node:l,className:r,cssText:i},j.custom.push(n),C.set(e,n)}return{className:n.className,cssText:n.cssText,clean(){const t=C.get(e);document.head.removeChild(t.node),C.delete(e)}}}function y(){for(const[e]of C)C.clear(e)}function O(){let e="";for(const t of["default","rules","custom"])for(const{cssText:o}of j[t])e+=o,e+="\n";return e}function S(e,t){return e.replace(/&&/gm,"."+t)}function x(e,t){const o=j.default,n=j.rules,a=j.custom;let r;switch(e){case"default":r=o.length>0?o[o.length-1].node:null;break;case"rules":r=n.length>0?n[n.length-1].node:o.length>0?o[o.length-1].node:null;break;case"custom":r=a.length>0?a[a.length-1].node:n.length>0?n[n.length-1].node:o.length>0?o[o.length-1].node:null;break;default:throw new Error("invalid tujur css node type: "+e)}r?r.insertAdjacentElement("afterend",t):document.head.appendChild(t)}const C=new Map,j={default:[],rules:[],custom:[]};var P=o(2),B=o(5),w=o(33),T=o(24),z=o(3);function E(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function k(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?E(Object(o),!0).forEach((function(t){Object(P.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):E(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function H(e){const t=Object(B.Zd)(e);return void 0===t?"":`width:${t}%;`}function F(e){const t=Object(B.Zd)(e);return void 0===t?"":`width:${t}px;`}function _(e){const t=Object(B.Zd)(e);return c.d&&void 0!==t?`width:${t}%;`:""}function R(e){const t=Object(B.Zd)(e);return void 0===t?"":`max-width:${t}%;`}function L(e){var t;return null!==(t=Object(w.c)(e=>`height:${e}px;`,Object(B.Vd)(e)))&&void 0!==t?t:""}function M(e){var t;return null!==(t=Object(w.c)(e=>`min-height:${e}px;`,Object(B.Vd)(e)))&&void 0!==t?t:""}function I(e){const t=Object(B.Wd)(e),o=T.d(Object(z.defaultValueValue)(k({key:"sizeSuffix"},e)))||"%";return void 0===t?"":`max-width:${t}${o};`}function W(e){const t=Object(B.Wd)(e);return void 0===t?"":`width:${t}%;`}function N(e){const t=Object(B.Wd)(e),o=T.d(Object(z.defaultValueValue)(k({key:"sizeSuffix"},e)));return void 0!==t&&o?`width:${t}${o};`:""}function A(e){const t=Object(B.Zd)(e),o=T.d(Object(z.defaultValueValue)(k({key:"widthSuffix"},e)));return void 0===t?"":`width:${t}${o||"%"};`}function V(e){const t=Object(B.Ud)(e);return"desktop"===e.device?`max-width: ${t}%;`:""}function D(e){var t;return null!==(t=Object(w.c)(e=>`margin-right: ${e}px;`,Object(B.Xd)(e)))&&void 0!==t?t:""}function $(e){var t;return null!==(t=Object(w.c)(e=>`margin-right: ${e}px;`,Object(B.Yd)(e)))&&void 0!==t?t:""}function G(e){var t;const o=T.d(Object(z.defaultValueValue)(k({key:"heightSuffix"},e)));return"px"===o?null!==(t=Object(w.c)(e=>`height:${e}${o};`,Object(B.Vd)(e)))&&void 0!==t?t:"":"%"===o?"height: unset;":""}function U(e){var t;const o=T.d(Object(z.defaultValueValue)(k({key:"heightSuffix"},e)));return"%"===o?null!==(t=Object(w.c)(e=>`content: ""; display:block; width: 0; padding-top:${e}${o};`,Object(B.Vd)(e)))&&void 0!==t?t:"":"px"===o?"height: unset;":""}function K({v:e,device:t,state:o}){const n=Object(B.u)({v:e,device:t,state:o,current:"top"}),a=Object(B.r)({v:e,device:t,state:o}),r=Object(B.n)({v:e,device:t,state:o});return void 0===n?"":`border-top:${n}px ${a} ${r};`}function Y({v:e,device:t,prefix:o=""}){return`font-family:${Object(B.ge)({v:e,device:t,prefix:o})};`}function q({v:e,device:t,prefix:o=""}){return`font-size:${Object(B.he)({v:e,device:t,prefix:o})}${Object(B.ie)({v:e,device:t,prefix:o})||"px"};`}function X({v:e,device:t,prefix:o=""}){return`line-height:${Object(B.le)({v:e,device:t,prefix:o})};`}function Z({v:e,device:t,prefix:o=""}){return`font-weight:${Object(B.je)({v:e,device:t,prefix:o})};`}function J({v:e,device:t,prefix:o=""}){return`letter-spacing:${Object(B.ke)({v:e,device:t,prefix:o})}px;`}function Q({v:e,device:t}){return Y({v:e,device:t,prefix:"typography"})}function ee({v:e,device:t}){return q({v:e,device:t,prefix:"typography"})}function te({v:e,device:t}){return X({v:e,device:t,prefix:"typography"})}function oe({v:e,device:t}){return Z({v:e,device:t,prefix:"typography"})}function ne({v:e,device:t}){return J({v:e,device:t,prefix:"typography"})}function ae({v:e,device:t}){return`font-size:${Object(B.me)({v:e,device:t})};`}function re({v:e,device:t}){return`margin-left:${Object(B.bb)({v:e,device:t})};`}function ie({v:e,device:t}){return`margin-right:${Object(B.bb)({v:e,device:t})};`}function le({v:e,device:t}){return Y({v:e,device:t,prefix:"number"})}function se({v:e,device:t}){return q({v:e,device:t,prefix:"number"})}function ce({v:e,device:t}){return X({v:e,device:t,prefix:"number"})}function de({v:e,device:t}){return Z({v:e,device:t,prefix:"number"})}function ue({v:e,device:t}){return J({v:e,device:t,prefix:"number"})}function pe({v:e,device:t}){return Y({v:e,device:t,prefix:"title"})}function be({v:e,device:t}){return q({v:e,device:t,prefix:"title"})}function me({v:e,device:t}){return X({v:e,device:t,prefix:"title"})}function he({v:e,device:t}){return Z({v:e,device:t,prefix:"title"})}function ge({v:e,device:t}){return J({v:e,device:t,prefix:"title"})}function ve({v:e,device:t}){return Y({v:e,device:t,prefix:"message"})}function fe({v:e,device:t}){return q({v:e,device:t,prefix:"message"})}function ye({v:e,device:t}){return X({v:e,device:t,prefix:"message"})}function Oe({v:e,device:t}){return Z({v:e,device:t,prefix:"message"})}function Se({v:e,device:t}){return J({v:e,device:t,prefix:"message"})}function xe({v:e,device:t,state:o}){return St({v:e,device:t,state:o,prefix:"numberColor"})}function Ce({v:e,device:t,state:o}){return St({v:e,device:t,state:o,prefix:"titleColor"})}function je({v:e,device:t,state:o}){return St({v:e,device:t,state:o,prefix:"messageColor"})}function Pe(){return"transition-property: color, background-color, border, box-shadow;"}function Be({v:e}){return`stroke-dasharray: calc(${e.end} + 0.5) 100;`}function we({v:e}){return`stroke-width: ${e.strokeWidth} !important;`}function Te({v:e,device:t,state:o,prefix:n="fillColor"}){const a=Object(B.cb)({v:e,device:t,state:o,prefix:n});return void 0===a?"":`fill:${a};`}function ze({v:e,device:t,state:o,prefix:n="strokeColor"}){const a=Object(B.db)({v:e,device:t,state:o,prefix:n});return void 0===a?"":`stroke:${a};`}function Ee(){return"transition-property: color, fill, stroke;"}function ke({v:e,device:t,state:o}){return`flex-direction:${Object(B.fb)({v:e,device:t,state:o})};`}function He({v:e,device:t,state:o}){return`margin-right:${Object(B.hb)({v:e,device:t,state:o})};`}function Fe({v:e,device:t,state:o}){return`margin-left:${Object(B.gb)({v:e,device:t,state:o})};`}function _e({v:e,device:t,state:o,prefix:n}){const a=Object(B.B)({v:e,device:t,state:o,prefix:n});return void 0===a?"":`-webkit-text-fill-color:${a} !important;`}function Re(){return"transition-property:background-color,color,border,box-shadow;"}function Le({v:e,device:t}){var o;return`width: ${o="inputWidth",Object(z.defaultValueValue)({v:e,key:o,device:t})}%;`}function Me({v:e,device:t}){var o;return`grid-gap: ${o="inputSpacing",Object(z.defaultValueValue)({v:e,key:o,device:t})}px;`}function Ie({v:e,device:t}){var o;return`padding: ${o="inputHeight",Object(z.defaultValueValue)({v:e,key:o,device:t})}px;`}function We({v:e,device:t,state:o,prefix:n="",borderColor:a="color"}){let r="",i=0,l=0,s=0,c=0,d=Object(B.t)({v:e,device:t,state:o,prefix:n}),u="",p=0,b=0,m=0,h=0,g=!1,v="",f="";const y=Object(B.r)({v:e,device:t,state:o,prefix:n});if(a="transparent"===a?"transparent":Object(B.n)({v:e,device:t,state:o,prefix:n}),"grouped"===d){const a=Object(B.s)({v:e,device:t,state:o,prefix:n});i=a,l=a,s=a,c=a}else i=Object(B.u)({v:e,device:t,state:o,prefix:n,current:"top"}),l=Object(B.u)({v:e,device:t,state:o,prefix:n,current:"right"}),s=Object(B.u)({v:e,device:t,state:o,prefix:n,current:"bottom"}),c=Object(B.u)({v:e,device:t,state:o,prefix:n,current:"left"});if("normal"===o){if(v=Object(B.r)({v:e,device:t,prefix:n,state:"hover"}),f="transparent"===a?"transparent":Object(B.n)({v:e,device:t,prefix:n,state:"hover"}),u=Object(B.t)({v:e,device:t,prefix:n,state:"hover"}),"grouped"===u){const o=Object(B.s)({v:e,device:t,state:"hover"});p=o,b=o,m=o,h=o}else p=Object(B.u)({v:e,device:t,prefix:n,state:"hover",current:"top"}),b=Object(B.u)({v:e,device:t,prefix:n,state:"hover",current:"right"}),m=Object(B.u)({v:e,device:t,prefix:n,state:"hover",current:"bottom"}),h=Object(B.u)({v:e,device:t,prefix:n,state:"hover",current:"left"});g=(p>0||b>0||m>0||h>0)&&""!==v}return r=void 0===i||void 0===l||void 0===s||void 0===c||void 0===y||void 0===a?"":i===l&&i===s&&i===c&&i>0&&""!==y?`border:${i}px ${y} ${a};`:(i>0||l>0||s>0||c>0)&&""!==y?`border-width:${i}px ${l}px ${s}px ${c}px;border-style:${y};border-color:${a};`:(i===l&&i===s&&i===c&&0===i||""===y)&&g?`border:0px ${v} ${f};`:`border:0px solid ${a};`,r}function Ne({v:e,device:t,state:o,prefix:n="",borderColor:a="transparent"}){return We({v:e,device:t,state:o,prefix:n,borderColor:a})}function Ae({v:e,device:t,state:o,prefix:n=""}){let a=0,r=0,i=0,l=0;if("ungrouped"!==Object(B.p)({v:e,device:t,state:o,prefix:n})){const s=Object(B.o)({v:e,device:t,state:o,prefix:n});a=s,r=s,i=s,l=s}else a=Object(B.q)({v:e,device:t,state:o,prefix:n,current:"topLeft"}),r=Object(B.q)({v:e,device:t,state:o,prefix:n,current:"topRight"}),i=Object(B.q)({v:e,device:t,state:o,prefix:n,current:"bottomLeft"}),l=Object(B.q)({v:e,device:t,state:o,prefix:n,current:"bottomRight"});return void 0===a?"":a===r&&a===i&&a===l&&a>0?`border-radius: ${a}px;`:a>0||r>0||i>0||l>0?`border-radius:${a}px ${r}px ${l}px ${i}px;`:"border-radius:0;"}function Ve({v:e,device:t,state:o}){return`width:calc(100% + ${Object(B.lb)({v:e,device:t,state:o})}px);`}function De({v:e,device:t,state:o}){return`margin:-${Object(B.lb)({v:e,device:t,state:o})/2}px;`}function $e({v:e,device:t,state:o}){const n=Object(B.kb)({v:e,device:t,state:o});return`width:${n>1?100/n:100}%;`}function Ge({v:e,device:t,state:o}){return`padding:${Object(B.lb)({v:e,device:t,state:o})/2}px;`}function Ue({v:e,device:t,state:o}){const n=(a="filterSpacing",Object(z.defaultValueValue)({v:e,key:a,device:t,state:o}));var a;return`margin: 1px ${n}px 0 ${n}px;`}function Ke({v:e,device:t,state:o}){var n;return`margin-bottom:${n="afterFilterSpacing",Object(z.defaultValueValue)({v:e,key:n,device:t,state:o})}px;`}function Ye({v:e,device:t,state:o}){const n=Object(B.jb)({v:e,device:t,state:o}),a=Object(B.c)({v:e,device:t,state:o,prefix:"filter"});switch(n){case"style-2":return"center"===a?"":"left"===a?"margin-right: auto;":"margin-left: auto;";default:{const e={left:"flex-start",center:"center",right:"flex-end"};return`justify-content:${void 0===a?a:e[a]};`}}}function qe({v:e,device:t,state:o}){return Vo({v:e,device:t,state:o,prefix:"filter"})}function Xe({v:e,device:t,state:o}){return St({v:e,device:t,state:o,prefix:"filterColor"})}function Ze({v:e,device:t,state:o}){return dt({v:e,device:t,state:o,prefix:"filterBg"})}function Je({v:e,device:t,state:o}){return jt({v:e,device:t,state:o,prefix:"filter"})}function Qe({v:e,device:t,state:o}){return We({v:e,device:t,state:o,prefix:"filter"})}function et({v:e,device:t,state:o}){return Ae({v:e,device:t,state:o,prefix:"filter"})}function tt({v:e,device:t}){return Y({v:e,device:t,prefix:"filter"})}function ot({v:e,device:t}){return q({v:e,device:t,prefix:"filter"})}function nt({v:e,device:t}){return X({v:e,device:t,prefix:"filter"})}function at({v:e,device:t}){return Z({v:e,device:t,prefix:"filter"})}function rt({v:e,device:t}){return J({v:e,device:t,prefix:"filter"})}function it({v:e,device:t}){return St({v:e,device:t,state:"active",prefix:"filterColor"})}function lt({v:e,device:t}){return dt({v:e,device:t,state:"active",prefix:"filterBg"})}function st({v:e,device:t}){return We({v:e,device:t,state:"active",prefix:"filter"})}function ct({v:e,device:t}){return jt({v:e,device:t,state:"active",prefix:"filter"})}function dt({v:e,device:t,state:o,prefix:n="bg"}){const a=Object(B.h)({v:e,device:t,state:o,prefix:n}),r=Object(B.j)({v:e,device:t,state:o});return void 0===a||"none"!==r?"background-color:transparent;":`background-color:${a};`}function ut({v:e,device:t,state:o,prefix:n="bg"}){const a=Object(B.i)({v:e,device:t,state:o,prefix:n});return void 0===a?"":`background-color:${a};`}function pt({v:e,device:t,state:o}){return dt({v:e,device:t,state:o,prefix:"bg2"})}function bt({v:e,device:t,state:o}){return`background-image:${Object(B.j)({v:e,device:t,state:o})};`}function mt({v:e,device:t,state:o}){return`background-image:${Object(B.k)({v:e,device:t,state:o})};`}function ht({v:e,device:t}){const o=Object(B.k)({v:e,device:t,state:"hover"});return o?`content: "";background-image:${o};`:""}function gt({v:e,device:t}){return"image"===Object(B.wd)({v:e,device:t})?"display: block;":"display: none;"}function vt({v:e,device:t,state:o}){const n=Object(B.k)({v:e,device:t,state:o}),a=Object(B.l)({v:e,device:t,state:o}),r=Object(B.m)({v:e,device:t,state:o});return"none"===n?"":`background-position:${a} ${r};`}function ft({v:e,device:t,props:o}){const{isSlider:n}=o.meta.section,a=Object(B.g)({v:e,isSlider:n});return"desktop"!==t||void 0===a?"":`background-attachment:${a};`}function yt({v:e,device:t}){return`display: ${"map"===Object(B.wd)({v:e,device:t})?"block":"none"};`}function Ot({v:e,device:t}){return`display: ${"video"===Object(B.wd)({v:e,device:t})?"block":"none"};`}function St({v:e,device:t,state:o,prefix:n}){const a=Object(B.B)({v:e,device:t,state:o,prefix:n});return void 0===a?"":`color:${a};`}function xt({v:e,device:t,state:o}){const n=Object(B.B)({v:e,device:t,state:o,prefix:"labelColor"});return void 0===n?"":`color:${n};`}function Ct({v:e,device:t,state:o,prefix:n=""}){const a=Object(B.z)({v:e,device:t,state:o,prefix:n}),r=Object(B.w)({v:e,device:t,state:o,prefix:n}),i=Object(B.v)({v:e,device:t,state:o,prefix:n}),l=Object(B.y)({v:e,device:t,state:o,prefix:n}),s="inset"===a?-1*Object(B.x)({v:e,device:t,state:o,prefix:n}):Object(B.x)({v:e,device:t,state:o,prefix:n}),c="inset"===a?-1*Object(B.A)({v:e,device:t,state:o,prefix:n}):Object(B.A)({v:e,device:t,state:o,prefix:n});if(""===a||"off"===a||0===s&&0===c&&0===i&&0===l)return"";return`${"inset"===a?"inset ":""}${s}px ${c}px ${i}px ${l}px ${r};`}function jt({v:e,device:t,state:o,prefix:n=""}){const a=Ct({v:e,device:t,state:o,prefix:n});return""===a?"":`box-shadow:${a};`}function Pt({v:e,device:t,state:o,prefix:n=""}){const a=Object(B.z)({v:e,device:t,state:o,prefix:n}),r=Object(B.A)({v:e,device:t,state:o,prefix:n}),i=Object(B.v)({v:e,device:t,state:o,prefix:n}),l=Object(B.w)({v:e,device:t,state:o,prefix:n}),s=r<0?-i:i;return""===a||"off"===a||0===r&&0===i?"":0===r?`box-shadow:inset 0 ${r+s}px ${i}px -${i}px ${l}, inset 0 -${r+s}px ${i}px -${i}px ${l};display: block;`:`box-shadow:inset 0 ${r+s}px ${i}px -${i}px ${l}, inset 0 0 0 0 ${l};display: block;`}function Bt({v:e,device:t,state:o,prefix:n=""}){const a=function({v:e,device:t,state:o,prefix:n=""}){const a=Object(B.ee)({v:e,device:t,state:o,prefix:n}),r=Object(B.ce)({v:e,device:t,state:o,prefix:n}),i=Object(B.be)({v:e,device:t,state:o,prefix:n}),l="inset"===a?-1*Object(B.de)({v:e,device:t,state:o,prefix:n}):Object(B.de)({v:e,device:t,state:o,prefix:n}),s="inset"===a?-1*Object(B.fe)({v:e,device:t,state:o,prefix:n}):Object(B.fe)({v:e,device:t,state:o,prefix:n});return""===a||"off"===a||0===l&&0===s&&0===i?"":`${"inset"===a?"inset ":""}${l}px ${s}px ${i}px ${r};`}({v:e,device:t,state:o,prefix:n});return""===a?"":`text-shadow:${a};`}function wt({v:e,device:t,state:o}){const n=Object(B.Qd)({v:e,device:t,state:o}),a=Object(B.Pd)({v:e,device:t,state:o});return void 0===n?"":"none"===n?"background-image: none;":`background-image: url(${a});`}function Tt({v:e,device:t,state:o}){const n=Object(B.Md)({v:e,device:t,state:o}),a=Object(B.Nd)({v:e,device:t,state:o});return`background-size: 100% ${n}${a}; height: ${n}${a};`}function zt({v:e,device:t,state:o}){return`transform: ${"on"===Object(B.Ld)({v:e,device:t,state:o})?"rotateX(0deg) rotateY(-180deg)":"rotateX(0deg) rotateY(0deg)"};`}function Et({v:e,device:t,state:o}){return`z-index: ${Object(B.Od)({v:e,device:t,state:o})};`}function kt({v:e,device:t,state:o}){const n=Object(B.Kd)({v:e,device:t,state:o}),a=Object(B.Jd)({v:e,device:t,state:o});return void 0===n?"":"none"===n?"background-image: none;":`background-image: url(${a});`}function Ht({v:e,device:t,state:o}){const n=Object(B.Gd)({v:e,device:t,state:o}),a=Object(B.Hd)({v:e,device:t,state:o});return`background-size: 100% ${n}${a}; height: ${n}${a};`}function Ft({v:e,device:t,state:o}){return`transform: ${"on"===Object(B.Fd)({v:e,device:t,state:o})?"rotateX(-180deg) rotateY(0deg)":"rotateX(-180deg) rotateY(-180deg)"};`}function _t({v:e,device:t,state:o}){return`z-index: ${Object(B.Id)({v:e,device:t,state:o})};`}function Rt({v:e,device:t,state:o}){const n=Object(B.gd)({v:e,device:t,state:o});return void 0===n?"":`transition-duration:0.${n}s;`}function Lt(){return"transition-property: filter, box-shadow, background, border-radius, border-color;"}function Mt({v:e,device:t,state:o}){const n=Object(B.ne)({v:e,device:t,state:o});return void 0===n?"":`font-family:${n};`}function It({v:e,device:t,state:o}){const n=Object(B.oe)({v:e,device:t,state:o}),a=Object(B.pe)({v:e,device:t,state:o});return void 0===n?"":`font-size:${n}${a||"px"};`}function Wt({v:e,device:t,state:o}){const n=Object(B.se)({v:e,device:t,state:o});return void 0===n?"":`line-height:${n};`}function Nt({v:e,device:t,state:o}){const n=Object(B.qe)({v:e,device:t,state:o});return void 0===n?"":`font-weight:${n};`}function At({v:e,device:t,state:o}){const n=Object(B.re)({v:e,device:t,state:o});return void 0===n?"":`letter-spacing:${n}px;`}function Vt({v:e,device:t,state:o}){const n=Object(B.Ad)({v:e,device:t,state:o,current:"paddingTop"}),a=Object(B.Ad)({v:e,device:t,state:o,current:"paddingRight"});return void 0===n&&void 0===a?"":`padding:${n}px ${a}px;`}function Dt({v:e,device:t,state:o}){const n=Object(B.Lb)({v:e,device:t,state:o});return void 0===n?"":`max-width:${n}%;`}function $t(){return"transition-property: color, box-shadow, background, border;"}var Gt=o(9),Ut=o(17),Kt=o(13),Yt=o(43);function qt(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function Xt(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?qt(Object(o),!0).forEach((function(t){Object(P.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):qt(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function Zt(e){const t=function({v:e,device:t,state:o}){return n="marginTop",Object(z.defaultValueValue)({v:e,key:n,device:t,state:o});var n}(e);return void 0===t?"":`margin-top:${t}px !important;`}function Jt(e){const t=function({v:e,device:t,state:o}){return n="marginBottom",Object(z.defaultValueValue)({v:e,key:n,device:t,state:o});var n}(e);return void 0===t?"":`margin-bottom:${t}px !important;`}function Qt({v:e,device:t,state:o}){const n=["background-image:"+function({v:e,device:t,state:o="normal"}){const n=n=>Object(z.defaultValueValue)({v:e,key:n,device:t,state:o}),a=n("colorType"),r=n("gradientType"),{hex:i}=Object(Kt.d)(n("colorHex"),n("colorPalette")),{hex:l}=Object(Kt.d)(n("gradientColorHex"),n("gradientColorPalette")),s=n("colorOpacity"),c=n("gradientColorOpacity"),d=n("gradientStartPointer"),u=n("gradientFinishPointer"),p=n("gradientLinearDegree"),b=n("gradientRadialDegree");return"gradient"===a?"linear"===r?`linear-gradient(${p}deg, ${Object(Ut.c)(i,s)} ${d}%, ${Object(Ut.c)(l,c)} ${u}%)`:`radial-gradient(circle ${b}px, ${Object(Ut.c)(i,s)} ${d}%, ${Object(Ut.c)(l,c)} ${u}%)`:"none"}({v:e,device:t,state:o}),"background-clip: text","-webkit-background-clip: text","color: transparent !important"];return"gradient"===e.colorType?n.join(";")+";":""}function eo(e){return c.d?`font-size:${.23*Object(B.he)(Xt(Xt({},e),{},{prefix:"typography"}))}%;`:ee(e)}function to({v:e,device:t,state:o}){const n=Object(B.k)({v:e,device:t,state:o}),a={"background-clip":"text","-webkit-background-clip":"text",color:"transparent!important","caret-color":"#000","background-position":`${function({v:e,device:t,state:o}){return n="bgPositionX",Object(z.defaultValueValue)({v:e,key:n,device:t,state:o});var n}({v:e,device:t,state:o})}% ${function({v:e,device:t,state:o}){return n="bgPositionY",Object(z.defaultValueValue)({v:e,key:n,device:t,state:o});var n}({v:e,device:t,state:o})}%`,"background-image":n};return"none"===n?"":Object.entries(a).map(([e,t])=>`${e}: ${t}`).join(";")+";"}function oo({v:e,device:t,prefix:o="typography",state:n}){return`font-family:${function({v:e,device:t,state:o,prefix:n=""}){const a=n=>Object(z.defaultValueValue)({v:e,key:n,device:t,state:o}),r=Object(Gt.b)(n,"fontFamily"),i=Object(Gt.b)(n,"fontFamilyType"),l=Object(Gt.b)(n,"fontStyle"),s=Object(Kt.e)("fontFamily",e[r],a(l)),c=Object(Kt.e)("fontFamilyType",e[i],a(l));if(s)return Object(Yt.d)({type:c,family:s}).family}({v:e,device:t,prefix:o,state:n})} !important;`}function no({v:e,device:t,state:o}){var n;const a=((e,t)=>"hover"===Object(B.ae)({v:e,state:t})?"hover":t)(e,o),r=o=>Object(z.defaultValueValue)({v:e,key:o,device:t,state:a}),{hex:i}=Object(Kt.d)(r(Object(Gt.b)("color","hex")),r("block-colorPalette")),l=null!==(n=Object(Ut.c)(i,r(Object(Gt.b)("color","opacity"))))&&void 0!==n?n:"";return void 0===l?"":`color:${l};`}function ao({v:e,device:t,state:o}){const n=Object(B.R)({v:e,device:t,state:o});return void 0===n?"":`border-radius:${n}px;`}function ro({v:e,device:t,state:o}){const n=Object(B.V)({v:e,device:t,state:o});return void 0===n?"":`flex-flow:${n};`}function io({v:e,device:t,state:o}){const n=Object(B.S)({v:e,device:t,state:o});return void 0===n?"":`font-size:${n}px;`}function lo({v:e,device:t,state:o}){const n=Object(B.U)({v:e,device:t,state:o}),a=Object(B.T)({v:e,device:t,state:o});return void 0===n||void 0===a?"":"left"===n?`margin-right:${a}px;margin-left:0;`:`margin-left:${a}px;margin-right:0;`}function so({v:e,device:t,state:o}){const n=Object(B.ib)({v:e,device:t,state:o});return void 0===n?"":`stroke-width:${n};`}function co(){return"transition-property: color, box-shadow, background, border-color;"}function uo(){return"align-items: center; justify-content: center;"}function po(){return"transition-property:box-shadow;"}function bo(){return"transition-property:color,border,box-shadow;"}function mo(){return"transition-property:border, box-shadow;"}function ho(){return"transition-property:box-shadow;"}function go(){return"transition-property:box-shadow;"}function vo(){return"transition-property:filter, box-shadow, border-radius, border;"}function fo({v:e,device:t,state:o}){return["fixed","absolute"].includes(Object(z.defaultValueValue)({v:e,key:"elementPosition",device:t,state:o}))?"height: unset":""}function yo(){return"transition-property: box-shadow, border, border-radius;"}function Oo({v:e,device:t,state:o}){const n=Object(B.O)({v:e,device:t,state:o}),a=Object(B.P)({v:e,device:t,state:o});return void 0===n?"":`width:${n}${a};`}function So({v:e,device:t,state:o}){const n=Object(B.J)({v:e,device:t,state:o});return void 0===n?"":`display:${n};`}function xo({v:e,device:t,state:o}){const n=Object(B.B)({v:e,device:t,state:o,prefix:"closeColor"});return void 0===n?"":`color:${n};`}function Co({v:e,device:t,state:o}){const n=Object(B.F)({v:e,device:t,state:o}),a=Object(B.D)({v:e,device:t,state:o});return void 0===n||void 0===a?"":`font-size:${n+2*a}px;`}function jo({v:e,device:t,state:o}){const n=Object(B.D)({v:e,device:t,state:o});return void 0===n?"":`padding:${n}px;`}function Po({v:e,device:t,state:o}){const n=Object(B.E)({v:e,device:t,state:o});return void 0===n?"":`border-radius:${n}px;`}function Bo({v:e,device:t,state:o}){const n=Object(B.h)({v:e,device:t,prefix:"closeBg",state:o});return void 0===n?"":`background-color:${n};`}function wo({v:e,device:t,state:o}){const n=Object(B.C)({v:e,device:t,state:o}),a=Object(B.G)({v:e,device:t,state:o}),r=Object(B.H)({v:e,device:t,state:o}),i=Object(B.K)({v:e,device:t,state:o}),l=Object(B.L)({v:e,device:t,state:o}),s=Object(B.F)({v:e,device:t,state:o}),c=Object(B.D)({v:e,device:t,state:o}),d=Object(B.I)({v:e,device:t,state:o}),u=`${"outside"===d?-i-s-2*c:i}${l}`,p=`${"outside"===d?-a-s-2*c:a}${r}`;switch(n){case"topLeft":return`top:${u};left:${p};right:auto;bottom:auto;`;case"topRight":return`top:${u};right:${p};left:auto;bottom:auto;`;case"bottomLeft":return`bottom:${u};left:${p};right:auto;top:auto;`;case"bottomRight":return`bottom:${u};right:${p};left:auto;top:auto;`}}function To({v:e,device:t,state:o}){const n=Object(B.b)({v:e,device:t,state:o,prefix:"popupRow"});return void 0===n?"":`align-items:${n};`}function zo({v:e,device:t,state:o}){const n=Object(B.Q)({v:e,device:t,state:o}),a=Object(B.M)({v:e,device:t,state:o}),r=Object(B.N)({v:e,device:t,state:o});return"custom2"===n?`height: ${a}${r};`:""}function Eo({v:e,device:t,state:o}){return"custom2"===Object(B.Q)({v:e,device:t,state:o})?"max-height: 100%; overflow-x: hidden; overflow-y: auto;":""}function ko({v:e,device:t,state:o}){return"custom2"===Object(B.Q)({v:e,device:t,state:o})?"height: 100%;":""}function Ho({v:e,device:t,state:o}){return"custom2"===Object(B.Q)({v:e,device:t,state:o})?"max-height: 100%;":""}function Fo({v:e,device:t,state:o}){const n=Object(B.te)({v:e,device:t,state:o}),a="relative"===(r="elementPosition",Object(z.defaultValueValue)({v:e,key:r,device:t,state:o}));var r;return 0===n&&a?"z-index: auto;":`z-index: ${n+(a?0:11)};`}function _o({v:e,device:t,state:o}){return`z-index: ${Object(B.te)({v:e,device:t,state:o})+1};`}function Ro({v:e,device:t,state:o}){const n=Object(B.b)({v:e,device:t,state:o});return void 0===n?"":`align-items:${n};`}function Lo({v:e,device:t,state:o}){const n=Object(B.a)({v:e,device:t,state:o});return void 0===n?"":`justify-content:${n};`}function Mo({v:e,device:t,state:o}){const n=Object(B.c)({v:e,device:t,state:o,prefix:"content"});return void 0===n?"":`text-align:${n};`}function Io({v:e,device:t,state:o,prefix:n=""}){const a=Object(B.c)({v:e,device:t,state:o,prefix:n});return void 0===a?"":{left:"margin-right: auto; margin-left: 0;",center:"margin-left: auto; margin-right: auto;",right:"margin-left: auto; margin-right: 0;"}[a]}function Wo({v:e,device:t,state:o}){const n=Object(B.b)({v:e,device:t,state:o});return void 0===n?"":`justify-content:${n};`}function No({v:e,device:t,state:o}){const n=Object(B.c)({v:e,device:t,state:o,prefix:"excerpt"});return void 0===n?"":`text-align:${n};`}function Ao({v:e,device:t,state:o}){const n=Object(B.Zd)({v:e,device:t,state:o});return n>0?`flex:1 1 ${n}%;`:""}function Vo({v:e,device:t,state:o,prefix:n=""}){const a=Ko({v:e,device:t,state:o,prefix:n}),r=a.paddingTop===a.paddingRight&&a.paddingTop===a.paddingBottom&&a.paddingTop===a.paddingLeft&&a.paddingTop>0;return 0===a.paddingTop&&0===a.paddingRight&&0===a.paddingBottom&&0===a.paddingLeft?"padding:0;":r?`padding:${a.paddingTop}${a.paddingTopSuffix};`:`padding:${a.paddingTop}${a.paddingTopSuffix} ${a.paddingRight}${a.paddingRightSuffix} ${a.paddingBottom}${a.paddingBottomSuffix} ${a.paddingLeft}${a.paddingLeftSuffix};`}function Do({v:e,device:t,state:o}){0}function $o({v:e,device:t,state:o}){{let n="";const a=Ko({v:e,device:t,state:o});return n=`height:${a.paddingTop}${a.paddingTopSuffix};`,n}}function Go({v:e,device:t,state:o}){{let n="";const a=Ko({v:e,device:t,state:o});return n=`height:${a.paddingBottom}${a.paddingBottomSuffix};`,n}}function Uo({v:e,device:t,state:o}){{let n="";const a=Ko({v:e,device:t,state:o});return n=`padding-right:${a.paddingRight}${a.paddingRightSuffix};padding-left:${a.paddingLeft}${a.paddingLeftSuffix};`,n}}function Ko({v:e,device:t,state:o,prefix:n=""}){let a=0,r=0,i=0,l=0,s="px",c="px",d="px",u="px";if("grouped"===Object(B.zd)({v:e,device:t,state:o,prefix:n})){const p=Object(B.xd)({v:e,device:t,state:o,prefix:n}),b=Object(B.yd)({v:e,device:t,state:o,prefix:n});a=p,r=p,i=p,l=p,s=b,c=b,d=b,u=b}else a=Object(B.Ad)({v:e,device:t,state:o,prefix:n,current:"paddingTop"}),r=Object(B.Ad)({v:e,device:t,state:o,prefix:n,current:"paddingRight"}),i=Object(B.Ad)({v:e,device:t,state:o,prefix:n,current:"paddingBottom"}),l=Object(B.Ad)({v:e,device:t,state:o,prefix:n,current:"paddingLeft"}),s=Object(B.Bd)({v:e,device:t,state:o,prefix:n,current:"paddingTopSuffix"}),c=Object(B.Bd)({v:e,device:t,state:o,prefix:n,current:"paddingRightSuffix"}),d=Object(B.Bd)({v:e,device:t,state:o,prefix:n,current:"paddingBottomSuffix"}),u=Object(B.Bd)({v:e,device:t,state:o,prefix:n,current:"paddingLeftSuffix"});return{paddingTop:a,paddingRight:r,paddingBottom:i,paddingLeft:l,paddingTopSuffix:s,paddingRightSuffix:c,paddingBottomSuffix:d,paddingLeftSuffix:u}}function Yo({v:e,device:t,state:o}){return`padding:${Object(B.qd)({v:e,device:t,state:o})} ${Object(B.pd)({v:e,device:t,state:o})} ${Object(B.nd)({v:e,device:t,state:o})} ${Object(B.od)({v:e,device:t,state:o})};`}function qo({v:e,device:t,state:o}){let n="",a="",r=0,i=0,l=0,s=0,c="",d="",u="",p="";a=Object(B.td)({v:e,device:t,state:o}),"grouped"===a?(s=Object(B.ud)({v:e,device:t,state:o,current:"marginLeft"}),"auto"===s?(r=l=Object(B.rd)({v:e,device:t,state:o}),s=i="auto",c=u=Object(B.sd)({v:e,device:t,state:o})):(r=i=l=s=Object(B.rd)({v:e,device:t,state:o}),c=d=u=p=Object(B.sd)({v:e,device:t,state:o}))):(r=Object(B.ud)({v:e,device:t,state:o,current:"marginTop"}),i=Object(B.ud)({v:e,device:t,state:o,current:"marginRight"}),l=Object(B.ud)({v:e,device:t,state:o,current:"marginBottom"}),s=Object(B.ud)({v:e,device:t,state:o,current:"marginLeft"}),c=Object(B.vd)({v:e,device:t,state:o,current:"marginTopSuffix"}),d=Object(B.vd)({v:e,device:t,state:o,current:"marginRightSuffix"}),u=Object(B.vd)({v:e,device:t,state:o,current:"marginBottomSuffix"}),p=Object(B.vd)({v:e,device:t,state:o,current:"marginLeftSuffix"}));return n=void 0===r?"":r===i&&r===l&&r===s&&0!==r?`margin:${r}${c};`:0!==r||0!==i||0!==l||0!==s?`margin:${r}${c} ${i}${d} ${l}${u} ${s}${p};`:"margin:0;",n}function Xo({v:e,device:t,state:o}){return`margin:${Object(B.md)({v:e,device:t,state:o})} ${Object(B.ld)({v:e,device:t,state:o})} ${Object(B.jd)({v:e,device:t,state:o})} ${Object(B.kd)({v:e,device:t,state:o})};`}function Zo(){return"display:flex;"}function Jo(){return"display:inline-flex;"}function Qo(){return"display:block;"}function en({v:e,device:t,state:o}){let n="";{const a=Object(B.Rd)({v:e,device:t,state:o}),r=Object(B.Sd)({v:e,device:t,state:o});n=""!==a?`filter:${a};opacity:${r};`:""}return n}function tn({v:e,device:t,state:o,mode:n="editor"}){const a=Object(B.Rd)({v:e,device:t,state:o});return"editor"===n&&""!==a?"display:var(--elements-visibility, flex);":""}function on({v:e,device:t,state:o,mode:n="editor"}){const a=Object(B.Rd)({v:e,device:t,state:o});return"editor"===n&&""!==a?"display:var(--elements-visibility, inline-flex);":""}function nn({v:e,device:t,state:o,mode:n="editor"}){const a=Object(B.Rd)({v:e,device:t,state:o});return"editor"===n&&""!==a?"display:var(--elements-visibility, block);":""}function an({v:e,device:t,state:o,mode:n="editor"}){const a=en({v:e,device:t,state:o});return"editor"===n?a:""}function rn(e,t){const{membership:o,membershipRoles:n}=e,a=JSON.parse(n||"[]");if("off"===o||0===a.length)return"";return`display: var(${"--role-default-"+t} ${a.map(e=>`, var(--role-${e}-${t}`).join("")}, none${")".repeat(a.length+1)};`}function ln({v:e}){return rn(e,"block")}function sn({v:e}){return rn(e,"flex")}function cn({v:e,device:t,state:o,prefix:n=""}){const a=Object(B.cd)({v:e,device:t,state:o,prefix:n}),r=Object(B.ed)({v:e,device:t,state:o,prefix:n}),i=Object(B.fd)({v:e,device:t,state:o,prefix:n}),l=Object(B.dd)({v:e,device:t,state:o,prefix:n});return 100===a&&0===r&&100===i&&100===l?"":`brightness(${a}%) hue-rotate(${r}deg) saturate(${i}%) contrast(${l}%)`}function dn({v:e,device:t,state:o,prefix:n=""}){const a=cn({v:e,device:t,state:o,prefix:n});return""===a?"":`filter:${a};`}function un({v:e,device:t,state:o}){const n=Object(B.Dc)({v:e,device:t,state:o});return void 0===n?"":`padding-top:${n};`}function pn({v:e,device:t,state:o}){const n=Object(B.cd)({v:e,device:t,state:o}),a=Object(B.ed)({v:e,device:t,state:o}),r=Object(B.fd)({v:e,device:t,state:o}),i=Object(B.dd)({v:e,device:t,state:o});return void 0===n&&void 0===a&&void 0===r&&void 0===i?"":`filter:brightness(${n}%) hue-rotate(${a}deg) saturate(${r}%) contrast(${i}%);`}function bn({v:e,device:t,state:o}){const n=Object(B.xc)({v:e,device:t,state:o});return void 0===n?"":`background-size:${n}%;`}function mn({v:e,device:t,state:o}){const n=Object(B.tc)({v:e,device:t,state:o}),a=Object(B.rc)({v:e,device:t,state:o}),r=Object(B.sc)({v:e,device:t,state:o}),i=Object(B.qc)({v:e,device:t,state:o});return a>0?`background-color:${Object(Ut.c)(i,a)};`:n>0?`background-color:${Object(Ut.c)(r,n)};`:"background-color:transparent;"}function hn({v:e,device:t,state:o}){const n=Object(B.zc)({v:e,device:t,state:o});return void 0===n?"":`font-size:${n}px;`}function gn({v:e,device:t,state:o}){const n=Object(B.Bc)({v:e,device:t,state:o});return void 0===n?"":`width:${n}px;`}function vn({v:e,device:t,state:o}){const n=Object(B.Ac)({v:e,device:t,state:o});return void 0===n?"":`height:${n}px;`}function fn({v:e,device:t,state:o}){const n=Object(B.pc)({v:e,device:t,state:o});return void 0===n?"":`background-color:${n};`}function yn({v:e,device:t,state:o}){const n=Object(B.wc)({v:e,device:t,state:o});return void 0===n?"":`background-image:${n};`}function On({v:e,device:t,state:o}){const n=Object(B.uc)({v:e,device:t,state:o}),a=Object(B.vc)({v:e,device:t,state:o});return void 0===n&&void 0===a?"":`background-position:${n}% ${a}%;`}function Sn(){return"transition-property: box-shadow, border, border-radius, background-color, color, transform;"}function xn({v:e,device:t,state:o}){return dt({v:e,device:t,state:o,prefix:"controlsBg"})}function Cn({v:e,device:t,state:o}){return St({v:e,device:t,state:o,prefix:"iconControlsColor"})}function jn({v:e,device:t,state:o}){const n=Object(B.yc)({v:e,device:t,state:o});return void 0===n?"":`font-size:${n}px;`}function Pn({v:e,device:t}){return Y({v:e,device:t,prefix:"subTitle"})}function Bn({v:e,device:t}){return q({v:e,device:t,prefix:"subTitle"})}function wn({v:e,device:t}){return X({v:e,device:t,prefix:"subTitle"})}function Tn({v:e,device:t}){return Z({v:e,device:t,prefix:"subTitle"})}function zn({v:e,device:t}){return J({v:e,device:t,prefix:"subTitle"})}function En({v:e,device:t,state:o}){const n=Object(B.Td)({v:e,device:t,state:o});return void 0===n?"":`width:${n}px;`}function kn({v:e,device:t,state:o}){const n=Object(B.Cc)({v:e,device:t,state:o});return void 0===n?"":`max-width:${n}px; flex: 1 1 ${n}px;`}function Hn({v:e,device:t,state:o}){return We({v:e,device:t,state:o,prefix:"item"})}function Fn({v:e,device:t,state:o}){const n=Object(B.Td)({v:e,device:t,state:o});return void 0===n?"":`width: calc(100% - ${n}px);`}function _n({v:e,device:t}){const o=Object(z.defaultValueValue)({v:e,key:"gridColumn",device:t}),n=o>1?100/o:100;return`max-width:${n}%; flex: 0 0 ${n}%;`}function Rn({v:e,device:t,state:o}){return St({v:e,device:t,state:o,prefix:"iconColor"})}function Ln({v:e,device:t,state:o}){return St({v:e,device:t,state:o,prefix:"subTitleColor"})}function Mn({v:e,device:t,state:o}){return dt({v:e,device:t,state:o,prefix:"iconBg"})}function In({v:e,device:t}){return dt({v:e,device:t,state:"active",prefix:"bg"})}function Wn({v:e,device:t}){return We({v:e,device:t,state:"active",prefix:"item"})}function Nn({v:e,device:t}){return St({v:e,device:t,state:"active",prefix:"color"})}function An({v:e,device:t}){return St({v:e,device:t,state:"active",prefix:"subTitleColor"})}function Vn({v:e,device:t,state:o}){const n=Object(B.sb)({v:e,device:t,state:o});return void 0===n?"":`font-size:${n}px;`}function Dn({v:e,device:t,state:o}){const n=Object(B.Ad)({v:e,device:t,state:o,current:"paddingTop"}),a=Object(B.Ad)({v:e,device:t,state:o,current:"paddingRight"});return void 0===n&&void 0===a?"":`padding:${n}px ${a}px;`}function $n({v:e,device:t}){const o=Object(B.Y)({v:e,device:t});return`min-height: ${"custom"===o?`${Object(B.W)({v:e,device:t})}${Object(B.X)({v:e,device:t})}`:"fullHeight"===o?"100vh":"auto"};`}function Gn({v:e,device:t,state:o}){const n="on"===Object(B.Dd)({v:e,device:t,state:o})?"row-reverse":"row",a="on"===Object(B.Ed)({v:e,device:t})?"wrap-reverse":"wrap",r="on"===Object(B.Cd)({v:e,device:t})?"flex-end":"flex-start";return"desktop"!==t?`flex-direction:${n};flex-wrap:${a};justify-content:${r};`:""}var Un=o(29),Kn=o(170),Yn=o(278),qn=o(279);function Xn(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function Zn(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?Xn(Object(o),!0).forEach((function(t){Object(P.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):Xn(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function Jn(e){return Object(B.te)(e)?"position:relative;":"position:static;"}function Qn(){return"position:relative;"}function ea(e){const t=Kn.a((o="elementPosition",Object(z.defaultValueValue)(Zn({key:o},e))));var o;return void 0===t?"":`position:${t};`}function ta(e){const t=t=>Object(z.defaultValueValue)(Zn({key:t},e)),o=t("elementPosition"),n=Un.b(t("width")),a=T.d(t("widthSuffix"));return void 0!==n&&a&&"relative"!==o?`width:${n}${a};`:""}function oa(e){var t,o;const n=t=>Object(z.defaultValueValue)(Zn({key:t},e)),a=Kn.a(n("elementPosition"));if(!a||"relative"===a)return"";const r=Yn.a(n("offsetYAlignment")),i=Un.b(n("offsetY")),l=null!==(t=T.d(n("offsetYSuffix")))&&void 0!==t?t:"px",s=qn.a(n("offsetXAlignment")),c=Un.b(n("offsetX")),d=null!==(o=T.d(n("offsetXSuffix")))&&void 0!==o?o:"px",u=r?{top:"unset",bottom:"unset",[r]:`${i}${l}`}:{},p=s?{right:"unset",left:"unset",[s]:`${c}${d}`}:{};return Object.entries(Zn(Zn({},u),p)).map(([e,t])=>t?`${e}: ${t};`:"").join("")}function na({v:e,device:t,state:o}){return`margin-right: ${Object(B.id)({v:e,device:t,state:o})}px;`}function aa({v:e,device:t,state:o}){const n=Object(B.hd)({v:e,device:t,state:o});return void 0===n?"":`font-size:${n}px;`}var ra=o(30);const ia=e=>void 0!==e;function la({v:e,device:t,state:o}){const n=Object(B.Pb)({v:e,device:t,state:o}),a=Object(B.Ob)({v:e,device:t,state:o});let r=`calc(${a/100} * var(--brz-section-container-max-width, 1170px));`;return t!==ra.c&&t!==ra.b||(r=a+"%"),"boxed"===n?"max-width: "+r:"max-width: 100%;"}function sa({v:e}){const t="on"===Object(B.Tb)({v:e})?"height":"min-height",o="on"===Object(B.Qb)({v:e})?"100vh":"100%";return ia(o)?`${t}: ${o};`:""}function ca({v:e,device:t,state:o,prefix:n="sliderDotsColor"}){const a=Object(B.B)({v:e,device:t,state:o,prefix:n});return ia(a)?`color: ${a};`:""}function da({v:e,device:t,state:o,prefix:n="sliderArrowsColor"}){const a=Object(B.B)({v:e,device:t,state:o,prefix:n});return ia(a)?`color: ${a};`:""}function ua(){return"transition-property: filter, background, border, border-radius;"}function pa({v:e,device:t,state:o}){let n,a;if("grouped"===Object(B.td)({v:e,device:t,state:o})?(n=Object(B.rd)({v:e,device:t,state:o}),a=Object(B.sd)({v:e,device:t,state:o})):(n=Object(B.ud)({v:e,device:t,state:o,current:"marginTop"}),a=Object(B.vd)({v:e,device:t,state:o,current:"marginTopSuffix"})),!ia(n))return"";if(n<0){let t=42-n;if("%"===a){const o=document.querySelector(`[data-uid="${e._id}"]`);if(o){t=42+o.getBoundingClientRect().width/100*-n}}return`grid-template-rows: minmax(calc(100% - 42px), ${t}px) 42px;`}return"grid-template-rows: minmax(calc(100% - 42px), 42px) 42px;"}function ba({v:e,device:t}){const o=Object(B.Qb)({v:e,device:t});return`min-height: ${"custom"===o?`${Object(B.Rb)({v:e,device:t})}${Object(B.Sb)({v:e,device:t})}`:"on"===o?"100vh":"auto"};`}function ma({v:e,device:t,state:o}){{const{paddingLeft:n,paddingLeftSuffix:a,paddingRight:r,paddingRightSuffix:i}=Ko({v:e,device:t,state:o}),l=`${n}${a}`,s=`${r}${i}`;return`margin-left: -${l}; margin-right: -${s}; width: calc(100% + ${s} + ${l});`}}function ha(){return"max-width: 1170px; height: 100%;"}function ga({v:e,device:t,state:o}){return`font-size: ${Object(B.he)({v:e,device:t,state:o})/2}px;`}function va({v:e,device:t,state:o,prefix:n="activeColor"}){return`color: ${Object(B.B)({v:e,device:t,state:o,prefix:n})};`}function fa({v:e,device:t,state:o,prefix:n="arrowsColor"}){return`color: ${Object(B.B)({v:e,device:t,state:o,prefix:n})};`}function ya({v:e,device:t,state:o}){const n=Object(B.Zd)({v:e,device:t,state:o});return void 0===n?"":`flex-basis:${n}%;`}function Oa({v:e,device:t,state:o}){const n=Object(B.Zd)({v:e,device:t,state:o,prefix:"submit"});return void 0===n?"":`max-width:${n}%;flex-basis:${n}%;`}function Sa({v:e,device:t,state:o}){const n=(a="type",Object(z.defaultValueValue)({v:e,key:a,device:t,state:o}));var a;const r=Object(B.Vd)({v:e,device:t,state:o});return void 0===r||void 0===n?"":"Paragraph"===n?`height:${r}px!important;`:"height:auto;"}function xa({v:e,device:t,state:o}){const n=Object(B.c)({v:e,device:t,state:o,prefix:"label"});return void 0===n?"":`text-align:${n};`}function Ca({v:e,device:t,state:o}){const{paddingTop:n,paddingRight:a,paddingBottom:r,paddingLeft:i}=Ko({v:e,device:t,state:o});return void 0===n||void 0===a||void 0===r||void 0===i||c.d?"":`margin:-${n}px -${a/2}px\n -${r}px -${i/2}px;`}function ja({v:e,device:t,state:o}){const{paddingTop:n,paddingRight:a,paddingBottom:r,paddingLeft:i,paddingTopSuffix:l,paddingRightSuffix:s,paddingBottomSuffix:d,paddingLeftSuffix:u}=Ko({v:e,device:t,state:o});return void 0===n||void 0===a||void 0===r||void 0===i?"":c.d?`padding:0 0 ${r}${d} 0;`:`padding:${n}${l}\n ${a/2}${s}\n ${r}${d}\n ${i/2}${u};`}function Pa({v:e,device:t,state:o}){const n=Object(B.le)({v:e,device:t}),a=Object(B.he)({v:e,device:t}),{paddingTop:r,paddingBottom:i}=Ko({v:e,device:t,state:o}),l=function({v:e,device:t,state:o,prefix:n=""}){let a=0,r=0;if("grouped"===Object(B.t)({v:e,device:t,state:o,prefix:n})){const i=Object(B.s)({v:e,device:t,state:o,prefix:n});a=i,r=i}else a=Object(B.u)({v:e,device:t,state:o,prefix:n,current:"top"}),r=Object(B.u)({v:e,device:t,state:o,prefix:n,current:"bottom"});return a+r}({v:e,device:t,state:o});return`min-height:${Math.round(a*n*10)/10+r+i+l}px;`}function Ba({v:e,device:t}){return Y({v:e,device:t,prefix:"label"})}function wa({v:e,device:t}){return q({v:e,device:t,prefix:"label"})}function Ta({v:e,device:t}){return X({v:e,device:t,prefix:"label"})}function za({v:e,device:t}){return Z({v:e,device:t,prefix:"label"})}function Ea({v:e,device:t}){return J({v:e,device:t,prefix:"label"})}function ka({v:e,device:t,state:o}){return Vo({v:e,device:t,state:o,prefix:"label"})}function Ha({v:e,device:t,state:o}){return St({v:e,device:t,state:o,prefix:"checkboxColor"})}function Fa({v:e,device:t}){return Y({v:e,device:t,prefix:"checkbox"})}function _a({v:e,device:t}){return q({v:e,device:t,prefix:"checkbox"})}function Ra({v:e,device:t}){return X({v:e,device:t,prefix:"checkbox"})}function La({v:e,device:t}){return Z({v:e,device:t,prefix:"checkbox"})}function Ma({v:e,device:t}){return J({v:e,device:t,prefix:"checkbox"})}function Ia({v:e,device:t,state:o}){return St({v:e,device:t,state:o,prefix:"selectColor"})}function Wa({v:e,device:t,state:o}){return dt({v:e,device:t,state:o,prefix:"selectBg"})}function Na({v:e,device:t,state:o}){const n=Object(B.s)({v:e,device:t,state:o});return void 0===n||0===n?"border: 2px solid #f00":"border-color: #f00"}function Aa({v:e,device:t,state:o}){const n=Object(B.i)({v:e,device:t,state:o,prefix:"selectBg"});return void 0===n?"":`background-color:${Object(Ut.c)(n,.2)};`}function Va({v:e,device:t,state:o}){const n=Object(B.u)({v:e,device:t,state:o,prefix:"select",current:"top"}),a=Object(B.r)({v:e,device:t,state:o,prefix:"select"}),r=Object(B.n)({v:e,device:t,state:o,prefix:"select"});return void 0===n?"":`border :${n}px ${a} ${r};`}function Da({v:e,device:t,state:o}){return Ae({v:e,device:t,state:o,prefix:"select"})}function $a({v:e,device:t,state:o}){return jt({v:e,device:t,state:o,prefix:"select"})}function Ga({v:e,device:t,state:o}){const n=Object(B.eb)({v:e,device:t,state:o});return void 0===n?"":`flex-basis:${100/n}%;`}function Ua({v:e}){return`content: ""; padding-top: ${e.submitHeight}%;`}function Ka({v:e,device:t,state:o}){const{paddingTop:n,paddingRight:a,paddingBottom:r,paddingLeft:i}=Ko({v:e,device:t,state:o,prefix:"field"});return void 0===n||void 0===a||void 0===r||void 0===i?"":`margin:-${n}px -${a/2}px\n -${r}px -${i/2}px;`}function Ya({v:e,device:t,state:o}){const{paddingTop:n,paddingRight:a,paddingBottom:r,paddingLeft:i,paddingTopSuffix:l,paddingRightSuffix:s,paddingBottomSuffix:c,paddingLeftSuffix:d}=Ko({v:e,device:t,state:o,prefix:"field"});return void 0===n||void 0===a||void 0===r||void 0===i?"":`padding:${n}${l}\n ${a/2}${s}\n ${r}${c}\n ${i/2}${d};`}function qa({v:e,device:t}){return Y({v:e,device:t,prefix:"lost"})}function Xa({v:e,device:t}){return q({v:e,device:t,prefix:"lost"})}function Za({v:e,device:t}){return X({v:e,device:t,prefix:"lost"})}function Ja({v:e,device:t}){return Z({v:e,device:t,prefix:"lost"})}function Qa({v:e,device:t}){return J({v:e,device:t,prefix:"lost"})}function er({v:e,device:t,state:o}){return St({v:e,device:t,state:o,prefix:"lostColor"})}function tr({v:e,device:t,state:o}){const n=Object(B.c)({v:e,device:t,state:o,prefix:"lost"});return void 0===n?"":`text-align:${n};`}function or({v:e,device:t,state:o}){const n=(a="rememberMeHorizontalAlign",Object(z.defaultValueValue)({v:e,key:a,device:t,state:o}));var a;return`justify-content: ${void 0===n?n:{left:"flex-start",center:"center",right:"flex-end"}[n]};`}function nr({v:e,device:t,state:o}){const n=Object(B.c)({v:e,device:t,state:o,prefix:"autorized"});return void 0===n?"":`text-align:${n};`}function ar({v:e,device:t}){return Y({v:e,device:t,prefix:"text"})}function rr({v:e,device:t}){return q({v:e,device:t,prefix:"text"})}function ir({v:e,device:t}){return X({v:e,device:t,prefix:"text"})}function lr({v:e,device:t}){return Z({v:e,device:t,prefix:"text"})}function sr({v:e,device:t}){return J({v:e,device:t,prefix:"text"})}function cr({v:e,device:t,state:o}){return St({v:e,device:t,state:o,prefix:"textColor"})}function dr({v:e,device:t,state:o}){return St({v:e,device:t,state:o,prefix:"linkColor"})}function ur({v:e,device:t}){return Y({v:e,device:t,prefix:"registerInfo"})}function pr({v:e,device:t}){return q({v:e,device:t,prefix:"registerInfo"})}function br({v:e,device:t}){return X({v:e,device:t,prefix:"registerInfo"})}function mr({v:e,device:t}){return Z({v:e,device:t,prefix:"registerInfo"})}function hr({v:e,device:t}){return J({v:e,device:t,prefix:"registerInfo"})}function gr({v:e,device:t,state:o}){return St({v:e,device:t,state:o,prefix:"registerInfoColor"})}function vr({v:e,device:t,state:o}){const n=Object(B.c)({v:e,device:t,state:o,prefix:"registerInfo"});return void 0===n?"":`text-align:${n};`}function fr({v:e,device:t}){return Y({v:e,device:t,prefix:"registerLink"})}function yr({v:e,device:t}){return q({v:e,device:t,prefix:"registerLink"})}function Or({v:e,device:t}){return X({v:e,device:t,prefix:"registerLink"})}function Sr({v:e,device:t}){return Z({v:e,device:t,prefix:"registerLink"})}function xr({v:e,device:t}){return J({v:e,device:t,prefix:"registerLink"})}function Cr({v:e,device:t,state:o}){return St({v:e,device:t,state:o,prefix:"registerLinkColor"})}function jr({v:e,device:t,state:o}){const n=Object(B.c)({v:e,device:t,state:o,prefix:"registerLink"});return void 0===n?"":`text-align:${n};`}function Pr({v:e,device:t}){return Y({v:e,device:t,prefix:"loginLink"})}function Br({v:e,device:t}){return q({v:e,device:t,prefix:"loginLink"})}function wr({v:e,device:t}){return X({v:e,device:t,prefix:"loginLink"})}function Tr({v:e,device:t}){return Z({v:e,device:t,prefix:"loginLink"})}function zr({v:e,device:t}){return J({v:e,device:t,prefix:"loginLink"})}function Er({v:e,device:t,state:o}){return St({v:e,device:t,state:o,prefix:"loginLinkColor"})}function kr({v:e,device:t,state:o}){const n=Object(B.c)({v:e,device:t,state:o,prefix:"loginLink"});return void 0===n?"":`text-align:${n};`}function Hr({v:e,device:t,state:o,prefix:n="iconsColor"}){return`color: ${Object(B.B)({v:e,device:t,state:o,prefix:n})};`}function Fr({v:e,device:t,state:o,prefix:n="textColor"}){return`color: ${Object(B.B)({v:e,device:t,state:o,prefix:n})};`}function _r({v:e,device:t,state:o}){return"inline"===Object(B.bd)({v:e,device:t})?`margin-right: ${Object(B.Yd)({v:e,device:t,state:o})}px;`:`margin-top: ${Object(B.Yd)({v:e,device:t,state:o})}px;`}function Rr({v:e,device:t}){return"desktop"===t?`font-family:${Object(B.ge)({v:e,device:t,prefix:"titleTypography"})};`:""}function Lr({v:e,device:t}){return`font-size:${Object(B.he)({v:e,device:t,prefix:"titleTypography"})}px;`}function Mr({v:e,device:t}){return`line-height:${Object(B.le)({v:e,device:t,prefix:"titleTypography"})};`}function Ir({v:e,device:t}){return`font-weight:${Object(B.je)({v:e,device:t,prefix:"titleTypography"})};`}function Wr({v:e,device:t}){return`letter-spacing:${Object(B.ke)({v:e,device:t,prefix:"titleTypography"})}px;`}function Nr({v:e,device:t}){return"desktop"===t?`font-family:${Object(B.ge)({v:e,device:t,prefix:"postTypography"})};`:""}function Ar({v:e,device:t}){return`font-size:${Object(B.he)({v:e,device:t,prefix:"postTypography"})}px;`}function Vr({v:e,device:t}){return`line-height:${Object(B.le)({v:e,device:t,prefix:"postTypography"})};`}function Dr({v:e,device:t}){return`font-weight:${Object(B.je)({v:e,device:t,prefix:"postTypography"})};`}function $r({v:e,device:t}){return`letter-spacing:${Object(B.ke)({v:e,device:t,prefix:"postTypography"})}px;`}function Gr({v:e,device:t,state:o}){const n=Object(B.B)({v:e,device:t,prefix:"titleColor",state:o});return void 0===n?"":`color:${n};`}function Ur({v:e,device:t,state:o}){const n=Object(B.B)({v:e,device:t,prefix:"postColor",state:o});return void 0===n?"":`color:${n};`}function Kr({v:e,device:t,state:o}){const n=Object(B.Kb)({v:e,device:t,state:o}),a=Object(B.Ib)({v:e,device:t,state:o});return void 0===n?"":"off"===a?"margin-bottom: 0;":`margin-bottom:${n}px`}function Yr({v:e,device:t,state:o}){const n=Object(B.Vd)({v:e,device:t,state:o});return void 0===n?"":`height:${n}%;`}function qr({v:e,device:t,state:o}){const n=Object(B.Jb)({v:e,device:t,state:o});return void 0===n||"off"!==n?"":"content: none;"}function Xr({v:e,device:t,state:o,prefix:n="ratingColor"}){return`color: ${Object(B.B)({v:e,device:t,state:o,prefix:n})};`}function Zr({v:e,device:t,state:o,prefix:n="ratingBackgroundColor"}){return`color: ${Object(B.B)({v:e,device:t,state:o,prefix:n})};`}function Jr({v:e,device:t,state:o,prefix:n="bgColor"}){return`background-color: ${Object(B.B)({v:e,device:t,state:o,prefix:n})};`}function Qr({v:e,device:t}){return`border-radius: ${o="borderRadius",Object(z.defaultValueValue)({v:e,key:o,device:t})}px;`;var o}function ei(){return"transition-property: color;"}function ti({v:e,device:t}){var o;return"on"===(o="label",Object(z.defaultValueValue)({key:o,v:e,device:t}))?"display: flex; flex-direction: row;":"display: flex; flex-direction: row-reverse;"}function oi({v:e,device:t}){const o=o=>Object(z.defaultValueValue)({key:o,v:e,device:t}),n=o("spacing"),a=o("label"),r=o("ratingStyle");switch(a){case"on":return`margin-right: ${n}px;`;case"on-right":return"style-2"===r?`margin-right: ${n}px; margin-left: 0;`:`margin-left: ${n}px; margin-right: 0;`;case"off":return"margin: 0;"}}function ni({v:e,device:t,prefix:o}){const n=Object(B.s)({v:e,device:t,prefix:o});return Object(B.gc)({v:e,device:t,prefix:o})+2*Object(B.hc)({v:e,device:t,prefix:o})+2*n}function ai({v:e,device:t,state:o,prefix:n}){return ni({v:e,device:t,state:o,prefix:n})/2}function ri({v:e,device:t,prefix:o}){return"on"===Object(B.fc)({v:e,device:t,prefix:o})}function ii({v:e,device:t,prefix:o}){const n=Object(B.he)({v:e,device:t,prefix:"typography"}),a=Object(B.le)({v:e,device:t,prefix:"typography"});return ri({v:e,device:t,prefix:o})?n*a:0}function li({v:e,device:t,prefix:o}){return ri({v:e,device:t,prefix:o})?116:0}function si({v:e,device:t,prefix:o}){return`font-size: ${Object(B.gc)({v:e,device:t,prefix:o})}px;`}function ci({v:e,device:t,prefix:o}){return`padding: ${Object(B.hc)({v:e,device:t,prefix:o})}px;`}function di({v:e,prefix:t}){return`width: ${ni({v:e,prefix:t})}px;`}function ui({v:e,prefix:t}){return`height: ${ni({v:e,prefix:t})}px;`}function pi({v:e,prefix:t}){return`width: ${ni({v:e,prefix:t})+60}px;`}function bi({v:e}){return ri({v:e})?"display: block;":"display: none;"}function mi({v:e,device:t,state:o}){const n=Object(B.n)({v:e,device:t,prefix:"line"}),a=Object(B.ic)({v:e,device:t,state:o}),r=o=>Object(z.defaultValueValue)({v:e,key:o,device:t}),i=r("lineBorderStyle"),l=r("lineBorderWidth");return"off"===a?`border-top: ${n} ${l}px ${i};`:`border-left: ${n} ${l}px ${i};border-top:0;`}function hi({v:e,device:t,state:o}){const n=Object(B.kc)({v:e,device:t,state:o}),a=Object(B.ic)({v:e,device:t,state:o}),r=Object(B.s)({v:e,prefix:"line"}),i=ai({v:e}),l=ii({v:e,device:t}),s=ai({v:e}),c=Object(B.s)({v:e,device:t}),d=Object(B.gc)({v:e,device:t})+2*Object(B.hc)({v:e,device:t})+2*c+20,u=i+l-r/2;if("off"===a)switch(n){case"style-1":return`top: ${u}px; bottom:auto; left: ${d}px;`;case"style-2":return`bottom: ${u}px; top:auto; left: ${d}px;`;case"style-3":return`top: calc( ${u}px + 50%); bottom:auto; left: ${d}px;`}else if("on"===a)switch(n){case"style-1":case"style-2":case"style-3":return`top: calc( ${s}px + 50%);`}}function gi({v:e,device:t,prefix:o}){const n=Object(B.jc)({v:e,device:t,prefix:o}),a=Object(B.ic)({v:e,device:t}),r=Object(B.kc)({v:e,device:t});if("off"===a)switch(r){case"style-1":return`margin: ${n}px 10px 0 10px;`;case"style-2":return`margin: 0 10px ${n}px 10px;`;case"style-3":return`margin: ${n}px 10px 0 10px;`}else if("on"===a)switch(r){case"style-1":return`margin: 0 0 0 ${n}px;`;case"style-2":return`margin: 0 ${n}px 0 0;`;case"style-3":return`margin: 0 0 0 ${n}px;`}}function vi({v:e,device:t,prefix:o}){return`border: ${Object(B.s)({v:e,device:t,prefix:o})}px solid ${Object(B.n)({v:e,device:t,prefix:o})};`}function fi({v:e,device:t,state:o,prefix:n}){return`border-radius: ${Object(B.o)({v:e,device:t,state:o,prefix:n})}px;`}function yi({v:e,device:t,state:o,prefix:n}){const a=ai({v:e,prefix:n}),r=li({v:e})+a,i=Object(B.ic)({v:e,device:t,state:o}),l=Object(B.kc)({v:e,device:t,state:o});if("on"===i)switch(l){case"style-1":return`left: calc(50% - ${r}px); right: auto;`;case"style-2":return`right: calc(50% - ${r}px); left: auto;`}else if("off"===i)return"left: auto; right: auto;"}function Oi({v:e,device:t,state:o,prefix:n}){const a=ai({v:e,device:t,prefix:n}),r=ni({v:e,device:t,prefix:n}),i=Object(B.s)({v:e,device:t,prefix:"line"}),l=Object(B.ic)({v:e,device:t,state:o});return"on"===l?`height: calc(50% + (${a}px + ${r}px)); width: ${i}px;`:"off"===l?`width: calc(100% - ${r}px); height: ${i}px;`:void 0}function Si({v:e,device:t,state:o,prefix:n}){const a=ai({v:e,device:t,prefix:n}),r=ni({v:e,device:t,prefix:n}),i=Object(B.s)({v:e,device:t,prefix:"line"}),l=Object(B.ic)({v:e,device:t,state:o}),s=(c="lineBorderStyle",Object(z.defaultValueValue)({v:e,key:c,device:t}));var c;return"on"===l?`height: calc(${"dashed"===s||"dotted"===s?100-i:100}px + (60% - ${a}px)); width: ${i}px; left: ${i}px;`:"off"===l?`width: calc(100% - ${r}px); height: ${i}px;`:void 0}function xi({v:e,device:t,state:o,prefix:n}){const a=Object(B.s)({v:e,device:t,prefix:"line"}),r=ai({v:e,device:t,prefix:n}),i=li({v:e,device:t})+r-a/2,l=Object(B.ic)({v:e,device:t,state:o}),s=Object(B.kc)({v:e,device:t,state:o});if("on"===l)switch(s){case"style-1":return`left: ${i}px; bottom: calc( ${r}px + 50%);`;case"style-2":return`right: ${i}px; bottom: calc( ${r}px + 50%); left:unset;`;case"style-3":return`left: ${i}px; bottom: calc( ${r}px + 50%);`}}function Ci({v:e,device:t,state:o}){const n=Object(B.ic)({v:e,device:t,state:o});return"on"===n?"display: block;":"off"===n?"display: none;":void 0}function ji({v:e,device:t,state:o,prefix:n}){const a=ai({v:e,prefix:n});if("on"===Object(B.ic)({v:e,device:t,state:o}))return`top: calc( ${a}px + 50%);`}function Pi({v:e,device:t,state:o,prefix:n}){const a=ai({v:e,prefix:n}),r=Object(B.ic)({v:e,device:t,state:o}),i=Object(B.kc)({v:e,device:t,state:o});if("on"===r&&("style-1"===i||"style-2"===i||"style-3"===i))return`bottom: calc( ${a}px + 50%);`}function Bi({v:e,device:t,prefix:o}){const n=Object(B.lc)({v:e,device:t,prefix:o});if("off"===Object(B.ic)({v:e,device:t,prefix:o})){const e=100/n;return`width: ${e}%; min-width: ${e}%;`}return"width: auto; min-width: auto;"}function wi({v:e,device:t,prefix:o}){const n=100/Object(B.lc)({v:e,device:t,prefix:o});return`width: calc(${n}% - 30px); min-width: calc(${n}% - 30px);`}function Ti({v:e,device:t,state:o,prefix:n}){const a=ai({v:e,prefix:n}),r=li({v:e})+a,i=Object(B.ic)({v:e,device:t,state:o}),l=Object(B.kc)({v:e,device:t,state:o});if("on"===i&&"style-2"===l)return`right: calc(50% - ${r}px);`}function zi({v:e,device:t,state:o,prefix:n}){const a=Object(B.s)({v:e,device:t,prefix:"line"}),r=ai({v:e,prefix:n}),i=li({v:e})+r-a/2,l=Object(B.ic)({v:e,device:t,state:o}),s=Object(B.kc)({v:e,device:t,state:o});if("on"===l&&"style-2"===s)return`right: ${i}px;`}function Ei({v:e,device:t}){const o=Object(B.ic)({v:e,device:t}),n=Object(B.kc)({v:e,device:t}),a=Object(B.s)({v:e,device:t,prefix:"line"}),r=ai({v:e,device:t}),i=ii({v:e,device:t}),l=Object(B.s)({v:e,device:t}),s=Object(B.gc)({v:e,device:t}),c=Object(B.hc)({v:e,device:t}),d=ai({v:e,device:t});var u;const p=li({v:e,device:t})+d-a/2,b=s+2*c+2*l+20,m=r+i-a/2,h=r+i+(u="textSpacing",Object(z.defaultValueValue)({v:e,key:u,device:t}))-a/2;if("off"===o)switch(n){case"style-1":return`bottom:auto; right: auto; top: ${h}px; left: ${b}px;`;case"style-2":return`bottom: ${h}px; top:auto; right: auto; left: ${b}px;`;case"style-3":return`bottom: ${r}px; top: unset; right: auto; left: ${b}px;`}else if("on"===o)switch(n){case"style-1":return`left: ${p}px; top: calc(50% + (${m}px / 2));`;case"style-2":return`right: ${p}px; left: auto; top: calc(50% + (${m}px / 2));`;case"style-3":return`left: ${p}px; top: calc(50% + (${m}px / 2));`}}function ki({v:e,device:t}){const o=Object(B.ic)({v:e,device:t}),n=Object(B.kc)({v:e,device:t}),a=Object(B.s)({v:e,prefix:"line"}),r=ai({v:e,device:t}),i=ii({v:e,device:t}),l=ai({v:e,device:t}),s=Object(B.s)({v:e,device:t}),c=Object(B.gc)({v:e,device:t}),d=Object(B.hc)({v:e,device:t});var u;const p=li({v:e})+l-a/2,b=c+2*d+2*s+20,m=r+i+(u="textSpacing",Object(z.defaultValueValue)({v:e,key:u,device:t}))-a/2;if("off"===o)switch(n){case"style-1":return`top: ${m}px; bottom:auto; right: auto; left: ${b}px;`;case"style-2":return`bottom: ${m}px; top:auto; right: auto; left: ${b}px;`;case"style-3":return`top: ${r}px; bottom: unset; right: auto; left: ${b}px;`}else if("on"===o)switch(n){case"style-1":return`top: calc( ${l}px + 50%); left: ${p}px;`;case"style-2":return`top: calc( ${l}px + 50%); right: ${p}px; left: auto;`;case"style-3":return`top: calc( ${l}px + 50%); left: ${p}px;`}}function Hi({v:e,device:t,prefix:o}){const n=Object(B.jc)({v:e,device:t,prefix:o}),a=Object(B.ic)({v:e,device:t}),r=Object(B.kc)({v:e,device:t});if("off"===a){switch(r){case"style-1":return`margin: ${n}px 10px 0 10px;`;case"style-2":case"style-3":return`margin: 0 10px ${n}px 10px;`}return`margin: 0 10px ${n}px 10px;`}if("on"===a)switch(r){case"style-1":return`margin: 0 0 0 ${n}px;`;case"style-2":case"style-3":return`margin: 0 ${n}px 0 0;`}}function Fi({v:e,device:t,prefix:o}){const n=Object(B.jc)({v:e,device:t,prefix:o}),a=Object(B.ic)({v:e,device:t}),r=Object(B.kc)({v:e,device:t});if("off"===a&&"style-3"===r)return`margin: ${n}px 10px 0 10px;`}function _i({v:e,device:t,prefix:o}){const n=ai({v:e,prefix:o}),a=li({v:e})+n,r=Object(B.ic)({v:e,device:t}),i=Object(B.kc)({v:e,device:t});if("on"===r)switch(i){case"style-1":return`left: calc(50% - ${a}px);`;case"style-2":case"style-3":return`right: calc(50% - ${a}px); left: auto;`}else if("off"===r)switch(i){case"style-1":case"style-2":case"style-3":return"right: auto; left: auto;"}}function Ri({v:e,device:t,prefix:o}){const n=ai({v:e,prefix:o}),a=li({v:e})+n,r=Object(B.ic)({v:e,device:t}),i=Object(B.kc)({v:e,device:t});if("on"===r)switch(i){case"style-1":return`left: calc(50% - ${a}px);`;case"style-2":return"left:auto;";case"style-3":return`left: calc(50% - ${a}px);`}else if("off"===r)switch(i){case"style-1":return"left: auto;";case"style-2":return"left:auto;";case"style-3":return"left: auto;"}}function Li({v:e,device:t,prefix:o}){const n=Object(B.s)({v:e,device:t,prefix:"line"}),a=ai({v:e,prefix:o}),r=li({v:e})+a-n/2,i=Object(B.ic)({v:e,device:t}),l=Object(B.kc)({v:e,device:t});if("off"===i)switch(l){case"style-1":case"style-2":case"style-3":return""}else if("on"===i)switch(l){case"style-1":return`right: auto; left: ${r}px;`;case"style-2":return`right: ${r}px; left: auto;`;case"style-3":return`right: ${r}px; left: unset;`}}function Mi({v:e,device:t,prefix:o}){const n=Object(B.jc)({v:e,device:t,prefix:o}),a=ni({v:e,prefix:o}),r=li({v:e}),i=r+a+n-7,l=Object(B.ic)({v:e,device:t}),s=Object(B.kc)({v:e,device:t}),c=ai({v:e,device:t}),d=r+a+n-7;if("off"===l)switch(s){case"style-1":return`bottom: auto; top: 0; left: ${c}px;`;case"style-2":case"style-3":return`bottom: -15px; top: unset;left: ${c}px;`}else if("on"===l)switch(s){case"style-1":return`bottom: auto; left: ${d}px; top: 50%;`;case"style-2":case"style-3":return`right: ${i}px; left: unset; top: 50%;`}}function Ii({v:e,device:t,prefix:o}){const n=Object(B.jc)({v:e,device:t,prefix:o}),a=Object(B.ic)({v:e,device:t}),r=Object(B.kc)({v:e,device:t});if("on"===a&&"style-3"===r)return`margin: 0 ${n}px 0 0;`}function Wi({v:e,device:t,state:o}){const n=Object(B.nc)({v:e,device:t,state:o}),a=Object(B.oc)({v:e,device:t,state:o});return void 0===n?"":`min-width:${n}${a}; width:${n}${a};`}function Ni({v:e,device:t}){const o=Object(B.ic)({v:e,device:t}),n=Object(B.kc)({v:e,device:t});if("off"===o)switch(n){case"style-1":return"border-right: transparent ; border-bottom: transparent ; border-left: inherit ; border-top: inherit ;";case"style-2":return"border-left: transparent ; border-top: transparent ; border-right: inherit ; border-bottom: inherit ;"}else if("on"===o)switch(n){case"style-1":return"border-top: transparent ; border-right: transparent ; border-left: inherit ; border-bottom: inherit ;";case"style-2":return"border-left: transparent ; border-bottom: transparent ; border-right: inherit ; border-top: inherit ;"}}function Ai({v:e,device:t}){const o=Object(B.ic)({v:e,device:t}),n=Object(B.kc)({v:e,device:t});return"off"===o&&"style-3"===n?"border-left: transparent ; border-top: transparent ; border-right: inherit ; border-bottom: inherit;":"on"===o&&"style-3"===n?"border-left: transparent; border-bottom: transparent; border-right: inherit; border-top: inherit;":void 0}function Vi({v:e,device:t}){const o=Object(B.ic)({v:e,device:t}),n=Object(B.kc)({v:e,device:t});if("on"===o&&"style-3"===n)return"border-right: transparent; border-top: transparent; border-left: inherit; border-bottom: inherit;"}function Di({v:e,device:t}){const o=Object(B.ic)({v:e,device:t});return"off"===o?"flex: 1 1 auto; flex-direction: row; width: 100%; display: flex; overflow-x: auto; overflow-y: hidden; padding-bottom: 30px;":"on"===o?"display: flex; flex-direction: column; max-width: 100%; overflow-x: unset; overflow-y: unset; padding-bottom: unset; align-items: normal;":void 0}function $i({v:e,device:t}){const o=Object(B.ic)({v:e,device:t}),n=Object(B.kc)({v:e,device:t});if("off"===o)switch(n){case"style-1":return"display: flex; align-items: normal; flex-direction: column;";case"style-2":return"display: flex; align-items: normal; flex-direction: column-reverse;";case"style-3":return"display: flex; align-items: normal; flex-direction: column;"}else if("on"===o)switch(n){case"style-1":return"display: flex; align-items: center; flex-direction: row;";case"style-2":return"display: flex; align-items: center; flex-direction: row-reverse;";case"style-3":return"display: flex; align-items: center; flex-direction: row;"}}function Gi({v:e,device:t}){const o=Object(B.ic)({v:e,device:t}),n=Object(B.kc)({v:e,device:t}),a=Object(B.jc)({v:e,device:t}),r=li({v:e,device:t}),i=ni({v:e,device:t}),l=ai({v:e,device:t}),s=r+i+a-7;if("off"===o)switch(n){case"style-1":return`bottom: auto; top: 0; left: ${l}px;`;case"style-2":return`bottom: -15px; top: unset;left: ${l}px;`;case"style-3":return`bottom: -15px; top: unset; left: ${l}px;`}else if("on"===o)switch(n){case"style-1":return`bottom: auto; left: ${s}px; top: 50%;`;case"style-2":return`bottom: -15px; right: ${s}px; left: unset; top: 50%;`;case"style-3":return`bottom: -15px; left: ${s}px; top: 50%;`}}function Ui({v:e,device:t}){const o=Object(B.ic)({v:e,device:t}),n=Object(B.kc)({v:e,device:t});return"off"===o&&"style-3"===n?"bottom: unset;":"off"===o&&"style-2"===n?"bottom: -15px;":void 0}function Ki({v:e,device:t}){const o=Object(B.ic)({v:e,device:t}),n=Object(B.kc)({v:e,device:t}),a=(r="textSpacing",Object(z.defaultValueValue)({v:e,key:r,device:t}));var r;if("off"===o)switch(n){case"style-1":return`position: relative; margin-bottom: ${a}px; left: -10px; top: auto; transform: none;`;case"style-2":return`position: relative; margin-top: ${a}px; left: -10px; top: auto; transform: none;`;case"style-3":return`position: absolute; margin-top: auto; top: ${-a}px; left: -10px; transform: translateY(-100%);`}else if("on"===o)switch(n){case"style-1":return`position: relative; margin: 0; left: ${-a}px; top: auto; transform: none;`;case"style-2":return`position: relative; margin: 0; top: auto; left: ${a}px; transform: none;`;case"style-3":return`position: relative; margin: 0; left: ${-a}px; top: auto; transform: none;`}}function Yi({v:e,device:t}){const o=Object(B.ic)({v:e,device:t}),n=Object(B.kc)({v:e,device:t}),a=(r="textSpacing",Object(z.defaultValueValue)({v:e,key:r,device:t}));var r;if("off"===o)switch(n){case"style-1":case"style-2":return"position: relative; left: -10px; bottom: auto; transform: none;";case"style-3":return`position: absolute; bottom: ${-a}px; top: auto; left: -10px; transform: translateY(100%);`}else if("on"===o)switch(n){case"style-1":return`position: relative; left: ${-a}px; bottom: auto; transform: none;`;case"style-2":return`position: relative; bottom: auto; left: ${a}px; transform: none;`;case"style-3":return`position: relative; left: ${a}px; bottom: auto; transform: none;`}}function qi({v:e,device:t}){const o=Object(B.ic)({v:e,device:t}),n=Object(B.kc)({v:e,device:t});if("off"===o)switch(n){case"style-1":return"flex-direction: column;";case"style-2":case"style-3":return"flex-direction: column-reverse;"}else if("on"===o)switch(n){case"style-1":return"flex-direction: row;";case"style-2":case"style-3":return"flex-direction: row-reverse;"}}function Xi({v:e,device:t}){const o=Object(B.ic)({v:e,device:t}),n=Object(B.kc)({v:e,device:t});if("on"===o)switch(n){case"style-1":return"flex-direction: row;";case"style-2":return"flex-direction: row-reverse;";case"style-3":return"flex-direction: row;"}else if("off"===o)switch(n){case"style-1":return"flex-direction: column;";case"style-2":return"flex-direction: column-reverse;";case"style-3":return"flex-direction: column;"}}function Zi({v:e,device:t}){const o=Object(B.ic)({v:e,device:t}),n=Object(B.kc)({v:e,device:t});if("off"===o&&"style-3"===n)return"align-items: baseline;"}function Ji({v:e,device:t}){const o=Object(B.ic)({v:e,device:t});return"on"===o?" margin-left: 0; line-height: 0; z-index: 1;":"off"===o?"margin-left: 20px":void 0}function Qi({v:e,device:t}){const o=Object(B.ic)({v:e,device:t});return"on"===o?"position: static;":"off"===o?"position: relative;":void 0}function el({v:e,device:t}){const o=Object(B.ic)({v:e,device:t});return"on"===o?"margin-bottom: 100px;":"off"===o?"margin-bottom: 0;":void 0}function tl({v:e,device:t}){if("on"===Object(B.ic)({v:e,device:t}))return"margin-bottom: 0;"}function ol({v:e,device:t}){if("on"===Object(B.ic)({v:e,device:t}))return"display: none;"}function nl({v:e,device:t}){const o=Object(B.ic)({v:e,device:t}),n=Object(B.kc)({v:e,device:t});if("on"===o&&"style-3"===n)return"display: none;"}function al({v:e,device:t,state:o}){return`width: ${2*Object(B.Ub)({v:e,device:t,state:o})}px;`}function rl({v:e,device:t,state:o}){return`height: ${Object(B.Ub)({v:e,device:t,state:o})}px;`}function il({v:e,device:t}){return dt({v:e,device:t,state:"active",prefix:"bg"})}function ll({v:e,device:t,state:o}){return`margin-bottom:${Object(B.Vb)({v:e,device:t,state:o})}px;`}function sl({v:e,device:t}){return St({v:e,device:t,state:"active",prefix:"color"})}function cl({v:e,device:t,state:o}){return`width: ${Object(B.Wb)({v:e,device:t,state:o})}px`}function dl({v:e,device:t,state:o}){const n=Object(B.B)({v:e,device:t,prefix:"h1Color",state:o});return void 0===n?"":`color:${n};`}function ul({v:e,device:t,state:o}){const n=Object(B.B)({v:e,device:t,prefix:"h2Color",state:o});return void 0===n?"":`color:${n};`}function pl({v:e,device:t,state:o}){const n=Object(B.B)({v:e,device:t,prefix:"h3Color",state:o});return void 0===n?"":`color:${n};`}function bl({v:e,device:t,state:o}){const n=Object(B.B)({v:e,device:t,prefix:"h4Color",state:o});return void 0===n?"":`color:${n};`}function ml({v:e,device:t,state:o}){const n=Object(B.B)({v:e,device:t,prefix:"h5Color",state:o});return void 0===n?"":`color:${n};`}function hl({v:e,device:t,state:o}){const n=Object(B.B)({v:e,device:t,prefix:"h6Color",state:o});return void 0===n?"":`color:${n};`}function gl({v:e,device:t,state:o}){const n=Object(B.B)({v:e,device:t,prefix:"paragraphColor",state:o});return void 0===n?"":`color:${n};`}function vl({v:e,device:t}){return"desktop"===t?`font-family:${Object(B.ge)({v:e,device:t,prefix:"paragraph"})};`:""}function fl({v:e,device:t}){return`font-size:${Object(B.he)({v:e,device:t,prefix:"paragraph"})}px;`}function yl({v:e,device:t}){return`line-height:${Object(B.le)({v:e,device:t,prefix:"paragraph"})};`}function Ol({v:e,device:t}){return`font-weight:${Object(B.je)({v:e,device:t,prefix:"paragraph"})};`}function Sl({v:e,device:t}){return`letter-spacing:${Object(B.ke)({v:e,device:t,prefix:"paragraph"})}px;`}function xl({v:e,device:t}){return"desktop"===t?`font-family:${Object(B.ge)({v:e,device:t,prefix:"h1"})};`:""}function Cl({v:e,device:t}){return`font-size:${Object(B.he)({v:e,device:t,prefix:"h1"})}px;`}function jl({v:e,device:t}){return`line-height:${Object(B.le)({v:e,device:t,prefix:"h1"})};`}function Pl({v:e,device:t}){return`font-weight:${Object(B.je)({v:e,device:t,prefix:"h1"})};`}function Bl({v:e,device:t}){return`letter-spacing:${Object(B.ke)({v:e,device:t,prefix:"h1"})}px;`}function wl({v:e,device:t}){return"desktop"===t?`font-family:${Object(B.ge)({v:e,device:t,prefix:"h2"})};`:""}function Tl({v:e,device:t}){return`font-size:${Object(B.he)({v:e,device:t,prefix:"h2"})}px;`}function zl({v:e,device:t}){return`line-height:${Object(B.le)({v:e,device:t,prefix:"h2"})};`}function El({v:e,device:t}){return`font-weight:${Object(B.je)({v:e,device:t,prefix:"h2"})};`}function kl({v:e,device:t}){return`letter-spacing:${Object(B.ke)({v:e,device:t,prefix:"h2"})}px;`}function Hl({v:e,device:t}){return"desktop"===t?`font-family:${Object(B.ge)({v:e,device:t,prefix:"h3"})};`:""}function Fl({v:e,device:t}){return`font-size:${Object(B.he)({v:e,device:t,prefix:"h3"})}px;`}function _l({v:e,device:t}){return`line-height:${Object(B.le)({v:e,device:t,prefix:"h3"})};`}function Rl({v:e,device:t}){return`font-weight:${Object(B.je)({v:e,device:t,prefix:"h3"})};`}function Ll({v:e,device:t}){return`letter-spacing:${Object(B.ke)({v:e,device:t,prefix:"h3"})}px;`}function Ml({v:e,device:t}){return"desktop"===t?`font-family:${Object(B.ge)({v:e,device:t,prefix:"h4"})};`:""}function Il({v:e,device:t}){return`font-size:${Object(B.he)({v:e,device:t,prefix:"h4"})}px;`}function Wl({v:e,device:t}){return`line-height:${Object(B.le)({v:e,device:t,prefix:"h4"})};`}function Nl({v:e,device:t}){return`font-weight:${Object(B.je)({v:e,device:t,prefix:"h4"})};`}function Al({v:e,device:t}){return`letter-spacing:${Object(B.ke)({v:e,device:t,prefix:"h4"})}px;`}function Vl({v:e,device:t}){return"desktop"===t?`font-family:${Object(B.ge)({v:e,device:t,prefix:"h5"})};`:""}function Dl({v:e,device:t}){return`font-size:${Object(B.he)({v:e,device:t,prefix:"h5"})}px;`}function $l({v:e,device:t}){return`line-height:${Object(B.le)({v:e,device:t,prefix:"h5"})};`}function Gl({v:e,device:t}){return`font-weight:${Object(B.je)({v:e,device:t,prefix:"h5"})};`}function Ul({v:e,device:t}){return`letter-spacing:${Object(B.ke)({v:e,device:t,prefix:"h5"})}px;`}function Kl({v:e,device:t}){return"desktop"===t?`font-family:${Object(B.ge)({v:e,device:t,prefix:"h6"})};`:""}function Yl({v:e,device:t}){return`font-size:${Object(B.he)({v:e,device:t,prefix:"h6"})}px;`}function ql({v:e,device:t}){return`line-height:${Object(B.le)({v:e,device:t,prefix:"h6"})};`}function Xl({v:e,device:t}){return`font-weight:${Object(B.je)({v:e,device:t,prefix:"h6"})};`}function Zl({v:e,device:t}){return`letter-spacing:${Object(B.ke)({v:e,device:t,prefix:"h6"})}px;`}function Jl(){return"font-weight: inherit;"}function Ql({v:e,device:t,state:o,prefix:n="saleColor"}){const a=Object(B.B)({v:e,device:t,state:o,prefix:n});return void 0===a?"":`color:${a};`}function es({v:e,device:t,prefix:o="sale"}){return"desktop"===t?`font-family:${Object(B.ge)({v:e,device:t,prefix:o})};`:""}function ts({v:e,device:t,prefix:o="sale"}){return`font-size:${Object(B.he)({v:e,device:t,prefix:o})}px;`}function os({v:e,device:t,prefix:o="sale"}){return`line-height:${Object(B.le)({v:e,device:t,prefix:o})};`}function ns({v:e,device:t,prefix:o="sale"}){return`font-weight:${Object(B.je)({v:e,device:t,prefix:o})};`}function as({v:e,device:t,prefix:o="sale"}){return`letter-spacing:${Object(B.ke)({v:e,device:t,prefix:o})}px;`}function rs({v:e,device:t,state:o}){const n="on"===Object(B.Vc)({v:e,device:t,state:o})?"column":"row";return void 0===n?"":`flex-direction: ${n};`}function is({v:e,device:t,state:o}){const n=Object(B.Vc)({v:e,device:t,state:o}),a=Object(B.Wc)({v:e,device:t,state:o})/2;return void 0===a?"":"on"===n?`margin: 0 0 ${a}px 0;`:`margin: 0 ${a}px 0 0;`}function ls({v:e,device:t,state:o}){const n=Object(B.Vc)({v:e,device:t,state:o}),a=Object(B.Wc)({v:e,device:t,state:o})/2;return void 0===a?"":"on"===n?`margin: ${a}px 0 0 0;`:`margin: 0 0 0 ${a}px;`}function ss({v:e,device:t}){return Y({v:e,device:t,prefix:"title"})}function cs({v:e,device:t}){return q({v:e,device:t,prefix:"title"})}function ds({v:e,device:t}){return X({v:e,device:t,prefix:"title"})}function us({v:e,device:t}){return Z({v:e,device:t,prefix:"title"})}function ps({v:e,device:t}){return J({v:e,device:t,prefix:"title"})}function bs({v:e,device:t,state:o}){return St({v:e,device:t,state:o,prefix:"titleColor"})}function ms({v:e,device:t}){return`padding-bottom: ${o="titleSpacing",Object(z.defaultValueValue)({v:e,key:o,device:t})}px;`;var o}function hs({v:e,device:t}){return Y({v:e,device:t,prefix:"attributes"})}function gs({v:e,device:t}){return q({v:e,device:t,prefix:"attributes"})}function vs({v:e,device:t}){return X({v:e,device:t,prefix:"attributes"})}function fs({v:e,device:t}){return Z({v:e,device:t,prefix:"attributes"})}function ys({v:e,device:t}){return J({v:e,device:t,prefix:"attributes"})}function Os({v:e,device:t,state:o}){const n=Object(B.Fc)({v:e,device:t,state:o}),a=Object(B.Ec)({v:e,device:t,state:o});return null==n||null==a?"":`padding: ${a}px ${n}px;`}function Ss({v:e,device:t,state:o}){return St({v:e,device:t,state:o,prefix:"attributeColor"})}function xs({v:e,device:t,state:o}){const n=Object(B.u)({v:e,device:t,state:o,current:"top"}),a=Object(B.r)({v:e,device:t,state:o}),r=Object(B.n)({v:e,device:t,state:o}),i=Object(B.Gc)({v:e,device:t,state:o}),l=(e,t)=>"table"===e?t:0;return void 0===n?"":`border-top: ${l(i,n)}px; border-right: ${l(i,n)}px; border-bottom: ${n}px; border-left: ${l(i,n)}px; border-style: ${a}; border-color: ${r};`}function Cs({v:e,device:t,state:o}){return"table"===Object(B.Gc)({v:e,device:t,state:o})?"":"border-bottom-width: 0;"}var js=o(6);function Ps({v:e,device:t,state:o}){const n=Object(z.defaultValueValue)({v:e,key:"gridColumn",device:t,state:o});return`width:${n>1?100/n:100}%;`}function Bs({v:e,device:t}){return`padding: ${o="padding",Object(z.defaultValueValue)({v:e,key:o,device:t})}px;`;var o}function ws({v:e,device:t,state:o}){return`margin-top: ${Object(z.defaultValueValue)({v:e,key:"paginationSpacing",device:t,state:o})}px;`}function Ts({v:e,device:t,state:o}){return Y({v:e,device:t,state:o,prefix:"pagination"})}function zs({v:e,device:t,state:o}){return q({v:e,device:t,state:o,prefix:"pagination"})}function Es({v:e,device:t,state:o}){return X({v:e,device:t,state:o,prefix:"pagination"})}function ks({v:e,device:t,state:o}){return Z({v:e,device:t,state:o,prefix:"pagination"})}function Hs({v:e,device:t,state:o}){return J({v:e,device:t,state:o,prefix:"pagination"})}function Fs({v:e,device:t,state:o}){return St({v:e,device:t,state:o,prefix:"paginationColor"})}function _s({v:e,device:t,state:o}){return dt({v:e,device:t,state:o,prefix:"paginationBg"})}function Rs({v:e,device:t,state:o}){return We({v:e,device:t,state:o,prefix:"pagination"})}function Ls({v:e,device:t}){return St({v:e,device:t,state:js.a,prefix:"paginationColor"})}function Ms({v:e,device:t}){return dt({v:e,device:t,state:js.a,prefix:"paginationBg"})}function Is({v:e,device:t}){return We({v:e,device:t,state:js.a,prefix:"pagination"})}function Ws({v:e,device:t,state:o}){return Ae({v:e,device:t,state:o,prefix:"pagination"})}function Ns({v:e,device:t,state:o}){return"off"===Object(z.defaultValueValue)({v:e,key:"filter",device:t,state:o})?"display:none;":"display: flex;"}function As({v:e,device:t,state:o}){const n=Object(B.c)({v:e,device:t,state:o,prefix:"filter"});return`justify-content:${void 0===n?n:{left:"flex-start",center:"center",right:"flex-end"}[n]};`}function Vs({v:e,device:t,state:o}){const n=Object(z.defaultValueValue)({v:e,key:"filterSpacing",device:t,state:o});return`margin: 1px ${n}px 0 ${n}px;`}function Ds({v:e,device:t,state:o}){return`margin-bottom: ${Object(z.defaultValueValue)({v:e,key:"afterFilterSpacing",device:t,state:o})}px;`}function $s({v:e,device:t,state:o}){return Y({v:e,device:t,state:o,prefix:"filter"})}function Gs({v:e,device:t,state:o}){return q({v:e,device:t,state:o,prefix:"filter"})}function Us({v:e,device:t,state:o}){return X({v:e,device:t,state:o,prefix:"filter"})}function Ks({v:e,device:t,state:o}){return Z({v:e,device:t,state:o,prefix:"filter"})}function Ys({v:e,device:t,state:o}){return J({v:e,device:t,state:o,prefix:"filter"})}function qs({v:e,device:t,state:o}){return St({v:e,device:t,state:o,prefix:"filterColor"})}function Xs({v:e,device:t,state:o}){return dt({v:e,device:t,state:o,prefix:"filterBg"})}function Zs({v:e,device:t,state:o}){return We({v:e,device:t,state:o,prefix:"filter"})}function Js({v:e,device:t,state:o}){return Ae({v:e,device:t,state:o,prefix:"filter"})}function Qs({v:e,device:t,state:o}){return jt({v:e,device:t,state:o,prefix:"filter"})}function ec({v:e,device:t,state:o}){return Vo({v:e,device:t,state:o,prefix:"filter"})}function tc({v:e,device:t}){return St({v:e,device:t,state:js.a,prefix:"filterColor"})}function oc({v:e,device:t}){return dt({v:e,device:t,state:js.a,prefix:"filterBg"})}function nc({v:e,device:t}){return We({v:e,device:t,state:js.a,prefix:"filter"})}function ac({v:e,device:t}){return jt({v:e,device:t,state:js.a,prefix:"filter"})}function rc(){return"transition-property: color, box-shadow, background, border;"}function ic({v:e,device:t,state:o}){return n="horizontalAlign",Object(z.defaultValueValue)({v:e,key:n,device:t,state:o});var n}function lc({v:e,device:t,state:o}){return St({v:e,device:t,state:o,prefix:"filterColor"})}function sc({v:e,device:t}){return St({v:e,device:t,state:"active",prefix:"filterColor"})}function cc({v:e,device:t}){return dt({v:e,device:t,state:"active",prefix:"filterBg"})}function dc({v:e,device:t}){return We({v:e,device:t,state:"active",prefix:"filter"})}function uc({v:e,device:t}){return jt({v:e,device:t,state:"active",prefix:"filter"})}function pc({v:e,device:t,state:o}){return dt({v:e,device:t,state:o,prefix:"filterBg"})}function bc({v:e,device:t,state:o}){return We({v:e,device:t,state:o,prefix:"filter"})}function mc({v:e,device:t,state:o}){return Ae({v:e,device:t,state:o,prefix:"filter"})}function hc({v:e,device:t,state:o}){return jt({v:e,device:t,state:o,prefix:"filter"})}function gc({v:e,device:t,state:o}){return`margin-top: -${Object(B.u)({v:e,device:t,state:o})}px `}function vc({v:e,device:t,state:o}){return`margin-bottom: ${function({v:e,device:t,state:o}){return n="spacing",Object(z.defaultValueValue)({v:e,key:n,device:t,state:o});var n}({v:e,device:t,state:o})}px `}function fc({v:e,device:t,state:o}){const n=function({v:e,device:t,state:o}){return n="filterSpacing",Object(z.defaultValueValue)({v:e,key:n,device:t,state:o});var n}({v:e,device:t,state:o});return`margin: 1px ${n}px 0 ${n}px;`}function yc({v:e,device:t,state:o}){return`margin-bottom:${function({v:e,device:t,state:o}){return n="afterFilterSpacing",Object(z.defaultValueValue)({v:e,key:n,device:t,state:o});var n}({v:e,device:t,state:o})}px;`}function Oc({v:e,device:t,state:o}){const n=ic({v:e,device:t,state:o});return"right"===n?"flex-direction: row-reverse;":"center"===n?"justify-content: center;":""}function Sc({v:e,device:t,state:o}){return`text-align: ${ic({v:e,device:t,state:o})};`}function xc({v:e,device:t,state:o}){return"right"===ic({v:e,device:t,state:o})?"margin: 0 10px 0 0;":"margin: 0 0 0 10px;"}function Cc({v:e,device:t}){return`font-size: ${.75*Object(B.he)({v:e,device:t})}px;`}function jc({v:e,device:t,state:o}){const n=Object(B.c)({v:e,device:t,state:o,prefix:"filter"});return`justify-content:${void 0===n?n:{left:"flex-start",center:"center",right:"flex-end"}[n]};`}function Pc({v:e,device:t,state:o}){return Vo({v:e,device:t,state:o,prefix:"filter"})}function Bc({v:e,device:t}){return Y({v:e,device:t,prefix:"filter"})}function wc({v:e,device:t}){return q({v:e,device:t,prefix:"filter"})}function Tc({v:e,device:t}){return X({v:e,device:t,prefix:"filter"})}function zc({v:e,device:t}){return Z({v:e,device:t,prefix:"filter"})}function Ec({v:e,device:t}){return J({v:e,device:t,prefix:"filter"})}function kc({v:e,device:t}){return St({v:e,device:t,state:"active",prefix:"color"})}function Hc({v:e,device:t}){return dt({v:e,device:t,state:"active",prefix:"bg"})}function Fc({v:e,device:t}){return We({v:e,device:t,state:"active"})}function _c({v:e,device:t}){return jt({v:e,device:t,state:"active"})}function Rc({v:e}){return`transition: height ${e.animDuration}s ease-out;`}function Lc(){return"transition-property: color, box-shadow, background, border;"}function Mc({v:e,device:t,state:o}){const n=n=>Object(z.defaultValueValue)({v:e,key:n,device:t,state:o}),a=n("iconPosition"),r=n("iconSpacing");switch(a){case"left":return`margin: 0 ${r}px 0 0;`;case"right":return`margin: 0 0 0 ${r}px;`;case"top":return`margin: 0 0 ${r}px 0;`;case"bottom":return`margin: ${r}px 0 0 0;`}}function Ic({v:e,device:t,state:o}){var n;return`font-size: ${n="iconCustomSize",Object(z.defaultValueValue)({v:e,key:n,device:t,state:o})}px;`}function Wc({v:e}){var t;return`border-bottom-color: ${t="bgColorHex",Object(z.defaultValueValue)({v:e,key:t})};`}function Nc({v:e}){var t;return`border-right-color: ${t="bgColorHex",Object(z.defaultValueValue)({v:e,key:t})};`}function Ac({v:e}){var t;return`border-left-color: ${t="bgColorHex",Object(z.defaultValueValue)({v:e,key:t})};`}function Vc({v:e,state:t}){return`background-color: ${Object(B.n)({v:e,state:t})}; z-index: 1;`}function Dc({v:e,device:t,state:o}){return`height: ${Object(B.s)({v:e,device:t,state:o})}px;`}function $c({v:e,device:t,state:o}){return`width: ${Object(B.s)({v:e,device:t,state:o})}px;`}function Gc({v:e,device:t,state:o}){return`right: calc(-100vw + ${Object(B.s)({v:e,device:t,state:o})}px);`}function Uc({v:e,device:t,state:o}){return`left: calc(-100vw + ${Object(B.s)({v:e,device:t,state:o})}px);`}function Kc({v:e,device:t,state:o}){return`border-width: 0 0 ${Object(B.s)({v:e,device:t,state:o})}px 0;`}function Yc({v:e}){return 0===e.items.length?"border-top: 1px solid transparent; margin-top: -1px;":""}function qc({v:e,device:t,state:o}){var n;switch(n="iconPosition",Object(z.defaultValueValue)({v:e,key:n,device:t,state:o})){case"left":return"flex-direction: row;";case"right":return"flex-direction: row-reverse;";case"top":return"flex-direction: column;";case"bottom":return"flex-direction: column-reverse;"}}function Xc({v:e,device:t,state:o}){var n;return`justify-content: ${"left"===(n="iconPosition",Object(z.defaultValueValue)({v:e,key:n,device:t,state:o}))?"flex-start":"flex-end"};`}function Zc({v:e,device:t,state:o}){var n;return`top: calc(100% - ${n="borderWidth",Object(z.defaultValueValue)({v:e,key:n,device:t,state:o})}px);`}function Jc({v:e,device:t,state:o}){var n;return`bottom: calc(100% - ${n="borderWidth",Object(z.defaultValueValue)({v:e,key:n,device:t,state:o})}px);`}function Qc({v:e,device:t,state:o}){var n;return`margin-bottom: ${n="spacingAfter",Object(z.defaultValueValue)({v:e,key:n,device:t,state:o})}px;`}function ed({v:e,device:t,state:o}){const n=n=>Object(z.defaultValueValue)({v:e,key:n,device:t,state:o}),a=n("spacingAfter");return"left"===n("verticalAlign")?`margin: 0 ${a}px 0 0;`:`margin: 0 0 0 ${a}px;`}function td({v:e,device:t,state:o}){const n=n=>Object(z.defaultValueValue)({v:e,key:n,device:t,state:o}),a=n("spacing");return"off"===n("verticalMode")?`margin: 0 ${a}px 0 0;`:`margin: 0 0 ${a}px 0;`}function od({v:e,device:t,state:o}){const n=(a="horizontalAlign",Object(z.defaultValueValue)({v:e,key:a,device:t,state:o}));var a;return"justify"===n?"flex-grow: 1;":`justify-content:${{left:"flex-start",center:"center",right:"flex-end"}[n]};`}function nd({v:e,device:t,state:o}){var n;return"style-3"!==(n="navStyle",Object(z.defaultValueValue)({v:e,key:n,device:t,state:o}))?Vo({v:e,device:t,state:o}):""}function ad({v:e,device:t,state:o}){const n=n=>Object(z.defaultValueValue)({v:e,key:n,device:t,state:o}),a=n("verticalMode"),r=n("verticalAlign"),i=Object(B.n)({v:e,device:t,state:o});let l=Object(B.s)({v:e,device:t,state:o});if("off"===a)return 0===l&&(l=1),`content: ""; width: 100vw; height: ${l}px; background-color: ${i}; position: absolute; top: auto; bottom: 0; z-index: 1;`;if("on"===a){if("left"===r)return`content: ""; width: ${l}px; height: 100vh; background-color: ${i}; top: auto; left: auto; right: 0; `;if("right"===r)return`content: ""; width: ${l}px; height: 100vh; background-color: ${i}; top: auto; left: 0; right: auto; `}}function rd({v:e,device:t,state:o}){const n=n=>Object(z.defaultValueValue)({v:e,key:n,device:t,state:o}),a=n("verticalMode"),r=n("verticalAlign"),i=Object(B.n)({v:e,device:t,state:js.a}),l=Object(B.s)({v:e,device:t,state:js.a});if("off"===a)return`content: ""; width: 100%; height: ${l}px; background-color: ${i}; position: absolute; bottom: 0; left: 0; z-index: 2;`;if("on"===a){if("left"===r)return`content: ""; width: ${l}px; height: 100%; background-color: ${i}; position: absolute; right: 0; left: auto; z-index: 2;`;if("right"===r)return`content: ""; width: ${l}px; height: 100%; background-color: ${i}; position: absolute; right: auto; left: 0; z-index: 2;`}}function id({v:e}){return St({v:e,state:js.a,prefix:"color"})}function ld({v:e}){return dt({v:e,state:js.a,prefix:"bg"})}function sd({v:e}){return jt({v:e,state:js.a})}function cd({v:e}){return`border: ${Object(B.s)({v:e,state:"normal"})}px ${Object(B.r)({v:e,state:"normal"})} ${Object(B.n)({v:e,state:js.a})};`}function dd({v:e,device:t,prefix:o="name"}){return"desktop"===t?`font-family:${Object(B.ge)({v:e,device:t,prefix:o})};`:""}function ud({v:e,device:t,prefix:o="name"}){return`font-size:${Object(B.he)({v:e,device:t,prefix:o})}px;`}function pd({v:e,device:t,prefix:o="name"}){return`line-height:${Object(B.le)({v:e,device:t,prefix:o})};`}function bd({v:e,device:t,prefix:o="name"}){return`font-weight:${Object(B.je)({v:e,device:t,prefix:o})};`}function md({v:e,device:t,prefix:o="name"}){return`letter-spacing:${Object(B.ke)({v:e,device:t,prefix:o})}px;`}function hd({v:e,device:t,prefix:o="comment"}){return"desktop"===t?`font-family:${Object(B.ge)({v:e,device:t,prefix:o})};`:""}function gd({v:e,device:t,prefix:o="comment"}){return`font-size:${Object(B.he)({v:e,device:t,prefix:o})}px;`}function vd({v:e,device:t,prefix:o="comment"}){return`line-height:${Object(B.le)({v:e,device:t,prefix:o})};`}function fd({v:e,device:t,prefix:o="comment"}){return`font-weight:${Object(B.je)({v:e,device:t,prefix:o})};`}function yd({v:e,device:t,prefix:o="comment"}){return`letter-spacing:${Object(B.ke)({v:e,device:t,prefix:o})}px;`}function Od({v:e,device:t,prefix:o="date"}){return"desktop"===t?`font-family:${Object(B.ge)({v:e,device:t,prefix:o})};`:""}function Sd({v:e,device:t,prefix:o="date"}){return`font-size:${Object(B.he)({v:e,device:t,prefix:o})}px;`}function xd({v:e,device:t,prefix:o="date"}){return`line-height:${Object(B.le)({v:e,device:t,prefix:o})};`}function Cd({v:e,device:t,prefix:o="date"}){return`font-weight:${Object(B.je)({v:e,device:t,prefix:o})};`}function jd({v:e,device:t,prefix:o="date"}){return`letter-spacing:${Object(B.ke)({v:e,device:t,prefix:o})}px;`}function Pd({v:e,device:t,prefix:o="reply"}){return"desktop"===t?`font-family:${Object(B.ge)({v:e,device:t,prefix:o})} !important;`:""}function Bd({v:e,device:t,prefix:o="reply"}){return`font-size:${Object(B.he)({v:e,device:t,prefix:o})}px !important;`}function wd({v:e,device:t,prefix:o="reply"}){return`line-height:${Object(B.le)({v:e,device:t,prefix:o})} !important;`}function Td({v:e,device:t,prefix:o="reply"}){return`font-weight:${Object(B.je)({v:e,device:t,prefix:o})} !important;`}function zd({v:e,device:t,prefix:o="reply"}){return`letter-spacing:${Object(B.ke)({v:e,device:t,prefix:o})}px !important;`}function Ed({v:e,device:t,prefix:o="postButton"}){return"desktop"===t?`font-family:${Object(B.ge)({v:e,device:t,prefix:o})} !important;`:""}function kd({v:e,device:t,prefix:o="postButton"}){return`font-size:${Object(B.he)({v:e,device:t,prefix:o})}px !important;`}function Hd({v:e,device:t,prefix:o="postButton"}){return`line-height:${Object(B.le)({v:e,device:t,prefix:o})} !important;`}function Fd({v:e,device:t,prefix:o="postButton"}){return`font-weight:${Object(B.je)({v:e,device:t,prefix:o})} !important;`}function _d({v:e,device:t,prefix:o="postButton"}){return`letter-spacing:${Object(B.ke)({v:e,device:t,prefix:o})}px !important;`}function Rd({v:e,device:t,state:o="normal"}){const n=Object(B.Z)({v:e,device:t,state:o});return`width: ${n}px !important; height: ${n}px;`}function Ld({v:e,device:t,state:o="normal"}){return`width: calc(100% - ${Object(B.Z)({v:e,device:t,state:o})+("skin3"===Object(B.ab)({v:e,device:t,state:o})?25:10)}px);`}function Md({v:e,device:t,state:o,prefix:n="postButtonColor"}){const a=Object(B.B)({v:e,device:t,state:o,prefix:n});return void 0===a?"":`color:${a};`}function Id({v:e,device:t,state:o,prefix:n="postButtonBg"}){return dt({v:e,device:t,state:o,prefix:n})}function Wd({v:e,device:t,state:o="normal",prefix:n="postButtonBg"}){const a=Object(B.h)({v:e,device:t,state:o,prefix:n});return void 0===a?"":`color:${a} !important;`}function Nd({v:e,device:t,state:o,prefix:n="nameColor"}){const a=Object(B.B)({v:e,device:t,state:o,prefix:n});return void 0===a?"":`color:${a};`}function Ad({v:e,device:t,state:o,prefix:n="commentsColor"}){const a=Object(B.B)({v:e,device:t,state:o,prefix:n});return void 0===a?"":`color:${a};`}function Vd({v:e,device:t,state:o="normal"}){return`margin-left:${Object(B.Z)({v:e,device:t,state:o})+("skin3"===Object(B.ab)({v:e,device:t,state:o})?25:10)}px;`}function Dd({v:e,device:t,state:o,prefix:n="starsColor"}){const a=Object(B.B)({v:e,device:t,state:o,prefix:n});return void 0===a?"":`color:${a};`}function $d({v:e,device:t,state:o,prefix:n="starsBgColor"}){const a=Object(B.B)({v:e,device:t,state:o,prefix:n});return void 0===a?"":`color:${a};`}function Gd({v:e,device:t,state:o}){const n=n=>Object(z.defaultValueValue)({v:e,key:n,device:t,state:o});return`font-size:${n("starsSize")}${n("starsSizeSuffix")};`}function Ud({v:e,device:t,state:o,prefix:n}){const a=Object(B.B)({v:e,device:t,state:o,prefix:n});return void 0===a?"":`-webkit-text-fill-color:${a};`}function Kd({v:e,device:t,state:o}){const n=Object(B.Nb)({v:e,device:t,state:o});return void 0===n?"":`min-width: ${n}px;`}function Yd({v:e,device:t,state:o}){const n=Object(B.Mb)({v:e,device:t,state:o});return void 0===n?"":`min-height: ${n}px;`}function qd(){return"transition-property:background-color,color,border,box-shadow;"}function Xd({v:e,device:t}){const o=Object(B.he)({v:e,device:t,prefix:"typography"}),n=Object(B.le)({v:e,device:t,prefix:"typography"});return void 0===o||void 0===n?"":`height: ${o*n}px;`}function Zd({v:e,device:t,state:o}){let n="column"===Object(B.Zc)({v:e,device:t,state:o})?"column":"row";return void 0===n?"":`flex-direction: ${n};`}function Jd({v:e,device:t,prefix:o="category"}){return"desktop"===t?`font-family:${Object(B.ge)({v:e,device:t,prefix:o})};`:""}function Qd({v:e,device:t,prefix:o="category"}){return`font-size:${Object(B.he)({v:e,device:t,prefix:o})}px;`}function eu({v:e,device:t,prefix:o="category"}){return`line-height:${Object(B.le)({v:e,device:t,prefix:o})};`}function tu({v:e,device:t,prefix:o="category"}){return`font-weight:${Object(B.je)({v:e,device:t,prefix:o})};`}function ou({v:e,device:t,prefix:o="category"}){return`letter-spacing:${Object(B.ke)({v:e,device:t,prefix:o})}px;`}function nu({v:e,device:t,prefix:o="value"}){return"desktop"===t?`font-family:${Object(B.ge)({v:e,device:t,prefix:o})};`:""}function au({v:e,device:t,prefix:o="value"}){return`font-size:${Object(B.he)({v:e,device:t,prefix:o})}px;`}function ru({v:e,device:t,prefix:o="value"}){return`line-height:${Object(B.le)({v:e,device:t,prefix:o})};`}function iu({v:e,device:t,prefix:o="value"}){return`font-weight:${Object(B.je)({v:e,device:t,prefix:o})};`}function lu({v:e,device:t,prefix:o="value"}){return`letter-spacing:${Object(B.ke)({v:e,device:t,prefix:o})}px;`}function su({v:e,device:t,state:o}){const n=Object(B.Yc)({v:e,device:t,state:o}),a=Object(B.Zc)({v:e,device:t,state:o});return void 0===n?"":"inline"===a?"padding-top: 0px;":`padding-top: ${n/2}px; padding-bottom: ${n/2}px;`}function cu({v:e,device:t,state:o}){const n=Object(B.Xc)({v:e,device:t,state:o}),a=Object(B.Zc)({v:e,device:t,state:o});return void 0===n?"":"inline"===a?"padding-left: 10px;":`padding-left: ${n}px;`}function du({v:e,device:t,state:o}){const n=Object(B.Xc)({v:e,device:t,state:o}),a=Object(B.Zc)({v:e,device:t,state:o});return void 0===n?"":"inline"===a?`margin-right: ${n}px;`:"margin-right: 0;"}function uu({v:e,device:t,prefix:o="categoryColor",state:n}){const a=Object(B.B)({v:e,device:t,prefix:o,state:n});return void 0===a?"":`color:${a};`}function pu({v:e,device:t,prefix:o="valueColor",state:n}){const a=Object(B.B)({v:e,device:t,prefix:o,state:n});return void 0===a?"":`color:${a};`}function bu({v:e,device:t,state:o}){const n=Object(B.Zc)({v:e,device:t,state:o}),a=Object(B.B)({v:e,device:t,state:o,prefix:"dividersColor"});return void 0===a?"":"inline"===n?"border-top: 0;":`border-top: 1px solid ${a};`}function mu({v:e,device:t,state:o}){return`font-size: ${Object(B.ad)({v:e,device:t,state:o})}px;`}function hu({v:e,device:t,state:o,prefix:n="textColor"}){return`color: ${Object(B.B)({v:e,device:t,state:o,prefix:n})};`}function gu({v:e,device:t,state:o}){return`margin-left: ${Object(B.Xd)({v:e,device:t,state:o})}px;`}function vu({v:e,device:t,state:o,prefix:n="bgStarColor"}){return`color: ${Object(B.B)({v:e,device:t,state:o,prefix:n})};`}function fu({v:e,device:t,state:o,prefix:n="iconColor"}){return St({v:e,device:t,state:o,prefix:n})}function yu({v:e,device:t,state:o}){const n=Object(B.Sc)({v:e,device:t,state:o});return void 0===n||"on"===n?"":"display: none;"}function Ou({v:e,device:t,state:o}){const n=Object(B.Jc)({v:e,device:t,state:o});return void 0===n||"off"===n?"":"content: attr(data-counter);"}function Su(){return"transition-property: background-color,color,border;"}function xu({v:e,device:t,state:o,prefix:n="purchasesColor"}){return St({v:e,device:t,state:o,prefix:n})}function Cu({v:e,device:t,prefix:o="purchases"}){return Y({v:e,device:t,prefix:o})}function ju({v:e,device:t,prefix:o="purchases"}){return q({v:e,device:t,prefix:o})}function Pu({v:e,device:t,prefix:o="purchases"}){return X({v:e,device:t,prefix:o})}function Bu({v:e,device:t,prefix:o="purchases"}){return Z({v:e,device:t,prefix:o})}function wu({v:e,device:t,prefix:o="purchases"}){return J({v:e,device:t,prefix:o})}function Tu({v:e,device:t,prefix:o="title"}){return Y({v:e,device:t,prefix:o})}function zu({v:e,device:t,prefix:o="title"}){return q({v:e,device:t,prefix:o})}function Eu({v:e,device:t,prefix:o="title"}){return X({v:e,device:t,prefix:o})}function ku({v:e,device:t,prefix:o="title"}){return Z({v:e,device:t,prefix:o})}function Hu({v:e,device:t,prefix:o="title"}){return J({v:e,device:t,prefix:o})}function Fu({v:e,device:t,prefix:o="cost"}){return Y({v:e,device:t,prefix:o})}function _u({v:e,device:t,prefix:o="cost"}){return q({v:e,device:t,prefix:o})}function Ru({v:e,device:t,prefix:o="cost"}){return X({v:e,device:t,prefix:o})}function Lu({v:e,device:t,prefix:o="cost"}){return Z({v:e,device:t,prefix:o})}function Mu({v:e,device:t,prefix:o="cost"}){return J({v:e,device:t,prefix:o})}function Iu({v:e,device:t,prefix:o="subtotal"}){return Y({v:e,device:t,prefix:o})}function Wu({v:e,device:t,prefix:o="subtotal"}){return q({v:e,device:t,prefix:o})}function Nu({v:e,device:t,prefix:o="subtotal"}){return X({v:e,device:t,prefix:o})}function Au({v:e,device:t,prefix:o="subtotal"}){return Z({v:e,device:t,prefix:o})}function Vu({v:e,device:t,prefix:o="subtotal"}){return J({v:e,device:t,prefix:o})}function Du({v:e,device:t,prefix:o="button"}){return Y({v:e,device:t,prefix:o})}function $u({v:e,device:t,prefix:o="button"}){return q({v:e,device:t,prefix:o})}function Gu({v:e,device:t,prefix:o="button"}){return X({v:e,device:t,prefix:o})}function Uu({v:e,device:t,prefix:o="button"}){return Z({v:e,device:t,prefix:o})}function Ku({v:e,device:t,prefix:o="button"}){return J({v:e,device:t,prefix:o})}function Yu({v:e,device:t,state:o,prefix:n="titleColor"}){return St({v:e,device:t,state:o,prefix:n})}function qu({v:e,device:t,state:o,prefix:n="costColor"}){return St({v:e,device:t,state:o,prefix:n})}function Xu({v:e,device:t,state:o,prefix:n="subtotalColor"}){return St({v:e,device:t,state:o,prefix:n})}function Zu({v:e,device:t,state:o,prefix:n="buttonColor"}){return St({v:e,device:t,state:o,prefix:n})}function Ju({v:e,device:t,state:o,prefix:n="buttonBg"}){return dt({v:e,device:t,state:o,prefix:n})}function Qu({v:e,device:t,state:o}){const n="inline"===Object(B.Hc)({v:e,device:t,state:o})?"row":"column";return void 0===n?"":`flex-direction: ${n};`}function ep({v:e,device:t,state:o}){const n=Object(B.Hc)({v:e,device:t,state:o}),a=Object(B.Ic)({v:e,device:t,state:o});return void 0===a?"":"inline"===n?`width: calc(50% - ${a/2}px);`:`width: 100%; margin-bottom: ${a}px;`}function tp({v:e,device:t,state:o}){return Ae({v:e,device:t,state:o,prefix:"button"})}function op({v:e,device:t,state:o}){const n=Object(B.Oc)({v:e,device:t,state:o});return null==n?"":{left:"left: 0; margin-right: auto; margin-left: 0;",center:"left: 0; right: 0; margin-left: auto; margin-right: auto;",right:"right: 0; margin-right: 0; margin-left: auto;"}[n]}function np({v:e,device:t,state:o}){const n={top:"top: 0; margin-top: 0; margin-bottom: auto;",center:"auto"===Object(B.Mc)({v:e,device:t,state:o})?"top: 50%; margin-top: auto; margin-bottom: auto; transform: translate(0, -50%);":"top: 0; bottom: 0; margin-top: auto; margin-bottom: auto;",bottom:"top: auto; bottom: 0; margin-top: auto; margin-bottom: 0;"},a=Object(B.Pc)({v:e,device:t,state:o});return null==a?"":n[a]}function ap({v:e,device:t,state:o}){const n=Object(B.Qc)({v:e,device:t,state:o}),a=Object(B.Rc)({v:e,device:t,state:o});return null==n&&null==a?"":`width: ${n}${a};`}function rp({v:e,device:t,state:o}){const n=Object(B.Mc)({v:e,device:t,state:o}),a=Object(B.Lc)({v:e,device:t,state:o}),r=Object(B.Nc)({v:e,device:t,state:o});return null==a&&null==r?"":`height:${{auto:"auto",custom:`${a}${r}`,fullHeight:"100vh"}[n]};`}function ip({v:e,device:t,state:o,prefix:n="bubbleColor"}){return St({v:e,device:t,state:o,prefix:n})}function lp({v:e,device:t,state:o,prefix:n="bubbleBg"}){return"bubble"!==Object(B.Kc)({v:e,device:t,state:o})?"background-color: transparent;":ut({v:e,device:t,state:o,prefix:n})}var sp=o(41);function cp({v:e,device:t,state:o}){var n;const a=n=>Object(z.defaultValueValue)({v:e,key:n,device:t,state:o});if("relative"===(null!==(n=a("elementPosition"))&&void 0!==n?n:"relative"))return"";const r=Object(sp.h)(Un.a.read(a("height"))),i=a("heightSuffix");return r&&i?`content: ""; width: 0; padding-top:${r}${i} !important;`:""}function dp({v:e,device:t,state:o}){var n;var a;return"relative"===(null!==(a="elementPosition",n=Object(z.defaultValueValue)({v:e,key:a,device:t,state:o}))&&void 0!==n?n:"relative")?"":"align-items: stretch;"}function up({v:e,device:t,state:o,mode:n}){var a;if("editor"!==n)return"";var r;return"relative"===(null!==(a=Kn.a((r="elementPosition",Object(z.defaultValueValue)({v:e,key:r,device:t,state:o}))))&&void 0!==a?a:"relative")?"":"display: flex; flex: 1 1 auto;"}const pp=({v:e,device:t,state:o})=>{var n;var a;return"relative"===(null!==(n=Kn.a((a="elementPosition",Object(z.defaultValueValue)({v:e,key:a,device:t,state:o}))))&&void 0!==n?n:"relative")?"":"display: flex; width: 100%"},bp=({v:e,device:t,state:o})=>{var n;var a;return"relative"===(null!==(n=Kn.a((a="elementPosition",Object(z.defaultValueValue)({v:e,key:a,device:t,state:o}))))&&void 0!==n?n:"relative")?"":"width: 100%"};function mp({v:e,device:t,state:o}){const n=Object(B.Db)({v:e,device:t,state:o}),a=Object(B.mb)({v:e,device:t,state:o});if("horizontal"===n||"on"===a)return Lo({v:e,device:t,state:o});return`text-align: ${Object(B.c)({v:e,device:t,state:o})};`}function hp({v:e,device:t,state:o}){return"right"===Object(B.Ab)({v:e,device:t,state:o})?"flex-flow: row-reverse nowrap; justify-content: flex-end;":"flex-flow: row nowrap;"}function gp({v:e,device:t,state:o}){const n=Object(B.Ab)({v:e,device:t,state:o}),a=Object(B.Cb)({v:e,device:t,state:o});switch(n){case"left":return`margin:0 ${a}px 0 0;`;case"right":return`margin:0 0 0 ${a}px;`}}function vp({v:e,device:t,state:o}){return`font-size: ${Object(B.Bb)({v:e,device:t,state:o})}px;`}function fp({v:e,device:t,state:o}){return`display: ${"on"===Object(B.mb)({v:e,device:t,state:o})?"flex":"none"};`}function yp({v:e,device:t,state:o}){return`display: ${"on"===Object(B.mb)({v:e,device:t,state:o})?"none":"flex"};`}function Op({v:e,device:t,state:o}){return"horizontal"===Object(B.Db)({v:e,device:t,state:o})?"display: flex; flex-wrap: wrap; justify-content: inherit; align-items: center;":"display: inline-block;"}function Sp({v:e,device:t,state:o}){if("vertical"===Object(B.Db)({v:e,device:t,state:o})){return`max-width: ${Object(B.Eb)({v:e,device:t,state:o})}%; width: 100%;`}return"max-width: none;"}function xp({v:e,device:t,state:o}){return"vertical"===Object(B.Db)({v:e,device:t,state:o})?dt({v:e,device:t,state:o,prefix:"menuBg"}):"background-color: transparent;"}function Cp({v:e,device:t,state:o}){return"horizontal"===Object(B.Db)({v:e,device:t,state:o})?dt({v:e,device:t,state:o,prefix:"menuBg"}):"background-color: transparent;"}function jp({v:e,device:t,state:o}){return We({v:e,device:t,state:o,prefix:"menu"})}function Pp({v:e,device:t,state:o}){return Vo({v:e,device:t,state:o,prefix:"menu"})}function Bp({v:e,device:t}){return St({v:e,device:t,state:"hover"})}function wp({v:e,device:t,state:o}){return"horizontal"===Object(B.Db)({v:e,device:t,state:o})?dt({v:e,device:t,state:"hover",prefix:"menuBg"}):"background-color: transparent;"}function Tp({v:e,device:t}){return dt({v:e,device:t,state:"hover",prefix:"menuBg"})}function zp({v:e,device:t}){return We({v:e,device:t,state:"hover",prefix:"menu"})}function Ep({v:e,device:t}){return St({v:e,device:t,state:"active"})}function kp({v:e,device:t}){return dt({v:e,device:t,state:js.a,prefix:"menuBg"})}function Hp({v:e,device:t,state:o}){return"horizontal"===Object(B.Db)({v:e,device:t,state:o})?dt({v:e,device:t,state:js.a,prefix:"menuBg"}):"background-color: transparent;"}function Fp({v:e,device:t}){return We({v:e,device:t,state:js.a,prefix:"menu"})}function _p({v:e,device:t,state:o}){return`font-size: ${Object(B.rb)({v:e,device:t,state:o})}px;`}function Rp({v:e,device:t}){return Y({v:e,device:t,prefix:"mMenu"})}function Lp({v:e,device:t}){return q({v:e,device:t,prefix:"mMenu"})}function Mp({v:e,device:t}){return X({v:e,device:t,prefix:"mMenu"})}function Ip({v:e,device:t}){return Z({v:e,device:t,prefix:"mMenu"})}function Wp({v:e,device:t}){return J({v:e,device:t,prefix:"mMenu"})}function Np({v:e,device:t,state:o}){return St({v:e,device:t,state:o,prefix:"mMenuColor"})}function Ap({v:e,device:t}){return`color: ${Object(B.nb)({v:e,device:t})};`}function Vp({v:e,device:t}){return St({v:e,device:t,state:"active",prefix:"mMenuColor"})}function Dp({v:e,device:t,state:o}){return`border-color: ${Object(B.n)({v:e,device:t,state:o,prefix:"mMenu"})};`}function $p({v:e,device:t,state:o}){return`background-color: ${Object(B.h)({v:e,device:t,state:o,prefix:"mMenuBg"})};`}function Gp({v:e,device:t,state:o}){const n=Object(B.c)({v:e,device:t,state:o,prefix:"mMenuItem"});return`justify-content: ${("left"===Object(B.ob)({v:e,device:t,state:o})?{left:"flex-start",center:"center",right:"flex-end"}:{left:"flex-end",center:"center",right:"flex-start"})[n]};`}function Up({v:e,device:t,state:o}){return St({v:e,device:t,state:o,prefix:"mMenuIconColor"})}function Kp({v:e,device:t,state:o}){const n=Object(B.ob)({v:e,device:t,state:o}),a=Object(B.qb)({v:e,device:t,state:o});switch(n){case"left":return`margin:0 ${a}px 0 0;`;case"right":return`margin:0 0 0 ${a}px;`}}function Yp({v:e,device:t,state:o}){return`font-size: ${Object(B.pb)({v:e,device:t,state:o})}px;`}function qp({v:e,device:t,state:o}){return"right"===Object(B.ob)({v:e,device:t,state:o})?"flex-flow: row-reverse nowrap;":"flex-flow: row nowrap;"}function Xp({v:e,device:t}){const o=Object(B.le)({v:e,device:t,prefix:"mMenu"}),n=Object(B.he)({v:e,device:t,prefix:"mMenu"}),{paddingTop:a,paddingTopSuffix:r,paddingBottom:i,paddingBottomSuffix:l,paddingRight:s,paddingRightSuffix:c}=Ko({v:e,device:t,prefix:"mMenu"});return`${`height: calc(${Math.round(o*n*10)/10}px + ${`${a}${r}`} + ${`${i}${l}`})`}; padding-right: ${s}${c};`}function Zp({v:e,device:t}){if("vertical"===Object(B.Db)({v:e,device:t}))return"margin: 0;";return`margin: ${Object(B.md)({v:e,device:t})} ${Object(B.ld)({v:e,device:t})} ${Object(B.jd)({v:e,device:t})} ${Object(B.kd)({v:e,device:t})};`}function Jp({v:e,device:t,state:o}){const n=Object(B.Db)({v:e,device:t,state:o}),a=Object(B.qd)({v:e,device:t}),r=Object(B.pd)({v:e,device:t}),i=Object(B.nd)({v:e,device:t}),l=Object(B.od)({v:e,device:t});return"horizontal"===n?`padding-top:${a}; padding-bottom:${i}; margin-right:${r}; margin-left:${l};`:`margin-top:${r}; margin-bottom:${l}; margin-right:0; margin-left:0;`}function Qp({v:e,device:t,state:o}){return"horizontal"===Object(B.Db)({v:e,device:t,state:o})?"":"margin-top: 0;"}function eb({v:e,device:t,state:o}){return"horizontal"===Object(B.Db)({v:e,device:t,state:o})?"":"margin-bottom: 0;"}function tb({v:e,device:t,state:o}){return Vo({v:e,device:t,state:o,prefix:"mMenu"})}function ob({v:e,device:t}){return Y({v:e,device:t,prefix:"subMenu"})}function nb({v:e,device:t}){return q({v:e,device:t,prefix:"subMenu"})}function ab({v:e,device:t}){return X({v:e,device:t,prefix:"subMenu"})}function rb({v:e,device:t}){return Z({v:e,device:t,prefix:"subMenu"})}function ib({v:e,device:t}){return J({v:e,device:t,prefix:"subMenu"})}function lb({v:e,device:t,state:o}){return St({v:e,device:t,state:o,prefix:"subMenuColor"})}function sb({v:e,device:t,state:o}){return St({v:e,device:t,state:o,prefix:"subMenuHoverColor"})}function cb({v:e,device:t,state:o}){return"right"===Object(B.Fb)({v:e,device:t,state:o})?"flex-flow: row-reverse nowrap; justify-content: flex-end;":"flex-flow: row nowrap;"}function db({v:e,device:t,state:o}){const n=Object(B.Fb)({v:e,device:t,state:o}),a=Object(B.Hb)({v:e,device:t,state:o});switch(n){case"left":return`margin:0 ${a}px 0 0;`;case"right":return`margin:0 0 0 ${a}px;`}}function ub({v:e,device:t,state:o}){return`font-size: ${Object(B.Gb)({v:e,device:t,state:o})}px;`}function pb({v:e,device:t,state:o}){return`background-color: ${Object(B.h)({v:e,device:t,state:o,prefix:"subMenuBg"})};`}function bb({v:e,device:t,state:o}){return`background-color: ${Object(B.h)({v:e,device:t,state:o,prefix:"subMenuHoverBg"})};`}function mb({v:e,device:t,state:o}){return`border-color: ${Object(B.B)({v:e,device:t,state:o,prefix:"subMenuColor"})};`}function hb({v:e,device:t,state:o}){const n=Object(B.n)({v:e,device:t,state:o,prefix:"subMenu"}),a=Object(B.r)({v:e,device:t,state:o,prefix:"subMenu"});return`border-bottom: ${Object(B.s)({v:e,device:t,state:o,prefix:"subMenu"})}px ${a} ${n};`}function gb({v:e,device:t}){return St({v:e,device:t,state:"active",prefix:"subMenuColor"})}function vb({v:e,device:t}){return`background-color: ${Object(B.h)({v:e,device:t,state:js.a,prefix:"subMenuBg"})};`}function fb({v:e,device:t}){return jt({v:e,device:t,state:"active"})}function yb({v:e,device:t,state:o}){if("vertical"===Object(B.Db)({v:e,device:t,state:o})&&(t===ra.c||t===ra.b))return"position: relative;top: auto; left: auto; transform: translate(0, 0); height: 0; overflow: hidden;"}function Ob({v:e,device:t,state:o}){if("horizontal"===Object(B.Db)({v:e,device:t,state:o})&&(t===ra.c||t===ra.b))return"position: relative;top: auto; left: auto; transform: translate(0, 0); height: 0; overflow: hidden;"}function Sb({v:e,device:t,state:o}){if("vertical"===Object(B.Db)({v:e,device:t,state:o})&&(t===ra.c||t===ra.b))return"height: auto; width: 100%; left: auto; right: auto;"}function xb({v:e,device:t,state:o}){if("horizontal"===Object(B.Db)({v:e,device:t,state:o})&&(t===ra.c||t===ra.b))return"height: auto; width: 100%; left: auto; right: auto;"}function Cb({device:e}){if(e===ra.c||e===ra.b)return"border-right-style: solid; border-left-style: none;"}function jb(){return"position: absolute; top: 0; width: 305px;"}function Pb({device:e}){return e!==ra.a?"":"right: calc(100% + 5px);"}function Bb({device:e}){return e!==ra.a?"":"left: calc(100% + 5px);"}function wb({v:e,device:t,state:o}){return"horizontal"===Object(B.Db)({v:e,device:t,state:o})?"top: calc(100% + 5px); width: 300px;":"top: 0; width: 300px;"}function Tb({v:e,device:t,state:o}){return"horizontal"===Object(B.Db)({v:e,device:t,state:o})?"right: 0;":"right: calc(100% + 5px);"}function zb({v:e,device:t,state:o}){return"horizontal"===Object(B.Db)({v:e,device:t,state:o})?"left: 0;":"left: calc(100% + 5px);"}function Eb({v:e,device:t,state:o}){if("vertical"===Object(B.Db)({v:e,device:t,state:o})||t===ra.b){return`max-width: ${Object(B.yb)({v:e,device:t,state:o})}${Object(B.zb)({v:e,device:t,state:o})};`}return"max-width: 100%;"}function kb({v:e,device:t,state:o}){return`padding: ${Object(B.wb)({v:e,device:t,state:o})}px;`}function Hb({v:e,device:t,state:o}){if("custom"===Object(B.ub)({v:e,device:t,state:o})){return`min-height: ${Object(B.tb)({v:e,device:t,state:o})}${Object(B.vb)({v:e,device:t,state:o})};`}return"min-height: auto;"}function Fb({v:e,device:t,state:o}){return"vertical"===Object(B.Db)({v:e,device:t,state:o})||t===ra.b?"display: block":"display: none;"}function _b({v:e,device:t,state:o}){return`width: ${Object(B.ec)({v:e,device:t,state:o})}%;`}function Rb({v:e,device:t,state:o}){return`font-size: ${Object(B.cc)({v:e,device:t,state:o})}px;`}function Lb({v:e,device:t,state:o}){const n=Object(B.bc)({v:e,device:t,state:o}),a=Object(B.dc)({v:e,device:t,state:o});return"left"===n?`margin: auto ${a}px auto 0;`:`margin: auto 0 auto ${a}px;`}function Mb({v:e,device:t,state:o}){return`flex-direction: ${"left"===Object(B.bc)({v:e,device:t,state:o})?"row":"row-reverse"};`}function Ib({v:e,device:t,state:o}){const n=Object(B.ac)({v:e,device:t,state:o});return"left"===Object(B.bc)({v:e,device:t,state:o})||"center"===n?`justify-content: ${{left:"flex-start",center:"center",right:"flex-end"}[n]};`:"left"===n?"justify-content: flex-end;":"right"===n?"justify-content: flex-start;":void 0}function Wb({v:e,device:t,state:o}){return`text-align: ${Object(B.ac)({v:e,device:t,state:o})};`}function Nb({v:e,device:t,state:o}){if("on"===Object(B.Xb)({v:e,device:t,state:o})){return`width: ${Object(B.Yb)({v:e,device:t,state:o})}px;`}return`width: calc(100% / ${Object(B.Zb)({v:e,device:t,state:o})});`}function Ab({v:e,device:t}){return`background-color: ${Object(B.h)({v:e,device:t,state:"active",prefix:"bg"})};`}function Vb({v:e,device:t}){return`color: ${Object(B.B)({v:e,device:t,state:"active",prefix:"color"})};`}function Db({v:e,device:t,state:o,prefix:n="table"}){return Vo({v:e,device:t,state:o,prefix:n})}function $b({v:e,device:t}){return`margin-right: ${o="itemPadding",Object(z.defaultValueValue)({v:e,key:o,device:t})}px;`;var o}function Gb({v:e,device:t,state:o}){const n=Object(B.B)({v:e,device:t,state:o});return`color: ${n}; background-color: ${n};`}function Ub({v:e}){return e.menuName?"width: auto":"width: 100%"}function Kb({v:e,device:t}){return St({v:e,device:t,state:"active",prefix:"color"})}var Yb=o(50);const qb=e=>"absolute"===e.elementPosition||"fixed"===e.elementPosition,Xb=(e,t)=>{const o=o=>Object(z.defaultValueValue)({v:e,key:o,device:t}),n=o("imageExtension"),a=o("imagePopulation");return(Object(Yb.k)(n)||Object(Yb.h)(n))&&!a};function Zb({v:e,device:t,props:o={}}){const n=o=>Object(z.defaultValueValue)({v:e,key:o,device:t}),a=Object(Yb.f)(e,t),r=n("size"),{width:i}=o.wrapperSizes[t],l=o.props.meta[t+"W"];if(Object(w.a)(i)||Object(w.a)(l))return"";if("custom"===a||Xb(e,t)){if("%"===n("widthSuffix")){const t=Math.round(Math.abs(100*i/l));return`${qb(e)?"width":"max-width"}: ${t}%;`}return`max-width: ${n("width")}px;`}return`max-width: ${r}%;`}function Jb({device:e,props:t={}}){const{height:o}=t.wrapperSizes[e];return null==o?"":"height: auto;"}function Qb({v:e,device:t,props:o={}}){const n=Object(Yb.f)(e,t),a=(r="size",Object(z.defaultValueValue)({v:e,key:r,device:t}));var r;const{width:i}=o[t];return Object(w.a)(i)?"":"custom"===n||Xb(e,t)?`${qb(e)?"width":"max-width"}: ${i}px;`:Object(w.a)(a)?`max-width: ${i}px;`:`max-width: ${a}%;`}function em({v:e,device:t,props:o={}}){if("custom"===Object(Yb.f)(e,t)||Xb(e,t)){const{height:e}=o[t];return Object(w.a)(e)?"":`height: ${e}px;`}return"height: auto;"}function tm({v:e,device:t,props:o={}}){if("custom"===Object(Yb.f)(e,t)||Xb(e,t)){const{width:e}=o[t];return Object(w.a)(e)?"":`width: ${e}px;`}return"width: 100%;"}function om({v:e,device:t,props:o={}}){if("custom"===Object(Yb.f)(e,t)||Xb(e,t)){const{height:e}=o[t];return Object(w.a)(e)?"":`height: ${e}px;`}const n=(a="imageSrc",Object(z.defaultValueValue)({v:e,device:t,key:a}));var a;const{width:r,height:i}=o[t];if(n||Object(w.a)(r)||Object(w.a)(i))return"height: auto;";return`height: auto;padding-top: ${Object(sp.e)(i/r*100,4)}%;`}function nm({v:e,device:t}){return"custom"===Object(Yb.f)(e,t)||Xb(e,t)?"position: absolute;":"position: static;"}function am({v:e,device:t,props:o={}}){const{marginLeft:n}=o[t];if(Object(w.a)(n))return"";return"custom"===Object(Yb.f)(e,t)||Xb(e,t)?`margin-left: ${n}px;`:"margin-left: auto;"}function rm({v:e,device:t,props:o={}}){const{marginTop:n}=o[t];if(Object(w.a)(n))return"";return"custom"===Object(Yb.f)(e,t)||Xb(e,t)?`margin-top: ${n}px;`:"margin-top: auto;"}function im({v:e,device:t,props:o}){const n=Object(Yb.f)(e,t),a=(r="imageSrc",Object(z.defaultValueValue)({v:e,device:t,key:r}));var r;if("custom"===n||!a||Xb(e,t)){const{width:e,height:n}=o[t];if(Object(w.a)(e)&&Object(w.a)(n))return"";return`padding-top: ${Object(sp.e)(n/e*100,4)}%;`}return"padding-top: 0;"}function lm(){return"width: 100%;"}function sm(){return"transition-property: border, box-shadow, filter;"}function cm({v:e,device:t,state:o,prefix:n="image"}){return dn({v:e,device:t,state:o,prefix:n})}function dm({v:e,device:t,state:o}){const n=Object(B.f)({v:e,device:t,state:o});return void 0===n?"":`animation-name:${n};`}function um({v:e,device:t,state:o}){const n=Object(B.e)({v:e,device:t,state:o});return void 0===n?"":`animation-duration:${n}ms;`}function pm({v:e,device:t,state:o}){const n=Object(B.d)({v:e,device:t,state:o});return void 0===n?"":`animation-delay:${n}ms;`}const bm=Object(w.d)(e=>Object(sp.b)(-359,359,e)?e:void 0,Un.a.read);function mm(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}const hm=e=>{var t;const o=bm(Object(z.defaultValueValue)(function(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?mm(Object(o),!0).forEach((function(t){Object(P.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):mm(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}({key:"rotate"},e)));return null!==(t=Object(w.c)(e=>(e=>Object.entries(e).reduce((e,[t,o])=>e+`${t}(${o})`,"transform: ")+";")({rotate:e+"deg"}),o))&&void 0!==t?t:""};function gm({v:e,device:t}){const o=Object(B.Zd)({v:e,device:t}),n=Object(B.Vd)({v:e,device:t});return void 0===o||void 0===n?"":`padding: ${n}px ${o}px;`}function vm({v:e,device:t}){return Ae({v:e,device:t,prefix:"input"})}function fm({v:e,device:t}){const o=o=>Object(z.defaultValueValue)({v:e,key:o,device:t}),n=o("inputPosition"),a=o("spacing");return void 0===a||void 0===n?"":{left:`margin: 0 ${a}px 0 0;`,right:`margin: 0 0 0 ${a}px;`,top:`margin: 0 0 ${a}px 0;`,bottom:`margin: ${a}px 0 0 0;`}[n]}function ym({v:e,device:t}){const o=o=>Object(z.defaultValueValue)({v:e,key:o,device:t}),n=o("inputPosition"),a=o("inputWidth"),r="left"===n||"right"===n?"px":o("inputWidthSuffix"),i=o("inputHeight");return void 0===a||void 0===i?"":`width: ${a}${r}; height: ${i}px;`}function Om({v:e,device:t}){var o;return`flex-direction: ${{left:"row",right:"row-reverse",top:"column",bottom:"column-reverse"}[(o="inputPosition",Object(z.defaultValueValue)({v:e,key:o,device:t}))]};`}function Sm({v:e,device:t}){const o=o=>Object(z.defaultValueValue)({v:e,key:o,device:t}),n=o("inputPosition"),a=o("inputVerticalAlign"),r=o("inputHorizontalAlign");return`align-items: ${{top:"flex-start",right:"flex-end",center:"center",bottom:"flex-end",left:"flex-start"}["left"===n||"right"===n?a:r]};`}function xm({v:e,device:t}){return Y({v:e,device:t,prefix:"input"})}function Cm({v:e,device:t}){return q({v:e,device:t,prefix:"input"})}function jm({v:e,device:t}){return X({v:e,device:t,prefix:"input"})}function Pm({v:e,device:t}){return Z({v:e,device:t,prefix:"input"})}function Bm({v:e,device:t}){return J({v:e,device:t,prefix:"input"})}function wm({v:e,device:t,state:o}){return St({v:e,device:t,state:o,prefix:"inputColor"})}function Tm({v:e,device:t,state:o}){return St({v:e,device:t,state:o,prefix:"buttonColor"})}function zm({v:e,device:t}){return Y({v:e,device:t,prefix:"label"})}function Em({v:e,device:t}){return q({v:e,device:t,prefix:"label"})}function km({v:e,device:t}){return X({v:e,device:t,prefix:"label"})}function Hm({v:e,device:t}){return Z({v:e,device:t,prefix:"label"})}function Fm({v:e,device:t}){return J({v:e,device:t,prefix:"label"})}function _m({v:e,device:t}){return Y({v:e,device:t,prefix:"value"})}function Rm({v:e,device:t}){return q({v:e,device:t,prefix:"value"})}function Lm({v:e,device:t}){return X({v:e,device:t,prefix:"value"})}function Mm({v:e,device:t}){return Z({v:e,device:t,prefix:"value"})}function Im({v:e,device:t}){return J({v:e,device:t,prefix:"value"})}function Wm({v:e,device:t,state:o}){return St({v:e,device:t,state:o,prefix:"labelColor"})}function Nm({v:e,device:t,state:o}){return St({v:e,device:t,state:o,prefix:"valueColor"})}function Am({v:e,device:t}){return Y({v:e,device:t,prefix:"clear"})}function Vm({v:e,device:t}){return q({v:e,device:t,prefix:"clear"})}function Dm({v:e,device:t}){return X({v:e,device:t,prefix:"clear"})}function $m({v:e,device:t}){return Z({v:e,device:t,prefix:"clear"})}function Gm({v:e,device:t}){return J({v:e,device:t,prefix:"clear"})}function Um({v:e,device:t,state:o}){return St({v:e,device:t,state:o,prefix:"clearColor"})}function Km({v:e}){return`margin-bottom: ${e.tableSpacing}px;`}function Ym({v:e}){const t=Object(B.s)({v:e,prefix:"table"}),o=Object(B.r)({v:e,prefix:"table"}),n=Object(B.n)({v:e,prefix:"table"});return void 0===t?"":`border:${t}px ${o} ${n};`}function qm({v:e,device:t,state:o}){return`background-color: ${Object(B.B)({v:e,device:t,state:o,prefix:"inputBgColor"})};`}function Xm({v:e,device:t,state:o}){return`background-color: ${Object(B.B)({v:e,device:t,state:o,prefix:"tableBgColor"})};`}function Zm({v:e,device:t,state:o}){return We({v:e,device:t,prefix:"input",state:o})}function Jm({v:e,device:t,state:o}){return jt({v:e,device:t,prefix:"input",state:o})}function Qm({v:e,device:t,state:o}){return jt({v:e,device:t,prefix:"table",state:o})}function eh({v:e,device:t}){return We({v:e,device:t,prefix:"button"})}function th({v:e,device:t}){return Ae({v:e,device:t,prefix:"button"})}function oh({v:e,device:t,state:o}){const n=Object(B.s)({v:e,device:t,state:o,prefix:"thumbnail"}),a=Object(B.r)({v:e,device:t,state:o,prefix:"thumbnail"}),r=Object(B.n)({v:e,device:t,state:o,prefix:"thumbnail"});return void 0===n?"":`border:${n}px ${a} ${r};`}function nh({v:e,device:t,state:o}){return Ae({v:e,device:t,state:o,prefix:"thumbnail"})}function ah({v:e,device:t,state:o}){return jt({v:e,device:t,prefix:"thumbnail",state:o})}function rh({v:e,device:t,state:o}){const n=Object(B.Uc)({v:e,device:t,state:o});return void 0!==n||null!==n?"bottom"===e.thumbStyle?`margin-top: ${n}px;`:"margin-top: 0;":""}function ih({v:e,device:t,state:o}){const n=Object(B.Tc)({v:e,device:t,state:o}),a=Object(B.Uc)({v:e,device:t,state:o});return void 0!==n||null!==n?"bottom"===e.thumbStyle?`margin-bottom: -${n}px;`:"top"===e.thumbStyle?`margin-bottom: ${-1*(n-a)}px;`:"margin-bottom: 0;":""}function lh({v:e,device:t,state:o}){const n=Object(B.Tc)({v:e,device:t,state:o});return void 0!==n||null!==n?("left"===e.thumbStyle||e.thumbStyle,`margin: 0 ${n}px ${n}px 0;`):""}function sh({v:e,device:t,state:o}){const n=Object(B.Tc)({v:e,device:t,state:o}),a="left"===e.thumbStyle||"right"===e.thumbStyle?e.thumbPerRowRL:e.thumbPerRowTB;return(void 0!==n||null!==n)&&`width: calc(${100/a}% - ${n*(a-1)/a}px);`}function ch({v:e,device:t,state:o}){const n=n=>Object(z.defaultValueValue)({v:e,key:n,device:t,state:o});return"left"===e.thumbStyle||"right"===e.thumbStyle?`min-width: ${n("thumbWidth")}${n("thumbWidthSuffix")}; width: ${n("thumbWidth")}${n("thumbWidthSuffix")};`:""}function dh({v:e,device:t,state:o}){const n=Object(B.Uc)({v:e,device:t,state:o});return"left"===e.thumbStyle?`margin-right: ${n}px;`:"right"===e.thumbStyle?`margin-left: ${n}px;`:"margin-right:0; margin-left:0;"}function uh({v:e}){return"right"===e.thumbStyle?"left: 1rem; right: auto;":"top"===e.thumbStyle?"bottom: 1rem; top: auto;":""}var ph=o(71);function bh({v:e,device:t,state:o,prefix:n="text"}){o=((e,t)=>"hover"===Object(ph.i)({v:e,state:t})?"hover":t)(e,o);const a=n=>Object(z.defaultValueValue)({v:e,key:n,device:t,state:o}),{hex:r}=Object(Kt.d)(a(Object(Gt.b)(n,"shadowColorHex")),a(Object(Gt.b)(n,"shadowColorPalette"))),i=Object(Ut.c)(r,a(Object(Gt.b)(n,"shadowColorOpacity"))),l=a(Object(Gt.b)(n,"shadowBlur"));return`text-shadow:${a(Object(Gt.b)(n,"shadowHorizontal"))}px ${a(Object(Gt.b)(n,"shadowVertical"))}px ${l}px ${i};`}},,function(e,t,o){"use strict";o.d(t,"d",(function(){return a})),o.d(t,"e",(function(){return i})),o.d(t,"a",(function(){return l.a})),o.d(t,"c",(function(){return u})),o.d(t,"b",(function(){return b})),o.d(t,"f",(function(){return m})),o.d(t,"g",(function(){return g})),o.d(t,"h",(function(){return v})),o.d(t,"i",(function(){return f})),o.d(t,"j",(function(){return y}));var n=o(17);function a(e,t){if(t){e=Object(n.a)(t).hex}return{hex:e}}var r=o(43);function i(e,t,o){if(o){const t=Object(r.e)(o);if(t)return t[e]}return t}var l=o(176),s=o(8);const c=e=>(e=>"optgroup"in e)(e)?{title:e.label,optgroup:e.optgroup.map(c)}:{title:e.label,value:e.alias||e.placeholder},d=e=>s.default.flatten(s.default.values(e),!0).map(c),u=(e,t)=>{if(!e)return[];const o=d(e[t]),n=[],{reference:a,multiReference:r}=e;return[...null!=a?a:[],...null!=r?r:[]].forEach(({title:e,dynamicContent:o})=>{const a=d(o[t]);a.length&&n.push({optgroup:a,title:e})}),[...o,...n]};var p=o(61);const b=(e,t,o)=>{const n=Object(p.a)(e,e=>e.placeholder===o||e.alias===o);if(null!=n&&n.obj)return n.obj},m=()=>[{title:"None",value:"none"},{icon:{className:"brz-ed-shape--1"},value:"1"},{icon:{className:"brz-ed-shape--2"},value:"2"},{icon:{className:"brz-ed-shape--3"},value:"3"},{icon:{className:"brz-ed-shape--4"},value:"4"},{icon:{className:"brz-ed-shape--5"},value:"5"},{icon:{className:"brz-ed-shape--6"},value:"6"},{icon:{className:"brz-ed-shape--7"},value:"7"},{icon:{className:"brz-ed-shape--8"},value:"8"},{icon:{className:"brz-ed-shape--9"},value:"9"},{icon:{className:"brz-ed-shape--10"},value:"10"},{icon:{className:"brz-ed-shape--11"},value:"11"},{icon:{className:"brz-ed-shape--12"},value:"12"},{icon:{className:"brz-ed-shape--13"},value:"13"},{icon:{className:"brz-ed-shape--14"},value:"14"},{icon:{className:"brz-ed-shape--15"},value:"15"},{icon:{className:"brz-ed-shape--16"},value:"16"},{icon:{className:"brz-ed-shape--17"},value:"17"},{icon:{className:"brz-ed-shape--18"},value:"18"},{icon:{className:"brz-ed-shape--19"},value:"19"},{icon:{className:"brz-ed-shape--20"},value:"20"},{icon:{className:"brz-ed-shape--21"},value:"21"},{icon:{className:"brz-ed-shape--22"},value:"22"},{icon:{className:"brz-ed-shape--23"},value:"23"},{icon:{className:"brz-ed-shape--24"},value:"24"},{icon:{className:"brz-ed-shape--25"},value:"25"},{icon:{className:"brz-ed-shape--26"},value:"26"},{icon:{className:"brz-ed-shape--27"},value:"27"},{icon:{className:"brz-ed-shape--28"},value:"28"},{icon:{className:"brz-ed-shape--29"},value:"29"},{icon:{className:"brz-ed-shape--30"},value:"30"},{icon:{className:"brz-ed-shape--31"},value:"31"},{icon:{className:"brz-ed-shape--32"},value:"32"},{icon:{className:"brz-ed-shape--33"},value:"33"},{icon:{className:"brz-ed-shape--34"},value:"34"},{icon:{className:"brz-ed-shape--35"},value:"35"},{icon:{className:"brz-ed-shape--36"},value:"36"},{icon:{className:"brz-ed-shape--37"},value:"37"},{icon:{className:"brz-ed-shape--38"},value:"38"},{icon:{className:"brz-ed-shape--39"},value:"39"},{icon:{className:"brz-ed-shape--40"},value:"40"},{icon:{className:"brz-ed-shape--41"},value:"41"},{icon:{className:"brz-ed-shape--42"},value:"42"}];var h=o(15);const g=(e=h.a.getAll().taxonomies)=>e?e.map(e=>{const{id:t="",label:o="",name:n="",terms:a=[]}=e;return t||o||n?a&&a.length?{title:o,optgroup:a.map(e=>({title:e.name,value:`${n}|${e.id}`}))}:{title:o,value:`${n}|${t}`}:{title:"-",value:""}}):[{title:"-",value:""}],v=(e="")=>{const t=h.a.getAll().taxonomies.filter(t=>{const{name:o}=t;return"products"===e?o.indexOf("product")>-1:"posts"===e?o.indexOf("product")<0:t});return g(t)},f=()=>{const e=h.a.getAll().postTypesTaxs;return e?e.map(e=>({value:e.name,title:e.label})):[{title:"-",value:""}]},y=e=>{const t=h.a.getAll().postTypesTaxs;return e&&t?t.filter(t=>t.taxonomies&&t.taxonomies.length&&t.name===e).reduce((e,t)=>{if(t.taxonomies){const o=t.taxonomies.map(e=>({value:e.id,title:e.name}));return e.concat(o)}return e},[]):[{title:"-",value:""}]}},function(e,t,o){"use strict";o.d(t,"a",(function(){return d}));var n=o(0),a=o.n(n),r=o(8),i=o(4),l=o.n(i),s=o(167);const c=(e,t)=>{const{className:o="",icon:n="nc-circle-add",style:i={},onClick:c=r.default.noop}=e,d=l()("brz-icon-svg brz-ed-icon-svg",o);return a.a.createElement("svg",{ref:t,className:d,onClick:c,style:i},a.a.createElement("use",{xlinkHref:Object(s.a)(n)}))},d=a.a.forwardRef(c);t.b=d},function(e,t,o){"use strict";var n=o(114);let a={};t.a={init(e){a=e},load(e){a=Object(n.a)(a,e)},get:e=>a[e],getAll:()=>a}},function(e,t,o){"use strict";o.d(t,"n",(function(){return l})),o.d(t,"p",(function(){return h})),o.d(t,"h",(function(){return p})),o.d(t,"g",(function(){return m})),o.d(t,"i",(function(){return b})),o.d(t,"q",(function(){return v.a})),o.d(t,"j",(function(){return O})),o.d(t,"f",(function(){return y})),o.d(t,"o",(function(){return B})),o.d(t,"m",(function(){return k})),o.d(t,"l",(function(){return E})),o.d(t,"e",(function(){return S.e})),o.d(t,"c",(function(){return S.c})),o.d(t,"a",(function(){return S.a})),o.d(t,"b",(function(){return S.b})),o.d(t,"d",(function(){return S.d})),o.d(t,"k",(function(){return S.f}));var n=o(61),a=o(78),r=o(65);const i=(e,t,o,n)=>{if("type"===e&&null!=a.a.getComponent(t)){if(o.value=o.value||{},void 0!==o.value._id&&n.keepExistingIds)return;if("GlobalBlock"===o.type)return;o.value._id=Object(r.a)()}};function l(e,t={}){const o=JSON.parse(JSON.stringify(e));return Object(n.e)(o,i,t),o}var s=o(2),c=o(26);function d(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function u(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?d(Object(o),!0).forEach((function(t){Object(s.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):d(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function p(e,t,o){let n=e.findIndex(e=>e===t),a="increase"===o?++n:--n;return a===e.length?a=0:a<0&&(a=e.length-1),e[a]}function b(e,t,o){return m(e,t,e=>{if(e.type){const{defaultValue:t}=a.a.getComponent(e.type)||{};return!(!t||!t.style)&&t.style[o]}})}function m(e,t,o){const n=[...e];let a=[];for(let r=0;r<=e.length;r++){const e=Object(c.getIn)(t,n),r=o(e);if(r||null===r)return{value:e,path:n};a.unshift(n.pop())}return{value:null,path:null}}function h(e,t=0,o=0){const n=function(e){const{defaultValue:t}=a.a.getComponent(e.type);return t.style}(e);let r=Object(c.setIn)(e,["value"],g(e.value,n));if(o++,e.value.items&&o<=t){const n=e.value.items.map((e,n)=>{let a={};return r.value&&r.value.items&&r.value.items[n]&&(a=r.value.items[n]),h(u(u({},e),{},{value:u(u({},a.value),e.value)}),t,o)});r=Object(c.setIn)(r,["value","items"],n)}return r}const g=(e,t={})=>Object.entries(t).reduce((o,[n,a])=>(o[n]=n in e?e[n]:a,o[n]="items"===n?e.items.map((e,o)=>u(u({},e),{},{value:u(u({},g(e.value,t.items[o].value)),e.value)})):n in e?e[n]:a,o),{});var v=o(221),f=o(194);const y=(e,t,o=t+1)=>{if(!e[t])throw new Error("Can't clone invalid item at index "+t);return Object(f.a)(e,o,e[t])},O=(e,t,o)=>o.reduce((e,o,n)=>{const a=l(Object(v.a)(o));return Object(c.insert)(e,t+n,a)},e);var S=o(135),x=o(42),C=o(29),j=o(25),P=o(19);function B(e,t=5){const o=e.value.items[0].value,n=o._styles;let{offsetX:a=0,offsetY:r=0}=o;const i=Object(P.G)(Object(j.b)().getState());if(!(C.a.read(a)&&C.a.read(r))&&n&&i){const e=n.reduce((e,t)=>i[t]?Object.assign(e,i[t]):e,{offsetX:0,offsetY:0});a=e.offsetX,r=e.offsetY}return Object(x.a)(e,e=>{e.value.items[0].value.offsetX=a+t,e.value.items[0].value.offsetY=r+t})}function w(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function T(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?w(Object(o),!0).forEach((function(t){Object(s.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):w(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function z(e,t){const o=t(e);let n;for(let r in e)if(e.hasOwnProperty(r)&&"object"==typeof e[r]&&null!==e[r]){const i=z(o[r],t);var a;if(i!==e[r])n=null!==(a=n)&&void 0!==a?a:{},n[r]=i}return n?function(e,t){if(Array.isArray(t)){let o,n=!1;for(const a in e){if(!e.hasOwnProperty(a))continue;const r=Number(a);r>=0&&r<=t.length-1&&(n||(o=t.slice(0),n=!0),o[a]=e[a])}return o||t}return T(T({},t),e)}(n,o):o}const E=e=>Object(n.b)(["type","value"],e),k=(e,t)=>z(t,t=>E(t)?e(t):t)},function(e,t,o){"use strict";o.d(t,"d",(function(){return c})),o.d(t,"c",(function(){return d})),o.d(t,"b",(function(){return i})),o.d(t,"a",(function(){return l})),o.d(t,"e",(function(){return s}));o(80);var n=o(92),a=o(25),r=o(19);function i(){return Object(r.h)(Object(a.b)().getState()).colorPalette}function l(e){return i().find(t=>t.id===e)}const s=(e,t)=>e.map(({id:e,hex:o})=>{let n=".brz-cp-"+e.toLowerCase(),a=".brz-bcp-"+e.toLowerCase();return"function"==typeof t&&(n=t(n),a=t(a)),`.brz ${n}, .brz ${a}{color: ${o};}`}).join("");const c=e=>Object(n.c)(null!=e?e:"");function d(e,t){if(c(e)){e=e.replace("#",""),t=isNaN(t)?1:t;return`rgba(${parseInt(e.substring(0,2),16)}, ${parseInt(e.substring(2,4),16)}, ${parseInt(e.substring(4,6),16)}, ${t})`}}},function(e,t,o){"use strict";o.d(t,"a",(function(){return W})),o.d(t,"b",(function(){return b})),o.d(t,"d",(function(){return N})),o.d(t,"e",(function(){return A}));var n=o(12),a=o(2),r=o(0),i=o.n(r),l=o(40),s=o.n(l),c=o(91),d=o(59),u=o(8);const p=i.a.createContext(void 0),b=({children:e,position:t,onEscape:o})=>{const n=Object(r.useContext)(p),a=Object(r.useMemo)(()=>u.default.defaults({position:t,onEscape:o},n),[t,o,n]);return i.a.createElement(p.Provider,{value:a},e)};var m=o(76),h=o(224);const g=({data:e,toolbar:t})=>i.a.createElement("div",{className:"brz-ed-toolbar__item"},i.a.createElement(h.a,{className:"brz-ed-toolbar__option",data:e,toolbar:t,location:"toolbar"}));function v(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function f(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?v(Object(o),!0).forEach((function(t){Object(a.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):v(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}class y extends i.a.Component{constructor(...e){super(...e),Object(a.a)(this,"state",{itemsRenderer:void 0}),Object(a.a)(this,"containerRef",i.a.createRef()),Object(a.a)(this,"arrowRef",i.a.createRef()),Object(a.a)(this,"setItemsRenderer",e=>{this.setState({itemsRenderer:e},this.props.onContentChange)}),Object(a.a)(this,"resetItemsRenderer",()=>{this.setState({itemsRenderer:void 0},this.props.onContentChange)}),Object(a.a)(this,"renderItems",e=>{const{position:t,containerRef:o}=this.props,n=e.map((n,a)=>i.a.createElement(g,{key:n.id,data:n,toolbar:f(f({},this),{},{toolbarRef:null!=o?o:this.containerRef,toolbarCSSPosition:t,toolbarItemIndex:a+1,toolbarItemsLength:e.length})}));return i.a.createElement("div",{className:"brz-ed-toolbar__items brz-d-xs-flex brz-align-items-center"},n)})}render(){const{containerRef:e,arrowRef:t,arrow:o,items:n,onClick:a,onMouseEnter:r,onMouseLeave:l}=this.props,{itemsRenderer:s}=this.state,c=Object(m.b)(n);return c.length?i.a.createElement("div",{ref:null!=e?e:this.containerRef,className:"brz-ed-toolbar",onClick:a,onMouseEnter:r,onMouseLeave:l},void 0!==s?s(c):this.renderItems(c),o&&i.a.createElement("div",{ref:null!=t?t:this.arrowRef,className:"brz-ed-arrow brz-ed-arrow--top-center brz-ed-toolbar__arrow"})):null}}Object(a.a)(y,"defaultProps",{arrow:!0,items:[]});var O=o(41),S=o(198);class x extends i.a.Component{constructor(...e){super(...e),Object(a.a)(this,"toolbarItemsContainerRef",i.a.createRef()),Object(a.a)(this,"toolbarItemsArrowRef",i.a.createRef()),Object(a.a)(this,"reposition",()=>{const{node:e,offsetTop:t,offsetBottom:o,offsetLeft:n,position:a}=this.props,r=this.toolbarItemsContainerRef.current,i=this.toolbarItemsArrowRef.current,l=e.ownerDocument.defaultView,s=document.documentElement.clientWidth;if(!r)return;const c=r.getBoundingClientRect(),d=e.getBoundingClientRect();let u,p;const b="fixed"===a?0:l.scrollY;b+d.top-(c.height+300)>=l.scrollY?(u=!1,p=b+d.top-c.height-Number(t),Object(S.b)("above")):(u=!0,p=b+d.top+d.height+Number(o),Object(S.b)("below"));const m=d.left+d.width/2-c.width/2+Number(n),h=e.ownerDocument.defaultView===l.parent?58:0,g=s-c.width,v=Object(O.a)(m,h,g),f=m-v;r.style.top=p+"px",r.style.left=v+"px","fixed"===a&&(r.style.position="fixed"),r.classList.add("brz-ed-animated","brz-ed-animated--fadeInDown"),u?r.classList.add("brz-ed-toolbar--bottom"):r.classList.remove("brz-ed-toolbar--bottom"),i&&(c.width/2-Math.abs(f)<23?i.classList.add("brz-hidden"):i.classList.remove("brz-hidden"),u?(i.classList.remove("brz-ed-arrow--top-center"),i.classList.add("brz-ed-arrow--bottom-center")):(i.classList.remove("brz-ed-arrow--bottom-center"),i.classList.add("brz-ed-arrow--top-center")),i.style.left=`calc(50% + ${f}px)`)})}componentDidMount(){this.reposition()}componentDidUpdate(){this.props.repositionOnUpdates&&this.reposition()}render(){return i.a.createElement(y,Object(n.a)({},this.props,{containerRef:this.toolbarItemsContainerRef,arrowRef:this.toolbarItemsArrowRef,arrow:!0,onContentChange:this.reposition}))}}Object(a.a)(x,"defaultProps",{offsetTop:14,offsetBottom:14,offsetLeft:0});var C=o(208);const j=({getItems:e,getTitle:t})=>e?(Object(r.useEffect)(()=>{C.b&&C.b.setItems(e,t)}),Object(r.useEffect)(()=>()=>{C.b&&C.b.clearItems()},[]),null):null;let P=null,B=null;const w={getActive:()=>B,setActive(e){this.unsetActive(),B=e},unsetIfActive(e){e===B&&(P=e,B=null,P.handleMonitorDeactivationRequest())},unsetActive(){null!==B&&(P=B,B=null,P.handleMonitorDeactivationRequest())},activateLastActive(){P&&P.handleMonitorActivationRequest()}};var T=o(69);function z(e,t,o){let n=o.target;for(;n&&n!==e;){if(n.matches(t))return n;n=n.parentElement}return n}function E(e,t,o){if(e.matches(t)&&Object(T.g)(o.clientX,o.clientY,e.getBoundingClientRect()))return e;const n=e.querySelectorAll(t);for(let e=0;e<n.length;e++){const t=n[e];if(t&&Object(T.g)(o.clientX,o.clientY,t.getBoundingClientRect()))return t}return null}function k(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function H(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?k(Object(o),!0).forEach((function(t){Object(a.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):k(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const F=new Map;class _ extends i.a.Component{constructor(...e){super(...e),Object(a.a)(this,"context",void 0),Object(a.a)(this,"state",{opened:!1}),Object(a.a)(this,"node",null),Object(a.a)(this,"selectorNode",null),Object(a.a)(this,"makeComponentUnControlled",()=>{null!==this.node&&this.node.removeEventListener("click",this.handleNodeClick)}),Object(a.a)(this,"makeComponentControlled",()=>{null!==this.node&&this.node.addEventListener("click",this.handleNodeClick,!1)}),Object(a.a)(this,"handleNodeClick",e=>{if(null!==this.node&&!e.brzToolbarHandled)if(void 0===this.props.selector){if(w.getActive()===this)return;e.brzToolbarHandled=!0,this.show()}else{const t=("dom-tree"===this.props.selectorSearchStrategy?z:E)(this.node,this.props.selector,e);t?(e.brzToolbarHandled=!0,!1===this.state.opened?(this.selectorNode=t,this.show()):t!==this.selectorNode&&this.hide(()=>{this.selectorNode=t,this.show()})):this.hide()}}),Object(a.a)(this,"handleClick",e=>{e.stopPropagation();const{onClick:t}=this.props;t&&t(e)}),Object(a.a)(this,"handleMouseEnter",e=>{e.stopPropagation();const{onMouseEnter:t}=this.props;if(t&&t(e),null!==this.node){const e=new CustomEvent("brz.toolbar.mouseenter",{bubbles:!0});this.node.dispatchEvent(e)}}),Object(a.a)(this,"handleMouseLeave",e=>{e.stopPropagation();const{onMouseLeave:t}=this.props;if(void 0!==t&&t(e),this.node){const e=new CustomEvent("brz.toolbar.mouseleave",{bubbles:!0});this.node.dispatchEvent(e)}}),Object(a.a)(this,"handleEscape",()=>{const e=this.props,t=H(H({},this.context),e);t.onEscape?t.onEscape():this.hide()}),Object(a.a)(this,"handleClickOutside",()=>{w.unsetActive()}),Object(a.a)(this,"clickOutsideException",e=>{try{const t=s.a.findDOMNode(this);return null!==t&&t.contains(e)}catch(e){return!1}}),Object(a.a)(this,"getOutSideExceptions",()=>[".brz-ed-sidebar__right",".brz-ed-tooltip__content-portal",".brz-ed-fixed",".brz-ed-box__resizer--point",".media-modal",".media-modal-backdrop",this.clickOutsideException])}componentDidMount(){if(this.node=s.a.findDOMNode(this),null!==this.node&&null!==this.node.ownerDocument){if(!F.get(this.node.ownerDocument)){const e=this.node.ownerDocument.createElement("div");e.id="brz-toolbar-portal",this.node.ownerDocument.body.appendChild(e),F.set(this.node.ownerDocument,e)}this.props.manualControl||this.makeComponentControlled()}}componentDidUpdate({manualControl:e=!1}){e!==this.props.manualControl&&(!0===e?this.makeComponentControlled():this.makeComponentUnControlled())}componentWillUnmount(){w.unsetIfActive(this),this.node=null,this.selectorNode=null}handleMonitorActivationRequest(){this.show()}handleMonitorDeactivationRequest(){this.hide()}show(){if(!this.state.opened){const{onBeforeOpen:e,onOpen:t}=this.props;w.setActive(this),e&&e(),this.setState({opened:!0},()=>{if(t&&t(),null!==this.node){const e=new CustomEvent("brz.toolbar.open",{bubbles:!0});this.node.dispatchEvent(e)}})}}hide(e){if(this.state.opened){const{onBeforeClose:t,onClose:o}=this.props;t&&t(),this.setState({opened:!1},()=>{if(o&&o(),null!==this.node){const e=new CustomEvent("brz.toolbar.close",{bubbles:!0});this.node.dispatchEvent(e)}null==e||e()})}}renderToolbar(){var e;if(null===this.node)return;if(null===this.node.ownerDocument)return;const t=this.props.getItems();if(!t||0===t.length)return;const o=this.props,a=this.context,r=this.node.ownerDocument,l=F.get(r);return l&&s.a.createPortal(i.a.createElement(i.a.Fragment,null,i.a.createElement(c.a,{exceptions:this.getOutSideExceptions(),onClickOutside:this.handleClickOutside},i.a.createElement(x,Object(n.a)({},a,o,{items:t,node:null!==(e=this.selectorNode)&&void 0!==e?e:this.node,onClick:this.handleClick,onMouseEnter:this.handleMouseEnter,onMouseLeave:this.handleMouseLeave}))),o.getSidebarItems&&i.a.createElement(j,{getItems:o.getSidebarItems,getTitle:o.getSidebarTitle}),i.a.createElement(d.a,{id:"key-helper-toolbar-escape",keyNames:["esc"],onKeyUp:this.handleEscape})),l)}render(){const{children:e}=this.props,{opened:t}=this.state;return i.a.createElement(i.a.Fragment,null,e,t&&this.renderToolbar())}}Object(a.a)(_,"contextType",p),Object(a.a)(_,"defaultProps",{manualControl:!1});var R=o(4),L=o.n(R),M=o(125),I=o(14);class W extends i.a.Component{constructor(...e){super(...e),Object(a.a)(this,"state",{opened:!1}),Object(a.a)(this,"onClickOutside",()=>{this.close()}),Object(a.a)(this,"handleClick",()=>{!this.state.opened?this.open():this.close()}),Object(a.a)(this,"handleEscape",()=>{this.close()})}componentWillUnmount(){w.unsetIfActive(this)}getClickOutSideExceptions(){return[".brz-ed-collapsible__toolbar",".brz-ed-sidebar__right",".brz-ed-tooltip__content-portal",".brz-ed-popup-integrations",".brz-ed-popup-authorization",".media-modal",".media-modal-backdrop"]}handleMonitorActivationRequest(){this.open()}handleMonitorDeactivationRequest(){this.close()}open(){if(this.state.opened)return;Object(S.b)("below");const{onBeforeOpen:e,onOpen:t}=this.props;w.setActive(this),e&&e(),this.setState({opened:!0},()=>{t&&t()})}close(){if(!this.state.opened)return;const{onBeforeClose:e,onClose:t}=this.props;w.unsetIfActive(this),e&&e(),this.setState({opened:!1},()=>{t&&t()})}renderBadge(){const{membership:e,global:t}=this.props;return e||t?i.a.createElement(M.CSSTransition,{key:"badge",timeout:0},i.a.createElement("div",{className:"brz-ed-collapsible__badge"},t&&i.a.createElement(I.b,{icon:"nc-global"}),e&&i.a.createElement(I.b,{icon:"nc-user"}))):null}renderIcon(){return i.a.createElement(M.CSSTransition,{key:"icon",classNames:"fadeCollapsibleIcon",timeout:200},i.a.createElement("div",{className:"brz-ed-collapsible__icon",onClick:this.handleClick},i.a.createElement(I.b,{icon:"nc-settings"})))}renderToolbar(){const{getItems:e,animation:t}=this.props,o="leftToRight"===t?"animation-left-right":"animation-right-left",n=e();return i.a.createElement(M.CSSTransition,{key:"toolbar",classNames:o,timeout:200},i.a.createElement("div",{className:"brz-ed-collapsible__toolbar"},i.a.createElement(y,{items:n,arrow:!1})))}render(){const{className:e,getSidebarItems:t,getSidebarTitle:o}=this.props,{opened:n}=this.state,a=L()("brz-ed-collapsible",{"brz-ed-collapsible--opened":n},e);return i.a.createElement(i.a.Fragment,null,i.a.createElement(c.a,{onClickOutside:this.onClickOutside,exceptions:this.getClickOutSideExceptions()},i.a.createElement(M.TransitionGroup,{className:a},this.renderBadge(),n?this.renderToolbar():this.renderIcon())),n&&t&&i.a.createElement(j,{getItems:t,getTitle:o}),n&&i.a.createElement(d.a,{keyNames:["esc"],id:"key-helper-toolbar-escape",onKeyUp:this.handleEscape}))}}Object(a.a)(W,"defaultProps",{animation:"leftToRight",global:!1,membership:!1});t.c=_;const N=()=>w.unsetActive(),A=()=>w.activateLastActive()},function(e,t,o){"use strict";o.d(t,"C",(function(){return u.e})),o.d(t,"a",(function(){return u.a})),o.d(t,"L",(function(){return u.g})),o.d(t,"m",(function(){return u.c})),o.d(t,"l",(function(){return u.b})),o.d(t,"O",(function(){return u.h})),o.d(t,"J",(function(){return u.f})),o.d(t,"P",(function(){return u.i})),o.d(t,"s",(function(){return u.d})),o.d(t,"H",(function(){return m})),o.d(t,"r",(function(){return h})),o.d(t,"e",(function(){return g})),o.d(t,"b",(function(){return v})),o.d(t,"d",(function(){return f})),o.d(t,"E",(function(){return y})),o.d(t,"K",(function(){return O})),o.d(t,"h",(function(){return S})),o.d(t,"k",(function(){return x})),o.d(t,"j",(function(){return C})),o.d(t,"N",(function(){return P})),o.d(t,"M",(function(){return B})),o.d(t,"F",(function(){return w})),o.d(t,"i",(function(){return T})),o.d(t,"I",(function(){return z})),o.d(t,"g",(function(){return E})),o.d(t,"c",(function(){return k})),o.d(t,"q",(function(){return F})),o.d(t,"o",(function(){return _})),o.d(t,"n",(function(){return R})),o.d(t,"p",(function(){return L})),o.d(t,"G",(function(){return M})),o.d(t,"f",(function(){return I})),o.d(t,"z",(function(){return W})),o.d(t,"y",(function(){return N})),o.d(t,"D",(function(){return A})),o.d(t,"A",(function(){return V})),o.d(t,"B",(function(){return D})),o.d(t,"x",(function(){return $})),o.d(t,"t",(function(){return G})),o.d(t,"u",(function(){return U})),o.d(t,"w",(function(){return K})),o.d(t,"v",(function(){return Y}));var n=o(2),a=o(81),r=o(42),i={"wrapper--iconText":{showToolbar:"on"},"wrapper--form2":{showToolbar:"on"},"wrapper--login":{showToolbar:"on"},"wrapper--reset--psw":{showToolbar:"on"},"wrapper--tabs":{showToolbar:"on"},"wrapper--timeline":{showToolbar:"on"},"wrapper--table":{showToolbar:"on"},"wrapper--protected-page":{showToolbar:"on"},"wrapper--accordion":{showToolbar:"on"},"wrapper--imageGallery":{showToolbar:"on"},"wrapper--menu":{showToolbar:"on"},"wrapper--video-playlist":{showToolbar:"on"},"wrapper--switcher":{showToolbar:"on"},"wrapper--spacer":{marginTop:0,marginBottom:0,tabletMarginTop:0,tabletMarginBottom:0,mobileMarginTop:0,mobileMarginBottom:0},"wrapper--carousel":{showToolbar:"on"},"wrapper--posts":{showToolbar:"on",paddingType:"ungrouped",paddingTop:10,paddingBottom:10,paddingLeft:15,paddingRight:15},"column--carousel":{width:100},"richText--carousel":{text:"<p class='brz-tp-paragraph brz-text-lg-center'><span class='brz-cp-color7'>The point of using dummy text for your paragraph is that it has a more-or-less normal distribution of letters. making it look like readable English.</span></p>"},"hide-row-borders":{showToolbar:"off"},"padding-0":{padding:0},submit:{type:"submit"},search:{type:"search"},"image--dynamic":{imagePopulation:"{{brizy_dc_img_featured_image}}"},"button--dynamic":{linkExternalType:"linkPopulation",linkPopulation:"{{brizy_dc_url_post}}",text:"READ MORE",borderRadius:2,borderWidth:2,fontSize:11,paddingBottom:11,paddingLeft:26,paddingRL:26,paddingRight:26,paddingTB:11,paddingTop:11,size:"small",tempPaddingBottom:11,tempPaddingLeft:26,tempPaddingRL:26,tempPaddingRight:26,tempPaddingTB:11,tempPaddingTop:11,mobileBorderRadius:2,mobilePaddingBottom:11,mobilePaddingLeft:26,mobilePaddingRight:26,mobilePaddingTop:11,mobileSize:"small"},"richText-title--dynamic":{text:"<p class='brz-text-lg-center brz-tp-heading4'><span class='brz-cp-color2'><span class='text-population' data-population='brizy_dc_post_title'>#Post Title</span>&nbsp;</span></p>"},"richText-desc--dynamic":{text:"<p class='brz-text-lg-center brz-tp-paragraph'><span class='brz-cp-color7'><span class='text-population' data-population='brizy_dc_post_excerpt'>#Post Excerpt</span></span></p>"},"wrapper--facebookComments":{showToolbar:"on"},"story-map":{size:90,height:70,heightSuffix:"%",elementPosition:"fixed",offsetX:5,offsetXSuffix:"%",offsetXAlignment:"left",offsetY:31,offsetYSuffix:"%",offsetYAlignment:"top"},"story-progressBar":{width:90,elementPosition:"fixed",offsetX:5,offsetXSuffix:"%",offsetXAlignment:"left",offsetY:48,offsetYSuffix:"%",offsetYAlignment:"top"},"story-line":{width:90,elementPosition:"fixed",offsetX:5,offsetXSuffix:"%",offsetXAlignment:"left",offsetY:49,offsetYSuffix:"%",offsetYAlignment:"top"},"story-countdown2":{width:90,height:10,heightSuffix:"%",elementPosition:"fixed",offsetX:5,offsetXSuffix:"%",offsetXAlignment:"left",offsetY:45,offsetYSuffix:"%",offsetYAlignment:"top"},"story-counter":{width:50,elementPosition:"fixed",offsetX:39,offsetXSuffix:"%",offsetXAlignment:"left",offsetY:45,offsetYSuffix:"%",offsetYAlignment:"top"},"story-embedCode":{width:90,elementPosition:"fixed",offsetX:5,offsetXSuffix:"%",offsetXAlignment:"left",offsetY:33,offsetYSuffix:"%",offsetYAlignment:"top"},"story-image":{width:90,height:70,elementPosition:"fixed",offsetX:5,offsetXSuffix:"%",offsetXAlignment:"left",offsetY:36,offsetYSuffix:"%",offsetYAlignment:"top"},"story-starRating":{elementPosition:"fixed",offsetX:33,offsetXSuffix:"%",offsetXAlignment:"left",offsetY:49,offsetYSuffix:"%",offsetYAlignment:"top"},"story-icon":{elementPosition:"fixed",customSize:20,offsetX:40,offsetXSuffix:"%",offsetXAlignment:"left",offsetY:44,offsetYSuffix:"%",offsetYAlignment:"top",customSizeSuffix:"%",hoverColorHex:null,hoverColorOpacity:null,hoverColorPalette:null,tempHoverColorOpacity:null,tempHoverColorPalette:null,hoverGradientActivePointer:null,hoverGradientStartPointer:null,hoverGradientFinishPointer:null,hoverGradientType:null,hoverGradientLinearDegree:null,hoverGradientRadialDegree:null,hoverBgColorType:null,hoverBgColorHex:null,hoverBgColorOpacity:null,hoverBgColorPalette:null,tempHoverBgColorOpacity:null,tempHoverBgColorPalette:null,hoverGradientColorHex:null,hoverGradientColorOpacity:null,hoverGradientColorPalette:null,tempHoverGradientColorOpacity:null,tempHoverGradientColorPalette:null,hoverBorderColorHex:null,hoverBorderColorOpacity:null,hoverBorderColorPalette:null,tempHoverBorderColorOpacity:null,tempHoverBorderColorPalette:null},"story-video":{size:90,elementPosition:"fixed",offsetX:5,offsetXSuffix:"%",offsetXAlignment:"left",offsetY:34,offsetYSuffix:"%",offsetYAlignment:"top"},"story-richText":{width:90,elementPosition:"fixed",offsetX:5,offsetXSuffix:"%",offsetXAlignment:"left",offsetY:46,offsetYSuffix:"%",offsetYAlignment:"top"},"story-button":{paddingTop:0,paddingRight:0,paddingBottom:0,paddingLeft:0,elementPosition:"fixed",offsetX:30,offsetXSuffix:"%",offsetXAlignment:"left",offsetY:46,offsetYSuffix:"%",offsetYAlignment:"top",width:40,widthSuffix:"%",height:30,heightSuffix:"%"},"wrapper--story-form2":{showToolbar:"on"},"story-form2":{width:80,widthSuffix:"%",elementPosition:"fixed",offsetX:10,offsetXSuffix:"%",offsetXAlignment:"left",offsetY:20,offsetYSuffix:"%",offsetYAlignment:"top"},"story-lottie":{width:60,widthSuffix:"%",elementPosition:"fixed",offsetX:20,offsetXSuffix:"%",offsetXAlignment:"left",offsetY:34,offsetYSuffix:"%",offsetYAlignment:"top"},"posts--column":{width:100},"postTitle-posts":{fontStyle:"custom",fontSize:20,tabletFontStyle:"custom",tabletFontSize:16,mobileFontStyle:"custom",mobileFontSize:16,contentHorizontalAlign:"center"},"postExcerpt-posts":{contentHorizontalAlign:"center"},"posts-archive":{pagination:"on"},"posts-productArchive":{pagination:"on"}},l=o(61),s=o(16),c=o(62),d=o(96),u=o(94);function p(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function b(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?p(Object(o),!0).forEach((function(t){Object(n.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):p(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const m=e=>e.screenshots||{},h=e=>e.globalBlocks||{},g=e=>e.changedGBIds||{},v=e=>e.blocksData||{},f=e=>e.blocksOrder||[],y=e=>e.project||{},O=e=>e.styles||[],S=e=>e.currentStyle,x=e=>e.error,C=Object(a.createSelector)(y,e=>e.data.disabledElements||[]),j=Object(a.createSelector)(u.e,e=>e.data||{}),P=(Object(a.createSelector)(u.e,e=>e.slug),Object(a.createSelector)(j,e=>e.triggers||[])),B=Object(a.createSelector)(j,e=>e.triggers?e.triggers.length:null),w=Object(a.createSelector)(j,e=>Number.isInteger(e.rulesAmount)?e.rulesAmount:null),T=Object(a.createSelector)(u.h,e=>e.deviceMode),z=Object(a.createSelector)(u.h,e=>e.showHiddenElements),E=Object(a.createSelector)(u.h,e=>e.currentRole),k=Object(a.createSelector)(f,h,(e,t)=>{const o=Object.keys(t),{top:n,bottom:a}=Object(d.j)(e,o);return e.filter(e=>!n.includes(e)&&!a.includes(e))}),H=Object(a.createSelector)(h,v,(e,t)=>Object.entries(e).reduce((e,[o,n])=>{if(!t[o])return e;return"SectionPopup"===t[o].type||"SectionPopup2"===t[o].type||(e[o]=n),e},{})),F=Object(a.createSelector)(u.e,h,f,H,(e,t,o,n)=>{const a=o.filter(o=>!t[o]||Object(c.c)(t[o],e));return Object(d.i)(a,n)}),_=Object(a.createSelector)(h,v,m,(e,t,o)=>Object(l.d)(Object.entries(e).map(e=>{const[n,a]=e,i=t[n],s=o[n];return[n,Object(r.a)(a,e=>{e.data=b(b({},e.data),i),s&&(Object.assign(e.data.value,s),Object.assign(e.meta,s)),Object(l.f)(e.data.value,e=>{e.type&&"GlobalBlock"!==e.type&&e.value&&e.value._id&&o[e.value._id]&&(e.meta=e.meta||{},Object.assign(e.value,o[e.value._id]),Object.assign(e.meta,o[e.value._id]))})})]}))),R=Object(a.createSelector)(h,v,(e,t)=>Object(l.d)(Object.entries(e).map(e=>{const[o,n]=e,a=t[o];if(!a)return e;return[o,Object(r.a)(n,e=>{e.data=a})]}))),L=Object(a.createSelector)(u.e,f,h,(e,t,o)=>t.reduce((t,n)=>(o[n]&&Object(c.c)(o[n],e)&&(t[n]=o[n]),t),{})),M=Object(a.createSelector)(S,u.b,(e,t)=>{const{colorPalette:o,fontStyles:n}=e,a=n.concat(t),r=o.reduce((e,t)=>b(b({},e),{},{[t.id+"__color"]:{colorHex:t.hex},[t.id+"__hoverColor"]:{hoverColorHex:t.hex},[t.id+"__bg"]:{bgColorHex:t.hex},[t.id+"__hoverBg"]:{hoverBgColorHex:t.hex},[t.id+"__gradient"]:{gradientColorHex:t.hex},[t.id+"__hoverGradient"]:{hoverGradientColorHex:t.hex},[t.id+"__bg2"]:{bg2ColorHex:t.hex},[t.id+"__border"]:{borderColorHex:t.hex},[t.id+"__hoverBorder"]:{hoverBorderColorHex:t.hex},[t.id+"__arrowsColor"]:{sliderArrowsColorHex:t.hex},[t.id+"__dotsColor"]:{sliderDotsColorHex:t.hex},[t.id+"__boxShadow"]:{boxShadowColorHex:t.hex},[t.id+"__shapeTopColor"]:{shapeTopColorHex:t.hex},[t.id+"__shapeBottomColor"]:{shapeBottomColorHex:t.hex},[t.id+"__paginationColor"]:{paginationColorHex:t.hex},[t.id+"__tabletBg"]:{tabletBgColorHex:t.hex},[t.id+"__tabletBorder"]:{tabletBorderColorHex:t.hex},[t.id+"__mobileBg"]:{mobileBgColorHex:t.hex},[t.id+"__mobileBorder"]:{mobileBorderColorHex:t.hex},[t.id+"__subMenuColor"]:{subMenuColorHex:t.hex},[t.id+"__subMenuHoverColor"]:{subMenuHoverColorHex:t.hex},[t.id+"__subMenuBgColor"]:{subMenuBgColorHex:t.hex},[t.id+"__subMenuHoverBgColor"]:{subMenuHoverBgColorHex:t.hex},[t.id+"__subMenuBorderColor"]:{subMenuBorderColorHex:t.hex},[t.id+"__mMenuColor"]:{mMenuColorHex:t.hex},[t.id+"__mMenuHoverColor"]:{mMenuHoverColorHex:t.hex},[t.id+"__mMenuBgColor"]:{mMenuBgColorHex:t.hex},[t.id+"__mMenuBorderColor"]:{mMenuBorderColorHex:t.hex},[t.id+"__mMenuIconColor"]:{mMenuIconColorHex:t.hex},[t.id+"__tabletMMenuIconColor"]:{tabletMMenuIconColorHex:t.hex},[t.id+"__mobileMMenuIconColor"]:{mobileMMenuIconColorHex:t.hex},[t.id+"__labelColor"]:{labelColorHex:t.hex},[t.id+"__checkboxColor"]:{checkboxColorHex:t.hex},[t.id+"__selectColor"]:{selectColorHex:t.hex},[t.id+"__hoverSelectColor"]:{hoverSelectColorHex:t.hex},[t.id+"__selectBg"]:{selectBgColorHex:t.hex},[t.id+"__hoverSelectBg"]:{hoverSelectBgColorHex:t.hex},[t.id+"__selectBorderColor"]:{selectBorderColorHex:t.hex},[t.id+"__hoverSelectBorderColor"]:{hoverSelectBorderColorHex:t.hex},[t.id+"__selectBoxShadow"]:{selectBoxShadowColorHex:t.hex},[t.id+"__hoverSelectBoxShadow"]:{hoverSelectBoxShadowColorHex:t.hex}}),{}),l=a.reduce((e,t)=>{var o,n,a,r,i,l,s,c,d;return b(b({},e),{},{[t.id+"__fsDesktop"]:{fontFamily:t.fontFamily,fontFamilyType:t.fontFamilyType,fontSize:t.fontSize,fontSizeSuffix:null!==(o=t.fontSizeSuffix)&&void 0!==o?o:"px",fontWeight:t.fontWeight,lineHeight:t.lineHeight,letterSpacing:t.letterSpacing},[t.id+"__fsTablet"]:{tabletFontSize:t.tabletFontSize,tabletFontSizeSuffix:null!==(n=t.tabletFontSizeSuffix)&&void 0!==n?n:"px",tabletFontWeight:t.tabletFontWeight,tabletLineHeight:t.tabletLineHeight,tabletLetterSpacing:t.tabletLetterSpacing},[t.id+"__fsMobile"]:{mobileFontSize:t.mobileFontSize,mobileFontSizeSuffix:null!==(a=t.mobileFontSizeSuffix)&&void 0!==a?a:"px",mobileFontWeight:t.mobileFontWeight,mobileLineHeight:t.mobileLineHeight,mobileLetterSpacing:t.mobileLetterSpacing},[t.id+"__subMenuFsDesktop"]:{subMenuFontFamily:t.fontFamily,subMenuFontFamilyType:t.fontFamilyType,subMenuFontSize:t.fontSize,subMenuFontSizeSuffix:null!==(r=t.fontSizeSuffix)&&void 0!==r?r:"px",subMenuFontWeight:t.fontWeight,subMenuLineHeight:t.lineHeight,subMenuLetterSpacing:t.letterSpacing},[t.id+"__subMenuFsTablet"]:{tabletSubMenuFontSize:t.tabletFontSize,tabletSubMenuFontSizeSuffix:null!==(i=t.tabletFontSizeSuffix)&&void 0!==i?i:"px",tabletSubMenuFontWeight:t.tabletFontWeight,tabletSubMenuLineHeight:t.tabletLineHeight,tabletSubMenuLetterSpacing:t.tabletLetterSpacing},[t.id+"__subMenuFsMobile"]:{mobileSubMenuFontSize:t.mobileFontSize,mobileSubMenuFontSizeSuffix:null!==(l=t.mobileFontSizeSuffix)&&void 0!==l?l:"px",mobileSubMenuFontWeight:t.mobileFontWeight,mobileSubMenuLineHeight:t.mobileLineHeight,mobileSubMenuLetterSpacing:t.mobileLetterSpacing},[t.id+"__mMenuFsDesktop"]:{mMenuFontFamily:t.fontFamily,mMenuFontFamilyType:t.fontFamilyType,mMenuFontSize:t.fontSize,mMenuFontSizeSuffix:null!==(s=t.fontSizeSuffix)&&void 0!==s?s:"px",mMenuFontWeight:t.fontWeight,mMenuLineHeight:t.lineHeight,mMenuLetterSpacing:t.letterSpacing},[t.id+"__mMenuFsTablet"]:{tabletMMenuFontSize:t.tabletFontSize,tabletMMenuFontSizeSuffix:null!==(c=t.tabletFontSizeSuffix)&&void 0!==c?c:"px",tabletMMenuFontWeight:t.tabletFontWeight,tabletMMenuLineHeight:t.tabletLineHeight,tabletMMenuLetterSpacing:t.tabletLetterSpacing},[t.id+"__mMenuFsMobile"]:{mobileMMenuFontSize:t.mobileFontSize,mobileMMenuFontSizeSuffix:null!==(d=t.mobileFontSizeSuffix)&&void 0!==d?d:"px",mobileMMenuFontWeight:t.mobileFontWeight,mobileMMenuLineHeight:t.mobileLineHeight,mobileMMenuLetterSpacing:t.mobileLetterSpacing}})},{});return b(b(b({},i),r),l)}),I=Object(a.createSelector)(e=>e.copiedElement,R,(e,t)=>Object(r.a)(e,e=>{Object(l.f)(e,e=>{if(e.type&&"GlobalBlock"===e.type&&e.value){const{_id:o}=e.value;t[o]&&Object.assign(e,t[o].data)}})})),W=Object(a.createSelector)(f,h,v,(e,t,o)=>{const n=Object.keys(t);return e.map(e=>n.includes(e)?{type:"GlobalBlock",value:{_id:e}}:o[e])}),N=Object(a.createSelector)(k,h,v,(e,t,o)=>{const n=Object.keys(t);return e.map(e=>n.includes(e)?{type:"GlobalBlock",value:{_id:e}}:o[e])}),A=Object(a.createSelector)(y,u.c,O,e=>e.currentStyleId,S,u.b,(e,t,o,n,a,i)=>Object(r.a)(e,e=>{e.data.fonts=t,e.data.styles=o,e.data.selectedStyle=n,e.data.extraFontStyles=i;for(let t=0;t<e.data.styles.length;t++)e.data.styles[t].id===a.id&&(e.data.styles[t]=a)})),V=Object(a.createSelector)(j,W,(e,t)=>Object(r.a)(e,e=>{e.items=t})),D=Object(a.createSelector)(V,R,(e,t)=>{return o=e,Object(s.m)(e=>{if("GlobalBlock"===e.type){const{_id:o}=e.value;if(t[o]&&t[o].data)return t[o].data}return e},o);var o}),$=Object(a.createSelector)(D,e=>e.items||[]),G=(Object(a.createSelector)($,e=>{const t=[];return Object(l.f)(e,e=>{e.popups&&t.push(...e.popups)}),t}),Object(a.createSelector)(u.e,N,m,(e,t,o)=>Object(r.a)(e,e=>{e.data.items=t,Object.keys(o).length>0&&Object(l.f)(e,e=>{e.type&&"GlobalBlock"!==e.type&&e.value&&e.value._id&&o[e.value._id]&&Object.assign(e.value,o[e.value._id])})}))),U=Object(a.createSelector)(u.e,W,m,(e,t,o)=>Object(r.a)(e,e=>{e.data.items=t,Object.keys(o).length>0&&Object(l.f)(e,e=>{e.type&&"GlobalBlock"!==e.type&&e.value&&e.value._id&&o[e.value._id]&&Object.assign(e.value,o[e.value._id])})})),K=Object(a.createSelector)(W,m,(e,t)=>Object(r.a)(e,e=>{Object.keys(t).length>0&&Object(l.f)(e,e=>{e.type&&"GlobalBlock"!==e.type&&e.value&&e.value._id&&t[e.value._id]&&Object.assign(e.value,t[e.value._id])})})),Y=Object(a.createSelector)(u.e,W,h,m,(e,t,o,n)=>{const a=t.filter(t=>{if("GlobalBlock"===t.type){const{_id:n}=t.value;return Object(c.c)(o[n],e)}return!0});return Object(r.a)(a,e=>{Object.keys(n).length>0&&Object(l.f)(e,e=>{e.type&&"GlobalBlock"!==e.type&&e.value&&e.value._id&&n[e.value._id]&&Object.assign(e.value,n[e.value._id])})})})},function(e,t,o){"use strict";(function(e){var n=o(36),a=o(2),r=o(0),i=o.n(r),l=o(8),s=o(4),c=o.n(s),d=o(130),u=o(65),p=o(25),b=o(19),m=o(132),h=o(178),g=o(27),v=o(6),f=o(30),y=o(142),O=o(204),S=o(514),x=o(52),C=o(102),j=o(515),P=o(227),B=o(93),w=o(516);function T(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function z(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?T(Object(o),!0).forEach((function(t){Object(a.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):T(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}class E extends i.a.Component{constructor(...e){super(...e),Object(a.a)(this,"_defaultValueProcessedCache",void 0),Object(a.a)(this,"_dc",{}),Object(a.a)(this,"childToolbarExtend",void 0),Object(a.a)(this,"bindPatchValue",e=>this.patchValue(e)),Object(a.a)(this,"makeWrapperProps",e=>{var t;const o=null!==(t=this.props.wrapperExtend)&&void 0!==t?t:{},n=c()(o.className,e.className),a=z(z({},o.attributes||{}),e.attributes||{});return z(z(z(z({},o),e),{},{className:n,attributes:a,id:this.getId(),componentId:this.constructor.componentId,meta:this.props.meta},this.getValue2()),{},{onChange:this.bindPatchValue,ref:t=>{Object(C.a)(t,o.ref||null),Object(C.a)(t,e.ref||null)}})})}static get componentId(){throw new Error(this.name+" must implement `static get componentId()`")}getComponentId(){return this.constructor.componentId}optionalSCU(e){const t=this.props;if(t.dbValue!==e.dbValue)return!0;if(t.reduxState.currentStyleId!==e.reduxState.currentStyleId)return!0;if(t.reduxState.currentStyle!==e.reduxState.currentStyle)return!0;if(t.reduxState.extraFontStyles!==e.reduxState.extraFontStyles)return!0;if(t.reduxState.fonts!==e.reduxState.fonts)return!0;if(t.reduxState.copiedElement!==e.reduxState.copiedElement)return!0;const o=t.path||[],n=e.path||[];if(o.length!==n.length)return!0;for(let e=0,t=o.length;e<t;e++)if(o[e]!==n[e])return!0;return!1}getId(){return this.props._id||x.a(this.getDBValue()._id)||(()=>{throw new Error("This should never happen. An initialized component must have a preset id")})()}getPath(){return this.props.path||[]}getReduxState(){return this.props.reduxState}getReduxDispatch(){return this.props.reduxDispatch}getDefaultValue(){const e=this.getDefaultValueProcessed().defaultValueFlat;return this.props.defaultValue?z(z({},e),this.props.defaultValue):e}getDefaultValueProcessed(){if(this._defaultValueProcessedCache)return this._defaultValueProcessedCache;const e=this.constructor.defaultValue,t=Object(y.b)(e),o=Object.keys(t).reduce((e,t)=>(Object(B.c)(t)&&e.push(Object(B.a)(t)),e),[]);return this._defaultValueProcessedCache={defaultValueFlat:t,dynamicContentKeys:o},this._defaultValueProcessedCache}getDBValue(){return this.props.dbValue}getStylesValue(){const{_styles:e}=this.getDBValue()||{},t=Object(b.G)(this.getReduxState());return e&&t?e.reduce((e,o)=>t[o]?Object.assign(e,t[o]):e,{}):null}getDCValue(e){var t;const o=this.getDefaultValueProcessed().dynamicContentKeys,n=[];for(const t of o){const o=Object(B.e)(e,t);o.hasDC&&n.push(o)}const a=this.getDCValueHook(n,e);if(null===(t=this._dc.pendingDCObjIncomplete)||void 0===t||t.abortGetComplete(),this._dc.pendingDCObjIncomplete=void 0,0===a.length)return this._dc.keys=void 0,this._dc.lastCache=void 0,{};{const e=Object(w.a)(a,this.context);if("complete"===e.type)return this._dc.keys=e.details,this._dc.lastCache=e.value,e.value;{this._dc.pendingDCObjIncomplete=e,this._dc.keys=e.details,e.getComplete().then(()=>{this.forceUpdate()}).catch(()=>{});const t={};let o=!1;if(this._dc.lastCache)for(const e of a)e.key in this._dc.lastCache&&(t[e.key]=this._dc.lastCache[e.key],o=!0);return o?z(z({},e.partialValue),t):e.partialValue}}}getDCValueHook(e,t){return e}getValue(){return this.getValue2().v}getValue2(){const e=this.getDefaultValue(),t=this.getStylesValue(),o=this.getDBValue(),n=z(z(z({},e),t),o);return{v:this.constructor.experimentalDynamicContent?Object.assign(n,this.getDCValue(n)):n,vs:z(z({},e),t),vd:e}}patchValue(e,t={}){const o=z(z({},this.getDBValue()),e);this.handleValueChange(o,z(z({},t),{},{patch:e}))}validateValue(e){const t=this.getDefaultValue(),o=Object.keys(e).filter(e=>{const o=e in t,n="_"===e[0]||["tabsState"].includes(e),a=["tabsCurrentElement"].includes(e);return!o&&!n&&!a});o.length&&console.error(`${this.constructor.componentId} element\n\nKeys not in defaultValue:\n${JSON.stringify(o,null,2)}\n \nTried to update with:\n${JSON.stringify(e,(e,t)=>Array.isArray(t)?"[...]":t,2)}`)}handleValueChange(e,t){this.props.onChange(e,t)}selfDestruct(){this.props.onChange(null,{intent:"remove_all"})}makeSubcomponentProps(e){let{bindWithKey:t}=e,o=Object(n.a)(e,["bindWithKey"]);const a=this.getDefaultValue(),r=this.getDBValue();return z(z({},o),{},{_id:`${this.getId()}-${t}`,path:[...this.getPath(),t],defaultValue:a&&a[t],dbValue:r&&r[t],reduxState:this.getReduxState(),reduxDispatch:this.getReduxDispatch(),onChange:(e,o)=>this.patchValue({[t]:e},o)})}makeContextMenuProps(e,t={}){const o=this.getComponentId(),n=this.getValue();return z({id:Object(u.a)(3),componentId:o,items:e.getItems(n,this)},t)}makeToolbarPropsFromConfig(t,o,n={}){const{onToolbarOpen:a,onToolbarClose:r,onToolbarEnter:i,onToolbarLeave:l}=this.props,{allowExtendFromParent:s,parentItemsFilter:c,allowExtendFromChild:u,allowExtendFromThirdParty:h,thirdPartyExtendId:g=this.getComponentId(),allowSidebarExtendFromParent:f,allowSidebarExtendFromChild:O,allowSidebarExtendFromThirdParty:S,sidebarThirdPartyExtendId:x=g}=Object(y.d)(n);return{getItems:(e=Object(b.i)(Object(p.b)().getState()))=>{var o;const n="getItemsFor"+(([e,...t],o=!1)=>e.toUpperCase()+(o?t.join("").toLowerCase():t.join("")))(e,!0);const a=t[n],r=this.getValue(),i=v.e(r.tabsState);let l=this.bindToolbarItems(r,e,i,null!==(o=null==a?void 0:a(r,this))&&void 0!==o?o:[]);if(s&&this.props.toolbarExtend){const{getItems:t}=this.props.toolbarExtend;let o=t(e);"function"==typeof c&&(o=c(o)),l=Object(d.b)(l,o)}if(u&&this.childToolbarExtend){const{getItems:t}=this.childToolbarExtend,o=t(e);l=Object(d.b)(o,l)}if(h){const t=Object(m.b)("toolbarItemsExtend_"+g,null);if(null!=t&&t[n]){const o=this.bindToolbarItems(r,e,i,t[n](r,this));l=Object(d.b)(l,o)}}return l},getSidebarItems:(e=Object(b.i)(Object(p.b)().getState()))=>{var t,n;const a=this.getValue(),r=v.e(a.tabsState);let i=this.bindToolbarItems(a,e,r,(null==o||null===(t=o.getItems)||void 0===t?void 0:t.call(o,{v:a,component:this,device:e,state:r,context:this.context}))||[]);if(f&&null!==(n=this.props.toolbarExtend)&&void 0!==n&&n.getSidebarItems){const{getSidebarItems:t}=this.props.toolbarExtend,o=t(e);i=Object(d.b)(i,o)}if(O&&this.childToolbarExtend){const{getSidebarItems:t}=this.childToolbarExtend,o=t(e);i=Object(d.b)(o,i)}if(S){const t=Object(m.b)("sidebarItemsExtend_"+x,null);if(null!=t&&t.getItems){const o=this.bindToolbarItems(a,e,r,t.getItems({v:a,component:this,device:e,state:r}));i=Object(d.b)(i,o)}}return i},getSidebarTitle:()=>{let e=null==o?void 0:o.title;if("function"==typeof e){e=e({v:this.getValue()})}if(f&&this.props.toolbarExtend){const{getSidebarTitle:t}=this.props.toolbarExtend;e=t()||e}if(O&&this.childToolbarExtend){const{getSidebarTitle:t}=this.childToolbarExtend;e=t()||e}return e||""},onBeforeOpen:()=>{e.Brizy.activeEditorComponent=this},onBeforeClose:()=>{e.Brizy.activeEditorComponent=null},onOpen:a,onClose:r,onMouseEnter:i,onMouseLeave:l}}bindToolbarItems(e,t,o,n){return Object(d.c)(n=>{const{id:a,type:r,onChange:i}=n,s=e=>this.patchValue({tabsState:e});f.d===t&&(n=Object(h.a)(j.a,o,s,n));const c=Object(y.c)(r),d=n.dependencies||l.default.identity;return c&&(n.value=Object(O.b)(r)(n=>Object(g.b)({v:e,key:Object(y.a)(a,n),device:t,state:o}))),n.onChange=(e,a)=>{const r=c?Object(g.a)({key:n.id,device:Object(y.e)(t,n),state:Object(y.f)(o,n)}):n.id,l=c?d(Object(y.g)(r,e)):i?i(e,a):((e,t)=>void 0!==t?{[e]:t}:null)(r,e);l&&this.patchValue(l)},n},Object(d.c)(S.a,n))}makeToolbarPropsFromConfig2(t,o,n={}){const{onToolbarOpen:a,onToolbarClose:r,onToolbarEnter:i,onToolbarLeave:l}=this.props,{allowExtendFromParent:s,parentItemsFilter:c,parentExtendProp:u="toolbarExtend",allowExtendFromChild:h,allowExtendFromThirdParty:g,thirdPartyExtendId:f=this.getComponentId(),allowSidebarExtendFromParent:O,allowSidebarExtendFromChild:S,allowSidebarExtendFromThirdParty:x,sidebarThirdPartyExtendId:C=f}=Object(y.d)(n);return{getItems:(e=Object(b.i)(Object(p.b)().getState()))=>{var o;const n=this.getValue(),a=v.e(n.tabsState);let r=this.bindToolbarItems(n,e,a,null!==(o=null==t?void 0:t.getItems({v:n,component:this,device:e,state:a,context:this.context}))&&void 0!==o?o:[]);if(s&&this.props[u]){const{getItems:t}=this.props[u];let o=t(e);"function"==typeof c&&(o=c(o)),r=Object(d.b)(r,o)}if(h&&this.childToolbarExtend){const{getItems:t}=this.childToolbarExtend,o=t(e);r=Object(d.b)(o,r)}if(g){const t=Object(m.b)("toolbarItemsExtend_"+f,null);if(null!=t&&t.getItems){const o=this.bindToolbarItems(n,e,a,t.getItems({v:n,component:this,device:e,state:a,context:this.context}));r=Object(d.b)(r,o)}}return r},getSidebarItems:(e=Object(b.i)(Object(p.b)().getState()))=>{var t,n;const a=this.getValue(),r=v.e(a.tabsState);let i=this.bindToolbarItems(a,e,r,(null==o||null===(t=o.getItems)||void 0===t?void 0:t.call(o,{v:a,component:this,device:e,state:r,context:this.context}))||[]);if(O&&null!==(n=this.props[u])&&void 0!==n&&n.getSidebarItems){const{getSidebarItems:t}=this.props[u],o=t(e);i=Object(d.b)(i,o)}if(S&&this.childToolbarExtend){const{getSidebarItems:t}=this.childToolbarExtend,o=t(e);i=Object(d.b)(o,i)}if(x){const t=Object(m.b)("sidebarItemsExtend_"+C,null);if(null!=t&&t.getItems){const o=this.bindToolbarItems(a,e,r,t.getItems({v:a,component:this,device:e,state:r,context:this.context}));i=Object(d.b)(i,o)}}return i},getSidebarTitle:()=>{let e=null==o?void 0:o.title;if("function"==typeof e){e=e({v:this.getValue()})}if(O&&this.props.toolbarExtend){const{getSidebarTitle:t}=this.props.toolbarExtend;e=t()||e}if(S&&this.childToolbarExtend){const{getSidebarTitle:t}=this.childToolbarExtend;e=t()||e}return e||""},onBeforeOpen:()=>{e.Brizy.activeEditorComponent=this},onBeforeClose:()=>{e.Brizy.activeEditorComponent=null},onOpen:a,onClose:r,onMouseEnter:i,onMouseLeave:l}}render(){const{v:e,vs:t,vd:o}=this.getValue2();return this.renderForEdit(e,t,o)}renderForEdit(e,t,o){throw"renderForEdit: Not Implemented"}renderForView(e,t,o){return this.renderForEdit(e,t,o)}applyRulesToValue(e,t){const o=t.filter(Boolean);if(0===o.length)return e;const n=this.getRulesValue(o);return l.default.defaults(n,e)}getRulesValue(e){const t=Object(b.G)(this.getReduxState());if(t)return e.reduce((e,o)=>{let n;switch(typeof o){case"object":{const{rule:e,mapper:a}=o;n=t[e]&&a(t[e]);break}case"string":n=t[o];break;default:throw new Error("Invalid rule type")}return n?Object.assign(e,n):e},{})}}Object(a.a)(E,"defaultProps",{onToolbarOpen:l.default.noop,onToolbarClose:l.default.noop,onToolbarEnter:l.default.noop,onToolbarLeave:l.default.noop}),Object(a.a)(E,"defaultValue",{}),Object(a.a)(E,"experimentalDynamicContent",!1),Object(a.a)(E,"contextType",P.a),t.a=E}).call(this,o(105))},function(e,t,o){"use strict";o.d(t,"n",(function(){return c})),o.d(t,"b",(function(){return d})),o.d(t,"U",(function(){return u})),o.d(t,"B",(function(){return p})),o.d(t,"A",(function(){return b})),o.d(t,"e",(function(){return m})),o.d(t,"g",(function(){return h})),o.d(t,"hb",(function(){return g})),o.d(t,"jb",(function(){return v})),o.d(t,"D",(function(){return f})),o.d(t,"C",(function(){return y})),o.d(t,"f",(function(){return O})),o.d(t,"h",(function(){return S})),o.d(t,"ib",(function(){return x})),o.d(t,"j",(function(){return C})),o.d(t,"F",(function(){return j})),o.d(t,"G",(function(){return P})),o.d(t,"x",(function(){return B})),o.d(t,"w",(function(){return w})),o.d(t,"l",(function(){return T})),o.d(t,"k",(function(){return z}));o(80),o(239);var n=o(98);o.d(t,"a",(function(){return n.a})),o.d(t,"d",(function(){return n.b})),o.d(t,"i",(function(){return n.d})),o.d(t,"p",(function(){return n.e})),o.d(t,"q",(function(){return n.f})),o.d(t,"r",(function(){return n.g})),o.d(t,"s",(function(){return n.h})),o.d(t,"t",(function(){return n.i})),o.d(t,"v",(function(){return n.j})),o.d(t,"y",(function(){return n.k})),o.d(t,"z",(function(){return n.l})),o.d(t,"E",(function(){return n.m})),o.d(t,"H",(function(){return n.n})),o.d(t,"I",(function(){return n.o})),o.d(t,"J",(function(){return n.q})),o.d(t,"K",(function(){return n.r})),o.d(t,"L",(function(){return n.s})),o.d(t,"M",(function(){return n.t})),o.d(t,"N",(function(){return n.u})),o.d(t,"T",(function(){return n.v})),o.d(t,"X",(function(){return n.w})),o.d(t,"Y",(function(){return n.x})),o.d(t,"Z",(function(){return n.y})),o.d(t,"ab",(function(){return n.z})),o.d(t,"bb",(function(){return n.A})),o.d(t,"cb",(function(){return n.B})),o.d(t,"db",(function(){return n.C})),o.d(t,"eb",(function(){return n.D}));var a=o(15),r=o(47),i=o(177),l=o(52),s=o(104);const c=async({placeholders:e,signal:t})=>{const{api:{url:o,hash:s,placeholdersContent:c}}=a.a.get("wp"),d=a.a.get("editorVersion"),u=new URLSearchParams({hash:s,version:d,action:c});for(const[t,o]of Object.entries(e))if(o)for(const e of o)u.append(`p[${t}][]`,e);const p=await Object(n.s)(o,{method:"POST",body:u,signal:t});if(!p.ok)throw new Error("fetch dynamic content error");const{data:b}=await p.json();if(void 0===b||void 0===b.placeholders)throw new Error("fetch dynamic content error");const m=r.e(i.a(l.a))(b.placeholders);if(void 0===m)throw new Error("fetch dynamic content error");return m},d=({base64:e,blockType:t})=>{const{page:o,api:{url:r,hash:i,createBlockScreenshot:l}}=a.a.get("wp"),s=a.a.get("editorVersion"),c=e.replace(/data:image\/.+;base64,/,"");return Object(n.s)(r,{method:"POST",body:new URLSearchParams({action:l,post:o,version:s,hash:i,block_type:t,ibsf:c})}).then(e=>e.json()).then(e=>{if(e.success)return e.data;throw e})},u=({id:e,base64:t,blockType:o})=>{const{page:r,api:{url:i,hash:l,updateBlockScreenshot:s}}=a.a.get("wp"),c=a.a.get("editorVersion"),d=t.replace(/data:image\/.+;base64,/,"");return Object(n.s)(i,{method:"POST",body:new URLSearchParams({action:s,post:r,version:c,hash:l,block_type:o,id:e,ibsf:d})}).then(e=>e.json()).then(e=>{if(e.success)return e.data;throw e})},p=()=>{const{getSavedBlockList:e}=a.a.get("wp").api;return Object(n.p)({type:"POST",dataType:"json",data:{action:e,fields:["uid","meta","synchronized","synchronizable"]}}).then(({data:e})=>e.map(s.c))},b=e=>{const{getSavedBlockByUid:t}=a.a.get("wp").api;return Object(n.p)({type:"POST",dataType:"json",data:{uid:e,action:t}}).then(({data:e})=>Object(s.f)(e))},m=e=>{const{createSavedBlock:t}=a.a.get("wp").api,{uid:o,data:r,dataVersion:i,meta:l}=Object(s.k)(e),c=Object(s.a)(e);return Object(n.p)({type:"POST",dataType:"json",data:{uid:o,data:r,meta:l,media:c,dataVersion:i,action:t}})},h=e=>{const{deleteSavedBlock:t}=a.a.get("wp").api;return Object(n.p)({type:"POST",dataType:"json",data:{uid:e,action:t}})},g=async e=>{const t=a.a.getAll(),{api:{url:o,hash:r,uploadBlocks:i}}=t.wp,l=t.editorVersion,c=new FormData;for(const t of e)c.append("files[]",t);c.append("version",l),c.append("hash",r),c.append("action",i);const d=await Object(n.s)(o,{method:"POST",body:c}),u=await d.json();if(u.success&&u.data.errors&&u.data.success)return{errors:u.data.errors,success:u.data.success.map(s.f)};throw u},v=async e=>{const t=a.a.getAll(),{api:{url:o,hash:r,uploadBlocks:i}}=t.wp,l=t.editorVersion,c=new FormData;for(const t of e)c.append("files[]",t);c.append("version",l),c.append("hash",r),c.append("action",i);const d=await Object(n.s)(o,{method:"POST",body:c}),u=await d.json();if(u.success&&u.data.errors&&u.data.success)return{errors:u.data.errors,success:u.data.success.map(s.f)};throw u},f=()=>{const{getLayoutList:e}=a.a.get("wp").api;return Object(n.p)({type:"POST",dataType:"json",data:{action:e,fields:["uid","meta","synchronized","synchronizable"]}}).then(({data:e})=>e.map(s.c))},y=e=>{const{getLayoutByUid:t}=a.a.get("wp").api;return Object(n.p)({type:"POST",dataType:"json",data:{uid:e,action:t}}).then(({data:e})=>Object(s.g)(e))},O=e=>{const{createLayout:t}=a.a.get("wp").api,{data:o,dataVersion:r,uid:i,meta:l}=Object(s.k)(e),c=Object(s.a)(e);return Object(n.p)({type:"POST",dataType:"json",data:{uid:i,data:o,meta:l,media:c,dataVersion:r,action:t}})},S=e=>{const{deleteLayout:t}=a.a.get("wp").api;return Object(n.p)({type:"POST",dataType:"json",data:{uid:e,action:t}})},x=async e=>{const t=a.a.getAll(),{api:{url:o,hash:r,uploadBlocks:i}}=t.wp,l=t.editorVersion,c=new FormData;for(const t of e)c.append("files[]",t);c.append("version",l),c.append("hash",r),c.append("action",i);const d=await Object(n.s)(o,{method:"POST",body:c}),u=await d.json();if(u.success&&u.data.errors&&u.data.success)return{errors:u.data.errors,success:u.data.success.map(s.g)};throw u},C=async({include:e=[],search:t="",abortSignal:o}={})=>{const{api:{url:r,hash:i,getUsers:l}}=a.a.get("wp"),s=a.a.get("editorVersion"),c=new URLSearchParams({hash:i,version:s,action:l});""!==t&&c.append("search",t);for(const t of e)c.append("include[]",t);const d=await Object(n.s)(r,{method:"POST",body:c,signal:o}),u=await d.json();if(u.success)return u.data;throw u},j=async e=>{const{url:t,hash:o,getTerms:r}=a.a.get("wp").api,i=a.a.get("editorVersion");return Object(n.s)(t,{method:"POST",body:new URLSearchParams({hash:o,version:i,taxonomy:e,action:r})}).then(e=>e.json()).then(({data:e})=>e)},P=async({include:e=[],search:t="",abortSignal:o}={})=>{const{api:{url:r,hash:i,getTermsBy:l}}=a.a.get("wp"),s=a.a.get("editorVersion"),c=new URLSearchParams({hash:i,version:s,action:l});""!==t&&c.append("search",t);for(let t=0;t<e.length;t++){const[o,n]=e[t];c.append("taxonomy[]",o),c.append("include[]",n)}const d=await Object(n.s)(r,{method:"POST",body:c,signal:o}),u=await d.json();if(u.success)return u.data;throw u},B=async({include:e,search:t="",postType:o,excludePostType:r,abortSignal:i}={})=>{const{api:{url:l,hash:s,searchPosts:c}}=a.a.get("wp"),d=a.a.get("editorVersion"),u=new URLSearchParams({hash:s,version:d,action:c});if(""!==t&&u.append("search",t),void 0!==e)for(const t of e)u.append("include[]",t);if(void 0!==o)for(const e of o)u.append("post_type[]",e);if(void 0!==r)for(const e of r)u.append("exclude_post_type[]",e);const p=await Object(n.s)(l,{method:"POST",body:u,signal:i}),b=await p.json();if(b.success)return b.data;throw b},w=async({taxonomy:e,abortSignal:t})=>{const{url:o,hash:r,getPostTaxonomies:i}=a.a.get("wp").api,l=a.a.get("editorVersion");return Object(n.s)(o,{method:"POST",body:new URLSearchParams({hash:r,version:l,post_type:e,action:i}),signal:t}).then(e=>e.json()).then(({data:e})=>e).catch(e=>[])},T=async()=>{const e=a.a.getAll().wp.postTypes;return Promise.resolve(e)},z=async e=>{const t=a.a.getAll(),{wp:o,editorVersion:r}=t,{url:i,hash:l,getPostObjects:s}=o.api;return await Object(n.s)(i,{method:"POST",body:new URLSearchParams({hash:l,version:r,postType:e,action:s})}).then(e=>e.json()).then(e=>{if(null==e||!e.data)throw"Something went wrong";return e.data}).catch(e=>[])}},function(e,t,o){"use strict";o.d(t,"b",(function(){return r}));var n=o(112);o.d(t,"c",(function(){return n.a}));var a=o(77);function r(e){return t=>e(t)?t:void 0}o.d(t,"a",(function(){return a.a}))},function(e,t,o){"use strict";o.d(t,"a",(function(){return u}));o(80);var n=o(36),a=o(2),r=o(0),i=o.n(r),l=o(40),s=o.n(l);let c={};function d(e){return Object.entries(e).reduce((e,[t,o])=>e+=o.replace(/element/g,`[data-custom-id=${t}]`),"")}class u extends i.a.Component{componentWillUnmount(){const{selectorName:e}=this.props;delete c[e]}componentDidMount(){this.updateCSS()}updateCSS(){const{selectorName:e,css:t}=this.props,o=s.a.findDOMNode(this);if(c[e]===t)return;t?(o.setAttribute("data-custom-id",e),c[e]=t):(o.removeAttribute("data-custom-id",e),delete c[e]);let n=document.getElementById("custom-css");n?n.innerHTML=d(c):(n=document.createElement("style"),n.id="custom-css",n.innerHTML=d(c),document.head.appendChild(n))}componentDidUpdate(){this.updateCSS()}renderForEdit(){const e=this.props,{selectorName:t,css:o,children:a}=e,r=Object(n.a)(e,["selectorName","css","children"]);return i.a.cloneElement(i.a.Children.only(a),r)}renderForView(){const{selectorName:e,css:t,children:o}=this.props;return i.a.createElement("div",{"data-custom-id":e,"data-custom-css":d({[e]:t})},i.a.Children.only(o))}render(){return this.renderForEdit()}}Object(a.a)(u,"defaultProps",{selectorName:"",css:""})},function(e,t,o){"use strict";o.d(t,"d",(function(){return a})),o.d(t,"b",(function(){return i})),o.d(t,"c",(function(){return l})),o.d(t,"a",(function(){return s}));var n=o(33);const a=e=>{switch(typeof e){case"string":return e;case"number":return e.toString();default:return}};r=a;var r;const i="",l=e=>{var t;return null!==(t=a(e))&&void 0!==t?t:""},s={read:a,empty:i,append:(e,t)=>e+t,concat:e=>e.join(""),eq:function(e,t){return e===t}}},function(e,t,o){"use strict";o.d(t,"a",(function(){return W})),o.d(t,"b",(function(){return N}));var n=o(232),a=o(499),r=o(2),i=o(42),l=o(331),s=o(19),c=o(61),d=o(79),u=o(116);function p(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function b(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?p(Object(o),!0).forEach((function(t){Object(r.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):p(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function m(e,t){return b(b({},e),{},{history:{currSnapshot:t.getCurrentSnapshot(),prevSnapshot:t.getPreviousSnapshot(),canUndo:t.canUndo(),canRedo:t.canRedo()}})}var h=o(16),g=o(145);var v=o(26),f=o(62);function y(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function O(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?y(Object(o),!0).forEach((function(t){Object(r.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):y(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}var S=o(8);function x(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function C(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?x(Object(o),!0).forEach((function(t){Object(r.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):x(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}Object(i.c)(!1);var j=o(31),P=o(28);function B(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function w(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?B(Object(o),!0).forEach((function(t){Object(r.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):B(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const T={deviceMode:"desktop",leftSidebar:{isOpen:!1,drawerContentType:void 0},rightSidebar:{isOpen:!1,lock:void 0,alignment:"right"},showHiddenElements:!1,currentRole:"default"};var z=o(103);function E(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function k(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?E(Object(o),!0).forEach((function(t){Object(r.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):E(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const H={value:{},path:[]};const F=e=>e.type&&e.value&&e.value._id&&e.value._thumbnailSrc;function _(e){const t={};return Object(c.f)(e,e=>{if(F(e)){const o=e.value;t[e.value._id]={_thumbnailSrc:o._thumbnailSrc,_thumbnailWidth:o._thumbnailWidth,_thumbnailHeight:o._thumbnailHeight,_thumbnailTime:o._thumbnailTime}}}),t}var R,L,M=function(e,t){const o=new u.a;return function(n,a){switch(a.type){case u.c:case u.b:{const e=a.type===u.c?o.canUndo():o.canRedo(),t=a.type===u.c?o.undo:o.redo;return e?(t.call(o),m(b(b({},n),o.getCurrentSnapshot()),o)):"object"==typeof(i=n).history&&null!==i.history&&Object(c.b)(["currSnapshot","prevSnapshot","canUndo","canRedo"],i.history)?n:m(b(b({},n),o.getCurrentSnapshot()),o)}default:{const i=e(n,a);if(!a.type.includes("@@redux/INIT")){var r;t.onBeforeUpdate&&t.onBeforeUpdate(n,a,o);const e=function(e,t){return t.reduce((t,o)=>(t[o]=e[o],t),{})}(i,t.keysToTrack);o.update(e,{replacePresent:Boolean(null==a||null===(r=a.meta)||void 0===r?void 0:r.historyReplacePresent)})}return m(i,o)}}var i}}((R={authorized:(e,t)=>{switch(t.type){case"HYDRATE":{const{authorized:e}=t.payload;return e}case"UPDATE_AUTHORIZATION":return t.payload;default:return e}},syncAllowed:(e,t)=>{switch(t.type){case"HYDRATE":{const{syncAllowed:e}=t.payload;return e}case"UPDATE_SYNC_ALLOWED":return t.payload;default:return e}},blocksData:(e={},t,o)=>{switch(t.type){case"HYDRATE":{var n;const{page:e,globalBlocks:o}=t.payload,a=(null===(n=e.data)||void 0===n?void 0:n.items)||[];if(h.d&&0===a.length)return{ecupxjcqmrpxjdimoebbkbnotrlufkfokjvr:{type:"Story",value:{_styles:["story"],items:[{type:"StoryItem",value:{_styles:["story-item"],items:[],_id:"dfmwxzkwbiaezltvsxhdinhplvimzenkiqto"}}],_id:"ecupxjcqmrpxjdimoebbkbnotrlufkfokjvr"},blockId:"StoryDefault"}};const r=a.reduce((e,t)=>{const{_id:o,globalBlockId:n}=t.value;return e[n||o]=t,e},{}),l=Object.entries(o).reduce((e,[t,o])=>(e[t]=Object(i.a)(o.data,e=>{e.value._id=t}),e),{});return Object(i.a)(O(O({},r),l),e=>{Object(c.f)(e,e=>{if(e.type&&"GlobalBlock"===e.type){const{globalBlockId:t}=e.value;t&&(e.value._id=t,delete e.value.globalBlockId)}})})}case"IMPORT_STORY":{const{blocks:n}=t.payload,{insertIndex:a}=t.meta,r=Object(s.d)(o)[0],i=Object(h.j)(e[r].value.items,a,n);return Object(v.setIn)(e,[r,"value","items"],i)}case"ADD_BLOCK":{const{block:o}=t.payload;return O(O({},e),{},{[o.value._id]:o})}case"MAKE_POPUP_TO_GLOBAL_BLOCK":{const{data:o}=t.payload,n=Object(h.m)(e=>e.value._id===o.value._id?{blockId:e.blockId,type:"GlobalBlock",value:{_id:o.value._id}}:e,e);return Object(i.a)(n,e=>{e[o.value._id]=o})}case"MAKE_GLOBAL_BLOCK_TO_POPUP":{const{block:o,fromBlockId:n,parentId:a}=t.payload;if(h.b)return O(O({},e),{},{[o.value._id]:o});const r=e=>e.value._id===n?o:e,i=e=>Object(h.l)(e)?Object(c.c)(i,r(e)):Object(c.c)(i,e),l=e=>!!Object(h.l)(e)&&e.value._id===a,s=e=>l(e)?i(e):Object(c.c)(s,e);return s(e)}case"MAKE_GLOBAL_TO_NORMAL_BLOCK":{const{block:o}=t.payload;return O(O({},e),{},{[o.value._id]:o})}case"REMOVE_BLOCK":{const{index:n}=t.payload,a=Object(s.r)(o),r=Object.keys(a),l=Object(s.d)(o)[n];return r.includes(l)?e:Object(i.a)(e,e=>{delete e[l]})}case"REMOVE_BLOCKS":{const t=Object(s.d)(o),n=Object(s.r)(o),a=Object.keys(n),r=t.filter(e=>!a.includes(e));return Object(i.a)(e,e=>{r.forEach(t=>{delete e[t]})})}case"UPDATE_GLOBAL_BLOCK":{const{id:o,data:n}=t.payload;return null===n.value?e:O(O({},e),{},{[o]:n})}case"IMPORT_TEMPLATE":case"UPDATE_BLOCKS":{const{blocks:o}=t.payload,n=o.reduce((e,t)=>("GlobalBlock"===t.type||(e[t.value._id]=t),e),{});return O(O({},e),n)}default:return e}},blocksThumbnailSizes:function(e={},t){switch(t.type){case j.h:return t.payload.blocksThumbnailSizes;default:return e}},copiedElement:function(e=H,t){switch(t.type){case j.d:return k(k({},e),t.value);default:return e}},currentStyle:function(e={},t,o){switch(t.type){case j.h:{const{project:e}=t.payload;return e.data.styles.find(t=>t.id===e.data.selectedStyle)}case j.t:return t.payload;case j.u:{const e=t.payload;return o.styles.find(({id:t})=>t===e)}case P.b:case j.j:{const{currentStyleId:n,styles:a}=t.payload,r=[...null!=a?a:[],...o.styles];return n?r.find(e=>e.id===n):e}default:return e}},currentStyleId:function(e="",t){switch(t.type){case j.h:{const{project:e}=t.payload;return e.data.selectedStyle}case j.u:return t.payload;case P.b:case j.j:{const{currentStyleId:o}=t.payload;return o||e}default:return e}},error:function(e=null,t){switch(t.type){case j.h:{const{projectStatus:o}=t.payload;return o.locked?{code:d.f,data:o}:e}case j.w:return t.payload;default:return e}},extraFontStyles:(e=[],t)=>{switch(t.type){case"HYDRATE":{const{project:e}=t.payload;return e.data.extraFontStyles}case"UPDATE_EXTRA_FONT_STYLES":return t.payload;case"IMPORT_TEMPLATE":case"ADD_BLOCK":case"ADD_GLOBAL_BLOCK":{const{extraFontStyles:o}=t.payload;return o&&0!==o.length?[...e,...o]:e}default:return e}},fonts:function(e={},t){switch(t.type){case j.h:{const{fonts:e}=t.payload;return e}case j.b:case j.e:{const o=t.payload;return o&&0!==o.length?k(k({},e),o):e}case P.b:case j.j:case j.i:case j.a:case j.c:{const{fonts:o}=t.payload;return o&&0!==o.length?Object(i.a)(e,e=>{o.forEach(({type:t,fonts:o})=>{e[t]=e[t]||{data:[]},e[t].data.push(...o)})}):e}default:return e}},globalBlocks:(e={},t,o)=>{switch(t.type){case"HYDRATE":{const{globalBlocks:e,page:{data:{items:o=[]}}}=t.payload,n=o.filter(e=>{var t;return null==e||null===(t=e.value)||void 0===t?void 0:t.globalBlockId}).map(e=>{var t;return null==e||null===(t=e.value)||void 0===t?void 0:t.globalBlockId});return Object.entries(e).reduce((e,[o,a])=>(n.includes(o)&&!Object(f.k)(a.data)?e[o]=Object(i.a)(a,e=>{e.rules=Object(f.d)(a,!0,t.payload.page).rules,e.data.value._id=o}):e[o]=a,e),{})}case"ADD_BLOCK":return e;case"ADD_GLOBAL_BLOCK":{const{_id:n}=t.payload.block.value;return Object(f.k)(e[n].data)?e:C(C({},e),{},{[n]:Object(f.d)(e[n],!0,null==o?void 0:o.page)})}case"MAKE_POPUP_TO_GLOBAL_BLOCK":case"MAKE_NORMAL_TO_GLOBAL_BLOCK":{const{data:o,status:n,meta:a,rules:r,position:l}=t.payload;return Object(i.a)(e,e=>{e[o.value._id]={meta:a,data:o,status:n,rules:r,position:l}})}case"UPDATE_GLOBAL_BLOCK":{const{id:n,data:a}=t.payload;if(null===a.value&&!Object(f.k)(e[n].data)){const t=Object(f.d)(e[n],!1,null==o?void 0:o.page);return C(C({},e),{},{[n]:t})}return e}case"REMOVE_BLOCK":{const{index:n}=t.payload,a=Object(s.d)(o),r=Object.keys(e),i=a[n];if(r.includes(a[n])&&!Object(f.k)(e[i].data)){const t=Object(f.d)(e[i],!1,null==o?void 0:o.page);return C(C({},e),{},{[i]:t})}return e}case"MAKE_GLOBAL_TO_NORMAL_BLOCK":{const{fromBlockId:n}=t.payload,a=Object(f.d)(e[n],!1,null==o?void 0:o.page);return C(C({},e),{},{[n]:a})}case"REORDER_BLOCKS":{const{oldIndex:n,newIndex:a}=t.payload,r=Object(s.d)(o),i=Object.keys(e);if(i.includes(r[n])){const t=r[n],l=Object(v.insert)(Object(v.removeAt)(r,n),a,t),c=r[n],d=Object(f.g)(r,n,i),u=Object(f.g)(l,a,i);if("center"===d&&("top"===u||"bottom"===u)&&!Object(f.f)(Object(s.c)(o),e,null==o?void 0:o.page).includes(c)){const t=Object(f.d)(e[c],!0,null==o?void 0:o.page);return C(C({},e),{},{[c]:t})}}return e}case"REMOVE_BLOCKS":{const t=Object(s.d)(o),n=Object(s.c)(o),a=S.default.difference(t,n);return Object(i.a)(e,e=>{a.forEach(t=>{Object(f.k)(e[t].data)||(e[t]=Object(f.d)(e[t],!1,null==o?void 0:o.page))})})}case"UPDATE_BLOCKS":{const{blocks:n}=t.payload,a=Object(s.d)(o),r=n.map(e=>e.value._id),l=S.default.difference(a,r);return Object(i.a)(e,e=>{l.forEach(t=>{e[t]&&!Object(f.k)(e[t].data)&&(e[t]=Object(f.d)(e[t],!1,null==o?void 0:o.page))})})}case"UPDATE_GB_RULES":{const{id:o,rules:n}=t.payload;return Object(i.a)(e,e=>{e[o].rules=n})}case"DELETE_GLOBAL_BLOCK":{const{id:o}=t.payload;return Object(i.a)(e,e=>{e[o].data.deleted=!0})}case"PUBLISH":{const e=Object(s.o)(o),t=Object(s.p)(o),n=Object(s.q)(o);return Object.entries(e).reduce((e,[o,a])=>(e[o]=Object(i.a)(a,e=>{e.position=n[o]||null;const r="SectionPopup"===a.data.type||"SectionPopup2"===a.data.type;(t[o]||r)&&(e.status="publish")}),e),{})}default:return e}},changedGBIds:(e=[],t,o)=>{switch(t.type){case j.c:{const{_id:o}=t.payload.block.value;return[...e,o]}case j.n:case j.m:{const{_id:o}=t.payload.data.value;return[...e,o]}case j.k:case j.l:{const{fromBlockId:o}=t.payload;return e.includes(o)?e:[...e,o]}case j.o:{const{index:n}=t.payload,a=Object(s.d)(o)[n];return e.filter(e=>e!==a)}case j.p:{const t=Object(s.p)(o),n=Object.keys(t);return e.filter(e=>!n.includes(e))}case j.y:{const{id:o}=t.payload;return e.includes(o)?e:[...e,o]}case P.a:return[];default:return e}},page:(e,t,o)=>{switch(t.type){case"HYDRATE":{const{page:e}=t.payload;return e}case"PUBLISH":{const{status:e}=t.payload,n=h.b?Object(s.u)(o):Object(s.t)(o);return Object(i.a)(n,t=>{t.status=e,t.dataVersion=t.dataVersion+1})}case"UPDATE_TRIGGERS":{const{data:o}=t.payload;return Object(i.a)(e,e=>{e.data.triggers=o,e.dataVersion=e.dataVersion+1})}case"UPDATE_POPUP_RULES":return Object(i.a)(e,e=>{e.data.rulesAmount=t.payload.rules.length,e.dataVersion=e.dataVersion+1});case"UPDATE_PAGE_LAYOUT":return Object(g.a)(e)?Object(i.a)(e,e=>{e.layout.value=t.payload.layout,e.dataVersion=e.dataVersion+1}):e;case"UPDATE_PAGE_TITLE":return Object(g.a)(e)?Object(i.a)(e,e=>{e.title=t.payload,e.dataVersion=e.dataVersion+1}):e;default:return e}},blocksOrder:(e=[],t)=>{switch(t.type){case"HYDRATE":{var o;const e=(null===(o=t.payload.page.data)||void 0===o?void 0:o.items)||[];if(h.d&&0===e.length)return["ecupxjcqmrpxjdimoebbkbnotrlufkfokjvr"];const n=e.map(e=>e.value.globalBlockId||e.value._id);return Object(f.e)(n,t.payload.globalBlocks,t.payload.page)}case"ADD_GLOBAL_BLOCK":case"ADD_BLOCK":{const{block:o}=t.payload,{insertIndex:n}=t.meta,{_id:a}=o.value;return e.includes(a)?e:Object(v.insert)(e,n,o.value._id)}case"REMOVE_BLOCK":{const{index:o}=t.payload;return Object(v.removeAt)(e,o)}case"REMOVE_BLOCKS":return[];case"MAKE_GLOBAL_BLOCK_TO_POPUP":if(h.b){const{block:o,fromBlockId:n}=t.payload;return Object(v.replaceAt)(e,e.findIndex(e=>e===n),o.value._id)}return e;case"MAKE_GLOBAL_TO_NORMAL_BLOCK":{const{block:o,fromBlockId:n}=t.payload;return Object(v.replaceAt)(e,e.findIndex(e=>e===n),o.value._id)}case"REORDER_BLOCKS":{const{oldIndex:o,newIndex:n}=t.payload,a=e[o];return Object(v.insert)(Object(v.removeAt)(e,o),n,a)}case"IMPORT_TEMPLATE":{const{blocks:o}=t.payload,{insertIndex:n}=t.meta,a=o.map(e=>e.value._id);return Object(v.insert)(e,n,a)}case"UPDATE_BLOCKS":{const{blocks:e}=t.payload;return e.map(e=>e.value._id)}case"UPDATE_GLOBAL_BLOCK":{const{id:o,data:n}=t.payload;return null===n.value?e.filter(e=>e!==o):e}default:return e}},project:function(e={},t,o){switch(t.type){case j.h:{const{project:e}=t.payload;return e}case P.c:{const t=Object(l.a)(e),n=Object(l.a)(Object(s.D)(o));return t.equals(n)?e:Object(i.a)(Object(s.D)(o),e=>{e.dataVersion=e.dataVersion+1})}case j.v:{const o=t.payload;return Object(i.a)(e,e=>{e.data.disabledElements=o,e.dataVersion=e.dataVersion+1})}case j.i:{const{selectedKit:o}=t.payload;return Object(i.a)(e,e=>{e.data.selectedKit=o,e.dataVersion=e.dataVersion+1})}case j.s:{const o=t.payload;return Object(i.a)(e,e=>{e.data.selectedKit=o,e.dataVersion=e.dataVersion+1})}case P.b:case j.j:{const{styles:o,fonts:n}=t.payload;return null!=o&&o.length||null!=n&&n.length?Object(i.a)(e,e=>{e.dataVersion=e.dataVersion+1}):e}case j.b:case j.e:return Object(i.a)(e,e=>{e.dataVersion=e.dataVersion+1});default:return e}},styles:function(e=[],t){switch(t.type){case j.h:{const{project:e}=t.payload;return e.data.styles}case P.b:case j.j:case j.i:{const{styles:o}=t.payload;return o?[...e,...o]:e}default:return e}},ui:function(e=T,t){switch(t.type){case"UPDATE_UI":{const{key:o,value:n}=t,a=w(w({},e),{},{[o]:n});return"deviceMode"===o&&"manual"!==a.rightSidebar.lock&&("desktop"!==n?a.rightSidebar=w(w({},a.rightSidebar),{},{isOpen:!0,lock:"auto"}):a.rightSidebar.isOpen&&(a.rightSidebar=w(w({},a.rightSidebar),{},{isOpen:!1,lock:void 0}))),a}default:return e}},storeWasChanged:(e,t)=>{switch(t.type){case"HYDRATE":return z.a.unchanged;case"ADD_BLOCK":case"REMOVE_BLOCK":case"REORDER_BLOCKS":case"UPDATE_BLOCKS":case"UPDATE_GLOBAL_BLOCK":case"UPDATE_CURRENT_STYLE_ID":case"UPDATE_CURRENT_STYLE":case"UPDATE_EXTRA_FONT_STYLES":case"IMPORT_TEMPLATE":case"UNDO":case"REDO":return z.a.changed;case"PUBLISH":return z.a.pending;case"STORE_WAS_CHANGED":return t.payload;case"UPDATE_ERROR":return z.a.unchanged;default:return e}}},L={screenshots:function(e={},t,o,n){switch(t.type){case j.h:case P.c:{const e=_(n.page.data),t={};for(const[e,o]of Object.entries(n.globalBlocks)){const n=o.data;if(F(n)){const o=n.value;t[e]={_thumbnailSrc:o._thumbnailSrc,_thumbnailWidth:o._thumbnailWidth,_thumbnailHeight:o._thumbnailHeight,_thumbnailTime:o._thumbnailTime}}Object.assign(t,_(n.value))}return k(k(k({},e),t),{},{_published:k(k({},e),t)})}case j.A:{const{payload:{blockId:o,data:n}}=t;return Object(i.a)(e,e=>{e[o]=n})}case j.m:{const{data:{value:{_id:o}},meta:n}=t.payload,a={_thumbnailSrc:n._thumbnailSrc,_thumbnailWidth:n._thumbnailWidth,_thumbnailHeight:n._thumbnailHeight,_thumbnailTime:n._thumbnailTime};return Object(i.a)(e,e=>{e[o]=a,e._published[o]=a})}default:return e}}},(e={},t)=>{const o={};return Object.entries(R).reduce((o,[n,a])=>(o[n]=a(e[n],t,e),o),o),Object.entries(L).reduce((o,[n,a])=>(o[n]=a(e[n],t,e,o),o),o),o}),{keysToTrack:["blocksOrder","blocksData","currentStyleId","currentStyle","extraFontStyles","globalBlocksUpdates","storeWasChanged"],onBeforeUpdate:(e,t,o)=>{if(t.type===j.x||t.type===j.o||t.type===j.p){const n=Object(s.d)(e),a=Object(s.r)(e);(t.type===j.p?n:[t.payload.id]).forEach(e=>{if(n.includes(e)&&a[e]){const t=o.getSnapshots();o.replaceSnapshots(t.map(t=>(null!=t&&t.blocksOrder&&(t.blocksOrder=t.blocksOrder.filter(t=>t!==e)),t)))}})}}});let I;function W({middleware:e=[]}={}){if(I)throw new Error("store is already created");return I=Object(n.d)(M,Object(n.c)(a.reduxBatch,Object(n.a)(...e))),I}function N(){if(!I)throw new Error("store is not yet created");return I}},,function(e,t,o){"use strict";o.d(t,"g",(function(){return p})),o.d(t,"f",(function(){return b})),o.d(t,"d",(function(){return m})),o.d(t,"a",(function(){return h})),o.d(t,"b",(function(){return v})),o.d(t,"c",(function(){return y})),o.d(t,"h",(function(){return O})),o.d(t,"e",(function(){return S}));var n=o(2),a=o(33),r=o(8),i=o(9),l=o(30),s=o(6);function c(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function d(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?c(Object(o),!0).forEach((function(t){Object(n.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):c(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function u(e,t,o){const n=e+(String(o).charAt(0).toUpperCase()+String(o).substr(1));return Object(a.f)(t[o],t[n])}function p(e,t){return u("tablet",e,t)}function b(e,t){return u("mobile",e,t)}function m(e,t){return Object(a.f)(e,t)}function h({key:e,device:t="desktop",state:o="normal"}){const n="temp"===e.substr(0,4)?"temp":"",a=n.length>0?e.substr(4):e;return Object(i.a)([n,g({key:a,device:t,state:o})])}function g({key:e,device:t,state:o}){const n=s.e(o),a=l.g(t),r=n===s.d?"":n,c=a===l.d?"":a;return Object(i.a)([r,c,e])}function v({v:e,key:t,device:o="desktop",state:n="normal"}){const r=h({key:t,device:o,state:n}),i=h({key:t,device:l.d,state:n}),c=h({key:t,device:l.d,state:s.d});return Object(a.f)(e[c],Object(a.f)(e[i],e[r]))}const f=Object(r.memoize)(()=>l.h.reduce((e,t)=>{const o=s.f().reduce((e,o)=>(e.push({device:t,state:o}),e),[]);return e.concat(o)},[]));function y(e,t){return f().reduce((o,n)=>o||v(d({v:e,key:t},n)),"")}function O(e,t,o){return f().some(n=>{const a=v(d({v:e,key:t},n));return a&&a!==o})}function S(e,t){return f().map(e=>h(d({key:t},e)))}},function(e,t,o){"use strict";o.d(t,"b",(function(){return p})),o.d(t,"c",(function(){return b})),o.d(t,"a",(function(){return m})),o.d(t,"d",(function(){return h})),o.d(t,"u",(function(){return s})),o.d(t,"p",(function(){return c})),o.d(t,"n",(function(){return g})),o.d(t,"m",(function(){return v})),o.d(t,"o",(function(){return f})),o.d(t,"l",(function(){return y})),o.d(t,"z",(function(){return O})),o.d(t,"f",(function(){return S})),o.d(t,"x",(function(){return x})),o.d(t,"F",(function(){return C})),o.d(t,"D",(function(){return j})),o.d(t,"w",(function(){return P})),o.d(t,"i",(function(){return B})),o.d(t,"B",(function(){return w})),o.d(t,"A",(function(){return T})),o.d(t,"e",(function(){return z})),o.d(t,"g",(function(){return E})),o.d(t,"h",(function(){return k})),o.d(t,"y",(function(){return H})),o.d(t,"q",(function(){return F})),o.d(t,"r",(function(){return _})),o.d(t,"s",(function(){return R})),o.d(t,"j",(function(){return L})),o.d(t,"k",(function(){return M})),o.d(t,"t",(function(){return I})),o.d(t,"v",(function(){return W})),o.d(t,"E",(function(){return N})),o.d(t,"C",(function(){return A}));var n=o(2),a=o(8),r=o(26),i=o(65),l=o(19);function s(){return{type:"UNDO"}}function c(){return{type:"REDO"}}function d(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function u(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?d(Object(o),!0).forEach((function(t){Object(n.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):d(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const p="IMPORT_STORY",b="PUBLISH",m="FETCH_PAGE_SUCCESS",h="UPDATE_EXTRA_FONT_STYLES";function g(e){return{type:"MAKE_NORMAL_TO_GLOBAL_BLOCK",payload:e}}function v({fromBlockId:e,block:t}){return{type:"MAKE_GLOBAL_TO_NORMAL_BLOCK",payload:{fromBlockId:e,block:t}}}function f(e){return{type:"MAKE_POPUP_TO_GLOBAL_BLOCK",payload:e}}function y({fromBlockId:e,parentId:t,block:o}){return{type:"MAKE_GLOBAL_BLOCK_TO_POPUP",payload:{fromBlockId:e,parentId:t,block:o}}}function O({id:e,data:t,meta:o}){return{type:"UPDATE_GLOBAL_BLOCK",payload:{id:e,data:t},meta:u({is_autosave:1},o)}}const S=e=>(t,o)=>{const n=Object(l.m)(o()),s=e.reduce((e,t)=>{var o;const{type:r,fonts:l}=t,s=(null===(o=n[r])||void 0===o?void 0:o.data)||[],[c,d]=a.default.partition(l,e=>Object.prototype.hasOwnProperty.call(e,"deleted")),p=d.map(e=>u(u({},e),{},{brizyId:Object(i.a)()}));return u(u({},e),{},{[r]:{data:s.map(e=>c.find(({brizyId:t})=>e.brizyId===t)||e).concat(p)}})},{});return t({type:"ADD_FONTS",payload:Object(r.mergeDeep)(n,s)})},x=e=>({type:"UPDATE_EXTRA_FONT_STYLES",payload:e});function C(e,t){return{type:"UPDATE_UI",key:e,value:t}}const j=e=>({type:"STORE_WAS_CHANGED",payload:e});function P({blocks:e,meta:t={}}){return{type:"UPDATE_BLOCKS",payload:{blocks:e},meta:u({is_autosave:1},t)}}const B=()=>({type:m}),w=e=>t=>new Promise((o,n)=>{t({type:"PUBLISH",payload:{status:e},meta:{onSuccess:o,onError:n}})}),T=e=>({type:"UPDATE_PAGE_LAYOUT",payload:{layout:e}});function z(e,t={insertIndex:0}){return{type:"ADD_BLOCK",payload:e,meta:t}}function E(e,t={insertIndex:0}){return{type:"ADD_GLOBAL_BLOCK",payload:e,meta:t}}function k({id:e}){return{type:"DELETE_GLOBAL_BLOCK",payload:{id:e}}}function H({data:e,meta:t}){return{type:"UPDATE_GB_RULES",payload:e,meta:t}}function F({index:e,id:t}){return{type:"REMOVE_BLOCK",payload:{index:e,id:t}}}function _(){return{type:"REMOVE_BLOCKS"}}function R(e){return{type:"REORDER_BLOCKS",payload:e}}function L(e,t={insertIndex:0}){return{type:p,payload:e,meta:t}}function M(e,t={insertIndex:0}){return{meta:t,type:"IMPORT_TEMPLATE",payload:e}}function I(e){return C("deviceMode",e)}function W(e){return{type:"UPDATE_AUTHORIZATION",payload:e}}function N(e){return{type:"UPDATE_SYNC_ALLOWED",payload:e}}function A(e){return{type:"UPDATE_PAGE_TITLE",payload:e}}},function(e,t,o){"use strict";o.d(t,"b",(function(){return n})),o.d(t,"a",(function(){return a}));const n=e=>{if(""===e||"number"!=typeof e&&"string"!=typeof e)return;const t=Number(e);return isNaN(t)?void 0:t},a={read:n}},function(e,t,o){"use strict";o.d(t,"a",(function(){return n})),o.d(t,"c",(function(){return a})),o.d(t,"b",(function(){return r})),o.d(t,"h",(function(){return i})),o.d(t,"d",(function(){return s})),o.d(t,"g",(function(){return c})),o.d(t,"f",(function(){return d})),o.d(t,"e",(function(){return u}));const n="desktop",a="tablet",r="mobile",i=["desktop","tablet","mobile"],l=e=>i.includes(e)?e:void 0,s="desktop",c=e=>{var t;return null!==(t=l(e))&&void 0!==t?t:s},d=e=>[a,r].includes(e),u=e=>[n].includes(e)},function(e,t,o){"use strict";o.d(t,"h",(function(){return s})),o.d(t,"g",(function(){return c})),o.d(t,"r",(function(){return d})),o.d(t,"o",(function(){return u})),o.d(t,"p",(function(){return p})),o.d(t,"q",(function(){return b})),o.d(t,"m",(function(){return m})),o.d(t,"n",(function(){return h})),o.d(t,"k",(function(){return g})),o.d(t,"y",(function(){return v})),o.d(t,"f",(function(){return f})),o.d(t,"z",(function(){return y})),o.d(t,"C",(function(){return O})),o.d(t,"d",(function(){return S})),o.d(t,"j",(function(){return x})),o.d(t,"i",(function(){return C})),o.d(t,"s",(function(){return j})),o.d(t,"u",(function(){return P})),o.d(t,"t",(function(){return B})),o.d(t,"b",(function(){return w})),o.d(t,"e",(function(){return T})),o.d(t,"A",(function(){return z})),o.d(t,"v",(function(){return E})),o.d(t,"x",(function(){return k})),o.d(t,"B",(function(){return H})),o.d(t,"c",(function(){return F})),o.d(t,"l",(function(){return _})),o.d(t,"a",(function(){return R})),o.d(t,"w",(function(){return L})),o.d(t,"F",(function(){return M})),o.d(t,"E",(function(){return I})),o.d(t,"K",(function(){return W})),o.d(t,"J",(function(){return N})),o.d(t,"I",(function(){return A})),o.d(t,"D",(function(){return V})),o.d(t,"N",(function(){return D})),o.d(t,"G",(function(){return $})),o.d(t,"H",(function(){return G})),o.d(t,"L",(function(){return U})),o.d(t,"P",(function(){return K})),o.d(t,"O",(function(){return Y})),o.d(t,"M",(function(){return q}));var n=o(2),a=o(26),r=o(19);function i(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function l(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?i(Object(o),!0).forEach((function(t){Object(n.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):i(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const s="HYDRATE",c="EDITOR_RENDERED",d="UPDATE_BLOCKS",u="REMOVE_BLOCK",p="REMOVE_BLOCKS",b="REORDER_BLOCKS",m="MAKE_NORMAL_TO_GLOBAL_BLOCK",h="MAKE_POPUP_TO_GLOBAL_BLOCK",g="MAKE_GLOBAL_BLOCK_TO_POPUP",v="UPDATE_GLOBAL_BLOCK",f="DELETE_GLOBAL_BLOCK",y="UPDATE_POPUP_RULES",O="UPDATE_UI",S="COPY_ELEMENT",x="IMPORT_TEMPLATE",C="IMPORT_KIT",j="UPDATE_CURRENT_KIT_ID",P="UPDATE_CURRENT_STYLE_ID",B="UPDATE_CURRENT_STYLE",w="ADD_FONTS",T="DELETE_FONTS",z="UPDATE_SCREENSHOT",E="UPDATE_DISABLED_ELEMENTS",k="UPDATE_GB_RULES",H="UPDATE_TRIGGERS",F="ADD_GLOBAL_BLOCK",_="MAKE_GLOBAL_TO_NORMAL_BLOCK",R="ADD_BLOCK",L="UPDATE_ERROR";function M({project:e,projectStatus:t,fonts:o,page:n,globalBlocks:a,blocksThumbnailSizes:r,authorized:i,syncAllowed:l}){return{type:s,payload:{project:e,projectStatus:t,fonts:o,page:n,globalBlocks:a,blocksThumbnailSizes:r,authorized:i,syncAllowed:l}}}function I(){return{type:c}}function W(e){return{type:P,payload:e}}function N(e){return{type:B,payload:e}}function A(e){return{type:j,payload:e}}function V({type:e,fonts:t}){return(o,n)=>{const i=Object(r.m)(n()),s=i[e]&&i[e].data||[],c={[""+e]:{data:s.map(e=>t.some(({brizyId:t})=>t===e.brizyId)?l(l({},e),{},{deleted:!0}):e)}};return o({type:T,payload:Object(a.mergeDeep)(i,c)})}}function D({data:e,meta:t}){return{type:y,payload:e,meta:t}}function $(e){return{type:C,payload:e}}function G(e){return{type:S,value:e}}function U(e){return{type:E,payload:e}}function K(e,t){return{type:H,payload:{data:e},meta:t}}function Y({blockId:e,data:t,meta:o}){return{type:z,payload:{blockId:e,data:t},meta:o}}function q(e){return{type:L,payload:e}}},,function(e,t,o){"use strict";o.d(t,"g",(function(){return a})),o.d(t,"a",(function(){return r})),o.d(t,"f",(function(){return i})),o.d(t,"h",(function(){return l})),o.d(t,"e",(function(){return s})),o.d(t,"c",(function(){return c})),o.d(t,"d",(function(){return d})),o.d(t,"b",(function(){return u}));var n=o(8);function a(e,t){return void 0===e?t:e}const r=e=>null==e||"number"==typeof e&&Number.isNaN(e);function i(...e){return 1===e.length?t=>r(t)?e[0]:t:r(e[1])?e[0]:e[1]}const l=e=>t=>{if(r(t))throw new Error(e);return t};function s(e,t,o){return r(t)||t===e?o:t}function c(e,t){if(!r(t))return e(t)}function d(...e){return t=>Object(n.foldr)(e,(e,t)=>r(e)?void 0:t(e),t)}const u=e=>!r(e)},function(e,t,o){"use strict";(function(e){o.d(t,"a",(function(){return P}));var n=o(12),a=o(2),r=o(0),i=o.n(r),l=o(114),s=o(26),c=o(42),d=o(78),u=o(15),p=o(25),b=o(19),m=o(16),h=o(31),g=o(20),v=o(518),f=o(165),y=o(86);function O(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function S(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?O(Object(o),!0).forEach((function(t){Object(a.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):O(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const x=u.a.get("menuData"),C=(e,t)=>Object(l.a)((e=>Array.isArray(e)?[]:{})(e),e,t);function j(e,t,o){const n=e.slice();return t.forEach((function(t,a){if(void 0===n[a]){const e=!1!==o.clone&&o.isMergeableObject(t);n[a]=e?C(t,o):t}else o.isMergeableObject(t)?n[a]=Object(l.a)(e[a],t,o):-1===e.indexOf(t)&&n.push(t)})),n}class P extends g.a{constructor(...e){super(...e),Object(a.a)(this,"handleKeyDown",(e,{keyName:t,id:o})=>{e.preventDefault();const n=this.getValue(),a=n.findIndex(({value:{_id:e}})=>e===o);switch(t){case"alt+N":case"ctrl+N":case"cmd+N":case"right_cmd+N":return void this.addColumn(a+1);case"alt+D":case"ctrl+D":case"cmd+D":case"right_cmd+D":return void("StoryWrapper"===n[a].type?this.insertItem(a+1,Object(m.o)(n[a])):this.cloneItem(a));case"alt+C":case"ctrl+C":case"cmd+C":case"right_cmd+C":return void this.copy(a);case"alt+V":case"ctrl+V":case"cmd+V":case"right_cmd+V":return void("StoryWrapper"===n[a].type?this.paste(a,e=>{const{offsetX:t=0,offsetY:o=0}=n[a].value.items[0].value;let r=Object(s.setIn)(e,["value","items",0,"value","offsetX"],t);return r=Object(s.setIn)(r,["value","items",0,"value","offsetY"],o),Object(m.o)(r)}):this.paste(a));case"alt+shift+V":case"ctrl+shift+V":case"cmd+shift+V":case"right_cmd+shift+V":case"shift+alt+V":case"shift+ctrl+V":case"shift+cmd+V":case"shift+right_cmd+V":return void this.pasteStyles(a);case"ctrl+right":case"cmd+right":case"right_cmd+right":return void this.changeHorizontalAlign(a,"increase");case"ctrl+left":case"cmd+left":case"right_cmd+left":return void this.changeHorizontalAlign(a,"decrease");case"ctrl+up":case"cmd+up":case"right_cmd+up":case"alt+up":return void this.changeVerticalAlign(a,"decrease");case"ctrl+down":case"cmd+down":case"right_cmd+down":case"alt+down":return void this.changeVerticalAlign(a,"increase");case"alt+del":case"del":case"cmd+backspace":case"cmd+del":case"right_cmd+backspace":case"right_cmd+del":return void this.removeItem(a)}}),Object(a.a)(this,"renderItem",(e,t,o)=>{const{sliceStartIndex:n,sliceEndIndex:a}=P.defaultProps,{sliceStartIndex:r=n,sliceEndIndex:i=a}=this.props;if(t>=r&&t<i){const n=e.value._id,a=this.renderItemData(e,n,t,o);return this.renderItemWrapper(a,n,t,e,o)}return null}),Object(a.a)(this,"getCurrentCopiedElement",()=>{const{path:e,value:t}=Object(b.f)(Object(p.b)().getState());return t?Object(s.getIn)(B(t),e):null})}insertItem(e,t){const o=Object(m.q)(t),n=Object(m.n)(o),a=this.getDBValue()||[],r=Object(s.insert)(a,e,n);this.handleValueChange(r,{arrayOperation:"insert"})}insertItemsBatch(e,t){const o=this.getDBValue()||[],n=t.reduce((t,o,n)=>{const a=Object(m.q)(o),r=Object(m.n)(a);return Object(s.insert)(t,e+n,r)},o);this.handleValueChange(n,{arrayOperation:"insert_bulk"})}updateItem(e,t,o={}){const n=this.getDBValue(),a=Object(s.setIn)(n,[e,"value"],t);this.handleValueChange(a,Object.assign(o,{arrayOperation:"itemChange"}))}removeItem(e){const t=this.getDBValue()||[],o=Object(s.removeAt)(t,e);this.handleValueChange(o,{arrayOperation:"remove"})}replaceItem(e,t,o){const n=Object(m.q)(t,{exclude:["_id"]}),a=Object(m.n)(n,o.idOptions),r=this.getDBValue()||[],i=Object(s.replaceAt)(r,e,a);this.handleValueChange(i,{arrayOperation:"replace",itemIndex:e,oldValue:r})}cloneItem(e,t=e+1){const o=this.getDBValue()||[];if(!o[e])throw new Error("Can't clone invalid item at index "+e);this.insertItem(t,o[e])}reorderItem(e,t){const o=this.getDBValue()||[];this.handleValueChange(Object(y.e)(e,t,o),{arrayOperation:"moveItem"})}getDefaultValue(){return this.props.defaultValue||[]}getValue(){return this.getDBValue()||this.getDefaultValue()}getValue2(){const e=this.getDefaultValue();return{v:this.getDBValue()||e}}validateValue(){}getItemProps(e,t,o){const{itemProps:n}=P.defaultProps,{itemProps:a=n}=this.props;return"function"==typeof a?a(e,t,o):a}renderItemData(e,t,o,a){const{type:r,value:l}=e,s=d.a.getComponent(r),c=this.getDefaultValue(),u=this.getItemProps(e,o,a),p=[...this.getPath(),o,"value"],b=c[o]&&c[o].value,m=l,h=(e,t={})=>{const{intent:n}=t;switch(n){case"replace_all":this.replaceItem(o,e,t);break;case"remove_all":this.removeItem(o,t);break;default:this.updateItem(o,e,t)}};if(s)return i.a.createElement(v.a,{key:t,onRemove:()=>this.removeItem(o)},i.a.createElement(s,Object(n.a)({},u,{path:p,defaultValue:b,dbValue:m,reduxState:this.getReduxState(),reduxDispatch:this.getReduxDispatch(),onChange:h})));{const e=d.a.getNotFoundComponent();return i.a.createElement(e,Object(n.a)({},u,{key:t,path:p,defaultValue:b,dbValue:m,reduxState:this.getReduxState(),reduxDispatch:this.getReduxDispatch(),onChange:h,componentId:r}))}}renderItemWrapper(e,t,o,n,a){return e}renderItemsContainer(e){return e}renderForEdit(e){const t=e.map(this.renderItem);return this.renderItemsContainer(t,e)}changeVerticalAlign(t,o){const n=this.getValue(),a=Object(b.B)(Object(p.b)().getState()),r=e.Brizy.activeEditorComponent.getPath(),{path:i,value:{type:l,value:c}}=Object(m.i)(r,a,"verticalAlign");if(c){const e=["top","center","bottom"],{defaultValue:{style:{verticalAlign:a}}}=d.a.getComponent(l),r=c.verticalAlign||a||"top",u=Object(m.h)(e,r,o),p=this.getPath(),b=i.reduce((e,t,o)=>(void 0===p[o]&&e.push(i[o]),e),[]),h=Object(s.setIn)(n,[...b,"value"],S(S({},c),{},{verticalAlign:u}));this.updateItem(t,h[t].value)}}changeHorizontalAlign(t,o){const n=this.getValue(),a=e.Brizy.activeEditorComponent.getPath(),r=Object(p.b)().getState(),i=Object(b.B)(r),{deviceMode:l}=r.ui,c="desktop"===l?"horizontalAlign":l+"HorizontalAlign",{path:u,value:{type:h,value:g}}=Object(m.i)(a,i,c);if(g){const e=["left","center","right"],{defaultValue:{style:a}}=d.a.getComponent(h),r=g[c]||a[c]||"left",i=Object(m.h)(e,r,o),l=this.getPath(),p=u.reduce((e,t,o)=>(void 0===l[o]&&e.push(u[o]),e),[]),b=Object(s.setIn)(n,[...p,"value"],S(S({},g),{},{[c]:i}));this.updateItem(t,b[t].value)}}copy(e){const t=this.getReduxDispatch(),o=[...this.getPath(),e],n=B(Object(b.A)(this.getReduxState()));t(Object(h.H)({value:n,path:o}))}paste(e,t=(e=>e)){const o=this.getValue()[e],{path:n,value:a}=Object(b.f)(Object(p.b)().getState());if(!a)return;const{value:r}=Object(m.g)(n,B(a),"Cloneable"===o.type||"Wrapper"===o.type?({type:e})=>"Cloneable"===e||"Wrapper"===e:({type:e})=>e===o.type);r&&this.insertItem(e+1,t(r))}pasteStyles(e){const{path:t,value:o}=Object(b.f)(Object(p.b)().getState());if(!o)return;const n=this.getValue()[e],a=this.getCurrentCopiedElement();let r=0;if(a&&("Wrapper"===a.type&&"Wrapper"===n.type||"StoryWrapper"===a.type&&"StoryWrapper"===n.type)){if(a.value.items[0].type!==n.value.items[0].type)return;r=1,"Form"===a.value.items[0].type||"IconText"===a.value.items[0].type?r=3:"ImageGallery"===a.value.items[0].type&&(r=2)}const{value:i}=Object(m.g)(t,B(o),({type:e})=>e===n.type);if(i){const t=Object(m.p)(i,r),o=Object(l.a)(n,t,{arrayMerge:j});this.updateItem(e,o.value)}}}function B(e){return Object(m.m)(e=>{const{type:t,value:o}=e;if("Menu"===t){const{menuSelected:t,symbols:n={}}=o,a=t||x[0].id,r=x.find(e=>e.id===a)||{};return Object(c.b)(e,e=>{e.value.items=Object(f.d)(r.items||[],n)})}return e},e)}Object(a.a)(P,"defaultProps",{itemProps:{},sliceStartIndex:0,sliceEndIndex:1/0})}).call(this,o(105))},function(e,t,o){"use strict";o.d(t,"g",(function(){return u})),o.d(t,"h",(function(){return p})),o.d(t,"o",(function(){return b})),o.d(t,"c",(function(){return m})),o.d(t,"d",(function(){return h})),o.d(t,"f",(function(){return g})),o.d(t,"e",(function(){return v})),o.d(t,"m",(function(){return f})),o.d(t,"a",(function(){return y})),o.d(t,"j",(function(){return O})),o.d(t,"n",(function(){return S})),o.d(t,"b",(function(){return x})),o.d(t,"k",(function(){return C})),o.d(t,"i",(function(){return j})),o.d(t,"l",(function(){return P}));var n,a=o(15),r=o(56),i=o(131),l=o(57);const s=a.a.getAll(),c=Object(l.match)([i.a,e=>e.template_type],[r.c,Object(l.match)([r.b,e=>e.templateType],[r.g,()=>{}])]),d=(e,t)=>{const o=c(e);return""===o||o===t},u=(n=s.mode,Object(i.a)(s)&&"post"===s.wp.postType),p=!!s.pro,b=Object(i.a)(s),m=Object(r.c)(s),h=Object(r.c)(s)&&Object(r.b)(s),g="page"===s.mode,v=Object(r.c)(s)&&Object(r.b)(s)&&Object(r.f)(s),f=(Object(r.c)(s)&&Object(r.b)(s)&&Object(r.d)(s),"single"===s.mode),y="archive"===s.mode,O="product"===s.mode,S=d(s,"single"),x=d(s,"archive"),C=d(s,"product"),j=d(s,"product_archive"),P=Object(r.c)(s)&&Object(r.b)(s)&&("isProtected"in(B=s).page&&B.page.isProtected);var B;Object(r.c)(s)&&s.page.provider,Object(r.c)(s)&&s.page.isResetPassPage},,,function(e,t,o){"use strict";o.d(t,"a",(function(){return P}));var n=o(2),a=o(0),r=o.n(a),i=o(8),l=o(4),s=o.n(l),c=o(83),d=o(200),u=o(18),p=o(3),b=o(74),m=o(6),h=o(19),g=o(25),v=o(11);var f=o(65),y=o(102),O=o(141);function S(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function x(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?S(Object(o),!0).forEach((function(t){Object(n.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):S(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const C=Object(f.a)(7);function j({children:e,className:t,component:o,attributes:n={},animationClass:a,renderContent:l=i.identity,v:f,vs:S,vd:j,componentId:P,id:B,onChange:w,meta:{sectionPopup:T,sectionPopup2:z}},E){const k="absolute"===f.elementPosition||"fixed"===f.elementPosition,H=s()(t,null==n?void 0:n.className,k&&Object(v.css)(`${P}-${B}-${C}`,`${B}-${C}`,function(e,t,o){return Object(v.renderStyles)({v:e,vs:t,vd:o,styles:{".brz &&:hover":{interval:["cssStyleOffset"]}}})}(f,S,j)));if(k){var F,_,R,L;const t=m.e(f.tabsState),i=Object(h.i)(Object(g.b)().getState()),v=e=>Object(p.defaultValueValue)({v:f,key:e,device:i,state:t}),S=({x:e,y:t})=>{const o=m.e(f.tabsState),n=Object(h.i)(Object(g.b)().getState()),a=(e,t)=>({[Object(p.defaultValueKey)({key:e,device:n,state:o})]:t});w(b.h(a,e,b.i(a,t,{})))},C=()=>({width:O.b,height:O.a});return r.a.createElement(d.a,{hAlign:null!==(F=b.a(v))&&void 0!==F?F:"left",vAlign:null!==(_=b.e(v))&&void 0!==_?_:"top",xSuffix:null!==(R=b.c(v))&&void 0!==R?R:"px",ySuffix:null!==(L=b.g(v))&&void 0!==L?L:"px",getValue:()=>{var e,t;return{x:null!==(e=b.b(v))&&void 0!==e?e:0,y:null!==(t=b.f(v))&&void 0!==t?t:0}},getContainerSizes:C,onStart:u.d,onChange:S},(t,i)=>r.a.createElement(c.a,{component:null!=o?o:"div",componentProps:x(x({},n),{},{className:s()(H,i)}),animationClass:a,ref:e=>{Object(y.a)(e,t),Object(y.a)(e,E)}},l(e)))}return r.a.createElement(c.a,{iterationCount:null===!1&&(T||z?1/0:1),component:null!=o?o:"div",componentProps:x(x({},n),{},{className:H}),animationClass:a,ref:E},l(e))}const P=Object(a.forwardRef)(j)},function(e,t,o){"use strict";var n=o(2),a=o(0),r=o.n(a),i=o(7),l=o.n(i),s=o(8),c=o(4),d=o.n(c);class u extends r.a.Component{getClassName(){return d()("brz-control__select-option",{active:this.props.active,disabled:this.props.disabled})}render(){const{title:e,disabled:t,onClick:o,value:n,children:a}=this.props,i=t?()=>{}:o;return r.a.createElement("div",{className:this.getClassName(),title:e,"data-value":n,onClick:i},a)}}Object(n.a)(u,"propTypes",{active:l.a.bool,title:l.a.string,disabled:l.a.bool,value:l.a.oneOfType([l.a.string,l.a.number]),onClick:l.a.func}),Object(n.a)(u,"defaultProps",{active:!1,title:"",disabled:!1,value:"",onClick:s.default.noop}),t.a=u},,function(e,t,o){"use strict";function n(e,t,o){return e<t?t:e>o?o:e}function a(e,t){return+(Math.round(Number(e+"e+"+t))+"e-"+t)}o.d(t,"a",(function(){return n})),o.d(t,"e",(function(){return a})),o.d(t,"c",(function(){return r})),o.d(t,"d",(function(){return i})),o.d(t,"g",(function(){return l})),o.d(t,"f",(function(){return s})),o.d(t,"h",(function(){return c})),o.d(t,"b",(function(){return d}));const r=e=>"number"==typeof e,i=e=>{switch(typeof e){case"number":return isFinite(e);case"string":return!isNaN(parseFloat(e))&&isFinite(Number(e))}return!1},l=(e,t)=>"number"==typeof e?e:t,s=(e,t)=>"number"==typeof e&&e>=0?e:t,c=(e,t)=>"number"==typeof e&&e>0?e:t,d=(e,t,o)=>o>=e&&o<=t},,function(e,t,o){"use strict";o.d(t,"d",(function(){return l})),o.d(t,"i",(function(){return s})),o.d(t,"c",(function(){return c})),o.d(t,"j",(function(){return u})),o.d(t,"k",(function(){return d})),o.d(t,"f",(function(){return p})),o.d(t,"e",(function(){return b})),o.d(t,"u",(function(){return v})),o.d(t,"l",(function(){return y})),o.d(t,"m",(function(){return f})),o.d(t,"o",(function(){return x})),o.d(t,"p",(function(){return C})),o.d(t,"h",(function(){return P})),o.d(t,"b",(function(){return M})),o.d(t,"g",(function(){return L})),o.d(t,"a",(function(){return _})),o.d(t,"t",(function(){return R})),o.d(t,"r",(function(){return I})),o.d(t,"s",(function(){return W})),o.d(t,"q",(function(){return N})),o.d(t,"n",(function(){return A}));var n=o(8),a=o(25),r=o(19),i=o(94);const l=({type:e,family:t})=>{const o=R(Object(i.i)(Object(a.b)().getState())),n=_(o[e],t,e);if(n)return M[e](n);const r=c();return M[r.group](r.font)},s=(e,t)=>Object.entries(e).reduce((e,o)=>{const[n,{data:a=[]}]=o,r=a.find(e=>t===M[n](e).id);return r?{group:n,font:r}:e},null),c=n.default.memoize(()=>{const e=Object(a.b)().getState(),{font:t}=Object(r.E)(e).data,{config:o}=Object(r.m)(e);return{group:"config",font:_(o.data,t)}});function d(){const{config:e={},blocks:t={},google:o={},upload:n={}}=Object(i.i)(Object(a.b)().getState());return{config:e.data||[],blocks:t.data||[],google:o.data||[],upload:n.data||[]}}function u(){return Object.values(d()).reduce((e,t)=>[...e,...t],[])}function p({includeDeleted:e=!1}={}){const t=Object(a.b)().getState(),{fontStyles:o}=Object(r.h)(t),n=[...o,...Object(r.l)(t)];return e?n:n.filter(e=>!0!==e.deleted)}function b(e){return p({includeDeleted:!0}).find(t=>t.id===e)}var m=o(117),h=o(1);const g=e=>{switch(e){case m.a.THIN:return Object(h.a)("Thin");case m.a.EXTRA_LIGHT:return Object(h.a)("Extra Light");case m.a.LIGHT:return Object(h.a)("Light");case m.a.NORMAL:return Object(h.a)("Normal");case m.a.MEDIUM:return Object(h.a)("Medium");case m.a.SEMI_BOLD:return Object(h.a)("Semi Bold");case m.a.BOLD:return Object(h.a)("Bold");case m.a.EXTRA_BOLD:return Object(h.a)("Extra Bold");case m.a.BLACK:return Object(h.a)("Black")}},v=m.d.reduce((e,t)=>(e[t]=g(t),e),{});function f({type:e,family:t}){if(e&&t){const{weights:o}=l({type:e,family:t});return o.map(e=>({title:g(e),value:e}))}return[{title:g(m.b),value:m.b}]}function y(e,t){return t.includes(Number(e))?e:m.b}o(80);var O=o(15),S=o(110);const x=e=>`https://fonts.googleapis.com/css?family=${e.reduce((e,t)=>{const o=t.family.replace(/\s/g,"+"),n=t.variants.join();return""===e?`${o}:${n}`:`${e}|${o}:${n}`},"")}&subset=arabic,bengali,cyrillic,cyrillic-ext,devanagari,greek,greek-ext,gujarati,hebrew,khmer,korean,latin-ext,tamil,telugu,thai,vietnamese&display=swap`,C=e=>{var t;const o=O.a.get("urls").editorFonts,n=null!==(t=O.a.get("prefix"))&&void 0!==t?t:"brizy",a=Object(S.b)({[n+"-font"]:e.reduce((e,{id:t,weights:o})=>{const n=o.join();return""===e?`${t}:${n}`:`${e}|${t}:${n}`},"")});return Object(S.c)(o)?`${o}&${a}`:`${o}?${a}`};o(36);var j=o(55);const P=async()=>await(async e=>{const t=await fetch(e),{items:o}=await t.json();return o})(Object(j.a)("googleFonts.json"));var B=o(2),w=o(42),T=o(65),z=o(21);function E(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function k(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?E(Object(o),!0).forEach((function(t){Object(B.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):E(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const H=e=>e.reduce((e,t)=>{const o=parseInt(t);return isNaN(o)||e.includes(o)?e:[...e,o]},[400]),F=e=>e.toLowerCase().replace(/\s+/g,"_"),_=(e=[],t="",o="google")=>"upload"===o?e.find(({id:e})=>e===t):e.find(({family:e})=>F(e)===t),R=e=>Object.entries(e).reduce((e,t)=>{const[o,{data:n}]=t;return k(k({},e),{},"upload"===o?{upload:n}:{google:[...e.google||[],...n]})},{}),L=e=>{const{family:t,category:o,variants:n,brizyId:a,deleted:r}=e;return k(k({id:F(t),title:t,family:`${t}, ${o}`,weights:H(n)},a&&{brizyId:a}),r&&{deleted:r})},M={config:L,google:L,blocks:L,upload:e=>{const{id:t,family:o,weights:n,brizyId:a,deleted:r}=e;return k(k({id:t,title:o,family:`'${t}'`,weights:H(n)},a&&{brizyId:a}),r&&{deleted:r})}},I=async e=>{if(0===e.length)return[];const t=new Map,o=e=>k({brizyId:Object(T.a)()},e),[n,a]=await Promise.all([P(),Object(z.H)()]);return e.forEach(({type:e,family:r})=>{if("google"===e){const e=_(n,r);if(e){const n=t.get("blocks")||[];t.set("blocks",[...n,o(e)])}}if("upload"===e){const e=_(a,r,"upload");if(e){const n=t.get("upload")||[];t.set("upload",[...n,o(e)])}}if("unknowns"===e){const e=_(a,r,"upload");if(e){const n=t.get("upload")||[];t.set("upload",[...n,o(e)])}else{const e=_(n,r);if(e){const n=t.get("blocks")||[];t.set("blocks",[...n,o(e)])}}}}),Object.values([...t]).reduce((e,t)=>{const[o,n]=t;return[...e,{type:o,fonts:n}]},[])},W=e=>Object(w.a)(e,e=>{e.map(({fontStyles:e})=>N(e))}),N=e=>Object(w.a)(e,e=>{e.map(e=>{e.fontSizeSuffix||(e.fontSizeSuffix="px"),e.tabletFontSizeSuffix||(e.tabletFontSizeSuffix="px"),e.mobileFontSizeSuffix||(e.mobileFontSizeSuffix="px")})});function A({group:e,font:t}){const o=M[e],{family:n}=o(t);return`.brz .brz-root__container,.brz .brz-popup2,.brz .brz-popup {font-family:${n}!important;}`}},function(e,t,o){"use strict";o.d(t,"a",(function(){return l})),o.d(t,"c",(function(){return s})),o.d(t,"b",(function(){return c}));var n=o(33);const a=e=>"optional"===e.__type,r=(e,t)=>{switch(e.__type){case"optional":case"strict":return e.fn(t);default:return e(t)}};function i(e,t){const o={};for(const i in e){if(!Object.prototype.hasOwnProperty.call(e,i))continue;const l=r(e[i],t);if(!a(e[i])&&Object(n.a)(l))return;o[i]=l}return o}const l=e=>({__type:"optional",fn:e});function s(e,t){return void 0===t?t=>i(e,t):i(e,t)}function c(e,t){return void 0===t?t=>i(e,t):i(e,t)}},function(e,t,o){"use strict";let n;o.d(t,"a",(function(){return n})),function(e){e.image="image",e.link="link",e.richText="richText",e.reference="reference",e.multiReference="multiReference"}(n||(n={}))},function(e,t){e.exports=jQuery},function(e,t,o){"use strict";o.d(t,"b",(function(){return n})),o.d(t,"a",(function(){return a})),o.d(t,"c",(function(){return r})),o.d(t,"e",(function(){return i})),o.d(t,"d",(function(){return l}));const n=e=>"object"==typeof e&&null!==e,a=(e,t)=>e in t,r=e=>{if(n(e))return e},i=e=>t=>{const o=(e=>{if(n(e))return e})(t);if(void 0!==o){const t={};for(const[n,a]of Object.entries(o)){const o=e(a);if(void 0===o)return;t[n]=o}return t}},l=e=>t=>a(e,t)?t[e]:void 0},function(e,t,o){"use strict";var n=o(12),a=o(2),r=o(0),i=o.n(r),l=o(8),s=o(4),c=o.n(s),d=o(99),u=o(14),p=(o(51),o(91)),b=o(109);function m(e,t,o,n){const a=t*o,r=t*n,i=e*t;return Math.max(a,Math.min(r,i))}class h extends i.a.Component{constructor(...e){super(...e),Object(a.a)(this,"state",{isOpen:!1,currentValue:this.props.defaultValue,position:"bottom-left"}),Object(a.a)(this,"onClickOutside",()=>{this.state.isOpen&&this.setState({isOpen:!1})}),Object(a.a)(this,"handleItemClick",e=>{this.setState({isOpen:!1,currentValue:e}),this.props.onChange(e)}),Object(a.a)(this,"handleContentRef",e=>{this.content=e}),Object(a.a)(this,"handleDropdownNode",e=>{this.dropdown=e}),Object(a.a)(this,"handleLabelClick",()=>{this.setState({isOpen:!this.state.isOpen},()=>{this.state.isOpen&&this.reposition()})})}componentDidMount(){this.props.inPortal||this.reposition()}componentWillReceiveProps(e){this.state.defaultValue!==e.defaultValue&&this.setState({currentValue:e.defaultValue})}getScrollPaneStyle(){const{children:e}=this.props,t=i.a.Children.count(e);let o=0;i.a.Children.forEach(e,e=>{const{items:t}=e.props;t&&t.length&&(o+=t.length)});return{height:m(t+o,this.props.itemHeight,this.props.minItems,this.props.maxItems)}}reposition(){this.dropdown&&(this.isRepositioning=!0,this.dropdown.style.setProperty("opacity",1),this.setState({position:"bottom-left"},()=>{const{bottom:e,right:t}=this.dropdown.getBoundingClientRect(),o=e>=window.innerHeight?"top":"bottom",n=t>=window.innerWidth?"right":"left";this.setState({position:`${o}-${n}`},()=>{this.isRepositioning=!1})}))}renderLabel(){const{labelType:e}=this.props;switch(e){case"icon":return this.renderLabelIcon();case"input":return this.renderLabelInput();default:throw new Error("Invalid label type "+e)}}renderLabelIcon(){return i.a.createElement(u.b,{icon:this.props.labelIcon})}renderLabelInput(){const{children:e}=this.props,{currentValue:t}=this.state;let o;i.a.Children.forEach(e,e=>{const{items:n}=e.props;if(!o)if(n&&n.length){const n=i.a.Children.toArray(e.props.items);o=n.find(e=>e.props.value===t)}else e.props.value===t&&(o=e)});const n=i.a.createElement(u.b,{icon:"nc-stre-down",className:"brz-control__select--arrow"});return i.a.createElement(i.a.Fragment,null,o||this.findFirstItem(),n)}renderItems(e=this.props.children){const{currentValue:t}=this.state;return i.a.Children.map(e,(e,o)=>{const{value:n,disabled:a,items:r}=e.props;return r&&r.length?i.a.cloneElement(e,{key:o,items:this.renderItems(r)}):i.a.cloneElement(e,{key:o,active:n===t,onClick:a?null:()=>this.handleItemClick(n)})})}renderDropDown(){const{inPortal:e,className:t}=this.props;if(this.state.isOpen&&!e)return i.a.createElement("div",{className:"brz-control__select-options",style:{opacity:0},ref:this.handleDropdownNode},i.a.createElement(d.a,{className:"brz-ed-scroll-pane",style:this.getScrollPaneStyle()},this.renderItems()));if(this.state.isOpen&&e){const{top:e,left:o,height:n,width:a}=this.content.getBoundingClientRect(),{scrollLeft:r}=this.content.ownerDocument.documentElement,l=c()("brz-control__portal-select brz-control__select",t),s={top:e+n+3,left:o+r,width:a};return i.a.createElement(b.a,{node:this.content.ownerDocument.body,className:l},i.a.createElement("div",{className:"brz-control__select-options",style:s},i.a.createElement(d.a,{className:"brz-ed-scroll-pane",style:this.getScrollPaneStyle()},this.renderItems())))}}render(){const{className:e,labelType:t,currentValue:o,inputAttributes:a,clickOutsideExceptions:r}=this.props,{position:l,isOpen:s}=this.state,d=c()("brz-control__select","brz-control__select--"+l,e,{opened:s}),u=[...r,".brz-control__portal-select"];return i.a.createElement(p.a,{exceptions:u,onClickOutside:this.onClickOutside},i.a.createElement("div",{className:d,ref:this.handleContentRef},i.a.createElement("div",{className:"brz-control__select-current brz-control__select-current__"+t,onClick:this.handleLabelClick},this.renderLabel()),this.renderDropDown(),i.a.createElement("input",Object(n.a)({type:"hidden",value:o},a))))}findFirstItem(e=this.props.children){let t;return i.a.Children.forEach(e,e=>{const{items:o}=e.props;t||(t=o&&o.length?this.findFirstItem(o):e)}),t}}Object(a.a)(h,"defaultProps",{defaultValue:"",inputAttributes:{},labelType:"input",labelIcon:"nc-menu",minItems:1,maxItems:5,itemHeight:38,arrowIcon:"nc-arrow-down",inPortal:!1,clickOutsideExceptions:[],onChange:l.default.noop}),t.a=h},function(e,t,o){"use strict";function n(e){return new Promise((function(t,o){const n=new Image;n.onload=function(){t(this)},n.onabort=function(){o(`preloadImage("${e}") onabort`)},n.onerror=function(){o(`preloadImage("${e}") onerror`)},n.src=e}))}o.d(t,"f",(function(){return n})),o.d(t,"h",(function(){return l})),o.d(t,"d",(function(){return f})),o.d(t,"g",(function(){return y})),o.d(t,"b",(function(){return x})),o.d(t,"e",(function(){return S})),o.d(t,"a",(function(){return C})),o.d(t,"c",(function(){return O}));o(80);var a=o(8),r=o(21);const i={acceptedExtensions:["jpeg","jpg","png","gif"],onBase64:e=>{},onUpload:e=>{},onError:e=>console.log("uploadImage default onError",e)};function l(e,t){const{acceptedExtensions:o,onBase64:n,onUpload:l,onError:c}=a.default.extend({},i,t);Promise.resolve(e).then(e=>{const t=e.name.split(".").pop();if(!(t&&a.default.some(o,e=>e===t.toLowerCase())))throw{status:406,message:"Extension is not accepted"};return e}).then(s).then(e=>{n(e);const t=e.replace(/data:image\/.+;base64,/,"");return Object(r.uploadImage)({base64:t})}).then(l).catch(c)}function s(e){return new Promise((function(t,o){const n=new FileReader;n.onload=function(e){t(e.target.result)},n.onerror=function(){o("Error read file.")},n.onabort=function(){o("Abort read file.")},n.readAsDataURL(e)}))}var c=o(15),d=o(93),u=o(98),p=o(110);const b=e=>{const t=a.default.mapObject(e,e=>"number"==typeof e?Math.round(e):e);return Object(p.b)(t)};var m=o(205);const h=c.a.get("urls").site,g=h.includes("?")?h+"&":h+"/?",v={};function f(e,t={iW:5e3,iH:"any"}){if(Object(p.a)(e)||Object(d.d)(e))return e;if(!e)return null;{const n=b(t);if(m.a.has(e)||0===e.indexOf("wp-")){var o;const t=null!==(o=c.a.get("prefix"))&&void 0!==o?o:"brizy",a=Object(p.b)({[t+"_media"]:e,[t+"_crop"]:n});return g+a}return v[e]||(v[e]=!0,Object(u.c)(e).then(()=>{v[e]=!1,m.a.add(e)})),function(e,t={iW:5e3,iH:"any"}){if(Object(p.a)(e)||Object(d.d)(e))return e;if(e){const o=b(t);return[c.a.get("urls").image,o,e].join("/")}return null}(e,t)}}function y(e){if(!e)return null;if(!(m.a.has(e)||0===e.indexOf("wp-"))&&!v[e])return v[e]=!0,Object(u.c)(e).then(()=>{v[e]=!1,m.a.add(e)}),function(e){return e?[c.a.get("urls").image,"original",e].join("/"):null}(e);const{customFile:t}=c.a.get("urls");return`${t}${e}`}function O(e,t){var o;const n=c.a.getAll(),a=n.urls.site,r=Object(p.c)(a)?a+"&":a+"/?",i=null!==(o=n.prefix)&&void 0!==o?o:"brizy";return`${r}${Object(p.b)({[i+"_media"]:e,[i+"_crop"]:t})}`}function S(e,t,o){const n=e>t?e/o:t/o;return{width:Math.round(e/n),height:Math.round(t/n)}}function x(e,t={cW:5e3,cH:0}){const{cW:o,cH:n}=t;if(!e||"number"!=typeof o||"number"!=typeof n)throw new Error("Invalid arguments");return`{{${e.replace(/{{|}}/g,"")} cW='${o}' cH='${n}'}}`}function C(e=""){return e.split(".").pop().toLowerCase()}},function(e,t,o){"use strict";o.d(t,"d",(function(){return u})),o.d(t,"c",(function(){return p})),o.d(t,"b",(function(){return b})),o.d(t,"a",(function(){return m})),o.d(t,"k",(function(){return h})),o.d(t,"h",(function(){return g})),o.d(t,"j",(function(){return v})),o.d(t,"i",(function(){return f})),o.d(t,"g",(function(){return y})),o.d(t,"e",(function(){return O})),o.d(t,"f",(function(){return S}));var n=o(15),a=o(24),r=o(41),i=o(3),l=o(93),s=o(33);const c=1440,d=960,u=(e,t)=>{const o=e.imageWidth||c,n=e.imageHeight||d,a=t/(o/n);let i=Object(r.a)(e.width||t,0,t),l=e.height||a;if("%"===e.widthSuffix&&(i=e.width*t/100),"%"===e.heightSuffix){const t=i/(o/n);l=e.height*t/100}return{width:Object(r.e)(i,2),height:Object(r.e)(l,2)}},p=(e,t)=>{if(e.width>t){const o=t/e.width;return{width:Object(r.a)(e.width,0,t),height:Object(r.e)(e.height*o,2)}}return{width:e.width,height:e.height}},b=(e,t)=>{const o=e.imageWidth||c,n=e.imageHeight||d,a=e.size*t/100,i=a/(o/n),l=e.size*i/100;return{width:Object(r.e)(a,2),height:Object(r.e)(l,2)}},m=(e,t,o=!1)=>{const n=u(e,t);let a=1,i=1;e.imageWidth/n.width<e.imageHeight/n.height?i=Object(r.e)(n.width/e.imageWidth,8):a=Object(r.e)(n.height/e.imageHeight,8);const l=Object(r.e)(e.imageWidth*(e.zoom/100)*i*a,2),s=Object(r.e)(e.imageHeight*(e.zoom/100)*i*a,2),c={imgWidth:l,imgHeight:s,imgMarginWidth:l-Object(r.e)(n.width*(e.zoom/100),2),imgMarginHeight:s-Object(r.e)(n.height*(e.zoom/100),2),wrapperWidth:n.width,wrapperHeight:n.height,positionX:e.positionX,positionY:e.positionY},d=((e,t)=>{let o,n;const a=e.positionX,r=e.positionY,i=e.imgWidth-e.wrapperWidth,l=e.imgHeight-e.wrapperHeight,s=a*e.imgWidth/100,c=r*e.imgHeight/100;return o=s-e.wrapperWidth/2,n=c-e.wrapperHeight/2,e.imgWidth>e.wrapperWidth?(o<0&&(o=0),o>i&&(o=i)):o=t?0:i/2,e.imgHeight>e.wrapperHeight?(n<0&&(n=0),n>l&&(n=l)):n=t?0:l/2,{left:-o,top:-n}})(c,o);return{width:Object(r.e)(c.imgWidth,2),height:Object(r.e)(c.imgHeight,2),marginLeft:Object(r.e)(d.left,2),marginTop:Object(r.e)(d.top,2)}},h=e=>"svg"===e,g=e=>"gif"===e,v=e=>"object"==typeof e&&"width"in e&&"height"in e,f=e=>"original"===e,y=e=>"custom"===e,O=e=>{if("custom"===e)return"custom";const t=n.a.getAll(),{imageSizes:o}=t,a=null==o?void 0:o.find(({name:t})=>t===e);if(void 0!==a&&!Object(s.a)(a.height)&&!Object(s.a)(a.width)){const{width:e,height:t}=a;return{width:e,height:t,widthSuffix:"px",heightSuffix:"px"}}return"original"},S=(e,t)=>{if(e.imagePopulation){var o;const t=Object(l.g)(e.imagePopulation);if(void 0!==(null==t||null===(o=t.attr)||void 0===o?void 0:o.size)){var n;const e=null!==(n=a.d(t.attr.size))&&void 0!==n?n:"custom";return e.trim().length>0?e:"custom"}return"custom"}return Object(i.defaultValueValue)({v:e,device:t,key:"sizeType"})}},function(e,t,o){"use strict";o.d(t,"a",(function(){return u}));var n=o(12),a=o(2),r=o(0),i=o.n(r),l=o(4),s=o.n(l),c=o(167),d=o(507);class u extends i.a.Component{constructor(...e){super(...e),Object(a.a)(this,"state",{icon:null}),Object(a.a)(this,"isUnmounted",!1)}componentDidMount(){const{name:e,type:t}=this.props;this.getSvg(t,e)}componentWillReceiveProps({name:e,type:t}){const{name:o,type:n}=this.props;o===e&&n===t||this.getSvg(t,e)}shouldComponentUpdate({name:e,type:t,className:o},{icon:n}){const{name:a,type:r,className:i}=this.props,{icon:l}=this.state;return l!==n||a!==e||r!==t||i!==o}componentWillUnmount(){this.isUnmounted=!0}fetchIcon(e,t){const o=Object(c.c)(e,t),n=new Headers({"Content-Type":"application/x-www-form-urlencoded; charset=UTF-8"});return fetch(o,{headers:n,method:"GET"}).then(e=>e.text())}async getSvg(e,t){const o=await this.fetchIcon(e,t);this.isUnmounted||this.setState({icon:Object(d.responseToSvg)(o)})}getSvgContent(e){if(e){const t=(new DOMParser).parseFromString(e,"text/html").body.firstChild||{innerHTML:null,attributes:{}},o=t.attributes,n=t.innerHTML;let a={};const r={"xmlns:xlink":"xmlnsXlink","xml:space":"xmlSpace"};for(let e=0;e<o.length;e++){let{name:t,value:n}=o[e];r[t]&&(t=r[t]),a[t]=n}return{attr:a,innerHtml:n}}return{innerHtml:null,attr:{}}}renderForEdit(){const{className:e}=this.props,t=s()("brz-icon-svg",e),{innerHtml:o,attr:a}=this.getSvgContent(this.state.icon);return o&&i.a.createElement("svg",Object(n.a)({},a,{className:t,dangerouslySetInnerHTML:{__html:o}}))}renderForView(){const{className:e,type:t,name:o}=this.props,n=s()("brz-icon-svg",e);return i.a.createElement("svg",{className:n,"data-type":t,"data-name":o})}render(){return this.renderForEdit()}}Object(a.a)(u,"defaultProps",{className:"",name:"",type:""})},function(e,t,o){"use strict";o.d(t,"a",(function(){return n}));const n=e=>{switch(typeof e){case"string":return e;case"number":return isNaN(e)?void 0:e.toString();default:return}}},function(e,t,o){"use strict";o.d(t,"b",(function(){return n})),o.d(t,"c",(function(){return a})),o.d(t,"f",(function(){return r})),o.d(t,"e",(function(){return i})),o.d(t,"a",(function(){return l})),o.d(t,"d",(function(){return s}));const n=1170,a=1920,r=768,i=430,l=60,s=440},,function(e,t,o){"use strict";o.d(t,"a",(function(){return a}));var n=o(15);function a(e){return n.a.get("urls").assets+"/"+e}},function(e,t,o){"use strict";o.d(t,"b",(function(){return n})),o.d(t,"a",(function(){return a})),o.d(t,"g",(function(){return r})),o.d(t,"f",(function(){return i})),o.d(t,"d",(function(){return l})),o.d(t,"c",(function(){return s})),o.d(t,"e",(function(){return c}));const n=e=>"cms"===e.platform;let a;!function(e){e.Product="shopify-product",e.Page="shopify-page",e.Collection="shopify-collection",e.Article="shopify-article"}(a||(a={}));const r=e=>"shopify"===e.platform,i=e=>"customers"===e.page.provider,l=e=>"collections"===e.page.provider,s=e=>!1,c=e=>"collectionType"in e},,function(e,t,o){"use strict";o.d(t,"a",(function(){return s})),o.d(t,"c",(function(){return d})),o.d(t,"b",(function(){return l}));var n=o(2),a=o(0),r=o.n(a),i=o(15);const l=()=>i.a.get("user").role;class s extends a.Component{render(){const{allow:e,children:t,component:o,render:n,fallbackComponent:a,fallbackRender:i}=this.props;if(e.includes(l())){if(t)return t;if(o)return r.a.createElement(o,null);if(n)return n()}else{if(a)return r.a.createElement(a,null);if(i)return i()}return null}}Object(n.a)(s,"defaultProps",{allow:[]});var c=o(12);const d=({component:e,fallbackComponent:t,allow:o=[],render:n,fallbackRender:a})=>{function i(i,s){if(o.includes(l())){if(e)return r.a.createElement(e,Object(c.a)({},i,{ref:s}));if(n)return n(i)}else{if(t)return r.a.createElement(t,Object(c.a)({},i,{ref:s}));if(a)return a(i)}return null}return i.displayName=`RolesHOC(${e.displayName||e.name})`,r.a.forwardRef(i)}},function(e,t,o){"use strict";(function(e){var n=o(36),a=o(2),r=o(0),i=o.n(r),l=o(26),s=o(42),c=o(15),d=o(25),u=o(58),p=o(16),b=o(19),m=o(633),h=o(165);function g(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}const v=c.a.get("menuData"),f={duplicate:["ctrl+D","cmd+D","right_cmd+D"],copy:["ctrl+C","cmd+C","right_cmd+C"],paste:["ctrl+V","cmd+V","right_cmd+V"],pasteStyles:["ctrl+shift+V","shift+ctrl+V","cmd+shift+V","shift+cmd+V","right_cmd+shift+V","shift+right_cmd+V"],delete:["del","cmd+backspace","cmd+del","right_cmd+backspace","right_cmd+del"],horizontalAlign:["ctrl+right","ctrl+left","cmd+right","cmd+left","right_cmd+right","right_cmd+left"],verticalAlign:["ctrl+up","ctrl+down","cmd+up","cmd+down","right_cmd+up","right_cmd+down"]},y=i.a.createContext({});class O extends i.a.Component{constructor(...e){super(...e),Object(a.a)(this,"contextValue",{getParentContextMenuItems:this.getItems}),Object(a.a)(this,"getItems",()=>{let e=this.props,{children:t,shortcutsTypes:o=[],keyNames:r=[]}=e,i=Object(n.a)(e,["children","shortcutsTypes","keyNames"]);const{getParentContextMenuItems:l}=this.context;let s=function(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?g(Object(o),!0).forEach((function(t){Object(a.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):g(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}({onKeyUp:()=>{},onKeyDown:()=>{},keyNames:[...(c=o,c.reduce((e,t)=>(f[t]&&(e=[...e,...f[t]]),e),[])),...r]},i);var c;return s=l?[s,...l()]:[s],s})}handleFilterItems(t){if(t.length&&t[0].id.startsWith("key-helper")){const e=t.find(e=>"key-helper-toolbar-escape"===e.id);return e?[e]:t}const o=e.Brizy.activeEditorComponent;if(!o)return[];const n=o.getPath(),a=Object(d.b)().getState(),r=Object(b.B)(a),i=Object(b.f)(a),s=[...n],c=S(r);if(f.paste.includes(t[0].keyName)){const{value:e}=Object(p.g)(n,c,({type:e})=>"Wrapper"===e||"Cloneable"===e);if(e&&i.value){const{value:o}=Object(p.g)(i.path,S(i.value),({type:e})=>"Wrapper"===e||"Cloneable"===e);if(o&&("Cloneable"===o.type||"Cloneable"===e.type)&&o.value.items[0].type!==e.value.items[0].type){const o=t.find(({id:t})=>t===e.value._id);return o?[o]:[]}}}let u=[];for(let e=0;e<=n.length;e++){const e=Object(l.getIn)(c,s);if(e){const o=t.find(({id:t})=>t===e._id);if(o)return[o]}u.unshift(s.pop())}return[]}shouldShortCutHandle(e,{keyName:t}){const o=f.delete.includes(t),n=f.paste.includes(t),a=f.copy.includes(t),r=o||n||a,i=e.target.closest("[contenteditable=true]")||e.target.closest("input")||e.target.closest("textarea");return!(e.target.closest([".brz-ed-sidebar__right","#brz-toolbar-portal",".brz-ed-tooltip__content-portal",".brz-ed-popup-integrations"].join(","))||i&&r)}render(){const{children:e,id:t}=this.props,o=this.getItems();return i.a.createElement(y.Provider,{value:this.contextValue},e,i.a.createElement(m.a,{items:o,id:t,shouldKeyDownHandle:this.shouldShortCutHandle,shouldKeyUpHandle:this.shouldShortCutHandle,filterItems:this.handleFilterItems}))}}function S(e){return Object(p.m)(e=>{const{type:t,value:o}=e;if("Menu"===t){const{menuSelected:t,symbols:n={}}=o,a=t||v[0].id,r=v.find(e=>e.id===a)||{};return Object(s.b)(e,e=>{e.value.items=Object(h.d)(r.items||[],n)})}return e},e)}Object(a.a)(O,"contextType",y),t.a=Object(u.c)({allow:["admin"],component:O,fallbackComponent:({children:e})=>e||null})}).call(this,o(105))},function(e,t,o){"use strict";o.d(t,"a",(function(){return w}));var n=o(2),a=o(0),r=o.n(a),i=o(40),l=o.n(i),s=o(7),c=o.n(s),d=o(181),u=o(58),p=o(12);class b extends r.a.Component{render(){const{helperText:e,title:t,onChange:o,inactive:n,meta:a}=this.props;return r.a.createElement(d.Item,{onClick:o,disabled:n},r.a.createElement("span",{className:"react-contexify__item--title"},t),r.a.createElement("span",{className:"react-contexify__item--placeholder"},e(a)))}}Object(n.a)(b,"defaultProps",{title:"",helperText:()=>"",inactive:!1,onChange:()=>{}});var m=o(14);function h(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function g(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?h(Object(o),!0).forEach((function(t){Object(n.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):h(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}class v extends r.a.Component{render(){const{title:e,icon:t,items:o,meta:n}=this.props,a=g(g({},n),{},{depth:n.depth+1});return 0===n.depth&&0===n.index?r.a.createElement(r.a.Fragment,null,r.a.createElement(d.Item,{key:"title",className:"react-contexify--title"},t&&r.a.createElement(m.b,{icon:t})," ",e),r.a.createElement(P,{data:o,meta:g(g({},a),{},{isInSubMenu:!1})})):r.a.createElement(d.Submenu,{className:"react-contexify__item__submenu",label:e,hoverDelay:0,arrow:""},r.a.createElement(P,{data:o,meta:g(g({},a),{},{isInSubMenu:!0})}))}}Object(n.a)(v,"defaultProps",{title:"",icon:"",items:[]});var f={button:b,group:v};function y(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function O(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?y(Object(o),!0).forEach((function(t){Object(n.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):y(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function S(e,t){const o=[...e];for(var n=0;n<t.length;n++){let r=!1;for(var a=0;a<e.length;a++)t[n].id===e[a].id&&t[n].type===e[a].type&&t[n].items&&e[a].items&&(r=!0,o[a]=O(O(O({},t[n]),e[a]),{},{items:S(e[a].items,t[n].items)}));r||o.push(t[n])}return o}function x(e,t){return e.filter((e,o)=>"function"==typeof e.disabled?!e.disabled(e,O(O({},t),{},{isInSubMenu:!(0===t.depth&&0===o)})):!e.disabled)}function C(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function j(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?C(Object(o),!0).forEach((function(t){Object(n.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):C(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}class P extends r.a.Component{render(){const{data:e,meta:t}=this.props;return x(e,t).map((e,o)=>{const n=f[e.type],a=o,i=j(j({},t),{},{index:o});return r.a.createElement(n,Object(p.a)({},e,{key:a,meta:i}))})}}Object(n.a)(P,"defaultProps",{meta:{}});class B extends r.a.Component{constructor(...e){super(...e),Object(n.a)(this,"getItems",()=>this.props.items)}getChildContext(){return{getParentContextMenuExtendItems:this.getItems}}render(){const{children:e}=this.props;return e}}Object(n.a)(B,"childContextTypes",{getParentContextMenuExtendItems:c.a.func});var w=Object(u.c)({allow:["admin"],component:B,fallbackComponent:({children:e})=>e});class T extends a.Component{constructor(...e){super(...e),Object(n.a)(this,"handleContextMenu",e=>{e.nativeEvent=e,this.props.onContextMenu(e)})}componentDidMount(){l.a.findDOMNode(this).addEventListener("contextmenu",this.handleContextMenu)}componentWillUnmount(){l.a.findDOMNode(this).removeEventListener("contextmenu",this.handleContextMenu)}render(){return this.props.children}}class z extends a.Component{constructor(...e){super(...e),Object(n.a)(this,"getItems",()=>{let{componentId:e,items:t}=this.props;const{getParentContextMenuExtendItems:o,getParentContextMenuItems:n}=this.context;return t=[e,o?S(t,o()):t],t=n?[t,...n()]:[t],t}),Object(n.a)(this,"renderProvider",e=>r.a.createElement(T,e,this.props.children))}getChildContext(){return{getParentContextMenuItems:this.getItems}}squashItems(e){return e.reduce((e,[t,o])=>{var n,a;return e.componentIdMap[t]||(e.componentIdMap[t]=!0,e.items=(n=e.items,a=o,[...n,...a])),e},{componentIdMap:{},items:[]}).items}render(){const{id:e,children:t}=this.props,o=this.squashItems(this.getItems()),n={depth:0};return 0===x(o,n).length?t:r.a.createElement(r.a.Fragment,null,r.a.createElement(d.ContextMenuProvider,{id:e,render:this.renderProvider},t),l.a.createPortal(r.a.createElement(d.ContextMenu,{id:e},r.a.createElement(P,{data:o,meta:n})),document.body))}}Object(n.a)(z,"defaultProps",{id:"",items:[]}),Object(n.a)(z,"contextTypes",{getParentContextMenuExtendItems:c.a.func,getParentContextMenuItems:c.a.func}),Object(n.a)(z,"childContextTypes",{getParentContextMenuItems:c.a.func});t.b=Object(u.c)({allow:["admin"],component:z,fallbackComponent:({children:e})=>e})},function(e,t,o){"use strict";o.d(t,"a",(function(){return a})),o.d(t,"e",(function(){return r})),o.d(t,"f",(function(){return i})),o.d(t,"d",(function(){return l})),o.d(t,"c",(function(){return s})),o.d(t,"b",(function(){return c})),o.d(t,"g",(function(){return d}));var n=o(8);const a=(e,t,o=[])=>{if(t(e))return{obj:e,path:o};for(let n in e)if(e.hasOwnProperty(n)&&"object"==typeof e[n]&&null!==e[n]){const{obj:r,path:i}=a(e[n],t,[...o,n]);if(r)return{obj:r,path:i}}return{obj:null,path:null}},r=(e,t,...o)=>{for(let n in e)e.hasOwnProperty(n)&&(e[n]&&"object"==typeof e[n]&&r(e[n],t,...o),t(n,e[n],e,...o))},i=(e,t)=>{for(let o in e)e.hasOwnProperty(o)&&e[o]&&"object"==typeof e[o]&&i(e[o],t);t(e)};function l(e){return e.reduce((e,[t,o])=>(e[t]=o,e),{})}const s=(e,t)=>Array.isArray(t)?t.map(e):t&&"object"==typeof t?n.default.mapObject(t,e):t,c=(e,t)=>!(!t||!e.every(e=>t.hasOwnProperty(e))),d=e=>null!==e&&"object"==typeof e?e:{}},function(e,t,o){"use strict";o.d(t,"a",(function(){return i})),o.d(t,"b",(function(){return h})),o.d(t,"e",(function(){return C})),o.d(t,"i",(function(){return j})),o.d(t,"f",(function(){return f.b})),o.d(t,"c",(function(){return f.a})),o.d(t,"k",(function(){return P.a})),o.d(t,"g",(function(){return B.g})),o.d(t,"j",(function(){return B.h})),o.d(t,"d",(function(){return B.f})),o.d(t,"h",(function(){return w}));var n=o(15),a=o(55);function r(){return Object(a.a)("editor/img/block-placeholder.jpg")}function i(e){if(!e)return r();const t=n.a.get("urls").blockThumbnails;return t?`${t}/${e.id}.jpg`:Object(a.a)(`thumbs/${e.id}.jpg`)}var l=o(2),s=o(8),c=o(42),d=o(25),u=o(110),p=o(19);function b(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function m(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?b(Object(o),!0).forEach((function(t){Object(l.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):b(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const h=(e,t={})=>{const o=function(e,t){"GlobalBlock"===e.type&&(e=Object(p.o)(Object(d.b)().getState())[e.value._id].data);if(!0===t.searchScreenshotInStoreFirst){const t=Object(p.H)(Object(d.b)().getState());t[e.value._id]&&(e=Object(c.a)(e,o=>{o.meta=m(m({},o.meta),t[e.value._id])}))}const{_thumbnailSrc:o,_thumbnailWidth:n,_thumbnailHeight:a}=g(e);if(o&&n&&a){return{url:s.default.compose(v,g)(e),width:n,height:a}}return null}(e,t);let i;if(o)i=o;else{const{blocksThumbnailSizes:t}=Object(d.b)().getState(),o=t[e.blockId];if(o){const t=n.a.get("urls").blockThumbnails;i={url:t?`${t}/${e.blockId}.jpg`:Object(a.a)(`thumbs/${e.blockId}.jpg`),width:o[0],height:o[1]}}else i={url:r(),width:500,height:200}}return i},g=e=>e.meta||e.value||{};function v({_thumbnailSrc:e,_thumbnailTime:t}){var o;const a=n.a.get("urls").site,r=n.a.get("wp").page,i=null!==(o=n.a.get("prefix"))&&void 0!==o?o:"brizy",l=Object(u.b)({[i+"_post"]:r,[i+"_block_screenshot"]:e,t:t||Date.now()});return Object(u.c)(a)?`${a}&${l}`:`${a}?${l}`}var f=o(150),y=o(16);function O(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function S(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?O(Object(o),!0).forEach((function(t){Object(l.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):O(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const x=(e,t,o)=>e.filter(e=>{var n,a;return(null===(n=t[e])||void 0===n||null===(a=n.position)||void 0===a?void 0:a.align)===o&&"publish"===t[e].status}).sort((e,n)=>t[e].position[o]-t[n].position[o]),C=(e,t,o)=>{if(y.b||y.d)return e;const n=Object(f.b)(e,t,o),a=x(n,t,"top"),r=x(n,t,"bottom");return[...a,...e,...r]};function j(e,t){var o;const n=((null===(o=e.data)||void 0===o?void 0:o.items)||[]).reduce((e,t)=>("GlobalBlock"!==t.type&&(e[t.value._id]={data:t}),e),{}),a=Object.keys(n),r=C(a,t,e),i=S(S({},n),t);return r.map(e=>i[e].data)}var P=o(269),B=o(96);const w=(e,t)=>{const o=n.a.get("urls").assetsExternal;switch(e){case"popups":return`${o}/popups/resolves/${t}.json`;case"stories":return`${o}/stories/resolves/${t}.json`;case"templates":return`${o}/templates/resolves/${t}.json`;default:return`${o}/kits/resolves/${t}.json`}}},function(e,t,o){"use strict";o.d(t,"c",(function(){return r})),o.d(t,"b",(function(){return i})),o.d(t,"d",(function(){return l})),o.d(t,"a",(function(){return s}));var n,a=o(22);!function(e){e.positive="positive"}(n||(n={}));const r=e=>e>=0,i=Object(a.b)(r),l=e=>e,s=0},,function(e,t,o){"use strict";o.d(t,"a",(function(){return r}));var n=o(498),a=o.n(n);const r=(e=36)=>a()("abcdefghijklmnopqrstuvwxyz",e)},function(e,t,o){"use strict";o.d(t,"a",(function(){return g}));var n=o(2),a=o(0),r=o.n(a),i=o(8),l=o(4),s=o.n(l),c=o(1);const d=13,u=66,p=73,b=85,m=89,h=90;class g extends a.Component{constructor(...e){super(...e),Object(n.a)(this,"contentRef",r.a.createRef()),Object(n.a)(this,"unmounted",!1),Object(n.a)(this,"lastNotifiedValue",void 0),Object(n.a)(this,"handleClick",e=>{e.preventDefault();const t=this.contentRef.current;null==t||t.classList.add("brz-ed-dd-cancel")}),Object(n.a)(this,"handleKeyDown",e=>{const t=e.which,o=e.metaKey||e.ctrlKey;t!==d&&(!o||t!==u&&t!==p&&t!==b)&&(!o||t!==h&&t!==m)||e.preventDefault()}),Object(n.a)(this,"handleInput",e=>{this.notifyChange(e.currentTarget.textContent||"")}),Object(n.a)(this,"notifyChange",i.default.debounce(e=>{this.unmounted||(this.lastNotifiedValue=e,this.props.onChange(e))},1e3)),Object(n.a)(this,"handleBlur",()=>{var e;null===(e=this.contentRef.current)||void 0===e||e.classList.remove("brz-ed-dd-cancel")}),Object(n.a)(this,"handlePaste",e=>{e.preventDefault();const t=e.clipboardData.getData("text/plain");document.execCommand("insertHTML",!1,t)})}shouldComponentUpdate(e){return void 0!==this.lastNotifiedValue&&this.lastNotifiedValue!==e.value||this.props.tagName!==e.tagName||this.props.className!==e.className}componentDidUpdate(){this.lastNotifiedValue=this.props.value;const e=this.contentRef.current;var t;e&&e.textContent!==this.lastNotifiedValue&&(e.textContent=null!==(t=this.lastNotifiedValue)&&void 0!==t?t:"")}componentWillUnmount(){this.unmounted=!0}render(){const{tagName:e,value:t,className:o}=this.props,n=s()(o,"brz-"+e,"brz-text__editor");return r.a.createElement(e,{ref:this.contentRef,className:n,contentEditable:!0,dangerouslySetInnerHTML:{__html:t},onClick:this.handleClick,onKeyDown:this.handleKeyDown,onPaste:this.handlePaste,onInput:this.handleInput,onBlur:this.handleBlur})}}Object(n.a)(g,"defaultProps",{value:Object(c.a)("Editable Text"),tagName:"span",className:""})},,,function(e,t,o){"use strict";o.d(t,"f",(function(){return n})),o.d(t,"c",(function(){return a})),o.d(t,"d",(function(){return r})),o.d(t,"e",(function(){return i})),o.d(t,"a",(function(){return l})),o.d(t,"k",(function(){return s})),o.d(t,"h",(function(){return c})),o.d(t,"i",(function(){return d})),o.d(t,"g",(function(){return u})),o.d(t,"j",(function(){return p})),o.d(t,"l",(function(){return b})),o.d(t,"b",(function(){return m}));const n={start:["mousedown"],move:["mousemove"],end:["mouseup"]};function a(e,t){let o=e;for(;o;){if(t(o))return o;o=o.parentElement}}function r(e){let t=e,o=0;for(;t=t.parentElement;)o++;return o}function i(e){const t=e.parentElement;return t?Array.from(t.children).indexOf(e):-1}function l(e,...t){t.filter(String).forEach(t=>e.classList.add(t))}function s(e,...t){t.forEach(t=>e.classList.remove(t))}function c(e,t,o,n){const a=o-e,r=n-t;return Math.sqrt(a*a+r*r)}function d(e,t,o,n){const a=t<n,r=e<o;return{isAbove:a,isBelow:!a,isLeft:r,isRight:!r}}function u(e,t,o){return e>=o.left&&e<=o.right&&t>=o.top&&t<=o.bottom}function p(e){return{x:e.left+.5*(e.right-e.left),y:e.top+.5*(e.bottom-e.top)}}function b(e,t,o="all"){const n="all"===o||"top-bottom"===o,a="all"===o||"left-right"===o;return{top:n?e.top+t:e.top,bottom:n?e.bottom-t:e.bottom,left:a?e.left+t:e.left,right:a?e.right-t:e.right}}function m(e,t,o){return e<t?t:e>o?o:e}},function(e,t,o){"use strict";var n={};o.r(n),o.d(n,"facebook",(function(){return Mt}));var a={};o.r(a),o.d(a,"email",(function(){return Ma})),o.d(a,"wordpress",(function(){return Wa})),o.d(a,"mailchimp",(function(){return Aa})),o.d(a,"sendinblue",(function(){return Da})),o.d(a,"zapier",(function(){return Ga})),o.d(a,"campaignmonitor",(function(){return Ka})),o.d(a,"convertkit",(function(){return qa})),o.d(a,"activecampaign",(function(){return Za})),o.d(a,"getresponse",(function(){return Qa})),o.d(a,"mailjet",(function(){return tr})),o.d(a,"egoi",(function(){return nr})),o.d(a,"hubspot",(function(){return rr})),o.d(a,"mailerlite",(function(){return lr})),o.d(a,"drip",(function(){return cr})),o.d(a,"smtp",(function(){return ur})),o.d(a,"gmail_smtp",(function(){return br})),o.d(a,"mailgun",(function(){return hr})),o.d(a,"madmimi",(function(){return vr})),o.d(a,"constantcontact",(function(){return yr})),o.d(a,"aweber",(function(){return Sr})),o.d(a,"salesforce",(function(){return Cr})),o.d(a,"sendgrid",(function(){return Pr})),o.d(a,"recaptcha",(function(){return wr}));var r={};o.r(r),o.d(r,"google",(function(){return ri})),o.d(r,"uploader",(function(){return Si}));var i=o(2),l=o(0),s=o.n(l),c=o(42),d=o(274);const u={};class p extends d.EventEmitter{addChangeListener(e,t){this.on(e,t)}removeChangeListener(e,t){this.removeListener(e,t)}get(e){return u[e]}set(e,t){u[e]=t,this.emit(e,t)}}const b=new p;b.setMaxListeners(1/0);var m=b,h=(o(80),o(4)),g=o.n(h),v=o(8),f=o(15),y=o(118),O=o(48),S=o(39),x=o(36),C=o(12),j=o(634),P=o(64),B=o.n(P);function w(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function T(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?w(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):w(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const z=({onScroll:e,forwardedRef:t,style:o,children:n})=>{const a=Object(l.useCallback)(e=>{t(e?e.view:null)},[]);return s.a.createElement(B.a,{ref:a,style:T(T({},o),{},{overflow:"hidden"}),onScroll:e},n)},E=Object(l.forwardRef)((e,t)=>s.a.createElement(z,Object(C.a)({},e,{forwardedRef:t})));E.displayName="CustomScrollbarsVirtualList";const k=e=>{const t=Object(l.forwardRef)((t,o)=>{let{style:n}=t,a=Object(x.a)(t,["style"]);return s.a.createElement("div",Object(C.a)({ref:o,style:T(T({},n),{},{paddingLeft:e,paddingTop:e,marginBottom:e})},a))});return t.displayName="InnerElement",t};var H=e=>{const{height:t,width:o,columnCount:n,columnWidth:a,rowCount:r,rowHeight:i,initialScrollTop:l,renderItem:c,style:d={},gutter:u=0}=e;return s.a.createElement(j.a,{height:t,width:o,columnCount:n,columnWidth:a+u,rowCount:r,rowHeight:i+u,style:d,initialScrollTop:l,outerElementType:E,innerElementType:k(u)},c)},F=o(14);function _(e,t){switch(t.type){case"wait":if("delay"===e.status)return{status:"waiting"};break;case"resolve":if("delay"===e.status||"waiting"===e.status)return{status:"resolved",value:t.value};break;case"reject":if("delay"===e.status||"waiting"===e.status)return{status:"rejected",reason:t.reason}}return e}function R({getPromise:e,renderResolved:t,renderRejected:o,renderWaiting:n,delayMs:a=0}){const r=a&&a>0,[i,s]=Object(l.useReducer)(_,{status:r?"delay":"waiting"});return Object(l.useEffect)(()=>{let t,o=!1;return r&&(t=window.setTimeout(()=>{o||s({type:"wait"})},a)),e().then(e=>{o||(clearTimeout(t),s({type:"resolve",value:e}))}).catch(e=>{o||(clearTimeout(t),s({type:"reject",reason:e}))}),()=>{o=!0}},[]),"waiting"===i.status&&n?n():"resolved"===i.status?t(i.value):"rejected"===i.status&&o?o(i.reason):null}var L=o(520);const M=[{id:1,title:"Animals/Nature"},{id:2,title:"Arrows"},{id:3,title:"Business/Finance"},{id:4,title:"Clothes/Accessories"},{id:5,title:"Design/Development"},{id:6,title:"Emoticons"},{id:7,title:"Energy/Environment"},{id:8,title:"Files/Folders"},{id:10,title:"Food"},{id:11,title:"Home/Buildings"},{id:12,title:"Healthcare/Medical"},{id:13,title:"Holidays"},{id:14,title:"Loaders"},{id:15,title:"Maps/Location"},{id:16,title:"Multimedia"},{id:18,title:"School/Education"},{id:19,title:"Shopping"},{id:20,title:"Social Media"},{id:21,title:"Sport"},{id:22,title:"Technology"},{id:23,title:"Text Editing"},{id:24,title:"Touch Gestures"},{id:25,title:"Transportation"},{id:26,title:"Travel"},{id:27,title:"User Interface"},{id:28,title:"Users"},{id:29,title:"Weather"}],I=[{title:"Accessibility",id:1},{title:"Alert",id:2},{title:"Animals",id:3},{title:"Arrows",id:4},{title:"Audio & Video",id:5},{title:"Automotive",id:6},{title:"Autumn",id:7},{title:"Beverage",id:8},{title:"Buildings",id:9},{title:"Business",id:10},{title:"Camping",id:11},{title:"Charity",id:12},{title:"Chat",id:13},{title:"Chess",id:14},{title:"Childhood",id:15},{title:"Clothing",id:16},{title:"Code",id:17},{title:"Communication",id:18},{title:"Computers",id:19},{title:"Construction",id:20},{title:"Currency",id:21},{title:"Date & Time",id:22},{title:"Design",id:23},{title:"Editors",id:24},{title:"Education",id:25},{title:"Emoji",id:26},{title:"Energy",id:27},{title:"Files",id:28},{title:"Finance",id:29},{title:"Fitness",id:30},{title:"Food",id:31},{title:"Fruits & Vegetables",id:32},{title:"Games",id:33},{title:"Tabletop Gaming",id:34},{title:"Genders",id:35},{title:"Halloween",id:36},{title:"Hands",id:37},{title:"Health",id:38},{title:"Holiday",id:39},{title:"Hotel",id:40},{title:"Household",id:41},{title:"Images",id:42},{title:"Interfaces",id:43},{title:"Logistics",id:44},{title:"Maps",id:45},{title:"Maritime",id:46},{title:"Marketing",id:47},{title:"Mathematics",id:48},{title:"Medical",id:49},{title:"Moving",id:50},{title:"Music",id:51},{title:"Objects",id:52},{title:"Payments & Shopping",id:53},{title:"Pharmacy",id:54},{title:"Political",id:55},{title:"Religion",id:56},{title:"Science",id:57},{title:"Science Fiction",id:58},{title:"Security",id:59},{title:"Shapes",id:60},{title:"Shopping",id:61},{title:"Social",id:62},{title:"Spinners",id:63},{title:"Sports",id:64},{title:"Spring",id:65},{title:"Status",id:66},{title:"Summer",id:67},{title:"Toggle",id:68},{title:"Travel",id:69},{title:"Users & People",id:70},{title:"Vehicles",id:71},{title:"Weather",id:72},{title:"Winter",id:73},{title:"Writing",id:74}],W=[{id:2,name:"fa",title:"FA",icon:"nc-full-cube"}],N=[{id:0,name:"outline",title:"Outline",icon:"nc-cube"},{id:1,name:"glyph",title:"Glyph",icon:"nc-full-cube"}];var A=o(35),V=o(86),D=o(33),$=o(29);const G=Object(D.d)(e=>e>=0&&e<=2?e:void 0,Math.round,$.b);var U=o(24);const K=e=>{if(null===e||"object"!=typeof e)return;const t=U.d(e.title),o=U.d(e.name),n=G(e.type);if(void 0===t||void 0===o||void 0===n)return;const a=U.d(e.family);return{title:t,name:o,type:n,cat:Object(V.i)(e.cat).map($.b).filter(Boolean),family:a}},Y=e=>Object(V.i)(null==e?void 0:e.default).map(K).filter(Boolean),q=e=>{switch(e){case 0:return o.e(5).then(o.t.bind(null,881,3)).then(Y);case 1:return o.e(4).then(o.t.bind(null,882,3)).then(Y);case 2:return o.e(3).then(o.t.bind(null,883,3)).then(Y)}},X=()=>A.o?A.h?[...N,...W]:W:N,Z=e=>{var t;switch(e.type){case 0:case 1:{const t=X()[e.type].name;return`nc-${t} nc-${t}-${e.name}`}case 2:return`${null!==(t=e.family)&&void 0!==t?t:"fa"} fa-${e.name}`}},J=e=>{switch(e){case 0:case 1:return M;case 2:return I}};function Q(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function ee(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?Q(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):Q(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const te=X(),oe=te.reduce((e,{id:t,name:o})=>(e[t]=o,e),{});class ne extends l.Component{constructor(...e){var t;super(...e),Object(i.a)(this,"state",{typeId:(null!==(t=te.find(e=>e.name===this.props.type))&&void 0!==t?t:te[0]).id,categoryId:"*",search:""}),Object(i.a)(this,"containerRef",s.a.createRef()),Object(i.a)(this,"onIconClick",e=>{this.props.onClose(),setTimeout(()=>{this.props.onChange(e)},0)})}componentDidUpdate(){if(this.containerRef.current){const{templateFonts:e}=f.a.get("urls");Object(L.a)(this.containerRef.current,e)}}renderTabs(){const e=te.map(e=>s.a.createElement("div",{key:e.id,className:g()("brz-ed-popup-tab-item",{active:e.id===this.state.typeId}),onClick:()=>this.setState({typeId:e.id})},s.a.createElement("div",{className:"brz-ed-popup-tab-icon"},s.a.createElement(F.b,{icon:e.icon})),s.a.createElement("div",{className:"brz-ed-popup-tab-name"},e.title)));return s.a.createElement("div",{className:"brz-ed-popup-header"},s.a.createElement("div",{className:"brz-ed-popup-header__tabs"},e),s.a.createElement("div",{className:"brz-ed-popup-btn-close",onClick:this.props.onClose}))}renderFilters(){const{categoryId:e,search:t,typeId:o}=this.state,n=[{id:"*",name:"all",title:"All Categories"},...J(o)];return s.a.createElement(s.a.Fragment,null,s.a.createElement("div",{className:"brz-ed-popup__categories"},s.a.createElement(O.a,{className:"brz-ed-popup__select brz-ed-popup__select--block-categories brz-ed-popup-control__select--light",defaultValue:e,maxItems:10,itemHeight:30,onChange:e=>this.setState({categoryId:e})},n.map(({id:e,title:t})=>s.a.createElement(S.a,{key:e,value:e},t)))),s.a.createElement("div",{className:"brz-ed-popup__search"},s.a.createElement("input",{type:"text",className:"brz-input brz-ed-popup__input",placeholder:"Enter Search Keyword",onChange:e=>this.setState({search:e.target.value}),value:t}),s.a.createElement("div",{className:g()("brz-ed-popup__search--icon",{active:t.length>0})},s.a.createElement(F.b,{icon:"nc-search"}))))}filterIcons(e){const{typeId:t,categoryId:o,search:n}=this.state,a=new RegExp(n.replace(/[.*+?^${}()|[\]\\]/g,""),"i");return e.filter(({type:e,cat:r,title:i})=>t===e&&("*"===o||r.includes(o))&&(""===n||a.test(i)))}render(){const{name:e,type:t,opened:o,onClose:n}=this.props;return s.a.createElement(y.a,{opened:o,onClose:n},s.a.createElement("div",{ref:this.containerRef,className:"brz-ed-popup-wrapper"},this.renderTabs(),s.a.createElement("div",{className:"brz-ed-popup-content brz-ed-popup-pane brz-ed-popup-icons"},s.a.createElement("div",{className:"brz-ed-popup-body"},s.a.createElement("div",{className:"brz-ed-popup__head--search brz-d-xs-flex brz-align-items-center brz-justify-content-xs-center"},this.renderFilters()),s.a.createElement("div",{className:"brz brz-ed-popup-icons__grid"},s.a.createElement(R,{getPromise:()=>{return e=X().map(e=>e.id),Promise.all(e.map(q)).then(V.a);var e},renderResolved:o=>{const n=this.filterIcons(o);return s.a.createElement(ae,{icons:n,value:{name:e,type:t},onChange:this.onIconClick})},renderWaiting:()=>s.a.createElement(re,null),delayMs:1e3}))))))}}function ae({icons:e,value:t,onChange:o}){const[n,a]=Object(l.useState)(null),r=Object(l.useRef)(null),i=e.findIndex(e=>e.name===t.name),c=Math.floor(e.length/8)+1,d=Math.floor(i/8),u=0===d?0:d-1;if(Object(l.useEffect)(()=>{if(r.current){const{width:e,height:t}=r.current.getBoundingClientRect();a({width:e,height:t})}},[]),!n)return s.a.createElement("div",{style:{height:"100%"},ref:r},s.a.createElement(re,null));const{width:p,height:b}=n,m=74*u;return s.a.createElement(H,{width:p,height:b,columnCount:8,columnWidth:68,rowCount:c,rowHeight:68,gutter:6,initialScrollTop:m,renderItem:({rowIndex:n,columnIndex:a,style:r})=>{const i=e[8*n+a];if(!i)return null;const{type:l,name:c}={type:oe[i.type],name:i.name},d=g()("brz-ed-popup-icons__grid__item",{active:l===t.type&&c===t.name});return s.a.createElement("div",{style:ee(ee({},r),{},{left:r.left+6,top:r.top+6,width:r.width-6,height:r.height-6}),className:d,onClick:()=>{o({type:l,name:c})}},s.a.createElement("i",{className:g()(["brz-font-icon",Z(i)])}))}})}function re(){return s.a.createElement("div",{style:{height:"100%",display:"flex",justifyContent:"center",alignItems:"center",color:"#828b92",fontSize:"35px"}},s.a.createElement(F.b,{icon:"nc-circle-02",className:"brz-ed-animated--spin"}))}Object(i.a)(ne,"defaultProps",{name:"nc-star",type:"outline",onChange:v.default.noop});var ie=o(1);function le(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function se(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?le(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):le(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}class ce extends l.Component{constructor(e){super(e),Object(i.a)(this,"handleLoading",e=>{this.setState({loading:e})});const{currentTab:t,tabs:o}=this.props;this.state={loading:!0,currentTab:t,tabs:o}}handleTabChange(e){this.state.loading&&this.props.blockTabsWhenLoading||this.setState({currentTab:e})}handleTabUpdate(e,t){const{tabs:o}=this.state,n=o.map(o=>o.id===e?se(se({},o),t):o);this.setState({tabs:n})}renderHeader(){const{currentTab:e,tabs:t}=this.state,{onClose:o}=this.props,n=t.map(t=>{const{id:o,icon:n,img:a,title:r}=t,i=g()("brz-ed-popup-tab-item",{active:o===e});return s.a.createElement("div",{key:o,className:i,onClick:()=>this.handleTabChange(o)},n&&s.a.createElement("div",{className:"brz-ed-popup-tab-icon"},s.a.createElement(F.b,{icon:n})),a?s.a.createElement("div",{className:"brz-ed-popup-tab-image"},s.a.createElement("img",{className:"brz-img",src:a,alt:r})):s.a.createElement("div",{className:"brz-ed-popup-tab-name"},r))});return s.a.createElement("div",{className:"brz-ed-popup-header"},s.a.createElement("div",{className:"brz-ed-popup-header__tabs"},n),s.a.createElement("div",{className:"brz-ed-popup-btn-close",onClick:o}))}renderCurrentTab(){const{tabs:e,loading:t,currentTab:o}=this.state;return e.reduce((e,{id:n,component:a})=>n===o?[s.a.createElement(a,Object(C.a)({},this.props,{key:n,loading:t,onLoading:this.handleLoading,onTabUpdate:e=>{this.handleTabUpdate(n,e)}}))]:e,[])}renderTabs(){const{tabs:e,loading:t,currentTab:o}=this.state;return e.map(({id:e,component:n})=>{const a=g()("brz-ed-popup-integration-"+e,{"brz-hidden":e!==o});return s.a.createElement(n,Object(C.a)({},this.props,{key:e,loading:t,className:a,onTabUpdate:t=>{this.handleTabUpdate(e,t)}}))})}render(){const{opened:e,onClose:t}=this.props;return s.a.createElement(y.a,{className:"brz-ed-popup-integrations",opened:e,onClose:t},s.a.createElement("div",{className:"brz-ed-popup-wrapper"},this.renderHeader(),s.a.createElement("div",{className:"brz-ed-popup-content"},this.state.loading?this.renderCurrentTab():this.renderTabs())))}}Object(i.a)(ce,"defaultProps",{value:{},opened:!1,tabs:[],currentTab:"",blockTabsWhenLoading:!0,onClose:v.noop});var de=ce,ue=o(55),pe=o(21);const be=e=>{const{message:t,type:o="success",className:n}=e,a=g()("brz-ed-alert",n,{["brz-ed-alert-"+o]:o});return s.a.createElement("div",{className:a},s.a.createElement("span",{className:"brz-span"},t))},me=s.a.createContext({app:{},connectedApps:[],stages:[],stage:"",oldStage:"",onChange:(e,t)=>{},onChangeNext:v.noop,onChangePrev:v.noop,onConnectApp:v.noop,onDisconnectApp:v.noop,onChangeProgress:v.noop,onError:v.noop}),he=({className:e})=>s.a.createElement("div",{className:g()("brz-ed-popup-content--loading",e)},s.a.createElement(F.b,{icon:"nc-circle-02",className:"brz-ed-animated--spin"}));class ge extends l.Component{render(){const{stage:e,apps:t,children:o,onClose:n}=this.props;return s.a.Children.map(o,o=>e===o.props.num&&s.a.cloneElement(o,{apps:t,onClose:n}))}}Object(i.a)(ge,"defaultProps",{stage:"",apps:[]});var ve=e=>{const{stage:t,children:o}=e;return s.a.createElement("div",{className:"brz-ed-popup-integrations__progress"},s.a.Children.map(o,e=>e&&s.a.cloneElement(e,{stage:t})))};class fe extends l.Component{render(){const{stage:e,apps:t,children:o}=this.props;return s.a.Children.map(o,o=>o&&s.a.cloneElement(o,{stage:e,apps:t}))}}Object(i.a)(fe,"defaultProps",{stage:"",apps:[]}),Object(i.a)(fe,"Steps",ge),Object(i.a)(fe,"Step",e=>{let{render:t}=e;return t(Object(x.a)(e,["render"]))}),Object(i.a)(fe,"Progress",ve),Object(i.a)(fe,"Stage",({stage:e,num:t,text:o,img:n})=>{const a=g()("brz-ed-popup-integrations__progress-stage",{"brz-ed-popup-integrations__progress-stage--active":t===e});return s.a.createElement("div",{className:a},s.a.createElement("span",{className:"brz-span"},n&&s.a.createElement("img",{className:"brz-img",src:n,alt:"Logo"}),o))});var ye=fe;class Oe extends l.Component{render(){const{apps:e,render:t}=this.props;return s.a.createElement("div",{className:"brz-ed-popup-integrations__apps brz-d-xs-flex brz-flex-xs-wrap"},e.map((e,o)=>t(e,o)))}}Object(i.a)(Oe,"defaultProps",{apps:[],render:v.default.noop});var Se=o(72),xe=o(201);const{upgradeToPro:Ce}=f.a.get("urls");class je extends l.Component{constructor(...e){super(...e),Object(i.a)(this,"state",{tooltipOpen:!1}),Object(i.a)(this,"iconRef",s.a.createRef()),Object(i.a)(this,"handleTooltipOpen",()=>{this.setState({tooltipOpen:!0})}),Object(i.a)(this,"handleTooltipClose",()=>{this.setState({tooltipOpen:!1})})}renderPro(){const{img:e,title:t}=this.props,o=g()("brz-ed-popup-integrations__app-logo",this.state.tooltipOpen&&"brz-ed-popup-integrations__app-logo--open");return s.a.createElement("div",{className:"brz-ed-popup-integrations__app brz-ed-popup-integrations__app--pro"},s.a.createElement(Se.b,{overlayClassName:"brz-ed-tooltip--delay-2",size:"small",offset:"5",openOnClick:!1,nodeRef:this.iconRef,overlay:s.a.createElement(xe.a,{text:Object(ie.a)("Upgrade to PRO to use this integration"),url:Ce}),onOpen:this.handleTooltipOpen,onClose:this.handleTooltipClose},s.a.createElement("div",{className:o},s.a.createElement("img",{className:"brz-img",src:e,alt:t}),s.a.createElement("span",{ref:this.iconRef,className:"brz-span brz-ed-popup-integrations__app-icon brz-ed-popup-integrations__app-icon--pro"},s.a.createElement(F.b,{icon:"nc-lock"})),s.a.createElement("p",{className:"brz-p brz-ed-badge brz-ed-badge--pro"},"pro")),s.a.createElement("div",{className:"brz-ed-popup-integrations__app-title"},t)))}renderFree(){const{img:e,title:t,loading:o,active:n,onClick:a}=this.props,r=g()("brz-ed-popup-integrations__app",n&&"brz-ed-popup-integrations__app--connected",o&&"brz-ed-popup-integrations__app--loading");return s.a.createElement("div",{className:r,onClick:a},s.a.createElement("div",{className:"brz-ed-popup-integrations__app-logo"},s.a.createElement("img",{className:"brz-img",src:e,alt:t}),n&&!o&&s.a.createElement("span",{className:"brz-span brz-ed-popup-integrations__app-icon"},s.a.createElement(F.b,{icon:"nc-check-small"})),o&&s.a.createElement("span",{className:"brz-span brz-ed-popup-integrations__app-icon"},s.a.createElement(F.b,{icon:"nc-circle-02",className:"brz-ed-animated--spin"}))),s.a.createElement("div",{className:"brz-ed-popup-integrations__app-title"},t))}render(){return!A.h&&this.props.pro?this.renderPro():this.renderFree()}}Object(i.a)(je,"defaultProps",{img:"",pro:!1,shortTitle:"",loading:!1,active:!1,onClick:v.default.noop});const Pe=f.a.get("urls");class Be extends l.Component{constructor(...e){super(...e),Object(i.a)(this,"state",{loadingApp:"",onConnectApp:v.default.noop})}componentDidUpdate(e){this.props.error!==e.error&&this.state.loadingApp&&this.setState({loadingApp:""})}handleChangeApp(e){const{onConnectApp:t}=this.context;t(e),this.setState({loadingApp:e.id})}renderError(){return s.a.createElement("div",{className:"brz-ed-alert brz-ed-alert-error"},s.a.createElement("span",{className:"brz-span"},this.props.error))}renderProException(){return s.a.createElement("div",{className:"brz-ed-alert brz-ed-alert-pro brz-mb-lg-0"},s.a.createElement("span",{className:"brz-span"},Object(ie.a)("Some integrations are available only in PRO")),s.a.createElement("a",{className:"brz-ed-btn brz-ed-btn-width-2 brz-ed-btn-sm brz-ed-btn-icon brz-ed-btn-icon--left brz-ed-btn-rounded brz-ed-btn-pro",rel:"noopener noreferrer",href:Pe.upgradeToPro,target:"_blank"},s.a.createElement(F.b,{icon:"nc-lock"}),Object(ie.a)("Get a PRO plan")))}render(){const{apps:e,height:t,proExceptions:o,error:n}=this.props,{connectedApps:a}=this.context,{loadingApp:r}=this.state;return s.a.createElement(B.a,{style:{height:t}},n&&this.renderError(),o&&this.renderProException(),s.a.createElement(Oe,{apps:e,render:e=>s.a.createElement(je,Object(C.a)({},e,{key:e.id,loading:r===e.id,active:a.includes(e.id),onClick:()=>{this.handleChangeApp(e)}}))}))}}Object(i.a)(Be,"contextType",me),Object(i.a)(Be,"defaultProps",{apps:[],height:"100%",proExceptions:!1,error:null});var we=Be;class Te extends l.Component{constructor(...e){super(...e),Object(i.a)(this,"state",{loading:!0,showProgress:!0,connectedApp:"",connectedApps:[],stage:this.props.stage,stages:this.props.stages,oldStage:"",data:{},error:null,appError:null}),Object(i.a)(this,"appsData",[]),Object(i.a)(this,"appsComponent",{}),Object(i.a)(this,"proExceptions",!1),Object(i.a)(this,"handleConnectApp",async e=>{const{id:t,stages:o}=e;this.setState(Object(c.a)(n=>{n.stages=o,n.connectedApp=t,n.data[t]=e}),()=>{this.handleNext()})}),Object(i.a)(this,"handleDisconnectApp",e=>{const{stage:t,stages:o}=this.props;this.setState(Object(c.a)(n=>{const a=n.connectedApps;n.stage=t,n.stages=o,n.connectedApps=a.filter(t=>t!==e)}))}),Object(i.a)(this,"handleProgress",e=>{this.setState(e)}),Object(i.a)(this,"handleChange",(e,t)=>{this.setState(Object(c.a)(o=>{o.data[e].data=t}))}),Object(i.a)(this,"handleNext",async e=>{const{stages:t,stage:o}=this.state,n=t.findIndex(({type:e})=>e===o)+1,a=e||t[n].type,r=this.getComponent(a);let i=!1;if(r&&"function"==typeof r.onBeforeLoad){const e=t[n+1].type,o={onChangeNext:t=>{const o=t||e;i=!0,this.handleNext(o)}};await r.onBeforeLoad(this.getContextValue(),o)}i||this.setState({stage:a,oldStage:o})}),Object(i.a)(this,"handlePrev",e=>{this.setState(Object(c.a)(t=>{if("appList"===e){const{stage:e,stages:o}=this.props;t.stage=e,t.stages=o,t.connectedApp=""}else{var o;const{stage:n,stages:a}=t,r=a.findIndex(({type:e})=>e===n)-1;t.stage=e||(null===(o=a[r])||void 0===o?void 0:o.type)||"",t.oldStage=n,t.connectedApp=-1===r?"":t.connectedApp}}))}),Object(i.a)(this,"handleError",e=>{this.setState({error:e})})}getContextValue(){const{connectedApp:e,connectedApps:t,data:o,stages:n,stage:a,oldStage:r}=this.state;return{app:o[e]||{},connectedApps:t,stages:n,stage:a,oldStage:r,onChange:this.handleChange,onChangeNext:this.handleNext,onChangePrev:this.handlePrev,onConnectApp:this.handleConnectApp,onDisconnectApp:this.handleDisconnectApp,onChangeProgress:this.handleProgress,onError:this.handleError}}getConnectedApps(e){const{connectedApps:t}=this.state;return Array.isArray(e)?e.reduce((e,t)=>t.completed?[...e,t.id]:e,t):t}getComponent(e){return this.appsComponent[this.state.connectedApp][e]}renderLoading(){return s.a.createElement(he,null)}renderError(){return this.state.error&&s.a.createElement(be,{message:this.state.error})}renderApps(){const{error:e,appError:t}=this.state;return s.a.createElement(s.a.Fragment,null,e&&s.a.createElement(be,{message:e}),s.a.createElement(we,{apps:this.appsData,proExceptions:this.proExceptions,error:t}))}renderSteps(){var e;const{showProgress:t,stage:o,stages:n,connectedApp:a,data:r}=this.state,i=t&&!(null!==(e=n.find(e=>e.type===o))&&void 0!==e&&e.hideProgress),l=n.reduce((e,t,o,n)=>{const i={num:t.type};return o===n.findIndex(e=>e.title)?i.img=r[a].img:i.text=t.title,t.title?[...e,s.a.createElement(ye.Stage,Object(C.a)({key:o},i))]:e},[]);return s.a.createElement(me.Provider,{value:this.getContextValue()},s.a.createElement(ye,{stage:o},i&&l.length>0&&s.a.createElement(ye.Progress,null,l),s.a.createElement(ye.Steps,{onClose:this.props.onClose},n.map((e,t)=>{const o=this.getComponent(e.type);return s.a.createElement(ye.Step,{key:t,num:e.type,render:e=>o&&s.a.createElement(o,Object(C.a)({},e,{apps:this.appsData}))})}))))}renderContent(){const{stage:e,stages:t}=this.state;return s.a.createElement(me.Provider,{value:this.getContextValue()},""!==e&&t.length?this.renderSteps():this.renderApps())}render(){const e=g()("brz-ed-popup-integration",this.props.className);return s.a.createElement("div",{className:e},this.state.loading?s.a.createElement(he,null):this.renderContent())}}Object(i.a)(Te,"defaultProps",{className:"",tab:{},stage:"",stages:[],onLoading:v.default.noop,onTabUpdate:v.default.noop,onClose:v.default.noop});var ze=Te;o(239);function Ee(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function ke(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?Ee(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):Ee(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const He=(e,t={})=>{let o=new URL(e);return Object.entries(t).forEach(([e,t])=>{o.searchParams.append(e,t)}),o},Fe=e=>e.json().then(t=>ke(ke({},t),{},{status:e.status,ok:e.ok,data:t.data||null})).then(_e).catch(()=>{throw{status:500,data:"Server Error"}}),_e=e=>{if(e.success)return e;{const{data:t}=e;return ke(ke({},e),{},{status:t.code||e.status})}},Re=(e,t,o,n)=>{let a=e&&JSON.parse(e)||[];const r=t&&t.length||0;let i=t.filter(e=>e.required).length;!a.some(({target:e})=>"email"===e)&&o.some(({type:e})=>e&&"email"===e.toLowerCase())&&(a=((e,t)=>{const o=t.find(({type:e})=>e&&"email"===e.toLowerCase());return e.push({sourceId:o._id,sourceTitle:o.label,target:"email"}),e})(a,o),i--);let l=0,s=0;return o.map(({_id:e,label:o})=>{const c=a.find(({sourceId:t})=>t===e);let d=null;return c&&c.target&&"_auto_generate"!==c.target?d=c.target:(Le(r+s,n)||s<i?(d=Me(t,a,l),l++):d="_auto_generate",s++),{sourceId:e,sourceTitle:o,target:d}})},Le=(e,t)=>t&&e>=t.maxFields,Me=(e,t,o)=>{const n=v.default.pluck(e,"slug"),a=v.default.pluck(t,"target");return v.default.difference(n,a)[o]},Ie=(e,t,o="select")=>{if("select"===o){const o=v.default.pluck(e.filter(e=>e.required),"slug"),n=v.default.pluck(t,"target");return!v.default.difference(o,n).length}if("input"===o)return 0===t.filter(e=>""===e.target).length},We=e=>/^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/.test(String(e).toLowerCase());function Ne(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}const Ae=e=>{const{api:t}=f.a.get("wp"),o=f.a.get("editorVersion"),n=He(t.url,function(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?Ne(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):Ne(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}({action:t.getAccounts,hash:t.hash,version:o},e||{}));return Object(pe.L)(n,{method:"GET",headers:{"Content-Type":"application/json; charset=utf-8"}}).then(Fe).then(e=>e)},Ve=e=>{const{api:t}=f.a.get("wp"),o=f.a.get("editorVersion"),n=He(t.url,{action:t.deleteAccount,hash:t.hash,version:o,id:e});return Object(pe.L)(n,{method:"DELETE",headers:{"Content-Type":"application/json; charset=utf-8"}}).then(Fe).then(e=>e)};var De=o(137),$e=o(196);const Ge=e=>{const{className:t,size:o=1,color:n="gray",type:a="button",rightIcon:r,leftIcon:i,loading:l,disabled:c,children:d,href:u,target:p,onClick:b}=e,m=g()("brz-button brz-ed-btn","brz-ed-btn-sm brz-ed-btn-rounded",t,l?"brz-ed-btn--loading":"brz-ed-btn-icon","brz-ed-btn-width-"+o,"brz-ed-btn-"+n,{"brz-ed-btn-icon--left":i},{"brz-ed-btn-icon--right":r},{"brz-ed-btn--disabled":c}),h=l?s.a.createElement(F.b,{icon:"nc-circle-02",className:"brz-ed-animated--spin"}):s.a.createElement(s.a.Fragment,null,i&&s.a.createElement(F.b,{icon:i}),d,r&&s.a.createElement(F.b,{icon:r}));return"button"===a?s.a.createElement("button",{className:m,onClick:b},h):s.a.createElement("a",{href:u,target:p,className:m,onClick:b},h)};class Ue extends l.Component{renderOptions(){const{active:e,data:{accounts:t,usedAccount:o,completed:n},disconnectLoading:a,onActive:r,onDisconnect:i}=this.props,l=t.map(({name:e,id:t})=>s.a.createElement($e.a,{value:t,key:t},e||"Account "+t,t===o&&n&&s.a.createElement("div",{title:"Disconnect",className:"brz-ed-popup-integrations--delete",onClick:i},s.a.createElement(F.b,{icon:a?"nc-circle-02":"nc-connection",className:a?"brz-ed-animated--spin":""}))));return s.a.createElement(B.a,{autoHeight:!0,autoHeightMax:"100%",style:{height:"auto"}},s.a.createElement(De.b,{className:"brz-ed-popup-integrations-option__radio",name:"list",defaultValue:e,onChange:r},l))}renderError(){const{error:e,data:{accounts:t}}=this.props;return s.a.createElement("div",{className:"brz-ed-alert brz-ed-alert-error"},s.a.createElement("span",{className:"brz-span"},0===t.length&&Object(ie.a)("Accounts are empty. Please connect a new account and try again."),e))}render(){const{data:{accounts:e},error:t,nextLoading:o,prevLoading:n,connectLoading:a,onConnect:r,onPrev:i,onNext:l}=this.props,c=e.length>0;return s.a.createElement("div",{className:"brz-ed-popup-integrations-step brz-ed-popup-integrations-step__account"},s.a.createElement("div",{className:"brz-ed-popup-integrations-step__head"},s.a.createElement("p",{className:"brz-p"},s.a.createElement("strong",{className:"brz-strong"},Object(ie.a)("SELECT ACCOUNT")))),s.a.createElement("div",{className:"brz-ed-popup-integrations-step__body"},(!c||t)&&this.renderError(),c&&this.renderOptions(),s.a.createElement("div",{className:"brz-ed-popup-integrations-new__option",onClick:r},s.a.createElement(F.b,{icon:a?"nc-circle-02":"nc-add",className:a?"brz-ed-animated--spin":""}),Object(ie.a)("Connect a new account")),s.a.createElement("div",{className:"brz-ed-popup-integrations-step__buttons"},s.a.createElement(Ge,{size:3,leftIcon:"nc-arrow-left",loading:n,onClick:i},Object(ie.a)("Back")),s.a.createElement(Ge,{color:"teal",rightIcon:"nc-arrow-right",loading:o,onClick:l},Object(ie.a)("Continue")))))}}Object(i.a)(Ue,"defaultProps",{id:"",title:"",shortTitle:"",description:"",img:"",form:{},data:{},active:"",nextLoading:!1,prevLoading:!1,connectLoading:!1,disconnectLoading:!1,onActive:v.default.noop,onPrev:v.default.noop,onNext:v.default.noop,onConnect:v.default.noop,onDisconnect:v.default.noop});var Ke=Ue;var Ye=e=>{const{title:t="",value:o="",icon:n="",type:a="text",required:r=!1,loading:i=!1,onChange:l=v.noop,onKeyDown:c=v.noop,onClickIcon:d=v.noop}=e;return s.a.createElement("div",{className:"brz-input__placeholder"},s.a.createElement("label",{className:"brz-label"},s.a.createElement("input",{required:!0,className:"brz-input",name:t,type:a,value:o,onChange:l,onKeyDown:c}),s.a.createElement("p",{className:"brz-p"},s.a.createElement("strong",{className:"brz-strong"},t,r&&s.a.createElement("span",{className:"brz-span"},"(",Object(ie.a)("required"),")")))),n&&s.a.createElement("div",{className:"brz-input__placeholder-icon"},i?s.a.createElement(F.b,{icon:"nc-circle-02",className:"brz-ed-animated--spin"}):s.a.createElement(F.b,{icon:n,onClick:d})))};class qe extends l.Component{constructor(...e){super(...e),Object(i.a)(this,"handleKeyDown",e=>{13===e.which&&this.props.onNext()})}renderError(){return s.a.createElement("div",{className:"brz-ed-alert brz-ed-alert-error"},s.a.createElement("span",{className:"brz-span"},this.props.error))}renderInputs(){const{data:e,onChange:t}=this.props;return e.map((e,o)=>{const{title:n,name:a,value:r}=e;return s.a.createElement(Ye,{key:o,title:n,name:a,required:!0,value:r,onChange:({target:e})=>{t(e.value,a)},onKeyDonw:this.handleKeyDown})})}render(){const{img:e,title:t,descriptions:o,error:n,nextLoading:a,prevLoading:r,onNext:i,onPrev:l,docsUrl:c}=this.props;return s.a.createElement("div",{className:"brz-ed-popup-integrations__connect"},s.a.createElement("div",{className:"brz-ed-popup-integrations__connect-head"},s.a.createElement("img",{className:"brz-img",src:e,title:t,alt:t}),s.a.createElement("p",{className:"brz-p"},o),s.a.createElement("p",{className:"brz-p brz-ed-popup-integrations__connect-info"},s.a.createElement("a",{className:"brz-a",href:c,target:"_blank",rel:"noreferrer"},Object(ie.a)("Need help"),"?"))),s.a.createElement("div",{className:"brz-ed-popup-integrations__connect-body"},n&&this.renderError(),this.renderInputs(),null!==a&&s.a.createElement(Ge,{color:"teal",loading:a,onClick:i},Object(ie.a)("Connect")),null!==r&&s.a.createElement(Ge,{color:"default",loading:r,onClick:l},Object(ie.a)("Cancel"))))}}Object(i.a)(qe,"defaultProps",{img:"",title:"",descriptions:"",data:[{title:"",name:"",value:""}],nextLoading:null,prevLoading:null,error:null,onNext:v.default.noop,onPrev:v.default.noop});var Xe=qe;class Ze extends l.Component{renderError(){return s.a.createElement("div",{className:"brz-ed-alert brz-ed-alert-error"},s.a.createElement("span",{className:"brz-span"},this.props.error))}render(){const{title:e,img:t,descriptions:o,error:n,nextLoading:a,prevLoading:r,onNext:i,onPrev:l}=this.props,c=null!==a&&null!==r;return s.a.createElement("div",{className:"brz-ed-popup-integrations__connect"},s.a.createElement("div",{className:"brz-ed-popup-integrations__connect-head"},s.a.createElement("img",{className:"brz-img",src:t,alt:e}),s.a.createElement("p",{className:"brz-p"},o)),s.a.createElement("div",{className:"brz-ed-popup-integrations__connect-body"},n&&this.renderError(),c&&s.a.createElement("div",{className:"brz-ed-popup-integrations-step__buttons"},null!==a&&s.a.createElement(Ge,{color:"red",loading:a,onClick:i},Object(ie.a)("Disconnect")),null!==r&&s.a.createElement(Ge,{color:"default",loading:r,onClick:l},Object(ie.a)("Cancel")))))}}Object(i.a)(Ze,"defaultProps",{title:"",descriptions:"",nextLoading:null,prevLoading:null,error:null,onNext:v.default.noop,onPrev:v.default.noop});var Je=Ze,Qe=o(57),et=o(160),tt=o(26),ot=o(288),nt=o(287),at=o(871),rt=o(878),it=o(275),lt=o(109),st=o(99);function ct(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function dt(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?ct(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):ct(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const ut=(e,t,o,n)=>{const a=t*o,r=t*n,i=e*t;return Math.max(a,Math.min(r,i))};class pt extends l.Component{constructor(...e){super(...e),Object(i.a)(this,"state",{inputValue:""}),Object(i.a)(this,"selectRef",s.a.createRef()),Object(i.a)(this,"inputRef",s.a.createRef()),Object(i.a)(this,"handleChange",(e,t)=>{const{multiple:o,value:n,onChange:a}=this.props;if(o){if(t.isOpen||this.setState({inputValue:""}),e.hasOwnProperty("value")){const t=Array.isArray(n)?n:[];a(Object(tt.addLast)(t,e.value))}}else e&&(this.setState({inputValue:e.value}),a(e))}),Object(i.a)(this,"handleInputChange",e=>{this.setState({inputValue:e.target.value})}),Object(i.a)(this,"handleRemoveTag",e=>{const{value:t,onChange:o}=this.props;o(Object(tt.removeAt)(t,e))}),Object(i.a)(this,"handleInputKeyDown",e=>{const{value:t,multiple:o,onChange:n}=this.props;o&&8===e.keyCode&&!this.state.inputValue&&n(Object(tt.removeLast)(t))})}itemToString(e){return e?e.label:""}renderTags(e){return Array.isArray(e)?e.map((e,t)=>s.a.createElement("div",{key:t,className:"brz-control__select2-tag"},e,s.a.createElement(F.b,{icon:"nc-trash",onClick:()=>{this.handleRemoveTag(t)}}))):null}renderInput(e){const{multiple:t,selectedItem:o,isOpen:n,toggleMenu:a,inputProps:r}=e,i=t?"brz-control__select2-value-container-tag":"brz-control__select2-value-container";return s.a.createElement(at.a,null,({ref:e})=>s.a.createElement("div",{ref:e,className:i,onClick:()=>{a(),!n&&this.inputRef.current.focus()}},t&&this.renderTags(o),s.a.createElement("input",Object(C.a)({},r,{className:"brz-input brz-control__select2-value"}))))}renderDropdown(e){const{className:t,options:o,value:n,multiple:a,placement:r,fixed:i,itemHeight:l,minItems:c,maxItems:d,isOpen:u,inputValue:p,highlightedIndex:b,selectedItem:m,getItemProps:h,getMenuProps:v}=e;if(!u)return;const f=Array.isArray(n)&&a?o.filter(e=>n.every(t=>t!==e.value)):o,y=this.selectRef.current,O=y.getBoundingClientRect().width,S=y.ownerDocument.body,x=g()("brz-ed-select2-portal",t),j=new nt.a(f,["value"]);return s.a.createElement(lt.a,{node:S,className:x},s.a.createElement(rt.a,{placement:r,positionFixed:i},({ref:e,style:t,placement:o})=>{const n=j.search(p).map((e,t)=>s.a.createElement("li",Object(C.a)({key:e.value},h({index:t,item:e}),{className:g()("brz-li brz-control__select2-option",{"brz-control__select2-option--active":m===e||b===t})}),e.value));return s.a.createElement("div",{ref:e,style:dt(dt({},t),{},{width:O}),className:"brz-control__select2-menu","data-placement":o},s.a.createElement(st.a,{style:{height:ut(n.length,l,c,d)},className:"brz-control__select2-scroll-pane brz-ed-scroll--small"},s.a.createElement("ul",Object(C.a)({},v(),{className:"brz-ul"}),n.length>0?n:s.a.createElement("li",{className:"brz-li brz-control__select2-option"},Object(ie.a)("Nothing Found")))))}))}render(){const{className:e,placeholder:t,multiple:o,value:n}=this.props,{inputValue:a}=this.state,r=g()("brz-control__select2-container",e);return s.a.createElement("div",{ref:this.selectRef,className:r},s.a.createElement(it.a,null,s.a.createElement(ot.a,{initialSelectedItem:n,selectedItem:n,onChange:this.handleChange,itemToString:this.itemToString},({getInputProps:e,getItemProps:n,getMenuProps:r,isOpen:i,highlightedIndex:l,selectedItem:c,toggleMenu:d})=>s.a.createElement("div",{className:"brz-control__select2"},this.renderInput({inputProps:e({ref:this.inputRef,placeholder:t,value:a,onKeyDown:this.handleInputKeyDown,onChange:this.handleInputChange}),multiple:o,selectedItem:c,isOpen:i,toggleMenu:d}),this.renderDropdown(dt(dt({},this.props),{},{inputValue:a,isOpen:i,highlightedIndex:l,selectedItem:c,getMenuProps:r,getItemProps:n}))))))}}Object(i.a)(pt,"defaultProps",{className:"",value:null,options:[{label:"Test",value:"test"}],placement:"bottom",placeholder:"",fixed:!1,minItems:1,maxItems:5,itemHeight:30,multiple:!1,onChange:v.default.noop});var bt=pt;const mt=e=>void 0===e.type,ht=e=>"select"===e.type,gt=e=>"switch"===e.type,vt=e=>"search"===e.type;class ft extends l.Component{constructor(...e){super(...e),Object(i.a)(this,"renderSelect",({name:e,value:t,choices:o})=>{const n=o.map(({title:e,name:t},o)=>s.a.createElement(S.a,{key:`${t}-${o}`,value:t},e));return s.a.createElement("div",{className:"brz-ed-popup-integrations-step__fields-select"},s.a.createElement(O.a,{className:"brz-control__select--white",maxItems:"6",itemHeight:"30",inPortal:!0,defaultValue:t,onChange:t=>{this.props.onActive(e,t)}},n))}),Object(i.a)(this,"renderInput",({name:e,value:t})=>s.a.createElement("div",{className:"brz-ed-popup-integrations-step__fields-input"},s.a.createElement("input",{className:"brz-input",required:!0,type:"password"===e?"password":"text",value:t,onChange:t=>{this.props.onActive(e,t.target.value)}}))),Object(i.a)(this,"renderSwitch",({name:e,value:t})=>s.a.createElement("div",{className:"brz-ed-popup-integrations-step__fields-input"},s.a.createElement(et.a,{className:"brz-ed-control__switch--light",defaultValue:t,onChange:t=>{this.props.onActive(e,t)}}))),Object(i.a)(this,"renderSearch",({name:e,multiple:t,value:o,choices:n})=>{const a=Boolean(o)&&t?o.split(","):o;return s.a.createElement("div",{className:"brz-ed-popup-integrations-step__fields-select"},s.a.createElement(bt,{className:"brz-control__select2--light",multiple:t,value:a,options:n,onChange:o=>{this.props.onActive(e,t?o.join(","):o.value)}}))}),Object(i.a)(this,"renderOption",Object(Qe.match)([mt,this.renderInput],[ht,this.renderSelect],[vt,this.renderSearch],[gt,this.renderSwitch]))}renderHead(){const{headTitle:e,headDescription:t}=this.props;if(e&&t)return s.a.createElement("div",{className:"brz-ed-popup-integrations-step__head"},e&&s.a.createElement("p",{className:"brz-p"},s.a.createElement("strong",{className:"brz-strong"},e)),t&&s.a.createElement("p",{className:"brz-p"},s.a.createElement("strong",{className:"brz-strong"},t)))}renderOptions(){const e=this.props.data.map((e,t)=>{const{title:o,required:n,helper:a}=e;return s.a.createElement("div",{key:t,className:"brz-ed-popup-integrations-step__fields-option"},s.a.createElement("div",{className:"brz-d-xs-flex brz-align-items-xs-center"},s.a.createElement("p",{className:"brz-p"},o,n&&s.a.createElement("strong",{className:"brz-strong brz--required"},"*")),a&&s.a.createElement(Se.b,{className:"brz-ed-popup-integrations-fields__tooltip",openOnClick:!1,inPortal:!0,overlay:s.a.createElement("div",{className:"brz-ed-popup-integrations-fields__info",dangerouslySetInnerHTML:{__html:a}})},s.a.createElement(F.b,{icon:"nc-alert-circle-que"}))),this.renderOption(e))});return s.a.createElement(B.a,{autoHeight:!0,autoHeightMax:"100%",style:{height:"auto"}},e)}render(){const{description:e,error:t,prevLoading:o,nextLoading:n,onPrev:a,onNext:r}=this.props;return s.a.createElement("div",{className:"brz-ed-popup-integrations-step brz-ed-popup-integrations-step__fields"},this.renderHead(),s.a.createElement("div",{className:"brz-ed-popup-integrations-step__body"},t&&s.a.createElement(be,{message:t,type:"error"}),this.renderOptions(),e&&s.a.createElement("p",{className:"brz-p brz-ed-popup-integrations__description"},e),s.a.createElement("div",{className:"brz-ed-popup-integrations-step__buttons"},null!==o&&s.a.createElement(Ge,{size:3,leftIcon:"nc-arrow-left",loading:o,onClick:a},Object(ie.a)("Back")),null!==n&&s.a.createElement(Ge,{color:"teal",rightIcon:"nc-arrow-right",loading:n,onClick:r},Object(ie.a)("Continue")))))}}Object(i.a)(ft,"defaultProps",{id:"",headTitle:"",headDescription:"",description:"",data:[],nextLoading:null,prevLoading:null,onPrev:v.default.noop,onNext:v.default.noop,onActive:v.default.noop});class yt extends l.Component{renderSelect(e,t){const{formFields:o,fields:n,restrictions:a,onActive:r}=this.props,i=v.default.pluck(o,"target");let l=n.filter(e=>-1===i.indexOf(e.slug)||e.slug===t);const c=n.length+(o.length-v.default.without(i,"_auto_generate").length);(!Le(c,a)||t&&"_auto_generate"===t)&&l.unshift({name:"Auto Generate",required:!1,slug:"_auto_generate"});const d=l.map(({required:e,name:t,slug:o})=>s.a.createElement(S.a,{key:o,value:o},s.a.createElement("span",{className:"brz-span"},t),e&&s.a.createElement("strong",{className:"brz-strong brz--required"},"*")));return s.a.createElement(O.a,{defaultValue:t,className:"brz-control__select--white",maxItems:"6",itemHeight:"30",inPortal:!0,onChange:t=>{r(e,t)}},d)}renderOptions(){const e=this.props.formFields.map(({sourceTitle:e,target:t,sourceId:o})=>s.a.createElement("div",{key:o,className:"brz-ed-popup-integrations-step__fields-option"},s.a.createElement("p",{className:"brz-p"},e),s.a.createElement("div",{className:"brz-ed-popup-integrations-step__fields-select"},this.renderSelect(o,t))));return s.a.createElement(B.a,{autoHeight:!0,autoHeightMax:"100%",style:{height:"auto"}},e)}renderError(){return s.a.createElement("div",{className:"brz-ed-alert brz-ed-alert-error"},s.a.createElement("span",{className:"brz-span"},this.props.error))}renderErrorEmpty(){return s.a.createElement("div",{className:"brz-ed-alert brz-ed-alert-error"},s.a.createElement("span",{className:"brz-span"},Object(ie.a)("Fields are empty. Please add fields and try again.")))}render(){const{title:e,error:t,formFields:o,prevLoading:n,nextLoading:a,onPrev:r,onNext:i}=this.props;return s.a.createElement("div",{className:"brz-ed-popup-integrations-step brz-ed-popup-integrations-step__fields"},s.a.createElement("div",{className:"brz-ed-popup-integrations-step__head"},s.a.createElement("p",{className:"brz-p"},s.a.createElement("strong",{className:"brz-strong"},Object(ie.a)("FORM FIELDS"))),s.a.createElement("p",{className:"brz-p"},s.a.createElement("strong",{className:"brz-strong"},e," ",Object(ie.a)("FIELDS")))),s.a.createElement("div",{className:"brz-ed-popup-integrations-step__body"},t&&this.renderError(),o.length?this.renderOptions():this.renderErrorEmpty(),s.a.createElement("div",{className:"brz-ed-popup-integrations-step__buttons"},null!==n&&s.a.createElement(Ge,{size:3,leftIcon:"nc-arrow-left",loading:n,onClick:r},Object(ie.a)("Back")),null!==a&&s.a.createElement(Ge,{color:"teal",rightIcon:"nc-arrow-right",loading:a,onClick:i},Object(ie.a)("Continue")))))}}Object(i.a)(yt,"defaultProps",{id:"",title:"",shortTitle:"",description:"",img:"",fields:[],formFields:[],restrictions:{},error:null,nextLoading:null,prevLoading:null,onActive:v.default.noop,onPrev:v.default.noop,onNext:v.default.noop});var Ot=yt;class St extends l.Component{constructor(...e){super(...e),Object(i.a)(this,"handleConfirmation",e=>{this.props.onConfirm("true"===e)})}renderError(){return s.a.createElement("div",{className:"brz-ed-alert brz-ed-alert-error"},s.a.createElement("span",{className:"brz-span"},this.props.error))}renderList(){const{active:e,lists:t,onActive:o}=this.props,n=t.map(({name:e,id:t})=>s.a.createElement($e.a,{value:t,key:t},e||"List "+t));return s.a.createElement(B.a,{autoHeight:!0,autoHeightMax:"100%",style:{height:"auto"}},s.a.createElement(De.b,{className:"brz-ed-popup-integrations-option__radio",name:"list",defaultValue:e,onChange:o},n))}renderConfirmation(){const{confirmationNeeded:e}=this.props;return s.a.createElement("div",{className:"brz-ed-popup-integrations__confirmation"},s.a.createElement("p",{className:"brz-p"},Object(ie.a)("Email confirmation to join the list")),s.a.createElement(O.a,{defaultValue:e?"true":"false",className:"brz-control__select--white",maxItems:"6",itemHeight:"30",onChange:this.handleConfirmation},s.a.createElement(S.a,{value:"false"},Object(ie.a)("Not Required")),s.a.createElement(S.a,{value:"true"},Object(ie.a)("Required"))))}renderCreateList(){const{createLoading:e,onCreateList:t}=this.props;return s.a.createElement("div",{className:"brz-ed-popup-integrations-new__option",onClick:t},s.a.createElement(F.b,{icon:e?"nc-circle-02":"nc-add",className:e?"brz-ed-animated--spin":""}),Object(ie.a)("Create a new list"))}renderProList(){return s.a.createElement(De.b,{className:"brz-ed-popup-integrations-option__radio",name:"proList",defaultValue:"none"},s.a.createElement($e.a,{value:"none"},Object(ie.a)("None")))}render(){const{listPro:e,lists:t,listsCreate:o,hasConfirmation:n,error:a,nextLoading:r,prevLoading:i,onPrev:l,onNext:c}=this.props,d=t.length>0,u=o&&o.length>0;return s.a.createElement("div",{className:"brz-ed-popup-integrations-step brz-ed-popup-integrations-step__lists"},s.a.createElement("div",{className:"brz-ed-popup-integrations-step__head"},s.a.createElement("p",{className:"brz-p"},s.a.createElement("strong",{className:"brz-strong"},Object(ie.a)("SELECT LIST")))),s.a.createElement("div",{className:"brz-ed-popup-integrations-step__body"},a&&this.renderError(),d&&this.renderList(),e&&this.renderProList(),u&&this.renderCreateList(),n&&this.renderConfirmation(),s.a.createElement("div",{className:"brz-ed-popup-integrations-step__buttons"},null!==i&&s.a.createElement(Ge,{size:3,leftIcon:"nc-arrow-left",loading:i,onClick:l},Object(ie.a)("Back")),null!==r&&s.a.createElement(Ge,{size:d||e?1:3,color:d||e?"teal":"gray",rightIcon:"nc-arrow-right",loading:r,onClick:d||e?c:null},Object(ie.a)("Continue")))))}}Object(i.a)(St,"defaultProps",{id:"",title:"",shortTitle:"",description:"",img:"",active:"",listPro:!1,lists:[],listsCreate:[],apiKeyValue:{},hasConfirmation:!1,createLoading:!1,confirmationNeeded:!1,nextLoading:null,prevLoading:null,error:null,onActive:v.default.noop,onConfirm:v.default.noop,onCreateList:v.default.noop,onPrev:v.default.noop,onNext:v.default.noop});var xt=St;class Ct extends l.Component{render(){const{title:e,onNext:t}=this.props;return s.a.createElement("div",{className:"brz-ed-popup-integrations-step brz-ed-popup-integrations-step__done"},s.a.createElement("div",{className:"brz-ed-popup-integrations-step__done-icon"},s.a.createElement(F.b,{icon:"nc-check-light"})),s.a.createElement("div",{className:"brz-ed-popup-integrations-step__done-content"},s.a.createElement("p",{className:"brz-p"},Object(ie.a)("You have successfully connect the form with")," ",e)),s.a.createElement(Ge,{color:"teal",onClick:t},Object(ie.a)("Done")))}}Object(i.a)(Ct,"defaultProps",{title:"",onNext:v.default.noop});var jt=Ct;async function Pt(e){try{return await(t=e,fetch("https://graph.facebook.com/"+t).then(({status:e})=>200===e))}catch(e){return!1}var t}function Bt(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function wt(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?Bt(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):Bt(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const Tt=[{name:"appid",title:"App ID"}];class zt extends l.Component{constructor(e,t){super(e),Object(i.a)(this,"handleChange",(e,t)=>{this.setState(({apiKeyValue:o})=>({apiKeyValue:wt(wt({},o),{},{[""+t]:e.trim()})}))}),Object(i.a)(this,"handleConnect",async()=>{const{app:e,onChangeNext:t}=this.context,{apiKeyValue:o}=this.state,n=Object.values(o);if(this.setState({nextLoading:!0,error:null}),n.some(e=>!e))await Object(pe.I)(),this.setState({error:"Fields are empty",nextLoading:!1});else{const{data:a,group:r,id:i}=e,[l]=n;if(!await Pt(l))return void this.setState({isValidate:!1,error:"Your AppId is no valid, re check and try again",nextLoading:!1});if(a&&a.id){const{status:e}=await Ve(a.id);200!==e&&this.setState({nextLoading:!1,error:Object(ie.a)("Something went wrong")})}const{status:s}=await(e=>{const{api:t}=f.a.get("wp"),o=f.a.get("editorVersion"),n=He(t.url,{action:t.addAccount,hash:t.hash,version:o});return Object(pe.L)(n,{method:"POST",headers:{"Content-Type":"application/json; charset=utf-8"},body:JSON.stringify(e)}).then(Fe).then(e=>e)})(wt({service:i,group:r},o));200!==s?this.setState({nextLoading:!1,error:Object(ie.a)("Something went wrong")}):t()}}),Object(i.a)(this,"handlePrev",async()=>{this.setState({prevLoading:!0}),await Object(pe.I)(),this.context.onChangePrev()});const{app:{data:o}}=t;this.state={apiKeyValue:o||this.getDefaultValue(),nextLoading:!1,prevLoading:!1,error:null}}static async onBeforeLoad(e,t){e.app.data&&t.onChangeNext("disconnect")}getDefaultValue(){return Tt.reduce((e,{name:t})=>wt(wt({},e),{},{[""+t]:""}),{})}render(){const{app:e}=this.context,{apiKeyValue:t,nextLoading:o,prevLoading:n,error:a}=this.state,r=Tt.map(({title:e,name:o})=>({title:e,name:o,value:t[o]}));return s.a.createElement(Xe,Object(C.a)({},e,{data:r,nextLoading:o,prevLoading:n,error:a,onChange:this.handleChange,onNext:this.handleConnect,onPrev:this.handlePrev}))}}Object(i.a)(zt,"contextType",me);var Et=zt;class kt extends l.Component{constructor(e){super(e),Object(i.a)(this,"handleNext",async()=>{const{app:e,onChange:t,onDisconnectApp:o}=this.context;this.setState({nextLoading:!0,error:null});const{status:n}=await Ve(e.data.id);200===n?(o(e.id),t(e.id,null)):this.setState({nextLoading:!1,error:Object(ie.a)("Something went wrong")})}),Object(i.a)(this,"handlePrev",async()=>{this.setState({prevLoading:!0,error:null}),await Object(pe.I)(),this.context.onChangePrev("appList")}),this.state={nextLoading:!1,prevLoading:!1,error:null}}render(){const{nextLoading:e,prevLoading:t,error:o}=this.state;return s.a.createElement(Je,Object(C.a)({},this.context.app,{descriptions:Object(ie.a)("Are you want to delete account")+" ?",nextLoading:e,prevLoading:t,error:o,onPrev:this.handlePrev,onNext:this.handleNext}))}}Object(i.a)(kt,"contextType",me);var Ht=kt;class Ft extends l.Component{constructor(...e){super(...e),Object(i.a)(this,"handleClose",()=>{this.props.onClose()})}render(){const{app:e}=this.context;return s.a.createElement(jt,Object(C.a)({},e,{onNext:this.handleClose}))}}Object(i.a)(Ft,"contextType",me);var _t=Ft;class Rt{}Object(i.a)(Rt,"connect",void 0),Object(i.a)(Rt,"account",void 0),Object(i.a)(Rt,"fields",void 0),Object(i.a)(Rt,"list",void 0),Object(i.a)(Rt,"done",void 0);class Lt extends Rt{}Object(i.a)(Lt,"connect",Et),Object(i.a)(Lt,"disconnect",Ht),Object(i.a)(Lt,"done",_t);var Mt=Lt;var It=class extends ze{constructor(...e){super(...e),Object(i.a)(this,"appsData",[]),Object(i.a)(this,"appsComponent",n),Object(i.a)(this,"handleConnectApp",async e=>{const t=e.id,{stages:o}=this.appsData[0];await Object(pe.I)(),this.setState(Object(c.a)(n=>{n.stages=o,n.connectedApp=t,Object.assign(n.data[t],e)}),()=>{this.handleNext()})})}async componentDidMount(){const e=Object(ue.a)("integrations.json"),t=await fetch(e),o=await t.json();this.appsData=o.facebook,await this.getData()}async getData(){const{group:e,service:t}=this.props,{status:o,data:n}=await Ae({group:e,services:t});if(n&&n.length>0&&200===o){const e=n[0],{services:t}=e;this.setState(Object(c.a)(o=>{o.data[t]={data:e},o.loading=!1,o.connectedApps=[t]}))}else this.setState({loading:!1})}};const Wt=[{id:"app",title:Object(ie.a)("APPS"),icon:"nc-extensions-2",component:It}];class Nt extends l.Component{render(){const{service:e,group:t,opened:o,onClose:n}=this.props;return s.a.createElement(de,{currentTab:"app",service:e,group:t,opened:o,tabs:Wt,onClose:n})}}Object(i.a)(Nt,"defaultProps",{service:"facebook",group:"social",opened:!1,onClose:v.noop});var At=Nt,Vt=o(40),Dt=o.n(Vt),$t=o(82),Gt=o(9);function Ut(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function Kt(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?Ut(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):Ut(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}class Yt extends s.a.Component{constructor(...e){super(...e),Object(i.a)(this,"state",{currentFilter:this.props.defaultFilter}),Object(i.a)(this,"setFilter",e=>{this.setState(t=>({currentFilter:Kt(Kt({},t.currentFilter),e)}))})}render(){const{filterFn:e,data:t,children:o}=this.props,{currentFilter:n}=this.state;return o(t.filter(t=>e(t,n)),n,this.setFilter)}}function qt(e){const{className:t="",title:o="",separator:n=!1,children:a}=e,r=g()("brz-ed-popup-two-sidebar",t);return s.a.createElement("div",{className:r},o&&s.a.createElement("div",{className:"brz-ed-popup-two-sidebar-title"},o),n&&s.a.createElement("div",{className:"brz-ed-popup-two-sidebar-separator"},o),a)}function Xt(e){const{lists:t=[],counters:o={},value:n="",onChange:a=(()=>{})}=e;return t.map(({id:e,title:t,icon:r})=>null!=o[e]&&s.a.createElement("div",{key:e,title:Object(ie.a)(t),className:g()("brz-ed-popup-two-sidebar-list",{"brz-ed-popup-two-sidebar-list-active":e===n}),onClick:()=>a(e)},r&&s.a.createElement("span",{className:"brz-span brz-ed-popup-two-sidebar-list__span-icon"},s.a.createElement(F.b,{icon:r})),s.a.createElement("span",{className:"brz-span brz-ed-popup-two-sidebar-list__span-text"},t),s.a.createElement("span",{className:"brz-span brz-ed-popup-two-sidebar-list__span-new"},"new"),s.a.createElement("span",{className:"brz-span brz-ed-popup-two-sidebar-list__span-quantity"},o[e])))}function Zt(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function Jt(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?Zt(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):Zt(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function Qt(e){const{className:t,children:o}=e,n=g()("brz-ed-popup-two-body__sidebar",t),a=e=>{let{style:t}=e,o=Object(x.a)(e,["style"]);return s.a.createElement("div",Object(C.a)({},o,{style:Jt(Jt({},t),{},{borderRadius:"inherit",backgroundColor:"rgba(129, 138, 145, 0.5)"})}))};return s.a.createElement("div",{className:n},s.a.createElement(B.a,{renderThumbHorizontal:a,renderThumbVertical:a},s.a.createElement("div",{className:"brz-ed-popup-two-sidebar-body"},o)))}class eo extends s.a.Component{constructor(...e){super(...e),Object(i.a)(this,"handleInputChange",e=>{this.props.onChange(e.target.value)})}render(){const{className:e,value:t}=this.props,o=g()("brz-ed-popup-two-search",e);return s.a.createElement("div",{className:o},s.a.createElement("input",{type:"text",className:"brz-input brz-ed-popup-two__input",placeholder:Object(ie.a)("Type to search"),value:t,onChange:this.handleInputChange}),s.a.createElement("div",{className:"brz-ed-popup-two-search-icon"},s.a.createElement(F.b,{icon:"nc-search"})))}}Object(i.a)(eo,"defaultProps",{className:"",value:"",onChange:v.default.noop});var to=o(7),oo=o.n(to),no=o(37),ao=o(49);let ro=new Map,io=null;class lo extends l.Component{constructor(...e){super(...e),Object(i.a)(this,"state",{imageFetched:!1,showSpinner:!1}),Object(i.a)(this,"content",s.a.createRef()),Object(i.a)(this,"handleIntersection",e=>{e.forEach(({isIntersecting:e,target:t})=>{if(e){const e=ro.get(t);if(!e)return;const o=e.props.src;Object(ao.f)(o).then(()=>{io&&io.unobserve(t),e.mounted&&e.setState({imageFetched:!0,showSpinner:!1},e.props.onImageLoaded())})}})})}componentDidMount(){const e=this.content.current;if(this.mounted=!0,null===io){const{observerRootSelector:t,observerRootMargin:o,observerThreshold:n}=this.props,a={root:e.ownerDocument.querySelector(t),rootMargin:o,threshold:n};io=new e.ownerDocument.defaultView.IntersectionObserver(this.handleIntersection,a),io.POLL_INTERVAL=200}io.observe(e),ro.set(e,this),setTimeout(()=>{this.mounted&&!this.state.imageFetched&&this.setState({showSpinner:!0})},this.props.spinnerDelay)}componentWillUnmount(){const e=this.content.current;this.mounted=!1,io.unobserve(e),ro.delete(e),0===ro.size&&(io.disconnect(),io=null)}render(){const{width:e,height:t,src:o,style:n}=this.props,{imageFetched:a,showSpinner:r}=this.state,i=Math.round(t/e*100*10)/10;return s.a.createElement("div",{ref:this.content,className:"brz-observer__image",style:{paddingTop:i+"%"}},r&&s.a.createElement("div",{className:"brz-ed-option__block-thumbnail-loading"},s.a.createElement(F.b,{icon:"nc-circle-02",className:"brz-ed-animated--spin"})),a&&s.a.createElement("img",{className:"brz-img",style:n,src:o,alt:"lazyLoad Image"}))}}Object(i.a)(lo,"defaultProps",{width:100,height:100,src:"",observerRootSelector:null,observerRootMargin:"0px",observerThreshold:[0],spinnerDelay:250,style:{},onImageLoaded:v.default.noop});var so=o(19),co=o(16),uo=o(73),po=o(110),bo=o(131);const mo=e=>"BLOCK"===e,ho=e=>"POPUP"===e,go=e=>"LAYOUT"===e,vo=(e,t)=>t?e+":1":e+":0";var fo=o(284),yo=o(61);const Oo=e=>{var t,o;const n=null!==(t=e.component.resolve)&&void 0!==t?t:{};return{id:e.component.id,resolve:null!==(o=Object(tt.getIn)(n,["value","items",0]))&&void 0!==o?o:{}}},So=["WPFeaturedImage"],xo=({models:e,globalBlocks:t})=>{const o=Object.values(fo.a).reduce((e,t)=>e.concat(t),[]).filter(e=>e.pro).map(Oo),{obj:n}=Object(yo.a)(e,e=>{if("GlobalBlock"===e.type&&t){const o=Object(tt.getIn)(e,["value","_id"]);if(o&&t[o])return xo({models:t[o],globalBlocks:t})}return o.find(({resolve:t,id:o})=>{const n=t.type===e.type;return(!n||!So.includes(o))&&n})});return Object(co.l)(n)},Co=e=>{const t=Object(Qe.match)([mo,()=>Object(ie.a)("Could not download Saved block")],[go,()=>Object(ie.a)("Could not download Saved Layout")],[ho,()=>Object(ie.a)("Could not download Saved Popup")]);uo.a.error(t(e),{toastContainer:window.parent.document.body})},jo=e=>{const{id:t,type:o}=e,[n,a]=Object(l.useState)(!1),r=Object(l.useRef)(null),[i,c]=Object(l.useState)(void 0),d=Object(l.useCallback)(async()=>{a(!0),c(void 0);const e=Object(Qe.match)([mo,()=>Object(pe.A)(t)],[go,()=>Object(pe.C)(t)],[ho,()=>Object(pe.A)(t)]);try{const{data:n}=await e(o);if(r.current){const e=xo({models:n}),r=((e,t)=>{const o=f.a.getAll(),{editorVersion:n}=o;if(Object(bo.a)(o)){const{url:a,hash:r,downloadBlocks:i,downloadLayouts:l}=o.wp.api,s=Object(Qe.match)([mo,()=>i],[go,()=>l],[ho,()=>i]),c=Object(po.b)({hash:r,uid:t,version:n,action:s(e),type:e.toLowerCase()});return Object(po.c)(a)?`${a}&${c}`:`${a}?${c}`}const a=o.urls.api,r=Object(Qe.match)([mo,()=>"downloadBlocks"],[go,()=>"downloadLayouts"],[ho,()=>"downloadPopups"]),i=Object(po.b)({uid:t,version:n,action:r(e),type:e.toLowerCase()});return Object(po.c)(a)?`${a}&${i}`:`${a}?${i}`})(o,[vo(t,e)]);c(r),a(!1)}}catch(e){0,r.current&&(a(!1),Co(o))}},[t,o,r]),u=Object(l.useCallback)(()=>{Co(o),c(void 0)},[o,i]);return s.a.createElement("div",{ref:r,title:Object(ie.a)("Download this block"),className:"brz-ed-popup-two-block-download",onClick:n?void 0:d},i&&s.a.createElement("iframe",{src:i,hidden:!0,onLoad:u}),n?s.a.createElement(F.b,{icon:"nc-circle-02",className:"brz-ed-animated--spin"}):s.a.createElement(F.b,{icon:"nc-down"}))},{upgradeToPro:Po}=f.a.get("urls"),Bo={animationName:"fadeIn",animationFillMode:"both",animationDelay:"200ms",animationDuration:"200ms"};class wo extends l.Component{constructor(...e){super(...e),Object(i.a)(this,"state",{tooltipOpen:!1}),Object(i.a)(this,"iconRef",s.a.createRef()),Object(i.a)(this,"handleTooltipOpen",()=>{this.setState({tooltipOpen:!0})}),Object(i.a)(this,"handleTooltipClose",()=>{this.setState({tooltipOpen:!1})}),Object(i.a)(this,"handleClick",()=>{const{data:e,onAdd:t}=this.props;e.loading||e.inactive||t(e)}),Object(i.a)(this,"handleRemove",()=>{const{data:e,onRemove:t}=this.props;t(e)}),Object(i.a)(this,"handleSync",()=>{const{data:e,onSync:t}=this.props;t(e)})}renderBlank(){var e,t;const{data:{pro:o}}=this.props,n=!A.h&&o,a=null!==(e=null===(t=this.props.data)||void 0===t?void 0:t.blankTitle)&&void 0!==e?e:Object(ie.a)("Create your own"),r=g()("brz-ed-popup-two-block-item","brz-ed-popup-two-block__blank","brz-ed-popup-two-block__blank-first",{"brz-ed-popup-two-block__blank--pro":n});return n?s.a.createElement(Se.b,{overlayClassName:"brz-ed-tooltip--delay-1",size:"small",offset:"5",openOnClick:!1,nodeRef:this.iconRef,overlay:s.a.createElement(xe.a,{text:Object(ie.a)("Upgrade to PRO to use this block"),url:Po}),onOpen:this.handleTooltipOpen,onClose:this.handleTooltipClose},s.a.createElement("div",{className:r},s.a.createElement("p",{ref:this.iconRef,className:"brz-p brz-d-xs-flex brz-align-items-xs-center"},s.a.createElement(F.b,{icon:"nc-lock"})," ",a),s.a.createElement("p",{className:"brz-p brz-ed-badge brz-ed-badge--pro"},"pro"))):s.a.createElement("div",{onClick:this.handleClick,className:r},s.a.createElement("div",{className:"brz-ed-container-trigger brz-ed-container-trigger--small"}),s.a.createElement("p",{className:"brz-p"},a))}renderPro(){const{animation:e,isLayout:t,data:{thumbnailSrc:o,thumbnailWidth:n,thumbnailHeight:a},onImageLoaded:r}=this.props,{width:i,height:l}=Object(ao.e)(n,a,292),c=g()("brz-figure brz-ed-popup-two-block-item",this.state.tooltipOpen&&"brz-ed-popup-two-block-item--active"),d=s.a.createElement(s.a.Fragment,null,s.a.createElement(lo,{observerRootSelector:".brz-ed-popup-two-blocks-body",style:e?Bo:{},src:o,width:i,height:l,onImageLoaded:r}),s.a.createElement("p",{className:"brz-p brz-ed-badge brz-ed-badge--pro"},"pro"));return t?s.a.createElement("figure",{className:c,onClick:this.handleClick},d):s.a.createElement(Se.b,{overlayClassName:"brz-ed-tooltip--delay-1",size:"small",offset:"5",openOnClick:!1,nodeRef:this.iconRef,overlay:s.a.createElement(xe.a,{text:Object(ie.a)("Upgrade to PRO to use this block"),url:Po}),onOpen:this.handleTooltipOpen,onClose:this.handleTooltipClose},s.a.createElement("figure",{className:c},d,s.a.createElement("span",{ref:this.iconRef,className:"brz-ed-popup-two-block__span-lock"},s.a.createElement(F.b,{icon:"nc-lock"}))))}renderFree(){const{animation:e,data:{thumbnailSrc:t,thumbnailWidth:o,thumbnailHeight:n},onImageLoaded:a}=this.props,{width:r,height:i}=Object(ao.e)(o,n,292);return s.a.createElement("figure",{className:"brz-figure brz-ed-popup-two-block-item",onClick:this.handleClick},s.a.createElement(lo,{observerRootSelector:".brz-ed-popup-two-blocks-body",style:e?Bo:{},src:t,width:r,height:i,onImageLoaded:a}))}renderRemoveIcon(){return s.a.createElement("div",{className:"brz-ed-badge__delete brz-ed-popup-two-block-remove",onClick:this.handleRemove},s.a.createElement(F.b,{icon:"nc-trash"}))}renderSyncIcon(){const{isAuthorized:e,data:{synchronizable:t,synchronized:o}}=this.props;if(t&&e){const e=g()("brz-ed-popup-two-block-sync",{"brz-ed-popup-two-block-sync--uploaded":o}),t=o?Object(ie.a)("Block is synchronized"):Object(ie.a)("Block will be synchronized");return s.a.createElement("div",{title:t,className:e,onClick:this.handleSync},s.a.createElement(F.b,{icon:o?"nc-check-circle-on":"nc-reverse-glyph"}))}}renderLoading(){return s.a.createElement("div",{className:"brz-ed-popup-two-block--loading"},s.a.createElement(F.b,{icon:"nc-circle-02",className:"brz-ed-animated--spin"}))}renderDownloadIcon(){const{uid:e,type:t}=this.props.data;return s.a.createElement(jo,{id:e,type:t})}render(){const{isLayout:e,showSync:t,showDownload:o,data:{blank:n,showRemoveIcon:a,pro:r,loading:i,inactive:l,renderWrapper:c}}=this.props,d=!A.h&&r,u=n&&"blank"===n,p=g()("brz-ed-popup-two-block",co.d&&"brz-ed-popup-two-block-stories",d&&"brz-ed-popup-two-block--pro",e&&"brz-ed-popup-two-block--layout",l&&"inactive");let b;return u?b=this.renderBlank():(b=d?this.renderPro():this.renderFree(),c&&(b=c(b))),s.a.createElement("div",{className:p},b,a&&this.renderRemoveIcon(),i&&this.renderLoading(),(t||o)&&!u&&s.a.createElement("div",{className:"brz-ed-popup-two-block__bottom-control"},o&&this.renderDownloadIcon(),t&&this.renderSyncIcon()))}}Object(i.a)(wo,"defaultProps",{showRemoveIcon:!1,data:{},animation:!1,isLayout:!1,isAuthorized:!1,onAdd:v.default.noop,onRemove:v.default.noop,onImageLoaded:v.default.noop}),Object(i.a)(wo,"propTypes",{showRemoveIcon:oo.a.bool,blockData:oo.a.object,animation:oo.a.bool,isLayout:oo.a.bool,isAuthorized:oo.a.bool,showSync:oo.a.bool,showDownload:oo.a.bool,onAdd:oo.a.func,onRemove:oo.a.func,onImageLoaded:oo.a.func,onSync:oo.a.func});class To extends l.Component{constructor(...e){super(...e),Object(i.a)(this,"state",{thumbnailLoaded:!1}),Object(i.a)(this,"handleLoaded",()=>{this.setState({thumbnailLoaded:!0})})}render(){const e=this.props,{data:{name:t,pages:o,color:n}}=e,a=Object(x.a)(e,["data"]),{thumbnailLoaded:r}=this.state,i=g()("brz-ed-popup-two-block-info",co.d&&"brz-ed-popup-two-block-info-stories");return s.a.createElement("div",{className:i,style:r?Bo:{}},s.a.createElement(wo,Object(C.a)({},a,{data:this.props.data,isLayout:!0,onImageLoaded:this.handleLoaded})),r&&o.length>1&&s.a.createElement("span",{className:"brz-ed-popup-two-block-info-color",style:{backgroundColor:n}},s.a.createElement("span",{className:"brz-ed-popup-two-block-info-color-opacity",style:{backgroundColor:n}})),s.a.createElement("div",{className:"brz-ed-popup-two-block-info-downline"},s.a.createElement("div",{className:"brz-ed-popup-two-block-info-title"},t),s.a.createElement("div",{className:"brz-ed-popup-two-block-info-title"},o.length," ",o.length>1?co.d?Object(ie.a)("stories"):Object(ie.a)("layouts"):co.d?Object(ie.a)("story"):Object(ie.a)("layout"))))}}const zo=e=>({isAuthorized:"connected"===Object(so.a)(e)}),Eo=Object(no.b)(zo)(To);var ko=Object(no.b)(zo)(wo);class Ho extends l.Component{constructor(...e){super(...e),Object(i.a)(this,"state",{currentColumns:this.props.columns}),Object(i.a)(this,"handleResize",()=>{const e=window.innerWidth,{responsive:t,columns:o}=this.props;if(t&&t.length){const n=t.reduce((t,o)=>o.breakpoint>e&&(void 0===t.breakpoint||t.breakpoint>o.breakpoint)?o:t,{});this.setState({currentColumns:n.settings&&n.settings.columns||o})}})}componentDidMount(){this.handleResize(),window.addEventListener("resize",this.handleResize)}componentWillUnmount(){window.removeEventListener("resize",this.handleResize)}render(){const{data:e,showSync:t,showDownload:o,onThumbnailAdd:n,onThumbnailRemove:a,ThumbnailComponent:r}=this.props,{currentColumns:i}=this.state,l=[];for(let e=0;e<i;e++)l.push([]);const c=g()("brz-ed-popup-two-blocks__grid__column",co.d&&"brz-ed-popup-two-blocks__grid__column-stories"),d=e.reduce((e,l,c)=>{const d=s.a.createElement(r,{key:l.uid||c,animation:!0,showSync:t,showDownload:o,data:l,onAdd:n,onRemove:a});return e[c%i].push(d),e},l).map((e,t)=>s.a.createElement("div",{key:t,className:c,style:{width:100/i+"%",flexBasis:100/i+"%"}},e));return s.a.createElement("div",{className:"brz-ed-popup-two-blocks__grid"},d)}}function Fo(e){const t=f.a.get("urls").templateThumbnails;return t?`${t}/${e.id}.jpg`:Object(ue.a)(`thumbs/${e.id}.jpg`)}Object(i.a)(Ho,"defaultProps",{columns:co.d?5:4,responsive:[{breakpoint:1460,settings:{columns:co.d?4:3}},{breakpoint:1200,settings:{columns:3}}],ThumbnailComponent:ko});class _o extends l.Component{constructor(...e){super(...e),Object(i.a)(this,"state",{imageFetched:!1,showSpinner:!1}),Object(i.a)(this,"mounted",!1)}componentDidMount(){const{src:e,spinnerDelay:t}=this.props;this.mounted=!0,Object(ao.f)(e).then(()=>{this.setState({imageFetched:!0,showSpinner:!1})}),setTimeout(()=>{this.mounted&&!this.state.imageFetched&&this.setState({showSpinner:!0})},t)}render(){const{imageFetched:e,showSpinner:t}=this.state,{className:o,src:n,style:a}=this.props,r=g()("brz-img",o);return s.a.createElement(l.Fragment,null,e&&s.a.createElement("img",{className:r,src:n,style:a}),t&&s.a.createElement(F.b,{icon:"nc-circle-02",className:"brz-ed-animated--spin"}))}}Object(i.a)(_o,"defaultProps",{className:"",src:"",style:{},spinnerDelay:250});var Ro=o(97),Lo=o(43),Mo=o(62);function Io(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function Wo(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?Io(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):Io(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const No=f.a.get("urls"),Ao={animationName:"fadeIn",animationFillMode:"both",animationDelay:"200ms",animationDuration:"200ms"},Vo=Object(no.b)(e=>({projectStyles:Object(so.K)(e),projectFonts:Object(so.m)(e)}));class Do extends l.Component{constructor(...e){super(...e),Object(i.a)(this,"state",{active:this.props.data.pages[0].id,thumbnailHeight:0,transition:0,previewPointer:"none",replaceStyle:!1}),Object(i.a)(this,"thumbnailDetails",s.a.createRef()),Object(i.a)(this,"timeoutId",void 0),Object(i.a)(this,"handleUpdateThumbnail",()=>{var e,t;this.setState({thumbnailHeight:null!==(e=null===(t=this.thumbnailDetails.current)||void 0===t?void 0:t.clientHeight)&&void 0!==e?e:0})}),Object(i.a)(this,"handleBack",()=>{this.props.onBack()}),Object(i.a)(this,"handleThumbnailAdd",async()=>{var e,t;const{type:o,data:n,projectFonts:a,onAddBlocks:r,onClose:i}=this.props,{active:l,replaceStyle:s}=this.state,c=await fetch(Object(Mo.h)(o,l)),{blocks:d}=await c.json(),u=Object(Ro.b)({models:d});let p;if(!this.hasStyleInProject()){p=Object(Lo.s)(n.styles);const e=Object(V.b)(p,({fontStyles:e})=>e),t=Object(Ro.d)(e);u.push(...t)}r({blocks:d,styles:p,fonts:await Object(Lo.r)(Object(Ro.a)(u,a)),currentStyleId:s?null===(e=n.styles)||void 0===e||null===(t=e[0])||void 0===t?void 0:t.id:void 0}),i()}),Object(i.a)(this,"handleReplaceStyling",()=>{this.setState({replaceStyle:!this.state.replaceStyle})})}getTransition(e){return e/500}hasStyleInProject(){const{projectStyles:e,data:{styles:t}}=this.props;return e.find(({id:e})=>null==t?void 0:t.some(({id:t})=>t===e))}componentDidMount(){this.handleUpdateThumbnail(),window.addEventListener("resize",this.handleUpdateThumbnail);const e=setTimeout(()=>{this.setState({previewPointer:"auto"})},200);this.timeoutId=$.b(e)}componentWillUnmount(){window.removeEventListener("resize",this.handleUpdateThumbnail),clearTimeout(this.timeoutId)}renderSlotLeft(e){const{HeaderSlotLeft:t}=this.props;return t?s.a.createElement(t,null,e):e}render(){var e;const{type:t,data:{name:o,pages:n,styles:a=[],pro:r}}=this.props,{active:i,thumbnailHeight:l,previewPointer:c,replaceStyle:d}=this.state,u="stories"===t,p=n.find(({id:e})=>e===i),b=Fo(p),m=n.map((e,t)=>{const o=g()("brz-ed-popup-two-details-page-select",u&&"brz-ed-popup-two-details-page-select-stories",{"brz-ed-popup-two-details-page-select-active-block":e.id===i}),n=Fo(e);return s.a.createElement("div",{key:t,className:o,onClick:()=>{this.setState({active:e.id})}},s.a.createElement(_o,{src:n,style:Ao}),s.a.createElement("div",{className:"brz-ed-popup-two-details-page-select-active"},e.title))}),h=!A.h&&r,v=g()("brz-ed-popup-two-details-preview",u&&"brz-ed-popup-two-details-preview-stories"),f=g()("brz-ed-popup-two-details-right",u&&"brz-ed-popup-two-details-right-stories"),y=g()("brz-ed-popup-two-body__content brz-ed-popup-two-blocks__grid brz-ed-popup-two-details",u&&"brz-ed-popup-two-details-stories");return s.a.createElement(s.a.Fragment,null,this.renderSlotLeft(s.a.createElement("div",{className:"brz-ed-popup-two-header__search brz-ed-popup-two-header__search--hidden"})),s.a.createElement("div",{className:y},s.a.createElement("div",{className:"brz-ed-popup-two-details-left"},s.a.createElement("div",{className:"brz-ed-popup-two-details-back",onClick:this.handleBack},s.a.createElement(F.b,{icon:"nc-arrow-left",className:"brz-ed-popup-two-details-back-icon"}),u?Object(ie.a)("Back to Stories"):Object(ie.a)("Back to Layouts")),s.a.createElement("div",{ref:this.thumbnailDetails,className:v,style:{"--thumbnailHeight":l+"px","--previewPointer":""+c}},u?s.a.createElement(_o,{className:"brz-ed-popup-two-details-preview-img brz-ed-popup-two-details-preview-img-stories",src:b}):s.a.createElement(_o,{className:"brz-ed-popup-two-details-preview-img",src:b,style:Wo(Wo({},Ao),{},{"--transitionPreview":`transform ${this.getTransition(null!==(e=null==p?void 0:p.thumbnailHeight)&&void 0!==e?e:0)}s linear`})}))),s.a.createElement("div",{className:f},s.a.createElement("div",{className:"brz-ed-popup-two-details-title"},s.a.createElement("h2",{className:"brz-ed-popup-two-details-title-name"},o),s.a.createElement("div",{className:"brz-ed-popup-two-details-title-count"},n.length," ",n.length>1?u?Object(ie.a)("stories"):Object(ie.a)("layouts"):u?Object(ie.a)("story"):Object(ie.a)("layout"))),s.a.createElement("div",{className:"brz-ed-popup-two-details-page"},s.a.createElement(B.a,null,m))),s.a.createElement("div",{className:"brz-ed-popup-two-details-footer"},s.a.createElement("div",{className:"brz-ed-popup-two-details-footer-grid"},s.a.createElement("div",{className:"brz-ed-popup-two-details-footer-render"},s.a.createElement("div",{className:"brz-ed-popup-two-details-footer-radio"},h?s.a.createElement("div",{className:"brz-ed-popup-two-details-footer-radio-button brz-ed-popup-two-details-footer-radio-button--pro"},u?Object(ie.a)("Upgrade to PRO to use this story"):Object(ie.a)("Upgrade to PRO to use this layout")):a.length>0&&s.a.createElement("div",{className:"brz-ed-popup-two-details-footer-radio-button",onClick:this.handleReplaceStyling},s.a.createElement(F.b,{icon:d?"nc-check":"nc-uncheck",className:"brz-ed-popup-two-details-footer-radio-icon"}),Object(ie.a)("Replace global styling"))),h?s.a.createElement("a",{className:"brz-ed-btn brz-ed-btn-width-2 brz-ed-btn-sm brz-ed-btn-icon brz-ed-btn-icon--left brz-ed-btn-rounded brz-ed-btn-pro",href:No.upgradeToPro,rel:"noopener noreferrer",target:"_blank"},s.a.createElement(F.b,{icon:"nc-lock"}),Object(ie.a)("Get a PRO plan")):s.a.createElement("div",{className:"brz-ed-popup-two-details-footer-render-button",onClick:this.handleThumbnailAdd},u?Object(ie.a)("Import This Story"):Object(ie.a)("Import This Layout")))))))}}Object(i.a)(Do,"defaultProps",{type:"templates",data:{name:"",color:"",cat:[],pages:[],pro:!1,keywords:""},onClose:v.default.noop,onAddBlocks:v.default.noop,onBack:v.default.noop});var $o=Vo(Do);function Go(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function Uo(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?Go(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):Go(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const Ko={category:"*",search:""};class Yo extends l.Component{constructor(...e){super(...e),Object(i.a)(this,"state",{data:void 0,detailsData:void 0}),Object(i.a)(this,"filterFn",(e,t)=>{var o;const n=new RegExp(null===(o=t.search)||void 0===o?void 0:o.replace(/[.*+?^${}()|[\]\\]/g,""),"i"),a="*"===t.category||e.cat.includes(Number(t.category)),r=""===t.search||n.test(e.keywords)||n.test(e.name);return a&&r}),Object(i.a)(this,"handleThumbnailAdd",e=>{this.setState({detailsData:e})}),Object(i.a)(this,"handleBlankThumbnailAdd",async e=>{const{onAddBlocks:t,onClose:o}=this.props;t({blocks:[Uo(Uo({},await this.getBlockResolve(e.id)),{},{blockId:e.id})],fonts:[]}),o()}),Object(i.a)(this,"renderThumbnail",e=>{let{data:t}=e,o=Object(x.a)(e,["data"]);const{type:n}=this.props;return"stories"===n&&t.blank?s.a.createElement(ko,Object(C.a)({},o,{data:t.pages[0],onAdd:this.handleBlankThumbnailAdd})):s.a.createElement(Eo,Object(C.a)({data:t},o))})}async componentDidMount(){const e=await this.getData();this.setState({data:e})}async getData(){const e=Object(ue.a)(this.props.type+"/meta.json"),t=await fetch(e);return await t.json()}getLayoutData(e){return(e=>"stories"in e)(e)?e.stories:e.templates}async getBlockResolve(e){const t=Object(Mo.h)(this.props.type,e),o=await fetch(t);return await o.json()}renderSlotLeft(e){const{HeaderSlotLeft:t}=this.props;return t?s.a.createElement(t,null,e):e}renderLoading(){const{showSidebar:e,showSearch:t}=this.props;return s.a.createElement(s.a.Fragment,null,t&&this.renderSlotLeft(s.a.createElement(eo,{className:"brz-ed-popup-two-header__search"})),e&&s.a.createElement("div",{className:"brz-ed-popup-two-body__sidebar"},s.a.createElement("div",{className:"brz-ed-popup-two-sidebar-body"})),s.a.createElement("div",{className:"brz-ed-popup-two-body__content brz-ed-popup-two-body__content--loading"},s.a.createElement(F.b,{icon:"nc-circle-02",className:"brz-ed-animated--spin"})))}renderList(e){const{showSidebar:t,showSearch:o}=this.props,n=this.getLayoutData(e),a=n.map(e=>Uo(Uo(Uo({},e),e.pages[0]),{},{thumbnailSrc:Fo(e.pages[0])})),r={};for(let e=0;e<n.length;e++){const t=n[e].cat;for(let e=0;e<t.length;e++){const o=t[e];r["*"]=n.length,void 0===r[o]?r[o]=1:r[o]++}}const i=[{id:"*",title:Object(ie.a)("All Categories")}].concat(e.categories).filter(({hidden:e})=>!0!==e);return s.a.createElement(Yt,{data:a,filterFn:this.filterFn,defaultFilter:Ko},(e,n,a)=>s.a.createElement(s.a.Fragment,null,o&&this.renderSlotLeft(s.a.createElement(eo,{className:"brz-ed-popup-two-header__search",value:n.search,onChange:e=>a({search:e})})),t&&s.a.createElement(Qt,null,s.a.createElement(qt,{title:"CATEGORIES"},s.a.createElement(Xt,{lists:i,value:n.category,counters:r,onChange:e=>a({category:e})}))),s.a.createElement("div",{className:"brz-ed-popup-two-body__content brz-ed-popup-two-blocks-body-layouts"},s.a.createElement(B.a,null,e.length>0?s.a.createElement(Ho,{data:e,ThumbnailComponent:this.renderThumbnail,onThumbnailAdd:this.handleThumbnailAdd}):s.a.createElement("div",{className:"brz-ed-popup-two-blocks__grid brz-ed-popup-two-blocks__grid-clear"},s.a.createElement("p",{className:"brz-ed-popup-two-blocks__grid-clear-text"},Object(ie.a)("Nothing here, please refine your search.")))))))}renderDetails(e){const{type:t,onAddBlocks:o,onClose:n,HeaderSlotLeft:a}=this.props;return s.a.createElement($o,{type:t,data:e,HeaderSlotLeft:a,onAddBlocks:o,onBack:()=>{this.setState({detailsData:void 0})},onClose:n})}render(){const{data:e,detailsData:t}=this.state;return e?t?this.renderDetails(t):this.renderList(e):this.renderLoading()}}Object(i.a)(Yo,"defaultProps",{type:"templates",showSidebar:!0,showSearch:!0,onAddBlocks:v.default.noop,onClose:v.default.noop,onNext:v.default.noop});var qo=o(31);let Xo={type:0,category:"*",search:""};class Zo extends l.Component{constructor(...e){super(...e),Object(i.a)(this,"filterData",(e,t)=>{const o=t.type===e.type,n="*"===t.category||e.cat.includes(Number(t.category)),a=""===t.search||new RegExp(t.search.replace(/[.*+?^${}()|[\]\\]/g,""),"i").test(e.keywords);return o&&n&&a})}getTypesCounters(){const{blocks:e,types:t}=this.props,o=t.reduce((e,{id:t})=>Object.assign(e,{[t]:0}),{});return e.forEach(({type:e})=>{o[e]++}),o}getCategoriesCounter(e){let{blocks:t,types:o,showType:n}=this.props,a=t.length;return n&&o.length&&(t=t.filter(t=>t.type===e),a=t.length),t.reduce((e,{cat:t})=>(t.forEach(t=>{e[t]?Object.assign(e,{[t]:++e[t]}):Object.assign(e,{[t]:1})}),e),{"*":a})}renderLoading(){const{showSidebar:e,showSearch:t,HeaderSlotLeft:o}=this.props;return s.a.createElement(s.a.Fragment,null,t&&s.a.createElement(o,null,s.a.createElement(eo,{className:"brz-ed-popup-two-header__search"})),e&&s.a.createElement("div",{className:"brz-ed-popup-two-body__sidebar"},s.a.createElement("div",{className:"brz-ed-popup-two-sidebar-body"})),s.a.createElement("div",{className:"brz-ed-popup-two-body__content brz-ed-popup-two-body__content--loading"},s.a.createElement(F.b,{icon:"nc-circle-02",className:"brz-ed-animated--spin"})))}render(){const{loading:e,kits:t,blocks:o,types:n,categories:a,selectedKit:r,showSearch:i,showSidebar:l,HeaderSlotLeft:c,onChangeKit:d,onChange:u}=this.props;if(e)return this.renderLoading();const p=t.filter(({id:e})=>e!==r).length>0,b=n.length>0,m=a.length>0;return s.a.createElement(Yt,{data:o,filterFn:this.filterData,defaultFilter:Xo},(e,o,h)=>(Xo.type=o.type,s.a.createElement(s.a.Fragment,null,i&&s.a.createElement(c,null,s.a.createElement(eo,{className:"brz-ed-popup-two-header__search",value:o.search,onChange:e=>h({search:e})})),l&&s.a.createElement(Qt,null,p&&s.a.createElement(qt,{title:"BLOCKS"},s.a.createElement(O.a,{defaultValue:r,className:"brz-control__select--dark brz-control__select--full-width",maxItems:"6",itemHeight:"30",onChange:d},t.map(({id:e,name:t},o)=>s.a.createElement(S.a,{key:o,value:e},t)))),b&&s.a.createElement(qt,{title:"STYLES"},s.a.createElement(Xt,{lists:n,counters:this.getTypesCounters(),value:o.type,onChange:e=>h({type:e})})),m&&s.a.createElement(qt,{title:"CATEGORIES"},s.a.createElement(Xt,{lists:a,counters:this.getCategoriesCounter(o.type),value:o.category,onChange:e=>h({category:e})}))),s.a.createElement("div",{className:"brz-ed-popup-two-body__content"},s.a.createElement(B.a,null,e.length>0?s.a.createElement(Ho,{data:e,onThumbnailAdd:u}):s.a.createElement("div",{className:"brz-ed-popup-two-blocks__grid brz-ed-popup-two-blocks__grid-clear"},s.a.createElement("p",{className:"brz-ed-popup-two-blocks__grid-clear-text"},Object(ie.a)("Nothing here, please refine your search."))))))))}}Object(i.a)(Zo,"defaultProps",{showSidebar:!0,showSearch:!0,loading:!1,kits:[],styles:[],types:[],categories:[],blocks:[],HeaderSlotLeft:v.default.noop,onAddBlocks:v.default.noop,onClose:v.default.noop,onChange:v.default.noop,onChangeKit:v.default.noop});var Jo=Zo;function Qo(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function en(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?Qo(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):Qo(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}class tn extends l.Component{constructor(...e){super(...e),Object(i.a)(this,"state",{kits:[],loading:!0,styles:[],types:[],categories:[],blocks:[]}),Object(i.a)(this,"mounted",!1),Object(i.a)(this,"handleThumbnailAdd",async e=>{const{projectFonts:t,onAddBlocks:o,onClose:n}=this.props,a=en(en({},await this.getBlockResolve(e.id)),{},{blockId:e.id}),r=Object(Ro.a)(Object(Ro.b)({models:a}),t);o({block:a,fonts:await Object(Lo.r)(r)}),n()}),Object(i.a)(this,"handleImportKit",async e=>{const{selectedKit:t,projectFonts:o,projectStyles:n,dispatch:a}=this.props,{kits:r}=this.state;if(t===e)return;const i=this.getKitData(r,e),{styles:l}=i;if(this.setState(i),l.some(({id:e})=>!n.some(({id:t})=>t===e))){const t=l.reduce((e,{fontStyles:t})=>e.concat(Object(Ro.d)(t)),[]),n=await Object(Lo.r)(Object(Ro.a)(t,o));a(Object(qo.G)({selectedKit:e,styles:l?Object(Lo.s)(l):void 0,fonts:n}))}else a(Object(qo.I)(e))})}async getMeta(){const{type:e}=this.props;if("popup"===e){const e=await fetch(Object(ue.a)("popups/meta.json"));return await e.json()}{const e=await fetch(Object(ue.a)("kits/meta.json"));return await e.json()}}async getBlockResolve(e){const{type:t}=this.props;if("popup"===t){const t=await fetch(Object(Mo.h)("popups",e));return await t.json()}{const t=await fetch(Object(Mo.h)("kits",e));return await t.json()}}getKitData(e,t=this.props.selectedKit){const o=e.find(({id:e})=>e===t),{categories:n,blocks:a,styles:r,types:i}=o,l=[{id:"*",title:Object(ie.a)("All Categories")},...n],s=a.map(e=>en(en({},e),{},{thumbnailSrc:Object(Mo.a)(e)}));return{kits:e,styles:r,types:i,categories:l.filter(({hidden:e})=>!0!==e),blocks:s}}getPopupData({blocks:e,categories:t=[],types:o=[]}){const n=[{id:"*",title:Object(ie.a)("All Categories")},...t];return{types:o,blocks:e.map(e=>en(en({},e),{},{pro:(!co.a||"blank"!==e.blank)&&e.pro,thumbnailSrc:Object(Mo.a)(e)})),categories:n.filter(({hidden:e})=>!0!==e)}}async componentDidMount(){this.mounted=!0;const e=await this.getMeta();if(this.mounted){const t="normal"===this.props.type?this.getKitData(e):this.getPopupData(e);this.setState(en(en({},t),{},{loading:!1}))}}componentWillUnmount(){this.mounted=!1}render(){const{kits:e,types:t,blocks:o,categories:n,loading:a}=this.state,{showSearch:r,showSidebar:i,selectedKit:l,HeaderSlotLeft:c}=this.props;return s.a.createElement(Jo,{loading:a,selectedKit:l,kits:e,blocks:o,categories:n,types:t,showSearch:r,showSidebar:i,HeaderSlotLeft:c,onChangeKit:this.handleImportKit,onChange:this.handleThumbnailAdd})}}Object(i.a)(tn,"defaultProps",{showSidebar:!0,showSearch:!0,showType:!0,showCategories:!0,type:"normal",HeaderSlotLeft:v.default.noop(),onAddBlocks:v.default.noop,onClose:v.default.noop});var on=Object(no.b)(e=>({selectedKit:Object(so.E)(e).data.selectedKit,projectFonts:Object(so.m)(e),projectStyles:Object(so.K)(e)}),e=>({dispatch:e}))(tn),nn=o(28);class an extends l.Component{constructor(...e){super(...e),Object(i.a)(this,"state",{search:""}),Object(i.a)(this,"handleThumbnailAdd",async e=>{const{globalBlocks:t,projectFonts:o,onAddBlocks:n,onClose:a}=this.props,{resolve:r}=e,i=Object(Ro.a)(Object(Ro.b)({models:r,globalBlocks:t}),o);n({block:r,fonts:await Object(Lo.r)(i)}),a()}),Object(i.a)(this,"handleThumbnailRemove",e=>{const{dispatch:t}=this.props,{id:o}=e;t(Object(nn.h)({id:o}))})}getBlocks(){const{type:e,globalBlocks:t}=this.props;return Object.values(t).filter(({data:t,meta:o={}})=>!t.deleted&&o.type===e)}renderThumbnails(e){const{HeaderSlotLeft:t,showSearch:o}=this.props;return s.a.createElement(l.Fragment,null,o&&s.a.createElement(t,null,s.a.createElement(eo,{className:"brz-ed-popup-two-header__search",value:this.state.search,onChange:e=>this.setState({search:e})})),s.a.createElement("div",{className:"brz-ed-popup-two-body__content"},s.a.createElement(B.a,null,s.a.createElement(Ho,{data:e,onThumbnailAdd:this.handleThumbnailAdd,onThumbnailRemove:this.handleThumbnailRemove}))))}renderEmpty(){const{HeaderSlotLeft:e,showSearch:t,type:o}=this.props;let n,a=Object(ie.a)("Nothing here yet, make a global block first.");switch(o){case"popup":n=co.b?"editor/img/global_condition_popups_toolbar.gif":"editor/img/global_popups_toolbar.gif",a=Object(ie.a)("Nothing here yet, make a global popup first.");break;default:n="editor/img/global_toolbar.gif"}return s.a.createElement(l.Fragment,null,t&&s.a.createElement(e,null,s.a.createElement(eo,{className:"brz-ed-popup-two-header__search",value:this.state.search,onChange:e=>this.setState({search:e})})),s.a.createElement("div",{className:"brz-ed-popup-two-body__content brz-flex-xs-column"},s.a.createElement("div",{className:"brz-ed-popup-two-blocks__grid brz-ed-popup-two-blocks__grid-clear"},""!==this.state.search?s.a.createElement("p",{className:"brz-ed-popup-two-blocks__grid-clear-text"},Object(ie.a)("Nothing here, please refine your search.")):s.a.createElement(l.Fragment,null,s.a.createElement("p",{className:"brz-ed-popup-two-blocks__grid-clear-text"},a),s.a.createElement("img",{src:`${Object(ue.a)(n)}?${Math.random()}`,className:"brz-ed-popup-two-blocks__grid-clear-image-global",alt:"Global"})))))}renderProInfo(){return s.a.createElement("div",{className:"brz-ed-tooltip-content__pro"},s.a.createElement("p",{className:"brz-p brz-ed-tooltip-content__pro-title"},Object(ie.a)("You can't add it again")))}renderThumbnailTooltip(e){return s.a.createElement(Se.b,{className:"brz-ed-global-tooltip",overlayClassName:"brz-ed-tooltip--delay-1",size:"small",offset:"5",openOnClick:!1,overlay:this.renderProInfo()},e)}render(){const{globalBlocksInPage:e}=this.props,t=this.getBlocks();if(0===t.length)return this.renderEmpty();const o=t.map(t=>{const{url:o,width:n,height:a}=Object(Mo.b)(t.data),{type:r,value:{_id:i}}=t.data,l=!co.b&&"SectionPopup"!==r&&"SectionPopup2"!==r&&e[i];return{id:i,thumbnailSrc:o,thumbnailWidth:n,thumbnailHeight:a,showRemoveIcon:!0,renderWrapper:e=>l?this.renderThumbnailTooltip(e):e,inactive:l,resolve:{type:"GlobalBlock",value:{_id:i}}}},[]);return this.renderThumbnails(o)}}Object(i.a)(an,"defaultProps",{type:"normal",showSearch:!0,onAddBlocks:v.default.noop,onClose:v.default.noop,HeaderSlotLeft:v.default.noop}),Object(i.a)(an,"propTypes",{type:oo.a.oneOf(["normal","popup"]),showSearch:oo.a.bool,showSidebar:oo.a.bool,onAddBlocks:oo.a.func,onClose:oo.a.func,HeaderSlotLeft:oo.a.func});var rn=Object(no.b)(e=>({globalBlocks:Object(so.o)(e),globalBlocksInPage:Object(so.p)(e),projectFonts:Object(so.m)(e)}),e=>({dispatch:e}))(an);const ln=()=>{const{hash:e,url:t,cloudSync:o}=f.a.get("wp").api,n=f.a.get("editorVersion"),a=He(t,{hash:e,version:n,action:o});return new Promise((e,t)=>{Object(pe.L)(a,{method:"GET",headers:{"Content-Type":"application/json; charset=utf-8"}}).then(Fe).then(o=>{const{status:n,data:a}=o;if(!n||n>=400)throw o;{const{synchronized:n}=a;0===n?e(o):ln().then(e).catch(t)}}).catch(t)})},sn=()=>{const{hash:e,url:t,cloudSyncAllowed:o}=f.a.get("wp").api,n=f.a.get("editorVersion"),a=He(t,{hash:e,version:n,action:o});return Object(pe.L)(a,{method:"GET",headers:{"Content-Type":"application/json; charset=utf-8"}}).then(Fe).then(e=>e)},cn=()=>{const[e,t]=Object(l.useState)(!1),[o,n]=Object(l.useState)(!1),[a,r]=Object(l.useState)(void 0);return Object(l.useEffect)(()=>{o&&(()=>{const{hash:e,url:t,cloudSignOut:o}=f.a.get("wp").api,n=f.a.get("editorVersion"),a=He(t,{hash:e,version:n,action:o});return Object(pe.L)(a,{method:"GET",headers:{"Content-Type":"application/json; charset=utf-8"}}).then(Fe).then(e=>e)})().then(e=>{!e.status||e.status>=400?(r(e),uo.a.error(Object(ie.a)("Something went wrong"),{toastContainer:window.parent.document.body})):(n(!1),t(!0))}).catch(e=>{n(!1),r(e),uo.a.error(Object(ie.a)("Something went wrong"),{toastContainer:window.parent.document.body})})},[o]),Object(l.useEffect)(()=>{e&&t(!1)},[e]),{isDisconnect:e,error:a,loading:o,setDisconnect:()=>{n(!0)}}};var dn=o(166);const un={updateAuthorization:nn.v};var pn=Object(no.b)(e=>({isAuthorized:"connected"===Object(so.a)(e),syncAllowed:Object(so.L)(e)}),un)(e=>{const{isAuthorized:t,syncAllowed:o,onSuccessSync:n,updateAuthorization:a}=e,{isSync:r,setSync:i,loading:c}=(()=>{const[e,t]=Object(l.useState)(!1),[o,n]=Object(l.useState)(!1),[a,r]=Object(l.useState)(void 0);return Object(l.useEffect)(()=>{o&&ln().then(e=>{!e.status||e.status>=400?(r(e),uo.a.error(Object(ie.a)("Unsuccessful sync"),{toastContainer:window.parent.document.body})):(n(!1),t(!0),uo.a.success(Object(ie.a)("Done, your library was synced"),{toastContainer:window.parent.document.body}))}).catch(e=>{n(!1),r(e),uo.a.error(Object(ie.a)("Unsuccessful sync"),{toastContainer:window.parent.document.body})})},[o]),{isSync:e,error:a,loading:o,setSync:()=>{n(!0)}}})(),{isDisconnect:d,setDisconnect:u,loading:p}=cn();return Object(l.useEffect)(()=>{r&&n&&n()},[r]),Object(l.useEffect)(()=>{d&&(a("disconnect"),Object(dn.b)("disconnect"))},[d]),s.a.createElement("div",{className:"brz-ed-popup-two__cloud"},s.a.createElement("p",{className:"brz-p"},t?Object(ie.a)("Saved Library is syncing to your Account"):Object(ie.a)("Access your Library in any WP install by connecting your Account")),s.a.createElement("div",{className:"brz-ed-popup-two__cloud-icon"},s.a.createElement("div",{className:"brz-d-inline-block brz-p-relative"},s.a.createElement(F.b,{icon:"nc-upload"}),t&&s.a.createElement("div",{className:"brz-ed-popup-two__cloud-icon--connect"},s.a.createElement(F.b,{icon:"nc-check-circle-white"})))),s.a.createElement(Ge,{className:"brz-ed-popup-two__cloud-button",size:4,color:t?"gray":"teal",loading:p,onClick:()=>{t?u():Ws.open({mode:"stack",prompt:"authorization",props:{}})}},t?Object(ie.a)("Disconnect"):Object(ie.a)("Connect")),t&&o&&s.a.createElement(Ge,{className:"brz-ed-popup-two__cloud-button-sync",size:4,color:"teal",loading:c,onClick:()=>{i()}},Object(ie.a)("Sync Now")),!o&&s.a.createElement("p",{className:"brz-p"},Object(ie.a)("Your Plugin version is incompatible with Account version, please update plugin")))});const bn=e=>{const{alignX:t="top",alignY:o="left",className:n,children:a}=e,r=g()("brz-ed-popup-two__footer",n,{["brz-ed-popup-two__footer--x-"+t]:t,["brz-ed-popup-two__footer--y-"+o]:o});return s.a.createElement("div",{className:r},a)};function mn(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function hn(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?mn(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):mn(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const gn={flex:1};class vn extends l.Component{constructor(...e){var t,o;super(...e),Object(i.a)(this,"importRef",s.a.createRef()),Object(i.a)(this,"currentFilter",{type:null!==(t=null===(o=this.props.types[0])||void 0===o?void 0:o.id)&&void 0!==t?t:"BLOCK",search:""}),Object(i.a)(this,"getDefaultFilter",v.default.memoize(e=>({type:e.length?e[0].id:"BLOCK",search:""}))),Object(i.a)(this,"getTypesCounters",()=>{const{items:e,types:t}=this.props,o=t.reduce((e,{id:t})=>hn(hn({},e),{},{[t]:0}),{});return e.forEach(({type:e})=>{o[e]++}),o}),Object(i.a)(this,"filterData",(e,t)=>{const o=t.type===e.type,n=""===t.search||new RegExp(t.search.replace(/[.*+?^${}()|[\]\\]/g,""),"i").test(e.keywords||"");return o&&n}),Object(i.a)(this,"handleImport",e=>{const{types:t,onImport:o}=this.props,n=e.target.files;if(null!=n&&n.length&&"function"==typeof o){const e=this.getActiveType(t),a=this.importRef.current;o(n,e),a&&(a.value="")}}),Object(i.a)(this,"handleExport",()=>{const{items:e,types:t,onExport:o}=this.props;if("function"==typeof o){const n=this.getActiveType(t);o(e.filter(e=>this.filterData(e,this.currentFilter)).map(e=>e.uid),n)}})}getActiveType(e){return this.currentFilter.type||e[0].id}renderLoading(){return s.a.createElement("div",{className:"brz-ed-popup-two-body__content brz-ed-popup-two-body__content--loading"},s.a.createElement(F.b,{icon:"nc-circle-02",className:"brz-ed-animated--spin"}))}renderEmpty(){const{type:e,types:t,search:o,onImport:n}=this.props,a=this.getActiveType(t),r={width:"LAYOUT"===a?"524px":"322px"};let i="editor/img/save_toolbar.gif",l=Object(ie.a)("Nothing here yet, save a block first.");const c="function"==typeof n;return"popup"===e&&(i="editor/img/save_popups_toolbar.gif",l=Object(ie.a)("Nothing here yet, save a popup first.")),"LAYOUT"===a&&(l=Object(ie.a)("Nothing here yet, save a layout first."),i="editor/img/save_layout.gif"),s.a.createElement("div",{className:"brz-ed-popup-two-body__content brz-flex-xs-column"},s.a.createElement("div",{className:"brz-ed-popup-two-blocks__grid brz-ed-popup-two-blocks__grid-clear"},""!==o?s.a.createElement("p",{className:"brz-ed-popup-two-blocks__grid-clear-text"},Object(ie.a)("Nothing here, please refine your search.")):s.a.createElement(s.a.Fragment,null,s.a.createElement("p",{className:"brz-ed-popup-two-blocks__grid-clear-text"},l),s.a.createElement("img",{key:a,style:r,src:Object(ue.a)(i),className:"brz-ed-popup-two-blocks__grid-clear-image-saved",alt:"Saved"}))),c&&s.a.createElement(bn,{alignX:"middle",alignY:"middle"},this.renderImport()))}renderItems(e){const{thumbnailSync:t,thumbnailDownload:o,onChange:n,onDelete:a,onExport:r,onImport:i}=this.props,l="function"==typeof i,c="function"==typeof r,d=l||c;return s.a.createElement("div",{className:"brz-ed-popup-two-body__content brz-flex-xs-column"},s.a.createElement(B.a,{style:gn},s.a.createElement(Ho,{showSync:t,showDownload:o,data:e,onThumbnailAdd:n,onThumbnailRemove:a})),d&&s.a.createElement(bn,{alignX:"middle",alignY:"middle"},c&&this.renderExport(),l&&this.renderImport()))}renderImport(){const{importLoading:e,types:t}=this.props,o=this.getActiveType(t),n=g()("brz-label brz-ed-popup-two-body__content--import",{"brz-pointer-events-none":e}),a="POPUP"===o?Object(ie.a)("Import New Popup"):"BLOCK"===o?Object(ie.a)("Import New Block"):Object(ie.a)("Import New Layout");return s.a.createElement("label",{className:n},s.a.createElement(Ge,{type:"link",color:"teal",loading:e,size:2},a),s.a.createElement("input",{ref:this.importRef,hidden:!0,className:"brz-input",type:"file",accept:"zip,application/octet-stream,application/zip,application/x-zip,application/x-zip-compressed",onChange:this.handleImport}))}renderExport(){const{exportLoading:e,types:t}=this.props,o=this.getActiveType(t),n="POPUP"===o?Object(ie.a)("Export All Popups"):"BLOCK"===o?Object(ie.a)("Export All Blocks"):Object(ie.a)("Export All Layouts");return s.a.createElement(Ge,{color:"gray",loading:e,size:2,onClick:this.handleExport},n)}render(){const{loading:e,items:t,types:o,showSearch:n,sidebarSync:a,HeaderSlotLeft:r,onSuccessSync:i}=this.props;return s.a.createElement(Yt,{data:t,filterFn:this.filterData,defaultFilter:this.getDefaultFilter(o)},(t,l,c)=>s.a.createElement(s.a.Fragment,null,n&&s.a.createElement(r,null,s.a.createElement(eo,{className:"brz-ed-popup-two-header__search",value:l.search,onChange:e=>{c({search:e}),this.currentFilter.search=e}})),s.a.createElement(Qt,null,s.a.createElement(qt,{title:"LIBRARY"},s.a.createElement(Xt,{lists:o,counters:this.getTypesCounters(),value:l.type,onChange:e=>{c({type:e}),this.currentFilter.type=e}})),a&&s.a.createElement(qt,{separator:!0},s.a.createElement(pn,{onSuccessSync:i}))),e?this.renderLoading():0===t.length?this.renderEmpty():this.renderItems(t)))}}Object(i.a)(vn,"defaultProps",{type:"normal",showSearch:!0,sidebarSync:!0,search:"",loading:!1,items:[],types:[],HeaderSlotLeft:l.Component,onChange:v.default.noop,onDelete:v.default.noop,onSuccessSync:v.default.noop});var fn=vn,yn=o(197);const On=e=>"items"in e.data,Sn=e=>"value"in e.data&&"normal"===e.meta.type,xn=e=>"value"in e.data&&"popup"===e.meta.type;function Cn(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function jn(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?Cn(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):Cn(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}class Pn extends l.Component{constructor(...e){var t;super(...e),Object(i.a)(this,"state",{search:"",blocks:[],loading:!0,importLoading:!1,exportLoading:!1,types:(t=this.props.type,"normal"===t?[{id:"BLOCK",title:Object(ie.a)("Blocks"),icon:"nc-blocks"},{id:"LAYOUT",title:Object(ie.a)("Layouts"),icon:"nc-pages"}]:[{id:"POPUP",title:Object(ie.a)("Popups"),icon:"nc-blocks"}])}),Object(i.a)(this,"unMount",!1),Object(i.a)(this,"updateBlocks",async()=>{const e="normal"===this.props.type?await this.getBlocks():await this.getPopups();this.unMount||this.setState({blocks:e})}),Object(i.a)(this,"handleAddItems",({type:e,uid:t})=>{switch(this.handleLoadingBlock(t,!0),e){case"BLOCK":this.handleAddBlock(t).catch(()=>{var e;this.handleLoadingBlock(t,!1);const{getParentNode:o}=this.props,n=null===(e=(o&&o()||document).ownerDocument)||void 0===e?void 0:e.body;uo.a.error(Object(ie.a)("Unable to insert block. Please try again or contact support"),{toastContainer:n})});break;case"POPUP":this.handleAddPopup(t).catch(()=>{var e;this.handleLoadingBlock(t,!1);const{getParentNode:o}=this.props,n=null===(e=(o&&o()||document).ownerDocument)||void 0===e?void 0:e.body;uo.a.error(Object(ie.a)("Unable to insert popup. Please try again or contact support"),{toastContainer:n})});break;case"LAYOUT":this.handleAddLayout(t).catch(()=>{var e;this.handleLoadingBlock(t,!1);const{getParentNode:o}=this.props,n=null===(e=(o&&o()||document).ownerDocument)||void 0===e?void 0:e.body;uo.a.error(Object(ie.a)("Unable to insert layout. Please try again or contact support"),{toastContainer:n})})}}),Object(i.a)(this,"handleDeleteItem",({type:e,uid:t})=>{switch(e){case"BLOCK":case"POPUP":Object(pe.g)(t);break;case"LAYOUT":Object(pe.h)(t)}this.setState(({blocks:e})=>({blocks:e.filter(e=>e.uid!==t)}))}),Object(i.a)(this,"handleImport",async(e,t)=>{this.setState({importLoading:!0});const o=Object(Qe.match)([mo,()=>Object(pe.hb)(e)],[ho,()=>Object(pe.jb)(e)],[go,()=>Object(pe.ib)(e)]);try{const e=await o(t);e.success.length&&(await this.updateBlocks(),((e,t)=>{const o={toastContainer:window.parent.document.body,hideAfter:5};e.success.forEach(e=>{switch(t){case"BLOCK":On(e)&&uo.a.error("Your .zip contains layouts. We imported them in the Saved Layouts library",o),xn(e)&&uo.a.error("Your .zip contains popups blocks. We imported them in the Saved Popups library",o);break;case"POPUP":On(e)&&uo.a.error("Your .zip contains layouts. We imported them in the Saved Layouts library",o),Sn(e)&&uo.a.error("Your .zip contains regular blocks. We imported them in the Saved Blocks library",o);break;case"LAYOUT":Sn(e)&&uo.a.error("Your .zip contains regular blocks. We imported them in the Saved Blocks library",o),xn(e)&&uo.a.error("Your .zip contains popups blocks. We imported them in the Saved Popups library",o)}})})(e,t)),this.unMount||(this.setState({importLoading:!1}),e.errors.forEach(({message:e})=>{uo.a.error(e,{toastContainer:window.parent.document.body})}))}catch(e){0,this.unMount||this.setState({importLoading:!1},()=>{const t=(e=>"object"!=typeof e?Object(ie.a)("Something went wrong"):(e=>"data"in e)(e)?e.data:(e=>"message"in e)(e)?e.message:Object(ie.a)("Something went wrong"))(e);uo.a.error(t,{toastContainer:window.parent.document.body})})}})}async componentDidMount(){const e="normal"===this.props.type?await this.getBlocks():await this.getPopups();this.unMount||this.setState({blocks:e,loading:!1})}componentDidUpdate(e){e.isAuthorized!==this.props.isAuthorized&&this.updateBlocks()}componentWillUnmount(){this.unMount=!0}async getBlocks(){const e=(await Object(pe.B)()).filter(({meta:e})=>"normal"===(null==e?void 0:e.type)),t=await Object(pe.D)();return[...e.map(e=>jn(jn({},this.makeThumbsData(e)),{},{uid:e.uid,type:"BLOCK",synchronized:e.synchronized||!1,synchronizable:e.synchronizable||!1})),...t.map(e=>jn(jn({},this.makeThumbsData(e)),{},{uid:e.uid,type:"LAYOUT",synchronized:e.synchronized||!1,synchronizable:e.synchronizable||!1}))]}async getAssets(e){const{projectFonts:t,projectExtraFontStyles:o}=this.props,{extraFontStyles:n=[]}=e.meta||{},a=Object(Ro.b)({models:e}),r=Object(Ro.d)(n),i=await Object(Lo.r)(Object(Ro.a)([...a,...r],t)),l=n.filter(({id:e})=>!o.some(t=>t.id===e));return{fonts:i,extraFontStyles:Object(Lo.q)(l)}}async getPopups(){return(await Object(pe.B)()).filter(({meta:e})=>"popup"===(null==e?void 0:e.type)).map(e=>jn(jn({},this.makeThumbsData(e)),{},{uid:e.uid,type:"POPUP",synchronized:e.synchronized||!1,synchronizable:e.synchronizable||!1}))}async handleAddLayout(e){const{onAddBlocks:t,onClose:o}=this.props,{data:n,meta:a}=await Object(pe.C)(e),{fonts:r,extraFontStyles:i}=await this.getAssets({data:n,meta:a});this.unMount||(t({fonts:r,extraFontStyles:i,blocks:n.items}),o())}async handleAddBlock(e){const{onAddBlocks:t,onClose:o}=this.props,{data:n,meta:a}=await Object(pe.A)(e),{fonts:r,extraFontStyles:i}=await this.getAssets({data:n,meta:a});this.unMount||(t({fonts:r,extraFontStyles:i,blocks:[n]}),o())}async handleAddPopup(e){const{onAddBlocks:t,onClose:o}=this.props,{data:n,meta:a}=await Object(pe.A)(e),{fonts:r,extraFontStyles:i}=await this.getAssets({data:n,meta:a});this.unMount||(t({fonts:r,extraFontStyles:i,blocks:[n]}),o())}handleLoadingBlock(e,t){this.setState(Object(c.a)(o=>{o.blocks.forEach((n,a)=>{n.uid==e&&(o.blocks[a].loading=t)})}))}makeThumbsData(e){const{url:t,width:o,height:n}=Object(Mo.b)(e);return{thumbnailSrc:t,thumbnailWidth:o,thumbnailHeight:n,showRemoveIcon:!0!==e.isCloudEntity,loading:!1}}render(){const{loading:e,blocks:t,types:o,search:n,importLoading:a,exportLoading:r}=this.state,{type:i,HeaderSlotLeft:l,showSearch:c}=this.props,d=Object(yn.b)();return s.a.createElement(fn,{type:i,loading:e,items:t,types:o,showSearch:c,sidebarSync:!d,thumbnailSync:A.o,thumbnailDownload:A.o,search:n,importLoading:a,exportLoading:r,HeaderSlotLeft:l,onSuccessSync:this.updateBlocks,onChange:this.handleAddItems,onDelete:this.handleDeleteItem,onImport:A.o?this.handleImport:void 0})}}Object(i.a)(Pn,"defaultProps",{type:"normal",showSearch:!0,projectFonts:{},projectExtraFontStyles:[],isAuthorized:!1,onAddBlocks:v.default.noop,onClose:v.default.noop,HeaderSlotLeft:l.Component,getParentNode:()=>null});var Bn=Object(no.b)(e=>({projectFonts:Object(so.m)(e),projectExtraFontStyles:Object(so.l)(e),isAuthorized:"connected"===Object(so.a)(e)}))(Pn);const wn=[{id:"template",title:co.d?Object(ie.a)("Stories"):Object(ie.a)("Layouts"),icon:"nc-pages",renderTab:e=>s.a.createElement(Yo,Object(C.a)({},e,{type:co.d?"stories":"templates"}))},{id:"blocks",title:co.b?Object(ie.a)("Popups"):Object(ie.a)("Blocks"),icon:"nc-blocks",renderTab:e=>s.a.createElement(on,e)},{id:"saved",title:co.b?Object(ie.a)("Saved Popups"):Object(ie.a)("Saved"),icon:"nc-save-section",renderTab:e=>s.a.createElement(Bn,e)},{id:"global",title:co.b?Object(ie.a)("Global Popups"):Object(ie.a)("Global Blocks"),icon:"nc-global",renderTab:e=>s.a.createElement(rn,e)}];class Tn extends l.Component{constructor(...e){super(...e),Object(i.a)(this,"state",{currentTab:this.props.activeTab||"blocks"}),Object(i.a)(this,"wrapper",s.a.createRef()),Object(i.a)(this,"mounted",!1),Object(i.a)(this,"getWrapper",()=>this.wrapper.current),Object(i.a)(this,"handleChange",e=>{const{currentTab:t}=this.state,{onChangeBlocks:o,onChangeGlobal:n,onChangeSaved:a,onChangeTemplate:r}=this.props;switch(t){case"blocks":null==o||o(e);break;case"template":null==r||r(e);break;case"saved":null==a||a(e);break;case"global":null==n||n(e)}}),Object(i.a)(this,"handleClose",()=>{var e,t;this.mounted&&(null===(e=(t=this.props).onClose)||void 0===e||e.call(t))})}componentDidMount(){this.mounted=!0}componentWillUnmount(){this.mounted=!1}hasSearch(e){return!!Object($t.a)(e+"Search",this.props)}hasSidebar(e){return!!Object($t.a)(e+"Sidebar",this.props)}handleTabChange(e){this.setState({currentTab:e})}renderTabs(){const{currentTab:e}=this.state,t=wn.filter(({id:e})=>{const t="show"+Object(Gt.c)(e);return!!Object($t.a)(t,this.props)}).map(t=>{const o=g()("brz-ed-popup-two-tab-item",{"brz-ed-popup-two-tab-item-active":t.id===e});return s.a.createElement("div",{key:t.id,className:o,onClick:()=>{this.handleTabChange(t.id)}},s.a.createElement("div",{className:"brz-ed-popup-two-tab-icon"},s.a.createElement(F.b,{icon:t.icon})),s.a.createElement("div",{className:"brz-ed-popup-two-tab-name"},t.title))});return s.a.createElement("div",{className:"brz-ed-popup-two-header"},s.a.createElement("div",{id:"brz-ed-popup-header-left-slot"}),s.a.createElement("div",{className:"brz-ed-popup-two-header__tabs"},t),s.a.createElement("div",{id:"brz-ed-popup-header-right-slot"}),s.a.createElement("div",{className:"brz-ed-popup-two-btn-close",onClick:this.props.onClose}))}renderContent(){const{currentTab:e}=this.state,{renderTab:t}=wn.find(({id:t})=>t===e)||wn[0];return t({HeaderSlotLeft:e=>s.a.createElement(zn,Object(C.a)({},e,{slot:"left"})),type:this.props.type,onClose:this.handleClose,showSearch:this.hasSearch(e),showSidebar:this.hasSidebar(e),onAddBlocks:this.handleChange,getParentNode:this.getWrapper})}render(){return s.a.createElement(y.a,{opened:this.props.opened,onClose:this.handleClose},s.a.createElement("div",{ref:this.wrapper,className:"brz-ed-popup-two-wrapper brz-ed-popup-two-blocks"},this.renderTabs(),s.a.createElement("div",{className:"brz-ed-popup-two-body"},this.renderContent())))}}Object(i.a)(Tn,"defaultProps",{activeTab:"blocks",type:"normal",opened:!1,showTemplate:!0,showBlocks:!0,showSaved:!0,showGlobal:!0,templateSidebar:!0,blocksSidebar:!0,savedSidebar:!0,globalSidebar:!0,templateSearch:!0,blocksSearch:!0,savedSearch:!0,globalSearch:!0,onChangeBlocks:v.default.noop,onChangeTemplate:v.default.noop,onChangeSaved:v.default.noop,onChangeGlobal:v.default.noop,onClose:v.default.noop});class zn extends l.Component{constructor(...e){super(...e),Object(i.a)(this,"state",{isMounted:!1}),Object(i.a)(this,"headerSlotNode",null)}componentDidMount(){this.headerSlotNode=window.parent.document.querySelector(`#brz-ed-popup-header-${this.props.slot}-slot`),this.setState({isMounted:!0})}render(){return this.state.isMounted&&this.headerSlotNode&&Dt.a.createPortal(this.props.children,this.headerSlotNode)}}Object(i.a)(zn,"defaultProps",{slot:"left"});var En=Tn;const kn=({formId:e})=>{const{api:t}=f.a.get("wp"),o=f.a.get("editorVersion"),n=He(t.url,{formId:e,action:t.getForm,hash:t.hash,version:o});return Object(pe.L)(n,{method:"GET",headers:{"Content-Type":"application/json; charset=utf-8"}}).then(Fe).then(e=>e)},Hn=({formId:e})=>{const{api:t}=f.a.get("wp"),o=f.a.get("editorVersion"),n=He(t.url,{action:t.createForm,hash:t.hash,version:o});return Object(pe.L)(n,{method:"POST",headers:{"Content-Type":"application/json; charset=utf-8"},body:JSON.stringify({id:e})}).then(Fe).then(e=>e)},Fn=({formId:e,id:t})=>{const{api:o}=f.a.get("wp"),n=f.a.get("editorVersion"),a=He(o.url,{action:o.getIntegration,hash:o.hash,version:n,formId:e,integration:t});return Object(pe.L)(a,{method:"GET",headers:{"Content-Type":"application/json; charset=utf-8"}}).then(Fe).then(e=>e)},_n=({formId:e,id:t})=>{const{api:o}=f.a.get("wp"),n=f.a.get("editorVersion"),a=He(o.url,{action:o.createIntegration,hash:o.hash,version:n,formId:e});return Object(pe.L)(a,{method:"POST",headers:{"Content-Type":"application/json; charset=utf-8"},body:JSON.stringify({id:t})}).then(Fe).then(e=>e)},Rn=e=>{let{formId:t}=e,o=Object(x.a)(e,["formId"]);const{api:n}=f.a.get("wp"),a=f.a.get("editorVersion"),r=He(n.url,{action:n.updateIntegration,hash:n.hash,version:a,formId:t}),i=v.default.pick(o,["id","usedAccount","fieldsMap","usedList","confirmationNeeded","usedFolder","completed"]);return Object(pe.L)(r,{method:"POST",headers:{"Content-Type":"application/json; charset=utf-8"},body:JSON.stringify(i)}).then(Fe).then(e=>e)};function Ln(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function Mn(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?Ln(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):Ln(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const In=(e,t)=>{const o=t.map(e=>e.title).join(" & ");switch(e.code){case 401:return`${Object(ie.a)("Incorrect")} ${o}`;case 400:return Object(ie.a)("Duplicate Account");default:return Object(ie.a)("Something went wrong")}};class Wn extends l.Component{constructor(e,t){super(e),Object(i.a)(this,"handleChange",(e,t)=>{this.setState(o=>({apiKeyValue:Mn(Mn({},o.apiKeyValue),{},{[""+t]:e.trim()})}))}),Object(i.a)(this,"handleConnect",async()=>{const{app:{id:e,data:t},formId:o,onChange:n,onChangeProgress:a,onChangeNext:r}=this.context,{apiKeyValue:i}=this.state,l=Object.values(i);if(this.setState({nextLoading:!0,error:null}),l.some(e=>!e))await Object(pe.I)(),this.setState({error:Object(ie.a)("Fields are empty"),nextLoading:!1});else{const{status:l,data:s}=await(({formId:e,id:t,data:o})=>{const{api:n}=f.a.get("wp"),a=f.a.get("editorVersion"),r=He(n.url,{action:n.authenticateIntegration,hash:n.hash,version:a,formId:e,integration:t});return Object(pe.L)(r,{method:"POST",headers:{"Content-Type":"application/json; charset=utf-8"},body:JSON.stringify(o)}).then(Fe).then(e=>e)})(Mn(Mn({},t),{},{formId:o,data:i}));if(200!==l)this.setState({nextLoading:!1,error:In(s,t.accountApiKeys)});else{const o=t.accounts||[];n(e,Mn(Mn({},t),{},{accounts:[...o,s]})),a({showProgress:!0}),r()}}}),Object(i.a)(this,"handlePrev",async()=>{const{oldStage:e,onChangeNext:t,onChangePrev:o,onChangeProgress:n}=this.context;this.setState({error:null,prevLoading:!0}),await Object(pe.I)(),n({showProgress:!0}),"account"===e?t("account"):o()});const{data:{accountApiKeys:o}}=t.app,n=o.reduce((e,{name:t})=>Mn(Mn({},e),{},{[""+t]:""}),{});this.state={apiKeyValue:n,nextLoading:!1,prevLoading:!1,error:null}}static async onBeforeLoad(e,t){const{formId:o,app:{id:n,data:a},onChange:r,onChangeProgress:i,onError:l}=e;let{status:s,data:c}=await(({formId:e,id:t})=>{const{api:o}=f.a.get("wp"),n=f.a.get("editorVersion"),a=He(o.url,{action:o.getAccountProperties,hash:o.hash,version:n,formId:e,integration:t});return Object(pe.L)(a,{method:"GET",headers:{"Content-Type":"application/json; charset=utf-8"}}).then(Fe).then(e=>e)})({id:n,formId:o});(!s||s>=400)&&(c=[],l("Something went wrong")),r(n,Mn(Mn({},a),{},{accountApiKeys:c})),a.usedAccount||a.accounts&&a.accounts.length?t.onChangeNext():i({showProgress:!1})}render(){const{app:e}=this.context,{apiKeyValue:t,error:o,nextLoading:n,prevLoading:a}=this.state,r=e.data.accountApiKeys.map(({title:e,name:o})=>({title:e,name:o,value:t[o]}));return s.a.createElement(Xe,Object(C.a)({},e,{data:r,error:o,nextLoading:n,prevLoading:a,onPrev:this.handlePrev,onNext:this.handleConnect,onChange:this.handleChange}))}}Object(i.a)(Wn,"contextType",me);var Nn=Wn;function An(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function Vn(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?An(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):An(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}class Dn extends l.Component{constructor(e,t){super(e),Object(i.a)(this,"handleActive",e=>{this.setState({active:e})}),Object(i.a)(this,"handleConnect",async()=>{const{onChangeProgress:e,onChangePrev:t}=this.context;this.setState({connectLoading:!0}),await Object(pe.I)(),e({showProgress:!1}),t("connect")}),Object(i.a)(this,"handleDisconnect",async()=>{const{app:{id:e,data:t},formId:o,onChange:n,onDisconnectApp:a,onChangeProgress:r}=this.context;this.setState({nextLoading:!0,error:null});const{status:i,data:l}=await Rn(Vn(Vn({},t),{},{formId:o,usedAccount:null}));200!==i?this.setState({nextLoading:!1,error:Object(ie.a)("Something went wrong")}):(this.setState({mode:"account",nextLoading:!1}),n(e,Vn(Vn({},t),l)),r({showProgress:!0}),a(e))}),Object(i.a)(this,"handleAccountMode",async()=>{this.setState({prevLoading:!0,error:null}),await Object(pe.I)(),this.context.onChangeProgress({showProgress:!0}),this.setState({mode:"account",prevLoading:!1})}),Object(i.a)(this,"handleDisconnectMode",async()=>{this.setState({disconnectLoading:!0,error:null}),await Object(pe.I)(),this.context.onChangeProgress({showProgress:!1}),this.setState({mode:"disconnect",disconnectLoading:!1})}),Object(i.a)(this,"handleNext",async()=>{const{app:{id:e,data:t},formId:o,onChange:n,onChangeNext:a}=this.context,{active:r}=this.state;if(this.setState({nextLoading:!0,error:null}),r!==t.usedAccount){const{status:i,data:l}=await Rn(Vn(Vn({},t),{},{formId:o,usedAccount:r}));200!==i?this.setState({nextLoading:!1,error:Object(ie.a)("Something went wrong")}):(n(e,Vn(Vn({},t),l)),a())}else await Object(pe.I)(),a()}),Object(i.a)(this,"handlePrev",async()=>{const{onChangePrev:e}=this.context;this.setState({prevLoading:!0}),await Object(pe.I)(),e("appList")}),this.state={active:this.getActiveAccount(t.app.data),mode:"account",nextLoading:!1,prevLoading:!1,connectLoading:!1,disconnectLoading:!1}}getActiveAccount(e){const t=e.accounts.length?e.accounts[0].id:"";return e.usedAccount||t}render(){const{app:e}=this.context;return"account"===this.state.mode?s.a.createElement(Ke,Object(C.a)({},e,this.state,{onActive:this.handleActive,onConnect:this.handleConnect,onDisconnect:this.handleDisconnectMode,onConfirm:this.handleConfirm,onPrev:this.handlePrev,onNext:this.handleNext})):s.a.createElement(Je,Object(C.a)({},e,this.state,{descriptions:`Subscribers are automatically synced to your ${e.title} list`,onPrev:this.handleAccountMode,onNext:this.handleDisconnect}))}}Object(i.a)(Dn,"contextType",me);var $n=Dn;function Gn(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function Un(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?Gn(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):Gn(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}class Kn extends l.Component{constructor(e,t){super(e),Object(i.a)(this,"handleActive",e=>{this.setState({active:e})}),Object(i.a)(this,"handleNext",async()=>{const{app:{id:e,data:t},formId:o,onChange:n,onChangeNext:a}=this.context,{active:r}=this.state;if(this.setState({nextLoading:!0,error:null}),r!==t.usedFolder){const{status:i,data:l}=await Rn(Un(Un({},t),{},{formId:o,usedFolder:r}));200!==i?this.setState({nextLoading:!1,error:Object(ie.a)("Something went wrong")}):(n(e,Un(Un({},t),l)),a())}else await Object(pe.I)(),a()}),Object(i.a)(this,"handlePrev",async e=>{this.setState({prevLoading:!0,error:null}),await Object(pe.I)(),e&&"string"==typeof e?this.context.onChangePrev(e):this.context.onChangePrev()}),this.state={active:this.getActiveClient(t.app.data),nextLoading:!1,prevLoading:!1}}getActiveClient(e){const{usedFolder:t,folders:o}=e,n=o.length?o[0].id:"";return t||n}render(){const{app:e}=this.context,{folders:t,accountPro:o}=e.data;return s.a.createElement(xt,Object(C.a)({},this.state,{listPro:o,lists:t,onActive:this.handleActive,onPrev:this.handlePrev,onNext:this.handleNext}))}}Object(i.a)(Kn,"contextType",me);var Yn=Kn;function qn(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function Xn(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?qn(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):qn(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}class Zn extends l.Component{constructor(e,t){super(e),Object(i.a)(this,"handleActive",(e,t)=>{const{formFields:o}=this.state,n=o.findIndex(({sourceId:t})=>t===e);this.setState({formFields:Object(tt.replaceAt)(o,n,Xn(Xn({},o[n]),{},{target:t}))})}),Object(i.a)(this,"handlePrev",async()=>{this.setState({prevLoading:!0,error:null}),await Object(pe.I)(),this.context.onChangePrev()}),Object(i.a)(this,"handleNext",async()=>{const{app:{id:e,data:t},formId:o,onChange:n,onChangeNext:a}=this.context,{formFields:r}=this.state;if(this.setState({nextLoading:!0,error:null}),Ie(t.fields,r,"select")){const{status:i,data:l}=await Rn(Xn(Xn({},t),{},{formId:o,fieldsMap:JSON.stringify(r),completed:!0}));200!==i?this.setState({nextLoading:!1,error:Object(ie.a)("Something went wrong")}):(n(e,Xn(Xn({},t),l)),a())}else await Object(pe.I)(),this.setState({error:Object(ie.a)("All fields marked with an asterisk ( * ) must be mapped."),nextLoading:!1})});const{app:{data:{fieldsMap:o,fields:n},restrictions:a},formFields:r}=t;this.state={formFields:Re(o,n,r,a),prevLoading:!1,nextLoading:!1,error:null}}render(){const{app:e}=this.context,{formFields:t,error:o,nextLoading:n,prevLoading:a}=this.state;return s.a.createElement(Ot,Object(C.a)({},e,e.data,{formFields:t,error:o,nextLoading:n,prevLoading:a,onActive:this.handleActive,onPrev:this.handlePrev,onNext:this.handleNext}))}}Object(i.a)(Zn,"contextType",me);var Jn=Zn;function Qn(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function ea(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?Qn(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):Qn(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}class ta extends l.Component{constructor(e,t){super(e),Object(i.a)(this,"handleActive",(e,t)=>{const{formFields:o}=this.state,n=o.findIndex(({sourceId:t})=>t===e);this.setState({formFields:Object(tt.replaceAt)(o,n,ea(ea({},o[n]),{},{target:t}))})}),Object(i.a)(this,"handlePrev",async()=>{this.setState({prevLoading:!0,error:null}),await Object(pe.I)(),this.context.onChangePrev()}),Object(i.a)(this,"handleNext",async()=>{const{app:{id:e,data:t},formId:o,onChange:n,onChangeNext:a}=this.context,{formFields:r}=this.state;if(this.setState({error:null,nextLoading:!0}),Ie(t.fields,r,"input")){const{status:i,data:l}=await Rn(ea(ea({},t),{},{formId:o,fieldsMap:JSON.stringify(r),completed:!0}));200!==i?this.setState({nextLoading:!1,error:Object(ie.a)("Something went wrong")}):(n(e,ea(ea({},t),l)),a())}else await Object(pe.I)(),this.setState({error:Object(ie.a)("All fields cannot be empty"),nextLoading:!1})});const{app:{data:o,restrictions:n},formFields:a}=t,{fieldsMap:r,fields:l}=o||{};this.state={formFields:Re(r,l,a,n),prevLoading:!1,nextLoading:!1}}static async onBeforeLoad(e){const{app:{id:t,data:o},onChange:n}=e;n(t,ea(ea({},o),{},{fields:[]}))}render(){const{app:{title:e}}=this.context,{formFields:t,error:o,nextLoading:n,prevLoading:a}=this.state,r=t.map(({sourceTitle:e,sourceId:t,target:o})=>({title:e,name:t,value:"_auto_generate"===o?e:o}));return s.a.createElement(ft,{headTitle:Object(ie.a)("FORM FIELDS"),headDescription:`${e} ${Object(ie.a)("FIELDS")}`,data:r,error:o,nextLoading:n,prevLoading:a,onActive:this.handleActive,onPrev:this.handlePrev,onNext:this.handleNext})}}Object(i.a)(ta,"contextType",me);var oa=ta;function na(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function aa(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?na(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):na(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}class ra extends l.Component{constructor(e){super(e),Object(i.a)(this,"handleChange",(e,t)=>{this.setState(({apiKeyValue:o})=>({apiKeyValue:aa(aa({},o),{},{[""+e]:t})}))}),Object(i.a)(this,"handleNext",async()=>{const{app:{id:e,data:t},formId:o,apiKeys:n,onChange:a,onChangeNext:r}=this.props,{apiKeyValue:i}=this.state;if(this.setState({nextLoading:!0,error:null}),n.find(({required:e,name:t})=>e&&!i[t]))await Object(pe.I)(),this.setState({error:Object(ie.a)("All fields marked with an asterisk ( * ) must be completed."),nextLoading:!1});else{const{status:n,data:l}=await(e=>{let{formId:t}=e,o=Object(x.a)(e,["formId"]);const{api:n}=f.a.get("wp"),a=f.a.get("editorVersion"),r=He(n.url,{action:n.updateIntegration,hash:n.hash,version:a,formId:t});return Object(pe.L)(r,{method:"POST",headers:{"Content-Type":"application/json; charset=utf-8"},body:JSON.stringify(o)}).then(Fe).then(e=>e)})(aa(aa(aa({},t),i),{},{formId:o,completed:!0}));200!==n?this.setState({nextLoading:!1,error:Object(ie.a)("Something went wrong")}):(a(e,aa(aa({},t),l)),r())}}),Object(i.a)(this,"handlePrev",async()=>{this.setState({prevLoading:!0}),await Object(pe.I)(),this.props.onChangePrev()}),this.state={apiKeyValue:this.getDefaultValue(),prevLoading:!1,nextLoading:!1,error:null}}getDefaultValue(){const{app:{data:e},apiKeys:t}=this.props;return t.reduce((t,{name:o})=>aa(aa({},t),{},{[""+o]:e[o]||""}),{})}render(){const{app:e,apiKeys:t}=this.props,{apiKeyValue:o,error:n,prevLoading:a,nextLoading:r}=this.state,i=t.map(e=>aa(aa({},e),{},{value:o[e.name]}));return s.a.createElement(ft,Object(C.a)({},e,{data:i,error:n,prevLoading:a,nextLoading:r,onActive:this.handleChange,onPrev:this.handlePrev,onNext:this.handleNext}))}}var ia=ra;const la=[{name:"emailTo",title:Object(ie.a)("Email To"),required:!0,helper:'<p class="brz-p">If you need to have multiple emails you can separate them by commas:</p>\n <p class="brz-p"><span class="brz-span">me@email.com,</span> <span class="brz-span">hi@email.com</span></p>'},{name:"subject",title:Object(ie.a)("Subject")},{name:"fromEmail",title:Object(ie.a)("From Email")},{name:"fromName",title:Object(ie.a)("From Name")},{name:"replayTo",title:Object(ie.a)("Reply-To")},{name:"cc",title:Object(ie.a)("Cc")},{name:"bcc",title:Object(ie.a)("Bcc")},{name:"metaData",title:Object(ie.a)("Meta Data"),type:"search",multiple:!0,choices:[{label:"Time",value:"time"},{label:"Page URL",value:"pageUrl"},{label:"User Agent",value:"userAgent"},{label:"Remote IP",value:"remoteIp"},{label:"Credit",value:"credit"}]}];class sa extends l.Component{render(){return s.a.createElement(ia,Object(C.a)({},this.context,{apiKeys:la,onClose:this.props.onClose}))}}Object(i.a)(sa,"contextType",me);var ca=sa;class da extends l.Component{renderError(){return s.a.createElement("div",{className:"brz-ed-alert brz-ed-alert-error"},s.a.createElement("span",{className:"brz-span"},this.props.error))}renderInput({name:e}){const{apiKeyValue:t,onChange:o}=this.props;return s.a.createElement("div",{className:"brz-ed-popup-integrations-step__fields-input"},s.a.createElement("input",{className:"brz-input",value:t[e],onChange:t=>{o(e,t.target.value)}}))}renderSelect({name:e,choices:t}){const{apiKeyValue:o,onChange:n}=this.props,a=o[e],r=(a?t:[{id:"",name:"Please Select Folder"},...t]).map((e,t)=>{const{id:o,name:n}=e;return s.a.createElement(S.a,{key:t,value:o},n)});return s.a.createElement("div",{className:"brz-ed-popup-integrations-step__fields-select"},s.a.createElement(O.a,{defaultValue:a,className:"brz-control__select--white",maxItems:"6",itemHeight:"30",inPortal:!0,onChange:t=>{n(e,t)}},r))}renderTextarea({name:e}){const{apiKeyValue:t,onChange:o}=this.props;return s.a.createElement("div",{className:"brz-ed-popup-integrations-step__fields-input"},s.a.createElement("textarea",{className:"brz-textarea",value:t[e],onChange:t=>{o(e,t.target.value)}}))}renderApiKeys(){const e=this.props.listsCreate.map((e,t)=>{const{title:o,type:n}=e;return s.a.createElement("div",{key:t,className:"brz-ed-popup-integrations-step__fields-option"},s.a.createElement("p",{className:"brz-p"},o),this["render"+Object(Gt.c)(n)](e))});return s.a.createElement(st.a,{style:{maxHeight:255},className:"brz-ed-scroll-pane brz-ed-popup-integrations__scroll-pane"},e)}render(){const{listsCreate:e,nextLoading:t,prevLoading:o,error:n,onPrev:a,onNext:r}=this.props;return s.a.createElement("div",{className:"brz-ed-popup-integrations-step brz-ed-popup-integrations-step__lists-create"},n&&this.renderError(),s.a.createElement("div",{className:"brz-ed-popup-integrations-step__head"},s.a.createElement("p",{className:"brz-p"},s.a.createElement("strong",{className:"brz-strong"},Object(ie.a)("CREATE LIST")))),s.a.createElement("div",{className:"brz-ed-popup-integrations-step__body"},e.length>0&&this.renderApiKeys(),s.a.createElement("div",{className:"brz-ed-popup-integrations-step__buttons"},s.a.createElement(Ge,{size:3,leftIcon:"nc-arrow-left",loading:o,onClick:a},Object(ie.a)("Back")),s.a.createElement(Ge,{color:"teal",loading:t,onClick:r},Object(ie.a)("Create")))))}}function ua(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function pa(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?ua(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):ua(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}Object(i.a)(da,"defaultProps",{id:"",title:"",shortTitle:"",description:"",img:"",form:{},listsCreate:[],apiKeyValue:{},nextLoading:!1,prevLoading:!1,onPrev:v.default.noop,onNext:v.default.noop,onChange:v.default.noop});const ba=(e,t)=>{if("server"===e)return Object(ie.a)("List are not created please connect the support");const{data:{accountPro:o,lists:n},title:a}=t;return o?`Please upgrade your ${a} account to access your lists`:0===n.length?Object(ie.a)("Lists are empty. Please add a new list and try again."):void 0};class ma extends l.Component{constructor(e,t){super(e),Object(i.a)(this,"handleActive",e=>{this.setState({active:e})}),Object(i.a)(this,"handleKeysChange",(e,t)=>{this.setState(o=>({apiKeyValue:pa(pa({},o.apiKeyValue),{},{[""+e]:t})}))}),Object(i.a)(this,"handleConfirm",async e=>{const{app:{id:t,data:o},formId:n,onChange:a}=this.context,{status:r,data:i}=await Rn(pa(pa({},o),{},{formId:n,confirmationNeeded:e}));200!==r?this.setState({error:Object(ie.a)("Something went wrong")}):a(t,pa(pa({},o),i))}),Object(i.a)(this,"handleCreateMode",async()=>{this.setState({createLoading:!0}),await Object(pe.I)(),this.setState({mode:"create",createLoading:!1,error:null})}),Object(i.a)(this,"handleViewMode",async()=>{this.setState({prevLoading:!0,error:null}),await Object(pe.I)(),this.setState({prevLoading:!1,mode:"view"})}),Object(i.a)(this,"handleCreateList",async()=>{const{app:{id:e,data:t},formId:o,onChange:n}=this.context,{apiKeyValue:a}=this.state,r=Object.values(a);if(this.setState({nextLoading:!0,error:null}),r.some(e=>!e))await Object(pe.I)(),this.setState({nextLoading:!1,error:Object(ie.a)("All fields cannot be empty")});else{const{status:r,data:i}=await(({formId:e,id:t,data:o})=>{const{api:n}=f.a.get("wp"),a=f.a.get("editorVersion"),r=He(n.url,{action:n.createIntegrationGroup,hash:n.hash,version:a,formId:e,integration:t});return Object(pe.L)(r,{method:"POST",headers:{"Content-Type":"application/json; charset=utf-8"},body:JSON.stringify(o)}).then(Fe).then(e=>e)})({formId:o,id:t.id,data:a,usedAccount:t.usedAccount});200!==r?this.setState({nextLoading:!1,error:ba("server")}):(n(e,pa(pa({},t),{},{lists:[...t.lists,i]})),this.setState({active:i.id,apiKeyValue:this.getApiKeyValue(t),mode:"view",nextLoading:!1,error:null}))}}),Object(i.a)(this,"handleNext",async()=>{const{app:{id:e,data:t},formId:o,onChange:n,onChangeNext:a}=this.context,{active:r}=this.state;if(this.setState({nextLoading:!0,error:null}),r!==t.usedList){const{status:i,data:l}=await Rn(pa(pa({},t),{},{formId:o,usedList:r}));200!==i?this.setState({nextLoading:!1,error:Object(ie.a)("Something went wrong")}):(n(e,pa(pa({},t),l)),a())}else await Object(pe.I)(),a()}),Object(i.a)(this,"handlePrev",async()=>{this.setState({prevLoading:!0,error:null}),await Object(pe.I)(),this.context.onChangePrev()});const{data:o}=t.app;this.state={active:this.getActiveList(o),apiKeyValue:this.getApiKeyValue(o),mode:"view",error:ba("application",t.app),createLoading:!1,prevLoading:!1,nextLoading:!1}}static async onBeforeLoad(e){const{app:{id:t,data:o},onChange:n}=e;n(t,pa(pa({},o),{},{accountPro:!Array.isArray(o.lists)}))}getActiveList(e){const t=e.lists.find(({id:t})=>t===e.usedList)||{},o=e.lists.length?e.lists[0].id:"";return t.id||o}getApiKeyValue({listProperties:e}){return Array.isArray(e)?e.reduce((e,{name:t})=>pa(pa({},e),{},{[""+t]:""}),{}):[]}render(){const{app:e}=this.context,{lists:t,listProperties:o,hasConfirmation:n,accountPro:a,confirmationNeeded:r}=e.data;return"view"===this.state.mode?s.a.createElement(xt,Object(C.a)({},this.state,{lists:t,listsCreate:o,listPro:a,hasConfirmation:n,confirmationNeeded:r,onActive:this.handleActive,onConfirm:this.handleConfirm,onCreateList:this.handleCreateMode,onPrev:this.handlePrev,onNext:this.handleNext})):s.a.createElement(da,Object(C.a)({},this.state,{listsCreate:o,onChange:this.handleKeysChange,onPrev:this.handleViewMode,onNext:this.handleCreateList}))}}Object(i.a)(ma,"contextType",me);var ha=ma;class ga extends l.Component{constructor(...e){super(...e),Object(i.a)(this,"handleClose",()=>{this.props.onClose()})}render(){const{app:e}=this.context;return s.a.createElement(jt,Object(C.a)({},e,{onNext:this.handleClose}))}}Object(i.a)(ga,"contextType",me);var va=ga;const fa=[{name:"emailTo",title:Object(ie.a)("Email To"),required:!0,helper:'<p class="brz-p">If you need to have multiple emails you can separate them by commas:</p>\n <p class="brz-p"><span class="brz-span">me@email.com,</span> <span class="brz-span">hi@email.com</span></p>'},{name:"subject",title:Object(ie.a)("Subject")},{name:"fromEmail",title:Object(ie.a)("From Email")},{name:"fromName",title:Object(ie.a)("From Name")},{name:"replayTo",title:Object(ie.a)("Reply-To")},{name:"cc",title:Object(ie.a)("Cc")},{name:"bcc",title:Object(ie.a)("Bcc")},{name:"metaData",title:Object(ie.a)("Meta Data"),type:"search",multiple:!0,choices:[{title:"Time",value:"time"},{title:"Page URL",value:"pageUrl"},{title:"User Agent",value:"userAgent"},{title:"Remote IP",value:"remoteIp"},{title:"Credit",value:"credit"}]},{name:"host",title:Object(ie.a)("Host"),required:!0},{name:"port",title:Object(ie.a)("Port"),required:!0},{name:"authentication",title:Object(ie.a)("Authentication"),type:"switch"},{name:"username",title:Object(ie.a)("Username"),required:!0},{name:"password",title:Object(ie.a)("Password"),required:!0},{name:"encryption",title:Object(ie.a)("Encryption"),type:"select",choices:[{title:"SSL",name:"ssl"},{title:"TLS",name:"tls"}]}];class ya extends l.Component{render(){return s.a.createElement(ia,Object(C.a)({},this.props,this.context,{apiKeys:fa}))}}Object(i.a)(ya,"contextType",me);var Oa=ya;const Sa=[{name:"emailTo",title:Object(ie.a)("Email To"),required:!0,helper:'<p class="brz-p">If you need to have multiple emails you can separate them by commas:</p>\n <p class="brz-p"><span class="brz-span">me@email.com,</span> <span class="brz-span">hi@email.com</span></p>'},{name:"subject",title:Object(ie.a)("Subject")},{name:"fromEmail",title:Object(ie.a)("From Email")},{name:"fromName",title:Object(ie.a)("From Name")},{name:"replayTo",title:Object(ie.a)("Reply-To")},{name:"cc",title:Object(ie.a)("Cc")},{name:"bcc",title:Object(ie.a)("Bcc")},{name:"metaData",title:Object(ie.a)("Meta Data"),type:"search",multiple:!0,choices:[{title:"TIME",value:"time"},{title:"Page URL",value:"pageUrl"},{title:"User Agent",value:"userAgent"},{title:"Remote IP",value:"remoteIp"},{title:"Credit",value:"credit"}]},{name:"username",title:Object(ie.a)("Username"),required:!0},{name:"password",title:Object(ie.a)("Password"),required:!0}];class xa extends l.Component{render(){return s.a.createElement(ia,Object(C.a)({},this.props,this.context,{apiKeys:Sa}))}}Object(i.a)(xa,"contextType",me);var Ca=xa;class ja extends l.Component{constructor(...e){super(...e),Object(i.a)(this,"handleConfirmation",e=>{this.props.onChangeConfirmation(e.target.checked)}),Object(i.a)(this,"handleKeyDown",e=>{const{confirmed:t,onNext:o}=this.props;13===e.which&&t&&o()})}renderError(){return s.a.createElement("div",{className:"brz-ed-alert brz-ed-alert-error"},this.props.error)}renderValidationError(){return s.a.createElement("div",{className:"brz-ed-alert brz-ed-alert-error brz-ed-popup-recaptcha-validation-error"},s.a.createElement("p",{className:"brz-p"},Object(ie.a)("Verification process failed, please make sure you have done the following three things and try again in a few minutes.")),s.a.createElement("p",{className:"brz-p"},"1. ",Object(ie.a)("Inputted a valid site key"),". "),s.a.createElement("p",{className:"brz-p"},"2.",Object(ie.a)("Deselected the “Verify the origin of reCAPTCHA solutions” checkbox within your Google account.")),s.a.createElement("p",{className:"brz-p"},"3. ",Object(ie.a)("Established a stable internet connection"),"."))}renderItems(){const{data:e,onChange:t}=this.props;return e.map((e,o)=>{const{title:n,name:a,value:r}=e;return s.a.createElement(Ye,{key:o,title:n,value:r,required:!0,onChange:e=>{t(e.target.value,a)}})})}renderDescriptions(){return s.a.createElement("div",{className:"brz-ed-popup-recaptcha__confirmation"},s.a.createElement("label",{className:"brz-label"},s.a.createElement("input",{className:"brz-input",type:"checkbox",value:this.props.confirmed,onChange:this.handleConfirmation}),'I have deselected "Verify the origins of reCAPTCHA solu-',s.a.createElement("br",{className:"brz-br"}),'tions and clicked "Save Changes" under "Key Settings >',s.a.createElement("br",{className:"brz-br"}),'Advanced Settings" in my Google reCAPTCHA page'))}render(){const{title:e,img:t,validated:o,confirmed:n,error:a,nextLoading:r,prevLoading:i,onRetry:l,onNext:c,onPrev:d}=this.props;return s.a.createElement(st.a,{className:"brz-ed-popup-integrations-apps__scroll-pane",style:{height:"100%"}},s.a.createElement("div",{className:"brz-ed-popup-recaptcha__connect"},s.a.createElement("div",{className:"brz-ed-popup-recaptcha__container"},s.a.createElement("div",{className:"brz-ed-popup-integrations__connect-head"},s.a.createElement("img",{className:"brz-img",src:t,alt:e}),o?this.renderDescriptions():this.renderValidationError(),a&&this.renderError()),s.a.createElement("div",{className:"brz-ed-popup-integrations__connect-body"},this.renderItems(),o?s.a.createElement(Ge,{color:"teal",loading:r,disabled:!n,onClick:c},Object(ie.a)("Connect")):s.a.createElement(Ge,{color:"teal",loading:r,onClick:l},Object(ie.a)("Try Again")),s.a.createElement(Ge,{color:"default",loading:i,onClick:d},Object(ie.a)("Cancel"))))))}}Object(i.a)(ja,"defaultProps",{id:"",title:"",img:"",confirmed:!1,error:!1,nextLoading:!1,prevLoading:!1,onChange:v.default.noop,onChangeConfirmation:v.default.noop,onNext:v.default.noop,onPrev:v.default.noop});var Pa=ja;function Ba(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function wa(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?Ba(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):Ba(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}async function Ta(e){try{return await function(e){const t=window.parent,o=function(e){const t=e.document.body,o=document.createElement("div");return o.setAttribute("class","brz-ed-recaptcha brz-hidden"),t.append(o),o}(t),n=function(e){const t=e.document.body,o=document.createElement("script");return o.setAttribute("src","https://www.google.com/recaptcha/api.js?onload=onloadRecaptchaCallback&render=explicit"),o.setAttribute("async","async"),o.setAttribute("defer","defer"),t.append(o),o}(t);return new Promise((a,r)=>{n.onload=()=>{const i=t.parent.grecaptcha;t.onloadRecaptchaCallback=()=>{const t=i.render(o,{sitekey:e.sitekey,size:"invisible",callback:async t=>{const{status:r}=await(({group:e,service:t,secretkey:o,sitekey:n,response:a})=>{const{api:r}=f.a.get("wp"),i=f.a.get("editorVersion"),l=He(r.url,{action:r.addAccount,hash:r.hash,version:i,secretkey:o,response:a});return Object(pe.L)(l,{method:"POST",headers:{"Content-Type":"application/json; charset=utf-8"},body:JSON.stringify({group:e,service:t,sitekey:n,secretkey:o})}).then(Fe).then(e=>e)})(wa(wa({group:"recaptcha",service:"recaptcha"},e),{},{response:t}));o.remove(),n.remove(),a(200===r)},"error-callback":()=>{o.remove(),n.remove(),r(!1)}});i.reset(t),i.execute(t)}}})}(e)}catch(e){return e}}function za(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function Ea(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?za(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):za(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const ka=[{name:"sitekey",title:"Site Key"},{name:"secretkey",title:"Secret Key"}];class Ha extends l.Component{constructor(e,t){super(e),Object(i.a)(this,"handleChange",(e,t)=>{this.setState(({apiKeyValue:o})=>({apiKeyValue:Ea(Ea({},o),{},{[""+t]:e.trim()})}))}),Object(i.a)(this,"handleConfirmation",e=>{this.setState({confirmed:e})}),Object(i.a)(this,"handleNext",async()=>{const{app:e,onChangeNext:t}=this.context,{apiKeyValue:o}=this.state,n=Object.values(o);if(this.setState({nextLoading:!0,error:null}),n.some(e=>!e))await Object(pe.I)(),this.setState({error:"Fields are empty",nextLoading:!1});else{const{data:n}=e;if(n){const{status:e}=await Ve(n.id);200!==e&&this.setState({nextLoading:!1,error:Object(ie.a)("Something went wrong")})}await Ta(o)?t():this.setState({nextLoading:!1,validated:!1})}}),Object(i.a)(this,"handlePrev",async()=>{this.setState({prevLoading:!0}),await Object(pe.I)(),this.context.onChangePrev()});const{app:{data:o}}=t;this.state={apiKeyValue:o||this.getDefaultValue(),validated:!0,confirmed:!1,prevLoading:!1,nextLoading:!1,error:null}}static async onBeforeLoad(e,t){e.app.data&&t.onChangeNext("disconnect")}getDefaultValue(){return ka.reduce((e,{name:t})=>Ea(Ea({},e),{},{[""+t]:""}),{})}render(){const{apiKeyValue:e,nextLoading:t,prevLoading:o,confirmed:n,error:a,validated:r}=this.state,i=ka.map(({title:t,name:o})=>({title:t,name:o,value:e[o]}));return s.a.createElement(Pa,Object(C.a)({},this.context.app,{data:i,validated:r,confirmed:n,nextLoading:t,prevLoading:o,error:a,onChange:this.handleChange,onChangeConfirmation:this.handleConfirmation,onNext:this.handleNext,onRetry:this.handleNext,onPrev:this.handlePrev}))}}Object(i.a)(Ha,"contextType",me);var Fa=Ha;class _a extends l.Component{constructor(e){super(e),Object(i.a)(this,"handleNext",async()=>{const{app:e,onChange:t,onDisconnectApp:o}=this.context;this.setState({nextLoading:!0,error:null});const{status:n}=await Ve(e.data.id);n<400?(o(e.id),t(e.id,null)):this.setState({nextLoading:!1,error:Object(ie.a)("Something went wrong")})}),Object(i.a)(this,"handlePrev",async()=>{this.setState({prevLoading:!0,error:null}),await Object(pe.I)(),this.context.onChangePrev("appList")}),this.state={nextLoading:!1,prevLoading:!1,error:null}}render(){const{nextLoading:e,prevLoading:t,error:o}=this.state;return s.a.createElement(Je,Object(C.a)({},this.context.app,{descriptions:Object(ie.a)("Are you want to delete account")+" ?",nextLoading:e,prevLoading:t,error:o,onPrev:this.handlePrev,onNext:this.handleNext}))}}Object(i.a)(_a,"contextType",me);var Ra=_a;class La extends Rt{}Object(i.a)(La,"fields",ca),Object(i.a)(La,"done",va);var Ma=La;class Ia extends Rt{}Object(i.a)(Ia,"fields",ca),Object(i.a)(Ia,"done",va);var Wa=Ia;class Na extends Rt{}Object(i.a)(Na,"connect",Nn),Object(i.a)(Na,"account",$n),Object(i.a)(Na,"fields",Jn),Object(i.a)(Na,"list",ha),Object(i.a)(Na,"done",va);var Aa=Na;class Va extends Rt{}Object(i.a)(Va,"connect",Nn),Object(i.a)(Va,"account",$n),Object(i.a)(Va,"client",Yn),Object(i.a)(Va,"fields",Jn),Object(i.a)(Va,"list",ha),Object(i.a)(Va,"done",va);var Da=Va;class $a extends Rt{}Object(i.a)($a,"connect",Nn),Object(i.a)($a,"account",$n),Object(i.a)($a,"fields",oa),Object(i.a)($a,"done",va);var Ga=$a;class Ua extends Rt{}Object(i.a)(Ua,"connect",Nn),Object(i.a)(Ua,"account",$n),Object(i.a)(Ua,"client",Yn),Object(i.a)(Ua,"fields",Jn),Object(i.a)(Ua,"list",ha),Object(i.a)(Ua,"done",va);var Ka=Ua;class Ya extends Rt{}Object(i.a)(Ya,"connect",Nn),Object(i.a)(Ya,"account",$n),Object(i.a)(Ya,"fields",Jn),Object(i.a)(Ya,"list",ha),Object(i.a)(Ya,"done",va);var qa=Ya;class Xa extends Rt{}Object(i.a)(Xa,"connect",Nn),Object(i.a)(Xa,"account",$n),Object(i.a)(Xa,"fields",Jn),Object(i.a)(Xa,"list",ha),Object(i.a)(Xa,"done",va);var Za=Xa;class Ja extends Rt{}Object(i.a)(Ja,"connect",Nn),Object(i.a)(Ja,"account",$n),Object(i.a)(Ja,"fields",Jn),Object(i.a)(Ja,"list",ha),Object(i.a)(Ja,"done",va);var Qa=Ja;class er extends Rt{}Object(i.a)(er,"connect",Nn),Object(i.a)(er,"account",$n),Object(i.a)(er,"fields",Jn),Object(i.a)(er,"list",ha),Object(i.a)(er,"done",va);var tr=er;class or extends Rt{}Object(i.a)(or,"connect",Nn),Object(i.a)(or,"account",$n),Object(i.a)(or,"fields",Jn),Object(i.a)(or,"list",ha),Object(i.a)(or,"done",va);var nr=or;class ar extends Rt{}Object(i.a)(ar,"connect",Nn),Object(i.a)(ar,"account",$n),Object(i.a)(ar,"list",ha),Object(i.a)(ar,"fields",Jn),Object(i.a)(ar,"done",va);var rr=ar;class ir extends Rt{}Object(i.a)(ir,"connect",Nn),Object(i.a)(ir,"account",$n),Object(i.a)(ir,"fields",Jn),Object(i.a)(ir,"list",ha),Object(i.a)(ir,"done",va);var lr=ir;class sr extends Rt{}Object(i.a)(sr,"connect",Nn),Object(i.a)(sr,"account",$n),Object(i.a)(sr,"fields",Jn),Object(i.a)(sr,"done",va);var cr=sr;class dr extends Rt{}Object(i.a)(dr,"fields",Oa),Object(i.a)(dr,"done",va);var ur=dr;class pr extends Rt{}Object(i.a)(pr,"fields",Ca),Object(i.a)(pr,"done",va);var br=pr;class mr extends Rt{}Object(i.a)(mr,"connect",Nn),Object(i.a)(mr,"account",$n),Object(i.a)(mr,"fields",Jn),Object(i.a)(mr,"list",ha),Object(i.a)(mr,"done",va);var hr=mr;class gr extends Rt{}Object(i.a)(gr,"connect",Nn),Object(i.a)(gr,"account",$n),Object(i.a)(gr,"list",ha),Object(i.a)(gr,"fields",Jn),Object(i.a)(gr,"done",va);var vr=gr;class fr extends Rt{}Object(i.a)(fr,"connect",Nn),Object(i.a)(fr,"account",$n),Object(i.a)(fr,"fields",Jn),Object(i.a)(fr,"list",ha),Object(i.a)(fr,"done",va);var yr=fr;class Or extends Rt{}Object(i.a)(Or,"connect",Nn),Object(i.a)(Or,"account",$n),Object(i.a)(Or,"fields",Jn),Object(i.a)(Or,"list",ha),Object(i.a)(Or,"done",va);var Sr=Or;class xr extends Rt{}Object(i.a)(xr,"connect",Nn),Object(i.a)(xr,"account",$n),Object(i.a)(xr,"fields",Jn),Object(i.a)(xr,"list",ha),Object(i.a)(xr,"done",va);var Cr=xr;class jr extends Rt{}Object(i.a)(jr,"connect",Nn),Object(i.a)(jr,"account",$n),Object(i.a)(jr,"fields",Jn),Object(i.a)(jr,"list",ha),Object(i.a)(jr,"done",va);var Pr=jr;class Br extends Rt{}Object(i.a)(Br,"connect",Fa),Object(i.a)(Br,"done",va),Object(i.a)(Br,"disconnect",Ra);var wr=Br;function Tr(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function zr(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?Tr(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):Tr(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const Er=f.a.get("pro");var kr=class extends ze{constructor(...e){super(...e),Object(i.a)(this,"appsData",[]),Object(i.a)(this,"appsComponent",a),Object(i.a)(this,"proExceptions",!Er),Object(i.a)(this,"handleConnectApp",async e=>{const{id:t,stages:o}=e,{formId:n}=this.props;let{status:a,data:r}=await Fn({formId:n,id:t});if(200!==a){if(404!==a)return void this.setState({appError:Object(ie.a)("The integration is not responding, please try again or verify the account credentials")});if(({status:a,data:r}=await _n({formId:n,id:t})),200!==a)return void this.setState({appError:Object(ie.a)("The integration is not responding, please try again or verify the account credentials")})}this.setState(Object(c.a)(n=>{n.appError=null,n.stages=o,n.connectedApp=t,n.data[t]=e,n.data[t].data=r}),()=>{this.handleNext()})})}async componentDidMount(){const e=Object(ue.a)("integrations.json"),t=await fetch(e),{services:o}=await t.json();this.appsData=o,await this.getData()}async getData(){const{formId:e}=this.props,{status:t,data:o}=await kn({formId:e});if(200!==t)if(404===t){const{status:t}=await Hn({formId:e});t>=400?this.setState({error:Object(ie.a)("Something went wrong")}):this.setState({loading:!1})}else this.setState({error:Object(ie.a)("Something went wrong")});else o&&this.setState({connectedApps:this.getConnectedApps(o.integrations),loading:!1})}getContextValue(){const{formId:e,formFields:t}=this.props;return zr(zr({},super.getContextValue()),{},{formId:e,formFields:t})}},Hr=o(277);function Fr(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function _r(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?Fr(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):Fr(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}var Rr=class extends ze{constructor(...e){super(...e),Object(i.a)(this,"state",{loading:!0,showProgress:!0,connectedApp:"",connectedApps:[],stage:this.props.stage,stages:this.props.stages,oldStage:"",data:{},error:null,appError:null,emailTemplate:"",hasEmailTemplate:!1,textCopied:""}),Object(i.a)(this,"appsData",[]),Object(i.a)(this,"appsComponent",a),Object(i.a)(this,"proExceptions",!A.h),Object(i.a)(this,"updateForm",v.default.debounce(()=>{(({formId:e,hasEmailTemplate:t,emailTemplate:o})=>{const{api:n}=f.a.get("wp"),a=f.a.get("editorVersion"),r=He(n.url,{formId:e,action:n.updateForm,hash:n.hash,version:a});Object(pe.L)(r,{method:"POST",headers:{"Content-Type":"application/json; charset=utf-8"},body:JSON.stringify({hasEmailTemplate:t,emailTemplate:o})}).then(Fe).then(e=>e)})({formId:this.props.formId,hasEmailTemplate:this.state.hasEmailTemplate,emailTemplate:this.state.emailTemplate})},1e3)),Object(i.a)(this,"handleConnectApp",async e=>{const t=e.id,{formId:o}=this.props,{stages:n=[]}=this.appsData.find(e=>e.id===t)||{};let{status:a,data:r}=await((...e)=>Fn(...e))({formId:o,id:t});if(200!==a){if(404!==a)return void this.setState({error:Object(ie.a)("Something went wrong")});{const{status:e,data:n}=await((...e)=>_n(...e))({formId:o,id:t});if(200!==e)return void this.setState({error:Object(ie.a)("Something went wrong")});r=n}}this.setState(Object(c.a)(o=>{o.stages=n,o.connectedApp=t,o.data[t]=Object.assign(e,{data:r})}),()=>{this.handleNext()})}),Object(i.a)(this,"handleHtmlChange",e=>{this.setState({emailTemplate:e},this.updateForm)}),Object(i.a)(this,"handleEnableHtml",e=>{this.setState({hasEmailTemplate:e}),!1===e&&this.state.emailTemplate&&this.setState({emailTemplate:""},this.updateForm)})}async componentDidMount(){const e=Object(ue.a)("integrations.json"),t=await fetch(e),o=await t.json();A.o?this.appsData=o.wpEmail:this.appsData=o.cloudEmail,await this.getData()}async getData(){const{formId:e,onLoading:t}=this.props,{status:o,data:n}=await kn({formId:e});if(200!==o)if(404===o){const{status:t,data:o}=await Hn({formId:e});t>=400||!o?this.setState({error:Object(ie.a)("Something went wrong")}):this.setState({connectedApps:this.getConnectedApps(o.integrations),loading:!1})}else this.setState({error:Object(ie.a)("Something went wrong")});else n&&this.setState({connectedApps:this.getConnectedApps(n.integrations),emailTemplate:n.emailTemplate||"",hasEmailTemplate:n.hasEmailTemplate,loading:!1});t(!1)}getContextValue(){const{formId:e,formFields:t}=this.props;return _r(_r({},super.getContextValue()),{},{formId:e,formFields:t})}handleCopyToClipboard(e){(e=>{const t=document.createElement("textarea");t.value=e,document.body.appendChild(t),t.focus(),t.select();try{document.execCommand("copy")}catch(e){console.error("Fallback: Oops, unable to copy",e)}document.body.removeChild(t)})(`{{${e}}}`),this.setState({textCopied:e},()=>{setTimeout(()=>{this.setState({textCopied:void 0})},800)})}renderFormInfo(){return s.a.createElement("div",{className:"brz-ed-popup-integration-email__info"},this.props.formFields.map((e,t)=>s.a.createElement("p",{key:t,title:"Click to copy",className:"brz-p",onClick:()=>{this.handleCopyToClipboard(e.label)}},s.a.createElement("span",{className:"brz-span brz-"},`{{${e.label}}}`),s.a.createElement(F.b,{icon:"nc-duplicate"}),this.state.textCopied===e.label&&s.a.createElement("span",{className:"brz-span brz-ed-animated brz-ed-animated--fadeIn"},"Copied"))))}renderApps(){const{error:e,emailTemplate:t,hasEmailTemplate:o}=this.state,n=g()("brz-ed-popup-integration-email__template",{"brz-ed-popup-integration-email__template--open":o});return s.a.createElement(s.a.Fragment,null,e&&super.renderError(),s.a.createElement(we,{apps:this.appsData,proExceptions:this.proExceptions}),!this.proExceptions&&s.a.createElement("div",{className:n},s.a.createElement("div",{className:"brz-ed-popup-integration-email__template-head"},s.a.createElement("p",{className:"brz-p"},s.a.createElement("strong",{className:"brz-strong"},Object(ie.a)("USE CUSTOM TEMPLATE"))),s.a.createElement(et.a,{className:"brz-ed-control__switch--light",defaultValue:o,onChange:this.handleEnableHtml})),s.a.createElement("div",{className:"brz-ed-popup-integration-email__template-body"},s.a.createElement(Hr.a,{className:"brz-ed-popup-integration-email__codemirror",value:t,onChange:this.handleHtmlChange,language:"xml",theme:"idea"}),s.a.createElement("div",{className:"brz-d-xs-flex brz-align-items-xs-center"},s.a.createElement("p",{className:"brz-p"},Object(ie.a)("Tip: Use these shortcodes to populate your template")),s.a.createElement(Se.b,{className:"brz-ed-popup-integration-email__tooltip",size:"small",openOnClick:!1,closeDelay:600,overlay:this.renderFormInfo()},s.a.createElement(F.b,{icon:"nc-alert-circle-que"}))))))}};function Lr(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function Mr(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?Lr(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):Lr(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}var Ir=class extends ze{constructor(...e){super(...e),Object(i.a)(this,"appsData",[]),Object(i.a)(this,"appsComponent",a),Object(i.a)(this,"handleConnectApp",async e=>{const t=e.id;await Object(pe.I)(),this.setState(Object(c.a)(o=>{const n=o.data[t]||{};o.connectedApp=t,o.stages=e.stages,o.data[t]=Mr(Mr({},n),e)}),()=>{this.handleNext()})})}async componentDidMount(){const e=Object(ue.a)("integrations.json"),t=await fetch(e),{recaptcha:o}=await t.json(),{status:n,data:a}=await Ae({group:"recaptcha",services:"recaptcha"});this.appsData=o,200===n&&a&&a.length>0?this.setState(Object(c.a)(e=>{e.data={recaptcha:{data:a[0]}},e.connectedApps=this.getConnectedApps(a),e.loading=!1})):this.setState({loading:!1})}getConnectedApps(e){return e.reduce((e,t)=>this.appsData.find(({id:e})=>e===t.group)?[...e,t.group]:e,[...this.state.connectedApps])}};const Wr=[{id:"email",title:Object(ie.a)("Email"),icon:"nc-email",component:Rr},{id:"service",title:Object(ie.a)("APPS"),icon:"nc-extensions-2",component:kr},{id:"recaptcha",title:Object(ie.a)("ReCAPTCHA"),icon:"nc-captcha",component:Ir}];class Nr extends l.Component{render(){const{formId:e,formFields:t,opened:o,onClose:n}=this.props;return s.a.createElement(de,{currentTab:"email",formId:e,formFields:t,opened:o,tabs:Wr,onClose:n})}}Object(i.a)(Nr,"defaultProps",{formId:"",formFields:[],opened:!1,onClose:v.default.noop});var Ar=Nr,Vr=o(88);class Dr extends l.Component{render(){const{opened:e,onClose:t}=this.props,o="MacOS"===Object(Vr.a)(),n=o?`${Object(ue.a)("editor/img/mac-keyboard1x.png")} 1x , ${Object(ue.a)("editor/img/mac-keyboard2x.png")} 2x`:`${Object(ue.a)("editor/img/pc-keyboard1x.png")} 1x , ${Object(ue.a)("editor/img/pc-keyboard2x.png")} 2x`;return s.a.createElement(y.a,{id:"key-helper",className:"brz-ed-hotkeys-overlay",opened:e,onClose:t},s.a.createElement("div",{className:"brz-ed-hotkeys-wrapper"},s.a.createElement(F.b,{icon:"nc-close-popup",className:"brz-ed-hotkeys-btn-close",onClick:t}),s.a.createElement("div",{className:"brz-ed-hotkeys-label"},Object(ie.a)("Keyboard Shortcuts")),s.a.createElement("div",{className:"brz-ed-hotkeys-image-container"},s.a.createElement("picture",null,s.a.createElement("img",{className:"brz-ed-hotkeys-image",srcSet:n}))),s.a.createElement("div",{className:"brz-ed-hotkeys-combination-container"},s.a.createElement("div",{className:"brz-ed-hotkeys-combination-container-column"},s.a.createElement("div",{className:"brz-ed-hotkeys-combination-container-column-list"},s.a.createElement("span",{className:"brz-ed-hotkeys-combination-container-column-label"},o?"cmd + C":"Ctrl + C"),s.a.createElement("span",{className:"brz-ed-hotkeys-combination-container-column-label-2"},Object(ie.a)("Copy"))),s.a.createElement("div",{className:"brz-ed-hotkeys-combination-container-column-list"},s.a.createElement("span",{className:"brz-ed-hotkeys-combination-container-column-label"},o?"cmd + V":"Ctrl + V"),s.a.createElement("span",{className:"brz-ed-hotkeys-combination-container-column-label-2"},Object(ie.a)("Paste"))),s.a.createElement("div",{className:"brz-ed-hotkeys-combination-container-column-list"},s.a.createElement("span",{className:"brz-ed-hotkeys-combination-container-column-label"},o?"cmd + shift + V":"Ctrl + Shift + V"),s.a.createElement("span",{className:"brz-ed-hotkeys-combination-container-column-label-2"},Object(ie.a)("Paste Style"))),s.a.createElement("div",{className:"brz-ed-hotkeys-combination-container-column-list"},s.a.createElement("span",{className:"brz-ed-hotkeys-combination-container-column-label"},o?"cmd + D":"Ctrl + D"),s.a.createElement("span",{className:"brz-ed-hotkeys-combination-container-column-label-2"},Object(ie.a)("Duplicate"))),s.a.createElement("div",{className:"brz-ed-hotkeys-combination-container-column-list"},s.a.createElement("span",{className:"brz-ed-hotkeys-combination-container-column-label"},o?"cmd + delete":"Delete"),s.a.createElement("span",{className:"brz-ed-hotkeys-combination-container-column-label-2"},Object(ie.a)("Delete"))),s.a.createElement("div",{className:"brz-ed-hotkeys-combination-container-column-list"},s.a.createElement("span",{className:"brz-ed-hotkeys-combination-container-column-label"},o?"cmd +":"Ctrl +",s.a.createElement(F.b,{className:"brz-ed-hotkeys-icons",icon:"nc-arrow"}),s.a.createElement("span",{className:"divider"}," / "),s.a.createElement(F.b,{className:"brz-ed-hotkeys-icons brz-ed-deg180",icon:"nc-arrow"})),s.a.createElement("span",{className:"brz-ed-hotkeys-combination-container-column-label-2"},Object(ie.a)("Horizontal Align"))),s.a.createElement("div",{className:"brz-ed-hotkeys-combination-container-column-list"},s.a.createElement("span",{className:"brz-ed-hotkeys-combination-container-column-label"},o?"cmd +":"Ctrl +",s.a.createElement(F.b,{className:"brz-ed-hotkeys-icons brz-ed-deg90",icon:"nc-arrow"}),s.a.createElement("span",{className:"divider"}," / "),s.a.createElement(F.b,{className:"brz-ed-hotkeys-icons brz-ed-deg270",icon:"nc-arrow"})),s.a.createElement("span",{className:"brz-ed-hotkeys-combination-container-column-label-2"},Object(ie.a)("Vertical Align")))),s.a.createElement("div",{className:"brz-ed-hotkeys-combination-container-column"},s.a.createElement("div",{className:"brz-ed-hotkeys-combination-container-column-list"},s.a.createElement("span",{className:"brz-ed-hotkeys-combination-container-column-label"},o?"cmd + Z":"Ctrl + Z"),s.a.createElement("span",{className:"brz-ed-hotkeys-combination-container-column-label-2"},Object(ie.a)("Undo"))),s.a.createElement("div",{className:"brz-ed-hotkeys-combination-container-column-list"},s.a.createElement("span",{className:"brz-ed-hotkeys-combination-container-column-label"},o?"cmd + shift + Z":"Ctrl + Shift + Z"),s.a.createElement("span",{className:"brz-ed-hotkeys-combination-container-column-label-2"},Object(ie.a)("Redo"))),s.a.createElement("div",{className:"brz-ed-hotkeys-combination-container-column-list"},s.a.createElement("span",{className:"brz-ed-hotkeys-combination-container-column-label"},o?"cmd + S":"Ctrl + S"),s.a.createElement("span",{className:"brz-ed-hotkeys-combination-container-column-label-2"},Object(ie.a)("Save Draft / Update Page"))),s.a.createElement("div",{className:"brz-ed-hotkeys-combination-container-column-list"},s.a.createElement("span",{className:"brz-ed-hotkeys-combination-container-column-label"},o?"cmd +":"Ctrl +",s.a.createElement(F.b,{className:"brz-ed-hotkeys-icons",icon:"nc-plus2"}),s.a.createElement("span",{className:"divider"}," / "),s.a.createElement(F.b,{className:"brz-ed-hotkeys-icons",icon:"nc-minus"})),s.a.createElement("span",{className:"brz-ed-hotkeys-combination-container-column-label-2"},Object(ie.a)("Responsive Zoom In / Out"))),s.a.createElement("div",{className:"brz-ed-hotkeys-combination-container-column-list"},s.a.createElement("span",{className:"brz-ed-hotkeys-combination-container-column-label"},o?"cmd +":"Ctrl +",s.a.createElement(F.b,{className:"brz-ed-hotkeys-icons",icon:"nc-alert-circle-que"})),s.a.createElement("span",{className:"brz-ed-hotkeys-combination-container-column-label-2"},Object(ie.a)("Shortcuts"))),s.a.createElement("div",{className:"brz-ed-hotkeys-combination-container-column-list"},s.a.createElement("span",{className:"brz-ed-hotkeys-combination-container-column-label"},o?"cmd + shift + A":"Ctrl + Shift + A"),s.a.createElement("span",{className:"brz-ed-hotkeys-combination-container-column-label-2"},Object(ie.a)("Add New Block / Layout"))),s.a.createElement("div",{className:"brz-ed-hotkeys-combination-container-column-list"},s.a.createElement("span",{className:"brz-ed-hotkeys-combination-container-column-label"},o?"esc":"Esc"),s.a.createElement("span",{className:"brz-ed-hotkeys-combination-container-column-label-2"},Object(ie.a)("Select Parent Element")))))))}}Object(i.a)(Dr,"defaultProps",{opened:!1,onClose:v.noop});var $r=o(94);function Gr(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function Ur(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?Gr(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):Gr(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const Kr=(e,t)=>{const o=e.family.toUpperCase(),n=t.family.toUpperCase();return o<n?-1:o>n?1:0};class Yr extends l.Component{constructor(...e){super(...e),Object(i.a)(this,"state",{loadingApp:""})}async handleDeleteFont(e,t){this.setState({loadingApp:t.brizyId}),"upload"===e?await(e=>{const{api:t}=f.a.get("wp"),o=f.a.get("editorVersion"),n=He(t.url,{action:t.deleteFont,hash:t.hash,version:o,id:e});return Object(pe.L)(n,{method:"POST"}).then(Fe).then(e=>e)})(t.id):await Object(pe.I)(),this.setState({loadingApp:""}),this.props.deleteFont({type:e,fonts:[t]})}getSortedFonts(e){return Object.entries(e).map(([e,{data:t}])=>t.map(t=>Ur(Ur({},t),{},{fontGroupType:e}))).reduce((e,t)=>e.concat(t),[]).sort(Kr)}render(){const{defaultFont:e,fonts:t}=this.props,{loadingApp:o}=this.state;return s.a.createElement(B.a,null,s.a.createElement("div",{className:"brz-ed-popup-fonts__lists brz-d-xs-flex brz-flex-xs-wrap"},this.getSortedFonts(t).map(t=>{let{fontGroupType:n}=t,a=Object(x.a)(t,["fontGroupType"]);const{id:r,brizyId:i,title:l,family:c}=Lo.b[n](a),d=e===r,u=o===i;return s.a.createElement("div",{key:i,className:"brz-ed-popup-fonts__item"},s.a.createElement("div",{className:"brz-ed-popup-fonts__item-logo",style:{fontFamily:c}},"Aa",!d&&!u&&s.a.createElement("div",{className:"brz-ed-badge__delete brz-ed-popup-fonts__delete",onClick:()=>{this.handleDeleteFont(n,a)}},s.a.createElement(F.b,{icon:"nc-trash"}))),s.a.createElement("div",{className:"brz-ed-popup-fonts__item-title"},l),u&&s.a.createElement("span",{className:"brz-span brz-ed-popup-integrations__app-icon"},s.a.createElement(F.b,{icon:"nc-circle-02",className:"brz-ed-animated--spin"})))})))}}Object(i.a)(Yr,"defaultProps",{fonts:{},defaultFont:"",deleteFont:v.default.noop,onClose:v.default.noop});const qr={deleteFont:qo.D};var Xr=Object(no.b)(e=>({fonts:Object($r.i)(e),defaultFont:Object(so.E)(e).data.font}),qr)(Yr);function Zr(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function Jr(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?Zr(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):Zr(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}class Qr extends l.Component{constructor(e){super(e),Object(i.a)(this,"handleAddNewFont",(e,t)=>{this.setState({selectedFont:t})}),Object(i.a)(this,"handleNext",async()=>{const{selectedFont:e}=this.state,{app:{data:{fonts:t}},onChangeNext:o}=this.context,n=t.find(({family:t})=>t===e);if(this.setState({nextLoading:!0,error:null}),await Object(pe.I)(),n){const e=Object(Lo.i)(this.props.fonts,Object(Lo.g)(n).id);e?this.props.addFonts([{type:e.group,fonts:[Jr(Jr({},e.font),{},{deleted:!1})]}]):this.props.addFonts([{type:"google",fonts:[n]}]),o()}else this.setState({error:`Font ${e} not found, please try again`,nextLoading:!1})}),Object(i.a)(this,"handlePrev",async()=>{this.setState({prevLoading:!0}),await Object(pe.I)(),this.context.onChangePrev()});const{config:t,blocks:o={},google:n={}}=this.props.fonts;this.usedFonts=[...t.data||[],...n.data||[],...o.data||[]],this.state={selectedFont:"",nextLoading:!1,prevLoading:!1,error:null}}static async onBeforeLoad(e){const{app:{id:t,data:o},onChange:n}=e,a=await Object(Lo.h)();n(t,Jr(Jr({},o),{},{fonts:a}))}render(){const{app:e}=this.context,{selectedFont:t,prevLoading:o,nextLoading:n,error:a}=this.state,r=e.data.fonts.filter(e=>{const{id:t}=Object(Lo.g)(e);return!this.usedFonts.some(e=>{const{id:o,deleted:n}=Object(Lo.g)(e);return!0!==n&&o===t})}).map(e=>({value:e.family,label:e.family})),i=[{title:Object(ie.a)("Font name"),type:"search",choices:r,value:t}],c=s.a.createElement(l.Fragment,null,Object(ie.a)("Tip: You can browse the Google font library")," ",s.a.createElement("a",{className:"brz-a",href:"https://fonts.google.com",target:"_blank",rel:"noopener noreferrer"},Object(ie.a)("here")),".");return s.a.createElement(ft,Object(C.a)({},e,{data:i,headTitle:Object(ie.a)("ADD GOOGLE FONT"),description:c,prevLoading:o,nextLoading:n,error:a,onActive:this.handleAddNewFont,onPrev:this.handlePrev,onNext:this.handleNext}))}}Object(i.a)(Qr,"contextType",me);const ei={addFonts:nn.f};var ti=Object(no.b)(e=>({fonts:Object(so.m)(e)}),ei)(Qr);class oi extends l.Component{constructor(...e){super(...e),Object(i.a)(this,"handleClose",()=>{this.props.onClose()})}render(){const{app:e}=this.context;return s.a.createElement(jt,Object(C.a)({},e,{onNext:this.handleClose}))}}Object(i.a)(oi,"contextType",me);var ni=oi;class ai extends Rt{}Object(i.a)(ai,"connect",ti),Object(i.a)(ai,"done",ni);var ri=ai;function ii(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function li(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?ii(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):ii(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}class si extends l.Component{constructor(e){super(e),Object(i.a)(this,"handleChange",(e,t)=>{t.length<=17&&this.setState({fontName:t})}),Object(i.a)(this,"handleNext",async()=>{const{fontName:e}=this.state,{app:{id:t,data:o={}},onChange:n,onChangeNext:a}=this.context;this.setState({nextLoading:!0}),await Object(pe.I)(),e.trim()?(n(t,li(li({},o),{},{fontName:e})),a()):this.setState({nextLoading:!1,error:Object(ie.a)("Font Name is Required")})}),Object(i.a)(this,"handlePrev",async()=>{this.setState({prevLoading:!0}),await Object(pe.I)(),this.context.onChangePrev()}),this.state={fontName:"",nextLoading:!1,prevLoading:!1,error:null}}render(){const{app:e}=this.context,{fontName:t,prevLoading:o,nextLoading:n,error:a}=this.state,r=[{title:Object(ie.a)("Font name"),value:t}];return s.a.createElement(ft,Object(C.a)({},e,{headTitle:Object(ie.a)("UPLOAD FONT"),data:r,error:a,prevLoading:o,nextLoading:n,onActive:this.handleChange,onNext:this.handleNext,onPrev:this.handlePrev}))}}Object(i.a)(si,"contextType",me);var ci=si,di=o(65);class ui extends l.Component{renderError(){return s.a.createElement("div",{className:"brz-ed-alert brz-ed-alert-error"},s.a.createElement("span",{className:"brz-span"},this.props.error))}renderSelect({name:e,value:t,choices:o}){const n=o.map(({title:e,name:t})=>s.a.createElement(S.a,{key:t,value:t},e));return s.a.createElement("div",{className:"brz-ed-popup-integrations-step__fields-select"},s.a.createElement(O.a,{className:"brz-control__select--white",maxItems:"6",itemHeight:"30",inPortal:!0,defaultValue:t,onChange:t=>{this.props.onActive(e,t)}},n))}renderUpload({name:e,value:t,accept:o}){return s.a.createElement("div",{className:"brz-ed-popup-integrations-step__fields-upload"},t?s.a.createElement(l.Fragment,null,s.a.createElement("span",{className:"brz-span"},t.name),s.a.createElement("button",{className:"brz-button brz-ed-btn brz-ed-btn-xs brz-ed-btn-gray brz-ed-btn-red--hover brz-ed-btn-rounded brz-fw-700",onClick:()=>{this.props.onActive(e,"")}}," ",Object(ie.a)("DELETE")," ")):s.a.createElement("label",{className:"brz-label brz-ed-btn brz-ed-btn-xs brz-ed-btn-gray brz-ed-btn-teal--hover brz-ed-btn-rounded brz-fw-700",htmlFor:e},s.a.createElement("input",{id:e,className:"brz-input brz-hidden",type:"file",accept:o,onChange:({target:t})=>{this.props.onActive(e,t.files[0])}}),Object(ie.a)("UPLOAD")))}renderOptions(){const e=this.props.data.map((e,t)=>{const{title:o,type:n,helper:a}=e;return s.a.createElement("div",{key:t,className:"brz-ed-popup-integrations-step__fields-option"},s.a.createElement("div",{className:"brz-d-xs-flex brz-align-items-xs-center"},s.a.createElement("p",{className:"brz-p"},o),a&&s.a.createElement(Se.b,{className:"brz-ed-popup-integrations-fields__tooltip",openOnClick:!1,inPortal:!0,overlay:s.a.createElement("div",{className:"brz-ed-popup-integrations-fields__info",dangerouslySetInnerHTML:{__html:a}})},s.a.createElement(F.b,{icon:"nc-alert-circle-que"}))),"select"===n&&this.renderSelect(e),"upload"===n&&this.renderUpload(e))});return s.a.createElement(st.a,{style:{maxHeight:255},className:"brz-ed-popup-integrations__scroll-pane"},e)}render(){const{error:e,prevLoading:t,nextLoading:o,onPrev:n,onNext:a}=this.props;return s.a.createElement("div",{className:"brz-ed-popup-integrations-step brz-ed-popup-integrations-step__fields"},e&&this.renderError(),s.a.createElement("div",{className:"brz-ed-popup-integrations-step__head"},s.a.createElement("p",{className:"brz-p"},s.a.createElement("strong",{className:"brz-strong"},Object(ie.a)("ADD FONT VARIATION")))),s.a.createElement("div",{className:"brz-ed-popup-integrations-step__body"},this.renderOptions(),s.a.createElement("div",{className:"brz-ed-popup-integrations-step__buttons"},null!==t&&s.a.createElement(Ge,{size:3,leftIcon:"nc-arrow-left",loading:t,onClick:n},Object(ie.a)("Back")),null!==o&&s.a.createElement(Ge,{color:"teal",loading:o,onClick:a},Object(ie.a)("Add Font")))))}}Object(i.a)(ui,"defaultProps",{data:[{title:"",value:"",name:"",helper:null}],nextLoading:null,prevLoading:null,onPrev:v.default.noop,onNext:v.default.noop,onActive:v.default.noop});var pi=ui;class bi extends l.Component{renderError(){return s.a.createElement("div",{className:"brz-ed-alert brz-ed-alert-error"},s.a.createElement("span",{className:"brz-span"},this.props.error))}renderOptions(){const{data:e,onActive:t}=this.props,o=e.map((e,o)=>{const{id:n,title:a,type:r}=e;return s.a.createElement("div",{key:o,className:"brz-ed-popup-integrations-step__fields-option brz-ed-popup-integrations-step__fields-option--big"},s.a.createElement("p",{className:"brz-p brz-ed-popup-integration__font-name"},a),s.a.createElement("p",{className:"brz-p",style:{fontWeight:n,flexBasis:"60%"}},r),s.a.createElement("div",{title:"Disconnect",className:"brz-ed-popup-integrations--delete",onClick:()=>{t(n)}},s.a.createElement(F.b,{icon:"nc-trash"})))});return s.a.createElement(st.a,{style:{maxHeight:255},className:"brz-ed-popup-integrations__scroll-pane"},o)}render(){const{error:e,prevLoading:t,nextLoading:o,createLoading:n,onPrev:a,onNext:r,onCreate:i}=this.props;return s.a.createElement("div",{className:"brz-ed-popup-integrations-step brz-ed-popup-integrations-step__fields"},e&&this.renderError(),s.a.createElement("div",{className:"brz-ed-popup-integrations-step__head"},s.a.createElement("p",{className:"brz-p"},s.a.createElement("strong",{className:"brz-strong"},Object(ie.a)("FONT VARIATION")))),s.a.createElement("div",{className:"brz-ed-popup-integrations-step__body"},this.renderOptions(),s.a.createElement("div",{className:"brz-ed-popup-integrations-new__option",onClick:i},s.a.createElement(F.b,{icon:n?"nc-circle-02":"nc-add",className:n?"brz-ed-animated--spin":""}),Object(ie.a)("Add new font variation")),s.a.createElement("div",{className:"brz-ed-popup-integrations-step__buttons"},null!==t&&s.a.createElement(Ge,{size:3,leftIcon:"nc-arrow-left",loading:t,onClick:a},Object(ie.a)("Back")),null!==o&&s.a.createElement(Ge,{color:"teal",loading:o,onClick:r},Object(ie.a)("Continue")))))}}Object(i.a)(bi,"defaultProps",{data:[{title:"",value:"",name:""}],nextLoading:null,prevLoading:null,createLoading:!1,onPrev:v.default.noop,onNext:v.default.noop,onActive:v.default.noop,onCreate:v.default.noop});var mi=bi;function hi(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function gi(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?hi(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):hi(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const vi=v.default.memoize(e=>Object.entries(e).map(([e,t])=>({title:t,name:e})));class fi extends l.Component{constructor(...e){super(...e),Object(i.a)(this,"state",{mode:"add",keyValue:this.getDefaultData(),nextLoading:!1,prevLoading:!1,addLoading:!1,error:null}),Object(i.a)(this,"handleChangeAddMode",async()=>{this.setState({addLoading:!0}),await Object(pe.I)(),this.setState({mode:"add",addLoading:!1})}),Object(i.a)(this,"handleUploadFonts",(e,t)=>{this.setState(({keyValue:o})=>({error:null,keyValue:gi(gi({},o),{},{[""+e]:t})}))}),Object(i.a)(this,"handleAddFonts",async()=>{const{app:{id:e,data:t},onChange:o}=this.context,n=this.state.keyValue,{weight:a}=n,r=Object(x.a)(n,["weight"]);if(this.setState({nextLoading:!0,error:null}),await Object(pe.I)(),!Object.values(r).some(e=>Boolean(e)))return void this.setState({nextLoading:!1,error:Object(ie.a)("You must be have one font added")});let i=new Set([...t.weights||[],Number(a)]);o(e,Object.assign({},t,{weights:[...i],files:gi(gi({},t.files||[]),{},{[a]:r})})),this.setState({mode:"edit",keyValue:this.getDefaultData(),nextLoading:!1})}),Object(i.a)(this,"handleRemoveFonts",e=>{const{app:{id:t,data:o},onChange:n}=this.context;n(t,Object.assign({},o,{weights:v.default.without(o.weights,e),files:v.default.omit(o.files,e)}))}),Object(i.a)(this,"handleNext",async()=>{const{app:{data:{files:e,fontName:t}},onChangeNext:o}=this.context;this.setState({nextLoading:!0});const{status:n,data:a}=await(({id:e,name:t,files:o})=>{const{api:n}=f.a.get("wp"),a=f.a.get("editorVersion"),r=He(n.url,{action:n.createFont,hash:n.hash,version:a}),i=new FormData;return i.append("id",e),i.append("family",t),Object.entries(o).forEach(([e,t])=>{Object.entries(t).forEach(([t,o])=>{o&&i.append(`fonts[${e}][${t}]`,o,o.name)})}),Object(pe.L)(r,{method:"POST",body:i}).then(Fe).then(e=>e)})({id:Object(di.a)(),name:t,files:e});200!==n?this.setState({nextLoading:!1,error:Object(ie.a)("Something went wrong")}):(this.props.dispatch(Object(nn.f)([{type:"upload",fonts:[a]}])),o())}),Object(i.a)(this,"handlePrev",async()=>{this.setState({prevLoading:!0}),await Object(pe.I)(),this.context.onChangePrev()})}getDefaultData(){return{weight:"400",ttf:"",eot:"",woff:"",woff2:""}}getAddData(){const{weight:e,ttf:t,eot:o,woff:n,woff2:a}=this.state.keyValue;return[{title:Object(ie.a)("Font weight"),name:"weight",type:"select",value:e,choices:vi(Lo.u)},{title:Object(ie.a)("TTF File"),name:"ttf",value:t,type:"upload",accept:".ttf",helper:"The Web Open Font Format (TTF) is a format used in web pages by modern browsers."},{title:Object(ie.a)("EOT File"),name:"eot",value:o,type:"upload",accept:".eot",helper:"The Web Open Font Format (EOT) is a format used in web pages by modern browsers."},{title:Object(ie.a)("WOFF File"),name:"woff",value:n,type:"upload",accept:".woff",helper:"The Web Open Font Format (WOFF) is a format used in web pages by modern browsers."},{title:Object(ie.a)("WOFF2 File"),name:"woff2",value:a,type:"upload",accept:".woff2",helper:"The Web Open Font Format (WOFF2) is a format used in web pages by modern browsers."}]}getEditData(){const{data:{fontName:e,weights:t}}=this.context.app;return t.map(t=>({id:t,title:e,type:Lo.u[t]}))}render(){const{mode:e,nextLoading:t,prevLoading:o,addLoading:n,error:a}=this.state;return"add"===e?s.a.createElement(pi,{data:this.getAddData(),error:a,nextLoading:t,prevLoading:o,onNext:this.handleAddFonts,onPrev:this.handlePrev,onActive:this.handleUploadFonts}):s.a.createElement(mi,{data:this.getEditData(),error:a,nextLoading:t,prevLoading:o,createLoading:n,onNext:this.handleNext,onPrev:this.handlePrev,onCreate:this.handleChangeAddMode,onActive:this.handleRemoveFonts})}}Object(i.a)(fi,"contextType",me);var yi=Object(no.b)()(fi);class Oi extends Rt{}Object(i.a)(Oi,"upload",ci),Object(i.a)(Oi,"variation",yi),Object(i.a)(Oi,"done",ni);var Si=Oi;const xi=f.a.get("pro");var Ci=class extends ze{constructor(...e){super(...e),Object(i.a)(this,"appsData",[]),Object(i.a)(this,"appsComponent",r),Object(i.a)(this,"proExceptions",!xi),Object(i.a)(this,"handleConnectApp",async e=>{const t=e.id,{stages:o=[]}=this.appsData.find(e=>e.id===t)||{};await Object(pe.I)(),this.setState(Object(c.a)(n=>{n.stages=o,n.connectedApp=t,n.data[t]=e}),()=>{this.handleNext()})})}async componentDidMount(){const e=Object(ue.a)("integrations.json"),t=await fetch(e),{fonts:o}=await t.json();this.appsData=o,this.setState({loading:!1})}};const ji=[{id:"upload",title:Object(ie.a)("Add New"),icon:"nc-add",component:Ci},{id:"fonts",title:Object(ie.a)("Fonts"),icon:"nc-font",component:Xr}];class Pi extends l.Component{render(){const{opened:e,onClose:t}=this.props;return s.a.createElement(de,{opened:e,tabs:ji,currentTab:"upload",blockTabsWhenLoading:!1,onClose:t})}}Object(i.a)(Pi,"defaultProps",{opened:!1,onClose:v.noop});var Bi=Pi;var wi=e=>s.a.createElement("div",{className:"brz-ed-popup-conditions__buttons"},s.a.createElement("button",{className:"brz-button brz-button__cancel",onClick:e.onClose},Object(ie.a)("Cancel")),s.a.createElement("button",{className:"brz-button brz-button__save",onClick:e.onChange},e.loading?s.a.createElement(F.b,{icon:"nc-circle-02",className:"brz-ed-animated--spin"}):Object(ie.a)("Save")));function Ti({showTypeButton:e=!0,active:t,children:o,onChange:n,onRemove:a}){const r=t?"include":"exclude",i=t?s.a.createElement(F.b,{icon:"nc-include"}):s.a.createElement(F.b,{icon:"nc-none"}),l=g()("brz-ed-popup-conditions__type","brz-ed-popup-conditions__type-"+r);return s.a.createElement("div",{className:"brz-ed-popup-conditions__condition brz-d-xs-flex"},e&&s.a.createElement("div",{className:l,onClick:()=>n({active:!t})},s.a.createElement("span",{className:"brz-ed-popup-conditions__type-text"},i,Object(Gt.c)(r))),s.a.createElement("div",{className:"brz-ed-popup-conditions__select brz-d-xs-flex"},o),s.a.createElement("div",{className:"brz-ed-popup-conditions__remove",onClick:a},s.a.createElement(F.b,{icon:"nc-trash"})))}var zi=o(144),Ei=o(96);function ki(e,{appliedFor:t,entityType:o}){return e.findIndex(({groupValue:e,value:n})=>e===t&&n===o)}function Hi(e){return e.filter((function(t,o){return e.findIndex(({appliedFor:e,entityType:o,entityValues:n})=>e===t.appliedFor&&o===t.entityType&&v.default.isEqual(n,t.entityValues))>=o})).map(e=>{let{id:t}=e;return Object(x.a)(e,["id"])})}class Fi extends s.a.Component{renderGroupOptions(e){return[{title:"All",groupValue:"",value:""},...e].map(({title:e,value:t,groupValue:o,disabled:n})=>s.a.createElement(S.a,{key:"key-"+t,value:`${o}|${t}`,disabled:n},e))}renderTypeOptions(e){return[{title:"All",value:""},...e].map(e=>e.items?s.a.createElement(zi.a,{key:e.value,title:e.title,items:e.items.map(t)},s.a.createElement("span",{className:"brz-span"},e.title)):t(e));function t({title:e,value:t}){return s.a.createElement(S.a,{key:t,value:String(t)},e)}}render(){const{rulesList:e,rule:t,onGroupChange:o,onTypeChange:n}=this.props,a=e[ki(e,t)];return s.a.createElement("div",{className:"brz-ed-popup-conditions__select brz-d-xs-flex"},s.a.createElement(O.a,{className:"brz-control__select--light",maxItems:6,itemHeight:30,defaultValue:`${t.appliedFor}|${t.entityType}`,onChange:o},this.renderGroupOptions(e)),a&&a.items&&s.a.createElement(O.a,{defaultValue:String(t.entityValues[0]),className:"brz-control__select--light",maxItems:6,itemHeight:30,onChange:n},this.renderTypeOptions(a.items)))}}Object(i.a)(Fi,"defaultProps",{rulesList:[],rule:{},onGroupChange:v.default.noop,onTypeChange:v.default.noop});var _i=Fi;function Ri(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function Li(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?Ri(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):Ri(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}class Mi extends s.a.Component{constructor(...e){super(...e),Object(i.a)(this,"handleRemove",e=>{this.props.onChange(Object(tt.removeAt)(this.props.rules,e))}),Object(i.a)(this,"handleVisibilityTypeChange",(e,t)=>{t=t?1:2;const o=Object(tt.setIn)(this.props.rules,[e,"type"],Number(t));this.props.onChange(o)}),Object(i.a)(this,"handleGroupChange",(e,t)=>{const{rules:o}=this.props;let[n,a]=e.split("|");const r=Li(Li({},o[t]),{},{entityType:a,appliedFor:""===n||null===n?null:Number(n),entityValues:[]});this.props.onChange(Object(tt.setIn)(o,[t],r))}),Object(i.a)(this,"handleTypeChange",(e,t)=>{const{rules:o}=this.props,n=e?[e]:[];this.props.onChange(Object(tt.setIn)(o,[t,"entityValues"],n))})}render(){const{rules:e,rulesList:t}=this.props;return e.map((e,o)=>{let{type:n}=e,a=Object(x.a)(e,["type"]);const r=1===n;return s.a.createElement(Ti,{key:o,active:r,index:o,onChange:()=>this.handleVisibilityTypeChange(o,!r),onRemove:()=>this.handleRemove(o)},s.a.createElement(_i,{rule:a,rulesList:t,onGroupChange:e=>this.handleGroupChange(e,o),onTypeChange:e=>this.handleTypeChange(e,o)}))})}}Object(i.a)(Mi,"defaultProps",{rules:[],rulesList:[],onChange:v.default.noop});var Ii=Mi;function Wi(e){const[t,o]=Object(l.useState)([]),[n,a]=Object(l.useState)(!0);return Object(l.useEffect)(()=>{!async function(){a(!0);const e=(await Object(pe.q)()||[]).map(({items:e})=>e).flat();a(!1),o(e)}()},[]),Object(l.useEffect)(()=>{null!==e&&t.length&&async function(){const n=function(e){return e.reduce((e,t)=>(e.find(({appliedFor:e,entityType:o})=>e===t.appliedFor&&o===t.entityType)||e.push(t),e),[])}(e);let a=t;n.forEach(async n=>{const r=ki(t,n),i=n.appliedFor,l=t[r]&&t[r].items;if([Ei.c,Ei.a,Ei.d].includes(i)&&!l){let t=[];switch(i){case Ei.c:case Ei.d:{const{posts:e}=await Object(pe.v)(n.entityType);t=e.map(({ID:e,title:t})=>({title:t,value:e}));break}case Ei.a:t=(await Object(pe.F)(n.entityType)).map(({name:e,term_id:t})=>({title:e,value:t}));break}a=Object(tt.setIn)(a,[r,"items"],t),o(function(e,t){if(!t.length)return t;let o=t;return e.forEach(e=>{const n=ki(t,e);if(-1!==n)if(e.appliedFor!==Ei.c&&e.appliedFor!==Ei.a)o=Object(tt.setIn)(o,[n,"disabled"],!0);else{const{items:t}=o[n];if(t&&e.entityValues.length){const a=t.findIndex(({value:t})=>e.entityValues.includes(t));-1!==a&&(o=Object(tt.setIn)(o,[n,"items",a,"disabled"],!0))}}}),o}(e,a))}})}()},[e,t]),[n,t]}var Ni=o(56);var Ai=e=>{const{value:t=[],asyncGetValue:o,onClose:n=v.noop,onChange:a=v.noop}=e,[r,i]=Object(l.useState)(t),[c,d]=Object(l.useState)(!1),[u,p]=Object(l.useState)(null),[b,m]=Wi(r),h=Object(no.d)(so.C);return Object(l.useEffect)(()=>{o&&async function(e){let t=await e();A.c&&!t?t=[{type:1,appliedFor:null,entityType:"",entityValues:[]}]:t||(t=[]),i(t)}(o)},[]),s.a.createElement(s.a.Fragment,null,b?s.a.createElement("div",{className:"brz-ed-popup-conditions__spin"},s.a.createElement(F.b,{icon:"nc-circle-02",className:"brz-ed-animated--spin"})):s.a.createElement(st.a,{style:{overflow:"hidden",height:"350px"},className:"brz-ed-scroll--medium brz-ed-scroll--new-dark"},null!==r&&s.a.createElement(Ii,{rules:r,rulesList:m,onChange:function(e){A.h&&i(e)}}),s.a.createElement("div",{className:"brz-ed-popup-conditions__add-condition",onClick:function(){if(A.h){const e=f.a.getAll(),t={type:1,appliedFor:Ei.c,entityType:"page",entityValues:[]};Object(Ni.e)(h)&&(t.entityType=h.collectionType.id),Object(Ni.c)(e)&&Object(Ni.b)(e)&&Object(Ni.f)(e)&&(t.entityType=Ei.b),co.b&&(t.appliedFor=null,t.entityType=""),i([...r,t])}}},s.a.createElement(F.b,{icon:"nc-add"})," ",Object(ie.a)("Add new display condition"))),u&&s.a.createElement("div",{className:"error"},u),s.a.createElement(wi,{loading:c,onChange:function(){A.h&&(d(!0),p(null),a({data:{rules:Hi(r)},meta:{syncSuccess:()=>d(!1),syncFail:e=>{var t,o;d(!1),p(null!==(t=null===(o=e.responseJSON)||void 0===o?void 0:o.data.message)&&void 0!==t?t:Object(ie.a)("Something went wrong"))}}}))},onClose:n}))};function Vi(e){const{className:t,type:o="text",placeholder:n="",value:a="",onChange:r=(()=>{})}=e,i=g()("brz-input",t);return s.a.createElement("div",{className:"brz-control__select"},s.a.createElement("input",{className:i,type:o,placeholder:n,value:a,onChange:({target:{value:e}})=>r(e)}))}function Di(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function $i(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?Di(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):Di(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function Gi(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function Ui(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?Gi(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):Gi(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function Ki(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function Yi(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?Ki(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):Ki(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const qi={search_engines:"Any Search Engine",bing:"Bing",yandex:"Yandex",yahoo:"Yahoo",baidu:"Baidu","so.com":"So.com","360.cn":"360.cn",aol:"AOL",duckduckgo:"DuckDuckGo","ask.com":"Ask.com","mail.ru":"Mail.ru",sogou:"Sogou"},Xi={social_networks:"Any Social Networks",facebook:"Facebook",pinterest:"Pinterest",twitter:"Twitter",linkedin:"LinkedIn"},Zi={external:"External Links",internal:"Internal Links"};function Ji(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function Qi(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?Ji(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):Ji(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function el(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function tl(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?el(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):el(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}o(315);function ol(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function nl(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?ol(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):ol(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function al(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function rl(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?al(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):al(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function il(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function ll(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?il(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):il(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function sl(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function cl(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?sl(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):sl(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function dl(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function ul(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?dl(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):dl(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const pl={android:"Android",bada:"Bada",blackberry:"BlackBerry OS",chromeOs:"Chrome OS",firefoxOs:"Firefox OS",ios:"IOS",linux:"Linux",mac:"Mac OS",windows:"Windows"};function bl(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function ml(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?bl(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):bl(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function hl(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function gl(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?hl(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):hl(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}var vl=[{id:"pageLoad",title:"On Page Load",type:"number",placeholder:"After (sec)",Component:Vi},{id:"scrolling",title:"On Scroll",defaultValue:{value:"down",within:"",toElement:""},duplicatesAmount:1/0,Component:function(e){const{value:t="",onChange:o=(()=>{})}=e;return s.a.createElement(s.a.Fragment,null,s.a.createElement(O.a,{className:"brz-control__select--light",itemHeight:30,defaultValue:t.value,onChange:e=>o($i($i({},t),{},{value:e}))},s.a.createElement(S.a,{key:"down",value:"down"},"Down"),s.a.createElement(S.a,{key:"up",value:"up"},"Up"),s.a.createElement(S.a,{key:"toElement",value:"toElement"},"To element")),"down"===t.value&&s.a.createElement("div",{className:"brz-control__select"},s.a.createElement("input",{className:"brz-input",type:"number",placeholder:"% of page height",value:t.within,onChange:({target:{value:e}})=>o($i($i({},t),{},{within:e}))})),"toElement"===t.value&&s.a.createElement("div",{className:"brz-control__select"},s.a.createElement("input",{className:"brz-input",type:"text",placeholder:".my-class",value:t.toElement||"",onChange:({target:{value:e}})=>o($i($i({},t),{},{toElement:e}))})))}},{id:"click",title:"On Click",type:"number",placeholder:"clicks",Component:Vi},{id:"inactivity",title:"After Inactivity",type:"number",placeholder:"After (sec)",Component:Vi},{id:"exitIntent",title:"On Page Exit Intent",defaultValue:!0},{id:"showing",title:"Show After X",defaultValue:{value:"views",type:"equals",views:5,sessions:3},duplicatesAmount:2,Component:function(e){const{value:t="",onChange:o=(()=>{})}=e;return s.a.createElement(s.a.Fragment,null,s.a.createElement(O.a,{className:"brz-control__select--light",itemHeight:30,defaultValue:t.value,onChange:e=>o(Ui(Ui({},t),{},{value:e}))},s.a.createElement(S.a,{key:"views",value:"views"},"viewed pages"),s.a.createElement(S.a,{key:"sessions",value:"sessions"},"Sessions")),s.a.createElement(O.a,{className:"brz-control__select--light",itemHeight:30,defaultValue:t.type,onChange:e=>o(Ui(Ui({},t),{},{type:e}))},s.a.createElement(S.a,{key:"is fewer",value:"is fewer"},"is fewer than"),s.a.createElement(S.a,{key:"equals",value:"equals"},"equals"),s.a.createElement(S.a,{key:"is more",value:"is more"},"is more than")),s.a.createElement("div",{className:"brz-control__select"},s.a.createElement("input",{className:"brz-input",type:"number",placeholder:"Number of",value:t[t.value],onChange:({target:{value:e}})=>o(Ui(Ui({},t),{},{[t.value]:e}))})))}},{id:"referrer",title:"Arriving From",defaultValue:{type:"is",value:"show",url:"",source:"search_engines"},duplicatesAmount:1/0,Component:function(e){const{value:t="",onChange:o=(()=>{})}=e;return s.a.createElement(s.a.Fragment,null,s.a.createElement(O.a,{className:"brz-control__select--light",itemHeight:30,defaultValue:t.value,onChange:e=>o(Yi(Yi({},t),{},{value:e}))},s.a.createElement(S.a,{key:"show",value:"show"},"Show"),s.a.createElement(S.a,{key:"hide",value:"hide"},"Hide"),s.a.createElement(S.a,{key:"regex",value:"regex"},"Regex"),s.a.createElement(S.a,{key:"source",value:"source"},"Source")),"source"===t.value?[s.a.createElement(O.a,{key:"type",className:"brz-control__select--light",itemHeight:30,defaultValue:t.type,onChange:e=>o(Yi(Yi({},t),{},{type:e}))},s.a.createElement(S.a,{key:"is",value:"is"},"is"),s.a.createElement(S.a,{key:"is not",value:"is not"},"is not")),s.a.createElement(O.a,{className:"brz-control__select--light",key:"source",itemHeight:30,defaultValue:t.source,onChange:e=>o(Yi(Yi({},t),{},{source:e}))},s.a.createElement(zi.a,{key:"Organic",title:"Organic",items:n(qi)},s.a.createElement("span",{className:"brz-span"},"Organic")),s.a.createElement(zi.a,{key:"Social Networks",title:"Social Networks",items:n(Xi)},s.a.createElement("span",{className:"brz-span"},"Networks")),s.a.createElement(zi.a,{key:"Other",title:"Other",items:n(Zi)},s.a.createElement("span",{className:"brz-span"},"Other")))]:s.a.createElement("div",{className:"brz-control__select"},s.a.createElement("input",{className:"brz-input",type:"text",placeholder:"URL",value:t.url,onChange:({target:{value:e}})=>o(Yi(Yi({},t),{},{url:e}))})));function n(e){return Object.entries(e).map(([e,t])=>s.a.createElement(S.a,{key:e,value:e},t))}}},{id:"loggedIn",title:"Hide for logged in users",defaultValue:{value:"all",user:void 0},duplicatesAmount:1/0,Component:function(e){const{value:t={},onChange:o=(()=>{})}=e,{availableRoles:n}=f.a.get("wp");let a=null;return"custom"===t.value&&(a=Array.isArray(n)&&n.length?s.a.createElement(O.a,{className:"brz-control__select--light",itemHeight:30,defaultValue:t.user,onChange:e=>o(Qi(Qi({},t),{},{user:e}))},n.map(({role:e,name:t})=>s.a.createElement(S.a,{key:e,value:e},t))):s.a.createElement("span",null,"There are no available users. Add user first")),s.a.createElement(s.a.Fragment,null,s.a.createElement(O.a,{className:"brz-control__select--light",itemHeight:30,defaultValue:t.value,onChange:function(e){var t;const a="all"===e?{value:e}:{value:e,user:null==n||null===(t=n[0])||void 0===t?void 0:t.role};o(a)}},s.a.createElement(S.a,{key:"all",value:"all"},"All users"),s.a.createElement(S.a,{key:"custom",value:"custom"},"Custom")),a)}},{id:"devices",title:"Show on devices",defaultValue:"desktop",duplicatesAmount:3,Component:function(e){const{value:t="",onChange:o=(()=>{})}=e;return s.a.createElement(s.a.Fragment,null,s.a.createElement(O.a,{className:"brz-control__select--light",itemHeight:30,defaultValue:t,onChange:e=>o(e)},s.a.createElement(S.a,{key:"desktop",value:"desktop"},"Desktop"),s.a.createElement(S.a,{key:"tablet",value:"tablet"},"Tablet"),s.a.createElement(S.a,{key:"mobile",value:"mobile"},"Mobile")))}},{id:"currentUrl",title:"Current Page URL",defaultValue:{type:"matches",value:""},duplicatesAmount:1/0,Component:function(e){const{value:t="",onChange:o=(()=>{})}=e;return s.a.createElement(s.a.Fragment,null,s.a.createElement(O.a,{className:"brz-control__select--light",itemHeight:30,defaultValue:t.type,onChange:e=>o(tl(tl({},t),{},{type:e}))},s.a.createElement(S.a,{key:"matches",value:"matches"},"matches"),s.a.createElement(S.a,{key:"contains",value:"contains"},"contains"),s.a.createElement(S.a,{key:"does not contain",value:"does not contain"},"does not contain"),s.a.createElement(S.a,{key:"does not match",value:"does not match"},"does not match")),s.a.createElement("div",{className:"brz-control__select"},s.a.createElement("input",{className:"brz-input",type:"text",placeholder:"URL",value:t.value,onChange:({target:{value:e}})=>o(tl(tl({},t),{},{value:e}))})))}},{id:"currentDate",title:"Current Date",defaultValue:{type:"matches",value:""},duplicatesAmount:1/0,Component:function(e){const{value:t="",onChange:o=(()=>{})}=e,n=(new Date).toJSON().slice(0,10).split("-").reverse().join("/");return s.a.createElement(s.a.Fragment,null,s.a.createElement(O.a,{className:"brz-control__select--light",itemHeight:30,defaultValue:t.type,onChange:e=>o(nl(nl({},t),{},{type:e}))},s.a.createElement(S.a,{key:"before",value:"before"},"is before"),s.a.createElement(S.a,{key:"matches",value:"matches"},"matches"),s.a.createElement(S.a,{key:"after",value:"after"},"is after")),s.a.createElement("div",{className:"brz-control__select"},s.a.createElement("input",{className:"brz-input",type:"text",placeholder:n,value:t.value,onChange:({target:{value:e}})=>o(nl(nl({},t),{},{value:e}))})))}},{id:"lastVisitDate",title:"Last Visit Date",defaultValue:{type:"matches",value:""},duplicatesAmount:1/0,Component:function(e){const{value:t="",onChange:o=(()=>{})}=e,n=(new Date).toJSON().slice(0,10).split("-").reverse().join("/");return s.a.createElement(s.a.Fragment,null,s.a.createElement(O.a,{className:"brz-control__select--light",itemHeight:30,defaultValue:t.type,onChange:e=>o(rl(rl({},t),{},{type:e}))},s.a.createElement(S.a,{key:"before",value:"before"},"is before"),s.a.createElement(S.a,{key:"matches",value:"matches"},"matches"),s.a.createElement(S.a,{key:"after",value:"after"},"is after")),s.a.createElement("div",{className:"brz-control__select"},s.a.createElement("input",{className:"brz-input",type:"text",placeholder:n,value:t.value,onChange:({target:{value:e}})=>o(rl(rl({},t),{},{value:e}))})))}},{id:"timeFrom",title:"Time From",defaultValue:{type:"greater",visit:"first",time:"days",value:""},duplicatesAmount:1/0,Component:function(e){const{value:t="",onChange:o=(()=>{})}=e;return s.a.createElement(s.a.Fragment,null,s.a.createElement(O.a,{className:"brz-control__select--light",itemHeight:30,defaultValue:t.visit,onChange:e=>o(ll(ll({},t),{},{visit:e}))},s.a.createElement(S.a,{key:"first",value:"first"},"the first visit"),s.a.createElement(S.a,{key:"last",value:"last"},"the last visit")),s.a.createElement(O.a,{className:"brz-control__select--light",itemHeight:30,defaultValue:t.type,onChange:e=>o(ll(ll({},t),{},{type:e}))},s.a.createElement(S.a,{key:"greater",value:"greater"},"is greater than"),s.a.createElement(S.a,{key:"less",value:"less"},"is less than")),s.a.createElement("div",{className:"brz-control__select"},s.a.createElement("input",{className:"brz-input",type:"number",placeholder:"Number of",value:t.value,onChange:({target:{value:e}})=>o(ll(ll({},t),{},{value:e}))})),s.a.createElement(O.a,{className:"brz-control__select--light",itemHeight:30,defaultValue:t.time,onChange:e=>o(ll(ll({},t),{},{time:e}))},s.a.createElement(S.a,{key:"days",value:"days"},"days"),s.a.createElement(S.a,{key:"hours",value:"hours"},"hours")))}},{id:"cookie",title:"Cookie",defaultValue:{type:"matches",param:"",value:""},duplicatesAmount:1/0,Component:function(e){const{value:t="",onChange:o=(()=>{})}=e;return s.a.createElement(s.a.Fragment,null,s.a.createElement("div",{className:"brz-control__select"},s.a.createElement("input",{className:"brz-input",type:"text",placeholder:"param",value:t.param,onChange:({target:{value:e}})=>o(cl(cl({},t),{},{param:e}))})),s.a.createElement(O.a,{className:"brz-control__select--light",itemHeight:30,defaultValue:t.type,onChange:e=>o(cl(cl({},t),{},{type:e}))},s.a.createElement(S.a,{key:"matches",value:"matches"},"matches"),s.a.createElement(S.a,{key:"contains",value:"contains"},"contains"),s.a.createElement(S.a,{key:"does not contain",value:"does not contain"},"does not contain"),s.a.createElement(S.a,{key:"does not match",value:"does not match"},"does not match")),s.a.createElement("div",{className:"brz-control__select"},s.a.createElement("input",{className:"brz-input",type:"text",placeholder:"value",value:t.value,onChange:({target:{value:e}})=>o(cl(cl({},t),{},{value:e}))})))}},{id:"os",title:"Operating System",defaultValue:{type:"is",value:"windows"},duplicatesAmount:1/0,Component:function(e){const{value:t="",onChange:o=(()=>{})}=e;return s.a.createElement(s.a.Fragment,null,s.a.createElement(O.a,{className:"brz-control__select--light",itemHeight:30,defaultValue:t.type,onChange:e=>o(ul(ul({},t),{},{type:e}))},s.a.createElement(S.a,{key:"is",value:"is"},"is"),s.a.createElement(S.a,{key:"is not",value:"is not"},"is not")),s.a.createElement(O.a,{className:"brz-control__select--light",itemHeight:30,defaultValue:t.value,onChange:e=>o(ul(ul({},t),{},{value:e}))},(n=pl,Object.entries(n).map(([e,t])=>s.a.createElement(S.a,{key:e,value:e},t)))));var n}},{id:"otherPopups",title:"No other popup",defaultValue:{type:"was",value:"page"},duplicatesAmount:1,Component:function(e){const{value:t="",onChange:o=(()=>{})}=e;return s.a.createElement(s.a.Fragment,null,s.a.createElement(O.a,{className:"brz-control__select--light",itemHeight:30,defaultValue:t.type,onChange:e=>o(ml(ml({},t),{},{type:e}))},s.a.createElement(S.a,{key:"was",value:"was"},"was shown"),s.a.createElement(S.a,{key:"was not",value:"was not"},"was not shown")),s.a.createElement(O.a,{className:"brz-control__select--light",itemHeight:30,defaultValue:t.value,onChange:e=>o(ml(ml({},t),{},{value:e}))},s.a.createElement(S.a,{key:"page",value:"page"},"on the same page"),s.a.createElement(S.a,{key:"session",value:"session"},"during the session")))}},{id:"specificPopup",title:"Other specific popup",defaultValue:{type:"was",value:""},duplicatesAmount:1/0,Component:function(e){const{value:t="",onChange:o=(()=>{})}=e;return s.a.createElement(s.a.Fragment,null,s.a.createElement(O.a,{className:"brz-control__select--light",itemHeight:30,defaultValue:t.type,onChange:e=>o(gl(gl({},t),{},{type:e}))},s.a.createElement(S.a,{key:"was",value:"was"},"was shown"),s.a.createElement(S.a,{key:"was not",value:"was not"},"was not shown")),s.a.createElement("div",{className:"brz-control__select"},s.a.createElement("input",{className:"brz-input",type:"text",placeholder:"#popup-id",value:t.value,onChange:({target:{value:e}})=>o(gl(gl({},t),{},{value:e}))})))}}];function fl(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function yl(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?fl(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):fl(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}class Ol extends s.a.Component{constructor(e){super(e),Object(i.a)(this,"handleChange",()=>{if(A.h){const{values:e,triggerOnce:t}=this.state,o={id:"triggerOnce",active:!0,value:t};this.setState({loading:!0},()=>{const t={syncSuccess:()=>this.setState({loading:!1}),syncFail:()=>this.setState({loading:!1})};this.props.dispatch(Object(qo.P)([...e,o],t))})}}),Object(i.a)(this,"handleTriggerOnceChange",e=>{A.h&&this.setState({triggerOnce:e})}),Object(i.a)(this,"handleWrapperTriggerChange",(e,t)=>{A.h&&this.setState({values:Object(tt.setIn)(this.state.values,[e],yl(yl({},this.state.values[e]),t))})}),Object(i.a)(this,"handleWrapperTriggerRemove",e=>{A.h&&this.setState({values:Object(tt.removeAt)(this.state.values,e)})}),Object(i.a)(this,"handleValueChange",(e,t)=>{A.h&&this.setState({values:Object(tt.setIn)(this.state.values,[e,"value"],t)})}),Object(i.a)(this,"handleAdd",()=>{if(A.h){const{values:e}=this.state,t=this.getAvailableItems();t[0]&&this.setState({values:[...e,{id:t[0].id,active:!0,value:t[0].defaultValue}]})}});const t=e.values.find(({id:e})=>"triggerOnce"===e)||{},o=Object(tt.removeAt)(e.values,e.values.indexOf(t));this.state={triggerOnce:t.value||!1,values:o,loading:!1}}handleTriggerChange(e,t){const{values:o}=this.state,{defaultValue:n}=vl.find(({id:e})=>e===t),a=Object(tt.setIn)(o,[e],yl(yl({},o[e]),{},{id:t,value:n}));this.setState({values:a})}getAvailableItems(e){const{values:t}=this.state;let o=t.reduce((e,{id:t})=>(e[t]?e[t]++:e[t]=1,e),{});return vl.filter(({id:n,duplicatesAmount:a=1})=>{const r=t.find(e=>e.id===n),i=o[n]&&a>o[n];return e===n||i||!r}).sort(({id:e,duplicatesAmount:o=0},{id:n,duplicatesAmount:a=0})=>{const r=t.find(t=>t.id===e),i=t.find(e=>e.id===n);return r?1:i?-1:o>a?1:o<a?-1:0})}renderTriggers(e){const{values:t}=this.state,o=t[e].id,n=this.getAvailableItems(o).map(({id:e,title:t},o)=>s.a.createElement(S.a,{key:o,value:e},t));return s.a.createElement(O.a,{className:"brz-control__select--light",itemHeight:30,defaultValue:o,onChange:t=>this.handleTriggerChange(e,t)},n)}render(){const{values:e,triggerOnce:t}=this.state,o=e.map((e,t)=>{const o=vl.find(({id:t})=>t===e.id)||{},{Component:n}=o,a=Object(x.a)(o,["Component"]),r=n?s.a.createElement(n,Object(C.a)({},a,e,{onChange:e=>this.handleValueChange(t,e)})):null;return s.a.createElement(Ti,{showTypeButton:!1,key:t,active:e.active,onChange:e=>this.handleWrapperTriggerChange(t,e),onRemove:()=>this.handleWrapperTriggerRemove(t)},this.renderTriggers(t),r)});return s.a.createElement(s.a.Fragment,null,s.a.createElement("div",{className:"brz-ed-popup-conditions__trigger-once"},s.a.createElement("div",null,Object(ie.a)("Trigger Popup Only Once")),s.a.createElement(et.a,{defaultValue:t,onChange:this.handleTriggerOnceChange})),s.a.createElement(st.a,{style:{overflow:"hidden",height:"350px"},className:"brz-ed-scroll--medium brz-ed-scroll--new-dark"},o,s.a.createElement("div",{className:"brz-ed-popup-conditions__add-condition",onClick:this.handleAdd},s.a.createElement(F.b,{icon:"nc-add"})," ",Object(ie.a)("Add new trigger condition"))),s.a.createElement(wi,{loading:this.state.loading,onChange:this.handleChange,onClose:this.props.onClose}))}}var Sl={rules:Ai,triggers:Object(no.b)(e=>({values:Object(so.N)(e)}),e=>({dispatch:e}))(Ol)};const xl=f.a.get("urls");class Cl extends l.Component{constructor(...e){super(...e),Object(i.a)(this,"state",{activeTab:this.props.options[0].type}),Object(i.a)(this,"handleTabChange",e=>this.setState({activeTab:e}))}renderIcons(){const{options:e}=this.props,{activeTab:t}=this.state;return e.map(e=>{const o=g()("brz-ed-popup-tab-item","brz-ed-popup-tab-item-conditions",{active:t===e.type});return s.a.createElement("div",{key:e.type,className:o,onClick:()=>this.handleTabChange(e.type)},s.a.createElement("div",{className:"brz-ed-popup-tab-icon"},s.a.createElement(F.b,{icon:e.icon})),s.a.createElement("div",{className:"brz-ed-popup-tab-name"},e.label))})}renderProException(){return s.a.createElement("div",{className:"brz-ed-alert brz-ed-alert-pro brz-mb-lg-0"},s.a.createElement("span",{className:"brz-span"},Object(ie.a)("Block conditions are available only in PRO")),s.a.createElement("a",{className:"brz-ed-btn brz-ed-btn-width-2 brz-ed-btn-sm brz-ed-btn-icon brz-ed-btn-icon--left brz-ed-btn-rounded brz-ed-btn-pro",rel:"noopener noreferrer",href:xl.upgradeToPro,target:"_blank"},s.a.createElement(F.b,{icon:"nc-lock"}),Object(ie.a)("Get a PRO plan")))}render(){const{options:e,opened:t,onClose:o}=this.props,{activeTab:n}=this.state,a=Sl[n],r=e.find(({type:e})=>e===n),{type:i,icon:l,label:c,title:d}=r,u=Object(x.a)(r,["type","icon","label","title"]);return s.a.createElement(y.a,{opened:t,onClose:o},s.a.createElement("div",{className:"brz-ed-popup-wrapper"},s.a.createElement("div",{className:"brz-ed-popup-header"},s.a.createElement("div",{className:"brz-ed-popup-header__tabs"},this.renderIcons()),s.a.createElement("div",{className:"brz-ed-popup-btn-close",onClick:o})),s.a.createElement("div",{className:"brz-ed-popup-content brz-ed-popup-pane brz-ed-popup-icons"},s.a.createElement("div",{className:"brz-ed-popup-body"},!A.h&&this.renderProException(),s.a.createElement("div",{className:g()("brz-ed-popup-conditions",{"brz-ed-popup-conditions__free":!A.h})},s.a.createElement("div",{className:"brz-ed-popup-conditions__head"},s.a.createElement("h3",null,d)),s.a.createElement("div",{className:"brz-ed-popup-conditions__body"},s.a.createElement(a,Object(C.a)({},u,{onClose:o}))))))))}}Object(i.a)(Cl,"defaultProps",{options:[],onChange:()=>{},onClose:()=>{}});const jl={updateAuthorization:nn.v,updateSyncAllowed:nn.E},Pl=Object(no.b)(null,jl),Bl=Boolean(f.a.get("wp")),wl=[{title:"username",name:"username",required:!0},{title:"password",name:"password",type:"password",required:!0}];class Tl extends l.Component{constructor(...e){super(...e),Object(i.a)(this,"state",{data:null,loading:!0,nextLoading:!1,prevLoading:!1,recoverLoading:!1,notice:null,formData:{username:"",password:"",recoverEmail:""}}),Object(i.a)(this,"handleChange",(e,t)=>{void 0!==this.state.formData[e]&&this.setState(Object(c.a)(o=>{o.formData[e]=t}))}),Object(i.a)(this,"handleConnect",()=>{const{username:e,password:t}=this.state.formData,{onSuccess:o,onClose:n,updateAuthorization:a,updateSyncAllowed:r}=this.props;this.setState({notice:null,nextLoading:!0}),e&&e.trim()&&t&&t.trim()?(e=>{const{hash:t,url:o,cloudSignIn:n}=f.a.get("wp").api,a=f.a.get("editorVersion"),r=He(o,{hash:t,version:a,action:n});return Object(pe.L)(r,{method:"POST",headers:{"Content-Type":"application/json; charset=utf-8"},body:JSON.stringify(e)}).then(Fe).then(e=>e)})({password:t,email:e}).then(e=>{if(!e.status||e.status>=400)throw e;a("connected"),Object(dn.b)("connected"),Bl&&sn().then(e=>{const{status:t,data:o}=e||{};!t||t>=400?console.warn("Something went wrong",e):null!=o&&o.isSyncAllowed&&r(!0)}),o&&o(),n&&n()}).catch(e=>{this.setState({nextLoading:!1,notice:{message:Object(ie.a)("Incorrect username or password"),type:"error"}})}):this.setState({nextLoading:!1,notice:{message:Object(ie.a)("Incorrect username or password"),type:"error"}})}),Object(i.a)(this,"handleSkip",async()=>{const{onSkip:e,onClose:t,updateAuthorization:o}=this.props;this.setState({prevLoading:!0}),await Object(pe.I)(),this.setState({prevLoading:!1}),o("pending"),Object(dn.b)("pending"),e&&e(),t&&t()}),Object(i.a)(this,"handleRecover",async()=>{const{recoverEmail:e}=this.state.formData;this.setState({notice:null,recoverLoading:!0}),We(e)?e&&e.trim()?(e=>{const{hash:t,url:o,cloudResetPassword:n}=f.a.get("wp").api,a=f.a.get("editorVersion"),r=He(o,{hash:t,version:a,action:n});return Object(pe.L)(r,{method:"POST",headers:{"Content-Type":"application/json; charset=utf-8"},body:JSON.stringify({email:e})}).then(Fe).then(e=>e)})(e).then(e=>{if(!e.status||e.status>=400)throw e;this.setState({recoverLoading:!1,notice:{message:Object(ie.a)("Check your email address"),type:"success"}})}).catch(e=>{this.setState({recoverLoading:!1,notice:{message:Object(ie.a)("Failed to reset password"),type:"error"}})}):(await Object(pe.I)(),this.setState({recoverLoading:!1,notice:{message:Object(ie.a)("Email to recover password cannot be empty"),type:"error"}})):this.setState({recoverLoading:!1,notice:{message:Object(ie.a)("The email address format is not valid"),type:"error"}})})}async componentDidMount(){const e=Object(ue.a)("integrations.json"),t=await fetch(e),{cloudAuthorization:o}=await t.json(),{onLoading:n}=this.props;this.setState({data:o,loading:!1}),n&&n(!1)}renderLoading(){return s.a.createElement(he,null)}renderNotice(){const{notice:e}=this.state;if(null!==e){const{message:t,type:o}=e;return s.a.createElement(be,{message:t,type:o})}}renderContent(){if(this.state.data){const{data:{img:e,signInDescription:t},formData:{recoverEmail:o},notice:n,nextLoading:a,prevLoading:r,recoverLoading:i}=this.state;return s.a.createElement(B.a,{className:"brz-text-lg-center"},s.a.createElement("div",{className:"brz-ed-popup-integrations__connect-head"},s.a.createElement("img",{className:"brz-img",src:e,alt:"Brizy"}),s.a.createElement("p",{className:"brz-p"},t)),s.a.createElement("div",{className:"brz-ed-popup-integrations__connect-body"},n&&this.renderNotice(),wl.map(({title:e,name:t,required:o,type:n="text"},a)=>s.a.createElement(Ye,{key:a,title:e,type:n,value:this.state.formData[t]||"",required:o,onChange:({target:e})=>{this.handleChange(t,e.value)}})),s.a.createElement("div",{className:"brz-ed-popup-authorization__buttons"},s.a.createElement(Ge,{color:"teal",loading:a,onClick:this.handleConnect},Object(ie.a)("Connect")),s.a.createElement(Ge,{color:"default",loading:r,onClick:this.handleSkip},Object(ie.a)("Skip"))),s.a.createElement(Ye,{title:"Email to recover password",icon:"nc-right-arrow-tail",loading:i,value:o||"",onChange:({target:e})=>{this.handleChange("recoverEmail",e.value)},onClickIcon:this.handleRecover})))}}render(){const e=g()("brz-ed-popup-authorization",this.props.className);return s.a.createElement("div",{className:e},this.state.loading?this.renderLoading():this.renderContent())}}Object(i.a)(Tl,"defaultProps",{className:"",onSuccess:v.noop,onSkip:v.noop,onClose:v.noop,onLoading:v.noop});var zl=Pl(Tl);const El=Boolean(f.a.get("wp")),kl=[{title:"email",name:"email",required:!0},{title:"password",name:"password",type:"password",required:!0},{title:"Confirm Password",name:"confirmPassword",type:"password",required:!0}],Hl={updateAuthorization:nn.v,updateSyncAllowed:nn.E},Fl=Object(no.b)(null,Hl);class _l extends l.Component{constructor(...e){super(...e),Object(i.a)(this,"state",{data:null,notice:null,nextLoading:!1,loading:!0,formData:{email:"",password:"",confirmPassword:""}}),Object(i.a)(this,"handleChange",(e,t)=>{void 0!==this.state.formData[e]&&this.setState(Object(c.a)(o=>{o.formData[e]=t}))}),Object(i.a)(this,"handleConnect",async()=>{const{onSuccess:e,onClose:t,updateAuthorization:o,updateSyncAllowed:n}=this.props,{email:a,password:r,confirmPassword:i}=this.state.formData;We(a)?r===i?(this.setState({notice:null,nextLoading:!0}),null!=a&&a.trim()&&null!=r&&r.trim()&&null!=i&&i.trim()?(e=>{const{hash:t,url:o,cloudSignUp:n}=f.a.get("wp").api,a=f.a.get("editorVersion"),r=He(o,{hash:t,version:a,action:n});return Object(pe.L)(r,{method:"POST",headers:{"Content-Type":"application/json; charset=utf-8"},body:JSON.stringify(e)}).then(Fe).then(e=>e)})({email:a,password:r,confirmPassword:i}).then(a=>{if(!a.status||a.status>=400)throw a;o("connected"),Object(dn.b)("connected"),El&&sn().then(e=>{const{status:t,data:o}=e||{};!t||t>=400?console.warn("Something went wrong",e):null!=o&&o.isSyncAllowed&&n(!0)}),e&&e(),t&&t()}).catch(e=>{this.setState({nextLoading:!1,notice:{message:Object(ie.a)("Incorrect username or password"),type:"error"}})}):this.setState({nextLoading:!1,notice:{message:Object(ie.a)("All fields cannot be empty"),type:"error"}})):this.setState({nextLoading:!1,notice:{message:Object(ie.a)("Password and confirm password is not the same"),type:"error"}}):this.setState({nextLoading:!1,notice:{message:Object(ie.a)("The email address format is not valid"),type:"error"}})})}async componentDidMount(){const e=Object(ue.a)("integrations.json"),t=await fetch(e),{cloudAuthorization:o}=await t.json(),{onLoading:n}=this.props;this.setState({data:o,loading:!1}),n&&n(!1)}renderLoading(){return s.a.createElement(he,null)}renderNotice(){const{notice:e}=this.state;if(e){const{message:t,type:o}=e;return s.a.createElement(be,{message:t,type:o})}}renderContent(){if(this.state.data){var e;const{data:{img:t,signUpDescription:o},nextLoading:n}=this.state,a=f.a.getAll(),r=Object(yn.a)(a)&&Object(Ni.c)(a)&&a.urls.favicon||t,i=(null===(e=Object(yn.a)(a))||void 0===e?void 0:e.brandingName)||"Brizy";return s.a.createElement(B.a,{className:"brz-text-lg-center"},s.a.createElement("div",{className:"brz-ed-popup-integrations__connect-head"},s.a.createElement("img",{className:"brz-img",src:r,alt:i}),s.a.createElement("p",{className:"brz-p"},o)),s.a.createElement("div",{className:"brz-ed-popup-integrations__connect-body"},this.renderNotice(),kl.map(({title:e,name:t,required:o,type:n="text"},a)=>s.a.createElement(Ye,{key:a,title:e,type:n,value:this.state.formData[t]||"",required:o,onChange:({target:e})=>{this.handleChange(t,e.value)}})),s.a.createElement("div",{className:"brz-ed-popup-authorization__buttons"},s.a.createElement(Ge,{color:"teal",loading:n,onClick:this.handleConnect},Object(ie.a)("Create Account & Connect")))))}}render(){const e=g()("brz-ed-popup-authorization",this.props.className);return s.a.createElement("div",{className:e},this.state.loading?this.renderLoading():this.renderContent())}}Object(i.a)(_l,"defaultProps",{className:"",onSuccess:v.noop,onSkip:v.noop,onClose:v.noop,onLoading:v.noop});var Rl=Fl(_l);const Ll=[{id:"signIn",title:Object(ie.a)("Cloud"),icon:"nc-upload",component:zl},{id:"signUp",title:Object(ie.a)("SignUp"),icon:"nc-add",component:Rl}];var Ml=({opened:e,onClose:t})=>s.a.createElement(de,{opened:e,tabs:Ll,currentTab:"signIn",onClose:t});const Il=({space:e})=>s.a.createElement("div",{style:{paddingBottom:e}}),Wl=e=>{const{head:t,loading:o,error:n,children:a,spacing:r=!0,height:i=!0,footer:l,inlineFooter:c}=e,d=g()("brz-ed-popup-content",{"brz-ed-popup-content--spacing":r,"brz-ed-popup-content--height":i}),u=g()("brz-ed-popup-content__footer",{"brz-ed-popup-content__footer--inline":c});return o?s.a.createElement("div",{className:d},s.a.createElement(he,null)):s.a.createElement("div",{className:d},t&&s.a.createElement(s.a.Fragment,null,s.a.createElement("div",{className:"brz-ed-popup-content__head"},s.a.createElement("p",{className:"brz-p"},s.a.createElement("strong",{className:"brz-strong"},t)),s.a.createElement(Il,{space:"19px"}))),n&&s.a.createElement(be,{message:n,type:"error"}),s.a.createElement(B.a,{autoHeight:!0,autoHeightMax:"100%",style:{height:"auto"}},a),l&&s.a.createElement(s.a.Fragment,null,s.a.createElement(Il,{space:"35px"}),s.a.createElement("div",{className:u},l)))},Nl=({id:e,active:t,icon:o,title:n,onClick:a,onClose:r})=>{const i=Object(l.useCallback)(()=>null==a?void 0:a(e),[a,e]);return s.a.createElement(s.a.Fragment,null,s.a.createElement("div",{onClick:i,className:g()("brz-ed-popup-tab-item",{active:t})},s.a.createElement("div",{className:"brz-ed-popup-tab-icon"},s.a.createElement(F.b,{icon:o})),s.a.createElement("div",{className:"brz-ed-popup-tab-name"},n)),s.a.createElement("div",{className:"brz-ed-popup-btn-close",onClick:r}))},Al=({tabs:e,onClose:t})=>s.a.createElement("div",{className:"brz-ed-popup-header"},e.map(e=>s.a.createElement(Nl,Object(C.a)({key:e.id},e,{onClose:t}))));let Vl;var Dl;(Dl=Vl||(Vl={})).page="page-tab",Dl.settings="settings-tab";const $l=[{id:Vl.page,icon:"nc-eye-17",title:Object(ie.a)("Page")},{id:Vl.settings,icon:"nc-settings",title:Object(ie.a)("Settings")}],Gl=({children:e,label:t,required:o})=>s.a.createElement("div",{className:"brz-ed-popup-integrations-step__fields-option brz-d-xs-flex brz-align-items-xs-center brz-justify-content-xs-between"},s.a.createElement("p",{className:"brz-p"},t,o?s.a.createElement("strong",{className:"brz-strong brz--required"},"*"):null),s.a.createElement("div",{className:"brz-ed-popup-integrations-step__field"},e)),Ul=({headTitle:e,inlineFooter:t,footer:o,value:n,error:a,onChange:r,layouts:i})=>{const c=Object(l.useMemo)(()=>i.map(({id:e,title:t})=>s.a.createElement(S.a,{key:e,value:e},t)),[i]);return s.a.createElement(Wl,{head:e,inlineFooter:t,footer:o,error:a},s.a.createElement(Gl,{label:Object(ie.a)("Page Layout"),required:!0},s.a.createElement(O.a,{className:"brz-control__select--white",maxItems:"6",itemHeight:"30",inPortal:!0,defaultValue:n,onChange:r},c)))},Kl=({value:e,onChange:t,placeholder:o})=>{const n=Object(l.useCallback)(e=>t(e.target.value),[t]);return s.a.createElement(Gl,{label:Object(ie.a)("Page Title"),required:!0},s.a.createElement("input",{className:"brz-input",required:!0,type:"text",value:e,onChange:n,placeholder:o}))},Yl=e=>({payload:e,type:"Ready"}),ql=e=>({payload:e,type:"Saving"});let Xl;!function(e){e.FetchError="FetchError",e.FetchSuccess="FetchSuccess",e.Save="Save",e.SaveError="SaveError",e.SaveSuccess="SaveSuccess",e.Cancel="Cancel",e.Canceled="Canceled",e.SwitchTab="SwitchTab"}(Xl||(Xl={}));const Zl=()=>({type:Xl.Save}),Jl=e=>({payload:e,type:Xl.SwitchTab}),Ql=()=>({type:Xl.Cancel});var es=o(629),ts=o(632),os=o(521),ns=o(872),as=o(873),rs=o(879);function is(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function ls(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?is(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):is(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const ss=(e,t,o,n)=>{const[a,r]=Object(l.useReducer)(e,{payload:{activeTab:Vl.page},type:"Loading"});return Object(l.useEffect)(()=>{const e=Object(es.a)(t()).pipe(Object(os.a)(e=>(e=>({type:Xl.FetchSuccess,payload:e}))(ls(ls({},e),{},{activeTab:Vl.page}))),Object(ns.a)(()=>Object(ts.a)({type:Xl.FetchError}))).subscribe(r);return()=>null==e?void 0:e.unsubscribe()},["Loading"===a.type]),Object(l.useEffect)(()=>{let e;return"Saving"===a.type&&(e=Object(es.a)(o(a.payload)).pipe(Object(as.a)({type:Xl.SaveSuccess}),Object(ns.a)(()=>Object(ts.a)({type:Xl.SaveError}))).subscribe(r)),()=>{var t;return null===(t=e)||void 0===t?void 0:t.unsubscribe()}},["Saving"===a.type]),Object(l.useEffect)(()=>{let e;return"Canceling"===a.type&&(e=Object(ts.a)(1).pipe(Object(rs.a)(650),Object(as.a)({type:Xl.Canceled})).subscribe(r)),()=>{var t;return null===(t=e)||void 0===t?void 0:t.unsubscribe()}},["Canceling"===a.type]),Object(l.useEffect)(()=>{"Canceled"===a.type&&n()},["Canceled"===a.type]),[a,r]};function cs(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function ds(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?cs(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):cs(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const us=e=>Object.values(Xl).includes(e.type),ps=e=>!us(e),bs=(e,t)=>(o,n)=>Object(Qe.match)([us,e=>{switch(e.type){case Xl.FetchError:return"Loading"===o.type?{type:"Err",payload:ds(ds({},o.payload),{},{message:Object(ie.a)("Something went wrong")})}:o;case Xl.FetchSuccess:return"Loading"===o.type?Yl(ds(ds({},e.payload),{},{activeTab:o.payload.activeTab})):o;case Xl.Save:if("Ready"!==o.type)return o;{const e=t(o.payload);switch(e.type){case"left":return Yl(e.value);case"right":return ql(e.value)}}case Xl.SaveError:return"Saving"===o.type?Yl(ds(ds({},o.payload),{},{error:Object(ie.a)("Something went wrong")})):o;case Xl.SaveSuccess:return"Saving"===o.type?Yl(o.payload):o;case Xl.SwitchTab:return"Ready"===o.type?Yl(ds(ds({},o.payload),{},{activeTab:e.payload})):"Saving"===o.type?ql(ds(ds({},o.payload),{},{activeTab:e.payload})):o;case Xl.Cancel:switch(o.type){case"Loading":case"Err":case"Canceling":return o;case"Ready":case"Saving":return(e=>({payload:e,type:"Canceling"}))(o.payload)}case Xl.Canceled:return"Canceling"===o.type?(e=>({payload:e,type:"Canceled"}))(o.payload):o}}],[ps,t=>{switch(o.type){case"Loading":case"Err":case"Saving":case"Canceling":case"Canceled":return o;case"Ready":return Yl(e(o.payload,t))}}])(n),ms=e=>({type:"left",value:e}),hs=e=>({type:"right",value:e});var gs=o(179);function vs(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function fs(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?vs(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):vs(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const ys=bs((e,t)=>{var o;switch(t.type){case"SetLayout":return fs(fs({},e),{},{layout:t.payload});case"SetBlog":return fs(fs({},e),{},{selected:null!==(o=e.items.find(e=>e.id===t.payload))&&void 0!==o?o:e.selected});case"SetTitle":return fs(fs({},e),{},{title:t.payload})}},e=>{const{title:t,selected:o}=e;return t&&gs.a(t)?o?hs({title:t,items:e.items,selected:o,activeTab:e.activeTab,layout:e.layout,layouts:e.layouts,error:void 0}):ms(fs(fs({},e),{},{error:Object(ie.a)("You must be have one selected item")})):ms(fs(fs({},e),{},{error:Object(ie.a)("You must specify a title")}))}),Os=e=>!!e.length,Ss=e=>e.templates.map(({id:e})=>({title:e,id:e}));function xs(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function Cs(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?xs(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):xs(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}var js=o(124);function Ps(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function Bs(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?Ps(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):Ps(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const ws=bs((e,t)=>{switch(t.type){case"SetLayout":return Bs(Bs({},e),{},{layout:t.payload});case"SetRules":return Bs(Bs({},e),{},{items:e.items.map(e=>Bs(Bs({},e),{},{selected:t.payload.includes(e.id.toString())}))});case"SetTitle":return Bs(Bs({},e),{},{title:t.payload})}},e=>{const{title:t,items:o}=e;return t&&gs.a(t)?o.filter(e=>e.selected).length?hs({title:t,items:e.items,activeTab:e.activeTab,layout:e.layout,layouts:e.layouts,error:void 0}):ms(Bs(Bs({},e),{},{error:Object(ie.a)("You must be have one selected item")})):ms(Bs(Bs({},e),{},{error:Object(ie.a)("You must specify a title")}))});function Ts(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function zs(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?Ts(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):Ts(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function Es(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function ks(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?Es(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):Es(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const Hs=bs((e,t)=>{switch(t.type){case"SetLayout":return ks(ks({},e),{},{layout:t.payload});case"SetTitle":return ks(ks({},e),{},{title:t.payload})}},e=>{const{title:t}=e;return t&&gs.a(t)?hs({title:t,activeTab:e.activeTab,layout:e.layout,layouts:e.layouts,error:void 0}):ms(ks(ks({},e),{},{error:Object(ie.a)("You must specify a title")}))});function Fs(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function _s(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?Fs(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):Fs(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function Rs(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function Ls(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?Rs(Object(o),!0).forEach((function(t){Object(i.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):Rs(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const Ms={icon:ne,apps:At,blocks:En,form:Ar,keyHelper:Dr,fonts:Bi,conditions:Cl,authorization:Ml,pageRules:e=>{const{headTitle:t,pageTitle:o,opened:n,selectedLayout:a,onClose:r,onSave:i}=e,c=Object(no.c)(),d=Object(l.useCallback)(({items:e,title:t,layout:o})=>(c(Object(nn.A)(o)),c(Object(nn.C)(t)),i().then(()=>Object(pe.shopifySyncRules)(e.filter(e=>e.selected),t)).then(()=>{})),[c]),u=Object(l.useCallback)(async()=>{const e=f.a.getAll();if(Object(Ni.c)(e)&&Object(Ni.g)(e)){const n=Object(pe.getPageRelations)(e).then(e=>e.map(e=>e.id)),r=Object(pe.k)(e.templateType.id),i=await Promise.all([r,n]).then(([e,t])=>e.map(e=>zs(zs({},e),{},{selected:t.includes(e.id)}))),l=Ss(e);var t;if(Os(i)&&Os(l))return{items:i,layouts:l,title:o,layout:null!==(t=null==a?void 0:a.value)&&void 0!==t?t:l[0].id,error:void 0}}return Promise.reject()},[]),[p,b]=ss(ws,u,d,r),m=Object(l.useMemo)(()=>s.a.createElement(s.a.Fragment,null,s.a.createElement(Ge,{size:3,loading:"Canceling"===p.type,onClick:()=>b(Ql())},Object(ie.a)("Cancel")),s.a.createElement(Ge,{color:"teal",size:3,loading:"Saving"===p.type,onClick:()=>b(Zl())},Object(ie.a)("Save"))),[b,p.type]);return s.a.createElement(y.a,{opened:n,onClose:r},s.a.createElement("div",{className:"brz-ed-popup-wrapper"},s.a.createElement(Al,{tabs:$l.map(e=>zs(zs({},e),{},{active:e.id===p.payload.activeTab,onClick:e=>b(Jl(e))})),onClose:r}),(()=>{switch(p.type){case"Loading":return s.a.createElement(Wl,{head:t,loading:!0});case"Err":return s.a.createElement(Wl,{head:t,error:p.payload.message});case"Ready":case"Saving":case"Canceling":case"Canceled":{const{items:e,title:o}=p.payload,n=e.filter(e=>e.selected).reduce((e,t)=>(e[t.id]=!0,e),{}),a=(e=>{switch(e.type){case"Loading":case"Err":case"Saving":return;case"Ready":case"Canceling":case"Canceled":return e.payload.error}})(p);switch(p.payload.activeTab){case Vl.page:return s.a.createElement(Wl,{head:t,error:a,inlineFooter:!0,footer:m},s.a.createElement(Kl,{value:null!=o?o:"",onChange:e=>b({payload:e,type:"SetTitle"}),placeholder:Object(ie.a)("Page title")}),s.a.createElement(js.c,{defaultValue:n,onChange:e=>b({payload:Object.entries(e).filter(([,e])=>e).map(([e])=>e),type:"SetRules"})},e.map(e=>s.a.createElement(js.b,{key:e.id,divider:!0,inline:!0,value:e.id,renderIcons:js.a},e.title))));case Vl.settings:return s.a.createElement(Ul,{layouts:p.payload.layouts,headTitle:t,value:p.payload.layout,inlineFooter:!0,footer:m,onChange:e=>b({payload:e,type:"SetLayout"}),error:a})}}}})()))},pageTemplate:e=>{const{headTitle:t,pageTitle:o,selectedLayout:n,opened:a,onClose:r,onSave:i}=e,c=Object(no.c)(),d=Object(l.useCallback)(({title:e,layout:t})=>(c(Object(nn.A)(t)),c(Object(nn.C)(e)),i().then(()=>Object(pe.shopifySyncPage)(e)).then(()=>{})),[c]),u=Object(l.useCallback)(async()=>{const e=f.a.getAll();if(Object(Ni.c)(e)&&Object(Ni.g)(e)){const a=Ss(e);var t;if(Os(a))return{layouts:a,title:o,layout:null!==(t=null==n?void 0:n.value)&&void 0!==t?t:a[0].id,error:void 0}}return Promise.reject()},[]),[p,b]=ss(Hs,u,d,r),m=s.a.createElement(s.a.Fragment,null,s.a.createElement(Ge,{size:3,loading:"Canceling"===p.type,onClick:()=>b(Ql())},Object(ie.a)("Cancel")),s.a.createElement(Ge,{color:"teal",size:3,loading:"Saving"===p.type,onClick:()=>b(Zl())},Object(ie.a)("Save")));return s.a.createElement(y.a,{opened:a,onClose:r},s.a.createElement("div",{className:"brz-ed-popup-wrapper"},s.a.createElement(Al,{tabs:$l.map(e=>_s(_s({},e),{},{active:e.id===p.payload.activeTab,onClick:()=>b(Jl(e.id))})),onClose:r}),(()=>{var e;switch(p.type){case"Loading":return s.a.createElement(Wl,{head:t,loading:!0});case"Err":return s.a.createElement(Wl,{head:t,error:p.payload.message});case"Ready":case"Saving":case"Canceling":case"Canceled":switch(p.payload.activeTab){case Vl.page:return s.a.createElement(Wl,{head:t,inlineFooter:!0,footer:m,error:p.payload.error},s.a.createElement(Kl,{value:null!==(e=p.payload.title)&&void 0!==e?e:"",onChange:e=>b({payload:e,type:"SetTitle"}),placeholder:Object(ie.a)("Page title")}));case Vl.settings:return s.a.createElement(Ul,{layouts:p.payload.layouts,headTitle:t,value:p.payload.layout,inlineFooter:!0,footer:m,onChange:e=>b({payload:e,type:"SetLayout"}),error:p.payload.error})}}})()))},pageArticle:e=>{const{headTitle:t,pageTitle:o,opened:n,selectedLayout:a,onClose:r,onSave:i}=e,c=Object(no.c)(),d=Object(l.useCallback)(({selected:e,title:t,layout:o})=>(c(Object(nn.A)(o)),c(Object(nn.C)(t)),i().then(()=>Object(pe.shopifySyncArticle)(e.id,e.title,t)).then(()=>{})),[c]),u=Object(l.useCallback)(async()=>{const e=f.a.getAll();if(Object(Ni.c)(e)&&Object(Ni.g)(e)){const n=Object(pe.getPageRelations)(e).then(e=>e.map(e=>e.id)),r=Object(pe.shopifyBlogItems)(),[i,l]=await Promise.all([r,n]),s=Ss(e);var t;if(Os(i)&&Os(s))return{items:i,layouts:s,selected:i.find(e=>e.id===l[0]),title:o,layout:null!==(t=null==a?void 0:a.value)&&void 0!==t?t:s[0].id,error:void 0}}return Promise.reject()},[]),[p,b]=ss(ys,u,d,r),m=s.a.createElement(s.a.Fragment,null,s.a.createElement(Ge,{size:3,loading:"Canceling"===p.type,onClick:()=>b(Ql())},Object(ie.a)("Cancel")),s.a.createElement(Ge,{color:"teal",size:3,loading:"Saving"===p.type,onClick:()=>b(Zl())},Object(ie.a)("Save")));return s.a.createElement(y.a,{opened:n,onClose:r},s.a.createElement("div",{className:"brz-ed-popup-wrapper"},s.a.createElement(Al,{tabs:$l.map(e=>Cs(Cs({},e),{},{active:e.id===p.payload.activeTab,onClick:()=>b(Jl(e.id))})),onClose:r}),(()=>{var e,o;switch(p.type){case"Loading":return s.a.createElement(Wl,{head:t,loading:!0});case"Err":return s.a.createElement(Wl,{head:t,error:p.payload.message});case"Ready":case"Saving":case"Canceling":case"Canceled":switch(p.payload.activeTab){case Vl.page:return s.a.createElement(Wl,{head:t,error:p.payload.error,inlineFooter:!0,footer:m},s.a.createElement(Kl,{value:null!==(e=p.payload.title)&&void 0!==e?e:"",onChange:e=>b({payload:e,type:"SetTitle"}),placeholder:Object(ie.a)("Page title")}),s.a.createElement(De.b,{className:"brz-ed-popup-integrations-option__radio",defaultValue:null===(o=p.payload.selected)||void 0===o?void 0:o.id,onChange:e=>b({payload:e,type:"SetBlog"})},p.payload.items.map(({title:e,id:t})=>s.a.createElement(De.a,{checkIcon:"active",value:t,key:t},e))));case Vl.settings:return s.a.createElement(Ul,{layouts:p.payload.layouts,headTitle:t,value:p.payload.layout,inlineFooter:!0,footer:m,onChange:e=>b({payload:e,type:"SetLayout"}),error:p.payload.error})}}})()))}};class Is extends l.Component{constructor(...e){super(...e),Object(i.a)(this,"state",{prompts:[]}),Object(i.a)(this,"onUIStateChange",e=>{this.open(e)})}static open(e){m.set("prompt",e)}componentDidMount(){m.addChangeListener("prompt",this.onUIStateChange)}componentWillUnmount(){m.removeChangeListener("prompt",this.onUIStateChange)}close(e){this.setState(Object(c.a)(t=>{t.prompts[e].opened=!1}),()=>{this.setState(Object(c.a)(t=>{t.prompts.splice(e,1)}))})}open(e){const{mode:t="single"}=e,{prompts:o}=this.state,n=o.findIndex(({prompt:t})=>t==e.prompt);-1===n?this.setState(Object(c.a)(t=>{t.prompts.push(e)}),()=>{this.setState(Object(c.a)(e=>{const t=e.prompts.length;e.prompts[t-1].opened=!0}))}):"stack"===t?this.setState(Object(c.a)(t=>{t.prompts[n]=Ls(Ls({},e),{},{opened:!0})})):this.setState(Object(c.a)(t=>{t.prompts.forEach((e,o)=>{t.prompts[o].opened=!1}),t.prompts[n]=Ls(Ls({},e),{},{opened:!0})}))}getComponent(e,t){const o=Ms[e];return s.a.createElement(o,t)}render(){const{prompts:e}=this.state;return e.length?e.map(({opened:e,prompt:t,props:o={}},n)=>this.getComponent(t,Ls(Ls({},o),{},{opened:e,key:n,onClose:()=>{this.close(n),o.onClose&&o.onClose()}}))):null}}var Ws=t.a=Is},function(e,t,o){"use strict";function n({v:e}){const{tabsState:t}=e;return"tabHover"===t?"hover":"normal"}o.d(t,"i",(function(){return n})),o.d(t,"d",(function(){return r})),o.d(t,"e",(function(){return i})),o.d(t,"f",(function(){return c})),o.d(t,"a",(function(){return d})),o.d(t,"b",(function(){return u})),o.d(t,"c",(function(){return p})),o.d(t,"g",(function(){return b})),o.d(t,"h",(function(){return m}));var a=o(3);o(49);function r({v:e,device:t,state:o}){const r=n({v:e,state:o}),i=Object(a.defaultValueValue)({v:e,key:"borderStyle",device:t,state:o});return"hover"===r&&void 0!==e.hoverBorderStyle&&null!==e.hoverBorderStyle?""===e.hoverBorderStyle?"none":e.hoverBorderStyle:""===i?"none":i}function i({v:e,device:t,state:o,current:r}){const i=n({v:e,state:o}),l=Object(a.defaultValueValue)({v:e,key:"borderWidthType",device:t,state:o}),s=Object(a.defaultValueValue)({v:e,key:"borderWidthType",device:t,state:"hover"}),c=Object(a.defaultValueValue)({v:e,key:"borderWidth",device:t,state:o}),d=Object(a.defaultValueValue)({v:e,key:"borderWidth",device:t,state:"hover"}),u=Object(a.defaultValueValue)({v:e,key:r,device:t,state:o}),p=Object(a.defaultValueValue)({v:e,key:r,device:t,state:"hover"});return"hover"===i&&"grouped"===s?d+"px":"hover"===i&&"ungrouped"===s?p+"px":"grouped"===l?c+"px":u+"px"}var l=o(17),s=o(13);function c({v:e,device:t,state:o,prefix:r="color"}){const i=n({v:e,state:o}),{hex:c}=Object(s.d)(Object(a.defaultValueValue)({v:e,key:r+"Hex",device:t,state:o}),Object(a.defaultValueValue)({v:e,key:r+"Palette",device:t,state:o})),d=Object(a.defaultValueValue)({v:e,key:r+"Opacity",device:t,state:o}),{hex:u}=Object(s.d)(Object(a.defaultValueValue)({v:e,key:r+"Hex",device:t,state:"hover"}),Object(a.defaultValueValue)({v:e,key:r+"Palette",device:t,state:"hover"})),p=Object(a.defaultValueValue)({v:e,device:t,key:r+"Opacity",state:"hover"});return"hover"===i?Object(l.c)(u,p):Object(l.c)(c,d)}function d({v:e,device:t,state:o,prefix:r="bg"}){const i=n({v:e,state:o}),c=Object(a.defaultValueValue)({v:e,key:r+"ColorType",device:t,state:o}),{hex:d}=Object(s.d)(Object(a.defaultValueValue)({v:e,key:r+"ColorHex",device:t,state:o}),Object(a.defaultValueValue)({v:e,key:r+"ColorPalette",device:t,state:o})),u=Object(a.defaultValueValue)({v:e,key:r+"ColorOpacity",device:t,state:o}),p=Object(a.defaultValueValue)({v:e,key:r+"ColorType",device:t,state:"hover"}),{hex:b}=Object(s.d)(Object(a.defaultValueValue)({v:e,key:r+"ColorHex",device:t,state:"hover"}),Object(a.defaultValueValue)({v:e,key:r+"ColorPalette",device:t,state:"hover"})),m=Object(a.defaultValueValue)({v:e,key:r+"ColorOpacity",device:t,state:"hover"});return"hover"===i&&"solid"===p?Object(l.c)(b,m):"solid"===c?Object(l.c)(d,u):"transparent"}function u({v:e,device:t,state:o}){const r=n({v:e,state:o}),i=Object(a.defaultValueValue)({v:e,key:"bgColorType",device:t,state:o}),c=Object(a.defaultValueValue)({v:e,key:"gradientType",device:t,state:o}),d=Object(a.defaultValueValue)({v:e,key:"gradientLinearDegree",device:t,state:o}),{hex:u}=Object(s.d)(Object(a.defaultValueValue)({v:e,key:"bgColorHex",device:t,state:o}),Object(a.defaultValueValue)({v:e,key:"bgColorPalette",device:t,state:o})),p=Object(a.defaultValueValue)({v:e,key:"bgColorOpacity",device:t,state:o}),b=Object(a.defaultValueValue)({v:e,key:"gradientStartPointer",device:t,state:o}),{hex:m}=Object(s.d)(Object(a.defaultValueValue)({v:e,key:"gradientColorHex",device:t,state:o}),Object(a.defaultValueValue)({v:e,key:"gradientColorPalette",device:t,state:o})),h=Object(a.defaultValueValue)({v:e,key:"gradientColorOpacity",device:t,state:o}),g=Object(a.defaultValueValue)({v:e,key:"gradientFinishPointer",device:t,state:o}),v=Object(a.defaultValueValue)({v:e,key:"gradientRadialDegree",device:t,state:o}),f=Object(a.defaultValueValue)({v:e,key:"bgColorType",device:t,state:"hover"}),y=Object(a.defaultValueValue)({v:e,key:"gradientType",device:t,state:"hover"}),O=Object(a.defaultValueValue)({v:e,key:"gradientLinearDegree",device:t,state:"hover"}),{hex:S}=Object(s.d)(Object(a.defaultValueValue)({v:e,key:"bgColorHex",device:t,state:"hover"}),Object(a.defaultValueValue)({v:e,key:"bgColorPalette",device:t,state:"hover"})),x=Object(a.defaultValueValue)({v:e,key:"bgColorOpacity",device:t,state:"hover"}),C=Object(a.defaultValueValue)({v:e,key:"gradientStartPointer",device:t,state:"hover"}),{hex:j}=Object(s.d)(Object(a.defaultValueValue)({v:e,key:"gradientColorHex",device:t,state:"hover"}),Object(a.defaultValueValue)({v:e,key:"gradientColorPalette",device:t,state:"hover"})),P=Object(a.defaultValueValue)({v:e,key:"gradientColorOpacity",device:t,state:"hover"}),B=Object(a.defaultValueValue)({v:e,key:"gradientFinishPointer",device:t,state:"hover"}),w=Object(a.defaultValueValue)({v:e,key:"gradientRadialDegree",device:t,state:"hover"});return"hover"===r&&"gradient"===f?"linear"===y?`linear-gradient(${O}deg, ${Object(l.c)(S,x)} ${C}%, ${Object(l.c)(j,P)} ${B}%)`:`radial-gradient(circle ${w}px,${Object(l.c)(S,x)} ${C}%, ${Object(l.c)(j,P)} ${B}%)`:"hover"===r&&"solid"===f?"none":"gradient"===i?"linear"===c?`linear-gradient(${d}deg, ${Object(l.c)(u,p)} ${b}%, ${Object(l.c)(m,h)} ${g}%)`:`radial-gradient(circle ${v}px, ${Object(l.c)(u,p)} ${b}%, ${Object(l.c)(m,h)} ${g}%)`:"none"}function p({v:e,device:t,state:o}){const r=n({v:e,state:o}),{hex:i}=Object(s.d)(Object(a.defaultValueValue)({v:e,key:"borderColorHex",device:t,state:o}),Object(a.defaultValueValue)({v:e,key:"borderColorPalette",device:t,state:o})),c=Object(a.defaultValueValue)({v:e,key:"borderColorOpacity",device:t,state:o}),{hex:d}=Object(s.d)(Object(a.defaultValueValue)({v:e,key:"borderColorHex",device:t,state:"hover"}),Object(a.defaultValueValue)({v:e,key:"borderColorPalette",device:t,state:"hover"})),u=Object(a.defaultValueValue)({v:e,key:"borderColorOpacity",device:t,state:"hover"});return"hover"===r?Object(l.c)(d,u):Object(l.c)(i,c)}function b({v:e}){const{hoverTransition:t}=e;return`all 0.${t}s ease-in-out`}function m(){return"background, border-radius, color, border-color, box-shadow"}o(167)},function(e,t,o){"use strict";o.d(t,"c",(function(){return S})),o.d(t,"a",(function(){return y})),o.d(t,"b",(function(){return x}));var n=o(2),a=o(0),r=o.n(a),i=o(8),l=o(4),s=o.n(l),c=o(275),d=o(871),u=o(109),p=o(91),b=o(878),m=o(198),h=o(41);function g(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function v(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?g(Object(o),!0).forEach((function(t){Object(n.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):g(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}class f extends r.a.Component{constructor(e){super(e);const{placement:t,arrowPlacement:o}=e;this.state={placement:t,arrowPlacement:o},this.isRepositioning=!1,this.contentRef=r.a.createRef()}componentDidMount(){const{isOpen:e,toolbar:t}=this.props;e&&t&&this.repositionByToolbar(t)}repositionByToolbar(e){const t=document.documentElement.clientWidth,o=document.documentElement.clientHeight,n=document.documentElement.scrollTop,a=document.documentElement.classList.contains("brz-ow-hidden"),{toolbarRef:r,toolbarCSSPosition:i,toolbarItemIndex:l}=e,s=Object(m.a)(),c=r.current,d=c.getBoundingClientRect(),u=c.querySelector(`.brz-ed-toolbar__items > .brz-ed-toolbar__item:nth-child(${l})`).getBoundingClientRect(),p=this.contentRef.current.getBoundingClientRect(),b=(a?0:n)+d.bottom+14+Math.max(p.height,300)<=(a?o:Math.max(o,document.body.clientHeight)),g=(a?0:n)+d.top-14-p.height>=0,v="fixed"===i?0:n;let f;const y=()=>{const e=`calc(100% - ${v}px - ${d.top}px + 14px)`;f={position:i,top:"unset",bottom:e,left:S()}},O=()=>{const e=v+d.top+d.height+14;f={position:i,top:e,left:S()}},S=()=>{const e=t-p.width-2,o=u.left+u.width/2-p.width/2;return Object(h.a)(o,2,e)};let x;"above"===s&&(g?(x="above",y()):(x="below",O())),"below"===s&&(b?(x="below",O()):(x="above",y()));const C="above"===x?"top":"bottom";let j={left:u.left+u.width/2-f.left};this.isRepositioning=!0,this.setState({placementStyle:f,arrowPlacement:C,arrowPlacementStyle:j},()=>this.isRepositioning=!1)}renderInToolbar(){const{className:e,isOpen:t,size:o,arrow:n,children:a}=this.props,{placementStyle:i,arrowPlacement:l,arrowPlacementStyle:c}=this.state,d=s()("brz-ed-animated brz-ed-animated--fadeInUp","brz-ed-tooltip__overlay",{["brz-ed-tooltip--"+o]:o},{"brz-invisible":!t},e),u=s()("brz-ed-arrow","brz-ed-arrow--"+l);return r.a.createElement("div",{ref:this.contentRef,className:d,style:i},n&&r.a.createElement("div",{className:u,style:c}),a)}renderSimple(){const{className:e,size:t,arrow:o,node:n,placement:a,offset:i,children:l}=this.props,c=s()("brz-ed-animated brz-ed-animated--fadeInUp","brz-ed-tooltip__overlay",{["brz-ed-tooltip--"+t]:t},e);return r.a.createElement(b.a,{referenceElement:n,placement:a,eventsEnabled:!1,modifiers:[{name:"offset",options:{offset:[0,i]}},{name:"computeStyles",options:{gpuAcceleration:!1}}]},({ref:e,style:t,arrowProps:n,placement:a})=>r.a.createElement("div",{ref:e,className:c,style:t},o&&r.a.createElement("div",{className:"brz-ed-arrow brz-ed-arrow--"+a,ref:n.ref,style:v(v({},n.style),{},{margin:"0"})}),l))}render(){return this.props.toolbar?this.renderInToolbar():this.renderSimple()}}Object(n.a)(f,"defaultProps",{className:"",isOpen:!1,placement:"top",placementStyle:{},arrow:!0,arrowPlacement:"top-center",arrowPlacementStyle:{},size:"",offset:15,toolbar:null,inPortal:!1,node:null});const y=e=>{const{className:t,children:o,onClick:n}=e,a=s()("brz-ed-tooltip__item",t);return r.a.createElement("div",{className:a,onClick:n},o)};let O=[],S=()=>O[O.length-1];class x extends r.a.Component{constructor(...e){super(...e),Object(n.a)(this,"state",{isOpen:!1,isHidden:!1}),Object(n.a)(this,"contentRef",r.a.createRef()),Object(n.a)(this,"handleClickOutside",()=>{const{isOpen:e}=this.state;e&&this.close()}),Object(n.a)(this,"handleContentClick",()=>{const{isOpen:e,isHidden:t}=this.state;e?t?this.show():this.close():this.open()}),Object(n.a)(this,"handleMouseEnter",()=>{this.setState({needClose:!1}),this.open()}),Object(n.a)(this,"handleMouseLeave",()=>{this.setState({needClose:!0}),this.timeout=setTimeout(()=>{this.state.needClose&&this.close()},this.props.closeDelay)})}componentWillUnmount(){const e=O.indexOf(this);-1!==e&&O.splice(e),clearTimeout(this.timeout)}open(){const{isOpen:e}=this.state;e||this.setState({isOpen:!0},()=>{O.push(this),this.props.onOpen()})}close(){const{isOpen:e}=this.state;e&&this.setState({isOpen:!1},()=>{O.pop(),this.props.onClose()})}show(){const{isHidden:e}=this.state;e&&this.setState({isHidden:!1})}hide(){const{isHidden:e}=this.state;e||this.setState({isHidden:!0})}reposition(){this.forceUpdate()}renderOverlay(){const{isOpen:e,isHidden:t}=this.state;if(!e)return null;const{overlayClassName:o,nodeRef:n,overlay:a,arrow:i,placement:l,size:c,offset:d,toolbar:p,inPortal:b,portalNode:m}=this.props,h=n&&n.current||this.contentRef.current,g=m||h.ownerDocument.body,v=r.a.createElement(f,{className:o,node:h,arrow:i,placement:l,size:c,offset:d,isOpen:e,toolbar:p,inPortal:b},a);return b||p?r.a.createElement(u.a,{node:g,className:s()("brz-reset-all","brz-ed-tooltip__content-portal",{"brz-invisible":t})},v):v}renderInToolbar(){const{title:e,children:t,openOnClick:o}=this.props;return r.a.createElement(r.a.Fragment,null,r.a.createElement("div",{title:e,ref:this.contentRef,className:"brz-ed-tooltip__content",onClick:o?this.handleContentClick:i.default.noop},t),this.renderOverlay())}renderSimple(){const{title:e,children:t,openOnClick:o}=this.props;return r.a.createElement(c.a,null,r.a.createElement(d.a,null,()=>r.a.createElement("div",{title:e,ref:this.contentRef,className:"brz-ed-tooltip__content",onClick:o?this.handleContentClick:i.default.noop},t)),this.renderOverlay())}render(){const{toolbar:e,openOnClick:t,className:o,clickOutsideExceptions:n}=this.props,a=s()("brz-ed-tooltip",{"brz-ed-tooltip__static":!e},{"brz-ed-tooltip--opened":this.state.isOpen},o),l=[...n,".brz-ed-tooltip__content-portal"];return r.a.createElement(p.a,{onClickOutside:this.handleClickOutside,exceptions:l},r.a.createElement("div",{className:a,onMouseEnter:t?i.default.noop:this.handleMouseEnter,onMouseLeave:t?i.default.noop:this.handleMouseLeave},e?this.renderInToolbar():this.renderSimple()))}}Object(n.a)(x,"defaultProps",{className:"",overlayClassName:"",arrow:!0,placement:"top",openOnClick:!0,closeDelay:0,overlay:"",size:"",title:"",offset:15,toolbar:null,inPortal:!1,portalNode:null,clickOutsideExceptions:[],nodeRef:null,onOpen:()=>{},onClose:()=>{}})},function(e,t,o){"use strict";o.d(t,"a",(function(){return y}));var n=o(0),a=o.n(n),r=o(37),i=o(125),l=o(15),s=o(31),c=o(19),d=o(79),u=o(1),p=o(21),b=o(2),m=o(206),h=o(14);function g(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function v(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?g(Object(o),!0).forEach((function(t){Object(b.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):g(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const f=e=>{let t=null;if(e){const o=e.querySelector("#ct-container");o?t=o:(t=document.createElement("div"),t.id="ct-container"),e.append(t)}return t},y={error:(e,t={})=>{m.a.error(e,v(v({renderIcon:()=>a.a.createElement(h.b,{icon:"nc-info"}),bar:{size:"2px",style:"solid",color:"currentColor"}},t),{},{toastContainer:f(t.toastContainer)}))},success:(e,t={})=>{m.a.success(e,v(v({renderIcon:()=>a.a.createElement(h.b,{icon:"nc-info"}),bar:{size:"2px",style:"solid",color:"currentColor"}},t),{},{toastContainer:f(t.toastContainer)}))},info:(e,t={})=>{m.a.info(e,v(v({renderIcon:()=>a.a.createElement(h.b,{icon:"nc-info"}),bar:{size:"2px",style:"solid",color:"currentColor"}},t),{},{toastContainer:f(t.toastContainer)}))},warn:(e,t={})=>{m.a.warn(e,v(v({renderIcon:()=>a.a.createElement(h.b,{icon:"nc-info"}),bar:{size:"2px",style:"solid",color:"currentColor"}},t),{},{toastContainer:f(t.toastContainer)}))}},O=e=>e.lockedBy.user_email,S=({children:e})=>a.a.createElement("div",{className:"brz-ed-notification"},a.a.createElement("div",{className:"brz-ed-notification__body brz-d-xs-flex brz-flex-xs-column brz-align-items-xs-center brz-text-lg-center"},e)),x=({children:e})=>a.a.createElement("div",{className:"brz-ed-notification__head"},e),C=({children:e})=>a.a.createElement("div",{className:"brz-ed-notification__content"},e),j=({children:e})=>a.a.createElement("div",{className:"brz-ed-notification__footer brz-d-xs-flex brz-align-items-xs-center"},e);t.b=Object(r.b)(e=>({error:Object(c.k)(e)}))(({error:e,dispatch:t})=>{const{code:o,data:n}=e||{};let r;switch(o){case d.c:r=a.a.createElement(S,null,a.a.createElement(x,null,a.a.createElement(h.b,{icon:"nc-warning",className:"brz-ed-notification__warning"})),a.a.createElement(C,null,n.lockedBy?`${O(n)} ${Object(u.a)("is already editing project")}`:n.statusText||Object(u.a)("Something went wrong")),a.a.createElement(j,null,a.a.createElement("button",{className:"brz-button brz-ed-btn brz-ed-btn-blue brz-ed-btn-round brz-ed-btn-xs-2",onClick:()=>{window.parent.location.reload()}},Object(u.a)("Refresh"))));break;case d.f:{const e=l.a.get("urls");r=a.a.createElement(S,null,a.a.createElement(x,null,a.a.createElement(h.b,{icon:"nc-warning",className:"brz-ed-notification__warning"})),a.a.createElement(C,null,n.lockedBy?`${Object(u.a)("You can’t make changes")}.\n ${O(n)} ${Object(u.a)("is currently working on this page. Do you want to take over")} ?`:n),a.a.createElement(j,null,a.a.createElement("a",{className:"brz-a brz-d-xs-flex brz-align-items-xs-center brz-ed-notification__to-dashboard",href:e.backToDashboard},Object(u.a)("To Dashboard")),a.a.createElement("button",{className:"brz-button brz-ed-notification__take-over brz-ed-btn brz-ed-btn-blue brz-ed-btn-round brz-ed-btn-xs-2",onClick:()=>{t(Object(s.M)(null)),Object(p.M)().catch(()=>{y.error(Object(u.a)("Take over failed please refresh the page"))})}},Object(u.a)("Take over"))));break}case d.e:r=a.a.createElement(S,null,a.a.createElement(x,null,a.a.createElement(h.b,{icon:"nc-warning",className:"brz-ed-notification__warning"})),a.a.createElement(C,null,n),a.a.createElement(j,null,a.a.createElement("button",{className:"brz-button brz-ed-btn brz-ed-btn-blue brz-ed-btn-round brz-ed-btn-xs-2",onClick:()=>{window.parent.location.reload()}},Object(u.a)("Refresh"))));break;default:r=null}return a.a.createElement(i.CSSTransition,{in:Boolean(r),timeout:300,classNames:"brz-ed-fade",unmountOnExit:!0},r||a.a.createElement("span",null))})},function(e,t,o){"use strict";o.d(t,"d",(function(){return b})),o.d(t,"a",(function(){return m})),o.d(t,"e",(function(){return h})),o.d(t,"b",(function(){return g})),o.d(t,"h",(function(){return v})),o.d(t,"c",(function(){return f})),o.d(t,"f",(function(){return y})),o.d(t,"i",(function(){return O})),o.d(t,"g",(function(){return S}));var n=o(2),a=o(29),r=o(24),i=o(33),l=o(170),s=o(279),c=o(278);function d(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function u(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?d(Object(o),!0).forEach((function(t){Object(n.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):d(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const p=Object(i.d)(e=>e&&"px"===e||"%"===e?e:void 0,r.a.read),b=e=>l.a(e("elementPosition")),m=e=>s.a(e("offsetXAlignment")),h=e=>c.a(e("offsetYAlignment")),g=e=>a.a.read(e("offsetX")),v=(e,t,o)=>u(u({},o),e("offsetX",t)),f=e=>p(e("offsetXSuffix")),y=e=>a.a.read(e("offsetY")),O=(e,t,o)=>u(u({},o),e("offsetY",t)),S=e=>p(e("offsetYSuffix"))},,function(e,t,o){"use strict";o.d(t,"b",(function(){return b}));var n=o(2),a=o(0),r=o.n(a),i=o(7),l=o.n(i),s=o(58),c=o(25),d=o(19),u=o(204),p=o(224);const b=e=>e.filter(e=>{const{type:t,disabled:o,devices:n,roles:a}=e;if(!t)return!1;if(!0===o)return!1;if(n&&"all"!==n){const e=Object(d.i)(Object(c.b)().getState());if("desktop"===n&&"desktop"!==e)return!1;if("responsive"===n&&"desktop"===e)return!1}if(Array.isArray(a)&&!a.includes(Object(s.b)()))return!1;const r=u.a[t];return!r||"function"!=typeof r.shouldOptionBeFiltered||!u.a[t].shouldOptionBeFiltered(e)});class m extends r.a.Component{render(){const{data:e,className:t,optionClassName:o,toolbar:n,location:a,wrapOptions:i}=this.props,l=b(e).map((e,t)=>r.a.createElement(p.a,{key:e.id||t,className:o,toolbar:n,data:e,location:a}));return i?r.a.createElement("div",{className:t},l):l}}Object(n.a)(m,"propTypes",{wrapOptions:l.a.bool}),Object(n.a)(m,"defaultProps",{className:"",optionClassName:"",location:"",data:null,toolbar:null,wrapOptions:!0}),t.a=m},function(e,t,o){"use strict";o.d(t,"a",(function(){return a}));var n=o(33);function a(...[e,...t]){return(...o)=>t.reduce((e,t)=>Object(n.a)(e)?void 0:t(e),e(...o))}},function(e,t,o){"use strict";var n=o(132);let a,r={},i={};const l={registerComponent(e){r[e.componentId]=e},getComponents:()=>r,getComponent:e=>r[e]||null,registerNotFoundComponent(e){a=e},getNotFoundComponent(){if(!a)throw new Error("NotFoundComponent not registered");return a},registerShortcode(e){i=e},getShortcodes:()=>Object(n.b)("getShortcodes",i)};t.a=l},function(e,t,o){"use strict";o.d(t,"a",(function(){return a})),o.d(t,"h",(function(){return r})),o.d(t,"g",(function(){return i})),o.d(t,"i",(function(){return l})),o.d(t,"b",(function(){return s})),o.d(t,"j",(function(){return c})),o.d(t,"c",(function(){return d})),o.d(t,"f",(function(){return u})),o.d(t,"e",(function(){return p})),o.d(t,"d",(function(){return b}));var n=o(2);class a{constructor(e){Object(n.a)(this,"name","CustomError"),Object(n.a)(this,"date",new Date),Object(n.a)(this,"message",void 0),this.message=e}getName(){return this.name}getMessage(){return this.message}getDate(){return this.date}}class r extends a{constructor(...e){super(...e),Object(n.a)(this,"name","Project")}}class i extends a{constructor(...e){super(...e),Object(n.a)(this,"name","Page")}}class l extends a{constructor(...e){super(...e),Object(n.a)(this,"name","SavedBlocks")}}class s extends a{constructor(...e){super(...e),Object(n.a)(this,"name","GlobalBlocks")}}class c extends a{constructor(...e){super(...e),Object(n.a)(this,"name","SavedLayout")}}const d=1,u=2,p=3,b=[d,p]},,,function(e,t,o){"use strict";o.d(t,"a",(function(){return a})),o.d(t,"b",(function(){return r})),o.d(t,"c",(function(){return i}));var n=o(33);function a(e,t){return t?t[e]:void 0}function r(e,t,o){return Object(n.g)(a(t,o),e)}const i=e=>t=>t[e]},function(e,t,o){"use strict";var n=o(12),a=o(36),r=o(2),i=o(0),l=o.n(i),s=o(4),c=o.n(s),d=o(33);let u;const p=new Map,b=(e,t)=>{e.filter(({isIntersecting:e})=>e).map(e=>Object(d.c)(o=>o(e,t),p.get(e.target)))},m=()=>{var e;return null!==(e=u)&&void 0!==e?e:u=new IntersectionObserver(b)},h=(e,t)=>{if(!p.has(e)){const o=m();p.set(e,t),o.observe(e)}return m()},g=e=>{p.delete(e),u&&(u.unobserve(e),0===p.size&&(u.disconnect(),u=void 0))};function v(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function f(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?v(Object(o),!0).forEach((function(t){Object(r.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):v(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}class y extends l.a.Component{constructor(...e){super(...e),Object(r.a)(this,"state",{isVisible:!1}),Object(r.a)(this,"handleIntersection",({isIntersecting:e,target:t})=>{e&&(g(t),this.setState({isVisible:!0}))}),Object(r.a)(this,"ref",l.a.createRef()),Object(r.a)(this,"updateRef",()=>{this.props.forwardedRef&&("function"==typeof this.props.forwardedRef?this.props.forwardedRef(this.ref.current):this.props.forwardedRef.current=this.ref.current)}),Object(r.a)(this,"hasAnimation",()=>!!this.props.animationClass)}componentDidMount(){this.updateRef(),this.props.animationClass&&Object(d.c)(e=>h(e,this.handleIntersection),this.ref.current)}componentDidUpdate(e){this.updateRef(),e.animationClass!==this.props.animationClass&&(this.props.animationClass?Object(d.c)(e=>h(e,this.handleIntersection),this.ref.current):Object(d.c)(g,this.ref.current))}componentWillUnmount(){Object(d.c)(g,this.ref.current)}renderForEdit(){const e=this.props,{component:t,animationClass:o="",forwardedRef:n,children:r,className:l,componentProps:{className:s}}=e,d=Object(a.a)(e.componentProps,["className"]),{isVisible:u}=this.state,p=this.hasAnimation(),b=u&&p,m=c()(l,s,{"brz-observer__animation":p,"brz-animated":p,[o]:b,"brz-animate":b,"brz-animate-opacity":b}),h=f(f({},d),{},{className:m,ref:this.ref});return Object(i.createElement)(t,h,r)}renderForView(){const e=this.props,{component:t,animationClass:o="",iterationCount:n=1,children:r,className:l,forwardedRef:s,componentProps:{className:d}}=e,u=Object(a.a)(e.componentProps,["className"]),p=this.hasAnimation(),b=f(f(f({},u),p?{"data-iteration-count":n}:{}),{},{className:c()(l,d,{"brz-animated":p,[o]:p}),ref:this.ref});return Object(i.createElement)(t,b,r)}render(){return this.renderForEdit()}}function O(e,t){return l.a.createElement(y,Object(n.a)({},e,{forwardedRef:t}))}const S=Object(i.forwardRef)(O);t.a=S},,,function(e,t,o){"use strict";o.d(t,"b",(function(){return r})),o.d(t,"a",(function(){return l})),o.d(t,"i",(function(){return s})),o.d(t,"g",(function(){return c})),o.d(t,"f",(function(){return u})),o.d(t,"d",(function(){return p})),o.d(t,"h",(function(){return b})),o.d(t,"e",(function(){return m})),o.d(t,"c",(function(){return h}));o(8);var n=o(33),a=o(26);const r=(e,t)=>e.reduce((e,o)=>{const n=t(o);return Array.isArray(n)?e.push(...n):e.push(n),e},[]),i=(e,t)=>[...e,...t],l=e=>e.reduce(i,[]);function s(e){return Array.isArray(e)?e:[]}function c(e,t){return s(t).length>0?t:e}const d=(e,t)=>void 0!==t[e]?e:void 0,u=(e,t)=>Object(n.c)(e=>(e+1)%t.length,d(e,t));function p(e,t){const o=t.indexOf(e);return o<0?void 0:o}const b=(e,t)=>{if(!Array.isArray(t))return;const o=[];for(let n=0;n<t.length;n++){const a=e(t[n]);if(void 0===a)return;o.push(a)}return o};function m(e,t,o){if(0===o.length||e===t||e<0||e>o.length-1||t<0||t>o.length||o[e]===o[t])return o;const n=e>t?t:t+1,r=e<t?e:e+1;return Object(a.removeAt)(Object(a.insert)(o,n,o[e]),r)}const h=(e,t)=>{try{return b(e,JSON.parse(t))}catch(e){return}}},,function(e,t,o){"use strict";function n(){let e="Unknown OS";{const{appVersion:t}=navigator;-1!==t.indexOf("Win")&&(e="Windows"),-1!==t.indexOf("Mac")&&(e="MacOS"),-1!==t.indexOf("Linux")&&(e="Linux")}return e}o.d(t,"a",(function(){return n}))},,,function(e,t,o){"use strict";o.d(t,"a",(function(){return u}));var n=o(2),a=o(0),r=o.n(a),i=o(40),l=o.n(i),s=o(46),c=o.n(s);let d=[];class u extends r.a.Component{constructor(...e){super(...e),Object(n.a)(this,"handleAll",e=>{d.forEach(t=>{const{exceptions:o,onClickOutside:n}=t.props;let a=0;if(o.length>0){const{functionExceptions:t,stringExceptions:n}=o.reduce((e,t)=>{switch(typeof t){case"function":e.functionExceptions.push(t);break;case"string":e.stringExceptions.push(t)}return e},{functionExceptions:[],stringExceptions:[]});t.length>0&&(a+=t.filter(t=>!0===t(e.target)).length),0===a&&n.length>0&&(a+=c()(e.target).closest(n.join(",")).length)}if(0===a){const o=l.a.findDOMNode(t);o&&!o.contains(e.target)&&n(e)}})})}componentDidMount(){0===d.length&&(document.addEventListener("mousedown",this.handleAll,!0),window.parent.document.addEventListener("mousedown",this.handleAll,!0)),d.push(this)}componentWillUnmount(){d.splice(d.indexOf(this),1),0===d.length&&(document.removeEventListener("mousedown",this.handleAll,!0),window.parent.document.removeEventListener("mousedown",this.handleAll,!0))}render(){return r.a.Children.only(this.props.children)}}Object(n.a)(u,"defaultProps",{exceptions:[]})},function(e,t,o){"use strict";o.d(t,"c",(function(){return i})),o.d(t,"b",(function(){return l})),o.d(t,"a",(function(){return s}));var n=o(22);const a=/^#(?:[A-Fa-f0-9]{3}){1,2}$/;var r;!function(e){e.hex="hex"}(r||(r={}));const i=e=>a.test(e),l=Object(n.a)(Object(n.b)(i)),s="#000000"},function(e,t,o){"use strict";o.d(t,"c",(function(){return c})),o.d(t,"a",(function(){return u})),o.d(t,"b",(function(){return p})),o.d(t,"e",(function(){return b})),o.d(t,"g",(function(){return m})),o.d(t,"f",(function(){return h})),o.d(t,"h",(function(){return g})),o.d(t,"d",(function(){return v}));var n=o(2),a=o(52),r=o(47),i=o(9);function l(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function s(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?l(Object(o),!0).forEach((function(t){Object(n.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):l(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const c=e=>e.endsWith("Population"),d=e=>Object(i.a)([e,"population"]),u=e=>e.slice(0,-10),p=(e,t)=>!!a.a(e[d(t)]),b=(e,t)=>{var o;const n=e[t],l=null!==(o=a.a(e[d(t)]))&&void 0!==o?o:"",s=e[(e=>Object(i.a)([e,"populationFallback2"]))(t)],c=r.c(e[(e=>Object(i.a)([e,"populationAttr"]))(t)]);return{key:t,hasDC:""!==l,staticValue:n,dcValue:l,attr:c?Object.fromEntries(Object.entries(c).map(([t,o])=>[t,e[o]])):{},fallback:s}};function m(e){const t=/^{{\s*([\w-]+)(.*?)\s*}}$/.exec(e);if(!t)return;const[,o,n]=t;if(""===n)return{name:o};const a=/(\w+)=("|'|&quot;|&apos;)(.*?)\2/g;let r,i=void 0;for(;r=a.exec(n.trim());){var l;i=null!==(l=i)&&void 0!==l?l:{},i[r[1]]=r[3]}return i?{name:o,attr:i}:{name:o}}function h(e){if(!e.hasDC)return;const t=m(e.dcValue);return t?((e.fallback||e.attr)&&(t.attr=s(s(s({},t.attr),e.attr),e.fallback?{_fallback:e.fallback}:{})),t):void 0}function g(e){const{name:t,attr:o}=e,n=o?Object.keys(o).sort().flatMap(e=>{const t=a.a(o[e]);return void 0!==t?`${e}='${t}'`:[]}).join(" "):"";return n.length>0?`{{${t} ${n}}}`:`{{${t}}}`}function v(e){return void 0!==m(e)}},function(e,t,o){"use strict";o.d(t,"e",(function(){return c})),o.d(t,"a",(function(){return d})),o.d(t,"g",(function(){return u})),o.d(t,"c",(function(){return p})),o.d(t,"b",(function(){return b})),o.d(t,"h",(function(){return m})),o.d(t,"f",(function(){return h})),o.d(t,"i",(function(){return v})),o.d(t,"d",(function(){return f}));var n=o(2),a=o(103),r=o(81),i=o(145);function l(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function s(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?l(Object(o),!0).forEach((function(t){Object(n.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):l(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const c=e=>e.page,d=e=>e.authorized,u=e=>e.syncAllowed,p=e=>e.fonts,b=e=>e.extraFontStyles,m=e=>e.ui,h=e=>e.storeWasChanged||a.a.unchanged,g=e=>!0!==e.deleted,v=Object(r.createSelector)(p,e=>Object.entries(e).reduce((e,t)=>{const[o,{data:n=[]}={data:[]}]=t;return s(s({},e),{},{[""+o]:{data:n.filter(g)}})},{})),f=(Object(r.createSelector)(m,e=>e.currentRole),Object(r.createSelector)(m,e=>e.leftSidebar));Object(r.createSelector)(c,e=>{if(Object(i.a)(e))return e.layout})},function(e,t,o){"use strict";var n=o(8),a=o(274);const r=n.default.extend({},a.EventEmitter.prototype,{off(e,t){this.removeListener(e,t)}});r.setMaxListeners(1/0),t.a=r},function(e,t,o){"use strict";o.d(t,"c",(function(){return b})),o.d(t,"a",(function(){return m})),o.d(t,"d",(function(){return h})),o.d(t,"e",(function(){return g})),o.d(t,"b",(function(){return v})),o.d(t,"i",(function(){return O})),o.d(t,"j",(function(){return S})),o.d(t,"h",(function(){return x})),o.d(t,"g",(function(){return C})),o.d(t,"f",(function(){return j}));var n=o(2),a=o(15),r=o(25),i=o(19),l=o(150),s=o(35),c=o(16),d=o(56);function u(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function p(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?u(Object(o),!0).forEach((function(t){Object(n.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):u(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const b=1,m=2,h=16,g="brizy_template",v="customer";function f(e,t){var o;if(!e.length&&null!==(o=t[""])&&void 0!==o&&o.after)return t[""].after;e.length&&t[""]&&(t[e[0].globalBlockId]=t[""],delete t[""]);return e.reduce((e,o)=>{var n,a;const r=o.globalBlockId;return null!==(n=t[r])&&void 0!==n&&n.before&&e.push(...t[r].before),e.push(o),null!==(a=t[r])&&void 0!==a&&a.after&&e.push(...t[r].after),e},[])}function y(e,t,o){const n=[...t];return e.reduce((e,a)=>{if(t.includes(a.globalBlockId)){const t=n.shift();t&&e.push({globalBlockId:t,align:o.includes(t)?"top":"bottom"})}else e.push(a);return e},[])}function O(e,t){const o=Object.keys(t),n=Object.entries(t).reduce((e,[t,o])=>(o.position&&(e[t]=o.position),e),{}),a=function(e){const{top:t,bottom:o}=Object.entries(e).reduce((e,[t,o])=>(e.top.push(p(p({},o),{},{globalBlockId:t,align:o.align||"top"})),e.bottom.push(p(p({},o),{},{globalBlockId:t,align:o.align||"top"})),e),{top:[],bottom:[]});return{top:n(t,"top"),bottom:n(o,"bottom")};function n(e,t){return e.sort((e,o)=>e[t]-o[t]).map(({globalBlockId:e,align:t})=>({globalBlockId:e,align:t}))}}(n),{top:r}=S(e,o),i=function(e,t){return e.filter(e=>t[e])}(e,t),l=i.filter(e=>n[e]),s=function(e,t,o){const n={};let a=[],r="";return e.forEach((e,i,l)=>{const s=t.includes(e);s&&(n[e]=p(p({},n[e]),{},{before:a}),r=e,a=[]),s||a.push({globalBlockId:e,align:o.includes(e)?"top":"bottom"}),i===l.length-1&&a.length&&(n[r]=p(p({},n[r]),{},{after:a}))}),n}(i,l,r);return function(e,t){const o={};return n(e,"top",o),n(t,"bottom",o),o;function n(e,t,o){return e.reduce((e,{globalBlockId:o,align:n},a)=>(e[o]=p(p({},e[o]),{},{align:n,[t]:a}),e),o)}}(f(y(a.top,l,r),s),f(y(a.bottom,l,r),s))}const S=(e,t)=>{const o={top:[],bottom:[]};if(e.length>0){let n=0;for(;n<=e.length-1;){const a=e[n];if(!t.includes(a))break;o.top.push(a),n++}for(n=0;n<=e.length-1;){const a=e[e.length-1-n];if(!t.includes(a))break;o.bottom.push(a),n++}}return o};const x=(e=Object(i.C)(Object(r.b)().getState()))=>{const t=a.a.getAll();let o=b,n="page";if(Object(d.e)(e)&&(n=e.collectionType.id),Object(d.c)(t)&&Object(d.b)(t)&&Object(d.f)(t)&&(n=v),s.o){const{ruleMatches:e}=a.a.get("wp");c.e?(o=h,n=g):e&&"post"===e[0].entityType&&(o=b,n="post")}return{group:o,type:n,id:e.id}},C=(e,t,o)=>{const n=e[t-1],a=e[t+1],{top:r,bottom:i}=((e,t)=>{const o={top:[],bottom:[]};if(e.length>0){let n=0;for(;n<=e.length-1;){const a=e[n];if(!t.includes(a))break;o.top.push(a),n++}for(n=0;n<=e.length-1;){const a=e[e.length-1-n];if(!t.includes(a))break;o.bottom.push(a),n++}}return o})(e,o);let l="center";return!n||o.includes(n)&&r.includes(n)?l="top":(!a||o.includes(a)&&i.includes(a))&&(l="bottom"),l},j=(e,t,o)=>{const n=x(o),{level2:a,level3:r}=Object(l.d)(e.rules,o);let i=p(p({},e),{},{rules:e.rules.filter(({entityValues:e})=>!e.some(e=>String(e)===String(n.id)))}),s=!0;if(!c.e){const e=a&&Object(l.c)(a),o=r&&Object(l.c)(r),n=e||o,i=!t&&!n;(t&&n||i)&&(s=!1)}return s&&(i=p(p({},i),{},{rules:[...i.rules,{type:t?1:2,appliedFor:n.group,entityType:n.type,entityValues:[n.id]}]})),i}},function(e,t,o){"use strict";o.d(t,"e",(function(){return n})),o.d(t,"f",(function(){return a})),o.d(t,"b",(function(){return c})),o.d(t,"d",(function(){return d})),o.d(t,"a",(function(){return u})),o.d(t,"c",(function(){return b}));const n=(e,t)=>{for(let o in e){if(!e.hasOwnProperty(o))continue;e[o]&&"object"==typeof e[o]&&n(e[o],t);const a=t[e.type]||t.Component;"function"==typeof a&&e.type&&e.value&&a(e)}},a=(e,t)=>{for(let o in e)e.hasOwnProperty(o)&&"function"==typeof t[o]&&t[o](e[o])};var r=o(43),i=o(120),l=o(245),s=o(138);const c=({models:e={},globalBlocks:t={}})=>{const o=new Set;return n(e,{Component({type:e,value:t}){const n=Object(i.a)(e).style||{};Object.entries(n.families||{}).forEach(e=>{const[a,r]=e,l={type:t[a+"Type"]||n[a+"Type"],family:t[a]||r};l.type&&l.family&&o.add(Object(i.b)(l))})},RichText({type:e,value:t}){const n=Object(i.a)(e).content||{},a=t.text||n.text;Object(l.b)(a,e=>{const t=Object(s.b)(e),{typographyFontFamily:n,typographyFontFamilyType:a}=t;n&&(a?o.add(Object(i.b)({type:a,family:n})):o.add(Object(i.b)({family:n,type:"unknowns"})))})},GlobalBlock({value:{_id:e}}){const n=t[e];if(n){c({models:n,globalBlocks:t}).forEach(e=>{o.add(Object(i.b)(e))})}}}),[...o].map(i.c)},d=e=>{const t=new Set;return e.forEach(e=>{a(e,{fontFamily(o){t.add(Object(i.b)({type:e.fontFamilyType,family:o}))}})}),[...t].map(i.c)},u=(e,t)=>{const o=e.reduce((e,t)=>e.some(({family:e})=>e===t.family)?e:[...e,t],[]),n=Object(r.t)(t);return o.reduce((e,t)=>{const{type:o,family:a}=t;return"unknowns"===o?Object.entries(n).find(([e,t])=>Object(r.a)(t,a,e))?e:[...e,t]:Object(r.a)(n[o],a,o)?e:[...e,t]},[])};var p=o(9);const b=({models:e,globalBlocks:t})=>{const o=new Set;return n(e,{Component({type:e,value:t}){const n=Object(i.a)(e).link||{},a=t.linkType||n.linkType,r=t.linkUpload||n.linkUpload;"upload"===a&&r&&o.add(r)},RichText({type:e,value:t}){const n=Object(i.a)(e).content||{},a=/href="(.+?)"/g,r=t.text||n.text;let l;for(;l=a.exec(r);){const[e,t]=l,{type:n,upload:a}=Object(p.d)(t);"upload"===n&&a&&o.add(a)}},Lottie({type:e,value:t}){const n=Object(i.a)(e).content||{},a=Object(i.a)(e).link||{},r=t.animationFile||n.animationFile,l=t.linkType||a.linkType,s=t.linkUpload||a.linkUpload;"upload"===l&&s&&o.add(s),r&&o.add(r)},GlobalBlock({value:{_id:e}}){const n=t&&t[e];n&&b({models:n}).forEach(e=>{o.add(e)})}}),[...o]}},function(e,t,o){"use strict";o.d(t,"p",(function(){return h})),o.d(t,"s",(function(){return g})),o.d(t,"o",(function(){return v})),o.d(t,"k",(function(){return f})),o.d(t,"D",(function(){return y})),o.d(t,"a",(function(){return O})),o.d(t,"r",(function(){return S})),o.d(t,"i",(function(){return x})),o.d(t,"B",(function(){return C})),o.d(t,"C",(function(){return j})),o.d(t,"l",(function(){return P})),o.d(t,"e",(function(){return B})),o.d(t,"b",(function(){return w})),o.d(t,"y",(function(){return T})),o.d(t,"z",(function(){return z})),o.d(t,"A",(function(){return E})),o.d(t,"c",(function(){return k})),o.d(t,"g",(function(){return H})),o.d(t,"w",(function(){return F})),o.d(t,"x",(function(){return _})),o.d(t,"q",(function(){return R})),o.d(t,"m",(function(){return L})),o.d(t,"v",(function(){return M})),o.d(t,"h",(function(){return I})),o.d(t,"n",(function(){return W})),o.d(t,"d",(function(){return N})),o.d(t,"j",(function(){return A})),o.d(t,"f",(function(){return V})),o.d(t,"u",(function(){return D})),o.d(t,"t",(function(){return $}));o(239);var n=o(36),a=o(2),r=o(46),i=o.n(r),l=o(289),s=o.n(l),c=o(15),d=o(104);function u(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function p(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?u(Object(o),!0).forEach((function(t){Object(a.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):u(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const b=c.a.get("wp").api.url;function m(e,t){const{hash:o,url:n}=c.a.get("wp").api,a=c.a.get("editorVersion"),r=p(p({},t),{},{action:e,hash:o,version:a});return new s.a((e,t)=>i.a.post(n,r).done(e).fail(e=>t(e.responseText)))}function h(e){const{hash:t,url:o}=c.a.get("wp").api,a=c.a.get("editorVersion"),{data:r}=e,l=Object(n.a)(e,["data"]);return new s.a((e,n)=>{i.a.ajax(p(p({url:o},l),{},{data:"object"==typeof r&&null!==r?p(p({},r),{},{hash:t,version:a}):r,onbeforeunload:()=>"You have unsaved data.",failedAttempts:0,success(t){this.failedAttempts=0,window.onbeforeunload=null,e(t)},error(e){const{status:t,responseJSON:o}=e;0===t?(this.failedAttempts++,window.onbeforeunload=this.onbeforeunload,this.failedAttempts<=5&&setTimeout(()=>i.a.ajax(this),5e3*this.failedAttempts)):n(o)}}))})}function g(e,t={}){return fetch(e,t)}function v(e=650){return new s.a(t=>{setTimeout(()=>{t(!0)},e)})}function f(){const{getProject:e}=c.a.get("wp").api;return h({type:"POST",dataType:"json",data:{action:e}}).then(({data:e})=>e).then(d.e)}function y(e,t={}){const{setProject:o}=c.a.get("wp").api,{is_autosave:n=1}=t,{data:a,dataVersion:r}=Object(d.j)(e);return h({type:"POST",dataType:"json",data:{data:a,dataVersion:r,is_autosave:n,action:o}})}function O(){const{url:e,hash:t,lockProject:o}=c.a.get("wp").api,n=c.a.get("editorVersion");return g(e,{method:"POST",body:new URLSearchParams({version:n,hash:t,action:o})}).then(e=>e.json()).then(e=>{if(e.success)return e.data;throw e})}function S(){const{removeLock:e}=c.a.get("wp").api,t=c.a.get("editorVersion"),o=new URL(b);return o.searchParams.append("action",e),o.searchParams.append("version",t),navigator.sendBeacon(""+o)}function x(e){return function(){const e=c.a.get("wp").api;return h({type:"POST",dataType:"json",data:{id:c.a.get("wp").page,action:e.getPage}}).then(({data:e})=>e.map(d.d))}().then(t=>t.find(t=>t.id===e))}function C(e,t={}){const{updatePage:o}=c.a.get("wp").api,{is_autosave:n=1}=t;return h({type:"POST",dataType:"json",data:p(p({action:o},Object(d.i)(e)),{},{is_autosave:n})})}function j(e){const{api:{updateRules:t,hash:o,url:n},page:a}=c.a.get("wp"),{rules:r,dataVersion:i}=e;return g(`${n}?action=${t}&hash=${o}&post=${a}&version=${c.a.get("editorVersion")}&dataVersion=${i}`,{method:"POST",credentials:"same-origin",headers:{"Content-Type":"application/json"},body:JSON.stringify(r)})}function P(){const{api:{getRuleList:e,hash:t,url:o},page:n}=c.a.get("wp"),a=c.a.get("editorVersion");return g(o,{method:"POST",body:new URLSearchParams({action:e,post:n,version:a,hash:t})}).then(e=>e.json()).then(({data:e})=>e)}function B(){const{getGlobalBlockList:e}=c.a.get("wp").api;return h({type:"POST",dataType:"json",data:{action:e}}).then(({data:e})=>e.map(d.b).reduce((e,{uid:t,data:o,status:n,rules:a,position:r,meta:i})=>(e[t]={data:o,status:n,meta:i,rules:a,position:r,id:t},e),{}))}function w(e){const{createGlobalBlock:t}=c.a.get("wp").api,o=e.data.value._id,{data:n,rules:a,meta:r}=Object(d.h)(e);return h({type:"POST",dataType:"json",data:{uid:o,status:"draft",data:n,rules:a,meta:r,media:Object(d.a)(e),action:t}})}function T(e,t,o={}){const{updateGlobalBlock:n}=c.a.get("wp").api,{is_autosave:a=1}=o,{data:r,rules:i,meta:l,status:s}=Object(d.h)(t);return h({type:"POST",dataType:"json",data:{uid:e,status:s,data:r,rules:i,is_autosave:a,meta:l,action:n}})}function z(e,t={}){const{updateGlobalBlocks:o}=c.a.get("wp").api,{is_autosave:n=1}=t,a=Object.entries(e).reduce((e,[t,o])=>{const{data:n,position:a,rules:r,meta:i,status:l}=Object(d.h)(o);return e.uid.push(t),e.status.push(l),e.data.push(null!=n?n:""),e.position.push(JSON.stringify(a)),e.rules.push(r),e.meta.push(i),e},{uid:[],status:[],data:[],position:[],rules:[],meta:[]});return h({type:"POST",dataType:"json",data:{uid:a.uid,status:a.status,data:a.data,position:a.position,rules:a.rules,is_autosave:n,meta:a.meta,action:o}})}function E(e,t={}){const{updateBlockPositions:o,hash:n,url:a}=c.a.get("wp").api,r=c.a.get("editorVersion"),{is_autosave:i=1}=t;return h({type:"POST",url:`${a}?action=${o}&hash=${n}&is_autosave=${i}&version=${r}`,dataType:"json",contentType:"application/json",data:JSON.stringify(e)})}function k(e){const{api:t,page:o}=c.a.get("wp"),n={post_id:o,media:e};return m(t.downloadMedia,n).then(({data:e})=>e)}function H(e){const{api:t,page:o}=c.a.get("wp"),n={post_id:o,attachment_id:e};return m(t.getMediaUid,n).then(({data:e})=>e)}function F(e,t){return m(c.a.get("wp").api.setFeaturedImage,{post:e,attachmentId:t})}function _(e,t,o,n){return m(c.a.get("wp").api.setFeaturedImageFocalPoint,{post:e,attachmentId:t,pointX:o,pointY:n})}function R(e){return m(c.a.get("wp").api.removeFeaturedImage,{post:e})}function L(){return m(c.a.get("wp").api.getSidebars,{}).then(({data:e})=>e)}function M(e){return m(c.a.get("wp").api.shortcodeContent,{shortcode:e}).then(({data:e})=>e)}function I(){return m(c.a.get("wp").api.getMenus,{}).then(({data:e})=>e)}function W(){return m(c.a.get("wp").api.getFonts,{}).then(({data:e})=>e)}function N(e){const t={attachment_id:e};return m(c.a.get("wp").api.getAttachmentUid,t).then(({data:e})=>e)}function A(e){return m(c.a.get("wp").api.getPostObjects,{postType:e}).then(({data:e})=>e)}function V(){return m(c.a.get("wp").api.getRuleGroupList,{context:"popup-rules"}).then(({data:e})=>e)}function D(){const{url:e,hash:t,heartBeat:o}=c.a.get("wp").api,n=c.a.get("editorVersion");return g(e,{method:"POST",body:new URLSearchParams({action:o,version:n,hash:t})}).then(e=>e.json()).then(e=>{if(e.success)return e.data;throw e})}function $(){const{url:e,hash:t,takeOver:o}=c.a.get("wp").api,n=c.a.get("editorVersion");return g(e,{method:"POST",body:new URLSearchParams({action:o,version:n,hash:t})}).then(e=>e.json()).then(e=>{if(e.success)return e.data;throw e})}},function(e,t,o){"use strict";o.d(t,"a",(function(){return h}));var n=o(2),a=o(0),r=o.n(a),i=o(40),l=o.n(i),s=o(4),c=o.n(s),d=o(8);class u extends a.Component{constructor(...e){super(...e),Object(n.a)(this,"content",r.a.createRef()),Object(n.a)(this,"updateDOM",()=>{setTimeout(()=>{if(this.unmounted)return;const e=this.content.current;e&&this.props.onUpdateDOM(this.math,e)},0)})}componentDidMount(){this.updateDOM()}componentDidUpdate(){this.updateDOM()}componentWillUnmount(){this.unmounted=!0}math(e,t,o,n,a){const r=Math.max(o,e),i=r-e,l=e/r*a,s=a-l;return{client:e,offset:t,position:n,track:a,overflow:i,thumb:l,piece:s,shift:0===i?0:n/i*s,scroll:r}}render(){return r.a.createElement("div",{ref:this.content,className:this.props.className,style:this.props.style,onScroll:this.updateDOM},this.props.children)}}u.defaultProps={onUpdateDOM:d.default.noop};var p=o(46),b=o.n(p);class m extends a.Component{constructor(e){super(e),this.state={startTop:!1,startLeft:!1},this.handleMouseDown=this.handleMouseDown.bind(this),this.handleMouseMove=this.handleMouseMove.bind(this),this.handleMouseUp=this.handleMouseUp.bind(this)}componentDidMount(){const e=l.a.findDOMNode(this);this.document=b()(e.style?e.ownerDocument:e.document||e),this.window=b()(this.document[0].defaultView||this.document[0].parentWindow)}handleMouseDown(e,t,o){if(b()(o.target).hasClass("brz-ed-sidebar-block-remove"))return e(o),void t(o);e(o),this.window.on("mousemove",this.handleMouseMove),this.window.on("mouseup",this.handleMouseUp),this.setState({startLeft:o.clientX,startTop:o.clientY}),this.props.onDragStart(this),t(o)}handleMouseMove(e){var t={top:e.clientY-this.state.startTop,left:e.clientX-this.state.startLeft};this.props.onDragMove(t,this),e.preventDefault()}handleMouseUp(){this.window.off("mousemove",this.handleMouseMove),this.window.off("mouseup",this.handleMouseUp),this.props.onDragEnd(this)}render(){const e=r.a.Children.only(this.props.children);return r.a.cloneElement(e,{onMouseDown:t=>{this.handleMouseDown(e.props.onMouseDown||d.default.noop,this.props.onMouseDown||d.default.noop,t)}})}}m.defaultProps={currentWindow:{},onDragEnd:d.default.noop,onDragStart:d.default.noop,onDragMove:d.default.noop};class h extends a.Component{constructor(e){super(e),Object(n.a)(this,"captureStart",()=>{this._start=!1}),Object(n.a)(this,"handleChange",({left:e=null,top:t=null})=>{const o=l.a.findDOMNode(this.scrollable);this.props.onChange({left:e||o.scrollLeft,top:t||o.scrollTop})}),Object(n.a)(this,"handleMouseDown",e=>{const t=l.a.findDOMNode(this.wideTrack),o=t.getBoundingClientRect(),n=(e.clientX-o.left-this._wide.thumb/2)/this._wide.piece*this._wide.overflow;e.target===t&&(l.a.findDOMNode(this.scrollable).scrollLeft=n)}),Object(n.a)(this,"handleMouseDown2",e=>{const t=l.a.findDOMNode(this.tallTrack),o=t.getBoundingClientRect(),n=(e.clientY-o.top-this._tall.thumb/2)/this._tall.piece*this._tall.overflow;e.target===t&&(l.a.findDOMNode(this.scrollable).scrollTop=n,this.handleChange({top:n}))}),Object(n.a)(this,"handleMove",e=>{!1===this._start&&(this._start=parseInt(this.wideThumb.style.left));const t=(e.left+this._start)/this._wide.piece*this._wide.overflow;l.a.findDOMNode(this.scrollable).scrollLeft=t,this.handleChange({left:t})}),Object(n.a)(this,"handleMove2",e=>{!1===this._start&&(this._start=parseInt(this.tallThumb.style.top));const t=(e.top+this._start)/this._tall.piece*this._tall.overflow;l.a.findDOMNode(this.scrollable).scrollTop=t,this.handleChange({top:Math.min(this._tall.overflow,Math.max(0,t))})}),Object(n.a)(this,"handleResize",()=>{this.forceUpdate()}),Object(n.a)(this,"handleUpdateDOM",(e,t)=>{let o,n,a=l.a.findDOMNode(this.wideTrack),r=this.wideThumb,i=l.a.findDOMNode(this.tallTrack),s=this.tallThumb,c={overflow:Math.max(0,t.scrollWidth-t.clientWidth)},d={overflow:Math.max(t.scrollHeight-t.clientHeight)};a.style.position="absolute",i.style.position="absolute",r.style.position="relative",s.style.position="relative",a.style.display="block",o=a.offsetHeight,i.style.display="block",n=i.offsetWidth,t.style.overflow="hidden",t.style.borderBottomWidth=o+"px",t.style.borderBottomStyle=c.overflow?"solid":"none",t.style.borderRightWidth=n+"px",t.style.borderRightStyle=d.overflow?"solid":"none",c.overflow=Math.max(0,t.scrollWidth-t.clientWidth),d.overflow=Math.max(0,t.scrollHeight-t.clientHeight),a.style.display=c.overflow?"block":"none",a.style.width=t.clientWidth+"px",a.style.left=0,a.style.top=t.offsetHeight-o+"px",i.style.display=d.overflow?"block":"none",i.style.height=t.clientHeight+"px",i.style.top=0,this._wide=c=e(t.clientWidth,t.offsetWidth,t.scrollWidth,t.scrollLeft,a.clientWidth),this._tall=d=e(t.clientHeight,t.offsetHeight,t.scrollHeight,t.scrollTop,i.clientHeight),r.style.left=c.shift+"px",r.style.width=c.thumb+"px",s.style.top=d.shift+"px",s.style.height=d.thumb+"px"}),Object(n.a)(this,"handleWheel",e=>{e.stopPropagation();let t=l.a.findDOMNode(this.scrollable);const o=t.scrollTop,n=t.scrollLeft,a=navigator.userAgent.toLowerCase();let r=1;/firefox/.test(a)&&(r=20),/chrome/.test(a)&&(r=.8),this.props.onlyWide?t.scrollLeft=n+(e.deltaX?e.deltaX:e.deltaY*r):(e.preventDefault(),t.scrollTop=o+e.deltaY*r,t.scrollLeft=n+e.deltaX),(t.scrollTop!=o||t.scrollLeft!=n||this.props.onlyWide)&&e.preventDefault(),this.handleChange({left:t.scrollLeft,top:t.scrollTop})}),this.handleRef=r.a.createRef(),this._start=0,this._wide={},this._tall={}}componentDidMount(){this.handleRef.current.addEventListener("wheel",this.handleWheel,{passive:!1}),window.addEventListener("resize",this.handleResize,{passive:!0})}componentWillUnmount(){window.removeEventListener("resize",this.handleResize),this.handleRef.current.removeEventListener("wheel",this.handleWheel)}handleSetPositionWide(e){this.handleMove({top:0,left:e})}render(){const e=c()("brz-ed-scroll-pane",this.props.className);return r.a.createElement("div",{ref:this.handleRef,className:e,style:{position:"relative",width:this.props.style.width,height:this.props.style.height}},r.a.createElement(u,{ref:e=>{this.scrollable=e},className:"brz-ed-scroll-inner",style:this.props.style,onUpdateDOM:this.handleUpdateDOM},this.props.children),r.a.createElement(m,{ref:e=>{this.wideTrack=e},onDragStart:this.captureStart,onDragMove:this.handleMove},r.a.createElement("div",{className:"brz-ed-wide-track",onMouseDown:this.handleMouseDown},r.a.createElement("div",{ref:e=>{this.wideThumb=e},className:"brz-ed-wide-thumb"}))),r.a.createElement(m,{ref:e=>{this.tallTrack=e},onDragStart:this.captureStart,onDragMove:this.handleMove2},r.a.createElement("div",{className:"brz-ed-tall-track",onMouseDown:this.handleMouseDown2},r.a.createElement("div",{ref:e=>{this.tallThumb=e},className:"brz-ed-tall-thumb"}))))}}Object(n.a)(h,"defaultProps",{className:"",style:{},window:null,onlyWide:!1,wrapScrollable:e=>e,onChange:()=>{}})},,,function(e,t,o){"use strict";o.d(t,"b",(function(){return n})),o.d(t,"a",(function(){return a}));const n=e=>e.target.value;function a(e,t){"function"==typeof t?t(e):t&&e&&(t.current=e)}},function(e,t,o){"use strict";let n;o.d(t,"a",(function(){return n})),function(e){e.pending="pending",e.changed="changed",e.unchanged="unchanged"}(n||(n={}))},function(e,t,o){"use strict";o.d(t,"e",(function(){return c})),o.d(t,"j",(function(){return d})),o.d(t,"b",(function(){return u})),o.d(t,"h",(function(){return p})),o.d(t,"f",(function(){return w})),o.d(t,"g",(function(){return T})),o.d(t,"k",(function(){return z})),o.d(t,"c",(function(){return E})),o.d(t,"a",(function(){return k})),o.d(t,"d",(function(){return H})),o.d(t,"i",(function(){return F}));var n=o(2),a=o(44),r=o(35),i=o(79);function l(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function s(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?l(Object(o),!0).forEach((function(t){Object(n.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):l(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const c=e=>{let t;if(!e.data)throw new i.h("Project data should exist");try{t=JSON.parse(e.data)}catch(t){throw new i.h("Failed to parse project data "+e.data)}return s(s({},e),{},{data:t})},d=e=>{let t=JSON.stringify(e.data);return s(s({},e),{},{data:t})},u=e=>{let t,o,n,a,l;if(!e.data)throw new i.b("globalBlock data should exist");try{t=JSON.parse(e.data)}catch(t){throw new i.b("Failed to parse globalBlock data "+e.data)}if(e.meta)try{o=JSON.parse(e.meta)}catch(e){o={}}else o={};if(e.rules)try{n=r.o?e.rules:JSON.parse(e.rules)}catch(e){throw new i.b("globalBlock rules are wrong")}else n=[];if(e.position)try{a=r.o?e.position:JSON.parse(e.position)}catch(e){throw new i.b("globalBlock position are wrong")}else a={};return l=e.status?e.status:"publish",s(s({},e),{},{data:t,meta:o,position:a,status:l,rules:n})},p=e=>{const t=JSON.stringify(e.data),o=JSON.stringify(e.meta),n=JSON.stringify(e.rules);return s(s({},e),{},{data:t,meta:o,rules:n})};var b=o(97),m=o(120);const h=({models:e,globalBlocks:t})=>{const o=new Set;return Object(b.e)(e,{Component({type:e,value:t}){const n=Object(m.a)(e).content||{};Object.entries(n.images||{}).forEach(([e,n])=>{const a=t[e]||n;a&&o.add(a)})},GlobalBlock({value:{_id:e}}){const n=t&&t[e];n&&h({models:n}).forEach(e=>{o.add(e)})}}),[...o]};var g=o(112),v=o(77),f=o(52),y=o(126),O=o(47),S=o(153),x=o(139),C=o(33),j=o(57);function P(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function B(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?P(Object(o),!0).forEach((function(t){Object(n.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):P(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const w=e=>{let t,o;if(!e.data)throw new i.i("savedBlock data should exist");try{t=JSON.parse(e.data)}catch(t){throw new i.i("Failed to parse savedBlock data "+e.data)}if(e.meta)try{o=JSON.parse(e.meta)}catch(e){o={}}else o={};return B(B({},e),{},{data:t,meta:o})},T=e=>{let t,o;if(!e.data)throw new i.j("savedLayout data should exist");try{t=JSON.parse(e.data)}catch(t){throw new i.j("Failed to parse savedLayout data "+e.data)}if(e.meta)try{o=JSON.parse(e.meta)}catch(e){o={}}else o={};return B(B({},e),{},{data:t,meta:o})},z=e=>{const t=JSON.stringify(e.data),o=JSON.stringify(e.meta);return B(B({},e),{},{data:t,meta:o})},E=e=>{let t;if(e.meta)try{t=JSON.parse(e.meta)}catch(e){t={}}else t={};return B(B({},e),{},{meta:t})},k=e=>{const{data:t,meta:o}=e,{extraFontStyles:n}=o,a=Object(b.b)({models:t}),r=h({models:t}),i=Object(b.d)(n),l=Object(b.c)({models:t}),s=new Set;return[...a,...i].forEach(({family:e,type:t})=>{"upload"===t&&s.add(e)}),JSON.stringify({images:r,uploads:l,fonts:[...s]})},H=e=>{const t=Object(v.a)(O.c,Object(a.c)({_kind:()=>"wp",id:Object(v.a)(O.d("id"),f.a),data:Object(g.a)(O.d("data"),x.a,O.c,Object(C.f)({items:[]})),dataVersion:Object(g.a)(O.d("dataVersion"),y.a,Object(C.f)(0)),slug:Object(g.a)(O.d("slug"),f.a,Object(C.f)("")),title:Object(g.a)(O.d("title"),f.a,Object(C.f)("")),status:Object(g.a)(O.d("status"),S.a(["draft","publish"]),Object(C.f)("draft")),is_index:Object(g.a)(O.d("is_index"),S.a([!0,!1]),Object(C.f)(!1)),template:Object(g.a)(O.d("template"),f.a,Object(C.f)("")),url:Object(g.a)(O.d("url"),f.a,Object(C.f)(""))}))(e);if(void 0===t)throw new i.g("Failed to parse page");return t};function F(e){return B(B({},e),{},{data:JSON.stringify(e.data)})}Object(j.parse)({id:Object(v.a)(Object(O.d)("id"),f.a),title:Object(v.a)(Object(O.d)("title"),f.a,Object(C.f)("")),type:Object(v.a)(Object(O.d)("type"),f.a)}),Object(j.parse)({id:Object(v.a)(Object(O.d)("id"),f.a),title:Object(v.a)(Object(O.d)("title"),f.a,Object(C.f)("")),type:Object(v.a)(Object(O.d)("type"),f.a)}),Object(j.parse)({id:Object(v.a)(Object(O.d)("id"),f.a),title:Object(v.a)(Object(O.d)("title"),f.a,Object(C.f)(""))})},,,,,function(e,t,o){"use strict";var n=o(2),a=o(0),r=o.n(a),i=o(40),l=o.n(i),s=o(7),c=o.n(s);class d extends r.a.Component{constructor(e){super(e);const{node:t,className:o}=this.props,n=t.ownerDocument;this.el=n.createElement("div"),o&&(this.el.className=o),t.appendChild(this.el)}componentWillReceiveProps(e){e.className!==this.props.className&&(this.el.className=e.className)}componentWillUnmount(){this.props.node.removeChild(this.el)}render(){return l.a.createPortal(this.props.children,this.el)}}Object(n.a)(d,"propTypes",{className:c.a.string,node:c.a.object.isRequired}),t.a=d},function(e,t,o){"use strict";o.d(t,"b",(function(){return n.a})),o.d(t,"a",(function(){return a})),o.d(t,"c",(function(){return r}));var n=o(268);function a(e){return/^(https?:)?\/\//.test(e)}const r=e=>e.includes("?")},,function(e,t,o){"use strict";function n(...[e,...t]){return(...o)=>t.reduce((e,t)=>t(e),e(...o))}o.d(t,"a",(function(){return n}))},,,function(e,t,o){"use strict";o.d(t,"a",(function(){return r}));var n=o(0),a=o.n(n);function r({children:e}){return a.a.createElement(a.a.Fragment,null,e)}},function(e,t,o){"use strict";o.d(t,"c",(function(){return a})),o.d(t,"b",(function(){return r})),o.d(t,"a",(function(){return i}));var n=o(2);const a="UNDO",r="REDO";class i{constructor(e){Object(n.a)(this,"snapshots",[]),Object(n.a)(this,"config",{maxSize:10,collapseFrequency:2e3}),Object(n.a)(this,"currentIndex",-1),Object(n.a)(this,"previousIndex",-1),Object(n.a)(this,"lastSnapshotTimestamp",0),Object(n.a)(this,"canUndo_",!1),Object(n.a)(this,"canRedo_",!1),e&&(this.config=e),this.snapshots=new Array(this.config.maxSize).fill(null)}getSnapshots(){return this.snapshots}getCurrentSnapshot(){var e;return null!==(e=this.snapshots[this.currentIndex])&&void 0!==e?e:null}getPreviousSnapshot(){var e;return null!==(e=this.snapshots[this.previousIndex])&&void 0!==e?e:null}getSnapshot(e){if(e>0){var t;const o=e-1;return null!==(t=this.snapshots[o])&&void 0!==t?t:null}{var o;const t=this.snapshots.filter(e=>null!==e).length+e;return null!==(o=this.snapshots[t])&&void 0!==o?o:null}}update(e,t){if(Object.keys(e).some(t=>{var o;return e[t]!==(null===(o=this.snapshots[this.currentIndex])||void 0===o?void 0:o[t])})){const o=e,n=Date.now();if(null!=t&&t.replacePresent)this.snapshots[this.currentIndex]=o;else{if(this.snapshots[this.currentIndex+1]&&null!==this.snapshots[this.currentIndex+1]){this.previousIndex=this.currentIndex,this.currentIndex++,this.snapshots[this.currentIndex]=o;for(let e=this.currentIndex+1;e<=this.snapshots.length-1;e++)this.snapshots[e]=null}else{if(n-this.lastSnapshotTimestamp>this.config.collapseFrequency){if(this.currentIndex===this.snapshots.length-1){for(let e=0;e<=this.snapshots.length-2;e++)this.snapshots[e]=this.snapshots[e+1];this.snapshots[this.snapshots.length-1]=o}else this.previousIndex=this.currentIndex,this.currentIndex++,this.snapshots[this.currentIndex]=o}else this.snapshots[this.currentIndex]=o}this.updateFlags(),this.lastSnapshotTimestamp=n}}}replaceSnapshots(e){if(e.length!==this.snapshots.length)throw new Error("History. snapshots must be of same lengths");for(let t=0;t<this.snapshots.length;t++)if(null===this.snapshots[t]&&null!==e[t]||null!==this.snapshots[t]&&null===e[t])throw new Error("History. only patch snapshots supported for now");this.snapshots=e}canUndo(){return this.canUndo_}undo(){this.canUndo()&&(this.previousIndex=this.currentIndex,this.currentIndex--,this.updateFlags())}canRedo(){return this.canRedo_}redo(){this.canRedo()&&(this.previousIndex=this.currentIndex,this.currentIndex++,this.updateFlags())}updateFlags(){this.canUndo_=this.currentIndex>0,this.canRedo_=Boolean(this.snapshots[this.currentIndex+1]&&null!==this.snapshots[this.currentIndex+1])}}},function(e,t,o){"use strict";o.d(t,"a",(function(){return r})),o.d(t,"d",(function(){return i})),o.d(t,"b",(function(){return l})),o.d(t,"c",(function(){return s}));var n=o(22),a=o(63);let r;!function(e){e[e.THIN=100]="THIN",e[e.EXTRA_LIGHT=200]="EXTRA_LIGHT",e[e.LIGHT=300]="LIGHT",e[e.NORMAL=400]="NORMAL",e[e.MEDIUM=500]="MEDIUM",e[e.SEMI_BOLD=600]="SEMI_BOLD",e[e.BOLD=700]="BOLD",e[e.EXTRA_BOLD=800]="EXTRA_BOLD",e[e.BLACK=900]="BLACK"}(r||(r={}));const i=Object.values(r).filter(e=>a.c(Number(e))),l=r.NORMAL,s=Object(n.b)(e=>i.includes(e))},function(e,t,o){"use strict";var n=o(0),a=o.n(n),r=o(8),i=o(125),l=o(4),s=o.n(l),c=o(59),d=o(109);const u=e=>{const{className:t,opened:o,children:n,onClose:r}=e,l=s()("brz-ed-fixed",t);return a.a.createElement(d.a,{node:window.parent.document.body},a.a.createElement(i.CSSTransition,{in:o,classNames:"brz-ed-fade",timeout:150},o?a.a.createElement("div",{className:l},a.a.createElement(c.a,{keyNames:["esc"],id:"key-helper-prompt-esc",onKeyUp:r}),a.a.createElement("div",{className:"brz-ed-fixed-overlay",onClick:r}),a.a.createElement("div",{className:"brz-ed-fixed-scroll"},n)):a.a.createElement("span",null)))};u.defaultProps={className:"",opened:!1,onClose:r.default.noop},t.a=u},,function(e,t,o){"use strict";o.d(t,"b",(function(){return a})),o.d(t,"c",(function(){return r})),o.d(t,"a",(function(){return i}));var n=o(78);const a=({type:e,family:t})=>`${e}|${t}`,r=e=>{const[t,o]=e.split("|");return{type:t,family:o}},i=e=>{const t=n.a.getComponent(e);return t?t.defaultValue:{}}},,,function(e,t,o){"use strict";(function(e){o.d(t,"b",(function(){return d}));o(239);var n=o(15),a=o(65),r=o(110),i=o(502),l=o(361);o.d(t,"a",(function(){return l.a}));const s={},c=new Worker(e,{});async function d(e){if(!e)return Promise.reject("Could not find node");const t=getComputedStyle(e);if("none"===t.display||"0"===t.opacity)return Promise.reject(`Could not make screenshot for node ${e} because it's hidden`);let o;try{o=await Object(i.a)(e)}catch(e){console.error("cloneinline",e)}const r=function(e){let{width:t,height:o}=e.getBoundingClientRect();return{width:t,height:o}}(e),l=new Blob([o.outerHTML],{type:"text/plain"}),d=URL.createObjectURL(l);return new Promise((e,t)=>{const o=Object(a.a)(3),{assets:i,site:l}=n.a.get("urls");s[o]=[e,t,r,d],c.postMessage({id:o,url:d,assetUrl:i,siteUrl:l,options:r,proxyUrl:u()})})}function u(){{var e;const t=n.a.get("urls").site,o=null!==(e=n.a.get("prefix"))&&void 0!==e?e:"brizy";return Object(r.c)(t)?`${t}&${o}_file=`:`${t}?${o}_file=`}}c.onmessage=async e=>{const{id:t,url:o}=e.data,n=await fetch(o),a=await n.text(),[r,i,l,c]=s[t];URL.revokeObjectURL(c),URL.revokeObjectURL(o);const d=document.createElement("img");d.onload=async()=>{let e=d.width,t=d.height;e>600&&(t=Math.floor(600*t/e),e=600);const o=document.createElement("canvas");o.width=e,o.height=t,o.getContext("2d").drawImage(d,0,0,e,t);const n=o.toDataURL("image/jpeg",1);r({src:n,width:e,height:t})},d.onerror=i,d.crossOrigin="anonymous",d.src=a,delete s[t]}}).call(this,o(705))},function(e,t,o){"use strict";o.d(t,"b",(function(){return u.a})),o.d(t,"a",(function(){return b})),o.d(t,"c",(function(){return g}));var n=o(2),a=o(0),r=o.n(a),i=o(8),l=o(7),s=o.n(l),c=o(4),d=o.n(c),u=o(272),p=o(14);const b=({active:e})=>r.a.createElement("div",{className:"brz-control__check-group-option-icon"},r.a.createElement(p.b,{icon:e?"nc-check-square-on":"nc-check-square-off"}));function m(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function h(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?m(Object(o),!0).forEach((function(t){Object(n.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):m(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}class g extends r.a.Component{constructor(...e){super(...e),Object(n.a)(this,"handleChange",e=>{const{defaultValue:t,onChange:o}=this.props;o(h(h({},t),{},{[e]:!t[e]}))})}renderOptions(){const{defaultValue:e,children:t}=this.props;return r.a.Children.map(t,(t,o)=>r.a.cloneElement(t,h(h({},t.props),{},{key:o,active:Boolean(e[t.props.value]),onClick:t.props.disabled?null:()=>this.handleChange(t.props.value)})))}render(){const e=d()("brz-control__check-group",this.props.className);return r.a.createElement("div",{className:e},this.renderOptions())}}Object(n.a)(g,"propTypes",{name:s.a.string,className:s.a.string,defaultValue:s.a.object,onChange:s.a.func}),Object(n.a)(g,"defaultProps",{name:"defaultName",className:"",defaultValue:{},onChange:i.default.noop})},,function(e,t,o){"use strict";o.d(t,"a",(function(){return n}));const n=e=>{switch(typeof e){case"string":{const t=""!==e?Number(e):NaN;return isNaN(t)?void 0:t}case"number":return isNaN(e)?void 0:e;default:return}}},,,,function(e,t,o){"use strict";o.d(t,"b",(function(){return a})),o.d(t,"a",(function(){return l})),o.d(t,"c",(function(){return s}));var n=o(8);function a(e,t){let o=!1;for(let n=0;n<t.length;n++){for(let l=0;l<e.length;l++){if(a=e[l],i=t[n],a.type===i.type&&a.id&&i.id&&a.id===i.id){e[l]=r(e[l],t[n]),o=!0;break}o=!1}o||e.push(t[n])}var a,i;return function e(t){if(!t||"function"!=typeof t[Symbol.iterator])return t;for(let o of t){let t="options";o.columns&&(t="columns"),o.tabs&&(t="tabs"),o[t]&&(o[t]=e(o[t]))}return n.default.sortBy(t,"position")}(e)}function r(e,t){for(const o of Object.keys(t))"columns"===o||"options"===o||"tabs"===o?e[o]=a(e[o]||[],t[o]||[]):"disabled"===o&&!0===t[o]&&(e[o]=t[o]);return e}var i=o(61);const l=e=>Object(i.b)(["id","type"],e),s=(e,t)=>l(t)?Object(i.c)(s.bind(null,e),e(t)):Object(i.c)(s.bind(null,e),t)},function(e,t,o){"use strict";o.d(t,"a",(function(){return n}));const n=e=>!0},function(e,t,o){"use strict";o.d(t,"a",(function(){return a})),o.d(t,"b",(function(){return r}));const n={};function a(e,t,o=10){void 0===n[e]&&(n[e]=[]);const a={cb:t,priority:o},r=n[e].findIndex(({priority:e})=>a.priority<e);-1!==r?n[e].splice(r,0,a):n[e].push(a)}function r(e,t,...o){return void 0===n[e]?t:n[e].reduce((e,{cb:t})=>t(e,...o),t)}},,,function(e,t,o){"use strict";o.d(t,"d",(function(){return l})),o.d(t,"e",(function(){return s})),o.d(t,"c",(function(){return c})),o.d(t,"a",(function(){return d})),o.d(t,"b",(function(){return u})),o.d(t,"f",(function(){return p}));var n=o(15);const a=()=>n.a.get("mode")||"page",r="internal_story"===a(),i="external_story"===a(),l=r||i,s="template"===a(),c="internal_popup"===a(),d="external_popup"===a(),u=c||d,p=e=>"internal_popup"===e||"external_popup"===e},function(e,t,o){"use strict";o.d(t,"c",(function(){return i})),o.d(t,"a",(function(){return l})),o.d(t,"d",(function(){return s})),o.d(t,"b",(function(){return c}));var n=o(22);let a;!function(e){e.px="px",e.em="em",e.rem="rem",e.vw="vw"}(a||(a={}));const r=Object.values(a),i=r.map(e=>({title:e,value:e})),l=a.px,s=e=>r.includes(e),c=Object(n.b)(s)},function(e,t,o){"use strict";o.d(t,"b",(function(){return d}));var n=o(2),a=o(8),r=o(0),i=o.n(r),l=o(4),s=o.n(l),c=o(196);o.d(t,"a",(function(){return c.a}));class d extends i.a.Component{constructor(...e){super(...e),Object(n.a)(this,"state",{currentValue:this.props.defaultValue}),Object(n.a)(this,"onItemClick",e=>{this.setState({currentValue:e}),this.props.onChange(e)}),Object(n.a)(this,"getCurrent",()=>a.default.find(this.props.children,e=>e.props.value===this.state.currentValue)||this.props.children[0])}componentWillReceiveProps(e){this.state.defaultValue!==e.defaultValue&&this.setState({currentValue:e.defaultValue})}renderOptions(){return i.a.Children.map(this.props.children,(e,t)=>i.a.cloneElement(e,{key:t,active:this.state.currentValue===e.props.value,name:this.props.name,onClick:e.props.disabled?null:this.onItemClick.bind(null,e.props.value)}))}renderForEdit(){const{className:e,name:t,currentValue:o}=this.props,n=s()("brz-control__radio",e);return i.a.createElement("div",{className:n},this.renderOptions(),i.a.createElement("input",{className:"brz-input",name:t,type:"hidden",value:o}))}renderForView(){const e=s()("brz-control__radio",this.props.className);return i.a.createElement("div",{className:e},this.renderOptions())}render(){return this.renderForEdit()}}Object(n.a)(d,"defaultProps",{name:"defaultName",defaultValue:"",onChange:a.default.noop})},function(e,t,o){"use strict";o.d(t,"a",(function(){return i})),o.d(t,"g",(function(){return l})),o.d(t,"d",(function(){return s})),o.d(t,"h",(function(){return r})),o.d(t,"b",(function(){return m})),o.d(t,"c",(function(){return h})),o.d(t,"f",(function(){return g})),o.d(t,"e",(function(){return f}));o(80);var n=o(2),a=o(114);const r={class:{typographyFontStyle:{prefix:"brz-tp",defaultValue:"paragraph"},tabletTypographyFontSize:{prefix:"brz-fs-sm-im",defaultValue:null},mobileTypographyFontSize:{prefix:"brz-fs-xs-im",defaultValue:null},tabletTypographyFontSizeSuffix:{prefix:"brz-fs-s-sm-im",defaultValue:null},mobileTypographyFontSizeSuffix:{prefix:"brz-fs-s-xs-im",defaultValue:null},tabletTypographyLineHeight:{prefix:"brz-lh-sm-im",defaultValue:null},mobileTypographyLineHeight:{prefix:"brz-lh-xs-im",defaultValue:null},tabletTypographyFontWeight:{prefix:"brz-fw-sm-im",defaultValue:null},mobileTypographyFontWeight:{prefix:"brz-fw-xs-im",defaultValue:null},tabletTypographyLetterSpacing:{prefix:"brz-ls-sm-im",defaultValue:null},mobileTypographyLetterSpacing:{prefix:"brz-ls-xs-im",defaultValue:null}},style:{},attribute:{}},i={class:{typographyFontStyle:{prefix:"brz-tp-lg",defaultValue:""},tabletTypographyFontStyle:{prefix:"brz-tp-sm",defaultValue:null},mobileTypographyFontStyle:{prefix:"brz-tp-xs",defaultValue:null},typographyFontFamily:{prefix:"brz-ff",defaultValue:"lato"},typographyFontFamilyType:{prefix:"brz-ft",defaultValue:"google"},typographyFontSize:{prefix:"brz-fs-lg",defaultValue:16},tabletTypographyFontSize:{prefix:"brz-fs-sm",defaultValue:null},mobileTypographyFontSize:{prefix:"brz-fs-xs",defaultValue:null},typographyFontSizeSuffix:{prefix:"brz-fss-lg",defaultValue:"px"},tabletTypographyFontSizeSuffix:{prefix:"brz-fss-sm",defaultValue:null},mobileTypographyFontSizeSuffix:{prefix:"brz-fss-xs",defaultValue:null},typographyFontWeight:{prefix:"brz-fw-lg",defaultValue:400},tabletTypographyFontWeight:{prefix:"brz-fw-sm",defaultValue:null},mobileTypographyFontWeight:{prefix:"brz-fw-xs",defaultValue:null},typographyLineHeight:{prefix:"brz-lh-lg",defaultValue:1.3},tabletTypographyLineHeight:{prefix:"brz-lh-sm",defaultValue:null},mobileTypographyLineHeight:{prefix:"brz-lh-xs",defaultValue:null},typographyLetterSpacing:{prefix:"brz-ls-lg",defaultValue:0},tabletTypographyLetterSpacing:{prefix:"brz-ls-sm",defaultValue:null},mobileTypographyLetterSpacing:{prefix:"brz-ls-xs",defaultValue:null},contentHorizontalAlign:{prefix:"brz-text-lg",defaultValue:"left"},tabletContentHorizontalAlign:{prefix:"brz-text-sm",defaultValue:null},mobileContentHorizontalAlign:{prefix:"brz-text-xs",defaultValue:null},marginTop:{prefix:"brz-mt-lg",defaultValue:0},tabletMarginTop:{prefix:"brz-mt-sm",defaultValue:null},mobileMarginTop:{prefix:"brz-mt-xs",defaultValue:null},marginBottom:{prefix:"brz-mb-lg",defaultValue:0},tabletMarginBottom:{prefix:"brz-mb-sm",defaultValue:null},mobileMarginBottom:{prefix:"brz-mb-xs",defaultValue:null},"block-colorPalette":{prefix:"brz-bcp",defaultValue:""}},style:{},attribute:{}},l={class:{colorPalette:{prefix:"brz-cp",defaultValue:""},shadowColorPalette:{prefix:"brz-scp",defaultValue:""},prepopulation:{prefix:"brz-pre-population",defaultValue:""},capitalize:{prefix:"brz-capitalize",defaultValue:"off"}},style:{opacity:{prefix:"opacity",defaultValue:1},shadow:{prefix:"text-shadow",defaultValue:""}},attribute:{populationColor:{prefix:"data-color",defaultValue:""}}},s=a.a.all([i,{}]),c=a.a.all([s,l]);a.a.all([c,r]);var d=o(52),u=o(41);function p(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function b(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?p(Object(o),!0).forEach((function(t){Object(n.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):p(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const m=e=>h(e).v,h=e=>{const t=g(),o=v(e);return{v:b(b({},t),o),vs:{},vd:t}},g=()=>{const e={};return Object.entries(s).forEach(([,t])=>{Object.entries(t).forEach(([t,{defaultValue:o}])=>{e[t]=o})}),e},v=e=>{const t={},o=d.a(e.attr("class"));if(o){const e=new RegExp("^(.*)-(.*$)");o.split(" ").forEach(o=>{const n=o.match(e);if(n){const[,e,o]=n,a=function(e){const t={};return Object.entries(c).forEach(([,e])=>{Object.entries(e).forEach(([e,{prefix:o}])=>{t[o]=e})}),Object.entries(r).forEach(([,e])=>{Object.entries(e).forEach(([e,{prefix:o}])=>{t[o]=e})}),t[e]}(e);t[a]=function(e){if("empty"===e)return"";if(void 0===e)return null;e.includes(",")&&(e=e.split(",")[0]);return Object(u.d)(e.replace("m_","-").replace("_","."))?(t=e,Number(t.replace("m_","-").replace("_","."))):e;var t}(o)}})}return t};function f(e){return""===e?"empty":Object(u.d)(e)?String(e).replace(".","_").replace("-","m_"):e}},function(e,t,o){"use strict";o.d(t,"a",(function(){return n}));const n=e=>{if("string"==typeof e)try{return JSON.parse(e)}catch(e){return}}},,function(e,t,o){"use strict";o.d(t,"b",(function(){return n})),o.d(t,"d",(function(){return a})),o.d(t,"c",(function(){return r})),o.d(t,"a",(function(){return i}));const n=400,a=400,r=400,i=800},function(e,t,o){"use strict";o.d(t,"a",(function(){return h})),o.d(t,"g",(function(){return g})),o.d(t,"c",(function(){return v})),o.d(t,"f",(function(){return f})),o.d(t,"e",(function(){return y})),o.d(t,"d",(function(){return O})),o.d(t,"b",(function(){return S}));var n=o(2),a=o(47),r=o(9),i=o(6),l=o(178),s=o(30),c=o(24);const d=["all","desktop","responsive"],u=(c.a.eq,e=>{var t;return null!==(t=(e=>{if("string"==typeof e)return d.includes(e)?e:void 0})(e))&&void 0!==t?t:"all"}),p=e=>u((null!=e?e:{}).devices);function b(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function m(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?b(Object(o),!0).forEach((function(t){Object(n.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):b(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const h=(e,t)=>{const o=t.startsWith("temp")?"temp":"",n=o.length?t.substr(4):t,a="value"===n||"Value"===n?"":n;return Object(r.a)([o,e,a])},g=(e,t)=>t&&"object"==typeof t?Object.keys(t).reduce((o,n)=>(o[h(e,n)]=t[n],o),{}):t,v=e=>String(e).endsWith("-dev"),f=(e,t)=>Object(l.b)(e,t)?e:i.d,y=(e,t)=>((e,t)=>{switch(t){case"all":return!0;case"responsive":return Object(s.f)(e);case"desktop":return Object(s.e)(e)}})(e,p(t))?e:s.d,O=e=>{var t,o,n,a,r,i,l,s,c,d,u;const p=null===(t=e.allowExtend)||void 0===t||t,b=null!==(o=e.allowExtendFromParent)&&void 0!==o?o:p,h=null!==(n=e.allowExtendFromChild)&&void 0!==n?n:p,g=null!==(a=e.allowExtendFromThirdParty)&&void 0!==a?a:p,v=null!==(r=e.allowSidebarExtend)&&void 0!==r?r:p,f=null!==(i=null!==(l=e.allowSidebarExtendFromParent)&&void 0!==l?l:e.allowSidebarExtend)&&void 0!==i?i:b,y=null!==(s=null!==(c=e.allowSidebarExtendFromChild)&&void 0!==c?c:e.allowSidebarExtend)&&void 0!==s?s:h,O=null!==(d=null!==(u=e.allowSidebarExtendFromThirdParty)&&void 0!==u?u:e.allowSidebarExtend)&&void 0!==d?d:g;return m(m({},e),{},{allowExtend:p,allowExtendFromParent:b,allowExtendFromChild:h,allowExtendFromThirdParty:g,allowSidebarExtend:v,allowSidebarExtendFromParent:f,allowSidebarExtendFromChild:y,allowSidebarExtendFromThirdParty:O})},S=(e=>{const t=e.reduce((e,t)=>(e[t]=!0,e),{});return function e(o){const n={};for(const[r,i]of Object.entries(o))t[r]&&a.b(i)?Object.assign(n,e(i)):n[r]=i;return n}})(["animation","content","families","images","link","style","styles","symbols","toolbar"])},,function(e,t,o){"use strict";var n=o(2),a=o(0),r=o.n(a);class i extends a.Component{render(){const{title:e,items:t,children:o}=this.props;return r.a.createElement("div",{title:e,className:"brz-control__select-optgroup"},r.a.createElement("div",{className:"brz-control__select-optgroup-label"},o),t)}}Object(n.a)(i,"defaultProps",{title:"",active:"",items:[]}),t.a=i},function(e,t,o){"use strict";o.d(t,"a",(function(){return i}));var n=o(15),a=o(56);let r;!function(e){e[e.include=1]="include",e[e.exclude=2]="exclude"}(r||(r={}));const i=e=>{const t=n.a.getAll();return Object(a.c)(t)&&Object(a.g)(t)&&!("rules"in e)}},,,,,function(e,t,o){"use strict";o.d(t,"b",(function(){return c})),o.d(t,"a",(function(){return d})),o.d(t,"d",(function(){return p})),o.d(t,"c",(function(){return b}));var n=o(8),a=o(15),r=o(96),i=o(269),l=o(16),s=o(56);const c=(e,t,o)=>Object.entries(t).reduce((t,[n,a])=>(!e.includes(n)&&d(a,o)&&t.push(n),t),[]);function d(e,t){return!!Object(i.a)(e.data)||(l.e?function({rules:e},t){const{ruleMatches:o}=a.a.get("wp"),i=e.find(({entityType:e,appliedFor:o,entityValues:n})=>o===r.d&&e===r.e&&n.some(e=>String(e)===t.id));if(i)return b(i);const l=o.map(({type:e,group:t,entityType:o,values:n})=>({type:e,entityType:o,appliedFor:t,entityValues:n})),s=u(e),c=u(l);let d=s.level1.find(e=>c.level1.find(({entityType:t,appliedFor:o,entityValues:a})=>o===e.appliedFor&&t===e.entityType&&n.default.intersection(a,e.entityValues).length));if(d)return b(d);if(d=s.level2.find(e=>c.level2.find(({entityType:t,appliedFor:o})=>o===e.appliedFor&&t===e.entityType)),d)return b(d);if(s.level3.length)return b(s.level3[0]);return!1}(e,t):function(e,t){if(!e)throw Error("GlobalBlock should exist");const{rules:o}=e,{level1:a,level2:r,level3:i}=p(o,t);let l=!1;if(Object(s.e)(t)){const{fields:e}=t,a=function(e){return e.filter(({__typename:e})=>"CollectionItemFieldReference"===e||"CollectionItemFieldMultiReference"===e).map(e=>{if("CollectionItemFieldReference"===e.__typename){return{appliedFor:1,entityType:e.type.collectionType.id,entityValues:e.referenceValues.collectionItem.id}}if("CollectionItemFieldMultiReference"===e.__typename){return{appliedFor:1,entityType:e.type.collectionType.id,entityValues:e.multiReferenceValues.collectionItems.map(({id:e})=>e)}}})}(e);l=function(e=[],t=[]){return e.find(({entityType:e,entityValues:o})=>{let a=!1;return t.forEach(t=>{t.entityType===e&&(a=n.default.intersection(t.entityValues,o))}),a.length})}(o,a)}if(a)return b(a);if(l)return b(l);if(r)return b(r);if(i)return b(i);return!1}(e,t))}function u(e){return e.reduce((e,t)=>{const{appliedFor:o,entityType:n,entityValues:a}=t;return n===r.e||(""===o||null===o?e.level3.push(t):a.length?e.level1.push(t):e.level2.push(t)),e},{level1:[],level2:[],level3:[]})}function p(e=[],t){const o=Object(r.h)(t);return{level1:e.find(({appliedFor:e,entityType:t,entityValues:n})=>e===o.group&&t===o.type&&n.some(e=>String(e)===String(o.id))),level2:e.find(({appliedFor:e,entityType:t,entityValues:n})=>e===o.group&&t===o.type&&!n.length),level3:e.find(({appliedFor:e,entityType:t})=>(""===e||null===e)&&""===t)}}function b(e){return 1===e.type}},,,function(e,t,o){"use strict";o.d(t,"a",(function(){return n}));const n=e=>t=>e.includes(t)?t:void 0},,,,,,,function(e,t,o){"use strict";o.d(t,"a",(function(){return d}));var n=o(2),a=o(0),r=o.n(a),i=o(8),l=o(4),s=o.n(l),c=o(14);class d extends r.a.Component{constructor(...e){super(...e),Object(n.a)(this,"onChange",e=>{const{valueMap:t,onChange:o}=this.props,n=i.default.isObject(t)?t[e.target.checked]:e.target.checked;setTimeout(o,200,n)})}render(){const{className:e,defaultValue:t,valueMap:o,arrowCheck:n,arrowUnCheck:a}=this.props,l=i.default.isObject(o)?"true"===i.default.findKey(o,e=>e===t):t,d=s()("brz-ed-control__switch",e);return r.a.createElement("div",{className:d},r.a.createElement("label",{className:"brz-label brz-ed-control__switch-label"},r.a.createElement("input",{type:"checkbox",className:"brz-input brz-ed-control__switch-input",defaultChecked:l,onChange:this.onChange}),r.a.createElement("span",{className:"brz-span brz-ed-control__switch-arrows"},r.a.createElement(c.b,{className:"brz-ed-control__switch--check",icon:n}),r.a.createElement(c.b,{className:"brz-icon-svg brz-ed-control__switch--un-check",icon:a})),r.a.createElement("span",{className:"brz-span brz-ed-control__switch--handle"})))}}Object(n.a)(d,"defaultProps",{className:"",arrowCheck:"nc-check-small",arrowUnCheck:"nc-remove",defaultValue:!1,valueMap:null})},function(e,t,o){"use strict";o.d(t,"a",(function(){return p}));var n=o(12),a=o(36),r=o(0),i=o.n(r),l=o(8),s=o(4),c=o.n(s),d=o(247),u=o(33);function p(e){let{value:t,onChange:o,children:s,className:p}=e,b=Object(a.a)(e,["value","onChange","children","className"]);const m=void 0!==t?[t]:[],h=Object(r.useCallback)(Object(u.d)(o,l.last),[o]);return i.a.createElement(d.a,Object(n.a)({},b,{className:c()(p,"brz-ed-control__select-single"),onChange:h,value:m,hideSelected:!1}),s)}},function(e,t,o){"use strict";o.d(t,"a",(function(){return r})),o.d(t,"b",(function(){return i}));var n=o(36),a=o(142);const r=e=>{const{population:t,label:o,icon:r,disabled:i,display:l,states:s,devices:c,helper:d,position:u}=e,p=Object(n.a)(e,["population","label","icon","disabled","display","states","devices","helper","position"]);return void 0!==t&&Object(a.c)(p.type)?{id:p.id,label:o,icon:r,disabled:i,display:l,states:s,devices:c,helper:d,position:u,className:p.className,type:"population-dev",config:{choices:t},options:[p]}:e},i=e=>"optgroup"in e},,,function(e,t,o){"use strict";o.d(t,"a",(function(){return se})),o.d(t,"c",(function(){return de})),o.d(t,"d",(function(){return ue})),o.d(t,"b",(function(){return pe}));var n={};o.r(n),o.d(n,"getItems",(function(){return G})),o.d(n,"getItemsSimple",(function(){return U})),o.d(n,"getItemsMMenu",(function(){return K}));var a={};o.r(a),o.d(a,"getItems",(function(){return Y})),o.d(a,"getItemsSimple",(function(){return q})),o.d(a,"getItemsMMenu",(function(){return X}));var r={};o.r(r),o.d(r,"getItems",(function(){return J}));var i={};o.r(i),o.d(i,"title",(function(){return Q})),o.d(i,"getItems",(function(){return ee}));var l=o(12),s=o(36),c=o(2),d=o(0),u=o.n(d),p=o(8),b=o(42),m=o(4),h=o.n(m),g=o(15),v=o(95),f=o(20),y=o(23),O=o(34),S=o(51),x=o(109),C=o(16),j=o(66),P=o(91),B=(o(239),o(7)),w=o.n(B),T=o(118),z=o(14);function E({iframeSrc:e,opened:t,onClose:o}){return u.a.createElement(T.a,{opened:t,onClose:o},u.a.createElement(k,{src:e,onRequestClose:o}))}function k({src:e,onRequestClose:t}){const[o,n]=Object(d.useState)(!1),a=Object(d.useRef)(null);return Object(d.useEffect)(()=>{const o=o=>{const r=new URL(e);if(o.origin===r.origin&&o.source===a.current.contentWindow&&o.data&&o.data.type)switch(o.data.type){case"CLOSE":t();break;case"NAVIGATE":o.data.url&&(n.parent.location.href=o.data.url)}},n=a.current.ownerDocument.defaultView;return n.addEventListener("message",o),()=>n.removeEventListener("message",o)},[]),u.a.createElement(u.a.Fragment,null,u.a.createElement("iframe",{ref:a,title:"ThirdParty",src:e,style:{position:"relative",display:o?"block":"none",width:"100%",maxWidth:"1140px",height:"90%",maxHeight:"967px",border:0,borderRadius:"7px"},onLoad:()=>n(!0)}),!o&&u.a.createElement(z.b,{icon:"nc-circle-02",className:"brz-ed-animated--spin",style:{fontSize:"30px",color:"rgba(255, 255, 255, 0.75)"}}))}E.defaultProps={iframeSrc:"",opened:!1,onClose:p.default.noop},E.propTypes={iframeSrc:w.a.string.isRequired,opened:w.a.bool,onClose:w.a.func},k.defaultProps={src:"",onRequestClose:p.default.noop},k.propTypes={src:w.a.string.isRequired,onRequestClose:w.a.func};var H=o(25),F=(o(19),o(132)),_=o(11),R=o(60),L=o(1),M={getItems:function(){return[{id:"main",type:"group",title:Object(L.a)("Menu"),icon:"nc-tabs",disabled:(e,t)=>t.isInSubMenu,items:[]}]}};var I=o(519),W=o(17),N=o(10),A=o(3),V=o(13),D=o(30),$=o(6);function G({v:e,device:t,state:o}){return"on"===Object(A.defaultValueValue)({v:e,device:t,state:o,key:"mMenu"})?K({v:e,device:t,state:o}):U({v:e,device:t,state:o})}function U({v:e,device:t,state:o}){const n=n=>Object(A.defaultValueValue)({v:e,key:n,device:t,state:o}),{hex:a}=Object(V.d)(n("colorHex"),n("colorPalette")),{hex:r}=Object(V.d)(n("subMenuColorHex"),n("subMenuColorPalette"));return[{id:"toolbarMenuSettings",type:"popover-dev",config:{icon:"nc-menu-3",title:Object(L.a)("Menu")},position:10,options:[{id:"menuSize",type:"slider-dev",label:Object(L.a)("Size"),position:20,disabled:"horizontal"===n("verticalMode"),config:{min:10,max:100,units:[{title:"%",value:"%"}]}}]},{id:"toolbarMenuItem",type:"popover-dev",config:{icon:"nc-star",title:Object(L.a)("Icon")},position:20,options:[{id:"iconPosition",label:Object(L.a)("Position"),type:"radioGroup-dev",position:10,choices:[{value:"left",icon:"nc-align-left"},{value:"right",icon:"nc-align-right"}]},{id:"iconSize",type:"slider-dev",label:Object(L.a)("Size"),position:20,config:{min:0,max:100,units:[{title:"px",value:"px"}]}},{id:"iconSpacing",type:"slider-dev",devices:"desktop",label:Object(L.a)("Spacing"),roles:["admin"],position:30,config:{min:0,max:100,units:[{title:"px",value:"px"}]}}]},{id:"subMenuToolbarMenuItem",type:"popover-dev",config:{icon:"nc-star",title:Object(L.a)("Icon")},position:20,options:[{id:"subMenuIconPosition",label:Object(L.a)("Position"),type:"radioGroup-dev",position:10,choices:[{value:"left",icon:"nc-align-left"},{value:"right",icon:"nc-align-right"}]},{id:"subMenuIconSize",type:"slider-dev",label:Object(L.a)("Size"),position:20,config:{min:0,max:100,units:[{title:"px",value:"px"}]}},{id:"subMenuIconSpacing",type:"slider",devices:"desktop",label:Object(L.a)("Spacing"),roles:["admin"],position:30,slider:{min:0,max:100},input:{show:!0},suffix:{show:!0,choices:[{title:"px",value:"px"}]},value:{value:e.subMenuIconSpacing},onChange:({value:t})=>({subMenuIconSpacing:t,mMenuIconSpacing:e.subMenuIconSpacing===e.mMenuIconSpacing?t:e.mMenuIconSpacing})}]},{id:"toolbarTypography",type:"popover-dev",config:{icon:"nc-font",size:t===D.a?"large":"auto",title:Object(L.a)("Typography")},roles:["admin"],position:70,options:[{id:"",type:"typography-dev",config:{fontFamily:t===D.a}}]},{id:"subMenuToolbarTypography",type:"popover-dev",config:{icon:"nc-font",size:t===D.a?"large":"auto",title:Object(L.a)("Typography")},roles:["admin"],position:70,options:[{id:"subMenu",type:"typography-dev",config:{fontFamily:t===D.a}}]},{id:"toolbarColor",type:"popover-dev",config:{size:"auto",title:Object(L.a)("Colors"),icon:{style:{backgroundColor:Object(W.c)(a,e.colorOpacity)}}},devices:"desktop",position:80,roles:["admin"],options:[{id:"color",type:"tabs-dev",tabs:[{id:"tabText",label:Object(L.a)("Text"),options:[{id:"color",type:"colorPicker-dev",states:[$.c,$.b,$.a]}]},{id:"bg",label:Object(L.a)("Bg"),options:[{id:"menuBgColor",type:"colorPicker-dev",states:[$.c,$.b,$.a]}]},{id:"border",label:Object(L.a)("Border"),options:[{id:"menuBorder",type:"border-dev",states:[$.c,$.b,$.a]}]}]}]},{id:"subMenuToolbarColor",type:"popover-dev",config:{size:"auto",title:Object(L.a)("Colors"),icon:{style:{backgroundColor:Object(W.c)(r,e.subMenuColorOpacity)}}},devices:"desktop",position:80,roles:["admin"],options:[{id:"subMenuColor",type:"tabs-dev",config:{position:"left"},tabs:[{id:"tabNormal",icon:"nc-circle",title:Object(L.a)("Normal"),options:[{id:"subMenuColorTabs",type:"tabs-dev",tabs:[{id:"tabText",label:Object(L.a)("Text"),options:[Object(N.m)({v:e,device:t,prefix:"subMenuColor",onChangeHex:["onChangeColorHexSubMenu2"],onChangePalette:["onChangeColorPaletteSubMenu2"]}),{type:"grid",className:"brz-ed-grid__color-fileds",columns:[{width:100,options:[Object(N.n)({v:e,device:t,prefix:"subMenuColor",onChange:["onChangeColorFieldsSubMenu2"]})]}]}]},{id:"tabBackground",label:Object(L.a)("Bg"),options:[Object(N.b)({v:e,device:t,state:"normal",prefix:"subMenuBg",showSelect:!1,onChangeHex:["onChangeBgColorHexSubMenu2"],onChangePalette:["onChangeBgColorPaletteSubMenu2"]}),{type:"grid",className:"brz-ed-grid__color-fileds",columns:[{width:30,options:[Object(N.c)({v:e,device:t,state:"normal",prefix:"subMenuBg",onChange:["onChangeBgColorFieldsSubMenu2"]})]}]}]},{id:"tabBorder",label:Object(L.a)("Border"),options:[Object(N.e)({v:e,device:t,state:"normal",prefix:"subMenu",showSelect:!1,onChangeHex:["onChangeBorderColorHexSubMenu2"],onChangePalette:["onChangeBorderColorPaletteSubMenu2"]}),{type:"grid",className:"brz-ed-grid__color-fileds",columns:[{width:38,options:[Object(N.f)({v:e,device:t,prefix:"subMenu",state:"normal",onChange:["onChangeBorderColorFieldsSubMenu2"]})]}]}]},{id:"tabBoxShadow",label:Object(L.a)("Shadow"),options:[Object(N.j)({v:e,device:t,choices:"outset",state:"normal",onChangeType:["onChangeBoxShadowType2","onChangeBoxShadowTypeDependencies2"],onChangeHex:["onChangeBoxShadowHexAndOpacity2","onChangeBoxShadowHexAndOpacityPalette2","onChangeBoxShadowHexAndOpacityDependencies2"],onChangePalette:["onChangeBoxShadowPalette2","onChangeBoxShadowPaletteOpacity2","onChangeBoxShadowHexAndOpacityDependencies2"]}),{type:"grid",className:"brz-ed-grid__color-fileds",columns:[{width:41,options:[Object(N.l)({v:e,device:t,state:"normal",onChange:["onChangeBoxShadowHexAndOpacity2","onChangeBoxShadowHexAndOpacityPalette2","onChangeBoxShadowHexAndOpacityDependencies2"]})]},{width:59,options:[Object(N.k)({v:e,device:t,state:"normal",choices:"outset",onChange:["onChangeBoxShadowFields2","onChangeBoxShadowFieldsDependencies2"]})]}]}]}]}]},{id:"tabHover",icon:"nc-hover",title:Object(L.a)("Hover"),options:[{id:"subMenuHoverColorTabs",className:"",type:"tabs-dev",tabs:[{id:"tabText",label:Object(L.a)("Text"),options:[Object(N.m)({v:e,device:t,prefix:"subMenuHoverColor",onChangeHex:["onChangeHoverColorHexSubMenu2"],onChangePalette:["onChangeHoverColorPaletteSubMenu2"]}),{type:"grid",className:"brz-ed-grid__color-fileds",columns:[{width:100,options:[Object(N.n)({v:e,device:t,prefix:"subMenuHoverColor",onChange:["onChangeHoverColorFieldsSubMenu2"]})]}]}]},{id:"tabBackground",label:Object(L.a)("Background"),options:[Object(N.b)({v:e,device:t,state:"normal",prefix:"subMenuHoverBg",showSelect:!1,onChangeHex:["onChangeBgHoverColorHexSubMenu2"],onChangePalette:["onChangeBgHoverColorPaletteSubMenu2"]}),{type:"grid",className:"brz-ed-grid__color-fileds",columns:[{width:30,options:[Object(N.c)({v:e,device:t,state:"normal",prefix:"subMenuHoverBg",onChange:["onChangeBgHoverColorFieldsSubMenu2"]})]}]}]},{id:"tabBoxShadow",label:Object(L.a)("Shadow"),options:[Object(N.j)({v:e,device:t,choices:"outset",state:"hover",onChangeType:["onChangeBoxShadowType2","onChangeBoxShadowTypeDependencies2"],onChangeHex:["onChangeBoxShadowHexAndOpacity2","onChangeBoxShadowHexAndOpacityPalette2","onChangeBoxShadowHexAndOpacityDependencies2"],onChangePalette:["onChangeBoxShadowPalette2","onChangeBoxShadowPaletteOpacity2","onChangeBoxShadowHexAndOpacityDependencies2"]}),{type:"grid",className:"brz-ed-grid__color-fileds",columns:[{width:41,options:[Object(N.l)({v:e,device:t,state:"hover",onChange:["onChangeBoxShadowHexAndOpacity2","onChangeBoxShadowHexAndOpacityPalette2","onChangeBoxShadowHexAndOpacityDependencies2"]})]},{width:59,options:[Object(N.k)({v:e,device:t,state:"hover",choices:"outset",onChange:["onChangeBoxShadowFields2","onChangeBoxShadowFieldsDependencies2"]})]}]}]}]}]},{id:"tabActive",icon:"nc-target",title:Object(L.a)("Active"),options:[{id:"activeSubMenuColorTabs",className:"",type:"tabs-dev",tabs:[{id:"tabText",label:Object(L.a)("Text"),options:[Object(N.m)({v:e,device:t,prefix:"activeSubMenuColor",onChangeHex:["onChangeActiveColorHexSubMenu2"],onChangePalette:["onChangeActiveColorPaletteSubMenu2"]}),{type:"grid",className:"brz-ed-grid__color-fileds",columns:[{width:100,options:[Object(N.n)({v:e,device:t,prefix:"activeSubMenuColor",onChange:["onChangeActiveColorFieldsSubMenu2"]})]}]}]},{id:"tabBackground",label:Object(L.a)("Background"),options:[Object(N.b)({v:e,device:t,state:"normal",prefix:"activeSubMenuBg",showSelect:!1,onChangeHex:["onChangeBgActiveColorHexSubMenu2"],onChangePalette:["onChangeBgActiveColorPaletteSubMenu2"]}),{type:"grid",className:"brz-ed-grid__color-fileds",columns:[{width:30,options:[Object(N.c)({v:e,device:t,state:"normal",prefix:"activeSubMenuBg",onChange:["onChangeBgActiveColorFieldsSubMenu2"]})]}]}]},{id:"tabBoxShadow",label:Object(L.a)("Shadow"),options:[Object(N.j)({v:e,device:t,choices:"outset",state:"active",onChangeType:["onChangeBoxShadowType2","onChangeBoxShadowTypeDependencies2"],onChangeHex:["onChangeBoxShadowHexAndOpacity2","onChangeBoxShadowHexAndOpacityPalette2","onChangeBoxShadowHexAndOpacityDependencies2"],onChangePalette:["onChangeBoxShadowPalette2","onChangeBoxShadowPaletteOpacity2","onChangeBoxShadowHexAndOpacityDependencies2"]}),{type:"grid",className:"brz-ed-grid__color-fileds",columns:[{width:41,options:[Object(N.l)({v:e,device:t,state:"active",onChange:["onChangeBoxShadowHexAndOpacity2","onChangeBoxShadowHexAndOpacityPalette2","onChangeBoxShadowHexAndOpacityDependencies2"]})]},{width:59,options:[Object(N.k)({v:e,device:t,state:"active",choices:"outset",onChange:["onChangeBoxShadowFields2","onChangeBoxShadowFieldsDependencies2"]})]}]}]}]}]}]}]},{id:"advancedSettings",type:"advancedSettings",roles:["admin"],position:110,icon:"nc-cog",title:Object(L.a)("Settings")}]}function K({v:e,device:t,state:o}){const n=n=>Object(A.defaultValueValue)({v:e,key:n,device:t,state:o}),{hex:a}=Object(V.d)(n("mMenuColorHex"),n("mMenuColorPalette"));return[{id:"mMenuToolbarMenuItem",type:"popover-dev",config:{icon:"nc-star",title:Object(L.a)("Icon")},position:20,options:[{id:"mMenuIconPosition",label:Object(L.a)("Position"),type:"radioGroup-dev",position:10,choices:[{value:"left",icon:"nc-align-left"},{value:"right",icon:"nc-align-right"}]},{id:"mMenuIconSize",type:"slider-dev",label:Object(L.a)("Size"),roles:["admin"],position:20,config:{min:0,max:100,units:[{title:"px",value:"px"}]}},{id:"mMenuIconSpacing",type:"slider-dev",label:Object(L.a)("Spacing"),roles:["admin"],position:30,config:{min:0,max:100,units:[{title:"px",value:"px"}]}}]},{id:"mMenuToolbarTypography",type:"popover-dev",config:{icon:"nc-font",title:Object(L.a)("Typography"),size:t===D.a?"large":"auto"},roles:["admin"],position:70,options:[{id:"mMenu",type:"typography-dev",config:{fontFamily:t===D.a}}]},{id:"mMenuToolbarColor",type:"popover-dev",config:{size:"auto",title:Object(L.a)("Colors"),icon:{style:{backgroundColor:Object(W.c)(a,e.mMenuColorOpacity)}}},position:80,roles:["admin"],options:[{id:"mMenuColor",type:"tabs-dev",config:{position:"left"},tabs:[{id:"tabNormal",icon:"nc-circle",title:Object(L.a)("Normal"),options:[{id:"mMenuColorTabs",className:"",type:"tabs-dev",tabs:[{id:"tabText",label:Object(L.a)("Text"),options:[Object(N.m)({v:e,device:t,prefix:"mMenuColor",state:"normal",onChangeHex:["onChangeColorHexMMenu2"],onChangePalette:["onChangeColorPaletteMMenu2"]}),{type:"grid",className:"brz-ed-grid__color-fileds",columns:[{width:100,options:[Object(N.n)({v:e,device:t,prefix:"mMenuColor",state:"normal",onChange:["onChangeColorFieldsMMenu2"]})]}]}]},{id:"tabBackground",label:Object(L.a)("Background"),options:[Object(N.b)({v:e,device:t,state:"normal",prefix:"mMenuBg",showSelect:!1,onChangeHex:["onChangeBgColorHexMMenu2"],onChangePalette:["onChangeBgColorPaletteMMenu2"]}),{type:"grid",className:"brz-ed-grid__color-fileds",columns:[{width:30,options:[Object(N.c)({v:e,device:t,state:"normal",prefix:"mMenuBg",onChange:["onChangeBgColorFieldsMMenu2"]})]}]}]},{id:"tabBorder",label:Object(L.a)("Border"),options:[Object(N.e)({v:e,device:t,state:"normal",prefix:"mMenu",showSelect:!1,onChangeHex:["onChangeBorderColorHexMMenu2"],onChangePalette:["onChangeBorderColorPaletteMMenu2"]}),{type:"grid",className:"brz-ed-grid__color-fileds",columns:[{width:38,options:[Object(N.f)({v:e,device:t,prefix:"mMenu",state:"normal",onChange:["onChangeBorderColorFieldsMMenu2"]})]}]}]}]}]},{id:"tabHover",icon:"nc-hover",title:Object(L.a)("Hover"),options:[{id:"mMenuColorTabs",className:"",config:{showSingle:!0},type:"tabs-dev",tabs:[{id:"tabText",label:Object(L.a)("Text"),options:[Object(N.m)({v:e,device:t,prefix:"mMenuHoverColor",onChangeHex:["onChangeHoverColorHexMMenu2"],onChangePalette:["onChangeHoverColorPaletteMMenu2"]}),{type:"grid",className:"brz-ed-grid__color-fileds",columns:[{width:100,options:[Object(N.n)({v:e,device:t,prefix:"mMenuHoverColor",onChange:["onChangeHoverColorFieldsMMenu2"]})]}]}]}]}]},{id:"tabActive",icon:"nc-target",title:Object(L.a)("Active"),options:[{id:"mMenuColorTabs",className:"",config:{showSingle:!0},type:"tabs-dev",tabs:[{id:"tabText",label:Object(L.a)("Text"),options:[Object(N.m)({v:e,device:t,prefix:"activeMMenuColor",onChangeHex:["onChangeActiveColorHexMMenu2"],onChangePalette:["onChangeActiveColorPaletteMMenu2"]}),{type:"grid",className:"brz-ed-grid__color-fileds",columns:[{width:100,options:[Object(N.n)({v:e,device:t,prefix:"activeMMenuColor",onChange:["onChangeActiveColorFieldsMMenu2"]})]}]}]}]}]}]}]},{id:"mMenuItemHorizontalAlign",type:"toggle-dev",position:100,choices:[{icon:"nc-text-align-left",title:Object(L.a)("Align"),value:"left"},{icon:"nc-text-align-center",title:Object(L.a)("Align"),value:"center"},{icon:"nc-text-align-right",title:Object(L.a)("Align"),value:"right"}]},{id:"mMenuAdvancedSettings",type:"advancedSettings",roles:["admin"],position:110,icon:"nc-cog",title:Object(L.a)("Settings")}]}function Y({v:e,device:t,state:o}){return"on"===Object(A.defaultValueValue)({v:e,device:t,state:o,key:"mMenu"})?X({v:e,device:t,state:o}):q({v:e,device:t,state:o})}function q({v:e,device:t}){const o="grouped"===e.borderRadiusType;return[{id:"settingsTabs",type:"tabs-dev",config:{align:"start"},devices:"desktop",tabs:[{id:"settingsStyling",label:Object(L.a)("Styling"),icon:"nc-styling",options:[]},{id:"moreSettingsAdvanced",label:Object(L.a)("Advanced"),icon:"nc-cog",options:[]}]},{id:"borderRadiusPicker",type:"group-dev",devices:"desktop",options:[{id:"borderRadiusType",label:Object(L.a)("Corner"),type:"radioGroup-dev",choices:[{value:"grouped",icon:"nc-corners-all"},{value:"ungrouped",icon:"nc-corners-individual"}]},{id:"borderRadius",type:"slider",disabled:!o,slider:{min:0,max:100},input:{show:!0,min:0},suffix:{show:!0,choices:[{title:"px",value:"px"}]},value:{value:e.borderRadius},onChange:({value:t},{sliderDragEnd:o})=>({borderRadius:t,borderTopLeftRadius:t,borderTopRightRadius:t,borderBottomLeftRadius:t,borderBottomRightRadius:t,tempBorderRadius:o?t:e.tempBorderRadius,tempBorderTopLeftRadius:t>0&&o?t:e.tempBorderTopLeftRadius,tempBorderTopRightRadius:t>0&&o?t:e.tempBorderTopRightRadius,tempBorderBottomRightRadius:t>0&&o?t:e.tempBorderBottomRightRadius,tempBorderBottomLeftRadius:t>0&&o?t:e.tempBorderBottomLeftRadius})},{id:"borderTopLeftRadius",icon:"nc-corners-top-left",type:"slider",disabled:o,slider:{min:0,max:100},input:{show:!0,min:0},suffix:{show:!0,choices:[{title:"px",value:"px"}]},value:{value:e.borderTopLeftRadius},onChange:({value:t},{sliderDragEnd:o})=>({borderTopLeftRadius:t,borderTopRightRadius:t>0?e.tempBorderTopRightRadius:e.borderTopRightRadius,borderBottomLeftRadius:t>0?e.tempBorderBottomLeftRadius:e.borderBottomLeftRadius,borderBottomRightRadius:t>0?e.tempBorderBottomRightRadius:e.borderBottomRightRadius,borderRadius:t===e.borderTopRightRadius&&t===e.borderBottomRightRadius&&t===e.borderBottomLeftRadius?t:e.borderRadius,tempBorderTopLeftRadius:t,tempBorderRadius:o&&t===e.borderTopRightRadius&&t===e.borderBottomRightRadius&&t===e.borderBottomLeftRadius?t:e.tempBorderRadius})},{id:"borderTopRightRadius",icon:"nc-corners-top-right",type:"slider",disabled:o,slider:{min:0,max:100},input:{show:!0,min:0},suffix:{show:!0,choices:[{title:"px",value:"px"}]},value:{value:e.borderTopRightRadius},onChange:({value:t},{sliderDragEnd:o})=>({borderTopRightRadius:t,borderTopLeftRadius:t>0?e.tempBorderTopLeftRadius:e.borderTopLeftRadius,borderBottomLeftRadius:t>0?e.tempBorderBottomLeftRadius:e.borderBottomLeftRadius,borderBottomRightRadius:t>0?e.tempBorderBottomRightRadius:e.borderBottomRightRadius,borderRadius:t===e.borderTopLeftRadius&&t===e.borderBottomRightRadius&&t===e.borderBottomLeftRadius?t:e.borderRadius,tempBorderTopRightRadius:t,tempBorderRadius:o&&t===e.borderTopLeftRadius&&t===e.borderBottomRightRadius&&t===e.borderBottomLeftRadius?t:e.tempBorderRadius})},{id:"borderBottomRightRadius",icon:"nc-corners-bottom-right",type:"slider",disabled:o,slider:{min:0,max:100},input:{show:!0,min:0},suffix:{show:!0,choices:[{title:"px",value:"px"}]},value:{value:e.borderBottomRightRadius},onChange:({value:t},{sliderDragEnd:o})=>({borderBottomRightRadius:t,borderTopLeftRadius:t>0?e.tempBorderTopLeftRadius:e.borderTopLeftRadius,borderBottomLeftRadius:t>0?e.tempBorderBottomLeftRadius:e.borderBottomLeftRadius,borderTopRightRadius:t>0?e.tempBorderTopRightRadius:e.borderTopRightRadius,borderRadius:t===e.borderTopLeftRadius&&t===e.borderTopRightRadius&&t===e.borderBottomLeftRadius?t:e.borderRadius,tempBorderBottomRightRadius:t,tempBorderRadius:o&&t===e.borderTopLeftRadius&&t===e.borderTopRightRadius&&t===e.borderBottomLeftRadius?t:e.tempBorderRadius})},{id:"borderBottomLeftRadius",icon:"nc-corners-bottom-left",type:"slider",disabled:o,slider:{min:0,max:100},input:{show:!0,min:0},suffix:{show:!0,choices:[{title:"px",value:"px"}]},value:{value:e.borderBottomLeftRadius},onChange:({value:t},{sliderDragEnd:o})=>({borderBottomLeftRadius:t,borderTopLeftRadius:t>0?e.tempBorderTopLeftRadius:e.borderTopLeftRadius,borderBottomRightRadius:t>0?e.tempBorderBottomRightRadius:e.borderBottomRightRadius,borderTopRightRadius:t>0?e.tempBorderTopRightRadius:e.borderTopRightRadius,borderRadius:t===e.borderTopLeftRadius&&t===e.borderTopRightRadius&&t===e.borderBottomRightRadius?t:e.borderRadius,tempBorderBottomLeftRadius:t,tempBorderRadius:o&&t===e.borderTopLeftRadius&&t===e.borderTopRightRadius&&t===e.borderBottomRightRadius?t:e.tempBorderRadius})}]},Object(N.kb)({v:e,device:t,prefix:"menu",state:"normal",onChangeGrouped:["onChangePaddingGrouped"],onChangeUngrouped:["onChangePaddingUngrouped"]})]}function X({v:e,device:t}){return[Object(N.kb)({v:e,device:t,prefix:"mMenu",state:"normal",onChangeGrouped:["onChangePaddingGrouped"],onChangeUngrouped:["onChangePaddingUngrouped"]})]}const Z=g.a.get("menuData");function J({v:e,device:t,state:o}){const n=e=>Object(A.defaultValueKey)({key:e,device:t}),a=o=>Object(A.defaultValueValue)({v:e,key:o,device:t}),r=(()=>{const e=Z.map(({id:e,name:t})=>({title:t,value:e}));return e.length?e:[{title:"-",value:"-"}]})(),i=r.some(({value:t})=>t===e.menuSelected),{hex:l}=Object(V.d)(a("mMenuIconColorHex"),a("mMenuIconColorPalette")),s=Object(W.c)(l,"desktop"===t?e.mMenuIconColorOpacity:"tablet"===t?Object(A.tabletSyncOnChange)(e,"mMenuIconColorOpacity"):Object(A.mobileSyncOnChange)(e,"mMenuIconColorOpacity")),c="desktop"===t?["onChangeColorHexIconMenu2","onChangeColorPaletteIconMenu2","onChangeColorFieldsIconMenu2"]:"tablet"===t?["onChangeTabletColorHexIconMMenu2","onChangeTabletColorPaletteIconMMenu2","onChangeTabletColorFieldsIconMMenu2"]:["onChangeMobileColorHexIconMMenu2","onChangeMobileColorPaletteIconMMenu2","onChangeMobileColorFieldsIconMMenu2"];return[{id:"toolbarMenu",type:"popover-dev",config:{icon:"nc-menu-3",title:Object(L.a)("Menu")},roles:["admin"],position:10,options:[{id:"menuSelected",type:"select",devices:"desktop",position:10,label:Object(L.a)("Menu"),choices:i?r:[{title:Object(L.a)("Select a Menu"),value:"-"},...r],value:i?e.menuSelected:"-",onChange:e=>{if("-"!==e)return{menuSelected:e}}},{id:"groupSettings",type:"group-dev",position:20,options:[{id:"mMenu",type:"switch-dev",label:Object(L.a)("Make it Hamburger")},{id:"mMenuSize",type:"slider-dev",label:Object(L.a)("Size"),disabled:"on"!==a("mMenu"),config:{min:8,max:64,units:[{title:"px",value:"px"}]}}]},{id:"verticalMode",label:Object(L.a)("Orientation"),type:"radioGroup-dev",position:30,disabled:"on"===e.mMenu,choices:[{value:"vertical",icon:"nc-vertical-items"},{value:"horizontal",icon:"nc-horizontal-items"}]},{id:"mMenuPosition",label:Object(L.a)("Drawer Position"),type:"radioGroup",disabled:"off"===a("mMenu"),position:40,choices:[{value:"left",icon:"nc-align-left"},{value:"right",icon:"nc-align-right"}],value:e.mMenuPosition},{id:n("itemPadding"),type:"slider",label:Object(L.a)("Spacing"),roles:["admin"],position:50,slider:{min:0,max:100},input:{show:!0},suffix:{show:!0,choices:[{title:"px",value:"px"}]},disabled:1===e.items.length||"on"===a("mMenu"),value:{value:a("itemPadding")},onChange:({value:e})=>({[n("itemPadding")]:e,[n("itemPaddingRight")]:e,[n("itemPaddingLeft")]:e})}]},{id:"mMenuColors",type:"popover-dev",config:{size:"auto",title:Object(L.a)("Color"),icon:{style:{backgroundColor:s}}},position:20,disabled:"off"===a("mMenu"),options:[Object(N.m)({v:e,device:t,state:o,prefix:n("mMenuIconColor"),onChangeHex:[c[0]],onChangePalette:[c[1]]}),{type:"grid",className:"brz-ed-grid__color-fileds",columns:[{width:100,options:[Object(N.n)({v:e,device:t,state:o,prefix:n("mMenuIconColor"),onChange:[c[2]]})]}]}]}]}const Q=Object(L.a)("Menu");function ee(){return[{id:"settingsTabs",type:"tabs-dev",config:{align:"start"},devices:"desktop",tabs:[{id:"moreSettingsAdvanced",label:Object(L.a)("Advanced"),icon:"nc-cog",options:[{id:"customCSS",label:Object(L.a)("Custom CSS"),type:"codeMirror-dev",position:45,display:"block",devices:"desktop",helper:{content:'\n<p class="brz-p">You can use the following selectors to create targeted CSS.</p>\n<p class="brz-p">\n <span class="brz-span brz-ed-tooltip__overlay-code">element</span> {...}\n <br class="brz-br">\n <span class="brz-span brz-ed-tooltip__overlay-code">element .child-element</span> {...}\n</p>'},placeholder:"element { CSS goes here }"}]}]}]}function te(e,t,o){return Object(_.renderStyles)({v:e,vs:t,vd:o,styles:{".brz &&:hover .brz-mm-menu__icon":{interval:["cssStyleElementMenuShowIcon","cssStyleElementMMenuSize","cssStyleElementMMenuIconColor"]},".brz &&:hover .brz-menu":{interval:["cssStyleElementMenuShow"]}}})}var oe=o(5),ne=o(53),ae=o(38);function re(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function ie(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?re(Object(o),!0).forEach((function(t){Object(c.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):re(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}const le=g.a.get("pro");class se extends f.a{constructor(...e){super(...e),Object(c.a)(this,"nodeRef",u.a.createRef()),Object(c.a)(this,"mMenu",null),Object(c.a)(this,"handleChange",()=>{this.forceUpdate()}),Object(c.a)(this,"getNode",()=>this.nodeRef.current),Object(c.a)(this,"handleTextChange",e=>{this.patchValue({mMenuTitle:e})}),Object(c.a)(this,"openMMenu",()=>{var e;const t=this.getMMenu();!this.mMenu&&t&&this.initMMenu();const o=null===(e=this.mMenu)||void 0===e?void 0:e.API;o&&o.open()}),Object(c.a)(this,"closeMMenu",()=>{var e;const t=null===(e=this.mMenu)||void 0===e?void 0:e.API;t&&t.close()})}static get componentId(){return"Menu"}getMeta(e){const{meta:t}=this.props,o=Object(oe.mb)({v:e,device:D.a}),n=Object(oe.mb)({v:e,device:D.c}),a=Object(oe.mb)({v:e,device:D.b}),r="on"===o?ne.d:t.desktopW,i="on"===o?ne.d:t.desktopWNoSpacing,l="on"===n?ne.d:t.tabletW,s="on"===n?ne.d:t.tabletWNoSpacing,c="on"===a?ne.d:t.mobileW,d="on"===a?ne.d:t.mobileWNoSpacing;return ie(ie({},t),{},{desktopW:r,desktopWNoSpacing:i,tabletW:l,tabletWNoSpacing:s,mobileW:c,mobileWNoSpacing:d})}getDeviceMode(){return Object(H.b)().getState().ui.deviceMode}hasMMenu(){const e=this.getValue();const t=this.getDeviceMode();return"on"===Object(oe.mb)({v:e,device:t})}componentDidMount(){v.a.on("deviceMode.change",this.handleChange);const e=this.makeToolbarPropsFromConfig2(r,i,{allowExtend:!1,allowExtendFromThirdParty:!0});this.props.extendParentToolbar(e),this.hasMMenu()&&this.initMMenu()}componentWillUpdate({dbValue:e}){const{mMenuPosition:t,menuSelected:o}=this.getValue();(e.menuSelected&&e.menuSelected!==o||e.mMenuPosition&&e.mMenuPosition!==t)&&this.destroyMMenu()}componentDidUpdate(){this.hasMMenu()?this.initMMenu():this.destroyMMenu()}componentWillUnmount(){this.hasMMenu()&&this.destroyMMenu(),v.a.off("deviceMode.change",this.handleChange)}getDefaultValue(){return ie(ie({},super.getDefaultValue()),{},{symbols:{}})}getDBValue(){const e=g.a.get("menuData");if(0===e.length)return ie(ie({},this.props.dbValue),{},{items:[]});const{menuSelected:t=null,symbols:o={}}=this.props.dbValue||{},n=t||e[0].id,a=e.find(e=>e.id===n);return a&&0!==a.items.length?(void 0===this.menuItemsCache&&(this.menuItemsCache={}),void 0===this.menuItemsCache[n]&&(this.menuItemsCache[n]=de(a.items)),ie(ie({},this.props.dbValue),{},{menuSelected:n,items:ue(this.menuItemsCache[n],o)})):ie(ie({},this.props.dbValue),{},{items:[]})}handleValueChange(e,t){const{items:o}=e,n=Object(s.a)(e,["items"]);t.patch.items&&(n.symbols=ie(ie({},e.symbols),pe(o))),super.handleValueChange(n,t)}renderMMenuTitle(e){const{mMenuTitle:t}=e;return u.a.createElement("li",{className:"brz-mm-navbar"},u.a.createElement("a",{className:"brz-a brz-mm-navbar__title"},u.a.createElement(j.a,{value:t,onChange:this.handleTextChange})))}renderMenu(e,t,o,r){const{className:i,items:l,menuSelected:s}=e,c=this.hasMMenu()&&!!r,d=this.makeSubcomponentProps({bindWithKey:"items",itemProps:{menuSelected:s,mMenu:c,meta:this.getMeta(e),mods:{[D.a]:Object(oe.Db)({v:e,device:D.a}),[D.c]:Object(oe.Db)({v:e,device:D.c}),[D.b]:Object(oe.Db)({v:e,device:D.b})},getParent:this.getNode,toolbarExtend:this.makeToolbarPropsFromConfig2(n,a,{allowExtend:!1})}}),p=h()("brz-menu",{"brz-menu__mmenu":c,"brz-menu--has-dropdown":c&&l.some(({value:{items:e}})=>e.length)},"brz-menu__editor",i,Object(_.css)(""+this.constructor.componentId,""+this.getId(),function(e,t,o){return Object(_.renderStyles)({v:e,vs:t,vd:o,styles:{".brz &&:hover .brz-menu__ul":{interval:["cssStyleTypography2FontSize","cssStyleTypography2FontWeight","cssStyleTypography2LineHeight","cssStyleTypography2LetterSpacing"],standart:["cssStyleTypography2FontFamily","cssStyleColor"]},".brz && .brz-menu__ul:not(.brz-mm-listview)":{standart:["cssStyleElementMenuMode","cssStyleElementMenuSize","cssStyleElementMMenuListViewMargin"]},".brz && .brz-menu__ul > .brz-menu__item > .brz-a":{standart:["cssStyleElementMenuIconPosition"]},".brz && .brz-menu__ul > .brz-menu__item > .brz-a:hover":{standart:["cssStyleColor","cssStyleElementMenuLinkBgColor","cssStyleElementMenuPadding"]},".brz && .brz-menu__ul > .brz-menu__item.brz-menu__item--opened > .brz-a:hover":{standart:["cssStyleElementMenuActiveColor","cssStyleElementMenuActiveLinkBgColor"]},".brz && .brz-menu__ul > .brz-menu__item.brz-menu__item--opened:hover":{standart:["cssStyleElementMenuActiveColor","cssStyleElementMenuActiveBgColor","cssStyleElementMenuActiveBorder"]},".brz && .brz-menu__ul > .brz-menu__item.brz-menu__item--current:hover":{standart:["cssStyleElementMenuCurrentColor","cssStyleElementMenuCurrentBgColor","cssStyleElementMenuCurrentBorder"]},".brz && .brz-menu__ul > .brz-menu__item.brz-menu__item--current > .brz-a:hover":{standart:["cssStyleElementMenuCurrentColor","cssStyleElementMenuCurrentLinkBgColor"]},".brz &&:hover > .brz-ed-border":{interval:["cssStyleVisibleEditorDisplayNoneOrBlock|||editor"]},".brz &&:hover .brz-menu__item__icon":{interval:["cssStyleElementMenuIconSize"],standart:["cssStyleElementMenuIconSpacing"]},".brz && .brz-menu__ul > .brz-menu__item:hover":{standart:["cssStyleElementMenuBgColor","cssStyleElementMenuBorder"],interval:["cssStyleElementMMenuItemPadding"]},".brz && .brz-menu__ul > .brz-menu__item:first-child":{interval:["cssStyleElementMMenuItemPaddingTopZero"]},".brz && .brz-menu__ul > .brz-menu__item:last-child":{interval:["cssStyleElementMMenuItemPaddingBottomZero"]},".brz && .brz-mm-menu__item":{interval:["cssStyleElementMMenuFontSize","cssStyleElementMMenuFontWeight","cssStyleElementMMenuLineHeight","cssStyleElementMMenuLetterSpacing"],standart:["cssStyleElementMMenuFontFamily","cssStyleElementMMenuColor","cssStyleElementMMenuBorderColor"]},".brz nav.brz-mm-menu&&":{standart:["cssStyleElementMMenuBackgroundColor"]},".brz &&.brz-mm-menu .brz-mm-menu__item .brz-mm-listitem__text":{standart:["cssStyleElementMMenuPadding","cssStyleElementMMenuIconPosition"]},".brz &&:hover .brz-mm-menu__item:hover > .brz-mm-listitem__text":{standart:["cssStyleElementMMenuHoverColor"]},".brz &&:hover .brz-mm-menu__item .brz-a":{interval:["cssStyleElementMMenuItemHorizontalAlign"]},".brz &&:hover .brz-mm-menu__item__icon":{interval:["cssStyleElementMMenuIconSpacing","cssStyleElementMMenuIconSize"]},".brz && .brz-mm-navbar":{interval:["cssStyleElementMMenuFontFamily","cssStyleElementMMenuFontSize","cssStyleElementMMenuFontWeight","cssStyleElementMMenuLineHeight","cssStyleElementMMenuLetterSpacing","cssStyleElementMMenuBorderColor"],standart:["cssStyleElementMMenuColor"]},".brz &&:hover .brz-mm-menu__item.brz-mm-listitem_opened":{standart:["cssStyleElementMMenuColor"]},".brz &&:hover.brz-mm-menu .brz-mm-listitem_vertical .brz-mm-btn_next":{interval:["cssStyleElementMMenuBtnNext"]},".brz &&.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-panels, .brz &&:hover .brz-mm-panels > .brz-mm-panel":{standart:["cssStyleElementMMenuBackgroundColor"]},".brz &&.brz-mm-menu.brz-mm-menu_theme-dark .brz-mm-navbar.brz-mm-listitem .brz-mm-listitem_opened > .brz-mm-listitem__text:after":{standart:["cssStyleElementMMenuBorderColor"]},".brz &&:hover .brz-mm-listitem":{standart:["cssStyleElementMMenuBorderColor"]},".brz && .brz-mm-menu__item.brz-mm-menu__item--current":{standart:["cssStyleElementMMenuActiveColor"]},".brz:hover && .brz-mm-menu__item.brz-mm-menu__item--current:hover > .brz-mm-listitem__text":{standart:["cssStyleElementMMenuActiveColor"]},".brz &&:hover .brz-menu__sub-menu":{interval:["cssStyleElementMenuSubMenuFontSize","cssStyleElementMenuSubMenuFontWeight","cssStyleElementMenuSubMenuLineHeight","cssStyleElementMenuSubMenuLetterSpacing"],standart:["cssStyleElementMenuSubMenuFontFamily","cssStyleElementMenuSubMenuColor","cssStyleBoxShadow","cssStyleBorderRadius"]},".brz &&:hover .brz-menu__sub-menu .brz-a":{standart:["cssStyleElementMenuSubMenuIconPosition"]},".brz &&:hover .brz-menu__sub-menu .brz-a:hover":{standart:["cssStyleElementMenuSubMenuHoverColor"]},".brz &&:hover .brz-menu__sub-item__icon":{standart:["cssStyleElementMenuSubMenuIconSpacing","cssStyleElementMenuSubMenuIconSize"]},".brz &&:hover .brz-menu__dropdown > .brz-menu__item.brz-menu__item--current > .brz-a":{standart:["cssStyleElementMenuSubMenuCurrentColor"]},".brz &&:hover .brz-menu__dropdown > .brz-menu__item.brz-menu__item--current":{standart:["cssStyleElementMenuSubMenuCurrentBgColor"]},".brz &&:hover .brz-menu__dropdown > .brz-menu__item.brz-menu__item--current:hover":{standart:["cssStyleElementMenuSubMenuCurrentBgColor"]},".brz &&:hover .brz-menu__item--current .brz-menu__sub-menu":{standart:["cssStyleElementMenuSubMenuCurrentBoxShadow"]},".brz &&:hover .brz-menu__item-dropdown .brz-menu__item":{standart:["cssStyleElementMenuSubMenuBgColor"]},".brz &&:hover .brz-menu__item-dropdown .brz-menu__item:hover":{standart:["cssStyleElementMenuSubMenuHoverBgColor"]},".brz &&:hover .brz-menu__dropdown .brz-menu__item-dropdown .brz-a:after":{standart:["cssStyleElementMenuSubMenuBorderColor"]},".brz &&:hover .brz-menu__dropdown > .brz-menu__item":{standart:["cssStyleElementMenuSubMenuBorderBottom"]},".brz && .brz-menu__dropdown":{interval:["cssStyleMenuDropdownPosition"]},".brz && [data-popper-placement='left-start']":{interval:["cssStyleMenuDropdownPositionLeft"]},".brz && [data-popper-placement='right-start']":{interval:["cssStyleMenuDropdownPositionRight"]},".brz &&:hover > .brz-menu__ul > .brz-menu__item-dropdown > .brz-menu__dropdown":{interval:["cssStyleMenuFirstDropdownPosition"]},".brz &&:hover > .brz-menu__ul > .brz-menu__item-dropdown > [data-popper-placement='left-start']":{interval:["cssStyleMenuFirstDropdownPositionLeft"]},".brz &&:hover > .brz-menu__ul > .brz-menu__item-dropdown > [data-popper-placement='right-start']":{interval:["cssStyleMenuFirstDropdownPositionRight"]},".brz &&:hover .brz-menu__item-dropdown .brz-menu__dropdown":{interval:["cssStyleElementMenuDropdown"]},".brz &&:hover .brz-menu__item.brz-menu__item--opened > .brz-menu__dropdown":{interval:["cssStyleElementMenuDropdownOpened"]},".brz &&.brz-menu__preview:hover .brz-menu__item:hover > .brz-menu__sub-menu":{interval:["cssStyleElementMenuDropdownOpened"]},".brz &&:hover .brz-menu__dropdown .brz-menu__item-dropdown > .brz-a:after":{interval:["cssStyleElementMenuDropdownArrow"]},".brz &&:hover .brz-menu__dropdown .brz-menu__item-dropdown .brz-menu__dropdown":{interval:["cssStyleElementMenuInnerDropdown"]},".brz &&:hover .brz-menu__dropdown .brz-menu__item--opened > .brz-menu__dropdown":{interval:["cssStyleElementMenuDropdownInnerOpened"]},".brz &&.brz-menu__preview:hover .brz-menu__dropdown .brz-menu__item:hover > .brz-menu__sub-menu":{interval:["cssStyleElementMenuDropdownInnerOpened"]},".brz && .brz-mega-menu__dropdown":{interval:["cssStyleElementMegaMenuOpened"]},".brz &&.brz-menu__preview:hover .brz-menu__item:hover > .brz-mega-menu__portal":{interval:["cssStyleElementMenuDropdownOpened"]},".brz &&:hover .brz-menu__item-mega-menu .brz-mega-menu__portal":{interval:["cssStyleElementMenuDropdown"]}}})}(e,t,o)),c&&this.getMMenuClassNames()),b={className:"brz-menu__ul"};return u.a.createElement("nav",{id:r,className:p},u.a.createElement("ul",b,c&&this.renderMMenuTitle(e),u.a.createElement(O.a,d)))}renderMMenu(e,t,o){const{menuSelected:n,mMenuPosition:a}=e;return u.a.createElement(u.a.Fragment,null,u.a.createElement(x.a,{key:`${n}-${a}`,node:document.body,className:"brz-ed-mmenu-portal"},u.a.createElement("div",{className:"brz-ed-mmenu-portal__menu brz-d-none"},this.renderMenu(e,t,o,this.getId()))),u.a.createElement("div",{className:"brz-mm-menu__icon",onClick:this.openMMenu},u.a.createElement(S.a,{name:"menu-3",type:"editor"})))}renderErrors(e){const t=g.a.get("menuData");let o;if(0===t.length){const e=g.a.get("urls").dashboardNavMenu;o=u.a.createElement(u.a.Fragment,null,u.a.createElement("a",{className:"brz-a",href:e,target:"_blank",rel:"noopener noreferrer"},Object(L.a)("Create a menu")),Object(L.a)("in your WordPress admin"))}if(!o){t.find(t=>t.id===e.menuSelected)||(o=Object(L.a)("Select a menu from the element options"))}return o&&u.a.createElement("div",{className:"brz-menu__error"},o)}renderForEdit(e,t,o){const n=this.renderErrors(e);if(n)return n;const a=h()("brz-menu__container",Object(_.css)(this.constructor.componentId+"-menu",this.getId()+"-menu",te(e,t,o)));return u.a.createElement(P.a,{exceptions:[".brz-ed-toolbar",".brz-ed-tooltip__content-portal",".brz-ed-sidebar__right",".brz-menu",".brz-menu__container",".brz-ed-fixed"],onClickOutside:this.closeMMenu},u.a.createElement(y.a,{selectorName:this.getId(),css:e.customCSS},u.a.createElement(R.b,this.makeContextMenuProps(M),u.a.createElement(ae.a,this.makeWrapperProps({className:a,ref:this.nodeRef}),this.hasMMenu()?this.renderMMenu(e,t,o):this.renderMenu(e,t,o)))))}renderForView(e,t,o){if(this.renderErrors(e))return null;const{mMenuTitle:n,mMenuPosition:a}=e,r=this.hasMMenu(),i=r?{"data-mmenu-id":"#"+this.getId(),"data-mmenu-position":"position-"+a,"data-mmenu-title":n}:{},s=h()("brz-menu__container",Object(_.css)(this.constructor.componentId+"-menu",this.getId()+"-menu",te(e,t,o)));return u.a.createElement(y.a,{selectorName:this.getId(),css:e.customCSS},u.a.createElement("div",Object(l.a)({className:s},i),this.renderMenu(e,t,o),r&&u.a.createElement(u.a.Fragment,null,u.a.createElement("div",{className:"brz-mm-menu__icon"},u.a.createElement(S.a,{name:"menu-3",type:"editor"})),le&&this.renderMenu(e,t,o,this.getId()))))}getMMenu(){return Object(F.b)("getLibs",{}).MMenu}initMMenu(){const e=this.getMMenu(),{items:t=[],mMenuPosition:o}=this.getValue();if(this.mMenu||!e||0===t.length)return;const n={navbar:{add:!1},extensions:["theme-dark","pagedim-black","border-full","position-front","position-"+o],slidingSubmenus:!1};this.mMenu=new e("#"+this.getId(),n,{offCanvas:{menu:{insertSelector:"#brz-ed-root"},page:{wrapIfNeeded:!1,selector:"#brz-ed-root"}}})}destroyMMenu(){this.mMenu&&(this.mMenu.node.menu.remove(),this.mMenu=null)}getMMenuClassNames(){var e;if(null===(e=this.mMenu)||void 0===e||!e.node)return"";let t=[];return this.mMenu.node.menu.classList.forEach(e=>{/brz-mm-menu/.test(e)&&t.push(e)}),t}}Object(c.a)(se,"defaultValue",I),Object(c.a)(se,"defaultProps",{extendParentToolbar:p.default.noop,meta:{}});const ce=["id","title","url","target","items","megaMenuItems","attrTitle","classes","current"];function de(e){return Object(C.n)(Object(C.m)(({type:e,value:t})=>({type:e,value:p.default.pick(t,ce)}),e))}function ue(e,t){return e.map(e=>Object(b.a)(e,o=>{if(Object.assign(o.value,t[e.value.id]),!o.value.megaMenuItems){const e=Object(C.n)({type:"SectionMegaMenu",value:{items:[]}});o.value.megaMenuItems=[e]}o.value.items=ue(e.value.items,t)}))}function pe(e){return e.reduce((e,t)=>ie(ie({},e),{},{[t.value.id]:p.default.omit(t.value,[...ce.filter(e=>"megaMenuItems"!==e),"_id"])},t.value.items.length>0?pe(t.value.items):{}),{})}},function(e,t,o){"use strict";o.d(t,"a",(function(){return a})),o.d(t,"b",(function(){return r}));var n=o(15);const a=()=>n.a.get("user").isAuthorized?"connected":(()=>{switch(localStorage.getItem("brz-authorized")){case"pending":return"pending";case"connected":return"connected";default:return"disconnect"}})(),r=e=>{(e=>{localStorage.setItem("brz-authorized",e)})(e)}},function(e,t,o){"use strict";o.d(t,"a",(function(){return r})),o.d(t,"c",(function(){return i})),o.d(t,"b",(function(){return s}));var n=o(15),a=o(55);function r(e){const t=n.a.get("urls").editorIcons;return t?`${t}/icons.svg#${e}`:Object(a.a)("editor/icons/icons.svg#"+e)}function i(e,t){const o=n.a.get("urls").templateIcons;return o?`${o}/${e}/${t}.txt`:Object(a.a)(`editor/icons/${e}/${t}.txt`)}var l=o(504);function s(e,t){const o={1:`<svg viewBox="0 0 1920 200" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M1920 .023L0 200V0h1920z" fill="${n=t}" fill-rule="nonzero"/></svg>`,2:`<svg viewBox="0 0 1920 240" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><g fill="${n}" fill-rule="nonzero"><path d="M0 200V0h1920z"/><path opacity=".251" d="M0 240V0h1920L137.195 222.85z"/></g></svg>`,3:`<svg viewBox="0 0 1920 200" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M1920 200L1374.256 11.518 0 200V0h1920z" fill="${n}" fill-rule="nonzero"/></svg>`,4:`<svg viewBox="0 0 1920 250" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><g fill="${n}" fill-rule="nonzero"><path opacity=".25" d="M1920 240L1374.256 11.518 0 250V0h1920z"/><path d="M1920 200L1374.256 11.518 0 200V0h1920z"/></g></svg>`,5:`<svg viewBox="0 0 1920 69" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M1920 32.332L1872.003 69l-47.999-36.668L1776.008 69l-47.997-36.668-48 36.668-47.998-36.668L1584.016 69l-47.997-36.668L1488.02 69l-47.999-36.668L1392.022 69l-48-36.668-48 36.668-48-36.668L1200.025 69l-47.999-36.668-48 36.668-48-36.668-48 36.668-48-36.668L912.027 69l-48-36.668L816.032 69l-47.997-36.668L720.033 69l-47.998-36.668-48 36.668-47.998-36.668L528.04 69l-48-36.668L432.036 69l-48.004-36.668-48 36.668-48.005-36.668-48 36.668-48.003-36.668L144.02 69 96.018 32.332 48.01 69 0 32.332V0h1920z" fill="${n}" fill-rule="nonzero"/></svg>`,6:`<svg viewBox="0 0 1919 100" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M1865.687 100c-26.657 0-26.657-33.314-53.315-33.314-26.654 0-26.654 33.314-53.308 33.314s-26.654-33.314-53.31-33.314c-26.653 0-26.653 33.314-53.306 33.314s-26.653-33.314-53.306-33.314c-26.655 0-26.655 33.314-53.31 33.314-26.652 0-26.652-33.314-53.305-33.314-26.654 0-26.654 33.314-53.31 33.314-26.653 0-26.653-33.314-53.307-33.314-26.652 0-26.652 33.314-53.305 33.314-26.652 0-26.652-33.314-53.304-33.314-26.651 0-26.651 33.314-53.303 33.314-26.653 0-26.653-33.314-53.305-33.314-26.65 0-26.65 33.314-53.301 33.314-26.653 0-26.653-33.314-53.307-33.314-26.65 0-26.65 33.314-53.301 33.314-26.654 0-26.654-33.314-53.306-33.314-26.652 0-26.653 33.314-53.305 33.314s-26.653-33.314-53.305-33.314S826.216 100 799.564 100c-26.654 0-26.654-33.314-53.306-33.314-26.652 0-26.652 33.314-53.304 33.314-26.653 0-26.653-33.314-53.306-33.314-26.652 0-26.652 33.314-53.304 33.314-26.653 0-26.653-33.314-53.304-33.314-26.65 0-26.652 33.314-53.304 33.314s-26.652-33.314-53.305-33.314S399.778 100 373.126 100c-26.653 0-26.653-33.314-53.306-33.314-26.652 0-26.652 33.314-53.304 33.314s-26.652-33.314-53.304-33.314c-26.651 0-26.651 33.314-53.302 33.314s-26.651-33.314-53.303-33.314c-26.65 0-26.65 33.314-53.302 33.314C26.652 100 26.652 66.686 0 66.686V0h1919.003L1919 66.686c-26.657 0-26.657 33.314-53.314 33.314z" fill="${n}" fill-rule="nonzero"/></svg>`,7:`<svg viewBox="0 0 1920 200" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0 111.22c39.924 57.863 43.635-81.12 86.057-49.377 22.96 17.18 28.423 139.795 63.67 131.577 29.69-6.92 46.923-44.683 62.128-71.756 31.87-50.039 80.334 24.686 134.72 4.477 43.687-16.232 35.42-36.266 70.842-.398 38.085 38.563 65.343-59.381 92.63-51.265 52.535 15.626 66.523 175.912 107.386 83.442 21.395-48.414 68.874-121.81 103.424-45.875 45.148 99.23 54.337 15.01 73.935-36.992 27.286-72.402 47.559 50.828 90.996 61.402 25.52 6.212 43.74-24.442 56.396-47.275 50.19-67.647 72.223 38.517 105.804 42.913 33.582 4.395 43.952-40.933 78.17-31.257 38.657 10.932 44.729 99.625 75.705 98.585 32.066-1.077 10.475-113.292 58.263-131.984 37.054-14.492 44.996 46.504 87.28 45.715 42.285-.789 53.14-137.725 95.082-44.886 9.373 20.75 16.322 103.621 43.433 109.406 35.063 7.48 43.86-81.364 90.923-81.714 68.327 5.077 61.933 82.101 96.71 70.335 29.87-10.106 49.187-131.546 72.779-122.802 26.43 9.797 29.214 119.883 77.916 70.624 23.122-23.385 34.37-82.184 69.35-36.356 21.163 27.726 4.003 7.799 26.401 35.202V0H0v111.22z" fill="${n}" fill-rule="nonzero"/></svg>`,8:`<svg viewBox="0 0 1920 200" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><g fill="${n}" fill-rule="nonzero"><path d="M0 111.22c39.924 57.863 43.635-81.12 86.057-49.377 22.96 17.18 28.423 139.795 63.67 131.577 29.69-6.92 46.923-44.683 62.128-71.756 31.87-50.039 80.334 24.686 134.72 4.477 43.687-16.232 35.42-36.266 70.842-.398 38.085 38.563 65.343-59.381 92.63-51.265 52.535 15.626 66.523 175.912 107.386 83.442 21.395-48.414 68.874-121.81 103.424-45.875 45.148 99.23 54.337 15.01 73.935-36.992 27.286-72.402 47.559 50.828 90.996 61.402 25.52 6.212 43.74-24.442 56.396-47.275 50.19-67.647 72.223 38.517 105.804 42.913 33.582 4.395 43.952-40.933 78.17-31.257 38.657 10.932 44.729 99.625 75.705 98.585 32.066-1.077 10.475-113.292 58.263-131.984 37.054-14.492 44.996 46.504 87.28 45.715 42.285-.789 53.14-137.725 95.082-44.886 9.373 20.75 16.322 103.621 43.433 109.406 35.063 7.48 43.86-81.364 90.923-81.714 68.327 5.077 61.933 82.101 96.71 70.335 29.87-10.106 49.187-131.546 72.779-122.802 26.43 9.797 29.214 119.883 77.916 70.624 23.122-23.385 34.37-82.184 69.35-36.356 21.163 27.726 4.003 7.799 26.401 35.202V0H0v111.22z"/><path d="M1920 111.22c-39.924 57.863-113.614-125.271-101.202-93.282C1832 51.96 1784.872 112.96 1758 112.96s-60.795-67.95-76-95.023c-31.87-50.04-69.614 138.725-124 118.517-43.688-16.233-19.995-46.58-55.417-10.712-38.085 38.563-65.343-59.381-92.63-51.265-52.535 15.626-70.09 139.656-110.953 47.186-21.395-48.414-65.307-56.142-99.857 19.793-16.433 36.118-28.102 47.932-37.243 45.841-15.973-3.652-24.227-49.759-36.692-82.834-27.286-72.4-47.559 21.417-90.996 31.99-25.52 6.213-43.74-24.44-56.396-47.274-50.19-67.647-75.234 42.88-108.816 47.275-33.582 4.395-40.94-45.295-75.159-35.619-38.656 10.932-35.865 78.636-66.841 77.595-32.066-1.077-19.338-92.302-67.126-110.994C622.82 52.945 610.284 172.357 568 171.57c-42.285-.79-33-144.118-70-104.132-19.133 20.677-28.889 84.699-56 90.483-35.063 7.48-59.936-56.734-107-57.084-68.327 5.078-56.327 40.621-95 40.621s-48.408-37.24-72-28.496c-26.431 9.796-25.751 94.007-62 36.554-14.795-23.45-44.62-117.584-79.6-71.756C5.239 105.485 22.399 85.558 0 112.96V0h1920v111.22z" opacity=".25"/></g></svg>`,9:`<svg viewBox="0 0 1920 200" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><g fill="${n}" fill-rule="nonzero"><path d="M1000.521.023L0 200V0h1000.521z"/><path d="M919.479.023L1920 200V0H919.479z"/></g></svg>`,10:`<svg viewBox="0 0 1920 240" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><g fill="${n}" fill-rule="nonzero"><path opacity=".25" d="M1920 0v240L959.944 9.734 0 240V0z"/><path d="M1920 0v198.347L959.944 8.044 0 198.347V0z"/></g></svg>`,11:`<svg viewBox="0 0 1920 240" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M1920 5.206c-320 1.996-640 21.432-960 58.308C640 100.39 320 159.22 0 240V0h1920v5.206z" fill="${n}" fill-rule="nonzero"/></svg>`,12:`<svg viewBox="0 0 1920 240" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><g fill="${n}" fill-rule="nonzero"><path d="M0 240V0h1920v4.538c-312.667-.827-632.667 14.938-960 47.295C632.667 84.191 312.667 146.913 0 240z" opacity=".15"/><path d="M0 210.704V0h1920v4.507c-332 1.2-652 16.735-960 46.605C652 80.982 332 134.18 0 210.704z" opacity=".3"/><path d="M0 4.507V0h1920v4.507c-320 1.494-640 16.045-960 43.651C640 75.765 320 119.806 0 180.282V4.507z"/></g></svg>`,13:`<svg viewBox="0 0 1920 240" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M1920 5.206V240c-160-80.78-320-139.61-480-176.486-160-36.876-320-56.312-480-58.308-160 1.996-320 21.432-480 58.308C320 100.39 160 159.22 0 240V0h1920v5.206z" fill="${n}" fill-rule="nonzero"/></svg>`,14:`<svg viewBox="0 0 1920 240" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><g fill="${n}" fill-rule="nonzero"><path d="M0 240V0l960 .03V4C754 7.849 600 23.182 498 50 354.334 87.773 188.334 151.106 0 240z" opacity=".15"/><path d="M0 211V0h960v5C794 1.667 634 17.187 480 51.56 326 85.935 166 139.08 0 211z" opacity=".3"/><path d="M0 4.5V0h960v5C800 6.158 640 20.52 480 48.083 320 75.647 160 119.62 0 180V4.5z"/><g><path d="M1920 240V0L960 .03V4c206 3.849 360 19.182 462 46 143.666 37.773 309.666 101.106 498 190z" opacity=".15"/><path d="M1920 211V0H960v5c166-3.333 326 12.187 480 46.56 154 34.374 314 87.52 480 159.44z" opacity=".3"/><path d="M1920 4.5V0H960v5c160 1.158 320 15.52 480 43.083C1600 75.647 1760 119.62 1920 180V4.5z"/></g></g></svg>`,15:`<svg viewBox="0 0 1920 200" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0 0h1920v200l-160-15.833L1438 70 707 184.167 211 90 0 200z" fill="${n}" fill-rule="nonzero"/></svg>`,16:`<svg viewBox="0 0 1920 240" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><g fill="${n}" fill-rule="nonzero"><path d="M0 0h1920v198.347L1760 182 1438 70 707 183 211 89 0 198.347z"/><path opacity=".2" d="M0 0h1920v228.1L1721 240 1438 70l-283 122.397-347.347-25.04L707 183l-81.92-15.517L383 192.397 211 89 0 228.1z"/><path opacity=".25" d="M1920 0H0v228.1l193 9.917L390 123l317 60 67-11.43 477-23.801 271 44.628L1616 132l144 50 110 12 50 34.1z"/></g></svg>`,17:`<svg viewBox="0 0 1920 240" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M1920 0H0v144.419L640 240l640-189.197 640 93.616z" fill="${n}" fill-rule="nonzero"/></svg>`,18:`<svg viewBox="0 0 1920 240" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><g fill="${n}" fill-rule="nonzero"><path opacity=".25" d="M0 0h1920v144.419L1277 221l-286-85-351 104L0 144.419z"/><path opacity=".2" d="M1920 0H0v144.419L640 240l167.811-49.89L1038 240l393-167 489 71.419z"/><path d="M1920 0H0v144.419L640 240l640-189.197 640 93.616z"/></g></svg>`,19:`<svg viewBox="0 0 1920 240" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0 172.043C160 217.348 320 240 480 240c240 0 720-138.495 960-136.774 160 1.147 320 24.086 480 68.817V0H0v172.043z" fill="${n}" fill-rule="nonzero"/></svg>`,20:`<svg viewBox="0 0 1920 240" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><g fill="${n}" fill-rule="nonzero"><path d="M1920 129.751C1760 191.917 1600 223 1440 223c-152.892 0-399.532-31.384-620.475-53.784C687 191 557.108 205.465 470 206c-162-2-318.667-21.333-470-58V0h1920v129.751z" opacity=".203"/><path d="M230 190c160 33.333 320 50 480 50 240 0 776-105 923-115 98-6.667 193.667 1 287 23V0H0v148c45.073 10.416 81.073 18.083 108 23 26.927 4.917 67.594 11.25 122 19z" opacity=".3"/><path d="M0 148c160 38.476 320 57.714 480 57.714 240 0 720-118.71 960-117.235 160 .983 320 20.824 480 59.521V0H0v148z"/></g></svg>`,21:`<svg viewBox="0 0 1920 240" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><g stroke="none" fill="none" fill-rule="evenodd"><g transform="translate(0.000000, -8261.000000)" fill="${n}" fill-rule="nonzero"><g id="21" transform="translate(0.000000, 8261.000000)"><path d="M0,168.988943 C80.5473907,217.603736 160.512186,220.954929 239.894386,179.042522 C358.967686,116.173913 359.812598,59.826087 443.76887,59.826087 C527.725143,59.826087 547.8693,208.397586 697.791216,199.354108 C847.713131,190.310629 776.750091,26.8323684 937.666281,1.78889015 C1098.58247,-23.2545881 1239.52127,223.162118 1417.41641,209.093238 C1553.34561,198.343244 1504.21655,68.173913 1615.15877,45.2173913 C1689.12025,29.9130435 1790.73399,71.5072464 1920,170 L1920,240 L0,240 L0,168.988943 Z" transform="translate(960.000000, 120.000000) scale(1, -1) translate(-960.000000, -120.000000) "></path></g></g></g></svg>`,22:`<svg viewBox="0 0 1919 255" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g transform="translate(0.000000, -8701.000000)" fill="${n}" fill-rule="nonzero"><g transform="translate(959.500000, 8828.500000) scale(1, -1) translate(-959.500000, -8828.500000) translate(0.000000, 8701.000000)"><path d="M0,183.988943 C80.5473907,232.603736 160.512186,235.954929 239.894386,194.042522 C358.967686,131.173913 359.812598,74.826087 443.76887,74.826087 C527.725143,74.826087 547.8693,223.397586 697.791216,214.354108 C847.713131,205.310629 776.750091,41.8323684 937.666281,16.7888902 C1098.58247,-8.25458811 1239.52127,238.162118 1417.41641,224.093238 C1553.34561,213.343244 1504.21655,83.173913 1615.15877,60.2173913 C1689.12025,44.9130435 1790.40066,86.1702275 1919,183.988943 L1919,255 L0,255 L0,183.988943 Z"></path><path d="M0,184 C55.2272449,222.607421 122.531967,220.954929 201.914167,179.042522 C320.987468,116.173913 321.832379,59.826087 405.788652,59.826087 C489.744925,59.826087 509.889081,208.397586 659.810997,199.354108 C809.732913,190.310629 738.769873,26.8323684 899.686062,1.78889015 C1060.60225,-23.2545881 1201.54105,223.162118 1379.43619,209.093238 C1515.3654,198.343244 1466.23634,68.173913 1577.17855,45.2173913 C1651.14003,29.9130435 1765.08051,76.173913 1919,184 L1919,255 L0,255 L0,184 Z" opacity="0.3"></path></g></g></g></svg>`,23:`<svg viewBox="0 0 1920 240" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M1920 0v131.144c-95.98 0-96.336 108.856-192.319 108.856-95.982 0-95.982-108.856-191.969-108.856-95.986 0-95.986 54.68-191.969 54.68-95.986 0-95.986-125.11-191.969-125.11-95.982 0-95.982 173.868-191.965 173.868s-95.983-103.438-191.965-103.438c-95.98 0-95.98 70.933-191.959 70.933s-95.979-98.021-191.958-98.021-95.979 81.768-191.958 81.768c-95.986 0-95.986-54.68-191.969-54.68V0h1920z" fill="${n}" fill-rule="nonzero"/></svg>`,24:`<svg viewBox="0 0 1920 398" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><g fill="${n}" fill-rule="nonzero"><path d="M1920 0v198.247c-95.98 0-96.336 114.753-192.319 114.753-95.982 0-95.982-114.753-191.969-114.753-95.986 0-95.986 57.642-191.969 57.642-95.986 0-95.986-131.885-191.969-131.885-95.982 0-95.982 183.285-191.965 183.285s-95.983-109.042-191.965-109.042c-95.98 0-95.98 74.776-191.959 74.776s-95.979-103.33-191.958-103.33-95.979 86.196-191.958 86.196c-95.986 0-95.986-57.642-191.969-57.642V0h1920z" opacity=".25"/><path d="M1920 0v158.358c-95.98 0-96.336 81.642-192.319 81.642-95.982 0-95.982-81.642-191.969-81.642-95.986 0-95.986 41.01-191.969 41.01-95.986 0-95.986-93.832-191.969-93.832-95.982 0-95.982 130.4-191.965 130.4s-95.983-77.578-191.965-77.578c-95.98 0-95.98 53.2-191.959 53.2s-95.979-73.516-191.958-73.516-95.979 61.326-191.958 61.326c-95.986 0-95.986-41.01-191.969-41.01V0h1920z" opacity=".35"/><path d="M0 0v244.694C95.98 244.694 96.336 398 192.319 398c95.982 0 95.982-153.306 191.969-153.306 95.986 0 95.986 77.008 191.969 77.008 95.986 0 95.986-176.195 191.969-176.195 95.982 0 95.982 244.863 191.965 244.863s95.983-145.676 191.965-145.676c95.98 0 95.98 99.897 191.959 99.897s95.979-138.046 191.958-138.046 95.979 115.157 191.958 115.157c95.986 0 95.986-77.008 191.969-77.008V0H0z" opacity=".134"/><path d="M1920 0v131.144c-95.98 0-96.336 108.856-192.319 108.856-95.982 0-95.982-108.856-191.969-108.856-95.986 0-95.986 54.68-191.969 54.68-95.986 0-95.986-125.11-191.969-125.11-95.982 0-95.982 173.868-191.965 173.868s-95.983-103.438-191.965-103.438c-95.98 0-95.98 70.933-191.959 70.933s-95.979-98.021-191.958-98.021-95.979 81.768-191.958 81.768c-95.986 0-95.986-54.68-191.969-54.68V0h1920z"/></g></svg>`,25:`<svg viewBox="0 0 1920 788" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M1920 0H0v173c48-38.667 95.667-75.333 143-110 71-51 110-58 206-40 366 84 1154 243 1293 297 58 22 88 44 121 101 23.333 52 75.667 174.333 157 367V0z" fill="${n}" fill-rule="nonzero"/></svg>`,26:`<svg viewBox="0 0 1920 798" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><g fill="${n}" fill-rule="nonzero"><path d="M1920 0H0v189c24-18 60.347-41.755 109.04-71.264C207.368 57.772 261.38 50.915 394.33 78.549 902 172 1349 270 1534.999 319.512c80.324 21.553 121.87 53.106 167.572 108.947C1734.886 479.402 1807.361 602.583 1920 798V0z" opacity=".25"/><path d="M1920 0H0v173c48-38.667 95.667-75.333 143-110 71-51 110-58 206-40 366 84 1154 243 1293 297 58 22 88 44 121 101 23.333 52 75.667 174.333 157 367V0z"/></g></svg>`,27:`<svg viewBox="0 0 1920 800" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M1920 0H0v12.984c1029.719 130.503 1587.292 213.733 1672.719 249.688 53.468 21.972 81.125 43.945 111.547 100.874C1805.776 415.48 1851.02 560.966 1920 800V0z" fill="${n}" fill-rule="nonzero"/></svg>`,28:`<svg viewBox="0 0 1920 800" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><g fill="${n}" fill-rule="nonzero"><path d="M1920 0H0v12.984c1029.719 130.503 1587.292 213.733 1672.719 249.688 53.468 21.972 81.125 43.945 111.547 100.874C1805.776 415.48 1851.02 560.966 1920 800V0z"/><path d="M1920 0H0v13c996.788 159.826 1536.916 257.717 1620.386 293.672 52.243 21.972 79.265 43.945 108.99 100.874L1920 800V0z" opacity=".25"/></g></svg>`,29:`<svg viewBox="0 0 1920 144" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0 0h1920v70c-96-31-184 1.639-289 21-145 28-245 41-373 50-66 4-150 7-327-30-171-31-301-83-399-83-114 4-258 70-362 77-44 .667-100.667-11-170-35V0z" fill="${n}" fill-rule="nonzero"/></svg>`,30:`<svg viewBox="0 0 1920 99" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M781.659 67.679c5.394-.297 18.088 1.159 22.66-1.526-2.846 1.667-19.23.32-21.954.394-5.954.164-11.903.198-17.902.532-10.396.578-20.684.776-31.023 1.7-30.343 2.713-60.606 3.909-90.983 4.702-.776.26-6.442-.068-9.11 1.099.969-.476 2.062-.742 3.212-.923-12.678.311-25.374.572-38.12.821-18.571.363-37.346.906-55.894 2.175-13.194.907-26.309 1.303-39.486 2.204-8.555.584-28.417 4.827-35.323 1.094 13.602-3.898 29.658-1.78 43.702-2.742 9.608-.663 19.108-.765 28.694-1.422 19.601-1.343 38.993-2.793 58.737-3.473 37.118-1.275 75.018-5.218 112.006-5.382 23.33-.102 47.316-2.974 70.504-3.501 16.673-.38 33.646-.816 50.137-2.232 36.036-3.093 72.702-.93 108.795-3.853 12.588-1.02 25.703 1.79 38.359-.204 7.177-1.133 13.97-2.045 21.873-2.039 11.795.006 23.403-.85 35.357-.872 8.514-.017 17.868.702 26.167-1.541-15.942-2.187-31.974.39-48.012.238-20.367-.199-40.835-.3-61.264.611-34.348 1.53-69.042 1.292-103.509 3.014-116.714 5.824-233.554 11.914-350.342 16.225-61.75 2.278-123.75 7.45-185.28 10.475-27.222 1.343-54.086 3.938-81.29 5.36-10.345.538-97.176 10.905-98.564 6.175 14.543-4.782 33.057-2.963 48.398-3.949 11.025-.708 22.032-1.983 33.051-2.884 29.414-2.402 59.428-4.005 89.034-5.772 77.2-4.612 154.037-11.557 231.305-14.09 35.64-1.167 71.336-3.2 106.987-4.436 25.947-.9 51.82-3.603 77.784-4.231 16.236-.391 33.232.203 49.4-2.51-27.453-2.93-57.241 2.187-84.847 3.104-21.766.726-45.282 5.564-66.827 3.337 2.577-1.15 7.755.77 9.778-1.2-.011.005-14.713-.879-16.237-.743-4.214.38-8.424 1.042-12.707 1.32-13.947.906-27.799.855-41.74 1.796a1687.78 1687.78 0 0 1-58.766 2.934c-70.226 2.278-140.865 8.544-211.154 13.444-33.6 2.345-66.962 2.748-100.602 5.846-5.292.488-55.961 3.405-89.006 6.442 4.005-.465 7.127-.884 8.078-1.23-6.158-.645 6.787-1.45 9.795-1.625 7.666-.448 15.297-1.57 22.967-2.04 5.773-.351 11.37-.799 17.098-1.479 11.868-1.405 33.623 1.45 43.713-4.713a5.205 5.205 0 0 1-1.966-.397c4.86-2.237 11.84-.215 16.927-1.852-14.191-3.348-29.827 2.674-43.203 3.444-12.837.743-26.06 1.87-38.863 3.388a1546.6 1546.6 0 0 1-39.815 4.192c-9.704.901-19.069 2.827-28.915 3.75-9.976.936-19.953 1.865-29.93 2.8-2.798.26-16.372-.307-19.216 1.217 2.47-2.243 15.79-1.988 18.656-2.996-5.58-.697-12.81.373-18.469.94-2.49.25-10.413-.36-13.559.166C.342 96.926.024 64.672 0 0h1920v25c-1.187.402-.707.537-.245.687-3.116-.769-12.798 2.086-16.785 2.523-10.299 1.122-21.3.992-31.55 1.014-15.239.034-30.353 3.858-45.933 4.793-14.174.85-28.643 2.034-42.664 2.43-5.966.17-12.571-.589-18.554.38-1.575.255-17.992 3.037-11.313 1.348-32.298-1.847-65.824 1.819-98.139 2.13-13.998.136-28.2 1.275-42.12.788-13.047-.459-33.374-3.507-45.424 1.586 5.569-2.35 21.114.725 28.252.46 9.66-.363 19.075-.771 28.683-.941 21.386-.38 42.705-.516 64.164-1.145 28.32-.833 56.279 2.567 84.877 1.558 11.137-.396 21.408-.334 32.625-.668 6.852-.203 20.95-4.053 27.32-.207-2.45-1.183-23.322 1.227-26.283 1.272-4.504.068-32.07-1.711-33.94.895.787-.952 7.387 1.382 7.909 1.609-2.182.3-8.034 1.393-9.847.612 2.074 1.02 4.674 1.507 7.54 1.7-1.455.243-2.786.424-3.914.498 3.96.13 10.13-.425 11.212-.544 3.25-.257 6.224-.57 9.14-.922l.11-.002c.403-.05.8-.096 1.202-.147a2.793 2.793 0 0 0-.009-.008c4.738-.572 8.317-.986 11.249-1.023 8.509-.108 16.304-.793 24.592.266-19.21 6.164-43.916 3.875-64.05 4.68-17.285.691-34.677.663-52.035 1.382-28.173 1.167-56.392.748-84.616 1.875-10.061.403-20.344.38-30.456.873-14.776.718-35.283 5.175-49.465 1.064 1.823.39 13.264.051 20.669-.792-8.186.277-21.726-1.326-25.375-1.088-3.116.204-19.601 1.966-14.457.493-15.93-2.634-34.87.736-51.05.714-16.904-.023-33.243 1.49-50.091 1.512-15.914.023-31.6.255-47.531.64-21.21.516-42.416 1.02-63.626 1.61-11.585.317-23.165.656-34.74 1.013-2.554.08-21.289-1.036-25.311.142 3.722-1.79 15.08-1.405 18.633-2.272-3.213-6.078-58.539-.985-64.6-.436-18.917 1.717-37.102 2.22-55.758 1.853-63.342-1.258-127.586 1.161-191.155 3.461-32.082 1.161-64.34 1.314-96.512 2.912-14.34.708-28.36.844-42.756 1.632-5.601.305-45.334 3.228-46.227.471a5.557 5.557 0 0 0 .013-.002zm-559.447 11.45c8.345-2.776 19.947-2.804 28.864-3.263.25.023-26.462 3.518-28.864 3.263zm48.25-4.583c5.065-.991 10.413-1.161 15.512-.73-4.521 1.46-10.792 1.342-15.511.73zM630.34 61.822c.895 2.249 11.036-1.042 12.497-.584-1.427-.566-4.934-.164-6.31-.328-.363-.012-6.42.334-6.187.912zm18.429-.952zm14.242-.453c5.099-.159 11.336.56 16.531-.606-2.356.096-5.886-.47-7.03-.606-5.039.316-19.504-1.012-23.706 1.641 2.032-1.256 11.193-.339 14.205-.43zm139.092-4.951c1.394.113 1.15.243-.72.396-1.399-.102-1.155-.238.72-.396zm12.82-.833a1.207 1.207 0 0 0 0 0zm31.833-.895c-4.152-.244-8.798-.068-12.905.657 2.906.606 6.09-.153 9.053.283 1.28-.311 2.566-.629 3.852-.94zm10.294-.006c-1.988.425-3.84.646-5.297-.244 2.244-.453 3.705.046 5.297.244zm-44.934 11.71c-1.052.02-2.09.127-2.076.465.555.068 1.518-.077 2.39-.216l-.314-.249zm20.54-.736c-1.383-.97-11.642-.618-12.741.657-.204.362 8.39.09 9.177.192 1.808.686 2.992.403 3.564-.85zm27.986-.998c-4.974-.764-17.806-1.235-22.338.986 2.759-1.286 10.786-.26 14.033.176 2.923.102 5.512-.391 8.305-1.162zm208.644-11.24c-.737.409-3.224-.65-4.346.018.499.583 3.881.294 4.346-.017zm46.777-1.206c-8.962-2.481-24.666-1.076-33.85-.074.64 1.116-.056 1.547-2.095 1.286 1.535 1.983 33.215.918 35.945-1.212zm25.431-.946c-1.41-.924-13.064 1.41-11.024 1.58.668-.022 11.194-1.467 11.024-1.58zm56.607-.98c-.402-1.74-11.421-1.054-12.367.25l3.484.662c.753-.028 9.07-.113 8.883-.912zm28.043-.958c.062.844 8.447.777 9.24.93 3.807-.669-9.495-3.502-9.24-.93zm35.713-.657c-4.674-.957-11.993-.833-16.525.182-.068.005-4.306.583-3.269.929 4.442 1.49 15.534.696 19.794-1.11zm18.078-.606c-3.2-1.173-4.515.074-7.438.737.696 2.096 8.934-1.117 7.438-.737zm19.89.09c-1.971.035-2.3-.073-.985-.328 1.949-.04 2.277.068.985.329zm6.311 8.011c-5.63-.147-12.208-1.127-17.709.63 0 1.495 5.971.237 6.696.084 3.58-.017 7.694.578 11.013-.714zm22.248-.362c-1.932.04-2.26-.068-.986-.323 1.988-.023 2.317.085.986.323zm12.837-.13c-1.852.096-2.09.22-.708.373 1.88-.107 2.119-.232.708-.374zm18.429-8.73c-1.734-2.488-9.251-1.162-11.886-.539-13.596.334-28.615-.974-41.967 1.377 7.97 1.631 16.53.56 24.57.119 9.727-.538 19.714.968 29.283-.958zm7.348-.414c-1.745.124-4.572.272-5.195-.402-.306-.335 2.81.113 5.195.402zm.589-.102c-.142.013-.198.037-.198.068.204-.017.392-.031.548-.042l-.35-.026zm.935.36c.409.038.827.028 1.065-.083-.071.04-.322.041-.689.017l-.376.066zm9.925.439c-3.875-1.893 16.628-1.167 16.514-1.11-4.107 2.124-12.01 1.002-16.514 1.11zm19.522 7.172c-1.223-.221-2.453-.436-3.676-.657-.391-.023-6.481-.006-6.306.68.357 1.41 8.963.345 9.982-.023zm3.847.13c-1.388-.153-1.144-.278.73-.374 1.412.153 1.162.278-.73.374zm17.964-1.422c4.42 1.156-5.512 2.668-6.05 1.144-.255-.725 5.337-1.155 6.05-1.144zm2.017-7.438c2.827-.595 5.903-1.145 8.787-.539-5.886 1.473-10.418 1.32-16.384.726 2.527-.063 5.07-.193 7.597-.187zm12.407 8.435c-1.564.623-9.5 1.603-10.288-.294 3.501-.856 7.376-1.598 10.288.294zm4.997-8.107c-1.61-.255-2.997-.782-5.297-.402 1.45.946 3.28.76 5.297.402zm9.88 7.325c-.674-.447-1.445-.544-2.306-.3a4.858 4.858 0 0 0-1.756.133c.976-.14 3.035.68 4.062.167zm-4.328-.09a5.2 5.2 0 0 1 .266-.077.874.874 0 0 0-.266.077zm16.141.202a3.06 3.06 0 0 0-.726.189c.26-.046.52-.09.782-.134l-.056-.055zm1.007-.106l.42-.068c-.114.006-.182.006-.278.006-.051.017-.09.04-.142.062zm-.934.436c.237-.147.566-.272.872-.402.714-.011.969.13-.872.402zm6.112-.9c-1.342-.556-3.37-.238-4.906.34 1.745-.097 5.116-.256 4.906-.34zm7.507-7.439c-4.266 1.745-16.197-4.651-20.117-.833-.136.12 8.123 1.031 9.25 1.218 2.216-.04 8.51.697 10.867-.385zm23.17-.47c-.555.277-2.453-.096-2.17-.238 1.185.113 2.216.22 2.17.238zm-3.133-.521c-.356-.063-.73-.04-1.082-.142-.062-.09.539.017 1.082.142zm-1.404 8.039c3.132 1.11 8.067.753 11.319.005 2.128-.04 11.108-1.363 13.483-.59-7.455-2.427-17.615 2.85-24.802.585zm35.48-8.136c-2.13-1.779-8.118-.651-10.576-.453 2.034 1.847 8.384 1.043 10.577.453zm4.97-.402c-.414-.821 8.916-1.218 9.432-1.184 2.056 2.572-8.764 2.51-9.433 1.184zm237.717 2.232c-1.394-.175-1.156-.294.714-.345 1.41.164 1.172.277-.714.345zm-70.978 2.064a2.374 2.374 0 0 0-.545.259c.173-.09.355-.177.545-.26zm0 0c3.221-1.087 11.33 2.36 14.06 2.604 6.118.556 12.242-.464 18.326-.617 7.592-.187 15.908.26 23.579-.737-7.931-.402-17.313-1.439-20.655-1.416-8.98.055-27.991-3.006-35.31.166zm-67.14 1.403c2.538-.187 5.801-.708 7.914.555-2.056.476-7.081 1.881-7.914-.555zm-20.485.403c5.421-1.434 12.525-.8 18.032.305-5.914.726-12.192.595-18.032-.305zm.028 3.96c-2.181.022-6.215.674-8.436-.074.04.006 10.69-.232 8.436.073zm-10.038-3.596c-1.046-.026-2.083.038-2.086.378.573.104 1.52-.002 2.38-.109l-.294-.27zm-12.696 3.725c-1.562.13-3.028.194-3.61.006 1.09.296 2.352.326 3.688.234l-.078-.24zm-33.34-3.138c.9-.073 1.915-.164 2.94-.22-4.18.453-9.093 2.203-12.622.741 1.79.499 7.982-.487 9.682-.52z" fill="${n}" fill-rule="evenodd"/></svg>`,31:`<svg viewBox="0 0 1920 359" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M1900.821 32.686c-8.161 5.646-17.284 11.593-25.72 16.295-7.624 4.25-11.488 9.048-18.584 13.977-5.919 4.109-10.999 9.104-16.88 13.298-13.43 9.594-27.453 20.046-41.722 27.566-5.032 2.649-10.602 4.59-15.682 7.596-5.956 3.525-4.967 6.324-11.658 9.547-.773-.895-.226-1.686 1.65-2.384-18.077 6.503-35.286 17.746-52.787 26.85-13.788 7.182-27.765 12.535-41.901 18.378-13.242 5.476-25.192 13.402-38.782 16.992-7.134 1.885-13.157 4.977-19.716 8.115-3.619 1.734-7.172 2.328-10.687 4.486-2.931 1.79-9.274 4.166-11.234 6.946-.32.462 11.29-3.695 12.515-4.119 4.618-1.592 9.67-3.345 14.24-5.504 8.86-4.194 17.323-8.387 26.069-12.534 18.811-8.925 39.253-14.467 57.941-24.221 9.161-4.778 17.172-9.962 26.662-13.76 16.342-6.54 32.402-10.612 48.715-18.443 5.41-2.602 11.526-4.854 16.578-8.087 2.554-1.64 4.938-5.127 7.577-6.399 1.386-.669 5.57-.952 7.191-1.517 4.203-1.48 7.954-4.307 11.611-6.588 5.193-3.242 16.512-14.598 23.326-12.516 1.78.84-9.49 6.767-10.33 7.257-4.184 2.432-8.52 5.334-12.902 7.728-2.86 1.564-28.342 13.533-30.951 16.368 1.421-1.03 7.593-1.03 8.408-.695-1.338 1.027-7.672 5.448-8.868 5.268 2.035.481 6.851-1.592 11.799-4.156-5.136 3.384-9.905 6.805-10.395 6.362 1.216 1.102 12.336-5.25 13.816-6.277.961-1.037 9.227-6.22 9.622-5.928-1.507-.622-.282-1.338.472-1.762 3.317-1.876 6.54-4.354 10-6.249 7.925-4.354 13.1-8.67 21.364-11.224-2.818 4.1-12.138 10.763-16.276 14.212-5.833 4.853-13.194 8.727-19.81 12.402-8.246 4.58-16.512 9.293-24.664 13.826-15.098 8.388-31.242 14.75-46.415 23.175-26.021 14.448-53.654 25.399-80.485 38.197-9.312 4.43-19.509 7.144-28.679 11.856a259.32 259.32 0 0 1-18.802 8.765c-5.871 2.45-11.714 4.957-17.652 7.247-.688.274-10.442 3.412-10.235 3.082 3.1-4.91 21.582-6.427 25.145-12.11-3.27 2.667-24.334 8.66-27.35 9.82-5.843 2.243-12.045 8.576-19.17 8.143.575-.528 1.15-1.046 1.725-1.574-5.965.33-13.203 4.693-19.094 6.38-4.985 1.433-10.357 3.46-14.966 5.297-8.2 3.26-16.719 5.975-24.786 8.897-23.995 8.68-47.64 18.227-72.644 24.06-17.718 4.138-35.342 9.406-52.947 14.59-8.387 2.46-16.737 5.08-25.163 7.398-10.97 3.025-22.12 5.503-33.193 8.133-2.036.48-13.91 2.563-22.732 4.43 7.248-2.837 14.024-8.549 1.33-6.579-10.349 1.612-21.121 3.977-31.168 6.4-11.507 2.78-22.628 5.305-34.088 8.208-4.533 1.15-8.5 2.545-13.477 2.931-7.483.575-11.837 3.553-18.5 4.184-30.96 2.922-64.303 8.35-96.073 12.648-7.992 1.084-14.4 3.874-22.704 3.968-4.552.056-8.039 1.074-12.365 1.63-4.721.603-9.188-1.121-13.75-.839-18.265 1.15-36.209 6.598-54.897 6.701-17.181.085-35.22 2.818-52.363 4.241-14.09 1.169-29.037.396-42.89 1.527-15.673 1.282-31.968 1.687-47.415 3.016-2.875.245-69.977 2.158-70.712-1.932 4.967-.141 19.952 2.243 23.816-1.103 1.63-1.413-7.125-.358-6.918-.358-6.04.066-12.647-.17-18.84-.32-5.946-.151-12.034-.424-18.15-.255-10.575.292-20.876-.085-31.384.81-13.487 1.15-26.917-1.903-40.365-1.988-12.3-.085-21.507.142-33.533-.839-10.828-.876-21.393-2.016-32.297-1.64-12.921.453-25.512-2.195-38.367-3.873-20.367-2.658-40.893-4.948-61.363-6.503-11.413-.867-22.468-2.535-33.872-3.411-8.086-.623-31.996.179-36.529-5.797 7.521-1.47 18.689 1.292 26.257 2.347 5.834.81 11.13 1.536 16.85 2.158 8.37.915 16.626 1.574 24.834 2.8 26.351 3.91 52.711 4.928 79.345 7.294 11.743 1.037 24.004-.18 35.813 1.725 8.604 1.376 18.16.433 26.878.64 21.743.519 42.335 2.432 64.219 1.848 23.09-.613 45.105-.424 67.828-1.056 7.87-.226 14.975-.047 22.873.245 10.263.387 21.016-1.074 31.327-.763 34.88 1.055 69.835-4.873 104.329-5.702 13.024-.311 25.512-.066 37.405-4.08 5.702-1.923 14.392-2.036 21.064-2.922 12.092-1.603 23.75-2.102 36.313-2.573 7.671-.283 18.01-1.093 24.833-4.6-15.692-2.374-31.035 2.319-46.755 3.073-20.752.99-42.589 1.395-63.313 4.656-15.014 2.365-30.696 1.47-46.058 2.695-18.34 1.46-36.99 1.197-55.36 1.838-54.84 1.913-110.275 2.535-165.342 1.084-28.217-.745-57-1.706-85.367-3.808-26.238-1.95-52.193-5.56-78.506-7.568-14.212-1.083-29.696-1.96-43.861-4.184-68.591-10.772-137.57-22.44-205.538-34.927-27.633-5.08-54.907-11.121-82.314-17.473-10.49-2.432-86.893-22.6-86.44-25.569 8.66-.999 21.232 4.694 29.724 6.739 5.457 1.31 10.404 3.204 15.71 4.655 9.368 2.554 18.934 4.543 28.378 6.814 24.654 5.928 49.082 12.752 74.368 17.407 85.3 15.72 170.583 34.513 257.08 41.091 35.748 2.724 71.023 8.708 106.987 9.877 32.006 1.037 64.718 5.589 96.78 4.118 14.495-.669 30.762 1.753 45.473-1.272-15.362-3.581-32.213-.283-47.537-.876-14.334-.556-28.895-.198-43.324-1.65-9.302-.933-18.802-.01-28.132-.66-11.13-.782-27.661.962-38.697-2.28 2.545-1.395 8.425 1.583 10.273-.735 1.564-1.734-21.846-2.696-24.39-2.62-13.883.396-27.417-3.176-41.026-4.6-20.554-2.139-41.891-3.43-62.21-5.984-19.264-2.422-38.876-3.544-57.358-8.397-17.69-4.646-36.727-6.484-54.973-8.84-17.869-2.31-34.277-3.29-51.325-5.664-17.247-2.404-33.787-10.179-50.959-12.045-39.733-4.316-75.744-20.489-114.93-28.028-10.905-2.092-21.734-6.597-32.487-9.632-7.766-2.196-16.7-2.582-24.683-5.042-5.72-1.762-55.41-16.859-55.783-16.06 1.094-2.355 32.9 8.162 37.707 7.634-1.291-.31-2.026-1.008-2.224-2.092 3.534-2.11 14.269 4.486 17.897 5.457 8.755 2.337 17.586 4.854 26.21 7.172 7.85 2.12 16.21 2.997 24.258 4.929 7.38 1.772 22.26 8.708 29.093 5.523a3.961 3.961 0 0 1-1.715-1.376c5.052-1.508 11.96 4.109 17.256 3.506-5.211-4.59-16.247-6.41-22.948-7.446-7.747-1.197-11.913-1.385-19.858-3.383-12.996-3.27-26.595-7.2-39.856-9.575-6.418-1.15-13.119-1.678-19.254-3.13-7.323-1.733-13.854-4.985-20.866-7.19-10.555-3.308-21.412-4.6-32.41-7.888-8.294-2.48-16.587-4.967-24.881-7.446-1.187-.348-20.96-7.323-21.412-6.89 1.724-2.016 16.964 3.563 19.998 3.309-4.015-2.969-12.977-5.372-17.84-6.776-2.488-.717-5.485-.415-7.85-1.423.047.013-4.306-2.565-6.089-3.814V0h1920v14l-7.987 8.713c2.323-1.072 3.867-1.758 3.85-1.694-.319 1.441-3.15 2.449-5.387 3.37L1909 26l-2.882 1.589c-1.546 1.69-3.095 3.574-5.297 5.097zM258.347 249.41l.01.043c.835.17 1.669.34 2.503.496a85.479 85.479 0 0 0-2.513-.539zm0 0a95.544 95.544 0 0 0-2.492-.46c.835.16 1.669.332 2.503.503l-.01-.043zM1795.36 118.013c-.143.155-.217.282-.215.38.005-.153.1-.29.268-.412l-.053.032zM257.646 237.197c-1.187-.631-2.384-1.423-3.628-1.932-7.973-1.526-19.094-1.13-26.549-4.599 4.6 3.308 13.147 3.506 18.613 4.675 2.592.556 9.302 2.865 11.564 1.856zm41.204 8.558c-5.485-3.384-11.752-4.392-17.775-5.099-3.59-.414-8.444-.348-11.714-2.592-1.725-.31-6.918-2.28-8.53-1.244-.706.547 15.947 4.77 17.615 5.165 5.664 1.338 14.269 4.505 20.404 3.77zm-61.89 1.8c.96-.198 1.8-.01 2.506.594-.951.207-1.79.01-2.507-.594zm30.912 17.906c-.49-2.808-14.759-2.78-16.983-3.901-4.006-1.282-8.953-1.574-13.034-2.413-5.221-1.074-11.036-3.355-16.559-2.62 3.148 1.875 46.651 9.632 46.576 8.934zm33.306-5.74c-.208.123-19.622-3.382-19.905-3.665 1.64 1.668 6.513 1.696 8.709 2.818 1.96.612 9.34 1.828 11.196.848zm192.447 28.566c.18-.113-.735-.376-1.979-.688-.395.038.65 1.48 1.98.688zm26.474 2.78c-.782-.49-1.63-.546-2.545-.178.792.461 1.64.527 2.545.179zm117.391 39.517c.471 3.13 11.913-.075 12.977.623-1.225-.971-4.74-.736-6.465-1.348-.5-.113-6.71-.594-6.512.725zm53.135 2.498c-3.12-.34-6.22-.48-9.264-1.451-4.543-.104-21.271-3.176-24.73-.274.726-.622 13.458.971 14.768 1.065 5.693.424 13.703 3.007 19.226.66zm142.894 2.865c-1.602-.122-3.694.198-4.675.226-1.145.028-7.896 1.116-8.779.855 3.264 1.336 9.876-1.306 13.454-1.081zm-13.515 1.056a3.7 3.7 0 0 1 0 0zm42.41-.82c-4.391-.33-9.075-.057-13.41.735 2.817 1.055 6.465.141 9.424.83 1.329-.529 2.658-1.047 3.986-1.565zm10.697-.029c-1.46-1.394-3.1-1.168-5.504-.395.066.292.132.574.208.857 1.819.48 3.59.33 5.296-.462zm-44.578 17.992c-.292-.189-4.457-.613-4.439.396.934.235 4.722-.17 4.44-.396zm19.292-.18c-1.244-1.45-12.45-1.328-13.364.283-.556 1.48 8.718.67 9.623.905-.424.038 4.769.038 3.741-1.187zm29.292-1.206c-4.006-.97-20-.923-23.383 1.546 1.63-1.093 12.233-.396 14.712.386 3.26.16 5.749-.64 8.67-1.932zm265.345-33.136c-5.71-1.706-13.76.923-19.282 1.074-5.023.142-10.96 1.621-15.786 3.148-2.186 2.441 7.71-3.44-1.923 2.394 2.083 3.242 16.107-1.659 19.99-2.375 3.572-.66 14.994-.943 17.001-4.241zm84.585-13.722c-.697-2.14-12.073-.51-12.76 2.007 1.262.217 2.535.424 3.797.641.773-.141 9.49-1.037 8.963-2.648zm44.823-10.216c.528-.735 16.615-1.046 20.102-4.543-4.363-.565-13.279 1.357-16.888 3.468-.67.17-2.78.349-3.214 1.075zm13.364-61.523c3.94-.943 17.378-1.263 18.18-6.022.366-1.12-21.57 4.895-22.529 4.938 1.881-.083 2.663 1.008 4.349 1.084zm17.718 55.152c1.263 2.827 6.003-1.744 7.389-2.63l-.396-.848c-4.826.16-3.968 1.687-6.993 3.478zm159.83-102.774c6.031-.189 15.21-2.064 19.772-6.003-5.777-.066-14.825 2.95-19.773 6.003zm-37.548 10.848c.613.197 1.216.395 1.82.593 1.945-.306 11.61-3.273 12.64-4.922-1.286 2.024-13.967.508-14.46 4.329zm-88.543 23.72c3.337 3.365 8.633 1.273 11.668-1.696 7.238-2.77 15.71-3.666 23.08-5.88 2.253-.679 20.508-3.808 18.237-6.748-1.33-1.838-26.7 6.653-30.46 7.54-3.233.763-23.128 6.116-22.525 6.785zm3.506 73.663c-5.786.848-13.222.706-18.066 4.457.716 2.224 5.767-.49 6.955-1.159 3.967-1.48 7.86-.264 11.111-3.298zm50.94-27.737c-2.385-3.09-9.764.443-12.233 2.159-5.542 1.63-11.065 3.28-16.295 4.825-8.398 2.478-18.161 3.43-25.833 7.228 9.029 1.113 18.66-2.704 27.039-5.758 9.057-3.308 18.971-3.251 27.321-8.454zm31.524-68.13c-1.856 1.763-13.495.604-17.19 4.138 1.31.057 2.62.104 3.92.151 4.524-1.338 9.727-.763 13.27-4.288zm-12.365 63.786c3.808-1.122 13.732-2.554 16.239-6.004.245-.33-23.297 2.931-16.239 6.004zm22.892 6.521a573.079 573.079 0 0 1-4.024-.103c-.697.085-6.625 1.564-6.126 2.705.82 1.866 9.255-1.725 10.15-2.602zm23.42-7.162c-.603-.16-1.197-.33-1.8-.5-.97.142-6.314 2.12-5.645 3.384 1.112 2.082 7.992-1.848 7.445-2.884zm27.953-8.265c-.782-.462-1.592-.377-2.45.254a3.433 3.433 0 0 0-1.914.971c.239-.237 3.722-.304 4.364-1.225zm6.755-2.088c.307-.057.577-.25.813-.58-.372-.212-.711-.287-1.018-.23l.205.81zm6.196-1.415c.008.048.13-.079.385-.475.042-.056.04-.082.018-.094l-.403.57zm-1.541.292a.9.9 0 0 0-.204.148.699.699 0 0 0 .32-.18l-.116.032zm6.346-3.264c.547.15-2.271 1.272-4.222 2.017.791-1.065 2.346-2.545 4.222-2.017zm3.826-14.222c-2.205 2.743-18.82-.282-20.385 5.07-.452 1.405 8.605-.942 9.783-.998 2.412-.867 9.066-1.989 10.602-4.072zm288.408-112.038c-2.8.519 1.395-1.027 1.376-.99-.462.33-.914.66-1.376.99zm-66.122 35.135c.052-.108.11-.215.171-.32-.073.1-.13.208-.171.32zm15.418-2.894c6.38-1.8 11.97-6.248 17.662-9.386 7.285-4.015 18.65-7.465 24.249-13.59 1.517-.726 7.228-2.328 7.813-4.072.537-1.753-11.215 3.742-11.705 3.977l-18.887 9.048c-4.08 1.95-7.822 4.552-11.649 6.56-5.292 2.77-19.706 4.88-22.73 10.036 1.785-2.477 12.93-1.912 15.247-2.573zm-59.506 22.949c-1.282.528-4.213 1.225-5.805 2.29 3.006-1.658 11.61-2.026 13.269-4.768-.068.113-7.125 2.337-7.464 2.478zm-50.958 27.67c-1.329.49-2.686 1.216-3.647 1.612-.207.084-7.61 3.912-7.95 3.92 3.515.11 8.102-4.09 11.597-5.532zm5.787-1.658c2.12.254 6.616-2.423 8.303-3.11 2.309-1.527-8.313 3.11-8.303 3.11zm-114.312 22.853c-.313.027-.525.081-.45.161.254.028.507 0 .757-.041l-.307-.12zm1.576.218c.019-.02-.038-.02-.038-.038-.688.104-1.347.207-1.847.283.641.028 1.291.066 1.885-.245zm2.498-.349c-.566.848-2.658.66-1.998.226 1.083-.16 2.035-.283 1.998-.226zm-.698 13.354c3.091.622 8.869-1.3 11.31-3.61 2.325-.818 11.347-5.54 13.16-5.24-7.51-1.247-17.742 9.925-24.47 8.85zM1824.46 54.306c-.202.131-.415.273-.637.424.225-.124.45-.245.675-.366l-.038-.058zm0 0l.038.058c.598-.32 1.197-.634 1.785-.962.075.018.462-.217.99-.575-.33.179-.641.377-.971.565-.225-.054-.914.312-1.842.914zm30.718-22.411c-2.054-1.847-11.111 8.303-13.486 10.056-1.3.961-11.253 8.755-14.42 10.885 10.415-5.787 19.849-12.016 27.907-20.941zM151.14 216.228c2.618 2.376 20.332 6.06 24.47 5.023-2.542.587-9.873-3.339-13.509-2.997-.622-.15-10.31-1.526-10.96-2.026zm24.608 4.986zm1249.8-32.77c-.606.102-1.19.133-1.727.048.466.15 1.01.155 1.614.054l.113-.102zm0 0l-.113.102c.603-.101 1.265-.309 1.967-.582-.622.203-1.249.377-1.854.48zm5.435-1.733c.283-.095 8.906-3.45 9.33-3.356-3.44-.885-8.85 3.026-12.911 4.618 1.291-.424 2.563-.96 3.581-1.262zm-206.857 57.234c1.97.604 6.738-1.3 8.434-1.705 2.865-1.33-9.471 1.46-8.434 1.705zm12.685-3.034c1.404.433 8.01-1.81 5.57-1.932-1.244.15-4.92 2.054-5.57 1.932zm-56.943 9.509c.547.726 3.958.047 4.401-.537.16-.283-3.986 0-4.4.537zm-987.1-25.644c-2.11-.528-4.231-1.093-6.333-1.612-.99-.593-3.12.368-1.583.434 1.017.452 1.545.311 1.583-.434.283.387 2.96.98 6.333 1.612z" fill="${n}" fill-rule="nonzero"/></svg>`,32:`<svg viewBox="0 0 1920 221" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M3.747 220.063L0 221V0h1920v63l-33-45-402 6-333 23-351 31-349 50-149 26-247 54-44 10-8.253 2.063c-1.615-.021-3.064.052-3.747.442 8.343-4.816 20.442-4.762 29.507-7.39 8.358-2.42 16.862-4.048 25.282-6.291 18.874-5.032 37.035-10.41 56.348-13.098 7.958-1.106 15.264-4.763 23-6.3 3.48-.69 6.96-1.605 10.463-2.135 7.098-1.076 14.027-2.105 21.11-3.55 16.117-3.287 33.24-8.603 47.068-13.597 8.842-3.188 19.889-4.609 29.153-5.477 5.07-.476 44.71-6.13 45.056-9.172-.039.407-28.209 1.413-33.125 3.887 3.549-2.789 17.884-3.28 22.047-4.064 8.42-1.59 17.538-4.402 26.08-4.494-1.39.092-2.465.645-3.226 1.66 2.144 3.218 16.525-2.42 19.467-2.927 6.069-1.053 12.222-.984 18.13-3.15-5.762.161-11.078 1.037-16.747 2.105-2.136.407-8.359.576-11.093 1.36 3.88-1.86 10.14-1.875 14.096-2.62l25.712-4.84c19.62-3.687 39.325-6.952 58.99-10.378 36.283-6.315 72.62-13.382 109.117-17.608 23.407-2.704 46.715-8.504 70.345-10.486 28.738-2.404 57.008-8.258 85.463-12.36 11.892-1.72 23.814-3.94 35.767-5.162 14.957-1.53 29.945-3.227 44.917-5.17 6.8-.884 13.598-1.76 20.396-2.643 3.895-.507 10.525.023 14.673-1.214-3.564.622-10.194-.092-12.445.185-5.485.668-10.947 1.505-16.432 2.143-1.16.138-6.284-.062-7.152.538 2.512-2.55 13.95-2.105 17.615-2.597 6.315-.845 12.414-1.529 18.514-3.403-10.286-1.168-20.527.008-30.89 1.367-16.462 2.167-32.91 3.388-49.38 5.708-20.365 2.865-40.953 4.863-61.103 8.128-25.958 4.202-52.707 6.345-78.672 10.962-18.491 3.28-37.527 6.468-56.156 8.181-23.968 2.197-48.812 6.668-72.312 11.639-15.118 3.195-30.682 4.202-45.9 6.868-14.458 2.527-28.93 5-43.38 7.59-10.371 1.85-20.711 3.879-31.06 5.83-6.96 1.314-13.965 3.011-20.987 3.964-3.254.442-7.871.048-10.904 1.37 8.277-4.042 21.74-4.864 31.062-6.624 5.431-1.022 10.878-1.975 16.294-3.073 2.212-.454 7.236-2.566 11.123-3.61-9.432 1.336-31.276 4.976-31.573 6.229.494-2.09 17.085-3.925 19.044-4.94-22.616.876-45.186 9.104-67.395 12.062 10.694-3.703 21.648-5.97 32.772-8.067 101.004-19.074 202.7-37.573 304.54-52.276 45.555-6.576 91.094-14.58 136.634-18.614 11.692-1.03 22.984-3.749 34.615-4.57 10.24-.723 20.511-2.65 30.567-3.834 6.537-.776 11.846-2.566 17.6-3.365 4.962-.683 10.309.377 15.402-.092 5.3-.492 10.594-1.221 15.887-1.828l40.484-4.656c22.64-2.604 45.486-4.954 68.27-6.214 12.983-.715 26.02-2.49 39.118-3.188 25.827-1.383 52.36-3.519 77.965-7.206 21.51-3.096 44.426-2.113 66.243-3.987 29.169-2.505 58.506-2.82 87.59-6.215 22.263-2.604 44.849-.768 67.073-3.71 23.945-3.173 48.72-1.883 72.864-3.25 48.113-2.727 95.888-2.758 144.031-4.794 18.207-.768 36.498-.122 54.712-.637 16.655-.469 32.357-1.337 48.574-1.352 11.139-.008 22.708 1.552 33.793.445 16.033-1.59 32.396 0 48.65-.875 13.514-.723 27.41 1.275 40.647.115 7.09-.622 14.22.008 21.387.438 7.228.43 14.073-2.505 21.11-2.274 4.325.146 9.472 1.429 14.196 1.49 5.578.07 11.293-.622 16.932-.684 5.823-.061 11.9.853 17.753 1.537 4.74.553 6.968-.23 11.377-.715 2.543-.276 13.32.507 12.16-2.158 8.904-1.736 20.78-1.299 29.6.745-5.193.96-.338 1.352 2.051 2.09 2.712.837 5.447.66 8.166.683 5.224.039 10.862.584 15.664.822-.008-.223-.085-1.429-.146-2.596.3 3.549 2.243 1.551 3.664 4.878 2.159 5.047.507 15.256.692 20.695.291 8.873.591 17.746.89 26.619.108 3.165 2.336 10.04-2.865 8.965-.084.407-.13.975-.169 1.582-.046-.476-.1-.96-.115-1.398-4.24-.507-10.263 2.036-14.604 2.689-4.577.688-9.263.939-13.878 1.37.96-.012 1.82.307 2.57.95-2.304 3.218-13.29-1.199-16.078.092.568-.354 1.444-.592 2.473-.753-6.76.545-13.497 1.636-19.858 1.406-7.759-.284-16.178 1.951-24.06 2.274-7.267.3-14.696.276-21.925 1.436-8.588 1.375-17.976.784-26.295 3.657 7.774.576 15.28-.423 23.038-1.168 6.047-.581 16.017-3.725 21.95-2.076-1.815-.112-7.987 1.406-9.635 1.57l-16.624 1.612c-10.77 1.053-21.487 1.483-32.22 2.413-11.169.968-22.33 2.12-33.493 3.18-2.42.23-18.537.722-25.067 1.39 3.365-.722 8.405-1.95 7.898-2.243-6.622-.683-10.586.523-16.171 2.197 1.851.139 3.695.33 5.531.577-28.5 2.734-57.385 4.64-85.985 7.297-30.644 2.85-61.303 4.856-91.87 7.152 1.498-.307 2.796-.814 3.533-1.85.016-.024-10.401.122-11.753.337-2.917.465-9.636.22-12.31 1.736 3.123-1.768 10.332-.1 16.197.108-10.017.768-20.035 1.56-30.03 2.443-17.806 1.575-35.629 3.403-53.443 4.04-13.344.477-26.35 3.826-39.655 4.156-9.142.223-18.168 1.506-26.526 4.11 1.647.077 7.639.375 7.384.377 16.04-.085 32.41-2.005 48.441-2.743 7.582-.345 15.126-1.475 22.7-1.966 2.728-.185 5.232-.085 7.96-.13 5.83-.107 17.684-3.629 23.294-1.746-3.142-.933-12.917 1.7-16.05 1.983-4.733.43-9.273.515-13.966.63-12.66.307-25.436 1.813-38.065 2.466-15.725.814-31.32 2.458-47.03 3.365-16.831.976-34.031 2.558-50.909 2.827-10.97.177-22.109.492-33.056 1.314-15.464 1.167-31.45 3.58-46.899 3.84-17.054.292-34.354 1.383-51.37 2.758-20.227 1.637-41.806 4.034-61.979 1.629 4.087-1.652 9.595-.453 14.02-.676 4.51-.23 9.003-.837 13.513-1.068 7.49-.384 15.049-.799 22.57-1.075 25.035-.93 50.01-2.535 75.038-4.663 4.548-.384 107.165-3.718 107.234-6.691-.038.23-22.816 1.336-26.073 1.42-8.435.224-16.401-1.666-24.82-1.59-21.772.193-43.381 3.872-64.999 4.671-65.712 2.436-130.917 12.053-196.699 14.197-24.629.806-48.98 4.801-73.533 4.84-12.022.023-24.275.491-36.252 1.981-4.94.623-9.725 1.629-14.757 1.783-9.019.269-24.052 2.704-32.58-.254-.914-.315 3.619-1.867 3.242-2.082-4.27-2.458-13.697.984-18.437 1.468-8.043.822-15.986 1.367-24.03.683 13.345-3.35 27.503-4.21 41.108-5.131 6.176-.423 12.521-.162 18.706-1.03 8.004-1.121 18.997-.607 26.464-3.74-5.462-3.02-16.332-.57-22.562-.116-7.221.522-14.627 1.567-21.87 1.59-7.614.015-15.05.346-22.694.899-4.809.353-18.513-.983-22.178 1.237 6.23-3.772 17.047-.093 24.022-3.234-17.577-3.165-36.344 5.024-54.113 3.241 6.73-1.905 1.114-1.475-1.336-2.081-1.798-.446-3.987-1.13-5.17-1.522-2.635-.875-6.584-2.343-9.995-2.85-9.502-1.413-17.953-.153-27.678.53-13.551.953-27.67 1.706-41.145 3.534-5.209.7-9.703.914-14.996 1.022-3.518.07-18.675 3.403-21.387.914-.315-.284 10.702-1.582 11.116-1.652 3.987-.637 7.145-2.335 11.247-2.972 15.164-2.351 30.751-1.921 45.893-4.495 8.696-1.482 17.976-.061 26.595-2.42 10.163-2.78 21.671-3.879 32.664-6.068 18.06-3.595 36.751-5.362 55.058-7.544 16.032-1.905 32.403-4.363 48.297-5.062 7.013-.308 14.189-1.322 21.156-2.205 4.248-.546 8.773-1.537 12.553-2.574 1.702-.467 9.355-1.052 11.97-1.791-1.282.361-2.558.723-3.835 1.085 26.841-.6 53.552-5.194 80.454-7.26 35.36-2.712 70.537-4.379 105.767-8.312 18.698-2.09 36.628-4.064 55.45-4.471 19.811-.43 39.547-5.109 58.537-6.968-3.165-.453 3.272 0 3.618-.814-.07.161-22.409 1.49-23.868 1.736 1.128-.146 4.868.33 5.429.109-3.334 1.312-11.49 1.812-15.007 1.118 1.275.056 4.715-.967 6.205-.989-14.027-.284-27.74 2.474-41.552 4.202-16.67 2.082-33.648 1.936-50.456 3.358-28.762 2.427-57.923 3.625-86.654 7.459-40.43 5.393-81.26 2.581-122.152 6.399-6.261.584-12.584.707-18.829 1.49-4.901.615-10.102 2.95-14.972 3.135-5.677.215-11.815-.454-17.815-.116-10.617.6-21.34 2.267-31.904 3.55-17.83 2.166-35.829 3.572-53.774 5.907-5.447.707-10.932 1.736-16.41 2.128-8.98.638-23.63 5.354-31.987 2.235 16.094-4.978 35.022-4.57 51.685-6.345 7.029-.745 13.981-1.767 21.072-2.635 3.595-.446 5.96-1.805 9.395-2.32 4.133-.622 8.504.092 12.76-.469 27.148-3.556 54.373-4.509 81.437-7.705-3.495-2.058-9.725 1.813-12.898-1.183 3.134-.568 10.294-2.327 14.42-2.158-5.501-.968-13.828 1.09-18.883 1.46-3.972.291-7.982.476-11.992.714 3.81-.484 7.636-1.176 9.142-1.283 7.282-.53 14.242-1.46 21.44-2.428l1.268-.322c-2.381-2.59-21.226 1.267-24.621 1.728-2.735.369-15.072 3.45-16.724 2.028.553.653 2.32.791 4.502.715-2.105.169-4.218.276-6.3.553-5.123.676-10.055 1.375-15.271 1.751-14.043 1.022-27.218 3.08-40.969 2.604 8.381-2.88 18.514-2.427 27.24-4.74-20.057-.46-40.868 5.509-60.864 6.968-7.114.515-14.181 1.452-21.28 2.374-15.126 1.959-30.16 3.165-45.293 5.124 1.836.169 9.065 1.068 14.988 1.444-13.383.453-26.719.077-40.116 1.091-22.201 1.675-44.264 6.276-66.435 8.212-34.615 3.02-68.654 11.915-103.224 14.911-19.428 1.682-38.994 5.454-58.33 8.573-19.996 3.227-39.747 5.977-59.574 9.426-33.978 5.915-67.787 11.116-101.657 17.515-12.675 2.397-25.481 4.28-38.241 6.469-9.849 1.69-19.49 2.988-29.407 4.824-3.964.73-39.04 8.358-40.116 6.023 16.509-6.837 37.496-7.713 55.042-11.032 7.113-1.344 14.22-1.997 21.34-3.342 17.554-3.318 35.077-6.898 52.677-9.956 76.959-13.351 154.624-24.513 232.006-36.835 63.208-10.064 127.123-15.587 190.554-24.045-4.156-.154 2.166-.66 2.95-.753 2.258-.276 4.54-.169 6.79-.276 1.114-.054 2.136.092 3.765.015 12.114-.553 24.52-2.965 36.59-4.056 20.618-1.867 41.152-4.932 61.748-6.584C916.348 88.75 952.2 84.84 987.99 81.237c66.104-6.652 132.754-11.746 198.997-17.085-28.962-.407-58.983 3.795-87.891 6.238-15.18 1.283-30.52 2.62-45.532 3.603-16.063 1.052-32.61 4.97-48.689 4.386 4.11-1.736 12.553.584 15.964-2.412-1.083.83-11.001-1.144-13.974-.975-3.88.215-7.905.607-11.746 1.183-4.824.722-9.495 1.636-14.388 2.15-20.788 2.175-41.668 2.974-62.371 5.355-28.685 3.296-57.431 4.556-86.009 9.157-28.83 4.64-59.036 4.195-87.222 10.578-6.86 1.552-13.889.538-20.81 1.253-5.578.576-11.109 1.797-16.701 2.25-25.082 2.028-50.018 5.8-74.985 9.403-31.896 4.602-62.824 9.733-94.443 15.88-16.21 3.149-32.795 2.703-49.05 4.939-20.442 2.819-40.9 7.543-61.196 10.447-11.6 1.66-23.138 4.033-34.684 6.038-10.525 1.829-20.55 1.683-31.167 3.18-23.476 3.32-46.822 9.358-70.267 13.23-18.338 3.026-37.712 5.415-55.734 9.794-11.884 2.88-24.106 5.231-36.144 7.375-15.203 2.711-30.06 6.153-45.324 9.264-2.39.484-42.275 8.481-42.298 8.996.154-3.664 52.83-12.422 58.691-14.988-.768.039-4.647.177-4.524-.123 1.39-3.487 18.221-3.664 22.439-4.524 11.223-2.29 22.455-4.579 33.678-6.868 9.971-2.028 19.827-3.388 29.722-5.854 11.754-2.927 24.045-4.54 35.944-6.79 9.849-1.86 25.267-2.006 33.825-7.568-.765.027-1.53.05-2.295.07 2.566-.117 7.982-2.156 10.66-2.666 5.047-.968 10.924-1.368 15.749-3.25-20.389-1.613-41.599 8.681-59.675 10.248-7.551.653-17.223 2.497-24.652 4.525-13.336 3.634-27.202 6.83-40.86 9.364-15.365 2.85-30.33 6.983-45.686 10.118-15.487 3.165-31.604 4.847-46.676 9.126-17.37 4.924-35.076 8.65-52.784 12.522l-31.411 6.867c-3.311.73-20.273 2.29-21.61 4.34.937-1.981 11.761-3.625 14.48-4.224 5.64-1.23 10.748-2.251 16.018-4.594-10.048.346-22.747 3.365-32.542 5.961-3.78.999-7.136 2.428-11.054 2.965-1.303.178-3.815-.029-6.017-.058zm249.698-62.402l-.06.003a.86.86 0 0 0-.253.286c.065-.103.182-.197.313-.289zm0 0c.13-.09.275-.18.394-.271-.18.088-.334.18-.455.274l.061-.003zm179.793-20.552c-3.372-3.05-24.844 3.895-29.507 4.494-5.539.707-10.862 2.312-16.355 3.203-9.38 1.521-19.251 2.197-28.293 5.685 12.506-.177 25.881-4.171 38.21-6.276 11.209-1.913 22.356-3.918 33.664-5.885 1.09.046 1.85-.36 2.281-1.221zm29.307-4.67c-8.427.299-17.046 1.443-25.228 3.664 8.066.015 15.749-1.652 23.669-3.096.522-.192 1.037-.384 1.56-.569zm569.088-57.04c2.935-.177 5.892-.523 8.834-.86-5-.193-11.108-1.944-15.418.606-.276.162 5.954.292 6.584.254zm23.424-2.83zm21.209-1.365c8.796-.852 17.792-1.236 26.71-1.905-3.31-.077-7.013-.614-9.11-.584-6.914.108-13.99 1.176-20.865 1.821-4.635.44-13.564-.394-17.818 1.96 3.719-2.001 16.101-.807 21.083-1.292zm-135.911 23.2c-.477-.076-.96-.123-1.445-.13-.522.084-1.037.176-1.559.26 1.106-.068 2.635.016 3.004-.13zm115.454-11.538c-.145.075-.293.148-.444.218a2.42 2.42 0 0 0 .444-.218zm-17.078-.392c-7.974-.799-16.747-.76-25.22.323-8.727 1.114-17.723 1.398-26.442 2.688-8.135 1.199-16.424 1.39-24.575 2.566-4.978.715-15.072-.084-18.974 2.39-.876.583 10.486.422 12.39.276l18.138-1.36c12.038-.899 24.337-1.13 36.298-2.72 5.692-.76 10.985-1.543 16.762-1.636 7.3-.12 21.365 1.297 28.257-1.917-3.2 1.227-13.774-.325-16.634-.61zm91.094-5.823c1.882-.146 4.579-.046 7.206-.154-5.539-.007-12.253-1.428-16.916.254 2.39-.446 7.844.046 9.71-.1zm34.915-2.95c-4.179.553-9.257 1.698-13.013.161 2.389-.63 11.684-2.827 13.013-.16zm3.949-1.244c9.656-1.675 19.827-2.213 29.56-1.667-8.826 2.596-20.403 2.558-29.56 1.667zm30.59-9.265c-1.237-.1-2.481-.192-3.718-.284-1.176.292-2.351.576-3.526.868 2.412-.192 4.832-.384 7.244-.584zm8.05-.645c-2.181-.484-4.309-.315-6.383.514 2.128-.176 4.256-.345 6.384-.514zm98.53-1.106c-1.259.576-7.973.138-9.894.3l-6.983.575c5.962.361 12.392 1.183 16.878-.875zm177.011-5.309c2.205 1.43 5.938.515 8.712-.054-2.22-1.467-5.939-.553-8.712.054zm-44.732 5.024c4.908-.092 9.64-.138 14.565-.56-1.583.268 6.921-.4 5.477-1.39-2.274-1.568-11.3.076-14.273.16-5.286.146-14.074-.514-18.921 1.721 1.974-.845 10.378.115 13.152.07zm34.469 43.527c-10.501-.73-23.192-.814-33.302 2.143 9.749.922 20.38-.653 30.122-1.52l3.18-.623zm25.443-1.529c-3.372-3.31-12.852-.384-17.077.784 2.35.169 4.709.33 7.06.5 3.295-.677 6.79-.178 10.017-1.284zm70.544-6.384c-6-.468-12.022-.115-18.022.077-.86.031-11.615 1.506-10.985 2.282 2.689 3.28 23.56-1.452 27.379-1.805.545-.185 1.09-.377 1.628-.554zm114.463-8.788c-5.561-3.864-12.913-.999-18.967.407-6.168 1.43-13.251.722-19.481.876-8.589.215-16.87 2.182-25.413 2.55-8.696.377-16.124.254-24.644 2.605.484 2.773 77.973-4.61 86.293-5.385 1.106.169 1.844-.185 2.212-1.053zm12.13-.53c-.01.003-.02.006-.027.01a.157.157 0 0 0 .027-.01zm79.725-6.852c-.03.008-.06.017-.084.028a.846.846 0 0 0 .084-.028zM270.939 147.764c.576-.23 1.221-.4 1.744-.676-.492.261-1.083.484-1.744.676zm-37.934 7.267c.43.515 1.037.576 1.805.177 6.799-1.283 13.674-2.382 20.442-3.856 4.763-1.038 10.97-1.714 15.687-3.588-4.402 1.29-12.045 1.237-16.309 2.25-5.393 1.276-17.093 1.852-21.625 5.017zm29.522-10.54c-3.303 1.644-8.804 2.436-12.383 2.336 3.303-1.621 8.811-2.443 12.383-2.336zm46.408-7.298c-2.474 1-5.247 1.514-8.305 1.575 2.466-.998 5.224-1.513 8.305-1.575z" fill="${n}" fill-rule="nonzero"/></svg>`,33:`<svg viewBox="0 0 1920 358" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M1917.452 7.061c-.313 1.498-4.576 1.888-6.03 2.812-2.74 1.734-5.044 4.348-8.481 6.12-9.324 4.802-19.8 9.275-29.307 12.818-3.205 1.191-6.139 2.275-8.976 4.057-1.82 1.152-1.694 3.001-3.776 4.376-3.127 2.12-7.57 2.682-10.92 4.425-6.333 3.282-11.638 8.597-18.251 11.54-13.593 6.052-27.322 13.061-40.674 18.483-6.1 2.479-12.586 4.802-18.802 7.64-6.477 2.952-6.138 6.09-13.254 8.655-.688-.997-.049-1.753 1.926-2.266-18.918 4.677-37.807 13.961-56.435 21.33-14.097 5.586-28.349 10.194-42.533 15.103-14.01 4.85-27.806 12.006-42.145 14.64-7.387 1.355-13.729 3.998-20.642 6.68-3.805 1.471-7.455 1.781-11.192 3.708-3.079 1.588-9.76 3.524-11.899 6.177-.32.397 10.486-2.13 11.812-2.556 4.599-1.5 9.43-2.634 14.068-4.435 7.63-2.952 15.133-6.322 22.665-8.674 15.094-4.725 30.488-9.324 45.418-14.978 16.933-6.41 34.109-14.33 51.507-19.18 13.565-3.786 26.8-5.102 40.296-9.837 12.984-4.55 27.051-11.328 38.757-15.162 7.203-2.362 14.213-4.89 20.97-8.239 4.658-2.314 16.053-9.75 21.543-7.136 1.723 1.124-10.544 5.422-11.454 5.78-3.814 1.501-7.755 3.428-11.744 4.86-4.068 1.46-33.117 10.84-35.682 13.865 1.455-.942 7.834-.244 8.621.194-1.433.89-8.365 4.734-9.517 4.425 1.55.561 4.918-.281 8.781-1.637-3.243 1.608-5.973 3.04-6.922 3.505-2.11 1.055 24.592-9.052 24.263-9.372-1.675-.716-.204-1.394.687-1.762 3.224-1.355 6.303-3.127 9.75-4.367 8.888-3.195 15.404-7.019 24.379-8.413-3.34 3.66-13.787 9.023-18.396 11.802-5.063 3.05-12.16 6.032-17.611 8.433-8.143 3.582-16.44 6.148-24.524 9.798-21.93 9.895-44.953 18.85-67.773 26.819-24.36 8.51-48.487 17.563-72.518 26.732-9.44 3.601-19.615 5.499-28.92 9.42-5.034 2.12-9.75 4.173-15.055 5.896-8.258 2.692-24.718 11.802-33.19 10.505.136.02 22.046-8.133 25.87-11.037-3.727 2.478-26.344 7.222-29.597 8.752-5.102 2.411-11.686 8.007-18.211 7.3.6-.503 1.21-1.016 1.81-1.53-5.673.078-10.543 3.835-15.83 5.393-3.64 1.075-7.445 1.278-11.211 2.556-7.523 2.566-15.22 4.948-22.927 7.01-20.167 5.393-37.856 14.048-58.159 18.618-18.26 4.105-36.055 9.42-54.393 14.755-20.487 5.955-41.07 11.59-61.683 17.128a11184.603 11184.603 0 0 1-30.943 8.249c-2.155.577-21.629 4.369-24.487 5.756 1.86-1.26 11.064-4.63 12.365-5.31 12.586-6.536 1.278-5.103-6.448-3.012-11.047 3.001-22.675 5.557-34.06 7.949-22.26 4.666-44.818 11.56-65.324 15.249-33.122 5.954-68.78 11.502-101.263 20.835-15.53 4.463-32.096 4.192-47.76 7.262-20.594 4.027-41.933 7.735-62.691 10.398-33.954 4.347-68.741 8.49-102.773 14.252-15.23 2.575-29.733 3.708-45.079 5.877-6.342.9-50.2 6.69-51.091 3.62 5.015-.706 20.429-.01 23.962-3.843-.62.668-20.206 1.568-21.987 1.694-11.483.804-23.217 2.198-34.67 2.895-10.602.649-20.623 4.318-31.186 4.415-12.625.106-24.418 1.975-36.8 3.224-12.239 1.24-22.008 1.491-35.107 1.917-9.295.3-18.231 2.353-27.41 3.108-10.485.871-21.203-.155-31.737-.02-24.863.31-49.678 1.404-74.705 2.111-9.75.271-19.383.145-29.2.649-7.63.397-31.05 4.105-35.833-.63 12.905-4.57 30.217-.939 43.616-1.607 9.12-.455 18.009-.648 26.993-.464 20.342.406 39.793-1.327 60.038-3.002 52.369-4.347 104.167-6.69 156.1-12.576 11.929-1.356 24.012-3.331 35.64-4.454 9.217-.89 18.608-1.181 28.135-3.05 7.687-1.51 14.978-1.24 22.83-2.314 9.982-1.375 20.826-3.36 31.011-3.543 18.822-.349 37.75-5.52 56.532-7.485 16.247-1.704 32.686-6.777 48.807-8.21 6.1-.532 12.14-.31 18.289-1.133 4.308-.57 10.088-.377 14.077-2.294 1.114-.533 4.154-3.65 3.912-3.553 6.36-2.489 16.081-3.38 22.646-4.444 11.812-1.917 23.197-2.963 35.426-4.173 7.823-.785 18.211-2.42 24.872-6.603-17.291-1.191-33.17 5.644-50.268 6.98-18.037 1.414-36.21 4.338-54.228 6.962-13.39 1.946-26.17 4.502-39.638 6.012-16.45 1.84-33.363 3.834-49.552 6.584-61.828 10.514-125.264 13.874-187.721 20.932-61.5 6.951-123.473 6.642-185.321 9.837-54.838 2.836-110.219 2.343-164.873-.455-18.85-.969-38.301 0-56.629-2.673-22.2-3.233-44.42-5.935-66.485-9.885-24.825-4.444-50.027-11.56-73.157-21.358-6.273-2.662-54.847-22.723-52.514-27.932 8.597 1.384 17.94 9.41 25.928 13.1 19.035 8.78 37.643 16.284 58.033 21.958 34.148 9.498 69.894 17.873 105.823 20.67 89.606 6.981 179.55 3.583 269.079 2.315 40.867-.581 82.044-4.648 122.756-7.29 14.707-.96 29.762-3.022 44.314-4.542 14.794-1.549 31.185-1.462 46.047-5.547-13.06-1.55-27.438 2.265-39.802 3.456-13.594 1.307-27.41 3.108-41.187 3.776-15.868.775-32.473 2.866-47.993 3.282-9.808.262-21.968 3.737-31.563 1.985 2.392-1.694 8.762.687 10.321-1.869 1.481-2.09-21.658-.513-24.166-.116-15.917 2.498-32.59 1.782-48.584 2.043-21.484.358-44.004 1.723-65.536 1.772-18.26.039-36.617 1.046-55.003-.078-19.025-1.161-37.992-1.045-57.181-.677-17.573.339-33.722 1.278-50.8 1.549-17.922.28-35.388-5.703-53.164-6.71-16.043-.91-31.166-4.918-46.88-8.016-9.943-1.956-16.943-5.383-26.063-8.743-11.754-4.328-24.612-8.646-36.888-12.219-12.683-3.688-24.244-8.394-35.736-15.403-8.433-5.142-18.163-8.646-26.402-14.756-10.38-7.687-22.036-14.823-31.709-23.914-.89-.833-16.042-16.072-15.345-16.488 1.103-.668 27.119 24.156 31.834 25.647-1.114-.823-1.54-1.8-1.288-2.924 3.147-.377 5.848 4.832 7.784 6.429 5.277 4.347 11.793 8.084 17.592 11.647 7.63 4.686 14.784 9.101 22.927 12.432 9.904 4.047 33.606 19.102 43.49 15.578a4.152 4.152 0 0 1-1.606-1.588c5.218-1.026 11.899 4.967 17.408 4.54-5.258-5.072-18.406-8.655-25.357-10.465-4.338-1.133-5.519.716-9.537-.707-1.946-.697-6.041-3.253-8.684-4.463-13.207-6.061-27.38-11.909-40.064-19.403-17.805-10.524-33.848-24.001-48.37-38.466-10.515-10.466-17.902-24.873-24.535-37.924C5.42 189.772-.35 174.901.017 174.97c1.781.116 8.81 16.565 10.63 18.192-.525-4.023-2.884-9.587-4.814-14.314l-2.6-6.285c-.433-.805-.911-1.606-1.344-2.414L0 167V0h1920v6l-2.548 1.061zM218.237 314.04c-.485-2.324-19.21-4.018-21.804-4.705-6.932-1.83-18.483-5.16-25.618-4.464 6.157 4.009 16.333 3.834 23.314 5.848 7.387 2.13 14.62 2.75 22.374 4.067.843.222 1.414-.03 1.734-.746zm382.434 18.096c.513 1.849 11.83-.088 12.325-.126 2.691-.271-13.071-2.518-12.325.126zm32.182-1.095c6.67-.28 13.768-1.278 20.622-2.062 2.808-.3-6.312-.958-8.21-.871-4.936.232-22.074-.445-25.083 2.727.813-.856 10.824.284 12.671.206zm196.58-18.656c-4.433-.126-9.362.474-13.573 1.897 2.972.804 6.554-.571 9.653-.048 1.307-.62 2.614-1.24 3.92-1.85zm10.903-.736c-1.666.958-3.457 1.239-5.354.852.948-1.733 3.379-2.256 5.354-.852zm-47.926 23.197c.852-.658 5.848-.503 3.94 0-1.18.175-4.743.678-3.94 0zm23.72-2.13c-1.17 1.065-13.37 1.424-13.254.959 1.424-3.224 13.633-1.297 13.255-.959zm29.87-4.453c-3.99-.61-20.594.523-23.615 3.272 3.108-2.662 15.772-.32 20.294-1.423 1.113-.62 2.217-1.24 3.32-1.85zm218.2-43.404a7.247 7.247 0 0 1-4.347.988c-1.627-.33 5.383-2.256 4.347-.988zm35.32-7.465c-2.73.34-4.56-.523-7.475-.203-7.29.804-11.957 3.02-16.44 5.983 2.488 3.505 31.33-5.576 36.685-6.758 2.381-4.376-11.415.823-12.77.978zm39.676-7.213c-2.779 2.518-10.437 1.598-12.074 3.302 2.014-2.13 12.287-3.486 12.074-3.302zm58.072-11.899c-4.25 1.036-7.465 2.014-11.851 1.51.93-4.056 14.484-3.804 11.85-1.51zm29.636-9.285c.106-2.45 14.88-1.8 10.263.513-1.704-.184-10.38 2.237-10.263-.513zm37.197-7.871c-3.64-.397-18.453 1.83-20.331 5.15-.223.34 14.077-1.984 16.953-3.862a8.459 8.459 0 0 0 3.378-1.288zm13.4-1.491c1.714-1.172 3.437-2.353 5.16-3.524-.145-.29-.28-.572-.416-.862-4.908.271-4.008 1.83-7.038 3.737.329.707 1.558 1.21 2.294.649zm35.542 4.115c-5.857 1.007-13.4 1.045-18.211 4.996.387 1.161 11.918-2.663 14.552-2.556a9.732 9.732 0 0 0 3.66-2.44zm51.74-28.049c-2.285-3.001-22.065 3.931-25.908 4.987-3.534.968-7.194 2.846-10.95 3.843-5.78 1.53-13.12 2.508-18.522 5.364 8.772.89 17.96-2.856 26.18-5.538 8.53-2.779 16.74-3.64 25.289-6.235a529.832 529.832 0 0 1 3.911-2.42zm10.157-2.904c.28-.465-3.525.435-2.498.174 2.691-.774-6.671-.116-5.77.823.851.89 5.634-.368 6.68-.358a270.34 270.34 0 0 1 1.588-.64zm9.352-1.375c3.883-1.113 13.99-2.508 16.556-6.012.262-.349-23.75 2.769-16.556 6.012zm12.887 9.498c.687 1.597 8.917-1.636 9.4-1.772 3.806-1.171-10.61-1.046-9.4 1.772zm15.907-4.105c-.523.261-1.046.523-1.568.774-2.798-.135 1.54-.726 1.568-.774zm-1.423-14.668c1.442-1.094 3.166-1.588 5.238-1.51-1.482 1.103-3.205 1.597-5.238 1.51zm18.657 10.195c-.746.571-5.48 3.989-6.603 1.781-1.307-2.565 10.35-4.599 6.603-1.781zm-9.75-12.219c3.65-.29 7.571-.455 11.096-1.375 1.82-1.316 3.65-2.643 5.48-3.96-4.6-.387-11.793 3.96-16.576 5.335zm24.253 8.569c-3.408-2.266-7.426-.252-10.766 2.12 1.21 2.14 8.249-.968 8.917-1.162.62-.32 1.23-.648 1.85-.958zm1.56-14.726c-1.55 1.161-3.283 1.675-5.21 1.549.726-2.004 3.04-2.653 5.21-1.55zm13.26 9.334c-.623.095-3.662.221-4.363 1.045.852.358 1.675.319 2.478-.126.644-.308 1.288-.607 1.923-.914l-.039-.005zm18.118-5.49c-.28.212-4.938.919-6.506 2.826 1.481-1.055 1.772-1.055.89.01 1.443-.794 4.222-1.723 5.616-2.837zm3.863-14.214c-1.52.475-20.738 5.122-20.254 3.767 1.384-4.27 20.002-3.69 20.254-3.767zm239.084-65.788c3.999-.358 7.465-.068 11.919-1.22 6.67-1.723 14.048-5.315 20.428-8.123 5.277-2.324 10.621-4.367 15.975-6.71 2.402-1.055 11.764-4.037 12.577-5.818.726-1.724-10.408 2.13-11.163 2.4-6.642 2.392-13.293 4.774-19.935 7.165-12.577 4.522-24.447 8.627-37.159 12.993-2.207.775 6.37-.59 7.358-.687zm-68.005 22.549a32.232 32.232 0 0 0-6.69 2.391c1.394 2.479 6.903-.57 8.287-1.665-.251-.687-.784-.93-1.597-.726zm-26.403 8.762c-.251.087 8.791-.91 12.2-2.227 1.849-.716 3.66-1.23 5.392-2.198-6.012-.474-12.034 2.547-17.592 4.425zm-6.854 8.782c2.352-.765 6.148-2.982 8.636-2.498 1.094.174-11.405 4.066-8.636 2.498zm-6.023-3.457c-.59.717 5.316-.978 4.26-1.365-1.558.01-2.972.465-4.26 1.365zm-86.952 27.72c-3.012.367-6.323 1.945-9.227 2.836-2.169.668-10.612 4.831-12.616 4.425 6.37 1.597 18.822-5.412 24.38-7.126 4.143-1.346-4.958.155-2.537-.136zm9.914-15.55c-2.789.95-7.659 3.844-10.253 1.675 2.091-.88 12.102-2.314 10.253-1.675zm15.142-4.686c-1.384.455-8.336 3.786-9.478 2.053-2.314-3.486 14.823-5.683 9.478-2.053zm23.082 4.686c-5.122.688-11.202 6.361-15.317 5.79 4.231 1.307 11.028-4.812 15.317-5.79z" fill="${n}" fill-rule="evenodd"/></svg>`,34:`<svg viewBox="0 0 1920 381" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M.025 367.84L0 368V0h1920l-10.314 7.057c-.107 2.047-5.607 4.204-6.828 5.613-2.445 2.811-2.466 6.336-6.568 8.791-4.658 7.606-17.698 16.125-24.884 21.276-6.767 4.815-8.519 9.798-14.624 15.002-9.872 8.403-18.339 17.918-28.4 26.217-10.826 8.917-22.45 16.838-33.224 24.601-4.249 3.063-9.683 5.56-13.387 9.253-4.427 4.417-3.336 5.917-9.914 9.715-.87-.903-.377-1.805 1.5-2.707-17.939 7.868-35.196 20.1-52.748 30.172-12.515 7.176-25 12.148-38.008 18.307-16.503 7.826-32.554 17.477-50.284 22.314-6.819 1.857-12.756 5.319-19.145 8.13-5.582 2.455-16.922 4.91-20.71 10.218-.482.682 12.065-3.304 13.303-3.734 6.892-2.371 13.596-5.141 20.216-8.236 8.844-4.133 16.9-7.658 25.84-11.257 24.023-9.662 47.303-20.824 69.858-34.022 10.334-6.053 22.566-10.721 33.75-14.77 17.163-6.222 35.48-15.097 49.758-26.91 6.484-5.361 14.95-9.421 22.671-14.97 5.445-3.914 16.125-16.482 23.332-14.824.944.367-18.8 14.886-20.71 16.093-3.756 2.38-32.457 19.453-32.987 22.008.295-1.419 8.033-1.92 8.995-1.572-1.144 1.154-7.763 6.4-8.823 6.274 1.805.346 5.172-1.249 8.907-3.525-3.021 2.35-5.602 4.427-6.588 5.172-2.099 1.573 23.478-14.058 22.587-14.635-.577-.462-2.004.031-3.82.996 1.71-1.269 3.19-2.381 4.082-3 3.294-2.287 6.378-5.078 9.945-7.333 7.952-5.036 13.124-9.862 21.496-13.345-2.14 4.123-10.826 11.394-14.55 14.845-4.617 4.27-9.967 7.575-14.845 11.54-6.987 5.686-14.583 10.512-21.895 15.789-19.66 14.184-41.691 25.252-62.463 37.83-24.486 14.824-51.752 26.238-77.37 38.513-9.642 4.616-20.08 7.616-29.669 12.337-5.634 2.77-10.9 5.35-16.911 7.564-8.372 3.074-24.507 12.977-33.1 11.823.011 0 23.06-9.61 26.658-12.704-3.535 2.654-27.329 8.613-30.654 10.27-5.256 2.623-12.107 8.456-18.957 7.7.629-.555 1.248-1.101 1.867-1.657-7.774.094-20.583 6.242-28.567 8.76-8.854 2.801-17.813 5.434-27.067 7.606-18.526 4.343-34.955 10.25-53.409 14.498-17.415 4.018-34.19 6.42-51.804 9.704-23.794 4.428-47.681 8.173-71.716 11.068-11.1 1.343-22.22 2.529-33.35 3.599-1.924.185-30.833 1.347-32.25 2.026.794-.666 12.655-2.705 14.11-3.18 12.075-3.913 5.424-4.889-3.493-4.69-11.687.263-23.405-.189-35.071 1.05-7.323.776-14.436-.62-21.832-.043-4.49.357-9.756 2.13-14.205 2.14-3.776.011-7.815-.471-11.613-.88-8.152-.882-12.778 1.28-20.111 1.059-18.517-.556-40.411-3.871-60.092-6.148-11.351-1.311-23.427-.566-34.704-2.098-9.306-1.259-18.884-1.248-28.147-3.367-5.424-1.249-10.334-1.008-15.611-1.543-4.962-.503-9.001-3.577-13.69-4.364-5.928-.997-13.482-1.49-19.587-2.266-20.856-2.665-41.544-7.018-62.19-10.113-33.13-4.973-66.093-12.747-99.538-17.95-14.373-2.235-27.77-5.403-42.363-7.659-6.095-.944-48.562-8.245-48.562-11.277 4.951.734 19.806 5.854 24.087 3.084-.487.314-22.168-4.805-22.933-4.962-5.256-1.06-10.26-2.36-15.737-3.137-10.826-1.532-21.14-4.773-32.081-5.508-12.254-.818-23.321-4.102-35.659-5.507-8.949-1.018-19.135-.462-27.675-1.815-8.77-1.385-20.268-4.333-30.581-5.204-11.939-1.018-24.245-.66-36.393-3.137-24.612-5.014-51.101-7.081-76.217-7.102-14.509-.01-28.787-.692-43.327.02-6.735.326-27.518 3.348-31.704-.838 11.624-5.487 31.4-1.71 43.989-1.574 14.456.168 28.587-.346 43.023.64 19.545 1.332 40.348 1.28 60.375 3.986 11.897 1.606 24.518 1.186 36.425 3.64 9.106 1.879 18.873 1.533 28.116 2.708 8.948 1.133 17.215 3.598 26.216 3.451 11.3-.189 23.406 3.294 35.114 4.71 13.564 1.627 28 2.466 41.24 4.68 10.081 1.678 19.156 4.962 29.783 6.252 8.466 1.028 15.789 3.126 24.234 4.668 9.715 1.773 20.5 2.718 30.172 5.235 18.39 4.784 38.26 5.907 56.567 11.184 16.209 4.668 33.896 3.85 50.105 7.805 6.441 1.574 13.156 4.07 19.775 5.476 4.574.976 9.988 2.203 14.635 1.72 1.647-.167 3.61-2.087 3.871-2.097 6.757-.347 16.513 1.93 22.986 2.99 12.159 1.993 23.689 4.637 36.152 7.207 7.637 1.573 18.327 3.2 25.902 1.143-13.47-5.686-29.71-6.504-44.272-8.193-18.852-2.182-38.24-6.767-57.123-10.512-26.804-5.319-54.144-9.956-81.105-15.726-112.82-24.14-229.458-42.866-344.313-49.842-36.54-2.224-75.104-3.221-111.54.094-44.87 4.092-90.358 5.308-134.21 16.995-30.161 8.036-59.127 18.475-88.974 28.756-17.834 6.137-35.417 14.897-52.412 23.468-5.235 2.644-10.491 6.022-15.328 8.466-3.147 1.585-29.615 19.01-31.808 17.457-1.248-.891 41.313-26.133 46.254-28.881 13.324-7.396 27.33-13.05 40.537-19.23 28.347-13.26 58.215-21.076 88.145-29.385 73.07-20.28 146.485-21.633 221.716-23.038 36.833-.682 74.17 4.784 110.815 7.92 32.795 2.801 65.695 8.624 98.363 12.978 14.53 1.93 31.054 7.112 46.307 6.315-11.361-5.025-26.626-6-38.27-7.249-12.841-1.374-25.452-3.745-38.555-5.267-17.058-1.982-35.386-4.668-51.93-7.238-9.756-1.521-22.398.22-31.567-3.158 2.633-1.437 8.602 2.035 10.533-.357 2.067-2.287-22.933-4.091-25.808-4.05-15.652.221-30.938-2.821-46.475-3.608-20.184-1.018-41.69-2.57-61.907-1.542-9.62.482-19.104 1.888-28.829 1.353-10.187-.566-17.425.776-27.539.378-17.152-.682-35.417 1.72-52.475 4.437-18.915 3.011-36.1 6.431-53.378 11.456-16.555 4.805-35.68 6.337-52.035 11.551-13.9 4.427-26.794 8.246-40.18 13.072-17.164 6.19-32.764 10.082-48.794 18.086-23.688 11.823-47.209 24.14-68.873 39.53-6.055 4.299-51.723 39.294-50.237 43.443-1.484-3.368 23.118-25.477 24.797-28.598-3.127-.252-2.403-1.144-1.427-2.088-5.004 3.462-10.082 6.871-14.394 11.005-8.099 7.763-15.421 17.048-21.81 26.888-1.857 2.875-14.383 27.969-13.9 35.974-.746-4.669 1.174-14.887.923-16.89-2.927 3.556-4.28 13.868-4.04 18.558.032.713 1.574 15.484 1.186 15.17-3.033-2.448-3.879-7.45-4.026-12.527zM1830.68 44.164c7.428-5.917 12.747-10.764 18.275-18.853-1.175-.88-18.4 17.09-25 23.605 2.613-1.794 5.078-3.441 6.725-4.752zm-6.725 4.762c-3.546 2.424-7.385 5.12-10.081 7.764 2.885-1.836 5.665-3.767 7.973-5.76.43-.377 1.164-1.08 2.108-2.004zM181.19 182.046c-12.232.892-20.142 10.554-31.462 13.386 8.75-.42 16.282-9.956 24.885-10.27a15.64 15.64 0 0 0 6.577-3.116zm43.307-13.932c.997-.304-8.277-.23-10.931.64-4.774 1.563-8.97 3.787-13.691 5.109-2.875.808-14.53 2.958-15.925 5.948-.105.305 16.334-3.64 18.516-4.259 7.008-1.983 14.74-4.983 22.031-7.438zm17.866-4.731c3.21-2.193 8.204-3.18 12.138-3.043-3.86 1.175-8.036 2.864-12.138 3.043zm-88.47 62.903c-7.333-.556-17.415 5.466-23.29 9.442-6.766 4.585-10.124 7.323-17.572 11.488-11.173 6.242-24.003 13.795-34.18 21.82-4.815 3.798-8.392 9.296-12.861 13.209-1.112.976-2.319 1.846-3.504 2.759 3.766-2.35 7.637-4.417 8.57-5.12 7.166-5.402 14.698-9.651 22.095-14.31 6.483-4.08 11.917-9.126 18.663-13.123 6.43-3.809 25.388-10.418 28.22-17.583a4.005 4.005 0 0 1-2.276.063c2.55-4.543 12.631-4.973 16.135-8.645zm53.147-23.353c-1.657-2.003-18.61 6.578-20.96 7.376-7.103 2.391-19.42 6.735-24.476 12.232 7.658-.913 17.09-7.102 24.391-10.03 6.505-2.601 13.104-5.297 19.891-8.014.881-.22 1.27-.735 1.154-1.564zm26.878-22.345c2.182-.882-5.676.912-7.47 1.51-2.087.703-11.162 5.13-12.337 4.753 5.602 1.73 14.719-4.532 19.807-6.263zm358.024 5.486c-.283-3.136 14.992 2.14 12.232 1.93-.514-.041-12.043.064-12.232-1.93zm46.422 4.742c-2.329-.45-4.616-.87-7.05-1.206-3.545-.483-16.91-3.819-19.806-1.532.314-.262 12.096 2.098 13.764 2.371 6.252 1.018 12.914 1.847 19.44 2.518 3.105.367-4.973-1.888-6.348-2.15zm153.231 28.011c-3.724-.566-11.246-.336-14.32-2.518-.084-.084 17.404 2.97 14.32 2.518zm28.787 4.994c-4.217-1.48-9.221-2.36-13.701-2.161 2.58 1.72 6.515 1.405 9.326 2.885l4.375-.724zm5.309 1.815c1.531-1.563 3.923-1.238 5.423.808-1.898.4