Brizy – Page Builder - Version 1.0.4

Version Description

  • 2018-05-21 =
  • Fixed: Fixed array declaration syntax to support older php versions
Download this release

Release Info

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

Code changes from version 0.2.5 to 1.0.4

README.md CHANGED
@@ -1,9 +1,9 @@
1
- # Brizy - Wordpress Page Builder
2
  Contributors: themefuse<br>
3
  Requires at least: 4.5<br>
4
  Tested up to: 4.9<br>
5
  Requires PHP: 5.4<br>
6
- Stable tag: 0.2.5<br>
7
  License: GPLv3<br>
8
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
9
 
@@ -96,10 +96,48 @@ A good bug report includes full details to easily understand the issue you are h
96
 
97
  ## Changelog
98
 
99
- * 0.2.5 - 2018-04-27 Fixed the Publish/Update button
100
- * 0.2.4 - 2018-04-24 Bug fixes
101
- * 0.2.3 - 2018-04-24 Bug fixes
102
- * 0.2.2 - 2018-04-13 Bug fixes
103
- * 0.2.1 - 2018-04-13 Bug fixes
104
- * 0.1.0 - 2018-04-12 Bug fixes
105
- * First release
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Brizy - Page Builder
2
  Contributors: themefuse<br>
3
  Requires at least: 4.5<br>
4
  Tested up to: 4.9<br>
5
  Requires PHP: 5.4<br>
6
+ Stable tag: 1.0.4<br>
7
  License: GPLv3<br>
8
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
9
 
96
 
97
  ## Changelog
98
 
99
+ ### 1.0.4 - 2018-05-21 ###
100
+ * Fixed: Fixed array declaration syntax to support older php versions
101
+
102
+ ### 1.0.3 - 2018-05-21 ###
103
+ * New: Added basic animations
104
+ * New: Added spacing option to Menu element
105
+ * Fixed: Other minor bugs
106
+
107
+ ### 1.0.2 - 2018-05-15 ###
108
+ * New: Added cover option to Video element
109
+ * Improved: Updated readme files
110
+ * Improved: Clicking on a anchor will trigger a smooth transition to the target
111
+ * Improved: Tabs element with long labels will look better on mobile
112
+ * Improved: Better support for retina displays
113
+ * Fixed: Other minor bugs
114
+ * Fixed: Capability access to edit/save brizy posts
115
+ * Fixed: Settings page
116
+ * Fixed: Recompile page after plugin update
117
+ * Fixed: The default title of the newly created pages will be "Brizy #{ID}" format
118
+ * Fixed: Save compiler version at compile time
119
+ * Fixed: Media asset proxy
120
+
121
+ ### 1.0.1 - 2018-05-11 ###
122
+ * Fixed: Reconfigured the page compiler
123
+
124
+ ### 1.0.0 - 2018-05-08 ###
125
+ * New: Added keyword shortcuts for undo / redo
126
+ * Improved: Navigation will return empty if the menu name is null
127
+ * Improved: Added support for custom type posts
128
+ * Improved: Updated the plugin name
129
+ * Improved: Disabled leave confirmation when editing with brizy is clicked
130
+ * Fixed: Long compile page requests
131
+ * Fixed: Changed page compilation
132
+ * Fixed: Responsive issues
133
+ * Fixed: Scroll speed in Firefox
134
+ * Fixed: Other minor bugs
135
+
136
+ ### 0.2.5 - 2018-04-27 ###
137
+ * Fixed: Publish/Update button
138
+
139
+ ### 0.2.0 - 2018-04-13 ###
140
+ * Fixed: Bug Fixes
141
+
142
+ ### 0.1.0 - 2018-04-12 ###
143
+ * New: Initial Beta Release
admin/main.php CHANGED
@@ -23,14 +23,14 @@ class Brizy_Admin_Main {
23
  }
24
  add_action( 'admin_head', array( $this, 'hide_editor' ) );
25
 
26
- add_action( 'admin_action_brizy_new_post', array( $this, 'admin_action_new_post' ) );
27
 
28
  add_action( 'admin_post__brizy_admin_editor_enable', array( $this, 'action_request_enable' ) );
29
  add_action( 'admin_post__brizy_admin_editor_disable', array( $this, 'action_request_disable' ) );
30
  add_action( 'admin_post__brizy_change_template', array( $this, 'action_change_template' ) );
31
 
32
  add_action( 'admin_enqueue_scripts', array( $this, 'action_register_static' ) );
33
- add_action( 'before_delete_post', array( $this, 'action_delete_page' ) );
34
 
35
  add_action( 'edit_form_after_title', array( $this, 'action_add_enable_disable_buttons' ) );
36
 
@@ -39,15 +39,13 @@ class Brizy_Admin_Main {
39
  add_filter( 'admin_body_class', array( $this, 'filter_add_body_class' ), 10, 2 );
40
  add_filter( 'save_post', array( $this, 'compile_post_action' ), 10, 2 );
41
 
42
- //add_filter( 'the_editor', array( $this, '_add_fake_editor' ), 10, 2 );
43
-
44
  if ( current_user_can( 'edit_posts' ) ) {
45
  add_filter( 'plugin_action_links_' . BRIZY_PLUGIN_BASE, array( $this, 'plugin_action_links' ) );
46
  add_filter( 'display_post_states', array( $this, 'display_post_states' ), 10, 2 );
47
  }
48
 
49
  if ( function_exists( 'gutenberg_init' ) ) {
50
- add_action( 'admin_print_scripts-edit.php', [ $this, 'add_edit_button_to_gutenberg' ], 12 );
51
  }
52
  }
53
 
@@ -86,7 +84,6 @@ class Brizy_Admin_Main {
86
  return;
87
  }
88
 
89
- $b_post->set_status( $post->post_status );
90
  $b_post->compile_page();
91
  $b_post->save();
92
 
@@ -96,6 +93,8 @@ class Brizy_Admin_Main {
96
 
97
  // compile
98
  } catch ( Exception $e ) {
 
 
99
  return;
100
  }
101
  }
@@ -126,10 +125,10 @@ class Brizy_Admin_Main {
126
  public function add_edit_button_to_gutenberg() {
127
  global $typenow;
128
 
129
- $new_post_url = add_query_arg( [
130
  'action' => 'brizy_new_post',
131
  'post_type' => $typenow,
132
- ], admin_url( 'edit.php' ) );
133
 
134
  ?>
135
  <script type="text/javascript">
@@ -189,41 +188,24 @@ class Brizy_Admin_Main {
189
  );
190
  }
191
 
192
- private function get_brizy_posts() {
193
-
194
- $posts = get_posts( array(
195
- 'meta_key' => Brizy_Editor_Storage_Post::META_KEY,
196
- 'post_type' => brizy()->supported_post_types(),
197
- 'post_status' => 'any',
198
- get_site_url()
199
- ) );
200
-
201
- return $posts;
202
- }
203
-
204
- private function has_brizy_index_page() {
205
-
206
- $posts = $this->get_brizy_posts();
207
-
208
- if ( is_array( $posts ) ) {
209
- foreach ( $posts as $apost ) {
210
- $bpost = Brizy_Editor_Post::get( $apost->ID );
211
-
212
- if ( $bpost->is_index() ) {
213
- return true;
214
- }
215
- }
216
- }
217
-
218
- return false;
219
- }
220
 
221
  /**
222
  * @internal
223
  */
224
  public function action_request_enable() {
225
 
226
- if ( ! isset( $_REQUEST['post'] ) || ! ( $p = get_post( $_REQUEST['post'] ) ) ) {
227
  Brizy_Admin_Flash::instance()->add_error( 'Invalid Request.' );
228
  wp_redirect( $_SERVER['HTTP_REFERER'] );
229
  exit();
@@ -275,47 +257,47 @@ class Brizy_Admin_Main {
275
  /**
276
  * @param $id
277
  */
278
- public function action_delete_page( $id ) {
279
-
280
- try {
281
- if ( ! in_array( get_post_type( $id ), brizy()->supported_post_types() ) ) {
282
- return;
283
- }
284
-
285
- $project = Brizy_Editor_Project::get();
286
- $post = Brizy_Editor_Post::get( $id );
287
-
288
- if ( ! $post->uses_editor() ) {
289
- return;
290
- }
291
-
292
- $is_index = $post->get_api_page()->is_index();
293
-
294
- // if the index page is deleted the we must mark other page as index
295
- // for now we will mark the first returned page.
296
- if ( $is_index && ! $this->has_brizy_index_page() ) {
297
-
298
- $posts = $this->get_brizy_posts();
299
-
300
- if ( isset( $posts[0] ) ) {
301
- $bpost = Brizy_Editor_Post::get( $posts[0]->ID );
302
- $bpost->set_is_index( true );
303
- $bpost->save();
304
- }
305
- }
306
-
307
- $post->set_status( Brizy_Editor_PostStatus::STATUS_TRASH );
308
-
309
- $updated_page = Brizy_Editor_User::get()->update_page( $project->get_api_project(), $post->get_api_page() );
310
- $post->updatePageData( $updated_page );
311
-
312
- do_action( 'brizy_delete_post', $id );
313
-
314
- } catch ( Exception $exception ) {
315
- return;
316
- }
317
-
318
- }
319
 
320
  /**
321
  * @internal
@@ -352,7 +334,9 @@ class Brizy_Admin_Main {
352
  **/
353
  public function filter_add_brizy_edit_row_actions( $actions, $post ) {
354
 
355
- if ( ! in_array( get_post_type(), brizy()->supported_post_types() ) ) {
 
 
356
  return $actions;
357
  }
358
 
@@ -391,165 +375,97 @@ class Brizy_Admin_Main {
391
  return $body . ( $post->uses_editor() ? 'brizy-editor-enabled' : '' );
392
  }
393
 
394
- /**
395
- * @param $data
396
- *
397
- * @return string
398
- */
399
- public function add_fake_editor( $data ) {
400
- if ( ! in_array( get_post_type(), brizy()->supported_post_types() ) ) {
401
- return $data;
402
- }
403
-
404
- try {
405
- $wp_post_id = get_post();
406
- $is_using_brizy = Brizy_Editor_Post::get( $wp_post_id->ID )->uses_editor();
407
- } catch ( Exception $e ) {
408
- $is_using_brizy = false;
409
- }
410
-
411
- if ( ! $is_using_brizy ) {
412
- return $data;
413
- }
414
 
415
- return Brizy_Admin_View::render( 'editor',
416
- array(
417
- 'url' => add_query_arg(
418
- array( Brizy_Editor_Constants::EDIT_KEY => '' ),
419
- get_permalink( get_the_ID() )
420
- )
421
- ) );
422
- }
423
-
424
- public function admin_action_new_post() {
425
-
426
- if ( empty( $_GET['post_type'] ) ) {
427
- $post_type = 'post';
428
- } else {
429
- $post_type = $_GET['post_type'];
430
- }
431
-
432
- if ( ! in_array( $post_type, brizy()->supported_post_types() ) ) {
433
- return;
434
- }
435
-
436
- $count = $this->get_brizy_auto_draft_count();
437
- $post_data = [
438
- 'post_type' => $post_type,
439
- 'post_title' => 'Brizy #' . ( $count + 1 )
440
- ];
441
-
442
- try {
443
- $post_id = wp_insert_post( $post_data );
444
-
445
- $p = get_post( $post_id );
446
-
447
- $this->enable_brizy_for_post( $p );
448
- } catch ( Exception $e ) {
449
- Brizy_Admin_Flash::instance()->add_error( 'Unable to create the page. Please try again later.' );
450
-
451
- wp_redirect( $_SERVER['HTTP_REFERER'] );
452
- }
453
- }
454
-
455
- private function get_brizy_auto_draft_count() {
456
- global $wpdb;
457
- $results = $wpdb->get_results( 'SELECT count(*) as count FROM wp_posts WHERE post_title LIKE "Brizy #%"' );
458
-
459
- if ( count( $results ) ) {
460
- return $results[0]->count;
461
- }
462
-
463
- return 0;
464
- }
465
 
466
  /**
467
  * @param $p
468
  *
469
- * @throws Brizy_Editor_Exceptions_AccessDenied
 
470
  */
471
  private function enable_brizy_for_post( $p ) {
472
 
473
- $mark_the_page_as_index = false;
474
- $project = null;
475
- $post = null;
476
- // obtain the project
477
- try {
478
- $project = Brizy_Editor_Project::get();
479
-
480
- $mark_the_page_as_index = ! $this->has_brizy_index_page();
481
 
 
 
 
482
  } catch ( Exception $exception ) {
 
 
 
483
 
484
- Brizy_Admin_Flash::instance()->add_error( 'Unable to create the project. Please try again later.' );
485
-
486
- if ( defined( 'BRIZY_DUMP_EXCEPTION' ) ) {
487
- var_dump( $exception );
488
- }
489
-
490
  wp_redirect( $_SERVER['HTTP_REFERER'] );
491
-
492
- exit;
493
  }
494
 
495
- // obtain the post
496
  try {
497
 
498
- $post = Brizy_Editor_Post::get( $p->ID );
 
499
 
500
- if ( $mark_the_page_as_index ) {
501
- $post->set_is_index( $mark_the_page_as_index );
502
- $post->save();
503
  }
504
 
505
- } catch ( Brizy_Editor_Exceptions_NotFound $exception ) {
506
-
507
- try {
508
-
509
- $post = Brizy_Editor_Post::create( $project, $p );
510
-
511
- $post->set_is_index( $mark_the_page_as_index );
512
- $post->save();
513
-
514
- } catch ( Exception $exception ) {
515
-
516
- Brizy_Admin_Flash::instance()->add_error( 'Unable to create the page. Please try again later.' );
517
-
518
- if ( defined( 'BRIZY_DUMP_EXCEPTION' ) ) {
519
- var_dump( $exception );
520
- }
521
 
522
- wp_redirect( $_SERVER['HTTP_REFERER'] );
 
523
  }
524
- } catch ( Exception $exception ) {
525
 
526
- Brizy_Admin_Flash::instance()->add_error( 'Unable to create the page. Please try again later.' );
527
 
528
- if ( defined( 'BRIZY_DUMP_EXCEPTION' ) ) {
529
- var_dump( $exception );
530
  }
531
 
532
- wp_redirect( $_SERVER['HTTP_REFERER'] );
533
- }
 
534
 
535
- if ( $p->post_status == 'auto-draft' ) {
536
- $p->post_status = 'draft';
537
- wp_update_post( $p );
538
- }
539
 
540
- if ( $p->post_title == __( 'Auto Draft' ) ) {
541
- $count = $this->get_brizy_auto_draft_count();
542
- $p->post_title = 'Brizy #' . ( $count + 1 );
543
- wp_update_post( $p );
544
  }
545
 
546
- $post->enable_editor();
547
-
548
- $post->set_template( Brizy_Config::BRIZY_TEMPLATE_FILE_NAME );
549
-
550
- // redirect
551
- wp_redirect( $post->edit_url() );
552
-
553
  exit;
554
  }
 
555
  }
23
  }
24
  add_action( 'admin_head', array( $this, 'hide_editor' ) );
25
 
26
+ //add_action( 'admin_action_brizy_new_post', array( $this, 'admin_action_new_post' ) );
27
 
28
  add_action( 'admin_post__brizy_admin_editor_enable', array( $this, 'action_request_enable' ) );
29
  add_action( 'admin_post__brizy_admin_editor_disable', array( $this, 'action_request_disable' ) );
30
  add_action( 'admin_post__brizy_change_template', array( $this, 'action_change_template' ) );
31
 
32
  add_action( 'admin_enqueue_scripts', array( $this, 'action_register_static' ) );
33
+ //add_action( 'before_delete_post', array( $this, 'action_delete_page' ) );
34
 
35
  add_action( 'edit_form_after_title', array( $this, 'action_add_enable_disable_buttons' ) );
36
 
39
  add_filter( 'admin_body_class', array( $this, 'filter_add_body_class' ), 10, 2 );
40
  add_filter( 'save_post', array( $this, 'compile_post_action' ), 10, 2 );
41
 
 
 
42
  if ( current_user_can( 'edit_posts' ) ) {
43
  add_filter( 'plugin_action_links_' . BRIZY_PLUGIN_BASE, array( $this, 'plugin_action_links' ) );
44
  add_filter( 'display_post_states', array( $this, 'display_post_states' ), 10, 2 );
45
  }
46
 
47
  if ( function_exists( 'gutenberg_init' ) ) {
48
+ add_action( 'admin_print_scripts-edit.php', array( $this, 'add_edit_button_to_gutenberg' ), 12 );
49
  }
50
  }
51
 
84
  return;
85
  }
86
 
 
87
  $b_post->compile_page();
88
  $b_post->save();
89
 
93
 
94
  // compile
95
  } catch ( Exception $e ) {
96
+ Brizy_Logger::instance()->exception( $e );
97
+
98
  return;
99
  }
100
  }
125
  public function add_edit_button_to_gutenberg() {
126
  global $typenow;
127
 
128
+ $new_post_url = add_query_arg( array(
129
  'action' => 'brizy_new_post',
130
  'post_type' => $typenow,
131
+ ), admin_url( 'edit.php' ) );
132
 
133
  ?>
134
  <script type="text/javascript">
188
  );
189
  }
190
 
191
+ // private function get_brizy_posts() {
192
+ //
193
+ // $posts = get_posts( array(
194
+ // 'meta_key' => Brizy_Editor_Storage_Post::META_KEY,
195
+ // 'post_type' => brizy()->supported_post_types(),
196
+ // 'post_status' => 'any',
197
+ // get_site_url()
198
+ // ) );
199
+ //
200
+ // return $posts;
201
+ // }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
202
 
203
  /**
204
  * @internal
205
  */
206
  public function action_request_enable() {
207
 
208
+ if ( ! isset( $_REQUEST['post'] ) || ! ( $p = get_post( (int) $_REQUEST['post'] ) ) ) {
209
  Brizy_Admin_Flash::instance()->add_error( 'Invalid Request.' );
210
  wp_redirect( $_SERVER['HTTP_REFERER'] );
211
  exit();
257
  /**
258
  * @param $id
259
  */
260
+ // public function action_delete_page( $id ) {
261
+ //
262
+ // try {
263
+ // if ( ! in_array( get_post_type( $id ), brizy()->supported_post_types() ) ) {
264
+ // return;
265
+ // }
266
+ //
267
+ // $project = Brizy_Editor_Project::get();
268
+ // $post = Brizy_Editor_Post::get( $id );
269
+ //
270
+ // if ( ! $post->uses_editor() ) {
271
+ // return;
272
+ // }
273
+ //
274
+ // $is_index = $post->get_api_page()->is_index();
275
+ //
276
+ // // if the index page is deleted the we must mark other page as index
277
+ // // for now we will mark the first returned page.
278
+ // if ( $is_index && ! $this->has_brizy_index_page() ) {
279
+ //
280
+ // $posts = $this->get_brizy_posts();
281
+ //
282
+ // if ( isset( $posts[0] ) ) {
283
+ // $bpost = Brizy_Editor_Post::get( $posts[0]->ID );
284
+ // $bpost->set_is_index( true );
285
+ // $bpost->save();
286
+ // }
287
+ // }
288
+ //
289
+ // $post->set_status( Brizy_Editor_PostStatus::STATUS_TRASH );
290
+ //
291
+ // //$updated_page = Brizy_Editor_User::get()->update_page( $project->get_api_project(), $post->get_api_page() );
292
+ // //$post->updatePageData( $updated_page );
293
+ //
294
+ // do_action( 'brizy_delete_post', $id );
295
+ //
296
+ // } catch ( Exception $exception ) {
297
+ // return;
298
+ // }
299
+ //
300
+ // }
301
 
302
  /**
303
  * @internal
334
  **/
335
  public function filter_add_brizy_edit_row_actions( $actions, $post ) {
336
 
337
+ $is_allowed = Brizy_Editor::is_capable( "edit_post", $post->ID );
338
+
339
+ if ( ! in_array( get_post_type(), brizy()->supported_post_types() ) || ! $is_allowed ) {
340
  return $actions;
341
  }
342
 
375
  return $body . ( $post->uses_editor() ? 'brizy-editor-enabled' : '' );
376
  }
377
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
378
 
379
+ // public function admin_action_new_post() {
380
+ //
381
+ // if ( empty( $_GET['post_type'] ) ) {
382
+ // $post_type = 'post';
383
+ // } else {
384
+ // $post_type = $_GET['post_type'];
385
+ // }
386
+ //
387
+ // if ( ! in_array( $post_type, brizy()->supported_post_types() ) ) {
388
+ // return;
389
+ // }
390
+ //
391
+ // $count = $this->get_brizy_auto_draft_count();
392
+ // $post_data = [
393
+ // 'post_type' => $post_type,
394
+ // 'post_title' => 'Brizy #' . ( $count + 1 )
395
+ // ];
396
+ //
397
+ // try {
398
+ // $post_id = wp_insert_post( $post_data );
399
+ //
400
+ // $p = get_post( $post_id );
401
+ //
402
+ // $this->enable_brizy_for_post( $p );
403
+ // } catch ( Exception $e ) {
404
+ // Brizy_Admin_Flash::instance()->add_error( 'Unable to create the page. Please try again later.' );
405
+ //
406
+ // wp_redirect( $_SERVER['HTTP_REFERER'] );
407
+ // }
408
+ // }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
409
 
410
  /**
411
  * @param $p
412
  *
413
+ * @throws Brizy_Editor_Exceptions_UnsupportedPostType
414
+ * @throws Exception
415
  */
416
  private function enable_brizy_for_post( $p ) {
417
 
418
+ $post = null;
 
 
 
 
 
 
 
419
 
420
+ // obtain the post
421
+ try {
422
+ $post = Brizy_Editor_Post::get( $p->ID );
423
  } catch ( Exception $exception ) {
424
+ $project = Brizy_Editor_Project::get();
425
+ $post = Brizy_Editor_Post::create( $project, $p );
426
+ }
427
 
428
+ if ( ! $post ) {
429
+ Brizy_Admin_Flash::instance()->add_error( 'Failed to enable the editor for this post.' );
 
 
 
 
430
  wp_redirect( $_SERVER['HTTP_REFERER'] );
 
 
431
  }
432
 
 
433
  try {
434
 
435
+ $update_post = false;
436
+ $post_type = $p->post_type;
437
 
438
+ if ( $p->post_status == 'auto-draft' ) {
439
+ $p->post_status = 'draft';
440
+ $update_post = true;
441
  }
442
 
443
+ if ( $p->post_title == __( 'Auto Draft' ) ) {
444
+ $p->post_title = 'Brizy #' . $p->ID;
445
+ $update_post = true;
446
+ }
 
 
 
 
 
 
 
 
 
 
 
 
447
 
448
+ if ( $update_post ) {
449
+ wp_update_post( $p );
450
  }
 
451
 
452
+ $post->enable_editor();
453
 
454
+ if ( $post_type != 'post' ) {
455
+ $post->set_template( Brizy_Config::BRIZY_TEMPLATE_FILE_NAME );
456
  }
457
 
458
+ $post->save();
459
+ // redirect
460
+ wp_redirect( $post->edit_url() );
461
 
462
+ } catch ( Exception $exception ) {
 
 
 
463
 
464
+ Brizy_Admin_Flash::instance()->add_error( 'Failed to enable the editor for this post.' );
465
+ wp_redirect( $_SERVER['HTTP_REFERER'] );
 
 
466
  }
467
 
 
 
 
 
 
 
 
468
  exit;
469
  }
470
+
471
  }
admin/settings.php CHANGED
@@ -4,6 +4,8 @@
4
 
5
  class Brizy_Admin_Settings {
6
 
 
 
7
  private $role_list;
8
 
9
  public static function menu_slug() {
@@ -23,6 +25,13 @@ class Brizy_Admin_Settings {
23
  add_action( 'current_screen', array( $this, 'action_validate_form_submit' ) );
24
  $this->role_list = $this->get_role_list();
25
 
 
 
 
 
 
 
 
26
  }
27
 
28
  public function is_settings_page() {
@@ -35,13 +44,15 @@ class Brizy_Admin_Settings {
35
  public function render() {
36
 
37
  try {
 
 
 
 
 
 
38
  echo Brizy_Admin_View::render(
39
  'settings/view',
40
- array(
41
- 'types' => array_map( array( $this, 'is_selected' ), $this->list_post_types() ),
42
- 'roles' => array_map( array( $this, 'is_role_selected' ), $this->list_wp_roles() ),
43
- 'project' => Brizy_Editor_Project::get()
44
- )
45
  );
46
 
47
  //echo Brizy_Admin_View::render( 'settings/debug', array() );
@@ -55,7 +66,8 @@ class Brizy_Admin_Settings {
55
  */
56
  function action_register_settings_page() {
57
  add_menu_page( brizy()->get_name(),
58
- brizy()->get_name(), 'manage_options',
 
59
  self::menu_slug(),
60
  array( $this, 'render' ),
61
  plugins_url( '/static/img/brizy-logo.svg', __FILE__ ),
@@ -98,12 +110,16 @@ class Brizy_Admin_Settings {
98
  }
99
 
100
  if ( $error_count == 0 ) {
 
 
101
  Brizy_Editor_Storage_Common::instance()->set( 'post-types', $post_types );
102
  Brizy_Editor_Storage_Common::instance()->set( 'exclude-roles', $roles );
103
 
104
  Brizy_Admin_Flash::instance()->add_success( 'Settings saved.' );
105
  }
106
 
 
 
107
  }
108
 
109
  protected function list_post_types() {
@@ -135,10 +151,10 @@ class Brizy_Admin_Settings {
135
  * @return array
136
  */
137
  protected function post_types() {
138
- $get_post_types = get_post_types( array( 'public' => true ), 'objects' );
139
 
140
  $types = array_filter(
141
- $get_post_types,
142
  array( $this, 'filter_types' )
143
  );
144
 
@@ -164,19 +180,11 @@ class Brizy_Admin_Settings {
164
 
165
  private function filter_types( WP_Post_Type $type ) {
166
 
167
- return in_array(
168
- $type->name,
169
- apply_filters( 'brizy:settings:exclude_post_types', brizy()->supported_post_types() )
170
- );
171
  }
172
 
173
  private function is_selected( $type ) {
174
-
175
- try {
176
- $type['selected'] = in_array( $type['type'], Brizy_Editor_Storage_Common::instance()->get( 'post-types' ) );
177
- } catch ( Exception $e ) {
178
- $type['selected'] = true;
179
- }
180
 
181
  return $type;
182
  }
4
 
5
  class Brizy_Admin_Settings {
6
 
7
+ private $selected_post_types;
8
+
9
  private $role_list;
10
 
11
  public static function menu_slug() {
25
  add_action( 'current_screen', array( $this, 'action_validate_form_submit' ) );
26
  $this->role_list = $this->get_role_list();
27
 
28
+ try {
29
+ $this->selected_post_types = Brizy_Editor_Storage_Common::instance()->get( 'post-types' );
30
+ } catch ( Exception $e ) {
31
+ $this->selected_post_types = array( 'post', 'page' );
32
+
33
+ Brizy_Editor_Storage_Common::instance()->set( 'post-types', $this->selected_post_types );
34
+ }
35
  }
36
 
37
  public function is_settings_page() {
44
  public function render() {
45
 
46
  try {
47
+ $list_post_types = $this->list_post_types();
48
+ $args = array(
49
+ 'types' => array_map( array( $this, 'is_selected' ), $list_post_types ),
50
+ 'roles' => array_map( array( $this, 'is_role_selected' ), $this->list_wp_roles() ),
51
+ 'project' => Brizy_Editor_Project::get()
52
+ );
53
  echo Brizy_Admin_View::render(
54
  'settings/view',
55
+ $args
 
 
 
 
56
  );
57
 
58
  //echo Brizy_Admin_View::render( 'settings/debug', array() );
66
  */
67
  function action_register_settings_page() {
68
  add_menu_page( brizy()->get_name(),
69
+ brizy()->get_name(),
70
+ 'manage_options',
71
  self::menu_slug(),
72
  array( $this, 'render' ),
73
  plugins_url( '/static/img/brizy-logo.svg', __FILE__ ),
110
  }
111
 
112
  if ( $error_count == 0 ) {
113
+ $this->selected_post_types = $post_types;
114
+
115
  Brizy_Editor_Storage_Common::instance()->set( 'post-types', $post_types );
116
  Brizy_Editor_Storage_Common::instance()->set( 'exclude-roles', $roles );
117
 
118
  Brizy_Admin_Flash::instance()->add_success( 'Settings saved.' );
119
  }
120
 
121
+ wp_redirect( menu_page_url( brizy()->get_name() ) );
122
+
123
  }
124
 
125
  protected function list_post_types() {
151
  * @return array
152
  */
153
  protected function post_types() {
154
+ $types = get_post_types( array( 'public' => true ), 'objects' );
155
 
156
  $types = array_filter(
157
+ $types,
158
  array( $this, 'filter_types' )
159
  );
160
 
180
 
181
  private function filter_types( WP_Post_Type $type ) {
182
 
183
+ return ! in_array( $type->name, array( 'attachment', 'elementor_library' ) );
 
 
 
184
  }
185
 
186
  private function is_selected( $type ) {
187
+ $type['selected'] = in_array( $type['type'], $this->selected_post_types );
 
 
 
 
 
188
 
189
  return $type;
190
  }
admin/static/js/script.js CHANGED
@@ -1,3 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  // jQuery(document).ready(function ($) {
2
  // var id = Brizy_Admin_Data.id;
3
  // var url = Brizy_Admin_Data.url;
1
+ jQuery(document).ready(function ($) {
2
+ $('.enable-brizy-editor').on('click', function (event) {
3
+ event.preventDefault();
4
+
5
+ jQuery(window).off( 'beforeunload.edit-post' );
6
+
7
+ if ( wp.autosave ) {
8
+ wp.autosave.server.triggerSave();
9
+ }
10
+
11
+ window.location = $(this).attr('href');
12
+ })
13
+ });
14
  // jQuery(document).ready(function ($) {
15
  // var id = Brizy_Admin_Data.id;
16
  // var url = Brizy_Admin_Data.url;
admin/views/button.php CHANGED
@@ -12,7 +12,7 @@ $label = $is_using_brizy ? 'Back to WordPress Editor' : 'Edit with';
12
  $className = $is_using_brizy ? 'brizy-button--default' : 'brizy-button--primary';
13
  ?>
14
  <div class="brizy-buttons">
15
- <a class="brizy-button <?php echo $className; ?>" type="button"
16
  href="<?php echo esc_url( admin_url( 'admin-post.php?action=_brizy_admin_editor_' . $state . '&post=' . $post->ID ) ); ?>">
17
  <?php
18
  if ( $is_using_brizy ) {
12
  $className = $is_using_brizy ? 'brizy-button--default' : 'brizy-button--primary';
13
  ?>
14
  <div class="brizy-buttons">
15
+ <a class="brizy-button <?php echo $className; ?> enable-brizy-editor" type="button"
16
  href="<?php echo esc_url( admin_url( 'admin-post.php?action=_brizy_admin_editor_' . $state . '&post=' . $post->ID ) ); ?>">
17
  <?php
18
  if ( $is_using_brizy ) {
brizy.php CHANGED
@@ -1,26 +1,24 @@
1
  <?php
2
  /**
3
- * Plugin Name: Brizy - Wordpress Page Builder
4
  * Description: A free drag & drop front-end page builder to help you create WordPress pages lightning fast. It's easy with Brizy.
5
  * Plugin URI: https://brizy.io/
6
  * Author: Brizy.io
7
  * Author URI: https://brizy.io/
8
- * Version: 0.2.5
9
  * Text Domain: brizy
10
  * License: GPLv3
11
  * Domain Path: /languages
12
  */
13
 
14
  define( 'BRIZY_DEVELOPMENT', false );
15
- define( 'BRIZY_VERSION', '0.2.5' );
16
- define( 'BRIZY_EDITOR_VERSION', '1.0.10' );
17
  define( 'BRIZY_FILE', __FILE__ );
18
  define( 'BRIZY_PLUGIN_BASE', plugin_basename( BRIZY_FILE ) );
19
  define( 'BRIZY_PLUGIN_PATH', dirname( BRIZY_FILE ) );
20
  define( 'BRIZY_PLUGIN_URL', plugin_dir_url( BRIZY_FILE ) );
21
 
22
- //define( 'BRIZY_DUMP_EXCEPTION', true );
23
-
24
  function brizy_install() {
25
  Brizy_Logger::install();
26
  }
@@ -33,12 +31,3 @@ include_once 'shortcode/load.php';
33
  include_once 'public/hooks.php';
34
  include_once 'admin/load.php';
35
 
36
- function brizy_load_text_domain() {
37
- load_plugin_textdomain(
38
- 'brizy',
39
- false,
40
- dirname( __FILE__ ) . DIRECTORY_SEPARATOR . 'languages'
41
- );
42
- }
43
-
44
- add_action( 'after_setup_theme', 'brizy_load_text_domain' );
1
  <?php
2
  /**
3
+ * Plugin Name: Brizy
4
  * Description: A free drag & drop front-end page builder to help you create WordPress pages lightning fast. It's easy with Brizy.
5
  * Plugin URI: https://brizy.io/
6
  * Author: Brizy.io
7
  * Author URI: https://brizy.io/
8
+ * Version: 1.0.4
9
  * Text Domain: brizy
10
  * License: GPLv3
11
  * Domain Path: /languages
12
  */
13
 
14
  define( 'BRIZY_DEVELOPMENT', false );
15
+ define( 'BRIZY_VERSION', '1.0.4' );
16
+ define( 'BRIZY_EDITOR_VERSION', '1.0.20' );
17
  define( 'BRIZY_FILE', __FILE__ );
18
  define( 'BRIZY_PLUGIN_BASE', plugin_basename( BRIZY_FILE ) );
19
  define( 'BRIZY_PLUGIN_PATH', dirname( BRIZY_FILE ) );
20
  define( 'BRIZY_PLUGIN_URL', plugin_dir_url( BRIZY_FILE ) );
21
 
 
 
22
  function brizy_install() {
23
  Brizy_Logger::install();
24
  }
31
  include_once 'public/hooks.php';
32
  include_once 'admin/load.php';
33
 
 
 
 
 
 
 
 
 
 
config.php CHANGED
@@ -32,6 +32,7 @@ class Brizy_Config {
32
 
33
  const MEDIA_IMAGE_PATH = '/storage/media';
34
  const MEDIA_IMAGE_URL = 'https://app.brizy.io/storage/media';
 
35
 
36
  const EDITOR_ORIGIN_URL = 'http://testblox.info';
37
 
@@ -41,7 +42,7 @@ class Brizy_Config {
41
  const EDITOR_HOST_PRIMARY = 'testblox.info';
42
 
43
  const GATEWAY_URI = 'https://api.brizy.io';
44
- const COMPILER_URI = 'https://api.brizy.io/v1/projects/%s/pages/%s/htmls';
45
 
46
  const BRIZY_REGISTRATION_CREDENTIALS = 'https://app.brizy.io/wordpress/credentials';
47
 
32
 
33
  const MEDIA_IMAGE_PATH = '/storage/media';
34
  const MEDIA_IMAGE_URL = 'https://app.brizy.io/storage/media';
35
+ const MEDIA_IMAGE_URL_REGEX = 'https:\/\/app\.brizy\.io\/storage\/media.[^"\'\s,)]+';
36
 
37
  const EDITOR_ORIGIN_URL = 'http://testblox.info';
38
 
42
  const EDITOR_HOST_PRIMARY = 'testblox.info';
43
 
44
  const GATEWAY_URI = 'https://api.brizy.io';
45
+ const COMPILER_URI = 'http://editorcomplier-lb-1472504860.us-east-1.elb.amazonaws.com/compile';
46
 
47
  const BRIZY_REGISTRATION_CREDENTIALS = 'https://app.brizy.io/wordpress/credentials';
48
 
editor.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  /**
3
  * Class Brizy_Editor
4
  */
@@ -16,12 +17,12 @@ class Brizy_Editor {
16
 
17
  public static function is_user_allowed() {
18
 
19
- if(is_null(self::$is_allowed_for_current_user))
20
- {
21
  $user = wp_get_current_user();
22
 
23
- if($user->ID==0) {
24
  self::$is_allowed_for_current_user = false;
 
25
  return self::$is_allowed_for_current_user;
26
  };
27
 
@@ -39,6 +40,10 @@ class Brizy_Editor {
39
  return self::$is_allowed_for_current_user;
40
  }
41
 
 
 
 
 
42
  private function __construct() {
43
  //add_filter( 'brizy:post_types', array( $this, '_filter_brizy_supported_port_types' ) );
44
  }
@@ -65,7 +70,7 @@ class Brizy_Editor {
65
  }
66
 
67
  public function supported_post_types() {
68
- return apply_filters( 'brizy:post_types', array( 'page', 'post' ) );
69
  }
70
 
71
  public function get_name() {
@@ -76,7 +81,7 @@ class Brizy_Editor {
76
  try {
77
  return Brizy_Editor_Storage_Common::instance()->get( self::$settings_key );
78
  } catch ( Brizy_Editor_Exceptions_NotFound $exception ) {
79
- return null;
80
  }
81
  }
82
  }
1
  <?php
2
+
3
  /**
4
  * Class Brizy_Editor
5
  */
17
 
18
  public static function is_user_allowed() {
19
 
20
+ if ( is_null( self::$is_allowed_for_current_user ) ) {
 
21
  $user = wp_get_current_user();
22
 
23
+ if ( $user->ID == 0 ) {
24
  self::$is_allowed_for_current_user = false;
25
+
26
  return self::$is_allowed_for_current_user;
27
  };
28
 
40
  return self::$is_allowed_for_current_user;
41
  }
42
 
43
+ public static function is_capable( $capability, $post_id = null ) {
44
+ return self::is_user_allowed() && current_user_can( $capability, $post_id );
45
+ }
46
+
47
  private function __construct() {
48
  //add_filter( 'brizy:post_types', array( $this, '_filter_brizy_supported_port_types' ) );
49
  }
70
  }
71
 
72
  public function supported_post_types() {
73
+ return apply_filters( 'brizy:post_types', $this->get_post_types() );
74
  }
75
 
76
  public function get_name() {
81
  try {
82
  return Brizy_Editor_Storage_Common::instance()->get( self::$settings_key );
83
  } catch ( Brizy_Editor_Exceptions_NotFound $exception ) {
84
+ return array('post', 'page' );
85
  }
86
  }
87
  }
editor/api.php CHANGED
@@ -90,19 +90,27 @@ class Brizy_Editor_API {
90
  return;
91
  }
92
 
93
- remove_action( 'save_post', array( $this, 'compile_post_action' ) );
94
  wp_update_post( array( 'ID' => $post_id, 'post_content' => $post->get_compiled_html_body() ) );
95
- wp_publish_post( $post_id );
96
- add_action( 'save_post', array( $this, 'compile_post_action' ), 10, 2 );
 
 
 
 
 
 
 
 
 
97
 
98
  // get latest version of post
99
- $post = Brizy_Editor_Post::get( $post_id );
100
- $post_arr = self::create_post_arr( $post );
101
  $post_arr['is_index'] = true; // this is for the case when the page we return is not an index page.. but the editor wants one.
102
  $this->success( array( $post_arr ) );
103
 
104
  } catch ( Exception $exception ) {
105
- Brizy_Logger::instance()->exception($exception);
106
  $this->error( 500, "Invalid post id" );
107
  exit;
108
  }
@@ -116,7 +124,7 @@ class Brizy_Editor_API {
116
  $this->authorize();
117
  $this->success( array() );
118
  } catch ( Exception $exception ) {
119
- Brizy_Logger::instance()->exception($exception);
120
  $this->error( $exception->getCode(), $exception->getMessage() );
121
  exit;
122
  }
@@ -132,7 +140,7 @@ class Brizy_Editor_API {
132
 
133
  $this->success( $data );
134
  } catch ( Exception $exception ) {
135
- Brizy_Logger::instance()->exception($exception);
136
  $this->error( $exception->getCode(), $exception->getMessage() );
137
  exit;
138
  }
@@ -153,7 +161,7 @@ class Brizy_Editor_API {
153
 
154
  $this->success( $this->create_post_globals() );
155
  } catch ( Exception $exception ) {
156
- Brizy_Logger::instance()->exception($exception);
157
  $this->error( $exception->getCode(), $exception->getMessage() );
158
  exit;
159
  }
@@ -172,7 +180,7 @@ class Brizy_Editor_API {
172
 
173
  $this->success( array( $post_arr ) );
174
  } catch ( Exception $exception ) {
175
- Brizy_Logger::instance()->exception($exception);
176
  $this->error( 500, $exception->getMessage() );
177
  exit;
178
  }
@@ -183,21 +191,21 @@ class Brizy_Editor_API {
183
  **/
184
  public function update_item() {
185
  try {
186
- $_POST = array_map( 'stripslashes_deep', $_POST );
187
- $content = $this->param( 'data' );
188
- $title = $this->param( 'title' );
189
  $atemplate = $this->param( 'template' );
190
 
191
- if ( $title ) {
192
- $this->post->set_title( $title );
193
- }
194
 
195
  if ( $atemplate ) {
196
  $this->post->set_template( $atemplate );
197
  }
198
 
199
- if ( $content ) {
200
- $this->post->set_content( $content );
201
  }
202
 
203
  $this->post
@@ -206,7 +214,7 @@ class Brizy_Editor_API {
206
 
207
  $this->success( self::create_post_arr( $this->post ) );
208
  } catch ( Exception $exception ) {
209
- Brizy_Logger::instance()->exception($exception);
210
  $this->error( $exception->getCode(), $exception->getMessage() );
211
  }
212
  }
@@ -247,7 +255,7 @@ class Brizy_Editor_API {
247
  'sidebarContent' => $sidebar_html
248
  ) );
249
  } catch ( Exception $exception ) {
250
- Brizy_Logger::instance()->exception($exception);
251
  $this->error( $exception->getCode(), $exception->getMessage() );
252
  }
253
  }
@@ -266,7 +274,7 @@ class Brizy_Editor_API {
266
  'shortcode' => $shortcode_content
267
  ) );
268
  } catch ( Exception $exception ) {
269
- Brizy_Logger::instance()->exception($exception);
270
  http://brizy.local/wp-admin/admin-ajax.php?post=13
271
  $this->error( $exception->getCode(), $exception->getMessage() );
272
  }
@@ -277,7 +285,7 @@ class Brizy_Editor_API {
277
  global $shortcode_tags;
278
  $this->success( array_keys( $shortcode_tags ) );
279
  } catch ( Exception $exception ) {
280
- Brizy_Logger::instance()->exception($exception);
281
  $this->error( $exception->getCode(), $exception->getMessage() );
282
  }
283
  }
@@ -296,7 +304,7 @@ class Brizy_Editor_API {
296
 
297
  $this->success( $response );
298
  } catch ( Exception $exception ) {
299
- Brizy_Logger::instance()->exception($exception);
300
  $this->error( $exception->getCode(), $exception->getMessage() );
301
  }
302
  }
@@ -309,7 +317,7 @@ class Brizy_Editor_API {
309
  $links = array_merge( $links, $this->get_post_link_list( $search_term ) );
310
  $links = array_merge( $links, $this->get_term_link_list( $search_term ) );
311
 
312
- wp_send_json( [ 'filter_term' => $search_term, 'links' => $links ], 200 );
313
  }
314
 
315
  public function get_sidebars() {
@@ -343,7 +351,7 @@ class Brizy_Editor_API {
343
  $attachment_id
344
  ) );
345
  } catch ( Exception $exception ) {
346
- Brizy_Logger::instance()->exception($exception);
347
  $this->error( $exception->getCode(), $exception->getMessage() );
348
  }
349
  }
@@ -382,9 +390,9 @@ class Brizy_Editor_API {
382
  return array(
383
  'title' => $the_title,
384
  'slug' => sanitize_title( $the_title ),
385
- 'data' => $post->get_content(),
386
  'id' => $p_id,
387
- 'is_index' => $post->get_api_page()->is_index(),
388
  'template' => get_page_template_slug( $p_id ),
389
  'status' => get_post_status( $p_id ),
390
  'url' => get_the_permalink( $p_id )
@@ -513,18 +521,18 @@ class Brizy_Editor_API {
513
 
514
 
515
  public function get_menu_list() {
516
- wp_send_json( wp_get_nav_menus(), 200 );
517
  }
518
 
519
  public function get_terms() {
520
 
521
  $taxonomy = $this->param( 'taxonomy' );
522
 
523
- $terms = (array)get_terms( array( 'taxonomy' => $taxonomy, 'hide_empty' => false ) );
524
 
525
  @header( 'Content-Type: application/json; charset=' . get_option( 'blog_charset' ) );
526
 
527
- wp_send_json(array_values($terms));
528
  }
529
 
530
  }
90
  return;
91
  }
92
 
 
93
  wp_update_post( array( 'ID' => $post_id, 'post_content' => $post->get_compiled_html_body() ) );
94
+
95
+ $post_type = $post->get_wp_post()->post_type;
96
+ $post_type_object = get_post_type_object( $post_type );
97
+ $can_publish = current_user_can( $post_type_object->cap->publish_posts );
98
+
99
+ if ( $can_publish ) {
100
+ wp_publish_post( $post_id );
101
+ } else {
102
+ wp_update_post( array( 'ID' => $post_id, 'post_status' => 'pending' ) );
103
+ }
104
+
105
 
106
  // get latest version of post
107
+ $post = Brizy_Editor_Post::get( $post_id );
108
+ $post_arr = self::create_post_arr( $post );
109
  $post_arr['is_index'] = true; // this is for the case when the page we return is not an index page.. but the editor wants one.
110
  $this->success( array( $post_arr ) );
111
 
112
  } catch ( Exception $exception ) {
113
+ Brizy_Logger::instance()->exception( $exception );
114
  $this->error( 500, "Invalid post id" );
115
  exit;
116
  }
124
  $this->authorize();
125
  $this->success( array() );
126
  } catch ( Exception $exception ) {
127
+ Brizy_Logger::instance()->exception( $exception );
128
  $this->error( $exception->getCode(), $exception->getMessage() );
129
  exit;
130
  }
140
 
141
  $this->success( $data );
142
  } catch ( Exception $exception ) {
143
+ Brizy_Logger::instance()->exception( $exception );
144
  $this->error( $exception->getCode(), $exception->getMessage() );
145
  exit;
146
  }
161
 
162
  $this->success( $this->create_post_globals() );
163
  } catch ( Exception $exception ) {
164
+ Brizy_Logger::instance()->exception( $exception );
165
  $this->error( $exception->getCode(), $exception->getMessage() );
166
  exit;
167
  }
180
 
181
  $this->success( array( $post_arr ) );
182
  } catch ( Exception $exception ) {
183
+ Brizy_Logger::instance()->exception( $exception );
184
  $this->error( 500, $exception->getMessage() );
185
  exit;
186
  }
191
  **/
192
  public function update_item() {
193
  try {
194
+ $_POST = array_map( 'stripslashes_deep', $_POST );
195
+ $data = $this->param( 'data' );
196
+ //$title = $this->param( 'title' );
197
  $atemplate = $this->param( 'template' );
198
 
199
+ // if ( $title ) {
200
+ // $this->post->set_title( $title );
201
+ // }
202
 
203
  if ( $atemplate ) {
204
  $this->post->set_template( $atemplate );
205
  }
206
 
207
+ if ( $data ) {
208
+ $this->post->set_editor_data( $data );
209
  }
210
 
211
  $this->post
214
 
215
  $this->success( self::create_post_arr( $this->post ) );
216
  } catch ( Exception $exception ) {
217
+ Brizy_Logger::instance()->exception( $exception );
218
  $this->error( $exception->getCode(), $exception->getMessage() );
219
  }
220
  }
255
  'sidebarContent' => $sidebar_html
256
  ) );
257
  } catch ( Exception $exception ) {
258
+ Brizy_Logger::instance()->exception( $exception );
259
  $this->error( $exception->getCode(), $exception->getMessage() );
260
  }
261
  }
274
  'shortcode' => $shortcode_content
275
  ) );
276
  } catch ( Exception $exception ) {
277
+ Brizy_Logger::instance()->exception( $exception );
278
  http://brizy.local/wp-admin/admin-ajax.php?post=13
279
  $this->error( $exception->getCode(), $exception->getMessage() );
280
  }
285
  global $shortcode_tags;
286
  $this->success( array_keys( $shortcode_tags ) );
287
  } catch ( Exception $exception ) {
288
+ Brizy_Logger::instance()->exception( $exception );
289
  $this->error( $exception->getCode(), $exception->getMessage() );
290
  }
291
  }
304
 
305
  $this->success( $response );
306
  } catch ( Exception $exception ) {
307
+ Brizy_Logger::instance()->exception( $exception );
308
  $this->error( $exception->getCode(), $exception->getMessage() );
309
  }
310
  }
317
  $links = array_merge( $links, $this->get_post_link_list( $search_term ) );
318
  $links = array_merge( $links, $this->get_term_link_list( $search_term ) );
319
 
320
+ wp_send_json( array( 'filter_term' => $search_term, 'links' => $links ), 200 );
321
  }
322
 
323
  public function get_sidebars() {
351
  $attachment_id
352
  ) );
353
  } catch ( Exception $exception ) {
354
+ Brizy_Logger::instance()->exception( $exception );
355
  $this->error( $exception->getCode(), $exception->getMessage() );
356
  }
357
  }
390
  return array(
391
  'title' => $the_title,
392
  'slug' => sanitize_title( $the_title ),
393
+ 'data' => $post->get_editor_data(),
394
  'id' => $p_id,
395
+ 'is_index' => false,
396
  'template' => get_page_template_slug( $p_id ),
397
  'status' => get_post_status( $p_id ),
398
  'url' => get_the_permalink( $p_id )
521
 
522
 
523
  public function get_menu_list() {
524
+ wp_send_json( wp_get_nav_menus(array('hide_empty'=>true)), 200 );
525
  }
526
 
527
  public function get_terms() {
528
 
529
  $taxonomy = $this->param( 'taxonomy' );
530
 
531
+ $terms = (array) get_terms( array( 'taxonomy' => $taxonomy, 'hide_empty' => false ) );
532
 
533
  @header( 'Content-Type: application/json; charset=' . get_option( 'blog_charset' ) );
534
 
535
+ wp_send_json( array_values( $terms ) );
536
  }
537
 
538
  }
editor/api/client.php CHANGED
@@ -54,15 +54,15 @@ class Brizy_Editor_API_Client extends Brizy_Editor_Http_Client {
54
  * @throws Brizy_Editor_Http_Exceptions_ResponseNotFound
55
  * @throws Brizy_Editor_Http_Exceptions_ResponseUnauthorized
56
  */
57
- public function clone_pages( $page_ids, $project_target ) {
58
-
59
- return $this->post( 'pages/clones', array(
60
- 'body' => array(
61
- 'project' => $project_target,
62
- 'pages' => $page_ids
63
- )
64
- ) )->get_response_body();
65
- }
66
 
67
  /**
68
  * @param Brizy_Editor_API_Project $project
@@ -117,9 +117,9 @@ class Brizy_Editor_API_Client extends Brizy_Editor_Http_Client {
117
  * @throws Brizy_Editor_Http_Exceptions_ResponseNotFound
118
  * @throws Brizy_Editor_Http_Exceptions_ResponseUnauthorized
119
  */
120
- public function get_pages( $project_id ) {
121
- return $this->get( "projects/$project_id/pages?=signature=" . Brizy_Editor_Signature::get() )->get_response_body();
122
- }
123
 
124
  /**
125
  * @param $project_id
@@ -132,9 +132,9 @@ class Brizy_Editor_API_Client extends Brizy_Editor_Http_Client {
132
  * @throws Brizy_Editor_Http_Exceptions_ResponseNotFound
133
  * @throws Brizy_Editor_Http_Exceptions_ResponseUnauthorized
134
  */
135
- public function get_page( $project_id, $page_id ) {
136
- return $this->get( "projects/$project_id/pages/$page_id" )->get_response_body();
137
- }
138
 
139
  /**
140
  * @param $project_id
@@ -147,9 +147,9 @@ class Brizy_Editor_API_Client extends Brizy_Editor_Http_Client {
147
  * @throws Brizy_Editor_Http_Exceptions_ResponseNotFound
148
  * @throws Brizy_Editor_Http_Exceptions_ResponseUnauthorized
149
  */
150
- public function create_page( $project_id, Brizy_Editor_API_Page $page ) {
151
- return $this->post( "projects/$project_id/pages", array( 'body' => $page->getSaveData() ) )->get_response_body();
152
- }
153
 
154
  /**
155
  * @param $project_id
@@ -163,42 +163,66 @@ class Brizy_Editor_API_Client extends Brizy_Editor_Http_Client {
163
  * @throws Brizy_Editor_Http_Exceptions_ResponseNotFound
164
  * @throws Brizy_Editor_Http_Exceptions_ResponseUnauthorized
165
  */
166
- public function update_page( $project_id, $page_id, Brizy_Editor_API_Page $page ) {
167
- return $this->put( "projects/$project_id/pages/$page_id", array( 'body' => $page->getSaveData( 'PUT' ) ) )->get_response_body();
168
- }
169
 
170
  /**
171
- * @param Brizy_Editor_API_Project $project
172
- * @param Brizy_Editor_API_Page $page
173
  * @param $config
174
  *
175
- * @return array|mixed|object
176
  * @throws Brizy_Editor_API_Exceptions_Exception
177
  * @throws Brizy_Editor_Http_Exceptions_BadRequest
178
  * @throws Brizy_Editor_Http_Exceptions_ResponseException
179
  * @throws Brizy_Editor_Http_Exceptions_ResponseNotFound
180
  * @throws Brizy_Editor_Http_Exceptions_ResponseUnauthorized
181
  */
182
- public function compile_page( $project, $page, $config ) {
183
-
184
- $compile_url = sprintf( Brizy_Config::COMPILER_URI, $project->get_id(), $page->get_id(), $this->access_token->access_token() );
185
- $body = array(
186
- 'editor_data' => array(
187
- 'urls' => array(
188
- 'api' => $this->url( '' ),
189
- //'primary' => $config['urls']['primary'],
190
- 'base' => $config['urls']['base'],
191
- //'static' => $config['urls']['static'],
192
- 'assets' => $config['urls']['assets'],
193
- 'image' => $config['urls']['image'],
194
- 'templateIcons' => $config['urls']['templateIcons'],
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
195
  ),
196
- 'wp' => $config['wp']
197
  ),
198
- 'template_version' => BRIZY_EDITOR_VERSION
199
  );
200
 
201
- return parent::request( $compile_url, array( 'body' => $body ), 'POST' )->get_response_body();
 
202
  }
203
 
204
  /**
@@ -212,9 +236,9 @@ class Brizy_Editor_API_Client extends Brizy_Editor_Http_Client {
212
  * @throws Brizy_Editor_Http_Exceptions_ResponseNotFound
213
  * @throws Brizy_Editor_Http_Exceptions_ResponseUnauthorized
214
  */
215
- public function delete_page( $project_id, $page_id ) {
216
- return $this->delete( "projects/$project_id/pages/$page_id" )->get_response_body();
217
- }
218
 
219
  /**
220
  * @param $project_id
@@ -249,7 +273,7 @@ class Brizy_Editor_API_Client extends Brizy_Editor_Http_Client {
249
  * @return string
250
  */
251
  protected function url( $suffix ) {
252
- $implode = rtrim( implode( "/", [ Brizy_Config::GATEWAY_URI, 'v1', $suffix ] ), "/" );
253
 
254
  return $implode;
255
  }
54
  * @throws Brizy_Editor_Http_Exceptions_ResponseNotFound
55
  * @throws Brizy_Editor_Http_Exceptions_ResponseUnauthorized
56
  */
57
+ // public function clone_pages( $page_ids, $project_target ) {
58
+ //
59
+ // return $this->post( 'pages/clones', array(
60
+ // 'body' => array(
61
+ // 'project' => $project_target,
62
+ // 'pages' => $page_ids
63
+ // )
64
+ // ) )->get_response_body();
65
+ // }
66
 
67
  /**
68
  * @param Brizy_Editor_API_Project $project
117
  * @throws Brizy_Editor_Http_Exceptions_ResponseNotFound
118
  * @throws Brizy_Editor_Http_Exceptions_ResponseUnauthorized
119
  */
120
+ // public function get_pages( $project_id ) {
121
+ // return $this->get( "projects/$project_id/pages?=signature=" . Brizy_Editor_Signature::get() )->get_response_body();
122
+ // }
123
 
124
  /**
125
  * @param $project_id
132
  * @throws Brizy_Editor_Http_Exceptions_ResponseNotFound
133
  * @throws Brizy_Editor_Http_Exceptions_ResponseUnauthorized
134
  */
135
+ // public function get_page( $project_id, $page_id ) {
136
+ // return $this->get( "projects/$project_id/pages/$page_id" )->get_response_body();
137
+ // }
138
 
139
  /**
140
  * @param $project_id
147
  * @throws Brizy_Editor_Http_Exceptions_ResponseNotFound
148
  * @throws Brizy_Editor_Http_Exceptions_ResponseUnauthorized
149
  */
150
+ // public function create_page( $project_id, Brizy_Editor_API_Page $page ) {
151
+ // return $this->post( "projects/$project_id/pages", array( 'body' => $page->getSaveData() ) )->get_response_body();
152
+ // }
153
 
154
  /**
155
  * @param $project_id
163
  * @throws Brizy_Editor_Http_Exceptions_ResponseNotFound
164
  * @throws Brizy_Editor_Http_Exceptions_ResponseUnauthorized
165
  */
166
+ // public function update_page( $project_id, $page_id, Brizy_Editor_API_Page $page ) {
167
+ // return $this->put( "projects/$project_id/pages/$page_id", array( 'body' => $page->getSaveData( 'PUT' ) ) )->get_response_body();
168
+ // }
169
 
170
  /**
171
+ * @param $project
172
+ * @param $page_data
173
  * @param $config
174
  *
 
175
  * @throws Brizy_Editor_API_Exceptions_Exception
176
  * @throws Brizy_Editor_Http_Exceptions_BadRequest
177
  * @throws Brizy_Editor_Http_Exceptions_ResponseException
178
  * @throws Brizy_Editor_Http_Exceptions_ResponseNotFound
179
  * @throws Brizy_Editor_Http_Exceptions_ResponseUnauthorized
180
  */
181
+ public function compile_page( $project, $page_data, $config ) {
182
+
183
+ $compile_url = Brizy_Config::COMPILER_URI;
184
+ $template_version = BRIZY_EDITOR_VERSION;
185
+ $url_builder = new Brizy_Editor_UrlBuilder( $project );
186
+ $body = array(
187
+ 'template_slug' => 'brizy',
188
+ 'template_version' => $template_version,
189
+ 'template_download_url' => $url_builder->external_asset_url( '/visual/export.js' ),
190
+ 'config_json' => json_encode( $config ), // ???
191
+ 'pages_json' => json_encode( array(
192
+ array(
193
+ 'id' => 1,
194
+ 'data' => $page_data,
195
+ 'is_index' => true
196
+ )
197
+ ) ), // ???
198
+ 'globals_json' => json_encode( $project->get_globals() ),
199
+ 'page_id' => 1
200
+ );
201
+
202
+ $page = parent::request( $compile_url, array( 'body' => $body ), 'POST' )->get_response_body();
203
+
204
+ $static_template_page = BRIZY_PLUGIN_PATH . "/public/editor-build/" . BRIZY_EDITOR_VERSION . "/editor/views/static.html.twig";
205
+
206
+ $loader = new Twig_Loader_Array( array(
207
+ 'static' => file_get_contents( $static_template_page )
208
+ ) );
209
+
210
+ $twig = new Twig_Environment( $loader, array() );
211
+ $twig_template = $twig->load( 'static' );
212
+
213
+ $template_context = array(
214
+
215
+ 'editorData' => array(
216
+ 'urls' => array(
217
+ 'assets' => $config['urls']['assets'],
218
  ),
219
+ 'serverTimestamp' => time()
220
  ),
221
+ 'page' => $page
222
  );
223
 
224
+ return $twig_template->render( $template_context );
225
+
226
  }
227
 
228
  /**
236
  * @throws Brizy_Editor_Http_Exceptions_ResponseNotFound
237
  * @throws Brizy_Editor_Http_Exceptions_ResponseUnauthorized
238
  */
239
+ // public function delete_page( $project_id, $page_id ) {
240
+ // return $this->delete( "projects/$project_id/pages/$page_id" )->get_response_body();
241
+ // }
242
 
243
  /**
244
  * @param $project_id
273
  * @return string
274
  */
275
  protected function url( $suffix ) {
276
+ $implode = rtrim( implode( "/", array( Brizy_Config::GATEWAY_URI, 'v1', $suffix ) ), "/" );
277
 
278
  return $implode;
279
  }
editor/api/page.php CHANGED
@@ -1,5 +1,11 @@
1
  <?php
2
 
 
 
 
 
 
 
3
  class Brizy_Editor_API_Page extends Brizy_Admin_Serializable {
4
 
5
  /**
1
  <?php
2
 
3
+ /**
4
+ *
5
+ * @deprecated
6
+ *
7
+ * Class Brizy_Editor_API_Page
8
+ */
9
  class Brizy_Editor_API_Page extends Brizy_Admin_Serializable {
10
 
11
  /**
editor/asset/abstract-storage.php CHANGED
@@ -61,7 +61,10 @@ abstract class Brizy_Editor_Asset_AbstractStorage {
61
  */
62
  public function store_file( $asset_source, $asset_path ) {
63
 
64
- $full_asset_path = null;
 
 
 
65
  try {
66
  // check destination dir
67
  $dir_path = dirname( $asset_path );
@@ -70,34 +73,24 @@ abstract class Brizy_Editor_Asset_AbstractStorage {
70
  mkdir( $dir_path, 0777, true );
71
  }
72
 
73
- $full_asset_path = $asset_path;
74
 
75
- $fasset_dest = fopen( $asset_path, 'w' );
76
- if ( ! $fasset_dest ) {
77
- throw new Exception( 'Invalid file destination.' );
78
- }
79
 
80
- $fasset_src = fopen( $asset_source, 'r' );
81
- if ( ! $fasset_src ) {
82
- throw new Exception( 'Invalid asset source.' );
83
  }
84
 
85
- $buffer_length = 81920; // we can tune this later;
86
 
87
- while ( ! feof( $fasset_src ) ) {
88
- $buffer = fread( $fasset_src, $buffer_length );
89
- fwrite( $fasset_dest, $buffer );
90
- }
91
-
92
- fclose( $fasset_src );
93
- fclose( $fasset_dest );
94
 
95
  } catch ( Exception $e ) {
96
  $t = 0;
97
 
98
  // clean up
99
- if ( $full_asset_path ) {
100
- @unlink( $full_asset_path );
101
  }
102
 
103
  return false;
@@ -105,4 +98,41 @@ abstract class Brizy_Editor_Asset_AbstractStorage {
105
 
106
  return true;
107
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
108
  }
61
  */
62
  public function store_file( $asset_source, $asset_path ) {
63
 
64
+ if ( file_exists( $asset_path ) ) {
65
+ return true;
66
+ }
67
+
68
  try {
69
  // check destination dir
70
  $dir_path = dirname( $asset_path );
73
  mkdir( $dir_path, 0777, true );
74
  }
75
 
 
76
 
77
+ $http = new WP_Http();
78
+ $wp_response = $http->request( $asset_source );
 
 
79
 
80
+ if ( is_wp_error( $wp_response ) ) {
81
+ return false;
 
82
  }
83
 
84
+ $content = wp_remote_retrieve_body( $wp_response );
85
 
86
+ file_put_contents( $asset_path, $content );
 
 
 
 
 
 
87
 
88
  } catch ( Exception $e ) {
89
  $t = 0;
90
 
91
  // clean up
92
+ if ( $asset_path ) {
93
+ @unlink( $asset_path );
94
  }
95
 
96
  return false;
98
 
99
  return true;
100
  }
101
+
102
+
103
+ /**
104
+ * Make sure the $asset_path is an existing file.
105
+ *
106
+ * @param $asset_path
107
+ * @param $post_id
108
+ * @param string $title
109
+ *
110
+ * @return bool|int
111
+ */
112
+ public function attach_to_post( $asset_path, $post_id, $title = '' ) {
113
+
114
+ if ( ! $post_id ) {
115
+ return false;
116
+ }
117
+ if ( ! file_exists( $asset_path ) ) {
118
+ return false;
119
+ }
120
+
121
+ $filetype = wp_check_filetype( $asset_path );
122
+
123
+ $attachment = array(
124
+ 'post_mime_type' => $filetype['type'],
125
+ 'post_title' => $title ? $title : basename( $asset_path ),
126
+ 'post_content' => '',
127
+ 'post_status' => 'inherit'
128
+ );
129
+
130
+ $result = wp_insert_attachment( $attachment, $asset_path, $post_id );
131
+
132
+ if ( is_wp_error( $result ) ) {
133
+ return false;
134
+ }
135
+
136
+ return $result;
137
+ }
138
  }
editor/asset/asset-proxy-processor.php CHANGED
@@ -16,7 +16,7 @@ class Brizy_Editor_Asset_AssetProxyProcessor implements Brizy_Editor_Asset_Proce
16
  /**
17
  * Brizy_Editor_Asset_HtmlAssetProcessor constructor.
18
  *
19
- * @param Brizy_Editor_Asset_Storage $storage
20
  */
21
  public function __construct( $storage ) {
22
  $this->storage = $storage;
16
  /**
17
  * Brizy_Editor_Asset_HtmlAssetProcessor constructor.
18
  *
19
+ * @param Brizy_Editor_Asset_AbstractStorage $storage
20
  */
21
  public function __construct( $storage ) {
22
  $this->storage = $storage;
editor/asset/media-asset-processor.php CHANGED
@@ -31,96 +31,20 @@ class Brizy_Editor_Asset_MediaAssetProcessor implements Brizy_Editor_Asset_Proce
31
  */
32
  public function process( $content ) {
33
 
34
- //$content = $this->process_script_urls( $content );
35
- $content = $this->process_image_urls( $content );
36
- $content = $this->process_inline_css( $content );
37
 
38
  return $content;
39
  }
40
 
41
- /**
42
- * @param string $content
43
- *
44
- * @return string
45
- */
46
- // private function process_script_urls( $content ) {
47
- //
48
- // preg_match_all( '/<script(.*?)<\/script>/im', $content, $matches );
49
- //
50
- // foreach ( $matches[1] as $attributes ) {
51
- // preg_match_all( "/src=(?:\"(.[^\"]*)\")/", $attributes, $res );
52
- // $t = 0;
53
- //
54
- // if ( isset( $res[1] ) && isset( $res[1][0] ) ) {
55
- // $url = $res[1][0];
56
- // // store and replace $url
57
- // $new_url = $this->storage->store( $url );
58
- // $content = str_replace( $url, $new_url, $content );
59
- // }
60
- // }
61
- //
62
- // return $content;
63
- // }
64
-
65
- /**
66
- * @param string $content
67
- *
68
- * @return string
69
- */
70
- private function process_image_urls( $content ) {
71
-
72
- preg_match_all( '/<img(.*?)\/?>/im', $content, $matches );
73
-
74
- foreach ( $matches[1] as $attributes ) {
75
- preg_match_all( "/src=(?:\"(.[^\"]*)\")/", $attributes, $res );
76
-
77
- if ( isset( $res[1] ) && isset( $res[1][0] ) && strpos( $res[1][0], Brizy_Config::MEDIA_IMAGE_URL ) === 0 ) {
78
- $url = $res[1][0];
79
 
80
- // ignore inline images
81
- if ( preg_match( "/^data:/i", $url ) ) {
82
- continue;
83
- }
84
-
85
- // store and replace $url
86
- $new_url = $this->storage->store( $url );
87
-
88
- $content = str_replace( $url, $new_url, $content );
89
- }
90
  }
91
 
92
  return $content;
93
  }
94
-
95
-
96
- /**
97
- * @param string $content
98
- *
99
- * @return string
100
- */
101
- private function process_inline_css( $content ) {
102
-
103
- preg_match_all( '/<style(.[^<]*)<\/style>/im', $content, $matches );
104
-
105
- foreach ( $matches[1] as $attributes ) {
106
- preg_match_all( "/url\(\"?(.[^\"\)]*)\)/im", $attributes, $res );
107
-
108
- if ( isset( $res[1] ) && isset( $res[1][0] ) && strpos( $res[1][0], Brizy_Config::MEDIA_IMAGE_URL ) === 0 ) {
109
- $url = $res[1][0];
110
-
111
- // ignore inline images
112
- if ( preg_match( "/^data:/i", $url ) ) {
113
- continue;
114
- }
115
-
116
- // store and replace $url
117
- $new_url = $this->storage->store( $url );
118
- $content = str_replace( $url, $new_url, $content );
119
- }
120
- }
121
-
122
- return $content;
123
- }
124
-
125
-
126
  }
31
  */
32
  public function process( $content ) {
33
 
34
+ $content = $this->process_external_asset_urls( $content );
 
 
35
 
36
  return $content;
37
  }
38
 
39
+ public function process_external_asset_urls( $content ) {
40
+ $regex = Brizy_Config::MEDIA_IMAGE_URL_REGEX;
41
+ preg_match_all( "/{$regex}/im", $content, $matches );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
42
 
43
+ foreach ( $matches[0] as $asset_url ) {
44
+ $new_url = $this->storage->store( $asset_url );
45
+ $content = str_replace( $asset_url, $new_url, $content );
 
 
 
 
 
 
 
46
  }
47
 
48
  return $content;
49
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
50
  }
editor/asset/storage.php CHANGED
@@ -6,42 +6,8 @@
6
  * Time: 10:46 AM
7
  */
8
 
9
- class Brizy_Editor_Asset_Storage {
10
 
11
- /**
12
- * @var Brizy_Editor_Project
13
- */
14
- private $project;
15
-
16
-
17
- /**
18
- * @var Brizy_Editor_Post
19
- */
20
- private $post;
21
-
22
- /**
23
- * @var array
24
- */
25
- private $config;
26
-
27
- /**
28
- * @var Brizy_Editor_UrlBuilder
29
- */
30
- private $url_builder;
31
-
32
- /**
33
- * Brizy_Editor_Asset_Storage constructor.
34
- *
35
- * @param Brizy_Editor_Project $project
36
- * @param Brizy_Editor_Post $post
37
- */
38
-
39
- public function __construct( $project, $post, $config ) {
40
- $this->project = $project;
41
- $this->post = $post;
42
- $this->config = $config;
43
- $this->url_builder = new Brizy_Editor_UrlBuilder( $project, $post );
44
- }
45
 
46
  /**
47
  * Get the asset and store it somewhere in uploads and return the new local url.
@@ -52,7 +18,7 @@ class Brizy_Editor_Asset_Storage {
52
  */
53
  public function store( $asset_url ) {
54
 
55
- $asset_url = html_entity_decode($asset_url);
56
 
57
  if ( $this->isEditorUrl( $asset_url ) ) {
58
  $sufix_url = $this->getAssetPart( $asset_url, $this->config['urls']['assets'] );
@@ -91,58 +57,6 @@ class Brizy_Editor_Asset_Storage {
91
  return $asset_url;
92
  }
93
 
94
- /**
95
- * @param $asset_source
96
- * @param $asset_path
97
- *
98
- * @return bool
99
- */
100
- public function store_file( $asset_source, $asset_path ) {
101
-
102
- $full_asset_path = null;
103
- try {
104
- // check destination dir
105
- $dir_path = dirname( $asset_path );
106
-
107
- if ( ! file_exists( $dir_path ) ) {
108
- mkdir( $dir_path, 0777, true );
109
- }
110
-
111
- $full_asset_path = $asset_path;
112
-
113
- $fasset_dest = fopen( $asset_path, 'w' );
114
- if ( ! $fasset_dest ) {
115
- throw new Exception( 'Invalid file destination.' );
116
- }
117
-
118
- $fasset_src = fopen( $asset_source, 'r' );
119
- if ( ! $fasset_src ) {
120
- throw new Exception( 'Invalid asset source.' );
121
- }
122
-
123
- $buffer_length = 81920; // we can tune this later;
124
-
125
- while ( ! feof( $fasset_src ) ) {
126
- $buffer = fread( $fasset_src, $buffer_length );
127
- fwrite( $fasset_dest, $buffer );
128
- }
129
-
130
- fclose( $fasset_src );
131
- fclose( $fasset_dest );
132
-
133
- } catch ( Exception $e ) {
134
- $t = 0;
135
-
136
- // clean up
137
- if ( $full_asset_path ) {
138
- @unlink( $full_asset_path );
139
- }
140
-
141
- return false;
142
- }
143
-
144
- return true;
145
- }
146
 
147
  /**
148
  * @param $url
6
  * Time: 10:46 AM
7
  */
8
 
9
+ class Brizy_Editor_Asset_Storage extends Brizy_Editor_Asset_AbstractStorage{
10
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11
 
12
  /**
13
  * Get the asset and store it somewhere in uploads and return the new local url.
18
  */
19
  public function store( $asset_url ) {
20
 
21
+ $asset_url = html_entity_decode( $asset_url );
22
 
23
  if ( $this->isEditorUrl( $asset_url ) ) {
24
  $sufix_url = $this->getAssetPart( $asset_url, $this->config['urls']['assets'] );
57
  return $asset_url;
58
  }
59
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
60
 
61
  /**
62
  * @param $url
editor/assets.php DELETED
@@ -1,388 +0,0 @@
1
- <?php
2
- /**
3
- * Created by PhpStorm.
4
- * User: alex
5
- * Date: 12/11/17
6
- * Time: 2:35 PM
7
- */
8
-
9
- function microtime_float() {
10
- list( $usec, $sec ) = explode( " ", microtime() );
11
-
12
- return ( (float) $usec + (float) $sec );
13
- }
14
-
15
- class Brizy_Editor_Assets {
16
-
17
- /**
18
- * @var Brizy_Editor_Project
19
- */
20
- private $project;
21
-
22
- /**
23
- * @var Brizy_Editor_Post
24
- */
25
- private $post;
26
-
27
- /**
28
- * @var Brizy_Editor_UrlBuilder
29
- */
30
- private $urlBuilder;
31
-
32
-
33
- /**
34
- * Brizy_Editor_Assets constructor.
35
- *
36
- * @param Brizy_Editor_Project $project
37
- * @param Brizy_Editor_Post $post
38
- */
39
- public function __construct( $project, $post = null ) {
40
-
41
- $this->post = $post;
42
- $this->project = $project;
43
- $this->urlBuilder = new Brizy_Editor_UrlBuilder( $project, $post );
44
-
45
- try {
46
-
47
- add_action( 'parse_request', array( $this, 'handle_editor_assets' ), - 1000 );
48
-
49
- add_action( 'parse_request', array( $this, 'handle_media_proxy_handler' ), - 1000 );
50
-
51
- if ( ! $this->post ) {
52
- return;
53
- }
54
-
55
- add_action( 'parse_request', array( $this, 'handle_front_end_editor_assets' ), - 1000 );
56
-
57
- } catch ( Exception $e ) {
58
-
59
- if ( defined( 'BRIZY_DUMP_EXCEPTION' ) ) {
60
- var_dump( $e );
61
- }
62
-
63
- header( ' 500 Internal Server Error', true, 500 );
64
- exit;
65
- }
66
- }
67
-
68
-
69
- function handle_editor_assets() {
70
-
71
- if ( strpos( $_SERVER["REQUEST_URI"], Brizy_Config::LOCAL_EDITOR_ASSET_STATIC_URL ) === false ) {
72
- return;
73
- }
74
-
75
- preg_match( Brizy_Config::LOCAL_EDITOR_ASSET_SPLITTER, $_SERVER['REQUEST_URI'], $matches );
76
-
77
- $template_version = $matches[1];
78
-
79
- session_write_close();
80
-
81
- $local_editor_asset_static_url = $this->urlBuilder->editor_asset_path( null, $template_version );
82
-
83
- $parts = explode( $local_editor_asset_static_url, $_SERVER["REQUEST_URI"] );
84
-
85
- if ( ! $parts[1] ) {
86
- return;
87
- }
88
-
89
- $asset_path = $parts[1];
90
-
91
- $url = $this->urlBuilder->external_asset_url( $parts[1], $template_version );
92
- $path = $this->urlBuilder->editor_asset_path( $asset_path, $template_version );
93
- $local_file_name = $this->urlBuilder->upload_path( $path );
94
- $editor_asset_path = $this->urlBuilder->editor_asset_path( $asset_path );
95
- $asset_url = $this->urlBuilder->upload_url( $editor_asset_path );
96
-
97
-
98
- $file_exists = file_exists( $local_file_name );
99
- if ( $file_exists ) {
100
- $this->asset_redirect_to( $asset_url );
101
- exit;
102
- }
103
-
104
- //if ( ! BRIZY_DEVELOPMENT && $res = $this->project->isStoreAssets() && ! $file_exists ) {
105
-
106
- if ( ! BRIZY_DEVELOPMENT ) {
107
- $time_start = microtime_float();
108
-
109
- if ( ! Brizy_Editor_Editor_Editor::store_asset( $url, $local_file_name ) ) {
110
- global $wp_query;
111
- $wp_query->set_404();
112
- status_header( 404 );
113
- exit;
114
- }
115
-
116
- $time = microtime_float() - $time_start;
117
- header( "X-request-time: {$time}s" );
118
-
119
- }
120
-
121
- // send the url content
122
- $this->send_file_content( $url );
123
- }
124
-
125
- /**
126
- * @param $query
127
- */
128
- function handle_front_end_editor_assets( $query ) {
129
-
130
- $parts = preg_split( Brizy_Config::LOCAL_PAGE_ASSET_SPLITTER, $_SERVER['REQUEST_URI'] );
131
- preg_match( Brizy_Config::LOCAL_PAGE_ASSET_SPLITTER, $_SERVER['REQUEST_URI'], $matches );
132
-
133
- if ( count( $parts ) != 2 || count( $matches ) != 3 ) {
134
- return;
135
- }
136
-
137
- if ( ! $this->post->uses_editor() ) {
138
- return;
139
- }
140
-
141
- session_write_close();
142
-
143
- $template_version = $matches[1];
144
- $post_id = (int) $matches[2];
145
-
146
- $template_asset_path = $parts[1];
147
-
148
- $asset_path = $this->urlBuilder->page_asset_path( $template_asset_path, $template_version, $post_id );
149
- $local_file_name = $this->urlBuilder->upload_path( $asset_path );
150
- $asset_url = $this->urlBuilder->upload_url( $asset_path );
151
- $full_url = $this->urlBuilder->external_asset_url( $template_asset_path, $template_version );
152
-
153
- $file_exists = file_exists( $local_file_name );
154
-
155
- if ( $file_exists ) {
156
- $this->asset_redirect_to( $asset_url );
157
- exit;
158
- }
159
-
160
- if ( ! BRIZY_DEVELOPMENT ) {
161
- $time_start = microtime_float();
162
- if ( ! Brizy_Editor_Editor_Editor::store_asset( $full_url, $local_file_name ) ) {
163
- global $wp_query;
164
- $wp_query->set_404();
165
- status_header( 404 );
166
- exit;
167
- }
168
- $time = microtime_float() - $time_start;
169
- header( "X-request-time: {$time}s" );
170
-
171
- }
172
-
173
- $this->send_file_content( $full_url );
174
- }
175
-
176
- /**
177
- * @param $query
178
- */
179
- function handle_media_proxy_handler( $query ) {
180
- $str_splitter = Brizy_Config::LOCAL_PAGE_MEDIA_STATIC_URL;
181
-
182
- if ( strpos( $_SERVER['REQUEST_URI'], ltrim( $str_splitter, '/' ) ) !== false ) {
183
-
184
-
185
- session_write_close();
186
-
187
- $parts = explode( $str_splitter, $_SERVER["REQUEST_URI"] );
188
-
189
- if ( ! $parts[1] ) {
190
- return;
191
- }
192
-
193
- $template_asset_path = $parts[1];
194
-
195
- $asset_path = $this->urlBuilder->media_asset_path( $template_asset_path );
196
- $full_url = $this->urlBuilder->external_media_url( $template_asset_path );
197
- $local_file_name = $this->urlBuilder->upload_path( $asset_path );
198
- $asset_url = $this->urlBuilder->upload_url( $asset_path );
199
-
200
- $file_exists = file_exists( $local_file_name );
201
-
202
- if ( $file_exists ) {
203
- $this->asset_redirect_to( $asset_url );
204
- exit;
205
- }
206
-
207
- if ( ! BRIZY_DEVELOPMENT ) {
208
- $time_start = microtime_float();
209
-
210
- if ( ! Brizy_Editor_Editor_Editor::store_asset( $full_url, $local_file_name ) ) {
211
- global $wp_query;
212
- $wp_query->set_404();
213
- status_header( 404 );
214
- exit;
215
- }
216
-
217
- $time = microtime_float() - $time_start;
218
-
219
- header( "X-request-time: {$time}s" );
220
- }
221
-
222
- $this->send_file_content( $full_url );
223
- }
224
- }
225
-
226
- /**
227
- * @param $filename
228
- * @param int $mode
229
- *
230
- * @return mixed|string
231
- */
232
- private function get_mime( $filename, $mode = 0 ) {
233
-
234
- // mode 0 = full check
235
- // mode 1 = extension check only
236
-
237
- $mime_types = array(
238
-
239
- 'txt' => 'text/plain',
240
- 'htm' => 'text/html',
241
- 'html' => 'text/html',
242
- 'php' => 'text/html',
243
- 'css' => 'text/css',
244
- 'js' => 'application/javascript',
245
- 'json' => 'application/json',
246
- 'xml' => 'application/xml',
247
- 'swf' => 'application/x-shockwave-flash',
248
- 'flv' => 'video/x-flv',
249
-
250
- // images
251
- 'png' => 'image/png',
252
- 'jpe' => 'image/jpeg',
253
- 'jpeg' => 'image/jpeg',
254
- 'jpg' => 'image/jpeg',
255
- 'gif' => 'image/gif',
256
- 'bmp' => 'image/bmp',
257
- 'ico' => 'image/vnd.microsoft.icon',
258
- 'tiff' => 'image/tiff',
259
- 'tif' => 'image/tiff',
260
- 'svg' => 'image/svg+xml',
261
- 'svgz' => 'image/svg+xml',
262
-
263
- // archives
264
- 'zip' => 'application/zip',
265
- 'rar' => 'application/x-rar-compressed',
266
- 'exe' => 'application/x-msdownload',
267
- 'msi' => 'application/x-msdownload',
268
- 'cab' => 'application/vnd.ms-cab-compressed',
269
-
270
- // audio/video
271
- 'mp3' => 'audio/mpeg',
272
- 'qt' => 'video/quicktime',
273
- 'mov' => 'video/quicktime',
274
-
275
- // adobe
276
- 'pdf' => 'application/pdf',
277
- 'psd' => 'image/vnd.adobe.photoshop',
278
- 'ai' => 'application/postscript',
279
- 'eps' => 'application/postscript',
280
- 'ps' => 'application/postscript',
281
-
282
- // ms office
283
- 'doc' => 'application/msword',
284
- 'rtf' => 'application/rtf',
285
- 'xls' => 'application/vnd.ms-excel',
286
- 'ppt' => 'application/vnd.ms-powerpoint',
287
- 'docx' => 'application/msword',
288
- 'xlsx' => 'application/vnd.ms-excel',
289
- 'pptx' => 'application/vnd.ms-powerpoint',
290
-
291
-
292
- // open office
293
- 'odt' => 'application/vnd.oasis.opendocument.text',
294
- 'ods' => 'application/vnd.oasis.opendocument.spreadsheet',
295
- );
296
-
297
- $array = explode( '.', $filename );
298
- $str = end( $array );
299
- $ext = strtolower( $str );
300
-
301
- if ( function_exists( 'mime_content_type' ) && $mode == 0 ) {
302
- $mimetype = mime_content_type( $filename );
303
-
304
- return $mimetype;
305
-
306
- } elseif ( function_exists( 'finfo_open' ) && $mode == 0 ) {
307
- $finfo = finfo_open( FILEINFO_MIME );
308
- $mimetype = finfo_file( $finfo, $filename );
309
- finfo_close( $finfo );
310
-
311
- return $mimetype;
312
- } elseif ( array_key_exists( $ext, $mime_types ) ) {
313
- return $mime_types[ $ext ];
314
- } else {
315
- return 'application/octet-stream';
316
- }
317
-
318
- }
319
-
320
- /**
321
- * @param $url
322
- */
323
- private function send_file_content( $url ) {
324
-
325
- $response = wp_remote_get( $url, array( 'timeout' => 30 ) );
326
-
327
- if ( $response instanceof WP_Error ) {
328
-
329
- if ( defined( 'BRIZY_DUMP_EXCEPTION' ) ) {
330
- var_dump( $response );
331
- }
332
-
333
- header( ' 500 Internal Server Error', true, 500 );
334
- exit;
335
- }
336
-
337
- if ( $response['response']['code'] != 200 ) {
338
-
339
- header( $response['response']['message'], true, $response['response']['code'] );
340
- exit;
341
- }
342
-
343
- /**
344
- * @var WP_HTTP_Requests_Response $http_response
345
- */
346
- $http_response = $response['http_response'];
347
- $content = $http_response->get_data();
348
-
349
- header_remove( 'Expires' );
350
- header_remove( 'Cache-Control' );
351
- header_remove( 'Pragma' );
352
-
353
- $headers = [];
354
- $headers['Content-Type'] = $this->get_mime( $url, 1 );
355
- $headers['Content-Length'] = strlen( $content );
356
- $headers['Cache-Control'] = 'max-age=600';
357
-
358
- foreach ( $headers as $key => $val ) {
359
- if ( is_array( $val ) ) {
360
- $val = implode( ', ', $val );
361
- }
362
-
363
- header( "{$key}: {$val}" );
364
- }
365
-
366
- echo $content;
367
- exit;
368
- }
369
-
370
- private function asset_redirect_to( $asset_url ) {
371
- // add cache headers for this request
372
- header_remove( 'Expires' );
373
- header_remove( 'Cache-Control' );
374
- header_remove( 'Pragma' );
375
- header( 'Cache-Control: max-age=600' );
376
-
377
-
378
- global $wp_rewrite;
379
-
380
- if ( $wp_rewrite->permalink_structure == "" ) {
381
-
382
- $asset_url = str_ireplace( '/index.php', '', $asset_url );
383
- }
384
-
385
- wp_redirect( $asset_url, 302 );
386
- }
387
-
388
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
editor/compiled-html.php CHANGED
@@ -12,7 +12,7 @@ class Brizy_Editor_CompiledHtml {
12
  /**
13
  * @var Brizy_Editor_Asset_ProcessorInterface[]
14
  */
15
- private $asset_processors = [];
16
 
17
  /**
18
  * Brizy_Editor_CompiledHtml constructor.
@@ -31,17 +31,6 @@ class Brizy_Editor_CompiledHtml {
31
  }
32
 
33
 
34
- /**
35
- * @return string
36
- */
37
- public function get_content() {
38
- $content = $this->dom->get_content();
39
-
40
- $content = $this->apply_asset_processors( $content );
41
-
42
- return $content;
43
- }
44
-
45
  /**
46
  * @return string
47
  */
@@ -85,37 +74,5 @@ class Brizy_Editor_CompiledHtml {
85
  return $content;
86
  }
87
 
88
- // public function get_head_scripts() {
89
- // $script_tags = $this->dom->get_head()->get_scripts();
90
- //
91
- // return $this->dom->get_attributes( $script_tags, 'src' );
92
- // }
93
- //
94
- // public function get_footer_scripts() {
95
- // $script_tags = $this->dom->get_body()->get_scripts();
96
- //
97
- // return $this->dom->get_attributes( $script_tags, 'src' );
98
- // }
99
- //
100
- // public function get_links_tags() {
101
- // $link_tags = $this->dom->get_head()->get_links();
102
- //
103
- // return $link_tags;
104
- // }
105
- //
106
- // public function get_inline_styles() {
107
- // $style_tags = $this->dom->get_styles();
108
- // $list = array();
109
- //
110
- // if ( is_array( $style_tags ) ) {
111
- // foreach ( $style_tags as $tag ) {
112
- //
113
- // $content = $tag->get_content();
114
- // $list[] = $content;
115
- // }
116
- // }
117
- //
118
- // return $list;
119
- // }
120
 
121
  }
12
  /**
13
  * @var Brizy_Editor_Asset_ProcessorInterface[]
14
  */
15
+ private $asset_processors = array();
16
 
17
  /**
18
  * Brizy_Editor_CompiledHtml constructor.
31
  }
32
 
33
 
 
 
 
 
 
 
 
 
 
 
 
34
  /**
35
  * @return string
36
  */
74
  return $content;
75
  }
76
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
77
 
78
  }
editor/editor/editor.php CHANGED
@@ -63,10 +63,10 @@ class Brizy_Editor_Editor_Editor {
63
  if ( ! is_null( $this->post ) ) {
64
  $wp_post_id = $this->post->get_wp_post()->ID;
65
 
66
- $preview_post_link = get_preview_post_link( $this->post->get_wp_post(), [
67
  'preview_id' => $wp_post_id,
68
  'preview_nonce' => wp_create_nonce( 'post_preview_' . $wp_post_id )
69
- ] );
70
 
71
  $change_template_url = admin_url( 'admin-post.php?post=' . $this->get_post()->get_id() . '&action=_brizy_change_template' );
72
  $templates = $this->post->get_templates();
63
  if ( ! is_null( $this->post ) ) {
64
  $wp_post_id = $this->post->get_wp_post()->ID;
65
 
66
+ $preview_post_link = get_preview_post_link( $this->post->get_wp_post(), array(
67
  'preview_id' => $wp_post_id,
68
  'preview_nonce' => wp_create_nonce( 'post_preview_' . $wp_post_id )
69
+ ) );
70
 
71
  $change_template_url = admin_url( 'admin-post.php?post=' . $this->get_post()->get_id() . '&action=_brizy_change_template' );
72
  $templates = $this->post->get_templates();
editor/helper/dom.php CHANGED
@@ -15,7 +15,6 @@ class Brizy_Editor_Helper_Dom extends Brizy_Editor_Helper_DomTag {
15
  return $tags[0];
16
  }
17
 
18
-
19
  /**
20
  * @return $this|Brizy_Editor_Helper_DomTag
21
  */
15
  return $tags[0];
16
  }
17
 
 
18
  /**
19
  * @return $this|Brizy_Editor_Helper_DomTag
20
  */
editor/http/client.php CHANGED
@@ -38,16 +38,14 @@ class Brizy_Editor_Http_Client {
38
 
39
  $options['method'] = $method;
40
 
41
- $options = $this->prepare_options( $options );
 
42
 
43
- $wp_response = $this->getHttp()->request( $url, $options );
44
 
45
- Brizy_Logger::instance()->notice( "{$method} request to {$url}",
46
 
47
- array(
48
- 'options' => $options,
49
- 'response' => $wp_response
50
- ) );
51
 
52
  if ( is_wp_error( $wp_response ) ) {
53
  throw new Brizy_Editor_API_Exceptions_Exception( $wp_response->get_error_message() );
@@ -55,7 +53,7 @@ class Brizy_Editor_Http_Client {
55
 
56
  $response = new Brizy_Editor_Http_Response( $wp_response );
57
 
58
- Brizy_Logger::instance()->debug( "Request {{$url}} status ".$response->get_status_code(), array('status'=>$response->get_status_code()) );
59
 
60
  if ( $response->is_ok() ) {
61
  return $response;
@@ -148,7 +146,7 @@ class Brizy_Editor_Http_Client {
148
  protected function prepare_options( $options ) {
149
 
150
  if ( ! is_array( $options ) ) {
151
- $options = [];
152
  }
153
 
154
  if ( ! isset( $options['headers'] ) ) {
38
 
39
  $options['method'] = $method;
40
 
41
+ Brizy_Logger::instance()->notice( "{$method} request to {$url}",array(
42
+ 'options' => $options,
43
 
44
+ ) );
45
 
46
+ $options = $this->prepare_options( $options );
47
 
48
+ $wp_response = $this->getHttp()->request( $url, $options );
 
 
 
49
 
50
  if ( is_wp_error( $wp_response ) ) {
51
  throw new Brizy_Editor_API_Exceptions_Exception( $wp_response->get_error_message() );
53
 
54
  $response = new Brizy_Editor_Http_Response( $wp_response );
55
 
56
+ Brizy_Logger::instance()->debug( "Request {{$url}} status ".$response->get_status_code(), array('status'=>$response->get_status_code(), 'response' => $wp_response) );
57
 
58
  if ( $response->is_ok() ) {
59
  return $response;
146
  protected function prepare_options( $options ) {
147
 
148
  if ( ! is_array( $options ) ) {
149
+ $options = array();
150
  }
151
 
152
  if ( ! isset( $options['headers'] ) ) {
editor/load.php CHANGED
@@ -4,143 +4,6 @@
4
 
5
  include_once 'functions.php';
6
 
7
- add_action( 'init', 'brizy_check_for_new_imports' );
8
-
9
- function brizy_check_for_new_imports() {
10
- try {
11
- $post = null;
12
- Brizy_Logger::instance()->debug( 'Check for new imported posts' );
13
- $project = Brizy_Editor_Project::get();
14
-
15
- $posts = Brizy_Editor_Post::get_posts_with_foreign_signature();
16
- if ( count( $posts ) == 0 ) {
17
- return;
18
- }
19
-
20
- Brizy_Logger::instance()->notice( 'New imported posts found', array( $posts ) );
21
-
22
- $t = 0;
23
-
24
- // clone all post you get there
25
- $page_ids = array();
26
- $editor_pages = array();
27
-
28
- foreach ( (array) $posts as $apost ) {
29
- $editor_pages[] = $api_page = Brizy_Editor_Post::get( $apost )->get_api_page();
30
- $page_ids[] = $api_page->get_id();
31
- }
32
-
33
- $pages = Brizy_Editor_User::get()->clone_pages( $page_ids, $project->get_id() );
34
-
35
-
36
- // debug logs
37
- if ( defined( 'WP_DEBUG' ) && WP_DEBUG ) {
38
- foreach ( (array) $pages as $clone ) {
39
- Brizy_Logger::instance()->debug( sprintf( "Cloned page [%s] in to page [%s]", $clone['cloned_from'], $clone['id'] ) );
40
- }
41
- }
42
-
43
-
44
- if ( is_array( $pages ) && count( $pages ) ) {
45
- foreach ( $pages as $i => $api_page ) {
46
- $wp_post = Brizy_Editor_Post::get_post_by_foreign_hash( $api_page['cloned_from'] );
47
- $old_page = Brizy_Editor_Post::get( $wp_post );
48
- $new_post = new Brizy_Editor_Post( new Brizy_Editor_API_Page( $api_page ), $wp_post->ID );
49
-
50
- $new_post->set_compiled_html_body( $old_page->get_compiled_html_body() );
51
- $new_post->set_compiled_html_head( $old_page->get_compiled_html_head() );
52
-
53
- update_post_meta( $wp_post->ID, Brizy_Editor_Post::BRIZY_POST_SIGNATURE_KEY, Brizy_Editor_Signature::get() );
54
- update_post_meta( $wp_post->ID, Brizy_Editor_Post::BRIZY_POST_HASH_KEY, $new_post->get_api_page()->get_id() );
55
-
56
- $new_post->save_locally();
57
- }
58
- }
59
-
60
- } catch ( Exception $e ) {
61
-
62
- Brizy_Logger::instance()->exception( $e );
63
-
64
- Brizy_Admin_Flash::instance()->add_error( $e->getMessage() );
65
-
66
- // do nothing if there is an exception
67
- if ( defined( 'BRIZY_DUMP_EXCEPTION' ) ) {
68
- var_dump( $e );
69
- }
70
- }
71
- }
72
-
73
-
74
- add_action( 'init', 'brizy_check_for_duplicates' );
75
-
76
- function brizy_check_for_duplicates() {
77
- try {
78
-
79
- Brizy_Logger::instance()->debug( 'Check for new duplicated posts' );
80
-
81
- $post = null;
82
- // clone user for any eventuality
83
- $user = Brizy_Editor_User::get();
84
- $project = Brizy_Editor_Project::get();
85
-
86
- $posts = Brizy_Editor_Post::get_duplicate_brizy_posts();
87
- $count = count( $posts );
88
- if ( $count == 0 ) {
89
- return;
90
- }
91
-
92
- Brizy_Logger::instance()->notice( 'New duplicate posts found', array( $posts ) );
93
-
94
- foreach ( $posts as $hash => $apost ) {
95
-
96
- $count = count( $apost );
97
-
98
- $from_post = Brizy_Editor_Post::get( $apost[0] );
99
- $api_page = $from_post->get_api_page();
100
- $from_hash = $api_page->get_id();
101
-
102
- for ( $i = 1; $i < $count; $i ++ ) {
103
-
104
- $cloned_pages = Brizy_Editor_User::get()->clone_pages( array( $from_hash ), $project->get_id() );
105
-
106
- if ( count( $cloned_pages ) != 1 ) {
107
- continue;
108
- }
109
-
110
- // debug logs
111
- if ( defined( 'WP_DEBUG' ) && WP_DEBUG ) {
112
- foreach ( (array) $cloned_pages as $clone ) {
113
- Brizy_Logger::instance()->debug( sprintf( "Cloned page [%s] in to page [%s]", $clone['cloned_from'], $clone['id'] ) );
114
- }
115
- }
116
-
117
- $cloned_page = $cloned_pages[0];
118
-
119
- $new_post = new Brizy_Editor_Post( new Brizy_Editor_API_Page( $cloned_page ), $apost[ $i ]->ID );
120
-
121
- $new_post->set_compiled_html_body( $from_post->get_compiled_html_body() );
122
- $new_post->set_compiled_html_head( $from_post->get_compiled_html_head() );
123
-
124
- update_post_meta( $apost[ $i ]->ID, Brizy_Editor_Post::BRIZY_POST_SIGNATURE_KEY, Brizy_Editor_Signature::get() );
125
- update_post_meta( $apost[ $i ]->ID, Brizy_Editor_Post::BRIZY_POST_HASH_KEY, $new_post->get_api_page()->get_id() );
126
-
127
- $new_post->save_locally();
128
- }
129
- }
130
- } catch ( Exception $e ) {
131
-
132
- Brizy_Logger::instance()->exception( $e );
133
-
134
- Brizy_Admin_Flash::instance()->add_error( $e->getMessage() );
135
-
136
- // do nothing if there is an exception
137
- if ( defined( 'BRIZY_DUMP_EXCEPTION' ) ) {
138
- var_dump( $e );
139
- }
140
- }
141
- }
142
-
143
-
144
  add_action( 'wp_loaded', 'brizy_initialize_Brizy_Public_Api' );
145
 
146
  function brizy_initialize_Brizy_Public_Api() {
@@ -168,49 +31,17 @@ function brizy_initialize_Brizy_Public_Api() {
168
  }
169
 
170
  } catch ( Exception $e ) {
171
-
172
  Brizy_Logger::instance()->exception( $e );
173
-
174
- // do nothing if there is an exception
175
- if ( defined( 'BRIZY_DUMP_EXCEPTION' ) ) {
176
- var_dump( $e );
177
- }
178
  }
179
  }
180
 
181
- //add_action( 'wp_loaded', 'brizy_handler_proxy_requests' );
182
-
183
- function brizy_handler_proxy_requests( $query ) {
184
 
185
- try {
186
- $post = null;
187
- $project = Brizy_Editor_Project::get();
188
-
189
- $pid = brizy_get_current_post_id();
190
-
191
- if ( ! $pid && isset( $_SERVER['HTTP_REFERER'] ) ) {
192
- $pid = url_to_postid( $_SERVER['HTTP_REFERER'] );
193
- }
194
-
195
- if ( $pid ) {
196
- try {
197
- $post = Brizy_Editor_Post::get( $pid );
198
- } catch ( Exception $e ) {
199
- // do nothing if there is an exception
200
- $post = null;
201
- }
202
- }
203
-
204
- $asset_editor = new Brizy_Editor_Assets( $project, $post );
205
-
206
- } catch ( Exception $e ) {
207
-
208
- Brizy_Logger::instance()->exception( $e );
209
-
210
- // do nothing if there is an exception
211
- if ( defined( 'BRIZY_DUMP_EXCEPTION' ) ) {
212
- var_dump( $e );
213
- }
214
- }
215
  }
216
 
 
4
 
5
  include_once 'functions.php';
6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  add_action( 'wp_loaded', 'brizy_initialize_Brizy_Public_Api' );
8
 
9
  function brizy_initialize_Brizy_Public_Api() {
31
  }
32
 
33
  } catch ( Exception $e ) {
 
34
  Brizy_Logger::instance()->exception( $e );
 
 
 
 
 
35
  }
36
  }
37
 
 
 
 
38
 
39
+ function brizy_load_text_domain() {
40
+ load_plugin_textdomain(
41
+ 'brizy',
42
+ false,
43
+ ".." . DIRECTORY_SEPARATOR . 'languages'
44
+ );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
45
  }
46
 
47
+ add_action( 'after_setup_theme', 'brizy_load_text_domain' );
editor/post.php CHANGED
@@ -5,9 +5,9 @@
5
  class Brizy_Editor_Post extends Brizy_Admin_Serializable {
6
 
7
  const BRIZY_POST = 'brizy-post';
8
-
9
  const BRIZY_POST_SIGNATURE_KEY = 'brizy-post-signature';
10
  const BRIZY_POST_HASH_KEY = 'brizy-post-hash';
 
11
 
12
 
13
  /**
@@ -38,12 +38,29 @@ class Brizy_Editor_Post extends Brizy_Admin_Serializable {
38
  /**
39
  * @var bool
40
  */
41
- protected $store_assets;
42
 
43
  /**
44
  * @var array
45
  */
46
- protected $assets = array();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
47
 
48
  /**
49
  * @return string
@@ -52,10 +69,28 @@ class Brizy_Editor_Post extends Brizy_Admin_Serializable {
52
  $get_object_vars = get_object_vars( $this );
53
 
54
  unset( $get_object_vars['wp_post_id'] );
 
 
 
55
 
56
  return serialize( $get_object_vars );
57
  }
58
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
59
  /**
60
  * @param $apost
61
  *
@@ -91,7 +126,6 @@ class Brizy_Editor_Post extends Brizy_Admin_Serializable {
91
  * @param $post
92
  *
93
  * @return Brizy_Editor_Post
94
- * @throws Brizy_Editor_Exceptions_ServiceUnavailable
95
  * @throws Brizy_Editor_Exceptions_UnsupportedPostType
96
  * @throws Exception
97
  */
@@ -103,29 +137,20 @@ class Brizy_Editor_Post extends Brizy_Admin_Serializable {
103
  }
104
  Brizy_Logger::instance()->notice( 'Create post', array( $project, $post ) );
105
 
106
- $api_page_obj = Brizy_Editor_API_Page::get()->set_title( $post->post_title );
107
- $api_page = Brizy_Editor_User::get()->create_page( $project, $api_page_obj );
108
 
109
- $post = new self( $api_page, $post->ID );
110
 
111
  return $post;
112
  }
113
 
114
- public function updatePageData( $data = null ) {
115
-
116
- Brizy_Logger::instance()->notice( 'Update page data', array( 'new_data' => $data ) );
117
- $this->api_page = new Brizy_Editor_API_Page( $data );
118
- $this->save_locally();
119
- }
120
-
121
- public function save_locally() {
122
- // store the signature only once
123
- if ( ! ( $signature = get_post_meta( $this->wp_post_id, self::BRIZY_POST_SIGNATURE_KEY, true ) ) ) {
124
- update_post_meta( $this->wp_post_id, self::BRIZY_POST_SIGNATURE_KEY, Brizy_Editor_Signature::get() );
125
- update_post_meta( $this->wp_post_id, self::BRIZY_POST_HASH_KEY, $this->get_api_page()->get_id() );
126
- }
127
- $this->storage()->set( self::BRIZY_POST, $this );
128
- }
129
 
130
  /**
131
  * @return bool
@@ -133,28 +158,54 @@ class Brizy_Editor_Post extends Brizy_Admin_Serializable {
133
  public function save() {
134
 
135
  try {
136
- $brizy_editor_user = Brizy_Editor_User::get();
137
- $project = Brizy_Editor_Project::get();
138
- $api_project = $project->get_api_project();
139
- $updated_page = $brizy_editor_user->update_page( $api_project, $this->api_page );
140
- $this->updatePageData( $updated_page );
141
-
142
  } catch ( Exception $exception ) {
143
  Brizy_Logger::instance()->exception( $exception );
144
-
145
  return false;
146
  }
147
  }
148
 
 
149
  /**
150
- * Brizy_Editor_Post constructor.
151
- *
152
- * @param $api_page
153
- * @param $wp_post_id
154
  */
155
- public function __construct( $api_page, $wp_post_id ) {
156
- $this->api_page = $api_page;
157
- $this->wp_post_id = (int) $wp_post_id;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
158
  }
159
 
160
  /**
@@ -164,6 +215,16 @@ class Brizy_Editor_Post extends Brizy_Admin_Serializable {
164
  return $this->wp_post_id;
165
  }
166
 
 
 
 
 
 
 
 
 
 
 
167
  public function get_compiled_html_body() {
168
  return $this->compiled_html_body;
169
  }
@@ -180,42 +241,16 @@ class Brizy_Editor_Post extends Brizy_Admin_Serializable {
180
 
181
  public function set_compiled_html_head( $html ) {
182
  // remove all title and meta tags.
183
- $this->compiled_html_head = $this->strip_tags_content( $html, '<title><meta>', true );
184
-
185
- return $this;
186
- }
187
-
188
- public function get_title() {
189
- return $this->api_page->get_title();
190
- }
191
-
192
- public function set_title( $title ) {
193
- $this->api_page->set_title( $title );
194
-
195
- return $this;
196
- }
197
-
198
- public function set_status( $status ) {
199
- $this->api_page->set_status( $status );
200
-
201
- return $this;
202
- }
203
-
204
- public function set_is_index( $index ) {
205
- $this->api_page->set_is_index( $index );
206
 
207
  return $this;
208
  }
209
 
210
- public function is_index() {
211
- return $this->api_page->is_index();
212
- }
213
-
214
  /**
215
  * @return bool
216
  */
217
  public function can_edit() {
218
- return current_user_can( 'edit_pages' );
219
  }
220
 
221
  /**
@@ -296,106 +331,6 @@ class Brizy_Editor_Post extends Brizy_Admin_Serializable {
296
  );
297
  }
298
 
299
- /**
300
- * @return Brizy_Editor_API_Page
301
- */
302
- public function get_api_page() {
303
- return $this->api_page;
304
- }
305
-
306
- /**
307
- * @return int
308
- */
309
- public function get_content() {
310
-
311
- return $this->api_page->get_content();
312
- }
313
-
314
- /**
315
- * @param $data
316
- *
317
- * @return $this
318
- */
319
- public function set_content( $data ) {
320
-
321
- $this->api_page->set_content( $data );
322
-
323
- return $this;
324
- }
325
-
326
-
327
- /**
328
- * @return bool
329
- * @throws Brizy_Editor_Exceptions_ServiceUnavailable
330
- * @throws Exception
331
- */
332
- public function compile_page() {
333
-
334
- Brizy_Logger::instance()->notice( 'Compile page', array( $this ) );
335
-
336
- $compiled_html = Brizy_Editor_User::get()->compile_page( Brizy_Editor_Project::get(), $this );
337
-
338
- $this->set_compiled_html_head( $compiled_html->get_head() );
339
- $this->set_compiled_html_body( $compiled_html->get_body() );
340
-
341
- $this->invalidate_assets();
342
-
343
- $this->set_store_assets( true );
344
- $this->set_needs_compile( false );
345
-
346
- return true;
347
- }
348
-
349
-
350
- public function store_asset( $asset_source, $asset_path ) {
351
-
352
- try {
353
- // check destination dir
354
- $dir_path = dirname( ABSPATH . $asset_path );
355
- if ( ! file_exists( $dir_path ) ) {
356
- mkdir( $dir_path, 0777, true );
357
- }
358
- $full_asset_path = ABSPATH . $asset_path;
359
-
360
- $fasset_dest = fopen( $full_asset_path, 'w' );
361
- if ( ! $fasset_dest ) {
362
- throw new Exception( 'Invalid file destination.' );
363
- }
364
-
365
- $fasset_src = fopen( $asset_source, 'r' );
366
- if ( ! $fasset_src ) {
367
- throw new Exception( 'Invalid asset source.' );
368
- }
369
-
370
- $buffer_length = 2048; // we can tune this later;
371
-
372
- while ( ! feof( $fasset_src ) ) {
373
- $buffer = fread( $fasset_src, $buffer_length );
374
- fwrite( $fasset_dest, $buffer );
375
- }
376
-
377
- fclose( $fasset_src );
378
- fclose( $fasset_dest );
379
-
380
- $this->assets[] = $asset_path;
381
- } catch ( \Exception $e ) {
382
- Brizy_Logger::instance()->exception( $e );
383
-
384
- return false;
385
- }
386
-
387
- return true;
388
- }
389
-
390
-
391
- public function invalidate_assets() {
392
- foreach ( $this->assets as $asset_path ) {
393
- $path = rtrim( ABSPATH, '/' ) . $asset_path;
394
- @unlink( $path );
395
- }
396
-
397
- $this->assets = array();
398
- }
399
 
400
  public function set_needs_compile( $v ) {
401
  $this->needs_compile = (bool) $v;
@@ -407,24 +342,6 @@ class Brizy_Editor_Post extends Brizy_Admin_Serializable {
407
  return $this->needs_compile;
408
  }
409
 
410
- /**
411
- * @return bool
412
- */
413
- public function is_store_assets() {
414
- return $this->store_assets;
415
- }
416
-
417
- /**
418
- * @param bool $store_assets
419
- *
420
- * @return Brizy_Editor_Post
421
- */
422
- public function set_store_assets( $store_assets ) {
423
- $this->store_assets = $store_assets;
424
-
425
- return $this;
426
- }
427
-
428
  function strip_tags_content( $text, $tags = '', $invert = false ) {
429
 
430
  preg_match_all( '/<(.+?)[\s]*\/?[\s]*>/si', trim( $tags ), $tags );
@@ -471,63 +388,6 @@ class Brizy_Editor_Post extends Brizy_Admin_Serializable {
471
  update_post_meta( $this->get_id(), '_wp_page_template', $atemplate );
472
  }
473
 
474
-
475
  return $this;
476
  }
477
-
478
-
479
- public static function get_posts_with_foreign_signature() {
480
- $query = array(
481
- 'numberposts' => - 1,
482
- 'post_type' => brizy()->supported_post_types(),
483
- 'post_status' => array( 'publish', 'pending', 'draft', 'auto-draft', 'future', 'private', 'inherit' ),
484
- 'meta_query' => array(
485
- array(
486
- 'key' => self::BRIZY_POST_SIGNATURE_KEY,
487
- 'value' => Brizy_Editor_Signature::get(),
488
- 'compare' => '!='
489
- )
490
- )
491
- );
492
-
493
- return get_posts( $query );
494
- }
495
-
496
- public static function get_posts_by_foreign_hash( $hash ) {
497
- $query = array(
498
- 'numberposts' => - 1,
499
- 'post_type' => brizy()->supported_post_types(),
500
- 'post_status' => array( 'publish', 'pending', 'draft', 'auto-draft', 'future', 'private', 'inherit' ),
501
- 'orderby' => 'ID',
502
- 'order' => 'ASC',
503
- 'meta_key' => self::BRIZY_POST_HASH_KEY,
504
- 'meta_value' => $hash,
505
- );
506
-
507
- return get_posts( $query );
508
- }
509
-
510
- public static function get_post_by_foreign_hash( $hash ) {
511
-
512
- $posts = self::get_posts_by_foreign_hash( $hash );
513
-
514
- return count( $posts ) ? $posts[0] : null;
515
- }
516
-
517
- public static function get_duplicate_brizy_posts() {
518
- global $wpdb;
519
-
520
- $meta_options = $wpdb->get_results( "SELECT meta_value FROM {$wpdb->prefix}postmeta WHERE meta_key LIKE 'brizy-post-hash' GROUP BY meta_value HAVING count(*)>1", ARRAY_A );
521
-
522
- $posts = array();
523
-
524
- foreach ( $meta_options as $post_hash ) {
525
- $posts_by_foreign_hash = self::get_posts_by_foreign_hash( $post_hash['meta_value'] );
526
- $posts[ $post_hash['meta_value'] ] = $posts_by_foreign_hash;
527
- }
528
-
529
- return $posts;
530
-
531
- }
532
-
533
  }
5
  class Brizy_Editor_Post extends Brizy_Admin_Serializable {
6
 
7
  const BRIZY_POST = 'brizy-post';
 
8
  const BRIZY_POST_SIGNATURE_KEY = 'brizy-post-signature';
9
  const BRIZY_POST_HASH_KEY = 'brizy-post-hash';
10
+ const BRIZY_POST_EDITOR_VERSION = 'brizy-post-editor-version';
11
 
12
 
13
  /**
38
  /**
39
  * @var bool
40
  */
41
+ //protected $store_assets;
42
 
43
  /**
44
  * @var array
45
  */
46
+ //protected $assets = array();
47
+
48
+ /**
49
+ * Json for the editor.
50
+ *
51
+ * @var string
52
+ */
53
+ protected $editor_data;
54
+
55
+ /**
56
+ * Brizy_Editor_Post constructor.
57
+ *
58
+ * @param $wp_post_id
59
+ */
60
+ public function __construct( $wp_post_id ) {
61
+ $this->wp_post_id = (int) $wp_post_id;
62
+ }
63
+
64
 
65
  /**
66
  * @return string
69
  $get_object_vars = get_object_vars( $this );
70
 
71
  unset( $get_object_vars['wp_post_id'] );
72
+ unset( $get_object_vars['api_page'] );
73
+ unset( $get_object_vars['store_assets'] );
74
+ unset( $get_object_vars['assets'] );
75
 
76
  return serialize( $get_object_vars );
77
  }
78
 
79
+ /**
80
+ * @param $data
81
+ */
82
+ public function unserialize( $data ) {
83
+ parent::unserialize( $data ); // TODO: Change the autogenerated stub
84
+
85
+ if ( $this->get_api_page() ) {
86
+ $save_data = $this->get_api_page()->get_content();
87
+
88
+ $this->editor_data = $save_data;
89
+ }
90
+
91
+ unset( $this->api_page );
92
+ }
93
+
94
  /**
95
  * @param $apost
96
  *
126
  * @param $post
127
  *
128
  * @return Brizy_Editor_Post
 
129
  * @throws Brizy_Editor_Exceptions_UnsupportedPostType
130
  * @throws Exception
131
  */
137
  }
138
  Brizy_Logger::instance()->notice( 'Create post', array( $project, $post ) );
139
 
140
+ //$api_page_obj = Brizy_Editor_API_Page::get()->set_title( $post->post_title );
141
+ //$api_page = Brizy_Editor_User::get()->create_page( $project, $api_page_obj );
142
 
143
+ $post = new self( $post->ID );
144
 
145
  return $post;
146
  }
147
 
148
+ // public function updatePageData( $data = null ) {
149
+ //
150
+ // Brizy_Logger::instance()->notice( 'Update page data', array( 'new_data' => $data ) );
151
+ // $this->api_page = new Brizy_Editor_API_Page( $data );
152
+ // $this->save_locally();
153
+ // }
 
 
 
 
 
 
 
 
 
154
 
155
  /**
156
  * @return bool
158
  public function save() {
159
 
160
  try {
161
+ $this->storage()->set( self::BRIZY_POST, $this );
 
 
 
 
 
162
  } catch ( Exception $exception ) {
163
  Brizy_Logger::instance()->exception( $exception );
 
164
  return false;
165
  }
166
  }
167
 
168
+
169
  /**
170
+ * @return bool
171
+ * @throws Brizy_Editor_Exceptions_ServiceUnavailable
172
+ * @throws Exception
 
173
  */
174
+ public function compile_page() {
175
+
176
+ Brizy_Logger::instance()->notice( 'Compile page', array( $this ) );
177
+
178
+ $compiled_html = Brizy_Editor_User::get()->compile_page( Brizy_Editor_Project::get(), $this );
179
+
180
+ $this->set_compiled_html_head( $compiled_html->get_head() );
181
+ $this->set_compiled_html_body( $compiled_html->get_body() );
182
+
183
+ $this->set_needs_compile( false );
184
+
185
+ update_post_meta( $this->wp_post_id, self::BRIZY_POST_EDITOR_VERSION, BRIZY_EDITOR_VERSION );
186
+
187
+ $this->save();
188
+
189
+ return true;
190
+ }
191
+
192
+
193
+
194
+ public function get_compiler_version() {
195
+ $get_post_meta = get_post_meta( $this->wp_post_id, self::BRIZY_POST_EDITOR_VERSION, true );
196
+
197
+ return $get_post_meta;
198
+ }
199
+
200
+ public function isCompiledWithCurrentVersion() {
201
+ return $this->get_compiler_version() == BRIZY_EDITOR_VERSION;
202
+ }
203
+
204
+ /**
205
+ * @deprecated;
206
+ */
207
+ public function get_api_page() {
208
+ return $this->api_page;
209
  }
210
 
211
  /**
215
  return $this->wp_post_id;
216
  }
217
 
218
+ public function get_editor_data() {
219
+ return isset( $this->editor_data ) ? $this->editor_data : '';
220
+ }
221
+
222
+ public function set_editor_data( $content ) {
223
+ $this->editor_data = stripslashes( $content );
224
+
225
+ return $this;
226
+ }
227
+
228
  public function get_compiled_html_body() {
229
  return $this->compiled_html_body;
230
  }
241
 
242
  public function set_compiled_html_head( $html ) {
243
  // remove all title and meta tags.
244
+ $this->compiled_html_head = $this->strip_tags_content( $html, '<title>', true );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
245
 
246
  return $this;
247
  }
248
 
 
 
 
 
249
  /**
250
  * @return bool
251
  */
252
  public function can_edit() {
253
+ return Brizy_Editor::is_capable( "edit_post", $this->get_id() );
254
  }
255
 
256
  /**
331
  );
332
  }
333
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
334
 
335
  public function set_needs_compile( $v ) {
336
  $this->needs_compile = (bool) $v;
342
  return $this->needs_compile;
343
  }
344
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
345
  function strip_tags_content( $text, $tags = '', $invert = false ) {
346
 
347
  preg_match_all( '/<(.+?)[\s]*\/?[\s]*>/si', trim( $tags ), $tags );
388
  update_post_meta( $this->get_id(), '_wp_page_template', $atemplate );
389
  }
390
 
 
391
  return $this;
392
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
393
  }
editor/project.php CHANGED
@@ -56,8 +56,7 @@ class Brizy_Editor_Project extends Brizy_Admin_Serializable {
56
  self::$instance = $brizy_editor_storage_common->get( self::BRIZY_PROJECT );
57
  //self::$instance->api_project = new Brizy_Editor_API_Project( self::$instance->api_project );
58
  } catch ( Brizy_Editor_Exceptions_NotFound $e ) {
59
- self::$instance = Brizy_Editor_Project::create();
60
- $_SESSION['brizy_project_stored'] = true;
61
  } catch ( Exception $e ) {
62
  Brizy_Logger::instance()->exception( $e );
63
  $t = 0;
@@ -89,9 +88,7 @@ class Brizy_Editor_Project extends Brizy_Admin_Serializable {
89
  *
90
  * @return Brizy_Editor_Project
91
  * @throws Brizy_Editor_API_Exceptions_Exception
92
- * @throws Brizy_Editor_Exceptions_NotFound
93
  * @throws Brizy_Editor_Exceptions_ServiceUnavailable
94
- * @throws Brizy_Editor_Exceptions_UnsupportedPostType
95
  * @throws Brizy_Editor_Http_Exceptions_BadRequest
96
  * @throws Brizy_Editor_Http_Exceptions_ResponseException
97
  * @throws Brizy_Editor_Http_Exceptions_ResponseNotFound
@@ -110,6 +107,7 @@ class Brizy_Editor_Project extends Brizy_Admin_Serializable {
110
 
111
  self::$instance = $project;
112
 
 
113
  if ( $clone_from ) {
114
 
115
  $project_data = $project->get_api_project()->get_data();
@@ -153,6 +151,7 @@ class Brizy_Editor_Project extends Brizy_Admin_Serializable {
153
  }
154
  }
155
  }
 
156
 
157
 
158
  return $project;
@@ -310,23 +309,4 @@ class Brizy_Editor_Project extends Brizy_Admin_Serializable {
310
  // return $this;
311
  // }
312
 
313
- /**
314
- * @return bool
315
- */
316
- public function isStoreAssets() {
317
- return $this->store_assets;
318
- }
319
-
320
- /**
321
- * @param bool $store_assets
322
- *
323
- * @return Brizy_Editor_Project
324
- */
325
- public function setStoreAssets( $store_assets ) {
326
- $this->store_assets = $store_assets;
327
-
328
- return $this;
329
- }
330
-
331
-
332
  }
56
  self::$instance = $brizy_editor_storage_common->get( self::BRIZY_PROJECT );
57
  //self::$instance->api_project = new Brizy_Editor_API_Project( self::$instance->api_project );
58
  } catch ( Brizy_Editor_Exceptions_NotFound $e ) {
59
+ self::$instance = self::create();
 
60
  } catch ( Exception $e ) {
61
  Brizy_Logger::instance()->exception( $e );
62
  $t = 0;
88
  *
89
  * @return Brizy_Editor_Project
90
  * @throws Brizy_Editor_API_Exceptions_Exception
 
91
  * @throws Brizy_Editor_Exceptions_ServiceUnavailable
 
92
  * @throws Brizy_Editor_Http_Exceptions_BadRequest
93
  * @throws Brizy_Editor_Http_Exceptions_ResponseException
94
  * @throws Brizy_Editor_Http_Exceptions_ResponseNotFound
107
 
108
  self::$instance = $project;
109
 
110
+ /*
111
  if ( $clone_from ) {
112
 
113
  $project_data = $project->get_api_project()->get_data();
151
  }
152
  }
153
  }
154
+ */
155
 
156
 
157
  return $project;
309
  // return $this;
310
  // }
311
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
312
  }
editor/user.php CHANGED
@@ -184,6 +184,9 @@ class Brizy_Editor_User extends Brizy_Admin_Serializable implements Brizy_Editor
184
  Brizy_Editor_Storage_Common::instance()->delete( 'access-token' );
185
  }
186
 
 
 
 
187
  public function getCurrentUser() {
188
  return $this->get_client()->getUser();
189
  }
@@ -206,58 +209,47 @@ class Brizy_Editor_User extends Brizy_Admin_Serializable implements Brizy_Editor
206
  return new Brizy_Editor_API_Project( $project_data );
207
  }
208
 
209
- public function clone_pages( $page_ids, $project_target ) {
210
- Brizy_Logger::instance()->notice( 'Clone pages', array( 'pages' => $page_ids, 'project' => $project_target ) );
211
-
212
- $clone_pages = $this->get_client()->clone_pages( $page_ids, $project_target );
213
-
214
- // debug logs
215
- if ( defined( 'WP_DEBUG' ) && WP_DEBUG ) {
216
- foreach ( (array) $clone_pages as $clone ) {
217
- Brizy_Logger::instance()->debug( sprintf( "Cloned page [%s] in to page [%s]", $clone['cloned_from'], $clone['id'] ) );
218
- }
219
- }
220
-
221
- return $clone_pages;
222
- }
223
 
224
  /**
225
  * @param $project
226
  * @param $page
227
  *
228
  * @return Brizy_Editor_API_Page
229
- * @throws Brizy_Editor_API_Exceptions_Exception
230
- * @throws Brizy_Editor_Http_Exceptions_BadRequest
231
- * @throws Brizy_Editor_Http_Exceptions_ResponseException
232
- * @throws Brizy_Editor_Http_Exceptions_ResponseNotFound
233
- * @throws Brizy_Editor_Http_Exceptions_ResponseUnauthorized
234
  */
235
- public function create_page( $project, $page ) {
236
 
237
  Brizy_Logger::instance()->notice( 'Create page', array( $project, $page ) );
238
- $page_response = $this->get_client()->create_page( $project->get_id(), $page );
239
-
240
- return new Brizy_Editor_API_Page( $page_response );
241
 
 
242
  }
243
-
244
 
245
  /**
246
  * @param Brizy_Editor_API_Project $project
247
  * @param Brizy_Editor_API_Page $page
248
  *
249
- * @return array|mixed|object
250
- * @throws Brizy_Editor_API_Exceptions_Exception
251
- * @throws Brizy_Editor_Http_Exceptions_BadRequest
252
- * @throws Brizy_Editor_Http_Exceptions_ResponseException
253
- * @throws Brizy_Editor_Http_Exceptions_ResponseNotFound
254
- * @throws Brizy_Editor_Http_Exceptions_ResponseUnauthorized
255
  */
256
- public function delete_page( Brizy_Editor_API_Project $project, Brizy_Editor_API_Page $page ) {
257
- Brizy_Logger::instance()->notice( 'Delete page', array( $project, $page ) );
258
-
259
- return $this->get_client()->delete_page( $project->get_id(), $page->get_id() );
260
- }
261
 
262
  /**
263
  * @param Brizy_Editor_API_Project $project
@@ -270,20 +262,17 @@ class Brizy_Editor_User extends Brizy_Admin_Serializable implements Brizy_Editor
270
  * @throws Brizy_Editor_Http_Exceptions_ResponseNotFound
271
  * @throws Brizy_Editor_Http_Exceptions_ResponseUnauthorized
272
  */
273
- public function update_page( Brizy_Editor_API_Project $project, Brizy_Editor_API_Page $page ) {
274
- Brizy_Logger::instance()->notice( 'Update page', array( $project, $page ) );
275
-
276
- $updated_page = $this->get_client()
277
- ->update_page(
278
- $project->get_id(),
279
- $page->get_id(),
280
- $page
281
- );
282
-
283
-
284
-
285
- return $updated_page;
286
- }
287
 
288
  /**
289
  * @param Brizy_Editor_API_Project $project
@@ -335,20 +324,11 @@ class Brizy_Editor_User extends Brizy_Admin_Serializable implements Brizy_Editor
335
  */
336
  public function compile_page( $project, $post ) {
337
 
338
- $api_project = $project->get_api_project();
339
- $api_page = $post->get_api_page();
340
-
341
- // $url_builder = new Brizy_Editor_UrlBuilder( $project, $post );
342
- // if ( ! is_preview() ) {
343
- // $config['urls']['static'] = $url_builder->upload_url( $url_builder->editor_asset_path() );
344
- // $config['urls']['image'] = $url_builder->upload_url( $url_builder->media_asset_path() );
345
- // }
346
 
347
  $config = Brizy_Editor_Editor_Editor::get( $project, $post )->config();
348
 
349
- $res = $this->get_client()->compile_page( $api_project, $api_page, $config );
350
-
351
- $content = trim( $res['html'] );
352
 
353
  $asset_storage = new Brizy_Editor_Asset_AssetProxyStorage( $project, $post, $config );
354
  $media_storage = new Brizy_Editor_Asset_MediaProxyStorage( $project, $post, $config );
@@ -357,7 +337,7 @@ class Brizy_Editor_User extends Brizy_Admin_Serializable implements Brizy_Editor
357
  $asset_processors[] = new Brizy_Editor_Asset_AssetProxyProcessor( $asset_storage );
358
  $asset_processors[] = new Brizy_Editor_Asset_MediaAssetProcessor( $media_storage );
359
 
360
- $brizy_editor_compiled_html = new Brizy_Editor_CompiledHtml( $content );
361
  $brizy_editor_compiled_html->setAssetProcessors( $asset_processors );
362
 
363
  return $brizy_editor_compiled_html;
@@ -419,14 +399,21 @@ class Brizy_Editor_User extends Brizy_Admin_Serializable implements Brizy_Editor
419
  set_transient( self::lock_key(), 1, 30 );
420
  }
421
 
 
422
  protected static function unlock_access() {
423
  delete_transient( self::lock_key() );
424
  }
425
 
 
 
 
426
  protected static function lock_key() {
427
  return brizy()->get_slug() . '-user-maintenance-enabled';
428
  }
429
 
 
 
 
430
  protected static function is_locked() {
431
  return (bool) get_transient( self::lock_key() );
432
  }
@@ -451,6 +438,4 @@ class Brizy_Editor_User extends Brizy_Admin_Serializable implements Brizy_Editor
451
  public function getPlatformUserSignature() {
452
  return $this->platform_user_signature;
453
  }
454
-
455
-
456
  }
184
  Brizy_Editor_Storage_Common::instance()->delete( 'access-token' );
185
  }
186
 
187
+ /**
188
+ * @return array|mixed|object
189
+ */
190
  public function getCurrentUser() {
191
  return $this->get_client()->getUser();
192
  }
209
  return new Brizy_Editor_API_Project( $project_data );
210
  }
211
 
212
+ // public function clone_pages( $page_ids, $project_target ) {
213
+ // Brizy_Logger::instance()->notice( 'Clone pages', array( 'pages' => $page_ids, 'project' => $project_target ) );
214
+ //
215
+ // $clone_pages = $this->get_client()->clone_pages( $page_ids, $project_target );
216
+ //
217
+ // // debug logs
218
+ // if ( defined( 'WP_DEBUG' ) && WP_DEBUG ) {
219
+ // foreach ( (array) $clone_pages as $clone ) {
220
+ // Brizy_Logger::instance()->debug( sprintf( "Cloned page [%s] in to page [%s]", $clone['cloned_from'], $clone['id'] ) );
221
+ // }
222
+ // }
223
+ //
224
+ // return $clone_pages;
225
+ // }
226
 
227
  /**
228
  * @param $project
229
  * @param $page
230
  *
231
  * @return Brizy_Editor_API_Page
 
 
 
 
 
232
  */
233
+ /* public function create_page( $project, $page ) {
234
 
235
  Brizy_Logger::instance()->notice( 'Create page', array( $project, $page ) );
236
+ //$page_response = $this->get_client()->create_page( $project->get_id(), $page );
 
 
237
 
238
+ return new Brizy_Editor_API_Page( array() );
239
  }
240
+ */
241
 
242
  /**
243
  * @param Brizy_Editor_API_Project $project
244
  * @param Brizy_Editor_API_Page $page
245
  *
246
+ * @return mixed
 
 
 
 
 
247
  */
248
+ // public function delete_page( Brizy_Editor_API_Project $project, Brizy_Editor_API_Page $page ) {
249
+ // Brizy_Logger::instance()->notice( 'Delete page', array( $project, $page ) );
250
+ //
251
+ // return $this->get_client()->delete_page( $project->get_id(), $page->get_id() );
252
+ // }
253
 
254
  /**
255
  * @param Brizy_Editor_API_Project $project
262
  * @throws Brizy_Editor_Http_Exceptions_ResponseNotFound
263
  * @throws Brizy_Editor_Http_Exceptions_ResponseUnauthorized
264
  */
265
+ // public function update_page( Brizy_Editor_API_Project $project, Brizy_Editor_API_Page $page ) {
266
+ // Brizy_Logger::instance()->notice( 'Update page', array( $project, $page ) );
267
+ //
268
+ // $updated_page = $this->get_client()
269
+ // ->update_page(
270
+ // $project->get_id(),
271
+ // $page->get_id(),
272
+ // $page
273
+ // );
274
+ // return $updated_page;
275
+ // }
 
 
 
276
 
277
  /**
278
  * @param Brizy_Editor_API_Project $project
324
  */
325
  public function compile_page( $project, $post ) {
326
 
327
+ $editor_data = $post->get_editor_data();
 
 
 
 
 
 
 
328
 
329
  $config = Brizy_Editor_Editor_Editor::get( $project, $post )->config();
330
 
331
+ $page_html = $this->get_client()->compile_page( $project, $editor_data, $config );
 
 
332
 
333
  $asset_storage = new Brizy_Editor_Asset_AssetProxyStorage( $project, $post, $config );
334
  $media_storage = new Brizy_Editor_Asset_MediaProxyStorage( $project, $post, $config );
337
  $asset_processors[] = new Brizy_Editor_Asset_AssetProxyProcessor( $asset_storage );
338
  $asset_processors[] = new Brizy_Editor_Asset_MediaAssetProcessor( $media_storage );
339
 
340
+ $brizy_editor_compiled_html = new Brizy_Editor_CompiledHtml( $page_html );
341
  $brizy_editor_compiled_html->setAssetProcessors( $asset_processors );
342
 
343
  return $brizy_editor_compiled_html;
399
  set_transient( self::lock_key(), 1, 30 );
400
  }
401
 
402
+
403
  protected static function unlock_access() {
404
  delete_transient( self::lock_key() );
405
  }
406
 
407
+ /**
408
+ * @return string
409
+ */
410
  protected static function lock_key() {
411
  return brizy()->get_slug() . '-user-maintenance-enabled';
412
  }
413
 
414
+ /**
415
+ * @return bool
416
+ */
417
  protected static function is_locked() {
418
  return (bool) get_transient( self::lock_key() );
419
  }
438
  public function getPlatformUserSignature() {
439
  return $this->platform_user_signature;
440
  }
 
 
441
  }
public/asset-proxy.php CHANGED
@@ -47,7 +47,6 @@ class Brizy_Public_AssetProxy {
47
  $tmp_asset_url = $this->url_builder->editor_asset_path( $asset_path );
48
  $new_path = $this->url_builder->upload_path( $tmp_asset_url );
49
 
50
-
51
  if ( ! file_exists( $new_path ) ) {
52
  $store_result = $this->store_file( $asset_url, $new_path );
53
 
@@ -64,7 +63,7 @@ class Brizy_Public_AssetProxy {
64
  $content = file_get_contents( $new_path );
65
 
66
  // send headers
67
- $headers = [];
68
  $headers['Content-Type'] = $this->get_mime( $new_path, 1 );
69
  $headers['Content-Length'] = strlen( $content );
70
  $headers['Cache-Control'] = 'max-age=600';
@@ -107,7 +106,6 @@ class Brizy_Public_AssetProxy {
107
  */
108
  public function store_file( $asset_source, $asset_path ) {
109
 
110
- $full_asset_path = null;
111
  try {
112
  // check destination dir
113
  $dir_path = dirname( $asset_path );
@@ -116,34 +114,24 @@ class Brizy_Public_AssetProxy {
116
  mkdir( $dir_path, 0777, true );
117
  }
118
 
119
- $full_asset_path = $asset_path;
120
 
121
- $fasset_dest = @fopen( $asset_path, 'w' );
122
- if ( ! $fasset_dest ) {
123
- throw new Exception( 'Invalid file destination.' );
124
- }
125
 
126
- $fasset_src = @fopen( $asset_source, 'r' );
127
- if ( ! $fasset_src ) {
128
- throw new Exception( 'Invalid asset source.' );
129
  }
130
 
131
- $buffer_length = 81920; // we can tune this later;
132
-
133
- while ( ! feof( $fasset_src ) ) {
134
- $buffer = fread( $fasset_src, $buffer_length );
135
- fwrite( $fasset_dest, $buffer );
136
- }
137
 
138
- @fclose( $fasset_src );
139
- @fclose( $fasset_dest );
140
 
141
  } catch ( Exception $e ) {
142
  $t = 0;
143
 
144
  // clean up
145
- if ( $full_asset_path ) {
146
- @unlink( $full_asset_path );
147
  }
148
 
149
  return false;
47
  $tmp_asset_url = $this->url_builder->editor_asset_path( $asset_path );
48
  $new_path = $this->url_builder->upload_path( $tmp_asset_url );
49
 
 
50
  if ( ! file_exists( $new_path ) ) {
51
  $store_result = $this->store_file( $asset_url, $new_path );
52
 
63
  $content = file_get_contents( $new_path );
64
 
65
  // send headers
66
+ $headers = array();
67
  $headers['Content-Type'] = $this->get_mime( $new_path, 1 );
68
  $headers['Content-Length'] = strlen( $content );
69
  $headers['Cache-Control'] = 'max-age=600';
106
  */
107
  public function store_file( $asset_source, $asset_path ) {
108
 
 
109
  try {
110
  // check destination dir
111
  $dir_path = dirname( $asset_path );
114
  mkdir( $dir_path, 0777, true );
115
  }
116
 
 
117
 
118
+ $http = new WP_Http();
119
+ $wp_response = $http->request( $asset_source );
 
 
120
 
121
+ if ( is_wp_error( $wp_response ) ) {
122
+ return false;
 
123
  }
124
 
125
+ $content = wp_remote_retrieve_body( $wp_response );
 
 
 
 
 
126
 
127
+ file_put_contents( $asset_path, $content );
 
128
 
129
  } catch ( Exception $e ) {
130
  $t = 0;
131
 
132
  // clean up
133
+ if ( $asset_path ) {
134
+ @unlink( $asset_path );
135
  }
136
 
137
  return false;
public/editor-build/1.0.10/editor/css/editor.css DELETED
@@ -1 +0,0 @@
1
- .brz .media-frame .spinner,.brz-ed-sorting .sortable-chosen :not(.brz-ed-border),.slick-loading .brz .slick-slide,.slick-loading .brz .slick-track{visibility:hidden}.brz .brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-wrapper-clone,.brz-ed-sorting .brz .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-wrapper-clone,.brz-ed-sorting .sortable-hovered:not(.brz-ed-border__sortable):not(.brz-ed-container-trigger),.brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-row__container,.brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-wrapper,.brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-wrapper-clone{position:relative}.brz .brz-a,.brz .brz-rich-text a,.brz-ed .brz-a{-webkit-text-decoration-skip:objects}.brz .brz-a,.brz .brz-a[href]:hover{-webkit-box-shadow:none;text-decoration:none}.brz .brz-a,.brz .brz-btn.focus,.brz .brz-btn:focus,.brz .brz-btn:hover{text-decoration:none}.brz .brz-button,.brz .brz-reset-all,.brz .brz-select,.nc-icon{text-transform:none}.brz .brz-btn,.brz .brz-ed-image__wrapper .brz-img{-moz-user-select:none;-ms-user-select:none;-webkit-user-drag:none}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@-webkit-keyframes fadeInDown{from{opacity:0;-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}to{opacity:1;-webkit-transform:none;transform:none}}@-webkit-keyframes fadeInUp{from{opacity:0;-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}to{opacity:1;-webkit-transform:none;transform:none}}@-webkit-keyframes fadeIn{from{opacity:0}to{opacity:1}}@-webkit-keyframes fadeInLeft{from{opacity:0;-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@-webkit-keyframes pulsate{0%{-webkit-transform:scale(.1,.1);transform:scale(.1,.1);opacity:0}50%{opacity:1}100%{-webkit-transform:scale(1.2,1.2);transform:scale(1.2,1.2);opacity:0}}@-webkit-keyframes sk-bounce{0%,100%{-webkit-transform:scale(0);transform:scale(0)}50%{-webkit-transform:scale(1);transform:scale(1)}}@font-face{font-family:iowanoldst_btroman;src:url(../fonts/iowaosrm-webfont.woff);src:url(../fonts/iowaosrm-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/iowaosrm-webfont.woff2) format("woff2"),url(../fonts/iowaosrm-webfont.woff) format("woff"),url(../fonts/iowaosrm-webfont.ttf) format("truetype");font-weight:400;font-style:normal}@font-face{font-family:europa;src:url(../fonts/europa-regular-webfont.woff);src:url(../fonts/europa-regular-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/europa-regular-webfont.woff2) format("woff2"),url(../fonts/europa-regular-webfont.woff) format("woff"),url(../fonts/europa-regular-webfont.ttf) format("truetype");font-weight:400;font-style:normal}@font-face{font-family:europa;src:url(../fonts/europa-bold-webfont.woff);src:url(../fonts/europa-bold-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/europa-bold-webfont.woff2) format("woff2"),url(../fonts/europa-bold-webfont.woff) format("woff"),url(../fonts/europa-bold-webfont.ttf) format("truetype");font-weight:700;font-style:normal}@font-face{font-family:europa;src:url(../fonts/europa-light-webfont.woff);src:url(../fonts/europa-light-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/europa-light-webfont.woff2) format("woff2"),url(../fonts/europa-light-webfont.woff) format("woff"),url(../fonts/europa-light-webfont.ttf) format("truetype");font-weight:300;font-style:normal}@font-face{font-family:pn;src:url(../fonts/pn-regular-webfont.eot);src:url(../fonts/pn-regular-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/pn-regular-webfont.woff2) format("woff2"),url(../fonts/pn-regular-webfont.woff) format("woff"),url(../fonts/pn-regular-webfont.svg) format("svg");font-weight:400;font-style:normal}@font-face{font-family:pn;src:url(../fonts/pn-medium-webfont.eot);src:url(../fonts/pn-medium-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/pn-medium-webfont.woff2) format("woff2"),url(../fonts/pn-medium-webfont.woff) format("woff"),url(../fonts/pn-medium-webfont.svg) format("svg");font-weight:600;font-style:normal}@font-face{font-family:pn;src:url(../fonts/pn-bold-webfont.eot);src:url(../fonts/pn-bold-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/pn-bold-webfont.woff2) format("woff2"),url(../fonts/pn-bold-webfont.woff) format("woff"),url(../fonts/pn-bold-webfont.svg) format("svg");font-weight:700;font-style:normal}@font-face{font-family:"Nucleo Outline";src:url(../fonts/icons/nucleo-outline.eot);src:url(../fonts/icons/nucleo-outline.eot) format("embedded-opentype"),url(../fonts/icons/nucleo-outline.woff2) format("woff2"),url(../fonts/icons/nucleo-outline.woff) format("woff"),url(../fonts/icons/nucleo-outline.ttf) format("truetype"),url(../fonts/icons/nucleo-outline.svg) format("svg");font-weight:400;font-style:normal}@font-face{font-family:"Nucleo Glyph";src:url(../fonts/icons/nucleo-glyph.eot);src:url(../fonts/icons/nucleo-glyph.eot) format("embedded-opentype"),url(../fonts/icons/nucleo-glyph.woff2) format("woff2"),url(../fonts/icons/nucleo-glyph.woff) format("woff"),url(../fonts/icons/nucleo-glyph.ttf) format("truetype"),url(../fonts/icons/nucleo-glyph.svg) format("svg");font-weight:400;font-style:normal}.nc-outline-2x-drag-down:before{content:"\ea01"}.nc-outline-2x-drag-up:before{content:"\ea02"}.nc-outline-2x-swipe-down:before{content:"\ea03"}.nc-outline-2x-swipe-left:before{content:"\ea04"}.nc-outline-2x-swipe-right:before{content:"\ea05"}.nc-outline-2x-swipe-up:before{content:"\ea06"}.nc-outline-2x-tap:before{content:"\ea07"}.nc-outline-3d-29:before{content:"\ea08"}.nc-outline-3d-model:before{content:"\ea09"}.nc-outline-3d:before{content:"\ea0a"}.nc-outline-3x-swipe-left:before{content:"\ea0b"}.nc-outline-3x-swipe-right:before{content:"\ea0c"}.nc-outline-3x-swipe-up:before{content:"\ea0e"}.nc-outline-3x-tap:before{content:"\ea0d"}.nc-outline-4x-swipe-left:before{content:"\ea0f"}.nc-outline-4x-swipe-right:before{content:"\ea10"}.nc-outline-4x-swipe-up:before{content:"\ea11"}.nc-outline-a-add:before{content:"\ea12"}.nc-outline-a-check:before{content:"\ea13"}.nc-outline-a-delete:before{content:"\ea14"}.nc-outline-a-edit:before{content:"\ea15"}.nc-outline-a-heart:before{content:"\ea16"}.nc-outline-a-location:before{content:"\ea17"}.nc-outline-a-remove:before{content:"\ea18"}.nc-outline-a-search:before{content:"\ea19"}.nc-outline-a-security:before{content:"\ea1a"}.nc-outline-a-share:before{content:"\ea1b"}.nc-outline-a-star:before{content:"\ea1c"}.nc-outline-a-sync:before{content:"\ea1d"}.nc-outline-a-time:before{content:"\ea1e"}.nc-outline-abc:before{content:"\ea1f"}.nc-outline-accessibility:before{content:"\ea20"}.nc-outline-action-73:before{content:"\ea22"}.nc-outline-action-74:before{content:"\ea21"}.nc-outline-active-38:before{content:"\ea23"}.nc-outline-active-40:before{content:"\ea24"}.nc-outline-add-27:before{content:"\ea26"}.nc-outline-add-29:before{content:"\ea25"}.nc-outline-add:before{content:"\ea28"}.nc-outline-agenda-bookmark:before{content:"\ea27"}.nc-outline-agenda:before{content:"\ea29"}.nc-outline-air-baloon:before{content:"\ea2a"}.nc-outline-air-conditioner:before{content:"\ea2b"}.nc-outline-airbag:before{content:"\ea2c"}.nc-outline-alarm-add:before{content:"\ea2d"}.nc-outline-alarm-delete:before{content:"\ea2e"}.nc-outline-album-2:before{content:"\ea2f"}.nc-outline-album:before{content:"\ea30"}.nc-outline-alcohol:before{content:"\ea31"}.nc-outline-alert-circle-exc:before{content:"\ea32"}.nc-outline-alert-circle-i:before{content:"\ea33"}.nc-outline-alert-circle-que:before{content:"\ea34"}.nc-outline-alert-exc:before{content:"\ea35"}.nc-outline-alert-i:before{content:"\ea36"}.nc-outline-alert-que:before{content:"\ea37"}.nc-outline-alert-square-exc:before{content:"\ea38"}.nc-outline-alert-square-i:before{content:"\ea39"}.nc-outline-alert-square-que:before{content:"\ea3a"}.nc-outline-alert:before{content:"\ea3b"}.nc-outline-alien-29:before{content:"\ea3c"}.nc-outline-alien-33:before{content:"\ea3d"}.nc-outline-align-bottom:before{content:"\ea3e"}.nc-outline-align-center-horizontal:before{content:"\ea3f"}.nc-outline-align-center-vertical:before{content:"\ea40"}.nc-outline-align-center:before{content:"\ea41"}.nc-outline-align-justify:before{content:"\ea42"}.nc-outline-align-left-2:before{content:"\ea43"}.nc-outline-align-left:before{content:"\ea44"}.nc-outline-align-right-2:before{content:"\ea45"}.nc-outline-align-right:before{content:"\ea46"}.nc-outline-align-top:before{content:"\ea47"}.nc-outline-ambulance:before{content:"\ea48"}.nc-outline-analytics-88:before{content:"\ea49"}.nc-outline-analytics-89:before{content:"\ea4a"}.nc-outline-anchor:before{content:"\ea4c"}.nc-outline-android:before{content:"\ea4b"}.nc-outline-angle:before{content:"\ea4d"}.nc-outline-angry-10:before{content:"\ea4e"}.nc-outline-angry-44:before{content:"\ea50"}.nc-outline-animation-14:before{content:"\ea4f"}.nc-outline-animation-31:before{content:"\ea51"}.nc-outline-animation-32:before{content:"\ea52"}.nc-outline-app:before{content:"\ea53"}.nc-outline-apple-2:before{content:"\ea54"}.nc-outline-apple:before{content:"\ea55"}.nc-outline-appointment:before{content:"\ea56"}.nc-outline-archive-2:before{content:"\ea57"}.nc-outline-archive-3d-check:before{content:"\ea58"}.nc-outline-archive-3d-content:before{content:"\ea59"}.nc-outline-archive-check:before{content:"\ea5a"}.nc-outline-archive-content:before{content:"\ea5b"}.nc-outline-archive-paper-check:before{content:"\ea5c"}.nc-outline-archive-paper:before{content:"\ea5d"}.nc-outline-archive:before{content:"\ea5e"}.nc-outline-armchair:before{content:"\ea5f"}.nc-outline-artboard:before{content:"\ea60"}.nc-outline-astronaut:before{content:"\ea62"}.nc-outline-at-sign:before{content:"\ea61"}.nc-outline-atm:before{content:"\ea63"}.nc-outline-atom:before{content:"\ea64"}.nc-outline-attach-86:before{content:"\ea65"}.nc-outline-attach-87:before{content:"\ea66"}.nc-outline-aubergine:before{content:"\ea67"}.nc-outline-audio-91:before{content:"\ea68"}.nc-outline-audio-92:before{content:"\ea69"}.nc-outline-audio:before{content:"\ea6a"}.nc-outline-avocado:before{content:"\ea6c"}.nc-outline-award-48:before{content:"\ea6b"}.nc-outline-award-49:before{content:"\ea6d"}.nc-outline-award-55:before{content:"\ea6e"}.nc-outline-award-74:before{content:"\ea6f"}.nc-outline-award:before{content:"\ea70"}.nc-outline-axe:before{content:"\ea71"}.nc-outline-b-add:before{content:"\ea72"}.nc-outline-b-check:before{content:"\ea74"}.nc-outline-b-location:before{content:"\ea73"}.nc-outline-b-love:before{content:"\ea75"}.nc-outline-b-meeting:before{content:"\ea76"}.nc-outline-b-remove:before{content:"\ea78"}.nc-outline-b-security:before{content:"\ea77"}.nc-outline-baby-2:before{content:"\ea79"}.nc-outline-baby-3:before{content:"\ea7a"}.nc-outline-baby-bottle:before{content:"\ea7b"}.nc-outline-baby:before{content:"\ea7c"}.nc-outline-back-78:before{content:"\ea7d"}.nc-outline-back-80:before{content:"\ea7e"}.nc-outline-background:before{content:"\ea7f"}.nc-outline-backpack-2:before{content:"\ea80"}.nc-outline-backpack-57:before{content:"\ea81"}.nc-outline-backpack-58:before{content:"\ea82"}.nc-outline-backpack:before{content:"\ea83"}.nc-outline-backward:before{content:"\ea84"}.nc-outline-bacon:before{content:"\ea85"}.nc-outline-badge-13:before{content:"\ea86"}.nc-outline-badge-14:before{content:"\ea87"}.nc-outline-badge-15:before{content:"\ea88"}.nc-outline-badge:before{content:"\ea89"}.nc-outline-badminton:before{content:"\ea8a"}.nc-outline-bag-09:before{content:"\ea8b"}.nc-outline-bag-16:before{content:"\ea8c"}.nc-outline-bag-17:before{content:"\ea8d"}.nc-outline-bag-20:before{content:"\ea8e"}.nc-outline-bag-21:before{content:"\ea8f"}.nc-outline-bag-22:before{content:"\ea90"}.nc-outline-bag-49:before{content:"\ea91"}.nc-outline-bag-50:before{content:"\ea92"}.nc-outline-bag-add-18:before{content:"\ea93"}.nc-outline-bag-add-21:before{content:"\ea94"}.nc-outline-bag-delivery:before{content:"\ea95"}.nc-outline-bag-edit:before{content:"\ea96"}.nc-outline-bag-remove-19:before{content:"\ea97"}.nc-outline-bag-remove-22:before{content:"\ea98"}.nc-outline-bag-time:before{content:"\ea99"}.nc-outline-bag:before{content:"\ea9a"}.nc-outline-baguette:before{content:"\ea9b"}.nc-outline-balance:before{content:"\ea9c"}.nc-outline-ball-basket:before{content:"\ea9d"}.nc-outline-ball-soccer:before{content:"\ea9e"}.nc-outline-baloon:before{content:"\eaa0"}.nc-outline-ban-bold:before{content:"\ea9f"}.nc-outline-ban:before{content:"\eaa1"}.nc-outline-banana:before{content:"\eaa2"}.nc-outline-bank:before{content:"\eaa3"}.nc-outline-barbecue-15:before{content:"\eaa4"}.nc-outline-barbecue-tools:before{content:"\eaa5"}.nc-outline-barbecue:before{content:"\eaa6"}.nc-outline-barcode-qr:before{content:"\eaa7"}.nc-outline-barcode-scan:before{content:"\eaa8"}.nc-outline-barcode:before{content:"\eaa9"}.nc-outline-bars-2:before{content:"\eaaa"}.nc-outline-bars-rotate:before{content:"\eaac"}.nc-outline-bars:before{content:"\eaab"}.nc-outline-baseball-ball:before{content:"\eaad"}.nc-outline-baseball-bat:before{content:"\eaae"}.nc-outline-baseball:before{content:"\eaaf"}.nc-outline-basket-add:before{content:"\eab0"}.nc-outline-basket-edit:before{content:"\eab1"}.nc-outline-basket-favorite:before{content:"\eab2"}.nc-outline-basket-remove:before{content:"\eab3"}.nc-outline-basket-search:before{content:"\eab4"}.nc-outline-basket-share:before{content:"\eab5"}.nc-outline-basket-simple-add:before{content:"\eab6"}.nc-outline-basket-simple-remove:before{content:"\eab7"}.nc-outline-basket-simple:before{content:"\eab8"}.nc-outline-basket-update:before{content:"\eab9"}.nc-outline-basket:before{content:"\eaba"}.nc-outline-basketball-12:before{content:"\eabb"}.nc-outline-basketball-13:before{content:"\eabc"}.nc-outline-bat:before{content:"\eabd"}.nc-outline-bath-tub:before{content:"\eabe"}.nc-outline-battery-81:before{content:"\eabf"}.nc-outline-battery-83:before{content:"\eac0"}.nc-outline-battery-half:before{content:"\eac1"}.nc-outline-battery-level:before{content:"\eac2"}.nc-outline-battery-low:before{content:"\eac3"}.nc-outline-battery:before{content:"\eac4"}.nc-outline-bear-2:before{content:"\eac5"}.nc-outline-bear:before{content:"\eac6"}.nc-outline-bed-09:before{content:"\eac8"}.nc-outline-bed-23:before{content:"\eac9"}.nc-outline-bed-side:before{content:"\eac7"}.nc-outline-bee:before{content:"\eaca"}.nc-outline-beer-95:before{content:"\eacb"}.nc-outline-beer-96:before{content:"\eacc"}.nc-outline-bell-53:before{content:"\eacd"}.nc-outline-bell-54:before{content:"\eace"}.nc-outline-bell-55:before{content:"\eacf"}.nc-outline-belt:before{content:"\ead0"}.nc-outline-berlin:before{content:"\ead1"}.nc-outline-beverage:before{content:"\ead2"}.nc-outline-big-eyes:before{content:"\ead4"}.nc-outline-big-smile:before{content:"\ead3"}.nc-outline-bigmouth:before{content:"\ead5"}.nc-outline-bike-2:before{content:"\ead6"}.nc-outline-bike:before{content:"\ead7"}.nc-outline-bill:before{content:"\ead9"}.nc-outline-billiard:before{content:"\ead8"}.nc-outline-binocular:before{content:"\eada"}.nc-outline-biscuit:before{content:"\eadb"}.nc-outline-bitcoin:before{content:"\eadc"}.nc-outline-bleah:before{content:"\eadd"}.nc-outline-blend:before{content:"\eade"}.nc-outline-blind:before{content:"\eae0"}.nc-outline-block-bottom-left:before{content:"\eadf"}.nc-outline-block-bottom-right:before{content:"\eae1"}.nc-outline-block-down:before{content:"\eae2"}.nc-outline-block-left:before{content:"\eae3"}.nc-outline-block-right:before{content:"\eae4"}.nc-outline-block-top-left:before{content:"\eae5"}.nc-outline-block-top-right:before{content:"\eae6"}.nc-outline-block-up:before{content:"\eae8"}.nc-outline-blog:before{content:"\eae7"}.nc-outline-blueberries:before{content:"\eae9"}.nc-outline-bluetooth:before{content:"\eaea"}.nc-outline-board-2:before{content:"\eaeb"}.nc-outline-board-27:before{content:"\eaec"}.nc-outline-board-28:before{content:"\eaed"}.nc-outline-board-29:before{content:"\eaee"}.nc-outline-board-30:before{content:"\eaef"}.nc-outline-board-51:before{content:"\eaf0"}.nc-outline-board:before{content:"\eaf1"}.nc-outline-boat-front:before{content:"\eaf2"}.nc-outline-boat-small-02:before{content:"\eaf3"}.nc-outline-boat-small-03:before{content:"\eaf4"}.nc-outline-boat:before{content:"\eaf5"}.nc-outline-bold-add:before{content:"\eaf6"}.nc-outline-bold-delete:before{content:"\eaf7"}.nc-outline-bold-direction:before{content:"\eaf8"}.nc-outline-bold-down:before{content:"\eaf9"}.nc-outline-bold-left:before{content:"\eafa"}.nc-outline-bold-remove:before{content:"\eafc"}.nc-outline-bold-right:before{content:"\eafb"}.nc-outline-bold-up:before{content:"\eafd"}.nc-outline-bold:before{content:"\eafe"}.nc-outline-bolt:before{content:"\eaff"}.nc-outline-bomb:before{content:"\eb00"}.nc-outline-bones:before{content:"\eb01"}.nc-outline-book-07:before{content:"\eb02"}.nc-outline-book-08:before{content:"\eb03"}.nc-outline-book-39:before{content:"\eb04"}.nc-outline-book-bookmark-2:before{content:"\eb05"}.nc-outline-book-bookmark:before{content:"\eb06"}.nc-outline-book-open-2:before{content:"\eb07"}.nc-outline-book-open:before{content:"\eb08"}.nc-outline-book:before{content:"\eb09"}.nc-outline-bookmark-2:before{content:"\eb0a"}.nc-outline-bookmark-add-2:before{content:"\eb0b"}.nc-outline-bookmark-add:before{content:"\eb0c"}.nc-outline-bookmark-remove-2:before{content:"\eb0d"}.nc-outline-bookmark-remove:before{content:"\eb0e"}.nc-outline-bookmark:before{content:"\eb0f"}.nc-outline-books-46:before{content:"\eb10"}.nc-outline-books:before{content:"\eb11"}.nc-outline-boot-2:before{content:"\eb12"}.nc-outline-boot-woman:before{content:"\eb14"}.nc-outline-boot:before{content:"\eb15"}.nc-outline-border-radius:before{content:"\eb13"}.nc-outline-border:before{content:"\eb16"}.nc-outline-bored:before{content:"\eb17"}.nc-outline-bottle-wine:before{content:"\eb18"}.nc-outline-bottle:before{content:"\eb19"}.nc-outline-bow:before{content:"\eb1a"}.nc-outline-bowl:before{content:"\eb1b"}.nc-outline-bowling:before{content:"\eb1d"}.nc-outline-box-2:before{content:"\eb1c"}.nc-outline-box-3d-50:before{content:"\eb1e"}.nc-outline-box-ribbon:before{content:"\eb1f"}.nc-outline-box:before{content:"\eb20"}.nc-outline-boxing:before{content:"\eb21"}.nc-outline-bra:before{content:"\eb22"}.nc-outline-brain:before{content:"\eb23"}.nc-outline-brakes:before{content:"\eb24"}.nc-outline-bread:before{content:"\eb25"}.nc-outline-briefcase-24:before{content:"\eb26"}.nc-outline-briefcase-25:before{content:"\eb28"}.nc-outline-briefcase-26:before{content:"\eb27"}.nc-outline-brightness-46:before{content:"\eb29"}.nc-outline-brightness-47:before{content:"\eb2a"}.nc-outline-brioche:before{content:"\eb2d"}.nc-outline-broccoli:before{content:"\eb2b"}.nc-outline-broom:before{content:"\eb2c"}.nc-outline-browser-chrome:before{content:"\eb2e"}.nc-outline-browser-edge:before{content:"\eb2f"}.nc-outline-browser-firefox:before{content:"\eb30"}.nc-outline-browser-ie:before{content:"\eb31"}.nc-outline-browser-opera:before{content:"\eb32"}.nc-outline-browser-safari:before{content:"\eb35"}.nc-outline-brush:before{content:"\eb34"}.nc-outline-bucket:before{content:"\eb33"}.nc-outline-bug:before{content:"\eb36"}.nc-outline-building:before{content:"\eb37"}.nc-outline-bulb-61:before{content:"\eb39"}.nc-outline-bulb-62:before{content:"\eb38"}.nc-outline-bulb-63:before{content:"\eb3a"}.nc-outline-bulb-saver:before{content:"\eb3b"}.nc-outline-bulb:before{content:"\eb3d"}.nc-outline-bullet-list-67:before{content:"\eb3c"}.nc-outline-bullet-list-68:before{content:"\eb3e"}.nc-outline-bullet-list-69:before{content:"\eb41"}.nc-outline-bullet-list-70:before{content:"\eb3f"}.nc-outline-bullet-list:before{content:"\eb40"}.nc-outline-bus-front-10:before{content:"\eb42"}.nc-outline-bus-front-12:before{content:"\eb44"}.nc-outline-bus:before{content:"\eb45"}.nc-outline-business-contact-85:before{content:"\eb43"}.nc-outline-business-contact-89:before{content:"\eb46"}.nc-outline-businessman-03:before{content:"\eb47"}.nc-outline-businessman-04:before{content:"\eb48"}.nc-outline-butterfly:before{content:"\eb49"}.nc-outline-button-2:before{content:"\eb4a"}.nc-outline-button-circle-pause:before{content:"\eb4c"}.nc-outline-button-circle-play:before{content:"\eb4b"}.nc-outline-button-circle-stop:before{content:"\eb4d"}.nc-outline-button-eject:before{content:"\eb4e"}.nc-outline-button-next:before{content:"\eb50"}.nc-outline-button-pause:before{content:"\eb4f"}.nc-outline-button-play:before{content:"\eb51"}.nc-outline-button-power:before{content:"\eb52"}.nc-outline-button-previous:before{content:"\eb54"}.nc-outline-button-record:before{content:"\eb53"}.nc-outline-button-rewind:before{content:"\eb55"}.nc-outline-button-skip:before{content:"\eb56"}.nc-outline-button-stop:before{content:"\eb57"}.nc-outline-button:before{content:"\eb58"}.nc-outline-cabinet:before{content:"\eb59"}.nc-outline-cable-49:before{content:"\eb5a"}.nc-outline-cable-50:before{content:"\eb5b"}.nc-outline-cactus:before{content:"\eb5c"}.nc-outline-cake-100:before{content:"\eb5d"}.nc-outline-cake-13:before{content:"\eb5e"}.nc-outline-cake-slice:before{content:"\eb5f"}.nc-outline-cake:before{content:"\eb60"}.nc-outline-calculator:before{content:"\eb61"}.nc-outline-calendar-57:before{content:"\eb62"}.nc-outline-calendar-60:before{content:"\eb64"}.nc-outline-calendar-add:before{content:"\eb65"}.nc-outline-calendar-check-59:before{content:"\eb63"}.nc-outline-calendar-check-62:before{content:"\eb66"}.nc-outline-calendar-grid-58:before{content:"\eb67"}.nc-outline-calendar-grid-61:before{content:"\eb68"}.nc-outline-camera-18:before{content:"\eb69"}.nc-outline-camera-19:before{content:"\eb6a"}.nc-outline-camera-20:before{content:"\eb6b"}.nc-outline-camera-ban-36:before{content:"\eb6c"}.nc-outline-camera-ban-37:before{content:"\eb6d"}.nc-outline-camera-compact:before{content:"\eb6e"}.nc-outline-camera-screen:before{content:"\eb6f"}.nc-outline-camera-square-57:before{content:"\eb70"}.nc-outline-camera-square-58:before{content:"\eb71"}.nc-outline-camera-time:before{content:"\eb72"}.nc-outline-camera:before{content:"\eb73"}.nc-outline-camper:before{content:"\eb75"}.nc-outline-camping:before{content:"\eb74"}.nc-outline-candle:before{content:"\eb76"}.nc-outline-candy-2:before{content:"\eb77"}.nc-outline-candy:before{content:"\eb78"}.nc-outline-canvas:before{content:"\eb79"}.nc-outline-cap:before{content:"\eb7a"}.nc-outline-capitalize:before{content:"\eb7b"}.nc-outline-caps-all:before{content:"\eb7c"}.nc-outline-caps-small:before{content:"\eb7d"}.nc-outline-car-2:before{content:"\eb7e"}.nc-outline-car-accident:before{content:"\eb7f"}.nc-outline-car-connect:before{content:"\eb80"}.nc-outline-car-door:before{content:"\eb81"}.nc-outline-car-front:before{content:"\eb82"}.nc-outline-car-lights:before{content:"\eb83"}.nc-outline-car-parking:before{content:"\eb84"}.nc-outline-car-simple:before{content:"\eb85"}.nc-outline-car-sport:before{content:"\eb86"}.nc-outline-car-taxi:before{content:"\eb87"}.nc-outline-car-ventilation:before{content:"\eb88"}.nc-outline-car-wash:before{content:"\eb89"}.nc-outline-car:before{content:"\eb8a"}.nc-outline-card-add-2:before{content:"\eb8b"}.nc-outline-card-add:before{content:"\eb8c"}.nc-outline-card-alert:before{content:"\eb8d"}.nc-outline-card-edit:before{content:"\eb8e"}.nc-outline-card-favorite:before{content:"\eb8f"}.nc-outline-card-remove:before{content:"\eb90"}.nc-outline-card-update:before{content:"\eb91"}.nc-outline-cardio:before{content:"\eb92"}.nc-outline-cards:before{content:"\eb94"}.nc-outline-carrot:before{content:"\eb95"}.nc-outline-cart-9:before{content:"\eb93"}.nc-outline-cart-add-9:before{content:"\eb96"}.nc-outline-cart-add:before{content:"\eb97"}.nc-outline-cart-favorite:before{content:"\eb98"}.nc-outline-cart-full:before{content:"\eb99"}.nc-outline-cart-in-9:before{content:"\eb9a"}.nc-outline-cart-refresh:before{content:"\eb9c"}.nc-outline-cart-remove-9:before{content:"\eb9b"}.nc-outline-cart-remove:before{content:"\eb9d"}.nc-outline-cart-return:before{content:"\eb9e"}.nc-outline-cart-simple-add:before{content:"\eb9f"}.nc-outline-cart-simple-in:before{content:"\eba1"}.nc-outline-cart-simple-remove:before{content:"\eba0"}.nc-outline-cart-simple:before{content:"\eba2"}.nc-outline-cart-speed:before{content:"\eba3"}.nc-outline-cart:before{content:"\eba4"}.nc-outline-cash-register:before{content:"\eba5"}.nc-outline-castle:before{content:"\eba6"}.nc-outline-cat:before{content:"\eba7"}.nc-outline-cauldron:before{content:"\eba8"}.nc-outline-cctv:before{content:"\eba9"}.nc-outline-cd-reader:before{content:"\ebaa"}.nc-outline-celsius:before{content:"\ebab"}.nc-outline-centralize:before{content:"\ebac"}.nc-outline-chair-2:before{content:"\ebad"}.nc-outline-chair:before{content:"\ebae"}.nc-outline-chalkboard:before{content:"\ebaf"}.nc-outline-champagne:before{content:"\ebb0"}.nc-outline-chart-2:before{content:"\ebb1"}.nc-outline-chart-3:before{content:"\ebb2"}.nc-outline-chart-bar-32:before{content:"\ebb3"}.nc-outline-chart-bar-33:before{content:"\ebb4"}.nc-outline-chart-bar-52:before{content:"\ebb5"}.nc-outline-chart-bar-53:before{content:"\ebb6"}.nc-outline-chart-bar:before{content:"\ebb7"}.nc-outline-chart-bars:before{content:"\ebb8"}.nc-outline-chart-growth:before{content:"\ebb9"}.nc-outline-chart-pie-35:before{content:"\ebba"}.nc-outline-chart-pie-36:before{content:"\ebbb"}.nc-outline-chart-pie:before{content:"\ebbc"}.nc-outline-chart:before{content:"\ebbd"}.nc-outline-chat-33:before{content:"\ebbe"}.nc-outline-chat-45:before{content:"\ebbf"}.nc-outline-chat-46:before{content:"\ebc0"}.nc-outline-chat-content:before{content:"\ebc1"}.nc-outline-chat-reply:before{content:"\ebc2"}.nc-outline-chat-round-content:before{content:"\ebc3"}.nc-outline-chat-round:before{content:"\ebc4"}.nc-outline-chat:before{content:"\ebc5"}.nc-outline-check-2:before{content:"\ebc6"}.nc-outline-check-bold:before{content:"\ebc7"}.nc-outline-check-circle-07:before{content:"\ebc8"}.nc-outline-check-circle-08:before{content:"\ebc9"}.nc-outline-check-curve:before{content:"\ebca"}.nc-outline-check-in:before{content:"\ebcb"}.nc-outline-check-out:before{content:"\ebcc"}.nc-outline-check-simple:before{content:"\ebcd"}.nc-outline-check-small:before{content:"\ebce"}.nc-outline-check-square-09:before{content:"\ebcf"}.nc-outline-check-square-11:before{content:"\ebd0"}.nc-outline-check:before{content:"\ebd1"}.nc-outline-cheese-24:before{content:"\ebd2"}.nc-outline-cheese-87:before{content:"\ebd3"}.nc-outline-cheeseburger:before{content:"\ebd4"}.nc-outline-chef-hat:before{content:"\ebd6"}.nc-outline-chef:before{content:"\ebd5"}.nc-outline-cheque-2:before{content:"\ebd7"}.nc-outline-cheque-3:before{content:"\ebd8"}.nc-outline-cheque:before{content:"\ebda"}.nc-outline-cherry:before{content:"\ebd9"}.nc-outline-chicken-2:before{content:"\ebdb"}.nc-outline-chicken:before{content:"\ebdc"}.nc-outline-child:before{content:"\ebdd"}.nc-outline-chili:before{content:"\ebde"}.nc-outline-chimney:before{content:"\ebdf"}.nc-outline-china:before{content:"\ebe0"}.nc-outline-chinese:before{content:"\ebe1"}.nc-outline-chips:before{content:"\ebe2"}.nc-outline-choco-cream:before{content:"\ebe3"}.nc-outline-chocolate-mousse:before{content:"\ebe4"}.nc-outline-chocolate:before{content:"\ebe5"}.nc-outline-church:before{content:"\ebe6"}.nc-outline-churros:before{content:"\ebe7"}.nc-outline-circle-02:before{content:"\ebe8"}.nc-outline-circle-03:before{content:"\ebe9"}.nc-outline-circle-04:before{content:"\ebea"}.nc-outline-circle-08:before{content:"\ebec"}.nc-outline-circle-09:before{content:"\ebeb"}.nc-outline-circle-10:before{content:"\ebed"}.nc-outline-circle-add:before{content:"\ebee"}.nc-outline-circle-bold-add:before{content:"\ebef"}.nc-outline-circle-bold-delete:before{content:"\ebf0"}.nc-outline-circle-bold-remove:before{content:"\ebf1"}.nc-outline-circle-delete:before{content:"\ebf2"}.nc-outline-circle-down-12:before{content:"\ebf3"}.nc-outline-circle-down-40:before{content:"\ebf4"}.nc-outline-circle-in:before{content:"\ebf5"}.nc-outline-circle-left-10:before{content:"\ebf6"}.nc-outline-circle-left-38:before{content:"\ebf7"}.nc-outline-circle-out:before{content:"\ebf8"}.nc-outline-circle-remove:before{content:"\ebf9"}.nc-outline-circle-right-09:before{content:"\ebfa"}.nc-outline-circle-right-37:before{content:"\ebfc"}.nc-outline-circle-simple-down:before{content:"\ebfb"}.nc-outline-circle-simple-left:before{content:"\ebfe"}.nc-outline-circle-simple-right:before{content:"\ebfd"}.nc-outline-circle-simple-up:before{content:"\ebff"}.nc-outline-circle-up-11:before{content:"\ec00"}.nc-outline-circle-up-39:before{content:"\ec02"}.nc-outline-circle:before{content:"\ec01"}.nc-outline-circuit-round:before{content:"\ec03"}.nc-outline-circuit:before{content:"\ec04"}.nc-outline-clone:before{content:"\ec05"}.nc-outline-cloud-25:before{content:"\ec06"}.nc-outline-cloud-26:before{content:"\ec08"}.nc-outline-cloud-download-93:before{content:"\ec07"}.nc-outline-cloud-download-95:before{content:"\ec09"}.nc-outline-cloud-drop:before{content:"\ec0a"}.nc-outline-cloud-fog-31:before{content:"\ec0c"}.nc-outline-cloud-fog-32:before{content:"\ec0b"}.nc-outline-cloud-hail:before{content:"\ec0d"}.nc-outline-cloud-light:before{content:"\ec0e"}.nc-outline-cloud-moon:before{content:"\ec10"}.nc-outline-cloud-rain:before{content:"\ec0f"}.nc-outline-cloud-rainbow:before{content:"\ec11"}.nc-outline-cloud-snow-34:before{content:"\ec12"}.nc-outline-cloud-snow-42:before{content:"\ec14"}.nc-outline-cloud-sun-17:before{content:"\ec13"}.nc-outline-cloud-sun-19:before{content:"\ec15"}.nc-outline-cloud-upload-94:before{content:"\ec16"}.nc-outline-cloud-upload-96:before{content:"\ec17"}.nc-outline-cloud:before{content:"\ec18"}.nc-outline-clover:before{content:"\ec19"}.nc-outline-coat-hanger:before{content:"\ec1a"}.nc-outline-coat:before{content:"\ec1c"}.nc-outline-cockade:before{content:"\ec1b"}.nc-outline-cocktail:before{content:"\ec1d"}.nc-outline-code-editor:before{content:"\ec1e"}.nc-outline-code:before{content:"\ec1f"}.nc-outline-coffe-long:before{content:"\ec20"}.nc-outline-coffee-2:before{content:"\ec21"}.nc-outline-coffee-bean:before{content:"\ec22"}.nc-outline-coffee-long:before{content:"\ec23"}.nc-outline-coffee:before{content:"\ec24"}.nc-outline-coffin:before{content:"\ec26"}.nc-outline-coins:before{content:"\ec25"}.nc-outline-collar:before{content:"\ec28"}.nc-outline-collection:before{content:"\ec27"}.nc-outline-color:before{content:"\ec2a"}.nc-outline-command:before{content:"\ec29"}.nc-outline-comment-add:before{content:"\ec2b"}.nc-outline-compare:before{content:"\ec2c"}.nc-outline-compass-04:before{content:"\ec2e"}.nc-outline-compass-05:before{content:"\ec2d"}.nc-outline-compass-06:before{content:"\ec2f"}.nc-outline-compass-2:before{content:"\ec30"}.nc-outline-compass-3:before{content:"\ec31"}.nc-outline-compass:before{content:"\ec32"}.nc-outline-components:before{content:"\ec33"}.nc-outline-computer-monitor:before{content:"\ec34"}.nc-outline-computer-old:before{content:"\ec35"}.nc-outline-computer-upload:before{content:"\ec36"}.nc-outline-computer:before{content:"\ec37"}.nc-outline-cone:before{content:"\ec38"}.nc-outline-connect:before{content:"\ec39"}.nc-outline-connection:before{content:"\ec3a"}.nc-outline-contact-86:before{content:"\ec3b"}.nc-outline-contact-87:before{content:"\ec3c"}.nc-outline-contact-88:before{content:"\ec3d"}.nc-outline-contacts-2:before{content:"\ec3e"}.nc-outline-contacts-44:before{content:"\ec3f"}.nc-outline-contacts-45:before{content:"\ec40"}.nc-outline-contacts:before{content:"\ec41"}.nc-outline-contrast-2:before{content:"\ec42"}.nc-outline-contrast:before{content:"\ec43"}.nc-outline-controller-2:before{content:"\ec44"}.nc-outline-controller-3:before{content:"\ec45"}.nc-outline-controller:before{content:"\ec46"}.nc-outline-conversion:before{content:"\ec47"}.nc-outline-cookies:before{content:"\ec48"}.nc-outline-copy-2:before{content:"\ec4a"}.nc-outline-copy:before{content:"\ec49"}.nc-outline-corn:before{content:"\ec4b"}.nc-outline-corner-down-round:before{content:"\ec4c"}.nc-outline-corner-down:before{content:"\ec4d"}.nc-outline-corner-left-down:before{content:"\ec4e"}.nc-outline-corner-left-round:before{content:"\ec50"}.nc-outline-corner-left:before{content:"\ec4f"}.nc-outline-corner-right-down:before{content:"\ec51"}.nc-outline-corner-right-round:before{content:"\ec52"}.nc-outline-corner-right:before{content:"\ec54"}.nc-outline-corner-up-left:before{content:"\ec53"}.nc-outline-corner-up-right:before{content:"\ec55"}.nc-outline-corner-up-round:before{content:"\ec56"}.nc-outline-corner-up:before{content:"\ec57"}.nc-outline-corset:before{content:"\ec58"}.nc-outline-countdown-34:before{content:"\ec59"}.nc-outline-countdown-35:before{content:"\ec5a"}.nc-outline-couple-gay:before{content:"\ec5b"}.nc-outline-couple-lesbian:before{content:"\ec5c"}.nc-outline-coupon:before{content:"\ec5d"}.nc-outline-course:before{content:"\ec5e"}.nc-outline-cow:before{content:"\ec5f"}.nc-outline-crab:before{content:"\ec60"}.nc-outline-cradle:before{content:"\ec62"}.nc-outline-credit-card-in:before{content:"\ec61"}.nc-outline-credit-card:before{content:"\ec64"}.nc-outline-credit-locked:before{content:"\ec63"}.nc-outline-crepe:before{content:"\ec66"}.nc-outline-cricket:before{content:"\ec65"}.nc-outline-croissant:before{content:"\ec67"}.nc-outline-crop:before{content:"\ec68"}.nc-outline-cross-down:before{content:"\ec69"}.nc-outline-cross-horizontal:before{content:"\ec6a"}.nc-outline-cross-left:before{content:"\ec6b"}.nc-outline-cross-right:before{content:"\ec6c"}.nc-outline-cross-up:before{content:"\ec6e"}.nc-outline-cross-vertical:before{content:"\ec6d"}.nc-outline-cross:before{content:"\ec6f"}.nc-outline-crosshair:before{content:"\ec70"}.nc-outline-crown:before{content:"\ec71"}.nc-outline-crumpet:before{content:"\ec72"}.nc-outline-cry-15:before{content:"\ec73"}.nc-outline-cry-57:before{content:"\ec74"}.nc-outline-css3:before{content:"\ec75"}.nc-outline-cupcake:before{content:"\ec76"}.nc-outline-currency-dollar:before{content:"\ec77"}.nc-outline-currency-euro:before{content:"\ec78"}.nc-outline-currency-exchange:before{content:"\ec79"}.nc-outline-currency-pound:before{content:"\ec7a"}.nc-outline-currency-yen:before{content:"\ec7b"}.nc-outline-cursor-48:before{content:"\ec7c"}.nc-outline-cursor-49:before{content:"\ec7e"}.nc-outline-cursor-add:before{content:"\ec7d"}.nc-outline-cursor-grab:before{content:"\ec7f"}.nc-outline-cursor-load:before{content:"\ec80"}.nc-outline-cursor-menu:before{content:"\ec81"}.nc-outline-cursor-not-allowed:before{content:"\ec82"}.nc-outline-cursor-pointer:before{content:"\ec83"}.nc-outline-cursor-text:before{content:"\ec84"}.nc-outline-curtain:before{content:"\ec85"}.nc-outline-curve-circuit:before{content:"\ec86"}.nc-outline-curve-directions:before{content:"\ec88"}.nc-outline-curve-split:before{content:"\ec87"}.nc-outline-curved-next:before{content:"\ec89"}.nc-outline-curved-previous:before{content:"\ec8a"}.nc-outline-customer-support:before{content:"\ec8b"}.nc-outline-cut:before{content:"\ec8c"}.nc-outline-cute:before{content:"\ec8d"}.nc-outline-cutlery-75:before{content:"\ec8e"}.nc-outline-cutlery-76:before{content:"\ec8f"}.nc-outline-cutlery-77:before{content:"\ec90"}.nc-outline-cutlery:before{content:"\ec91"}.nc-outline-cyclist:before{content:"\ec92"}.nc-outline-dart:before{content:"\ec93"}.nc-outline-dashboard-29:before{content:"\ec94"}.nc-outline-dashboard-30:before{content:"\ec95"}.nc-outline-dashboard-half:before{content:"\ec96"}.nc-outline-dashboard-level:before{content:"\ec97"}.nc-outline-database:before{content:"\ec98"}.nc-outline-dead-hand:before{content:"\ec9a"}.nc-outline-decoration:before{content:"\ec99"}.nc-outline-deer:before{content:"\ec9c"}.nc-outline-delete-28:before{content:"\ec9b"}.nc-outline-delete-30:before{content:"\ec9d"}.nc-outline-delete-49:before{content:"\ec9e"}.nc-outline-delete-50:before{content:"\ec9f"}.nc-outline-delivery-2:before{content:"\eca0"}.nc-outline-delivery-3:before{content:"\eca1"}.nc-outline-delivery-fast:before{content:"\eca2"}.nc-outline-delivery-time:before{content:"\eca3"}.nc-outline-delivery-track:before{content:"\eca4"}.nc-outline-delivery:before{content:"\eca5"}.nc-outline-design-system:before{content:"\eca6"}.nc-outline-design:before{content:"\eca7"}.nc-outline-desk-drawer:before{content:"\eca8"}.nc-outline-desk:before{content:"\eca9"}.nc-outline-desktop-screen:before{content:"\ecaa"}.nc-outline-desktop:before{content:"\ecab"}.nc-outline-detox:before{content:"\ecac"}.nc-outline-dev:before{content:"\ecad"}.nc-outline-device-connection:before{content:"\ecae"}.nc-outline-devil:before{content:"\ecaf"}.nc-outline-diag-bottom-left:before{content:"\ecb0"}.nc-outline-diag-bottom-right:before{content:"\ecb1"}.nc-outline-diag-top-left:before{content:"\ecb2"}.nc-outline-diag-top-right:before{content:"\ecb3"}.nc-outline-diamond:before{content:"\ecb4"}.nc-outline-dice:before{content:"\ecb6"}.nc-outline-diet-plan:before{content:"\ecb5"}.nc-outline-diet:before{content:"\ecb7"}.nc-outline-direction-53:before{content:"\ecb8"}.nc-outline-direction-56:before{content:"\ecb9"}.nc-outline-direction:before{content:"\ecba"}.nc-outline-directions:before{content:"\ecbb"}.nc-outline-disabled:before{content:"\ecbc"}.nc-outline-discount-2:before{content:"\ecbd"}.nc-outline-discount:before{content:"\ecbe"}.nc-outline-disgusted:before{content:"\ecc0"}.nc-outline-dish:before{content:"\ecbf"}.nc-outline-dishwasher:before{content:"\ecc1"}.nc-outline-disk-2:before{content:"\ecc2"}.nc-outline-disk-reader:before{content:"\ecc3"}.nc-outline-disk:before{content:"\ecc4"}.nc-outline-disperse:before{content:"\ecc6"}.nc-outline-distribute-horizontal:before{content:"\ecc5"}.nc-outline-distribute-vertical:before{content:"\ecc7"}.nc-outline-divider:before{content:"\ecc8"}.nc-outline-dna-27:before{content:"\ecc9"}.nc-outline-dna-38:before{content:"\ecca"}.nc-outline-dock-bottom:before{content:"\eccb"}.nc-outline-dock-left:before{content:"\eccc"}.nc-outline-dock-right:before{content:"\eccd"}.nc-outline-dock-top:before{content:"\ecce"}.nc-outline-dock:before{content:"\eccf"}.nc-outline-doctor:before{content:"\ecd0"}.nc-outline-dog-house:before{content:"\ecd1"}.nc-outline-dog:before{content:"\ecd2"}.nc-outline-donut:before{content:"\ecd3"}.nc-outline-door:before{content:"\ecd4"}.nc-outline-dots-05:before{content:"\ecd5"}.nc-outline-dots-06:before{content:"\ecd6"}.nc-outline-dots-07:before{content:"\ecd7"}.nc-outline-dots-download:before{content:"\ecd8"}.nc-outline-dots-upload:before{content:"\ecda"}.nc-outline-dots:before{content:"\ecd9"}.nc-outline-double-left:before{content:"\ecdb"}.nc-outline-double-right:before{content:"\ecdc"}.nc-outline-double-tap:before{content:"\ecdd"}.nc-outline-download-2:before{content:"\ecde"}.nc-outline-download-3:before{content:"\ecdf"}.nc-outline-download:before{content:"\ece0"}.nc-outline-drag-21:before{content:"\ece1"}.nc-outline-drag-31:before{content:"\ece2"}.nc-outline-drag-down:before{content:"\ece3"}.nc-outline-drag-left:before{content:"\ece4"}.nc-outline-drag-right:before{content:"\ece5"}.nc-outline-drag-up:before{content:"\ece6"}.nc-outline-drag:before{content:"\ece7"}.nc-outline-drawer-2:before{content:"\ece8"}.nc-outline-drawer:before{content:"\ece9"}.nc-outline-dress-man:before{content:"\ecea"}.nc-outline-dress-woman:before{content:"\eceb"}.nc-outline-drink-2:before{content:"\ecec"}.nc-outline-drink-list:before{content:"\eced"}.nc-outline-drink:before{content:"\ecee"}.nc-outline-drop-15:before{content:"\ecef"}.nc-outline-drop:before{content:"\ecf0"}.nc-outline-drops:before{content:"\ecf1"}.nc-outline-dumbbells:before{content:"\ecf2"}.nc-outline-eclipse:before{content:"\ecf3"}.nc-outline-edit-2:before{content:"\ecf4"}.nc-outline-edit-71:before{content:"\ecf5"}.nc-outline-edit-72:before{content:"\ecf6"}.nc-outline-edit-73:before{content:"\ecf7"}.nc-outline-edit-74:before{content:"\ecf8"}.nc-outline-edit-75:before{content:"\ecf9"}.nc-outline-edit-76:before{content:"\ecfa"}.nc-outline-edit-77:before{content:"\ecfb"}.nc-outline-edit-78:before{content:"\ecfc"}.nc-outline-edit-color:before{content:"\ecfd"}.nc-outline-edit-contrast-42:before{content:"\ecfe"}.nc-outline-edit-contrast-43:before{content:"\ecff"}.nc-outline-edit-saturation:before{content:"\ed00"}.nc-outline-edit:before{content:"\ed01"}.nc-outline-egg-38:before{content:"\ed02"}.nc-outline-egg-39:before{content:"\ed03"}.nc-outline-egg:before{content:"\ed04"}.nc-outline-eject:before{content:"\ed05"}.nc-outline-email-83:before{content:"\ed06"}.nc-outline-email-84:before{content:"\ed07"}.nc-outline-email-85:before{content:"\ed08"}.nc-outline-energy-drink-2:before{content:"\ed0a"}.nc-outline-energy-drink:before{content:"\ed09"}.nc-outline-energy-supplement:before{content:"\ed0b"}.nc-outline-energy:before{content:"\ed0c"}.nc-outline-engine-start:before{content:"\ed0d"}.nc-outline-engine:before{content:"\ed0e"}.nc-outline-enlarge-45:before{content:"\ed0f"}.nc-outline-enlarge-46:before{content:"\ed10"}.nc-outline-enlarge-57:before{content:"\ed12"}.nc-outline-enlarge-58:before{content:"\ed11"}.nc-outline-enlarge-59:before{content:"\ed13"}.nc-outline-enlarge-circle:before{content:"\ed14"}.nc-outline-enlarge-diagonal-43:before{content:"\ed15"}.nc-outline-enlarge-diagonal-44:before{content:"\ed16"}.nc-outline-enlarge-horizontal:before{content:"\ed17"}.nc-outline-enlarge-vertical:before{content:"\ed18"}.nc-outline-eraser-32:before{content:"\ed19"}.nc-outline-eraser-33:before{content:"\ed1a"}.nc-outline-eraser-46:before{content:"\ed1b"}.nc-outline-event-confirm:before{content:"\ed1c"}.nc-outline-event-create:before{content:"\ed1d"}.nc-outline-exchange:before{content:"\ed1e"}.nc-outline-exclamation:before{content:"\ed1f"}.nc-outline-explore-2:before{content:"\ed20"}.nc-outline-explore-user:before{content:"\ed21"}.nc-outline-explore:before{content:"\ed22"}.nc-outline-export:before{content:"\ed23"}.nc-outline-eye-17:before{content:"\ed24"}.nc-outline-eye-19:before{content:"\ed25"}.nc-outline-eye-ban-18:before{content:"\ed26"}.nc-outline-eye-ban-20:before{content:"\ed27"}.nc-outline-factory:before{content:"\ed28"}.nc-outline-fahrenheit:before{content:"\ed2a"}.nc-outline-family:before{content:"\ed29"}.nc-outline-fat-add:before{content:"\ed2b"}.nc-outline-fat-delete:before{content:"\ed2c"}.nc-outline-fat-remove:before{content:"\ed2e"}.nc-outline-fav-remove:before{content:"\ed2d"}.nc-outline-favourite-28:before{content:"\ed2f"}.nc-outline-favourite-31:before{content:"\ed30"}.nc-outline-favourite-add-29:before{content:"\ed31"}.nc-outline-favourite-add-32:before{content:"\ed32"}.nc-outline-favourite-remove-30:before{content:"\ed33"}.nc-outline-favourite-remove-33:before{content:"\ed34"}.nc-outline-fencing:before{content:"\ed36"}.nc-outline-file-add:before{content:"\ed35"}.nc-outline-file-delete:before{content:"\ed37"}.nc-outline-file-download-87:before{content:"\ed38"}.nc-outline-file-download-89:before{content:"\ed39"}.nc-outline-file-download-94:before{content:"\ed3a"}.nc-outline-file-upload-86:before{content:"\ed3b"}.nc-outline-file-upload-88:before{content:"\ed3c"}.nc-outline-file-upload-93:before{content:"\ed3d"}.nc-outline-filter-check:before{content:"\ed3e"}.nc-outline-filter-organization:before{content:"\ed3f"}.nc-outline-filter-remove:before{content:"\ed40"}.nc-outline-filter:before{content:"\ed41"}.nc-outline-fire:before{content:"\ed42"}.nc-outline-firewall:before{content:"\ed43"}.nc-outline-fish:before{content:"\ed44"}.nc-outline-fishbone:before{content:"\ed46"}.nc-outline-fishing:before{content:"\ed45"}.nc-outline-fist:before{content:"\ed47"}.nc-outline-fit-horizontal:before{content:"\ed48"}.nc-outline-fit-vertical:before{content:"\ed49"}.nc-outline-flag-complex:before{content:"\ed4a"}.nc-outline-flag-diagonal-33:before{content:"\ed4b"}.nc-outline-flag-diagonal-34:before{content:"\ed4c"}.nc-outline-flag-finish:before{content:"\ed4d"}.nc-outline-flag-points-31:before{content:"\ed4e"}.nc-outline-flag-points-32:before{content:"\ed50"}.nc-outline-flag-simple:before{content:"\ed4f"}.nc-outline-flag-triangle:before{content:"\ed51"}.nc-outline-flag:before{content:"\ed52"}.nc-outline-flame:before{content:"\ed53"}.nc-outline-flash-21:before{content:"\ed54"}.nc-outline-flash-24:before{content:"\ed55"}.nc-outline-flash-29:before{content:"\ed56"}.nc-outline-flash-auto-22:before{content:"\ed58"}.nc-outline-flash-auto-25:before{content:"\ed57"}.nc-outline-flash-off-23:before{content:"\ed59"}.nc-outline-flash-off-26:before{content:"\ed5a"}.nc-outline-flask-2:before{content:"\ed5b"}.nc-outline-flask:before{content:"\ed5c"}.nc-outline-flick-down:before{content:"\ed5d"}.nc-outline-flick-left:before{content:"\ed5e"}.nc-outline-flick-right:before{content:"\ed5f"}.nc-outline-flick-up:before{content:"\ed60"}.nc-outline-flip-horizontal:before{content:"\ed61"}.nc-outline-flip-vertical:before{content:"\ed62"}.nc-outline-flip:before{content:"\ed63"}.nc-outline-flower-05:before{content:"\ed64"}.nc-outline-flower-06:before{content:"\ed65"}.nc-outline-flower-07:before{content:"\ed66"}.nc-outline-focus-32:before{content:"\ed67"}.nc-outline-focus-38:before{content:"\ed68"}.nc-outline-focus-40:before{content:"\ed69"}.nc-outline-focus-circle:before{content:"\ed6a"}.nc-outline-focus:before{content:"\ed6c"}.nc-outline-fog:before{content:"\ed6b"}.nc-outline-folder-13:before{content:"\ed6d"}.nc-outline-folder-14:before{content:"\ed6e"}.nc-outline-folder-15:before{content:"\ed70"}.nc-outline-folder-16:before{content:"\ed6f"}.nc-outline-folder-17:before{content:"\ed71"}.nc-outline-folder-18:before{content:"\ed72"}.nc-outline-folder-19:before{content:"\ed73"}.nc-outline-folder-add:before{content:"\ed74"}.nc-outline-folder-audio:before{content:"\ed75"}.nc-outline-folder-bookmark:before{content:"\ed76"}.nc-outline-folder-chart-bar:before{content:"\ed78"}.nc-outline-folder-chart-pie:before{content:"\ed77"}.nc-outline-folder-check:before{content:"\ed79"}.nc-outline-folder-cloud:before{content:"\ed7a"}.nc-outline-folder-dev:before{content:"\ed7c"}.nc-outline-folder-download:before{content:"\ed7b"}.nc-outline-folder-edit:before{content:"\ed7d"}.nc-outline-folder-exclamation:before{content:"\ed7e"}.nc-outline-folder-gallery:before{content:"\ed7f"}.nc-outline-folder-heart:before{content:"\ed80"}.nc-outline-folder-image:before{content:"\ed81"}.nc-outline-folder-info:before{content:"\ed82"}.nc-outline-folder-link:before{content:"\ed83"}.nc-outline-folder-locked:before{content:"\ed84"}.nc-outline-folder-money:before{content:"\ed85"}.nc-outline-folder-music:before{content:"\ed86"}.nc-outline-folder-no-access:before{content:"\ed87"}.nc-outline-folder-play:before{content:"\ed88"}.nc-outline-folder-question:before{content:"\ed89"}.nc-outline-folder-refresh:before{content:"\ed8a"}.nc-outline-folder-remove:before{content:"\ed8b"}.nc-outline-folder-search:before{content:"\ed8c"}.nc-outline-folder-settings-81:before{content:"\ed8d"}.nc-outline-folder-settings-97:before{content:"\ed8e"}.nc-outline-folder-shared:before{content:"\ed8f"}.nc-outline-folder-star:before{content:"\ed90"}.nc-outline-folder-time:before{content:"\ed91"}.nc-outline-folder-upload:before{content:"\ed92"}.nc-outline-folder-user:before{content:"\ed93"}.nc-outline-folder-vector:before{content:"\ed94"}.nc-outline-food-dog:before{content:"\ed95"}.nc-outline-food-scale:before{content:"\ed96"}.nc-outline-food:before{content:"\ed97"}.nc-outline-football-headguard:before{content:"\ed98"}.nc-outline-forecast:before{content:"\ed99"}.nc-outline-forest:before{content:"\ed9a"}.nc-outline-fork-round:before{content:"\ed9c"}.nc-outline-fork:before{content:"\ed9b"}.nc-outline-form:before{content:"\ed9e"}.nc-outline-format-left:before{content:"\ed9d"}.nc-outline-format-right:before{content:"\ed9f"}.nc-outline-forward:before{content:"\eda0"}.nc-outline-frame-12:before{content:"\eda1"}.nc-outline-frame-41:before{content:"\eda2"}.nc-outline-frame:before{content:"\eda3"}.nc-outline-frankenstein:before{content:"\eda4"}.nc-outline-fridge:before{content:"\eda6"}.nc-outline-fuel-2:before{content:"\eda5"}.nc-outline-fuel-electric:before{content:"\eda7"}.nc-outline-fuel:before{content:"\eda8"}.nc-outline-full-screen:before{content:"\eda9"}.nc-outline-fullscreen-70:before{content:"\edaa"}.nc-outline-fullscreen-71:before{content:"\edab"}.nc-outline-fullscreen-76:before{content:"\edac"}.nc-outline-fullscreen-77:before{content:"\edae"}.nc-outline-fullscreen-double-74:before{content:"\edad"}.nc-outline-fullscreen-double-75:before{content:"\edaf"}.nc-outline-fullscreen-split-72:before{content:"\edb0"}.nc-outline-fullscreen-split-73:before{content:"\edb1"}.nc-outline-fullsize:before{content:"\edb2"}.nc-outline-funnel-39:before{content:"\edb3"}.nc-outline-funnel-40:before{content:"\edb4"}.nc-outline-funnel-41:before{content:"\edb5"}.nc-outline-gallery:before{content:"\edb6"}.nc-outline-gantt:before{content:"\edb7"}.nc-outline-garlic:before{content:"\edb8"}.nc-outline-ghost-2:before{content:"\edb9"}.nc-outline-ghost:before{content:"\edba"}.nc-outline-gift-2:before{content:"\edbb"}.nc-outline-gift-exchange:before{content:"\edbc"}.nc-outline-gift:before{content:"\edbd"}.nc-outline-git-commit:before{content:"\edbe"}.nc-outline-glass-water:before{content:"\edbf"}.nc-outline-glass:before{content:"\edc0"}.nc-outline-glasses-2:before{content:"\edc2"}.nc-outline-glasses:before{content:"\edc1"}.nc-outline-globe-2:before{content:"\edc3"}.nc-outline-globe:before{content:"\edc4"}.nc-outline-glove:before{content:"\edc5"}.nc-outline-gloves:before{content:"\edc6"}.nc-outline-goal-64:before{content:"\edc7"}.nc-outline-goal-65:before{content:"\edc8"}.nc-outline-gold:before{content:"\edc9"}.nc-outline-golf:before{content:"\edca"}.nc-outline-gps:before{content:"\edcb"}.nc-outline-grab:before{content:"\edcc"}.nc-outline-gradient:before{content:"\edcd"}.nc-outline-grammar-check:before{content:"\edce"}.nc-outline-grape:before{content:"\edcf"}.nc-outline-grave:before{content:"\edd0"}.nc-outline-grid-45:before{content:"\edd1"}.nc-outline-grid-46:before{content:"\edd2"}.nc-outline-grid-48:before{content:"\edd3"}.nc-outline-grid-49:before{content:"\edd4"}.nc-outline-grid-50:before{content:"\edd5"}.nc-outline-grid-square:before{content:"\edd6"}.nc-outline-grid-system:before{content:"\edd8"}.nc-outline-grid:before{content:"\edd7"}.nc-outline-group:before{content:"\edd9"}.nc-outline-guitar:before{content:"\edda"}.nc-outline-hammer:before{content:"\eddb"}.nc-outline-hand-card:before{content:"\eddc"}.nc-outline-handout:before{content:"\edde"}.nc-outline-handshake:before{content:"\eddd"}.nc-outline-hanger-clothes:before{content:"\eddf"}.nc-outline-hanger:before{content:"\ede0"}.nc-outline-hannibal:before{content:"\ede2"}.nc-outline-happy-sun:before{content:"\ede1"}.nc-outline-hat-2:before{content:"\ede3"}.nc-outline-hat-3:before{content:"\ede4"}.nc-outline-hat-top:before{content:"\ede5"}.nc-outline-hat:before{content:"\ede6"}.nc-outline-hazelnut:before{content:"\ede7"}.nc-outline-hdmi:before{content:"\ede8"}.nc-outline-headphone:before{content:"\ede9"}.nc-outline-headphones-2:before{content:"\edea"}.nc-outline-headphones-mic:before{content:"\edec"}.nc-outline-headphones:before{content:"\edeb"}.nc-outline-headset:before{content:"\eded"}.nc-outline-heart-2:before{content:"\edee"}.nc-outline-heart-add:before{content:"\edef"}.nc-outline-heart-remove:before{content:"\edf0"}.nc-outline-heart:before{content:"\edf2"}.nc-outline-heartbeat:before{content:"\edf1"}.nc-outline-heater:before{content:"\edf3"}.nc-outline-height:before{content:"\edf4"}.nc-outline-helicopter:before{content:"\edf5"}.nc-outline-helmet-2:before{content:"\edf6"}.nc-outline-helmet:before{content:"\edf7"}.nc-outline-hierarchy-53:before{content:"\edf8"}.nc-outline-hierarchy-54:before{content:"\edfa"}.nc-outline-hierarchy-55:before{content:"\edf9"}.nc-outline-hierarchy-56:before{content:"\edfb"}.nc-outline-hit-down:before{content:"\edfc"}.nc-outline-hit-left:before{content:"\edfd"}.nc-outline-hit-right:before{content:"\edfe"}.nc-outline-hit-up:before{content:"\edff"}.nc-outline-hob:before{content:"\ee00"}.nc-outline-hockey:before{content:"\ee01"}.nc-outline-hold:before{content:"\ee02"}.nc-outline-home-2:before{content:"\ee03"}.nc-outline-home-51:before{content:"\ee04"}.nc-outline-home-52:before{content:"\ee05"}.nc-outline-home-minimal:before{content:"\ee06"}.nc-outline-home-search:before{content:"\ee07"}.nc-outline-home-simple:before{content:"\ee08"}.nc-outline-home:before{content:"\ee09"}.nc-outline-honey:before{content:"\ee0a"}.nc-outline-hoodie:before{content:"\ee0b"}.nc-outline-hospital-32:before{content:"\ee0c"}.nc-outline-hospital-33:before{content:"\ee0d"}.nc-outline-hospital-34:before{content:"\ee0e"}.nc-outline-hot-dog:before{content:"\ee0f"}.nc-outline-hotel-bell:before{content:"\ee10"}.nc-outline-hotel-symbol:before{content:"\ee11"}.nc-outline-hotel:before{content:"\ee12"}.nc-outline-hourglass:before{content:"\ee13"}.nc-outline-html5:before{content:"\ee14"}.nc-outline-humidity-26:before{content:"\ee15"}.nc-outline-humidity-52:before{content:"\ee16"}.nc-outline-hurricane-44:before{content:"\ee17"}.nc-outline-hurricane-45:before{content:"\ee18"}.nc-outline-hut:before{content:"\ee19"}.nc-outline-hybrid:before{content:"\ee1a"}.nc-outline-ice-cream-22:before{content:"\ee1b"}.nc-outline-ice-cream-72:before{content:"\ee1c"}.nc-outline-ice-cream:before{content:"\ee1d"}.nc-outline-igloo:before{content:"\ee1e"}.nc-outline-image-01:before{content:"\ee1f"}.nc-outline-image-02:before{content:"\ee20"}.nc-outline-image-05:before{content:"\ee21"}.nc-outline-image-2:before{content:"\ee22"}.nc-outline-image-3:before{content:"\ee23"}.nc-outline-image-add:before{content:"\ee24"}.nc-outline-image-delete:before{content:"\ee25"}.nc-outline-image-location:before{content:"\ee26"}.nc-outline-image:before{content:"\ee27"}.nc-outline-infinite:before{content:"\ee28"}.nc-outline-info:before{content:"\ee29"}.nc-outline-input-12:before{content:"\ee2a"}.nc-outline-input-21:before{content:"\ee2c"}.nc-outline-intestine:before{content:"\ee2b"}.nc-outline-invert:before{content:"\ee2d"}.nc-outline-iron-2:before{content:"\ee2e"}.nc-outline-iron-dont:before{content:"\ee2f"}.nc-outline-iron:before{content:"\ee30"}.nc-outline-istanbul:before{content:"\ee31"}.nc-outline-italic:before{content:"\ee32"}.nc-outline-jam:before{content:"\ee34"}.nc-outline-jeans-41:before{content:"\ee33"}.nc-outline-jeans-43:before{content:"\ee35"}.nc-outline-jeans-pocket:before{content:"\ee36"}.nc-outline-jelly:before{content:"\ee37"}.nc-outline-jellyfish:before{content:"\ee38"}.nc-outline-journey-04:before{content:"\ee39"}.nc-outline-journey-05:before{content:"\ee3a"}.nc-outline-journey-06:before{content:"\ee3b"}.nc-outline-journey-07:before{content:"\ee3c"}.nc-outline-journey-08:before{content:"\ee3d"}.nc-outline-juice:before{content:"\ee3e"}.nc-outline-kettle:before{content:"\ee3f"}.nc-outline-kettlebell:before{content:"\ee40"}.nc-outline-key-25:before{content:"\ee41"}.nc-outline-key-26:before{content:"\ee42"}.nc-outline-keyboard-hide:before{content:"\ee43"}.nc-outline-keyboard-mouse:before{content:"\ee44"}.nc-outline-keyboard-wifi:before{content:"\ee45"}.nc-outline-keyboard-wireless:before{content:"\ee46"}.nc-outline-keyboard:before{content:"\ee47"}.nc-outline-kid-2:before{content:"\ee48"}.nc-outline-kid:before{content:"\ee49"}.nc-outline-kiss:before{content:"\ee4a"}.nc-outline-kitchen-fan:before{content:"\ee4b"}.nc-outline-kitchen:before{content:"\ee4c"}.nc-outline-kiwi:before{content:"\ee4d"}.nc-outline-knife:before{content:"\ee4e"}.nc-outline-knob:before{content:"\ee4f"}.nc-outline-l-add:before{content:"\ee50"}.nc-outline-l-check:before{content:"\ee51"}.nc-outline-l-circle:before{content:"\ee52"}.nc-outline-l-circles:before{content:"\ee53"}.nc-outline-l-location:before{content:"\ee54"}.nc-outline-l-remove:before{content:"\ee56"}.nc-outline-l-search:before{content:"\ee55"}.nc-outline-l-security:before{content:"\ee57"}.nc-outline-l-settings:before{content:"\ee58"}.nc-outline-l-sync:before{content:"\ee59"}.nc-outline-l-system-update:before{content:"\ee5a"}.nc-outline-lab:before{content:"\ee5b"}.nc-outline-lamp-2:before{content:"\ee5c"}.nc-outline-lamp-3:before{content:"\ee5d"}.nc-outline-lamp-floor:before{content:"\ee5e"}.nc-outline-lamp:before{content:"\ee60"}.nc-outline-language:before{content:"\ee5f"}.nc-outline-laptop-1:before{content:"\ee62"}.nc-outline-laptop-2:before{content:"\ee61"}.nc-outline-laptop-71:before{content:"\ee64"}.nc-outline-laptop-72:before{content:"\ee63"}.nc-outline-laptop:before{content:"\ee65"}.nc-outline-laugh-17:before{content:"\ee66"}.nc-outline-laugh-35:before{content:"\ee68"}.nc-outline-launch-11:before{content:"\ee67"}.nc-outline-launch-47:before{content:"\ee69"}.nc-outline-law:before{content:"\ee6a"}.nc-outline-layers-2:before{content:"\ee6b"}.nc-outline-layers-3:before{content:"\ee6c"}.nc-outline-layers:before{content:"\ee6d"}.nc-outline-layout-11:before{content:"\ee6e"}.nc-outline-layout-25:before{content:"\ee6f"}.nc-outline-leaf-36:before{content:"\ee70"}.nc-outline-leaf-38:before{content:"\ee71"}.nc-outline-leaf-80:before{content:"\ee72"}.nc-outline-leaf-81:before{content:"\ee73"}.nc-outline-leaf-edit:before{content:"\ee74"}.nc-outline-lemon-slice:before{content:"\ee76"}.nc-outline-lemon:before{content:"\ee75"}.nc-outline-lens-31:before{content:"\ee77"}.nc-outline-lens-56:before{content:"\ee78"}.nc-outline-library:before{content:"\ee79"}.nc-outline-light-2:before{content:"\ee7a"}.nc-outline-light-3:before{content:"\ee7b"}.nc-outline-light-traffic:before{content:"\ee7c"}.nc-outline-light:before{content:"\ee7e"}.nc-outline-lighter:before{content:"\ee7d"}.nc-outline-lighthouse:before{content:"\ee7f"}.nc-outline-like-2:before{content:"\ee80"}.nc-outline-like-no:before{content:"\ee81"}.nc-outline-like:before{content:"\ee82"}.nc-outline-line-height:before{content:"\ee83"}.nc-outline-lines:before{content:"\ee84"}.nc-outline-link-2:before{content:"\ee85"}.nc-outline-link-66:before{content:"\ee86"}.nc-outline-link-67:before{content:"\ee87"}.nc-outline-link-68:before{content:"\ee88"}.nc-outline-link-69:before{content:"\ee89"}.nc-outline-link-71:before{content:"\ee8a"}.nc-outline-link-72:before{content:"\ee8b"}.nc-outline-link-broken-70:before{content:"\ee8c"}.nc-outline-link-broken-73:before{content:"\ee8d"}.nc-outline-link:before{content:"\ee8e"}.nc-outline-list-bullet:before{content:"\ee8f"}.nc-outline-list-numbers:before{content:"\ee90"}.nc-outline-list:before{content:"\ee91"}.nc-outline-lobster:before{content:"\ee92"}.nc-outline-lock-circle-open:before{content:"\ee93"}.nc-outline-lock-circle:before{content:"\ee94"}.nc-outline-lock-landscape:before{content:"\ee95"}.nc-outline-lock-open:before{content:"\ee96"}.nc-outline-lock-portrait:before{content:"\ee97"}.nc-outline-lock:before{content:"\ee98"}.nc-outline-locked:before{content:"\ee99"}.nc-outline-log-in:before{content:"\ee9a"}.nc-outline-log-out-2:before{content:"\ee9b"}.nc-outline-log-out:before{content:"\ee9c"}.nc-outline-logout:before{content:"\ee9d"}.nc-outline-lollipop:before{content:"\ee9e"}.nc-outline-london:before{content:"\ee9f"}.nc-outline-long-sleeve:before{content:"\eea0"}.nc-outline-loop-30:before{content:"\eea1"}.nc-outline-loop-34:before{content:"\eea2"}.nc-outline-loop-82:before{content:"\eea3"}.nc-outline-loop-83:before{content:"\eea4"}.nc-outline-loop:before{content:"\eea5"}.nc-outline-luggage:before{content:"\eea6"}.nc-outline-lungs:before{content:"\eea8"}.nc-outline-m-add:before{content:"\eea7"}.nc-outline-m-check:before{content:"\eea9"}.nc-outline-m-delete:before{content:"\eeaa"}.nc-outline-m-edit:before{content:"\eeab"}.nc-outline-m-heart:before{content:"\eeac"}.nc-outline-m-location:before{content:"\eeae"}.nc-outline-m-remove:before{content:"\eead"}.nc-outline-m-search:before{content:"\eeaf"}.nc-outline-m-security:before{content:"\eeb0"}.nc-outline-m-settings:before{content:"\eeb2"}.nc-outline-m-share:before{content:"\eeb1"}.nc-outline-m-star:before{content:"\eeb3"}.nc-outline-m-sync:before{content:"\eeb4"}.nc-outline-m-time:before{content:"\eeb6"}.nc-outline-m-update:before{content:"\eeb5"}.nc-outline-macro:before{content:"\eeb7"}.nc-outline-mad-12:before{content:"\eeb8"}.nc-outline-mad-58:before{content:"\eeb9"}.nc-outline-magnet:before{content:"\eeba"}.nc-outline-makeup:before{content:"\eebb"}.nc-outline-malicious:before{content:"\eebc"}.nc-outline-man-20:before{content:"\eebd"}.nc-outline-man-23:before{content:"\eebe"}.nc-outline-man-down:before{content:"\eebf"}.nc-outline-man-glasses:before{content:"\eec0"}.nc-outline-man-up:before{content:"\eec1"}.nc-outline-man:before{content:"\eec2"}.nc-outline-manga-62:before{content:"\eec3"}.nc-outline-manga-63:before{content:"\eec4"}.nc-outline-map-big:before{content:"\eec5"}.nc-outline-map-compass:before{content:"\eec6"}.nc-outline-map-gps:before{content:"\eec7"}.nc-outline-map-marker:before{content:"\eec8"}.nc-outline-map-pin:before{content:"\eec9"}.nc-outline-map:before{content:"\eeca"}.nc-outline-margin-left:before{content:"\eecb"}.nc-outline-margin-right:before{content:"\eecc"}.nc-outline-marker-2:before{content:"\eecd"}.nc-outline-marker-3:before{content:"\eece"}.nc-outline-marker:before{content:"\eecf"}.nc-outline-market-music:before{content:"\eed0"}.nc-outline-market-play:before{content:"\eed1"}.nc-outline-mask-oval:before{content:"\eed2"}.nc-outline-mask-rect:before{content:"\eed3"}.nc-outline-matches:before{content:"\eed4"}.nc-outline-math:before{content:"\eed5"}.nc-outline-measure-02:before{content:"\eed6"}.nc-outline-measure-17:before{content:"\eed7"}.nc-outline-measure-big:before{content:"\eed8"}.nc-outline-measuring-cup:before{content:"\eed9"}.nc-outline-meat-spit:before{content:"\eeda"}.nc-outline-meeting:before{content:"\eedb"}.nc-outline-menu-34:before{content:"\eedc"}.nc-outline-menu-35:before{content:"\eedd"}.nc-outline-menu-bold:before{content:"\eede"}.nc-outline-menu-dots:before{content:"\eedf"}.nc-outline-menu-left:before{content:"\eee0"}.nc-outline-menu-right:before{content:"\eee1"}.nc-outline-menu-square:before{content:"\eee2"}.nc-outline-menu:before{content:"\eee3"}.nc-outline-merge-2:before{content:"\eee4"}.nc-outline-merge-round:before{content:"\eee5"}.nc-outline-merge:before{content:"\eee6"}.nc-outline-message:before{content:"\eee7"}.nc-outline-metrics:before{content:"\eee8"}.nc-outline-mic-2:before{content:"\eee9"}.nc-outline-mic:before{content:"\eeea"}.nc-outline-mickey-mouse:before{content:"\eeeb"}.nc-outline-microscope:before{content:"\eeec"}.nc-outline-microsoft:before{content:"\eeed"}.nc-outline-microwave:before{content:"\eeee"}.nc-outline-milk:before{content:"\eeef"}.nc-outline-minimal-down:before{content:"\eef0"}.nc-outline-minimal-left:before{content:"\eef1"}.nc-outline-minimal-right:before{content:"\eef2"}.nc-outline-minimal-up:before{content:"\eef4"}.nc-outline-mirror-2:before{content:"\eef3"}.nc-outline-mirror:before{content:"\eef5"}.nc-outline-mistletoe:before{content:"\eef6"}.nc-outline-mixer:before{content:"\eef7"}.nc-outline-mobile-button:before{content:"\eef8"}.nc-outline-mobile-camera:before{content:"\eef9"}.nc-outline-mobile-card:before{content:"\eefa"}.nc-outline-mobile-contact:before{content:"\eefb"}.nc-outline-mobile-design:before{content:"\eefc"}.nc-outline-mobile-dev:before{content:"\eefd"}.nc-outline-mobile-landscape:before{content:"\eefe"}.nc-outline-mobile-recharger-08:before{content:"\eeff"}.nc-outline-mobile-recharger-09:before{content:"\ef00"}.nc-outline-mobile-toolbar:before{content:"\ef01"}.nc-outline-mobile:before{content:"\ef02"}.nc-outline-moka:before{content:"\ef03"}.nc-outline-molecule-39:before{content:"\ef04"}.nc-outline-molecule-40:before{content:"\ef05"}.nc-outline-molecule:before{content:"\ef06"}.nc-outline-money-11:before{content:"\ef08"}.nc-outline-money-12:before{content:"\ef07"}.nc-outline-money-13:before{content:"\ef0a"}.nc-outline-money-bag:before{content:"\ef09"}.nc-outline-money-coins:before{content:"\ef0b"}.nc-outline-money-growth:before{content:"\ef0c"}.nc-outline-money-time:before{content:"\ef0d"}.nc-outline-money:before{content:"\ef0e"}.nc-outline-monster:before{content:"\ef0f"}.nc-outline-moon-cloud-drop:before{content:"\ef10"}.nc-outline-moon-cloud-fog:before{content:"\ef11"}.nc-outline-moon-cloud-hail:before{content:"\ef12"}.nc-outline-moon-cloud-light:before{content:"\ef13"}.nc-outline-moon-cloud-rain:before{content:"\ef14"}.nc-outline-moon-cloud-snow-61:before{content:"\ef15"}.nc-outline-moon-cloud-snow-62:before{content:"\ef16"}.nc-outline-moon-fog:before{content:"\ef17"}.nc-outline-moon-full:before{content:"\ef18"}.nc-outline-moon-stars:before{content:"\ef19"}.nc-outline-moon:before{content:"\ef1a"}.nc-outline-mosque:before{content:"\ef1b"}.nc-outline-moto:before{content:"\ef1c"}.nc-outline-mountain:before{content:"\ef1d"}.nc-outline-mouse-08:before{content:"\ef1e"}.nc-outline-mouse-09:before{content:"\ef1f"}.nc-outline-mouse-10:before{content:"\ef20"}.nc-outline-mouse:before{content:"\ef21"}.nc-outline-move-05:before{content:"\ef22"}.nc-outline-move-06:before{content:"\ef23"}.nc-outline-move-92:before{content:"\ef24"}.nc-outline-move-down-2:before{content:"\ef26"}.nc-outline-move-down-right:before{content:"\ef25"}.nc-outline-move-down:before{content:"\ef27"}.nc-outline-move-left:before{content:"\ef28"}.nc-outline-move-right:before{content:"\ef29"}.nc-outline-move-up-2:before{content:"\ef2a"}.nc-outline-move-up-left:before{content:"\ef2b"}.nc-outline-move-up:before{content:"\ef2c"}.nc-outline-movie-61:before{content:"\ef2d"}.nc-outline-movie-62:before{content:"\ef2e"}.nc-outline-muffin:before{content:"\ef2f"}.nc-outline-mug:before{content:"\ef30"}.nc-outline-multiple-11:before{content:"\ef31"}.nc-outline-multiple-19:before{content:"\ef32"}.nc-outline-multiple:before{content:"\ef33"}.nc-outline-mushroom:before{content:"\ef34"}.nc-outline-music-2:before{content:"\ef35"}.nc-outline-music-album:before{content:"\ef36"}.nc-outline-music-cloud:before{content:"\ef38"}.nc-outline-music:before{content:"\ef37"}.nc-outline-navigation:before{content:"\ef39"}.nc-outline-needle:before{content:"\ef3a"}.nc-outline-nerd-22:before{content:"\ef3b"}.nc-outline-nerd-23:before{content:"\ef3c"}.nc-outline-net:before{content:"\ef3d"}.nc-outline-network:before{content:"\ef3e"}.nc-outline-new:before{content:"\ef3f"}.nc-outline-newsletter-dev:before{content:"\ef40"}.nc-outline-newsletter:before{content:"\ef41"}.nc-outline-night:before{content:"\ef42"}.nc-outline-ninja:before{content:"\ef43"}.nc-outline-no-access:before{content:"\ef44"}.nc-outline-no-words:before{content:"\ef45"}.nc-outline-node:before{content:"\ef46"}.nc-outline-note-03:before{content:"\ef47"}.nc-outline-note-04:before{content:"\ef48"}.nc-outline-note-code:before{content:"\ef49"}.nc-outline-notebook-2:before{content:"\ef4a"}.nc-outline-notebook:before{content:"\ef4b"}.nc-outline-notepad:before{content:"\ef4c"}.nc-outline-notes:before{content:"\ef4d"}.nc-outline-notification-69:before{content:"\ef4e"}.nc-outline-notification-70:before{content:"\ef4f"}.nc-outline-nurse:before{content:"\ef50"}.nc-outline-nutrition:before{content:"\ef51"}.nc-outline-ny:before{content:"\ef52"}.nc-outline-octopus:before{content:"\ef53"}.nc-outline-oil:before{content:"\ef54"}.nc-outline-onion:before{content:"\ef55"}.nc-outline-open-in-browser:before{content:"\ef56"}.nc-outline-opening-times:before{content:"\ef57"}.nc-outline-orange:before{content:"\ef58"}.nc-outline-organic-2:before{content:"\ef59"}.nc-outline-organic:before{content:"\ef5a"}.nc-outline-oven:before{content:"\ef5b"}.nc-outline-owl:before{content:"\ef5c"}.nc-outline-p-add:before{content:"\ef5d"}.nc-outline-p-check:before{content:"\ef5e"}.nc-outline-p-edit:before{content:"\ef5f"}.nc-outline-p-heart:before{content:"\ef60"}.nc-outline-p-location:before{content:"\ef61"}.nc-outline-p-remove:before{content:"\ef62"}.nc-outline-p-search:before{content:"\ef63"}.nc-outline-p-settings:before{content:"\ef64"}.nc-outline-p-share:before{content:"\ef65"}.nc-outline-p-sync:before{content:"\ef66"}.nc-outline-p-system-update:before{content:"\ef67"}.nc-outline-p-time:before{content:"\ef68"}.nc-outline-paint-16:before{content:"\ef69"}.nc-outline-paint-37:before{content:"\ef6a"}.nc-outline-paint-38:before{content:"\ef6b"}.nc-outline-paint-brush:before{content:"\ef6c"}.nc-outline-paint-bucket-39:before{content:"\ef6d"}.nc-outline-paint-bucket-40:before{content:"\ef6e"}.nc-outline-pajamas:before{content:"\ef70"}.nc-outline-palette:before{content:"\ef6f"}.nc-outline-pan:before{content:"\ef71"}.nc-outline-pancake:before{content:"\ef72"}.nc-outline-panda:before{content:"\ef73"}.nc-outline-panel:before{content:"\ef74"}.nc-outline-pantone:before{content:"\ef75"}.nc-outline-paper-2:before{content:"\ef76"}.nc-outline-paper-design:before{content:"\ef77"}.nc-outline-paper-dev:before{content:"\ef78"}.nc-outline-paper-diploma:before{content:"\ef79"}.nc-outline-paper:before{content:"\ef7a"}.nc-outline-paragraph:before{content:"\ef7b"}.nc-outline-parent:before{content:"\ef7c"}.nc-outline-paris-tower:before{content:"\ef7e"}.nc-outline-parking-sensors:before{content:"\ef7d"}.nc-outline-parking:before{content:"\ef80"}.nc-outline-parrot:before{content:"\ef7f"}.nc-outline-passport:before{content:"\ef81"}.nc-outline-pasta:before{content:"\ef82"}.nc-outline-patch-19:before{content:"\ef83"}.nc-outline-patch-34:before{content:"\ef84"}.nc-outline-patch:before{content:"\ef85"}.nc-outline-path-exclude:before{content:"\ef86"}.nc-outline-path-intersect:before{content:"\ef87"}.nc-outline-path-minus:before{content:"\ef88"}.nc-outline-path-unite:before{content:"\ef8a"}.nc-outline-paw:before{content:"\ef89"}.nc-outline-payment:before{content:"\ef8b"}.nc-outline-pci-card:before{content:"\ef8c"}.nc-outline-peanut:before{content:"\ef8d"}.nc-outline-pear:before{content:"\ef8e"}.nc-outline-pen-01:before{content:"\ef8f"}.nc-outline-pen-23:before{content:"\ef90"}.nc-outline-pen-tool:before{content:"\ef92"}.nc-outline-pencil-47:before{content:"\ef91"}.nc-outline-pencil:before{content:"\ef93"}.nc-outline-penguin:before{content:"\ef94"}.nc-outline-pepper:before{content:"\ef96"}.nc-outline-percentage-38:before{content:"\ef95"}.nc-outline-percentage-39:before{content:"\ef97"}.nc-outline-phone-2:before{content:"\ef98"}.nc-outline-phone-3:before{content:"\ef99"}.nc-outline-phone-call-end:before{content:"\ef9a"}.nc-outline-phone-call:before{content:"\ef9b"}.nc-outline-phone:before{content:"\ef9c"}.nc-outline-photo-editor:before{content:"\ef9d"}.nc-outline-piano:before{content:"\ef9e"}.nc-outline-pickaxe:before{content:"\ef9f"}.nc-outline-pickle:before{content:"\efa0"}.nc-outline-picnic-basket:before{content:"\efa1"}.nc-outline-picture:before{content:"\efa2"}.nc-outline-pig-2:before{content:"\efa3"}.nc-outline-pig:before{content:"\efa4"}.nc-outline-pill-42:before{content:"\efa5"}.nc-outline-pill-43:before{content:"\efa6"}.nc-outline-pill-container-44:before{content:"\efa7"}.nc-outline-pill-container-47:before{content:"\efa8"}.nc-outline-pin-2:before{content:"\efa9"}.nc-outline-pin-3:before{content:"\efaa"}.nc-outline-pin-4:before{content:"\efab"}.nc-outline-pin-add-2:before{content:"\efac"}.nc-outline-pin-add:before{content:"\efad"}.nc-outline-pin-check:before{content:"\efae"}.nc-outline-pin-copy:before{content:"\efaf"}.nc-outline-pin-delete:before{content:"\efb0"}.nc-outline-pin-edit:before{content:"\efb2"}.nc-outline-pin-heart:before{content:"\efb1"}.nc-outline-pin-remove-2:before{content:"\efb3"}.nc-outline-pin-remove:before{content:"\efb4"}.nc-outline-pin-search:before{content:"\efb5"}.nc-outline-pin-security:before{content:"\efb6"}.nc-outline-pin-settings:before{content:"\efb7"}.nc-outline-pin-share:before{content:"\efb8"}.nc-outline-pin-star:before{content:"\efb9"}.nc-outline-pin-sync:before{content:"\efba"}.nc-outline-pin-time:before{content:"\efbb"}.nc-outline-pin-user:before{content:"\efbc"}.nc-outline-pin:before{content:"\efbd"}.nc-outline-pinch:before{content:"\efbe"}.nc-outline-pineapple:before{content:"\efbf"}.nc-outline-ping-pong:before{content:"\efc0"}.nc-outline-pins:before{content:"\efc2"}.nc-outline-pipe:before{content:"\efc1"}.nc-outline-pirate:before{content:"\efc3"}.nc-outline-pizza-slice:before{content:"\efc4"}.nc-outline-pizza:before{content:"\efc5"}.nc-outline-plane-17:before{content:"\efc6"}.nc-outline-plane-18:before{content:"\efc8"}.nc-outline-planet:before{content:"\efc7"}.nc-outline-plant-ground:before{content:"\efc9"}.nc-outline-plant-vase:before{content:"\efca"}.nc-outline-plate:before{content:"\efcc"}.nc-outline-play-68:before{content:"\efcb"}.nc-outline-play-69:before{content:"\efcd"}.nc-outline-play:before{content:"\efce"}.nc-outline-player-19:before{content:"\efcf"}.nc-outline-player-48:before{content:"\efd0"}.nc-outline-player:before{content:"\efd1"}.nc-outline-playlist:before{content:"\efd2"}.nc-outline-plug:before{content:"\efd4"}.nc-outline-podium-trophy:before{content:"\efd3"}.nc-outline-podium:before{content:"\efd5"}.nc-outline-point-a:before{content:"\efd6"}.nc-outline-point-b:before{content:"\efd7"}.nc-outline-polaroid-add:before{content:"\efd8"}.nc-outline-polaroid-delete:before{content:"\efd9"}.nc-outline-polaroid-multiple:before{content:"\efda"}.nc-outline-polaroid-user:before{content:"\efdb"}.nc-outline-polaroid:before{content:"\efdc"}.nc-outline-police:before{content:"\efdd"}.nc-outline-pool:before{content:"\efde"}.nc-outline-poop:before{content:"\efdf"}.nc-outline-popcorn:before{content:"\efe0"}.nc-outline-pos:before{content:"\efe1"}.nc-outline-position-marker:before{content:"\efe2"}.nc-outline-position-pin:before{content:"\efe3"}.nc-outline-position-user:before{content:"\efe4"}.nc-outline-position:before{content:"\efe5"}.nc-outline-pot:before{content:"\efe6"}.nc-outline-potato:before{content:"\efe7"}.nc-outline-power-level:before{content:"\efe8"}.nc-outline-preferences-circle-rotate:before{content:"\efea"}.nc-outline-preferences-circle:before{content:"\efe9"}.nc-outline-preferences-container-circle-rotate:before{content:"\efeb"}.nc-outline-preferences-container-circle:before{content:"\efec"}.nc-outline-preferences-container-rotate:before{content:"\efed"}.nc-outline-preferences-container:before{content:"\efee"}.nc-outline-preferences-rotate:before{content:"\efef"}.nc-outline-preferences:before{content:"\eff0"}.nc-outline-print:before{content:"\eff1"}.nc-outline-printer:before{content:"\eff2"}.nc-outline-priority-high:before{content:"\eff4"}.nc-outline-priority-low:before{content:"\eff3"}.nc-outline-progress:before{content:"\eff5"}.nc-outline-prosciutto:before{content:"\eff6"}.nc-outline-prototype:before{content:"\eff7"}.nc-outline-pulse-chart:before{content:"\eff8"}.nc-outline-pulse-phone:before{content:"\eff9"}.nc-outline-pulse-sleep:before{content:"\effa"}.nc-outline-pulse-watch:before{content:"\effb"}.nc-outline-pulse:before{content:"\effc"}.nc-outline-pumpkin:before{content:"\effd"}.nc-outline-push-next:before{content:"\effe"}.nc-outline-push-previous:before{content:"\efff"}.nc-outline-puzzle-09:before{content:"\f000"}.nc-outline-puzzle-10:before{content:"\f001"}.nc-outline-puzzled:before{content:"\f002"}.nc-outline-pyramid:before{content:"\f003"}.nc-outline-question:before{content:"\f004"}.nc-outline-quite-happy:before{content:"\f005"}.nc-outline-quote:before{content:"\f006"}.nc-outline-rabbit:before{content:"\f007"}.nc-outline-rackets:before{content:"\f008"}.nc-outline-radar:before{content:"\f009"}.nc-outline-radiation:before{content:"\f00a"}.nc-outline-radio:before{content:"\f00b"}.nc-outline-rain-hail:before{content:"\f00c"}.nc-outline-rain:before{content:"\f00d"}.nc-outline-rainbow:before{content:"\f00e"}.nc-outline-ram:before{content:"\f00f"}.nc-outline-rat:before{content:"\f010"}.nc-outline-receipt-list-42:before{content:"\f011"}.nc-outline-receipt-list-43:before{content:"\f012"}.nc-outline-receipt:before{content:"\f014"}.nc-outline-recipe-book-46:before{content:"\f013"}.nc-outline-recipe-book-47:before{content:"\f015"}.nc-outline-recipe-create:before{content:"\f016"}.nc-outline-recipe:before{content:"\f018"}.nc-outline-recycling:before{content:"\f017"}.nc-outline-redo-10:before{content:"\f019"}.nc-outline-redo-26:before{content:"\f01a"}.nc-outline-redo-79:before{content:"\f01b"}.nc-outline-redo-81:before{content:"\f01c"}.nc-outline-refresh-01:before{content:"\f01d"}.nc-outline-refresh-02:before{content:"\f01e"}.nc-outline-refresh-68:before{content:"\f01f"}.nc-outline-refresh-69:before{content:"\f020"}.nc-outline-refresh:before{content:"\f021"}.nc-outline-reload:before{content:"\f022"}.nc-outline-remix:before{content:"\f024"}.nc-outline-remote:before{content:"\f023"}.nc-outline-remove:before{content:"\f025"}.nc-outline-replace-folder:before{content:"\f026"}.nc-outline-replace:before{content:"\f027"}.nc-outline-replay:before{content:"\f028"}.nc-outline-reply-all:before{content:"\f02a"}.nc-outline-reply:before{content:"\f029"}.nc-outline-reservation:before{content:"\f02b"}.nc-outline-resize-h:before{content:"\f02c"}.nc-outline-resize-v:before{content:"\f02d"}.nc-outline-restaurant-menu:before{content:"\f02e"}.nc-outline-restore:before{content:"\f030"}.nc-outline-rice:before{content:"\f02f"}.nc-outline-rim:before{content:"\f032"}.nc-outline-ring:before{content:"\f031"}.nc-outline-rio:before{content:"\f034"}.nc-outline-ripples:before{content:"\f033"}.nc-outline-road-2:before{content:"\f035"}.nc-outline-road-sign-left:before{content:"\f036"}.nc-outline-road-sign-right:before{content:"\f038"}.nc-outline-road:before{content:"\f037"}.nc-outline-roast-chicken:before{content:"\f03a"}.nc-outline-robot:before{content:"\f039"}.nc-outline-rock:before{content:"\f03b"}.nc-outline-roll:before{content:"\f03c"}.nc-outline-rolling-pin:before{content:"\f03e"}.nc-outline-rome:before{content:"\f03d"}.nc-outline-rope:before{content:"\f03f"}.nc-outline-rotate-22:before{content:"\f040"}.nc-outline-rotate-23:before{content:"\f041"}.nc-outline-rotate-left-2:before{content:"\f042"}.nc-outline-rotate-left:before{content:"\f043"}.nc-outline-rotate-lock:before{content:"\f044"}.nc-outline-rotate-right-2:before{content:"\f045"}.nc-outline-rotate-right:before{content:"\f046"}.nc-outline-rotate:before{content:"\f047"}.nc-outline-round-dollar:before{content:"\f048"}.nc-outline-round-down:before{content:"\f049"}.nc-outline-round-euro:before{content:"\f04a"}.nc-outline-round-left-down:before{content:"\f04b"}.nc-outline-round-left:before{content:"\f04c"}.nc-outline-round-pound:before{content:"\f04d"}.nc-outline-round-right-down:before{content:"\f04e"}.nc-outline-round-right:before{content:"\f04f"}.nc-outline-round-up-left:before{content:"\f050"}.nc-outline-round-up-right:before{content:"\f051"}.nc-outline-round-up:before{content:"\f052"}.nc-outline-round-yen:before{content:"\f053"}.nc-outline-route-alert:before{content:"\f054"}.nc-outline-route-close:before{content:"\f055"}.nc-outline-route-open:before{content:"\f056"}.nc-outline-rowing:before{content:"\f057"}.nc-outline-rugby:before{content:"\f058"}.nc-outline-ruler-pencil:before{content:"\f059"}.nc-outline-sad:before{content:"\f05a"}.nc-outline-safe:before{content:"\f05b"}.nc-outline-salad:before{content:"\f05c"}.nc-outline-sale:before{content:"\f05d"}.nc-outline-salt:before{content:"\f05e"}.nc-outline-santa-hat:before{content:"\f05f"}.nc-outline-satisfied:before{content:"\f060"}.nc-outline-sausage:before{content:"\f061"}.nc-outline-save-planet:before{content:"\f062"}.nc-outline-scale-2:before{content:"\f063"}.nc-outline-scale-3:before{content:"\f064"}.nc-outline-scale-4:before{content:"\f065"}.nc-outline-scale-down:before{content:"\f066"}.nc-outline-scale-horizontal:before{content:"\f067"}.nc-outline-scale-up:before{content:"\f068"}.nc-outline-scale-vertical:before{content:"\f069"}.nc-outline-scale:before{content:"\f06a"}.nc-outline-scan:before{content:"\f06c"}.nc-outline-scarf:before{content:"\f06b"}.nc-outline-school:before{content:"\f06d"}.nc-outline-scissors-dashed:before{content:"\f06e"}.nc-outline-scissors:before{content:"\f06f"}.nc-outline-scotch:before{content:"\f070"}.nc-outline-scroll-horitontal:before{content:"\f071"}.nc-outline-scroll-vertical:before{content:"\f072"}.nc-outline-sd:before{content:"\f074"}.nc-outline-sea-mask:before{content:"\f073"}.nc-outline-search-2:before{content:"\f075"}.nc-outline-search-3:before{content:"\f076"}.nc-outline-search:before{content:"\f077"}.nc-outline-seat:before{content:"\f078"}.nc-outline-seatbelt:before{content:"\f07a"}.nc-outline-security:before{content:"\f079"}.nc-outline-segmentation:before{content:"\f07c"}.nc-outline-select-83:before{content:"\f07b"}.nc-outline-select-84:before{content:"\f07e"}.nc-outline-select:before{content:"\f07d"}.nc-outline-selection:before{content:"\f080"}.nc-outline-selfie:before{content:"\f07f"}.nc-outline-send-2:before{content:"\f081"}.nc-outline-send:before{content:"\f082"}.nc-outline-sensor:before{content:"\f083"}.nc-outline-separate-round:before{content:"\f084"}.nc-outline-separate:before{content:"\f085"}.nc-outline-settings-46:before{content:"\f086"}.nc-outline-settings-99:before{content:"\f087"}.nc-outline-settings-gear-63:before{content:"\f088"}.nc-outline-settings-gear-64:before{content:"\f089"}.nc-outline-settings-gear-65:before{content:"\f08a"}.nc-outline-settings-tool-66:before{content:"\f08c"}.nc-outline-settings-tool-67:before{content:"\f08b"}.nc-outline-settings:before{content:"\f08d"}.nc-outline-sf-bridge:before{content:"\f08e"}.nc-outline-shake:before{content:"\f08f"}.nc-outline-shaker:before{content:"\f090"}.nc-outline-shape-adjust:before{content:"\f091"}.nc-outline-shape-arrow:before{content:"\f092"}.nc-outline-shape-circle:before{content:"\f093"}.nc-outline-shape-custom:before{content:"\f094"}.nc-outline-shape-line:before{content:"\f095"}.nc-outline-shape-oval:before{content:"\f096"}.nc-outline-shape-polygon-2:before{content:"\f097"}.nc-outline-shape-polygon:before{content:"\f098"}.nc-outline-shape-rectangle:before{content:"\f099"}.nc-outline-shape-square:before{content:"\f09a"}.nc-outline-shape-star:before{content:"\f09b"}.nc-outline-shape-triangle-2:before{content:"\f09c"}.nc-outline-shape-triangle:before{content:"\f09e"}.nc-outline-shapes:before{content:"\f09d"}.nc-outline-share-2:before{content:"\f09f"}.nc-outline-share-66:before{content:"\f0a0"}.nc-outline-share-91:before{content:"\f0a1"}.nc-outline-share-92:before{content:"\f0a2"}.nc-outline-share-bold:before{content:"\f0a3"}.nc-outline-share-left:before{content:"\f0a4"}.nc-outline-share-right:before{content:"\f0a5"}.nc-outline-share:before{content:"\f0a6"}.nc-outline-shared:before{content:"\f0a7"}.nc-outline-shark-2:before{content:"\f0a8"}.nc-outline-shark:before{content:"\f0a9"}.nc-outline-sharpener:before{content:"\f0aa"}.nc-outline-sheep:before{content:"\f0ab"}.nc-outline-shirt-business:before{content:"\f0ac"}.nc-outline-shirt-buttons:before{content:"\f0ad"}.nc-outline-shirt-neck:before{content:"\f0ae"}.nc-outline-shirt:before{content:"\f0af"}.nc-outline-shoe-man:before{content:"\f0b0"}.nc-outline-shoe-run:before{content:"\f0b1"}.nc-outline-shoe-sport:before{content:"\f0b2"}.nc-outline-shoe-woman:before{content:"\f0b3"}.nc-outline-shop-location:before{content:"\f0b4"}.nc-outline-shop:before{content:"\f0b5"}.nc-outline-shovel:before{content:"\f0b6"}.nc-outline-shower:before{content:"\f0b7"}.nc-outline-shrimp:before{content:"\f0b8"}.nc-outline-shuffle-01:before{content:"\f0b9"}.nc-outline-shuffle-35:before{content:"\f0ba"}.nc-outline-shuffle-97:before{content:"\f0bb"}.nc-outline-shuffle-98:before{content:"\f0bc"}.nc-outline-shy:before{content:"\f0bd"}.nc-outline-sick:before{content:"\f0be"}.nc-outline-sickle:before{content:"\f0c0"}.nc-outline-sidebar:before{content:"\f0bf"}.nc-outline-sign-board:before{content:"\f0c1"}.nc-outline-sign:before{content:"\f0c2"}.nc-outline-signal-2:before{content:"\f0c3"}.nc-outline-signal:before{content:"\f0c4"}.nc-outline-signature:before{content:"\f0c6"}.nc-outline-silly:before{content:"\f0c5"}.nc-outline-sim-card:before{content:"\f0c8"}.nc-outline-simple-add:before{content:"\f0c7"}.nc-outline-simple-delete:before{content:"\f0c9"}.nc-outline-simple-down:before{content:"\f0ca"}.nc-outline-simple-left:before{content:"\f0cb"}.nc-outline-simple-remove:before{content:"\f0cc"}.nc-outline-simple-right:before{content:"\f0cd"}.nc-outline-simple-up:before{content:"\f0ce"}.nc-outline-single-01:before{content:"\f0cf"}.nc-outline-single-02:before{content:"\f0d0"}.nc-outline-single-03:before{content:"\f0d1"}.nc-outline-single-04:before{content:"\f0d2"}.nc-outline-single-05:before{content:"\f0d3"}.nc-outline-single-body:before{content:"\f0d4"}.nc-outline-single-content-02:before{content:"\f0d5"}.nc-outline-single-content-03:before{content:"\f0d6"}.nc-outline-single-copies:before{content:"\f0d8"}.nc-outline-single-copy-04:before{content:"\f0d7"}.nc-outline-single-copy-06:before{content:"\f0d9"}.nc-outline-single-folded-content:before{content:"\f0da"}.nc-outline-single-folded:before{content:"\f0db"}.nc-outline-single-paragraph:before{content:"\f0dc"}.nc-outline-single-position:before{content:"\f0dd"}.nc-outline-single:before{content:"\f0de"}.nc-outline-sink-wash:before{content:"\f0df"}.nc-outline-sink:before{content:"\f0e0"}.nc-outline-size-large:before{content:"\f0e1"}.nc-outline-size-medium:before{content:"\f0e2"}.nc-outline-size-small:before{content:"\f0e3"}.nc-outline-size:before{content:"\f0e4"}.nc-outline-skateboard-2:before{content:"\f0e5"}.nc-outline-skateboard:before{content:"\f0e6"}.nc-outline-skew-down:before{content:"\f0e7"}.nc-outline-skew-left:before{content:"\f0e8"}.nc-outline-skew-right:before{content:"\f0e9"}.nc-outline-skew-up:before{content:"\f0ea"}.nc-outline-skirt:before{content:"\f0ec"}.nc-outline-skull-2:before{content:"\f0eb"}.nc-outline-skull:before{content:"\f0ed"}.nc-outline-slacks-12:before{content:"\f0ee"}.nc-outline-slacks-13:before{content:"\f0f0"}.nc-outline-sleep-2:before{content:"\f0ef"}.nc-outline-sleep:before{content:"\f0f1"}.nc-outline-slice:before{content:"\f0f2"}.nc-outline-slide-left:before{content:"\f0f3"}.nc-outline-slide-right:before{content:"\f0f4"}.nc-outline-slider:before{content:"\f0f5"}.nc-outline-sloth:before{content:"\f0f6"}.nc-outline-small-add:before{content:"\f0f7"}.nc-outline-small-delete:before{content:"\f0f8"}.nc-outline-small-down:before{content:"\f0f9"}.nc-outline-small-left:before{content:"\f0fa"}.nc-outline-small-remove:before{content:"\f0fb"}.nc-outline-small-right:before{content:"\f0fc"}.nc-outline-small-triangle-down:before{content:"\f0fd"}.nc-outline-small-triangle-left:before{content:"\f0fe"}.nc-outline-small-triangle-right:before{content:"\f0ff"}.nc-outline-small-triangle-up:before{content:"\f100"}.nc-outline-small-up:before{content:"\f101"}.nc-outline-smart:before{content:"\f102"}.nc-outline-smile:before{content:"\f103"}.nc-outline-smoothie:before{content:"\f104"}.nc-outline-snack:before{content:"\f105"}.nc-outline-snake:before{content:"\f106"}.nc-outline-snow-ball:before{content:"\f107"}.nc-outline-snow:before{content:"\f108"}.nc-outline-snowboard:before{content:"\f10a"}.nc-outline-snowman-head:before{content:"\f109"}.nc-outline-snowman:before{content:"\f10b"}.nc-outline-soak:before{content:"\f10c"}.nc-outline-soccer-field:before{content:"\f10d"}.nc-outline-sock:before{content:"\f10e"}.nc-outline-socket-europe-1:before{content:"\f10f"}.nc-outline-socket-europe-2:before{content:"\f110"}.nc-outline-socket-uk:before{content:"\f111"}.nc-outline-socket:before{content:"\f112"}.nc-outline-sofa:before{content:"\f114"}.nc-outline-soldier:before{content:"\f113"}.nc-outline-sound-wave:before{content:"\f115"}.nc-outline-soup:before{content:"\f116"}.nc-outline-soy-sauce:before{content:"\f117"}.nc-outline-spa:before{content:"\f118"}.nc-outline-spaceship:before{content:"\f119"}.nc-outline-speaker-01:before{content:"\f11a"}.nc-outline-speaker-05:before{content:"\f11b"}.nc-outline-speaker:before{content:"\f11c"}.nc-outline-speechless:before{content:"\f11d"}.nc-outline-spider:before{content:"\f11e"}.nc-outline-spiteful:before{content:"\f11f"}.nc-outline-split-33:before{content:"\f120"}.nc-outline-split-37:before{content:"\f121"}.nc-outline-split-horizontal:before{content:"\f122"}.nc-outline-split-round:before{content:"\f123"}.nc-outline-split-vertical:before{content:"\f124"}.nc-outline-split:before{content:"\f125"}.nc-outline-sport:before{content:"\f126"}.nc-outline-spray-2:before{content:"\f127"}.nc-outline-spray:before{content:"\f128"}.nc-outline-square-add-08:before{content:"\f12a"}.nc-outline-square-add-11:before{content:"\f129"}.nc-outline-square-corner-down-left:before{content:"\f12b"}.nc-outline-square-corner-down-right:before{content:"\f12c"}.nc-outline-square-corner-up-left:before{content:"\f12d"}.nc-outline-square-corner-up-right:before{content:"\f12e"}.nc-outline-square-delete-10:before{content:"\f12f"}.nc-outline-square-delete-13:before{content:"\f130"}.nc-outline-square-down-06:before{content:"\f131"}.nc-outline-square-down:before{content:"\f132"}.nc-outline-square-download:before{content:"\f133"}.nc-outline-square-left-04:before{content:"\f134"}.nc-outline-square-left:before{content:"\f136"}.nc-outline-square-marker:before{content:"\f135"}.nc-outline-square-pin:before{content:"\f137"}.nc-outline-square-remove-09:before{content:"\f138"}.nc-outline-square-remove-12:before{content:"\f139"}.nc-outline-square-right-03:before{content:"\f13a"}.nc-outline-square-right:before{content:"\f13b"}.nc-outline-square-simple-down:before{content:"\f13c"}.nc-outline-square-simple-left:before{content:"\f13d"}.nc-outline-square-simple-right:before{content:"\f13e"}.nc-outline-square-simple-up:before{content:"\f13f"}.nc-outline-square-up-05:before{content:"\f140"}.nc-outline-square-up:before{content:"\f141"}.nc-outline-square-upload:before{content:"\f142"}.nc-outline-squares:before{content:"\f143"}.nc-outline-stamp:before{content:"\f144"}.nc-outline-standing-man:before{content:"\f145"}.nc-outline-standing-woman:before{content:"\f146"}.nc-outline-star:before{content:"\f148"}.nc-outline-steak-2:before{content:"\f147"}.nc-outline-steak:before{content:"\f149"}.nc-outline-steering-wheel:before{content:"\f14a"}.nc-outline-steps:before{content:"\f14b"}.nc-outline-stock-2:before{content:"\f14c"}.nc-outline-stock:before{content:"\f14d"}.nc-outline-storage-hanger:before{content:"\f14e"}.nc-outline-storage:before{content:"\f14f"}.nc-outline-store:before{content:"\f150"}.nc-outline-strategy:before{content:"\f151"}.nc-outline-strawberry:before{content:"\f152"}.nc-outline-stre-down:before{content:"\f153"}.nc-outline-stre-left:before{content:"\f154"}.nc-outline-stre-right:before{content:"\f156"}.nc-outline-stre-up:before{content:"\f155"}.nc-outline-stretch:before{content:"\f157"}.nc-outline-strikethrough:before{content:"\f158"}.nc-outline-strong-down:before{content:"\f15a"}.nc-outline-strong-left:before{content:"\f159"}.nc-outline-strong-right:before{content:"\f15b"}.nc-outline-strong-up:before{content:"\f15c"}.nc-outline-subscript:before{content:"\f15d"}.nc-outline-subtitles:before{content:"\f15f"}.nc-outline-sugar:before{content:"\f15e"}.nc-outline-sun-cloud-drop:before{content:"\f160"}.nc-outline-sun-cloud-fog:before{content:"\f161"}.nc-outline-sun-cloud-hail:before{content:"\f162"}.nc-outline-sun-cloud-light:before{content:"\f163"}.nc-outline-sun-cloud-rain:before{content:"\f164"}.nc-outline-sun-cloud-snow-54:before{content:"\f165"}.nc-outline-sun-cloud-snow-55:before{content:"\f166"}.nc-outline-sun-cloud:before{content:"\f167"}.nc-outline-sun-fog-29:before{content:"\f168"}.nc-outline-sun-fog-30:before{content:"\f169"}.nc-outline-sun-fog-43:before{content:"\f16a"}.nc-outline-sunglasses-48:before{content:"\f16b"}.nc-outline-sunglasses-49:before{content:"\f16c"}.nc-outline-sunglasses:before{content:"\f16d"}.nc-outline-superscript:before{content:"\f16e"}.nc-outline-supplement:before{content:"\f16f"}.nc-outline-support-16:before{content:"\f170"}.nc-outline-support-17:before{content:"\f171"}.nc-outline-surf-2:before{content:"\f172"}.nc-outline-surf:before{content:"\f173"}.nc-outline-surprise:before{content:"\f174"}.nc-outline-sushi:before{content:"\f175"}.nc-outline-swap-horizontal:before{content:"\f176"}.nc-outline-swap-vertical:before{content:"\f177"}.nc-outline-swimsuit:before{content:"\f178"}.nc-outline-swimwear:before{content:"\f179"}.nc-outline-swipe-bottom:before{content:"\f17a"}.nc-outline-swipe-left:before{content:"\f17b"}.nc-outline-swipe-right:before{content:"\f17c"}.nc-outline-swipe-up:before{content:"\f17d"}.nc-outline-swiss-knife:before{content:"\f17e"}.nc-outline-sync:before{content:"\f17f"}.nc-outline-syringe:before{content:"\f180"}.nc-outline-system-update:before{content:"\f181"}.nc-outline-table-left:before{content:"\f182"}.nc-outline-table-right:before{content:"\f183"}.nc-outline-table:before{content:"\f184"}.nc-outline-tablet-2:before{content:"\f185"}.nc-outline-tablet-button:before{content:"\f186"}.nc-outline-tablet-mobile:before{content:"\f187"}.nc-outline-tablet-reader-31:before{content:"\f188"}.nc-outline-tablet-reader-42:before{content:"\f189"}.nc-outline-tablet-toolbar:before{content:"\f18a"}.nc-outline-tablet:before{content:"\f18b"}.nc-outline-tacos:before{content:"\f18c"}.nc-outline-tactic:before{content:"\f18d"}.nc-outline-tag-2:before{content:"\f18f"}.nc-outline-tag-add:before{content:"\f18e"}.nc-outline-tag-check:before{content:"\f190"}.nc-outline-tag-content:before{content:"\f191"}.nc-outline-tag-cut:before{content:"\f192"}.nc-outline-tag-line:before{content:"\f193"}.nc-outline-tag-loyalty:before{content:"\f194"}.nc-outline-tag-remove:before{content:"\f195"}.nc-outline-tag-sale:before{content:"\f197"}.nc-outline-tag:before{content:"\f196"}.nc-outline-tail-down:before{content:"\f198"}.nc-outline-tail-left:before{content:"\f199"}.nc-outline-tail-right:before{content:"\f19a"}.nc-outline-tail-triangle-down:before{content:"\f19b"}.nc-outline-tail-triangle-left:before{content:"\f19c"}.nc-outline-tail-triangle-right:before{content:"\f19d"}.nc-outline-tail-triangle-up:before{content:"\f19f"}.nc-outline-tail-up:before{content:"\f19e"}.nc-outline-tap-01:before{content:"\f1a0"}.nc-outline-tap-02:before{content:"\f1a1"}.nc-outline-tape:before{content:"\f1a2"}.nc-outline-target:before{content:"\f1a3"}.nc-outline-tea-bag:before{content:"\f1a4"}.nc-outline-tea:before{content:"\f1a5"}.nc-outline-temperature-23:before{content:"\f1a6"}.nc-outline-temperature-24:before{content:"\f1a7"}.nc-outline-temple-25:before{content:"\f1a8"}.nc-outline-tennis-ball:before{content:"\f1a9"}.nc-outline-tennis:before{content:"\f1aa"}.nc-outline-terrace:before{content:"\f1ab"}.nc-outline-text-2:before{content:"\f1ac"}.nc-outline-text:before{content:"\f1ad"}.nc-outline-texture:before{content:"\f1ae"}.nc-outline-ticket-75:before{content:"\f1af"}.nc-outline-ticket-76:before{content:"\f1b0"}.nc-outline-tie-01:before{content:"\f1b1"}.nc-outline-tie-02:before{content:"\f1b2"}.nc-outline-tie-bow:before{content:"\f1b3"}.nc-outline-tile-55:before{content:"\f1b4"}.nc-outline-tile-56:before{content:"\f1b5"}.nc-outline-time-2:before{content:"\f1b6"}.nc-outline-time-3:before{content:"\f1b7"}.nc-outline-time-alarm:before{content:"\f1b8"}.nc-outline-time-clock:before{content:"\f1b9"}.nc-outline-time-countdown:before{content:"\f1ba"}.nc-outline-time:before{content:"\f1bb"}.nc-outline-timeline:before{content:"\f1bc"}.nc-outline-timer:before{content:"\f1bd"}.nc-outline-todo:before{content:"\f1be"}.nc-outline-toilet-paper:before{content:"\f1bf"}.nc-outline-toilet:before{content:"\f1c0"}.nc-outline-tomato:before{content:"\f1c1"}.nc-outline-tool-blur:before{content:"\f1c2"}.nc-outline-tool-hand:before{content:"\f1c3"}.nc-outline-tool-select:before{content:"\f1c4"}.nc-outline-tooth:before{content:"\f1c5"}.nc-outline-touch:before{content:"\f1c7"}.nc-outline-track-delivery:before{content:"\f1c6"}.nc-outline-tracking:before{content:"\f1c8"}.nc-outline-tractor:before{content:"\f1c9"}.nc-outline-train-speed:before{content:"\f1ca"}.nc-outline-train:before{content:"\f1cb"}.nc-outline-tram:before{content:"\f1cc"}.nc-outline-transform-2d:before{content:"\f1cd"}.nc-outline-transform-origin:before{content:"\f1ce"}.nc-outline-transform:before{content:"\f1cf"}.nc-outline-transparent:before{content:"\f1d1"}.nc-outline-trash-round:before{content:"\f1d0"}.nc-outline-trash-simple:before{content:"\f1d2"}.nc-outline-trash:before{content:"\f1d3"}.nc-outline-treasure-map-21:before{content:"\f1d4"}.nc-outline-treasure-map-40:before{content:"\f1d5"}.nc-outline-tree-01:before{content:"\f1d6"}.nc-outline-tree-02:before{content:"\f1d7"}.nc-outline-tree-03:before{content:"\f1d8"}.nc-outline-tree-ball:before{content:"\f1d9"}.nc-outline-tree:before{content:"\f1da"}.nc-outline-trend-down:before{content:"\f1db"}.nc-outline-trend-up:before{content:"\f1dc"}.nc-outline-triangle-down-20:before{content:"\f1dd"}.nc-outline-triangle-down-65:before{content:"\f1de"}.nc-outline-triangle-down:before{content:"\f1df"}.nc-outline-triangle-left-18:before{content:"\f1e0"}.nc-outline-triangle-left-63:before{content:"\f1e1"}.nc-outline-triangle-left:before{content:"\f1e2"}.nc-outline-triangle-right-17:before{content:"\f1e3"}.nc-outline-triangle-right-62:before{content:"\f1e4"}.nc-outline-triangle-right:before{content:"\f1e5"}.nc-outline-triangle-up-19:before{content:"\f1e6"}.nc-outline-triangle-up-64:before{content:"\f1e7"}.nc-outline-triangle-up:before{content:"\f1e8"}.nc-outline-tripod:before{content:"\f1e9"}.nc-outline-trolley:before{content:"\f1ea"}.nc-outline-trophy:before{content:"\f1eb"}.nc-outline-truck-front:before{content:"\f1ec"}.nc-outline-trunk:before{content:"\f1ed"}.nc-outline-tshirt-53:before{content:"\f1ee"}.nc-outline-tshirt-54:before{content:"\f1ef"}.nc-outline-tshirt-sport:before{content:"\f1f0"}.nc-outline-turtle:before{content:"\f1f1"}.nc-outline-tv-2:before{content:"\f1f2"}.nc-outline-tv-old:before{content:"\f1f3"}.nc-outline-tv:before{content:"\f1f4"}.nc-outline-ui-03:before{content:"\f1f5"}.nc-outline-ui-04:before{content:"\f1f6"}.nc-outline-umbrella-13:before{content:"\f1f7"}.nc-outline-umbrella-14:before{content:"\f1f8"}.nc-outline-underline:before{content:"\f1f9"}.nc-outline-underwear-man:before{content:"\f1fa"}.nc-outline-underwear:before{content:"\f1fb"}.nc-outline-undo-25:before{content:"\f1fc"}.nc-outline-undo-29:before{content:"\f1fd"}.nc-outline-ungroup:before{content:"\f1fe"}.nc-outline-unite-round:before{content:"\f1ff"}.nc-outline-unite:before{content:"\f200"}.nc-outline-upload-2:before{content:"\f201"}.nc-outline-upload:before{content:"\f202"}.nc-outline-upset-13:before{content:"\f203"}.nc-outline-upset-14:before{content:"\f204"}.nc-outline-usb:before{content:"\f205"}.nc-outline-user-balance:before{content:"\f206"}.nc-outline-user-climb:before{content:"\f207"}.nc-outline-user-frame-31:before{content:"\f209"}.nc-outline-user-frame-32:before{content:"\f208"}.nc-outline-user-frame-33:before{content:"\f20a"}.nc-outline-user-meditation:before{content:"\f20b"}.nc-outline-user-run:before{content:"\f20c"}.nc-outline-user-snowboard:before{content:"\f20d"}.nc-outline-user-swim:before{content:"\f20e"}.nc-outline-user:before{content:"\f20f"}.nc-outline-vampire:before{content:"\f210"}.nc-outline-vector-2:before{content:"\f211"}.nc-outline-vector:before{content:"\f212"}.nc-outline-vegan:before{content:"\f213"}.nc-outline-ventilation:before{content:"\f215"}.nc-outline-vespa-front:before{content:"\f214"}.nc-outline-vespa:before{content:"\f216"}.nc-outline-vest-31:before{content:"\f217"}.nc-outline-vest-sport:before{content:"\f218"}.nc-outline-vest:before{content:"\f219"}.nc-outline-video-64:before{content:"\f21a"}.nc-outline-video-65:before{content:"\f21b"}.nc-outline-video-66:before{content:"\f21c"}.nc-outline-video-67:before{content:"\f21d"}.nc-outline-videocamera-71:before{content:"\f21e"}.nc-outline-videocamera-72:before{content:"\f21f"}.nc-outline-virus:before{content:"\f220"}.nc-outline-voice-record:before{content:"\f221"}.nc-outline-volleyball:before{content:"\f222"}.nc-outline-volume-93:before{content:"\f223"}.nc-outline-volume-97:before{content:"\f224"}.nc-outline-volume-98:before{content:"\f225"}.nc-outline-volume-ban:before{content:"\f226"}.nc-outline-volume-down:before{content:"\f227"}.nc-outline-volume-off:before{content:"\f228"}.nc-outline-volume-up:before{content:"\f229"}.nc-outline-vpn:before{content:"\f22a"}.nc-outline-waffle:before{content:"\f22b"}.nc-outline-walk:before{content:"\f22d"}.nc-outline-wallet-43:before{content:"\f22c"}.nc-outline-wallet-44:before{content:"\f22e"}.nc-outline-wallet-90:before{content:"\f22f"}.nc-outline-wallet:before{content:"\f230"}.nc-outline-wand-11:before{content:"\f231"}.nc-outline-wardrobe:before{content:"\f232"}.nc-outline-wash-2:before{content:"\f233"}.nc-outline-wash-30:before{content:"\f234"}.nc-outline-wash-60:before{content:"\f235"}.nc-outline-wash-90:before{content:"\f236"}.nc-outline-wash-hand:before{content:"\f237"}.nc-outline-wash:before{content:"\f238"}.nc-outline-washing-fluid:before{content:"\f239"}.nc-outline-waste-danger:before{content:"\f23a"}.nc-outline-waste-recycling:before{content:"\f23b"}.nc-outline-waste:before{content:"\f23c"}.nc-outline-watch-circle:before{content:"\f23d"}.nc-outline-watch-dev:before{content:"\f23e"}.nc-outline-watch-time:before{content:"\f23f"}.nc-outline-watch:before{content:"\f240"}.nc-outline-water-hand:before{content:"\f241"}.nc-outline-water-sink:before{content:"\f242"}.nc-outline-water:before{content:"\f243"}.nc-outline-watermelon:before{content:"\f244"}.nc-outline-wc:before{content:"\f245"}.nc-outline-web-design:before{content:"\f246"}.nc-outline-webcam-38:before{content:"\f247"}.nc-outline-webcam-39:before{content:"\f248"}.nc-outline-webpage-2:before{content:"\f249"}.nc-outline-webpage:before{content:"\f24a"}.nc-outline-weed:before{content:"\f24b"}.nc-outline-weight:before{content:"\f24c"}.nc-outline-what:before{content:"\f24d"}.nc-outline-wheel-2:before{content:"\f24e"}.nc-outline-wheel:before{content:"\f251"}.nc-outline-wheelchair:before{content:"\f24f"}.nc-outline-whisk:before{content:"\f250"}.nc-outline-whiskers:before{content:"\f252"}.nc-outline-whistle:before{content:"\f253"}.nc-outline-white-house:before{content:"\f254"}.nc-outline-widget:before{content:"\f255"}.nc-outline-wifi-2:before{content:"\f256"}.nc-outline-wifi-off:before{content:"\f257"}.nc-outline-wifi-protected:before{content:"\f258"}.nc-outline-wifi-router:before{content:"\f259"}.nc-outline-wifi:before{content:"\f25a"}.nc-outline-wind-2:before{content:"\f25b"}.nc-outline-wind:before{content:"\f25c"}.nc-outline-window-add:before{content:"\f25d"}.nc-outline-window-code:before{content:"\f25e"}.nc-outline-window-delete:before{content:"\f25f"}.nc-outline-window-dev:before{content:"\f260"}.nc-outline-window-paragraph:before{content:"\f261"}.nc-outline-window-responsive:before{content:"\f262"}.nc-outline-window-zoom-in:before{content:"\f263"}.nc-outline-window-zoom-out:before{content:"\f264"}.nc-outline-wine-list:before{content:"\f265"}.nc-outline-wink-06:before{content:"\f266"}.nc-outline-wink-11:before{content:"\f267"}.nc-outline-wink-69:before{content:"\f268"}.nc-outline-witch-hat:before{content:"\f269"}.nc-outline-wolf:before{content:"\f26a"}.nc-outline-woman-2:before{content:"\f26b"}.nc-outline-woman-21:before{content:"\f26c"}.nc-outline-woman-24:before{content:"\f26d"}.nc-outline-woman-25:before{content:"\f26e"}.nc-outline-woman-down:before{content:"\f26f"}.nc-outline-woman-man:before{content:"\f270"}.nc-outline-woman-up:before{content:"\f271"}.nc-outline-woman:before{content:"\f272"}.nc-outline-wood:before{content:"\f273"}.nc-outline-wool-ball:before{content:"\f274"}.nc-outline-worl-marker:before{content:"\f275"}.nc-outline-world-2:before{content:"\f276"}.nc-outline-world-pin:before{content:"\f277"}.nc-outline-world:before{content:"\f278"}.nc-outline-yogurt:before{content:"\f279"}.nc-outline-zip-54:before{content:"\f27a"}.nc-outline-zip-55:before{content:"\f27b"}.nc-outline-zombie:before{content:"\f27c"}.nc-outline-zoom-100:before{content:"\f27d"}.nc-outline-zoom-2:before{content:"\f27e"}.nc-outline-zoom-88:before{content:"\f27f"}.nc-outline-zoom-99:before{content:"\f281"}.nc-outline-zoom-bold-in:before{content:"\f280"}.nc-outline-zoom-bold-out:before{content:"\f282"}.nc-outline-zoom-bold:before{content:"\f283"}.nc-outline-zoom-e:before{content:"\f285"}.nc-outline-zoom-in:before{content:"\f284"}.nc-outline-zoom-out:before{content:"\f286"}.nc-outline-zoom-split-in:before{content:"\f287"}.nc-outline-zoom-split-out:before{content:"\f288"}.nc-outline-zoom-split:before{content:"\f289"}.nc-outline-zoom-triangles:before{content:"\f28a"}.nc-outline-zoom:before{content:"\f28b"}.nc-glyph-2x-drag-down:before{content:"\ea01"}.nc-glyph-2x-drag-up:before{content:"\ea02"}.nc-glyph-2x-swipe-down:before{content:"\ea03"}.nc-glyph-2x-swipe-left:before{content:"\ea04"}.nc-glyph-2x-swipe-right:before{content:"\ea05"}.nc-glyph-2x-swipe-up:before{content:"\ea06"}.nc-glyph-2x-tap:before{content:"\ea07"}.nc-glyph-3d-29:before{content:"\ea08"}.nc-glyph-3d-model:before{content:"\ea09"}.nc-glyph-3d:before{content:"\ea0a"}.nc-glyph-3x-swipe-left:before{content:"\ea0b"}.nc-glyph-3x-swipe-right:before{content:"\ea0c"}.nc-glyph-3x-swipe-up:before{content:"\ea0d"}.nc-glyph-3x-tap:before{content:"\ea0e"}.nc-glyph-4x-swipe-left:before{content:"\ea0f"}.nc-glyph-4x-swipe-right:before{content:"\ea10"}.nc-glyph-4x-swipe-up:before{content:"\ea11"}.nc-glyph-a-add:before{content:"\ea12"}.nc-glyph-a-check:before{content:"\ea13"}.nc-glyph-a-delete:before{content:"\ea14"}.nc-glyph-a-edit:before{content:"\ea15"}.nc-glyph-a-heart:before{content:"\ea16"}.nc-glyph-a-location:before{content:"\ea17"}.nc-glyph-a-remove:before{content:"\ea18"}.nc-glyph-a-search:before{content:"\ea19"}.nc-glyph-a-security:before{content:"\ea1a"}.nc-glyph-a-share:before{content:"\ea1b"}.nc-glyph-a-star:before{content:"\ea1c"}.nc-glyph-a-sync:before{content:"\ea1d"}.nc-glyph-a-time:before{content:"\ea1e"}.nc-glyph-abc:before{content:"\ea1f"}.nc-glyph-accessibility:before{content:"\ea20"}.nc-glyph-action-73:before{content:"\ea21"}.nc-glyph-action-74:before{content:"\ea22"}.nc-glyph-active-38:before{content:"\ea23"}.nc-glyph-active-40:before{content:"\ea24"}.nc-glyph-add-27:before{content:"\ea25"}.nc-glyph-add-29:before{content:"\ea26"}.nc-glyph-add:before{content:"\ea27"}.nc-glyph-agenda-bookmark:before{content:"\ea28"}.nc-glyph-agenda:before{content:"\ea29"}.nc-glyph-air-baloon:before{content:"\ea2a"}.nc-glyph-air-conditioner:before{content:"\ea2b"}.nc-glyph-airbag:before{content:"\ea2c"}.nc-glyph-alarm-add:before{content:"\ea2d"}.nc-glyph-alarm-delete:before{content:"\ea2e"}.nc-glyph-album-2:before{content:"\ea2f"}.nc-glyph-album:before{content:"\ea30"}.nc-glyph-alcohol:before{content:"\ea31"}.nc-glyph-alert-circle-exc:before{content:"\ea32"}.nc-glyph-alert-circle-i:before{content:"\ea33"}.nc-glyph-alert-circle-que:before{content:"\ea34"}.nc-glyph-alert-exc:before{content:"\ea35"}.nc-glyph-alert-i:before{content:"\ea36"}.nc-glyph-alert-que:before{content:"\ea37"}.nc-glyph-alert-square-exc:before{content:"\ea38"}.nc-glyph-alert-square-i:before{content:"\ea39"}.nc-glyph-alert-square-que:before{content:"\ea3a"}.nc-glyph-alert:before{content:"\ea3b"}.nc-glyph-alien-29:before{content:"\ea3c"}.nc-glyph-alien-33:before{content:"\ea3d"}.nc-glyph-align-bottom:before{content:"\ea3e"}.nc-glyph-align-center-horizontal:before{content:"\ea3f"}.nc-glyph-align-center-vertical:before{content:"\ea40"}.nc-glyph-align-center:before{content:"\ea41"}.nc-glyph-align-justify:before{content:"\ea42"}.nc-glyph-align-left-2:before{content:"\ea43"}.nc-glyph-align-left:before{content:"\ea44"}.nc-glyph-align-right-2:before{content:"\ea45"}.nc-glyph-align-right:before{content:"\ea46"}.nc-glyph-align-top:before{content:"\ea47"}.nc-glyph-ambulance:before{content:"\ea48"}.nc-glyph-analytics-88:before{content:"\ea49"}.nc-glyph-analytics-89:before{content:"\ea4a"}.nc-glyph-anchor:before{content:"\ea4b"}.nc-glyph-android:before{content:"\ea4c"}.nc-glyph-angle:before{content:"\ea4d"}.nc-glyph-angry-10:before{content:"\ea4e"}.nc-glyph-angry-44:before{content:"\ea4f"}.nc-glyph-animation-14:before{content:"\ea50"}.nc-glyph-animation-31:before{content:"\ea51"}.nc-glyph-animation-32:before{content:"\ea52"}.nc-glyph-app:before{content:"\ea53"}.nc-glyph-apple-2:before{content:"\ea54"}.nc-glyph-apple:before{content:"\ea55"}.nc-glyph-appointment:before{content:"\ea56"}.nc-glyph-archive-2:before{content:"\ea57"}.nc-glyph-archive-3d-check:before{content:"\ea58"}.nc-glyph-archive-3d-content:before{content:"\ea59"}.nc-glyph-archive-check:before{content:"\ea5a"}.nc-glyph-archive-content:before{content:"\ea5b"}.nc-glyph-archive-paper-check:before{content:"\ea5c"}.nc-glyph-archive-paper:before{content:"\ea5d"}.nc-glyph-archive:before{content:"\ea5e"}.nc-glyph-armchair:before{content:"\ea5f"}.nc-glyph-artboard:before{content:"\ea60"}.nc-glyph-astronaut:before{content:"\ea61"}.nc-glyph-at-sign:before{content:"\ea62"}.nc-glyph-atm:before{content:"\ea63"}.nc-glyph-atom:before{content:"\ea64"}.nc-glyph-attach-86:before{content:"\ea65"}.nc-glyph-attach-87:before{content:"\ea66"}.nc-glyph-aubergine:before{content:"\ea67"}.nc-glyph-audio-91:before{content:"\ea68"}.nc-glyph-audio-92:before{content:"\ea69"}.nc-glyph-audio:before{content:"\ea6a"}.nc-glyph-avocado:before{content:"\ea6b"}.nc-glyph-award-48:before{content:"\ea6c"}.nc-glyph-award-49:before{content:"\ea6d"}.nc-glyph-award-55:before{content:"\ea6e"}.nc-glyph-award-74:before{content:"\ea6f"}.nc-glyph-award:before{content:"\ea70"}.nc-glyph-axe:before{content:"\ea71"}.nc-glyph-b-add:before{content:"\ea72"}.nc-glyph-b-check:before{content:"\ea73"}.nc-glyph-b-location:before{content:"\ea74"}.nc-glyph-b-love:before{content:"\ea75"}.nc-glyph-b-meeting:before{content:"\ea76"}.nc-glyph-b-remove:before{content:"\ea77"}.nc-glyph-b-security:before{content:"\ea78"}.nc-glyph-baby-2:before{content:"\ea79"}.nc-glyph-baby-3:before{content:"\ea7a"}.nc-glyph-baby-bottle:before{content:"\ea7b"}.nc-glyph-baby:before{content:"\ea7c"}.nc-glyph-back-78:before{content:"\ea7d"}.nc-glyph-back-80:before{content:"\ea7e"}.nc-glyph-background:before{content:"\ea7f"}.nc-glyph-backpack-2:before{content:"\ea80"}.nc-glyph-backpack-57:before{content:"\ea81"}.nc-glyph-backpack-58:before{content:"\ea82"}.nc-glyph-backpack:before{content:"\ea83"}.nc-glyph-backward:before{content:"\ea84"}.nc-glyph-bacon:before{content:"\ea85"}.nc-glyph-badge-13:before{content:"\ea86"}.nc-glyph-badge-14:before{content:"\ea87"}.nc-glyph-badge-15:before{content:"\ea88"}.nc-glyph-badge:before{content:"\ea89"}.nc-glyph-badminton:before{content:"\ea8a"}.nc-glyph-bag-09:before{content:"\ea8b"}.nc-glyph-bag-16:before{content:"\ea8c"}.nc-glyph-bag-17:before{content:"\ea8d"}.nc-glyph-bag-20:before{content:"\ea8e"}.nc-glyph-bag-21:before{content:"\ea8f"}.nc-glyph-bag-22:before{content:"\ea90"}.nc-glyph-bag-49:before{content:"\ea91"}.nc-glyph-bag-50:before{content:"\ea92"}.nc-glyph-bag-add-18:before{content:"\ea93"}.nc-glyph-bag-add-21:before{content:"\ea94"}.nc-glyph-bag-delivery:before{content:"\ea95"}.nc-glyph-bag-edit:before{content:"\ea96"}.nc-glyph-bag-remove-19:before{content:"\ea97"}.nc-glyph-bag-remove-22:before{content:"\ea98"}.nc-glyph-bag-time:before{content:"\ea99"}.nc-glyph-bag:before{content:"\ea9a"}.nc-glyph-baguette:before{content:"\ea9b"}.nc-glyph-balance:before{content:"\ea9c"}.nc-glyph-ball-basket:before{content:"\ea9d"}.nc-glyph-ball-soccer:before{content:"\ea9e"}.nc-glyph-baloon:before{content:"\ea9f"}.nc-glyph-ban-bold:before{content:"\eaa0"}.nc-glyph-ban:before{content:"\eaa1"}.nc-glyph-banana:before{content:"\eaa2"}.nc-glyph-bank:before{content:"\eaa3"}.nc-glyph-barbecue-15:before{content:"\eaa4"}.nc-glyph-barbecue-tools:before{content:"\eaa5"}.nc-glyph-barbecue:before{content:"\eaa6"}.nc-glyph-barcode-qr:before{content:"\eaa7"}.nc-glyph-barcode-scan:before{content:"\eaa8"}.nc-glyph-barcode:before{content:"\eaa9"}.nc-glyph-bars-2:before{content:"\eaaa"}.nc-glyph-bars-rotate:before{content:"\eaab"}.nc-glyph-bars:before{content:"\eaac"}.nc-glyph-baseball-ball:before{content:"\eaad"}.nc-glyph-baseball-bat:before{content:"\eaae"}.nc-glyph-baseball:before{content:"\eaaf"}.nc-glyph-basket-add:before{content:"\eab0"}.nc-glyph-basket-edit:before{content:"\eab1"}.nc-glyph-basket-favorite:before{content:"\eab2"}.nc-glyph-basket-remove:before{content:"\eab3"}.nc-glyph-basket-search:before{content:"\eab4"}.nc-glyph-basket-share:before{content:"\eab5"}.nc-glyph-basket-simple-add:before{content:"\eab6"}.nc-glyph-basket-simple-remove:before{content:"\eab7"}.nc-glyph-basket-simple:before{content:"\eab8"}.nc-glyph-basket-update:before{content:"\eab9"}.nc-glyph-basket:before{content:"\eaba"}.nc-glyph-basketball-12:before{content:"\eabb"}.nc-glyph-basketball-13:before{content:"\eabc"}.nc-glyph-bat:before{content:"\eabd"}.nc-glyph-bath-tub:before{content:"\eabe"}.nc-glyph-battery-81:before{content:"\eabf"}.nc-glyph-battery-83:before{content:"\eac0"}.nc-glyph-battery-half:before{content:"\eac1"}.nc-glyph-battery-level:before{content:"\eac2"}.nc-glyph-battery-low:before{content:"\eac3"}.nc-glyph-battery:before{content:"\eac4"}.nc-glyph-bear-2:before{content:"\eac5"}.nc-glyph-bear:before{content:"\eac6"}.nc-glyph-bed-09:before{content:"\eac7"}.nc-glyph-bed-23:before{content:"\eac8"}.nc-glyph-bed-side:before{content:"\eac9"}.nc-glyph-bee:before{content:"\eaca"}.nc-glyph-beer-95:before{content:"\eacb"}.nc-glyph-beer-96:before{content:"\eacc"}.nc-glyph-bell-53:before{content:"\eacd"}.nc-glyph-bell-54:before{content:"\eace"}.nc-glyph-bell-55:before{content:"\eacf"}.nc-glyph-belt:before{content:"\ead0"}.nc-glyph-berlin:before{content:"\ead1"}.nc-glyph-beverage:before{content:"\ead2"}.nc-glyph-big-eyes:before{content:"\ead3"}.nc-glyph-big-smile:before{content:"\ead4"}.nc-glyph-bigmouth:before{content:"\ead5"}.nc-glyph-bike-2:before{content:"\ead6"}.nc-glyph-bike:before{content:"\ead7"}.nc-glyph-bill:before{content:"\ead8"}.nc-glyph-billiard:before{content:"\ead9"}.nc-glyph-binocular:before{content:"\eada"}.nc-glyph-biscuit:before{content:"\eadb"}.nc-glyph-bitcoin:before{content:"\eadc"}.nc-glyph-bleah:before{content:"\eadd"}.nc-glyph-blend:before{content:"\eade"}.nc-glyph-blind:before{content:"\eadf"}.nc-glyph-block-bottom-left:before{content:"\eae0"}.nc-glyph-block-bottom-right:before{content:"\eae1"}.nc-glyph-block-down:before{content:"\eae2"}.nc-glyph-block-left:before{content:"\eae3"}.nc-glyph-block-right:before{content:"\eae4"}.nc-glyph-block-top-left:before{content:"\eae5"}.nc-glyph-block-top-right:before{content:"\eae6"}.nc-glyph-block-up:before{content:"\eae7"}.nc-glyph-blog:before{content:"\eae8"}.nc-glyph-blueberries:before{content:"\eae9"}.nc-glyph-bluetooth:before{content:"\eaea"}.nc-glyph-board-2:before{content:"\eaeb"}.nc-glyph-board-27:before{content:"\eaec"}.nc-glyph-board-28:before{content:"\eaed"}.nc-glyph-board-29:before{content:"\eaee"}.nc-glyph-board-30:before{content:"\eaef"}.nc-glyph-board-51:before{content:"\eaf0"}.nc-glyph-board:before{content:"\eaf1"}.nc-glyph-boat-front:before{content:"\eaf2"}.nc-glyph-boat-small-02:before{content:"\eaf3"}.nc-glyph-boat-small-03:before{content:"\eaf4"}.nc-glyph-boat:before{content:"\eaf5"}.nc-glyph-bold-add:before{content:"\eaf6"}.nc-glyph-bold-delete:before{content:"\eaf7"}.nc-glyph-bold-direction:before{content:"\eaf8"}.nc-glyph-bold-down:before{content:"\eaf9"}.nc-glyph-bold-left:before{content:"\eafa"}.nc-glyph-bold-remove:before{content:"\eafb"}.nc-glyph-bold-right:before{content:"\eafc"}.nc-glyph-bold-up:before{content:"\eafd"}.nc-glyph-bold:before{content:"\eafe"}.nc-glyph-bolt:before{content:"\eaff"}.nc-glyph-bomb:before{content:"\eb00"}.nc-glyph-bones:before{content:"\eb01"}.nc-glyph-book-07:before{content:"\eb02"}.nc-glyph-book-08:before{content:"\eb03"}.nc-glyph-book-39:before{content:"\eb04"}.nc-glyph-book-bookmark-2:before{content:"\eb05"}.nc-glyph-book-bookmark:before{content:"\eb06"}.nc-glyph-book-open-2:before{content:"\eb07"}.nc-glyph-book-open:before{content:"\eb08"}.nc-glyph-book:before{content:"\eb09"}.nc-glyph-bookmark-2:before{content:"\eb0a"}.nc-glyph-bookmark-add-2:before{content:"\eb0b"}.nc-glyph-bookmark-add:before{content:"\eb0c"}.nc-glyph-bookmark-remove-2:before{content:"\eb0d"}.nc-glyph-bookmark-remove:before{content:"\eb0e"}.nc-glyph-bookmark:before{content:"\eb0f"}.nc-glyph-books-46:before{content:"\eb10"}.nc-glyph-books:before{content:"\eb11"}.nc-glyph-boot-2:before{content:"\eb12"}.nc-glyph-boot-woman:before{content:"\eb13"}.nc-glyph-boot:before{content:"\eb14"}.nc-glyph-border-radius:before{content:"\eb15"}.nc-glyph-border:before{content:"\eb16"}.nc-glyph-bored:before{content:"\eb17"}.nc-glyph-bottle-wine:before{content:"\eb18"}.nc-glyph-bottle:before{content:"\eb19"}.nc-glyph-bow:before{content:"\eb1a"}.nc-glyph-bowl:before{content:"\eb1b"}.nc-glyph-bowling:before{content:"\eb1c"}.nc-glyph-box-2:before{content:"\eb1d"}.nc-glyph-box-3d-50:before{content:"\eb1e"}.nc-glyph-box-ribbon:before{content:"\eb1f"}.nc-glyph-box:before{content:"\eb20"}.nc-glyph-boxing:before{content:"\eb21"}.nc-glyph-bra:before{content:"\eb22"}.nc-glyph-brain:before{content:"\eb23"}.nc-glyph-brakes:before{content:"\eb24"}.nc-glyph-bread:before{content:"\eb25"}.nc-glyph-briefcase-24:before{content:"\eb26"}.nc-glyph-briefcase-25:before{content:"\eb27"}.nc-glyph-briefcase-26:before{content:"\eb28"}.nc-glyph-brightness-46:before{content:"\eb29"}.nc-glyph-brightness-47:before{content:"\eb2a"}.nc-glyph-brioche:before{content:"\eb2b"}.nc-glyph-broccoli:before{content:"\eb2c"}.nc-glyph-broom:before{content:"\eb2d"}.nc-glyph-browser-chrome:before{content:"\eb2e"}.nc-glyph-browser-edge:before{content:"\eb2f"}.nc-glyph-browser-firefox:before{content:"\eb30"}.nc-glyph-browser-ie:before{content:"\eb31"}.nc-glyph-browser-opera:before{content:"\eb32"}.nc-glyph-browser-safari:before{content:"\eb33"}.nc-glyph-brush:before{content:"\eb34"}.nc-glyph-bucket:before{content:"\eb35"}.nc-glyph-bug:before{content:"\eb36"}.nc-glyph-building:before{content:"\eb37"}.nc-glyph-bulb-61:before{content:"\eb38"}.nc-glyph-bulb-62:before{content:"\eb39"}.nc-glyph-bulb-63:before{content:"\eb3a"}.nc-glyph-bulb-saver:before{content:"\eb3b"}.nc-glyph-bulb:before{content:"\eb3c"}.nc-glyph-bullet-list-67:before{content:"\eb3d"}.nc-glyph-bullet-list-68:before{content:"\eb3e"}.nc-glyph-bullet-list-69:before{content:"\eb3f"}.nc-glyph-bullet-list-70:before{content:"\eb40"}.nc-glyph-bullet-list:before{content:"\eb41"}.nc-glyph-bus-front-10:before{content:"\eb42"}.nc-glyph-bus-front-12:before{content:"\eb43"}.nc-glyph-bus:before{content:"\eb44"}.nc-glyph-business-contact-85:before{content:"\eb45"}.nc-glyph-business-contact-86:before{content:"\eb46"}.nc-glyph-business-contact-87:before{content:"\eb47"}.nc-glyph-business-contact-88:before{content:"\eb48"}.nc-glyph-business-contact-89:before{content:"\eb49"}.nc-glyph-businessman-03:before{content:"\eb4a"}.nc-glyph-businessman-04:before{content:"\eb4b"}.nc-glyph-butterfly:before{content:"\eb4c"}.nc-glyph-button-2:before{content:"\eb4d"}.nc-glyph-button-circle-pause:before{content:"\eb4e"}.nc-glyph-button-circle-play:before{content:"\eb4f"}.nc-glyph-button-circle-stop:before{content:"\eb50"}.nc-glyph-button-eject:before{content:"\eb51"}.nc-glyph-button-next:before{content:"\eb52"}.nc-glyph-button-pause:before{content:"\eb53"}.nc-glyph-button-play:before{content:"\eb54"}.nc-glyph-button-power:before{content:"\eb55"}.nc-glyph-button-previous:before{content:"\eb56"}.nc-glyph-button-record:before{content:"\eb57"}.nc-glyph-button-rewind:before{content:"\eb58"}.nc-glyph-button-skip:before{content:"\eb5b"}.nc-glyph-button-stop:before{content:"\eb59"}.nc-glyph-button:before{content:"\eb5a"}.nc-glyph-cabinet:before{content:"\eb5c"}.nc-glyph-cable-49:before{content:"\eb5d"}.nc-glyph-cable-50:before{content:"\eb5e"}.nc-glyph-cactus:before{content:"\eb5f"}.nc-glyph-cake-100:before{content:"\eb60"}.nc-glyph-cake-13:before{content:"\eb61"}.nc-glyph-cake-slice:before{content:"\eb62"}.nc-glyph-cake:before{content:"\eb63"}.nc-glyph-calculator:before{content:"\eb64"}.nc-glyph-calendar-57:before{content:"\eb65"}.nc-glyph-calendar-60:before{content:"\eb66"}.nc-glyph-calendar-add:before{content:"\eb67"}.nc-glyph-calendar-check-59:before{content:"\eb68"}.nc-glyph-calendar-check-62:before{content:"\eb69"}.nc-glyph-calendar-grid-58:before{content:"\eb6a"}.nc-glyph-calendar-grid-61:before{content:"\eb6b"}.nc-glyph-camera-18:before{content:"\eb6c"}.nc-glyph-camera-19:before{content:"\eb6d"}.nc-glyph-camera-20:before{content:"\eb6e"}.nc-glyph-camera-ban-36:before{content:"\eb6f"}.nc-glyph-camera-ban-37:before{content:"\eb70"}.nc-glyph-camera-compact:before{content:"\eb71"}.nc-glyph-camera-screen:before{content:"\eb72"}.nc-glyph-camera-square-57:before{content:"\eb73"}.nc-glyph-camera-square-58:before{content:"\eb74"}.nc-glyph-camera-time:before{content:"\eb75"}.nc-glyph-camera:before{content:"\eb76"}.nc-glyph-camper:before{content:"\eb77"}.nc-glyph-camping:before{content:"\eb78"}.nc-glyph-candle:before{content:"\eb79"}.nc-glyph-candy-2:before{content:"\eb7a"}.nc-glyph-candy:before{content:"\eb7b"}.nc-glyph-canvas:before{content:"\eb7c"}.nc-glyph-cap:before{content:"\eb7d"}.nc-glyph-capitalize:before{content:"\eb7e"}.nc-glyph-caps-all:before{content:"\eb7f"}.nc-glyph-caps-small:before{content:"\eb80"}.nc-glyph-car-2:before{content:"\eb81"}.nc-glyph-car-accident:before{content:"\eb82"}.nc-glyph-car-connect:before{content:"\eb83"}.nc-glyph-car-door:before{content:"\eb84"}.nc-glyph-car-front:before{content:"\eb85"}.nc-glyph-car-lights:before{content:"\eb86"}.nc-glyph-car-parking:before{content:"\eb87"}.nc-glyph-car-simple:before{content:"\eb88"}.nc-glyph-car-sport:before{content:"\eb89"}.nc-glyph-car-taxi:before{content:"\eb8a"}.nc-glyph-car-ventilation:before{content:"\eb8b"}.nc-glyph-car-wash:before{content:"\eb8c"}.nc-glyph-car:before{content:"\eb8d"}.nc-glyph-card-add-2:before{content:"\eb8e"}.nc-glyph-card-add:before{content:"\eb8f"}.nc-glyph-card-alert:before{content:"\eb90"}.nc-glyph-card-edit:before{content:"\eb91"}.nc-glyph-card-favorite:before{content:"\eb92"}.nc-glyph-card-remove:before{content:"\eb93"}.nc-glyph-card-update:before{content:"\eb94"}.nc-glyph-cardio:before{content:"\eb95"}.nc-glyph-cards:before{content:"\eb96"}.nc-glyph-carrot:before{content:"\eb97"}.nc-glyph-cart-9:before{content:"\eb98"}.nc-glyph-cart-add-9:before{content:"\eb99"}.nc-glyph-cart-add:before{content:"\eb9a"}.nc-glyph-cart-favorite:before{content:"\eb9b"}.nc-glyph-cart-full:before{content:"\eb9c"}.nc-glyph-cart-in-9:before{content:"\eb9d"}.nc-glyph-cart-refresh:before{content:"\eb9e"}.nc-glyph-cart-remove-9:before{content:"\eb9f"}.nc-glyph-cart-remove:before{content:"\eba0"}.nc-glyph-cart-return:before{content:"\eba1"}.nc-glyph-cart-simple-add:before{content:"\eba2"}.nc-glyph-cart-simple-in:before{content:"\eba3"}.nc-glyph-cart-simple-remove:before{content:"\eba4"}.nc-glyph-cart-simple:before{content:"\eba5"}.nc-glyph-cart-speed:before{content:"\eba6"}.nc-glyph-cart:before{content:"\eba7"}.nc-glyph-cash-register:before{content:"\eba8"}.nc-glyph-castle:before{content:"\eba9"}.nc-glyph-cat:before{content:"\ebaa"}.nc-glyph-cauldron:before{content:"\ebab"}.nc-glyph-cctv:before{content:"\ebac"}.nc-glyph-cd-reader:before{content:"\ebad"}.nc-glyph-celsius:before{content:"\ebae"}.nc-glyph-centralize:before{content:"\ebaf"}.nc-glyph-chair-2:before{content:"\ebb0"}.nc-glyph-chair:before{content:"\ebb1"}.nc-glyph-chalkboard:before{content:"\ebb2"}.nc-glyph-champagne:before{content:"\ebb3"}.nc-glyph-chart-2:before{content:"\ebb4"}.nc-glyph-chart-3:before{content:"\ebb5"}.nc-glyph-chart-bar-32:before{content:"\ebb6"}.nc-glyph-chart-bar-33:before{content:"\ebb7"}.nc-glyph-chart-bar-52:before{content:"\ebb8"}.nc-glyph-chart-bar-53:before{content:"\ebb9"}.nc-glyph-chart-bar:before{content:"\ebba"}.nc-glyph-chart-bars:before{content:"\ebbb"}.nc-glyph-chart-growth:before{content:"\ebbc"}.nc-glyph-chart-pie-35:before{content:"\ebbd"}.nc-glyph-chart-pie-36:before{content:"\ebbe"}.nc-glyph-chart-pie:before{content:"\ebbf"}.nc-glyph-chart:before{content:"\ebc0"}.nc-glyph-chat-33:before{content:"\ebc1"}.nc-glyph-chat-45:before{content:"\ebc2"}.nc-glyph-chat-46:before{content:"\ebc3"}.nc-glyph-chat-content:before{content:"\ebc4"}.nc-glyph-chat-reply:before{content:"\ebc5"}.nc-glyph-chat-round-content:before{content:"\ebc6"}.nc-glyph-chat-round:before{content:"\ebc7"}.nc-glyph-chat:before{content:"\ebc8"}.nc-glyph-check-2:before{content:"\ebc9"}.nc-glyph-check-bold:before{content:"\ebca"}.nc-glyph-check-circle-07:before{content:"\ebcb"}.nc-glyph-check-circle-08:before{content:"\ebcc"}.nc-glyph-check-curve:before{content:"\ebcd"}.nc-glyph-check-in:before{content:"\ebce"}.nc-glyph-check-out:before{content:"\ebcf"}.nc-glyph-check-simple:before{content:"\ebd0"}.nc-glyph-check-small:before{content:"\ebd1"}.nc-glyph-check-square-09:before{content:"\ebd2"}.nc-glyph-check-square-11:before{content:"\ebd3"}.nc-glyph-check:before{content:"\ebd4"}.nc-glyph-cheese-24:before{content:"\ebd5"}.nc-glyph-cheese-87:before{content:"\ebd6"}.nc-glyph-cheeseburger:before{content:"\ebd7"}.nc-glyph-chef-hat:before{content:"\ebd8"}.nc-glyph-chef:before{content:"\ebd9"}.nc-glyph-cheque-2:before{content:"\ebda"}.nc-glyph-cheque-3:before{content:"\ebdb"}.nc-glyph-cheque:before{content:"\ebdc"}.nc-glyph-cherry:before{content:"\ebdd"}.nc-glyph-chicken-2:before{content:"\ebde"}.nc-glyph-chicken:before{content:"\ebdf"}.nc-glyph-child:before{content:"\ebe0"}.nc-glyph-chili:before{content:"\ebe1"}.nc-glyph-chimney:before{content:"\ebe2"}.nc-glyph-china:before{content:"\ebe3"}.nc-glyph-chinese:before{content:"\ebe4"}.nc-glyph-chips:before{content:"\ebe5"}.nc-glyph-choco-cream:before{content:"\ebe7"}.nc-glyph-chocolate-mousse:before{content:"\ebe6"}.nc-glyph-chocolate:before{content:"\ebe8"}.nc-glyph-church:before{content:"\ebe9"}.nc-glyph-churros:before{content:"\ebea"}.nc-glyph-circle-02:before{content:"\ebeb"}.nc-glyph-circle-03:before{content:"\ebec"}.nc-glyph-circle-04:before{content:"\ebed"}.nc-glyph-circle-08:before{content:"\ebee"}.nc-glyph-circle-09:before{content:"\ebef"}.nc-glyph-circle-10:before{content:"\ebf0"}.nc-glyph-circle-add:before{content:"\ebf1"}.nc-glyph-circle-bold-add:before{content:"\ebf2"}.nc-glyph-circle-bold-delete:before{content:"\ebf3"}.nc-glyph-circle-bold-remove:before{content:"\ebf4"}.nc-glyph-circle-delete:before{content:"\ebf5"}.nc-glyph-circle-down-12:before{content:"\ebf6"}.nc-glyph-circle-down-40:before{content:"\ebf7"}.nc-glyph-circle-in:before{content:"\ebf8"}.nc-glyph-circle-left-10:before{content:"\ebf9"}.nc-glyph-circle-left-38:before{content:"\ebfa"}.nc-glyph-circle-out:before{content:"\ebfb"}.nc-glyph-circle-remove:before{content:"\ebfc"}.nc-glyph-circle-right-09:before{content:"\ebfd"}.nc-glyph-circle-right-37:before{content:"\ebfe"}.nc-glyph-circle-simple-down:before{content:"\ebff"}.nc-glyph-circle-simple-left:before{content:"\ec00"}.nc-glyph-circle-simple-right:before{content:"\ec01"}.nc-glyph-circle-simple-up:before{content:"\ec02"}.nc-glyph-circle-up-11:before{content:"\ec03"}.nc-glyph-circle-up-39:before{content:"\ec04"}.nc-glyph-circle:before{content:"\ec05"}.nc-glyph-circuit-round:before{content:"\ec06"}.nc-glyph-circuit:before{content:"\ec07"}.nc-glyph-clone:before{content:"\ec08"}.nc-glyph-cloud-25:before{content:"\ec09"}.nc-glyph-cloud-26:before{content:"\ec0a"}.nc-glyph-cloud-download-93:before{content:"\ec0b"}.nc-glyph-cloud-download-95:before{content:"\ec0c"}.nc-glyph-cloud-drop:before{content:"\ec0d"}.nc-glyph-cloud-fog-31:before{content:"\ec0e"}.nc-glyph-cloud-fog-32:before{content:"\ec0f"}.nc-glyph-cloud-hail:before{content:"\ec10"}.nc-glyph-cloud-light:before{content:"\ec11"}.nc-glyph-cloud-moon:before{content:"\ec12"}.nc-glyph-cloud-rain:before{content:"\ec13"}.nc-glyph-cloud-rainbow:before{content:"\ec14"}.nc-glyph-cloud-snow-34:before{content:"\ec15"}.nc-glyph-cloud-snow-42:before{content:"\ec16"}.nc-glyph-cloud-sun-17:before{content:"\ec17"}.nc-glyph-cloud-sun-19:before{content:"\ec18"}.nc-glyph-cloud-upload-94:before{content:"\ec19"}.nc-glyph-cloud-upload-96:before{content:"\ec1a"}.nc-glyph-cloud:before{content:"\ec1b"}.nc-glyph-clover:before{content:"\ec1c"}.nc-glyph-coat-hanger:before{content:"\ec1d"}.nc-glyph-coat:before{content:"\ec1e"}.nc-glyph-cockade:before{content:"\ec1f"}.nc-glyph-cocktail:before{content:"\ec20"}.nc-glyph-code-editor:before{content:"\ec21"}.nc-glyph-code:before{content:"\ec22"}.nc-glyph-coffe-long:before{content:"\ec23"}.nc-glyph-coffee-2:before{content:"\ec24"}.nc-glyph-coffee-bean:before{content:"\ec25"}.nc-glyph-coffee-long:before{content:"\ec26"}.nc-glyph-coffee:before{content:"\ec27"}.nc-glyph-coffin:before{content:"\ec28"}.nc-glyph-coins:before{content:"\ec29"}.nc-glyph-collar:before{content:"\ec2a"}.nc-glyph-collection:before{content:"\ec2b"}.nc-glyph-color:before{content:"\ec2c"}.nc-glyph-command:before{content:"\ec2d"}.nc-glyph-comment-add:before{content:"\ec2e"}.nc-glyph-compare:before{content:"\ec2f"}.nc-glyph-compass-04:before{content:"\ec30"}.nc-glyph-compass-05:before{content:"\ec31"}.nc-glyph-compass-06:before{content:"\ec32"}.nc-glyph-compass-2:before{content:"\ec33"}.nc-glyph-compass-3:before{content:"\ec34"}.nc-glyph-compass:before{content:"\ec35"}.nc-glyph-components:before{content:"\ec36"}.nc-glyph-computer-monitor:before{content:"\ec37"}.nc-glyph-computer-old:before{content:"\ec38"}.nc-glyph-computer-upload:before{content:"\ec39"}.nc-glyph-computer:before{content:"\ec3a"}.nc-glyph-cone:before{content:"\ec3b"}.nc-glyph-connect:before{content:"\ec3c"}.nc-glyph-connection:before{content:"\ec3d"}.nc-glyph-contacts-2:before{content:"\ec3e"}.nc-glyph-contacts-44:before{content:"\ec3f"}.nc-glyph-contacts-45:before{content:"\ec40"}.nc-glyph-contacts:before{content:"\ec41"}.nc-glyph-contrast-2:before{content:"\ec42"}.nc-glyph-contrast:before{content:"\ec43"}.nc-glyph-controller-2:before{content:"\ec44"}.nc-glyph-controller-3:before{content:"\ec45"}.nc-glyph-controller:before{content:"\ec46"}.nc-glyph-conversion:before{content:"\ec47"}.nc-glyph-cookies:before{content:"\ec48"}.nc-glyph-copy-2:before{content:"\ec49"}.nc-glyph-copy:before{content:"\ec4a"}.nc-glyph-corn:before{content:"\ec4b"}.nc-glyph-corner-down-round:before{content:"\ec4c"}.nc-glyph-corner-down:before{content:"\ec4d"}.nc-glyph-corner-left-down:before{content:"\ec4e"}.nc-glyph-corner-left-round:before{content:"\ec4f"}.nc-glyph-corner-left:before{content:"\ec50"}.nc-glyph-corner-right-down:before{content:"\ec51"}.nc-glyph-corner-right-round:before{content:"\ec52"}.nc-glyph-corner-right:before{content:"\ec53"}.nc-glyph-corner-up-left:before{content:"\ec54"}.nc-glyph-corner-up-right:before{content:"\ec55"}.nc-glyph-corner-up-round:before{content:"\ec56"}.nc-glyph-corner-up:before{content:"\ec57"}.nc-glyph-corset:before{content:"\ec58"}.nc-glyph-countdown-34:before{content:"\ec59"}.nc-glyph-countdown-35:before{content:"\ec5a"}.nc-glyph-couple-gay:before{content:"\ec5b"}.nc-glyph-couple-lesbian:before{content:"\ec5c"}.nc-glyph-coupon:before{content:"\ec5d"}.nc-glyph-course:before{content:"\ec5e"}.nc-glyph-cow:before{content:"\ec5f"}.nc-glyph-crab:before{content:"\ec60"}.nc-glyph-cradle:before{content:"\ec61"}.nc-glyph-credit-card-in:before{content:"\ec62"}.nc-glyph-credit-card:before{content:"\ec63"}.nc-glyph-credit-locked:before{content:"\ec64"}.nc-glyph-crepe:before{content:"\ec65"}.nc-glyph-cricket:before{content:"\ec66"}.nc-glyph-croissant:before{content:"\ec67"}.nc-glyph-crop:before{content:"\ec68"}.nc-glyph-cross-down:before{content:"\ec69"}.nc-glyph-cross-horizontal:before{content:"\ec6a"}.nc-glyph-cross-left:before{content:"\ec6b"}.nc-glyph-cross-right:before{content:"\ec6c"}.nc-glyph-cross-up:before{content:"\ec6d"}.nc-glyph-cross-vertical:before{content:"\ec6e"}.nc-glyph-cross:before{content:"\ec6f"}.nc-glyph-crosshair:before{content:"\ec70"}.nc-glyph-crown:before{content:"\ec71"}.nc-glyph-crumpet:before{content:"\ec72"}.nc-glyph-cry-15:before{content:"\ec73"}.nc-glyph-cry-57:before{content:"\ec74"}.nc-glyph-css3:before{content:"\ec75"}.nc-glyph-cupcake:before{content:"\ec76"}.nc-glyph-currency-dollar:before{content:"\ec77"}.nc-glyph-currency-euro:before{content:"\ec78"}.nc-glyph-currency-exchange:before{content:"\ec79"}.nc-glyph-currency-pound:before{content:"\ec7a"}.nc-glyph-currency-yen:before{content:"\ec7b"}.nc-glyph-cursor-48:before{content:"\ec7c"}.nc-glyph-cursor-49:before{content:"\ec7d"}.nc-glyph-cursor-add:before{content:"\ec7e"}.nc-glyph-cursor-grab:before{content:"\ec7f"}.nc-glyph-cursor-load:before{content:"\ec80"}.nc-glyph-cursor-menu:before{content:"\ec81"}.nc-glyph-cursor-not-allowed:before{content:"\ec82"}.nc-glyph-cursor-pointer:before{content:"\ec83"}.nc-glyph-cursor-text:before{content:"\ec84"}.nc-glyph-curtain:before{content:"\ec85"}.nc-glyph-curve-circuit:before{content:"\ec86"}.nc-glyph-curve-directions:before{content:"\ec87"}.nc-glyph-curve-split:before{content:"\ec88"}.nc-glyph-curved-next:before{content:"\ec89"}.nc-glyph-curved-previous:before{content:"\ec8a"}.nc-glyph-customer-support:before{content:"\ec8b"}.nc-glyph-cut:before{content:"\ec8c"}.nc-glyph-cute:before{content:"\ec8d"}.nc-glyph-cutlery-75:before{content:"\ec8e"}.nc-glyph-cutlery-76:before{content:"\ec8f"}.nc-glyph-cutlery-77:before{content:"\ec90"}.nc-glyph-cutlery:before{content:"\ec91"}.nc-glyph-cyclist:before{content:"\ec92"}.nc-glyph-dart:before{content:"\ec93"}.nc-glyph-dashboard-29:before{content:"\ec94"}.nc-glyph-dashboard-30:before{content:"\ec95"}.nc-glyph-dashboard-half:before{content:"\ec96"}.nc-glyph-dashboard-level:before{content:"\ec97"}.nc-glyph-database:before{content:"\ec98"}.nc-glyph-dead-hand:before{content:"\ec99"}.nc-glyph-decoration:before{content:"\ec9a"}.nc-glyph-deer:before{content:"\ec9b"}.nc-glyph-delete-28:before{content:"\ec9c"}.nc-glyph-delete-30:before{content:"\ec9d"}.nc-glyph-delete-49:before{content:"\ec9e"}.nc-glyph-delete-50:before{content:"\ec9f"}.nc-glyph-delivery-2:before{content:"\eca0"}.nc-glyph-delivery-3:before{content:"\eca1"}.nc-glyph-delivery-fast:before{content:"\eca2"}.nc-glyph-delivery-time:before{content:"\eca3"}.nc-glyph-delivery-track:before{content:"\eca4"}.nc-glyph-delivery:before{content:"\eca5"}.nc-glyph-design-system:before{content:"\eca6"}.nc-glyph-design:before{content:"\eca7"}.nc-glyph-desk-drawer:before{content:"\eca8"}.nc-glyph-desk:before{content:"\eca9"}.nc-glyph-desktop-screen:before{content:"\ecaa"}.nc-glyph-desktop:before{content:"\ecab"}.nc-glyph-detox:before{content:"\ecac"}.nc-glyph-dev:before{content:"\ecad"}.nc-glyph-device-connection:before{content:"\ecae"}.nc-glyph-devil:before{content:"\ecaf"}.nc-glyph-diag-bottom-left:before{content:"\ecb0"}.nc-glyph-diag-bottom-right:before{content:"\ecb1"}.nc-glyph-diag-top-left:before{content:"\ecb2"}.nc-glyph-diag-top-right:before{content:"\ecb3"}.nc-glyph-diamond:before{content:"\ecb4"}.nc-glyph-dice:before{content:"\ecb5"}.nc-glyph-diet-plan:before{content:"\ecb6"}.nc-glyph-diet:before{content:"\ecb7"}.nc-glyph-direction-53:before{content:"\ecb8"}.nc-glyph-direction-56:before{content:"\ecb9"}.nc-glyph-direction:before{content:"\ecba"}.nc-glyph-directions:before{content:"\ecbb"}.nc-glyph-disabled:before{content:"\ecbc"}.nc-glyph-discord:before{content:"\ecbd"}.nc-glyph-discount-2:before{content:"\ecbe"}.nc-glyph-discount:before{content:"\ecbf"}.nc-glyph-disgusted:before{content:"\ecc0"}.nc-glyph-dish:before{content:"\ecc1"}.nc-glyph-dishwasher:before{content:"\ecc2"}.nc-glyph-disk-2:before{content:"\ecc3"}.nc-glyph-disk-reader:before{content:"\ecc4"}.nc-glyph-disk:before{content:"\ecc5"}.nc-glyph-disperse:before{content:"\ecc6"}.nc-glyph-distribute-horizontal:before{content:"\ecc7"}.nc-glyph-distribute-vertical:before{content:"\ecc8"}.nc-glyph-divider:before{content:"\ecc9"}.nc-glyph-dna-27:before{content:"\ecca"}.nc-glyph-dna-38:before{content:"\eccb"}.nc-glyph-dock-bottom:before{content:"\eccc"}.nc-glyph-dock-left:before{content:"\eccd"}.nc-glyph-dock-right:before{content:"\ecce"}.nc-glyph-dock-top:before{content:"\eccf"}.nc-glyph-dock:before{content:"\ecd0"}.nc-glyph-doctor:before{content:"\ecd1"}.nc-glyph-dog-house:before{content:"\ecd2"}.nc-glyph-dog:before{content:"\ecd3"}.nc-glyph-donut:before{content:"\ecd4"}.nc-glyph-door:before{content:"\ecd5"}.nc-glyph-dots-05:before{content:"\ecd6"}.nc-glyph-dots-06:before{content:"\ecd7"}.nc-glyph-dots-07:before{content:"\ecd8"}.nc-glyph-dots-download:before{content:"\ecd9"}.nc-glyph-dots-upload:before{content:"\ecda"}.nc-glyph-dots:before{content:"\ecdb"}.nc-glyph-double-left:before{content:"\ecdc"}.nc-glyph-double-right:before{content:"\ecdd"}.nc-glyph-double-tap:before{content:"\ecde"}.nc-glyph-download-2:before{content:"\ecdf"}.nc-glyph-download-3:before{content:"\ece0"}.nc-glyph-download:before{content:"\ece1"}.nc-glyph-drag-21:before{content:"\ece2"}.nc-glyph-drag-31:before{content:"\ece3"}.nc-glyph-drag-down:before{content:"\ece4"}.nc-glyph-drag-left:before{content:"\ece5"}.nc-glyph-drag-right:before{content:"\ece6"}.nc-glyph-drag-up:before{content:"\ece7"}.nc-glyph-drag:before{content:"\ece8"}.nc-glyph-drawer-2:before{content:"\ece9"}.nc-glyph-drawer:before{content:"\ecea"}.nc-glyph-dress-man:before{content:"\eceb"}.nc-glyph-dress-woman:before{content:"\ecec"}.nc-glyph-drink-2:before{content:"\ecee"}.nc-glyph-drink-list:before{content:"\eced"}.nc-glyph-drink:before{content:"\ecef"}.nc-glyph-drop-15:before{content:"\ecf0"}.nc-glyph-drop:before{content:"\ecf1"}.nc-glyph-drops:before{content:"\ecf3"}.nc-glyph-dumbbells:before{content:"\ecf2"}.nc-glyph-eclipse:before{content:"\ecf4"}.nc-glyph-edit-2:before{content:"\ecf5"}.nc-glyph-edit-71:before{content:"\ecf6"}.nc-glyph-edit-72:before{content:"\ecf7"}.nc-glyph-edit-73:before{content:"\ecf8"}.nc-glyph-edit-74:before{content:"\ecf9"}.nc-glyph-edit-75:before{content:"\ecfa"}.nc-glyph-edit-76:before{content:"\ecfb"}.nc-glyph-edit-77:before{content:"\ecfc"}.nc-glyph-edit-78:before{content:"\ecfd"}.nc-glyph-edit-color:before{content:"\ecfe"}.nc-glyph-edit-contrast-42:before{content:"\ecff"}.nc-glyph-edit-contrast-43:before{content:"\ed00"}.nc-glyph-edit-saturation:before{content:"\ed01"}.nc-glyph-edit:before{content:"\ed02"}.nc-glyph-egg-38:before{content:"\ed03"}.nc-glyph-egg-39:before{content:"\ed04"}.nc-glyph-egg:before{content:"\ed05"}.nc-glyph-eject:before{content:"\ed06"}.nc-glyph-email-83:before{content:"\ed07"}.nc-glyph-email-84:before{content:"\ed08"}.nc-glyph-email-85:before{content:"\ed09"}.nc-glyph-energy-drink-2:before{content:"\ed0a"}.nc-glyph-energy-drink:before{content:"\ed0b"}.nc-glyph-energy-supplement:before{content:"\ed0c"}.nc-glyph-energy:before{content:"\ed0d"}.nc-glyph-engine-start:before{content:"\ed0e"}.nc-glyph-engine:before{content:"\ed0f"}.nc-glyph-enlarge-45:before{content:"\ed10"}.nc-glyph-enlarge-46:before{content:"\ed11"}.nc-glyph-enlarge-57:before{content:"\ed12"}.nc-glyph-enlarge-58:before{content:"\ed13"}.nc-glyph-enlarge-59:before{content:"\ed14"}.nc-glyph-enlarge-circle:before{content:"\ed15"}.nc-glyph-enlarge-diagonal-43:before{content:"\ed16"}.nc-glyph-enlarge-diagonal-44:before{content:"\ed17"}.nc-glyph-enlarge-horizontal:before{content:"\ed18"}.nc-glyph-enlarge-vertical:before{content:"\ed19"}.nc-glyph-eraser-32:before{content:"\ed1a"}.nc-glyph-eraser-33:before{content:"\ed1b"}.nc-glyph-eraser-46:before{content:"\ed1c"}.nc-glyph-event-confirm:before{content:"\ed1d"}.nc-glyph-event-create:before{content:"\ed1e"}.nc-glyph-exchange:before{content:"\ed1f"}.nc-glyph-exclamation:before{content:"\ed20"}.nc-glyph-explore-2:before{content:"\ed21"}.nc-glyph-explore-user:before{content:"\ed22"}.nc-glyph-explore:before{content:"\ed23"}.nc-glyph-export:before{content:"\ed24"}.nc-glyph-eye-17:before{content:"\ed25"}.nc-glyph-eye-19:before{content:"\ed26"}.nc-glyph-eye-ban-18:before{content:"\ed27"}.nc-glyph-eye-ban-20:before{content:"\ed28"}.nc-glyph-factory:before{content:"\ed29"}.nc-glyph-fahrenheit:before{content:"\ed2a"}.nc-glyph-family:before{content:"\ed2b"}.nc-glyph-fat-add:before{content:"\ed2c"}.nc-glyph-fat-delete:before{content:"\ed2d"}.nc-glyph-fat-remove:before{content:"\ed2e"}.nc-glyph-fav-remove:before{content:"\ed2f"}.nc-glyph-favourite-28:before{content:"\ed30"}.nc-glyph-favourite-31:before{content:"\ed31"}.nc-glyph-favourite-add-29:before{content:"\ed32"}.nc-glyph-favourite-add-32:before{content:"\ed33"}.nc-glyph-favourite-remove-30:before{content:"\ed34"}.nc-glyph-favourite-remove-33:before{content:"\ed35"}.nc-glyph-fencing:before{content:"\ed36"}.nc-glyph-file-add:before{content:"\ed37"}.nc-glyph-file-delete:before{content:"\ed38"}.nc-glyph-file-download-87:before{content:"\ed39"}.nc-glyph-file-download-89:before{content:"\ed3a"}.nc-glyph-file-download-94:before{content:"\ed3b"}.nc-glyph-file-upload-86:before{content:"\ed3c"}.nc-glyph-file-upload-88:before{content:"\ed3d"}.nc-glyph-file-upload-93:before{content:"\ed3e"}.nc-glyph-filter-check:before{content:"\ed3f"}.nc-glyph-filter-organization:before{content:"\ed40"}.nc-glyph-filter-remove:before{content:"\ed41"}.nc-glyph-filter:before{content:"\ed42"}.nc-glyph-fire:before{content:"\ed43"}.nc-glyph-firewall:before{content:"\ed44"}.nc-glyph-fish:before{content:"\ed45"}.nc-glyph-fishbone:before{content:"\ed46"}.nc-glyph-fishing:before{content:"\ed47"}.nc-glyph-fist:before{content:"\ed48"}.nc-glyph-fit-horizontal:before{content:"\ed49"}.nc-glyph-fit-vertical:before{content:"\ed4a"}.nc-glyph-flag-complex:before{content:"\ed4b"}.nc-glyph-flag-diagonal-33:before{content:"\ed4c"}.nc-glyph-flag-diagonal-34:before{content:"\ed4d"}.nc-glyph-flag-finish:before{content:"\ed4e"}.nc-glyph-flag-points-31:before{content:"\ed4f"}.nc-glyph-flag-points-32:before{content:"\ed50"}.nc-glyph-flag-simple:before{content:"\ed51"}.nc-glyph-flag-triangle:before{content:"\ed52"}.nc-glyph-flag:before{content:"\ed53"}.nc-glyph-flame:before{content:"\ed54"}.nc-glyph-flash-21:before{content:"\ed55"}.nc-glyph-flash-24:before{content:"\ed56"}.nc-glyph-flash-29:before{content:"\ed57"}.nc-glyph-flash-auto-22:before{content:"\ed58"}.nc-glyph-flash-auto-25:before{content:"\ed59"}.nc-glyph-flash-off-23:before{content:"\ed5a"}.nc-glyph-flash-off-26:before{content:"\ed5b"}.nc-glyph-flask-2:before{content:"\ed5c"}.nc-glyph-flask:before{content:"\ed5d"}.nc-glyph-flick-down:before{content:"\ed5e"}.nc-glyph-flick-left:before{content:"\ed5f"}.nc-glyph-flick-right:before{content:"\ed60"}.nc-glyph-flick-up:before{content:"\ed61"}.nc-glyph-flip-horizontal:before{content:"\ed63"}.nc-glyph-flip-vertical:before{content:"\ed62"}.nc-glyph-flip:before{content:"\ed64"}.nc-glyph-flower-05:before{content:"\ed66"}.nc-glyph-flower-06:before{content:"\ed65"}.nc-glyph-flower-07:before{content:"\ed67"}.nc-glyph-focus-32:before{content:"\ed68"}.nc-glyph-focus-38:before{content:"\ed69"}.nc-glyph-focus-40:before{content:"\ed6a"}.nc-glyph-focus-circle:before{content:"\ed6b"}.nc-glyph-focus:before{content:"\ed6c"}.nc-glyph-fog:before{content:"\ed6d"}.nc-glyph-folder-13:before{content:"\ed6e"}.nc-glyph-folder-14:before{content:"\ed6f"}.nc-glyph-folder-15:before{content:"\ed70"}.nc-glyph-folder-16:before{content:"\ed73"}.nc-glyph-folder-17:before{content:"\ed71"}.nc-glyph-folder-18:before{content:"\ed72"}.nc-glyph-folder-19:before{content:"\ed74"}.nc-glyph-folder-add:before{content:"\ed75"}.nc-glyph-folder-audio:before{content:"\ed76"}.nc-glyph-folder-bookmark:before{content:"\ed77"}.nc-glyph-folder-chart-bar:before{content:"\ed78"}.nc-glyph-folder-chart-pie:before{content:"\ed79"}.nc-glyph-folder-check:before{content:"\ed7a"}.nc-glyph-folder-cloud:before{content:"\ed7b"}.nc-glyph-folder-dev:before{content:"\ed7c"}.nc-glyph-folder-download:before{content:"\ed7d"}.nc-glyph-folder-edit:before{content:"\ed7e"}.nc-glyph-folder-exclamation:before{content:"\ed7f"}.nc-glyph-folder-gallery:before{content:"\ed80"}.nc-glyph-folder-heart:before{content:"\ed81"}.nc-glyph-folder-image:before{content:"\ed82"}.nc-glyph-folder-info:before{content:"\ed83"}.nc-glyph-folder-link:before{content:"\ed84"}.nc-glyph-folder-locked:before{content:"\ed85"}.nc-glyph-folder-money:before{content:"\ed86"}.nc-glyph-folder-music:before{content:"\ed87"}.nc-glyph-folder-no-access:before{content:"\ed88"}.nc-glyph-folder-play:before{content:"\ed89"}.nc-glyph-folder-question:before{content:"\ed8a"}.nc-glyph-folder-refresh:before{content:"\ed8b"}.nc-glyph-folder-remove:before{content:"\ed8c"}.nc-glyph-folder-search:before{content:"\ed8d"}.nc-glyph-folder-settings-81:before{content:"\ed8e"}.nc-glyph-folder-settings-97:before{content:"\ed8f"}.nc-glyph-folder-shared:before{content:"\ed90"}.nc-glyph-folder-star:before{content:"\ed91"}.nc-glyph-folder-time:before{content:"\ed92"}.nc-glyph-folder-upload:before{content:"\ed93"}.nc-glyph-folder-user:before{content:"\ed94"}.nc-glyph-folder-vector:before{content:"\ed95"}.nc-glyph-food-dog:before{content:"\ed96"}.nc-glyph-food-scale:before{content:"\ed97"}.nc-glyph-food:before{content:"\ed98"}.nc-glyph-football-headguard:before{content:"\ed99"}.nc-glyph-forecast:before{content:"\ed9a"}.nc-glyph-forest:before{content:"\ed9b"}.nc-glyph-fork-round:before{content:"\ed9c"}.nc-glyph-fork:before{content:"\ed9d"}.nc-glyph-form:before{content:"\ed9e"}.nc-glyph-format-left:before{content:"\ed9f"}.nc-glyph-format-right:before{content:"\eda0"}.nc-glyph-forward:before{content:"\eda1"}.nc-glyph-frame-12:before{content:"\eda2"}.nc-glyph-frame-41:before{content:"\eda3"}.nc-glyph-frame:before{content:"\eda4"}.nc-glyph-frankenstein:before{content:"\eda5"}.nc-glyph-fridge:before{content:"\eda6"}.nc-glyph-fuel-2:before{content:"\eda7"}.nc-glyph-fuel-electric:before{content:"\eda8"}.nc-glyph-fuel:before{content:"\eda9"}.nc-glyph-full-screen:before{content:"\edaa"}.nc-glyph-fullscreen-70:before{content:"\edab"}.nc-glyph-fullscreen-71:before{content:"\edac"}.nc-glyph-fullscreen-76:before{content:"\edad"}.nc-glyph-fullscreen-77:before{content:"\edae"}.nc-glyph-fullscreen-double-74:before{content:"\edaf"}.nc-glyph-fullscreen-double-75:before{content:"\edb0"}.nc-glyph-fullscreen-split-72:before{content:"\edb1"}.nc-glyph-fullscreen-split-73:before{content:"\edb2"}.nc-glyph-fullsize:before{content:"\edb3"}.nc-glyph-funnel-39:before{content:"\edb4"}.nc-glyph-funnel-40:before{content:"\edb5"}.nc-glyph-funnel-41:before{content:"\edb6"}.nc-glyph-gallery:before{content:"\edb7"}.nc-glyph-gantt:before{content:"\edb8"}.nc-glyph-garlic:before{content:"\edb9"}.nc-glyph-ghost-2:before{content:"\edba"}.nc-glyph-ghost:before{content:"\edbb"}.nc-glyph-gift-2:before{content:"\edbc"}.nc-glyph-gift-exchange:before{content:"\edbd"}.nc-glyph-gift:before{content:"\edbe"}.nc-glyph-git-commit:before{content:"\edbf"}.nc-glyph-glass-water:before{content:"\edc0"}.nc-glyph-glass:before{content:"\edc1"}.nc-glyph-glasses-2:before{content:"\edc2"}.nc-glyph-glasses:before{content:"\edc3"}.nc-glyph-globe-2:before{content:"\edc4"}.nc-glyph-globe:before{content:"\edc5"}.nc-glyph-glove:before{content:"\edc6"}.nc-glyph-gloves:before{content:"\edc7"}.nc-glyph-goal-64:before{content:"\edc8"}.nc-glyph-goal-65:before{content:"\edc9"}.nc-glyph-gold:before{content:"\edca"}.nc-glyph-golf:before{content:"\edcb"}.nc-glyph-gps:before{content:"\edcc"}.nc-glyph-grab:before{content:"\edcd"}.nc-glyph-gradient:before{content:"\edce"}.nc-glyph-grammar-check:before{content:"\edcf"}.nc-glyph-grape:before{content:"\edd0"}.nc-glyph-grave:before{content:"\edd1"}.nc-glyph-grid-45:before{content:"\edd2"}.nc-glyph-grid-46:before{content:"\edd3"}.nc-glyph-grid-48:before{content:"\edd4"}.nc-glyph-grid-49:before{content:"\edd5"}.nc-glyph-grid-50:before{content:"\edd6"}.nc-glyph-grid-square:before{content:"\edd7"}.nc-glyph-grid-system:before{content:"\edd8"}.nc-glyph-grid:before{content:"\edd9"}.nc-glyph-group:before{content:"\edda"}.nc-glyph-guitar:before{content:"\eddb"}.nc-glyph-hammer:before{content:"\eddc"}.nc-glyph-hand-card:before{content:"\eddd"}.nc-glyph-handout:before{content:"\edde"}.nc-glyph-handshake:before{content:"\eddf"}.nc-glyph-hanger-clothes:before{content:"\ede0"}.nc-glyph-hanger:before{content:"\ede1"}.nc-glyph-hannibal:before{content:"\ede2"}.nc-glyph-happy-sun:before{content:"\ede3"}.nc-glyph-hat-2:before{content:"\ede4"}.nc-glyph-hat-3:before{content:"\ede5"}.nc-glyph-hat-top:before{content:"\ede6"}.nc-glyph-hat:before{content:"\ede7"}.nc-glyph-hazelnut:before{content:"\ede8"}.nc-glyph-hdmi:before{content:"\ede9"}.nc-glyph-headphone:before{content:"\edea"}.nc-glyph-headphones-2:before{content:"\edeb"}.nc-glyph-headphones-mic:before{content:"\edec"}.nc-glyph-headphones:before{content:"\eded"}.nc-glyph-headset:before{content:"\edee"}.nc-glyph-heart-2:before{content:"\edef"}.nc-glyph-heart-add:before{content:"\edf0"}.nc-glyph-heart-remove:before{content:"\edf1"}.nc-glyph-heart:before{content:"\edf2"}.nc-glyph-heartbeat:before{content:"\edf3"}.nc-glyph-heater:before{content:"\edf4"}.nc-glyph-height:before{content:"\edf5"}.nc-glyph-helicopter:before{content:"\edf6"}.nc-glyph-helmet-2:before{content:"\edf7"}.nc-glyph-helmet:before{content:"\edf8"}.nc-glyph-hierarchy-53:before{content:"\edf9"}.nc-glyph-hierarchy-54:before{content:"\edfa"}.nc-glyph-hierarchy-55:before{content:"\edfb"}.nc-glyph-hierarchy-56:before{content:"\edfc"}.nc-glyph-hit-down:before{content:"\edfd"}.nc-glyph-hit-left:before{content:"\edfe"}.nc-glyph-hit-right:before{content:"\edff"}.nc-glyph-hit-up:before{content:"\ee00"}.nc-glyph-hob:before{content:"\ee01"}.nc-glyph-hockey:before{content:"\ee02"}.nc-glyph-hold:before{content:"\ee03"}.nc-glyph-home-2:before{content:"\ee04"}.nc-glyph-home-51:before{content:"\ee05"}.nc-glyph-home-52:before{content:"\ee06"}.nc-glyph-home-minimal:before{content:"\ee07"}.nc-glyph-home-search:before{content:"\ee08"}.nc-glyph-home-simple:before{content:"\ee09"}.nc-glyph-home:before{content:"\ee0a"}.nc-glyph-honey:before{content:"\ee0b"}.nc-glyph-hoodie:before{content:"\ee0c"}.nc-glyph-hospital-32:before{content:"\ee0d"}.nc-glyph-hospital-33:before{content:"\ee0e"}.nc-glyph-hospital-34:before{content:"\ee0f"}.nc-glyph-hot-dog:before{content:"\ee10"}.nc-glyph-hotel-bell:before{content:"\ee11"}.nc-glyph-hotel-symbol:before{content:"\ee12"}.nc-glyph-hotel:before{content:"\ee13"}.nc-glyph-hourglass:before{content:"\ee14"}.nc-glyph-html5:before{content:"\ee15"}.nc-glyph-humidity-26:before{content:"\ee16"}.nc-glyph-humidity-52:before{content:"\ee17"}.nc-glyph-hurricane-44:before{content:"\ee18"}.nc-glyph-hurricane-45:before{content:"\ee19"}.nc-glyph-hut:before{content:"\ee1a"}.nc-glyph-hybrid:before{content:"\ee1b"}.nc-glyph-ice-cream-22:before{content:"\ee1c"}.nc-glyph-ice-cream-72:before{content:"\ee1d"}.nc-glyph-ice-cream:before{content:"\ee1e"}.nc-glyph-igloo:before{content:"\ee1f"}.nc-glyph-image-01:before{content:"\ee20"}.nc-glyph-image-02:before{content:"\ee21"}.nc-glyph-image-05:before{content:"\ee22"}.nc-glyph-image-2:before{content:"\ee23"}.nc-glyph-image-3:before{content:"\ee24"}.nc-glyph-image-add:before{content:"\ee25"}.nc-glyph-image-delete:before{content:"\ee26"}.nc-glyph-image-location:before{content:"\ee27"}.nc-glyph-image:before{content:"\ee28"}.nc-glyph-infinite:before{content:"\ee29"}.nc-glyph-info:before{content:"\ee2a"}.nc-glyph-input-12:before{content:"\ee2b"}.nc-glyph-input-21:before{content:"\ee2c"}.nc-glyph-intestine:before{content:"\ee2d"}.nc-glyph-invert:before{content:"\ee2e"}.nc-glyph-iron-2:before{content:"\ee2f"}.nc-glyph-iron-dont:before{content:"\ee30"}.nc-glyph-iron:before{content:"\ee31"}.nc-glyph-istanbul:before{content:"\ee32"}.nc-glyph-italic:before{content:"\ee33"}.nc-glyph-jam:before{content:"\ee34"}.nc-glyph-jeans-41:before{content:"\ee35"}.nc-glyph-jeans-43:before{content:"\ee36"}.nc-glyph-jeans-pocket:before{content:"\ee37"}.nc-glyph-jelly:before{content:"\ee38"}.nc-glyph-jellyfish:before{content:"\ee39"}.nc-glyph-journey-04:before{content:"\ee3a"}.nc-glyph-journey-05:before{content:"\ee3b"}.nc-glyph-journey-06:before{content:"\ee3c"}.nc-glyph-journey-07:before{content:"\ee3d"}.nc-glyph-journey-08:before{content:"\ee3e"}.nc-glyph-juice:before{content:"\ee3f"}.nc-glyph-kettle:before{content:"\ee40"}.nc-glyph-kettlebell:before{content:"\ee41"}.nc-glyph-key-25:before{content:"\ee42"}.nc-glyph-key-26:before{content:"\ee43"}.nc-glyph-keyboard-hide:before{content:"\ee44"}.nc-glyph-keyboard-mouse:before{content:"\ee45"}.nc-glyph-keyboard-wifi:before{content:"\ee46"}.nc-glyph-keyboard-wireless:before{content:"\ee47"}.nc-glyph-keyboard:before{content:"\ee48"}.nc-glyph-kid-2:before{content:"\ee49"}.nc-glyph-kid:before{content:"\ee4a"}.nc-glyph-kiss:before{content:"\ee4b"}.nc-glyph-kitchen-fan:before{content:"\ee4c"}.nc-glyph-kitchen:before{content:"\ee4d"}.nc-glyph-kiwi:before{content:"\ee4e"}.nc-glyph-knife:before{content:"\ee4f"}.nc-glyph-knob:before{content:"\ee50"}.nc-glyph-l-add:before{content:"\ee51"}.nc-glyph-l-check:before{content:"\ee52"}.nc-glyph-l-circle:before{content:"\ee53"}.nc-glyph-l-circles:before{content:"\ee54"}.nc-glyph-l-location:before{content:"\ee55"}.nc-glyph-l-remove:before{content:"\ee56"}.nc-glyph-l-search:before{content:"\ee57"}.nc-glyph-l-security:before{content:"\ee58"}.nc-glyph-l-settings:before{content:"\ee59"}.nc-glyph-l-sync:before{content:"\ee5a"}.nc-glyph-l-system-update:before{content:"\ee5b"}.nc-glyph-lab:before{content:"\ee5c"}.nc-glyph-lamp-2:before{content:"\ee5d"}.nc-glyph-lamp-3:before{content:"\ee5e"}.nc-glyph-lamp-floor:before{content:"\ee5f"}.nc-glyph-lamp:before{content:"\ee60"}.nc-glyph-language:before{content:"\ee61"}.nc-glyph-laptop-1:before{content:"\ee62"}.nc-glyph-laptop-2:before{content:"\ee63"}.nc-glyph-laptop-71:before{content:"\ee64"}.nc-glyph-laptop-72:before{content:"\ee65"}.nc-glyph-laptop:before{content:"\ee66"}.nc-glyph-laugh-17:before{content:"\ee67"}.nc-glyph-laugh-35:before{content:"\ee68"}.nc-glyph-launch-11:before{content:"\ee69"}.nc-glyph-launch-47:before{content:"\ee6a"}.nc-glyph-law:before{content:"\ee6b"}.nc-glyph-layers-2:before{content:"\ee6c"}.nc-glyph-layers-3:before{content:"\ee6d"}.nc-glyph-layers:before{content:"\ee6e"}.nc-glyph-layout-11:before{content:"\ee6f"}.nc-glyph-layout-25:before{content:"\ee70"}.nc-glyph-leaf-36:before{content:"\ee71"}.nc-glyph-leaf-38:before{content:"\ee72"}.nc-glyph-leaf-80:before{content:"\ee73"}.nc-glyph-leaf-81:before{content:"\ee74"}.nc-glyph-leaf-edit:before{content:"\ee75"}.nc-glyph-lemon-slice:before{content:"\ee76"}.nc-glyph-lemon:before{content:"\ee77"}.nc-glyph-lens-31:before{content:"\ee78"}.nc-glyph-lens-56:before{content:"\ee79"}.nc-glyph-library:before{content:"\ee7a"}.nc-glyph-light-2:before{content:"\ee7b"}.nc-glyph-light-3:before{content:"\ee7c"}.nc-glyph-light-traffic:before{content:"\ee7d"}.nc-glyph-light:before{content:"\ee7e"}.nc-glyph-lighter:before{content:"\ee7f"}.nc-glyph-lighthouse:before{content:"\ee80"}.nc-glyph-like-2:before{content:"\ee81"}.nc-glyph-like-no:before{content:"\ee82"}.nc-glyph-like:before{content:"\ee83"}.nc-glyph-line-height:before{content:"\ee84"}.nc-glyph-lines:before{content:"\ee85"}.nc-glyph-link-2:before{content:"\ee86"}.nc-glyph-link-66:before{content:"\ee87"}.nc-glyph-link-67:before{content:"\ee88"}.nc-glyph-link-68:before{content:"\ee89"}.nc-glyph-link-69:before{content:"\ee8a"}.nc-glyph-link-71:before{content:"\ee8b"}.nc-glyph-link-72:before{content:"\ee8c"}.nc-glyph-link-broken-70:before{content:"\ee8d"}.nc-glyph-link-broken-73:before{content:"\ee8e"}.nc-glyph-link:before{content:"\ee8f"}.nc-glyph-list-bullet:before{content:"\ee90"}.nc-glyph-list-numbers:before{content:"\ee91"}.nc-glyph-list:before{content:"\ee92"}.nc-glyph-lobster:before{content:"\ee93"}.nc-glyph-lock-circle-open:before{content:"\ee94"}.nc-glyph-lock-circle:before{content:"\ee95"}.nc-glyph-lock-landscape:before{content:"\ee96"}.nc-glyph-lock-open:before{content:"\ee97"}.nc-glyph-lock-portrait:before{content:"\ee98"}.nc-glyph-lock:before{content:"\ee99"}.nc-glyph-locked:before{content:"\ee9a"}.nc-glyph-log-in:before{content:"\ee9b"}.nc-glyph-log-out-2:before{content:"\ee9c"}.nc-glyph-log-out:before{content:"\ee9d"}.nc-glyph-logo-500px:before{content:"\ee9e"}.nc-glyph-logo-angellist:before{content:"\ee9f"}.nc-glyph-logo-behance:before{content:"\eea0"}.nc-glyph-logo-blogger:before{content:"\eea1"}.nc-glyph-logo-buffer:before{content:"\eea2"}.nc-glyph-logo-buysellads:before{content:"\eea3"}.nc-glyph-logo-codepen:before{content:"\eea4"}.nc-glyph-logo-creative-market:before{content:"\eea5"}.nc-glyph-logo-crunchbase:before{content:"\eea6"}.nc-glyph-logo-deviantart:before{content:"\eea7"}.nc-glyph-logo-dribbble:before{content:"\eea8"}.nc-glyph-logo-dropbox:before{content:"\eea9"}.nc-glyph-logo-envato:before{content:"\eeaa"}.nc-glyph-logo-evernote:before{content:"\eeab"}.nc-glyph-logo-facebook:before{content:"\eeac"}.nc-glyph-logo-fb-simple:before{content:"\eead"}.nc-glyph-logo-feedly:before{content:"\eeae"}.nc-glyph-logo-flickr:before{content:"\eeaf"}.nc-glyph-logo-github:before{content:"\eeb0"}.nc-glyph-logo-google-plus:before{content:"\eeb1"}.nc-glyph-logo-instagram:before{content:"\eeb2"}.nc-glyph-logo-lastfm:before{content:"\eeb3"}.nc-glyph-logo-linkedin:before{content:"\eeb4"}.nc-glyph-logo-medium:before{content:"\eeb5"}.nc-glyph-logo-meetup:before{content:"\eeb6"}.nc-glyph-logo-messenger:before{content:"\eeb7"}.nc-glyph-logo-myspace:before{content:"\eeb8"}.nc-glyph-logo-paypal:before{content:"\eeb9"}.nc-glyph-logo-pinterest:before{content:"\eeba"}.nc-glyph-logo-product-hunt:before{content:"\eebb"}.nc-glyph-logo-qq:before{content:"\eebc"}.nc-glyph-logo-reddit:before{content:"\eebd"}.nc-glyph-logo-rss:before{content:"\eebe"}.nc-glyph-logo-shopify:before{content:"\eebf"}.nc-glyph-logo-skype:before{content:"\eec0"}.nc-glyph-logo-slack:before{content:"\eec1"}.nc-glyph-logo-soundcloud:before{content:"\eec2"}.nc-glyph-logo-spotify:before{content:"\eec3"}.nc-glyph-logo-squarespace:before{content:"\eec4"}.nc-glyph-logo-trello:before{content:"\eec5"}.nc-glyph-logo-tumblr:before{content:"\eec6"}.nc-glyph-logo-twitter:before{content:"\eec7"}.nc-glyph-logo-vimeo:before{content:"\eec8"}.nc-glyph-logo-vine:before{content:"\eec9"}.nc-glyph-logo-vk:before{content:"\eeca"}.nc-glyph-logo-wechat:before{content:"\eecb"}.nc-glyph-logo-weibo:before{content:"\eecc"}.nc-glyph-logo-whatsapp:before{content:"\eecd"}.nc-glyph-logo-wikipedia:before{content:"\eece"}.nc-glyph-logo-wordpress:before{content:"\eecf"}.nc-glyph-logo-yelp:before{content:"\eed0"}.nc-glyph-logo-youtube:before{content:"\eed1"}.nc-glyph-logout:before{content:"\eed2"}.nc-glyph-lollipop:before{content:"\eed3"}.nc-glyph-london:before{content:"\eed4"}.nc-glyph-long-sleeve:before{content:"\eed5"}.nc-glyph-loop-30:before{content:"\eed6"}.nc-glyph-loop-34:before{content:"\eed7"}.nc-glyph-loop-82:before{content:"\eed8"}.nc-glyph-loop-83:before{content:"\eed9"}.nc-glyph-loop:before{content:"\eeda"}.nc-glyph-luggage:before{content:"\eedb"}.nc-glyph-lungs:before{content:"\eedc"}.nc-glyph-m-add:before{content:"\eedd"}.nc-glyph-m-check:before{content:"\eede"}.nc-glyph-m-delete:before{content:"\eedf"}.nc-glyph-m-edit:before{content:"\eee0"}.nc-glyph-m-heart:before{content:"\eee1"}.nc-glyph-m-location:before{content:"\eee2"}.nc-glyph-m-remove:before{content:"\eee3"}.nc-glyph-m-search:before{content:"\eee4"}.nc-glyph-m-security:before{content:"\eee5"}.nc-glyph-m-settings:before{content:"\eee6"}.nc-glyph-m-share:before{content:"\eee7"}.nc-glyph-m-star:before{content:"\eee8"}.nc-glyph-m-sync:before{content:"\eee9"}.nc-glyph-m-time:before{content:"\eeea"}.nc-glyph-m-update:before{content:"\eeeb"}.nc-glyph-macro:before{content:"\eeec"}.nc-glyph-mad-12:before{content:"\eeed"}.nc-glyph-mad-58:before{content:"\eeee"}.nc-glyph-magnet:before{content:"\eeef"}.nc-glyph-makeup:before{content:"\eef0"}.nc-glyph-malicious:before{content:"\eef1"}.nc-glyph-man-20:before{content:"\eef2"}.nc-glyph-man-23:before{content:"\eef3"}.nc-glyph-man-down:before{content:"\eef4"}.nc-glyph-man-glasses:before{content:"\eef5"}.nc-glyph-man-up:before{content:"\eef6"}.nc-glyph-man:before{content:"\eef7"}.nc-glyph-manga-62:before{content:"\eef8"}.nc-glyph-manga-63:before{content:"\eef9"}.nc-glyph-map-big:before{content:"\eefa"}.nc-glyph-map-compass:before{content:"\eefb"}.nc-glyph-map-gps:before{content:"\eefc"}.nc-glyph-map-marker:before{content:"\eefd"}.nc-glyph-map-pin:before{content:"\eefe"}.nc-glyph-map:before{content:"\eeff"}.nc-glyph-margin-left:before{content:"\ef00"}.nc-glyph-margin-right:before{content:"\ef01"}.nc-glyph-marker-2:before{content:"\ef02"}.nc-glyph-marker-3:before{content:"\ef03"}.nc-glyph-marker:before{content:"\ef04"}.nc-glyph-market-music:before{content:"\ef05"}.nc-glyph-market-play:before{content:"\ef06"}.nc-glyph-mask-oval:before{content:"\ef07"}.nc-glyph-mask-rect:before{content:"\ef08"}.nc-glyph-matches:before{content:"\ef09"}.nc-glyph-math:before{content:"\ef0a"}.nc-glyph-measure-02:before{content:"\ef0b"}.nc-glyph-measure-17:before{content:"\ef0c"}.nc-glyph-measure-big:before{content:"\ef0d"}.nc-glyph-measuring-cup:before{content:"\ef0e"}.nc-glyph-meat-spit:before{content:"\ef0f"}.nc-glyph-meeting:before{content:"\ef10"}.nc-glyph-menu-34:before{content:"\ef11"}.nc-glyph-menu-35:before{content:"\ef12"}.nc-glyph-menu-bold:before{content:"\ef13"}.nc-glyph-menu-dots:before{content:"\ef14"}.nc-glyph-menu-left:before{content:"\ef15"}.nc-glyph-menu-right:before{content:"\ef16"}.nc-glyph-menu-square:before{content:"\ef17"}.nc-glyph-menu:before{content:"\ef18"}.nc-glyph-merge-2:before{content:"\ef19"}.nc-glyph-merge-round:before{content:"\ef1a"}.nc-glyph-merge:before{content:"\ef1b"}.nc-glyph-message:before{content:"\ef1c"}.nc-glyph-metrics:before{content:"\ef1d"}.nc-glyph-mic-2:before{content:"\ef1e"}.nc-glyph-mic:before{content:"\ef1f"}.nc-glyph-mickey-mouse:before{content:"\ef20"}.nc-glyph-microscope:before{content:"\ef21"}.nc-glyph-microsoft:before{content:"\ef22"}.nc-glyph-microwave:before{content:"\ef23"}.nc-glyph-milk:before{content:"\ef24"}.nc-glyph-minimal-down:before{content:"\ef25"}.nc-glyph-minimal-left:before{content:"\ef26"}.nc-glyph-minimal-right:before{content:"\ef27"}.nc-glyph-minimal-up:before{content:"\ef28"}.nc-glyph-mirror-2:before{content:"\ef29"}.nc-glyph-mirror:before{content:"\ef2a"}.nc-glyph-mistletoe:before{content:"\ef2b"}.nc-glyph-mixer:before{content:"\ef2c"}.nc-glyph-mobile-button:before{content:"\ef2d"}.nc-glyph-mobile-camera:before{content:"\ef2e"}.nc-glyph-mobile-card:before{content:"\ef2f"}.nc-glyph-mobile-contact:before{content:"\ef30"}.nc-glyph-mobile-design:before{content:"\ef31"}.nc-glyph-mobile-dev:before{content:"\ef32"}.nc-glyph-mobile-landscape:before{content:"\ef33"}.nc-glyph-mobile-recharger-08:before{content:"\ef34"}.nc-glyph-mobile-recharger-09:before{content:"\ef35"}.nc-glyph-mobile-toolbar:before{content:"\ef36"}.nc-glyph-mobile:before{content:"\ef37"}.nc-glyph-moka:before{content:"\ef38"}.nc-glyph-molecule-39:before{content:"\ef39"}.nc-glyph-molecule-40:before{content:"\ef3a"}.nc-glyph-molecule:before{content:"\ef3b"}.nc-glyph-money-11:before{content:"\ef3c"}.nc-glyph-money-12:before{content:"\ef3d"}.nc-glyph-money-13:before{content:"\ef3e"}.nc-glyph-money-bag:before{content:"\ef3f"}.nc-glyph-money-coins:before{content:"\ef40"}.nc-glyph-money-growth:before{content:"\ef41"}.nc-glyph-money-time:before{content:"\ef42"}.nc-glyph-money:before{content:"\ef43"}.nc-glyph-monster:before{content:"\ef44"}.nc-glyph-moon-cloud-drop:before{content:"\ef45"}.nc-glyph-moon-cloud-fog:before{content:"\ef46"}.nc-glyph-moon-cloud-hail:before{content:"\ef47"}.nc-glyph-moon-cloud-light:before{content:"\ef48"}.nc-glyph-moon-cloud-rain:before{content:"\ef49"}.nc-glyph-moon-cloud-snow-61:before{content:"\ef4a"}.nc-glyph-moon-cloud-snow-62:before{content:"\ef4b"}.nc-glyph-moon-fog:before{content:"\ef4c"}.nc-glyph-moon-full:before{content:"\ef4d"}.nc-glyph-moon-stars:before{content:"\ef4e"}.nc-glyph-moon:before{content:"\ef4f"}.nc-glyph-mosque:before{content:"\ef50"}.nc-glyph-moto:before{content:"\ef51"}.nc-glyph-mountain:before{content:"\ef52"}.nc-glyph-mouse-08:before{content:"\ef53"}.nc-glyph-mouse-09:before{content:"\ef54"}.nc-glyph-mouse-10:before{content:"\ef55"}.nc-glyph-mouse:before{content:"\ef56"}.nc-glyph-move-05:before{content:"\ef57"}.nc-glyph-move-06:before{content:"\ef58"}.nc-glyph-move-92:before{content:"\ef59"}.nc-glyph-move-down-2:before{content:"\ef5a"}.nc-glyph-move-down-right:before{content:"\ef5b"}.nc-glyph-move-down:before{content:"\ef5c"}.nc-glyph-move-left:before{content:"\ef5d"}.nc-glyph-move-right:before{content:"\ef5e"}.nc-glyph-move-up-2:before{content:"\ef5f"}.nc-glyph-move-up-left:before{content:"\ef60"}.nc-glyph-move-up:before{content:"\ef61"}.nc-glyph-movie-61:before{content:"\ef62"}.nc-glyph-movie-62:before{content:"\ef63"}.nc-glyph-muffin:before{content:"\ef64"}.nc-glyph-mug:before{content:"\ef65"}.nc-glyph-multiple-11:before{content:"\ef66"}.nc-glyph-multiple-19:before{content:"\ef67"}.nc-glyph-multiple:before{content:"\ef68"}.nc-glyph-mushroom:before{content:"\ef69"}.nc-glyph-music-2:before{content:"\ef6a"}.nc-glyph-music-album:before{content:"\ef6b"}.nc-glyph-music-cloud:before{content:"\ef6c"}.nc-glyph-music:before{content:"\ef6d"}.nc-glyph-navigation:before{content:"\ef6e"}.nc-glyph-needle:before{content:"\ef6f"}.nc-glyph-nerd-22:before{content:"\ef70"}.nc-glyph-nerd-23:before{content:"\ef71"}.nc-glyph-net:before{content:"\ef72"}.nc-glyph-network:before{content:"\ef73"}.nc-glyph-new:before{content:"\ef74"}.nc-glyph-newsletter-dev:before{content:"\ef75"}.nc-glyph-newsletter:before{content:"\ef76"}.nc-glyph-night:before{content:"\ef77"}.nc-glyph-ninja:before{content:"\ef78"}.nc-glyph-no-access:before{content:"\ef79"}.nc-glyph-no-words:before{content:"\ef7a"}.nc-glyph-node:before{content:"\ef7b"}.nc-glyph-note-03:before{content:"\ef7c"}.nc-glyph-note-04:before{content:"\ef7d"}.nc-glyph-note-code:before{content:"\ef7e"}.nc-glyph-notebook-2:before{content:"\ef7f"}.nc-glyph-notebook:before{content:"\ef80"}.nc-glyph-notepad:before{content:"\ef81"}.nc-glyph-notes:before{content:"\ef82"}.nc-glyph-notification-69:before{content:"\ef83"}.nc-glyph-notification-70:before{content:"\ef84"}.nc-glyph-nurse:before{content:"\ef85"}.nc-glyph-nutrition:before{content:"\ef86"}.nc-glyph-ny:before{content:"\ef87"}.nc-glyph-octopus:before{content:"\ef88"}.nc-glyph-oil:before{content:"\ef89"}.nc-glyph-onenote:before{content:"\ef8a"}.nc-glyph-onion:before{content:"\ef8b"}.nc-glyph-open-in-browser:before{content:"\ef8c"}.nc-glyph-opening-times:before{content:"\ef8d"}.nc-glyph-orange:before{content:"\ef8e"}.nc-glyph-organic-2:before{content:"\ef8f"}.nc-glyph-organic:before{content:"\ef90"}.nc-glyph-oven:before{content:"\ef91"}.nc-glyph-owl:before{content:"\ef93"}.nc-glyph-p-add:before{content:"\ef92"}.nc-glyph-p-check:before{content:"\ef94"}.nc-glyph-p-edit:before{content:"\ef95"}.nc-glyph-p-heart:before{content:"\ef96"}.nc-glyph-p-location:before{content:"\ef97"}.nc-glyph-p-remove:before{content:"\ef98"}.nc-glyph-p-search:before{content:"\ef99"}.nc-glyph-p-settings:before{content:"\ef9a"}.nc-glyph-p-share:before{content:"\ef9b"}.nc-glyph-p-sync:before{content:"\ef9c"}.nc-glyph-p-system-update:before{content:"\ef9d"}.nc-glyph-p-time:before{content:"\ef9e"}.nc-glyph-paint-16:before{content:"\ef9f"}.nc-glyph-paint-37:before{content:"\efa0"}.nc-glyph-paint-38:before{content:"\efa1"}.nc-glyph-paint-brush:before{content:"\efa2"}.nc-glyph-paint-bucket-39:before{content:"\efa3"}.nc-glyph-paint-bucket-40:before{content:"\efa4"}.nc-glyph-pajamas:before{content:"\efa5"}.nc-glyph-palette:before{content:"\efa6"}.nc-glyph-pan:before{content:"\efa7"}.nc-glyph-pancake:before{content:"\efa8"}.nc-glyph-panda:before{content:"\efa9"}.nc-glyph-panel:before{content:"\efaa"}.nc-glyph-pantone:before{content:"\efab"}.nc-glyph-paper-2:before{content:"\efac"}.nc-glyph-paper-design:before{content:"\efad"}.nc-glyph-paper-dev:before{content:"\efae"}.nc-glyph-paper-diploma:before{content:"\efaf"}.nc-glyph-paper:before{content:"\efb0"}.nc-glyph-paragraph:before{content:"\efb1"}.nc-glyph-parent:before{content:"\efb2"}.nc-glyph-paris-tower:before{content:"\efb3"}.nc-glyph-parking-sensors:before{content:"\efb4"}.nc-glyph-parking:before{content:"\efb5"}.nc-glyph-parrot:before{content:"\efb6"}.nc-glyph-passport:before{content:"\efb7"}.nc-glyph-pasta:before{content:"\efb8"}.nc-glyph-patch-19:before{content:"\efb9"}.nc-glyph-patch-34:before{content:"\efba"}.nc-glyph-patch:before{content:"\efbb"}.nc-glyph-path-exclude:before{content:"\efbc"}.nc-glyph-path-intersect:before{content:"\efbd"}.nc-glyph-path-minus:before{content:"\efbe"}.nc-glyph-path-unite:before{content:"\efbf"}.nc-glyph-paw:before{content:"\efc0"}.nc-glyph-payment:before{content:"\efc1"}.nc-glyph-pci-card:before{content:"\efc2"}.nc-glyph-peanut:before{content:"\efc3"}.nc-glyph-pear:before{content:"\efc4"}.nc-glyph-pen-01:before{content:"\efc5"}.nc-glyph-pen-23:before{content:"\efc6"}.nc-glyph-pen-tool:before{content:"\efc7"}.nc-glyph-pencil-47:before{content:"\efc8"}.nc-glyph-pencil:before{content:"\efc9"}.nc-glyph-penguin:before{content:"\efca"}.nc-glyph-pepper:before{content:"\efcb"}.nc-glyph-percentage-38:before{content:"\efcc"}.nc-glyph-percentage-39:before{content:"\efcd"}.nc-glyph-phone-2:before{content:"\efce"}.nc-glyph-phone-3:before{content:"\efcf"}.nc-glyph-phone-call-end:before{content:"\efd0"}.nc-glyph-phone-call:before{content:"\efd1"}.nc-glyph-phone:before{content:"\efd2"}.nc-glyph-photo-editor:before{content:"\efd3"}.nc-glyph-piano:before{content:"\efd4"}.nc-glyph-pickaxe:before{content:"\efd5"}.nc-glyph-pickle:before{content:"\efd6"}.nc-glyph-picnic-basket:before{content:"\efd7"}.nc-glyph-picture:before{content:"\efd8"}.nc-glyph-pig-2:before{content:"\efd9"}.nc-glyph-pig:before{content:"\efda"}.nc-glyph-pill-42:before{content:"\efdb"}.nc-glyph-pill-43:before{content:"\efdc"}.nc-glyph-pill-container-44:before{content:"\efdd"}.nc-glyph-pill-container-47:before{content:"\efde"}.nc-glyph-pin-2:before{content:"\efdf"}.nc-glyph-pin-3:before{content:"\efe0"}.nc-glyph-pin-4:before{content:"\efe1"}.nc-glyph-pin-add-2:before{content:"\efe2"}.nc-glyph-pin-add:before{content:"\efe3"}.nc-glyph-pin-check:before{content:"\efe4"}.nc-glyph-pin-copy:before{content:"\efe5"}.nc-glyph-pin-delete:before{content:"\efe6"}.nc-glyph-pin-edit:before{content:"\efe7"}.nc-glyph-pin-heart:before{content:"\efe8"}.nc-glyph-pin-remove-2:before{content:"\efe9"}.nc-glyph-pin-remove:before{content:"\efea"}.nc-glyph-pin-search:before{content:"\efeb"}.nc-glyph-pin-security:before{content:"\efec"}.nc-glyph-pin-settings:before{content:"\efed"}.nc-glyph-pin-share:before{content:"\efee"}.nc-glyph-pin-star:before{content:"\efef"}.nc-glyph-pin-sync:before{content:"\eff0"}.nc-glyph-pin-time:before{content:"\eff1"}.nc-glyph-pin-user:before{content:"\eff2"}.nc-glyph-pin:before{content:"\eff3"}.nc-glyph-pinch:before{content:"\eff4"}.nc-glyph-pineapple:before{content:"\eff5"}.nc-glyph-ping-pong:before{content:"\eff6"}.nc-glyph-pins:before{content:"\eff7"}.nc-glyph-pipe:before{content:"\eff8"}.nc-glyph-pirate:before{content:"\eff9"}.nc-glyph-pizza-slice:before{content:"\effa"}.nc-glyph-pizza:before{content:"\effb"}.nc-glyph-plane-17:before{content:"\effc"}.nc-glyph-plane-18:before{content:"\effd"}.nc-glyph-planet:before{content:"\effe"}.nc-glyph-plant-ground:before{content:"\efff"}.nc-glyph-plant-vase:before{content:"\f000"}.nc-glyph-plate:before{content:"\f001"}.nc-glyph-play-68:before{content:"\f002"}.nc-glyph-play-69:before{content:"\f003"}.nc-glyph-play:before{content:"\f004"}.nc-glyph-player-19:before{content:"\f005"}.nc-glyph-player-48:before{content:"\f006"}.nc-glyph-player:before{content:"\f007"}.nc-glyph-playlist:before{content:"\f008"}.nc-glyph-plug:before{content:"\f009"}.nc-glyph-podium-trophy:before{content:"\f00a"}.nc-glyph-podium:before{content:"\f00b"}.nc-glyph-point-a:before{content:"\f00c"}.nc-glyph-point-b:before{content:"\f00d"}.nc-glyph-polaroid-add:before{content:"\f00e"}.nc-glyph-polaroid-delete:before{content:"\f00f"}.nc-glyph-polaroid-multiple:before{content:"\f010"}.nc-glyph-polaroid-user:before{content:"\f011"}.nc-glyph-polaroid:before{content:"\f012"}.nc-glyph-police:before{content:"\f013"}.nc-glyph-pool:before{content:"\f014"}.nc-glyph-poop:before{content:"\f015"}.nc-glyph-popcorn:before{content:"\f016"}.nc-glyph-pos:before{content:"\f017"}.nc-glyph-position-marker:before{content:"\f018"}.nc-glyph-position-pin:before{content:"\f019"}.nc-glyph-position-user:before{content:"\f01a"}.nc-glyph-position:before{content:"\f01b"}.nc-glyph-pot:before{content:"\f01c"}.nc-glyph-potato:before{content:"\f01d"}.nc-glyph-power-level:before{content:"\f01e"}.nc-glyph-preferences-circle-rotate:before{content:"\f01f"}.nc-glyph-preferences-circle:before{content:"\f020"}.nc-glyph-preferences-container-circle-rotate:before{content:"\f021"}.nc-glyph-preferences-container-circle:before{content:"\f022"}.nc-glyph-preferences-container-rotate:before{content:"\f023"}.nc-glyph-preferences-container:before{content:"\f024"}.nc-glyph-preferences-rotate:before{content:"\f025"}.nc-glyph-preferences:before{content:"\f026"}.nc-glyph-print:before{content:"\f027"}.nc-glyph-printer:before{content:"\f028"}.nc-glyph-priority-high:before{content:"\f029"}.nc-glyph-priority-low:before{content:"\f02a"}.nc-glyph-progress:before{content:"\f02b"}.nc-glyph-prosciutto:before{content:"\f02c"}.nc-glyph-prototype:before{content:"\f02d"}.nc-glyph-pulse-chart:before{content:"\f02e"}.nc-glyph-pulse-phone:before{content:"\f02f"}.nc-glyph-pulse-sleep:before{content:"\f030"}.nc-glyph-pulse-watch:before{content:"\f031"}.nc-glyph-pulse:before{content:"\f032"}.nc-glyph-pumpkin:before{content:"\f033"}.nc-glyph-push-next:before{content:"\f034"}.nc-glyph-push-previous:before{content:"\f035"}.nc-glyph-puzzle-09:before{content:"\f036"}.nc-glyph-puzzle-10:before{content:"\f037"}.nc-glyph-puzzled:before{content:"\f038"}.nc-glyph-pyramid:before{content:"\f039"}.nc-glyph-question:before{content:"\f03a"}.nc-glyph-quite-happy:before{content:"\f03b"}.nc-glyph-quote:before{content:"\f03c"}.nc-glyph-rabbit:before{content:"\f03d"}.nc-glyph-rackets:before{content:"\f03e"}.nc-glyph-radar:before{content:"\f03f"}.nc-glyph-radiation:before{content:"\f040"}.nc-glyph-radio:before{content:"\f041"}.nc-glyph-rain-hail:before{content:"\f042"}.nc-glyph-rain:before{content:"\f043"}.nc-glyph-rainbow:before{content:"\f044"}.nc-glyph-ram:before{content:"\f045"}.nc-glyph-rat:before{content:"\f046"}.nc-glyph-receipt-list-42:before{content:"\f047"}.nc-glyph-receipt-list-43:before{content:"\f048"}.nc-glyph-receipt:before{content:"\f049"}.nc-glyph-recipe-book-46:before{content:"\f04a"}.nc-glyph-recipe-book-47:before{content:"\f04b"}.nc-glyph-recipe-create:before{content:"\f04c"}.nc-glyph-recipe:before{content:"\f04d"}.nc-glyph-recycling:before{content:"\f04e"}.nc-glyph-redo-10:before{content:"\f04f"}.nc-glyph-redo-26:before{content:"\f050"}.nc-glyph-redo-79:before{content:"\f051"}.nc-glyph-redo-81:before{content:"\f052"}.nc-glyph-refresh-01:before{content:"\f053"}.nc-glyph-refresh-02:before{content:"\f054"}.nc-glyph-refresh-68:before{content:"\f055"}.nc-glyph-refresh-69:before{content:"\f056"}.nc-glyph-refresh:before{content:"\f057"}.nc-glyph-reload:before{content:"\f058"}.nc-glyph-remix:before{content:"\f059"}.nc-glyph-remote:before{content:"\f05a"}.nc-glyph-remove:before{content:"\f05b"}.nc-glyph-replace-folder:before{content:"\f05c"}.nc-glyph-replace:before{content:"\f05d"}.nc-glyph-replay:before{content:"\f05e"}.nc-glyph-reply-all:before{content:"\f05f"}.nc-glyph-reply:before{content:"\f060"}.nc-glyph-reservation:before{content:"\f061"}.nc-glyph-resize-h:before{content:"\f062"}.nc-glyph-resize-v:before{content:"\f063"}.nc-glyph-restaurant-menu:before{content:"\f064"}.nc-glyph-restore:before{content:"\f065"}.nc-glyph-rice:before{content:"\f066"}.nc-glyph-rim:before{content:"\f067"}.nc-glyph-ring:before{content:"\f068"}.nc-glyph-rio:before{content:"\f069"}.nc-glyph-ripples:before{content:"\f06a"}.nc-glyph-road-2:before{content:"\f06b"}.nc-glyph-road-sign-left:before{content:"\f06c"}.nc-glyph-road-sign-right:before{content:"\f06d"}.nc-glyph-road:before{content:"\f06e"}.nc-glyph-roast-chicken:before{content:"\f06f"}.nc-glyph-robot:before{content:"\f070"}.nc-glyph-rock:before{content:"\f071"}.nc-glyph-roll:before{content:"\f072"}.nc-glyph-rolling-pin:before{content:"\f073"}.nc-glyph-rome:before{content:"\f074"}.nc-glyph-rope:before{content:"\f075"}.nc-glyph-rotate-22:before{content:"\f076"}.nc-glyph-rotate-23:before{content:"\f077"}.nc-glyph-rotate-left-2:before{content:"\f078"}.nc-glyph-rotate-left:before{content:"\f079"}.nc-glyph-rotate-lock:before{content:"\f07a"}.nc-glyph-rotate-right-2:before{content:"\f07b"}.nc-glyph-rotate-right:before{content:"\f07c"}.nc-glyph-rotate:before{content:"\f07d"}.nc-glyph-round-dollar:before{content:"\f07e"}.nc-glyph-round-down:before{content:"\f07f"}.nc-glyph-round-euro:before{content:"\f080"}.nc-glyph-round-left-down:before{content:"\f081"}.nc-glyph-round-left:before{content:"\f082"}.nc-glyph-round-pound:before{content:"\f083"}.nc-glyph-round-right-down:before{content:"\f084"}.nc-glyph-round-right:before{content:"\f085"}.nc-glyph-round-up-left:before{content:"\f086"}.nc-glyph-round-up-right:before{content:"\f087"}.nc-glyph-round-up:before{content:"\f088"}.nc-glyph-round-yen:before{content:"\f089"}.nc-glyph-route-alert:before{content:"\f08a"}.nc-glyph-route-close:before{content:"\f08b"}.nc-glyph-route-open:before{content:"\f08c"}.nc-glyph-rowing:before{content:"\f08d"}.nc-glyph-rugby:before{content:"\f08e"}.nc-glyph-ruler-pencil:before{content:"\f08f"}.nc-glyph-sad:before{content:"\f090"}.nc-glyph-safe:before{content:"\f091"}.nc-glyph-salad:before{content:"\f092"}.nc-glyph-sale:before{content:"\f093"}.nc-glyph-salt:before{content:"\f094"}.nc-glyph-santa-hat:before{content:"\f095"}.nc-glyph-satisfied:before{content:"\f096"}.nc-glyph-sausage:before{content:"\f097"}.nc-glyph-save-planet:before{content:"\f098"}.nc-glyph-scale-2:before{content:"\f099"}.nc-glyph-scale-3:before{content:"\f09a"}.nc-glyph-scale-4:before{content:"\f09b"}.nc-glyph-scale-down:before{content:"\f09c"}.nc-glyph-scale-horizontal:before{content:"\f09d"}.nc-glyph-scale-up:before{content:"\f09e"}.nc-glyph-scale-vertical:before{content:"\f09f"}.nc-glyph-scale:before{content:"\f0a0"}.nc-glyph-scan:before{content:"\f0a1"}.nc-glyph-scarf:before{content:"\f0a2"}.nc-glyph-school:before{content:"\f0a3"}.nc-glyph-scissors-dashed:before{content:"\f0a4"}.nc-glyph-scissors:before{content:"\f0a5"}.nc-glyph-scotch:before{content:"\f0a6"}.nc-glyph-scroll-horitontal:before{content:"\f0a7"}.nc-glyph-scroll-vertical:before{content:"\f0a8"}.nc-glyph-sd:before{content:"\f0a9"}.nc-glyph-sea-mask:before{content:"\f0aa"}.nc-glyph-search-2:before{content:"\f0ab"}.nc-glyph-search-3:before{content:"\f0ac"}.nc-glyph-search:before{content:"\f0ad"}.nc-glyph-seat:before{content:"\f0ae"}.nc-glyph-seatbelt:before{content:"\f0af"}.nc-glyph-security:before{content:"\f0b0"}.nc-glyph-segmentation:before{content:"\f0b1"}.nc-glyph-select-83:before{content:"\f0b2"}.nc-glyph-select-84:before{content:"\f0b3"}.nc-glyph-select:before{content:"\f0b4"}.nc-glyph-selection:before{content:"\f0b5"}.nc-glyph-selfie:before{content:"\f0b6"}.nc-glyph-send-2:before{content:"\f0b7"}.nc-glyph-send:before{content:"\f0b8"}.nc-glyph-sensor:before{content:"\f0b9"}.nc-glyph-separate-round:before{content:"\f0ba"}.nc-glyph-separate:before{content:"\f0bb"}.nc-glyph-settings-46:before{content:"\f0bc"}.nc-glyph-settings-99:before{content:"\f0bd"}.nc-glyph-settings-gear-63:before{content:"\f0be"}.nc-glyph-settings-gear-64:before{content:"\f0bf"}.nc-glyph-settings-gear-65:before{content:"\f0c0"}.nc-glyph-settings-tool-66:before{content:"\f0c1"}.nc-glyph-settings-tool-67:before{content:"\f0c2"}.nc-glyph-settings:before{content:"\f0c3"}.nc-glyph-sf-bridge:before{content:"\f0c4"}.nc-glyph-shake:before{content:"\f0c5"}.nc-glyph-shaker:before{content:"\f0c6"}.nc-glyph-shape-adjust:before{content:"\f0c7"}.nc-glyph-shape-arrow:before{content:"\f0c8"}.nc-glyph-shape-circle:before{content:"\f0c9"}.nc-glyph-shape-custom:before{content:"\f0ca"}.nc-glyph-shape-line:before{content:"\f0cb"}.nc-glyph-shape-oval:before{content:"\f0cc"}.nc-glyph-shape-polygon-2:before{content:"\f0cd"}.nc-glyph-shape-polygon:before{content:"\f0ce"}.nc-glyph-shape-rectangle:before{content:"\f0cf"}.nc-glyph-shape-square:before{content:"\f0d0"}.nc-glyph-shape-star:before{content:"\f0d1"}.nc-glyph-shape-triangle-2:before{content:"\f0d2"}.nc-glyph-shape-triangle:before{content:"\f0d3"}.nc-glyph-shapes:before{content:"\f0d4"}.nc-glyph-share-2:before{content:"\f0d5"}.nc-glyph-share-66:before{content:"\f0d6"}.nc-glyph-share-91:before{content:"\f0d7"}.nc-glyph-share-92:before{content:"\f0d8"}.nc-glyph-share-bold:before{content:"\f0d9"}.nc-glyph-share-left:before{content:"\f0da"}.nc-glyph-share-right:before{content:"\f0db"}.nc-glyph-share:before{content:"\f0dc"}.nc-glyph-shared:before{content:"\f0dd"}.nc-glyph-shark-2:before{content:"\f0de"}.nc-glyph-shark:before{content:"\f0df"}.nc-glyph-sharpener:before{content:"\f0e0"}.nc-glyph-sheep:before{content:"\f0e1"}.nc-glyph-shirt-business:before{content:"\f0e2"}.nc-glyph-shirt-buttons:before{content:"\f0e3"}.nc-glyph-shirt-neck:before{content:"\f0e4"}.nc-glyph-shirt:before{content:"\f0e5"}.nc-glyph-shoe-man:before{content:"\f0e6"}.nc-glyph-shoe-run:before{content:"\f0e7"}.nc-glyph-shoe-sport:before{content:"\f0e8"}.nc-glyph-shoe-woman:before{content:"\f0e9"}.nc-glyph-shop-location:before{content:"\f0ea"}.nc-glyph-shop:before{content:"\f0eb"}.nc-glyph-shovel:before{content:"\f0ec"}.nc-glyph-shower:before{content:"\f0ed"}.nc-glyph-shrimp:before{content:"\f0ee"}.nc-glyph-shuffle-01:before{content:"\f0ef"}.nc-glyph-shuffle-35:before{content:"\f0f0"}.nc-glyph-shuffle-97:before{content:"\f0f1"}.nc-glyph-shuffle-98:before{content:"\f0f2"}.nc-glyph-shy:before{content:"\f0f3"}.nc-glyph-sick:before{content:"\f0f4"}.nc-glyph-sickle:before{content:"\f0f5"}.nc-glyph-sidebar:before{content:"\f0f6"}.nc-glyph-sign-board:before{content:"\f0f7"}.nc-glyph-sign:before{content:"\f0f8"}.nc-glyph-signal-2:before{content:"\f0f9"}.nc-glyph-signal:before{content:"\f0fa"}.nc-glyph-signature:before{content:"\f0fb"}.nc-glyph-silly:before{content:"\f0fc"}.nc-glyph-sim-card:before{content:"\f0fd"}.nc-glyph-simple-add:before{content:"\f0fe"}.nc-glyph-simple-delete:before{content:"\f0ff"}.nc-glyph-simple-down:before{content:"\f100"}.nc-glyph-simple-left:before{content:"\f101"}.nc-glyph-simple-remove:before{content:"\f102"}.nc-glyph-simple-right:before{content:"\f103"}.nc-glyph-simple-up:before{content:"\f104"}.nc-glyph-single-01:before{content:"\f105"}.nc-glyph-single-02:before{content:"\f106"}.nc-glyph-single-03:before{content:"\f107"}.nc-glyph-single-04:before{content:"\f108"}.nc-glyph-single-05:before{content:"\f109"}.nc-glyph-single-body:before{content:"\f10a"}.nc-glyph-single-content-02:before{content:"\f10b"}.nc-glyph-single-content-03:before{content:"\f10c"}.nc-glyph-single-copies:before{content:"\f10d"}.nc-glyph-single-copy-04:before{content:"\f10e"}.nc-glyph-single-copy-06:before{content:"\f10f"}.nc-glyph-single-folded-content:before{content:"\f110"}.nc-glyph-single-folded:before{content:"\f111"}.nc-glyph-single-paragraph:before{content:"\f112"}.nc-glyph-single-position:before{content:"\f113"}.nc-glyph-single:before{content:"\f114"}.nc-glyph-sink-wash:before{content:"\f115"}.nc-glyph-sink:before{content:"\f116"}.nc-glyph-size-large:before{content:"\f117"}.nc-glyph-size-medium:before{content:"\f118"}.nc-glyph-size-small:before{content:"\f119"}.nc-glyph-size:before{content:"\f11a"}.nc-glyph-skateboard-2:before{content:"\f11b"}.nc-glyph-skateboard:before{content:"\f11c"}.nc-glyph-skew-down:before{content:"\f11d"}.nc-glyph-skew-left:before{content:"\f11e"}.nc-glyph-skew-right:before{content:"\f11f"}.nc-glyph-skew-up:before{content:"\f120"}.nc-glyph-skirt:before{content:"\f121"}.nc-glyph-skull-2:before{content:"\f122"}.nc-glyph-skull:before{content:"\f123"}.nc-glyph-slacks-12:before{content:"\f124"}.nc-glyph-slacks-13:before{content:"\f125"}.nc-glyph-sleep-2:before{content:"\f126"}.nc-glyph-sleep:before{content:"\f127"}.nc-glyph-slice:before{content:"\f128"}.nc-glyph-slide-left:before{content:"\f129"}.nc-glyph-slide-right:before{content:"\f12a"}.nc-glyph-slider:before{content:"\f12b"}.nc-glyph-sloth:before{content:"\f12c"}.nc-glyph-small-add:before{content:"\f12d"}.nc-glyph-small-delete:before{content:"\f12e"}.nc-glyph-small-down:before{content:"\f12f"}.nc-glyph-small-left:before{content:"\f130"}.nc-glyph-small-remove:before{content:"\f131"}.nc-glyph-small-right:before{content:"\f132"}.nc-glyph-small-triangle-down:before{content:"\f133"}.nc-glyph-small-triangle-left:before{content:"\f134"}.nc-glyph-small-triangle-right:before{content:"\f135"}.nc-glyph-small-triangle-up:before{content:"\f136"}.nc-glyph-small-up:before{content:"\f137"}.nc-glyph-smart:before{content:"\f138"}.nc-glyph-smile:before{content:"\f139"}.nc-glyph-smoothie:before{content:"\f13a"}.nc-glyph-snack:before{content:"\f13b"}.nc-glyph-snake:before{content:"\f13c"}.nc-glyph-snow-ball:before{content:"\f13d"}.nc-glyph-snow:before{content:"\f13e"}.nc-glyph-snowboard:before{content:"\f13f"}.nc-glyph-snowman-head:before{content:"\f140"}.nc-glyph-snowman:before{content:"\f141"}.nc-glyph-soak:before{content:"\f142"}.nc-glyph-soccer-field:before{content:"\f143"}.nc-glyph-sock:before{content:"\f144"}.nc-glyph-socket-europe-1:before{content:"\f145"}.nc-glyph-socket-europe-2:before{content:"\f146"}.nc-glyph-socket-uk:before{content:"\f147"}.nc-glyph-socket:before{content:"\f148"}.nc-glyph-sofa:before{content:"\f149"}.nc-glyph-soldier:before{content:"\f14a"}.nc-glyph-sound-wave:before{content:"\f14b"}.nc-glyph-soup:before{content:"\f14c"}.nc-glyph-soy-sauce:before{content:"\f14d"}.nc-glyph-spa:before{content:"\f14e"}.nc-glyph-spaceship:before{content:"\f14f"}.nc-glyph-speaker-01:before{content:"\f150"}.nc-glyph-speaker-05:before{content:"\f151"}.nc-glyph-speaker:before{content:"\f152"}.nc-glyph-speechless:before{content:"\f153"}.nc-glyph-spider:before{content:"\f154"}.nc-glyph-spiteful:before{content:"\f155"}.nc-glyph-split-33:before{content:"\f156"}.nc-glyph-split-37:before{content:"\f157"}.nc-glyph-split-horizontal:before{content:"\f158"}.nc-glyph-split-round:before{content:"\f159"}.nc-glyph-split-vertical:before{content:"\f15a"}.nc-glyph-split:before{content:"\f15b"}.nc-glyph-sport:before{content:"\f15c"}.nc-glyph-spray-2:before{content:"\f15d"}.nc-glyph-spray:before{content:"\f15e"}.nc-glyph-square-add-08:before{content:"\f15f"}.nc-glyph-square-add-11:before{content:"\f160"}.nc-glyph-square-corner-down-left:before{content:"\f161"}.nc-glyph-square-corner-down-right:before{content:"\f162"}.nc-glyph-square-corner-up-left:before{content:"\f163"}.nc-glyph-square-corner-up-right:before{content:"\f164"}.nc-glyph-square-delete-10:before{content:"\f165"}.nc-glyph-square-delete-13:before{content:"\f166"}.nc-glyph-square-down-06:before{content:"\f167"}.nc-glyph-square-down:before{content:"\f168"}.nc-glyph-square-download:before{content:"\f169"}.nc-glyph-square-left-04:before{content:"\f16a"}.nc-glyph-square-left:before{content:"\f16b"}.nc-glyph-square-marker:before{content:"\f16c"}.nc-glyph-square-pin:before{content:"\f16d"}.nc-glyph-square-remove-09:before{content:"\f16e"}.nc-glyph-square-remove-12:before{content:"\f16f"}.nc-glyph-square-right-03:before{content:"\f170"}.nc-glyph-square-right:before{content:"\f171"}.nc-glyph-square-simple-down:before{content:"\f172"}.nc-glyph-square-simple-left:before{content:"\f173"}.nc-glyph-square-simple-right:before{content:"\f174"}.nc-glyph-square-simple-up:before{content:"\f175"}.nc-glyph-square-up-05:before{content:"\f176"}.nc-glyph-square-up:before{content:"\f177"}.nc-glyph-square-upload:before{content:"\f178"}.nc-glyph-squares:before{content:"\f179"}.nc-glyph-stamp:before{content:"\f17a"}.nc-glyph-standing-man:before{content:"\f17b"}.nc-glyph-standing-woman:before{content:"\f17c"}.nc-glyph-star:before{content:"\f17d"}.nc-glyph-steak-2:before{content:"\f17e"}.nc-glyph-steak:before{content:"\f17f"}.nc-glyph-steering-wheel:before{content:"\f180"}.nc-glyph-steps:before{content:"\f181"}.nc-glyph-stock-2:before{content:"\f182"}.nc-glyph-stock:before{content:"\f183"}.nc-glyph-storage-hanger:before{content:"\f184"}.nc-glyph-storage:before{content:"\f185"}.nc-glyph-store:before{content:"\f186"}.nc-glyph-strategy:before{content:"\f187"}.nc-glyph-strawberry:before{content:"\f188"}.nc-glyph-stre-down:before{content:"\f189"}.nc-glyph-stre-left:before{content:"\f18a"}.nc-glyph-stre-right:before{content:"\f18b"}.nc-glyph-stre-up:before{content:"\f18c"}.nc-glyph-stretch:before{content:"\f18d"}.nc-glyph-strikethrough:before{content:"\f18e"}.nc-glyph-strong-down:before{content:"\f18f"}.nc-glyph-strong-left:before{content:"\f190"}.nc-glyph-strong-right:before{content:"\f191"}.nc-glyph-strong-up:before{content:"\f192"}.nc-glyph-subscript:before{content:"\f193"}.nc-glyph-subtitles:before{content:"\f194"}.nc-glyph-sugar:before{content:"\f195"}.nc-glyph-sun-cloud-drop:before{content:"\f196"}.nc-glyph-sun-cloud-fog:before{content:"\f197"}.nc-glyph-sun-cloud-hail:before{content:"\f198"}.nc-glyph-sun-cloud-light:before{content:"\f199"}.nc-glyph-sun-cloud-rain:before{content:"\f19a"}.nc-glyph-sun-cloud-snow-54:before{content:"\f19b"}.nc-glyph-sun-cloud-snow-55:before{content:"\f19c"}.nc-glyph-sun-cloud:before{content:"\f19d"}.nc-glyph-sun-fog-29:before{content:"\f19e"}.nc-glyph-sun-fog-30:before{content:"\f19f"}.nc-glyph-sun-fog-43:before{content:"\f1a0"}.nc-glyph-sunglasses-48:before{content:"\f1a1"}.nc-glyph-sunglasses-49:before{content:"\f1a2"}.nc-glyph-sunglasses:before{content:"\f1a3"}.nc-glyph-superscript:before{content:"\f1a4"}.nc-glyph-supplement:before{content:"\f1a5"}.nc-glyph-support-16:before{content:"\f1a6"}.nc-glyph-support-17:before{content:"\f1a7"}.nc-glyph-surf-2:before{content:"\f1a8"}.nc-glyph-surf:before{content:"\f1a9"}.nc-glyph-surprise:before{content:"\f1aa"}.nc-glyph-sushi:before{content:"\f1ab"}.nc-glyph-swap-horizontal:before{content:"\f1ac"}.nc-glyph-swap-vertical:before{content:"\f1ad"}.nc-glyph-swimsuit:before{content:"\f1ae"}.nc-glyph-swimwear:before{content:"\f1af"}.nc-glyph-swipe-bottom:before{content:"\f1b0"}.nc-glyph-swipe-left:before{content:"\f1b1"}.nc-glyph-swipe-right:before{content:"\f1b2"}.nc-glyph-swipe-up:before{content:"\f1b3"}.nc-glyph-swiss-knife:before{content:"\f1b4"}.nc-glyph-sync:before{content:"\f1b5"}.nc-glyph-syringe:before{content:"\f1b6"}.nc-glyph-system-update:before{content:"\f1b7"}.nc-glyph-table-left:before{content:"\f1b8"}.nc-glyph-table-right:before{content:"\f1b9"}.nc-glyph-table:before{content:"\f1ba"}.nc-glyph-tablet-2:before{content:"\f1bb"}.nc-glyph-tablet-button:before{content:"\f1bc"}.nc-glyph-tablet-mobile:before{content:"\f1bd"}.nc-glyph-tablet-reader-31:before{content:"\f1be"}.nc-glyph-tablet-reader-42:before{content:"\f1bf"}.nc-glyph-tablet-toolbar:before{content:"\f1c0"}.nc-glyph-tablet:before{content:"\f1c1"}.nc-glyph-tacos:before{content:"\f1c2"}.nc-glyph-tactic:before{content:"\f1c3"}.nc-glyph-tag-2:before{content:"\f1c4"}.nc-glyph-tag-add:before{content:"\f1c5"}.nc-glyph-tag-check:before{content:"\f1c6"}.nc-glyph-tag-content:before{content:"\f1c7"}.nc-glyph-tag-cut:before{content:"\f1c8"}.nc-glyph-tag-line:before{content:"\f1c9"}.nc-glyph-tag-loyalty:before{content:"\f1ca"}.nc-glyph-tag-remove:before{content:"\f1cb"}.nc-glyph-tag-sale:before{content:"\f1cc"}.nc-glyph-tag:before{content:"\f1cd"}.nc-glyph-tail-down:before{content:"\f1ce"}.nc-glyph-tail-left:before{content:"\f1cf"}.nc-glyph-tail-right:before{content:"\f1d0"}.nc-glyph-tail-triangle-down:before{content:"\f1d1"}.nc-glyph-tail-triangle-left:before{content:"\f1d2"}.nc-glyph-tail-triangle-right:before{content:"\f1d3"}.nc-glyph-tail-triangle-up:before{content:"\f1d4"}.nc-glyph-tail-up:before{content:"\f1d5"}.nc-glyph-tap-01:before{content:"\f1d6"}.nc-glyph-tap-02:before{content:"\f1d7"}.nc-glyph-tape:before{content:"\f1d8"}.nc-glyph-target:before{content:"\f1d9"}.nc-glyph-tea-bag:before{content:"\f1da"}.nc-glyph-tea:before{content:"\f1db"}.nc-glyph-temperature-23:before{content:"\f1dc"}.nc-glyph-temperature-24:before{content:"\f1dd"}.nc-glyph-temple-25:before{content:"\f1de"}.nc-glyph-tennis-ball:before{content:"\f1df"}.nc-glyph-tennis:before{content:"\f1e0"}.nc-glyph-terrace:before{content:"\f1e1"}.nc-glyph-text-2:before{content:"\f1e2"}.nc-glyph-text:before{content:"\f1e3"}.nc-glyph-texture:before{content:"\f1e4"}.nc-glyph-ticket-75:before{content:"\f1e5"}.nc-glyph-ticket-76:before{content:"\f1e6"}.nc-glyph-tie-01:before{content:"\f1e7"}.nc-glyph-tie-02:before{content:"\f1e8"}.nc-glyph-tie-bow:before{content:"\f1e9"}.nc-glyph-tile-55:before{content:"\f1ea"}.nc-glyph-time-2:before{content:"\f1eb"}.nc-glyph-time-3:before{content:"\f1ec"}.nc-glyph-time-alarm:before{content:"\f1ed"}.nc-glyph-time-clock:before{content:"\f1ee"}.nc-glyph-time-countdown:before{content:"\f1ef"}.nc-glyph-time:before{content:"\f1f0"}.nc-glyph-timeline:before{content:"\f1f1"}.nc-glyph-timer:before{content:"\f1f2"}.nc-glyph-todo:before{content:"\f1f3"}.nc-glyph-toilet-paper:before{content:"\f1f4"}.nc-glyph-toilet:before{content:"\f1f5"}.nc-glyph-tomato:before{content:"\f1f6"}.nc-glyph-tool-blur:before{content:"\f1f7"}.nc-glyph-tool-hand:before{content:"\f1f8"}.nc-glyph-tool-select:before{content:"\f1f9"}.nc-glyph-tooth:before{content:"\f1fa"}.nc-glyph-touch:before{content:"\f1fb"}.nc-glyph-track-delivery:before{content:"\f1fc"}.nc-glyph-tracking:before{content:"\f1fd"}.nc-glyph-tractor:before{content:"\f1fe"}.nc-glyph-train-speed:before{content:"\f1ff"}.nc-glyph-train:before{content:"\f200"}.nc-glyph-tram:before{content:"\f201"}.nc-glyph-transform-2d:before{content:"\f202"}.nc-glyph-transform-origin:before{content:"\f203"}.nc-glyph-transform:before{content:"\f204"}.nc-glyph-transparent:before{content:"\f205"}.nc-glyph-trash-round:before{content:"\f206"}.nc-glyph-trash-simple:before{content:"\f207"}.nc-glyph-trash:before{content:"\f208"}.nc-glyph-treasure-map-21:before{content:"\f209"}.nc-glyph-treasure-map-40:before{content:"\f20a"}.nc-glyph-tree-01:before{content:"\f20b"}.nc-glyph-tree-02:before{content:"\f20c"}.nc-glyph-tree-03:before{content:"\f20d"}.nc-glyph-tree-ball:before{content:"\f20e"}.nc-glyph-tree:before{content:"\f20f"}.nc-glyph-trend-down:before{content:"\f210"}.nc-glyph-trend-up:before{content:"\f211"}.nc-glyph-triangle-down-20:before{content:"\f212"}.nc-glyph-triangle-down-65:before{content:"\f213"}.nc-glyph-triangle-down:before{content:"\f214"}.nc-glyph-triangle-left-18:before{content:"\f215"}.nc-glyph-triangle-left-63:before{content:"\f216"}.nc-glyph-triangle-left:before{content:"\f217"}.nc-glyph-triangle-right-17:before{content:"\f218"}.nc-glyph-triangle-right-62:before{content:"\f219"}.nc-glyph-triangle-right:before{content:"\f21a"}.nc-glyph-triangle-up-19:before{content:"\f21b"}.nc-glyph-triangle-up-64:before{content:"\f21c"}.nc-glyph-triangle-up:before{content:"\f21d"}.nc-glyph-tripod:before{content:"\f21e"}.nc-glyph-trolley:before{content:"\f21f"}.nc-glyph-trophy:before{content:"\f220"}.nc-glyph-truck-front:before{content:"\f221"}.nc-glyph-trunk:before{content:"\f222"}.nc-glyph-tshirt-53:before{content:"\f223"}.nc-glyph-tshirt-54:before{content:"\f224"}.nc-glyph-tshirt-sport:before{content:"\f225"}.nc-glyph-turtle:before{content:"\f226"}.nc-glyph-tv-2:before{content:"\f227"}.nc-glyph-tv-old:before{content:"\f228"}.nc-glyph-tv:before{content:"\f229"}.nc-glyph-twitch:before{content:"\f22a"}.nc-glyph-ui-03:before{content:"\f22b"}.nc-glyph-ui-04:before{content:"\f22c"}.nc-glyph-umbrella-13:before{content:"\f22d"}.nc-glyph-umbrella-14:before{content:"\f22e"}.nc-glyph-underline:before{content:"\f22f"}.nc-glyph-underwear-man:before{content:"\f230"}.nc-glyph-underwear:before{content:"\f231"}.nc-glyph-undo-25:before{content:"\f233"}.nc-glyph-undo-29:before{content:"\f232"}.nc-glyph-ungroup:before{content:"\f234"}.nc-glyph-unite-round:before{content:"\f235"}.nc-glyph-unite:before{content:"\f236"}.nc-glyph-upload-2:before{content:"\f237"}.nc-glyph-upload:before{content:"\f238"}.nc-glyph-upset-13:before{content:"\f239"}.nc-glyph-upset-14:before{content:"\f23a"}.nc-glyph-usb:before{content:"\f23b"}.nc-glyph-user-balance:before{content:"\f23c"}.nc-glyph-user-climb:before{content:"\f23d"}.nc-glyph-user-frame-31:before{content:"\f23e"}.nc-glyph-user-frame-32:before{content:"\f23f"}.nc-glyph-user-frame-33:before{content:"\f240"}.nc-glyph-user-meditation:before{content:"\f241"}.nc-glyph-user-run:before{content:"\f242"}.nc-glyph-user-snowboard:before{content:"\f243"}.nc-glyph-user-swim:before{content:"\f244"}.nc-glyph-user:before{content:"\f245"}.nc-glyph-vampire:before{content:"\f246"}.nc-glyph-vector-2:before{content:"\f247"}.nc-glyph-vector:before{content:"\f248"}.nc-glyph-vegan:before{content:"\f249"}.nc-glyph-ventilation:before{content:"\f24a"}.nc-glyph-vespa-front:before{content:"\f24b"}.nc-glyph-vespa:before{content:"\f24c"}.nc-glyph-vest-31:before{content:"\f24d"}.nc-glyph-vest-sport:before{content:"\f24e"}.nc-glyph-vest:before{content:"\f24f"}.nc-glyph-video-64:before{content:"\f250"}.nc-glyph-video-65:before{content:"\f251"}.nc-glyph-video-66:before{content:"\f252"}.nc-glyph-video-67:before{content:"\f253"}.nc-glyph-videocamera-71:before{content:"\f254"}.nc-glyph-videocamera-72:before{content:"\f255"}.nc-glyph-virus:before{content:"\f256"}.nc-glyph-voice-record:before{content:"\f257"}.nc-glyph-volleyball:before{content:"\f258"}.nc-glyph-volume-93:before{content:"\f259"}.nc-glyph-volume-97:before{content:"\f25a"}.nc-glyph-volume-98:before{content:"\f25b"}.nc-glyph-volume-ban:before{content:"\f25c"}.nc-glyph-volume-down:before{content:"\f25d"}.nc-glyph-volume-off:before{content:"\f25e"}.nc-glyph-volume-up:before{content:"\f25f"}.nc-glyph-vpn:before{content:"\f260"}.nc-glyph-waffle:before{content:"\f261"}.nc-glyph-walk:before{content:"\f262"}.nc-glyph-wallet-43:before{content:"\f263"}.nc-glyph-wallet-44:before{content:"\f264"}.nc-glyph-wallet-90:before{content:"\f265"}.nc-glyph-wallet:before{content:"\f266"}.nc-glyph-wand-11:before{content:"\f267"}.nc-glyph-wardrobe:before{content:"\f268"}.nc-glyph-wash-2:before{content:"\f269"}.nc-glyph-wash-30:before{content:"\f26a"}.nc-glyph-wash-60:before{content:"\f26b"}.nc-glyph-wash-90:before{content:"\f26c"}.nc-glyph-wash-hand:before{content:"\f26d"}.nc-glyph-wash:before{content:"\f26e"}.nc-glyph-washing-fluid:before{content:"\f26f"}.nc-glyph-waste-danger:before{content:"\f270"}.nc-glyph-waste-recycling:before{content:"\f272"}.nc-glyph-waste:before{content:"\f271"}.nc-glyph-watch-circle:before{content:"\f273"}.nc-glyph-watch-dev:before{content:"\f274"}.nc-glyph-watch-time:before{content:"\f275"}.nc-glyph-watch:before{content:"\f276"}.nc-glyph-water-hand:before{content:"\f277"}.nc-glyph-water-sink:before{content:"\f278"}.nc-glyph-water:before{content:"\f279"}.nc-glyph-watermelon:before{content:"\f27a"}.nc-glyph-wc:before{content:"\f27b"}.nc-glyph-web-design:before{content:"\f27c"}.nc-glyph-webcam-38:before{content:"\f27d"}.nc-glyph-webcam-39:before{content:"\f27e"}.nc-glyph-webpage-2:before{content:"\f27f"}.nc-glyph-webpage:before{content:"\f280"}.nc-glyph-weed:before{content:"\f281"}.nc-glyph-weight:before{content:"\f282"}.nc-glyph-what:before{content:"\f283"}.nc-glyph-wheel-2:before{content:"\f284"}.nc-glyph-wheel:before{content:"\f285"}.nc-glyph-wheelchair:before{content:"\f286"}.nc-glyph-whisk:before{content:"\f287"}.nc-glyph-whiskers:before{content:"\f288"}.nc-glyph-whistle:before{content:"\f289"}.nc-glyph-white-house:before{content:"\f28a"}.nc-glyph-widget:before{content:"\f28b"}.nc-glyph-wifi-2:before{content:"\f28c"}.nc-glyph-wifi-off:before{content:"\f28d"}.nc-glyph-wifi-protected:before{content:"\f28e"}.nc-glyph-wifi-router:before{content:"\f28f"}.nc-glyph-wifi:before{content:"\f290"}.nc-glyph-wind-2:before{content:"\f291"}.nc-glyph-wind:before{content:"\f292"}.nc-glyph-window-add:before{content:"\f293"}.nc-glyph-window-code:before{content:"\f294"}.nc-glyph-window-delete:before{content:"\f295"}.nc-glyph-window-dev:before{content:"\f296"}.nc-glyph-window-paragraph:before{content:"\f297"}.nc-glyph-window-responsive:before{content:"\f298"}.nc-glyph-window-zoom-in:before{content:"\f299"}.nc-glyph-window-zoom-out:before{content:"\f29a"}.nc-glyph-wine-list:before{content:"\f29b"}.nc-glyph-wink-06:before{content:"\f29c"}.nc-glyph-wink-11:before{content:"\f29d"}.nc-glyph-wink-69:before{content:"\f29e"}.nc-glyph-witch-hat:before{content:"\f29f"}.nc-glyph-wolf:before{content:"\f2a0"}.nc-glyph-woman-2:before{content:"\f2a1"}.nc-glyph-woman-21:before{content:"\f2a2"}.nc-glyph-woman-24:before{content:"\f2a3"}.nc-glyph-woman-25:before{content:"\f2a4"}.nc-glyph-woman-down:before{content:"\f2a5"}.nc-glyph-woman-man:before{content:"\f2a6"}.nc-glyph-woman-up:before{content:"\f2a7"}.nc-glyph-woman:before{content:"\f2a8"}.nc-glyph-wood:before{content:"\f2a9"}.nc-glyph-wool-ball:before{content:"\f2aa"}.nc-glyph-worl-marker:before{content:"\f2ab"}.nc-glyph-world-2:before{content:"\f2ac"}.nc-glyph-world-pin:before{content:"\f2ad"}.nc-glyph-world:before{content:"\f2ae"}.nc-glyph-yogurt:before{content:"\f2af"}.nc-glyph-zip-54:before{content:"\f2b0"}.nc-glyph-zip-55:before{content:"\f2b1"}.nc-glyph-zombie:before{content:"\f2b2"}.nc-glyph-zoom-100:before{content:"\f2b3"}.nc-glyph-zoom-2:before{content:"\f2b4"}.nc-glyph-zoom-88:before{content:"\f2b5"}.nc-glyph-zoom-99:before{content:"\f2b6"}.nc-glyph-zoom-bold-in:before{content:"\f2b7"}.nc-glyph-zoom-bold-out:before{content:"\f2b8"}.nc-glyph-zoom-bold:before{content:"\f2b9"}.nc-glyph-zoom-e:before{content:"\f2ba"}.nc-glyph-zoom-in:before{content:"\f2bb"}.nc-glyph-zoom-out:before{content:"\f2bc"}.nc-glyph-zoom-split-in:before{content:"\f2bd"}.nc-glyph-zoom-split-out:before{content:"\f2be"}.nc-glyph-zoom-split:before{content:"\f2bf"}.nc-glyph-zoom-triangles:before{content:"\f2c0"}.nc-glyph-zoom:before{content:"\f2c1"}.nc-icon{display:inline-block;font-size:24px;line-height:1;font-weight:400;font-style:normal;font-variant:normal;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.brz-ed-sorting .brz-ed-resizer,.brz-ed-sorting .sortable-chosen:after,.brz-ed-sorting .sortable-chosen:before{display:none}.brz .brz-b,.brz .brz-dt,.brz .brz-strong{font-weight:700}.nc-outline{font-family:"Nucleo Outline"}.nc-glyph{font-family:"Nucleo Glyph"}.nc-icon.rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);transform:rotate(90deg)}.nc-icon.rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);transform:rotate(180deg)}.nc-icon.rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);transform:rotate(270deg)}.nc-icon.flip-y{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0);-webkit-transform:scale(-1,1);transform:scale(-1,1)}.nc-icon.flip-x{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:scale(1,-1);transform:scale(1,-1)}.brz-ed-sorting{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:move}.brz-ed-sorting *{pointer-events:none}.brz-ed-sorting .sortable-hovered.brz-ed-container-trigger{background-color:#03080f}.brz-ed-sorting .sortable-hovered.brz-ed-container-trigger:after{opacity:1!important;background-color:#fff!important}.brz .brz-reset-all,.brz-ed-sorting .sortable-chosen>.brz-ed-border>.brz-ed-border__inner-1:after,.brz-ed-sorting .sortable-chosen>.brz-ed-border>.brz-ed-border__inner-1:before,.brz-ed-sorting .sortable-chosen>.brz-ed-border>.brz-ed-border__inner-2:after,.brz-ed-sorting .sortable-chosen>.brz-ed-border>.brz-ed-border__inner-2:before{opacity:1;visibility:visible}.brz-ed-sorting .sortable-chosen>.brz-ed-border>.brz-ed-border__inner-1:after{top:-1px}.brz-ed-sorting .sortable-chosen>.brz-ed-border>.brz-ed-border__inner-2:after{bottom:-1px}.brz .brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-wrapper-clone:after,.brz .brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-wrapper-clone:first-child:before,.brz .brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.sortable-chosen.brz-wrapper-clone+div:before,.brz-ed-sorting .brz .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-wrapper-clone:after,.brz-ed-sorting .brz .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-wrapper-clone:first-child:before,.brz-ed-sorting .brz .sortable-receiver:not(.brz-ed-sortable--empty)>.sortable-chosen.brz-wrapper-clone+div:before,.brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-row__container.sortable-chosen+div:before,.brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-row__container:after,.brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-row__container:first-child:before,.brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-wrapper-clone.sortable-chosen+div:before,.brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-wrapper-clone:after,.brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-wrapper-clone:first-child:before,.brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-wrapper.sortable-chosen+div:before,.brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-wrapper:after,.brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-wrapper:first-child:before{content:"";height:2px;position:absolute;left:0;right:0;bottom:-1px;background-color:#879294;opacity:.3}.brz .brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-wrapper-clone:first-child:before,.brz .brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.sortable-chosen.brz-wrapper-clone+div:before,.brz-ed-sorting .brz .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-wrapper-clone:first-child:before,.brz-ed-sorting .brz .sortable-receiver:not(.brz-ed-sortable--empty)>.sortable-chosen.brz-wrapper-clone+div:before,.brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-row__container.sortable-chosen+div:before,.brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-row__container:first-child:before,.brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-wrapper-clone.sortable-chosen+div:before,.brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-wrapper-clone:first-child:before,.brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-wrapper.sortable-chosen+div:before,.brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-wrapper:first-child:before{top:-1px;bottom:auto}.brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-columns>.brz-ed-border>.brz-ed-border__inner-1:before,.brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-columns>.brz-ed-border>.brz-ed-border__inner-2:before{top:-1px;bottom:-1px;visibility:visible;opacity:.5;-webkit-transition:none;transition:none}.brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty).brz-row{margin-top:5px;margin-bottom:5px}.brz-ed-sorting .sortable-hovered-bottom:not(.brz-ed-container-trigger):not(.brz-ed-border__sortable):after,.brz-ed-sorting .sortable-hovered-top:not(.brz-ed-container-trigger):not(.brz-ed-border__sortable):before{opacity:1!important;-webkit-transform:scaleY(2);transform:scaleY(2);border-radius:4px}.brz-ed-sorting .sortable-hovered-left:after,.brz-ed-sorting .sortable-hovered-right:after{top:0;width:2px;height:100%}.brz-ed-sorting .sortable-hovered-left:after{left:0}.brz-ed-sorting .sortable-hovered-left>.brz-ed-border>.brz-ed-border__inner-1:before{-webkit-transform:scaleX(2);transform:scaleX(2);opacity:1!important;-webkit-transition:none;transition:none;border-radius:4px}.brz-ed-sorting .sortable-hovered-right:after{right:-2px}.brz-ed-sorting .sortable-hovered-right>.brz-ed-border>.brz-ed-border__inner-2:before{-webkit-transform:scaleX(2);transform:scaleX(2);opacity:1!important;-webkit-transition:none;transition:none;border-radius:4px}.sortable-helper{width:30px;height:30px;border-radius:50%;background-color:#3dbfe8;cursor:move}.sortable-placeholder{outline:#3dbfe8 solid 1px}.brz-ed .brz-ed-sortable--empty{position:relative;min-height:125px;width:calc(100% - 20px);height:calc(100% - 20px);margin:10px}.brz-ed .brz-ed-sortable--empty .brz-ed-border__inner-1,.brz-ed .brz-ed-sortable--empty .brz-ed-border__inner-2{opacity:.6}.brz-ed .brz-ed-sortable--empty .brz-ed-container-trigger{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);margin:0}@keyframes spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes fadeInDown{from{opacity:0;-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInUp{from{opacity:0;-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeIn{from{opacity:0}to{opacity:1}}@keyframes fadeInLeft{from{opacity:0;-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes pulsate{0%{-webkit-transform:scale(.1,.1);transform:scale(.1,.1);opacity:0}50%{opacity:1}100%{-webkit-transform:scale(1.2,1.2);transform:scale(1.2,1.2);opacity:0}}@keyframes sk-bounce{0%,100%{-webkit-transform:scale(0);transform:scale(0)}50%{-webkit-transform:scale(1);transform:scale(1)}}@-ms-viewport{width:device-width}.brz .brz-figcaption,.brz .brz-figure,.brz .brz-section{display:block}.brz .brz-hr{-webkit-box-sizing:content-box;box-sizing:content-box;height:0;overflow:visible;margin:0}.brz .brz-h1,.brz .brz-h2,.brz .brz-h3,.brz .brz-h4,.brz .brz-h5,.brz .brz-h6{margin-top:0;margin-bottom:0;padding:0}.brz .brz-p{margin-top:0;margin-bottom:0}.brz .brz-span{float:none;margin:0;padding:0}.brz .brz-dl,.brz .brz-ol,.brz .brz-ul{margin:0;list-style:none;padding:0}.brz .brz-ol .brz-ol,.brz .brz-ol .brz-ul,.brz .brz-ul .brz-ol,.brz .brz-ul .brz-ul{margin:0}.brz .brz-dd{margin-bottom:.5rem;margin-left:0}.brz .brz-blockquote{margin:0 0 1rem}.brz .brz-dfn{font-style:italic}.brz .brz-a{color:#3dbfe8;background-color:transparent;box-shadow:none}.brz .brz-a[href]:hover{color:#1aabd8;box-shadow:none;cursor:pointer}.brz .brz-figure{margin:0}.brz .brz-img{vertical-align:middle;border-style:none}.brz svg:not(:root){overflow:hidden}.brz .brz-button,.brz .brz-input,.brz .brz-label,.brz .brz-textarea{-ms-touch-action:manipulation;touch-action:manipulation}.brz .brz-table{border-collapse:collapse}.brz .brz-caption{padding-top:.75rem;padding-bottom:.75rem;color:#818a91;text-align:left;caption-side:bottom}.brz .brz-th{text-align:left}.brz .brz-label{display:inline-block;margin-bottom:0;font-weight:400}.brz .brz-button:focus{outline:dotted 1px;outline:-webkit-focus-ring-color auto 5px}.brz .brz-button,.brz .brz-input,.brz .brz-optgroup,.brz .brz-select,.brz .brz-textarea{padding:0;margin:0;font-family:inherit;font-size:inherit;line-height:inherit}.brz .brz-button,.brz .brz-input{overflow:visible}.brz .brz-button{-webkit-appearance:button}.brz .brz-button::-moz-focus-inner{padding:0;border-style:none}.brz .brz-input[type=radio],.brz .brz-input[type=checkbox]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}.brz .brz-input[type=date],.brz .brz-input[type=time],.brz .brz-input[type=datetime-local],.brz .brz-input[type=month]{-webkit-appearance:listbox}.brz .brz-textarea{overflow:auto;resize:vertical}.brz .brz-fieldset{min-width:0;padding:0;margin:0;border:0}.brz .brz-iframe,.brz .brz-object{margin-bottom:0;max-width:100%}.brz .brz-iframe{margin:0;padding:0;border:0;font:inherit;font-size:100%;vertical-align:baseline}.brz .brz-reset-all,.brz-ed .brz-reset-all{align-content:stretch;-webkit-animation-duration:0s;-webkit-animation-fill-mode:none;azimuth:center;block-size:auto;border-block-end-color:currentcolor;border-collapse:separate;border-image-repeat:stretch;border-image-source:none;border-spacing:0;bottom:auto;-webkit-column-break-after:auto;break-after:auto;-webkit-column-break-before:auto;break-inside:auto;empty-cells:show;grid-auto-columns:auto;grid-auto-flow:row;grid-auto-rows:auto;grid-column-end:auto;grid-column-gap:0;grid-column-start:auto;grid-row-end:auto;grid-row-gap:0;grid-row-start:auto;grid-template-areas:none;grid-template-columns:none;image-rendering:auto;isolation:auto;line-break:auto;-webkit-margin-before:0;-webkit-mask-clip:border-box;mask-type:luminance;min-block-size:0;min-inline-size:0;mix-blend-mode:normal;-o-object-position:50% 50%;offset-block-end:auto;offset-block-start:auto;offset-inline-end:auto;orphans:2;page-break-after:auto;page-break-before:auto;page-break-inside:auto;-webkit-perspective:none;quotes:initial;ruby-merge:separate;ruby-position:over;scroll-behavior:auto;shape-image-threshold:0;shape-margin:0;shape-outside:none;table-layout:auto;text-combine-upright:none;text-decoration-color:currentcolor;-webkit-text-decoration-line:none;text-decoration-line:none;-webkit-text-emphasis-color:currentcolor;text-emphasis-style:none;widows:2;word-break:normal;-webkit-appearance:none}.brz [hidden]{display:none!important}.brz .brz-reset-all{-ms-flex-line-pack:stretch;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;-ms-flex-item-align:auto;align-self:auto;-webkit-animation-delay:0s;animation-delay:0s;-webkit-animation-direction:normal;animation-direction:normal;animation-duration:0s;animation-fill-mode:none;-webkit-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-name:none;animation-name:none;-webkit-animation-play-state:running;animation-play-state:running;-webkit-animation-timing-function:ease;animation-timing-function:ease;-webkit-backface-visibility:visible;backface-visibility:visible;background-blend-mode:normal;border-block-end-style:none;border-block-end-width:medium;border-block-start-color:currentcolor;border-block-start-style:none;border-block-start-width:medium;border-image-outset:0s;border-image-slice:100%;border-image-width:1;border-inline-end-color:currentcolor;border-inline-end-style:none;border-inline-end-width:medium;border-inline-start-color:currentcolor;border-inline-start-style:none;border-inline-start-width:medium;-webkit-box-decoration-break:slice;box-decoration-break:slice;-webkit-box-shadow:none;box-shadow:none;-webkit-box-sizing:content-box;box-sizing:content-box;break-before:auto;-webkit-column-break-inside:auto;caption-side:top;caret-color:auto;clear:none;clip:auto;-webkit-clip-path:none;clip-path:none;color:initial;-webkit-column-count:auto;column-count:auto;-webkit-column-fill:balance;column-fill:balance;-webkit-column-gap:normal;column-gap:normal;-webkit-column-rule-color:currentcolor;column-rule-color:currentcolor;-webkit-column-rule-style:none;column-rule-style:none;-webkit-column-rule-width:medium;column-rule-width:medium;-webkit-column-span:none;column-span:none;-webkit-column-width:auto;column-width:auto;content:normal;counter-increment:none;counter-reset:none;cursor:auto;display:inline;-webkit-filter:none;filter:none;-ms-flex-preferred-size:auto;flex-basis:auto;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:1;flex-shrink:1;-ms-flex-wrap:nowrap;flex-wrap:nowrap;float:none;font-family:initial;-webkit-font-feature-settings:normal;font-feature-settings:normal;-webkit-font-kerning:auto;font-kerning:auto;-webkit-font-language-override:normal;font-language-override:normal;font-size:medium;font-size-adjust:none;font-stretch:normal;font-style:normal;font-synthesis:weight style;font-variant:normal;font-variant-alternates:normal;font-variant-caps:normal;font-variant-east-asian:normal;-webkit-font-variant-ligatures:normal;font-variant-ligatures:normal;font-variant-numeric:normal;font-variant-position:normal;font-weight:400;grid-template-rows:none;height:auto;-webkit-hyphens:manual;-ms-hyphens:manual;hyphens:manual;image-orientation:0deg;image-resolution:1dppx;ime-mode:auto;inline-size:auto;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;left:auto;letter-spacing:normal;line-height:normal;-webkit-margin-after:0;margin-block-end:0;margin-block-start:0;-webkit-margin-end:0;-moz-margin-end:0;margin-inline-end:0;-webkit-margin-start:0;-moz-margin-start:0;margin-inline-start:0;mask-clip:border-box;-webkit-mask-composite:add;mask-composite:add;-webkit-mask-image:none;mask-image:none;mask-mode:match-source;-webkit-mask-origin:border-box;mask-origin:border-box;-webkit-mask-position:0 0;mask-position:0 0;-webkit-mask-repeat:repeat;mask-repeat:repeat;-webkit-mask-size:auto;mask-size:auto;max-height:none;max-width:none;min-height:0;min-width:0;-o-object-fit:fill;object-fit:fill;object-position:50% 50%;offset-inline-start:auto;-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0;outline-color:initial;outline-offset:0;outline-style:none;outline-width:medium;overflow:visible;overflow-wrap:normal;overflow-x:visible;overflow-y:visible;-webkit-padding-after:0;padding-block-end:0;-webkit-padding-before:0;padding-block-start:0;-webkit-padding-end:0;-moz-padding-end:0;padding-inline-end:0;-webkit-padding-start:0;-moz-padding-start:0;padding-inline-start:0;perspective:none;-webkit-perspective-origin:50% 50%;perspective-origin:50% 50%;pointer-events:auto;position:static;resize:none;right:auto;ruby-align:space-around;-webkit-scroll-snap-coordinate:none;-ms-scroll-snap-coordinate:none;scroll-snap-coordinate:none;-webkit-scroll-snap-destination:0 0;-ms-scroll-snap-destination:0 0;scroll-snap-destination:0 0;-webkit-scroll-snap-points-x:none;-ms-scroll-snap-points-x:none;scroll-snap-points-x:none;-webkit-scroll-snap-points-y:none;-ms-scroll-snap-points-y:none;scroll-snap-points-y:none;-webkit-scroll-snap-type:none;-ms-scroll-snap-type:none;scroll-snap-type:none;-moz-tab-size:8;-o-tab-size:8;tab-size:8;text-align:initial;text-align-last:auto;-webkit-text-decoration-color:currentcolor;-webkit-text-decoration-style:solid;text-decoration-style:solid;text-emphasis-color:currentcolor;-webkit-text-emphasis-position:over;text-emphasis-position:over right;-webkit-text-emphasis-style:none;text-indent:0;text-justify:auto;text-orientation:mixed;text-overflow:clip;text-rendering:auto;text-shadow:none;text-underline-position:auto;top:auto;-ms-touch-action:auto;touch-action:auto;-webkit-transform:none;transform:none;transform-box:border-box;-webkit-transform-origin:50% 50% 0;transform-origin:50% 50% 0;-webkit-transform-style:flat;transform-style:flat;-webkit-transition-delay:0s;transition-delay:0s;-webkit-transition-duration:0s;transition-duration:0s;-webkit-transition-property:all;transition-property:all;-webkit-transition-timing-function:ease;transition-timing-function:ease;vertical-align:baseline;white-space:normal;width:auto;will-change:auto;word-spacing:normal;word-wrap:normal;-webkit-writing-mode:horizontal-tb;-ms-writing-mode:lr-tb;writing-mode:horizontal-tb;z-index:auto;-moz-appearance:none;-ms-appearance:none;appearance:none;background:0 0;border-color:currentcolor;border-radius:0;border-style:none;border-width:medium;list-style:disc;margin:0;padding:0}.brz .brz-ed-blocked,.brz .slick-slide.dragging img{pointer-events:none}.brz .brz-h1,.brz .brz-h2,.brz .brz-h3,.brz .brz-h4,.brz .brz-h5,.brz .brz-h6{font-family:inherit;font-weight:700;line-height:1.2;color:inherit}.brz .brz-h1,.brz .brz-p{font-weight:400}.brz .brz-h1{font-size:55px}.brz .brz-h2{font-size:40px}.brz .brz-h3{font-size:32px}.brz .brz-h4{font-size:26px}.brz .brz-h5{font-size:19px}.brz .brz-h6,.brz .brz-p{font-size:14px}.brz .brz-flex-xs-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.brz .brz-flex-xs-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.brz .brz-flex-xs-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.brz .brz-justify-content-xs-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.brz .brz-justify-content-xs-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.brz .brz-justify-content-xs-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.brz .brz-justify-content-xs-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.brz .brz-justify-content-xs-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.brz .brz-align-items-xs-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.brz .brz-align-items-xs-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.brz .brz-align-items-xs-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.brz .brz-align-items-xs-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.brz .brz-align-items-xs-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.brz .brz-col-first-xs{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.brz .brz-col-last-xs{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.brz .brz-align-self-xs-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.brz .brz-align-self-xs-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.brz .brz-align-self-xs-center{-ms-flex-item-align:center!important;align-self:center!important}.brz .brz-align-self-xs-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.brz .brz-align-self-xs-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}.brz .brz-flex-xs-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.brz .brz-flex-xs-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.brz .brz-align-content-xs-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.brz .brz-align-content-xs-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.brz .brz-align-content-xs-center{-ms-flex-line-pack:center!important;align-content:center!important}.brz .brz-align-content-xs-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.brz .brz-align-content-xs-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.brz .brz-align-content-xs-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}@media (min-width:480px){.brz .brz-flex-ms-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.brz .brz-flex-ms-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.brz .brz-flex-ms-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.brz .brz-justify-content-ms-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.brz .brz-justify-content-ms-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.brz .brz-justify-content-ms-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.brz .brz-justify-content-ms-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.brz .brz-justify-content-ms-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.brz .brz-align-items-ms-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.brz .brz-align-items-ms-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.brz .brz-align-items-ms-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.brz .brz-align-items-ms-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.brz .brz-align-items-ms-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.brz .brz-col-first-ms{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.brz .brz-col-last-ms{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.brz .brz-align-self-ms-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.brz .brz-align-self-ms-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.brz .brz-align-self-ms-center{-ms-flex-item-align:center!important;align-self:center!important}.brz .brz-align-self-ms-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.brz .brz-align-self-ms-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}.brz .brz-flex-ms-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.brz .brz-flex-ms-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.brz .brz-align-content-ms-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.brz .brz-align-content-ms-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.brz .brz-align-content-ms-center{-ms-flex-line-pack:center!important;align-content:center!important}.brz .brz-align-content-ms-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.brz .brz-align-content-ms-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.brz .brz-align-content-ms-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}}@media (min-width:768px){.brz .brz-flex-sm-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.brz .brz-flex-sm-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.brz .brz-flex-sm-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.brz .brz-justify-content-sm-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.brz .brz-justify-content-sm-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.brz .brz-justify-content-sm-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.brz .brz-justify-content-sm-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.brz .brz-justify-content-sm-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.brz .brz-align-items-sm-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.brz .brz-align-items-sm-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.brz .brz-align-items-sm-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.brz .brz-align-items-sm-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.brz .brz-align-items-sm-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.brz .brz-col-first-sm{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.brz .brz-col-last-sm{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.brz .brz-align-self-sm-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.brz .brz-align-self-sm-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.brz .brz-align-self-sm-center{-ms-flex-item-align:center!important;align-self:center!important}.brz .brz-align-self-sm-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.brz .brz-align-self-sm-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}.brz .brz-flex-sm-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.brz .brz-flex-sm-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.brz .brz-align-content-sm-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.brz .brz-align-content-sm-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.brz .brz-align-content-sm-center{-ms-flex-line-pack:center!important;align-content:center!important}.brz .brz-align-content-sm-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.brz .brz-align-content-sm-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.brz .brz-align-content-sm-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}}@media (min-width:992px){.brz .brz-flex-md-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.brz .brz-flex-md-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.brz .brz-flex-md-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.brz .brz-justify-content-md-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.brz .brz-justify-content-md-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.brz .brz-justify-content-md-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.brz .brz-justify-content-md-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.brz .brz-justify-content-md-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.brz .brz-align-items-md-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.brz .brz-align-items-md-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.brz .brz-align-items-md-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.brz .brz-align-items-md-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.brz .brz-align-items-md-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.brz .brz-col-first-md{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.brz .brz-col-last-md{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.brz .brz-align-self-md-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.brz .brz-align-self-md-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.brz .brz-align-self-md-center{-ms-flex-item-align:center!important;align-self:center!important}.brz .brz-align-self-md-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.brz .brz-align-self-md-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}.brz .brz-flex-md-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.brz .brz-flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.brz .brz-align-content-md-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.brz .brz-align-content-md-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.brz .brz-align-content-md-center{-ms-flex-line-pack:center!important;align-content:center!important}.brz .brz-align-content-md-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.brz .brz-align-content-md-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.brz .brz-align-content-md-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}}.brz .brz-d-block{display:block!important}.brz .brz-d-inline-block{display:inline-block!important}.brz .brz-d-inline{display:inline!important}.brz .brz-d-table{width:100%;display:table;position:relative}.brz .brz-d-table-cell{display:table-cell}.brz .brz-d-xs-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.brz .brz-d-xs-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}@media (min-width:480px){.brz .brz-d-ms-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.brz .brz-d-ms-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:768px){.brz .brz-d-sm-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.brz .brz-d-sm-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:992px){.brz .brz-d-md-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.brz .brz-d-md-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:1200px){.brz .brz-flex-lg-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.brz .brz-flex-lg-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.brz .brz-flex-lg-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.brz .brz-justify-content-lg-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.brz .brz-justify-content-lg-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.brz .brz-justify-content-lg-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.brz .brz-justify-content-lg-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.brz .brz-justify-content-lg-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.brz .brz-align-items-lg-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.brz .brz-align-items-lg-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.brz .brz-align-items-lg-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.brz .brz-align-items-lg-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.brz .brz-align-items-lg-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.brz .brz-col-first-lg{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.brz .brz-col-last-lg{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.brz .brz-align-self-lg-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.brz .brz-align-self-lg-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.brz .brz-align-self-lg-center{-ms-flex-item-align:center!important;align-self:center!important}.brz .brz-align-self-lg-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.brz .brz-align-self-lg-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}.brz .brz-flex-lg-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.brz .brz-flex-lg-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.brz .brz-align-content-lg-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.brz .brz-align-content-lg-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.brz .brz-align-content-lg-center{-ms-flex-line-pack:center!important;align-content:center!important}.brz .brz-align-content-lg-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.brz .brz-align-content-lg-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.brz .brz-align-content-lg-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.brz .brz-d-lg-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.brz .brz-d-lg-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:1400px){.brz .brz-flex-xl-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.brz .brz-flex-xl-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.brz .brz-flex-xl-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.brz .brz-justify-content-xl-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.brz .brz-justify-content-xl-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.brz .brz-justify-content-xl-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.brz .brz-justify-content-xl-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.brz .brz-justify-content-xl-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.brz .brz-align-items-xl-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.brz .brz-align-items-xl-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.brz .brz-align-items-xl-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.brz .brz-align-items-xl-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.brz .brz-align-items-xl-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.brz .brz-col-first-xl{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.brz .brz-col-last-xl{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.brz .brz-align-self-xl-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.brz .brz-align-self-xl-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.brz .brz-align-self-xl-center{-ms-flex-item-align:center!important;align-self:center!important}.brz .brz-align-self-xl-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.brz .brz-align-self-xl-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}.brz .brz-flex-xl-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.brz .brz-flex-xl-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.brz .brz-align-content-xl-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.brz .brz-align-content-xl-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.brz .brz-align-content-xl-center{-ms-flex-line-pack:center!important;align-content:center!important}.brz .brz-align-content-xl-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.brz .brz-align-content-xl-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.brz .brz-align-content-xl-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.brz .brz-d-xl-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.brz .brz-d-xl-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}.brz .brz-hidden-xl-up{display:none!important}}.brz .brz-hidden,.brz .brz-hidden-xl-down,.brz .brz-hidden-xs-up,.brz .brz-visible-print-block{display:none!important}.brz .brz-ed-animated{-webkit-animation-duration:.15s;animation-duration:.15s;-webkit-animation-fill-mode:both;animation-fill-mode:both}.brz .brz-ed-animated--fadeInDown{-webkit-animation-name:fadeInDown;animation-name:fadeInDown}.brz .brz-ed-animated--fadeInUp{-webkit-animation-name:fadeInUp;animation-name:fadeInUp}.brz .brz-ed-animated--fadeIn{-webkit-animation-name:fadeIn;animation-name:fadeIn}.brz .brz-ed-animated--fadeInLeft{-webkit-animation-name:fadeInLeft;animation-name:fadeInLeft}.brz .brz-ed-animated--spin{-webkit-animation-name:spin;animation-name:spin;-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-timing-function:linear;animation-timing-function:linear}.brz .brz-ed-fade-enter{opacity:.01}.brz .brz-ed-fade-enter.brz-ed-fade-enter-active{opacity:1;-webkit-transition:opacity 150ms ease-in;transition:opacity 150ms ease-in}.brz .brz-ed-fade-exit{opacity:1}.brz .brz-ed-fade-exit.brz-ed-fade-exit-active{opacity:.01;-webkit-transition:opacity 150ms ease-in;transition:opacity 150ms ease-in}.brz .brz-p-relative{position:relative!important}.brz .brz-p-absolute{position:absolute!important}.brz .brz-p-fixed{position:fixed!important}.brz .brz-bg,.brz .brz-bg-content,.brz .brz-icon-svg,.brz .brz-section__content{position:relative}.brz .brz-invisible{visibility:hidden!important}.brz .brz-visible{visibility:visible!important}.brz .brz-invisible-xl-down,.brz .brz-invisible-xs-up{visibility:hidden!important}.brz .brz-invisible-blur-xs-up .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}@media (max-width:479px){.brz .brz-hidden-xs-down{display:none!important}.brz .brz-invisible-xs-down{visibility:hidden!important}.brz .brz-invisible-blur-xs-down .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (min-width:480px){.brz .brz-hidden-ms-up{display:none!important}.brz .brz-invisible-ms-up{visibility:hidden!important}.brz .brz-invisible-blur-ms-up .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (max-width:767px){.brz .brz-hidden-ms-down{display:none!important}.brz .brz-invisible-ms-down{visibility:hidden!important}.brz .brz-invisible-blur-ms-down .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}.brz .brz-container__wrap,.brz .brz-container__wrap--fluid{padding-left:15px;padding-right:15px}}@media (min-width:768px){.brz .brz-hidden-sm-up{display:none!important}.brz .brz-invisible-sm-up{visibility:hidden!important}.brz .brz-invisible-blur-sm-up .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (max-width:991px){.brz .brz-hidden-sm-down{display:none!important}.brz .brz-invisible-sm-down{visibility:hidden!important}.brz .brz-invisible-blur-sm-down .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (min-width:992px){.brz .brz-hidden-md-up{display:none!important}.brz .brz-invisible-md-up{visibility:hidden!important}.brz .brz-invisible-blur-md-up .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (max-width:1199px){.brz .brz-hidden-md-down{display:none!important}.brz .brz-invisible-md-down{visibility:hidden!important}.brz .brz-invisible-blur-md-down .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (min-width:1200px){.brz .brz-hidden-lg-up{display:none!important}.brz .brz-invisible-lg-up{visibility:hidden!important}.brz .brz-invisible-blur-lg-up .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (max-width:1399px){.brz .brz-hidden-lg-down{display:none!important}.brz .brz-invisible-lg-down{visibility:hidden!important}.brz .brz-invisible-blur-lg-down .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (min-width:1400px){.brz .brz-invisible-xl-up{visibility:hidden!important}.brz .brz-invisible-blur-xl-up .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}.brz .brz-invisible-blur-xl-down .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}@media print{.brz .brz-visible-print-block{display:block!important}}.brz .brz-visible-print-inline{display:none!important}@media print{.brz .brz-visible-print-inline{display:inline!important}}.brz .brz-visible-print-inline-block{display:none!important}@media print{.brz .brz-visible-print-inline-block{display:inline-block!important}.brz .brz-hidden-print{display:none!important}}.brz .brz-ow-hidden{overflow:hidden!important}.brz .brz-ow-visible{overflow:visible!important}.brz .brz-fw-100{font-weight:100!important}.brz .brz-fw-200{font-weight:200!important}.brz .brz-fw-300{font-weight:300!important}.brz .brz-fw-400{font-weight:400!important}.brz .brz-fw-500{font-weight:500!important}.brz .brz-fw-600{font-weight:600!important}.brz .brz-fw-700{font-weight:700!important}.brz .brz-fw-800{font-weight:800!important}.brz .brz-fw-900{font-weight:900!important}.brz .brz-icon-svg{display:inline-block;width:1em;height:1em;stroke:none;fill:currentColor;color:currentColor}.brz .brz-icon-svg use{fill:inherit}.brz .brz-icon-svg.glyph,.brz-ed .brz-icon-svg{fill:currentColor;stroke:none}.brz .brz-icon-svg.grid-16{height:16px;width:16px}.brz .brz-icon-svg.grid-24{height:24px;width:24px}.brz .brz-icon-svg.outline{stroke:currentColor;fill:none}.brz .brz-icon-svg.outline.stroke-2{stroke-width:2px}.brz .brz-section{background-color:#fff}.brz .brz-sec-full-height .brz-container__wrap,.brz .brz-sec-full-height .brz-container__wrap--fluid{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;min-height:100vh}.brz .brz-container__wrap,.brz .brz-row{display:-webkit-box;display:-ms-flexbox}.brz .brz-container,.brz .brz-container__wrap{margin-left:auto;margin-right:auto;width:100%}.brz .brz-container__wrap{display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.brz .brz-row{display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.brz .brz-columns{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;min-height:1px;-ms-flex-preferred-size:100%;flex-basis:100%}.brz .brz-columns>.brz-bg{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.brz .brz-wrapper,.brz .brz-wrapper-clone{border-top:1px solid transparent;border-bottom:1px solid transparent;margin-top:-1px;margin-bottom:-1px}.brz .brz-wrapper-clone__item{position:relative;min-height:1px;-ms-flex-preferred-size:auto;flex-basis:auto}.brz .brz-bg-content{-webkit-box-flex:1;-ms-flex:1;flex:1}.brz .brz-bg-media{overflow:hidden}.brz .brz-bg-color,.brz .brz-bg-image,.brz .brz-bg-map,.brz .brz-bg-media,.brz .brz-bg-video{position:absolute;top:0;left:0;width:100%;height:100%}.brz .brz-bg-image{background-repeat:no-repeat;background-size:cover}.brz .brz-iframe.brz-bg-map__cover,.brz .brz-iframe.brz-bg-video__cover{position:absolute;top:0;left:0;width:100%;height:100%;border:none;max-width:none;background-repeat:no-repeat;background-size:cover}.brz .brz-icon,.brz .media-toolbar-primary .search{max-width:100%}.brz .brz-bg-color{opacity:1}@media (max-width:767px){.brz .brz-bg-video .brz-iframe{display:none!important}}.brz .brz-btn,.brz .brz-icon{display:-webkit-inline-box;display:-ms-inline-flexbox;vertical-align:middle}@media (min-width:768px){.brz .brz-bg-image-parallax,.brz .brz-ed.brz-ed--desktop .brz-bg-image-parallax,.brz-ed.brz-ed--desktop .brz .brz-bg-image-parallax{width:100%;background-size:cover!important;background-position:50% 50%;left:0;height:100vh;top:-50vh;-webkit-transition:all 0s ease!important;transition:all 0s ease!important;-webkit-transform-origin:center center 0;transform-origin:center center 0;-webkit-transform-style:preserve-3d;transform-style:preserve-3d}}.brz .brz-btn{display:inline-flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border:1px solid #ccc;-webkit-transition:background .3s ease,color .3s ease,border-color .3s ease;transition:background .3s ease,color .3s ease,border-color .3s ease;text-align:center;-ms-touch-action:manipulation;touch-action:manipulation;color:#fff;cursor:pointer;-webkit-user-select:none;user-select:none;background-image:none;white-space:nowrap;font-weight:400;-webkit-backface-visibility:hidden;backface-visibility:hidden}.brz .brz-btn .brz-span{display:block}.brz .buttons{margin:-10px;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.brz .buttons .brz-wrapper-clone__item{padding:10px}.brz .brz-icon{display:inline-flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-transition:background .3s ease,color .3s ease,border-color .3s ease;transition:background .3s ease,color .3s ease,border-color .3s ease}.brz .brz-list{margin:-6px;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.brz .brz-list .brz-list__item{padding:6px}.brz .brz-countdown{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}.brz .brz-countdown__item{-webkit-box-flex:1;-ms-flex:1 0 25%;flex:1 0 25%;text-align:center;padding-left:15px;padding-right:15px;word-break:break-word;word-wrap:break-word}.brz .brz-countdown__number{font-size:1em;margin-bottom:15px}.brz .brz-spacer{width:100%}.brz .brz-icon-text{display:-webkit-box;display:-ms-flexbox;display:flex;width:100%;text-align:left;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;-ms-flex-wrap:nowrap;flex-wrap:nowrap}.brz .brz-icon-text .brz-text-btn,.brz .brz-icon-text .brz-text__editor{width:100%}.brz .brz-line{line-height:1;font-size:0;padding-top:7px;padding-bottom:7px;display:inline-block}.brz .brz-line .brz-hr{border-right-width:0;border-bottom-width:0;border-left-width:0}.brz .brz-map{position:relative;width:100%;display:inline-block;vertical-align:middle;overflow:hidden}.brz .brz-map .brz-iframe{position:absolute;top:0;left:0;width:100%;height:100%;border:none}.brz .brz-image{display:inherit;-webkit-box-pack:inherit;-ms-flex-pack:inherit;justify-content:inherit;-webkit-box-align:inherit;-ms-flex-align:inherit;align-items:inherit;-ms-flex-preferred-size:100%;flex-basis:100%;width:100%;overflow:hidden}.brz .brz-image .brz-img{max-width:100%;border-radius:inherit}.brz .brz-image picture{border-radius:inherit}.brz .brz-ed-image__content{overflow:hidden;position:relative;width:100%}.brz .brz-ed-image__wrapper{position:absolute;top:0;left:0;margin-left:auto;margin-right:auto}.brz .brz-ed-image__wrapper .brz-img{max-width:none;-webkit-user-select:none;user-select:none;display:block}.brz .brz-ed-image__wrapper picture:after{content:"";position:absolute;top:0;left:0;width:100%;height:100%}.brz .brz-image-fix-1-1{padding-top:100%}.brz .brz-image-fix-2-1{padding-top:50%}.brz .brz-image-fix-2-3{padding-top:150%}.brz .brz-image-fix-3-4{padding-top:125%}.brz .brz-image-fix-4-3{padding-top:75%}.brz .brz-image-fix-9-16{padding-top:177.8%}.brz .brz-image-fix-16-9{padding-top:56.25%}.brz .brz-video{position:relative;width:100%;display:inline-block;vertical-align:middle}.brz .brz-video .brz-iframe{position:absolute;top:0;left:0;width:100%;height:100%;border:none}.brz .brz-embed-code{position:relative;display:inline-block;width:100%;min-height:10px;word-break:break-all;word-wrap:break-word;overflow:hidden}.brz .brz-rich-text{-webkit-font-smoothing:antialiased;overflow-wrap:break-word;word-wrap:break-word;-ms-word-break:break-word;word-break:break-word;-ms-hyphens:auto;-moz-hyphens:auto;-webkit-hyphens:auto;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.brz .brz-rich-text i{font-style:italic}.brz .brz-rich-text ol li,.brz .brz-rich-text ul li{list-style:none}.brz .brz-rich-text ul li:before{position:relative;top:-.1em;line-height:1;content:"\2022";padding-right:.5em}.brz .brz-rich-text ol{counter-reset:number}.brz .brz-rich-text ol li{counter-increment:number}.brz .brz-rich-text ol li:before{content:counter(number);line-height:1;padding-right:.5em}.brz .brz-rich-text .ql-editor{white-space:pre-wrap}.brz .brz-rich-text h1,.brz .brz-rich-text h2,.brz .brz-rich-text h3,.brz .brz-rich-text h4,.brz .brz-rich-text h5,.brz .brz-rich-text h6{margin-top:0;margin-bottom:0;padding:0;text-shadow:none;text-transform:initial;text-decoration:initial}.brz .brz-rich-text p,.brz .brz-rich-text span{margin-top:0;margin-bottom:0;text-shadow:none;text-transform:initial;text-decoration:initial}.brz .brz-rich-text dl,.brz .brz-rich-text ol,.brz .brz-rich-text ul{margin:0;list-style:none;padding:0}.brz .brz-rich-text ol ol,.brz .brz-rich-text ol ul,.brz .brz-rich-text ul ol,.brz .brz-rich-text ul ul{margin:0}.brz .brz-rich-text a{color:#3dbfe8;text-decoration:none;background-color:transparent}.brz .brz-rich-text a[href]:hover{color:#1aabd8;text-decoration:none}.brz .brz-rich-text .link--anchor:not(.is-empty),.brz .brz-rich-text .link--external:not(.is-empty){color:#3dbfe8}.brz .brz-rich-text .link--anchor:not(.is-empty):hover,.brz .brz-rich-text .link--external:not(.is-empty):hover{color:#1aabd8}.brz .brz-text__editor{min-width:10px}.brz .brz-text__editor:empty:before{content:"\00a0\00a0"}.brz .brz-counter{-webkit-transition:all .3s ease;transition:all .3s ease;cursor:default;text-align:center;display:inline-block}.brz .brz-progress-bar .brz-text__editor{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.brz .brz-shortcode__placeholder{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;height:100%;width:100%;background-color:#373e48;color:#151924;font-size:inherit}@media (max-width:767px){.brz .brz-shortcode__placeholder{font-size:36px!important}}.brz .brz-soundcloud{font-size:0}.brz .slick-slider{position:relative;display:block;-webkit-box-sizing:border-box;box-sizing:border-box;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}.brz .slick-list{position:relative;overflow:hidden;display:block;margin:0;padding:0}.brz .slick-list:focus{outline:0}.brz .slick-list.dragging{cursor:pointer;cursor:hand}.brz .slick-slider .slick-list,.brz .slick-slider .slick-track{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.brz .slick-slide{min-height:1px;display:none;height:auto}.brz .brz-accordion__item--active>.brz-accordion__content:empty,.brz .brz-tabs__items--active .brz-bg-content:empty{min-height:50px}.brz .slick-slide img{display:block}.brz .slick-slide.slick-loading img{display:none}.slick-initialized .brz .slick-slide{display:block}.slick-vertical .brz .slick-slide{display:block;height:auto;border:1px solid transparent}.brz .slick-arrow.slick-hidden{display:none}.brz .brz-slick-slider .brz-icon-svg,.brz .brz-slick-slider .brz-rich-text *{-webkit-backface-visibility:hidden;backface-visibility:hidden}.brz .brz-slick-slider .brz-bg-media{width:calc(100% + 1px)}.brz .brz-slick-slider .brz-bg-color,.brz .brz-slick-slider .brz-bg-content{-webkit-transform:translateZ(0);transform:translateZ(0)}.brz .brz-slick-slider .brz-container__wrap{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.brz .brz-slick-slider--fade .slick-slide{height:auto;visibility:hidden}.brz .brz-slick-slider--fade .slick-slide.slick-active{visibility:visible}.brz .slick-initialized .slick-slide{display:block}.brz .slick-track{position:relative;left:0;top:0;margin-left:auto;margin-right:auto;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.brz .slick-slide .brz-section__content,.brz .slick-slide .brz-section__content>.brz-bg{height:100%}.brz .slick-slide .brz-section__content>.brz-bg>.brz-bg-content{height:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-wrap:wrap;flex-wrap:wrap}.brz .brz-slick-slider__dots{position:absolute;bottom:50px;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);padding:0;list-style:none;margin:0;font-size:0}.brz .brz-slick-slider__dots li{display:inline-block;vertical-align:middle;padding-left:5px;padding-right:5px}.brz .brz-slick-slider__dots li:first-child{padding-left:0}.brz .brz-slick-slider__dots li:last-child{padding-right:0}.brz .brz-slick-slider__dots button{cursor:pointer;color:inherit;outline:0;overflow:hidden;padding:0;text-indent:-9999px;border:2px solid currentColor;background-color:transparent;-webkit-transition:linear .2s transform,linear .2s background-color;transition:linear .2s transform,linear .2s background-color}.brz .brz-slick-slider__dots .slick-active button{background-color:currentColor;-webkit-transition:linear .2s transform,linear .2s background-color;transition:linear .2s transform,linear .2s background-color}.brz .brz-slick-slider__dots--circle button{width:10px;height:10px;border-radius:10px}.brz .brz-slick-slider__dots--diamond button{width:10px;height:10px;-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.brz .brz-slick-slider__dots--square button{width:10px;height:10px}.brz .brz-slick-slider__arrow{position:absolute;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);z-index:2;font-size:30px;opacity:.7;cursor:pointer;-webkit-transition:linear .2s opacity;transition:linear .2s opacity;color:#000}.brz .brz-slick-slider__arrow:hover{opacity:1;-webkit-transition:linear .2s opacity;transition:linear .2s opacity}.brz .brz-slick-slider__arrow .brz-icon-svg{display:block}.brz .brz-slick-slider__arrow-prev{-webkit-transform:translateY(-50%) rotate(-180deg);transform:translateY(-50%) rotate(-180deg);left:30px}.brz .brz-slick-slider__arrow-next{right:30px}.brz .brz-form{width:100%}.brz .brz-form__fields{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.brz .brz-form__item{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-ms-flex-negative:0;flex-shrink:0}.brz .brz-form .brz-input,.brz .brz-form .brz-textarea{display:block;width:100%;height:auto;background-color:transparent;border:none;outline:0;color:inherit;font-size:inherit;font-family:inherit;letter-spacing:inherit;font-weight:inherit;line-height:inherit}.brz .brz-form .brz-textarea{height:100%;resize:none}.brz .brz-form .brz-form__field{padding:14px 24px}.brz .brz-form__select{position:relative}.brz .brz-form__select-current{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.brz .brz-form__select-list{border:1px solid #dcdee1;border-top-width:0;overflow:hidden;position:absolute;z-index:1041;top:100%;left:0;width:100%;background-color:#fff}.brz .brz-form__select-item{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;border:0;height:52px}.brz .brz-form__select-item:not(:last-child){border-bottom:1px solid #f1f1f2}.brz .brz-form__select-item__input{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;font-size:16px;color:rgba(115,119,127,.7);line-height:1;font-family:inherit;font-weight:inherit;padding:14px 24px}.brz .brz-form__select-item__input .brz-input{border-width:0;height:100%;width:100%;color:inherit}.brz .brz-form__select-item__input .brz-input::-webkit-input-placeholder{color:rgba(115,119,127,.7);font-style:italic}.brz .brz-form__select-item__input .brz-input:-moz-placeholder{color:rgba(115,119,127,.7);font-style:italic}.brz .brz-form__select-item__input .brz-input::-moz-placeholder{color:rgba(115,119,127,.7);font-style:italic}.brz .brz-form__select-item__input .brz-input:-ms-input-placeholder{color:rgba(115,119,127,.7);font-style:italic}.brz .media-frame button,.brz .media-frame-title h1{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-style:normal}.brz .brz-form__select-item__input .brz-input.brz-input{cursor:text}.brz .brz-form__select-item__icon{color:rgba(115,119,127,.7);-ms-flex-preferred-size:52px;flex-basis:52px;text-align:center;font-size:13px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;cursor:pointer}.brz .brz-form__select--arrow{font-size:14px}.brz .brz-form .brz-control__select{position:relative}.brz .brz-form .brz-control__select-current,.brz .brz-form .brz-control__select-option{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;font-size:inherit;color:inherit}.brz .brz-form .brz-control__select-current{padding:14px 24px;cursor:pointer}.brz .brz-form .brz-control__select-current .brz-control__select-option{border:0;-ms-flex-preferred-size:100%;flex-basis:100%;height:100%}.brz .brz-form .brz-control__select-current .brz-control__select--arrow{font-size:14px}.brz .brz-form .brz-control__select-options{border:1px solid #dcdee1;border-top-width:0;overflow:hidden;position:absolute;z-index:1030;top:100%;left:0;width:100%;background-color:#fff;display:none}.brz .brz-form .brz-control__select-options .brz-control__select-option{padding:14px 24px;font-size:16px;height:52px;line-height:1.5;cursor:pointer}.brz .brz-form .brz-control__select-options .brz-control__select-option:not(:last-child){border-bottom:1px solid #f1f1f2}.brz .brz-form__alert{height:55px;width:100%;font-size:12px;line-height:2;letter-spacing:2.5px;font-weight:600;text-transform:uppercase;padding:17px 30px;color:#fff;margin-top:15px}.brz .brz-form__alert--success{background-color:#15d053}.brz .brz-form__alert--error{background-color:red}.brz .brz-form__item--error .brz-control__select-current,.brz .brz-form__item--error .brz-form__field{border-color:red!important}@media (max-width:767px){.brz .brz-form .brz-control__select-options .brz-control__select-option,.brz .brz-form__select-item__input{padding:10px 16px;font-size:14px}.brz .brz-form .brz-control__select-current,.brz .brz-form .brz-form__field{padding:10px 16px}}.brz .brz-tabs{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.brz .brz-tabs__nav{display:-webkit-box;display:-ms-flexbox;display:flex;overflow:hidden;margin:0;padding:0}.brz .brz-accordion__nav,.brz .brz-tabs__nav--button{padding:10px 15px;background-clip:padding-box;cursor:pointer}.brz .brz-tabs__nav--item{list-style:none}.brz .brz-tabs__nav--item:not(:last-child){margin-right:3px}.brz .brz-tabs__nav--active{position:relative}.brz .brz-tabs__nav--active:after,.brz .brz-tabs__nav--active:before{content:"";position:absolute;width:100vw;height:2px;bottom:0}.brz .brz-tabs__nav--active:before{left:-100vw}.brz .brz-tabs__nav--active:after{right:-100vw}.brz .brz-tabs__nav--button{border-style:solid}.brz .brz-tabs__content{font-size:0}.brz .brz-tabs__items{display:none;border-style:solid;background-clip:padding-box;width:100%}.brz .brz-tabs__items--active{display:inline-block;border-top:none}.brz .brz-accordion{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.brz .brz-accordion__nav{border-style:solid}.brz .brz-accordion__item{display:block;width:100%}.brz .brz-accordion__item>.brz-accordion__content{display:none;border-style:solid;background-clip:padding-box;border-top-color:transparent!important}.brz .brz-accordion__item:not(:last-child){margin-bottom:3px}.brz .brz-accordion__item--active>.brz-accordion__content{display:block}.brz .media-frame .hidden,.brz .screen-reader-text{display:none}.brz .media-modal *{-webkit-box-sizing:content-box;box-sizing:content-box}.brz .media-modal input,.brz .media-modal select,.brz .media-modal textarea{-webkit-box-sizing:border-box;box-sizing:border-box}.brz .media-frame,.brz .media-modal{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:12px;outline:0;-webkit-overflow-scrolling:touch}.brz .media-frame h1,.brz .media-frame h2,.brz .media-frame h3,.brz .media-frame h4,.brz .media-frame h5,.brz .media-frame h6,.brz .media-frame p,.brz .media-modal h1,.brz .media-modal h2,.brz .media-modal h3,.brz .media-modal h4,.brz .media-modal h5,.brz .media-modal h6,.brz .media-modal p{letter-spacing:0;line-height:normal}.brz .media-modal label,.brz .media-modal legend{font-size:13px;text-transform:capitalize;line-height:1.4em;color:#666;font-weight:400}.brz .media-frame input,.brz .media-frame textarea{padding:6px 8px}.brz .media-frame select,.brz .wp-admin .media-frame select{line-height:28px;margin-top:3px}.brz .media-frame a{border-bottom:none;color:#0073aa}.brz .media-frame a:active,.brz .media-frame a:hover{color:#00a0d2}.brz .media-frame a:focus{-webkit-box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8);box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8);outline:0;color:#124964}.brz .media-frame a.button{color:#32373c}.brz .media-frame a.button:hover{color:#23282d}.brz .media-frame a.button-primary,.brz .media-frame a.button-primary:hover{color:#fff}.brz .media-frame input[type=text],.brz .media-frame input[type=password],.brz .media-frame input[type=number],.brz .media-frame input[type=search],.brz .media-frame input[type=email],.brz .media-frame input[type=url],.brz .media-frame select,.brz .media-frame textarea{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:12px;line-height:normal;font-weight:400;font-style:normal;border:1px solid #ddd;background-color:#fff;min-height:25px;height:auto;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.07);box-shadow:inset 0 1px 2px rgba(0,0,0,.07);color:#32373c;outline:0;-webkit-transition:50ms border-color ease-in-out;transition:50ms border-color ease-in-out;letter-spacing:normal}.brz .media-frame input[type=text]:focus,.brz .media-frame input[type=password]:focus,.brz .media-frame input[type=number]:focus,.brz .media-frame input[type=search]:focus,.brz .media-frame input[type=email]:focus,.brz .media-frame input[type=url]:focus,.brz .media-frame select:focus,.brz .media-frame textarea:focus{border-color:#5b9dd9}.brz .media-frame select{height:24px;padding:2px}.brz .media-frame input:disabled,.brz .media-frame input[readonly],.brz .media-frame textarea:disabled,.brz .media-frame textarea[readonly]{background-color:#eee}.brz .media-frame input[type=search]{-webkit-appearance:textfield}.brz .media-frame ::-webkit-input-placeholder{color:#72777c}.brz .media-frame ::-moz-placeholder{color:#72777c;opacity:1}.brz .media-frame :-ms-input-placeholder{color:#72777c}.brz .media-frame button{text-shadow:none!important;line-height:normal!important;letter-spacing:normal;font-weight:400;text-transform:capitalize;margin:0}.brz .media-frame button.delete-attachment{height:auto;font-size:12px;line-height:1}.brz .media-frame button.media-button-select{margin-top:15px;font-size:13px;line-height:26px;height:28px}.brz .media-frame button.browser{color:#555!important;border-color:#ccc;background:#f7f7f7;-webkit-box-shadow:0 1px 0 #ccc;box-shadow:0 1px 0 #ccc}.brz .media-frame button.browser:hover{background:#fafafa;border-color:#999;color:#23282d!important}.brz .media-modal{position:fixed;top:30px;left:78px;right:30px;bottom:60px;z-index:160000}.brz .media-frame-title h1{padding:0 16px;margin:0;font-size:22px;font-weight:600;line-height:50px;color:#23282d;text-shadow:none;text-transform:capitalize}.brz .media-modal-close{position:absolute;top:0;right:0;width:50px;height:50px;margin:0;padding:0;border:1px solid transparent;background:0 0;color:#666;z-index:1000;cursor:pointer;outline:0;text-align:center;-webkit-transition:color .1s ease-in-out,background .1s ease-in-out;transition:color .1s ease-in-out,background .1s ease-in-out}.brz .media-modal-close:active,.brz .media-modal-close:hover{color:#00a0d2}.brz .media-modal-close:focus{color:#00a0d2;border-color:#5b9dd9;-webkit-box-shadow:0 0 3px rgba(0,115,170,.8);box-shadow:0 0 3px rgba(0,115,170,.8)}.brz .media-modal-close span.media-modal-icon{background-image:none}.brz .media-modal-close .media-modal-icon:before{content:"\f158";font:400 20px/1 dashicons;speak:none;vertical-align:middle;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.brz .attachment-details .setting label,.brz .attachment-details .setting span,.brz .image-details h2,.brz .image-details h3,.brz .media-router>a,.brz .media-sidebar .setting label,.brz .media-sidebar .setting span,.brz .media-sidebar h2,.brz .media-sidebar h3,.brz .uploader-inline h2,.brz .uploader-inline h3{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-style:normal}.brz .media-router>a{position:relative;float:left;padding:8px 10px 9px;margin:0;height:18px;line-height:18px;font-size:14px;text-decoration:none;font-weight:400;border-bottom:none;color:#0073aa;text-transform:capitalize;text-align:left;text-shadow:none}.brz .media-router>a:hover{color:#00a0d2}.brz .media-router>a:last-child{border-right:0}.brz .media-router>a:active{outline:0}.brz .media-router .active,.brz .media-router .active:hover{color:#32373c}.brz .media-router .active,.brz .media-router>a.active:last-child{background:#fff;border:1px solid #ddd;border-bottom:none}.brz .media-frame .search{padding:4px;font-size:13px;border-radius:0;line-height:normal;color:#444;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif}.brz .media-modal-content .media-frame select.attachment-filters{margin-top:11px;margin-right:2%;width:42%;width:calc(48% - 12px);padding:2px;line-height:28px;height:28px}.brz .thumbnail{display:block;padding:0;margin-bottom:0;line-height:normal;background-color:transparent;border:0;border-radius:0}.brz .uploader-inline h2,.brz .uploader-inline h3{letter-spacing:0;color:#23282d}.brz .uploader-inline .has-upload-message .upload-instructions,.brz .uploader-inline p{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif}.brz .media-sidebar .sidebar-title{font-size:20px;margin:0;padding:12px 10px 10px;line-height:28px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif}.brz .image-details h2,.brz .image-details h3,.brz .media-sidebar h2,.brz .media-sidebar h3{position:relative;font-weight:600;text-transform:uppercase;font-size:12px;line-height:1.4em;color:#666;margin:24px 0 8px;letter-spacing:normal;text-shadow:none}.brz .attachment-details .setting label,.brz .media-sidebar .setting label{display:block;text-transform:capitalize;letter-spacing:normal;text-shadow:none}.brz .attachment-details .setting span,.brz .media-sidebar .setting span{min-width:30%;margin-right:4%;font-size:12px;letter-spacing:normal;text-shadow:none;text-align:right;word-wrap:break-word}.brz .media-sidebar .setting .name{max-width:80px}.brz .attachment-details .setting select,.brz .media-sidebar .setting select{max-width:65%}.brz .attachment-details .field input[type=radio],.brz .attachment-details .field input[type=checkbox],.brz .attachment-details .setting input[type=radio],.brz .attachment-details .setting input[type=checkbox],.brz .media-sidebar .field input[type=radio],.brz .media-sidebar .field input[type=checkbox],.brz .media-sidebar .setting input[type=radio],.brz .media-sidebar .setting input[type=checkbox]{float:none;margin:8px 3px 0;padding:0}.brz .attachment-details .setting span,.brz .compat-item label span,.brz .media-sidebar .setting span{float:left;min-height:22px;padding-top:8px;line-height:16px;font-weight:400;color:#666}.brz .compat-item label span{text-align:right}.brz .attachment-details .setting .value,.brz .attachment-details .setting input[type=text],.brz .attachment-details .setting input[type=password],.brz .attachment-details .setting input[type=number],.brz .attachment-details .setting input[type=search],.brz .attachment-details .setting input[type=email],.brz .attachment-details .setting input[type=url],.brz .attachment-details .setting input[type=tel],.brz .attachment-details .setting textarea,.brz .media-sidebar .setting .value,.brz .media-sidebar .setting input[type=text],.brz .media-sidebar .setting input[type=password],.brz .media-sidebar .setting input[type=number],.brz .media-sidebar .setting input[type=search],.brz .media-sidebar .setting input[type=email],.brz .media-sidebar .setting input[type=url],.brz .media-sidebar .setting input[type=tel],.brz .media-sidebar .setting textarea{-webkit-box-sizing:border-box;box-sizing:border-box;margin:1px;width:65%;float:right;border-radius:0}.brz .attachment-details .setting .value,.brz .media-sidebar .setting .value{margin:0 1px;text-align:left}.brz .attachment-details .setting textarea,.brz .compat-item .field textarea,.brz .media-sidebar .setting textarea{height:62px;resize:vertical}.brz .attachment-details select,.brz .media-sidebar select{margin-top:3px}.brz .media-frame-title .suggested-dimensions{font-size:14px;float:right;margin-right:20px}.brz .media-frame select.attachment-filters{margin-top:11px;margin-right:2%;max-width:42%;max-width:calc(48% - 12px)}.brz .media-frame select.attachment-filters:last-of-type{margin-right:0}.brz .wp-core-ui .attachment{position:relative;float:left;padding:8px;margin:0;color:#444;cursor:pointer;list-style:none;text-align:center;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:25%;-webkit-box-sizing:border-box;box-sizing:border-box}.brz .wp-core-ui .attachment.details:focus,.brz .wp-core-ui .attachment:focus,.brz .wp-core-ui .selected.attachment:focus{-webkit-box-shadow:inset 0 0 2px 3px #fff,inset 0 0 0 7px #5b9dd9;box-shadow:inset 0 0 2px 3px #fff,inset 0 0 0 7px #5b9dd9;outline:0}.brz .wp-core-ui .selected.attachment{-webkit-box-shadow:inset 0 0 0 5px #fff,inset 0 0 0 7px #ccc;box-shadow:inset 0 0 0 5px #fff,inset 0 0 0 7px #ccc}.brz .wp-core-ui .attachment.details{-webkit-box-shadow:inset 0 0 0 3px #fff,inset 0 0 0 7px #0073aa;box-shadow:inset 0 0 0 3px #fff,inset 0 0 0 7px #0073aa}.brz .wp-core-ui .attachment-preview{position:relative;-webkit-box-shadow:inset 0 0 15px rgba(0,0,0,.1),inset 0 0 0 1px rgba(0,0,0,.05);box-shadow:inset 0 0 15px rgba(0,0,0,.1),inset 0 0 0 1px rgba(0,0,0,.05);background:#eee;cursor:pointer}.brz .wp-core-ui .attachment-preview:before{content:"";display:block;padding-top:100%}.brz .wp-core-ui .attachment .icon{margin:0 auto;overflow:hidden}.brz .wp-core-ui .attachment .thumbnail{overflow:hidden;position:absolute;top:0;right:0;bottom:0;left:0;opacity:1;-webkit-transition:opacity .1s;transition:opacity .1s}.brz .wp-core-ui .attachment .portrait img{max-width:100%}.brz .wp-core-ui .attachment .landscape img{max-height:100%}.brz .wp-core-ui .attachment .thumbnail:after{content:"";display:block;position:absolute;top:0;left:0;right:0;bottom:0;-webkit-box-shadow:inset 0 0 0 1px rgba(0,0,0,.1);box-shadow:inset 0 0 0 1px rgba(0,0,0,.1);overflow:hidden}.brz .wp-core-ui .attachment .thumbnail img{top:0;left:0}.brz .wp-core-ui .attachment .thumbnail .centered{position:absolute;top:0;left:0;width:100%;height:100%;-webkit-transform:translate(50%,50%);transform:translate(50%,50%)}.brz .wp-core-ui .attachment .thumbnail .centered img{-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.brz .wp-core-ui .attachments-browser .attachment .thumbnail .centered img.icon{-webkit-transform:translate(-50%,-70%);transform:translate(-50%,-70%)}.brz .ie8 .wp-core-ui .attachment img.icon{top:20%;position:relative}.brz .wp-core-ui .attachment .filename{position:absolute;left:0;right:0;bottom:0;overflow:hidden;max-height:100%;word-wrap:break-word;text-align:center;font-weight:600;background:rgba(255,255,255,.8);-webkit-box-shadow:inset 0 0 0 1px rgba(0,0,0,.15);box-shadow:inset 0 0 0 1px rgba(0,0,0,.15)}.brz .wp-core-ui .attachment .filename div{padding:5px 10px}.brz .wp-core-ui .attachment .thumbnail img{position:absolute}.brz .wp-core-ui .attachment-close{display:block;position:absolute;top:5px;right:5px;height:22px;width:22px;padding:0;background-color:#fff;background-position:-96px 4px;border-radius:3px;-webkit-box-shadow:0 0 0 1px rgba(0,0,0,.3);box-shadow:0 0 0 1px rgba(0,0,0,.3);-webkit-transition:none;transition:none}.brz .wp-core-ui .attachment-close:focus,.brz .wp-core-ui .attachment-close:hover{background-position:-36px 4px}.brz .wp-core-ui .attachment .check{display:none;height:24px;width:24px;padding:0;border:0;position:absolute;z-index:10;top:0;right:0;outline:0;background:#eee;cursor:pointer;-webkit-box-shadow:0 0 0 1px #fff,0 0 0 2px rgba(0,0,0,.15);box-shadow:0 0 0 1px #fff,0 0 0 2px rgba(0,0,0,.15)}.brz .wp-core-ui .attachment .check .media-modal-icon{display:block;background-position:-1px 0;height:15px;width:15px;margin:5px}.brz .wp-core-ui .attachment .check:hover .media-modal-icon{background-position:-40px 0}.brz .wp-core-ui .attachment.selected .check{display:block}.brz .wp-core-ui .attachment.details .check,.brz .wp-core-ui .attachment.selected .check:focus,.brz .wp-core-ui .media-frame.mode-grid .attachment.selected .check{background-color:#0073aa;-webkit-box-shadow:0 0 0 1px #fff,0 0 0 2px #0073aa;box-shadow:0 0 0 1px #fff,0 0 0 2px #0073aa}.brz .wp-core-ui .attachment.details .check .media-modal-icon,.brz .wp-core-ui .media-frame.mode-grid .attachment.selected .check .media-modal-icon{background-position:-21px 0}.brz .wp-core-ui .attachment.details .check:hover .media-modal-icon,.brz .wp-core-ui .attachment.selected .check:focus .media-modal-icon,.brz .wp-core-ui .media-frame.mode-grid .attachment.selected .check:hover .media-modal-icon{background-position:-60px 0}.brz .wp-core-ui .media-frame .attachment .describe{position:relative;display:block;width:100%;margin:0;padding:8px;font-size:12px;border-radius:0}.brz .media-frame .attachments-browser{position:relative;width:100%;height:100%;overflow:hidden}.brz .attachments-browser .media-toolbar{right:300px;height:50px}.brz .attachments-browser.hide-sidebar .media-toolbar{right:0}.brz .attachments-browser .media-toolbar-primary>.media-button,.brz .attachments-browser .media-toolbar-primary>.media-button-group,.brz .attachments-browser .media-toolbar-secondary>.media-button,.brz .attachments-browser .media-toolbar-secondary>.media-button-group{margin:11px 0}.brz .attachments-browser .attachments{padding:2px 8px 8px}.brz .attachments-browser .attachments,.brz .attachments-browser .uploader-inline{position:absolute;top:50px;left:0;right:300px;bottom:0;overflow:auto;outline:0}.brz .attachments-browser .uploader-inline.hidden{display:none}.brz .attachments-browser .media-toolbar-primary{max-width:33%}.brz .attachments-browser .media-toolbar-secondary{max-width:66%}.brz .uploader-inline .close{background-color:transparent;border:0;cursor:pointer;height:48px;outline:0;padding:0;position:absolute;right:2px;text-align:center;top:2px;width:48px;z-index:1}.brz .uploader-inline .close:before{font:400 30px/1 dashicons!important;color:#555d66;display:inline-block;content:"\f335";font-weight:300;margin-top:1px}.brz .uploader-inline .close:focus{outline:#5b9dd9 solid 1px;-webkit-box-shadow:0 0 3px rgba(0,115,170,.8);box-shadow:0 0 3px rgba(0,115,170,.8)}.brz .attachments-browser.hide-sidebar .attachments,.brz .attachments-browser.hide-sidebar .uploader-inline{right:0;margin-right:0}.brz .attachments-browser .instructions{display:inline-block;margin-top:16px;line-height:18px;font-size:13px;color:#666;margin-right:.5em}.brz .attachments-browser .no-media{padding:2em 0 0 2em}.brz .media-progress-bar{position:relative;height:10px;width:70%;margin:10px auto;border-radius:10px;background:#ddd;background:rgba(0,0,0,.1)}.brz .media-progress-bar div{height:10px;min-width:20px;width:0;background:#0073aa;border-radius:10px;-webkit-transition:width .3s;transition:width .3s}.brz .media-uploader-status .media-progress-bar{display:none;width:100%}.brz .uploading.media-uploader-status .media-progress-bar{display:block}.brz .attachment-preview .media-progress-bar{position:absolute;top:50%;left:15%;width:70%;margin:-5px 0 0}.brz .media-uploader-status{position:relative;margin:0 auto;padding-bottom:10px;max-width:400px}.brz .uploader-inline .media-uploader-status h2,.brz .uploader-inline .media-uploader-status h3{display:none}.brz .media-uploader-status .upload-details{display:none;font-size:12px;color:#666}.brz .uploading.media-uploader-status .upload-details{display:block}.brz .media-uploader-status .upload-detail-separator{padding:0 4px}.brz .media-uploader-status .upload-count{color:#444}.brz .media-uploader-status .upload-dismiss-errors,.brz .media-uploader-status .upload-errors{display:none}.brz .errors.media-uploader-status .upload-dismiss-errors,.brz .errors.media-uploader-status .upload-errors{display:block}.brz .media-uploader-status .upload-dismiss-errors{text-decoration:none}.brz .media-sidebar .media-uploader-status .upload-dismiss-errors{position:absolute;top:-10px;right:-10px;padding:10px;-webkit-transition:none;transition:none}.brz .media-sidebar .media-uploader-status .upload-dismiss-errors:before{content:"\f153";display:block;font:400 16px/1 dashicons;color:#72777c}.brz .media-sidebar .media-uploader-status .upload-dismiss-errors:focus:before,.brz .media-sidebar .media-uploader-status .upload-dismiss-errors:hover:before{color:#c00}.brz .upload-errors .upload-error{padding:12px;margin-bottom:12px;background:#fff;border-left:4px solid #dc3232;-webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,.1);box-shadow:0 1px 1px 0 rgba(0,0,0,.1)}.brz .uploader-inline .upload-errors .upload-error{background-color:#fbeaea;-webkit-box-shadow:none;box-shadow:none}.brz .upload-errors .upload-error-filename{font-weight:600}.brz .upload-errors .upload-error-message{display:block;padding-top:8px;word-wrap:break-word}.brz .uploader-window{position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,86,132,.9);z-index:250000;display:none;text-align:center;opacity:0;-webkit-transition:opacity 250ms;transition:opacity 250ms}.brz .uploader-window-content{position:absolute;top:10px;left:10px;right:10px;bottom:10px;border:1px dashed #fff}.brz .uploader-window h1,.brz .uploader-window h3{margin:-.5em 0 0;position:absolute;top:50%;left:0;right:0;-webkit-transform:translateY(-50%);transform:translateY(-50%);font-size:40px;color:#fff;padding:0}.brz .uploader-window .media-progress-bar{margin-top:20px;max-width:300px;background:0 0;border-color:#fff;display:none}.brz .uploader-window .media-progress-bar div{background:#fff}.brz .uploading .uploader-window .media-progress-bar{display:block}.brz .media-frame .uploader-inline{margin-bottom:20px;padding:0;text-align:center}.brz .uploader-inline-content{position:absolute;top:30%;left:0;right:0}.brz .uploader-inline-content .upload-ui{margin:2em 0}.brz .uploader-inline-content .post-upload-ui{margin-bottom:2em}.brz .uploader-inline .has-upload-message .upload-ui{margin:0 0 4em}.brz .uploader-inline h2,.brz .uploader-inline h3{font-size:20px;line-height:28px;font-weight:400;margin:0}.brz .uploader-inline .has-upload-message .upload-instructions{font-size:14px;color:#444;font-weight:400}.brz .uploader-inline .drop-instructions{display:none}.brz .supports-drag-drop .uploader-inline .drop-instructions{display:block}.brz .uploader-inline p{font-size:12px;margin:.5em 0}.brz .uploader-inline .media-progress-bar{display:none}.brz .uploading.uploader-inline .media-progress-bar{display:block}.brz .uploader-inline .browser{display:inline-block!important}.brz .media-selection{position:absolute;top:0;left:0;right:350px;height:60px;padding:0 0 0 16px;overflow:hidden;white-space:nowrap}.brz .media-selection .selection-info{display:inline-block;font-size:12px;height:60px;margin-right:10px;vertical-align:top}.brz .media-selection.editing,.brz .media-selection.empty,.brz .media-selection.one .edit-selection{display:none}.brz .media-selection .count{display:block;padding-top:12px;font-size:14px;line-height:20px;font-weight:600}.brz .media-selection .attachments,.brz .media-selection .selection-view{display:inline-block;vertical-align:top}.brz .media-selection .button-link{float:left;padding:1px 8px;margin:1px 8px 1px -8px;line-height:16px;border-right:1px solid #ddd;color:#0073aa;text-decoration:none}.brz .media-selection .button-link:focus,.brz .media-selection .button-link:hover{color:#00a0d2}.brz .media-selection .button-link:last-child{border-right:0;margin-right:0}.brz .selection-info .clear-selection{color:#bc0b0b}.brz .selection-info .clear-selection:focus,.brz .selection-info .clear-selection:hover{color:#dc3232}.brz .media-selection .attachments{height:48px;margin:6px;padding:0;overflow:hidden}.brz .media-selection .attachment{width:40px;padding:0;margin:4px}.brz .media-selection .attachment .thumbnail{top:0;right:0;bottom:0;left:0}.brz .media-selection .attachment .icon{width:50%}.brz .media-selection .attachment-preview{-webkit-box-shadow:none;box-shadow:none;background:0 0}.brz .wp-core-ui .media-selection .attachment.details:focus,.brz .wp-core-ui .media-selection .attachment:focus,.brz .wp-core-ui .media-selection .selected.attachment:focus{-webkit-box-shadow:0 0 0 1px #fff,0 0 2px 3px #5b9dd9;box-shadow:0 0 0 1px #fff,0 0 2px 3px #5b9dd9}.brz .wp-core-ui .media-selection .selected.attachment{-webkit-box-shadow:none;box-shadow:none}.brz .wp-core-ui .media-selection .attachment.details{-webkit-box-shadow:0 0 0 1px #fff,0 0 0 3px #0073aa;box-shadow:0 0 0 1px #fff,0 0 0 3px #0073aa}.brz .media-selection:after{content:"";display:block;position:absolute;top:0;right:0;bottom:0;width:25px;background-image:-webkit-gradient(linear,right top,left top,from(white),to(rgba(255,255,255,0)));background-image:linear-gradient(to left,#fff,rgba(255,255,255,0))}.brz .media-selection .attachment .filename{display:none}.brz .media-frame .spinner{background:url(../images/spinner.gif) no-repeat;background-size:20px 20px;float:right;display:inline-block;opacity:.7;filter:alpha(opacity=70);width:20px;height:20px;margin:0;vertical-align:middle}.brz .attachment-details.save-waiting .settings-save-status .spinner,.brz .media-frame .embed-loading .embed-url .spinner,.brz .media-frame .spinner.is-active{visibility:visible}.brz .media-toolbar .spinner{margin-top:14px}.brz .attachment-details{position:relative;overflow:auto}.brz .attachment-details .settings-save-status{float:right;text-transform:none;z-index:10}.brz .attachment-details .settings-save-status .spinner{margin-left:5px}.brz .attachment-details .settings-save-status .saved{float:right;display:none}.brz .attachment-details.save-complete .settings-save-status .saved{display:block}.brz .attachment-info{overflow:hidden;min-height:60px;margin-bottom:16px;line-height:18px;color:#666;border-bottom:1px solid #ddd;padding-bottom:11px}.brz .attachment-info .filename{font-weight:600;color:#444;word-wrap:break-word}.brz .attachment-info .thumbnail{position:relative;float:left;max-width:120px;max-height:120px;margin-top:5px;margin-right:10px;margin-bottom:5px}.brz .uploading .attachment-info .thumbnail{width:120px;height:80px;-webkit-box-shadow:inset 0 0 15px rgba(0,0,0,.1);box-shadow:inset 0 0 15px rgba(0,0,0,.1)}.brz .uploading .attachment-info .media-progress-bar{margin-top:35px}.brz .attachment-info .thumbnail-image:after{content:"";display:block;position:absolute;top:0;left:0;right:0;bottom:0;-webkit-box-shadow:inset 0 0 0 1px rgba(0,0,0,.15);box-shadow:inset 0 0 0 1px rgba(0,0,0,.15);overflow:hidden}.brz .attachment-info .thumbnail img{display:block;max-width:120px;max-height:120px;margin:0 auto}.brz .attachment-info .details{float:left;font-size:12px;max-width:100%}.brz .attachment-info .delete-attachment,.brz .attachment-info .edit-attachment,.brz .attachment-info .trash-attachment,.brz .attachment-info .untrash-attachment{display:block;text-decoration:none;white-space:nowrap}.brz .attachment-details.needs-refresh .attachment-info .edit-attachment{display:none}.brz .attachment-info .edit-attachment{display:block}.brz .media-modal .delete-attachment,.brz .media-modal .trash-attachment,.brz .media-modal .untrash-attachment{display:inline;padding:0;color:#bc0b0b}.brz .media-modal .delete-attachment:focus,.brz .media-modal .delete-attachment:hover,.brz .media-modal .trash-attachment:focus,.brz .media-modal .trash-attachment:hover,.brz .media-modal .untrash-attachment:focus,.brz .media-modal .untrash-attachment:hover{color:#dc3232}.brz .attachment-display-settings{width:100%;float:left;overflow:hidden}.brz .attachment-display-settings h4{margin:1.4em 0 .4em}.brz .collection-settings{overflow:hidden}.brz .collection-settings .setting input[type=checkbox]{float:left;margin-right:8px}.brz .collection-settings .setting span{min-width:inherit}.brz .media-modal .imgedit-wrap{position:static}.brz .media-modal .imgedit-wrap .imgedit-panel-content{padding:16px;position:absolute;top:0;right:282px;bottom:0;left:0;overflow:auto}.brz .media-modal .imgedit-wrap .imgedit-settings{background:#f3f3f3;border-left:1px solid #ddd;padding:20px 16px 16px;position:absolute;top:0;right:0;bottom:0;width:250px;overflow:auto}.brz .media-modal .imgedit-group{background:0 0;border:none;border-bottom:1px solid #ddd;-webkit-box-shadow:none;box-shadow:none;margin:0 0 16px;padding:0 0 16px;position:relative}.brz .media-modal .imgedit-group:last-of-type{border:none;margin:0;padding:0}.brz .media-modal .imgedit-group-top{margin:0}.brz .media-modal .imgedit-group-top h2,.brz .media-modal .imgedit-group-top h2 .button-link,.brz .media-modal .imgedit-group-top h3{display:inline-block;text-transform:uppercase;font-size:12px;color:#666;margin:3px 0 0}.brz .media-modal .imgedit-group-top h2 .button-link,.brz .media-modal .imgedit-group-top h2 a,.brz .media-modal .imgedit-group-top h3 a{text-decoration:none;color:#666}.brz .wp-core-ui.media-modal .image-editor .imgedit-help-toggle,.brz .wp-core-ui.media-modal .image-editor .imgedit-help-toggle:active,.brz .wp-core-ui.media-modal .image-editor .imgedit-help-toggle:hover{border:1px solid transparent;margin:0;padding:0;background:0 0;color:#0074a2;font-size:20px;line-height:1;cursor:pointer;-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-shadow:none;box-shadow:none}.brz .wp-core-ui.media-modal .image-editor .imgedit-help-toggle:focus{color:#0074a2;border-color:#5b9dd9;outline:0;-webkit-box-shadow:0 0 3px rgba(0,115,170,.8);box-shadow:0 0 3px rgba(0,115,170,.8)}.brz .wp-core-ui.media-modal .imgedit-group-top .dashicons-arrow-down.imgedit-help-toggle{margin-top:-3px}.brz .wp-core-ui.media-modal .image-editor h3 .imgedit-help-toggle{margin-top:-2px}.brz .media-modal .imgedit-help-toggled span.dashicons:before{content:"\f142"}.brz .media-modal .imgedit-thumbnail-preview{margin:10px 8px 0 0}.brz .imgedit-thumbnail-preview-caption{display:block}.brz .media-modal .imgedit-wrap div.updated{margin:0 0 16px}.brz .embed-url{display:block;position:relative;padding:16px;margin:0;z-index:250;background:#fff;font-size:18px}.brz .media-frame .embed-url input{font-size:18px;padding:12px 14px;width:100%;min-width:200px;-webkit-box-shadow:inset 2px 2px 4px -2px rgba(0,0,0,.1);box-shadow:inset 2px 2px 4px -2px rgba(0,0,0,.1)}.brz .media-frame .embed-url .spinner{position:absolute;top:32px;right:26px}.brz .embed-link-settings,.brz .embed-media-settings{position:absolute;top:70px;left:0;right:0;bottom:0;padding:16px 16px 32px;overflow:auto}.brz .media-embed .embed-link-settings{overflow:visible}.brz .embed-preview embed,.brz .embed-preview iframe,.brz .embed-preview img,.brz .mejs-container video{max-width:100%;vertical-align:middle}.brz .embed-preview a{display:inline-block}.brz .embed-preview img{display:block;height:auto}.brz .mejs-container:focus{outline:#5b9dd9 solid 1px;-webkit-box-shadow:0 0 2px 1px rgba(30,140,190,.8);box-shadow:0 0 2px 1px rgba(30,140,190,.8)}.brz .image-details .media-modal{left:140px;right:140px}.brz .image-details .media-frame-content,.brz .image-details .media-frame-router,.brz .image-details .media-frame-title{left:0}.brz .image-details .embed-media-settings{top:0;overflow:visible;padding:0}.brz .image-details .embed-media-settings,.brz .image-details .embed-media-settings div{-webkit-box-sizing:border-box;box-sizing:border-box}.brz .image-details .column-settings{background:#f3f3f3;border-right:1px solid #ddd;min-height:100%;width:55%;position:absolute;top:0;left:0}.brz .image-details .column-settings h2,.brz .image-details .column-settings h3{margin:20px;padding-top:20px;border-top:1px solid #ddd;color:#23282d}.brz .image-details .column-image{width:45%;position:absolute;left:55%;top:0}.brz .image-details .image{margin:20px}.brz .image-details .image img{max-width:100%;max-height:500px}.brz .image-details .advanced-toggle{padding:0;color:#666;text-transform:uppercase;text-decoration:none}.brz .image-details .advanced-toggle:active,.brz .image-details .advanced-toggle:hover{color:#666}.brz .image-details .advanced-toggle:after{font:400 20px/1 dashicons;speak:none;vertical-align:top;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f140";display:inline-block;margin-top:-2px}.brz .image-details .advanced-visible .advanced-toggle:after{content:"\f142"}.brz .image-details .embed-media-settings .size{margin-bottom:4px}.brz .image-details .custom-size span{display:block}.brz .image-details .custom-size label{display:block;float:left}.brz .image-details .custom-size span small{color:#555d66;font-size:inherit}.brz .image-details .custom-size input{width:5em}.brz .image-details .custom-size .sep{float:left;margin:26px 6px 0}.brz .image-details .custom-size:after{content:"";display:table;clear:both}.brz .media-embed .thumbnail{max-width:100%;max-height:200px;position:relative;float:left}.brz .media-embed .thumbnail img{max-height:200px;display:block}.brz .media-embed .thumbnail:after{content:"";display:block;position:absolute;top:0;left:0;right:0;bottom:0;-webkit-box-shadow:inset 0 0 0 1px rgba(0,0,0,.1);box-shadow:inset 0 0 0 1px rgba(0,0,0,.1);overflow:hidden}.brz .media-embed .setting{width:100%;margin:10px 0;float:left;display:block;clear:both}.brz .image-details .embed-media-settings .setting{float:none;width:auto}.brz .image-details .actions{margin:10px 0}.brz .image-details .hidden{display:none}.brz .media-embed .setting input[type=text],.brz .media-embed .setting textarea{display:block;width:100%;max-width:400px;margin:1px 0}.brz .image-details .embed-media-settings .setting input[type=text],.brz .image-details .embed-media-settings .setting textarea{max-width:inherit;width:70%}.brz .image-details .embed-media-settings .custom-size,.brz .image-details .embed-media-settings .link-target,.brz .image-details .embed-media-settings .setting input.link-to-custom{margin-left:27%;width:70%}.brz .image-details .embed-media-settings .link-target{margin-top:24px}.brz .media-embed .setting input.hidden,.brz .media-embed .setting textarea.hidden{display:none}.brz .media-embed .setting span{display:block;width:200px;font-size:13px;line-height:24px;color:#666}.brz .image-details .embed-media-settings .setting span{float:left;width:25%;text-align:right;margin:8px 1% 0;line-height:1.1}.brz .media-embed .setting .button-group{margin:2px 0}.brz .media-embed-sidebar{position:absolute;top:0;left:440px}.brz .advanced-section,.brz .link-settings{margin-top:10px}.brz .wp-editor-wrap .uploader-editor{background:rgba(150,150,150,.9);position:absolute;top:0;left:0;width:100%;height:100%;z-index:99998;display:none;text-align:center}.brz .wp-editor-wrap .uploader-editor-content{border:1px dashed #fff;position:absolute;top:10px;left:10px;right:10px;bottom:10px}.brz .wp-editor-wrap .uploader-editor .uploader-editor-title{position:absolute;top:50%;left:0;right:0;-webkit-transform:translateY(-50%);transform:translateY(-50%);font-size:3em;line-height:1.3;font-weight:600;color:#fff;padding:0;margin:0;display:none}.brz .wp-editor-wrap .uploader-editor.droppable{background:rgba(0,86,132,.9)}.brz .wp-editor-wrap .uploader-editor.droppable .uploader-editor-title{display:block}@media only screen and (max-width:900px){.brz .media-frame:not(.hide-menu) .media-frame-content,.brz .media-frame:not(.hide-menu) .media-frame-router,.brz .media-frame:not(.hide-menu) .media-frame-title,.brz .media-frame:not(.hide-menu) .media-frame-toolbar{left:0}.brz .media-frame:not(.hide-menu) .media-frame-menu{position:static;width:0}.brz .media-frame:not(.hide-menu) .media-menu{width:auto;max-width:80%;overflow:auto;z-index:2000;top:50px;left:-300px;right:auto;bottom:auto;padding:5px 0;border:1px solid #ccc}.brz .media-frame:not(.hide-menu) .media-frame-title,.brz .media-frame:not(.hide-menu) .media-menu.visible{left:0}.brz .media-frame:not(.hide-menu) .media-menu>a{padding:12px 16px;font-size:16px}.brz .media-frame:not(.hide-menu) .media-menu>a.active{display:none}.brz .media-frame:not(.hide-menu) .media-menu .separator{margin:5px 10px}.brz .media-frame:not(.hide-menu) .media-frame-title .dashicons{display:inline-block;line-height:50px}.brz .media-frame:not(.hide-menu) .media-frame-title h1{color:#0073aa;line-height:3;font-size:18px;float:left;cursor:pointer}.brz .media-sidebar{width:230px}.brz .attachments-browser .attachments,.brz .attachments-browser .media-toolbar,.brz .attachments-browser .uploader-inline{right:262px}.brz .attachment-details .setting,.brz .media-sidebar .setting{margin:6px 0}.brz .attachment-details .setting input,.brz .attachment-details .setting span,.brz .attachment-details .setting textarea,.brz .compat-item label span,.brz .media-sidebar .setting input,.brz .media-sidebar .setting span,.brz .media-sidebar .setting textarea{float:none}.brz .attachment-details .setting span,.brz .compat-item label span,.brz .media-sidebar .setting span{text-align:inherit;min-height:16px;margin:0;padding:8px 2px 0}.brz .attachment-details .setting .value,.brz .media-sidebar .setting .value{float:none;width:auto}.brz .attachment-details .setting input[type=text],.brz .attachment-details .setting input[type=password],.brz .attachment-details .setting input[type=number],.brz .attachment-details .setting input[type=search],.brz .attachment-details .setting input[type=email],.brz .attachment-details .setting input[type=url],.brz .attachment-details .setting input[type=tel],.brz .attachment-details .setting select,.brz .attachment-details .setting textarea,.brz .media-sidebar .setting input[type=text],.brz .media-sidebar .setting input[type=password],.brz .media-sidebar .setting input[type=number],.brz .media-sidebar .setting input[type=search],.brz .media-sidebar .setting input[type=email],.brz .media-sidebar .setting input[type=url],.brz .media-sidebar .setting input[type=tel],.brz .media-sidebar .setting select,.brz .media-sidebar .setting textarea{float:none;width:98%;max-width:none;height:auto}.brz .attachment-details .setting select.columns,.brz .media-sidebar .setting select.columns{width:auto}.brz .media-frame .search,.brz .media-frame input,.brz .media-frame textarea{padding:3px 6px}.brz .image-details .column-image{width:30%;left:70%}.brz .image-details .column-settings{width:70%}.brz .image-details .media-modal{left:30px;right:30px}.brz .image-details .embed-media-settings .setting{margin:20px}.brz .image-details .embed-media-settings .setting span{float:none;text-align:left;width:100%;margin-bottom:4px}.brz .image-details .embed-media-settings .setting input.link-to-custom,.brz .image-details .embed-media-settings .setting input[type=text],.brz .image-details .embed-media-settings .setting textarea{width:100%;margin-left:0}.brz .image-details .embed-media-settings .custom-size{margin-left:20px}.brz .collection-settings .setting input[type=checkbox]{margin-top:0}.brz .media-selection{min-width:120px}.brz .media-selection:after{background:0 0}.brz .media-selection .attachments{display:none}.brz .media-modal .attachments-browser .media-toolbar .search{max-width:100%;height:auto;float:right}.brz .media-modal .attachments-browser .media-toolbar .attachment-filters{height:auto}.brz .media-modal .attachments-browser .media-toolbar .spinner{margin:14px 2px 0}.brz .media-frame input[type=text],.brz .media-frame input[type=password],.brz .media-frame input[type=number],.brz .media-frame input[type=search],.brz .media-frame input[type=email],.brz .media-frame input[type=url],.brz .media-frame select,.brz .media-frame textarea{font-size:16px}}@media only screen and (max-width:640px),screen and (max-height:400px){.brz .image-details .media-modal,.brz .media-modal{position:fixed;top:0;left:0;right:0;bottom:0}.brz .media-modal-backdrop{position:fixed}.brz .media-sidebar{z-index:1900;max-width:70%;bottom:120%;-webkit-box-sizing:border-box;box-sizing:border-box;padding-bottom:0}.brz .media-sidebar.visible{bottom:0}.brz .attachments-browser .attachments,.brz .attachments-browser .media-toolbar,.brz .attachments-browser .uploader-inline{right:0}.brz .image-details .media-frame-title{display:block;top:0;font-size:14px}.brz .image-details .column-image,.brz .image-details .column-settings{width:100%;position:relative;left:0}.brz .image-details .column-settings{padding:4px 0}.brz .media-frame-content .media-toolbar .instructions{display:none}}@media screen and (max-height:400px){.brz .media-menu{padding:0}.brz .media-frame-router{top:44px}.brz .media-frame-content{top:78px}.brz .attachments-browser .attachments{top:40px}.brz .embed-link-settings{overflow:visible}}@media only screen and (max-width:480px){.brz .media-modal-close{top:-5px}.brz .media-modal .media-frame-title{height:40px}.brz .wp-core-ui.wp-customizer .media-button{margin-top:13px}.brz .media-frame:not(.hide-menu) .media-frame-title h1,.brz .media-modal .media-frame-title h1{font-size:18px;line-height:40px}.brz .media-frame:not(.hide-menu) .media-frame-title .dashicons{line-height:40px}.brz .media-frame-router,.brz .media-frame:not(.hide-menu) .media-menu{top:40px}.brz .media-frame-content{top:74px}.brz .media-frame.hide-router .media-frame-content{top:40px}}@media print,(-webkit-min-device-pixel-ratio:1.25),(min-resolution:120dpi){.brz .wp-core-ui .media-modal-icon{background-image:url(../images/uploader-icons-2x.png);background-size:134px 15px}.brz .media-frame .spinner{background-image:url(../images/spinner-2x.gif)}}.brz .media-frame-content[data-columns="1"] .attachment{width:100%}.brz .media-frame-content[data-columns="2"] .attachment{width:50%}.brz .media-frame-content[data-columns="3"] .attachment{width:33.33%}.brz .media-frame-content[data-columns="4"] .attachment{width:25%}.brz .media-frame-content[data-columns="5"] .attachment{width:20%}.brz .media-frame-content[data-columns="6"] .attachment{width:16.66%}.brz .media-frame-content[data-columns="7"] .attachment{width:14.28%}.brz .media-frame-content[data-columns="8"] .attachment{width:12.5%}.brz .media-frame-content[data-columns="9"] .attachment{width:11.11%}.brz .media-frame-content[data-columns="10"] .attachment{width:10%}.brz .media-frame-content[data-columns="11"] .attachment{width:9.09%}.brz .media-frame-content[data-columns="12"] .attachment{width:8.33%}.brz .admin-bar .wp-env .visual-sidebar{top:32px;left:0}.brz .admin-bar .wp-env .visual-wrap-block-wrap{margin-left:0;padding-bottom:0}.brz .brz-wp__sidebar{width:100%}.brz .brz-wp__sidebar .brz-shortcode__placeholder{width:100%;min-height:300px}.brz .brz-wp-shortcode{width:100%}.brz .brz-wp-shortcode .woocommerce:empty{width:100%;height:15px}.brz .brz-wp-shortcode .woocommerce-product-gallery{opacity:1!important}.brz .brz-wp-shortcode .brz-shortcode__placeholder{width:100%;min-height:300px}.brz .brz-wp-shortcode__menu .menu{margin:0 auto;padding:0;list-style:none;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-wrap:wrap;flex-wrap:wrap}.brz .brz-wp-shortcode__menu .menu li{position:relative;display:inline-block;text-align:left;text-transform:uppercase;-webkit-box-flex:0;-ms-flex:0 1 auto;flex:0 1 auto}.brz .brz-wp-shortcode__menu .menu li .sub-menu{top:22px;width:280px;padding-top:8px;padding-left:0;padding-right:0;position:absolute;left:0;text-align:left;text-transform:none;display:none;z-index:110}.brz-ed #brz-ed-root,.brz-ed .brz-ed-element-placeholder{position:relative}.brz .brz-wp-shortcode__menu .menu li .sub-menu li{display:block;margin:0;padding:0;background:#33344b}.brz .brz-wp-shortcode__menu .menu li .sub-menu li:hover a{color:#fff;background:rgba(36,36,53,.94)}.brz-ed #brz-ed-root,body.brz-ed{background-color:#f3f3f3}.brz .brz-wp-shortcode__menu .menu li .sub-menu li a{display:block;line-height:1.2em;color:#fcfcfc;padding:10px 12%}.brz .brz-wp-shortcode__menu .menu li .sub-menu li:first-child{padding-top:15px}.brz .brz-wp-shortcode__menu .menu li .sub-menu li:last-child{padding-bottom:15px}.brz .brz-wp-shortcode__menu .menu li a span,.brz .brz-wp-shortcode__menu .menu li:hover .sub-menu{display:block}.brz-ed .body-without-scroll{overflow:hidden}.brz-ed .brz-ed-wrap-block-wrap{width:100%}.brz-ed .brz-ed-wrap-block-wrap--first{min-height:400px;height:100vh}.brz-ed .btn .brz-span[contenteditable=true]{cursor:text}.brz-ed .brz-ed-element-placeholder *{visibility:hidden}.brz-ed .brz-ed-element-placeholder:after{position:absolute;top:0;right:0;bottom:0;left:0;content:"";display:block;border:1px dashed #34beea;visibility:visible}.brz-ed .brz-ed-bar-wrapper,.brz-ed .brz-ed-fixed,.brz-ed .brz-ed-large-popup,.brz-ed .brz-ed-sidebar-block{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}*,:after,:before,html{-webkit-box-sizing:border-box;box-sizing:border-box}@-ms-viewport{width:device-width}.brz-ed .brz-figcaption,.brz-ed .brz-figure,.brz-ed .brz-section{display:block}body{margin:0}.brz-iframe{margin:0;padding:0;border:0;font:inherit;font-size:100%;vertical-align:baseline}.brz-ed .brz-b,.brz-ed .brz-dt,.brz-ed .brz-strong{font-weight:700}.brz{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.brz-ed .brz-hr{-webkit-box-sizing:content-box;box-sizing:content-box;height:0;overflow:visible;margin:0}.brz-ed .brz-h1,.brz-ed .brz-h2,.brz-ed .brz-h3,.brz-ed .brz-h4,.brz-ed .brz-h5,.brz-ed .brz-h6{margin-top:0;margin-bottom:0;padding:0}.brz-ed .brz-p{margin-top:0;margin-bottom:0}.brz-ed .brz-span{float:none;margin:0;padding:0}.brz-ed .brz-dl,.brz-ed .brz-ol,.brz-ed .brz-ul{margin:0;list-style:none;padding:0}.brz-ed .brz-ol .brz-ol,.brz-ed .brz-ol .brz-ul,.brz-ed .brz-ul .brz-ol,.brz-ed .brz-ul .brz-ul{margin:0}.brz-ed .brz-dd{margin-bottom:.5rem;margin-left:0}.brz-ed .brz-blockquote{margin:0 0 1rem}.brz-ed .brz-dfn{font-style:italic}.brz-ed .brz-a{color:#3dbfe8;text-decoration:none;background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.brz-ed .brz-a[href]:hover{color:#1aabd8;text-decoration:none;-webkit-box-shadow:none;box-shadow:none;cursor:pointer}.brz-ed .brz-figure{margin:0}.brz-ed .brz-img{vertical-align:middle;border-style:none}.brz-ed svg:not(:root){overflow:hidden}.brz-ed .brz-button,.brz-ed .brz-input,.brz-ed .brz-label,.brz-ed .brz-textarea{-ms-touch-action:manipulation;touch-action:manipulation}.brz-ed .brz-table{border-collapse:collapse}.brz-ed .brz-caption{padding-top:.75rem;padding-bottom:.75rem;color:#818a91;text-align:left;caption-side:bottom}.brz-ed .brz-th{text-align:left}.brz-ed .brz-label{display:inline-block;margin-bottom:0;font-weight:400}.brz-ed .brz-button:focus{outline:dotted 1px;outline:-webkit-focus-ring-color auto 5px}.brz-ed .brz-button,.brz-ed .brz-input,.brz-ed .brz-optgroup,.brz-ed .brz-select,.brz-ed .brz-textarea{padding:0;margin:0;font-family:inherit;font-size:inherit;line-height:inherit}.brz-ed .brz-button,.brz-ed .brz-input{overflow:visible}.brz-ed .brz-button,.brz-ed .brz-select{text-transform:none}.brz-ed .brz-button{-webkit-appearance:button}.brz-ed .brz-button::-moz-focus-inner{padding:0;border-style:none}.brz-ed .brz-input[type=radio],.brz-ed .brz-input[type=checkbox]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}.brz-ed .brz-input[type=date],.brz-ed .brz-input[type=time],.brz-ed .brz-input[type=datetime-local],.brz-ed .brz-input[type=month]{-webkit-appearance:listbox}.brz-ed .brz-textarea{overflow:auto;resize:vertical}.brz-ed .brz-fieldset{min-width:0;padding:0;margin:0;border:0}.brz-ed .brz-iframe,.brz-ed .brz-object{margin-bottom:0;max-width:100%}.brz-ed .brz-iframe{margin:0;padding:0;border:0;font:inherit;font-size:100%;vertical-align:baseline}.brz-ed [hidden]{display:none!important}.brz-ed .brz-reset-all{-ms-flex-line-pack:stretch;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;-ms-flex-item-align:auto;align-self:auto;-webkit-animation-delay:0s;animation-delay:0s;-webkit-animation-direction:normal;animation-direction:normal;animation-duration:0s;animation-fill-mode:none;-webkit-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-name:none;animation-name:none;-webkit-animation-play-state:running;animation-play-state:running;-webkit-animation-timing-function:ease;animation-timing-function:ease;-webkit-backface-visibility:visible;backface-visibility:visible;background-blend-mode:normal;border-block-end-style:none;border-block-end-width:medium;border-block-start-color:currentcolor;border-block-start-style:none;border-block-start-width:medium;border-image-outset:0s;border-image-slice:100%;border-image-width:1;border-inline-end-color:currentcolor;border-inline-end-style:none;border-inline-end-width:medium;border-inline-start-color:currentcolor;border-inline-start-style:none;border-inline-start-width:medium;-webkit-box-decoration-break:slice;box-decoration-break:slice;-webkit-box-shadow:none;box-shadow:none;-webkit-box-sizing:content-box;box-sizing:content-box;break-before:auto;-webkit-column-break-inside:auto;caption-side:top;caret-color:auto;clear:none;clip:auto;-webkit-clip-path:none;clip-path:none;color:initial;-webkit-column-count:auto;column-count:auto;-webkit-column-fill:balance;column-fill:balance;-webkit-column-gap:normal;column-gap:normal;-webkit-column-rule-color:currentcolor;column-rule-color:currentcolor;-webkit-column-rule-style:none;column-rule-style:none;-webkit-column-rule-width:medium;column-rule-width:medium;-webkit-column-span:none;column-span:none;-webkit-column-width:auto;column-width:auto;content:normal;counter-increment:none;counter-reset:none;cursor:auto;display:inline;-webkit-filter:none;filter:none;-ms-flex-preferred-size:auto;flex-basis:auto;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:1;flex-shrink:1;-ms-flex-wrap:nowrap;flex-wrap:nowrap;float:none;font-family:initial;-webkit-font-feature-settings:normal;font-feature-settings:normal;-webkit-font-kerning:auto;font-kerning:auto;-webkit-font-language-override:normal;font-language-override:normal;font-size:medium;font-size-adjust:none;font-stretch:normal;font-style:normal;font-synthesis:weight style;font-variant:normal;font-variant-alternates:normal;font-variant-caps:normal;font-variant-east-asian:normal;-webkit-font-variant-ligatures:normal;font-variant-ligatures:normal;font-variant-numeric:normal;font-variant-position:normal;font-weight:400;grid-template-rows:none;height:auto;-webkit-hyphens:manual;-ms-hyphens:manual;hyphens:manual;image-orientation:0deg;image-resolution:1dppx;ime-mode:auto;inline-size:auto;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;left:auto;letter-spacing:normal;line-height:normal;-webkit-margin-after:0;margin-block-end:0;margin-block-start:0;-webkit-margin-end:0;-moz-margin-end:0;margin-inline-end:0;-webkit-margin-start:0;-moz-margin-start:0;margin-inline-start:0;mask-clip:border-box;-webkit-mask-composite:add;mask-composite:add;-webkit-mask-image:none;mask-image:none;mask-mode:match-source;-webkit-mask-origin:border-box;mask-origin:border-box;-webkit-mask-position:0 0;mask-position:0 0;-webkit-mask-repeat:repeat;mask-repeat:repeat;-webkit-mask-size:auto;mask-size:auto;max-height:none;max-width:none;min-height:0;min-width:0;-o-object-fit:fill;object-fit:fill;object-position:50% 50%;offset-inline-start:auto;opacity:1;-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0;outline-color:initial;outline-offset:0;outline-style:none;outline-width:medium;overflow:visible;overflow-wrap:normal;overflow-x:visible;overflow-y:visible;-webkit-padding-after:0;padding-block-end:0;-webkit-padding-before:0;padding-block-start:0;-webkit-padding-end:0;-moz-padding-end:0;padding-inline-end:0;-webkit-padding-start:0;-moz-padding-start:0;padding-inline-start:0;perspective:none;-webkit-perspective-origin:50% 50%;perspective-origin:50% 50%;pointer-events:auto;position:static;resize:none;right:auto;ruby-align:space-around;-webkit-scroll-snap-coordinate:none;-ms-scroll-snap-coordinate:none;scroll-snap-coordinate:none;-webkit-scroll-snap-destination:0 0;-ms-scroll-snap-destination:0 0;scroll-snap-destination:0 0;-webkit-scroll-snap-points-x:none;-ms-scroll-snap-points-x:none;scroll-snap-points-x:none;-webkit-scroll-snap-points-y:none;-ms-scroll-snap-points-y:none;scroll-snap-points-y:none;-webkit-scroll-snap-type:none;-ms-scroll-snap-type:none;scroll-snap-type:none;-moz-tab-size:8;-o-tab-size:8;tab-size:8;text-align:initial;text-align-last:auto;-webkit-text-decoration-color:currentcolor;-webkit-text-decoration-style:solid;text-decoration-style:solid;text-emphasis-color:currentcolor;-webkit-text-emphasis-position:over;text-emphasis-position:over right;-webkit-text-emphasis-style:none;text-indent:0;text-justify:auto;text-orientation:mixed;text-overflow:clip;text-rendering:auto;text-shadow:none;text-transform:none;text-underline-position:auto;top:auto;-ms-touch-action:auto;touch-action:auto;-webkit-transform:none;transform:none;transform-box:border-box;-webkit-transform-origin:50% 50% 0;transform-origin:50% 50% 0;-webkit-transform-style:flat;transform-style:flat;-webkit-transition-delay:0s;transition-delay:0s;-webkit-transition-duration:0s;transition-duration:0s;-webkit-transition-property:all;transition-property:all;-webkit-transition-timing-function:ease;transition-timing-function:ease;vertical-align:baseline;visibility:visible;white-space:normal;width:auto;will-change:auto;word-spacing:normal;word-wrap:normal;-webkit-writing-mode:horizontal-tb;-ms-writing-mode:lr-tb;writing-mode:horizontal-tb;z-index:auto;-moz-appearance:none;-ms-appearance:none;appearance:none;background:0 0;border-color:currentcolor;border-radius:0;border-style:none;border-width:medium;list-style:disc;margin:0;padding:0}.brz-ed .brz-h1,.brz-ed .brz-h2,.brz-ed .brz-h3,.brz-ed .brz-h4,.brz-ed .brz-h5,.brz-ed .brz-h6{font-family:inherit;font-weight:700;line-height:1.2;color:inherit}.brz-ed .brz-h1,.brz-ed .brz-p{font-weight:400}.brz-ed .brz-h1{font-size:55px}.brz-ed .brz-h2{font-size:40px}.brz-ed .brz-h3{font-size:32px}.brz-ed .brz-h4{font-size:26px}.brz-ed .brz-h5{font-size:19px}.brz-ed .brz-h6,.brz-ed .brz-p{font-size:14px}.brz-ed .brz-flex-xs-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.brz-ed .brz-flex-xs-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.brz-ed .brz-flex-xs-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.brz-ed .brz-justify-content-xs-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.brz-ed .brz-justify-content-xs-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.brz-ed .brz-justify-content-xs-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.brz-ed .brz-justify-content-xs-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.brz-ed .brz-justify-content-xs-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.brz-ed .brz-align-items-xs-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.brz-ed .brz-align-items-xs-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.brz-ed .brz-align-items-xs-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.brz-ed .brz-align-items-xs-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.brz-ed .brz-align-items-xs-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.brz-ed .brz-col-first-xs{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.brz-ed .brz-col-last-xs{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.brz-ed .brz-align-self-xs-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.brz-ed .brz-align-self-xs-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.brz-ed .brz-align-self-xs-center{-ms-flex-item-align:center!important;align-self:center!important}.brz-ed .brz-align-self-xs-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.brz-ed .brz-align-self-xs-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}.brz-ed .brz-flex-xs-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.brz-ed .brz-flex-xs-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.brz-ed .brz-align-content-xs-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.brz-ed .brz-align-content-xs-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.brz-ed .brz-align-content-xs-center{-ms-flex-line-pack:center!important;align-content:center!important}.brz-ed .brz-align-content-xs-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.brz-ed .brz-align-content-xs-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.brz-ed .brz-align-content-xs-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}@media (min-width:480px){.brz-ed .brz-flex-ms-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.brz-ed .brz-flex-ms-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.brz-ed .brz-flex-ms-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.brz-ed .brz-justify-content-ms-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.brz-ed .brz-justify-content-ms-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.brz-ed .brz-justify-content-ms-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.brz-ed .brz-justify-content-ms-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.brz-ed .brz-justify-content-ms-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.brz-ed .brz-align-items-ms-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.brz-ed .brz-align-items-ms-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.brz-ed .brz-align-items-ms-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.brz-ed .brz-align-items-ms-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.brz-ed .brz-align-items-ms-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.brz-ed .brz-col-first-ms{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.brz-ed .brz-col-last-ms{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.brz-ed .brz-align-self-ms-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.brz-ed .brz-align-self-ms-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.brz-ed .brz-align-self-ms-center{-ms-flex-item-align:center!important;align-self:center!important}.brz-ed .brz-align-self-ms-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.brz-ed .brz-align-self-ms-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}.brz-ed .brz-flex-ms-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.brz-ed .brz-flex-ms-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.brz-ed .brz-align-content-ms-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.brz-ed .brz-align-content-ms-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.brz-ed .brz-align-content-ms-center{-ms-flex-line-pack:center!important;align-content:center!important}.brz-ed .brz-align-content-ms-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.brz-ed .brz-align-content-ms-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.brz-ed .brz-align-content-ms-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}}@media (min-width:768px){.brz-ed .brz-flex-sm-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.brz-ed .brz-flex-sm-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.brz-ed .brz-flex-sm-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.brz-ed .brz-justify-content-sm-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.brz-ed .brz-justify-content-sm-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.brz-ed .brz-justify-content-sm-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.brz-ed .brz-justify-content-sm-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.brz-ed .brz-justify-content-sm-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.brz-ed .brz-align-items-sm-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.brz-ed .brz-align-items-sm-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.brz-ed .brz-align-items-sm-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.brz-ed .brz-align-items-sm-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.brz-ed .brz-align-items-sm-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.brz-ed .brz-col-first-sm{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.brz-ed .brz-col-last-sm{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.brz-ed .brz-align-self-sm-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.brz-ed .brz-align-self-sm-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.brz-ed .brz-align-self-sm-center{-ms-flex-item-align:center!important;align-self:center!important}.brz-ed .brz-align-self-sm-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.brz-ed .brz-align-self-sm-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}.brz-ed .brz-flex-sm-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.brz-ed .brz-flex-sm-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.brz-ed .brz-align-content-sm-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.brz-ed .brz-align-content-sm-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.brz-ed .brz-align-content-sm-center{-ms-flex-line-pack:center!important;align-content:center!important}.brz-ed .brz-align-content-sm-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.brz-ed .brz-align-content-sm-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.brz-ed .brz-align-content-sm-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}}@media (min-width:992px){.brz-ed .brz-flex-md-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.brz-ed .brz-flex-md-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.brz-ed .brz-flex-md-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.brz-ed .brz-justify-content-md-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.brz-ed .brz-justify-content-md-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.brz-ed .brz-justify-content-md-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.brz-ed .brz-justify-content-md-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.brz-ed .brz-justify-content-md-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.brz-ed .brz-align-items-md-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.brz-ed .brz-align-items-md-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.brz-ed .brz-align-items-md-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.brz-ed .brz-align-items-md-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.brz-ed .brz-align-items-md-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.brz-ed .brz-col-first-md{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.brz-ed .brz-col-last-md{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.brz-ed .brz-align-self-md-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.brz-ed .brz-align-self-md-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.brz-ed .brz-align-self-md-center{-ms-flex-item-align:center!important;align-self:center!important}.brz-ed .brz-align-self-md-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.brz-ed .brz-align-self-md-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}.brz-ed .brz-flex-md-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.brz-ed .brz-flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.brz-ed .brz-align-content-md-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.brz-ed .brz-align-content-md-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.brz-ed .brz-align-content-md-center{-ms-flex-line-pack:center!important;align-content:center!important}.brz-ed .brz-align-content-md-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.brz-ed .brz-align-content-md-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.brz-ed .brz-align-content-md-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}}.brz-ed .brz-d-block{display:block!important}.brz-ed .brz-d-inline-block{display:inline-block!important}.brz-ed .brz-d-inline{display:inline!important}.brz-ed .brz-d-table{width:100%;display:table;position:relative}.brz-ed .brz-d-table-cell{display:table-cell}.brz-ed .brz-ed-blocked{pointer-events:none}.brz-ed .brz-d-xs-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.brz-ed .brz-d-xs-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}@media (min-width:480px){.brz-ed .brz-d-ms-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.brz-ed .brz-d-ms-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:768px){.brz-ed .brz-d-sm-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.brz-ed .brz-d-sm-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:992px){.brz-ed .brz-d-md-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.brz-ed .brz-d-md-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:1200px){.brz-ed .brz-flex-lg-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.brz-ed .brz-flex-lg-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.brz-ed .brz-flex-lg-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.brz-ed .brz-justify-content-lg-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.brz-ed .brz-justify-content-lg-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.brz-ed .brz-justify-content-lg-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.brz-ed .brz-justify-content-lg-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.brz-ed .brz-justify-content-lg-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.brz-ed .brz-align-items-lg-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.brz-ed .brz-align-items-lg-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.brz-ed .brz-align-items-lg-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.brz-ed .brz-align-items-lg-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.brz-ed .brz-align-items-lg-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.brz-ed .brz-col-first-lg{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.brz-ed .brz-col-last-lg{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.brz-ed .brz-align-self-lg-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.brz-ed .brz-align-self-lg-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.brz-ed .brz-align-self-lg-center{-ms-flex-item-align:center!important;align-self:center!important}.brz-ed .brz-align-self-lg-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.brz-ed .brz-align-self-lg-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}.brz-ed .brz-flex-lg-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.brz-ed .brz-flex-lg-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.brz-ed .brz-align-content-lg-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.brz-ed .brz-align-content-lg-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.brz-ed .brz-align-content-lg-center{-ms-flex-line-pack:center!important;align-content:center!important}.brz-ed .brz-align-content-lg-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.brz-ed .brz-align-content-lg-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.brz-ed .brz-align-content-lg-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.brz-ed .brz-d-lg-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.brz-ed .brz-d-lg-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:1400px){.brz-ed .brz-flex-xl-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.brz-ed .brz-flex-xl-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.brz-ed .brz-flex-xl-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.brz-ed .brz-justify-content-xl-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.brz-ed .brz-justify-content-xl-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.brz-ed .brz-justify-content-xl-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.brz-ed .brz-justify-content-xl-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.brz-ed .brz-justify-content-xl-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.brz-ed .brz-align-items-xl-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.brz-ed .brz-align-items-xl-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.brz-ed .brz-align-items-xl-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.brz-ed .brz-align-items-xl-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.brz-ed .brz-align-items-xl-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.brz-ed .brz-col-first-xl{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.brz-ed .brz-col-last-xl{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.brz-ed .brz-align-self-xl-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.brz-ed .brz-align-self-xl-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.brz-ed .brz-align-self-xl-center{-ms-flex-item-align:center!important;align-self:center!important}.brz-ed .brz-align-self-xl-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.brz-ed .brz-align-self-xl-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}.brz-ed .brz-flex-xl-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.brz-ed .brz-flex-xl-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.brz-ed .brz-align-content-xl-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.brz-ed .brz-align-content-xl-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.brz-ed .brz-align-content-xl-center{-ms-flex-line-pack:center!important;align-content:center!important}.brz-ed .brz-align-content-xl-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.brz-ed .brz-align-content-xl-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.brz-ed .brz-align-content-xl-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.brz-ed .brz-d-xl-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.brz-ed .brz-d-xl-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}.brz-ed .brz-hidden-xl-up{display:none!important}}.brz-ed .brz-hidden,.brz-ed .brz-hidden-xl-down,.brz-ed .brz-hidden-xs-up,.brz-ed .brz-visible-print-block{display:none!important}.brz-ed .brz-ed-animated{-webkit-animation-duration:.15s;animation-duration:.15s;-webkit-animation-fill-mode:both;animation-fill-mode:both}.brz-ed .brz-ed-animated--fadeInDown{-webkit-animation-name:fadeInDown;animation-name:fadeInDown}.brz-ed .brz-ed-animated--fadeInUp{-webkit-animation-name:fadeInUp;animation-name:fadeInUp}.brz-ed .brz-ed-animated--fadeIn{-webkit-animation-name:fadeIn;animation-name:fadeIn}.brz-ed .brz-ed-animated--fadeInLeft{-webkit-animation-name:fadeInLeft;animation-name:fadeInLeft}.brz-ed .brz-ed-animated--spin{-webkit-animation-name:spin;animation-name:spin;-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-timing-function:linear;animation-timing-function:linear}.brz-ed .brz-ed-fade-enter{opacity:.01}.brz-ed .brz-ed-fade-enter.brz-ed-fade-enter-active{opacity:1;-webkit-transition:opacity 150ms ease-in;transition:opacity 150ms ease-in}.brz-ed .brz-ed-fade-exit{opacity:1}.brz-ed .brz-ed-fade-exit.brz-ed-fade-exit-active{opacity:.01;-webkit-transition:opacity 150ms ease-in;transition:opacity 150ms ease-in}.brz-ed .brz-p-relative{position:relative!important}.brz-ed .brz-p-absolute{position:absolute!important}.brz-ed .brz-p-fixed{position:fixed!important}.brz-ed .brz-invisible{visibility:hidden!important}.brz-ed .brz-visible{visibility:visible!important}.brz-ed .brz-invisible-xl-down,.brz-ed .brz-invisible-xs-up{visibility:hidden!important}.brz-ed .brz-invisible-blur-xs-up .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}@media (max-width:479px){.brz-ed .brz-hidden-xs-down{display:none!important}.brz-ed .brz-invisible-xs-down{visibility:hidden!important}.brz-ed .brz-invisible-blur-xs-down .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (min-width:480px){.brz-ed .brz-hidden-ms-up{display:none!important}.brz-ed .brz-invisible-ms-up{visibility:hidden!important}.brz-ed .brz-invisible-blur-ms-up .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (max-width:767px){.brz-ed .brz-hidden-ms-down{display:none!important}.brz-ed .brz-invisible-ms-down{visibility:hidden!important}.brz-ed .brz-invisible-blur-ms-down .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (min-width:768px){.brz-ed .brz-hidden-sm-up{display:none!important}.brz-ed .brz-invisible-sm-up{visibility:hidden!important}.brz-ed .brz-invisible-blur-sm-up .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (max-width:991px){.brz-ed .brz-hidden-sm-down{display:none!important}.brz-ed .brz-invisible-sm-down{visibility:hidden!important}.brz-ed .brz-invisible-blur-sm-down .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (min-width:992px){.brz-ed .brz-hidden-md-up{display:none!important}.brz-ed .brz-invisible-md-up{visibility:hidden!important}.brz-ed .brz-invisible-blur-md-up .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (max-width:1199px){.brz-ed .brz-hidden-md-down{display:none!important}.brz-ed .brz-invisible-md-down{visibility:hidden!important}.brz-ed .brz-invisible-blur-md-down .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (min-width:1200px){.brz-ed .brz-hidden-lg-up{display:none!important}.brz-ed .brz-invisible-lg-up{visibility:hidden!important}.brz-ed .brz-invisible-blur-lg-up .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (max-width:1399px){.brz-ed .brz-hidden-lg-down{display:none!important}.brz-ed .brz-invisible-lg-down{visibility:hidden!important}.brz-ed .brz-invisible-blur-lg-down .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (min-width:1400px){.brz-ed .brz-invisible-xl-up{visibility:hidden!important}.brz-ed .brz-invisible-blur-xl-up .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}.brz-ed .brz-invisible-blur-xl-down .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}@media print{.brz-ed .brz-visible-print-block{display:block!important}}.brz-ed .brz-visible-print-inline{display:none!important}@media print{.brz-ed .brz-visible-print-inline{display:inline!important}}.brz-ed .brz-visible-print-inline-block{display:none!important}@media print{.brz-ed .brz-visible-print-inline-block{display:inline-block!important}.brz-ed .brz-hidden-print{display:none!important}}.brz-ed .brz-ow-hidden{overflow:hidden!important}.brz-ed .brz-ow-visible{overflow:visible!important}.brz-ed .brz-fw-100{font-weight:100!important}.brz-ed .brz-fw-200{font-weight:200!important}.brz-ed .brz-fw-300{font-weight:300!important}.brz-ed .brz-fw-400{font-weight:400!important}.brz-ed .brz-fw-500{font-weight:500!important}.brz-ed .brz-fw-600{font-weight:600!important}.brz-ed .brz-fw-700{font-weight:700!important}.brz-ed .brz-fw-800{font-weight:800!important}.brz-ed .brz-fw-900{font-weight:900!important}.brz-ed.disable-select{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.brz-ed .brz-ed-popup-image-inner{position:relative;color:#fff;display:inline-block;font-size:0}.brz-ed .brz-ed-popup-image-label{margin-bottom:0}.brz-ed .brz-ed-popup-image-remove{position:absolute;z-index:2;top:-10px;right:-10px;width:22px;height:22px;font-size:8px;background-color:#34beec;border-radius:50%;-webkit-transition:background .2s linear;transition:background .2s linear;text-align:center;cursor:pointer}.brz-ed .brz-ed-popup-image-remove:hover{background-color:#03080f;-webkit-transition:background .2s linear;transition:background .2s linear}.brz-ed .brz-ed-popup-image-remove i{line-height:2.75}.brz-ed .brz-ed-popup-image-upload{position:absolute;top:4px;left:4px;right:4px;bottom:4px;background:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iMjBweCIgaGVpZ2h0PSIyMHB4IiB2aWV3Qm94PSIwIDAgMjAgMjAiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDIwIDIwOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHBhdGggZD0iTTE5LDIwSDFjLTAuNTUyLDAtMS0wLjQ0OC0xLTFWMy44OTNjMC0wLjU1MiwwLjQ0OC0wLjksMS0wLjlMMy42ODUsM0M0LjEsMyw0LjQ3MiwyLjYzNiw0LjYyLDIuMjQ4bDAuNTgtMUM1LjIsMS4yNDksNS41NiwwLDYuMjUsMGg3LjVjMC42OSwwLDEuMTUsMS4yNDksMS4xNSwxLjI0OWwwLjQ4LDFjMC4xNDcsMC4zODgsMC41MiwwLjc0NSwwLjkzNSwwLjc0NUgxOWMwLjU1MiwwLDEsMC4zNDgsMSwwLjlWMTlDMjAsMTkuNTUyLDE5LjU1MiwyMCwxOSwyMHogTTE5LDQuNTg2Yy0wLjAwNC0wLjMyOC0wLjI3Mi0wLjU5Mi0wLjYtMC41OTJoLTMuMzk5Yy0wLjE0My0wLjE0My0wLjExNy0wLjIwMi0wLjg4MS0xLjg0N2MwLDAtMC40NDgtMS4xNDctMS0xLjE0N0g3LjExOGMtMC41NTIsMC0xLDEuMTQ3LTEsMS4xNDdDNS4wNTEsMy45MTMsNS4wOCwzLjg2NCw1LDMuOTk0SDEuNjUxYy0wLjMzMSwwLTAuNiwwLjI2OS0wLjYsMC42VjE4LjRjMCwwLjMzMSwwLjI2OSwwLjYsMC42LDAuNkgxOC40YzAuMzMxLDAsMC42LTAuMjY5LDAuNi0wLjZMMTksNC41ODZ6IE0xMi4wMiwxNS42MDNjLTQuMjg3LDEuNjk2LTguMzE5LTIuMzM1LTYuNjI0LTYuNjIyYzAuNDYzLTEuMTcyLDEuNDE0LTIuMTIyLDIuNTg2LTIuNTg2YzQuMjg3LTEuNjk1LDguMzE4LDIuMzM4LDYuNjIyLDYuNjI0QzE0LjE0LDE0LjE5LDEzLjE5LDE1LjE0LDEyLjAyLDE1LjYwM3ogTTEwLjYzMiw3LjA0OWMtMi43MDMtMC40MTQtNC45OTcsMS44OC00LjU4NCw0LjU4NGMwLjI1OCwxLjY4NSwxLjYzNSwzLjA2MSwzLjMxOSwzLjMxOWMyLjcwMywwLjQxNCw0Ljk5Ny0xLjg4LDQuNTg0LTQuNTg0QzEzLjY5NCw4LjY4MywxMi4zMTcsNy4zMDYsMTAuNjMyLDcuMDQ5eiIvPjwvc3ZnPg==) 50% 50% no-repeat #fff;background-size:25px}.brz-ed .brz-ed-loading{position:relative;padding:4px;border:2px dashed #ccc;width:117px;height:117px;cursor:pointer;-webkit-transition:all .2s linear;transition:all .2s linear}.brz-ed .brz-ed-loading:before{content:'Change Image';font:700 10px pn,"Open Sans",Arial,sans-serif;color:#fff;line-height:117px;text-transform:uppercase;position:absolute;z-index:1;top:-2px;left:-2px;width:117px;height:117px;background-color:rgba(0,0,0,.8);text-align:center;visibility:hidden;opacity:0;-webkit-transition:opacity .2s linear,visibility .2s linear;transition:opacity .2s linear,visibility .2s linear}.brz-ed .brz-control__select,.brz-ed .brz-ed-control__stepper--value,.brz-ed .brz-ed-control__tabs:not(.brz-ed-control__tabs__left),.brz-ed .brz-ed-popup-control-select-light .brz-control__select-current,.brz-ed .brz-ed-popup-control-select-light .brz-control__select-option{font-family:pn,"Open Sans",Arial,sans-serif}.brz-ed .brz-ed-loading:hover{border-color:transparent}.brz-ed .brz-ed-loading:hover:before{visibility:visible;opacity:1;-webkit-transition:opacity .2s linear,visibility .2s linear;transition:opacity .2s linear,visibility .2s linear}.brz-ed .p-events-none{pointer-events:none!important}.brz-ed.brz-ed--desktop .brz-fs-lg-6{font-size:6px}.brz-ed.brz-ed--desktop .brz-fs-lg-7{font-size:7px}.brz-ed.brz-ed--desktop .brz-fs-lg-8{font-size:8px}.brz-ed.brz-ed--desktop .brz-fs-lg-9{font-size:9px}.brz-ed.brz-ed--desktop .brz-fs-lg-10{font-size:10px}.brz-ed.brz-ed--desktop .brz-fs-lg-11{font-size:11px}.brz-ed.brz-ed--desktop .brz-fs-lg-12{font-size:12px}.brz-ed.brz-ed--desktop .brz-fs-lg-13{font-size:13px}.brz-ed.brz-ed--desktop .brz-fs-lg-14{font-size:14px}.brz-ed.brz-ed--desktop .brz-fs-lg-15{font-size:15px}.brz-ed.brz-ed--desktop .brz-fs-lg-16{font-size:16px}.brz-ed.brz-ed--desktop .brz-fs-lg-17{font-size:17px}.brz-ed.brz-ed--desktop .brz-fs-lg-18{font-size:18px}.brz-ed.brz-ed--desktop .brz-fs-lg-19{font-size:19px}.brz-ed.brz-ed--desktop .brz-fs-lg-20{font-size:20px}.brz-ed.brz-ed--desktop .brz-fs-lg-21{font-size:21px}.brz-ed.brz-ed--desktop .brz-fs-lg-22{font-size:22px}.brz-ed.brz-ed--desktop .brz-fs-lg-23{font-size:23px}.brz-ed.brz-ed--desktop .brz-fs-lg-24{font-size:24px}.brz-ed.brz-ed--desktop .brz-fs-lg-25{font-size:25px}.brz-ed.brz-ed--desktop .brz-fs-lg-26{font-size:26px}.brz-ed.brz-ed--desktop .brz-fs-lg-27{font-size:27px}.brz-ed.brz-ed--desktop .brz-fs-lg-28{font-size:28px}.brz-ed.brz-ed--desktop .brz-fs-lg-29{font-size:29px}.brz-ed.brz-ed--desktop .brz-fs-lg-30{font-size:30px}.brz-ed.brz-ed--desktop .brz-fs-lg-31{font-size:31px}.brz-ed.brz-ed--desktop .brz-fs-lg-32{font-size:32px}.brz-ed.brz-ed--desktop .brz-fs-lg-33{font-size:33px}.brz-ed.brz-ed--desktop .brz-fs-lg-34{font-size:34px}.brz-ed.brz-ed--desktop .brz-fs-lg-35{font-size:35px}.brz-ed.brz-ed--desktop .brz-fs-lg-36{font-size:36px}.brz-ed.brz-ed--desktop .brz-fs-lg-37{font-size:37px}.brz-ed.brz-ed--desktop .brz-fs-lg-38{font-size:38px}.brz-ed.brz-ed--desktop .brz-fs-lg-39{font-size:39px}.brz-ed.brz-ed--desktop .brz-fs-lg-40{font-size:40px}.brz-ed.brz-ed--desktop .brz-fs-lg-41{font-size:41px}.brz-ed.brz-ed--desktop .brz-fs-lg-42{font-size:42px}.brz-ed.brz-ed--desktop .brz-fs-lg-43{font-size:43px}.brz-ed.brz-ed--desktop .brz-fs-lg-44{font-size:44px}.brz-ed.brz-ed--desktop .brz-fs-lg-45{font-size:45px}.brz-ed.brz-ed--desktop .brz-fs-lg-46{font-size:46px}.brz-ed.brz-ed--desktop .brz-fs-lg-47{font-size:47px}.brz-ed.brz-ed--desktop .brz-fs-lg-48{font-size:48px}.brz-ed.brz-ed--desktop .brz-fs-lg-49{font-size:49px}.brz-ed.brz-ed--desktop .brz-fs-lg-50{font-size:50px}.brz-ed.brz-ed--desktop .brz-fs-lg-51{font-size:51px}.brz-ed.brz-ed--desktop .brz-fs-lg-52{font-size:52px}.brz-ed.brz-ed--desktop .brz-fs-lg-53{font-size:53px}.brz-ed.brz-ed--desktop .brz-fs-lg-54{font-size:54px}.brz-ed.brz-ed--desktop .brz-fs-lg-55{font-size:55px}.brz-ed.brz-ed--desktop .brz-fs-lg-56{font-size:56px}.brz-ed.brz-ed--desktop .brz-fs-lg-57{font-size:57px}.brz-ed.brz-ed--desktop .brz-fs-lg-58{font-size:58px}.brz-ed.brz-ed--desktop .brz-fs-lg-59{font-size:59px}.brz-ed.brz-ed--desktop .brz-fs-lg-60{font-size:60px}.brz-ed.brz-ed--desktop .brz-fs-lg-61{font-size:61px}.brz-ed.brz-ed--desktop .brz-fs-lg-62{font-size:62px}.brz-ed.brz-ed--desktop .brz-fs-lg-63{font-size:63px}.brz-ed.brz-ed--desktop .brz-fs-lg-64{font-size:64px}.brz-ed.brz-ed--desktop .brz-fs-lg-65{font-size:65px}.brz-ed.brz-ed--desktop .brz-fs-lg-66{font-size:66px}.brz-ed.brz-ed--desktop .brz-fs-lg-67{font-size:67px}.brz-ed.brz-ed--desktop .brz-fs-lg-68{font-size:68px}.brz-ed.brz-ed--desktop .brz-fs-lg-69{font-size:69px}.brz-ed.brz-ed--desktop .brz-fs-lg-70{font-size:70px}.brz-ed.brz-ed--desktop .brz-fs-lg-71{font-size:71px}.brz-ed.brz-ed--desktop .brz-fs-lg-72{font-size:72px}.brz-ed.brz-ed--desktop .brz-fs-lg-73{font-size:73px}.brz-ed.brz-ed--desktop .brz-fs-lg-74{font-size:74px}.brz-ed.brz-ed--desktop .brz-fs-lg-75{font-size:75px}.brz-ed.brz-ed--desktop .brz-fs-lg-76{font-size:76px}.brz-ed.brz-ed--desktop .brz-fs-lg-77{font-size:77px}.brz-ed.brz-ed--desktop .brz-fs-lg-78{font-size:78px}.brz-ed.brz-ed--desktop .brz-fs-lg-79{font-size:79px}.brz-ed.brz-ed--desktop .brz-fs-lg-80{font-size:80px}.brz-ed.brz-ed--desktop .brz-fs-lg-81{font-size:81px}.brz-ed.brz-ed--desktop .brz-fs-lg-82{font-size:82px}.brz-ed.brz-ed--desktop .brz-fs-lg-83{font-size:83px}.brz-ed.brz-ed--desktop .brz-fs-lg-84{font-size:84px}.brz-ed.brz-ed--desktop .brz-fs-lg-85{font-size:85px}.brz-ed.brz-ed--desktop .brz-fs-lg-86{font-size:86px}.brz-ed.brz-ed--desktop .brz-fs-lg-87{font-size:87px}.brz-ed.brz-ed--desktop .brz-fs-lg-88{font-size:88px}.brz-ed.brz-ed--desktop .brz-fs-lg-89{font-size:89px}.brz-ed.brz-ed--desktop .brz-fs-lg-90{font-size:90px}.brz-ed.brz-ed--desktop .brz-fs-lg-91{font-size:91px}.brz-ed.brz-ed--desktop .brz-fs-lg-92{font-size:92px}.brz-ed.brz-ed--desktop .brz-fs-lg-93{font-size:93px}.brz-ed.brz-ed--desktop .brz-fs-lg-94{font-size:94px}.brz-ed.brz-ed--desktop .brz-fs-lg-95{font-size:95px}.brz-ed.brz-ed--desktop .brz-fs-lg-96{font-size:96px}.brz-ed.brz-ed--desktop .brz-fs-lg-97{font-size:97px}.brz-ed.brz-ed--desktop .brz-fs-lg-98{font-size:98px}.brz-ed.brz-ed--desktop .brz-fs-lg-99{font-size:99px}.brz-ed.brz-ed--desktop .brz-fs-lg-100{font-size:100px}.brz-ed.brz-ed--desktop .brz-fs-lg-101{font-size:101px}.brz-ed.brz-ed--desktop .brz-fs-lg-102{font-size:102px}.brz-ed.brz-ed--desktop .brz-fs-lg-103{font-size:103px}.brz-ed.brz-ed--desktop .brz-fs-lg-104{font-size:104px}.brz-ed.brz-ed--desktop .brz-fs-lg-105{font-size:105px}.brz-ed.brz-ed--desktop .brz-fs-lg-106{font-size:106px}.brz-ed.brz-ed--desktop .brz-fs-lg-107{font-size:107px}.brz-ed.brz-ed--desktop .brz-fs-lg-108{font-size:108px}.brz-ed.brz-ed--desktop .brz-fs-lg-109{font-size:109px}.brz-ed.brz-ed--desktop .brz-fs-lg-110{font-size:110px}.brz-ed.brz-ed--desktop .brz-fs-lg-111{font-size:111px}.brz-ed.brz-ed--desktop .brz-fs-lg-112{font-size:112px}.brz-ed.brz-ed--desktop .brz-fs-lg-113{font-size:113px}.brz-ed.brz-ed--desktop .brz-fs-lg-114{font-size:114px}.brz-ed.brz-ed--desktop .brz-fs-lg-115{font-size:115px}.brz-ed.brz-ed--desktop .brz-fs-lg-116{font-size:116px}.brz-ed.brz-ed--desktop .brz-fs-lg-117{font-size:117px}.brz-ed.brz-ed--desktop .brz-fs-lg-118{font-size:118px}.brz-ed.brz-ed--desktop .brz-fs-lg-119{font-size:119px}.brz-ed.brz-ed--desktop .brz-fs-lg-120{font-size:120px}.brz-ed.brz-ed--desktop .brz-fs-lg-121{font-size:121px}.brz-ed.brz-ed--desktop .brz-fs-lg-122{font-size:122px}.brz-ed.brz-ed--desktop .brz-fs-lg-123{font-size:123px}.brz-ed.brz-ed--desktop .brz-fs-lg-124{font-size:124px}.brz-ed.brz-ed--desktop .brz-fs-lg-125{font-size:125px}.brz-ed.brz-ed--desktop .brz-fs-lg-126{font-size:126px}.brz-ed.brz-ed--desktop .brz-fs-lg-127{font-size:127px}.brz-ed.brz-ed--desktop .brz-fs-lg-128{font-size:128px}.brz-ed.brz-ed--desktop .brz-fs-lg-129{font-size:129px}.brz-ed.brz-ed--desktop .brz-fs-lg-130{font-size:130px}.brz-ed.brz-ed--desktop .brz-fs-lg-131{font-size:131px}.brz-ed.brz-ed--desktop .brz-fs-lg-132{font-size:132px}.brz-ed.brz-ed--desktop .brz-fs-lg-133{font-size:133px}.brz-ed.brz-ed--desktop .brz-fs-lg-134{font-size:134px}.brz-ed.brz-ed--desktop .brz-fs-lg-135{font-size:135px}.brz-ed.brz-ed--desktop .brz-fs-lg-136{font-size:136px}.brz-ed.brz-ed--desktop .brz-fs-lg-137{font-size:137px}.brz-ed.brz-ed--desktop .brz-fs-lg-138{font-size:138px}.brz-ed.brz-ed--desktop .brz-fs-lg-139{font-size:139px}.brz-ed.brz-ed--desktop .brz-fs-lg-140{font-size:140px}.brz-ed.brz-ed--desktop .brz-fs-lg-141{font-size:141px}.brz-ed.brz-ed--desktop .brz-fs-lg-142{font-size:142px}.brz-ed.brz-ed--desktop .brz-fs-lg-143{font-size:143px}.brz-ed.brz-ed--desktop .brz-fs-lg-144{font-size:144px}.brz-ed.brz-ed--desktop .brz-fs-lg-145{font-size:145px}.brz-ed.brz-ed--desktop .brz-fs-lg-146{font-size:146px}.brz-ed.brz-ed--desktop .brz-fs-lg-147{font-size:147px}.brz-ed.brz-ed--desktop .brz-fs-lg-148{font-size:148px}.brz-ed.brz-ed--desktop .brz-fs-lg-149{font-size:149px}.brz-ed.brz-ed--desktop .brz-fs-lg-150{font-size:150px}.brz-ed.brz-ed--desktop .brz-fs-lg-151{font-size:151px}.brz-ed.brz-ed--desktop .brz-fs-lg-152{font-size:152px}.brz-ed.brz-ed--desktop .brz-fs-lg-153{font-size:153px}.brz-ed.brz-ed--desktop .brz-fs-lg-154{font-size:154px}.brz-ed.brz-ed--desktop .brz-fs-lg-155{font-size:155px}.brz-ed.brz-ed--desktop .brz-fs-lg-156{font-size:156px}.brz-ed.brz-ed--desktop .brz-fs-lg-157{font-size:157px}.brz-ed.brz-ed--desktop .brz-fs-lg-158{font-size:158px}.brz-ed.brz-ed--desktop .brz-fs-lg-159{font-size:159px}.brz-ed.brz-ed--desktop .brz-fs-lg-160{font-size:160px}.brz-ed.brz-ed--desktop .brz-fs-lg-161{font-size:161px}.brz-ed.brz-ed--desktop .brz-fs-lg-162{font-size:162px}.brz-ed.brz-ed--desktop .brz-fs-lg-163{font-size:163px}.brz-ed.brz-ed--desktop .brz-fs-lg-164{font-size:164px}.brz-ed.brz-ed--desktop .brz-fs-lg-165{font-size:165px}.brz-ed.brz-ed--desktop .brz-fs-lg-166{font-size:166px}.brz-ed.brz-ed--desktop .brz-fs-lg-167{font-size:167px}.brz-ed.brz-ed--desktop .brz-fs-lg-168{font-size:168px}.brz-ed.brz-ed--desktop .brz-fs-lg-169{font-size:169px}.brz-ed.brz-ed--desktop .brz-fs-lg-170{font-size:170px}.brz-ed.brz-ed--desktop .brz-fs-lg-171{font-size:171px}.brz-ed.brz-ed--desktop .brz-fs-lg-172{font-size:172px}.brz-ed.brz-ed--desktop .brz-fs-lg-173{font-size:173px}.brz-ed.brz-ed--desktop .brz-fs-lg-174{font-size:174px}.brz-ed.brz-ed--desktop .brz-fs-lg-175{font-size:175px}.brz-ed.brz-ed--desktop .brz-fs-lg-176{font-size:176px}.brz-ed.brz-ed--desktop .brz-fs-lg-177{font-size:177px}.brz-ed.brz-ed--desktop .brz-fs-lg-178{font-size:178px}.brz-ed.brz-ed--desktop .brz-fs-lg-179{font-size:179px}.brz-ed.brz-ed--desktop .brz-fs-lg-180{font-size:180px}.brz-ed.brz-ed--desktop .brz-lh-lg-1{line-height:1em}.brz-ed.brz-ed--desktop .brz-lh-lg-1_1{line-height:1.1em}.brz-ed.brz-ed--desktop .brz-lh-lg-1_2{line-height:1.2em}.brz-ed.brz-ed--desktop .brz-lh-lg-1_3{line-height:1.3em}.brz-ed.brz-ed--desktop .brz-lh-lg-1_4{line-height:1.4em}.brz-ed.brz-ed--desktop .brz-lh-lg-1_5{line-height:1.5em}.brz-ed.brz-ed--desktop .brz-lh-lg-1_6{line-height:1.6em}.brz-ed.brz-ed--desktop .brz-lh-lg-1_7{line-height:1.7em}.brz-ed.brz-ed--desktop .brz-lh-lg-1_8{line-height:1.8em}.brz-ed.brz-ed--desktop .brz-lh-lg-1_9{line-height:1.9em}.brz-ed.brz-ed--desktop .brz-lh-lg-2{line-height:2em}.brz-ed.brz-ed--desktop .brz-lh-lg-2_1{line-height:2.1em}.brz-ed.brz-ed--desktop .brz-lh-lg-2_2{line-height:2.2em}.brz-ed.brz-ed--desktop .brz-lh-lg-2_3{line-height:2.3em}.brz-ed.brz-ed--desktop .brz-lh-lg-2_4{line-height:2.4em}.brz-ed.brz-ed--desktop .brz-lh-lg-2_5{line-height:2.5em}.brz-ed.brz-ed--desktop .brz-lh-lg-2_6{line-height:2.6em}.brz-ed.brz-ed--desktop .brz-lh-lg-2_7{line-height:2.7em}.brz-ed.brz-ed--desktop .brz-lh-lg-2_8{line-height:2.8em}.brz-ed.brz-ed--desktop .brz-lh-lg-2_9{line-height:2.9em}.brz-ed.brz-ed--desktop .brz-lh-lg-3{line-height:3em}.brz-ed.brz-ed--desktop .brz-lh-lg-3_1{line-height:3.1em}.brz-ed.brz-ed--desktop .brz-lh-lg-3_2{line-height:3.2em}.brz-ed.brz-ed--desktop .brz-lh-lg-3_3{line-height:3.3em}.brz-ed.brz-ed--desktop .brz-lh-lg-3_4{line-height:3.4em}.brz-ed.brz-ed--desktop .brz-lh-lg-3_5{line-height:3.5em}.brz-ed.brz-ed--desktop .brz-lh-lg-3_6{line-height:3.6em}.brz-ed.brz-ed--desktop .brz-lh-lg-3_7{line-height:3.7em}.brz-ed.brz-ed--desktop .brz-lh-lg-3_8{line-height:3.8em}.brz-ed.brz-ed--desktop .brz-lh-lg-3_9{line-height:3.9em}.brz-ed.brz-ed--desktop .brz-lh-lg-4{line-height:4em}.brz-ed.brz-ed--desktop .brz-lh-lg-4_1{line-height:4.1em}.brz-ed.brz-ed--desktop .brz-lh-lg-4_2{line-height:4.2em}.brz-ed.brz-ed--desktop .brz-lh-lg-4_3{line-height:4.3em}.brz-ed.brz-ed--desktop .brz-lh-lg-4_4{line-height:4.4em}.brz-ed.brz-ed--desktop .brz-lh-lg-4_5{line-height:4.5em}.brz-ed.brz-ed--desktop .brz-lh-lg-4_6{line-height:4.6em}.brz-ed.brz-ed--desktop .brz-lh-lg-4_7{line-height:4.7em}.brz-ed.brz-ed--desktop .brz-lh-lg-4_8{line-height:4.8em}.brz-ed.brz-ed--desktop .brz-lh-lg-4_9{line-height:4.9em}.brz-ed.brz-ed--desktop .brz-lh-lg-5{line-height:5em}.brz-ed.brz-ed--desktop .brz-lh-lg-5_1{line-height:5.1em}.brz-ed.brz-ed--desktop .brz-lh-lg-5_2{line-height:5.2em}.brz-ed.brz-ed--desktop .brz-lh-lg-5_3{line-height:5.3em}.brz-ed.brz-ed--desktop .brz-lh-lg-5_4{line-height:5.4em}.brz-ed.brz-ed--desktop .brz-lh-lg-5_5{line-height:5.5em}.brz-ed.brz-ed--desktop .brz-lh-lg-5_6{line-height:5.6em}.brz-ed.brz-ed--desktop .brz-lh-lg-5_7{line-height:5.7em}.brz-ed.brz-ed--desktop .brz-lh-lg-5_8{line-height:5.8em}.brz-ed.brz-ed--desktop .brz-lh-lg-5_9{line-height:5.9em}.brz-ed.brz-ed--desktop .brz-ls-lg-m_5{letter-spacing:-5px}.brz-ed.brz-ed--desktop .brz-ls-lg-m_5_5{letter-spacing:-5.5px}.brz-ed.brz-ed--desktop .brz-ls-lg-m_4{letter-spacing:-4px}.brz-ed.brz-ed--desktop .brz-ls-lg-m_4_5{letter-spacing:-4.5px}.brz-ed.brz-ed--desktop .brz-ls-lg-m_3{letter-spacing:-3px}.brz-ed.brz-ed--desktop .brz-ls-lg-m_3_5{letter-spacing:-3.5px}.brz-ed.brz-ed--desktop .brz-ls-lg-m_2{letter-spacing:-2px}.brz-ed.brz-ed--desktop .brz-ls-lg-m_2_5{letter-spacing:-2.5px}.brz-ed.brz-ed--desktop .brz-ls-lg-m_1{letter-spacing:-1px}.brz-ed.brz-ed--desktop .brz-ls-lg-m_1_5{letter-spacing:-1.5px}.brz-ed.brz-ed--desktop .brz-ls-lg-m_0{letter-spacing:0}.brz-ed.brz-ed--desktop .brz-ls-lg-m_0_5{letter-spacing:-.5px}.brz-ed.brz-ed--desktop .brz-ls-lg-0{letter-spacing:0}.brz-ed.brz-ed--desktop .brz-ls-lg-0_5{letter-spacing:.5px}.brz-ed.brz-ed--desktop .brz-ls-lg-1{letter-spacing:1px}.brz-ed.brz-ed--desktop .brz-ls-lg-1_5{letter-spacing:1.5px}.brz-ed.brz-ed--desktop .brz-ls-lg-2{letter-spacing:2px}.brz-ed.brz-ed--desktop .brz-ls-lg-2_5{letter-spacing:2.5px}.brz-ed.brz-ed--desktop .brz-ls-lg-3{letter-spacing:3px}.brz-ed.brz-ed--desktop .brz-ls-lg-3_5{letter-spacing:3.5px}.brz-ed.brz-ed--desktop .brz-ls-lg-4{letter-spacing:4px}.brz-ed.brz-ed--desktop .brz-ls-lg-4_5{letter-spacing:4.5px}.brz-ed.brz-ed--desktop .brz-ls-lg-5{letter-spacing:5px}.brz-ed.brz-ed--desktop .brz-ls-lg-5_5{letter-spacing:5.5px}.brz-ed.brz-ed--desktop .brz-ls-lg-6{letter-spacing:6px}.brz-ed.brz-ed--desktop .brz-ls-lg-6_5{letter-spacing:6.5px}.brz-ed.brz-ed--desktop .brz-ls-lg-7{letter-spacing:7px}.brz-ed.brz-ed--desktop .brz-ls-lg-7_5{letter-spacing:7.5px}.brz-ed.brz-ed--desktop .brz-ls-lg-8{letter-spacing:8px}.brz-ed.brz-ed--desktop .brz-ls-lg-8_5{letter-spacing:8.5px}.brz-ed.brz-ed--desktop .brz-ls-lg-9{letter-spacing:9px}.brz-ed.brz-ed--desktop .brz-ls-lg-9_5{letter-spacing:9.5px}.brz-ed.brz-ed--desktop .brz-ls-lg-10{letter-spacing:10px}.brz-ed.brz-ed--desktop .brz-ls-lg-10_5{letter-spacing:10.5px}.brz-ed.brz-ed--desktop .brz-ls-lg-11{letter-spacing:11px}.brz-ed.brz-ed--desktop .brz-ls-lg-11_5{letter-spacing:11.5px}.brz-ed.brz-ed--desktop .brz-ls-lg-12{letter-spacing:12px}.brz-ed.brz-ed--desktop .brz-ls-lg-12_5{letter-spacing:12.5px}.brz-ed.brz-ed--desktop .brz-ls-lg-13{letter-spacing:13px}.brz-ed.brz-ed--desktop .brz-ls-lg-13_5{letter-spacing:13.5px}.brz-ed.brz-ed--desktop .brz-ls-lg-14{letter-spacing:14px}.brz-ed.brz-ed--desktop .brz-ls-lg-14_5{letter-spacing:14.5px}.brz-ed.brz-ed--desktop .brz-ls-lg-15{letter-spacing:15px}.brz-ed.brz-ed--desktop .brz-ls-lg-15_5{letter-spacing:15.5px}.brz-ed.brz-ed--desktop .brz-fw-lg-100{font-weight:100!important}.brz-ed.brz-ed--desktop .brz-fw-lg-200{font-weight:200!important}.brz-ed.brz-ed--desktop .brz-fw-lg-300{font-weight:300!important}.brz-ed.brz-ed--desktop .brz-fw-lg-400{font-weight:400!important}.brz-ed.brz-ed--desktop .brz-fw-lg-500{font-weight:500!important}.brz-ed.brz-ed--desktop .brz-fw-lg-600{font-weight:600!important}.brz-ed.brz-ed--desktop .brz-fw-lg-700{font-weight:700!important}.brz-ed.brz-ed--desktop .brz-fw-lg-800{font-weight:800!important}.brz-ed.brz-ed--desktop .brz-fw-lg-900{font-weight:900!important}.brz-ed.brz-ed--desktop .brz-fw-lg-1000{font-weight:1000!important}.brz-ed.brz-ed--desktop .brz-fw-lg-1100{font-weight:1100!important}.brz-ed.brz-ed--desktop .brz-fw-lg-1200{font-weight:1200!important}.brz-ed.brz-ed--desktop .brz-fw-lg-1300{font-weight:1300!important}.brz-ed.brz-ed--desktop .brz-fw-lg-1400{font-weight:1400!important}.brz-ed.brz-ed--desktop .brz-fw-lg-1500{font-weight:1500!important}.brz-ed.brz-ed--mobile .brz-fs-im-6{font-size:6px}.brz-ed.brz-ed--mobile .brz-fs-im-7{font-size:7px}.brz-ed.brz-ed--mobile .brz-fs-im-8{font-size:8px}.brz-ed.brz-ed--mobile .brz-fs-im-9{font-size:9px}.brz-ed.brz-ed--mobile .brz-fs-im-10{font-size:10px}.brz-ed.brz-ed--mobile .brz-fs-im-11{font-size:11px}.brz-ed.brz-ed--mobile .brz-fs-im-12{font-size:12px}.brz-ed.brz-ed--mobile .brz-fs-im-13{font-size:13px}.brz-ed.brz-ed--mobile .brz-fs-im-14{font-size:14px}.brz-ed.brz-ed--mobile .brz-fs-im-15{font-size:15px}.brz-ed.brz-ed--mobile .brz-fs-im-16{font-size:16px}.brz-ed.brz-ed--mobile .brz-fs-im-17{font-size:17px}.brz-ed.brz-ed--mobile .brz-fs-im-18{font-size:18px}.brz-ed.brz-ed--mobile .brz-fs-im-19{font-size:19px}.brz-ed.brz-ed--mobile .brz-fs-im-20{font-size:20px}.brz-ed.brz-ed--mobile .brz-fs-im-21{font-size:21px}.brz-ed.brz-ed--mobile .brz-fs-im-22{font-size:22px}.brz-ed.brz-ed--mobile .brz-fs-im-23{font-size:23px}.brz-ed.brz-ed--mobile .brz-fs-im-24{font-size:24px}.brz-ed.brz-ed--mobile .brz-fs-im-25{font-size:25px}.brz-ed.brz-ed--mobile .brz-fs-im-26{font-size:26px}.brz-ed.brz-ed--mobile .brz-fs-im-27{font-size:27px}.brz-ed.brz-ed--mobile .brz-fs-im-28{font-size:28px}.brz-ed.brz-ed--mobile .brz-fs-im-29{font-size:29px}.brz-ed.brz-ed--mobile .brz-fs-im-30{font-size:30px}.brz-ed.brz-ed--mobile .brz-fs-im-31{font-size:31px}.brz-ed.brz-ed--mobile .brz-fs-im-32{font-size:32px}.brz-ed.brz-ed--mobile .brz-fs-im-33{font-size:33px}.brz-ed.brz-ed--mobile .brz-fs-im-34{font-size:34px}.brz-ed.brz-ed--mobile .brz-fs-im-35{font-size:35px}.brz-ed.brz-ed--mobile .brz-fs-im-36{font-size:36px}.brz-ed.brz-ed--mobile .brz-fs-im-37{font-size:37px}.brz-ed.brz-ed--mobile .brz-fs-im-38{font-size:38px}.brz-ed.brz-ed--mobile .brz-fs-im-39{font-size:39px}.brz-ed.brz-ed--mobile .brz-fs-im-40{font-size:40px}.brz-ed.brz-ed--mobile .brz-fs-im-41{font-size:41px}.brz-ed.brz-ed--mobile .brz-fs-im-42{font-size:42px}.brz-ed.brz-ed--mobile .brz-fs-im-43{font-size:43px}.brz-ed.brz-ed--mobile .brz-fs-im-44{font-size:44px}.brz-ed.brz-ed--mobile .brz-fs-im-45{font-size:45px}.brz-ed.brz-ed--mobile .brz-fs-im-46{font-size:46px}.brz-ed.brz-ed--mobile .brz-fs-im-47{font-size:47px}.brz-ed.brz-ed--mobile .brz-fs-im-48{font-size:48px}.brz-ed.brz-ed--mobile .brz-fs-im-49{font-size:49px}.brz-ed.brz-ed--mobile .brz-fs-im-50{font-size:50px}.brz-ed.brz-ed--mobile .brz-fs-im-51{font-size:51px}.brz-ed.brz-ed--mobile .brz-fs-im-52{font-size:52px}.brz-ed.brz-ed--mobile .brz-fs-im-53{font-size:53px}.brz-ed.brz-ed--mobile .brz-fs-im-54{font-size:54px}.brz-ed.brz-ed--mobile .brz-fs-im-55{font-size:55px}.brz-ed.brz-ed--mobile .brz-fs-im-56{font-size:56px}.brz-ed.brz-ed--mobile .brz-fs-im-57{font-size:57px}.brz-ed.brz-ed--mobile .brz-fs-im-58{font-size:58px}.brz-ed.brz-ed--mobile .brz-fs-im-59{font-size:59px}.brz-ed.brz-ed--mobile .brz-fs-im-60{font-size:60px}.brz-ed.brz-ed--mobile .brz-fs-im-61{font-size:61px}.brz-ed.brz-ed--mobile .brz-fs-im-62{font-size:62px}.brz-ed.brz-ed--mobile .brz-fs-im-63{font-size:63px}.brz-ed.brz-ed--mobile .brz-fs-im-64{font-size:64px}.brz-ed.brz-ed--mobile .brz-fs-im-65{font-size:65px}.brz-ed.brz-ed--mobile .brz-fs-im-66{font-size:66px}.brz-ed.brz-ed--mobile .brz-fs-im-67{font-size:67px}.brz-ed.brz-ed--mobile .brz-fs-im-68{font-size:68px}.brz-ed.brz-ed--mobile .brz-fs-im-69{font-size:69px}.brz-ed.brz-ed--mobile .brz-fs-im-70{font-size:70px}.brz-ed.brz-ed--mobile .brz-fs-im-71{font-size:71px}.brz-ed.brz-ed--mobile .brz-fs-im-72{font-size:72px}.brz-ed.brz-ed--mobile .brz-fs-im-73{font-size:73px}.brz-ed.brz-ed--mobile .brz-fs-im-74{font-size:74px}.brz-ed.brz-ed--mobile .brz-fs-im-75{font-size:75px}.brz-ed.brz-ed--mobile .brz-fs-im-76{font-size:76px}.brz-ed.brz-ed--mobile .brz-fs-im-77{font-size:77px}.brz-ed.brz-ed--mobile .brz-fs-im-78{font-size:78px}.brz-ed.brz-ed--mobile .brz-fs-im-79{font-size:79px}.brz-ed.brz-ed--mobile .brz-fs-im-80{font-size:80px}.brz-ed.brz-ed--mobile .brz-fs-im-81{font-size:81px}.brz-ed.brz-ed--mobile .brz-fs-im-82{font-size:82px}.brz-ed.brz-ed--mobile .brz-fs-im-83{font-size:83px}.brz-ed.brz-ed--mobile .brz-fs-im-84{font-size:84px}.brz-ed.brz-ed--mobile .brz-fs-im-85{font-size:85px}.brz-ed.brz-ed--mobile .brz-fs-im-86{font-size:86px}.brz-ed.brz-ed--mobile .brz-fs-im-87{font-size:87px}.brz-ed.brz-ed--mobile .brz-fs-im-88{font-size:88px}.brz-ed.brz-ed--mobile .brz-fs-im-89{font-size:89px}.brz-ed.brz-ed--mobile .brz-fs-im-90{font-size:90px}.brz-ed.brz-ed--mobile .brz-fs-im-91{font-size:91px}.brz-ed.brz-ed--mobile .brz-fs-im-92{font-size:92px}.brz-ed.brz-ed--mobile .brz-fs-im-93{font-size:93px}.brz-ed.brz-ed--mobile .brz-fs-im-94{font-size:94px}.brz-ed.brz-ed--mobile .brz-fs-im-95{font-size:95px}.brz-ed.brz-ed--mobile .brz-fs-im-96{font-size:96px}.brz-ed.brz-ed--mobile .brz-fs-im-97{font-size:97px}.brz-ed.brz-ed--mobile .brz-fs-im-98{font-size:98px}.brz-ed.brz-ed--mobile .brz-fs-im-99{font-size:99px}.brz-ed.brz-ed--mobile .brz-fs-im-100{font-size:100px}.brz-ed.brz-ed--mobile .brz-fs-im-101{font-size:101px}.brz-ed.brz-ed--mobile .brz-fs-im-102{font-size:102px}.brz-ed.brz-ed--mobile .brz-fs-im-103{font-size:103px}.brz-ed.brz-ed--mobile .brz-fs-im-104{font-size:104px}.brz-ed.brz-ed--mobile .brz-fs-im-105{font-size:105px}.brz-ed.brz-ed--mobile .brz-fs-im-106{font-size:106px}.brz-ed.brz-ed--mobile .brz-fs-im-107{font-size:107px}.brz-ed.brz-ed--mobile .brz-fs-im-108{font-size:108px}.brz-ed.brz-ed--mobile .brz-fs-im-109{font-size:109px}.brz-ed.brz-ed--mobile .brz-fs-im-110{font-size:110px}.brz-ed.brz-ed--mobile .brz-fs-im-111{font-size:111px}.brz-ed.brz-ed--mobile .brz-fs-im-112{font-size:112px}.brz-ed.brz-ed--mobile .brz-fs-im-113{font-size:113px}.brz-ed.brz-ed--mobile .brz-fs-im-114{font-size:114px}.brz-ed.brz-ed--mobile .brz-fs-im-115{font-size:115px}.brz-ed.brz-ed--mobile .brz-fs-im-116{font-size:116px}.brz-ed.brz-ed--mobile .brz-fs-im-117{font-size:117px}.brz-ed.brz-ed--mobile .brz-fs-im-118{font-size:118px}.brz-ed.brz-ed--mobile .brz-fs-im-119{font-size:119px}.brz-ed.brz-ed--mobile .brz-fs-im-120{font-size:120px}.brz-ed.brz-ed--mobile .brz-fs-im-121{font-size:121px}.brz-ed.brz-ed--mobile .brz-fs-im-122{font-size:122px}.brz-ed.brz-ed--mobile .brz-fs-im-123{font-size:123px}.brz-ed.brz-ed--mobile .brz-fs-im-124{font-size:124px}.brz-ed.brz-ed--mobile .brz-fs-im-125{font-size:125px}.brz-ed.brz-ed--mobile .brz-fs-im-126{font-size:126px}.brz-ed.brz-ed--mobile .brz-fs-im-127{font-size:127px}.brz-ed.brz-ed--mobile .brz-fs-im-128{font-size:128px}.brz-ed.brz-ed--mobile .brz-fs-im-129{font-size:129px}.brz-ed.brz-ed--mobile .brz-fs-im-130{font-size:130px}.brz-ed.brz-ed--mobile .brz-fs-im-131{font-size:131px}.brz-ed.brz-ed--mobile .brz-fs-im-132{font-size:132px}.brz-ed.brz-ed--mobile .brz-fs-im-133{font-size:133px}.brz-ed.brz-ed--mobile .brz-fs-im-134{font-size:134px}.brz-ed.brz-ed--mobile .brz-fs-im-135{font-size:135px}.brz-ed.brz-ed--mobile .brz-fs-im-136{font-size:136px}.brz-ed.brz-ed--mobile .brz-fs-im-137{font-size:137px}.brz-ed.brz-ed--mobile .brz-fs-im-138{font-size:138px}.brz-ed.brz-ed--mobile .brz-fs-im-139{font-size:139px}.brz-ed.brz-ed--mobile .brz-fs-im-140{font-size:140px}.brz-ed.brz-ed--mobile .brz-fs-im-141{font-size:141px}.brz-ed.brz-ed--mobile .brz-fs-im-142{font-size:142px}.brz-ed.brz-ed--mobile .brz-fs-im-143{font-size:143px}.brz-ed.brz-ed--mobile .brz-fs-im-144{font-size:144px}.brz-ed.brz-ed--mobile .brz-fs-im-145{font-size:145px}.brz-ed.brz-ed--mobile .brz-fs-im-146{font-size:146px}.brz-ed.brz-ed--mobile .brz-fs-im-147{font-size:147px}.brz-ed.brz-ed--mobile .brz-fs-im-148{font-size:148px}.brz-ed.brz-ed--mobile .brz-fs-im-149{font-size:149px}.brz-ed.brz-ed--mobile .brz-fs-im-150{font-size:150px}.brz-ed.brz-ed--mobile .brz-fs-im-151{font-size:151px}.brz-ed.brz-ed--mobile .brz-fs-im-152{font-size:152px}.brz-ed.brz-ed--mobile .brz-fs-im-153{font-size:153px}.brz-ed.brz-ed--mobile .brz-fs-im-154{font-size:154px}.brz-ed.brz-ed--mobile .brz-fs-im-155{font-size:155px}.brz-ed.brz-ed--mobile .brz-fs-im-156{font-size:156px}.brz-ed.brz-ed--mobile .brz-fs-im-157{font-size:157px}.brz-ed.brz-ed--mobile .brz-fs-im-158{font-size:158px}.brz-ed.brz-ed--mobile .brz-fs-im-159{font-size:159px}.brz-ed.brz-ed--mobile .brz-fs-im-160{font-size:160px}.brz-ed.brz-ed--mobile .brz-fs-im-161{font-size:161px}.brz-ed.brz-ed--mobile .brz-fs-im-162{font-size:162px}.brz-ed.brz-ed--mobile .brz-fs-im-163{font-size:163px}.brz-ed.brz-ed--mobile .brz-fs-im-164{font-size:164px}.brz-ed.brz-ed--mobile .brz-fs-im-165{font-size:165px}.brz-ed.brz-ed--mobile .brz-fs-im-166{font-size:166px}.brz-ed.brz-ed--mobile .brz-fs-im-167{font-size:167px}.brz-ed.brz-ed--mobile .brz-fs-im-168{font-size:168px}.brz-ed.brz-ed--mobile .brz-fs-im-169{font-size:169px}.brz-ed.brz-ed--mobile .brz-fs-im-170{font-size:170px}.brz-ed.brz-ed--mobile .brz-fs-im-171{font-size:171px}.brz-ed.brz-ed--mobile .brz-fs-im-172{font-size:172px}.brz-ed.brz-ed--mobile .brz-fs-im-173{font-size:173px}.brz-ed.brz-ed--mobile .brz-fs-im-174{font-size:174px}.brz-ed.brz-ed--mobile .brz-fs-im-175{font-size:175px}.brz-ed.brz-ed--mobile .brz-fs-im-176{font-size:176px}.brz-ed.brz-ed--mobile .brz-fs-im-177{font-size:177px}.brz-ed.brz-ed--mobile .brz-fs-im-178{font-size:178px}.brz-ed.brz-ed--mobile .brz-fs-im-179{font-size:179px}.brz-ed.brz-ed--mobile .brz-fs-im-180{font-size:180px}.brz-ed.brz-ed--mobile .brz-fs-xs-6{font-size:6px}.brz-ed.brz-ed--mobile .brz-fs-xs-7{font-size:7px}.brz-ed.brz-ed--mobile .brz-fs-xs-8{font-size:8px}.brz-ed.brz-ed--mobile .brz-fs-xs-9{font-size:9px}.brz-ed.brz-ed--mobile .brz-fs-xs-10{font-size:10px}.brz-ed.brz-ed--mobile .brz-fs-xs-11{font-size:11px}.brz-ed.brz-ed--mobile .brz-fs-xs-12{font-size:12px}.brz-ed.brz-ed--mobile .brz-fs-xs-13{font-size:13px}.brz-ed.brz-ed--mobile .brz-fs-xs-14{font-size:14px}.brz-ed.brz-ed--mobile .brz-fs-xs-15{font-size:15px}.brz-ed.brz-ed--mobile .brz-fs-xs-16{font-size:16px}.brz-ed.brz-ed--mobile .brz-fs-xs-17{font-size:17px}.brz-ed.brz-ed--mobile .brz-fs-xs-18{font-size:18px}.brz-ed.brz-ed--mobile .brz-fs-xs-19{font-size:19px}.brz-ed.brz-ed--mobile .brz-fs-xs-20{font-size:20px}.brz-ed.brz-ed--mobile .brz-fs-xs-21{font-size:21px}.brz-ed.brz-ed--mobile .brz-fs-xs-22{font-size:22px}.brz-ed.brz-ed--mobile .brz-fs-xs-23{font-size:23px}.brz-ed.brz-ed--mobile .brz-fs-xs-24{font-size:24px}.brz-ed.brz-ed--mobile .brz-fs-xs-25{font-size:25px}.brz-ed.brz-ed--mobile .brz-fs-xs-26{font-size:26px}.brz-ed.brz-ed--mobile .brz-fs-xs-27{font-size:27px}.brz-ed.brz-ed--mobile .brz-fs-xs-28{font-size:28px}.brz-ed.brz-ed--mobile .brz-fs-xs-29{font-size:29px}.brz-ed.brz-ed--mobile .brz-fs-xs-30{font-size:30px}.brz-ed.brz-ed--mobile .brz-fs-xs-31{font-size:31px}.brz-ed.brz-ed--mobile .brz-fs-xs-32{font-size:32px}.brz-ed.brz-ed--mobile .brz-fs-xs-33{font-size:33px}.brz-ed.brz-ed--mobile .brz-fs-xs-34{font-size:34px}.brz-ed.brz-ed--mobile .brz-fs-xs-35{font-size:35px}.brz-ed.brz-ed--mobile .brz-fs-xs-36{font-size:36px}.brz-ed.brz-ed--mobile .brz-fs-xs-37{font-size:37px}.brz-ed.brz-ed--mobile .brz-fs-xs-38{font-size:38px}.brz-ed.brz-ed--mobile .brz-fs-xs-39{font-size:39px}.brz-ed.brz-ed--mobile .brz-fs-xs-40{font-size:40px}.brz-ed.brz-ed--mobile .brz-fs-xs-41{font-size:41px}.brz-ed.brz-ed--mobile .brz-fs-xs-42{font-size:42px}.brz-ed.brz-ed--mobile .brz-fs-xs-43{font-size:43px}.brz-ed.brz-ed--mobile .brz-fs-xs-44{font-size:44px}.brz-ed.brz-ed--mobile .brz-fs-xs-45{font-size:45px}.brz-ed.brz-ed--mobile .brz-fs-xs-46{font-size:46px}.brz-ed.brz-ed--mobile .brz-fs-xs-47{font-size:47px}.brz-ed.brz-ed--mobile .brz-fs-xs-48{font-size:48px}.brz-ed.brz-ed--mobile .brz-fs-xs-49{font-size:49px}.brz-ed.brz-ed--mobile .brz-fs-xs-50{font-size:50px}.brz-ed.brz-ed--mobile .brz-fs-xs-51{font-size:51px}.brz-ed.brz-ed--mobile .brz-fs-xs-52{font-size:52px}.brz-ed.brz-ed--mobile .brz-fs-xs-53{font-size:53px}.brz-ed.brz-ed--mobile .brz-fs-xs-54{font-size:54px}.brz-ed.brz-ed--mobile .brz-fs-xs-55{font-size:55px}.brz-ed.brz-ed--mobile .brz-fs-xs-56{font-size:56px}.brz-ed.brz-ed--mobile .brz-fs-xs-57{font-size:57px}.brz-ed.brz-ed--mobile .brz-fs-xs-58{font-size:58px}.brz-ed.brz-ed--mobile .brz-fs-xs-59{font-size:59px}.brz-ed.brz-ed--mobile .brz-fs-xs-60{font-size:60px}.brz-ed.brz-ed--mobile .brz-fs-xs-61{font-size:61px}.brz-ed.brz-ed--mobile .brz-fs-xs-62{font-size:62px}.brz-ed.brz-ed--mobile .brz-fs-xs-63{font-size:63px}.brz-ed.brz-ed--mobile .brz-fs-xs-64{font-size:64px}.brz-ed.brz-ed--mobile .brz-fs-xs-65{font-size:65px}.brz-ed.brz-ed--mobile .brz-fs-xs-66{font-size:66px}.brz-ed.brz-ed--mobile .brz-fs-xs-67{font-size:67px}.brz-ed.brz-ed--mobile .brz-fs-xs-68{font-size:68px}.brz-ed.brz-ed--mobile .brz-fs-xs-69{font-size:69px}.brz-ed.brz-ed--mobile .brz-fs-xs-70{font-size:70px}.brz-ed.brz-ed--mobile .brz-fs-xs-71{font-size:71px}.brz-ed.brz-ed--mobile .brz-fs-xs-72{font-size:72px}.brz-ed.brz-ed--mobile .brz-fs-xs-73{font-size:73px}.brz-ed.brz-ed--mobile .brz-fs-xs-74{font-size:74px}.brz-ed.brz-ed--mobile .brz-fs-xs-75{font-size:75px}.brz-ed.brz-ed--mobile .brz-fs-xs-76{font-size:76px}.brz-ed.brz-ed--mobile .brz-fs-xs-77{font-size:77px}.brz-ed.brz-ed--mobile .brz-fs-xs-78{font-size:78px}.brz-ed.brz-ed--mobile .brz-fs-xs-79{font-size:79px}.brz-ed.brz-ed--mobile .brz-fs-xs-80{font-size:80px}.brz-ed.brz-ed--mobile .brz-fs-xs-81{font-size:81px}.brz-ed.brz-ed--mobile .brz-fs-xs-82{font-size:82px}.brz-ed.brz-ed--mobile .brz-fs-xs-83{font-size:83px}.brz-ed.brz-ed--mobile .brz-fs-xs-84{font-size:84px}.brz-ed.brz-ed--mobile .brz-fs-xs-85{font-size:85px}.brz-ed.brz-ed--mobile .brz-fs-xs-86{font-size:86px}.brz-ed.brz-ed--mobile .brz-fs-xs-87{font-size:87px}.brz-ed.brz-ed--mobile .brz-fs-xs-88{font-size:88px}.brz-ed.brz-ed--mobile .brz-fs-xs-89{font-size:89px}.brz-ed.brz-ed--mobile .brz-fs-xs-90{font-size:90px}.brz-ed.brz-ed--mobile .brz-fs-xs-91{font-size:91px}.brz-ed.brz-ed--mobile .brz-fs-xs-92{font-size:92px}.brz-ed.brz-ed--mobile .brz-fs-xs-93{font-size:93px}.brz-ed.brz-ed--mobile .brz-fs-xs-94{font-size:94px}.brz-ed.brz-ed--mobile .brz-fs-xs-95{font-size:95px}.brz-ed.brz-ed--mobile .brz-fs-xs-96{font-size:96px}.brz-ed.brz-ed--mobile .brz-fs-xs-97{font-size:97px}.brz-ed.brz-ed--mobile .brz-fs-xs-98{font-size:98px}.brz-ed.brz-ed--mobile .brz-fs-xs-99{font-size:99px}.brz-ed.brz-ed--mobile .brz-fs-xs-100{font-size:100px}.brz-ed.brz-ed--mobile .brz-fs-xs-101{font-size:101px}.brz-ed.brz-ed--mobile .brz-fs-xs-102{font-size:102px}.brz-ed.brz-ed--mobile .brz-fs-xs-103{font-size:103px}.brz-ed.brz-ed--mobile .brz-fs-xs-104{font-size:104px}.brz-ed.brz-ed--mobile .brz-fs-xs-105{font-size:105px}.brz-ed.brz-ed--mobile .brz-fs-xs-106{font-size:106px}.brz-ed.brz-ed--mobile .brz-fs-xs-107{font-size:107px}.brz-ed.brz-ed--mobile .brz-fs-xs-108{font-size:108px}.brz-ed.brz-ed--mobile .brz-fs-xs-109{font-size:109px}.brz-ed.brz-ed--mobile .brz-fs-xs-110{font-size:110px}.brz-ed.brz-ed--mobile .brz-fs-xs-111{font-size:111px}.brz-ed.brz-ed--mobile .brz-fs-xs-112{font-size:112px}.brz-ed.brz-ed--mobile .brz-fs-xs-113{font-size:113px}.brz-ed.brz-ed--mobile .brz-fs-xs-114{font-size:114px}.brz-ed.brz-ed--mobile .brz-fs-xs-115{font-size:115px}.brz-ed.brz-ed--mobile .brz-fs-xs-116{font-size:116px}.brz-ed.brz-ed--mobile .brz-fs-xs-117{font-size:117px}.brz-ed.brz-ed--mobile .brz-fs-xs-118{font-size:118px}.brz-ed.brz-ed--mobile .brz-fs-xs-119{font-size:119px}.brz-ed.brz-ed--mobile .brz-fs-xs-120{font-size:120px}.brz-ed.brz-ed--mobile .brz-fs-xs-121{font-size:121px}.brz-ed.brz-ed--mobile .brz-fs-xs-122{font-size:122px}.brz-ed.brz-ed--mobile .brz-fs-xs-123{font-size:123px}.brz-ed.brz-ed--mobile .brz-fs-xs-124{font-size:124px}.brz-ed.brz-ed--mobile .brz-fs-xs-125{font-size:125px}.brz-ed.brz-ed--mobile .brz-fs-xs-126{font-size:126px}.brz-ed.brz-ed--mobile .brz-fs-xs-127{font-size:127px}.brz-ed.brz-ed--mobile .brz-fs-xs-128{font-size:128px}.brz-ed.brz-ed--mobile .brz-fs-xs-129{font-size:129px}.brz-ed.brz-ed--mobile .brz-fs-xs-130{font-size:130px}.brz-ed.brz-ed--mobile .brz-fs-xs-131{font-size:131px}.brz-ed.brz-ed--mobile .brz-fs-xs-132{font-size:132px}.brz-ed.brz-ed--mobile .brz-fs-xs-133{font-size:133px}.brz-ed.brz-ed--mobile .brz-fs-xs-134{font-size:134px}.brz-ed.brz-ed--mobile .brz-fs-xs-135{font-size:135px}.brz-ed.brz-ed--mobile .brz-fs-xs-136{font-size:136px}.brz-ed.brz-ed--mobile .brz-fs-xs-137{font-size:137px}.brz-ed.brz-ed--mobile .brz-fs-xs-138{font-size:138px}.brz-ed.brz-ed--mobile .brz-fs-xs-139{font-size:139px}.brz-ed.brz-ed--mobile .brz-fs-xs-140{font-size:140px}.brz-ed.brz-ed--mobile .brz-fs-xs-141{font-size:141px}.brz-ed.brz-ed--mobile .brz-fs-xs-142{font-size:142px}.brz-ed.brz-ed--mobile .brz-fs-xs-143{font-size:143px}.brz-ed.brz-ed--mobile .brz-fs-xs-144{font-size:144px}.brz-ed.brz-ed--mobile .brz-fs-xs-145{font-size:145px}.brz-ed.brz-ed--mobile .brz-fs-xs-146{font-size:146px}.brz-ed.brz-ed--mobile .brz-fs-xs-147{font-size:147px}.brz-ed.brz-ed--mobile .brz-fs-xs-148{font-size:148px}.brz-ed.brz-ed--mobile .brz-fs-xs-149{font-size:149px}.brz-ed.brz-ed--mobile .brz-fs-xs-150{font-size:150px}.brz-ed.brz-ed--mobile .brz-fs-xs-151{font-size:151px}.brz-ed.brz-ed--mobile .brz-fs-xs-152{font-size:152px}.brz-ed.brz-ed--mobile .brz-fs-xs-153{font-size:153px}.brz-ed.brz-ed--mobile .brz-fs-xs-154{font-size:154px}.brz-ed.brz-ed--mobile .brz-fs-xs-155{font-size:155px}.brz-ed.brz-ed--mobile .brz-fs-xs-156{font-size:156px}.brz-ed.brz-ed--mobile .brz-fs-xs-157{font-size:157px}.brz-ed.brz-ed--mobile .brz-fs-xs-158{font-size:158px}.brz-ed.brz-ed--mobile .brz-fs-xs-159{font-size:159px}.brz-ed.brz-ed--mobile .brz-fs-xs-160{font-size:160px}.brz-ed.brz-ed--mobile .brz-fs-xs-161{font-size:161px}.brz-ed.brz-ed--mobile .brz-fs-xs-162{font-size:162px}.brz-ed.brz-ed--mobile .brz-fs-xs-163{font-size:163px}.brz-ed.brz-ed--mobile .brz-fs-xs-164{font-size:164px}.brz-ed.brz-ed--mobile .brz-fs-xs-165{font-size:165px}.brz-ed.brz-ed--mobile .brz-fs-xs-166{font-size:166px}.brz-ed.brz-ed--mobile .brz-fs-xs-167{font-size:167px}.brz-ed.brz-ed--mobile .brz-fs-xs-168{font-size:168px}.brz-ed.brz-ed--mobile .brz-fs-xs-169{font-size:169px}.brz-ed.brz-ed--mobile .brz-fs-xs-170{font-size:170px}.brz-ed.brz-ed--mobile .brz-fs-xs-171{font-size:171px}.brz-ed.brz-ed--mobile .brz-fs-xs-172{font-size:172px}.brz-ed.brz-ed--mobile .brz-fs-xs-173{font-size:173px}.brz-ed.brz-ed--mobile .brz-fs-xs-174{font-size:174px}.brz-ed.brz-ed--mobile .brz-fs-xs-175{font-size:175px}.brz-ed.brz-ed--mobile .brz-fs-xs-176{font-size:176px}.brz-ed.brz-ed--mobile .brz-fs-xs-177{font-size:177px}.brz-ed.brz-ed--mobile .brz-fs-xs-178{font-size:178px}.brz-ed.brz-ed--mobile .brz-fs-xs-179{font-size:179px}.brz-ed.brz-ed--mobile .brz-fs-xs-180{font-size:180px}.brz-ed.brz-ed--mobile .brz-lh-im-1{line-height:1em}.brz-ed.brz-ed--mobile .brz-lh-im-1_1{line-height:1.1em}.brz-ed.brz-ed--mobile .brz-lh-im-1_2{line-height:1.2em}.brz-ed.brz-ed--mobile .brz-lh-im-1_3{line-height:1.3em}.brz-ed.brz-ed--mobile .brz-lh-im-1_4{line-height:1.4em}.brz-ed.brz-ed--mobile .brz-lh-im-1_5{line-height:1.5em}.brz-ed.brz-ed--mobile .brz-lh-im-1_6{line-height:1.6em}.brz-ed.brz-ed--mobile .brz-lh-im-1_7{line-height:1.7em}.brz-ed.brz-ed--mobile .brz-lh-im-1_8{line-height:1.8em}.brz-ed.brz-ed--mobile .brz-lh-im-1_9{line-height:1.9em}.brz-ed.brz-ed--mobile .brz-lh-im-2{line-height:2em}.brz-ed.brz-ed--mobile .brz-lh-im-2_1{line-height:2.1em}.brz-ed.brz-ed--mobile .brz-lh-im-2_2{line-height:2.2em}.brz-ed.brz-ed--mobile .brz-lh-im-2_3{line-height:2.3em}.brz-ed.brz-ed--mobile .brz-lh-im-2_4{line-height:2.4em}.brz-ed.brz-ed--mobile .brz-lh-im-2_5{line-height:2.5em}.brz-ed.brz-ed--mobile .brz-lh-im-2_6{line-height:2.6em}.brz-ed.brz-ed--mobile .brz-lh-im-2_7{line-height:2.7em}.brz-ed.brz-ed--mobile .brz-lh-im-2_8{line-height:2.8em}.brz-ed.brz-ed--mobile .brz-lh-im-2_9{line-height:2.9em}.brz-ed.brz-ed--mobile .brz-lh-im-3{line-height:3em}.brz-ed.brz-ed--mobile .brz-lh-im-3_1{line-height:3.1em}.brz-ed.brz-ed--mobile .brz-lh-im-3_2{line-height:3.2em}.brz-ed.brz-ed--mobile .brz-lh-im-3_3{line-height:3.3em}.brz-ed.brz-ed--mobile .brz-lh-im-3_4{line-height:3.4em}.brz-ed.brz-ed--mobile .brz-lh-im-3_5{line-height:3.5em}.brz-ed.brz-ed--mobile .brz-lh-im-3_6{line-height:3.6em}.brz-ed.brz-ed--mobile .brz-lh-im-3_7{line-height:3.7em}.brz-ed.brz-ed--mobile .brz-lh-im-3_8{line-height:3.8em}.brz-ed.brz-ed--mobile .brz-lh-im-3_9{line-height:3.9em}.brz-ed.brz-ed--mobile .brz-lh-im-4{line-height:4em}.brz-ed.brz-ed--mobile .brz-lh-im-4_1{line-height:4.1em}.brz-ed.brz-ed--mobile .brz-lh-im-4_2{line-height:4.2em}.brz-ed.brz-ed--mobile .brz-lh-im-4_3{line-height:4.3em}.brz-ed.brz-ed--mobile .brz-lh-im-4_4{line-height:4.4em}.brz-ed.brz-ed--mobile .brz-lh-im-4_5{line-height:4.5em}.brz-ed.brz-ed--mobile .brz-lh-im-4_6{line-height:4.6em}.brz-ed.brz-ed--mobile .brz-lh-im-4_7{line-height:4.7em}.brz-ed.brz-ed--mobile .brz-lh-im-4_8{line-height:4.8em}.brz-ed.brz-ed--mobile .brz-lh-im-4_9{line-height:4.9em}.brz-ed.brz-ed--mobile .brz-lh-im-5{line-height:5em}.brz-ed.brz-ed--mobile .brz-lh-im-5_1{line-height:5.1em}.brz-ed.brz-ed--mobile .brz-lh-im-5_2{line-height:5.2em}.brz-ed.brz-ed--mobile .brz-lh-im-5_3{line-height:5.3em}.brz-ed.brz-ed--mobile .brz-lh-im-5_4{line-height:5.4em}.brz-ed.brz-ed--mobile .brz-lh-im-5_5{line-height:5.5em}.brz-ed.brz-ed--mobile .brz-lh-im-5_6{line-height:5.6em}.brz-ed.brz-ed--mobile .brz-lh-im-5_7{line-height:5.7em}.brz-ed.brz-ed--mobile .brz-lh-im-5_8{line-height:5.8em}.brz-ed.brz-ed--mobile .brz-lh-im-5_9{line-height:5.9em}.brz-ed.brz-ed--mobile .brz-lh-xs-1{line-height:1em}.brz-ed.brz-ed--mobile .brz-lh-xs-1_1{line-height:1.1em}.brz-ed.brz-ed--mobile .brz-lh-xs-1_2{line-height:1.2em}.brz-ed.brz-ed--mobile .brz-lh-xs-1_3{line-height:1.3em}.brz-ed.brz-ed--mobile .brz-lh-xs-1_4{line-height:1.4em}.brz-ed.brz-ed--mobile .brz-lh-xs-1_5{line-height:1.5em}.brz-ed.brz-ed--mobile .brz-lh-xs-1_6{line-height:1.6em}.brz-ed.brz-ed--mobile .brz-lh-xs-1_7{line-height:1.7em}.brz-ed.brz-ed--mobile .brz-lh-xs-1_8{line-height:1.8em}.brz-ed.brz-ed--mobile .brz-lh-xs-1_9{line-height:1.9em}.brz-ed.brz-ed--mobile .brz-lh-xs-2{line-height:2em}.brz-ed.brz-ed--mobile .brz-lh-xs-2_1{line-height:2.1em}.brz-ed.brz-ed--mobile .brz-lh-xs-2_2{line-height:2.2em}.brz-ed.brz-ed--mobile .brz-lh-xs-2_3{line-height:2.3em}.brz-ed.brz-ed--mobile .brz-lh-xs-2_4{line-height:2.4em}.brz-ed.brz-ed--mobile .brz-lh-xs-2_5{line-height:2.5em}.brz-ed.brz-ed--mobile .brz-lh-xs-2_6{line-height:2.6em}.brz-ed.brz-ed--mobile .brz-lh-xs-2_7{line-height:2.7em}.brz-ed.brz-ed--mobile .brz-lh-xs-2_8{line-height:2.8em}.brz-ed.brz-ed--mobile .brz-lh-xs-2_9{line-height:2.9em}.brz-ed.brz-ed--mobile .brz-lh-xs-3{line-height:3em}.brz-ed.brz-ed--mobile .brz-lh-xs-3_1{line-height:3.1em}.brz-ed.brz-ed--mobile .brz-lh-xs-3_2{line-height:3.2em}.brz-ed.brz-ed--mobile .brz-lh-xs-3_3{line-height:3.3em}.brz-ed.brz-ed--mobile .brz-lh-xs-3_4{line-height:3.4em}.brz-ed.brz-ed--mobile .brz-lh-xs-3_5{line-height:3.5em}.brz-ed.brz-ed--mobile .brz-lh-xs-3_6{line-height:3.6em}.brz-ed.brz-ed--mobile .brz-lh-xs-3_7{line-height:3.7em}.brz-ed.brz-ed--mobile .brz-lh-xs-3_8{line-height:3.8em}.brz-ed.brz-ed--mobile .brz-lh-xs-3_9{line-height:3.9em}.brz-ed.brz-ed--mobile .brz-lh-xs-4{line-height:4em}.brz-ed.brz-ed--mobile .brz-lh-xs-4_1{line-height:4.1em}.brz-ed.brz-ed--mobile .brz-lh-xs-4_2{line-height:4.2em}.brz-ed.brz-ed--mobile .brz-lh-xs-4_3{line-height:4.3em}.brz-ed.brz-ed--mobile .brz-lh-xs-4_4{line-height:4.4em}.brz-ed.brz-ed--mobile .brz-lh-xs-4_5{line-height:4.5em}.brz-ed.brz-ed--mobile .brz-lh-xs-4_6{line-height:4.6em}.brz-ed.brz-ed--mobile .brz-lh-xs-4_7{line-height:4.7em}.brz-ed.brz-ed--mobile .brz-lh-xs-4_8{line-height:4.8em}.brz-ed.brz-ed--mobile .brz-lh-xs-4_9{line-height:4.9em}.brz-ed.brz-ed--mobile .brz-lh-xs-5{line-height:5em}.brz-ed.brz-ed--mobile .brz-lh-xs-5_1{line-height:5.1em}.brz-ed.brz-ed--mobile .brz-lh-xs-5_2{line-height:5.2em}.brz-ed.brz-ed--mobile .brz-lh-xs-5_3{line-height:5.3em}.brz-ed.brz-ed--mobile .brz-lh-xs-5_4{line-height:5.4em}.brz-ed.brz-ed--mobile .brz-lh-xs-5_5{line-height:5.5em}.brz-ed.brz-ed--mobile .brz-lh-xs-5_6{line-height:5.6em}.brz-ed.brz-ed--mobile .brz-lh-xs-5_7{line-height:5.7em}.brz-ed.brz-ed--mobile .brz-lh-xs-5_8{line-height:5.8em}.brz-ed.brz-ed--mobile .brz-lh-xs-5_9{line-height:5.9em}.brz-ed.brz-ed--mobile .brz-fw-im-100{font-weight:100!important}.brz-ed.brz-ed--mobile .brz-fw-im-200{font-weight:200!important}.brz-ed.brz-ed--mobile .brz-fw-im-300{font-weight:300!important}.brz-ed.brz-ed--mobile .brz-fw-im-400{font-weight:400!important}.brz-ed.brz-ed--mobile .brz-fw-im-500{font-weight:500!important}.brz-ed.brz-ed--mobile .brz-fw-im-600{font-weight:600!important}.brz-ed.brz-ed--mobile .brz-fw-im-700{font-weight:700!important}.brz-ed.brz-ed--mobile .brz-fw-im-800{font-weight:800!important}.brz-ed.brz-ed--mobile .brz-fw-im-900{font-weight:900!important}.brz-ed.brz-ed--mobile .brz-fw-im-1000{font-weight:1000!important}.brz-ed.brz-ed--mobile .brz-fw-im-1100{font-weight:1100!important}.brz-ed.brz-ed--mobile .brz-fw-im-1200{font-weight:1200!important}.brz-ed.brz-ed--mobile .brz-fw-im-1300{font-weight:1300!important}.brz-ed.brz-ed--mobile .brz-fw-im-1400{font-weight:1400!important}.brz-ed.brz-ed--mobile .brz-fw-im-1500{font-weight:1500!important}.brz-ed.brz-ed--mobile .brz-fw-xs-100{font-weight:100!important}.brz-ed.brz-ed--mobile .brz-fw-xs-200{font-weight:200!important}.brz-ed.brz-ed--mobile .brz-fw-xs-300{font-weight:300!important}.brz-ed.brz-ed--mobile .brz-fw-xs-400{font-weight:400!important}.brz-ed.brz-ed--mobile .brz-fw-xs-500{font-weight:500!important}.brz-ed.brz-ed--mobile .brz-fw-xs-600{font-weight:600!important}.brz-ed.brz-ed--mobile .brz-fw-xs-700{font-weight:700!important}.brz-ed.brz-ed--mobile .brz-fw-xs-800{font-weight:800!important}.brz-ed.brz-ed--mobile .brz-fw-xs-900{font-weight:900!important}.brz-ed.brz-ed--mobile .brz-fw-xs-1000{font-weight:1000!important}.brz-ed.brz-ed--mobile .brz-fw-xs-1100{font-weight:1100!important}.brz-ed.brz-ed--mobile .brz-fw-xs-1200{font-weight:1200!important}.brz-ed.brz-ed--mobile .brz-fw-xs-1300{font-weight:1300!important}.brz-ed.brz-ed--mobile .brz-fw-xs-1400{font-weight:1400!important}.brz-ed.brz-ed--mobile .brz-fw-xs-1500{font-weight:1500!important}.brz-ed.brz-ed--mobile .brz-ls-im-m_5{letter-spacing:-5px}.brz-ed.brz-ed--mobile .brz-ls-im-m_5_5{letter-spacing:-5.5px}.brz-ed.brz-ed--mobile .brz-ls-im-m_4{letter-spacing:-4px}.brz-ed.brz-ed--mobile .brz-ls-im-m_4_5{letter-spacing:-4.5px}.brz-ed.brz-ed--mobile .brz-ls-im-m_3{letter-spacing:-3px}.brz-ed.brz-ed--mobile .brz-ls-im-m_3_5{letter-spacing:-3.5px}.brz-ed.brz-ed--mobile .brz-ls-im-m_2{letter-spacing:-2px}.brz-ed.brz-ed--mobile .brz-ls-im-m_2_5{letter-spacing:-2.5px}.brz-ed.brz-ed--mobile .brz-ls-im-m_1{letter-spacing:-1px}.brz-ed.brz-ed--mobile .brz-ls-im-m_1_5{letter-spacing:-1.5px}.brz-ed.brz-ed--mobile .brz-ls-im-m_0{letter-spacing:0}.brz-ed.brz-ed--mobile .brz-ls-im-m_0_5{letter-spacing:-.5px}.brz-ed.brz-ed--mobile .brz-ls-im-0{letter-spacing:0}.brz-ed.brz-ed--mobile .brz-ls-im-0_5{letter-spacing:.5px}.brz-ed.brz-ed--mobile .brz-ls-im-1{letter-spacing:1px}.brz-ed.brz-ed--mobile .brz-ls-im-1_5{letter-spacing:1.5px}.brz-ed.brz-ed--mobile .brz-ls-im-2{letter-spacing:2px}.brz-ed.brz-ed--mobile .brz-ls-im-2_5{letter-spacing:2.5px}.brz-ed.brz-ed--mobile .brz-ls-im-3{letter-spacing:3px}.brz-ed.brz-ed--mobile .brz-ls-im-3_5{letter-spacing:3.5px}.brz-ed.brz-ed--mobile .brz-ls-im-4{letter-spacing:4px}.brz-ed.brz-ed--mobile .brz-ls-im-4_5{letter-spacing:4.5px}.brz-ed.brz-ed--mobile .brz-ls-im-5{letter-spacing:5px}.brz-ed.brz-ed--mobile .brz-ls-im-5_5{letter-spacing:5.5px}.brz-ed.brz-ed--mobile .brz-ls-im-6{letter-spacing:6px}.brz-ed.brz-ed--mobile .brz-ls-im-6_5{letter-spacing:6.5px}.brz-ed.brz-ed--mobile .brz-ls-im-7{letter-spacing:7px}.brz-ed.brz-ed--mobile .brz-ls-im-7_5{letter-spacing:7.5px}.brz-ed.brz-ed--mobile .brz-ls-im-8{letter-spacing:8px}.brz-ed.brz-ed--mobile .brz-ls-im-8_5{letter-spacing:8.5px}.brz-ed.brz-ed--mobile .brz-ls-im-9{letter-spacing:9px}.brz-ed.brz-ed--mobile .brz-ls-im-9_5{letter-spacing:9.5px}.brz-ed.brz-ed--mobile .brz-ls-im-10{letter-spacing:10px}.brz-ed.brz-ed--mobile .brz-ls-im-10_5{letter-spacing:10.5px}.brz-ed.brz-ed--mobile .brz-ls-im-11{letter-spacing:11px}.brz-ed.brz-ed--mobile .brz-ls-im-11_5{letter-spacing:11.5px}.brz-ed.brz-ed--mobile .brz-ls-im-12{letter-spacing:12px}.brz-ed.brz-ed--mobile .brz-ls-im-12_5{letter-spacing:12.5px}.brz-ed.brz-ed--mobile .brz-ls-im-13{letter-spacing:13px}.brz-ed.brz-ed--mobile .brz-ls-im-13_5{letter-spacing:13.5px}.brz-ed.brz-ed--mobile .brz-ls-im-14{letter-spacing:14px}.brz-ed.brz-ed--mobile .brz-ls-im-14_5{letter-spacing:14.5px}.brz-ed.brz-ed--mobile .brz-ls-im-15{letter-spacing:15px}.brz-ed.brz-ed--mobile .brz-ls-im-15_5{letter-spacing:15.5px}.brz-ed.brz-ed--mobile .brz-ls-xs-m_5{letter-spacing:-5px}.brz-ed.brz-ed--mobile .brz-ls-xs-m_5_5{letter-spacing:-5.5px}.brz-ed.brz-ed--mobile .brz-ls-xs-m_4{letter-spacing:-4px}.brz-ed.brz-ed--mobile .brz-ls-xs-m_4_5{letter-spacing:-4.5px}.brz-ed.brz-ed--mobile .brz-ls-xs-m_3{letter-spacing:-3px}.brz-ed.brz-ed--mobile .brz-ls-xs-m_3_5{letter-spacing:-3.5px}.brz-ed.brz-ed--mobile .brz-ls-xs-m_2{letter-spacing:-2px}.brz-ed.brz-ed--mobile .brz-ls-xs-m_2_5{letter-spacing:-2.5px}.brz-ed.brz-ed--mobile .brz-ls-xs-m_1{letter-spacing:-1px}.brz-ed.brz-ed--mobile .brz-ls-xs-m_1_5{letter-spacing:-1.5px}.brz-ed.brz-ed--mobile .brz-ls-xs-m_0{letter-spacing:0}.brz-ed.brz-ed--mobile .brz-ls-xs-m_0_5{letter-spacing:-.5px}.brz-ed.brz-ed--mobile .brz-ls-xs-0{letter-spacing:0}.brz-ed.brz-ed--mobile .brz-ls-xs-0_5{letter-spacing:.5px}.brz-ed.brz-ed--mobile .brz-ls-xs-1{letter-spacing:1px}.brz-ed.brz-ed--mobile .brz-ls-xs-1_5{letter-spacing:1.5px}.brz-ed.brz-ed--mobile .brz-ls-xs-2{letter-spacing:2px}.brz-ed.brz-ed--mobile .brz-ls-xs-2_5{letter-spacing:2.5px}.brz-ed.brz-ed--mobile .brz-ls-xs-3{letter-spacing:3px}.brz-ed.brz-ed--mobile .brz-ls-xs-3_5{letter-spacing:3.5px}.brz-ed.brz-ed--mobile .brz-ls-xs-4{letter-spacing:4px}.brz-ed.brz-ed--mobile .brz-ls-xs-4_5{letter-spacing:4.5px}.brz-ed.brz-ed--mobile .brz-ls-xs-5{letter-spacing:5px}.brz-ed.brz-ed--mobile .brz-ls-xs-5_5{letter-spacing:5.5px}.brz-ed.brz-ed--mobile .brz-ls-xs-6{letter-spacing:6px}.brz-ed.brz-ed--mobile .brz-ls-xs-6_5{letter-spacing:6.5px}.brz-ed.brz-ed--mobile .brz-ls-xs-7{letter-spacing:7px}.brz-ed.brz-ed--mobile .brz-ls-xs-7_5{letter-spacing:7.5px}.brz-ed.brz-ed--mobile .brz-ls-xs-8{letter-spacing:8px}.brz-ed.brz-ed--mobile .brz-ls-xs-8_5{letter-spacing:8.5px}.brz-ed.brz-ed--mobile .brz-ls-xs-9{letter-spacing:9px}.brz-ed.brz-ed--mobile .brz-ls-xs-9_5{letter-spacing:9.5px}.brz-ed.brz-ed--mobile .brz-ls-xs-10{letter-spacing:10px}.brz-ed.brz-ed--mobile .brz-ls-xs-10_5{letter-spacing:10.5px}.brz-ed.brz-ed--mobile .brz-ls-xs-11{letter-spacing:11px}.brz-ed.brz-ed--mobile .brz-ls-xs-11_5{letter-spacing:11.5px}.brz-ed.brz-ed--mobile .brz-ls-xs-12{letter-spacing:12px}.brz-ed.brz-ed--mobile .brz-ls-xs-12_5{letter-spacing:12.5px}.brz-ed.brz-ed--mobile .brz-ls-xs-13{letter-spacing:13px}.brz-ed.brz-ed--mobile .brz-ls-xs-13_5{letter-spacing:13.5px}.brz-ed.brz-ed--mobile .brz-ls-xs-14{letter-spacing:14px}.brz-ed.brz-ed--mobile .brz-ls-xs-14_5{letter-spacing:14.5px}.brz-ed.brz-ed--mobile .brz-ls-xs-15{letter-spacing:15px}.brz-ed.brz-ed--mobile .brz-ls-xs-15_5{letter-spacing:15.5px}.brz-ed .brz-mt-lg-0{margin-top:0!important}.brz-ed .brz-mt-lg-1{margin-top:1px!important}.brz-ed .brz-mt-lg-2{margin-top:2px!important}.brz-ed .brz-mt-lg-3{margin-top:3px!important}.brz-ed .brz-mt-lg-4{margin-top:4px!important}.brz-ed .brz-mt-lg-5{margin-top:5px!important}.brz-ed .brz-mt-lg-6{margin-top:6px!important}.brz-ed .brz-mt-lg-7{margin-top:7px!important}.brz-ed .brz-mt-lg-8{margin-top:8px!important}.brz-ed .brz-mt-lg-9{margin-top:9px!important}.brz-ed .brz-mt-lg-10{margin-top:10px!important}.brz-ed .brz-mt-lg-11{margin-top:11px!important}.brz-ed .brz-mt-lg-12{margin-top:12px!important}.brz-ed .brz-mt-lg-13{margin-top:13px!important}.brz-ed .brz-mt-lg-14{margin-top:14px!important}.brz-ed .brz-mt-lg-15{margin-top:15px!important}.brz-ed .brz-mt-lg-16{margin-top:16px!important}.brz-ed .brz-mt-lg-17{margin-top:17px!important}.brz-ed .brz-mt-lg-18{margin-top:18px!important}.brz-ed .brz-mt-lg-19{margin-top:19px!important}.brz-ed .brz-mt-lg-20{margin-top:20px!important}.brz-ed .brz-mt-lg-21{margin-top:21px!important}.brz-ed .brz-mt-lg-22{margin-top:22px!important}.brz-ed .brz-mt-lg-23{margin-top:23px!important}.brz-ed .brz-mt-lg-24{margin-top:24px!important}.brz-ed .brz-mt-lg-25{margin-top:25px!important}.brz-ed .brz-mt-lg-26{margin-top:26px!important}.brz-ed .brz-mt-lg-27{margin-top:27px!important}.brz-ed .brz-mt-lg-28{margin-top:28px!important}.brz-ed .brz-mt-lg-29{margin-top:29px!important}.brz-ed .brz-mt-lg-30{margin-top:30px!important}.brz-ed .brz-mt-lg-31{margin-top:31px!important}.brz-ed .brz-mt-lg-32{margin-top:32px!important}.brz-ed .brz-mt-lg-33{margin-top:33px!important}.brz-ed .brz-mt-lg-34{margin-top:34px!important}.brz-ed .brz-mt-lg-35{margin-top:35px!important}.brz-ed .brz-mt-lg-36{margin-top:36px!important}.brz-ed .brz-mt-lg-37{margin-top:37px!important}.brz-ed .brz-mt-lg-38{margin-top:38px!important}.brz-ed .brz-mt-lg-39{margin-top:39px!important}.brz-ed .brz-mt-lg-40{margin-top:40px!important}.brz-ed .brz-mt-lg-41{margin-top:41px!important}.brz-ed .brz-mt-lg-42{margin-top:42px!important}.brz-ed .brz-mt-lg-43{margin-top:43px!important}.brz-ed .brz-mt-lg-44{margin-top:44px!important}.brz-ed .brz-mt-lg-45{margin-top:45px!important}.brz-ed .brz-mt-lg-46{margin-top:46px!important}.brz-ed .brz-mt-lg-47{margin-top:47px!important}.brz-ed .brz-mt-lg-48{margin-top:48px!important}.brz-ed .brz-mt-lg-49{margin-top:49px!important}.brz-ed .brz-mt-lg-50{margin-top:50px!important}.brz-ed .brz-mt-lg-51{margin-top:51px!important}.brz-ed .brz-mt-lg-52{margin-top:52px!important}.brz-ed .brz-mt-lg-53{margin-top:53px!important}.brz-ed .brz-mt-lg-54{margin-top:54px!important}.brz-ed .brz-mt-lg-55{margin-top:55px!important}.brz-ed .brz-mt-lg-56{margin-top:56px!important}.brz-ed .brz-mt-lg-57{margin-top:57px!important}.brz-ed .brz-mt-lg-58{margin-top:58px!important}.brz-ed .brz-mt-lg-59{margin-top:59px!important}.brz-ed .brz-mt-lg-60{margin-top:60px!important}.brz-ed .brz-mt-lg-61{margin-top:61px!important}.brz-ed .brz-mt-lg-62{margin-top:62px!important}.brz-ed .brz-mt-lg-63{margin-top:63px!important}.brz-ed .brz-mt-lg-64{margin-top:64px!important}.brz-ed .brz-mt-lg-65{margin-top:65px!important}.brz-ed .brz-mt-lg-66{margin-top:66px!important}.brz-ed .brz-mt-lg-67{margin-top:67px!important}.brz-ed .brz-mt-lg-68{margin-top:68px!important}.brz-ed .brz-mt-lg-69{margin-top:69px!important}.brz-ed .brz-mt-lg-70{margin-top:70px!important}.brz-ed .brz-mt-lg-71{margin-top:71px!important}.brz-ed .brz-mt-lg-72{margin-top:72px!important}.brz-ed .brz-mt-lg-73{margin-top:73px!important}.brz-ed .brz-mt-lg-74{margin-top:74px!important}.brz-ed .brz-mt-lg-75{margin-top:75px!important}.brz-ed .brz-mt-lg-76{margin-top:76px!important}.brz-ed .brz-mt-lg-77{margin-top:77px!important}.brz-ed .brz-mt-lg-78{margin-top:78px!important}.brz-ed .brz-mt-lg-79{margin-top:79px!important}.brz-ed .brz-mt-lg-80{margin-top:80px!important}.brz-ed .brz-mt-lg-81{margin-top:81px!important}.brz-ed .brz-mt-lg-82{margin-top:82px!important}.brz-ed .brz-mt-lg-83{margin-top:83px!important}.brz-ed .brz-mt-lg-84{margin-top:84px!important}.brz-ed .brz-mt-lg-85{margin-top:85px!important}.brz-ed .brz-mt-lg-86{margin-top:86px!important}.brz-ed .brz-mt-lg-87{margin-top:87px!important}.brz-ed .brz-mt-lg-88{margin-top:88px!important}.brz-ed .brz-mt-lg-89{margin-top:89px!important}.brz-ed .brz-mt-lg-90{margin-top:90px!important}.brz-ed .brz-mt-lg-91{margin-top:91px!important}.brz-ed .brz-mt-lg-92{margin-top:92px!important}.brz-ed .brz-mt-lg-93{margin-top:93px!important}.brz-ed .brz-mt-lg-94{margin-top:94px!important}.brz-ed .brz-mt-lg-95{margin-top:95px!important}.brz-ed .brz-mt-lg-96{margin-top:96px!important}.brz-ed .brz-mt-lg-97{margin-top:97px!important}.brz-ed .brz-mt-lg-98{margin-top:98px!important}.brz-ed .brz-mt-lg-99{margin-top:99px!important}.brz-ed .brz-mt-lg-100{margin-top:100px!important}.brz-ed .brz-mb-lg-0{margin-bottom:0!important}.brz-ed .brz-mb-lg-1{margin-bottom:1px!important}.brz-ed .brz-mb-lg-2{margin-bottom:2px!important}.brz-ed .brz-mb-lg-3{margin-bottom:3px!important}.brz-ed .brz-mb-lg-4{margin-bottom:4px!important}.brz-ed .brz-mb-lg-5{margin-bottom:5px!important}.brz-ed .brz-mb-lg-6{margin-bottom:6px!important}.brz-ed .brz-mb-lg-7{margin-bottom:7px!important}.brz-ed .brz-mb-lg-8{margin-bottom:8px!important}.brz-ed .brz-mb-lg-9{margin-bottom:9px!important}.brz-ed .brz-mb-lg-10{margin-bottom:10px!important}.brz-ed .brz-mb-lg-11{margin-bottom:11px!important}.brz-ed .brz-mb-lg-12{margin-bottom:12px!important}.brz-ed .brz-mb-lg-13{margin-bottom:13px!important}.brz-ed .brz-mb-lg-14{margin-bottom:14px!important}.brz-ed .brz-mb-lg-15{margin-bottom:15px!important}.brz-ed .brz-mb-lg-16{margin-bottom:16px!important}.brz-ed .brz-mb-lg-17{margin-bottom:17px!important}.brz-ed .brz-mb-lg-18{margin-bottom:18px!important}.brz-ed .brz-mb-lg-19{margin-bottom:19px!important}.brz-ed .brz-mb-lg-20{margin-bottom:20px!important}.brz-ed .brz-mb-lg-21{margin-bottom:21px!important}.brz-ed .brz-mb-lg-22{margin-bottom:22px!important}.brz-ed .brz-mb-lg-23{margin-bottom:23px!important}.brz-ed .brz-mb-lg-24{margin-bottom:24px!important}.brz-ed .brz-mb-lg-25{margin-bottom:25px!important}.brz-ed .brz-mb-lg-26{margin-bottom:26px!important}.brz-ed .brz-mb-lg-27{margin-bottom:27px!important}.brz-ed .brz-mb-lg-28{margin-bottom:28px!important}.brz-ed .brz-mb-lg-29{margin-bottom:29px!important}.brz-ed .brz-mb-lg-30{margin-bottom:30px!important}.brz-ed .brz-mb-lg-31{margin-bottom:31px!important}.brz-ed .brz-mb-lg-32{margin-bottom:32px!important}.brz-ed .brz-mb-lg-33{margin-bottom:33px!important}.brz-ed .brz-mb-lg-34{margin-bottom:34px!important}.brz-ed .brz-mb-lg-35{margin-bottom:35px!important}.brz-ed .brz-mb-lg-36{margin-bottom:36px!important}.brz-ed .brz-mb-lg-37{margin-bottom:37px!important}.brz-ed .brz-mb-lg-38{margin-bottom:38px!important}.brz-ed .brz-mb-lg-39{margin-bottom:39px!important}.brz-ed .brz-mb-lg-40{margin-bottom:40px!important}.brz-ed .brz-mb-lg-41{margin-bottom:41px!important}.brz-ed .brz-mb-lg-42{margin-bottom:42px!important}.brz-ed .brz-mb-lg-43{margin-bottom:43px!important}.brz-ed .brz-mb-lg-44{margin-bottom:44px!important}.brz-ed .brz-mb-lg-45{margin-bottom:45px!important}.brz-ed .brz-mb-lg-46{margin-bottom:46px!important}.brz-ed .brz-mb-lg-47{margin-bottom:47px!important}.brz-ed .brz-mb-lg-48{margin-bottom:48px!important}.brz-ed .brz-mb-lg-49{margin-bottom:49px!important}.brz-ed .brz-mb-lg-50{margin-bottom:50px!important}.brz-ed .brz-mb-lg-51{margin-bottom:51px!important}.brz-ed .brz-mb-lg-52{margin-bottom:52px!important}.brz-ed .brz-mb-lg-53{margin-bottom:53px!important}.brz-ed .brz-mb-lg-54{margin-bottom:54px!important}.brz-ed .brz-mb-lg-55{margin-bottom:55px!important}.brz-ed .brz-mb-lg-56{margin-bottom:56px!important}.brz-ed .brz-mb-lg-57{margin-bottom:57px!important}.brz-ed .brz-mb-lg-58{margin-bottom:58px!important}.brz-ed .brz-mb-lg-59{margin-bottom:59px!important}.brz-ed .brz-mb-lg-60{margin-bottom:60px!important}.brz-ed .brz-mb-lg-61{margin-bottom:61px!important}.brz-ed .brz-mb-lg-62{margin-bottom:62px!important}.brz-ed .brz-mb-lg-63{margin-bottom:63px!important}.brz-ed .brz-mb-lg-64{margin-bottom:64px!important}.brz-ed .brz-mb-lg-65{margin-bottom:65px!important}.brz-ed .brz-mb-lg-66{margin-bottom:66px!important}.brz-ed .brz-mb-lg-67{margin-bottom:67px!important}.brz-ed .brz-mb-lg-68{margin-bottom:68px!important}.brz-ed .brz-mb-lg-69{margin-bottom:69px!important}.brz-ed .brz-mb-lg-70{margin-bottom:70px!important}.brz-ed .brz-mb-lg-71{margin-bottom:71px!important}.brz-ed .brz-mb-lg-72{margin-bottom:72px!important}.brz-ed .brz-mb-lg-73{margin-bottom:73px!important}.brz-ed .brz-mb-lg-74{margin-bottom:74px!important}.brz-ed .brz-mb-lg-75{margin-bottom:75px!important}.brz-ed .brz-mb-lg-76{margin-bottom:76px!important}.brz-ed .brz-mb-lg-77{margin-bottom:77px!important}.brz-ed .brz-mb-lg-78{margin-bottom:78px!important}.brz-ed .brz-mb-lg-79{margin-bottom:79px!important}.brz-ed .brz-mb-lg-80{margin-bottom:80px!important}.brz-ed .brz-mb-lg-81{margin-bottom:81px!important}.brz-ed .brz-mb-lg-82{margin-bottom:82px!important}.brz-ed .brz-mb-lg-83{margin-bottom:83px!important}.brz-ed .brz-mb-lg-84{margin-bottom:84px!important}.brz-ed .brz-mb-lg-85{margin-bottom:85px!important}.brz-ed .brz-mb-lg-86{margin-bottom:86px!important}.brz-ed .brz-mb-lg-87{margin-bottom:87px!important}.brz-ed .brz-mb-lg-88{margin-bottom:88px!important}.brz-ed .brz-mb-lg-89{margin-bottom:89px!important}.brz-ed .brz-mb-lg-90{margin-bottom:90px!important}.brz-ed .brz-mb-lg-91{margin-bottom:91px!important}.brz-ed .brz-mb-lg-92{margin-bottom:92px!important}.brz-ed .brz-mb-lg-93{margin-bottom:93px!important}.brz-ed .brz-mb-lg-94{margin-bottom:94px!important}.brz-ed .brz-mb-lg-95{margin-bottom:95px!important}.brz-ed .brz-mb-lg-96{margin-bottom:96px!important}.brz-ed .brz-mb-lg-97{margin-bottom:97px!important}.brz-ed .brz-mb-lg-98{margin-bottom:98px!important}.brz-ed .brz-mb-lg-99{margin-bottom:99px!important}.brz-ed .brz-mb-lg-100{margin-bottom:100px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-0{margin-top:0!important}.brz-ed.brz-ed--desktop .brz-mt-lg-1{margin-top:1px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-2{margin-top:2px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-3{margin-top:3px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-4{margin-top:4px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-5{margin-top:5px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-6{margin-top:6px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-7{margin-top:7px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-8{margin-top:8px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-9{margin-top:9px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-10{margin-top:10px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-11{margin-top:11px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-12{margin-top:12px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-13{margin-top:13px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-14{margin-top:14px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-15{margin-top:15px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-16{margin-top:16px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-17{margin-top:17px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-18{margin-top:18px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-19{margin-top:19px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-20{margin-top:20px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-21{margin-top:21px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-22{margin-top:22px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-23{margin-top:23px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-24{margin-top:24px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-25{margin-top:25px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-26{margin-top:26px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-27{margin-top:27px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-28{margin-top:28px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-29{margin-top:29px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-30{margin-top:30px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-31{margin-top:31px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-32{margin-top:32px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-33{margin-top:33px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-34{margin-top:34px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-35{margin-top:35px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-36{margin-top:36px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-37{margin-top:37px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-38{margin-top:38px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-39{margin-top:39px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-40{margin-top:40px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-41{margin-top:41px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-42{margin-top:42px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-43{margin-top:43px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-44{margin-top:44px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-45{margin-top:45px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-46{margin-top:46px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-47{margin-top:47px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-48{margin-top:48px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-49{margin-top:49px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-50{margin-top:50px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-51{margin-top:51px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-52{margin-top:52px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-53{margin-top:53px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-54{margin-top:54px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-55{margin-top:55px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-56{margin-top:56px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-57{margin-top:57px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-58{margin-top:58px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-59{margin-top:59px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-60{margin-top:60px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-61{margin-top:61px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-62{margin-top:62px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-63{margin-top:63px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-64{margin-top:64px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-65{margin-top:65px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-66{margin-top:66px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-67{margin-top:67px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-68{margin-top:68px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-69{margin-top:69px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-70{margin-top:70px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-71{margin-top:71px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-72{margin-top:72px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-73{margin-top:73px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-74{margin-top:74px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-75{margin-top:75px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-76{margin-top:76px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-77{margin-top:77px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-78{margin-top:78px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-79{margin-top:79px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-80{margin-top:80px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-81{margin-top:81px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-82{margin-top:82px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-83{margin-top:83px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-84{margin-top:84px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-85{margin-top:85px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-86{margin-top:86px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-87{margin-top:87px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-88{margin-top:88px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-89{margin-top:89px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-90{margin-top:90px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-91{margin-top:91px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-92{margin-top:92px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-93{margin-top:93px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-94{margin-top:94px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-95{margin-top:95px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-96{margin-top:96px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-97{margin-top:97px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-98{margin-top:98px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-99{margin-top:99px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-100{margin-top:100px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-0{margin-bottom:0!important}.brz-ed.brz-ed--desktop .brz-mb-lg-1{margin-bottom:1px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-2{margin-bottom:2px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-3{margin-bottom:3px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-4{margin-bottom:4px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-5{margin-bottom:5px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-6{margin-bottom:6px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-7{margin-bottom:7px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-8{margin-bottom:8px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-9{margin-bottom:9px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-10{margin-bottom:10px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-11{margin-bottom:11px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-12{margin-bottom:12px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-13{margin-bottom:13px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-14{margin-bottom:14px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-15{margin-bottom:15px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-16{margin-bottom:16px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-17{margin-bottom:17px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-18{margin-bottom:18px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-19{margin-bottom:19px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-20{margin-bottom:20px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-21{margin-bottom:21px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-22{margin-bottom:22px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-23{margin-bottom:23px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-24{margin-bottom:24px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-25{margin-bottom:25px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-26{margin-bottom:26px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-27{margin-bottom:27px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-28{margin-bottom:28px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-29{margin-bottom:29px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-30{margin-bottom:30px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-31{margin-bottom:31px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-32{margin-bottom:32px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-33{margin-bottom:33px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-34{margin-bottom:34px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-35{margin-bottom:35px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-36{margin-bottom:36px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-37{margin-bottom:37px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-38{margin-bottom:38px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-39{margin-bottom:39px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-40{margin-bottom:40px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-41{margin-bottom:41px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-42{margin-bottom:42px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-43{margin-bottom:43px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-44{margin-bottom:44px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-45{margin-bottom:45px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-46{margin-bottom:46px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-47{margin-bottom:47px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-48{margin-bottom:48px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-49{margin-bottom:49px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-50{margin-bottom:50px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-51{margin-bottom:51px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-52{margin-bottom:52px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-53{margin-bottom:53px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-54{margin-bottom:54px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-55{margin-bottom:55px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-56{margin-bottom:56px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-57{margin-bottom:57px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-58{margin-bottom:58px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-59{margin-bottom:59px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-60{margin-bottom:60px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-61{margin-bottom:61px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-62{margin-bottom:62px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-63{margin-bottom:63px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-64{margin-bottom:64px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-65{margin-bottom:65px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-66{margin-bottom:66px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-67{margin-bottom:67px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-68{margin-bottom:68px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-69{margin-bottom:69px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-70{margin-bottom:70px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-71{margin-bottom:71px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-72{margin-bottom:72px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-73{margin-bottom:73px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-74{margin-bottom:74px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-75{margin-bottom:75px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-76{margin-bottom:76px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-77{margin-bottom:77px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-78{margin-bottom:78px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-79{margin-bottom:79px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-80{margin-bottom:80px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-81{margin-bottom:81px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-82{margin-bottom:82px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-83{margin-bottom:83px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-84{margin-bottom:84px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-85{margin-bottom:85px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-86{margin-bottom:86px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-87{margin-bottom:87px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-88{margin-bottom:88px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-89{margin-bottom:89px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-90{margin-bottom:90px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-91{margin-bottom:91px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-92{margin-bottom:92px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-93{margin-bottom:93px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-94{margin-bottom:94px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-95{margin-bottom:95px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-96{margin-bottom:96px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-97{margin-bottom:97px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-98{margin-bottom:98px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-99{margin-bottom:99px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-100{margin-bottom:100px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-0{margin-top:0!important}.brz-ed.brz-ed--mobile .brz-mt-xs-1{margin-top:1px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-2{margin-top:2px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-3{margin-top:3px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-4{margin-top:4px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-5{margin-top:5px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-6{margin-top:6px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-7{margin-top:7px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-8{margin-top:8px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-9{margin-top:9px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-10{margin-top:10px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-11{margin-top:11px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-12{margin-top:12px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-13{margin-top:13px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-14{margin-top:14px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-15{margin-top:15px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-16{margin-top:16px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-17{margin-top:17px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-18{margin-top:18px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-19{margin-top:19px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-20{margin-top:20px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-21{margin-top:21px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-22{margin-top:22px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-23{margin-top:23px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-24{margin-top:24px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-25{margin-top:25px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-26{margin-top:26px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-27{margin-top:27px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-28{margin-top:28px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-29{margin-top:29px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-30{margin-top:30px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-31{margin-top:31px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-32{margin-top:32px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-33{margin-top:33px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-34{margin-top:34px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-35{margin-top:35px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-36{margin-top:36px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-37{margin-top:37px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-38{margin-top:38px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-39{margin-top:39px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-40{margin-top:40px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-41{margin-top:41px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-42{margin-top:42px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-43{margin-top:43px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-44{margin-top:44px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-45{margin-top:45px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-46{margin-top:46px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-47{margin-top:47px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-48{margin-top:48px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-49{margin-top:49px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-50{margin-top:50px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-51{margin-top:51px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-52{margin-top:52px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-53{margin-top:53px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-54{margin-top:54px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-55{margin-top:55px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-56{margin-top:56px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-57{margin-top:57px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-58{margin-top:58px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-59{margin-top:59px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-60{margin-top:60px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-61{margin-top:61px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-62{margin-top:62px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-63{margin-top:63px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-64{margin-top:64px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-65{margin-top:65px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-66{margin-top:66px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-67{margin-top:67px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-68{margin-top:68px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-69{margin-top:69px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-70{margin-top:70px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-71{margin-top:71px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-72{margin-top:72px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-73{margin-top:73px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-74{margin-top:74px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-75{margin-top:75px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-76{margin-top:76px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-77{margin-top:77px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-78{margin-top:78px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-79{margin-top:79px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-80{margin-top:80px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-81{margin-top:81px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-82{margin-top:82px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-83{margin-top:83px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-84{margin-top:84px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-85{margin-top:85px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-86{margin-top:86px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-87{margin-top:87px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-88{margin-top:88px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-89{margin-top:89px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-90{margin-top:90px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-91{margin-top:91px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-92{margin-top:92px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-93{margin-top:93px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-94{margin-top:94px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-95{margin-top:95px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-96{margin-top:96px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-97{margin-top:97px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-98{margin-top:98px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-99{margin-top:99px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-100{margin-top:100px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-0{margin-bottom:0!important}.brz-ed.brz-ed--mobile .brz-mb-xs-1{margin-bottom:1px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-2{margin-bottom:2px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-3{margin-bottom:3px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-4{margin-bottom:4px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-5{margin-bottom:5px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-6{margin-bottom:6px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-7{margin-bottom:7px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-8{margin-bottom:8px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-9{margin-bottom:9px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-10{margin-bottom:10px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-11{margin-bottom:11px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-12{margin-bottom:12px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-13{margin-bottom:13px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-14{margin-bottom:14px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-15{margin-bottom:15px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-16{margin-bottom:16px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-17{margin-bottom:17px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-18{margin-bottom:18px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-19{margin-bottom:19px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-20{margin-bottom:20px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-21{margin-bottom:21px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-22{margin-bottom:22px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-23{margin-bottom:23px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-24{margin-bottom:24px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-25{margin-bottom:25px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-26{margin-bottom:26px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-27{margin-bottom:27px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-28{margin-bottom:28px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-29{margin-bottom:29px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-30{margin-bottom:30px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-31{margin-bottom:31px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-32{margin-bottom:32px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-33{margin-bottom:33px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-34{margin-bottom:34px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-35{margin-bottom:35px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-36{margin-bottom:36px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-37{margin-bottom:37px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-38{margin-bottom:38px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-39{margin-bottom:39px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-40{margin-bottom:40px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-41{margin-bottom:41px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-42{margin-bottom:42px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-43{margin-bottom:43px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-44{margin-bottom:44px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-45{margin-bottom:45px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-46{margin-bottom:46px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-47{margin-bottom:47px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-48{margin-bottom:48px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-49{margin-bottom:49px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-50{margin-bottom:50px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-51{margin-bottom:51px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-52{margin-bottom:52px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-53{margin-bottom:53px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-54{margin-bottom:54px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-55{margin-bottom:55px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-56{margin-bottom:56px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-57{margin-bottom:57px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-58{margin-bottom:58px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-59{margin-bottom:59px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-60{margin-bottom:60px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-61{margin-bottom:61px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-62{margin-bottom:62px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-63{margin-bottom:63px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-64{margin-bottom:64px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-65{margin-bottom:65px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-66{margin-bottom:66px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-67{margin-bottom:67px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-68{margin-bottom:68px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-69{margin-bottom:69px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-70{margin-bottom:70px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-71{margin-bottom:71px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-72{margin-bottom:72px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-73{margin-bottom:73px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-74{margin-bottom:74px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-75{margin-bottom:75px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-76{margin-bottom:76px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-77{margin-bottom:77px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-78{margin-bottom:78px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-79{margin-bottom:79px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-80{margin-bottom:80px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-81{margin-bottom:81px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-82{margin-bottom:82px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-83{margin-bottom:83px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-84{margin-bottom:84px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-85{margin-bottom:85px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-86{margin-bottom:86px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-87{margin-bottom:87px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-88{margin-bottom:88px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-89{margin-bottom:89px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-90{margin-bottom:90px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-91{margin-bottom:91px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-92{margin-bottom:92px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-93{margin-bottom:93px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-94{margin-bottom:94px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-95{margin-bottom:95px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-96{margin-bottom:96px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-97{margin-bottom:97px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-98{margin-bottom:98px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-99{margin-bottom:99px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-100{margin-bottom:100px!important}.brz-ed .brz-text-lg-left{text-align:left!important;-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.brz-ed .brz-text-lg-right{text-align:right!important;-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.brz-ed .brz-text-lg-center{text-align:center!important;-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.brz-ed.brz-ed--desktop .brz-text-lg-left{text-align:left!important;-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.brz-ed.brz-ed--desktop .brz-text-lg-right{text-align:right!important;-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.brz-ed.brz-ed--desktop .brz-text-lg-center{text-align:center!important;-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.brz-ed.brz-ed--mobile .brz-text-xs-left{text-align:left!important;-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.brz-ed.brz-ed--mobile .brz-text-xs-right{text-align:right!important;-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.brz-ed.brz-ed--mobile .brz-text-xs-center{text-align:center!important;-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.brz-ed .brz-ed-arrow{position:absolute;top:-6px;height:12px;left:50%;margin-left:-6px}.brz-ed .brz-ed-arrow:after{content:"";display:block;position:absolute;bottom:6px;border-bottom:6px solid rgba(3,8,15,.92);border-left:6px solid transparent;border-right:6px solid transparent}.brz-ed .brz-ed-arrow--top-center,.brz-ed .brz-ed-arrow--top-left,.brz-ed .brz-ed-arrow--top-right{top:auto;bottom:-6px}.brz-ed .brz-ed-arrow--top-center:after,.brz-ed .brz-ed-arrow--top-left:after,.brz-ed .brz-ed-arrow--top-right:after{border-top:6px solid rgba(3,8,15,.92);border-bottom:6px solid transparent;bottom:-6px}.brz-ed .brz-icon-svg{display:inline-block;width:1em;height:1em;position:relative;color:currentColor}.brz-ed .brz-icon-svg use{fill:inherit}.brz-ed .brz-icon-svg.grid-16{height:16px;width:16px}.brz-ed .brz-icon-svg.grid-24{height:24px;width:24px}.brz-ed .brz-icon-svg.glyph{fill:currentColor;stroke:none}.brz-ed .brz-icon-svg.outline{stroke:currentColor;fill:none}.brz-ed .brz-icon-svg.outline.stroke-2{stroke-width:2px}.brz-ed .brz-control__select{position:relative;width:112px}.brz-ed .brz-control__select .brz-ed-scroll-pane .brz-ed-tall-thumb{width:8px;background-color:transparent;border-radius:4px}.brz-ed .brz-control__select .brz-ed-scroll-pane .brz-ed-tall-thumb:after{content:"";display:block;position:absolute;left:3px;top:0;bottom:0;width:3px;min-height:3px;background-color:#7b7b7b;border-radius:2px}.brz-ed .brz-control__select .brz-ed-scroll-pane .brz-ed-wide-thumb{height:3px;background-color:#7b7b7b;border-radius:2px;top:3px}.brz-ed .brz-control__select--dark .brz-control__select-current,.brz-ed .brz-control__select--dark .brz-control__select-current:hover,.brz-ed .brz-control__select--dark .brz-control__select-options{background-color:#383e48}.brz-ed .brz-control__select .brz-ed-scroll-pane .brz-ed-tall-track{border-radius:0 4px 4px 0}.brz-ed .brz-control__select.opened .brz-control__select-options{visibility:visible;opacity:1}.brz-ed .brz-control__select .brz-ed-scroll-pane-content{border-right:none!important}.brz-ed .brz-control__select-current{line-height:30px;height:30px;border-radius:4px;overflow:hidden}.brz-ed .brz-control__select-current .brz-control__select-option{border-bottom-color:transparent!important;padding-right:20px;text-overflow:ellipsis;overflow:hidden}.brz-ed .brz-icon-svg.brz-control__select--arrow{position:absolute;top:50%;right:12px;margin-top:-.5em;font-size:8px}.brz-ed .brz-control__select-options{position:absolute;z-index:12;left:0;margin-top:3px;min-width:100%;border-radius:4px;-webkit-box-shadow:0 2px 13px 0 rgba(0,0,0,.1);box-shadow:0 2px 13px 0 rgba(0,0,0,.1);overflow:hidden;visibility:hidden;opacity:0}.brz-ed .brz-control__select-options .brz-control__select-option.active,.brz-ed .brz-control__select-options .brz-control__select-option:hover{-webkit-transition:color .15s linear;transition:color .15s linear;color:#3dbfe8}.brz-ed .brz-control__select--dark .brz-control__select-current,.brz-ed .brz-control__select--dark .brz-control__select-option{color:rgba(255,255,255,.85)}.brz-ed .brz-control__select-option{position:relative;cursor:pointer;padding-left:10px;padding-right:10px;font-size:13px;letter-spacing:.25px;border-bottom:1px solid rgba(255,255,255,.07);line-height:30px;height:30px;-webkit-transition:color .15s linear;transition:color .15s linear;white-space:nowrap}.brz-ed .brz-control__select-option:last-child{border-bottom-color:transparent!important}.brz-ed .brz-control__select--light .brz-control__select-current,.brz-ed .brz-control__select--light .brz-control__select-current:hover,.brz-ed .brz-control__select--light .brz-control__select-options{background-color:#f2f2f2}.brz-ed .brz-control__select--light .brz-control__select-current{color:#656b6f}.brz-ed .brz-control__select--light .brz-control__select-option{color:#656b6f;border-bottom-color:#e6e6e6}.brz-ed .brz-ed-popup-control__select--light .brz-control__select-current,.brz-ed .brz-ed-popup-control__select--light .brz-control__select-current .brz-control__select-option{color:#3dbfe8}.brz-ed .brz-control__select--small .brz-control__select{width:62px}.brz-ed .brz-control__select--medium .brz-control__select-current,.brz-ed .brz-control__select--medium .brz-control__select-option{line-height:37px;height:37px}.brz-ed .brz-control__select--medium .brz-control__select-option{font-size:14px;padding-left:15px;padding-right:15px}.brz-ed .brz-control__select--medium .brz-control__select--arrow{font-size:10px;right:14px}.brz-ed .brz-ed-popup-control__select--light .brz-control__select-current,.brz-ed .brz-ed-popup-control__select--light .brz-control__select-options{background-color:#fff}.brz-ed .brz-ed-popup-control__select--light .brz-control__select-current:hover{background-color:#fff}.brz-ed .brz-ed-popup-control__select--light .brz-control__select-option{color:#292e37}.brz-ed .brz-ed-popup-control-select-light{-webkit-box-shadow:0 0 10px -2px rgba(0,0,0,.2);box-shadow:0 0 10px -2px rgba(0,0,0,.2);border-radius:4px}.brz-ed .brz-ed-popup-control-select-light.opened .brz-control__select-current{border-bottom-left-radius:0;border-bottom-right-radius:0}.brz-ed .brz-ed-popup-control-select-light.opened .brz-control__select-current .brz-control__select-option{border-bottom:1px solid #f4f4f4!important}.brz-ed .brz-ed-popup-control-select-light.opened .brz-control__select-options{-webkit-box-shadow:0 5px 10px -2px rgba(0,0,0,.2);box-shadow:0 5px 10px -2px rgba(0,0,0,.2);border-radius:0 0 4px 4px}.brz-ed .brz-ed-popup-control-select-light.brz-control__select{width:300px}.brz-ed .brz-ed-popup-control-select-light .brz-control__select-current{background-color:#fff;height:40px;color:#3dbfe8;font-size:14px;font-weight:400}.brz-ed .brz-ed-popup-control-select-light .brz-control__select-current:after{border-style:solid;border-width:6px 4px 0;border-color:#3dbfe8 transparent}.brz-ed .brz-ed-popup-control-select-light .brz-control__select-current .brz-control__select-option{border-bottom:0;color:#3dbfe8}.brz-ed .brz-ed-popup-control-select-light .brz-control__select-current .brz-control__select-option:hover{background-color:#fff;color:#3dbfe8}.brz-ed .brz-ed-popup-control-select-light .brz-control__select-options{background-color:#fff;top:100%;border-top-left-radius:0;border-top-right-radius:0}.brz-ed .brz-ed-popup-control-select-light .brz-control__select-option{font-size:14px;height:40px;line-height:41px;padding-left:15px;padding-right:15px;letter-spacing:.1px;color:rgba(41,46,55,.8);border-bottom:0}.brz-ed .brz-ed-popup-control-select-light .brz-control__select-option:not(:first-child){border-top:1px solid #f4f4f4}.brz-ed .brz-ed-popup-control-select-light .brz-control__select-option.active,.brz-ed .brz-ed-popup-control-select-light .brz-control__select-option:hover{background-color:#fbfbfb;color:#292e37}.brz-ed .brz-ed-popup-control-select-light .brz-ed-scroll-pane .brz-ed-tall-thumb{width:5px;background-color:#d4d5d7;border-radius:2.5px}.brz-ed .brz-ed-popup-control-select-light .brz-ed-scroll-pane .brz-ed-tall-thumb:after{opacity:0}.brz-ed .brz-ed-popup-control-select-light .brz-ed-scroll-pane .brz-ed-tall-track{width:5px;right:4px}.brz-ed .brz-ed-control__switch-label{position:relative;display:inline-block;vertical-align:middle;width:50px;height:28px;border-radius:18px;cursor:pointer;margin:0;line-height:1}.brz-ed .brz-ed-control__switch-arrows{position:relative;display:block;height:inherit;font-size:18px;text-transform:uppercase;background:#383e48;border-radius:inherit;-webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,.38) inset;box-shadow:0 1px 1px 0 rgba(0,0,0,.38) inset}.brz-ed .brz-ed-control__switch--check,.brz-ed .brz-ed-control__switch--un-check{position:absolute;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);margin:0;-webkit-transition:inherit;transition:inherit;color:rgba(18,20,25,.7)}.brz-ed .brz-ed-control__switch--check{left:5px;opacity:0}.brz-ed .brz-ed-control__switch--un-check{right:5px}.brz-ed .brz-ed-control__slider .ui-slider-horizontal:after,.brz-ed .rc-slider-rail:after,.brz-ed .rc-slider-track:after{right:-9px}.brz-ed .brz-ed-control__switch--handle{width:20px;height:20px;position:absolute;top:50%;left:4px;-webkit-transform:translateY(-50%);transform:translateY(-50%);background-color:#fff;border-radius:50%;-webkit-box-shadow:0 0 10px 1px rgba(255,255,255,.35);box-shadow:0 0 10px 1px rgba(255,255,255,.35);-webkit-transition:left .15s ease-out;transition:left .15s ease-out}.brz-ed .brz-ed-control__switch--handle:after,.brz-ed .brz-ed-control__switch--handle:before{content:"";position:absolute;width:7px;border-top:1px solid #34beea;top:7px;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.brz-ed .brz-ed-control__switch--handle:before{top:10px}.brz-ed .brz-ed-control__switch--handle:after{height:7px;border-bottom:1px solid #34beea}.brz-ed .brz-ed-control__switch-input{position:absolute;top:0;left:0;opacity:0}.brz-ed .brz-ed-control__switch-input:checked~.brz-ed-control__switch-arrows{background:#3dbfe8}.brz-ed .brz-ed-control__switch-input:checked~.brz-ed-control__switch-arrows .brz-ed-control__switch--check{opacity:1}.brz-ed .brz-ed-control__switch-input:checked~.brz-ed-control__switch-arrows .brz-ed-control__switch--un-check{opacity:0}.brz-ed .brz-ed-control__switch-input:checked~.brz-ed-control__switch--handle{left:25px}.brz-ed .brz-ed-control__slider .brz-ed-control__slider--value{position:relative;cursor:pointer}.brz-ed .brz-ed-control__slider .ui-slider-vertical{width:4px;height:63px;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);border:none;cursor:pointer}.brz-ed .brz-ed-control__slider .ui-slider-vertical:after,.brz-ed .brz-ed-control__slider .ui-slider-vertical:before{content:"";position:absolute;left:0;display:block;width:4px;height:8px}.brz-ed .brz-ed-control__slider .ui-slider-vertical:before{bottom:-8px}.brz-ed .brz-ed-control__slider .ui-slider-vertical:after{top:-8px}.brz-ed .brz-ed-control__slider .ui-slider-horizontal{display:block;width:calc(100% - 18px);height:4px;background-color:#3dbfe8;border-radius:4px;max-width:100%;padding:0;top:0;left:9px}.brz-ed .brz-ed-control__slider .ui-slider-horizontal:after,.brz-ed .brz-ed-control__slider .ui-slider-horizontal:before{content:'';position:absolute;top:0;width:13px;height:4px;border-radius:4px;background-color:#3dbfe8}.brz-ed .brz-ed-control__slider .ui-slider-horizontal:before{left:-9px}.brz-ed .brz-ed-control__slider .ui-slider-horizontal .ui-slider-handle{top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);margin-left:-9px}.brz-ed .brz-ed-control__slider .ui-slider-horizontal .ui-slider-handle:after,.brz-ed .brz-ed-control__slider .ui-slider-horizontal .ui-slider-handle:before{left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.brz-ed .brz-ed-control__slider .ui-slider-horizontal .ui-slider-handle:after{top:6px}.brz-ed .brz-ed-control__slider .ui-slider-handle{position:absolute;display:block;outline:0;width:18px;height:18px;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);margin-bottom:-9px;cursor:pointer;background:#fff;border-radius:50%!important;-webkit-box-shadow:0 2px 2px rgba(0,0,0,.45);box-shadow:0 2px 2px rgba(0,0,0,.45);z-index:1}.brz-ed .brz-ed-control__slider .ui-slider-handle:after,.brz-ed .brz-ed-control__slider .ui-slider-handle:before{content:"";position:absolute;width:7px;border-top:1px solid #3dbfe8;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.brz-ed .brz-ed-control__slider .ui-slider-handle:after{height:7px;border-bottom:1px solid #3dbfe8}.brz-ed .brz-ed-control__slider .ui-state-default,.brz-ed .brz-ed-control__slider .ui-widget-content{border:0}.brz-ed .rc-slider{position:relative;height:14px;padding:5px 0;width:calc(100% - 18px);margin-left:9px;border-radius:4px;-ms-touch-action:none;touch-action:none;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-tap-highlight-color:transparent}.brz-ed .rc-slider *,.brz-ed .rc-slider-tooltip{-webkit-box-sizing:border-box;-webkit-tap-highlight-color:transparent}.brz-ed .rc-slider *{box-sizing:border-box}.brz-ed .rc-slider-rail{position:relative;display:block;width:100%;height:4px;background-color:#3dbfe8;border-radius:4px}.brz-ed .rc-slider-rail:after,.brz-ed .rc-slider-rail:before{content:'';position:absolute;top:0;width:13px;height:4px;border-radius:4px;background-color:#3dbfe8}.brz-ed .rc-slider-rail:before{left:-9px}.brz-ed .rc-slider-track{position:absolute;left:0;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);width:100%;height:4px;background-color:#3dbfe8;border-radius:4px}.brz-ed .rc-slider-track:after,.brz-ed .rc-slider-track:before{content:'';position:absolute;top:0;width:13px;height:4px;border-radius:4px;background-color:#3dbfe8}.brz-ed .rc-slider-track:before{left:-9px}.brz-ed .rc-slider-handle{position:absolute;display:inline-block;outline:0;top:50%;width:18px;height:18px;left:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);margin-left:-9px;cursor:pointer;background:#fff;border-radius:50%;-webkit-box-shadow:0 2px 2px rgba(0,0,0,.45);box-shadow:0 2px 2px rgba(0,0,0,.45);z-index:1}.brz-ed .rc-slider-handle:after,.brz-ed .rc-slider-handle:before{content:"";position:absolute;width:7px;border-top:1px solid #3dbfe8;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.brz-ed .rc-slider-handle:before{top:6px}.brz-ed .rc-slider-handle:after{height:4px;border-bottom:1px solid #3dbfe8;top:9px}.brz-ed .rc-slider-handle:hover{border-color:#57c5f7}.brz-ed .rc-slider-handle:active{border-color:#57c5f7;-webkit-box-shadow:0 0 5px #57c5f7;box-shadow:0 0 5px #57c5f7;cursor:-webkit-grabbing;cursor:grabbing}.brz-ed .rc-slider-dot,.brz-ed .rc-slider-mark-text{cursor:pointer;position:absolute;vertical-align:middle}.brz-ed .rc-slider-handle:focus{border-color:#57c5f7;-webkit-box-shadow:0 0 0 5px #96dbfa;box-shadow:0 0 0 5px #96dbfa;outline:0}.brz-ed .rc-slider-mark{position:absolute;top:18px;left:0;width:100%;font-size:12px}.brz-ed .rc-slider-mark-text{display:inline-block;text-align:center;color:#999}.brz-ed .rc-slider-mark-text-active{color:#666}.brz-ed .rc-slider-step{position:absolute;width:100%;height:4px;background:0 0}.brz-ed .rc-slider-dot{bottom:-2px;margin-left:-4px;width:8px;height:8px;border:2px solid #e9e9e9;background-color:#fff;border-radius:50%}.brz-ed .rc-slider-dot-active{border-color:#96dbfa}.brz-ed .rc-slider-disabled{background-color:#e9e9e9}.brz-ed .rc-slider-disabled .rc-slider-track{background-color:#ccc}.brz-ed .rc-slider-disabled .rc-slider-dot,.brz-ed .rc-slider-disabled .rc-slider-handle{border-color:#ccc;-webkit-box-shadow:none;box-shadow:none;background-color:#fff;cursor:not-allowed}.brz-ed .rc-slider-disabled .rc-slider-dot,.brz-ed .rc-slider-disabled .rc-slider-mark-text{cursor:not-allowed!important}.brz-ed .rc-slider-vertical{width:14px;height:100px;padding:0 5px}.brz-ed .rc-slider-vertical .rc-slider-rail,.brz-ed .rc-slider-vertical .rc-slider-step{width:4px;height:100%}.brz-ed .rc-slider-vertical .rc-slider-track{left:5px;bottom:0;width:4px}.brz-ed .rc-slider-vertical .rc-slider-handle{margin-left:-5px;margin-bottom:-7px;-ms-touch-action:pan-y;touch-action:pan-y}.brz-ed .rc-slider-vertical .rc-slider-mark{top:0;left:18px;height:100%}.brz-ed .rc-slider-vertical .rc-slider-dot{left:2px;margin-bottom:-4px}.brz-ed .rc-slider-vertical .rc-slider-dot:first-child,.brz-ed .rc-slider-vertical .rc-slider-dot:last-child{margin-bottom:-4px}.brz-ed .rc-slider-tooltip-zoom-down-appear,.brz-ed .rc-slider-tooltip-zoom-down-enter,.brz-ed .rc-slider-tooltip-zoom-down-leave{-webkit-animation-duration:.3s;animation-duration:.3s;-webkit-animation-fill-mode:both;animation-fill-mode:both;display:block!important;-webkit-animation-play-state:paused;animation-play-state:paused}.brz-ed .rc-slider-tooltip-zoom-down-appear.rc-slider-tooltip-zoom-down-appear-active,.brz-ed .rc-slider-tooltip-zoom-down-enter.rc-slider-tooltip-zoom-down-enter-active{-webkit-animation-name:rcSliderTooltipZoomDownIn;animation-name:rcSliderTooltipZoomDownIn;-webkit-animation-play-state:running;animation-play-state:running}.brz-ed .rc-slider-tooltip-zoom-down-leave.rc-slider-tooltip-zoom-down-leave-active{-webkit-animation-name:rcSliderTooltipZoomDownOut;animation-name:rcSliderTooltipZoomDownOut;-webkit-animation-play-state:running;animation-play-state:running}.brz-ed .rc-slider-tooltip-zoom-down-appear,.brz-ed .rc-slider-tooltip-zoom-down-enter{-webkit-transform:scale(0,0);transform:scale(0,0);-webkit-animation-timing-function:cubic-bezier(.23,1,.32,1);animation-timing-function:cubic-bezier(.23,1,.32,1)}.brz-ed .rc-slider-tooltip-zoom-down-leave{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06)}@-webkit-keyframes rcSliderTooltipZoomDownIn{0%{opacity:0;-webkit-transform-origin:50% 100%;transform-origin:50% 100%;-webkit-transform:scale(0,0);transform:scale(0,0)}100%{-webkit-transform-origin:50% 100%;transform-origin:50% 100%;-webkit-transform:scale(1,1);transform:scale(1,1)}}@keyframes rcSliderTooltipZoomDownIn{0%{opacity:0;-webkit-transform-origin:50% 100%;transform-origin:50% 100%;-webkit-transform:scale(0,0);transform:scale(0,0)}100%{-webkit-transform-origin:50% 100%;transform-origin:50% 100%;-webkit-transform:scale(1,1);transform:scale(1,1)}}@-webkit-keyframes rcSliderTooltipZoomDownOut{0%{-webkit-transform-origin:50% 100%;transform-origin:50% 100%;-webkit-transform:scale(1,1);transform:scale(1,1)}100%{opacity:0;-webkit-transform-origin:50% 100%;transform-origin:50% 100%;-webkit-transform:scale(0,0);transform:scale(0,0)}}@keyframes rcSliderTooltipZoomDownOut{0%{-webkit-transform-origin:50% 100%;transform-origin:50% 100%;-webkit-transform:scale(1,1);transform:scale(1,1)}100%{opacity:0;-webkit-transform-origin:50% 100%;transform-origin:50% 100%;-webkit-transform:scale(0,0);transform:scale(0,0)}}.brz-ed .rc-slider-tooltip{position:absolute;left:-9999px;top:-9999px;visibility:visible;box-sizing:border-box}.brz-ed .rc-slider-tooltip *{-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-tap-highlight-color:transparent}.brz-ed .rc-slider-tooltip-hidden{display:none}.brz-ed .rc-slider-tooltip-placement-top{padding:4px 0 8px}.brz-ed .rc-slider-tooltip-inner{padding:6px 2px;min-width:24px;height:24px;font-size:12px;line-height:1;color:#fff;text-align:center;text-decoration:none;background-color:#6c6c6c;border-radius:6px;-webkit-box-shadow:0 0 4px #d9d9d9;box-shadow:0 0 4px #d9d9d9}.brz-ed .rc-slider-tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.brz-ed .rc-slider-tooltip-placement-top .rc-slider-tooltip-arrow{bottom:4px;left:50%;margin-left:-4px;border-width:4px 4px 0;border-top-color:#6c6c6c}.brz-ed .brz-ed-control__stepper{position:relative;width:62px;height:30px;border-radius:4px;overflow:hidden;background:#383e48;color:rgba(255,255,255,.85);text-align:left;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.brz-ed .brz-ed-control__stepper--arrows,.brz-ed .brz-ed-control__stepper--value{position:relative}.brz-ed .brz-ed-control__stepper--value{font-size:13px;letter-spacing:.25px;line-height:1;width:65%;-ms-flex-preferred-size:65%;flex-basis:65%;padding-left:10px;padding-top:2px}.brz-ed .brz-ed-control__stepper--arrows{width:35%;-ms-flex-preferred-size:35%;flex-basis:35%;height:30px}.brz-ed .brz-ed-control__stepper--down,.brz-ed .brz-ed-control__stepper--up{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:100%;height:15px;line-height:15px;font-size:8px;position:absolute;right:0;cursor:pointer;color:rgba(255,255,255,.85);-webkit-transition:color .2s linear;transition:color .2s linear}.brz-ed .brz-ed-control__stepper--down .brz-icon-svg,.brz-ed .brz-ed-control__stepper--up .brz-icon-svg{position:absolute;right:10px;top:auto}.brz-ed .brz-ed-control__stepper--down:hover,.brz-ed .brz-ed-control__stepper--up:hover{color:#3dbfe8}.brz-ed .brz-ed-control__stepper--up{top:0}.brz-ed .brz-ed-control__stepper--up .brz-icon-svg{bottom:1px}.brz-ed .brz-ed-control__stepper--down{bottom:0}.brz-ed .brz-ed-control__stepper--down .brz-icon-svg{top:1px}.brz-ed .brz-ed-control-radio-check{width:22px;height:22px;border:1px solid #34beea;border-radius:50%;display:block;position:relative}.brz-ed .brz-ed-control-radio-check:before{content:'';position:absolute;top:50%;left:50%;width:6px;height:6px;margin:-3px 0 0 -3px;background:#34beea;border-radius:50%;-webkit-transform:scale(0,0);transform:scale(0,0);-webkit-transition:-webkit-transform .2s linear;transition:-webkit-transform .2s linear;transition:transform .2s linear;transition:transform .2s linear,-webkit-transform .2s linear}.brz-ed .brz-ed-control-radio-check.active:before{-webkit-transform:scale(1,1);transform:scale(1,1)}.brz-ed .brz-ed-control__tabs:not(.brz-ed-control__tabs__left){display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-left:17px;padding-right:17px;border-bottom:1px solid rgba(255,255,255,.1);color:#818a91;font-size:13px;float:none}.brz-ed .brz-ed-control__tabs:not(.brz-ed-control__tabs__left) .brz-ed-control__tab{cursor:pointer;-webkit-transition:color .2s linear;transition:color .2s linear;border-bottom:2px solid transparent;height:34px;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:-1px;padding-top:2px;width:auto}.brz-ed .brz-ed-control__tabs:not(.brz-ed-control__tabs__left) .brz-ed-control__tab.active,.brz-ed .brz-ed-control__tabs:not(.brz-ed-control__tabs__left) .brz-ed-control__tab:hover{color:#3dbfe8;-webkit-transition:color .2s linear;transition:color .2s linear}.brz-ed .brz-ed-control__tabs:not(.brz-ed-control__tabs__left) .brz-ed-control__tab.active{border-bottom-color:#3dbfe8}.brz-ed .brz-ed-control__tabs:not(.brz-ed-control__tabs__left) .brz-ed-control__tab:not(:last-child){margin-right:15px}.brz-ed .brz-ed-control__tabs:not(.brz-ed-control__tabs__left) .brz-ed-control__tab__icon{height:42px}.brz-ed .brz-ed-control__tabs:not(.brz-ed-control__tabs__left) .brz-ed-control__tab__icon .brz-icon-svg{font-size:16px;-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto}.brz-ed .brz-ed-control__tabs:not(.brz-ed-control__tabs__left) .brz-ed-control__tab__icon .brz-icon-svg+.brz-span:not(:empty){margin-left:10px}.brz-ed .brz-ed-control__tabs__left{position:absolute;z-index:0;left:-38px;top:34px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.brz-ed .brz-ed-control__tabs__left .brz-ed-control__tab{width:38px;height:41px;background-color:rgba(139,147,154,.92);-webkit-box-shadow:0 0 5px 0 rgba(0,0,0,.5);box-shadow:0 0 5px 0 rgba(0,0,0,.5);border-top-left-radius:20px;border-bottom-left-radius:20px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-left:16px;color:#fff;font-size:14px;cursor:pointer;margin-bottom:1px}.brz-ed .brz-ed-control__tabs__left .brz-ed-control__tab.active{color:#3dbfe8;background-color:rgba(3,8,15,.92)}.brz-ed .brz-ed-input__search,.brz-ed .brz-ed-input__search:active,.brz-ed .brz-ed-input__search:focus{background:0 0;color:rgba(255,255,255,.6)}.brz-ed .brz-ed-control__tabs__editor.brz-ed-control__tabs__editor{width:144px;margin-left:10px;margin-right:10px;padding:0}.brz-ed .brz-ed-control__tabs__editor.brz-ed-control__tabs__editor+.brz-ed-control__tab__content{margin-bottom:-9px}.brz-ed .brz-ed-input__search{position:absolute;border:none;outline:0;font-size:13px;text-indent:10px;padding:0 35px 0 0;width:100%}.brz-ed .brz-ed-input__search::-webkit-input-placeholder{color:rgba(234,241,255,.2);font-style:italic;font-size:1em;letter-spacing:.25px}.brz-ed .brz-ed-input__search--auto-complete{color:#fff}.brz-ed .brz-ed-input__search__icon{position:absolute;right:10px;top:50%;color:#818487;-webkit-transform:translateY(-50%);transform:translateY(-50%);-webkit-transition:color .2s ease-in;transition:color .2s ease-in;cursor:pointer;font-size:16px;height:16px;line-height:1}.brz-ed .brz-ed-control__radio-group--active,.brz-ed .brz-ed-input__search__icon.active{color:#3dbfe8}.brz-ed .brz-ed-control-multiPicker--body{margin-top:20px}.brz-ed .brz-ed-sidebar-row .brz-ed-options--multi-picker{display:block}.brz-ed .brz-ed-control__radio-group{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.brz-ed .brz-ed-tooltip__content{position:relative;z-index:1}.brz-ed .brz-ed-tooltip__overlay{position:absolute;top:0;left:0;z-index:1070}.brz-ed .brz-ed-tooltip--auto{width:auto}.brz-ed .brz-ed-tooltip--medium{width:255px}.brz-ed .brz-ed-tooltip--big{width:305px}.brz-ed .brz-ed-popover__inner.brz-ed-tooltip--large,.brz-ed .brz-ed-tooltip--large{width:385px}.brz-ed .brz-ed-control__focal-point{position:relative;text-align:center}.brz-ed .brz-ed-control__focal-point:after{display:inline-block;height:100%;vertical-align:middle;content:""}.brz-ed .brz-ed-control__focal-point__setter{text-align:center;display:inline-block;vertical-align:middle;position:relative;width:100%}.brz-ed .brz-ed-control__focal-point__setter:before{content:"";position:absolute;left:0;top:0;width:100%;height:100%;background-color:rgba(0,0,0,.3)}.brz-ed .brz-ed-control__focal-point__setter .brz-img{max-width:140px;max-height:140px}.brz-ed .brz-ed-control__focal-point__point{position:absolute;z-index:10;width:18px;height:18px;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);background-color:#2eb0d8;border:2px solid #fff;border-radius:18px;cursor:pointer}.brz-ed .brz-ed-control__focal-point__upload{width:140px;height:93px;border:1px dashed #444952;background-color:#2d323b;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;cursor:pointer;font-size:24px;color:rgba(94,100,111,.6);-webkit-transition:all .2s linear;transition:all .2s linear}.brz-ed .brz-ed-control__focal-point__upload:hover{border-color:#5e6470;color:#5e646f}.brz-ed .brz-ed-control__focal-point__upload--loading{cursor:progress}.brz-ed .brz-ed-control__focal-point__delete{position:absolute;right:-4px;top:-4px;z-index:11;font-size:16px;width:16px;height:16px;background-color:#2d323b;border-radius:50%;color:#fff;cursor:pointer}.brz-ed .brz-ed-control__focal-point__label--disable .brz-ed-control__focal-point__upload{cursor:no-drop}.brz-ed .brz-ed-control__icon-setter{position:relative}.brz-ed .brz-ed-control__icon-setter__box{width:48px;height:48px;border:1px dashed #444952;background-color:#2d323b;font-size:16px;color:rgba(94,100,111,.6);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;cursor:pointer;-webkit-transition:all .2s linear;transition:all .2s linear}.brz-ed .brz-ed-control__input,.brz-ed .brz-ed-control__textarea{width:auto;font-family:pn,"Open Sans",Arial,sans-serif;outline:0}.brz-ed .brz-ed-control__icon-setter__box:hover{border-color:#5e6470;color:#5e646f}.brz-ed .brz-ed-control__icon-setter--active{color:#fff;display:inline-block;font-size:0}.brz-ed .brz-ed-control__input{font-size:13px;font-style:normal;font-weight:400;letter-spacing:0;background:#383e48;color:#fff;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;height:30px;text-indent:5px;padding:0 5px;border-radius:4px;border:0;-webkit-box-shadow:none;box-shadow:none;text-shadow:none;text-align:left;-moz-appearance:textfield}.brz-ed .brz-ed-control__input:active,.brz-ed .brz-ed-control__input:focus{background-color:#383e48;color:#fff}.brz-ed .brz-ed-control__input::-webkit-inner-spin-button,.brz-ed .brz-ed-control__input::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.brz-ed .brz-ed-control__input::-webkit-input-placeholder{color:rgba(234,241,255,.2);font-style:italic;font-size:1em}.brz-ed .brz-ed-control__input:-moz-placeholder{color:rgba(234,241,255,.2);font-style:italic;font-size:1em}.brz-ed .brz-ed-control__input::-moz-placeholder{color:rgba(234,241,255,.2);font-style:italic;font-size:1em}.brz-ed .brz-ed-control__input:-ms-input-placeholder{color:rgba(234,241,255,.2);font-style:italic;font-size:1em}.brz-ed .brz-ed-control__input--large{max-width:136px}.brz-ed .brz-ed-control__input--medium{max-width:112px}.brz-ed .brz-ed-control__input--small{max-width:62px}.brz-ed .brz-ed-control__input--auto{max-width:100%}.brz-ed .brz-ed-control__textarea{font-size:13px;letter-spacing:.25px;line-height:22px;background-color:#383e48;color:#fff;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;height:136px;padding:5px 10px;border-radius:4px;border:0;resize:none}.brz-ed .brz-ed-control__textarea::-webkit-input-placeholder{color:rgba(234,241,255,.2);font-style:italic;font-size:1em}.brz-ed .brz-ed-control__textarea:-moz-placeholder{color:rgba(234,241,255,.2);font-style:italic;font-size:1em}.brz-ed .brz-ed-control__textarea::-moz-placeholder{color:rgba(234,241,255,.2);font-style:italic;font-size:1em}.brz-ed .brz-ed-control__textarea:-ms-input-placeholder{color:rgba(234,241,255,.2);font-style:italic;font-size:1em}.brz-ed .color-picker-body{margin-bottom:2px;display:-webkit-box;display:-ms-flexbox;display:flex}.brz-ed .color-picker-body .color-picker-saturation{width:153px;height:153px;position:relative;cursor:move}.brz-ed .color-picker-body .color-picker-saturation>div{border-radius:3px 3px 4px 4px}.brz-ed .color-picker-body .color-picker-saturation .color-picker-saturation-body{position:absolute;top:0;right:0;bottom:0;left:0}.brz-ed .color-picker-body .color-picker-saturation .color-picker-saturation-body .saturation-black{position:absolute;top:0;right:0;bottom:0;left:0;border-radius:3px;background:-webkit-gradient(linear,left bottom,left top,from(#000),to(transparent));background:linear-gradient(to top,#000,transparent)}.brz-ed .color-picker-body .color-picker-saturation .color-picker-saturation-body .saturation-white{position:absolute;top:0;right:0;bottom:0;left:0;border-bottom-left-radius:4px;border-top-left-radius:3px;background:-webkit-gradient(linear,left top,right top,from(#fff),to(rgba(255,255,255,0)));background:linear-gradient(to right,#fff,rgba(255,255,255,0))}.brz-ed .color-picker-body .color-picker-saturation .color-picker-saturation-body .color-picker-pointer{width:16px;height:16px;-webkit-transform:translate(-8px,-8px);transform:translate(-8px,-8px);cursor:move}.brz-ed .color-picker-body .color-picker-saturation .color-picker-saturation-body .saturation-pointer{position:absolute;cursor:move}.brz-ed .color-picker-body .color-picker-saturation .color-picker-saturation-body .saturation-circle{width:4px;height:4px;-webkit-box-shadow:0 0 0 1.5px #fff,inset 0 0 1px 1px rgba(0,0,0,.3),0 0 1px 2px rgba(0,0,0,.4);box-shadow:0 0 0 1.5px #fff,inset 0 0 1px 1px rgba(0,0,0,.3),0 0 1px 2px rgba(0,0,0,.4);border-radius:50%;cursor:move;-webkit-transform:translate(-2px,-2px);transform:translate(-2px,-2px)}.brz-ed .color-picker-body .color-picker-alpha,.brz-ed .color-picker-body .color-picker-hue{position:relative;height:153px;width:12px;margin-left:10px;cursor:ns-resize}.brz-ed .color-picker-body .color-picker-alpha .hue-vertical,.brz-ed .color-picker-body .color-picker-hue .hue-vertical{border-radius:3px}.brz-ed .color-picker-body .color-picker-hue .hue{position:absolute;top:0;right:0;bottom:0;left:0}.brz-ed .color-picker-body .color-picker-hue .hue-container{padding:0 2px;position:relative;height:100%}.brz-ed .color-picker-body .color-picker-hue .hue-pointer{position:absolute}.brz-ed .color-picker-body .color-picker-hue .color-picker-pointer{-webkit-transform:translate(-1px,-7px);transform:translate(-1px,-7px)}.brz-ed .color-picker-body .color-picker-hue .hue-slider{margin-top:1px;width:4px;border-radius:1px;height:8px;-webkit-box-shadow:0 0 2px rgba(0,0,0,.6);box-shadow:0 0 2px rgba(0,0,0,.6);background:#fff;-webkit-transform:translateX(-2px);transform:translateX(-2px)}.brz-ed .color-picker-body .color-picker-hue .hue-horizontal{background:-webkit-gradient(linear,left top,right top,from(red),color-stop(17%,#ff0),color-stop(33%,#0f0),color-stop(50%,#0ff),color-stop(67%,#00f),color-stop(83%,#f0f),to(red));background:linear-gradient(to right,red 0,#ff0 17%,#0f0 33%,#0ff 50%,#00f 67%,#f0f 83%,red 100%);background:-webkit-linear-gradient(to right,red 0,#ff0 17%,#0f0 33%,#0ff 50%,#00f 67%,#f0f 83%,red 100%)}.brz-ed .color-picker-body .color-picker-hue .hue-vertical{background:-webkit-gradient(linear,left bottom,left top,from(red),color-stop(17%,#ff0),color-stop(33%,#0f0),color-stop(50%,#0ff),color-stop(67%,#00f),color-stop(83%,#f0f),to(red));background:linear-gradient(to top,red 0,#ff0 17%,#0f0 33%,#0ff 50%,#00f 67%,#f0f 83%,red 100%);background:-webkit-linear-gradient(to top,red 0,#ff0 17%,#0f0 33%,#0ff 50%,#00f 67%,#f0f 83%,red 100%)}.brz-ed .color-picker-body .color-picker-alpha{background-color:#fff;border-radius:3px 3px 4px 4px}.brz-ed .color-picker-body .color-picker-alpha div:not(.color-picker-pointer){border-radius:3px}.brz-ed .color-picker-body .color-picker-alpha div>div>div:not(.color-picker-pointer){background-size:8px!important}.brz-ed .color-picker-body .color-picker-alpha .color-picker-pointer{-webkit-transform:translate(-4px,-7px);transform:translate(-4px,-7px);position:relative}.brz-ed .color-picker-body .color-picker-alpha .color-picker-pointer .color-picker-pointer-tooltip{position:absolute;left:18px;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);width:42px;height:27px;font-size:12px;line-height:2.2;border-radius:2px;background-color:rgba(3,8,15,.92);-webkit-box-shadow:0 0 5px 0 rgba(0,0,0,.5);box-shadow:0 0 5px 0 rgba(0,0,0,.5);text-align:center;font-family:pn,"Open Sans",Arial,sans-serif;color:rgba(255,255,255,.85)}.brz-ed .color-picker-body .color-picker-alpha .color-picker-pointer .color-picker-pointer-tooltip:before{content:'';position:absolute;top:50%;left:-6px;-webkit-transform:translateY(-50%);transform:translateY(-50%);width:0;height:0;border-top:6px solid transparent;border-bottom:6px solid transparent;border-right:6px solid rgba(3,8,15,.92)}.brz-ed .color-picker-body .color-picker-alpha .color-picker-alpha-body,.brz-ed .color-picker-body .color-picker-alpha .color-picker-alpha-body .color-picker-alpha-gradient{position:absolute;top:0;left:0;bottom:0;right:0}.brz-ed .color-picker-body .color-picker-alpha .color-picker-alpha-body .color-picker-alpha-checkboard{position:absolute;top:0;left:0;bottom:0;right:0;overflow:hidden}.brz-ed .color-picker-body .color-picker-alpha .color-picker-alpha-body .color-picker-alpha-container{position:relative;height:100%;margin:0 3px}.brz-ed .color-picker-body .color-picker-alpha .color-picker-alpha-body .color-picker-alpha-container .color-picker-alpha-pointer{position:absolute}.brz-ed .color-picker-body .color-picker-alpha .color-picker-alpha-body .color-picker-alpha-container .color-picker-alpha-pointer .color-picker-alpha-slider{width:4px;border-radius:1px;height:8px;-webkit-box-shadow:0 0 2px rgba(0,0,0,.6);box-shadow:0 0 2px rgba(0,0,0,.6);background:#fff;margin-top:1px;-webkit-transform:translateX(-2px);transform:translateX(-2px)}.brz-ed .color-picker-body .color-picker-pointer{width:14px;height:14px;-webkit-box-shadow:0 0 3px rgba(0,0,0,.5),inset 0 0 2px rgba(0,0,0,.5);box-shadow:0 0 3px rgba(0,0,0,.5),inset 0 0 2px rgba(0,0,0,.5);-webkit-transform:translate(-7px,-7px);transform:translate(-7px,-7px);border-radius:50%;background:0 0;border:3px solid #fff;cursor:ns-resize}.brz-ed .color-picker-preset-colors{margin:0 -10px;padding:10px 0 0 10px;border-top:1px solid #eee;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;position:relative}.brz-ed .color-picker-preset-colors .color-picker-swatch-wrap{width:20px;height:20px;margin-left:2px}.brz-ed .brz-ed-grid__option,.brz-ed .brz-ed-popover__option,.brz-ed .brz-ed-sidebar__right__option{font-family:pn,"Open Sans",Arial,sans-serif;font-size:13px;line-height:normal;min-height:51px;border-bottom:1px solid rgba(255,255,255,.1);margin-bottom:-1px}.brz-ed .brz-ed-grid__option:last-child,.brz-ed .brz-ed-popover__option:last-child,.brz-ed .brz-ed-sidebar__right__option:last-child{border-bottom-color:transparent}.brz-ed .brz-ed-popover__inner--icon{-webkit-transition:color .2s linear;transition:color .2s linear}.brz-ed .brz-ed-popover__inner--icon:hover{color:#3dbfe8;-webkit-transition:color .2s linear;transition:color .2s linear}.brz-ed .brz-ed-grid__option,.brz-ed .brz-ed-popover__option{padding:10px 17px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.brz-ed .brz-ed-tabs__option--inline:first-child:last-child .brz-ed-control__tabs__top+.brz-ed-control__tab__content .brz-ed-grid__option:last-child,.brz-ed .brz-ed-tabs__option--inline:first-child:last-child .brz-ed-control__tabs__top+.brz-ed-control__tab__content .brz-ed-popover__option:last-child,.brz-ed .brz-ed-tabs__option--inline:first-child:last-child .brz-ed-grid__option:last-child,.brz-ed .brz-ed-tabs__option--inline:first-child:last-child .brz-ed-popover__option:last-child{padding-bottom:15px}.brz-ed .brz-ed-grid__option:first-child,.brz-ed .brz-ed-popover__option:first-child{padding-top:15px;border-top-color:transparent}.brz-ed .brz-ed-grid__option:last-child,.brz-ed .brz-ed-popover__option:last-child{padding-bottom:15px;min-height:56px}.brz-ed .brz-ed-tabs__option--inline:first-child:last-child .brz-ed-grid__option:first-child,.brz-ed .brz-ed-tabs__option--inline:first-child:last-child .brz-ed-popover__option:first-child{padding-top:15px}.brz-ed .brz-ed-control__tabs__top+.brz-ed-control__tab__content .brz-ed-grid__option:first-child,.brz-ed .brz-ed-control__tabs__top+.brz-ed-control__tab__content .brz-ed-popover__option:first-child,.brz-ed .brz-ed-tabs__option--inline:first-child:last-child .brz-ed-control__tabs__top+.brz-ed-control__tab__content .brz-ed-grid__option:first-child,.brz-ed .brz-ed-tabs__option--inline:first-child:last-child .brz-ed-control__tabs__top+.brz-ed-control__tab__content .brz-ed-popover__option:first-child{padding-top:10px}.brz-ed .brz-ed-control__tabs__top+.brz-ed-control__tab__content .brz-ed-grid__option:last-child,.brz-ed .brz-ed-control__tabs__top+.brz-ed-control__tab__content .brz-ed-popover__option:last-child{padding-bottom:10px}.brz-ed .brz-ed-tabs__option--inline+.brz-ed-option__advanced{border-top:1px solid rgba(255,255,255,.1)}.brz-ed .brz-ed-option__inline{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;text-align:left}.brz-ed .brz-ed-option__block{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;text-align:left}.brz-ed .brz-ed-option__block .brz-ed-option__font-style-editor__title,.brz-ed .brz-ed-option__block .brz-ed-option__label{-ms-flex-preferred-size:auto;flex-basis:auto;margin-bottom:6px;margin-right:0}.brz-ed .brz-ed-option__block.brz-ed-option__slider{padding-top:15px!important}.brz-ed .brz-ed-option__advanced{padding-top:15px;min-height:initial!important;color:#3dbfe8;-webkit-transition:color .2s linear;transition:color .2s linear;font-size:0}.brz-ed .brz-ed-option__advanced .brz-ed-option__font-style-editor__title,.brz-ed .brz-ed-option__advanced .brz-ed-option__label{-ms-flex-preferred-size:100%;flex-basis:100%;color:inherit;margin:0 0 0 9px;cursor:pointer;font-size:13px}.brz-ed .brz-ed-option__advanced:hover{color:#fff}.brz-ed .brz-ed-option__font-style-editor__title,.brz-ed .brz-ed-option__label{font-family:pn,"Open Sans",Arial,sans-serif;font-size:13px;color:#818a91;-ms-flex-preferred-size:auto;flex-basis:auto;margin-right:17px;display:-webkit-box;display:-ms-flexbox;display:flex;line-height:1.3}.brz-ed .brz-ed-option__slider__label{-ms-flex-preferred-size:65px;flex-basis:65px}.brz-ed .brz-ed-grid__options,.brz-ed .brz-ed-popover__options{height:100%;width:100%;-ms-flex-preferred-size:100%;flex-basis:100%}.brz-ed .brz-ed-grid__options .brz-ed-option__advanced .brz-icon-svg,.brz-ed .brz-ed-popover__options .brz-ed-option__advanced .brz-icon-svg{font-size:14px}.brz-ed .brz-ed-toolbar__item>.brz-ed-option__advanced{border:none;color:inherit;-webkit-transition:color .2s linear;transition:color .2s linear}.brz-ed .brz-ed-toolbar__item>.brz-ed-option__advanced:hover{color:#3dbfe8;-webkit-transition:color .2s linear;transition:color .2s linear}.brz-ed .brz-ed-toolbar__item>.brz-ed-option__advanced .brz-icon-svg{font-size:16px}.brz-ed .brz-ed-option__button{-webkit-transition:color .2s linear;transition:color .2s linear}.brz-ed .brz-ed-option__button:hover{-webkit-transition:color .2s linear;transition:color .2s linear;color:#3dbfe8}.brz-ed .floating-action-button{position:relative;width:54px;height:54px;border-radius:50%;background:#3dbfe8;cursor:pointer;z-index:10;-webkit-transition:background .2s linear;transition:background .2s linear}.brz-ed .floating-action-button:after,.brz-ed .floating-action-button:before{content:"";position:absolute;top:50%;left:50%;background:#fff;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);-webkit-transition:-webkit-transform .2s linear;transition:-webkit-transform .2s linear;transition:transform .2s linear;transition:transform .2s linear,-webkit-transform .2s linear}.brz-ed .floating-action-button:before{width:16px;height:2px}.brz-ed .floating-action-button:after{width:2px;height:16px}.brz-ed .floating-action-button:hover{background:#03080f}.brz-ed .floating-action-button--icon{color:#fff;font-size:16px}.brz-ed .floating-action-button--icon .brz-icon-svg{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.brz-ed .floating-action-button--icon:after,.brz-ed .floating-action-button--icon:before{display:none}.brz-ed .brz-ed-option-tools{width:30px;height:30px;border-radius:30px;font-size:15px;text-align:center;color:#fff;cursor:pointer;visibility:hidden;position:absolute;z-index:100}.brz-ed .brz-ed-option-tools:after,.brz-ed .brz-ed-option-tools:before{content:'';position:absolute}.brz-ed .brz-ed-option-tools:after{top:15px;width:22px;height:1px}.brz-ed .brz-ed-option-tools:before{top:32px;width:1px;height:22px}.brz-ed .brz-ed-option-tools i{position:absolute;top:8px;left:7px}.brz-ed .brz-ed-control-tabs-options{position:relative}.brz-ed .brz-ed-control-tabs-options>.brz-ed-options-tabs--label{position:absolute;top:7px}.brz-ed .brz-ed-control-tabs-options>.brz-ed-control__tabs{border-bottom:0;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.brz-ed .brz-ed-control-tabs-options>.brz-ed-control__tabs>.brz-ed-control__tab{position:relative;width:37px;height:30px;line-height:30px;background-color:#383e48;color:#fff;text-align:center;-webkit-transition:.2s linear background-color,.2s linear color;transition:.2s linear background-color,.2s linear color}.brz-ed .brz-ed-control-tabs-options>.brz-ed-control__tabs>.brz-ed-control__tab .brz-icon-svg{margin:0;position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.brz-ed .brz-ed-control-tabs-options>.brz-ed-control__tabs>.brz-ed-control__tab:after{width:1px;height:100%;background-color:#4c525b;margin:0;border-right:0;display:block;position:absolute;top:0;right:0}.brz-ed .brz-ed-control-tabs-options>.brz-ed-control__tabs>.brz-ed-control__tab.active{background-color:#3dbfe8}.brz-ed .brz-ed-control__text-box--resizer,.brz-ed .brz-ed-control__text-box--resizer:active,.brz-ed .brz-ed-control__text-box--resizer:focus{background-color:transparent;color:#818a91}.brz-ed .brz-ed-control-tabs-options>.brz-ed-control__tabs>.brz-ed-control__tab:first-child{border-radius:3px 0 0 3px}.brz-ed .brz-ed-control-tabs-options>.brz-ed-control__tabs>.brz-ed-control__tab:last-child{border-radius:0 3px 3px 0}.brz-ed .brz-ed-tabs__option--inline{position:relative}.brz-ed .brz-ed-tabs__option--inline .brz-ed-control__tabs{margin-bottom:0}.brz-ed .brz-ed-option__slider__icon{font-size:14px;line-height:1;margin-right:18px;display:-webkit-box;display:-ms-flexbox;display:flex}.brz-ed .brz-ed-option__slider .brz-ed-option-field__text-box{min-height:initial}.brz-ed .brz-ed-option__slider .brz-ed-control__slider{width:auto;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.brz-ed .brz-ed-option__slider__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:100%}.brz-ed .brz-ed-option__text-box{width:44px;border-bottom:1px solid rgba(255,255,255,.1);margin-left:17px;padding:0 0 1px}.brz-ed .brz-ed-option__text-box .brz-label{display:-webkit-box;display:-ms-flexbox;display:flex;line-height:1;color:#818a91;font-family:pn,"Open Sans",Arial,sans-serif;font-size:13px;font-weight:400;font-style:normal;letter-spacing:0;text-transform:lowercase;padding:0;margin:0}.brz-ed .brz-ed-option__text-box__helper,.brz-ed .brz-ed-option__text-box__input{position:relative;font-weight:400}.brz-ed .brz-ed-option__text-box__helper{font-family:inherit;font-size:inherit;margin-left:3px}.brz-ed .brz-ed-control__text-box--resizer{font-weight:400;border:none;outline:0;padding:0;line-height:1;-moz-appearance:textfield;position:absolute;top:0;left:0;width:105%;height:100%}.brz-ed .brz-ed-control__text-box--resizer::-webkit-inner-spin-button,.brz-ed .brz-ed-control__text-box--resizer::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.brz-ed .brz-ed-sidebar-row .brz-ed-options__switch--tab{display:block}.brz-ed .brz-ed-option__select__after{margin-left:8px;margin-bottom:0;font-size:16px;color:#818a91;line-height:1;display:-webkit-box;display:-ms-flexbox;display:flex;cursor:pointer;-webkit-transition:color .2s linear;transition:color .2s linear}.brz-ed .brz-ed-option__select__after:hover{color:#3dbfe8}.brz-ed .brz-ed-option__select .brz-control__select-current .brz-control__select-option{border-bottom:none}.brz-ed .brz-ed-option__select .brz-control__select-current .brz-control__select-option span{top:1px}.brz-ed .brz-ed-option__select .brz-control__select-option{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.brz-ed .brz-ed-option__select .brz-control__select-option .brz-icon-svg,.brz-ed .brz-ed-option__select .brz-control__select-option span{line-height:1}.brz-ed .brz-ed-option__select .brz-control__select-option span{position:relative;top:.5px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.brz-ed .brz-ed-option__select .brz-control__select-option .brz-icon-svg{font-size:12px;margin-right:10px}.brz-ed .brz-ed-option__radio-group-option{margin-left:5px;margin-right:5px}.brz-ed .brz-ed-option__radio-group--boxed{width:37px;height:30px;border-right:1px solid rgba(255,255,255,.07);background-color:#383e48;color:#fff;overflow:hidden}.brz-ed .brz-ed-option__radio-group--boxed:first-child{border-top-left-radius:4px;border-bottom-left-radius:4px}.brz-ed .brz-ed-option__radio-group--boxed:nth-last-child(2){border-right:none;border-top-right-radius:4px;border-bottom-right-radius:4px}.brz-ed .brz-ed-option__radio-group--boxed .brz-ed-option__radio-group__icon{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;height:100%;font-size:16px;cursor:pointer;-webkit-transition:background-color .2s linear;transition:background-color .2s linear}.brz-ed .brz-ed-option__radio-group--boxed.active .brz-ed-option__radio-group__icon{background-color:#3dbfe8}.brz-ed .brz-ed-popover__inner{background-color:rgba(3,8,15,.92);-webkit-box-shadow:0 0 5px 0 rgba(0,0,0,.5);box-shadow:0 0 5px 0 rgba(0,0,0,.5);border-radius:8px;position:relative}.brz-ed .brz-ed-tooltip__anchor .brz-ed-tooltip__overlay{width:215px;margin-top:25px;margin-bottom:25px;background-color:rgba(3,8,15,.92);-webkit-box-shadow:0 0 5px 0 rgba(0,0,0,.5);box-shadow:0 0 5px 0 rgba(0,0,0,.5);border-radius:8px}.brz-ed .brz-ed-tooltip__anchor .brz-ed-tooltip__content{padding-left:17px}.brz-ed .brz-ed-tooltip__anchor .brz-ed-arrow--bottom-left:after,.brz-ed .brz-ed-tooltip__anchor .brz-ed-arrow--top-left:after{left:29px}.brz-ed .brz-ed-option__multiPicker.brz-ed-option__inline{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:unset;-ms-flex-align:unset;align-items:unset;-webkit-box-pack:unset;-ms-flex-pack:unset;justify-content:unset}.brz-ed .brz-ed-multiPicker__head__option,.brz-ed .brz-ed-multiPicker__option{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.brz-ed .brz-ed-multiPicker__option:first-child{margin-top:10px}.brz-ed .brz-ed-multiPicker__option:not(:last-child){margin-bottom:10px}.brz-ed .brz-ed-sidebar__right .brz-ed-multiPicker__option.brz-ed-option__slider:not(:last-child){margin-bottom:15px}.brz-ed .brz-ed-sidebar__right .brz-ed-multiPicker__option:first-child{margin-top:20px}.brz-ed .brz-ed-sidebar__right .brz-ed-multiPicker__option:not(:last-child){margin-bottom:20px}.brz-ed .brz-ed-popover__typography{padding:11px 7px 14px}.brz-ed .brz-ed-popover__typography .brz-control__select,.brz-ed .brz-ed-popover__typography .brz-control__select-current,.brz-ed .brz-ed-popover__typography .brz-control__select-options,.brz-ed .brz-ed-popover__typography .brz-ed-control__stepper{width:62px}.brz-ed .brz-ed-popover__typography .brz-control__select-options{width:95px}.brz-ed .brz-ed-popover__typography .brz-ed-grid__option,.brz-ed .brz-ed-popover__typography .brz-ed-popover__option{border-bottom:0;margin-bottom:0;padding:6px 10px}.brz-ed .brz-ed-popover__typography--mobile .brz-ed-grid__option,.brz-ed .brz-ed-popover__typography--mobile .brz-ed-popover__option{padding-right:10px;padding-left:17px}.brz-ed .brz-ed-popover__typography--mobile:last-child .brz-ed-grid__option,.brz-ed .brz-ed-popover__typography--mobile:last-child .brz-ed-popover__option{padding-left:10px;padding-right:17px}.brz-ed .brz-ed-popover__font-style .brz-control__select,.brz-ed .brz-ed-popover__font-style .brz-control__select-current,.brz-ed .brz-ed-popover__font-style .brz-control__select-options{width:120px}.brz-ed .brz-ed-option__helper{margin-left:7px;cursor:pointer;color:rgba(129,138,145,.35);-webkit-transition:color .3s ease-out;transition:color .3s ease-out;position:relative;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.brz-ed .brz-ed-option__helper:hover{color:rgba(129,138,145,.6)}.brz-ed .brz-ed-option__helper:hover .brz-ed-option__helper__content:not(:empty){visibility:visible;opacity:1}.brz-ed .brz-ed-option__helper svg{overflow:visible}.brz-ed .brz-ed-option__helper__content{font-size:13px;line-height:1;font-family:pn,"Open Sans",Arial,sans-serif;visibility:hidden;width:auto;white-space:nowrap;background-color:#03080f;color:#fff;text-align:center;padding:10px;border-radius:2px;position:absolute;z-index:1;bottom:calc(100% + 6px);left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);will-change:transform,opacity;opacity:0;-webkit-transition:opacity .4s linear;transition:opacity .4s linear;-webkit-transition-delay:.6s;transition-delay:.6s}.brz-ed .brz-ed-option__helper__content:after{content:"";position:absolute;top:100%;left:50%;margin-left:-5px;border:5px solid transparent;border-top-color:#03080f}.brz-ed .brz-ed-option__prompt-icon{-webkit-transition:color .2s linear;transition:color .2s linear}.brz-ed .brz-ed-option__prompt-icon:hover{-webkit-transition:color .2s linear;transition:color .2s linear;color:#3dbfe8}.brz-ed .brz-ed-option__toggle{-webkit-transition:color .2s linear;transition:color .2s linear}.brz-ed .brz-ed-option__toggle:hover{-webkit-transition:color .2s linear;transition:color .2s linear;color:#3dbfe8}.brz-ed .brz-ed-option__colorPicker{border-bottom:0}.brz-ed .brz-ed-option__colorPicker__fields{padding-top:0}.brz-ed .brz-ed-option__colorPicker__fields:last-child{min-height:100%}.brz-ed .brz-ed-option__color-palette{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-top:0;border-bottom:0;min-height:100%}.brz-ed .brz-ed-option__color-palette__item{width:18px;height:18px;border-radius:2px;margin-left:2px;cursor:pointer;border:1px solid #3a3d43}.brz-ed .brz-ed-option__color-palette__item:first-child{margin-left:0}.brz-ed .brz-ed-option__color-palette__item.active{border:2px solid #fff}.brz-ed .brz-ed-option__color-palette__icon{cursor:pointer;font-size:16px;margin-left:10px;display:-webkit-box;display:-ms-flexbox;display:flex;color:#818a91;-webkit-transition:color .2s linear;transition:color .2s linear}.brz-ed .brz-ed-option__color-palette__icon:hover{color:#3dbfe8}.brz-ed .brz-ed-option__color-palette-editor{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.brz-ed .brz-ed-option__color-palette-editor__item{width:23px;height:23px;border:1px solid #1e232a;border-radius:2px;margin-left:3px;cursor:pointer;-webkit-transition:border .2s linear;transition:border .2s linear}.brz-ed .brz-ed-option__color-palette-editor__item.active,.brz-ed .brz-ed-option__color-palette-editor__item:hover{border:2px solid #3dbfe8}.brz-ed .brz-ed-option__color-palette-editor__item:first-child{margin-left:0}.brz-ed .brz-ed-sidebar-option__color-palette-editor{padding-bottom:30px;margin-bottom:26px!important;border-bottom:1px solid #3a3f47}.brz-ed .brz-ed-option__font-style-editor{position:relative;cursor:pointer;margin:0 30px 16px}.brz-ed .brz-ed-option__font-style-editor:last-child{margin-bottom:0}.brz-ed .brz-ed-option__font-style-editor__container,.brz-ed .brz-ed-option__font-styles--add{border:2px solid #3c424d;border-radius:3px;padding:16px 20px 18px;-webkit-transition:border-color .2s linear;transition:border-color .2s linear}.brz-ed .brz-ed-option__font-style-editor.active .brz-ed-option__font-style-editor__container,.brz-ed .brz-ed-option__font-style-editor.active .brz-ed-option__font-styles--add,.brz-ed .brz-ed-option__font-style-editor:hover .brz-ed-option__font-style-editor__container,.brz-ed .brz-ed-option__font-style-editor:hover .brz-ed-option__font-styles--add{border-color:#3dbfe8;-webkit-transition:border-color .2s linear;transition:border-color .2s linear}.brz-ed .brz-ed-option__font-style-editor.active .brz-ed-option__font-style-editor--delete,.brz-ed .brz-ed-option__font-style-editor:hover .brz-ed-option__font-style-editor--delete{opacity:1;-webkit-transition:.2s linear opacity;transition:.2s linear opacity}.brz-ed .brz-ed-option__font-style-editor__title{line-height:1;margin-bottom:3px;margin-right:0}.brz-ed .brz-ed-option__font-style-editor__title .brz-span{display:block;line-height:1.5}.brz-ed .brz-ed-option__font-style-editor__sample{color:#fff;line-height:1;font-size:21px}.brz-ed .brz-ed-option__font-style-editor--delete{position:absolute;top:-7px;right:-6px;color:#fff;font-size:16px;opacity:0;-webkit-transition:.2s linear opacity;transition:.2s linear opacity}.brz-ed .brz-ed-option__font-style-editor--delete .brz-icon-svg{background-color:#fff;color:#15191f;border-radius:16px}.brz-ed .brz-ed-option__font-styles{position:relative;height:calc(100% - 258px);margin-right:-30px;margin-left:-30px}.brz-ed .brz-ed-option__font-styles--add{font-size:0;margin-bottom:0;padding-top:33px;padding-bottom:30px;color:#818a91;text-align:center;cursor:pointer;-webkit-transition:border-color .2s linear,color .2s linear;transition:border-color .2s linear,color .2s linear;position:absolute;bottom:-20px;left:30px;right:30px;-webkit-transform:translateY(100%);transform:translateY(100%)}.brz-ed .brz-ed-option__font-styles--add:hover{border-color:#3dbfe8;color:#3dbfe8;-webkit-transition:border-color .2s linear,color .2s linear;transition:border-color .2s linear,color .2s linear}.brz-ed .brz-ed-option__font-styles--add .brz-icon-svg,.brz-ed .brz-ed-option__font-styles--add .brz-span{display:inline-block;vertical-align:middle;font-size:13px;line-height:1}.brz-ed .brz-ed-option__font-styles--add .brz-icon-svg{font-size:16px}.brz-ed .brz-ed-option__font-styles--add .brz-span{margin-left:10px}.brz-ed .brz-ed-option__font-styles--scroll-pane{position:absolute;top:-10px;bottom:0;left:0;right:0}.brz-ed .brz-ed-option__font-styles--scroll-pane .brz-ed-scroll-inner{padding-top:10px}.brz-ed .brz-ed-option__font-adder .brz-control__select{width:100%}.brz-ed .brz-ed-option__font-adder__label{margin-bottom:7px;margin-right:0}.brz-ed .brz-ed-fixed-bottom-panel{position:fixed;bottom:25px;right:30px;border-radius:50px;-webkit-box-shadow:0 0 5px 0 rgba(0,0,0,.5);box-shadow:0 0 5px 0 rgba(0,0,0,.5);background-color:rgba(3,8,15,.92);z-index:1059;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.brz-ed .brz-ed-fixed-bottom-panel .brz-ul{padding:0;margin:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.brz-ed .brz-ed-fixed-bottom-panel__item{color:#818a91;font-size:12px;letter-spacing:.25px;font-family:pn,"Open Sans",Arial,sans-serif;font-weight:400;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;cursor:default;-webkit-transition:color 150ms linear;transition:color 150ms linear;padding:14px;border-right:1px solid rgba(255,255,255,.15)}.brz-ed .brz-ed-fixed-bottom-panel__item.active{color:#fff;cursor:pointer}.brz-ed .brz-ed-fixed-bottom-panel__item.active:hover{color:#3dbfe8}.brz-ed .brz-ed-fixed-bottom-panel__item:first-child{padding-left:18px}.brz-ed .brz-ed-fixed-bottom-panel__item:last-child{border-right:none}.brz-ed .brz-ed-fixed-bottom-panel__item .brz-icon-svg{width:1.2em;height:1.2em}.brz-ed .brz-ed-fixed-bottom-panel__preview{cursor:pointer}.brz-ed .brz-ed-fixed-bottom-panel__preview .brz-a{color:#fff;-webkit-transition:color 150ms linear;transition:color 150ms linear}.brz-ed .brz-ed-fixed-bottom-panel__preview:hover .brz-a{color:#3dbfe8}.brz-ed .brz-ed-fixed-bottom-panel__btn-update{padding:8px 13px;cursor:pointer}.brz-ed .brz-ed-fixed-bottom-panel__btn-update .brz-a,.brz-ed .brz-ed-fixed-bottom-panel__btn-update .brz-span{font-size:13px;line-height:1;color:#fff;padding:8px 14px 5px;border-bottom:2px solid #006799;background-color:#0085ba;border-radius:50px;height:28px;min-width:72px;text-align:center;-webkit-transition:background-color 150ms linear;transition:background-color 150ms linear}.brz-ed .brz-ed-fixed-bottom-panel__btn-update .brz-a:hover,.brz-ed .brz-ed-fixed-bottom-panel__btn-update .brz-span:hover{background-color:#0092cc;color:#fff}.brz-ed .brz-ed-fixed-bottom-panel__btn-update .brz-a .brz-icon-svg,.brz-ed .brz-ed-fixed-bottom-panel__btn-update .brz-span .brz-icon-svg{width:1em;height:1em}.brz-ed .brz-ed-option__block-thumbnail .brz-ed-scroll-pane .brz-ed-scroll-inner{max-height:240px;border-right-style:none!important}.brz-ed .brz-ed-option__block-thumbnail .brz-ed-scroll-pane .brz-ed-tall-track{right:-10px}.brz-ed .brz-ed-option__block-thumbnail .brz-figure{margin-bottom:5px;max-width:140px;position:relative;cursor:pointer}.brz-ed .brz-ed-option__block-thumbnail .brz-figure img{max-width:100%;position:relative}.brz-ed .brz-ed-option__block-thumbnail .brz-figure:after{content:"";position:absolute;top:0;left:0;width:100%;height:100%;border:2px solid transparent;-webkit-transition:.2s linear border-color;transition:.2s linear border-color}.brz-ed .brz-ed-option__block-thumbnail .brz-figure.active:after,.brz-ed .brz-ed-option__block-thumbnail .brz-figure:hover:after{border-color:#3dbfe8;-webkit-transition:.2s linear border-color;transition:.2s linear border-color}.brz-ed .brz-ed-option__block-thumbnail .brz-figure:last-child{margin-bottom:0}.brz-ed .brz-ed-option__block-thumbnail-loading{position:absolute;top:0;left:0;width:100%;height:100%;font-size:24px;color:rgba(94,100,111,.6);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;cursor:progress}.brz-ed .brz-ed-floating__button{width:16px;height:16px;border-radius:16px;font-size:7px;background-color:#999;color:#fff;-webkit-box-shadow:none;box-shadow:none;-webkit-transform:scale(1);transform:scale(1);-webkit-transition:-webkit-transform .2s linear;transition:-webkit-transform .2s linear;transition:transform .2s linear;transition:transform .2s linear,-webkit-transform .2s linear;cursor:pointer}.brz-ed .brz-ed-floating__button:after{content:"";display:block;width:28px;height:28px;border:3px solid #999;position:absolute;z-index:1;top:50%;left:50%;margin-top:-14px;margin-left:-14px;border-radius:50%;opacity:0}.brz-ed .brz-ed-floating__button--active,.brz-ed .brz-ed-floating__button:hover{-webkit-transform:scale(1.75);transform:scale(1.75);-webkit-transition:-webkit-transform .2s linear;transition:-webkit-transform .2s linear;transition:transform .2s linear;transition:transform .2s linear,-webkit-transform .2s linear;font-size:8px}.brz-ed .brz-ed-floating__button--active:after,.brz-ed .brz-ed-floating__button:hover:after{-webkit-animation:none;animation:none}.brz-ed .brz-ed-floating__button .brz-icon-svg{position:absolute;left:50%;top:50%;-webkit-transform:translate(-.5em,-.5em);transform:translate(-.5em,-.5em);line-height:1}.brz-ed .brz-ed-floating__button--grey{background-color:#879294}.brz-ed .brz-ed-floating__button--grey:after{border-color:#879294}.brz-ed .brz-ed-floating__button--blue{background-color:#22b0da}.brz-ed .brz-ed-floating__button--blue:after{border-color:#22b0da}.brz-ed .brz-ed-floating__button--red{background-color:#ed2164}.brz-ed .brz-ed-floating__button--red:after{border-color:#ed2164}.brz-ed .brz-ed-popup-icons__grid .brz-ed-scroll-inner{padding:20px 20px 0}.brz-ed .brz-ed-popup-icons__grid__item{width:68px;height:68px;font-size:24px;text-align:center;border-radius:5px;cursor:pointer;color:#222;position:relative}.brz-ed .brz-ed-block-adder-desc,.brz-ed .brz-ed-block-adder-title{font-size:15px;font-family:pn,"Open Sans",Arial,sans-serif}.brz-ed .brz-ed-popup-icons__grid__item.active,.brz-ed .brz-ed-popup-icons__grid__item:hover{background-color:#85d8f2;color:#fff}.brz-ed .brz-ed-popup-icons__grid__item i,.brz-ed .brz-ed-popup-icons__grid__item svg{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.brz-ed .brz-ed-container-adder{max-width:430px;height:auto;margin:40px auto;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;background-color:#fff;border:2px dashed #3dbfe8;border-radius:4px}.brz-ed .brz-ed-container-adder .floating-action-button{margin:0 35px}.brz-ed .brz-ed-block-adder-title{font-weight:bolder;text-transform:uppercase;color:#292e37;margin-top:50px;margin-bottom:25px}.brz-ed .brz-ed-block-adder-desc{font-style:italic;color:#9da0a6;margin-top:25px;margin-bottom:50px}.brz-ed.brz-ed--mobile .brz-ed-container-adder{display:none}@media (min-width:768px){.brz-ed .brz-ed-container-adder{max-width:710px;height:130px;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.brz-ed .brz-ed-block-adder-desc,.brz-ed .brz-ed-block-adder-title{margin:0;min-width:165px}.brz-ed .brz-ed-block-adder-title{text-align:right}}.brz-ed .brz-ed-popup-wrapper{position:absolute;left:50%;top:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);width:600px;-webkit-box-shadow:0 0 5px 0 rgba(0,0,0,.5);box-shadow:0 0 5px 0 rgba(0,0,0,.5);border-radius:5px}.brz-ed .brz-ed-fixed-leave-transition.brz-ed-fixed-hidden{visibility:hidden}.brz-ed .brz-ed-popup__head--search{width:100%;min-height:80px;padding:20px;background-color:rgba(3,8,15,.12);text-align:center}.brz-ed .brz-ed-popup__search{position:relative;width:400px;margin-left:10px}.brz-ed .brz-ed-popup__input{font-family:pn,"Open Sans",Arial,sans-serif;font-size:14px;line-height:40px;letter-spacing:.1px;color:#898c90;background-color:#fff;width:100%;height:40px;border:none;border-radius:3px;padding:15px 40px 12px 16px}.brz-ed .brz-ed-popup__input:active,.brz-ed .brz-ed-popup__input:focus{color:#898c90}.brz-ed .brz-ed-popup__input::-webkit-input-placeholder{font-family:pn,"Open Sans",Arial,sans-serif;font-size:14px;color:#b6b9bd;font-style:italic;letter-spacing:.1px}.brz-ed .brz-ed-popup__search--icon{position:absolute;top:50%;right:13px;z-index:2;-webkit-transform:translateY(-50%);transform:translateY(-50%);color:#898c90;font-size:14px;line-height:1;cursor:pointer}.brz-ed .brz-ed-popup__search--icon.active{color:#3dbfe8}.brz-ed .brz-ed-popup__select .brz-control__select-current{line-height:40px;height:40px}.brz-ed .brz-ed-popup__select .brz-control__select-current .brz-control__select-option{line-height:40px;height:40px;padding-left:15px;padding-right:15px}.brz-ed .brz-ed-popup__select .brz-control__select--arrow{font-size:10px;right:14px}.brz-ed .brz-ed-popup__select.brz-control__select{width:208px}.brz-ed .brz-ed-popup__select .brz-control__select-option{border-bottom-color:transparent;text-align:left;font-size:14px;padding-left:0;padding-right:0;height:30px;line-height:30px}.brz-ed .brz-ed-popup__select .brz-control__select-options{padding:15px 28px;top:100%;width:548px;margin-top:4px;-webkit-box-shadow:0 0 10px 0 rgba(0,0,1,.1);box-shadow:0 0 10px 0 rgba(0,0,1,.1)}.brz-ed .brz-ed-popup__select .brz-control__select-options .brz-ed-scroll-inner{-webkit-columns:3;columns:3}.brz-ed .brz-ed-fixed.brz-ed-fixed-visible{visibility:visible;opacity:1;display:block}.brz-ed .brz-ed-popup-header{position:relative;height:79px;background:#292e37;border-radius:5px 5px 0 0;text-align:center}.brz-ed .brz-ed-popup-tab-item{position:relative;display:inline-block;width:81px;height:79px;background:#292e37;border-left:1px solid rgba(0,0,0,.7);color:rgba(255,255,255,.5);cursor:pointer}.brz-ed .brz-ed-popup-tab-item:after{content:"";display:block;position:absolute;top:0;left:0;bottom:0;border-left:1px solid rgba(255,255,255,.05)}.brz-ed .brz-ed-popup-tab-item.active:after,.brz-ed .brz-ed-popup-tab-item.active:not(:first-child){border-left-color:transparent}.brz-ed .brz-ed-popup-tab-item:last-child{border-right:1px solid rgba(0,0,0,.7)}.brz-ed .brz-ed-popup-tab-item:last-child:before{content:"";display:block;position:absolute;top:0;right:-2px;bottom:0;border-right:1px solid rgba(255,255,255,.05)}.brz-ed .brz-ed-popup-tab-item.active{background-color:#03080f;color:#fff}.brz-ed .brz-ed-popup-tab-item.active:last-child:before{border-right-color:transparent}.brz-ed .brz-ed-popup-tab-item.active:not(:first-child):after{left:-2px;border-left:1px solid rgba(255,255,255,.05)}.brz-ed .brz-ed-popup-tab-item:first-child:last-child{border:0;position:static}.brz-ed .brz-ed-popup-tab-icon{font-size:20px;line-height:1;margin:20px auto 8px}.brz-ed .brz-ed-popup-tab-name{font-family:pn,"Open Sans",Arial,sans-serif;font-size:10px;font-weight:600;letter-spacing:.25px;text-transform:uppercase}.brz-ed .brz-ed-popup-content{background:#eff0f1;border-radius:0 0 5px 5px}.brz-ed .brz-ed-popup-btn-close{position:absolute;top:10px;right:10px;width:20px;height:20px;cursor:pointer;-webkit-transition:all .2s ease;transition:all .2s ease}.brz-ed .brz-ed-popup-btn-close:after,.brz-ed .brz-ed-popup-btn-close:before{position:absolute;content:"";display:block;width:17px;border-top:2px solid #94979b;top:45%;left:50%;margin-left:-8px;-webkit-transition:all .2s ease;transition:all .2s ease}.brz-ed .brz-ed-popup-btn-close:after{-webkit-transform:rotate(45deg);transform:rotate(45deg)}.brz-ed .brz-ed-popup-btn-close:before{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.brz-ed .brz-ed-popup-btn-close:hover:after,.brz-ed .brz-ed-popup-btn-close:hover:before{border-color:#fff}.brz-ed .brz-ed-popup-filter{height:80px;background:#e0e1e2;margin:0 -1px;border-right:1px solid #a1a3a5;border-left:1px solid #a1a3a5}.brz-ed .brz-ed-dropdown.brz-ed-popup-filter-field,.brz-ed .brz-ed-popup-filter-field{position:relative;width:233px;height:40px;background:#fff;float:left;border-radius:5px;margin:20px 10px 0 0;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.brz-ed .brz-ed-popup-filter-field .brz-ed-icon-angle-down{position:absolute;right:11px;top:5px;color:#34beea}.brz-ed .brz-ed-popup-filter-field:first-child{margin-left:64px}.brz-ed .brz-ed-popup-filter-field .brz-ed-dropdown-options{margin-top:8px;background:#03080f;border-radius:5px;-webkit-box-shadow:0 0 5px rgba(0,0,0,.5);box-shadow:0 0 5px rgba(0,0,0,.5)}.brz-ed .brz-ed-popup-filter-field .brz-ed-dropdown-options .brz-ed-dropdown-option-item{line-height:36px}.brz-ed .brz-ed-popup-filter-field .brz-ed-icon-loupe{position:absolute;top:4px;right:9px;color:#34beea}.brz-ed .brz-ed-popup-filter-field .brz-input[type=text]{font-family:pn,"Open Sans",Arial,sans-serif;outline:0;border:none;background-color:transparent;width:203px;height:40px;font-size:14px;text-indent:16px;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.brz-ed .brz-ed-popup-filter-field .brz-input::-webkit-input-placeholder{color:#b6b9bd;font-style:italic}.brz-ed .brz-ed-popup-filter-field .brz-input:-moz-placeholder{color:#b6b9bd;font-style:italic}.brz-ed .brz-ed-popup-filter-field .brz-input::-moz-placeholder{color:#b6b9bd;font-style:italic}.brz-ed .brz-ed-popup-filter-field .brz-input:-ms-input-placeholder{color:#b6b9bd;font-style:italic}.brz-ed .brz-ed-popup-filter-field .brz-ed-dropdown-current .brz-ed-dropdown-option-item,.brz-ed .brz-ed-popup-filter-field .brz-ed-dropdown-current .brz-ed-dropdown-placeholder{font-family:pn,"Open Sans",Arial,sans-serif;padding-left:16px;height:40px;font-size:14px;line-height:40px}.brz-ed .brz-ed-popup-filter-field .brz-ed-dropdown-current .brz-ed-dropdown-placeholder{color:#b6b9bd;font-style:italic}.brz-ed .brz-ed-popup-filter-field .brz-ed-dropdown-current .brz-ed-dropdown-option-item{color:#000}.brz-ed .brz-ed-popup-filter-field-text{cursor:text}.brz-ed .brz-ed-form-fields-inline{font-size:0}.brz-ed .brz-ed-form-fields-inline .brz-ed-popup-form-field-label,.brz-ed .brz-ed-form-fields-inline .brz-ed-popup-form-field-title{display:inline-block;vertical-align:middle}.brz-ed .brz-popup-body,.brz-ed .brz-popup-content{height:100%;display:-webkit-box;display:-ms-flexbox}.brz-ed .brz-ed-form-fields-inline .brz-ed-popup-form-field-title{width:20%;font-size:14px}.brz-ed .brz-ed-form-fields-inline .brz-ed-popup-form-field-label{width:80%}.brz-ed .brz-popup{position:fixed;width:100%;height:100%;top:0;left:0}.brz-ed .brz-popup-show{z-index:9990}.brz-ed .brz-popup-content{position:absolute;top:0;left:0;width:100%;overflow:hidden;z-index:2;text-align:center;background-color:rgba(0,0,0,.7);display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.brz-ed .brz-popup-body{position:relative;max-width:850px;width:100%;padding:40px 10px;margin-bottom:70px;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.brz-ed .brz-popup-inner{width:100%;max-height:100%;overflow:auto;-ms-flex-item-align:baseline;align-self:baseline}.brz-ed .brz-popup-scroll-hidden{overflow:hidden}.brz-ed .brz-popup-preview{z-index:-1;visibility:hidden;opacity:0;-webkit-transition:.3s cubic-bezier(.25,.46,.45,.94) opacity,.3s cubic-bezier(.25,.46,.45,.94) visibility,.3s cubic-bezier(.25,.46,.45,.94) z-index;transition:.3s cubic-bezier(.25,.46,.45,.94) opacity,.3s cubic-bezier(.25,.46,.45,.94) visibility,.3s cubic-bezier(.25,.46,.45,.94) z-index}.brz-ed .brz-popup-preview.brz-popup-show{z-index:9990;visibility:visible;opacity:1;-webkit-transition:.3s cubic-bezier(.25,.46,.45,.94) opacity,.3s cubic-bezier(.25,.46,.45,.94) visibility,.3s cubic-bezier(.25,.46,.45,.94) z-index;transition:.3s cubic-bezier(.25,.46,.45,.94) opacity,.3s cubic-bezier(.25,.46,.45,.94) visibility,.3s cubic-bezier(.25,.46,.45,.94) z-index}.brz-ed .brz-ed-popup-blocks{width:380px}.brz-ed .brz-ed-popup-blocks-body .brz-ed-scroll-pane .brz-ed-tall-thumb{background-color:#d4d5d7;border-radius:2.5px}.brz-ed .brz-ed-popup-blocks-body .brz-ed-scroll-pane .brz-ed-tall-track{width:5px;right:7px}.brz-ed .brz-ed-popup-blocks-body .brz-ed-scroll-inner{width:100%;height:430px;padding:24px 28px 16px;margin-top:16px}.brz-ed .brz-ed-popup-blocks__grid{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.brz-ed .brz-ed-popup-blocks__grid__column{margin:0 12px;width:33.33%;-webkit-box-flex:1;-ms-flex:1;flex:1}.brz-ed .brz-ed-popup-block-item{position:relative;margin-bottom:24px;-webkit-box-shadow:0 -1px 10px 0 rgba(0,0,0,.07);box-shadow:0 -1px 10px 0 rgba(0,0,0,.07);overflow:hidden;margin-left:auto;margin-right:auto}.brz-ed .brz-ed-popup-block-item .brz-img{position:relative;-webkit-transform:scale(.51) translate(-50%,-50%);transform:scale(.51) translate(-50%,-50%)}.brz-ed .brz-ed-popup-block-item figcaption{position:absolute;top:0;left:0;width:100%;height:100%;background-color:rgba(41,46,55,.9);-webkit-transition:all .2s ease-in;transition:all .2s ease-in;opacity:0;cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.brz-ed .brz-ed-popup-block-item .brz-ed-container-trigger{top:50%;margin-top:-14px}.brz-ed .brz-ed-popup-block-item .brz-ed-container-trigger:hover{background-color:#3dbfe8}.brz-ed .brz-ed-popup-block-item:hover figcaption{opacity:1}.brz-ed .brz-ed-popup-block__blank{cursor:pointer;border:2px dashed #3dbfe8;background-color:#fff;height:152px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.brz-ed .brz-ed-popup-block__blank:hover{border-style:solid}.brz-ed .brz-ed-popup-block__blank .brz-ed-container-trigger{position:relative;top:auto;left:0;margin:0 13px 0 0}.brz-ed .brz-ed-popup-block__blank .brz-ed-container-trigger:hover{background-color:#3dbfe8}.brz-ed .brz-ed-popup-block__blank .brz-p{font-family:pn,"Open Sans",Arial,sans-serif;font-size:14px;font-weight:700;color:#292e37;text-transform:uppercase}@media screen and (min-height:700px){.brz-ed .brz-ed-popup-blocks-body .brz-ed-scroll-inner{height:500px}}@media (min-width:768px){.brz-ed .brz-ed-popup-blocks{width:694px}}@media screen and (min-height:840px){.brz-ed .brz-ed-popup-blocks-body .brz-ed-scroll-inner{height:634px}}@media (min-width:992px){.brz-ed .brz-ed-popup-blocks{width:1009px}}.brz-ed .brz-ed-resizer{position:absolute;z-index:1030;top:0;width:20px;height:100%;cursor:col-resize;visibility:hidden;opacity:0}.brz-ed .brz-ed-resizer--left{left:-10px}.brz-ed .brz-ed-resizer--right{right:-10px}.brz-ed .brz-ed-resizer--red .brz-ed-resizer__item{background-color:#ed2164}.brz-ed .brz-ed-resizer__item{width:8px;height:50px;position:absolute;top:50%;left:50%;border-radius:8px;-webkit-transform:translate(-3px,-50%);transform:translate(-3px,-50%);background-color:#22b0da}.brz-ed .brz-ed-resizer__popover{position:absolute;top:-18px;left:50%;-webkit-transform:translate(-50%,-100%);transform:translate(-50%,-100%);text-align:center;padding:15px 18px;min-width:135px;height:42px;border-radius:21px;color:#fff;font-family:pn,"Open Sans",Arial,sans-serif;font-weight:600;font-size:14px;line-height:1;background-color:rgba(3,8,15,.92);-webkit-box-shadow:0 0 5px 0 rgba(0,0,0,.5);box-shadow:0 0 5px 0 rgba(0,0,0,.5)}.brz-ed .brz-ed-resizer__popover:after{content:"";display:block;position:absolute;left:50%;margin-left:-6px;bottom:-6px;border-top:6px solid rgba(3,8,15,.92);border-left:6px solid transparent;border-right:6px solid transparent}.brz-ed .brz-ed-resizer__popover__divider{margin:0 7px;color:#6e787f}.brz-ed .brz-ed-resizer--dragging{z-index:1050}.brz-ed.brz-ed--mobile .brz-ed-resizer{display:none}.brz-ed .brz-ed-sidebar{font-family:pn,"Open Sans",Arial,sans-serif;position:fixed;left:0;top:0;bottom:0;width:48px;color:#fff;z-index:1060;-webkit-font-smoothing:antialiased;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.brz-ed .brz-ed-sidebar__control{background:#141923;-webkit-box-shadow:0 0 8px 0 rgba(0,0,0,.4);box-shadow:0 0 8px 0 rgba(0,0,0,.4);height:100%;position:relative;z-index:1}.brz-ed .brz-ed-sidebar__control__item{font-size:16px;color:#fff;width:48px;max-height:57px;padding-top:20px;padding-bottom:20px;line-height:1;cursor:pointer;text-align:center;-webkit-transition:color .25s ease;transition:color .25s ease;border-bottom:1px solid rgba(255,255,255,.1)}.brz-ed .brz-ed-sidebar__control__item--active,.brz-ed .brz-ed-sidebar__control__item:hover{color:#3dbfe8}.brz-ed .brz-ed-sidebar__control__item__device{padding-top:0;padding-bottom:15px;border-bottom:0}.brz-ed .brz-ed-sidebar__control__item__device:first-child{padding-top:20px}.brz-ed .brz-ed-sidebar__control__item__device:nth-child(3){padding-bottom:20px}.brz-ed .brz-ed-sidebar__control__item__menu{border-top:1px solid rgba(255,255,255,.1);border-bottom:0}.brz-ed .brz-ed-sidebar__control__item .brz-a{color:#fff;-webkit-transition:color .25s ease;transition:color .25s ease}.brz-ed .brz-ed-sidebar__control__item .brz-a:active,.brz-ed .brz-ed-sidebar__control__item .brz-a:hover{color:#3dbfe8}.brz-ed .brz-ed-sidebar__control--bottom{position:absolute;bottom:0;z-index:2;border-top:1px solid rgba(255,255,255,.1)}.brz-ed .brz-ed-sidebar__control--bottom>.brz-ed-sidebar__control__item:last-child{border-bottom-color:transparent}.brz-ed .brz-ed-sidebar__content{position:absolute;top:0;left:48px;width:280px;height:100%;background-color:#2b3039;overflow:hidden}.brz-ed .brz-ed-sidebar__content.active{-webkit-animation-name:brz-ed-shadow-animation;animation-name:brz-ed-shadow-animation;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards;-webkit-animation-duration:150ms;animation-duration:150ms;-webkit-animation-delay:.2s;animation-delay:.2s}@-webkit-keyframes brz-ed-shadow-animation{from{-webkit-box-shadow:0 0 0 transparent;box-shadow:0 0 0 transparent}to{-webkit-box-shadow:0 0 10px 0 rgba(0,0,0,.3);box-shadow:0 0 10px 0 rgba(0,0,0,.3)}}@keyframes brz-ed-shadow-animation{from{-webkit-box-shadow:0 0 0 transparent;box-shadow:0 0 0 transparent}to{-webkit-box-shadow:0 0 10px 0 rgba(0,0,0,.3);box-shadow:0 0 10px 0 rgba(0,0,0,.3)}}.brz-ed .brz-ed-sidebar__header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:100%;height:48px;background-color:#383e47;padding-left:30px;padding-right:30px}.brz-ed .brz-ed-sidebar__header__title{font-size:15px!important;font-family:pn,"Open Sans",Arial,sans-serif!important;font-weight:600!important}.brz-ed .brz-ed-sidebar__add-elements__text,.brz-ed .brz-ed-sidebar__btn,.brz-ed .brz-ed-sidebar__popover__btn,.brz-ed .brz-ed-sidebar__popover__item,.brz-ed .brz-ed-toolbar__link__input{font-family:pn,"Open Sans",Arial,sans-serif}.brz-ed .brz-ed-sidebar__header__icon{margin-left:auto;cursor:pointer}.brz-ed .brz-ed-sidebar__main{position:absolute;left:0;right:0;top:48px;bottom:0}.brz-ed .brz-ed-sidebar__footer{position:absolute;bottom:0;left:0;width:100%;height:48px;background-color:#383e47;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}.brz-ed .brz-ed-sidebar__popover{position:relative}.brz-ed .brz-ed-sidebar__popover-content{position:absolute;bottom:10px;left:58px;max-width:190px;min-width:130px;border-radius:8px;background-color:#141923;-webkit-box-shadow:0 0 5px 0 rgba(0,0,0,.5);box-shadow:0 0 5px 0 rgba(0,0,0,.5)}.brz-ed .brz-ed-sidebar__popover-content:before{content:"";position:absolute;left:-6px;bottom:18px;width:0;height:0;border-style:solid;border-width:6px 6px 6px 0;border-color:transparent #141923 transparent transparent}.brz-ed .brz-ed-sidebar__popover--deviceMode .brz-ed-sidebar__popover-content{bottom:-25px}.brz-ed .brz-ed-sidebar__popover--deviceMode .brz-ed-sidebar__popover-content:before{bottom:0;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.brz-ed .brz-ed-sidebar__popover__item{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:50px;font-size:13px;color:#fff;font-weight:600;padding:10px 25px;-webkit-transition:all .3s linear;transition:all .3s linear;white-space:nowrap;border-bottom:1px solid rgba(255,255,255,.1)}.brz-ed .brz-ed-sidebar__popover__item:last-child{border-bottom-color:transparent}.brz-ed .brz-ed-sidebar__popover__item .brz-icon-svg{margin-right:12px;font-size:12px}.brz-ed .brz-ed-sidebar__popover__item:hover{cursor:pointer;color:#3dbfe8}.brz-ed .brz-ed-sidebar__popover__item--active{color:#3dbfe8}.brz-ed .brz-ed-sidebar__popover__item .brz-span{position:relative;top:1px}.brz-ed .brz-ed-sidebar__popover__item .brz-a{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#fff;text-decoration:none;-webkit-transition:all .3s linear;transition:all .3s linear}.brz-ed .brz-ed-sidebar__popover__item .brz-a:hover{color:#3dbfe8}.brz-ed .brz-ed-sidebar__popover__btn{border-radius:2px;background-color:#0085ba;border-bottom:2px solid #006799;padding:8px 14px 6px;font-size:13px;line-height:1;text-decoration:none;color:#fff}.brz-ed .brz-ed-sidebar__popover__btn.brz-a:focus,.brz-ed .brz-ed-sidebar__popover__btn.brz-a:hover{color:#fff}.brz-ed .brz-ed-sidebar__btn{height:48px;color:#fff;-ms-flex-preferred-size:50%;flex-basis:50%;font-size:12px;letter-spacing:.5px;font-weight:600;text-transform:uppercase;text-align:center;line-height:48px}.brz-ed .brz-ed-sidebar__btn--active{background-color:#91a652}.brz-ed .brz-ed-sidebar__btn:hover{color:#fff}.brz-ed .brz-ed-sidebar-ordering{padding-top:27px}.brz-ed .brz-ed-sidebar-block-item{position:relative;padding:8px 0;margin-top:-1px;border-top:1px dashed transparent;border-bottom:1px dashed transparent}.brz-ed .brz-ed-sidebar-block-item:first-child{margin-top:12px}.brz-ed .brz-ed-sidebar-block-item:hover{border-top-color:#286b85;border-bottom-color:#286b85}.brz-ed .brz-ed-sidebar-block-item:hover .brz-ed-sidebar-block-remove{display:block}.brz-ed .brz-ed-sidebar-block-item-missing:hover:after,.brz-ed .brz-ed-sidebar-block-item.brz-ed-sidebar-block-item-placeholder .brz-ed-sidebar-block-layout,.brz-ed .brz-ed-sidebar-block-item.brz-ed-sidebar-block-item-placeholder .brz-ed-sidebar-block-remove,.brz-ed .brz-ed-sidebar-block-item.brz-ed-sidebar-block-item-placeholder-fix~.brz-ed-sidebar-block-item:hover .brz-ed-sidebar-block-layout,.brz-ed .brz-ed-sidebar-block-item.brz-ed-sidebar-block-item-placeholder-fix~.brz-ed-sidebar-block-item:hover .brz-ed-sidebar-block-remove{display:none}.brz-ed .brz-ed-sidebar-block-item:hover .brz-ed-sidebar-block-layout{opacity:1}.brz-ed .brz-ed-sidebar-block-item-missing:after{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);content:"Error";font-size:20px}.brz-ed .brz-ed-sidebar-block-item-feedback{border-top:0;opacity:.65}.brz-ed .brz-ed-sidebar-block-item-feedback .brz-ed-sidebar-block-layout{opacity:0}.brz-ed .brz-ed-sidebar-block-item.brz-ed-sidebar-block-item-helper{z-index:99999999999}.brz-ed .brz-ed-sidebar-block-item.brz-ed-sidebar-block-item-placeholder,.brz-ed .brz-ed-sidebar-block-item.brz-ed-sidebar-block-item-placeholder-fix~.brz-ed-sidebar-block-item:hover{border-top-color:transparent;border-bottom-color:transparent}.brz-ed .brz-ed-sidebar-block-image{position:relative;width:185px;border:5px solid #474c55;margin:0 auto;cursor:move;background-size:cover;background-position:center}.brz-ed .brz-ed-sidebar-block-image>.brz-img{display:block;max-width:100%}.brz-ed-sidebar-block-item.brz-ed-sidebar-block-item-placeholder .brz-ed .brz-ed-sidebar-block-image{background-image:none!important;border-color:transparent}.brz-ed-sidebar-block-item.brz-ed-sidebar-block-item-placeholder .brz-ed .brz-ed-sidebar-block-image:after{position:absolute;left:0;top:0;right:0;bottom:0;content:"";display:block;border:1px dashed #286b85;border-radius:5px}.brz-ed .brz-ed-sidebar-block-remove{display:none;position:absolute;top:50%;right:14px;-webkit-transform:translateY(-50%);transform:translateY(-50%);outline:0;cursor:pointer;font-size:20px;line-height:1;height:20px;color:#34beea}.brz-ed .brz-ed-sidebar-block-remove svg{fill:#34beea}.brz-ed .brz-ed-sidebar-block-layout{position:absolute;top:0;left:0;right:0;bottom:0;padding-right:1px;background:rgba(255,255,255,.7);text-align:center;font-size:10px;color:#fff;font-weight:600;text-transform:uppercase;opacity:0;-webkit-transition:opacity 150ms;transition:opacity 150ms}.brz-ed .brz-ed-sidebar-block-layout>.brz-span{position:absolute;top:50%;left:0;right:0}.brz-ed .brz-ed-sidebar-block-drag,.brz-ed .brz-ed-sidebar-block-drop{display:block;height:32px;width:132px;margin:-16px auto 0;border-radius:16px;background:rgba(17,17,41,.85);line-height:32px;text-align:center;letter-spacing:.01em}.brz-ed .brz-ed-sidebar__x-styling{padding:30px}.brz-ed .brz-ed-sidebar__x-styling__row{position:relative;padding:15px 0;border-bottom:1px solid rgba(255,255,255,.07)}.brz-ed .brz-ed-sidebar__x-styling__row:first-child{padding-top:0}.brz-ed .brz-ed-sidebar__x-styling__label{font-size:13px;line-height:1;margin:0 0 10px;color:#818a91}.brz-ed .brz-ed-sidebar__x-styling .brz-control__select{width:100%}.brz-ed .brz-ed-sidebar__x-styling .brz-control__select-current .brz-control__select-option{width:calc(100% - 30px)}.brz-ed .brz-ed-sidebar__x-styling .brz-control__select-option{letter-spacing:.25px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;overflow:hidden;width:100%}.brz-ed .brz-ed-sidebar__x-styling .brz-control__select-color{position:relative;width:16px;height:16px;border-radius:2px;margin-right:10px}.brz-ed .brz-ed-sidebar__styling{padding:30px;height:100%}.brz-ed .brz-ed-sidebar__styling .brz-ed-sidebar-options>[class^=brz-ed-option]{margin-bottom:30px}.brz-ed .brz-ed-sidebar-variants{height:48px;background-color:#383e47}.brz-ed .brz-ed-sidebar__wp-template{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;height:auto;padding-top:15px;padding-bottom:15px}.brz-ed .brz-ed-sidebar__wp-template .brz-ed-option__font-style-editor__title,.brz-ed .brz-ed-sidebar__wp-template .brz-ed-option__label{margin-bottom:6px}.brz-ed .brz-ed-sidebar__wp-template .brz-control__select{width:100%}.brz-ed .brz-ed-sidebar__wp-template .brz-control__select-current .brz-control__select-option{width:calc(100% - 10px)}.brz-ed .brz-ed-sidebar__wp-template .brz-control__select-current .brz-control__select--arrow{font-size:8px;margin-right:0}.brz-ed .brz-ed-sidebar__wp-template .brz-control__select-option{width:100%;text-align:left;font-weight:400}.brz-ed .brz-ed-sidebar__add-elements{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding-left:38px;padding-right:32px}.brz-ed .brz-ed-sidebar__add-elements--base{padding-top:40px;padding-bottom:0}.brz-ed .brz-ed-sidebar__add-elements__item{padding:7px 11px 14px;text-align:center;line-height:1;font-size:0}.brz-ed .brz-ed-sidebar__add-elements__item:active,.brz-ed .brz-ed-sidebar__add-elements__item:focus,.brz-ed .brz-ed-sidebar__add-elements__item:hover{cursor:move}.brz-ed .brz-ed-sidebar__add-elements__item:active .brz-ed-sidebar__add-elements__icon,.brz-ed .brz-ed-sidebar__add-elements__item:focus .brz-ed-sidebar__add-elements__icon,.brz-ed .brz-ed-sidebar__add-elements__item:hover .brz-ed-sidebar__add-elements__icon{border-color:#3dbfe8;color:#3dbfe8}.brz-ed .brz-ed-sidebar__add-elements__item:active .brz-ed-sidebar__add-elements__text,.brz-ed .brz-ed-sidebar__add-elements__item:focus .brz-ed-sidebar__add-elements__text,.brz-ed .brz-ed-sidebar__add-elements__item:hover .brz-ed-sidebar__add-elements__text{color:#3dbfe8}.brz-ed .brz-ed-sidebar__add-elements__icon{width:46px;height:46px;border:2px solid #3c424d;border-radius:4px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;color:#fff;-webkit-transition:all .2s ease-out;transition:all .2s ease-out;font-size:16px;margin-bottom:6px}.brz-ed .brz-ed-sidebar__add-elements__text{font-size:12px;font-weight:600;letter-spacing:.1px;text-transform:capitalize;color:rgba(255,255,255,.6);-webkit-transition:color .2s ease-out;transition:color .2s ease-out;margin:0 -5px;max-width:54px;display:block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.brz-ed .brz-ed-sidebar__add-elements--separator{margin:8px 49px 18px;border:0;border-top:1px solid #3c424d}.brz-ed .brz-ed-sidebar__right{right:0;left:auto;width:auto}.brz-ed .brz-ed-sidebar__right .brz-ed-sidebar__content{left:auto;right:0}.brz-ed .brz-ed-collapsible-wrap,.brz-ed .brz-ed-collapsible__toolbar,.brz-ed .brz-ed-toolbar{left:0;top:0;position:absolute}.brz-ed .brz-ed-sidebar__right .brz-ed-sidebar__content.active{-webkit-animation-name:shadow-animation;animation-name:shadow-animation}@-webkit-keyframes shadow-animation{from{-webkit-box-shadow:0 0 0 transparent;box-shadow:0 0 0 transparent}to{-webkit-box-shadow:0 0 10px 0 rgba(0,0,0,.3);box-shadow:0 0 10px 0 rgba(0,0,0,.3)}}@keyframes shadow-animation{from{-webkit-box-shadow:0 0 0 transparent;box-shadow:0 0 0 transparent}to{-webkit-box-shadow:0 0 10px 0 rgba(0,0,0,.3);box-shadow:0 0 10px 0 rgba(0,0,0,.3)}}.brz-ed .brz-ed-sidebar__right .brz-ed-sidebar__main{padding:17px 30px 30px}.brz-ed .brz-ed-sidebar__right .brz-ed-sidebar__main .brz-ed-control__tabs{margin-bottom:15px;padding-left:0;padding-right:0}.brz-ed .brz-ed-sidebar__right__option{padding:15px 0}.brz-ed .brz-ed-sidebar__right__option.brz-ed-option__input{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.brz-ed .brz-ed-sidebar__right__option.brz-ed-option__input .brz-ed-option__font-style-editor__title,.brz-ed .brz-ed-sidebar__right__option.brz-ed-option__input .brz-ed-option__label{margin-bottom:7px}.brz-ed .brz-ed-sidebar-row,.brz-ed .brz-ed-sidebar-row .brz-ed-options-field,.brz-ed .brz-ed-sidebar__right__tabs .brz-ed-control__tab__content>.brz-ed-options-field{margin-bottom:15px}.brz-ed .brz-ed-sidebar__right__option.brz-ed-option__input .brz-ed-control__input{width:100%;max-width:100%}.brz-ed .brz-ed-sidebar__right--animation-enter{-webkit-transform:translateX(280px);transform:translateX(280px);will-change:transform}.brz-ed .brz-ed-sidebar__right--animation-enter-active{-webkit-transform:translateX(0);transform:translateX(0);-webkit-transition:-webkit-transform .3s ease;transition:-webkit-transform .3s ease;transition:transform .3s ease;transition:transform .3s ease,-webkit-transform .3s ease;will-change:transform}.brz-ed .brz-ed-sidebar__right--animation-leave{-webkit-transform:translateX(0);transform:translateX(0);will-change:transform}.brz-ed .brz-ed-sidebar__right--animation-leave-active{-webkit-transform:translateX(280px);transform:translateX(280px);-webkit-transition:-webkit-transform .3s ease;transition:-webkit-transform .3s ease;transition:transform .3s ease;transition:transform .3s ease,-webkit-transform .3s ease;will-change:transform}.brz-ed .brz-ed-sidebar__right__scroll .brz-ed-tall-track{top:42px!important;height:calc(100% - 42px)!important;right:-25px!important}.brz-ed .brz-ed-sidebar-options{height:100%}.brz-ed .brz-ed-sidebar__right__tabs .brz-ed-control__tabs{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;color:#fff;margin-bottom:15px}.brz-ed .brz-ed-sidebar__right__tabs .brz-ed-control__tabs .brz-ed-control__tab{margin-right:20px;position:relative;min-height:30px}.brz-ed .brz-ed-sidebar__right__tabs .brz-ed-control__tabs .brz-ed-control__tab:not(:last-child){margin-right:19px}.brz-ed .brz-ed-sidebar__right__tabs .brz-ed-control__tabs .brz-ed-control__tab:after{display:none}.brz-ed .brz-ed-sidebar__right__tabs .brz-ed-control__tabs .brz-ed-control__tab.active:before{content:"";position:absolute;bottom:-1px;height:2px;background-color:currentColor;width:100%}.brz-ed .brz-ed-sidebar__right__tabs .brz-ed-options-tabs-helpers{font-size:12px}.brz-ed .brz-ed-sidebar-row{padding-bottom:15px;border-bottom:1px solid #3a3f47}.brz-ed .brz-ed-sidebar-row .brz-ed-options-field:last-child{margin-bottom:0}.brz-ed .brz-ed-sidebar__right__option .brz-control__select-option{max-width:106px;overflow:hidden;text-overflow:ellipsis}.brz-ed .brz-ed-toolbar{z-index:1070;will-change:top,right,bottom,left}.brz-ed .brz-ed-toolbar__items{background-color:rgba(3,8,15,.92);-webkit-box-shadow:0 0 5px 0 rgba(0,0,0,.5);box-shadow:0 0 5px 0 rgba(0,0,0,.5);border-radius:42px;padding-left:6px;padding-right:6px}.brz-ed .brz-ed-toolbar__item{height:42px;font-size:16px;line-height:1;color:#fff;border-left:1px solid rgba(255,255,255,.15);margin-left:-1px;-webkit-transition:.15s linear color;transition:.15s linear color}.brz-ed .brz-ed-toolbar__item:first-child{border-left-color:transparent}.brz-ed .brz-ed-toolbar__item:hover .brz-ed-tooltip__content{color:#3dbfe8;-webkit-transition:.15s linear color;transition:.15s linear color}.brz-ed .brz-ed-toolbar__item:hover .brz-ed-tooltip__content .brz-ed-popover__tooltip--icon-custom{border-color:#3dbfe8}.brz-ed .brz-ed-popover__tooltip .brz-ed-tooltip__content:not(.brz-ed-popover__tooltip),.brz-ed .brz-ed-toolbar__option:not(.brz-ed-popover__tooltip){padding:13px;font-size:16px;display:block;cursor:pointer}.brz-ed .brz-ed-toolbar--active{color:#3dbfe8!important}.brz-ed .brz-ed-toolbar__arrow{width:auto}.brz-ed .brz-ed-toolbar__arrow:after{left:0}.brz-ed .brz-ed-collapsible-wrap{z-index:1050}.brz-ed .brz-ed-collapsible__icon{position:absolute;top:0;left:0;background-color:rgba(3,8,15,.92);-webkit-box-shadow:0 0 5px 0 rgba(0,0,0,.5);box-shadow:0 0 5px 0 rgba(0,0,0,.5);color:#fff;cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-transition:.15s linear color;transition:.15s linear color}.brz-ed .brz-ed-collapsible__icon:hover{color:#3dbfe8}.brz-ed .brz-ed-collapsible--big .brz-ed-collapsible__icon{width:42px;height:42px;border-radius:42px;font-size:14px;line-height:46px}.brz-ed .brz-ed-collapsible--big .brz-ed-collapsible__toolbar{border-radius:42px}.brz-ed .brz-ed-collapsible--small .brz-ed-collapsible__icon{width:32px;height:32px;border-radius:32px;font-size:12px;line-height:36px}.brz-ed .brz-ed-collapsible--small .brz-ed-collapsible__toolbar{border-radius:32px}.brz-ed .brz-ed-collapsible__toolbar .brz-ed-toolbar{position:static;top:auto;right:auto;padding:0}.brz-ed .brz-ed-collapsible__section{font-size:0!important;line-height:0!important;width:0!important;height:0!important;margin:0!important;padding:0!important}.brz-ed .brz-ed-collapsible__section .brz-ed-collapsible-wrap{top:36px;right:40px;left:auto}.brz-ed .brz-ed-collapsible__section .brz-ed-collapsible__icon{visibility:hidden;opacity:0;-webkit-transition:opacity .1s linear;transition:opacity .1s linear}.brz-ed .brz-ed-collapsible__section .brz-ed-collapsible__icon,.brz-ed .brz-ed-collapsible__section .brz-ed-collapsible__toolbar{right:0;left:auto;margin:4px 0 4px 4px}.brz-ed .brz-ed-collapsible__toolbar.animation-right-left-enter{overflow:hidden}.brz-ed .brz-ed-collapsible__toolbar.animation-right-left-enter .brz-ed-toolbar{-webkit-transform:translate3d(96px,0,0);transform:translate3d(96px,0,0)}.brz-ed .brz-ed-collapsible__toolbar.animation-right-left-enter-active{overflow:hidden}.brz-ed .brz-ed-collapsible__toolbar.animation-right-left-enter-active .brz-ed-toolbar{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);-webkit-transition:-webkit-transform 150ms linear;transition:-webkit-transform 150ms linear;transition:transform 150ms linear;transition:transform 150ms linear,-webkit-transform 150ms linear}.brz-ed .brz-ed-collapsible__toolbar.animation-right-left-exit{overflow:hidden}.brz-ed .brz-ed-collapsible__toolbar.animation-right-left-exit .brz-ed-toolbar{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);-webkit-transition:-webkit-transform 150ms linear;transition:-webkit-transform 150ms linear;transition:transform 150ms linear;transition:transform 150ms linear,-webkit-transform 150ms linear}.brz-ed .brz-ed-collapsible__toolbar.animation-right-left-exit-active{overflow:hidden}.brz-ed .brz-ed-collapsible__toolbar.animation-right-left-exit-active .brz-ed-toolbar{-webkit-transform:translate3d(96px,0,0);transform:translate3d(96px,0,0);-webkit-transition:-webkit-transform 150ms linear;transition:-webkit-transform 150ms linear;transition:transform 150ms linear;transition:transform 150ms linear,-webkit-transform 150ms linear}.brz-ed .brz-ed-collapsible__toolbar.animation-left-right-enter{overflow:hidden}.brz-ed .brz-ed-collapsible__toolbar.animation-left-right-enter .brz-ed-toolbar{-webkit-transform:translate3d(-96px,0,0);transform:translate3d(-96px,0,0)}.brz-ed .brz-ed-collapsible__toolbar.animation-left-right-enter-active{overflow:hidden}.brz-ed .brz-ed-collapsible__toolbar.animation-left-right-enter-active .brz-ed-toolbar{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);-webkit-transition:-webkit-transform 150ms linear;transition:-webkit-transform 150ms linear;transition:transform 150ms linear;transition:transform 150ms linear,-webkit-transform 150ms linear}.brz-ed .brz-ed-collapsible__toolbar.animation-left-right-exit{overflow:hidden}.brz-ed .brz-ed-collapsible__toolbar.animation-left-right-exit .brz-ed-toolbar{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);-webkit-transition:-webkit-transform 150ms linear;transition:-webkit-transform 150ms linear;transition:transform 150ms linear;transition:transform 150ms linear,-webkit-transform 150ms linear}.brz-ed .brz-ed-collapsible__toolbar.animation-left-right-exit-active{overflow:hidden}.brz-ed .brz-ed-collapsible__toolbar.animation-left-right-exit-active .brz-ed-toolbar{-webkit-transform:translate3d(-96px,0,0);transform:translate3d(-96px,0,0);-webkit-transition:-webkit-transform 150ms linear;transition:-webkit-transform 150ms linear;transition:transform 150ms linear;transition:transform 150ms linear,-webkit-transform 150ms linear}.brz-ed .fadeCollapsibleIcon-enter{opacity:.01}.brz-ed .fadeCollapsibleIcon-enter.fadeCollapsibleIcon-enter-active{opacity:1;-webkit-transition:opacity 150ms ease-in;transition:opacity 150ms ease-in}.brz-ed .fadeCollapsibleIcon-exit{opacity:1}.brz-ed .fadeCollapsibleIcon-exit.fadeCollapsibleIcon-exit-active{opacity:.01;-webkit-transition:opacity 150ms ease-in;transition:opacity 150ms ease-in}.brz-ed.brz-ed--desktop .brz-ed-static__toolbar--mobile,.brz-ed.brz-ed--mobile .brz-ed-static__toolbar--desktop{display:none}.brz-ed .brz-ed-static__toolbar{position:relative}.brz-ed .brz-ed-static__toolbar .brz-ed-toolbar{left:0;top:0}.brz-ed .brz-ed-static__toolbar .brz-ed-toolbar__items{background-color:#879294;-webkit-box-shadow:none;box-shadow:none;padding-left:0;padding-right:0}.brz-ed .brz-ed-static__toolbar .brz-ed-toolbar__item{height:30px;margin-left:0;border-left-color:#a3abad}.brz-ed .brz-ed-static__toolbar .brz-ed-toolbar__item:hover{background-color:#6c7576;color:#fff;-webkit-transition:background-color .2s linear;transition:background-color .2s linear;border-left-color:#a3abad}.brz-ed .brz-ed-popover__tooltip .brz-ed-static__toolbar .brz-ed-tooltip__content:hover,.brz-ed .brz-ed-static__toolbar .brz-ed-option__button:hover,.brz-ed .brz-ed-static__toolbar .brz-ed-popover__tooltip .brz-ed-tooltip__content:hover,.brz-ed .brz-ed-static__toolbar .brz-ed-popover__tooltip.brz-ed-tooltip--opened .brz-ed-tooltip__content,.brz-ed .brz-ed-static__toolbar .brz-ed-toolbar__item .brz-ed-tooltip__content,.brz-ed .brz-ed-static__toolbar .brz-ed-toolbar__item>.brz-ed-option__advanced:hover,.brz-ed .brz-ed-static__toolbar .brz-ed-toolbar__option:hover{color:inherit}.brz-ed .brz-ed-static__toolbar .brz-ed-toolbar__item:first-child{padding-left:2px;border-top-left-radius:30px;border-bottom-left-radius:30px;border-left-color:transparent}.brz-ed .brz-ed-static__toolbar .brz-ed-toolbar__item:last-child{padding-right:2px;border-top-right-radius:30px;border-bottom-right-radius:30px}.brz-ed .brz-ed-static__toolbar .brz-ed-toolbar__item>.brz-ed-option__advanced .brz-icon-svg{font-size:12px}.brz-ed .brz-ed-popover__tooltip .brz-ed-static__toolbar .brz-ed-tooltip__content:not(.brz-ed-popover__tooltip),.brz-ed .brz-ed-static__toolbar .brz-ed-popover__tooltip .brz-ed-tooltip__content:not(.brz-ed-popover__tooltip),.brz-ed .brz-ed-static__toolbar .brz-ed-toolbar__option:not(.brz-ed-popover__tooltip){font-size:12px;padding:8px 10px}.brz-ed .brz-ed-column__toolbar,.brz-ed .brz-ed-row__toolbar{position:absolute;top:-7px;visibility:hidden;opacity:0;-webkit-transition:visibility .15s linear,opacity .15s linear;transition:visibility .15s linear,opacity .15s linear}.brz-ed .brz-ed-row__toolbar{left:-10px;z-index:1070}.brz-ed .brz-ed-column__toolbar{right:-7px;z-index:1040}.brz-ed.brz-ed--mobile .brz-ed-collapsible-wrap{right:20px}.brz-ed .brz-ed-popover__tooltip.brz-ed-tooltip--opened .brz-ed-tooltip__content{color:#3dbfe8}.brz-ed .brz-ed-popover__tooltip.brz-ed-tooltip--opened .brz-ed-tooltip__content .brz-ed-popover__tooltip--icon-custom{border-color:#3dbfe8}.brz-ed .brz-ed-popover__tooltip--icon-custom{width:16px;height:16px;border:2px solid #fff;border-radius:2px;-webkit-transition:border-color .2s linear;transition:border-color .2s linear}.brz-ed .brz-ed-tooltip__overlay{background-color:rgba(3,8,15,.92);-webkit-box-shadow:0 0 5px 0 rgba(0,0,0,.5);box-shadow:0 0 5px 0 rgba(0,0,0,.5);border-radius:8px}.brz-ed .brz-ed-toolbar__fonts{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.brz-ed .brz-ed-font__typography{height:217px;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-right:1px solid rgba(255,255,255,.15);overflow:hidden;padding:7px 3px 7px 0}.brz-ed .brz-ed-font__right{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;padding:22px 17px 0}.brz-ed .brz-ed-font__name{-webkit-transition:color .2s linear;transition:color .2s linear;padding-bottom:15px;padding-left:27px;line-height:1;color:#fff;cursor:pointer}.brz-ed .brz-ed-font__name.active,.brz-ed .brz-ed-font__name:hover{-webkit-transition:color .2s linear;transition:color .2s linear;color:#3ebfe8}.brz-ed .brz-ed-font__name:first-child{padding-top:15px}.brz-ed .brz-ed-font__separator{width:50px;height:1px;padding:0;margin:0 0 17px 27px;border:0;background-color:rgba(255,255,255,.3)}.brz-ed .brz-ed-font-field{margin-bottom:18px}.brz-ed .brz-ed-font__label{color:#818a91;font-size:13px;margin-bottom:8px}.brz-ed .brz-ed-toolbar__link__anchor,.brz-ed .brz-ed-toolbar__link__custom,.brz-ed .brz-ed-toolbar__link__popup,.brz-ed .brz-ed-toolbar__link__upload{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-wrap:wrap;flex-wrap:wrap;min-height:46px!important;padding:0!important;font-family:pn,"Open Sans",Arial,sans-serif}.brz-ed .brz-ed-toolbar__link__icon{padding-right:14px;padding-left:10px;color:#fff}.brz-ed .brz-ed-toolbar__link__title{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;max-width:100%;font-size:14px;padding-left:17px}.brz-ed .brz-ed-toolbar__link__label{cursor:pointer;width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.brz-ed .brz-ed-toolbar__link--save,.brz-ed .brz-ed-toolbar__link__icon{font-size:16px;line-height:45px;text-align:center;cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.brz-ed .brz-ed-toolbar__link--save{width:46px;-webkit-box-flex:1;-ms-flex:1 0 46px;flex:1 0 46px;max-width:46px;height:45px;color:rgba(255,255,255,.25);border-left:1px solid rgba(255,255,255,.15)}.brz-ed .brz-ed-toolbar__link__input{background-color:transparent;border:none;outline:0;color:#fff;font-size:14px;width:100%;font-style:normal;font-weight:400;letter-spacing:0;line-height:1}.brz-ed .brz-ed-toolbar__link__input::-webkit-input-placeholder{color:rgba(255,255,255,.2);font-style:italic}.brz-ed .brz-ed-toolbar__link__input:-moz-placeholder{color:rgba(255,255,255,.2);font-style:italic}.brz-ed .brz-ed-toolbar__link__input::-moz-placeholder{color:rgba(255,255,255,.2);font-style:italic}.brz-ed .brz-ed-toolbar__link__input:-ms-input-placeholder{color:rgba(255,255,255,.2);font-style:italic}.brz-ed .brz-ed-toolbar__link__upload-name{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;max-width:170px;white-space:nowrap;overflow:hidden}.brz-ed .brz-ed-toolbar__link__popup .brz-ed-toolbar__link__title{cursor:pointer;font-style:italic}.brz-ed .brz-ed-toolbar__link__anchor .brz-ed-toolbar__link__icon{z-index:1}.brz-ed .brz-ed-toolbar__link__anchor .brz-ed-toolbar__link__title{margin-left:-17px}.brz-ed .brz-ed-link__list{color:#fff;font-size:14px;line-height:1;padding-top:8px;padding-bottom:8px;padding-right:4px}.brz-ed .brz-ed-control__colorPicker__group,.brz-ed .brz-ed-control__colorPicker__label{font-family:pn,"Open Sans",Arial,sans-serif;font-size:13px}.brz-ed .brz-ed-link__list-item{cursor:pointer;padding-top:8px;padding-bottom:9px;padding-left:20px;-webkit-transition:.2s linear color;transition:.2s linear color}.brz-ed .brz-ed-link__list-item:hover{color:#3dbfe8;-webkit-transition:.2s linear color;transition:.2s linear color}.brz-ed .brz-ed-control__colorPicker .minicolors-opacity-slider,.brz-ed .brz-ed-control__colorPicker .minicolors-slider{width:12px;border-radius:3px}.brz-ed .brz-ed-control__colorPicker .minicolors-opacity-slider .minicolors-picker,.brz-ed .brz-ed-control__colorPicker .minicolors-slider .minicolors-picker{margin-left:1px;margin-right:1px}.brz-ed .brz-ed-control__colorPicker .minicolors-slider{left:162px}.brz-ed .brz-ed-control__colorPicker .minicolors-slider .minicolors-picker:after{height:8px;margin-top:-7px;margin-bottom:-7px}.brz-ed .brz-ed-control__colorPicker .minicolors-opacity-slider{left:184px}.brz-ed .brz-ed-control__colorPicker .minicolors-opacity-slider .minicolors-picker{position:absolute;top:0;left:-2px;right:-2px;height:8px;margin-top:-7px;margin-bottom:-7px;border-radius:50%;background:0 0;border:3px solid #fff;-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-shadow:0 0 3px rgba(0,0,0,.5);box-shadow:0 0 3px rgba(0,0,0,.5)}.brz-ed .brz-ed-control__colorPicker .minicolors .minicolors-grid{border-radius:3px}.brz-ed .brz-ed-control__colorPicker__footer{position:relative;padding-top:3px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row nowrap;flex-flow:row nowrap}.brz-ed .brz-ed-control__colorPicker__group{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.brz-ed .brz-ed-control__colorPicker__group:not(:last-child){margin-right:12px}.brz-ed .brz-ed-control__colorPicker__group .brz-input{width:60px;border:0;background-color:transparent;text-transform:uppercase;color:#818a91;outline:0;text-align:center;padding:0;float:none}.brz-ed .brz-ed-control__colorPicker__opacity .brz-input{width:30px}.brz-ed .brz-ed-control__colorPicker__label{margin-right:3px;color:rgba(129,138,145,.5);font-style:normal;font-weight:400;line-height:1;letter-spacing:0;text-transform:capitalize}.brz-ed .brz-ed-control__colorPicker__label+.brz-input:after{content:'';position:absolute;bottom:-2px;right:0;width:100%;border-bottom:1px solid rgba(129,138,145,.3)}.brz-ed .brz-ed-popover__color-picker .brz-ed-tooltip--medium{width:auto}.brz-ed .brz-ed-border{position:relative}.brz-ed .brz-ed-border.active>.brz-ed-cloneable__buttons .brz-ed-static__toolbar .brz-ed-toolbar,.brz-ed .brz-ed-border.active>.brz-ed-collapsible__section .brz-ed-collapsible__icon,.brz-ed .brz-ed-border.active>.brz-ed-column__toolbar,.brz-ed .brz-ed-border.active>.brz-ed-resizer,.brz-ed .brz-ed-border.active>.brz-ed-row__toolbar{visibility:visible;opacity:1;-webkit-transition:visibility .15s linear,opacity .15s linear;transition:visibility .15s linear,opacity .15s linear}.brz-ed .brz-ed-border.active>.brz-ed-resizer{-webkit-transition:none;transition:none}.brz-ed .brz-ed-border__inner-1:after,.brz-ed .brz-ed-border__inner-1:before,.brz-ed .brz-ed-border__inner-2:after,.brz-ed .brz-ed-border__inner-2:before{visibility:hidden;opacity:0;content:"";position:absolute;border-color:transparent;border-width:0;z-index:1030;-webkit-transition:visibility .15s linear,opacity .15s linear;transition:visibility .15s linear,opacity .15s linear}.brz-ed .brz-ed-border__inner-1:after{left:-2px;right:-2px;top:-2px;border-top-width:2px}.brz-ed .brz-ed-border__inner-1:before{top:-2px;bottom:-2px;left:-2px;border-left-width:2px}.brz-ed .brz-ed-border__inner-2:after{left:-2px;right:-2px;bottom:-2px;border-top-width:2px}.brz-ed .brz-ed-border__inner-2:before{top:-2px;bottom:-2px;right:-2px;border-left-width:2px}.brz-ed .brz-ed-border--active:after,.brz-ed .brz-ed-border--active:before{visibility:visible!important;opacity:1!important;-webkit-transition:visibility .15s linear,opacity .15s linear;transition:visibility .15s linear,opacity .15s linear}.brz-ed .brz-ed-border--grey:after,.brz-ed .brz-ed-border--grey:before{border-color:#879294}.brz-ed .brz-ed-border--grey.brz-ed-border--dashed:after{background-image:-webkit-gradient(linear,left top,right top,color-stop(44%,#879294),color-stop(0,rgba(255,255,255,0)));background-image:linear-gradient(to right,#879294 44%,rgba(255,255,255,0) 0)}.brz-ed .brz-ed-border--grey.brz-ed-border--dashed:before{background-image:-webkit-gradient(linear,left top,left bottom,color-stop(44%,#879294),color-stop(0,rgba(255,255,255,0)));background-image:linear-gradient(#879294 44%,rgba(255,255,255,0) 0)}.brz-ed .brz-ed-border--blue:after,.brz-ed .brz-ed-border--blue:before{border-color:#22b0da}.brz-ed .brz-ed-border--blue.brz-ed-border--dashed:after{background-image:-webkit-gradient(linear,left top,right top,color-stop(44%,#22b0da),color-stop(0,rgba(255,255,255,0)));background-image:linear-gradient(to right,#22b0da 44%,rgba(255,255,255,0) 0)}.brz-ed .brz-ed-border--blue.brz-ed-border--dashed:before{background-image:-webkit-gradient(linear,left top,left bottom,color-stop(44%,#22b0da),color-stop(0,rgba(255,255,255,0)));background-image:linear-gradient(#22b0da 44%,rgba(255,255,255,0) 0)}.brz-ed .brz-ed-border--red:after,.brz-ed .brz-ed-border--red:before{border-color:#ed2164}.brz-ed .brz-ed-border--red.brz-ed-border--dashed:after{background-image:-webkit-gradient(linear,left top,right top,color-stop(44%,#ed2164),color-stop(0,rgba(255,255,255,0)));background-image:linear-gradient(to right,#ed2164 44%,rgba(255,255,255,0) 0)}.brz-ed .brz-ed-border--red.brz-ed-border--dashed:before{background-image:-webkit-gradient(linear,left top,left bottom,color-stop(44%,#ed2164),color-stop(0,rgba(255,255,255,0)));background-image:linear-gradient(#ed2164 44%,rgba(255,255,255,0) 0)}.brz-ed .brz-ed-border--dashed:after,.brz-ed .brz-ed-border--dashed:before{border-style:dashed;border-color:transparent}.brz-ed .brz-ed-border--dashed:after{background-position:11px bottom;background-size:8px 2px;background-repeat:repeat-x}.brz-ed .brz-ed-border--dashed:before{background-position:right 11px;background-size:2px 8px;background-repeat:repeat-y}.brz-ed .brz-ed-border--solid:after,.brz-ed .brz-ed-border--solid:before{border-style:solid}.brz-ed .brz-ed-border--dotted:after,.brz-ed .brz-ed-border--dotted:before{border-style:dotted}.brz-ed .brz-ed-border--active-dotted:after,.brz-ed .brz-ed-border--active-dotted:before{border-style:dotted!important}.brz-ed .brz-ed-border--active-solid:after,.brz-ed .brz-ed-border--active-solid:before{background:#22b0da;border-style:solid!important}.brz-ed .brz-ed-border--active-dashed:after,.brz-ed .brz-ed-border--active-dashed:before{border-style:dashed!important}.brz-ed .brz-ed-border--no-space.brz-ed-border__inner-1:after{left:0;right:0;top:0}.brz-ed .brz-ed-border--no-space.brz-ed-border__inner-1:before{top:0;bottom:0;left:0}.brz-ed .brz-ed-border--no-space.brz-ed-border__inner-2:after{left:0;right:0;bottom:0}.brz-ed .brz-ed-border--no-space.brz-ed-border__inner-2:before{top:0;bottom:0;right:0}.brz-ed .brz-ed-cloneable__buttons{position:absolute;top:-18px;right:19px;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;z-index:1031}.brz-ed .brz-ed-cloneable__buttons .brz-ed-static__toolbar .brz-ed-toolbar{visibility:hidden;opacity:0;right:0;left:auto}.brz-ed.brz-ed--mobile .brz-bg-video .brz-iframe{display:none!important}.brz-ed .brz-ed-container-wrap{position:relative;height:2px;margin-top:-2px;background-color:#3dbfe8;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.brz-ed .brz-ed-container-wrap .floating-action-button{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.brz-ed .brz-ed-container-plus{position:relative;z-index:1020}.brz-ed .brz-ed-container-trigger{position:absolute;left:50%;top:-25px;margin-left:-27px;width:54px;height:54px;border-radius:50%;background-color:#3dbfe8;cursor:pointer;z-index:10;-webkit-transition:background .2s linear;transition:background .2s linear}.brz-ed .brz-ed-container-trigger:after,.brz-ed .brz-ed-container-trigger:before{position:absolute;top:50%;left:50%;content:"";display:block;background:#fff;width:2px;height:16px;margin:-8px 0 0 -1px;-webkit-transition:-webkit-transform .2s linear;transition:-webkit-transform .2s linear;transition:transform .2s linear;transition:transform .2s linear,-webkit-transform .2s linear}.brz-ed .brz-ed-container-block,.brz-ed .brz-ed-container-tab-item{display:inline-block;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;cursor:pointer}.brz-ed .brz-ed-container-trigger:before{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.brz-ed .brz-ed-container-trigger:hover{background:#03080f}.brz-ed .brz-ed-container-trigger--small{width:28px;height:28px;top:-13px;margin-left:-14px}.brz-ed .brz-ed-container-trigger--small:after,.brz-ed .brz-ed-container-trigger--small:before{height:12px;margin:-6px 0 0 -1px}.brz-ed .brz-ed-container-container{position:absolute;left:0;right:0;top:0;bottom:0;overflow:hidden}.brz-ed .brz-ed-container-content{position:absolute;left:0;right:0;top:2px;bottom:2px;background:#343941;opacity:0;-webkit-transition:top .2s,bottom .2s,opacity .2s;transition:top .2s,bottom .2s,opacity .2s}.brz-ed .brz-ed-container-content-in{position:absolute;top:50%;left:0;right:0;height:398px;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.brz-ed .brz-ed-container-open .brz-ed-container-content{top:8px;bottom:8px;opacity:1}.brz-ed .brz-ed-container-open .brz-ed-container-trigger{background:#03080f}.brz-ed .brz-ed-container-open .brz-ed-container-trigger:after{-webkit-transform:rotate(45deg);transform:rotate(45deg)}.brz-ed .brz-ed-container-open .brz-ed-container-trigger:before{-webkit-transform:rotate(135deg);transform:rotate(135deg)}.brz-ed .brz-ed-container-tabs{padding:31px 0 23px;text-align:center;font-size:1px}.brz-ed .brz-ed-container-block .brz-ed-container-title,.brz-ed .brz-ed-container-tab-item{font-family:pn,"Open Sans",Arial,sans-serif;text-transform:uppercase;font-size:11px;font-weight:600}.brz-ed .brz-ed-container-tabs>*+*{margin-left:5px}.brz-ed .brz-ed-container-tab-item{height:30px;line-height:32px;border-radius:15px;padding:0 14px;letter-spacing:.01em;color:#bfbfbf;user-select:none;-webkit-font-smoothing:antialiased}.brz-ed .brz-ed-container-tab-active{background:#03080f;color:#fff}.brz-ed .brz-ed-container-blocks-items{position:absolute;left:0;width:100%;bottom:-4px;white-space:nowrap;height:314px}.brz-ed .brz-ed-container-blocks-items-in{padding-top:14px}.brz-ed .brz-ed-container-blocks-items-scroll{width:100%!important;height:100%;overflow:hidden}.brz-ed .brz-ed-container-block{position:relative;width:300px;height:188px;margin-left:13px;-webkit-box-shadow:1px 1px 9px rgba(0,0,0,.6);box-shadow:1px 1px 9px rgba(0,0,0,.6);overflow:hidden;user-select:none}.brz-ed .brz-ed-container-block .brz-img{position:absolute;top:0;left:0;height:188px}.brz-ed .brz-ed-container-block:after{content:"";display:block;position:absolute;top:0;left:0;right:0;bottom:0;background:rgba(41,46,55,.8);opacity:0;-webkit-transition:opacity 150ms;transition:opacity 150ms}.brz-ed .brz-ed-container-block.brz-ed-container-block-hover:after{opacity:1}.brz-ed .brz-ed-container-block .brz-ed-container-title{text-align:center;line-height:16px;position:absolute;left:0;right:0;bottom:-16px;color:#fff;-webkit-transition:bottom .2s;transition:bottom .2s;z-index:2}.brz-ed .brz-ed-wrap-block-empty-page-heading,.brz-ed .brz-ed-wrap-block-empty-page-heading2{font-size:15px;font-family:pn,"Open Sans",Arial,sans-serif}.brz-ed .brz-ed-container-block.brz-ed-container-block-hover .brz-ed-container-title{bottom:10px}.brz-ed .brz-ed-container-block-btn{position:absolute;top:-10%;left:50%;margin:-27px 0 0 -27px;width:54px;height:54px;border-radius:50%;background:#34beea;cursor:pointer;opacity:0;-webkit-transition:top .2s,opacity .2s;transition:top .2s,opacity .2s;z-index:1}.brz-ed .brz-ed-container-block-btn:after,.brz-ed .brz-ed-container-block-btn:before{position:absolute;top:50%;left:50%;content:"";display:block;background:#fff;width:2px;height:16px;margin:-8px 0 0 -1px;-webkit-transition:-webkit-transform .2s;transition:-webkit-transform .2s;transition:transform .2s;transition:transform .2s,-webkit-transform .2s}.brz-ed .brz-ed-container-block-btn:before{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.brz-ed .brz-ed-container-block.brz-ed-container-block-hover .brz-ed-container-block-btn{top:50%;opacity:1}.brz-ed .brz-ed-container-whiteout{position:fixed;left:0;top:0;right:0;bottom:0;background:#fff;visibility:hidden;-webkit-transition:opacity 250ms;transition:opacity 250ms}.brz-ed .brz-ed-container-whiteout.brz-ed-container-whiteout-show{visibility:visible;opacity:.75}.brz-ed .brz-ed-wrap-block-empty-page{position:absolute;left:50%;top:50%;width:420px;height:300px;cursor:pointer;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);background-color:#fff;text-align:center;border-radius:5px;border:2px dashed #3dbfe8;padding:62px 0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.brz-ed .brz-ed-wrap-block-empty-page-heading{font-weight:bolder;color:#292e37}.brz-ed .brz-ed-wrap-block-empty-page-heading2{font-style:italic;color:#9da0a6}.brz-ed .brz-ed-wrap-block-item{background-color:#fff}.brz-ed .brz-ed-wrap-block-item:nth-last-child(2){-webkit-box-shadow:0 15px 15px -10px rgba(0,0,0,.1);box-shadow:0 15px 15px -10px rgba(0,0,0,.1)}.brz-ed .brz-ed-wrap-block-item .brz-ed-container-wrap{visibility:hidden;opacity:0;-webkit-transition:visibility .15s linear,opacity .15s linear;transition:visibility .15s linear,opacity .15s linear}.brz-ed .brz-ed-wrap-block-item .brz-ed-container-wrap.brz-ed-container-open,.brz-ed .brz-ed-wrap-block-item.brz-ed-under-bar .brz-ed-container-wrap,.brz-ed .brz-ed-wrap-block-item:hover .brz-ed-container-wrap{visibility:visible;opacity:1}.brz-ed.brz-ed--mobile .brz-ed-container-plus{display:none}@media screen and (max-width:1400px){.brz-ed .brz-ed-wrap-block-empty-page{width:360px;height:258px;padding:40px 0}}.brz-ed div[contenteditable],.brz-ed span[contenteditable]{background:-webkit-gradient(linear,left top,left bottom,from(transparent),color-stop(50%,transparent),color-stop(50%,#000),color-stop(50%,#000),color-stop(50%,transparent),to(transparent));background:linear-gradient(transparent 0,transparent 50%,#000 50%,#000 50%,transparent 50%,transparent 100%);cursor:text}.brz-ed div[contenteditable]:focus,.brz-ed span[contenteditable]:focus{outline:0}.brz-ed div[contenteditable].brz-ed-content-editable-noTransitions *,.brz-ed div[contenteditable]:focus *,.brz-ed span[contenteditable].brz-ed-content-editable-noTransitions *,.brz-ed span[contenteditable]:focus *{-webkit-animation-duration:0s!important;animation-duration:0s!important;-webkit-animation-delay:0s!important;animation-delay:0s!important}.brz-ed .brz-ed-content-editable-wrap{position:relative}.brz-ed .brz-ed-content-editable-wrap *{cursor:default}.brz-ed .brz-ed-content-editable-wrap .ql-clipboard{left:-100000px;height:1px;overflow-y:hidden;position:absolute;top:50%}.brz-ed .brz-ed-content-editable-wrap.brz-ed-content-editable-focus *{cursor:auto}.brz-ed #brz-ed-iframe{display:block;width:100%;min-height:100vh;margin:0 auto;border:0;outline:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.brz-ed #brz-ed-iframe.brz-ed-iframe--desktop{width:calc(100% - 48px)!important}.brz-ed .brz-ed-iframe--desktop{min-width:1170px;margin-left:48px!important;max-width:100%;-webkit-box-shadow:none;box-shadow:none}.brz-ed .brz-ed-iframe--mobile{min-width:460px;max-width:460px}.brz-ed .brz-ed-dropdown{display:inline-block;position:relative;background:#999}.brz-ed .brz-ed-dropdown-options{background:#999;position:absolute;min-width:100%;left:0;top:100%;z-index:50}.brz-ed .brz-ed-dropdown-options>div>div:first-child{border-right-width:0!important}.brz-ed .brz-ed-dropdown-options .brz-ed-tall-track{top:13px!important;height:218px!important;margin-left:-10px;width:6px}.brz-ed .brz-ed-dropdown-options .brz-ed-tall-track .brz-ed-tall-thumb{width:6px;border-radius:3px;background:#44474b}.brz-ed .brz-ed-dropdown-current{cursor:pointer}.brz-ed .brz-ed-dropdown-option-item{font-family:pn,"Open Sans",Arial,sans-serif;cursor:pointer;color:#fff;padding-left:24px}.brz-ed .brz-ed-dropdown-option-item.brz-ed-dropdown-option-item-active,.brz-ed .brz-ed-dropdown-option-item:hover{color:#34beea}.brz-ed .brz-ed-fixed{position:fixed;left:0;top:0;right:0;bottom:0;z-index:1100}.brz-ed .brz-ed-fixed-overlay{position:absolute;left:0;top:0;width:100%;height:100%;background:rgba(3,8,15,.75)}.brz-ed .brz-ed-fixed-scroll{width:100%;height:100%;overflow:auto}.brz-ed .brz-ed-menu-editor-wrap{position:relative}.brz-ed .brz-ed-menu-editor-button{position:absolute;right:-54px;top:-9px;height:54px;border-radius:7px;background-color:rgba(3,8,15,.9);padding:16px 9px 0 18px;color:#fff;cursor:pointer;display:none;z-index:2}.brz-ed .brz-ed-menu-editor-button:hover{background-color:#34beea}.brz-ed .brz-ed-menu-editor-button:hover .brz-ed-menu-editor-button{display:block}.brz-ed .brz-ed-notification{position:fixed;z-index:1090;top:30px;left:50%;-webkit-transform:translate(-50%,-120px);transform:translate(-50%,-120px);min-width:556px;font-family:pn,"Open Sans",Arial,sans-serif;text-align:center;padding:22px 30px;color:#fff;background:rgba(0,154,198,.92);font-weight:300;font-size:14px;transition:-webkit-transform .2s linear;transition:transform .2s linear;transition:transform .2s linear,-webkit-transform .2s linear;-webkit-transition:transform .2s linear;-moz-transition:transform .2s linear}.brz-ed .brz-ed-notification .brz-p{color:inherit;font-family:inherit}.brz-ed .brz-ed-notification .brz-span{position:absolute;color:#fff;right:20px;top:0;font-size:20px;cursor:pointer;line-height:45px}.brz-ed .brz-ed-notification.brz-ed-notification-animating{-webkit-transform:translate(-50%,0);transform:translate(-50%,0)}.brz-ed .brz-ed-notification-dismissible{padding-right:70px}.brz-ed .brz-ed-notification-dismiss{position:absolute;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);right:30px;width:20px;height:20px;cursor:pointer}.brz-ed .brz-ed-notification-dismiss:after,.brz-ed .brz-ed-notification-dismiss:before{position:absolute;left:50%;top:50%;content:"";display:block;width:28px;height:1px;background:#fff}.brz-ed .brz-ed-notification-dismiss:before{-webkit-transform:translate(-50%,-50%) rotate(45deg);transform:translate(-50%,-50%) rotate(45deg)}.brz-ed .brz-ed-notification-dismiss:after{-webkit-transform:translate(-50%,-50%) rotate(-45deg);transform:translate(-50%,-50%) rotate(-45deg)}@-webkit-keyframes brz-ed-page-saving-feedback{0%{width:0;height:0;opacity:0;margin:0}33%{width:44%;height:44%;margin:-22% 0 0 -22%;opacity:1}100%{width:88%;height:88%;margin:-44% 0 0 -44%;opacity:0}}@keyframes brz-ed-page-saving-feedback{0%{width:0;height:0;opacity:0;margin:0}33%{width:44%;height:44%;margin:-22% 0 0 -22%;opacity:1}100%{width:88%;height:88%;margin:-44% 0 0 -44%;opacity:0}}.brz-ed .brz-ed-page-saving-feedback{background:0 0;width:80px;height:80px;position:fixed;right:10px;bottom:10px;z-index:10}.brz-ed .brz-ed-page-saving-feedback div{position:absolute;top:50%;left:50%;margin:0;width:0;height:0;opacity:0;border-radius:50%;border-width:3px;border-style:solid;-webkit-animation:brz-ed-page-saving-feedback 2s ease-out infinite;animation:brz-ed-page-saving-feedback 2s ease-out infinite}.brz-ed .brz-ed-page-saving-feedback div:nth-of-type(1){border-color:#34beea}.brz-ed .brz-ed-page-saving-feedback div:nth-of-type(2){border-color:#5cb0ff;-webkit-animation-delay:1s;animation-delay:1s}.brz-ed .brz-ed-scroll-pane{position:relative}.brz-ed .brz-ed-scroll-pane>div{border-color:transparent}.brz-ed .brz-ed-scroll-pane .brz-ed-wide-track{position:absolute;height:8px;background:0 0}.brz-ed .brz-ed-scroll-pane .brz-ed-wide-thumb{height:100%;width:0;background-color:#34beea}.brz-ed .brz-ed-scroll-pane .brz-ed-tall-track{position:absolute;right:0;width:8px;background:0 0}.brz-ed .brz-ed-scroll-pane .brz-ed-tall-thumb{width:100%;height:0;background-color:#34beea}.brz-ed .brz-ed-scroll--small .brz-ed-tall-track{width:4px;right:4px}.brz-ed .brz-ed-scroll--small .brz-ed-wide-track{height:4px}.brz-ed .brz-ed-scroll--medium .brz-ed-tall-track{width:6px;right:5px}.brz-ed .brz-ed-scroll--medium .brz-ed-wide-track{height:6px}.brz-ed .brz-ed-scroll--dark .brz-ed-tall-thumb,.brz-ed .brz-ed-scroll--dark .brz-ed-wide-thumb{background-color:#44474b;border-radius:4px}.brz-ed .brz-ed-scroll--darker .brz-ed-tall-thumb,.brz-ed .brz-ed-scroll--darker .brz-ed-wide-thumb{background-color:#3f4652;border-radius:4px}.brz-ed .brz-ed-scroll__popup .brz-ed-scroll-inner{height:100%!important}.brz-ed .brz-ed-scroll__popup .brz-ed-tall-track{width:5px;right:8px;height:calc(100% - 34px)!important;top:17px!important}.brz-ed .brz-ed-scroll__popup .brz-ed-tall-thumb,.brz-ed .brz-ed-scroll__popup .brz-ed-wide-thumb{border-radius:4px;background-color:#d4d5d7}@media screen and (max-height:899px){.brz-ed .brz-ed-scroll__popup{height:465px!important}}@media screen and (min-height:900px){.brz-ed .brz-ed-scroll__popup{height:540px!important}}.brz-ed.brz-ed--mobile,.brz-ed.brz-ed--mobile .brz-container__wrap,.brz-ed.brz-ed--mobile .brz-container__wrap--fluid{padding-left:15px;padding-right:15px}.brz-ed .brz-section{position:relative}.brz-ed .brz-section__content>.brz-ed-border,.brz-ed .brz-section__content>.brz-ed-border>.brz-bg,.brz-ed .brz-section__content>.brz-ed-border>.brz-bg>.brz-bg-content{height:100%}.brz-ed .brz-columns>.brz-ed-border{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.brz-ed .brz-columns>.brz-ed-border>.brz-ed-border__inner-1:after,.brz-ed .brz-columns>.brz-ed-border>.brz-ed-border__inner-1:before,.brz-ed .brz-columns>.brz-ed-border>.brz-ed-border__inner-2:after{left:0}.brz-ed .brz-columns>.brz-ed-border>.brz-bg{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.brz-ed .brz-columns:first-child>.brz-ed-border>.brz-ed-border__inner-1:after,.brz-ed .brz-columns:first-child>.brz-ed-border>.brz-ed-border__inner-1:before,.brz-ed .brz-columns:first-child>.brz-ed-border>.brz-ed-border__inner-2:after,.brz-ed.brz-ed--mobile .brz-columns>.brz-ed-border>.brz-ed-border__inner-1:after,.brz-ed.brz-ed--mobile .brz-columns>.brz-ed-border>.brz-ed-border__inner-1:before,.brz-ed.brz-ed--mobile .brz-columns>.brz-ed-border>.brz-ed-border__inner-2:after{left:-2px}.brz-ed .brz-ed-border__wrapper{height:auto}.brz-ed .brz-ed-slider__spinner{position:absolute;top:0;left:0;width:100%;height:100%;background-color:rgba(3,8,15,.75);color:rgba(255,255,255,.75);font-size:30px;z-index:2}.brz-ed .brz-ed-slider__spinner .brz-icon-svg{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.brz-ed .brz-slick-slider .brz-section__items,.brz-ed .brz-slick-slider .slick-slide>div{height:100%}.brz-ed .brz-form .brz-input,.brz-ed .brz-form .brz-textarea{cursor:default}.brz-ed .brz-form .brz-input.brz-ed-dd-cancel,.brz-ed .brz-form .brz-textarea.brz-ed-dd-cancel{cursor:text}
 
public/editor-build/1.0.10/editor/css/preview.css DELETED
@@ -1 +0,0 @@
1
- .brz .brz-a,.brz .brz-rich-text a{-webkit-text-decoration-skip:objects}.brz .brz-a,.brz .brz-btn.focus,.brz .brz-btn:focus,.brz .brz-btn:hover{text-decoration:none}.brz .brz-button,.brz .brz-reset-all,.brz .brz-select{text-transform:none}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@-webkit-keyframes fadeInDown{from{opacity:0;-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInDown{from{opacity:0;-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}to{opacity:1;-webkit-transform:none;transform:none}}@-webkit-keyframes fadeInUp{from{opacity:0;-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInUp{from{opacity:0;-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}to{opacity:1;-webkit-transform:none;transform:none}}@-webkit-keyframes fadeIn{from{opacity:0}to{opacity:1}}@keyframes fadeIn{from{opacity:0}to{opacity:1}}@-webkit-keyframes fadeInLeft{from{opacity:0;-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fadeInLeft{from{opacity:0;-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@-webkit-keyframes pulsate{0%{-webkit-transform:scale(.1,.1);transform:scale(.1,.1);opacity:0}50%{opacity:1}100%{-webkit-transform:scale(1.2,1.2);transform:scale(1.2,1.2);opacity:0}}@keyframes pulsate{0%{-webkit-transform:scale(.1,.1);transform:scale(.1,.1);opacity:0}50%{opacity:1}100%{-webkit-transform:scale(1.2,1.2);transform:scale(1.2,1.2);opacity:0}}@-webkit-keyframes sk-bounce{0%,100%{-webkit-transform:scale(0);transform:scale(0)}50%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes sk-bounce{0%,100%{-webkit-transform:scale(0);transform:scale(0)}50%{-webkit-transform:scale(1);transform:scale(1)}}*,:after,:before,html{-webkit-box-sizing:border-box;box-sizing:border-box}@-ms-viewport{width:device-width}.brz .brz-figcaption,.brz .brz-figure,.brz .brz-section{display:block}body{margin:0}body.brz-ed{background-color:#f3f3f3}.brz-iframe{margin:0;padding:0;border:0;font:inherit;font-size:100%;vertical-align:baseline}.brz,.brz .brz-rich-text{-webkit-font-smoothing:antialiased}.brz .brz-b,.brz .brz-dt,.brz .brz-strong{font-weight:700}.brz{-moz-osx-font-smoothing:grayscale}.brz .brz-hr{-webkit-box-sizing:content-box;box-sizing:content-box;height:0;overflow:visible;margin:0}.brz .brz-h1,.brz .brz-h2,.brz .brz-h3,.brz .brz-h4,.brz .brz-h5,.brz .brz-h6{margin-top:0;margin-bottom:0;padding:0}.brz .brz-p{margin-top:0;margin-bottom:0}.brz .brz-span{float:none;margin:0;padding:0}.brz .brz-dl,.brz .brz-ol,.brz .brz-ul{margin:0;list-style:none;padding:0}.brz .brz-ol .brz-ol,.brz .brz-ol .brz-ul,.brz .brz-ul .brz-ol,.brz .brz-ul .brz-ul{margin:0}.brz .brz-dd{margin-bottom:.5rem;margin-left:0}.brz .brz-blockquote{margin:0 0 1rem}.brz .brz-dfn{font-style:italic}.brz .brz-a{color:#3dbfe8;background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.brz .brz-a[href]:hover{color:#1aabd8;text-decoration:none;-webkit-box-shadow:none;box-shadow:none;cursor:pointer}.brz .brz-figure{margin:0}.brz .brz-img{vertical-align:middle;border-style:none}.brz svg:not(:root){overflow:hidden}.brz .brz-button,.brz .brz-input,.brz .brz-label,.brz .brz-textarea{-ms-touch-action:manipulation;touch-action:manipulation}.brz .brz-table{border-collapse:collapse}.brz .brz-caption{padding-top:.75rem;padding-bottom:.75rem;color:#818a91;text-align:left;caption-side:bottom}.brz .brz-th{text-align:left}.brz .brz-label{display:inline-block;margin-bottom:0;font-weight:400}.brz .brz-button:focus{outline:dotted 1px;outline:-webkit-focus-ring-color auto 5px}.brz .brz-button,.brz .brz-input,.brz .brz-optgroup,.brz .brz-select,.brz .brz-textarea{padding:0;margin:0;font-family:inherit;font-size:inherit;line-height:inherit}.brz .brz-button,.brz .brz-input{overflow:visible}.brz .brz-button{-webkit-appearance:button}.brz .brz-button::-moz-focus-inner{padding:0;border-style:none}.brz .brz-input[type=radio],.brz .brz-input[type=checkbox]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}.brz .brz-input[type=date],.brz .brz-input[type=time],.brz .brz-input[type=datetime-local],.brz .brz-input[type=month]{-webkit-appearance:listbox}.brz .brz-textarea{overflow:auto;resize:vertical}.brz .brz-fieldset{min-width:0;padding:0;margin:0;border:0}.brz .brz-iframe,.brz .brz-object{margin-bottom:0;max-width:100%}.brz .brz-iframe{margin:0;padding:0;border:0;font:inherit;font-size:100%;vertical-align:baseline}.brz [hidden]{display:none!important}.brz .brz-reset-all{-ms-flex-line-pack:stretch;align-content:stretch;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;-ms-flex-item-align:auto;align-self:auto;-webkit-animation-delay:0s;animation-delay:0s;-webkit-animation-direction:normal;animation-direction:normal;-webkit-animation-duration:0s;animation-duration:0s;-webkit-animation-fill-mode:none;animation-fill-mode:none;-webkit-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-name:none;animation-name:none;-webkit-animation-play-state:running;animation-play-state:running;-webkit-animation-timing-function:ease;animation-timing-function:ease;azimuth:center;-webkit-backface-visibility:visible;backface-visibility:visible;background-blend-mode:normal;block-size:auto;border-block-end-color:currentcolor;border-block-end-style:none;border-block-end-width:medium;border-block-start-color:currentcolor;border-block-start-style:none;border-block-start-width:medium;border-collapse:separate;border-image-outset:0s;border-image-repeat:stretch;border-image-slice:100%;border-image-source:none;border-image-width:1;border-inline-end-color:currentcolor;border-inline-end-style:none;border-inline-end-width:medium;border-inline-start-color:currentcolor;border-inline-start-style:none;border-inline-start-width:medium;border-spacing:0;bottom:auto;-webkit-box-decoration-break:slice;box-decoration-break:slice;-webkit-box-shadow:none;box-shadow:none;-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-column-break-after:auto;break-after:auto;-webkit-column-break-before:auto;break-before:auto;-webkit-column-break-inside:auto;break-inside:auto;caption-side:top;caret-color:auto;clear:none;clip:auto;-webkit-clip-path:none;clip-path:none;color:initial;-webkit-column-count:auto;column-count:auto;-webkit-column-fill:balance;column-fill:balance;-webkit-column-gap:normal;column-gap:normal;-webkit-column-rule-color:currentcolor;column-rule-color:currentcolor;-webkit-column-rule-style:none;column-rule-style:none;-webkit-column-rule-width:medium;column-rule-width:medium;-webkit-column-span:none;column-span:none;-webkit-column-width:auto;column-width:auto;content:normal;counter-increment:none;counter-reset:none;cursor:auto;display:inline;empty-cells:show;-webkit-filter:none;filter:none;-ms-flex-preferred-size:auto;flex-basis:auto;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:1;flex-shrink:1;-ms-flex-wrap:nowrap;flex-wrap:nowrap;float:none;font-family:initial;-webkit-font-feature-settings:normal;font-feature-settings:normal;-webkit-font-kerning:auto;font-kerning:auto;-webkit-font-language-override:normal;font-language-override:normal;font-size:medium;font-size-adjust:none;font-stretch:normal;font-style:normal;font-synthesis:weight style;font-variant:normal;font-variant-alternates:normal;font-variant-caps:normal;font-variant-east-asian:normal;-webkit-font-variant-ligatures:normal;font-variant-ligatures:normal;font-variant-numeric:normal;font-variant-position:normal;font-weight:400;grid-auto-columns:auto;grid-auto-flow:row;grid-auto-rows:auto;grid-column-end:auto;grid-column-gap:0;grid-column-start:auto;grid-row-end:auto;grid-row-gap:0;grid-row-start:auto;grid-template-areas:none;grid-template-columns:none;grid-template-rows:none;height:auto;-webkit-hyphens:manual;-ms-hyphens:manual;hyphens:manual;image-orientation:0deg;image-rendering:auto;image-resolution:1dppx;ime-mode:auto;inline-size:auto;isolation:auto;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;left:auto;letter-spacing:normal;line-break:auto;line-height:normal;-webkit-margin-after:0;margin-block-end:0;-webkit-margin-before:0;margin-block-start:0;-webkit-margin-end:0;-moz-margin-end:0;margin-inline-end:0;-webkit-margin-start:0;-moz-margin-start:0;margin-inline-start:0;-webkit-mask-clip:border-box;mask-clip:border-box;-webkit-mask-composite:add;mask-composite:add;-webkit-mask-image:none;mask-image:none;mask-mode:match-source;-webkit-mask-origin:border-box;mask-origin:border-box;-webkit-mask-position:0 0;mask-position:0 0;-webkit-mask-repeat:repeat;mask-repeat:repeat;-webkit-mask-size:auto;mask-size:auto;mask-type:luminance;max-height:none;max-width:none;min-block-size:0;min-height:0;min-inline-size:0;min-width:0;mix-blend-mode:normal;-o-object-fit:fill;object-fit:fill;-o-object-position:50% 50%;object-position:50% 50%;offset-block-end:auto;offset-block-start:auto;offset-inline-end:auto;offset-inline-start:auto;opacity:1;-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0;orphans:2;outline-color:initial;outline-offset:0;outline-style:none;outline-width:medium;overflow:visible;overflow-wrap:normal;overflow-x:visible;overflow-y:visible;-webkit-padding-after:0;padding-block-end:0;-webkit-padding-before:0;padding-block-start:0;-webkit-padding-end:0;-moz-padding-end:0;padding-inline-end:0;-webkit-padding-start:0;-moz-padding-start:0;padding-inline-start:0;page-break-after:auto;page-break-before:auto;page-break-inside:auto;-webkit-perspective:none;perspective:none;-webkit-perspective-origin:50% 50%;perspective-origin:50% 50%;pointer-events:auto;position:static;quotes:initial;resize:none;right:auto;ruby-align:space-around;ruby-merge:separate;ruby-position:over;scroll-behavior:auto;-webkit-scroll-snap-coordinate:none;-ms-scroll-snap-coordinate:none;scroll-snap-coordinate:none;-webkit-scroll-snap-destination:0 0;-ms-scroll-snap-destination:0 0;scroll-snap-destination:0 0;-webkit-scroll-snap-points-x:none;-ms-scroll-snap-points-x:none;scroll-snap-points-x:none;-webkit-scroll-snap-points-y:none;-ms-scroll-snap-points-y:none;scroll-snap-points-y:none;-webkit-scroll-snap-type:none;-ms-scroll-snap-type:none;scroll-snap-type:none;shape-image-threshold:0;shape-margin:0;shape-outside:none;-moz-tab-size:8;-o-tab-size:8;tab-size:8;table-layout:auto;text-align:initial;text-align-last:auto;text-combine-upright:none;-webkit-text-decoration-color:currentcolor;text-decoration-color:currentcolor;-webkit-text-decoration-line:none;text-decoration-line:none;-webkit-text-decoration-style:solid;text-decoration-style:solid;-webkit-text-emphasis-color:currentcolor;text-emphasis-color:currentcolor;-webkit-text-emphasis-position:over;text-emphasis-position:over right;-webkit-text-emphasis-style:none;text-emphasis-style:none;text-indent:0;text-justify:auto;text-orientation:mixed;text-overflow:clip;text-rendering:auto;text-shadow:none;text-underline-position:auto;top:auto;-ms-touch-action:auto;touch-action:auto;-webkit-transform:none;transform:none;transform-box:border-box;-webkit-transform-origin:50% 50% 0;transform-origin:50% 50% 0;-webkit-transform-style:flat;transform-style:flat;-webkit-transition-delay:0s;transition-delay:0s;-webkit-transition-duration:0s;transition-duration:0s;-webkit-transition-property:all;transition-property:all;-webkit-transition-timing-function:ease;transition-timing-function:ease;vertical-align:baseline;visibility:visible;white-space:normal;widows:2;width:auto;will-change:auto;word-break:normal;word-spacing:normal;word-wrap:normal;-webkit-writing-mode:horizontal-tb;-ms-writing-mode:lr-tb;writing-mode:horizontal-tb;z-index:auto;-webkit-appearance:none;-moz-appearance:none;-ms-appearance:none;appearance:none;background:0 0;border-color:currentcolor;border-radius:0;border-style:none;border-width:medium;list-style:disc;margin:0;padding:0}.brz .brz-ed-blocked,.brz .slick-slide.dragging img{pointer-events:none}.brz .brz-h1,.brz .brz-h2,.brz .brz-h3,.brz .brz-h4,.brz .brz-h5,.brz .brz-h6{font-family:inherit;font-weight:700;line-height:1.2;color:inherit}.brz .brz-h1,.brz .brz-p{font-weight:400}.brz .brz-h1{font-size:55px}.brz .brz-h2{font-size:40px}.brz .brz-h3{font-size:32px}.brz .brz-h4{font-size:26px}.brz .brz-h5{font-size:19px}.brz .brz-h6,.brz .brz-p{font-size:14px}.brz .brz-flex-xs-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.brz .brz-flex-xs-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.brz .brz-flex-xs-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.brz .brz-justify-content-xs-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.brz .brz-justify-content-xs-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.brz .brz-justify-content-xs-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.brz .brz-justify-content-xs-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.brz .brz-justify-content-xs-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.brz .brz-align-items-xs-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.brz .brz-align-items-xs-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.brz .brz-align-items-xs-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.brz .brz-align-items-xs-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.brz .brz-align-items-xs-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.brz .brz-col-first-xs{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.brz .brz-col-last-xs{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.brz .brz-align-self-xs-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.brz .brz-align-self-xs-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.brz .brz-align-self-xs-center{-ms-flex-item-align:center!important;align-self:center!important}.brz .brz-align-self-xs-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.brz .brz-align-self-xs-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}.brz .brz-flex-xs-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.brz .brz-flex-xs-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.brz .brz-align-content-xs-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.brz .brz-align-content-xs-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.brz .brz-align-content-xs-center{-ms-flex-line-pack:center!important;align-content:center!important}.brz .brz-align-content-xs-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.brz .brz-align-content-xs-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.brz .brz-align-content-xs-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}@media (min-width:480px){.brz .brz-flex-ms-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.brz .brz-flex-ms-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.brz .brz-flex-ms-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.brz .brz-justify-content-ms-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.brz .brz-justify-content-ms-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.brz .brz-justify-content-ms-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.brz .brz-justify-content-ms-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.brz .brz-justify-content-ms-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.brz .brz-align-items-ms-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.brz .brz-align-items-ms-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.brz .brz-align-items-ms-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.brz .brz-align-items-ms-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.brz .brz-align-items-ms-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.brz .brz-col-first-ms{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.brz .brz-col-last-ms{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.brz .brz-align-self-ms-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.brz .brz-align-self-ms-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.brz .brz-align-self-ms-center{-ms-flex-item-align:center!important;align-self:center!important}.brz .brz-align-self-ms-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.brz .brz-align-self-ms-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}.brz .brz-flex-ms-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.brz .brz-flex-ms-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.brz .brz-align-content-ms-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.brz .brz-align-content-ms-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.brz .brz-align-content-ms-center{-ms-flex-line-pack:center!important;align-content:center!important}.brz .brz-align-content-ms-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.brz .brz-align-content-ms-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.brz .brz-align-content-ms-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}}@media (min-width:768px){.brz .brz-flex-sm-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.brz .brz-flex-sm-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.brz .brz-flex-sm-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.brz .brz-justify-content-sm-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.brz .brz-justify-content-sm-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.brz .brz-justify-content-sm-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.brz .brz-justify-content-sm-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.brz .brz-justify-content-sm-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.brz .brz-align-items-sm-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.brz .brz-align-items-sm-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.brz .brz-align-items-sm-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.brz .brz-align-items-sm-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.brz .brz-align-items-sm-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.brz .brz-col-first-sm{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.brz .brz-col-last-sm{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.brz .brz-align-self-sm-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.brz .brz-align-self-sm-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.brz .brz-align-self-sm-center{-ms-flex-item-align:center!important;align-self:center!important}.brz .brz-align-self-sm-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.brz .brz-align-self-sm-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}.brz .brz-flex-sm-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.brz .brz-flex-sm-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.brz .brz-align-content-sm-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.brz .brz-align-content-sm-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.brz .brz-align-content-sm-center{-ms-flex-line-pack:center!important;align-content:center!important}.brz .brz-align-content-sm-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.brz .brz-align-content-sm-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.brz .brz-align-content-sm-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}}@media (min-width:992px){.brz .brz-flex-md-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.brz .brz-flex-md-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.brz .brz-flex-md-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.brz .brz-justify-content-md-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.brz .brz-justify-content-md-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.brz .brz-justify-content-md-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.brz .brz-justify-content-md-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.brz .brz-justify-content-md-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.brz .brz-align-items-md-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.brz .brz-align-items-md-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.brz .brz-align-items-md-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.brz .brz-align-items-md-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.brz .brz-align-items-md-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.brz .brz-col-first-md{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.brz .brz-col-last-md{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.brz .brz-align-self-md-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.brz .brz-align-self-md-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.brz .brz-align-self-md-center{-ms-flex-item-align:center!important;align-self:center!important}.brz .brz-align-self-md-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.brz .brz-align-self-md-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}.brz .brz-flex-md-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.brz .brz-flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.brz .brz-align-content-md-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.brz .brz-align-content-md-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.brz .brz-align-content-md-center{-ms-flex-line-pack:center!important;align-content:center!important}.brz .brz-align-content-md-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.brz .brz-align-content-md-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.brz .brz-align-content-md-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}}@media (min-width:1200px){.brz .brz-flex-lg-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.brz .brz-flex-lg-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.brz .brz-flex-lg-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.brz .brz-justify-content-lg-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.brz .brz-justify-content-lg-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.brz .brz-justify-content-lg-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.brz .brz-justify-content-lg-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.brz .brz-justify-content-lg-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.brz .brz-align-items-lg-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.brz .brz-align-items-lg-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.brz .brz-align-items-lg-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.brz .brz-align-items-lg-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.brz .brz-align-items-lg-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.brz .brz-col-first-lg{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.brz .brz-col-last-lg{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.brz .brz-align-self-lg-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.brz .brz-align-self-lg-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.brz .brz-align-self-lg-center{-ms-flex-item-align:center!important;align-self:center!important}.brz .brz-align-self-lg-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.brz .brz-align-self-lg-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}.brz .brz-flex-lg-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.brz .brz-flex-lg-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.brz .brz-align-content-lg-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.brz .brz-align-content-lg-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.brz .brz-align-content-lg-center{-ms-flex-line-pack:center!important;align-content:center!important}.brz .brz-align-content-lg-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.brz .brz-align-content-lg-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.brz .brz-align-content-lg-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}}@media (min-width:1400px){.brz .brz-flex-xl-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.brz .brz-flex-xl-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.brz .brz-flex-xl-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.brz .brz-justify-content-xl-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.brz .brz-justify-content-xl-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.brz .brz-justify-content-xl-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.brz .brz-justify-content-xl-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.brz .brz-justify-content-xl-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.brz .brz-align-items-xl-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.brz .brz-align-items-xl-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.brz .brz-align-items-xl-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.brz .brz-align-items-xl-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.brz .brz-align-items-xl-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.brz .brz-col-first-xl{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.brz .brz-col-last-xl{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.brz .brz-align-self-xl-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.brz .brz-align-self-xl-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.brz .brz-align-self-xl-center{-ms-flex-item-align:center!important;align-self:center!important}.brz .brz-align-self-xl-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.brz .brz-align-self-xl-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}.brz .brz-flex-xl-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.brz .brz-flex-xl-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.brz .brz-align-content-xl-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.brz .brz-align-content-xl-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.brz .brz-align-content-xl-center{-ms-flex-line-pack:center!important;align-content:center!important}.brz .brz-align-content-xl-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.brz .brz-align-content-xl-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.brz .brz-align-content-xl-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}}.brz .brz-accordion,.brz .brz-columns{-webkit-box-orient:vertical;-webkit-box-direction:normal}.brz .brz-d-block{display:block!important}.brz .brz-d-inline-block{display:inline-block!important}.brz .brz-d-inline{display:inline!important}.brz .brz-d-table{width:100%;display:table;position:relative}.brz .brz-d-table-cell{display:table-cell}.brz .brz-d-xs-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.brz .brz-d-xs-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}@media (min-width:480px){.brz .brz-d-ms-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.brz .brz-d-ms-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:768px){.brz .brz-d-sm-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.brz .brz-d-sm-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:992px){.brz .brz-d-md-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.brz .brz-d-md-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:1200px){.brz .brz-d-lg-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.brz .brz-d-lg-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:1400px){.brz .brz-d-xl-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.brz .brz-d-xl-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}.brz .brz-hidden-xl-up{display:none!important}}.brz .brz-hidden,.brz .brz-hidden-xl-down,.brz .brz-hidden-xs-up,.brz .brz-visible-print-block{display:none!important}.brz .brz-ed-animated{-webkit-animation-duration:.15s;animation-duration:.15s;-webkit-animation-fill-mode:both;animation-fill-mode:both}.brz .brz-ed-animated--fadeInDown{-webkit-animation-name:fadeInDown;animation-name:fadeInDown}.brz .brz-ed-animated--fadeInUp{-webkit-animation-name:fadeInUp;animation-name:fadeInUp}.brz .brz-ed-animated--fadeIn{-webkit-animation-name:fadeIn;animation-name:fadeIn}.brz .brz-ed-animated--fadeInLeft{-webkit-animation-name:fadeInLeft;animation-name:fadeInLeft}.brz .brz-ed-animated--spin{-webkit-animation-name:spin;animation-name:spin;-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-timing-function:linear;animation-timing-function:linear}.brz .brz-ed-fade-enter{opacity:.01}.brz .brz-ed-fade-enter.brz-ed-fade-enter-active{opacity:1;-webkit-transition:opacity 150ms ease-in;transition:opacity 150ms ease-in}.brz .brz-ed-fade-exit{opacity:1}.brz .brz-ed-fade-exit.brz-ed-fade-exit-active{opacity:.01;-webkit-transition:opacity 150ms ease-in;transition:opacity 150ms ease-in}.brz .brz-p-relative{position:relative!important}.brz .brz-p-absolute{position:absolute!important}.brz .brz-p-fixed{position:fixed!important}.brz .brz-bg,.brz .brz-bg-content,.brz .brz-icon-svg,.brz .brz-map,.brz .brz-section__content{position:relative}.brz .brz-invisible{visibility:hidden!important}.brz .brz-visible{visibility:visible!important}.brz .brz-invisible-xl-down,.brz .brz-invisible-xs-up{visibility:hidden!important}.brz .brz-invisible-blur-xs-up .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}@media (max-width:479px){.brz .brz-hidden-xs-down{display:none!important}.brz .brz-invisible-xs-down{visibility:hidden!important}.brz .brz-invisible-blur-xs-down .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (min-width:480px){.brz .brz-hidden-ms-up{display:none!important}.brz .brz-invisible-ms-up{visibility:hidden!important}.brz .brz-invisible-blur-ms-up .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (max-width:767px){.brz .brz-hidden-ms-down{display:none!important}.brz .brz-invisible-ms-down{visibility:hidden!important}.brz .brz-invisible-blur-ms-down .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}.brz .brz-container__wrap,.brz .brz-container__wrap--fluid{padding-left:15px;padding-right:15px}}@media (min-width:768px){.brz .brz-hidden-sm-up{display:none!important}.brz .brz-invisible-sm-up{visibility:hidden!important}.brz .brz-invisible-blur-sm-up .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (max-width:991px){.brz .brz-hidden-sm-down{display:none!important}.brz .brz-invisible-sm-down{visibility:hidden!important}.brz .brz-invisible-blur-sm-down .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (min-width:992px){.brz .brz-hidden-md-up{display:none!important}.brz .brz-invisible-md-up{visibility:hidden!important}.brz .brz-invisible-blur-md-up .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (max-width:1199px){.brz .brz-hidden-md-down{display:none!important}.brz .brz-invisible-md-down{visibility:hidden!important}.brz .brz-invisible-blur-md-down .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (min-width:1200px){.brz .brz-hidden-lg-up{display:none!important}.brz .brz-invisible-lg-up{visibility:hidden!important}.brz .brz-invisible-blur-lg-up .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (max-width:1399px){.brz .brz-hidden-lg-down{display:none!important}.brz .brz-invisible-lg-down{visibility:hidden!important}.brz .brz-invisible-blur-lg-down .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (min-width:1400px){.brz .brz-invisible-xl-up{visibility:hidden!important}.brz .brz-invisible-blur-xl-up .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}.brz .brz-invisible-blur-xl-down .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}@media print{.brz .brz-visible-print-block{display:block!important}}.brz .brz-visible-print-inline{display:none!important}@media print{.brz .brz-visible-print-inline{display:inline!important}}.brz .brz-visible-print-inline-block{display:none!important}@media print{.brz .brz-visible-print-inline-block{display:inline-block!important}.brz .brz-hidden-print{display:none!important}}.brz .brz-ow-hidden{overflow:hidden!important}.brz .brz-ow-visible{overflow:visible!important}.brz .brz-fw-100{font-weight:100!important}.brz .brz-fw-200{font-weight:200!important}.brz .brz-fw-300{font-weight:300!important}.brz .brz-fw-400{font-weight:400!important}.brz .brz-fw-500{font-weight:500!important}.brz .brz-fw-600{font-weight:600!important}.brz .brz-fw-700{font-weight:700!important}.brz .brz-fw-800{font-weight:800!important}.brz .brz-fw-900{font-weight:900!important}.brz .brz-icon-svg{display:inline-block;width:1em;height:1em;stroke:none;fill:currentColor;color:currentColor}.brz .brz-icon-svg use{fill:inherit}.brz .brz-icon-svg.grid-16{height:16px;width:16px}.brz .brz-icon-svg.grid-24{height:24px;width:24px}.brz .brz-icon-svg.glyph{fill:currentColor;stroke:none}.brz .brz-icon-svg.outline{stroke:currentColor;fill:none}.brz .brz-icon-svg.outline.stroke-2{stroke-width:2px}.brz .brz-section{background-color:#fff}.brz .brz-sec-full-height .brz-container__wrap,.brz .brz-sec-full-height .brz-container__wrap--fluid{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;min-height:100vh}.brz .brz-container__wrap,.brz .brz-row{display:-webkit-box;display:-ms-flexbox}.brz .brz-container,.brz .brz-container__wrap{margin-left:auto;margin-right:auto;width:100%}.brz .brz-container__wrap{display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.brz .brz-row{display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.brz .brz-columns{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;min-height:1px;-ms-flex-preferred-size:100%;flex-basis:100%}.brz .brz-columns>.brz-bg{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.brz .brz-wrapper,.brz .brz-wrapper-clone{border-top:1px solid transparent;border-bottom:1px solid transparent;margin-top:-1px;margin-bottom:-1px}.brz .brz-wrapper-clone__item{position:relative;min-height:1px;-ms-flex-preferred-size:auto;flex-basis:auto}.brz .brz-bg-content{-webkit-box-flex:1;-ms-flex:1;flex:1}.brz .brz-bg-media{overflow:hidden}.brz .brz-bg-color,.brz .brz-bg-image,.brz .brz-bg-map,.brz .brz-bg-media,.brz .brz-bg-video{position:absolute;top:0;left:0;width:100%;height:100%}.brz .brz-bg-image{background-repeat:no-repeat;background-size:cover}.brz .brz-iframe.brz-bg-map__cover,.brz .brz-iframe.brz-bg-video__cover{position:absolute;top:0;left:0;width:100%;height:100%;border:none;max-width:none;background-repeat:no-repeat;background-size:cover}.brz .brz-bg-color{opacity:1}@media (max-width:767px){.brz .brz-bg-video .brz-iframe{display:none!important}}.brz .brz-btn,.brz .brz-icon{display:-webkit-inline-box;display:-ms-inline-flexbox;vertical-align:middle}@media (min-width:768px){.brz .brz-bg-image-parallax{width:100%;background-size:cover!important;background-position:50% 50%;left:0;height:100vh;top:-50vh;-webkit-transition:all 0s ease!important;transition:all 0s ease!important;-webkit-transform-origin:center center 0;transform-origin:center center 0;-webkit-transform-style:preserve-3d;transform-style:preserve-3d}}.brz .brz-btn{display:inline-flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border:1px solid #ccc;-webkit-transition:background .3s ease,color .3s ease,border-color .3s ease;transition:background .3s ease,color .3s ease,border-color .3s ease;text-align:center;-ms-touch-action:manipulation;touch-action:manipulation;color:#fff;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-user-drag:none;background-image:none;white-space:nowrap;font-weight:400;-webkit-backface-visibility:hidden;backface-visibility:hidden}.brz .brz-btn .brz-span{display:block}.brz .buttons{margin:-10px;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.brz .buttons .brz-wrapper-clone__item{padding:10px}.brz .brz-icon{display:inline-flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;max-width:100%;-webkit-transition:background .3s ease,color .3s ease,border-color .3s ease;transition:background .3s ease,color .3s ease,border-color .3s ease}.brz .brz-list{margin:-6px;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.brz .brz-list .brz-list__item{padding:6px}.brz .brz-countdown{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}.brz .brz-countdown__item{-webkit-box-flex:1;-ms-flex:1 0 25%;flex:1 0 25%;text-align:center;padding-left:15px;padding-right:15px;word-break:break-word;word-wrap:break-word}.brz .brz-countdown__number{font-size:1em;margin-bottom:15px}.brz .brz-spacer{width:100%}.brz .brz-icon-text{display:-webkit-box;display:-ms-flexbox;display:flex;width:100%;text-align:left;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;-ms-flex-wrap:nowrap;flex-wrap:nowrap}.brz .brz-icon-text .brz-text-btn,.brz .brz-icon-text .brz-text__editor{width:100%}.brz .brz-line{line-height:1;font-size:0;padding-top:7px;padding-bottom:7px;display:inline-block}.brz .brz-line .brz-hr{border-right-width:0;border-bottom-width:0;border-left-width:0}.brz .brz-map{width:100%;display:inline-block;vertical-align:middle;overflow:hidden}.brz .brz-map .brz-iframe{position:absolute;top:0;left:0;width:100%;height:100%;border:none}.brz .brz-image{display:inherit;-webkit-box-pack:inherit;-ms-flex-pack:inherit;justify-content:inherit;-webkit-box-align:inherit;-ms-flex-align:inherit;align-items:inherit;-ms-flex-preferred-size:100%;flex-basis:100%;width:100%;overflow:hidden}.brz .brz-image .brz-img{max-width:100%;border-radius:inherit}.brz .brz-image picture{border-radius:inherit}.brz .brz-ed-image__content{overflow:hidden;position:relative;width:100%}.brz .brz-ed-image__wrapper{position:absolute;top:0;left:0;margin-left:auto;margin-right:auto}.brz .brz-ed-image__wrapper .brz-img{max-width:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-user-drag:none;display:block}.brz .brz-ed-image__wrapper picture:after{content:"";position:absolute;top:0;left:0;width:100%;height:100%}.brz .brz-image-fix-1-1{padding-top:100%}.brz .brz-image-fix-2-1{padding-top:50%}.brz .brz-image-fix-2-3{padding-top:150%}.brz .brz-image-fix-3-4{padding-top:125%}.brz .brz-image-fix-4-3{padding-top:75%}.brz .brz-image-fix-9-16{padding-top:177.8%}.brz .brz-image-fix-16-9{padding-top:56.25%}.brz .brz-video{position:relative;width:100%;display:inline-block;vertical-align:middle}.brz .brz-video .brz-iframe{position:absolute;top:0;left:0;width:100%;height:100%;border:none}.brz .brz-embed-code{position:relative;display:inline-block;width:100%;min-height:10px;word-break:break-all;word-wrap:break-word;overflow:hidden}.brz .brz-rich-text{overflow-wrap:break-word;word-wrap:break-word;-ms-word-break:break-word;word-break:break-word;-ms-hyphens:auto;-moz-hyphens:auto;-webkit-hyphens:auto;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.brz .brz-rich-text i{font-style:italic}.brz .brz-rich-text ol li,.brz .brz-rich-text ul li{list-style:none}.brz .brz-rich-text ul li:before{position:relative;top:-.1em;line-height:1;content:"\2022";padding-right:.5em}.brz .brz-rich-text ol{counter-reset:number}.brz .brz-rich-text ol li{counter-increment:number}.brz .brz-rich-text ol li:before{content:counter(number);line-height:1;padding-right:.5em}.brz .brz-rich-text .ql-editor{white-space:pre-wrap}.brz .brz-rich-text h1,.brz .brz-rich-text h2,.brz .brz-rich-text h3,.brz .brz-rich-text h4,.brz .brz-rich-text h5,.brz .brz-rich-text h6{margin-top:0;margin-bottom:0;padding:0;text-shadow:none;text-transform:initial;text-decoration:initial}.brz .brz-rich-text p,.brz .brz-rich-text span{margin-top:0;margin-bottom:0;text-shadow:none;text-transform:initial;text-decoration:initial}.brz .brz-rich-text dl,.brz .brz-rich-text ol,.brz .brz-rich-text ul{margin:0;list-style:none;padding:0}.brz .brz-rich-text ol ol,.brz .brz-rich-text ol ul,.brz .brz-rich-text ul ol,.brz .brz-rich-text ul ul{margin:0}.brz .brz-rich-text a{color:#3dbfe8;text-decoration:none;background-color:transparent}.brz .brz-rich-text a[href]:hover{color:#1aabd8;text-decoration:none}.brz .brz-rich-text .link--anchor:not(.is-empty),.brz .brz-rich-text .link--external:not(.is-empty){color:#3dbfe8}.brz .brz-rich-text .link--anchor:not(.is-empty):hover,.brz .brz-rich-text .link--external:not(.is-empty):hover{color:#1aabd8}.brz .brz-text__editor{min-width:10px}.brz .brz-text__editor:empty:before{content:"\00a0\00a0"}.brz .brz-counter{-webkit-transition:all .3s ease;transition:all .3s ease;cursor:default;text-align:center;display:inline-block}.brz .brz-progress-bar .brz-text__editor{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.brz .brz-shortcode__placeholder{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;height:100%;width:100%;background-color:#373e48;color:#151924;font-size:inherit}@media (max-width:767px){.brz .brz-shortcode__placeholder{font-size:36px!important}}.brz .brz-soundcloud{font-size:0}.brz .slick-slider{position:relative;display:block;-webkit-box-sizing:border-box;box-sizing:border-box;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}.brz .slick-list{position:relative;overflow:hidden;display:block;margin:0;padding:0}.brz .slick-list:focus{outline:0}.brz .slick-list.dragging{cursor:pointer;cursor:hand}.brz .slick-slider .slick-list,.brz .slick-slider .slick-track{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.slick-loading .brz .slick-track{visibility:hidden}.brz .slick-slide{min-height:1px;display:none;height:auto}.brz .brz-accordion__item--active>.brz-accordion__content:empty,.brz .brz-tabs__items--active .brz-bg-content:empty{min-height:50px}.brz .slick-slide img{display:block}.brz .slick-slide.slick-loading img{display:none}.slick-initialized .brz .slick-slide{display:block}.slick-loading .brz .slick-slide{visibility:hidden}.slick-vertical .brz .slick-slide{display:block;height:auto;border:1px solid transparent}.brz .slick-arrow.slick-hidden{display:none}.brz .brz-slick-slider .brz-icon-svg,.brz .brz-slick-slider .brz-rich-text *{-webkit-backface-visibility:hidden;backface-visibility:hidden}.brz .brz-slick-slider .brz-bg-media{width:calc(100% + 1px)}.brz .brz-slick-slider .brz-bg-color,.brz .brz-slick-slider .brz-bg-content{-webkit-transform:translateZ(0);transform:translateZ(0)}.brz .brz-slick-slider .brz-container__wrap{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.brz .brz-slick-slider--fade .slick-slide{height:auto;visibility:hidden}.brz .brz-slick-slider--fade .slick-slide.slick-active{visibility:visible}.brz .slick-initialized .slick-slide{display:block}.brz .slick-track{position:relative;left:0;top:0;margin-left:auto;margin-right:auto;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.brz .slick-slide .brz-section__content,.brz .slick-slide .brz-section__content>.brz-bg{height:100%}.brz .slick-slide .brz-section__content>.brz-bg>.brz-bg-content{height:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-wrap:wrap;flex-wrap:wrap}.brz .brz-slick-slider__dots{position:absolute;bottom:50px;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);padding:0;list-style:none;margin:0;font-size:0}.brz .brz-slick-slider__dots li{display:inline-block;vertical-align:middle;padding-left:5px;padding-right:5px}.brz .brz-slick-slider__dots li:first-child{padding-left:0}.brz .brz-slick-slider__dots li:last-child{padding-right:0}.brz .brz-slick-slider__dots button{cursor:pointer;color:inherit;outline:0;overflow:hidden;padding:0;text-indent:-9999px;border:2px solid currentColor;background-color:transparent;-webkit-transition:linear .2s transform,linear .2s background-color;transition:linear .2s transform,linear .2s background-color}.brz .brz-slick-slider__dots .slick-active button{background-color:currentColor;-webkit-transition:linear .2s transform,linear .2s background-color;transition:linear .2s transform,linear .2s background-color}.brz .brz-slick-slider__dots--circle button{width:10px;height:10px;border-radius:10px}.brz .brz-slick-slider__dots--diamond button{width:10px;height:10px;-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.brz .brz-slick-slider__dots--square button{width:10px;height:10px}.brz .brz-slick-slider__arrow{position:absolute;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);z-index:2;font-size:30px;opacity:.7;cursor:pointer;-webkit-transition:linear .2s opacity;transition:linear .2s opacity;color:#000}.brz .brz-slick-slider__arrow:hover{opacity:1;-webkit-transition:linear .2s opacity;transition:linear .2s opacity}.brz .brz-slick-slider__arrow .brz-icon-svg{display:block}.brz .brz-slick-slider__arrow-prev{-webkit-transform:translateY(-50%) rotate(-180deg);transform:translateY(-50%) rotate(-180deg);left:30px}.brz .brz-slick-slider__arrow-next{right:30px}.brz .brz-form{width:100%}.brz .brz-form__fields{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.brz .brz-form__item{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-ms-flex-negative:0;flex-shrink:0}.brz .brz-form .brz-input,.brz .brz-form .brz-textarea{display:block;width:100%;height:auto;background-color:transparent;border:none;outline:0;color:inherit;font-size:inherit;font-family:inherit;letter-spacing:inherit;font-weight:inherit;line-height:inherit}.brz .brz-form .brz-textarea{height:100%;resize:none}.brz .brz-form .brz-form__field{padding:14px 24px}.brz .brz-form__select{position:relative}.brz .brz-form__select-current{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.brz .brz-form__select-list{border:1px solid #dcdee1;border-top-width:0;overflow:hidden;position:absolute;z-index:1041;top:100%;left:0;width:100%;background-color:#fff}.brz .brz-form__select-item{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;border:0;height:52px}.brz .brz-form__select-item:not(:last-child){border-bottom:1px solid #f1f1f2}.brz .brz-form__select-item__input{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;font-size:16px;color:rgba(115,119,127,.7);line-height:1;font-family:inherit;font-weight:inherit;padding:14px 24px}.brz .brz-form__select-item__input .brz-input{border-width:0;height:100%;width:100%;color:inherit}.brz .brz-form__select-item__input .brz-input::-webkit-input-placeholder{color:rgba(115,119,127,.7);font-style:italic}.brz .brz-form__select-item__input .brz-input:-moz-placeholder{color:rgba(115,119,127,.7);font-style:italic}.brz .brz-form__select-item__input .brz-input::-moz-placeholder{color:rgba(115,119,127,.7);font-style:italic}.brz .brz-form__select-item__input .brz-input:-ms-input-placeholder{color:rgba(115,119,127,.7);font-style:italic}.brz .brz-form__select-item__input .brz-input.brz-input{cursor:text}.brz .brz-form__select-item__icon{color:rgba(115,119,127,.7);-ms-flex-preferred-size:52px;flex-basis:52px;text-align:center;font-size:13px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;cursor:pointer}.brz .brz-form__select--arrow{font-size:14px}.brz .brz-form .brz-control__select{position:relative}.brz .brz-form .brz-control__select-current,.brz .brz-form .brz-control__select-option{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;font-size:inherit;color:inherit}.brz .brz-form .brz-control__select-current{padding:14px 24px;cursor:pointer}.brz .brz-form .brz-control__select-current .brz-control__select-option{border:0;-ms-flex-preferred-size:100%;flex-basis:100%;height:100%}.brz .brz-form .brz-control__select-current .brz-control__select--arrow{font-size:14px}.brz .brz-form .brz-control__select-options{border:1px solid #dcdee1;border-top-width:0;overflow:hidden;position:absolute;z-index:1030;top:100%;left:0;width:100%;background-color:#fff;display:none}.brz .brz-form .brz-control__select-options .brz-control__select-option{padding:14px 24px;font-size:16px;height:52px;line-height:1.5;cursor:pointer}.brz .brz-form .brz-control__select-options .brz-control__select-option:not(:last-child){border-bottom:1px solid #f1f1f2}.brz .brz-form__alert{height:55px;width:100%;font-size:12px;line-height:2;letter-spacing:2.5px;font-weight:600;text-transform:uppercase;padding:17px 30px;color:#fff;margin-top:15px}.brz .brz-form__alert--success{background-color:#15d053}.brz .brz-form__alert--error{background-color:red}.brz .brz-form__item--error .brz-control__select-current,.brz .brz-form__item--error .brz-form__field{border-color:red!important}@media (max-width:767px){.brz .brz-form .brz-control__select-options .brz-control__select-option,.brz .brz-form__select-item__input{padding:10px 16px;font-size:14px}.brz .brz-form .brz-control__select-current,.brz .brz-form .brz-form__field{padding:10px 16px}}.brz .brz-tabs{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.brz .brz-tabs__nav{display:-webkit-box;display:-ms-flexbox;display:flex;overflow:hidden;margin:0;padding:0}.brz .brz-accordion__nav,.brz .brz-tabs__nav--button{padding:10px 15px;cursor:pointer;background-clip:padding-box}.brz .brz-tabs__nav--item{list-style:none}.brz .brz-tabs__nav--item:not(:last-child){margin-right:3px}.brz .brz-tabs__nav--active{position:relative}.brz .brz-tabs__nav--active:after,.brz .brz-tabs__nav--active:before{content:"";position:absolute;width:100vw;height:2px;bottom:0}.brz .brz-tabs__nav--active:before{left:-100vw}.brz .brz-tabs__nav--active:after{right:-100vw}.brz .brz-tabs__nav--button{border-style:solid}.brz .brz-tabs__content{font-size:0}.brz .brz-tabs__items{display:none;border-style:solid;background-clip:padding-box;width:100%}.brz .brz-tabs__items--active{display:inline-block;border-top:none}.brz .brz-accordion{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.brz .brz-accordion__nav{border-style:solid}.brz .brz-accordion__item{display:block;width:100%}.brz .brz-accordion__item>.brz-accordion__content{display:none;border-style:solid;background-clip:padding-box;border-top-color:transparent!important}.brz .brz-accordion__item:not(:last-child){margin-bottom:3px}.brz .brz-accordion__item--active>.brz-accordion__content{display:block}.brz .brz-wp-shortcode .brz-shortcode__placeholder,.brz .brz-wp__sidebar .brz-shortcode__placeholder{width:100%;min-height:300px}@media (max-width:767px){.brz .brz-fs-im-6{font-size:6px}.brz .brz-fs-im-7{font-size:7px}.brz .brz-fs-im-8{font-size:8px}.brz .brz-fs-im-9{font-size:9px}.brz .brz-fs-im-10{font-size:10px}.brz .brz-fs-im-11{font-size:11px}.brz .brz-fs-im-12{font-size:12px}.brz .brz-fs-im-13{font-size:13px}.brz .brz-fs-im-14{font-size:14px}.brz .brz-fs-im-15{font-size:15px}.brz .brz-fs-im-16{font-size:16px}.brz .brz-fs-im-17{font-size:17px}.brz .brz-fs-im-18{font-size:18px}.brz .brz-fs-im-19{font-size:19px}.brz .brz-fs-im-20{font-size:20px}.brz .brz-fs-im-21{font-size:21px}.brz .brz-fs-im-22{font-size:22px}.brz .brz-fs-im-23{font-size:23px}.brz .brz-fs-im-24{font-size:24px}.brz .brz-fs-im-25{font-size:25px}.brz .brz-fs-im-26{font-size:26px}.brz .brz-fs-im-27{font-size:27px}.brz .brz-fs-im-28{font-size:28px}.brz .brz-fs-im-29{font-size:29px}.brz .brz-fs-im-30{font-size:30px}.brz .brz-fs-im-31{font-size:31px}.brz .brz-fs-im-32{font-size:32px}.brz .brz-fs-im-33{font-size:33px}.brz .brz-fs-im-34{font-size:34px}.brz .brz-fs-im-35{font-size:35px}.brz .brz-fs-im-36{font-size:36px}.brz .brz-fs-im-37{font-size:37px}.brz .brz-fs-im-38{font-size:38px}.brz .brz-fs-im-39{font-size:39px}.brz .brz-fs-im-40{font-size:40px}.brz .brz-fs-im-41{font-size:41px}.brz .brz-fs-im-42{font-size:42px}.brz .brz-fs-im-43{font-size:43px}.brz .brz-fs-im-44{font-size:44px}.brz .brz-fs-im-45{font-size:45px}.brz .brz-fs-im-46{font-size:46px}.brz .brz-fs-im-47{font-size:47px}.brz .brz-fs-im-48{font-size:48px}.brz .brz-fs-im-49{font-size:49px}.brz .brz-fs-im-50{font-size:50px}.brz .brz-fs-im-51{font-size:51px}.brz .brz-fs-im-52{font-size:52px}.brz .brz-fs-im-53{font-size:53px}.brz .brz-fs-im-54{font-size:54px}.brz .brz-fs-im-55{font-size:55px}.brz .brz-fs-im-56{font-size:56px}.brz .brz-fs-im-57{font-size:57px}.brz .brz-fs-im-58{font-size:58px}.brz .brz-fs-im-59{font-size:59px}.brz .brz-fs-im-60{font-size:60px}.brz .brz-fs-im-61{font-size:61px}.brz .brz-fs-im-62{font-size:62px}.brz .brz-fs-im-63{font-size:63px}.brz .brz-fs-im-64{font-size:64px}.brz .brz-fs-im-65{font-size:65px}.brz .brz-fs-im-66{font-size:66px}.brz .brz-fs-im-67{font-size:67px}.brz .brz-fs-im-68{font-size:68px}.brz .brz-fs-im-69{font-size:69px}.brz .brz-fs-im-70{font-size:70px}.brz .brz-fs-im-71{font-size:71px}.brz .brz-fs-im-72{font-size:72px}.brz .brz-fs-im-73{font-size:73px}.brz .brz-fs-im-74{font-size:74px}.brz .brz-fs-im-75{font-size:75px}.brz .brz-fs-im-76{font-size:76px}.brz .brz-fs-im-77{font-size:77px}.brz .brz-fs-im-78{font-size:78px}.brz .brz-fs-im-79{font-size:79px}.brz .brz-fs-im-80{font-size:80px}.brz .brz-fs-im-81{font-size:81px}.brz .brz-fs-im-82{font-size:82px}.brz .brz-fs-im-83{font-size:83px}.brz .brz-fs-im-84{font-size:84px}.brz .brz-fs-im-85{font-size:85px}.brz .brz-fs-im-86{font-size:86px}.brz .brz-fs-im-87{font-size:87px}.brz .brz-fs-im-88{font-size:88px}.brz .brz-fs-im-89{font-size:89px}.brz .brz-fs-im-90{font-size:90px}.brz .brz-fs-im-91{font-size:91px}.brz .brz-fs-im-92{font-size:92px}.brz .brz-fs-im-93{font-size:93px}.brz .brz-fs-im-94{font-size:94px}.brz .brz-fs-im-95{font-size:95px}.brz .brz-fs-im-96{font-size:96px}.brz .brz-fs-im-97{font-size:97px}.brz .brz-fs-im-98{font-size:98px}.brz .brz-fs-im-99{font-size:99px}.brz .brz-fs-im-100{font-size:100px}.brz .brz-fs-im-101{font-size:101px}.brz .brz-fs-im-102{font-size:102px}.brz .brz-fs-im-103{font-size:103px}.brz .brz-fs-im-104{font-size:104px}.brz .brz-fs-im-105{font-size:105px}.brz .brz-fs-im-106{font-size:106px}.brz .brz-fs-im-107{font-size:107px}.brz .brz-fs-im-108{font-size:108px}.brz .brz-fs-im-109{font-size:109px}.brz .brz-fs-im-110{font-size:110px}.brz .brz-fs-im-111{font-size:111px}.brz .brz-fs-im-112{font-size:112px}.brz .brz-fs-im-113{font-size:113px}.brz .brz-fs-im-114{font-size:114px}.brz .brz-fs-im-115{font-size:115px}.brz .brz-fs-im-116{font-size:116px}.brz .brz-fs-im-117{font-size:117px}.brz .brz-fs-im-118{font-size:118px}.brz .brz-fs-im-119{font-size:119px}.brz .brz-fs-im-120{font-size:120px}.brz .brz-fs-im-121{font-size:121px}.brz .brz-fs-im-122{font-size:122px}.brz .brz-fs-im-123{font-size:123px}.brz .brz-fs-im-124{font-size:124px}.brz .brz-fs-im-125{font-size:125px}.brz .brz-fs-im-126{font-size:126px}.brz .brz-fs-im-127{font-size:127px}.brz .brz-fs-im-128{font-size:128px}.brz .brz-fs-im-129{font-size:129px}.brz .brz-fs-im-130{font-size:130px}.brz .brz-fs-im-131{font-size:131px}.brz .brz-fs-im-132{font-size:132px}.brz .brz-fs-im-133{font-size:133px}.brz .brz-fs-im-134{font-size:134px}.brz .brz-fs-im-135{font-size:135px}.brz .brz-fs-im-136{font-size:136px}.brz .brz-fs-im-137{font-size:137px}.brz .brz-fs-im-138{font-size:138px}.brz .brz-fs-im-139{font-size:139px}.brz .brz-fs-im-140{font-size:140px}.brz .brz-fs-im-141{font-size:141px}.brz .brz-fs-im-142{font-size:142px}.brz .brz-fs-im-143{font-size:143px}.brz .brz-fs-im-144{font-size:144px}.brz .brz-fs-im-145{font-size:145px}.brz .brz-fs-im-146{font-size:146px}.brz .brz-fs-im-147{font-size:147px}.brz .brz-fs-im-148{font-size:148px}.brz .brz-fs-im-149{font-size:149px}.brz .brz-fs-im-150{font-size:150px}.brz .brz-fs-im-151{font-size:151px}.brz .brz-fs-im-152{font-size:152px}.brz .brz-fs-im-153{font-size:153px}.brz .brz-fs-im-154{font-size:154px}.brz .brz-fs-im-155{font-size:155px}.brz .brz-fs-im-156{font-size:156px}.brz .brz-fs-im-157{font-size:157px}.brz .brz-fs-im-158{font-size:158px}.brz .brz-fs-im-159{font-size:159px}.brz .brz-fs-im-160{font-size:160px}.brz .brz-fs-im-161{font-size:161px}.brz .brz-fs-im-162{font-size:162px}.brz .brz-fs-im-163{font-size:163px}.brz .brz-fs-im-164{font-size:164px}.brz .brz-fs-im-165{font-size:165px}.brz .brz-fs-im-166{font-size:166px}.brz .brz-fs-im-167{font-size:167px}.brz .brz-fs-im-168{font-size:168px}.brz .brz-fs-im-169{font-size:169px}.brz .brz-fs-im-170{font-size:170px}.brz .brz-fs-im-171{font-size:171px}.brz .brz-fs-im-172{font-size:172px}.brz .brz-fs-im-173{font-size:173px}.brz .brz-fs-im-174{font-size:174px}.brz .brz-fs-im-175{font-size:175px}.brz .brz-fs-im-176{font-size:176px}.brz .brz-fs-im-177{font-size:177px}.brz .brz-fs-im-178{font-size:178px}.brz .brz-fs-im-179{font-size:179px}.brz .brz-fs-im-180{font-size:180px}.brz .brz-fs-xs-6{font-size:6px}.brz .brz-fs-xs-7{font-size:7px}.brz .brz-fs-xs-8{font-size:8px}.brz .brz-fs-xs-9{font-size:9px}.brz .brz-fs-xs-10{font-size:10px}.brz .brz-fs-xs-11{font-size:11px}.brz .brz-fs-xs-12{font-size:12px}.brz .brz-fs-xs-13{font-size:13px}.brz .brz-fs-xs-14{font-size:14px}.brz .brz-fs-xs-15{font-size:15px}.brz .brz-fs-xs-16{font-size:16px}.brz .brz-fs-xs-17{font-size:17px}.brz .brz-fs-xs-18{font-size:18px}.brz .brz-fs-xs-19{font-size:19px}.brz .brz-fs-xs-20{font-size:20px}.brz .brz-fs-xs-21{font-size:21px}.brz .brz-fs-xs-22{font-size:22px}.brz .brz-fs-xs-23{font-size:23px}.brz .brz-fs-xs-24{font-size:24px}.brz .brz-fs-xs-25{font-size:25px}.brz .brz-fs-xs-26{font-size:26px}.brz .brz-fs-xs-27{font-size:27px}.brz .brz-fs-xs-28{font-size:28px}.brz .brz-fs-xs-29{font-size:29px}.brz .brz-fs-xs-30{font-size:30px}.brz .brz-fs-xs-31{font-size:31px}.brz .brz-fs-xs-32{font-size:32px}.brz .brz-fs-xs-33{font-size:33px}.brz .brz-fs-xs-34{font-size:34px}.brz .brz-fs-xs-35{font-size:35px}.brz .brz-fs-xs-36{font-size:36px}.brz .brz-fs-xs-37{font-size:37px}.brz .brz-fs-xs-38{font-size:38px}.brz .brz-fs-xs-39{font-size:39px}.brz .brz-fs-xs-40{font-size:40px}.brz .brz-fs-xs-41{font-size:41px}.brz .brz-fs-xs-42{font-size:42px}.brz .brz-fs-xs-43{font-size:43px}.brz .brz-fs-xs-44{font-size:44px}.brz .brz-fs-xs-45{font-size:45px}.brz .brz-fs-xs-46{font-size:46px}.brz .brz-fs-xs-47{font-size:47px}.brz .brz-fs-xs-48{font-size:48px}.brz .brz-fs-xs-49{font-size:49px}.brz .brz-fs-xs-50{font-size:50px}.brz .brz-fs-xs-51{font-size:51px}.brz .brz-fs-xs-52{font-size:52px}.brz .brz-fs-xs-53{font-size:53px}.brz .brz-fs-xs-54{font-size:54px}.brz .brz-fs-xs-55{font-size:55px}.brz .brz-fs-xs-56{font-size:56px}.brz .brz-fs-xs-57{font-size:57px}.brz .brz-fs-xs-58{font-size:58px}.brz .brz-fs-xs-59{font-size:59px}.brz .brz-fs-xs-60{font-size:60px}.brz .brz-fs-xs-61{font-size:61px}.brz .brz-fs-xs-62{font-size:62px}.brz .brz-fs-xs-63{font-size:63px}.brz .brz-fs-xs-64{font-size:64px}.brz .brz-fs-xs-65{font-size:65px}.brz .brz-fs-xs-66{font-size:66px}.brz .brz-fs-xs-67{font-size:67px}.brz .brz-fs-xs-68{font-size:68px}.brz .brz-fs-xs-69{font-size:69px}.brz .brz-fs-xs-70{font-size:70px}.brz .brz-fs-xs-71{font-size:71px}.brz .brz-fs-xs-72{font-size:72px}.brz .brz-fs-xs-73{font-size:73px}.brz .brz-fs-xs-74{font-size:74px}.brz .brz-fs-xs-75{font-size:75px}.brz .brz-fs-xs-76{font-size:76px}.brz .brz-fs-xs-77{font-size:77px}.brz .brz-fs-xs-78{font-size:78px}.brz .brz-fs-xs-79{font-size:79px}.brz .brz-fs-xs-80{font-size:80px}.brz .brz-fs-xs-81{font-size:81px}.brz .brz-fs-xs-82{font-size:82px}.brz .brz-fs-xs-83{font-size:83px}.brz .brz-fs-xs-84{font-size:84px}.brz .brz-fs-xs-85{font-size:85px}.brz .brz-fs-xs-86{font-size:86px}.brz .brz-fs-xs-87{font-size:87px}.brz .brz-fs-xs-88{font-size:88px}.brz .brz-fs-xs-89{font-size:89px}.brz .brz-fs-xs-90{font-size:90px}.brz .brz-fs-xs-91{font-size:91px}.brz .brz-fs-xs-92{font-size:92px}.brz .brz-fs-xs-93{font-size:93px}.brz .brz-fs-xs-94{font-size:94px}.brz .brz-fs-xs-95{font-size:95px}.brz .brz-fs-xs-96{font-size:96px}.brz .brz-fs-xs-97{font-size:97px}.brz .brz-fs-xs-98{font-size:98px}.brz .brz-fs-xs-99{font-size:99px}.brz .brz-fs-xs-100{font-size:100px}.brz .brz-fs-xs-101{font-size:101px}.brz .brz-fs-xs-102{font-size:102px}.brz .brz-fs-xs-103{font-size:103px}.brz .brz-fs-xs-104{font-size:104px}.brz .brz-fs-xs-105{font-size:105px}.brz .brz-fs-xs-106{font-size:106px}.brz .brz-fs-xs-107{font-size:107px}.brz .brz-fs-xs-108{font-size:108px}.brz .brz-fs-xs-109{font-size:109px}.brz .brz-fs-xs-110{font-size:110px}.brz .brz-fs-xs-111{font-size:111px}.brz .brz-fs-xs-112{font-size:112px}.brz .brz-fs-xs-113{font-size:113px}.brz .brz-fs-xs-114{font-size:114px}.brz .brz-fs-xs-115{font-size:115px}.brz .brz-fs-xs-116{font-size:116px}.brz .brz-fs-xs-117{font-size:117px}.brz .brz-fs-xs-118{font-size:118px}.brz .brz-fs-xs-119{font-size:119px}.brz .brz-fs-xs-120{font-size:120px}.brz .brz-fs-xs-121{font-size:121px}.brz .brz-fs-xs-122{font-size:122px}.brz .brz-fs-xs-123{font-size:123px}.brz .brz-fs-xs-124{font-size:124px}.brz .brz-fs-xs-125{font-size:125px}.brz .brz-fs-xs-126{font-size:126px}.brz .brz-fs-xs-127{font-size:127px}.brz .brz-fs-xs-128{font-size:128px}.brz .brz-fs-xs-129{font-size:129px}.brz .brz-fs-xs-130{font-size:130px}.brz .brz-fs-xs-131{font-size:131px}.brz .brz-fs-xs-132{font-size:132px}.brz .brz-fs-xs-133{font-size:133px}.brz .brz-fs-xs-134{font-size:134px}.brz .brz-fs-xs-135{font-size:135px}.brz .brz-fs-xs-136{font-size:136px}.brz .brz-fs-xs-137{font-size:137px}.brz .brz-fs-xs-138{font-size:138px}.brz .brz-fs-xs-139{font-size:139px}.brz .brz-fs-xs-140{font-size:140px}.brz .brz-fs-xs-141{font-size:141px}.brz .brz-fs-xs-142{font-size:142px}.brz .brz-fs-xs-143{font-size:143px}.brz .brz-fs-xs-144{font-size:144px}.brz .brz-fs-xs-145{font-size:145px}.brz .brz-fs-xs-146{font-size:146px}.brz .brz-fs-xs-147{font-size:147px}.brz .brz-fs-xs-148{font-size:148px}.brz .brz-fs-xs-149{font-size:149px}.brz .brz-fs-xs-150{font-size:150px}.brz .brz-fs-xs-151{font-size:151px}.brz .brz-fs-xs-152{font-size:152px}.brz .brz-fs-xs-153{font-size:153px}.brz .brz-fs-xs-154{font-size:154px}.brz .brz-fs-xs-155{font-size:155px}.brz .brz-fs-xs-156{font-size:156px}.brz .brz-fs-xs-157{font-size:157px}.brz .brz-fs-xs-158{font-size:158px}.brz .brz-fs-xs-159{font-size:159px}.brz .brz-fs-xs-160{font-size:160px}.brz .brz-fs-xs-161{font-size:161px}.brz .brz-fs-xs-162{font-size:162px}.brz .brz-fs-xs-163{font-size:163px}.brz .brz-fs-xs-164{font-size:164px}.brz .brz-fs-xs-165{font-size:165px}.brz .brz-fs-xs-166{font-size:166px}.brz .brz-fs-xs-167{font-size:167px}.brz .brz-fs-xs-168{font-size:168px}.brz .brz-fs-xs-169{font-size:169px}.brz .brz-fs-xs-170{font-size:170px}.brz .brz-fs-xs-171{font-size:171px}.brz .brz-fs-xs-172{font-size:172px}.brz .brz-fs-xs-173{font-size:173px}.brz .brz-fs-xs-174{font-size:174px}.brz .brz-fs-xs-175{font-size:175px}.brz .brz-fs-xs-176{font-size:176px}.brz .brz-fs-xs-177{font-size:177px}.brz .brz-fs-xs-178{font-size:178px}.brz .brz-fs-xs-179{font-size:179px}.brz .brz-fs-xs-180{font-size:180px}.brz .brz-lh-im-1{line-height:1em}.brz .brz-lh-im-1_1{line-height:1.1em}.brz .brz-lh-im-1_2{line-height:1.2em}.brz .brz-lh-im-1_3{line-height:1.3em}.brz .brz-lh-im-1_4{line-height:1.4em}.brz .brz-lh-im-1_5{line-height:1.5em}.brz .brz-lh-im-1_6{line-height:1.6em}.brz .brz-lh-im-1_7{line-height:1.7em}.brz .brz-lh-im-1_8{line-height:1.8em}.brz .brz-lh-im-1_9{line-height:1.9em}.brz .brz-lh-im-2{line-height:2em}.brz .brz-lh-im-2_1{line-height:2.1em}.brz .brz-lh-im-2_2{line-height:2.2em}.brz .brz-lh-im-2_3{line-height:2.3em}.brz .brz-lh-im-2_4{line-height:2.4em}.brz .brz-lh-im-2_5{line-height:2.5em}.brz .brz-lh-im-2_6{line-height:2.6em}.brz .brz-lh-im-2_7{line-height:2.7em}.brz .brz-lh-im-2_8{line-height:2.8em}.brz .brz-lh-im-2_9{line-height:2.9em}.brz .brz-lh-im-3{line-height:3em}.brz .brz-lh-im-3_1{line-height:3.1em}.brz .brz-lh-im-3_2{line-height:3.2em}.brz .brz-lh-im-3_3{line-height:3.3em}.brz .brz-lh-im-3_4{line-height:3.4em}.brz .brz-lh-im-3_5{line-height:3.5em}.brz .brz-lh-im-3_6{line-height:3.6em}.brz .brz-lh-im-3_7{line-height:3.7em}.brz .brz-lh-im-3_8{line-height:3.8em}.brz .brz-lh-im-3_9{line-height:3.9em}.brz .brz-lh-im-4{line-height:4em}.brz .brz-lh-im-4_1{line-height:4.1em}.brz .brz-lh-im-4_2{line-height:4.2em}.brz .brz-lh-im-4_3{line-height:4.3em}.brz .brz-lh-im-4_4{line-height:4.4em}.brz .brz-lh-im-4_5{line-height:4.5em}.brz .brz-lh-im-4_6{line-height:4.6em}.brz .brz-lh-im-4_7{line-height:4.7em}.brz .brz-lh-im-4_8{line-height:4.8em}.brz .brz-lh-im-4_9{line-height:4.9em}.brz .brz-lh-im-5{line-height:5em}.brz .brz-lh-im-5_1{line-height:5.1em}.brz .brz-lh-im-5_2{line-height:5.2em}.brz .brz-lh-im-5_3{line-height:5.3em}.brz .brz-lh-im-5_4{line-height:5.4em}.brz .brz-lh-im-5_5{line-height:5.5em}.brz .brz-lh-im-5_6{line-height:5.6em}.brz .brz-lh-im-5_7{line-height:5.7em}.brz .brz-lh-im-5_8{line-height:5.8em}.brz .brz-lh-im-5_9{line-height:5.9em}.brz .brz-lh-xs-1{line-height:1em}.brz .brz-lh-xs-1_1{line-height:1.1em}.brz .brz-lh-xs-1_2{line-height:1.2em}.brz .brz-lh-xs-1_3{line-height:1.3em}.brz .brz-lh-xs-1_4{line-height:1.4em}.brz .brz-lh-xs-1_5{line-height:1.5em}.brz .brz-lh-xs-1_6{line-height:1.6em}.brz .brz-lh-xs-1_7{line-height:1.7em}.brz .brz-lh-xs-1_8{line-height:1.8em}.brz .brz-lh-xs-1_9{line-height:1.9em}.brz .brz-lh-xs-2{line-height:2em}.brz .brz-lh-xs-2_1{line-height:2.1em}.brz .brz-lh-xs-2_2{line-height:2.2em}.brz .brz-lh-xs-2_3{line-height:2.3em}.brz .brz-lh-xs-2_4{line-height:2.4em}.brz .brz-lh-xs-2_5{line-height:2.5em}.brz .brz-lh-xs-2_6{line-height:2.6em}.brz .brz-lh-xs-2_7{line-height:2.7em}.brz .brz-lh-xs-2_8{line-height:2.8em}.brz .brz-lh-xs-2_9{line-height:2.9em}.brz .brz-lh-xs-3{line-height:3em}.brz .brz-lh-xs-3_1{line-height:3.1em}.brz .brz-lh-xs-3_2{line-height:3.2em}.brz .brz-lh-xs-3_3{line-height:3.3em}.brz .brz-lh-xs-3_4{line-height:3.4em}.brz .brz-lh-xs-3_5{line-height:3.5em}.brz .brz-lh-xs-3_6{line-height:3.6em}.brz .brz-lh-xs-3_7{line-height:3.7em}.brz .brz-lh-xs-3_8{line-height:3.8em}.brz .brz-lh-xs-3_9{line-height:3.9em}.brz .brz-lh-xs-4{line-height:4em}.brz .brz-lh-xs-4_1{line-height:4.1em}.brz .brz-lh-xs-4_2{line-height:4.2em}.brz .brz-lh-xs-4_3{line-height:4.3em}.brz .brz-lh-xs-4_4{line-height:4.4em}.brz .brz-lh-xs-4_5{line-height:4.5em}.brz .brz-lh-xs-4_6{line-height:4.6em}.brz .brz-lh-xs-4_7{line-height:4.7em}.brz .brz-lh-xs-4_8{line-height:4.8em}.brz .brz-lh-xs-4_9{line-height:4.9em}.brz .brz-lh-xs-5{line-height:5em}.brz .brz-lh-xs-5_1{line-height:5.1em}.brz .brz-lh-xs-5_2{line-height:5.2em}.brz .brz-lh-xs-5_3{line-height:5.3em}.brz .brz-lh-xs-5_4{line-height:5.4em}.brz .brz-lh-xs-5_5{line-height:5.5em}.brz .brz-lh-xs-5_6{line-height:5.6em}.brz .brz-lh-xs-5_7{line-height:5.7em}.brz .brz-lh-xs-5_8{line-height:5.8em}.brz .brz-lh-xs-5_9{line-height:5.9em}.brz .brz-fw-im-100{font-weight:100!important}.brz .brz-fw-im-200{font-weight:200!important}.brz .brz-fw-im-300{font-weight:300!important}.brz .brz-fw-im-400{font-weight:400!important}.brz .brz-fw-im-500{font-weight:500!important}.brz .brz-fw-im-600{font-weight:600!important}.brz .brz-fw-im-700{font-weight:700!important}.brz .brz-fw-im-800{font-weight:800!important}.brz .brz-fw-im-900{font-weight:900!important}.brz .brz-fw-im-1000{font-weight:1000!important}.brz .brz-fw-im-1100{font-weight:1100!important}.brz .brz-fw-im-1200{font-weight:1200!important}.brz .brz-fw-im-1300{font-weight:1300!important}.brz .brz-fw-im-1400{font-weight:1400!important}.brz .brz-fw-im-1500{font-weight:1500!important}.brz .brz-fw-xs-100{font-weight:100!important}.brz .brz-fw-xs-200{font-weight:200!important}.brz .brz-fw-xs-300{font-weight:300!important}.brz .brz-fw-xs-400{font-weight:400!important}.brz .brz-fw-xs-500{font-weight:500!important}.brz .brz-fw-xs-600{font-weight:600!important}.brz .brz-fw-xs-700{font-weight:700!important}.brz .brz-fw-xs-800{font-weight:800!important}.brz .brz-fw-xs-900{font-weight:900!important}.brz .brz-fw-xs-1000{font-weight:1000!important}.brz .brz-fw-xs-1100{font-weight:1100!important}.brz .brz-fw-xs-1200{font-weight:1200!important}.brz .brz-fw-xs-1300{font-weight:1300!important}.brz .brz-fw-xs-1400{font-weight:1400!important}.brz .brz-fw-xs-1500{font-weight:1500!important}.brz .brz-ls-im-m_5{letter-spacing:-5px}.brz .brz-ls-im-m_5_5{letter-spacing:-5.5px}.brz .brz-ls-im-m_4{letter-spacing:-4px}.brz .brz-ls-im-m_4_5{letter-spacing:-4.5px}.brz .brz-ls-im-m_3{letter-spacing:-3px}.brz .brz-ls-im-m_3_5{letter-spacing:-3.5px}.brz .brz-ls-im-m_2{letter-spacing:-2px}.brz .brz-ls-im-m_2_5{letter-spacing:-2.5px}.brz .brz-ls-im-m_1{letter-spacing:-1px}.brz .brz-ls-im-m_1_5{letter-spacing:-1.5px}.brz .brz-ls-im-m_0{letter-spacing:0}.brz .brz-ls-im-m_0_5{letter-spacing:-.5px}.brz .brz-ls-im-0{letter-spacing:0}.brz .brz-ls-im-0_5{letter-spacing:.5px}.brz .brz-ls-im-1{letter-spacing:1px}.brz .brz-ls-im-1_5{letter-spacing:1.5px}.brz .brz-ls-im-2{letter-spacing:2px}.brz .brz-ls-im-2_5{letter-spacing:2.5px}.brz .brz-ls-im-3{letter-spacing:3px}.brz .brz-ls-im-3_5{letter-spacing:3.5px}.brz .brz-ls-im-4{letter-spacing:4px}.brz .brz-ls-im-4_5{letter-spacing:4.5px}.brz .brz-ls-im-5{letter-spacing:5px}.brz .brz-ls-im-5_5{letter-spacing:5.5px}.brz .brz-ls-im-6{letter-spacing:6px}.brz .brz-ls-im-6_5{letter-spacing:6.5px}.brz .brz-ls-im-7{letter-spacing:7px}.brz .brz-ls-im-7_5{letter-spacing:7.5px}.brz .brz-ls-im-8{letter-spacing:8px}.brz .brz-ls-im-8_5{letter-spacing:8.5px}.brz .brz-ls-im-9{letter-spacing:9px}.brz .brz-ls-im-9_5{letter-spacing:9.5px}.brz .brz-ls-im-10{letter-spacing:10px}.brz .brz-ls-im-10_5{letter-spacing:10.5px}.brz .brz-ls-im-11{letter-spacing:11px}.brz .brz-ls-im-11_5{letter-spacing:11.5px}.brz .brz-ls-im-12{letter-spacing:12px}.brz .brz-ls-im-12_5{letter-spacing:12.5px}.brz .brz-ls-im-13{letter-spacing:13px}.brz .brz-ls-im-13_5{letter-spacing:13.5px}.brz .brz-ls-im-14{letter-spacing:14px}.brz .brz-ls-im-14_5{letter-spacing:14.5px}.brz .brz-ls-im-15{letter-spacing:15px}.brz .brz-ls-im-15_5{letter-spacing:15.5px}.brz .brz-ls-xs-m_5{letter-spacing:-5px}.brz .brz-ls-xs-m_5_5{letter-spacing:-5.5px}.brz .brz-ls-xs-m_4{letter-spacing:-4px}.brz .brz-ls-xs-m_4_5{letter-spacing:-4.5px}.brz .brz-ls-xs-m_3{letter-spacing:-3px}.brz .brz-ls-xs-m_3_5{letter-spacing:-3.5px}.brz .brz-ls-xs-m_2{letter-spacing:-2px}.brz .brz-ls-xs-m_2_5{letter-spacing:-2.5px}.brz .brz-ls-xs-m_1{letter-spacing:-1px}.brz .brz-ls-xs-m_1_5{letter-spacing:-1.5px}.brz .brz-ls-xs-m_0{letter-spacing:0}.brz .brz-ls-xs-m_0_5{letter-spacing:-.5px}.brz .brz-ls-xs-0{letter-spacing:0}.brz .brz-ls-xs-0_5{letter-spacing:.5px}.brz .brz-ls-xs-1{letter-spacing:1px}.brz .brz-ls-xs-1_5{letter-spacing:1.5px}.brz .brz-ls-xs-2{letter-spacing:2px}.brz .brz-ls-xs-2_5{letter-spacing:2.5px}.brz .brz-ls-xs-3{letter-spacing:3px}.brz .brz-ls-xs-3_5{letter-spacing:3.5px}.brz .brz-ls-xs-4{letter-spacing:4px}.brz .brz-ls-xs-4_5{letter-spacing:4.5px}.brz .brz-ls-xs-5{letter-spacing:5px}.brz .brz-ls-xs-5_5{letter-spacing:5.5px}.brz .brz-ls-xs-6{letter-spacing:6px}.brz .brz-ls-xs-6_5{letter-spacing:6.5px}.brz .brz-ls-xs-7{letter-spacing:7px}.brz .brz-ls-xs-7_5{letter-spacing:7.5px}.brz .brz-ls-xs-8{letter-spacing:8px}.brz .brz-ls-xs-8_5{letter-spacing:8.5px}.brz .brz-ls-xs-9{letter-spacing:9px}.brz .brz-ls-xs-9_5{letter-spacing:9.5px}.brz .brz-ls-xs-10{letter-spacing:10px}.brz .brz-ls-xs-10_5{letter-spacing:10.5px}.brz .brz-ls-xs-11{letter-spacing:11px}.brz .brz-ls-xs-11_5{letter-spacing:11.5px}.brz .brz-ls-xs-12{letter-spacing:12px}.brz .brz-ls-xs-12_5{letter-spacing:12.5px}.brz .brz-ls-xs-13{letter-spacing:13px}.brz .brz-ls-xs-13_5{letter-spacing:13.5px}.brz .brz-ls-xs-14{letter-spacing:14px}.brz .brz-ls-xs-14_5{letter-spacing:14.5px}.brz .brz-ls-xs-15{letter-spacing:15px}.brz .brz-ls-xs-15_5{letter-spacing:15.5px}.brz .brz-mt-xs-0{margin-top:0!important}.brz .brz-mt-xs-1{margin-top:1px!important}.brz .brz-mt-xs-2{margin-top:2px!important}.brz .brz-mt-xs-3{margin-top:3px!important}.brz .brz-mt-xs-4{margin-top:4px!important}.brz .brz-mt-xs-5{margin-top:5px!important}.brz .brz-mt-xs-6{margin-top:6px!important}.brz .brz-mt-xs-7{margin-top:7px!important}.brz .brz-mt-xs-8{margin-top:8px!important}.brz .brz-mt-xs-9{margin-top:9px!important}.brz .brz-mt-xs-10{margin-top:10px!important}.brz .brz-mt-xs-11{margin-top:11px!important}.brz .brz-mt-xs-12{margin-top:12px!important}.brz .brz-mt-xs-13{margin-top:13px!important}.brz .brz-mt-xs-14{margin-top:14px!important}.brz .brz-mt-xs-15{margin-top:15px!important}.brz .brz-mt-xs-16{margin-top:16px!important}.brz .brz-mt-xs-17{margin-top:17px!important}.brz .brz-mt-xs-18{margin-top:18px!important}.brz .brz-mt-xs-19{margin-top:19px!important}.brz .brz-mt-xs-20{margin-top:20px!important}.brz .brz-mt-xs-21{margin-top:21px!important}.brz .brz-mt-xs-22{margin-top:22px!important}.brz .brz-mt-xs-23{margin-top:23px!important}.brz .brz-mt-xs-24{margin-top:24px!important}.brz .brz-mt-xs-25{margin-top:25px!important}.brz .brz-mt-xs-26{margin-top:26px!important}.brz .brz-mt-xs-27{margin-top:27px!important}.brz .brz-mt-xs-28{margin-top:28px!important}.brz .brz-mt-xs-29{margin-top:29px!important}.brz .brz-mt-xs-30{margin-top:30px!important}.brz .brz-mt-xs-31{margin-top:31px!important}.brz .brz-mt-xs-32{margin-top:32px!important}.brz .brz-mt-xs-33{margin-top:33px!important}.brz .brz-mt-xs-34{margin-top:34px!important}.brz .brz-mt-xs-35{margin-top:35px!important}.brz .brz-mt-xs-36{margin-top:36px!important}.brz .brz-mt-xs-37{margin-top:37px!important}.brz .brz-mt-xs-38{margin-top:38px!important}.brz .brz-mt-xs-39{margin-top:39px!important}.brz .brz-mt-xs-40{margin-top:40px!important}.brz .brz-mt-xs-41{margin-top:41px!important}.brz .brz-mt-xs-42{margin-top:42px!important}.brz .brz-mt-xs-43{margin-top:43px!important}.brz .brz-mt-xs-44{margin-top:44px!important}.brz .brz-mt-xs-45{margin-top:45px!important}.brz .brz-mt-xs-46{margin-top:46px!important}.brz .brz-mt-xs-47{margin-top:47px!important}.brz .brz-mt-xs-48{margin-top:48px!important}.brz .brz-mt-xs-49{margin-top:49px!important}.brz .brz-mt-xs-50{margin-top:50px!important}.brz .brz-mt-xs-51{margin-top:51px!important}.brz .brz-mt-xs-52{margin-top:52px!important}.brz .brz-mt-xs-53{margin-top:53px!important}.brz .brz-mt-xs-54{margin-top:54px!important}.brz .brz-mt-xs-55{margin-top:55px!important}.brz .brz-mt-xs-56{margin-top:56px!important}.brz .brz-mt-xs-57{margin-top:57px!important}.brz .brz-mt-xs-58{margin-top:58px!important}.brz .brz-mt-xs-59{margin-top:59px!important}.brz .brz-mt-xs-60{margin-top:60px!important}.brz .brz-mt-xs-61{margin-top:61px!important}.brz .brz-mt-xs-62{margin-top:62px!important}.brz .brz-mt-xs-63{margin-top:63px!important}.brz .brz-mt-xs-64{margin-top:64px!important}.brz .brz-mt-xs-65{margin-top:65px!important}.brz .brz-mt-xs-66{margin-top:66px!important}.brz .brz-mt-xs-67{margin-top:67px!important}.brz .brz-mt-xs-68{margin-top:68px!important}.brz .brz-mt-xs-69{margin-top:69px!important}.brz .brz-mt-xs-70{margin-top:70px!important}.brz .brz-mt-xs-71{margin-top:71px!important}.brz .brz-mt-xs-72{margin-top:72px!important}.brz .brz-mt-xs-73{margin-top:73px!important}.brz .brz-mt-xs-74{margin-top:74px!important}.brz .brz-mt-xs-75{margin-top:75px!important}.brz .brz-mt-xs-76{margin-top:76px!important}.brz .brz-mt-xs-77{margin-top:77px!important}.brz .brz-mt-xs-78{margin-top:78px!important}.brz .brz-mt-xs-79{margin-top:79px!important}.brz .brz-mt-xs-80{margin-top:80px!important}.brz .brz-mt-xs-81{margin-top:81px!important}.brz .brz-mt-xs-82{margin-top:82px!important}.brz .brz-mt-xs-83{margin-top:83px!important}.brz .brz-mt-xs-84{margin-top:84px!important}.brz .brz-mt-xs-85{margin-top:85px!important}.brz .brz-mt-xs-86{margin-top:86px!important}.brz .brz-mt-xs-87{margin-top:87px!important}.brz .brz-mt-xs-88{margin-top:88px!important}.brz .brz-mt-xs-89{margin-top:89px!important}.brz .brz-mt-xs-90{margin-top:90px!important}.brz .brz-mt-xs-91{margin-top:91px!important}.brz .brz-mt-xs-92{margin-top:92px!important}.brz .brz-mt-xs-93{margin-top:93px!important}.brz .brz-mt-xs-94{margin-top:94px!important}.brz .brz-mt-xs-95{margin-top:95px!important}.brz .brz-mt-xs-96{margin-top:96px!important}.brz .brz-mt-xs-97{margin-top:97px!important}.brz .brz-mt-xs-98{margin-top:98px!important}.brz .brz-mt-xs-99{margin-top:99px!important}.brz .brz-mt-xs-100{margin-top:100px!important}.brz .brz-mb-xs-0{margin-bottom:0!important}.brz .brz-mb-xs-1{margin-bottom:1px!important}.brz .brz-mb-xs-2{margin-bottom:2px!important}.brz .brz-mb-xs-3{margin-bottom:3px!important}.brz .brz-mb-xs-4{margin-bottom:4px!important}.brz .brz-mb-xs-5{margin-bottom:5px!important}.brz .brz-mb-xs-6{margin-bottom:6px!important}.brz .brz-mb-xs-7{margin-bottom:7px!important}.brz .brz-mb-xs-8{margin-bottom:8px!important}.brz .brz-mb-xs-9{margin-bottom:9px!important}.brz .brz-mb-xs-10{margin-bottom:10px!important}.brz .brz-mb-xs-11{margin-bottom:11px!important}.brz .brz-mb-xs-12{margin-bottom:12px!important}.brz .brz-mb-xs-13{margin-bottom:13px!important}.brz .brz-mb-xs-14{margin-bottom:14px!important}.brz .brz-mb-xs-15{margin-bottom:15px!important}.brz .brz-mb-xs-16{margin-bottom:16px!important}.brz .brz-mb-xs-17{margin-bottom:17px!important}.brz .brz-mb-xs-18{margin-bottom:18px!important}.brz .brz-mb-xs-19{margin-bottom:19px!important}.brz .brz-mb-xs-20{margin-bottom:20px!important}.brz .brz-mb-xs-21{margin-bottom:21px!important}.brz .brz-mb-xs-22{margin-bottom:22px!important}.brz .brz-mb-xs-23{margin-bottom:23px!important}.brz .brz-mb-xs-24{margin-bottom:24px!important}.brz .brz-mb-xs-25{margin-bottom:25px!important}.brz .brz-mb-xs-26{margin-bottom:26px!important}.brz .brz-mb-xs-27{margin-bottom:27px!important}.brz .brz-mb-xs-28{margin-bottom:28px!important}.brz .brz-mb-xs-29{margin-bottom:29px!important}.brz .brz-mb-xs-30{margin-bottom:30px!important}.brz .brz-mb-xs-31{margin-bottom:31px!important}.brz .brz-mb-xs-32{margin-bottom:32px!important}.brz .brz-mb-xs-33{margin-bottom:33px!important}.brz .brz-mb-xs-34{margin-bottom:34px!important}.brz .brz-mb-xs-35{margin-bottom:35px!important}.brz .brz-mb-xs-36{margin-bottom:36px!important}.brz .brz-mb-xs-37{margin-bottom:37px!important}.brz .brz-mb-xs-38{margin-bottom:38px!important}.brz .brz-mb-xs-39{margin-bottom:39px!important}.brz .brz-mb-xs-40{margin-bottom:40px!important}.brz .brz-mb-xs-41{margin-bottom:41px!important}.brz .brz-mb-xs-42{margin-bottom:42px!important}.brz .brz-mb-xs-43{margin-bottom:43px!important}.brz .brz-mb-xs-44{margin-bottom:44px!important}.brz .brz-mb-xs-45{margin-bottom:45px!important}.brz .brz-mb-xs-46{margin-bottom:46px!important}.brz .brz-mb-xs-47{margin-bottom:47px!important}.brz .brz-mb-xs-48{margin-bottom:48px!important}.brz .brz-mb-xs-49{margin-bottom:49px!important}.brz .brz-mb-xs-50{margin-bottom:50px!important}.brz .brz-mb-xs-51{margin-bottom:51px!important}.brz .brz-mb-xs-52{margin-bottom:52px!important}.brz .brz-mb-xs-53{margin-bottom:53px!important}.brz .brz-mb-xs-54{margin-bottom:54px!important}.brz .brz-mb-xs-55{margin-bottom:55px!important}.brz .brz-mb-xs-56{margin-bottom:56px!important}.brz .brz-mb-xs-57{margin-bottom:57px!important}.brz .brz-mb-xs-58{margin-bottom:58px!important}.brz .brz-mb-xs-59{margin-bottom:59px!important}.brz .brz-mb-xs-60{margin-bottom:60px!important}.brz .brz-mb-xs-61{margin-bottom:61px!important}.brz .brz-mb-xs-62{margin-bottom:62px!important}.brz .brz-mb-xs-63{margin-bottom:63px!important}.brz .brz-mb-xs-64{margin-bottom:64px!important}.brz .brz-mb-xs-65{margin-bottom:65px!important}.brz .brz-mb-xs-66{margin-bottom:66px!important}.brz .brz-mb-xs-67{margin-bottom:67px!important}.brz .brz-mb-xs-68{margin-bottom:68px!important}.brz .brz-mb-xs-69{margin-bottom:69px!important}.brz .brz-mb-xs-70{margin-bottom:70px!important}.brz .brz-mb-xs-71{margin-bottom:71px!important}.brz .brz-mb-xs-72{margin-bottom:72px!important}.brz .brz-mb-xs-73{margin-bottom:73px!important}.brz .brz-mb-xs-74{margin-bottom:74px!important}.brz .brz-mb-xs-75{margin-bottom:75px!important}.brz .brz-mb-xs-76{margin-bottom:76px!important}.brz .brz-mb-xs-77{margin-bottom:77px!important}.brz .brz-mb-xs-78{margin-bottom:78px!important}.brz .brz-mb-xs-79{margin-bottom:79px!important}.brz .brz-mb-xs-80{margin-bottom:80px!important}.brz .brz-mb-xs-81{margin-bottom:81px!important}.brz .brz-mb-xs-82{margin-bottom:82px!important}.brz .brz-mb-xs-83{margin-bottom:83px!important}.brz .brz-mb-xs-84{margin-bottom:84px!important}.brz .brz-mb-xs-85{margin-bottom:85px!important}.brz .brz-mb-xs-86{margin-bottom:86px!important}.brz .brz-mb-xs-87{margin-bottom:87px!important}.brz .brz-mb-xs-88{margin-bottom:88px!important}.brz .brz-mb-xs-89{margin-bottom:89px!important}.brz .brz-mb-xs-90{margin-bottom:90px!important}.brz .brz-mb-xs-91{margin-bottom:91px!important}.brz .brz-mb-xs-92{margin-bottom:92px!important}.brz .brz-mb-xs-93{margin-bottom:93px!important}.brz .brz-mb-xs-94{margin-bottom:94px!important}.brz .brz-mb-xs-95{margin-bottom:95px!important}.brz .brz-mb-xs-96{margin-bottom:96px!important}.brz .brz-mb-xs-97{margin-bottom:97px!important}.brz .brz-mb-xs-98{margin-bottom:98px!important}.brz .brz-mb-xs-99{margin-bottom:99px!important}.brz .brz-mb-xs-100{margin-bottom:100px!important}.brz .brz-text-xs-left{text-align:left!important;-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.brz .brz-text-xs-right{text-align:right!important;-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.brz .brz-text-xs-center{text-align:center!important;-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}}@media (min-width:768px){.brz .brz-fs-lg-6{font-size:6px}.brz .brz-fs-lg-7{font-size:7px}.brz .brz-fs-lg-8{font-size:8px}.brz .brz-fs-lg-9{font-size:9px}.brz .brz-fs-lg-10{font-size:10px}.brz .brz-fs-lg-11{font-size:11px}.brz .brz-fs-lg-12{font-size:12px}.brz .brz-fs-lg-13{font-size:13px}.brz .brz-fs-lg-14{font-size:14px}.brz .brz-fs-lg-15{font-size:15px}.brz .brz-fs-lg-16{font-size:16px}.brz .brz-fs-lg-17{font-size:17px}.brz .brz-fs-lg-18{font-size:18px}.brz .brz-fs-lg-19{font-size:19px}.brz .brz-fs-lg-20{font-size:20px}.brz .brz-fs-lg-21{font-size:21px}.brz .brz-fs-lg-22{font-size:22px}.brz .brz-fs-lg-23{font-size:23px}.brz .brz-fs-lg-24{font-size:24px}.brz .brz-fs-lg-25{font-size:25px}.brz .brz-fs-lg-26{font-size:26px}.brz .brz-fs-lg-27{font-size:27px}.brz .brz-fs-lg-28{font-size:28px}.brz .brz-fs-lg-29{font-size:29px}.brz .brz-fs-lg-30{font-size:30px}.brz .brz-fs-lg-31{font-size:31px}.brz .brz-fs-lg-32{font-size:32px}.brz .brz-fs-lg-33{font-size:33px}.brz .brz-fs-lg-34{font-size:34px}.brz .brz-fs-lg-35{font-size:35px}.brz .brz-fs-lg-36{font-size:36px}.brz .brz-fs-lg-37{font-size:37px}.brz .brz-fs-lg-38{font-size:38px}.brz .brz-fs-lg-39{font-size:39px}.brz .brz-fs-lg-40{font-size:40px}.brz .brz-fs-lg-41{font-size:41px}.brz .brz-fs-lg-42{font-size:42px}.brz .brz-fs-lg-43{font-size:43px}.brz .brz-fs-lg-44{font-size:44px}.brz .brz-fs-lg-45{font-size:45px}.brz .brz-fs-lg-46{font-size:46px}.brz .brz-fs-lg-47{font-size:47px}.brz .brz-fs-lg-48{font-size:48px}.brz .brz-fs-lg-49{font-size:49px}.brz .brz-fs-lg-50{font-size:50px}.brz .brz-fs-lg-51{font-size:51px}.brz .brz-fs-lg-52{font-size:52px}.brz .brz-fs-lg-53{font-size:53px}.brz .brz-fs-lg-54{font-size:54px}.brz .brz-fs-lg-55{font-size:55px}.brz .brz-fs-lg-56{font-size:56px}.brz .brz-fs-lg-57{font-size:57px}.brz .brz-fs-lg-58{font-size:58px}.brz .brz-fs-lg-59{font-size:59px}.brz .brz-fs-lg-60{font-size:60px}.brz .brz-fs-lg-61{font-size:61px}.brz .brz-fs-lg-62{font-size:62px}.brz .brz-fs-lg-63{font-size:63px}.brz .brz-fs-lg-64{font-size:64px}.brz .brz-fs-lg-65{font-size:65px}.brz .brz-fs-lg-66{font-size:66px}.brz .brz-fs-lg-67{font-size:67px}.brz .brz-fs-lg-68{font-size:68px}.brz .brz-fs-lg-69{font-size:69px}.brz .brz-fs-lg-70{font-size:70px}.brz .brz-fs-lg-71{font-size:71px}.brz .brz-fs-lg-72{font-size:72px}.brz .brz-fs-lg-73{font-size:73px}.brz .brz-fs-lg-74{font-size:74px}.brz .brz-fs-lg-75{font-size:75px}.brz .brz-fs-lg-76{font-size:76px}.brz .brz-fs-lg-77{font-size:77px}.brz .brz-fs-lg-78{font-size:78px}.brz .brz-fs-lg-79{font-size:79px}.brz .brz-fs-lg-80{font-size:80px}.brz .brz-fs-lg-81{font-size:81px}.brz .brz-fs-lg-82{font-size:82px}.brz .brz-fs-lg-83{font-size:83px}.brz .brz-fs-lg-84{font-size:84px}.brz .brz-fs-lg-85{font-size:85px}.brz .brz-fs-lg-86{font-size:86px}.brz .brz-fs-lg-87{font-size:87px}.brz .brz-fs-lg-88{font-size:88px}.brz .brz-fs-lg-89{font-size:89px}.brz .brz-fs-lg-90{font-size:90px}.brz .brz-fs-lg-91{font-size:91px}.brz .brz-fs-lg-92{font-size:92px}.brz .brz-fs-lg-93{font-size:93px}.brz .brz-fs-lg-94{font-size:94px}.brz .brz-fs-lg-95{font-size:95px}.brz .brz-fs-lg-96{font-size:96px}.brz .brz-fs-lg-97{font-size:97px}.brz .brz-fs-lg-98{font-size:98px}.brz .brz-fs-lg-99{font-size:99px}.brz .brz-fs-lg-100{font-size:100px}.brz .brz-fs-lg-101{font-size:101px}.brz .brz-fs-lg-102{font-size:102px}.brz .brz-fs-lg-103{font-size:103px}.brz .brz-fs-lg-104{font-size:104px}.brz .brz-fs-lg-105{font-size:105px}.brz .brz-fs-lg-106{font-size:106px}.brz .brz-fs-lg-107{font-size:107px}.brz .brz-fs-lg-108{font-size:108px}.brz .brz-fs-lg-109{font-size:109px}.brz .brz-fs-lg-110{font-size:110px}.brz .brz-fs-lg-111{font-size:111px}.brz .brz-fs-lg-112{font-size:112px}.brz .brz-fs-lg-113{font-size:113px}.brz .brz-fs-lg-114{font-size:114px}.brz .brz-fs-lg-115{font-size:115px}.brz .brz-fs-lg-116{font-size:116px}.brz .brz-fs-lg-117{font-size:117px}.brz .brz-fs-lg-118{font-size:118px}.brz .brz-fs-lg-119{font-size:119px}.brz .brz-fs-lg-120{font-size:120px}.brz .brz-fs-lg-121{font-size:121px}.brz .brz-fs-lg-122{font-size:122px}.brz .brz-fs-lg-123{font-size:123px}.brz .brz-fs-lg-124{font-size:124px}.brz .brz-fs-lg-125{font-size:125px}.brz .brz-fs-lg-126{font-size:126px}.brz .brz-fs-lg-127{font-size:127px}.brz .brz-fs-lg-128{font-size:128px}.brz .brz-fs-lg-129{font-size:129px}.brz .brz-fs-lg-130{font-size:130px}.brz .brz-fs-lg-131{font-size:131px}.brz .brz-fs-lg-132{font-size:132px}.brz .brz-fs-lg-133{font-size:133px}.brz .brz-fs-lg-134{font-size:134px}.brz .brz-fs-lg-135{font-size:135px}.brz .brz-fs-lg-136{font-size:136px}.brz .brz-fs-lg-137{font-size:137px}.brz .brz-fs-lg-138{font-size:138px}.brz .brz-fs-lg-139{font-size:139px}.brz .brz-fs-lg-140{font-size:140px}.brz .brz-fs-lg-141{font-size:141px}.brz .brz-fs-lg-142{font-size:142px}.brz .brz-fs-lg-143{font-size:143px}.brz .brz-fs-lg-144{font-size:144px}.brz .brz-fs-lg-145{font-size:145px}.brz .brz-fs-lg-146{font-size:146px}.brz .brz-fs-lg-147{font-size:147px}.brz .brz-fs-lg-148{font-size:148px}.brz .brz-fs-lg-149{font-size:149px}.brz .brz-fs-lg-150{font-size:150px}.brz .brz-fs-lg-151{font-size:151px}.brz .brz-fs-lg-152{font-size:152px}.brz .brz-fs-lg-153{font-size:153px}.brz .brz-fs-lg-154{font-size:154px}.brz .brz-fs-lg-155{font-size:155px}.brz .brz-fs-lg-156{font-size:156px}.brz .brz-fs-lg-157{font-size:157px}.brz .brz-fs-lg-158{font-size:158px}.brz .brz-fs-lg-159{font-size:159px}.brz .brz-fs-lg-160{font-size:160px}.brz .brz-fs-lg-161{font-size:161px}.brz .brz-fs-lg-162{font-size:162px}.brz .brz-fs-lg-163{font-size:163px}.brz .brz-fs-lg-164{font-size:164px}.brz .brz-fs-lg-165{font-size:165px}.brz .brz-fs-lg-166{font-size:166px}.brz .brz-fs-lg-167{font-size:167px}.brz .brz-fs-lg-168{font-size:168px}.brz .brz-fs-lg-169{font-size:169px}.brz .brz-fs-lg-170{font-size:170px}.brz .brz-fs-lg-171{font-size:171px}.brz .brz-fs-lg-172{font-size:172px}.brz .brz-fs-lg-173{font-size:173px}.brz .brz-fs-lg-174{font-size:174px}.brz .brz-fs-lg-175{font-size:175px}.brz .brz-fs-lg-176{font-size:176px}.brz .brz-fs-lg-177{font-size:177px}.brz .brz-fs-lg-178{font-size:178px}.brz .brz-fs-lg-179{font-size:179px}.brz .brz-fs-lg-180{font-size:180px}.brz .brz-lh-lg-1{line-height:1em}.brz .brz-lh-lg-1_1{line-height:1.1em}.brz .brz-lh-lg-1_2{line-height:1.2em}.brz .brz-lh-lg-1_3{line-height:1.3em}.brz .brz-lh-lg-1_4{line-height:1.4em}.brz .brz-lh-lg-1_5{line-height:1.5em}.brz .brz-lh-lg-1_6{line-height:1.6em}.brz .brz-lh-lg-1_7{line-height:1.7em}.brz .brz-lh-lg-1_8{line-height:1.8em}.brz .brz-lh-lg-1_9{line-height:1.9em}.brz .brz-lh-lg-2{line-height:2em}.brz .brz-lh-lg-2_1{line-height:2.1em}.brz .brz-lh-lg-2_2{line-height:2.2em}.brz .brz-lh-lg-2_3{line-height:2.3em}.brz .brz-lh-lg-2_4{line-height:2.4em}.brz .brz-lh-lg-2_5{line-height:2.5em}.brz .brz-lh-lg-2_6{line-height:2.6em}.brz .brz-lh-lg-2_7{line-height:2.7em}.brz .brz-lh-lg-2_8{line-height:2.8em}.brz .brz-lh-lg-2_9{line-height:2.9em}.brz .brz-lh-lg-3{line-height:3em}.brz .brz-lh-lg-3_1{line-height:3.1em}.brz .brz-lh-lg-3_2{line-height:3.2em}.brz .brz-lh-lg-3_3{line-height:3.3em}.brz .brz-lh-lg-3_4{line-height:3.4em}.brz .brz-lh-lg-3_5{line-height:3.5em}.brz .brz-lh-lg-3_6{line-height:3.6em}.brz .brz-lh-lg-3_7{line-height:3.7em}.brz .brz-lh-lg-3_8{line-height:3.8em}.brz .brz-lh-lg-3_9{line-height:3.9em}.brz .brz-lh-lg-4{line-height:4em}.brz .brz-lh-lg-4_1{line-height:4.1em}.brz .brz-lh-lg-4_2{line-height:4.2em}.brz .brz-lh-lg-4_3{line-height:4.3em}.brz .brz-lh-lg-4_4{line-height:4.4em}.brz .brz-lh-lg-4_5{line-height:4.5em}.brz .brz-lh-lg-4_6{line-height:4.6em}.brz .brz-lh-lg-4_7{line-height:4.7em}.brz .brz-lh-lg-4_8{line-height:4.8em}.brz .brz-lh-lg-4_9{line-height:4.9em}.brz .brz-lh-lg-5{line-height:5em}.brz .brz-lh-lg-5_1{line-height:5.1em}.brz .brz-lh-lg-5_2{line-height:5.2em}.brz .brz-lh-lg-5_3{line-height:5.3em}.brz .brz-lh-lg-5_4{line-height:5.4em}.brz .brz-lh-lg-5_5{line-height:5.5em}.brz .brz-lh-lg-5_6{line-height:5.6em}.brz .brz-lh-lg-5_7{line-height:5.7em}.brz .brz-lh-lg-5_8{line-height:5.8em}.brz .brz-lh-lg-5_9{line-height:5.9em}.brz .brz-ls-lg-m_5{letter-spacing:-5px}.brz .brz-ls-lg-m_5_5{letter-spacing:-5.5px}.brz .brz-ls-lg-m_4{letter-spacing:-4px}.brz .brz-ls-lg-m_4_5{letter-spacing:-4.5px}.brz .brz-ls-lg-m_3{letter-spacing:-3px}.brz .brz-ls-lg-m_3_5{letter-spacing:-3.5px}.brz .brz-ls-lg-m_2{letter-spacing:-2px}.brz .brz-ls-lg-m_2_5{letter-spacing:-2.5px}.brz .brz-ls-lg-m_1{letter-spacing:-1px}.brz .brz-ls-lg-m_1_5{letter-spacing:-1.5px}.brz .brz-ls-lg-m_0{letter-spacing:0}.brz .brz-ls-lg-m_0_5{letter-spacing:-.5px}.brz .brz-ls-lg-0{letter-spacing:0}.brz .brz-ls-lg-0_5{letter-spacing:.5px}.brz .brz-ls-lg-1{letter-spacing:1px}.brz .brz-ls-lg-1_5{letter-spacing:1.5px}.brz .brz-ls-lg-2{letter-spacing:2px}.brz .brz-ls-lg-2_5{letter-spacing:2.5px}.brz .brz-ls-lg-3{letter-spacing:3px}.brz .brz-ls-lg-3_5{letter-spacing:3.5px}.brz .brz-ls-lg-4{letter-spacing:4px}.brz .brz-ls-lg-4_5{letter-spacing:4.5px}.brz .brz-ls-lg-5{letter-spacing:5px}.brz .brz-ls-lg-5_5{letter-spacing:5.5px}.brz .brz-ls-lg-6{letter-spacing:6px}.brz .brz-ls-lg-6_5{letter-spacing:6.5px}.brz .brz-ls-lg-7{letter-spacing:7px}.brz .brz-ls-lg-7_5{letter-spacing:7.5px}.brz .brz-ls-lg-8{letter-spacing:8px}.brz .brz-ls-lg-8_5{letter-spacing:8.5px}.brz .brz-ls-lg-9{letter-spacing:9px}.brz .brz-ls-lg-9_5{letter-spacing:9.5px}.brz .brz-ls-lg-10{letter-spacing:10px}.brz .brz-ls-lg-10_5{letter-spacing:10.5px}.brz .brz-ls-lg-11{letter-spacing:11px}.brz .brz-ls-lg-11_5{letter-spacing:11.5px}.brz .brz-ls-lg-12{letter-spacing:12px}.brz .brz-ls-lg-12_5{letter-spacing:12.5px}.brz .brz-ls-lg-13{letter-spacing:13px}.brz .brz-ls-lg-13_5{letter-spacing:13.5px}.brz .brz-ls-lg-14{letter-spacing:14px}.brz .brz-ls-lg-14_5{letter-spacing:14.5px}.brz .brz-ls-lg-15{letter-spacing:15px}.brz .brz-ls-lg-15_5{letter-spacing:15.5px}.brz .brz-fw-lg-100{font-weight:100!important}.brz .brz-fw-lg-200{font-weight:200!important}.brz .brz-fw-lg-300{font-weight:300!important}.brz .brz-fw-lg-400{font-weight:400!important}.brz .brz-fw-lg-500{font-weight:500!important}.brz .brz-fw-lg-600{font-weight:600!important}.brz .brz-fw-lg-700{font-weight:700!important}.brz .brz-fw-lg-800{font-weight:800!important}.brz .brz-fw-lg-900{font-weight:900!important}.brz .brz-fw-lg-1000{font-weight:1000!important}.brz .brz-fw-lg-1100{font-weight:1100!important}.brz .brz-fw-lg-1200{font-weight:1200!important}.brz .brz-fw-lg-1300{font-weight:1300!important}.brz .brz-fw-lg-1400{font-weight:1400!important}.brz .brz-fw-lg-1500{font-weight:1500!important}.brz .brz-mt-lg-0{margin-top:0!important}.brz .brz-mt-lg-1{margin-top:1px!important}.brz .brz-mt-lg-2{margin-top:2px!important}.brz .brz-mt-lg-3{margin-top:3px!important}.brz .brz-mt-lg-4{margin-top:4px!important}.brz .brz-mt-lg-5{margin-top:5px!important}.brz .brz-mt-lg-6{margin-top:6px!important}.brz .brz-mt-lg-7{margin-top:7px!important}.brz .brz-mt-lg-8{margin-top:8px!important}.brz .brz-mt-lg-9{margin-top:9px!important}.brz .brz-mt-lg-10{margin-top:10px!important}.brz .brz-mt-lg-11{margin-top:11px!important}.brz .brz-mt-lg-12{margin-top:12px!important}.brz .brz-mt-lg-13{margin-top:13px!important}.brz .brz-mt-lg-14{margin-top:14px!important}.brz .brz-mt-lg-15{margin-top:15px!important}.brz .brz-mt-lg-16{margin-top:16px!important}.brz .brz-mt-lg-17{margin-top:17px!important}.brz .brz-mt-lg-18{margin-top:18px!important}.brz .brz-mt-lg-19{margin-top:19px!important}.brz .brz-mt-lg-20{margin-top:20px!important}.brz .brz-mt-lg-21{margin-top:21px!important}.brz .brz-mt-lg-22{margin-top:22px!important}.brz .brz-mt-lg-23{margin-top:23px!important}.brz .brz-mt-lg-24{margin-top:24px!important}.brz .brz-mt-lg-25{margin-top:25px!important}.brz .brz-mt-lg-26{margin-top:26px!important}.brz .brz-mt-lg-27{margin-top:27px!important}.brz .brz-mt-lg-28{margin-top:28px!important}.brz .brz-mt-lg-29{margin-top:29px!important}.brz .brz-mt-lg-30{margin-top:30px!important}.brz .brz-mt-lg-31{margin-top:31px!important}.brz .brz-mt-lg-32{margin-top:32px!important}.brz .brz-mt-lg-33{margin-top:33px!important}.brz .brz-mt-lg-34{margin-top:34px!important}.brz .brz-mt-lg-35{margin-top:35px!important}.brz .brz-mt-lg-36{margin-top:36px!important}.brz .brz-mt-lg-37{margin-top:37px!important}.brz .brz-mt-lg-38{margin-top:38px!important}.brz .brz-mt-lg-39{margin-top:39px!important}.brz .brz-mt-lg-40{margin-top:40px!important}.brz .brz-mt-lg-41{margin-top:41px!important}.brz .brz-mt-lg-42{margin-top:42px!important}.brz .brz-mt-lg-43{margin-top:43px!important}.brz .brz-mt-lg-44{margin-top:44px!important}.brz .brz-mt-lg-45{margin-top:45px!important}.brz .brz-mt-lg-46{margin-top:46px!important}.brz .brz-mt-lg-47{margin-top:47px!important}.brz .brz-mt-lg-48{margin-top:48px!important}.brz .brz-mt-lg-49{margin-top:49px!important}.brz .brz-mt-lg-50{margin-top:50px!important}.brz .brz-mt-lg-51{margin-top:51px!important}.brz .brz-mt-lg-52{margin-top:52px!important}.brz .brz-mt-lg-53{margin-top:53px!important}.brz .brz-mt-lg-54{margin-top:54px!important}.brz .brz-mt-lg-55{margin-top:55px!important}.brz .brz-mt-lg-56{margin-top:56px!important}.brz .brz-mt-lg-57{margin-top:57px!important}.brz .brz-mt-lg-58{margin-top:58px!important}.brz .brz-mt-lg-59{margin-top:59px!important}.brz .brz-mt-lg-60{margin-top:60px!important}.brz .brz-mt-lg-61{margin-top:61px!important}.brz .brz-mt-lg-62{margin-top:62px!important}.brz .brz-mt-lg-63{margin-top:63px!important}.brz .brz-mt-lg-64{margin-top:64px!important}.brz .brz-mt-lg-65{margin-top:65px!important}.brz .brz-mt-lg-66{margin-top:66px!important}.brz .brz-mt-lg-67{margin-top:67px!important}.brz .brz-mt-lg-68{margin-top:68px!important}.brz .brz-mt-lg-69{margin-top:69px!important}.brz .brz-mt-lg-70{margin-top:70px!important}.brz .brz-mt-lg-71{margin-top:71px!important}.brz .brz-mt-lg-72{margin-top:72px!important}.brz .brz-mt-lg-73{margin-top:73px!important}.brz .brz-mt-lg-74{margin-top:74px!important}.brz .brz-mt-lg-75{margin-top:75px!important}.brz .brz-mt-lg-76{margin-top:76px!important}.brz .brz-mt-lg-77{margin-top:77px!important}.brz .brz-mt-lg-78{margin-top:78px!important}.brz .brz-mt-lg-79{margin-top:79px!important}.brz .brz-mt-lg-80{margin-top:80px!important}.brz .brz-mt-lg-81{margin-top:81px!important}.brz .brz-mt-lg-82{margin-top:82px!important}.brz .brz-mt-lg-83{margin-top:83px!important}.brz .brz-mt-lg-84{margin-top:84px!important}.brz .brz-mt-lg-85{margin-top:85px!important}.brz .brz-mt-lg-86{margin-top:86px!important}.brz .brz-mt-lg-87{margin-top:87px!important}.brz .brz-mt-lg-88{margin-top:88px!important}.brz .brz-mt-lg-89{margin-top:89px!important}.brz .brz-mt-lg-90{margin-top:90px!important}.brz .brz-mt-lg-91{margin-top:91px!important}.brz .brz-mt-lg-92{margin-top:92px!important}.brz .brz-mt-lg-93{margin-top:93px!important}.brz .brz-mt-lg-94{margin-top:94px!important}.brz .brz-mt-lg-95{margin-top:95px!important}.brz .brz-mt-lg-96{margin-top:96px!important}.brz .brz-mt-lg-97{margin-top:97px!important}.brz .brz-mt-lg-98{margin-top:98px!important}.brz .brz-mt-lg-99{margin-top:99px!important}.brz .brz-mt-lg-100{margin-top:100px!important}.brz .brz-mb-lg-0{margin-bottom:0!important}.brz .brz-mb-lg-1{margin-bottom:1px!important}.brz .brz-mb-lg-2{margin-bottom:2px!important}.brz .brz-mb-lg-3{margin-bottom:3px!important}.brz .brz-mb-lg-4{margin-bottom:4px!important}.brz .brz-mb-lg-5{margin-bottom:5px!important}.brz .brz-mb-lg-6{margin-bottom:6px!important}.brz .brz-mb-lg-7{margin-bottom:7px!important}.brz .brz-mb-lg-8{margin-bottom:8px!important}.brz .brz-mb-lg-9{margin-bottom:9px!important}.brz .brz-mb-lg-10{margin-bottom:10px!important}.brz .brz-mb-lg-11{margin-bottom:11px!important}.brz .brz-mb-lg-12{margin-bottom:12px!important}.brz .brz-mb-lg-13{margin-bottom:13px!important}.brz .brz-mb-lg-14{margin-bottom:14px!important}.brz .brz-mb-lg-15{margin-bottom:15px!important}.brz .brz-mb-lg-16{margin-bottom:16px!important}.brz .brz-mb-lg-17{margin-bottom:17px!important}.brz .brz-mb-lg-18{margin-bottom:18px!important}.brz .brz-mb-lg-19{margin-bottom:19px!important}.brz .brz-mb-lg-20{margin-bottom:20px!important}.brz .brz-mb-lg-21{margin-bottom:21px!important}.brz .brz-mb-lg-22{margin-bottom:22px!important}.brz .brz-mb-lg-23{margin-bottom:23px!important}.brz .brz-mb-lg-24{margin-bottom:24px!important}.brz .brz-mb-lg-25{margin-bottom:25px!important}.brz .brz-mb-lg-26{margin-bottom:26px!important}.brz .brz-mb-lg-27{margin-bottom:27px!important}.brz .brz-mb-lg-28{margin-bottom:28px!important}.brz .brz-mb-lg-29{margin-bottom:29px!important}.brz .brz-mb-lg-30{margin-bottom:30px!important}.brz .brz-mb-lg-31{margin-bottom:31px!important}.brz .brz-mb-lg-32{margin-bottom:32px!important}.brz .brz-mb-lg-33{margin-bottom:33px!important}.brz .brz-mb-lg-34{margin-bottom:34px!important}.brz .brz-mb-lg-35{margin-bottom:35px!important}.brz .brz-mb-lg-36{margin-bottom:36px!important}.brz .brz-mb-lg-37{margin-bottom:37px!important}.brz .brz-mb-lg-38{margin-bottom:38px!important}.brz .brz-mb-lg-39{margin-bottom:39px!important}.brz .brz-mb-lg-40{margin-bottom:40px!important}.brz .brz-mb-lg-41{margin-bottom:41px!important}.brz .brz-mb-lg-42{margin-bottom:42px!important}.brz .brz-mb-lg-43{margin-bottom:43px!important}.brz .brz-mb-lg-44{margin-bottom:44px!important}.brz .brz-mb-lg-45{margin-bottom:45px!important}.brz .brz-mb-lg-46{margin-bottom:46px!important}.brz .brz-mb-lg-47{margin-bottom:47px!important}.brz .brz-mb-lg-48{margin-bottom:48px!important}.brz .brz-mb-lg-49{margin-bottom:49px!important}.brz .brz-mb-lg-50{margin-bottom:50px!important}.brz .brz-mb-lg-51{margin-bottom:51px!important}.brz .brz-mb-lg-52{margin-bottom:52px!important}.brz .brz-mb-lg-53{margin-bottom:53px!important}.brz .brz-mb-lg-54{margin-bottom:54px!important}.brz .brz-mb-lg-55{margin-bottom:55px!important}.brz .brz-mb-lg-56{margin-bottom:56px!important}.brz .brz-mb-lg-57{margin-bottom:57px!important}.brz .brz-mb-lg-58{margin-bottom:58px!important}.brz .brz-mb-lg-59{margin-bottom:59px!important}.brz .brz-mb-lg-60{margin-bottom:60px!important}.brz .brz-mb-lg-61{margin-bottom:61px!important}.brz .brz-mb-lg-62{margin-bottom:62px!important}.brz .brz-mb-lg-63{margin-bottom:63px!important}.brz .brz-mb-lg-64{margin-bottom:64px!important}.brz .brz-mb-lg-65{margin-bottom:65px!important}.brz .brz-mb-lg-66{margin-bottom:66px!important}.brz .brz-mb-lg-67{margin-bottom:67px!important}.brz .brz-mb-lg-68{margin-bottom:68px!important}.brz .brz-mb-lg-69{margin-bottom:69px!important}.brz .brz-mb-lg-70{margin-bottom:70px!important}.brz .brz-mb-lg-71{margin-bottom:71px!important}.brz .brz-mb-lg-72{margin-bottom:72px!important}.brz .brz-mb-lg-73{margin-bottom:73px!important}.brz .brz-mb-lg-74{margin-bottom:74px!important}.brz .brz-mb-lg-75{margin-bottom:75px!important}.brz .brz-mb-lg-76{margin-bottom:76px!important}.brz .brz-mb-lg-77{margin-bottom:77px!important}.brz .brz-mb-lg-78{margin-bottom:78px!important}.brz .brz-mb-lg-79{margin-bottom:79px!important}.brz .brz-mb-lg-80{margin-bottom:80px!important}.brz .brz-mb-lg-81{margin-bottom:81px!important}.brz .brz-mb-lg-82{margin-bottom:82px!important}.brz .brz-mb-lg-83{margin-bottom:83px!important}.brz .brz-mb-lg-84{margin-bottom:84px!important}.brz .brz-mb-lg-85{margin-bottom:85px!important}.brz .brz-mb-lg-86{margin-bottom:86px!important}.brz .brz-mb-lg-87{margin-bottom:87px!important}.brz .brz-mb-lg-88{margin-bottom:88px!important}.brz .brz-mb-lg-89{margin-bottom:89px!important}.brz .brz-mb-lg-90{margin-bottom:90px!important}.brz .brz-mb-lg-91{margin-bottom:91px!important}.brz .brz-mb-lg-92{margin-bottom:92px!important}.brz .brz-mb-lg-93{margin-bottom:93px!important}.brz .brz-mb-lg-94{margin-bottom:94px!important}.brz .brz-mb-lg-95{margin-bottom:95px!important}.brz .brz-mb-lg-96{margin-bottom:96px!important}.brz .brz-mb-lg-97{margin-bottom:97px!important}.brz .brz-mb-lg-98{margin-bottom:98px!important}.brz .brz-mb-lg-99{margin-bottom:99px!important}.brz .brz-mb-lg-100{margin-bottom:100px!important}.brz .brz-text-lg-left{text-align:left!important;-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.brz .brz-text-lg-right{text-align:right!important;-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.brz .brz-text-lg-center{text-align:center!important;-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}}.brz .admin-bar .wp-env .visual-sidebar{top:32px;left:0}.brz .admin-bar .wp-env .visual-wrap-block-wrap{margin-left:0;padding-bottom:0}.brz .brz-wp__sidebar{width:100%}.brz .brz-wp-shortcode{width:100%}.brz .brz-wp-shortcode .woocommerce:empty{width:100%;height:15px}.brz .brz-wp-shortcode .woocommerce-product-gallery{opacity:1!important}.brz .brz-wp-shortcode__menu .menu{margin:0 auto;padding:0;list-style:none;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-wrap:wrap;flex-wrap:wrap}.brz .brz-wp-shortcode__menu .menu li{position:relative;display:inline-block;text-align:left;text-transform:uppercase;-webkit-box-flex:0;-ms-flex:0 1 auto;flex:0 1 auto}.brz .brz-wp-shortcode__menu .menu li .sub-menu{top:22px;width:280px;padding-top:8px;padding-left:0;padding-right:0;position:absolute;left:0;text-align:left;text-transform:none;display:none;z-index:110}.brz .brz-wp-shortcode__menu .menu li .sub-menu li{display:block;margin:0;padding:0;background:#33344b}.brz .brz-wp-shortcode__menu .menu li .sub-menu li:hover a{color:#fff;background:rgba(36,36,53,.94)}.brz .brz-wp-shortcode__menu .menu li .sub-menu li a{display:block;line-height:1.2em;color:#fcfcfc;padding:10px 12%}.brz .brz-wp-shortcode__menu .menu li .sub-menu li:first-child{padding-top:15px}.brz .brz-wp-shortcode__menu .menu li .sub-menu li:last-child{padding-bottom:15px}.brz .brz-wp-shortcode__menu .menu li a span,.brz .brz-wp-shortcode__menu .menu li:hover .sub-menu{display:block}
 
public/editor-build/1.0.10/editor/fonts/icons/nucleo-glyph.svg DELETED
@@ -1,6735 +0,0 @@
1
- <?xml version="1.0" standalone="no"?>
2
- <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
3
- <svg xmlns="http://www.w3.org/2000/svg">
4
- <defs>
5
- <font id="newIconFontGlyph" horiz-adv-x="256">
6
- <font-face font-family="newIconFontGlyph"
7
- units-per-em="256" ascent="256"
8
- descent="0" />
9
- <missing-glyph horiz-adv-x="0" />
10
- <glyph glyph-name="2x-drag-down"
11
- unicode="&#xEA01;"
12
- horiz-adv-x="256" d="M202.6666666666667 128L181.3333333333333 128L181.3333333333333 64L138.6666666666667 64L192 0L245.3333333333333 64L202.6666666666667 64zM138.6666666666667 202.6666666666667A53.33333333333333 53.33333333333333 0 0 1 245.3333333333333 202.6666666666667A53.33333333333333 53.33333333333333 0 0 1 138.6666666666667 202.6666666666667M74.6666666666667 128L53.3333333333333 128L53.3333333333333 64L10.6666666666667 64L64 0L117.3333333333333 64L74.6666666666667 64zM10.6666666666667 202.6666666666667A53.33333333333333 53.33333333333333 0 0 1 117.3333333333333 202.6666666666667A53.33333333333333 53.33333333333333 0 0 1 10.6666666666667 202.6666666666667" />
13
- <glyph glyph-name="2x-drag-up"
14
- unicode="&#xEA02;"
15
- horiz-adv-x="256" d="M53.3333333333333 128L74.6666666666667 128L74.6666666666667 192L117.3333333333333 192L64 256L10.6666666666667 192L53.3333333333333 192zM10.6666666666667 53.3333333333333A53.33333333333333 53.33333333333333 0 0 1 117.3333333333333 53.3333333333333A53.33333333333333 53.33333333333333 0 0 1 10.6666666666667 53.3333333333333M181.3333333333333 128L202.6666666666667 128L202.6666666666667 192L245.3333333333333 192L192 256L138.6666666666667 192L181.3333333333333 192zM138.6666666666667 53.3333333333333A53.33333333333333 53.33333333333333 0 0 1 245.3333333333333 53.3333333333333A53.33333333333333 53.33333333333333 0 0 1 138.6666666666667 53.3333333333333" />
16
- <glyph glyph-name="2x-swipe-down"
17
- unicode="&#xEA03;"
18
- horiz-adv-x="256" d="M64 128L64 192L42.6666666666667 192L42.6666666666667 128L0 128L53.3333333333333 64L106.6666666666667 128zM202.6666666666667 32V197.3333333333334C202.6666666666667 212.0609066666667 214.60576 224 229.3333333333333 224H229.3333333333333C244.0609066666667 224 256 212.0609066666667 256 197.3333333333334V32H202.6666666666667zM128 32V186.6666666666667C128 201.39424 139.9390933333333 213.3333333333334 154.6666666666667 213.3333333333334H154.6666666666667C169.39424 213.3333333333334 181.3333333333333 201.39424 181.3333333333333 186.6666666666667V32H128z" />
19
- <glyph glyph-name="2x-swipe-left"
20
- unicode="&#xEA04;"
21
- horiz-adv-x="256" d="M0 149.3333333333334L64 96L64 138.6666666666667L106.6666666666667 138.6666666666667L106.6666666666667 160L64 160L64 202.6666666666667zM202.6666666666667 32V197.3333333333334C202.6666666666667 212.0609066666667 214.60576 224 229.3333333333333 224H229.3333333333333C244.0609066666667 224 256 212.0609066666667 256 197.3333333333334V32H202.6666666666667zM128 32V186.6666666666667C128 201.39424 139.9390933333333 213.3333333333334 154.6666666666667 213.3333333333334H154.6666666666667C169.39424 213.3333333333334 181.3333333333333 201.39424 181.3333333333333 186.6666666666667V32H128z" />
22
- <glyph glyph-name="2x-swipe-right"
23
- unicode="&#xEA05;"
24
- horiz-adv-x="256" d="M256 149.3333333333334L192 202.6666666666667L192 160L149.3333333333333 160L149.3333333333333 138.6666666666667L192 138.6666666666667L192 96zM74.6666666666667 32V197.3333333333334C74.6666666666667 212.0609066666667 86.60576 224 101.3333333333333 224H101.3333333333333C116.0609066666667 224 128 212.0609066666667 128 197.3333333333334V32H74.6666666666667zM0 32L0 186.6666666666667C0 201.39424 11.9390933333333 213.3333333333334 26.6666666666667 213.3333333333334H26.6666666666667C41.39424 213.3333333333334 53.3333333333333 201.39424 53.3333333333333 186.6666666666667V32H0z" />
25
- <glyph glyph-name="2x-swipe-up"
26
- unicode="&#xEA06;"
27
- horiz-adv-x="256" d="M64 128L64 64L42.6666666666667 64L42.6666666666667 128L0 128L53.3333333333333 192L106.6666666666667 128zM202.6666666666667 32V197.3333333333334C202.6666666666667 212.0609066666667 214.60576 224 229.3333333333333 224H229.3333333333333C244.0609066666667 224 256 212.0609066666667 256 197.3333333333334V32H202.6666666666667zM128 32V186.6666666666667C128 201.39424 139.9390933333333 213.3333333333334 154.6666666666667 213.3333333333334H154.6666666666667C169.39424 213.3333333333334 181.3333333333333 201.39424 181.3333333333333 186.6666666666667V32H128z" />
28
- <glyph glyph-name="2x-tap"
29
- unicode="&#xEA07;"
30
- horiz-adv-x="256" d="M16.8749866666667 85.3125333333333C12.6562133333333 85.3125333333333 8.66656 87.8333866666667 6.9895466666667 91.9844266666667C2.3541333333333 103.4426666666667 0 115.5573333333334 0 128C0 180.9322666666667 43.0625066666667 224 96 224C97.2395733333333 224 98.4688 223.96352 99.6874666666667 223.90624C116.77088 237.7552 138.0208 245.3333333333334 160 245.3333333333334C212.9374933333333 245.3333333333334 256 202.2656 256 149.3333333333333C256 136.8802133333333 253.6562133333334 124.7656533333333 249.0208 113.3281066666667C246.81248 107.86976 240.5937066666667 105.2500266666667 235.13536 107.4478933333333C229.6770133333334 109.6562133333333 227.0416 115.8749866666667 229.2499200000001 121.33856C232.8437333333333 130.2187733333333 234.6666666666667 139.6354133333334 234.6666666666667 149.3333333333334C234.6666666666667 190.5051733333334 201.16672 224 160 224C141.7291733333333 224 124.11456 217.2552533333334 110.3853866666667 205.0052266666667C108.18752 203.05728 105.2916266666667 202.0781866666667 102.3853866666667 202.3333333333334C100.2708266666667 202.5104 98.1562666666667 202.6666666666667 96 202.6666666666667C54.83328 202.6666666666667 21.3333333333333 169.17184 21.3333333333333 128C21.3333333333333 118.3125333333334 23.1562666666667 108.8906666666667 26.7604266666667 99.9844266666667C28.9687466666667 94.52608 26.3333333333333 88.3073066666667 20.8749866666667 86.0989866666667C19.5624533333333 85.56768 18.20832 85.3125333333333 16.8749866666667 85.3125333333333zM138.6666666666667 10.6666666666667V144C138.6666666666667 164.6186666666667 155.3813333333333 181.3333333333334 176 181.3333333333334H176C196.6186666666667 181.3333333333334 213.3333333333333 164.6186666666667 213.3333333333333 144V10.6666666666667H138.6666666666667zM42.6666666666667 10.6666666666667V122.6666666666667C42.6666666666667 143.2853333333334 59.3813333333333 160 80 160H80C100.6186666666667 160 117.3333333333333 143.2853333333334 117.3333333333333 122.6666666666667V10.6666666666667H42.6666666666667z" />
31
- <glyph glyph-name="3d-29"
32
- unicode="&#xEA08;"
33
- horiz-adv-x="256" d="M128 170.6666666666667C122.1013333333333 170.6666666666667 117.3333333333333 175.4453333333334 117.3333333333333 181.3333333333334V234.6666666666667C117.3333333333333 240.5546666666667 122.1013333333333 245.3333333333334 128 245.3333333333334S138.6666666666667 240.5546666666667 138.6666666666667 234.6666666666667V181.3333333333334C138.6666666666667 175.4453333333334 133.8986666666667 170.6666666666667 128 170.6666666666667zM21.344 32C17.4293333333333 32 13.664 34.1546666666667 11.7866666666667 37.8986666666667C9.152 43.168 11.2853333333333 49.5786666666667 16.5546666666667 52.2133333333333L59.2213333333333 73.5466666666667C64.48 76.16 70.8906666666667 74.048 73.536 68.7786666666667C76.1706666666667 63.5093333333333 74.0373333333333 57.0986666666667 68.768 54.464L26.1013333333333 33.1306666666667C24.576 32.3626666666667 22.944 32 21.344 32zM234.656 32C233.056 32 231.424 32.3626666666667 229.8986666666667 33.12L187.232 54.4533333333334C181.9626666666667 57.088 179.8293333333333 63.4986666666667 182.464 68.768C185.1093333333333 74.0373333333334 191.52 76.1493333333334 196.7786666666667 73.536L239.4453333333333 52.2026666666667C244.7146666666667 49.568 246.848 43.1573333333334 244.2133333333333 37.888C242.336 34.1546666666667 238.5706666666667 32 234.656 32zM196.768 158.88L132.768 190.88C129.7706666666667 192.384 126.2293333333333 192.384 123.2213333333333 190.88L59.2213333333333 158.88C55.616 157.0666666666667 53.3333333333333 153.376 53.3333333333333 149.3333333333334V64C53.3333333333333 59.9573333333333 55.616 56.2666666666667 59.232 54.4533333333333L123.232 22.4533333333333C124.7253333333333 21.7066666666667 126.368 21.3333333333333 128 21.3333333333333S131.2746666666667 21.7066666666667 132.768 22.4533333333333L196.768 54.4533333333334C200.384 56.2666666666667 202.6666666666667 59.9573333333333 202.6666666666667 64V149.3333333333333C202.6666666666667 153.376 200.384 157.0666666666667 196.768 158.88zM128 169.408L168.1493333333333 149.3333333333334L128 129.2586666666667L87.8506666666667 149.3333333333334L128 169.408zM74.6666666666667 132.0746666666667L117.3333333333333 110.7413333333333V49.2586666666667L74.6666666666667 70.592V132.0746666666667zM138.6666666666667 49.2586666666667V110.7413333333333L181.3333333333333 132.0746666666667V70.592L138.6666666666667 49.2586666666667z" />
34
- <glyph glyph-name="3d-model"
35
- unicode="&#xEA09;"
36
- horiz-adv-x="256" d="M253.7066666666667 102.6133333333334L135.7653333333333 251.9466666666667C133.728 254.5066666666667 130.272 255.7333333333333 127.36 256C124.0853333333333 255.9893333333333 121.0026666666667 254.4746666666667 118.9866666666667 251.904L2.2613333333333 102.5706666666667C0.48 100.288 -0.2986666666667 97.3866666666667 0.1066666666667 94.5173333333333C0.5013333333333 91.648 2.0586666666667 89.0666666666667 4.3946666666667 87.3706666666667L121.728 2.0373333333333C123.5946666666667 0.672 125.8026666666667 0 128 0S132.4053333333334 0.672 134.272 2.0373333333333L251.6053333333333 87.3706666666666C253.9626666666667 89.0773333333333 255.4986666666667 91.6586666666667 255.8933333333333 94.5386666666666S255.4986666666667 100.3306666666667 253.7066666666667 102.6133333333334zM117.3333333333333 215.136V31.6053333333333L25.8773333333333 98.1333333333333L117.3333333333333 215.136zM138.6666666666667 31.616V213.8453333333334L230.08 98.0906666666667L138.6666666666667 31.616z" />
37
- <glyph glyph-name="3d"
38
- unicode="&#xEA0A;"
39
- horiz-adv-x="256" d="M256 138.6666666666667H234.6666666666667V213.3333333333334C234.6666666666667 219.2213333333334 229.888 224 224 224H192V245.3333333333334H224C241.6426666666667 245.3333333333334 256 230.976 256 213.3333333333334V138.6666666666667zM245.3333333333333 128H10.6666666666667C4.768 128 0 123.232 0 117.3333333333334V21.3333333333333C0 15.4346666666667 4.768 10.6666666666667 10.6666666666667 10.6666666666667H96C101.8986666666667 10.6666666666667 106.6666666666667 15.4346666666667 106.6666666666667 21.3333333333333V42.6666666666667C106.6666666666667 54.432 116.2346666666667 64 128 64S149.3333333333334 54.432 149.3333333333334 42.6666666666667V21.3333333333333C149.3333333333334 15.4346666666667 154.1013333333334 10.6666666666667 160 10.6666666666667H245.3333333333333C251.232 10.6666666666667 256 15.4346666666667 256 21.3333333333333V117.3333333333334C256 123.232 251.232 128 245.3333333333333 128zM21.3333333333333 138.6666666666667H0V213.3333333333334C0 230.976 14.3573333333333 245.3333333333334 32 245.3333333333334H64V224H32C26.112 224 21.3333333333333 219.2213333333334 21.3333333333333 213.3333333333334V138.6666666666667z" />
40
- <glyph glyph-name="3x-swipe-left"
41
- unicode="&#xEA0B;"
42
- horiz-adv-x="256" d="M10.6666666666667 213.3333333333334L64 256L64 224L245.3333333333333 224L245.3333333333333 202.6666666666667L64 202.6666666666667L64 170.6666666666667zM96 0V128C96 145.6730666666667 110.3268266666667 160 128 160H128C145.6730666666667 160 160 145.6731733333334 160 128V0H96zM21.3333333333333 0V117.3333333333334C21.3333333333333 135.0064 35.66016 149.3333333333334 53.3333333333333 149.3333333333334H53.3333333333333C71.0064 149.3333333333334 85.3333333333333 135.0065066666667 85.3333333333333 117.3333333333334V0H21.3333333333333zM170.6666666666667 0V117.3333333333334C170.6666666666667 135.0064 184.9934933333333 149.3333333333334 202.6666666666667 149.3333333333334H202.6666666666667C220.3397333333333 149.3333333333334 234.6666666666667 135.0065066666667 234.6666666666667 117.3333333333334V0H170.6666666666667z" />
43
- <glyph glyph-name="3x-swipe-right"
44
- unicode="&#xEA0C;"
45
- horiz-adv-x="256" d="M245.3333333333333 213.3333333333334L192 256L192 224L10.6666666666667 224L10.6666666666667 202.6666666666667L192 202.6666666666667L192 170.6666666666667zM96 0V128C96 145.6730666666667 110.3268266666667 160 128 160H128C145.6730666666667 160 160 145.6731733333334 160 128V0H96zM21.3333333333333 0V117.3333333333334C21.3333333333333 135.0064 35.66016 149.3333333333334 53.3333333333333 149.3333333333334H53.3333333333333C71.0064 149.3333333333334 85.3333333333333 135.0065066666667 85.3333333333333 117.3333333333334V0H21.3333333333333zM170.6666666666667 0V117.3333333333334C170.6666666666667 135.0064 184.9934933333333 149.3333333333334 202.6666666666667 149.3333333333334H202.6666666666667C220.3397333333333 149.3333333333334 234.6666666666667 135.0065066666667 234.6666666666667 117.3333333333334V0H170.6666666666667z" />
46
- <glyph glyph-name="3x-swipe-up"
47
- unicode="&#xEA0D;"
48
- horiz-adv-x="256" d="M128 256L170.6666666666667 202.6666666666667L138.6666666666667 202.6666666666667L138.6666666666667 160L117.3333333333333 160L117.3333333333333 202.6666666666667L85.3333333333333 202.6666666666667zM96 0V106.6666666666667C96 124.3397333333334 110.3268266666667 138.6666666666667 128 138.6666666666667H128C145.6730666666667 138.6666666666667 160 124.33984 160 106.6666666666667V0H96zM21.3333333333333 0V96C21.3333333333333 113.6730666666667 35.66016 128 53.3333333333333 128H53.3333333333333C71.0064 128 85.3333333333333 113.6731733333333 85.3333333333333 96V0H21.3333333333333zM170.6666666666667 0V96C170.6666666666667 113.6730666666667 184.9934933333333 128 202.6666666666667 128H202.6666666666667C220.3397333333333 128 234.6666666666667 113.6731733333333 234.6666666666667 96V0H170.6666666666667z" />
49
- <glyph glyph-name="3x-tap"
50
- unicode="&#xEA0E;"
51
- horiz-adv-x="256" d="M234.6666666666667 138.6666666666667C228.77088 138.6666666666667 224 143.4426666666667 224 149.3333333333334C224 172.2030933333334 206.0208 190.8541866666667 183.0625066666667 191.79168C179.4062933333334 191.9374933333334 176.07296 193.9582933333334 174.2500266666667 197.1354666666667C164.7396266666667 213.7083733333333 147.0208 224 128 224C108.7291733333333 224 90.88544 213.5156266666667 81.4478933333333 196.64064C79.2708266666667 192.7604266666667 75.0520533333333 190.6301866666667 70.5104 191.3073066666667C68.37504 191.6354133333333 66.2395733333333 192 64 192C40.4688 192 21.3333333333333 172.8594133333334 21.3333333333333 149.3333333333334C21.3333333333333 143.4426666666667 16.5624533333333 138.6666666666667 10.6666666666667 138.6666666666667S0 143.4426666666667 0 149.3333333333334C0 184.62496 28.7083733333333 213.3333333333334 64 213.3333333333334C64.92704 213.3333333333334 65.8229333333333 213.30208 66.69792 213.2448C80.5729066666667 233.2030933333334 103.4478933333333 245.3333333333334 128 245.3333333333334C152.71872 245.3333333333334 175.8749866666667 232.92704 189.7083733333333 212.6146133333334C221.3333333333333 208.5051733333334 245.3333333333333 181.7396266666667 245.3333333333333 149.3333333333334C245.3333333333333 143.4426666666667 240.5624533333334 138.6666666666667 234.6666666666667 138.6666666666667zM96 21.3333333333333V154.6666666666667C96 169.39424 107.9390933333333 181.3333333333334 122.6666666666667 181.3333333333334H122.6666666666667C137.39424 181.3333333333334 149.3333333333333 169.39424 149.3333333333333 154.6666666666667V21.3333333333333H96zM160 21.3333333333333V133.3333333333334C160 148.0609066666667 171.9390933333334 160 186.6666666666667 160H186.6666666666667C201.39424 160 213.3333333333333 148.0609066666667 213.3333333333333 133.3333333333334V21.3333333333333H160zM32 21.3333333333333V133.3333333333334C32 148.0609066666667 43.9390933333333 160 58.6666666666667 160H58.6666666666667C73.39424 160 85.3333333333333 148.0609066666667 85.3333333333333 133.3333333333334V21.3333333333333H32z" />
52
- <glyph glyph-name="4x-swipe-left"
53
- unicode="&#xEA0F;"
54
- horiz-adv-x="256" d="M10.6666666666667 213.3333333333334L64 256L64 224L245.3333333333333 224L245.3333333333333 202.6666666666667L64 202.6666666666667L64 170.6666666666667zM74.6666666666667 0V133.3333333333334C74.6666666666667 148.0609066666667 86.60576 160 101.3333333333333 160H101.3333333333333C116.0609066666667 160 128 148.0609066666667 128 133.3333333333334V0H74.6666666666667zM138.6666666666667 0V112C138.6666666666667 126.7275733333334 150.60576 138.6666666666667 165.3333333333333 138.6666666666667H165.3333333333333C180.0609066666667 138.6666666666667 192 126.7275733333334 192 112V0H138.6666666666667zM202.6666666666667 0V90.6666666666667C202.6666666666667 105.39424 214.60576 117.3333333333333 229.3333333333333 117.3333333333333H229.3333333333333C244.0609066666667 117.3333333333333 256 105.39424 256 90.6666666666667V0H202.6666666666667zM10.6666666666667 0V112C10.6666666666667 126.7275733333334 22.60576 138.6666666666667 37.3333333333333 138.6666666666667H37.3333333333333C52.0609066666667 138.6666666666667 64 126.7275733333334 64 112V0H10.6666666666667z" />
55
- <glyph glyph-name="4x-swipe-right"
56
- unicode="&#xEA10;"
57
- horiz-adv-x="256" d="M245.3333333333333 213.3333333333334L192 256L192 224L10.6666666666667 224L10.6666666666667 202.6666666666667L192 202.6666666666667L192 170.6666666666667zM74.6666666666667 0V133.3333333333334C74.6666666666667 148.0609066666667 86.60576 160 101.3333333333333 160H101.3333333333333C116.0609066666667 160 128 148.0609066666667 128 133.3333333333334V0H74.6666666666667zM138.6666666666667 0V112C138.6666666666667 126.7275733333334 150.60576 138.6666666666667 165.3333333333333 138.6666666666667H165.3333333333333C180.0609066666667 138.6666666666667 192 126.7275733333334 192 112V0H138.6666666666667zM202.6666666666667 0V90.6666666666667C202.6666666666667 105.39424 214.60576 117.3333333333333 229.3333333333333 117.3333333333333H229.3333333333333C244.0609066666667 117.3333333333333 256 105.39424 256 90.6666666666667V0H202.6666666666667zM10.6666666666667 0V112C10.6666666666667 126.7275733333334 22.60576 138.6666666666667 37.3333333333333 138.6666666666667H37.3333333333333C52.0609066666667 138.6666666666667 64 126.7275733333334 64 112V0H10.6666666666667z" />
58
- <glyph glyph-name="4x-swipe-up"
59
- unicode="&#xEA11;"
60
- horiz-adv-x="256" d="M128 256L170.6666666666667 202.6666666666667L138.6666666666667 202.6666666666667L138.6666666666667 160L117.3333333333333 160L117.3333333333333 202.6666666666667L85.3333333333333 202.6666666666667zM74.6666666666667 0V112C74.6666666666667 126.7275733333334 86.60576 138.6666666666667 101.3333333333333 138.6666666666667H101.3333333333333C116.0609066666667 138.6666666666667 128 126.7275733333334 128 112V0H74.6666666666667zM138.6666666666667 0V90.6666666666667C138.6666666666667 105.39424 150.60576 117.3333333333333 165.3333333333333 117.3333333333333H165.3333333333333C180.0609066666667 117.3333333333333 192 105.39424 192 90.6666666666667V0H138.6666666666667zM202.6666666666667 0V69.3333333333333C202.6666666666667 84.0609066666667 214.60576 96 229.3333333333333 96H229.3333333333333C244.0609066666667 96 256 84.0609066666667 256 69.3333333333333V0H202.6666666666667zM10.6666666666667 0V90.6666666666667C10.6666666666667 105.39424 22.60576 117.3333333333334 37.3333333333333 117.3333333333334H37.3333333333333C52.0609066666667 117.3333333333334 64 105.39424 64 90.6666666666667V0H10.6666666666667z" />
61
- <glyph glyph-name="a-add"
62
- unicode="&#xEA12;"
63
- horiz-adv-x="256" d="M96 128C125.4506666666667 128 149.3333333333333 162.5493333333333 149.3333333333333 192V202.6666666666667C149.3333333333333 232.1173333333334 125.4506666666667 256 96 256S42.6666666666667 232.1173333333334 42.6666666666667 202.6666666666667V192C42.6666666666667 162.5493333333334 66.5493333333333 128 96 128zM173.408 92.64C172.416 93.0986666666667 171.4453333333334 93.5786666666667 170.3893333333334 93.9306666666667C152.8426666666667 99.8613333333333 126.1226666666667 106.6666666666667 96 106.6666666666667S39.1573333333333 99.8613333333334 21.6106666666667 93.9413333333334C8.64 89.5573333333334 0 77.344 0 63.6586666666667V21.3333333333333H153.056C150.688 28.0106666666667 149.3333333333333 35.1786666666667 149.3333333333333 42.6666666666667C149.3333333333333 62.9013333333333 158.752 80.9173333333333 173.408 92.64zM224 85.3333333333333L202.6666666666667 85.3333333333333L202.6666666666667 53.3333333333333L170.6666666666667 53.3333333333333L170.6666666666667 32L202.6666666666667 32L202.6666666666667 0L224 0L224 32L256 32L256 53.3333333333333L224 53.3333333333333z" />
64
- <glyph glyph-name="a-check"
65
- unicode="&#xEA13;"
66
- horiz-adv-x="256" d="M96 128L96 128C66.5493333333333 128 42.6666666666667 162.5493333333333 42.6666666666667 192V202.6666666666667C42.6666666666667 232.1173333333334 66.5493333333333 256 96 256H96C125.4506666666667 256 149.3333333333333 232.1173333333334 149.3333333333333 202.6666666666667V192C149.3333333333333 162.5493333333334 125.4506666666667 128 96 128zM128 42.6666666666667C128 65.1306666666667 137.9626666666667 85.2266666666667 153.664 98.912C137.6426666666667 103.1146666666667 117.7386666666667 106.6666666666667 96 106.6666666666667C65.8773333333333 106.6666666666667 39.1573333333333 99.8613333333334 21.6106666666667 93.9413333333334C8.64 89.5573333333334 0 77.344 0 63.6586666666667V21.3333333333333H131.136C129.12 28.096 128 35.2533333333333 128 42.6666666666667zM181.3333333333333 6.2506666666667L144.9173333333333 42.6666666666667L160 57.7493333333334L181.3333333333333 36.416L234.6666666666667 89.7493333333333L249.7493333333334 74.6666666666667z" />
67
- <glyph glyph-name="a-delete"
68
- unicode="&#xEA14;"
69
- horiz-adv-x="256" d="M95.7333333333333 128L95.7333333333333 128C66.2826666666667 128 42.4 162.5493333333333 42.4 192V202.6666666666667C42.4 232.1173333333334 66.2826666666667 256 95.7333333333333 256H95.7333333333333C125.184 256 149.0666666666667 232.1173333333334 149.0666666666667 202.6666666666667V192C149.0666666666667 162.5493333333334 125.184 128 95.7333333333333 128zM127.7226666666667 53.3333333333333C127.7226666666667 71.4453333333333 134.176 88.0426666666667 144.9066666666667 100.9706666666667C130.5493333333333 104.2026666666667 113.7706666666667 106.6666666666667 95.7226666666667 106.6666666666667C65.6106666666667 106.6666666666667 38.8906666666667 99.8613333333333 21.3333333333333 93.9413333333334C8.3626666666667 89.568 -0.2773333333333 77.3546666666667 -0.2773333333333 63.6693333333334V21.3333333333333H135.008C130.3893333333333 31.04 127.7226666666667 41.8666666666667 127.7226666666667 53.3333333333333zM249.7493333333334 85.3333333333333L234.6666666666667 100.416L202.6666666666667 68.416L170.6666666666667 100.416L155.584 85.3333333333333L187.584 53.3333333333333L155.584 21.3333333333333L170.6666666666667 6.2506666666667L202.6666666666667 38.2506666666667L234.6666666666667 6.2506666666667L249.7493333333334 21.3333333333333L217.7493333333334 53.3333333333333z" />
70
- <glyph glyph-name="a-edit"
71
- unicode="&#xEA15;"
72
- horiz-adv-x="256" d="M106.6666666666667 128L106.6666666666667 128C77.216 128 53.3333333333333 162.5493333333333 53.3333333333333 192V202.6666666666667C53.3333333333333 232.1173333333334 77.216 256 106.6666666666667 256H106.6666666666667C136.1173333333333 256 160 232.1173333333334 160 202.6666666666667V192C160 162.5493333333334 136.1173333333333 128 106.6666666666667 128zM138.6666666666667 21.3653333333334C138.6666666666667 29.8986666666667 141.9946666666667 37.92 148.0213333333333 43.9786666666667L191.7333333333333 87.68C188.6613333333333 90.3786666666667 185.1093333333333 92.576 181.056 93.9413333333334C163.5093333333333 99.8613333333333 136.7893333333333 106.6666666666667 106.6666666666667 106.6666666666667S49.824 99.8613333333334 32.2773333333333 93.9413333333334C19.3066666666667 89.5573333333334 10.6666666666667 77.344 10.6666666666667 63.6586666666667V21.3333333333333H138.6666666666667V21.3653333333334zM224.8853333333333 90.6666666666667L163.1253333333333 28.9066666666667C161.12 26.9013333333333 160 24.192 160 21.3653333333334V0.032H181.3333333333334C184.16 0.032 186.8693333333334 1.152 188.8746666666667 3.1573333333334L250.6346666666667 64.9173333333334C257.7493333333334 72.032 257.7493333333334 83.552 250.6346666666667 90.6666666666667S232 97.7813333333334 224.8853333333333 90.6666666666667z" />
73
- <glyph glyph-name="a-heart"
74
- unicode="&#xEA16;"
75
- horiz-adv-x="256" d="M96 128L96 128C66.5493333333333 128 42.6666666666667 162.5493333333333 42.6666666666667 192V202.6666666666667C42.6666666666667 232.1173333333334 66.5493333333333 256 96 256H96C125.4506666666667 256 149.3333333333333 232.1173333333334 149.3333333333333 202.6666666666667V192C149.3333333333333 162.5493333333334 125.4506666666667 128 96 128zM144.32 33.9946666666667C133.792 44.3946666666667 128 58.24 128 73.0133333333333C128 83.7333333333333 131.136 93.9306666666666 136.8426666666667 102.7093333333333C124.4693333333334 105.0453333333334 110.6453333333333 106.6666666666667 96 106.6666666666667C65.8773333333333 106.6666666666667 39.1573333333333 99.8613333333334 21.6106666666667 93.9413333333334C8.64 89.5573333333334 0 77.344 0 63.6586666666667V21.3333333333333H157.1306666666667L144.32 33.9946666666667zM246.0053333333333 96.8533333333334C238.7733333333333 104 228.8213333333333 107.4986666666667 218.6346666666667 106.496C212.8106666666666 105.9093333333333 207.328 103.872 202.656 100.64C197.984 103.872 192.512 105.9093333333333 186.6773333333333 106.496C176.512 107.4773333333334 166.5386666666667 104 159.3066666666667 96.8533333333334C152.8853333333333 90.496 149.3333333333333 82.0266666666667 149.3333333333333 73.0133333333333S152.8853333333333 55.5306666666667 159.3173333333333 49.1733333333333L202.6666666666667 6.336L246.016 49.1626666666667C252.448 55.5306666666667 256 64 256 73.0133333333333S252.448 90.496 246.0053333333333 96.8533333333334z" />
76
- <glyph glyph-name="a-location"
77
- unicode="&#xEA17;"
78
- horiz-adv-x="256" d="M96 128L96 128C66.5493333333333 128 42.6666666666667 162.5493333333333 42.6666666666667 192V202.6666666666667C42.6666666666667 232.1173333333334 66.5493333333333 256 96 256H96C125.4506666666667 256 149.3333333333333 232.1173333333334 149.3333333333333 202.6666666666667V192C149.3333333333333 162.5493333333334 125.4506666666667 128 96 128zM128 87.2853333333333C128 93.1413333333333 128.6506666666667 98.6773333333333 129.824 103.9146666666667C119.3066666666667 105.5786666666667 107.9466666666667 106.6666666666667 96 106.6666666666667C65.8773333333333 106.6666666666667 39.1573333333333 99.8613333333334 21.6106666666667 93.9413333333334C8.64 89.5573333333334 0 77.344 0 63.6586666666667V21.3333333333333H159.104C144.128 39.52 128 64.416 128 87.2853333333333zM202.6666666666667 138.6666666666667C176.448 138.6666666666667 149.3333333333333 119.4453333333334 149.3333333333333 87.2853333333333C149.3333333333333 58.3146666666667 190.6026666666667 18.1013333333333 195.3066666666667 13.6106666666667L202.6666666666667 6.592L210.0266666666667 13.6213333333333C214.7306666666667 18.112 256 58.3253333333333 256 87.296C256 119.4453333333334 228.8853333333333 138.6666666666667 202.6666666666667 138.6666666666667zM202.6666666666667 64C190.88 64 181.3333333333333 73.5573333333333 181.3333333333333 85.3333333333333C181.3333333333333 97.12 190.88 106.6666666666667 202.6666666666667 106.6666666666667S224 97.12 224 85.3333333333333C224 73.5573333333334 214.4533333333333 64 202.6666666666667 64z" />
79
- <glyph glyph-name="a-remove"
80
- unicode="&#xEA18;"
81
- horiz-adv-x="256" d="M96 128C125.4506666666667 128 149.3333333333333 162.5493333333333 149.3333333333333 192V202.6666666666667C149.3333333333333 232.1173333333334 125.4506666666667 256 96 256S42.6666666666667 232.1173333333334 42.6666666666667 202.6666666666667V192C42.6666666666667 162.5493333333334 66.5493333333333 128 96 128zM173.408 92.64C172.416 93.0986666666667 171.4453333333334 93.5786666666667 170.3893333333334 93.9306666666667C152.8426666666667 99.8613333333333 126.1226666666667 106.6666666666667 96 106.6666666666667S39.1573333333333 99.8613333333334 21.6106666666667 93.9413333333334C8.64 89.5573333333334 0 77.344 0 63.6586666666667V21.3333333333333H153.056C150.688 28.0106666666667 149.3333333333333 35.1786666666667 149.3333333333333 42.6666666666667C149.3333333333333 62.9013333333333 158.752 80.9173333333333 173.408 92.64zM170.6666666666667 53.3333333333333H256V32H170.6666666666667V53.3333333333333z" />
82
- <glyph glyph-name="a-search"
83
- unicode="&#xEA19;"
84
- horiz-adv-x="256" d="M96 128L96 128C66.5493333333333 128 42.6666666666667 162.5493333333333 42.6666666666667 192V202.6666666666667C42.6666666666667 232.1173333333334 66.5493333333333 256 96 256H96C125.4506666666667 256 149.3333333333333 232.1173333333334 149.3333333333333 202.6666666666667V192C149.3333333333333 162.5493333333334 125.4506666666667 128 96 128zM128 64C128 78.2186666666667 132.7146666666667 91.3173333333333 140.5866666666667 101.952C127.2746666666667 104.6826666666667 112.16 106.6666666666667 96 106.6666666666667C65.8773333333333 106.6666666666667 39.1573333333333 99.8613333333334 21.6106666666667 93.9413333333334C8.64 89.5573333333334 0 77.344 0 63.6586666666667V21.3333333333333H144.4266666666667C134.2506666666667 32.672 128 47.5946666666667 128 64zM252.8746666666667 18.208L228.6186666666667 42.464C232.3733333333334 48.8106666666667 234.6666666666667 56.1066666666667 234.6666666666667 64C234.6666666666667 87.5306666666667 215.5306666666667 106.6666666666667 192 106.6666666666667S149.3333333333334 87.5306666666667 149.3333333333334 64S168.4693333333334 21.3333333333333 192 21.3333333333333C199.8933333333334 21.3333333333333 207.1893333333333 23.6266666666667 213.536 27.3813333333333L237.792 3.1253333333333L252.8746666666667 18.208zM192 42.6666666666667C180.2346666666667 42.6666666666667 170.6666666666667 52.2346666666667 170.6666666666667 64S180.2346666666667 85.3333333333334 192 85.3333333333334S213.3333333333334 75.7653333333334 213.3333333333334 64S203.7653333333333 42.6666666666667 192 42.6666666666667z" />
85
- <glyph glyph-name="a-security"
86
- unicode="&#xEA1A;"
87
- horiz-adv-x="256" d="M96 128L96 128C66.5493333333333 128 42.6666666666667 162.5493333333333 42.6666666666667 192V202.6666666666667C42.6666666666667 232.1173333333334 66.5493333333333 256 96 256H96C125.4506666666667 256 149.3333333333333 232.1173333333334 149.3333333333333 202.6666666666667V192C149.3333333333333 162.5493333333334 125.4506666666667 128 96 128zM128 64C128 89.1626666666667 149.3333333333334 96 149.3333333333334 96S127.8293333333334 106.6666666666667 96 106.6666666666667C65.8773333333334 106.6666666666667 39.1573333333334 99.8613333333333 21.6106666666667 93.9413333333333C8.64 89.5573333333334 0 77.344 0 63.6586666666667V21.3333333333333H128V64zM245.3333333333333 74.6666666666667H234.6666666666667V96C234.6666666666667 113.6426666666667 220.3093333333333 128 202.6666666666667 128S170.6666666666667 113.6426666666667 170.6666666666667 96V74.6666666666667H160C154.112 74.6666666666667 149.3333333333334 69.888 149.3333333333334 64V10.6666666666667C149.3333333333334 4.7786666666667 154.112 0 160 0H245.3333333333333C251.2213333333333 0 256 4.7786666666667 256 10.6666666666667V64C256 69.888 251.2213333333333 74.6666666666667 245.3333333333333 74.6666666666667zM192 96C192 101.8773333333333 196.7893333333333 106.6666666666667 202.6666666666667 106.6666666666667S213.3333333333333 101.8773333333333 213.3333333333333 96V74.6666666666667H192V96z" />
88
- <glyph glyph-name="a-share"
89
- unicode="&#xEA1B;"
90
- horiz-adv-x="256" d="M106.6666666666667 128L106.6666666666667 128C77.216 128 53.3333333333333 162.5493333333333 53.3333333333333 192V202.6666666666667C53.3333333333333 232.1173333333334 77.216 256 106.6666666666667 256H106.6666666666667C136.1173333333333 256 160 232.1173333333334 160 202.6666666666667V192C160 162.5493333333334 136.1173333333333 128 106.6666666666667 128zM128 53.3333333333333C128 76.864 147.136 96 170.6666666666667 96C172.5546666666667 96 174.4213333333333 95.7226666666667 176.2986666666667 95.4666666666667C158.8586666666667 100.9706666666667 134.2293333333333 106.6666666666667 106.6666666666667 106.6666666666667C76.544 106.6666666666667 49.824 99.8613333333334 32.2773333333333 93.9413333333334C19.3066666666667 89.5573333333334 10.6666666666667 77.344 10.6666666666667 63.6586666666667V21.3333333333333H142.7413333333333C133.7813333333333 29.1626666666667 128 40.5333333333334 128 53.3333333333333zM224 42.6666666666667C220.2666666666667 42.6666666666667 216.8106666666667 41.6213333333334 213.7493333333334 39.9253333333334L191.968 52.992C191.968 53.1093333333333 192 53.216 192 53.3333333333333S191.968 53.5573333333333 191.968 53.6746666666667L213.7493333333333 66.7413333333333C216.8106666666667 65.0453333333333 220.2666666666667 64 224 64C235.7653333333334 64 245.3333333333334 73.568 245.3333333333334 85.3333333333333S235.7653333333334 106.6666666666667 224 106.6666666666667S202.6666666666667 97.0986666666667 202.6666666666667 85.3333333333333C202.6666666666667 85.216 202.6986666666667 85.1093333333334 202.6986666666667 84.992L180.9173333333334 71.9253333333334C177.856 73.6213333333334 174.4 74.6666666666667 170.6666666666667 74.6666666666667C158.9013333333333 74.6666666666667 149.3333333333333 65.0986666666667 149.3333333333333 53.3333333333333S158.9013333333333 32 170.6666666666667 32C174.4 32 177.856 33.0453333333333 180.9173333333333 34.7413333333333L202.6986666666667 21.6746666666667C202.6986666666667 21.5573333333334 202.6666666666667 21.4506666666667 202.6666666666667 21.3333333333333C202.6666666666667 9.568 212.2346666666667 0 224 0S245.3333333333334 9.568 245.3333333333334 21.3333333333333S235.7653333333334 42.6666666666667 224 42.6666666666667z" />
91
- <glyph glyph-name="a-star"
92
- unicode="&#xEA1C;"
93
- horiz-adv-x="256" d="M96 128L96 128C66.5493333333333 128 42.6666666666667 162.5493333333333 42.6666666666667 192V202.6666666666667C42.6666666666667 232.1173333333334 66.5493333333333 256 96 256H96C125.4506666666667 256 149.3333333333333 232.1173333333334 149.3333333333333 202.6666666666667V192C149.3333333333333 162.5493333333334 125.4506666666667 128 96 128zM128 64C128 78.048 131.9466666666667 91.136 138.688 102.3573333333333C125.856 104.8853333333333 111.3813333333333 106.6666666666667 96 106.6666666666667C65.8773333333333 106.6666666666667 39.1573333333333 99.8613333333334 21.6106666666667 93.9413333333334C8.64 89.5573333333334 0 77.344 0 63.6586666666667V21.3333333333333H141.44C132.992 33.4293333333333 128 48.128 128 64zM202.6666666666667 117.3333333333334L219.1466666666667 83.936L256 78.5813333333334L229.3333333333333 52.5866666666667L235.6266666666667 15.8826666666667L202.6666666666667 33.216L169.7066666666667 15.8826666666667L176 52.5866666666667L149.3333333333333 78.5813333333334L186.1866666666667 83.936z" />
94
- <glyph glyph-name="a-sync"
95
- unicode="&#xEA1D;"
96
- horiz-adv-x="256" d="M96 128L96 128C66.5493333333333 128 42.6666666666667 162.5493333333333 42.6666666666667 192V202.6666666666667C42.6666666666667 232.1173333333334 66.5493333333333 256 96 256H96C125.4506666666667 256 149.3333333333333 232.1173333333334 149.3333333333333 202.6666666666667V192C149.3333333333333 162.5493333333334 125.4506666666667 128 96 128zM106.6666666666667 53.3333333333333C106.6666666666667 72.6613333333334 113.1626666666667 90.4213333333333 124 104.7253333333333C115.136 105.8986666666667 105.7813333333333 106.6666666666667 96 106.6666666666667C65.8773333333333 106.6666666666667 39.1573333333333 99.8613333333334 21.6106666666667 93.9413333333334C8.64 89.5573333333334 0 77.344 0 63.6586666666667V21.3333333333333H112.928C108.9173333333333 31.2213333333334 106.6666666666667 42.0053333333333 106.6666666666667 53.3333333333333zM192 96C200.6186666666667 96 208.7786666666667 92.4693333333333 214.7306666666667 86.4746666666667L197.5786666666667 74.016L243.1146666666667 64L247.68 110.4106666666667L232.0426666666667 99.0506666666666C222.016 110.464 207.4773333333333 117.3333333333334 192 117.3333333333334C167.6586666666667 117.3333333333334 146.4213333333333 100.8853333333333 140.3413333333334 77.3333333333333L161.0133333333334 72.0106666666667C164.6506666666667 86.1333333333333 177.3866666666667 96 192 96zM192 21.3333333333333C183.3813333333334 21.3333333333333 175.2213333333334 24.864 169.2693333333334 30.8586666666667L186.4213333333333 43.3173333333333L140.8853333333333 53.3333333333333L136.32 6.9226666666667L151.9573333333334 18.2826666666667C161.984 6.8693333333333 176.5226666666667 0 192 0C216.3413333333333 0 237.5786666666667 16.448 243.6586666666667 40L222.9866666666667 45.3226666666667C219.3493333333333 31.2 206.6133333333334 21.3333333333333 192 21.3333333333333z" />
97
- <glyph glyph-name="a-time"
98
- unicode="&#xEA1E;"
99
- horiz-adv-x="256" d="M96 128L96 128C66.5493333333333 128 42.6666666666667 162.5493333333333 42.6666666666667 192V202.6666666666667C42.6666666666667 232.1173333333334 66.5493333333333 256 96 256H96C125.4506666666667 256 149.3333333333333 232.1173333333334 149.3333333333333 202.6666666666667V192C149.3333333333333 162.5493333333334 125.4506666666667 128 96 128zM192 0C227.3493333333334 0 256 28.6506666666667 256 64S227.3493333333334 128 192 128S128 99.3493333333333 128 64S156.6506666666667 0 192 0zM181.3333333333333 106.6666666666667H202.6666666666667V74.6666666666667H234.6666666666667V53.3333333333333H181.3333333333333V106.6666666666667zM106.6666666666667 64C106.6666666666667 79.0933333333333 110.624 93.2373333333333 117.4933333333333 105.536C110.592 106.2506666666667 103.4026666666667 106.6666666666667 96 106.6666666666667C65.8773333333333 106.6666666666667 39.1573333333333 99.8613333333334 21.6106666666667 93.9413333333334C8.64 89.5573333333334 0 77.344 0 63.6586666666667V21.3333333333333H118.176C110.9013333333333 33.8986666666667 106.6666666666667 48.4373333333334 106.6666666666667 64z" />
100
- <glyph glyph-name="abc"
101
- unicode="&#xEA1F;"
102
- horiz-adv-x="256" d="M170.6666666666667 149.3333333333334V202.6666666666667V213.3333333333334C170.6666666666667 230.976 156.3093333333333 245.3333333333334 138.6666666666667 245.3333333333334H106.6666666666667V224H138.6666666666667C144.544 224 149.3333333333333 219.2213333333334 149.3333333333333 213.3333333333334H122.6666666666667C102.08 213.3333333333334 85.3333333333333 196.5866666666667 85.3333333333333 176S102.08 138.6666666666667 122.6666666666667 138.6666666666667H160C165.888 138.6666666666667 170.6666666666667 143.4346666666667 170.6666666666667 149.3333333333334zM106.6666666666667 176C106.6666666666667 184.8213333333334 113.8453333333333 192 122.6666666666667 192H149.3333333333333V160H122.6666666666667C113.8453333333333 160 106.6666666666667 167.1786666666667 106.6666666666667 176zM64 96H42.6666666666667V149.3333333333333H21.3333333333333V21.3333333333333C21.3333333333333 15.4346666666667 26.112 10.6666666666667 32 10.6666666666667H64C87.5306666666667 10.6666666666667 106.6666666666667 29.8026666666667 106.6666666666667 53.3333333333333S87.5306666666667 96 64 96zM64 32H42.6666666666667V74.6666666666667H64C75.7653333333333 74.6666666666667 85.3333333333333 65.0986666666667 85.3333333333333 53.3333333333333S75.7653333333333 32 64 32zM222.5813333333333 37.344C220.672 34.0373333333333 217.1306666666667 32 213.3333333333333 32H192C186.1226666666667 32 181.3333333333333 36.7786666666667 181.3333333333333 42.6666666666667V74.6666666666667C181.3333333333333 80.5546666666667 186.1226666666667 85.3333333333333 192 85.3333333333333H213.3333333333333C217.1306666666667 85.3333333333333 220.672 83.296 222.5813333333333 80L241.0346666666666 90.688C235.328 100.544 224.7146666666667 106.6666666666667 213.3333333333333 106.6666666666667H192C174.3573333333333 106.6666666666667 160 92.3093333333333 160 74.6666666666667V42.6666666666667C160 25.024 174.3573333333333 10.6666666666667 192 10.6666666666667H213.3333333333333C224.7146666666667 10.6666666666667 235.3386666666667 16.7893333333334 241.0453333333333 26.656L222.5813333333333 37.344z" />
103
- <glyph glyph-name="accessibility"
104
- unicode="&#xEA20;"
105
- horiz-adv-x="256" d="M96 224A32 32 0 0 1 160 224A32 32 0 0 1 96 224M234.6666666666667 181.3333333333334H21.3333333333333C15.4453333333333 181.3333333333334 10.6666666666667 176.5546666666667 10.6666666666667 170.6666666666667S15.4453333333333 160 21.3333333333333 160H85.3333333333333V10.6666666666667C85.3333333333333 4.7786666666667 90.112 0 96 0S106.6666666666667 4.7786666666667 106.6666666666667 10.6666666666667V74.6666666666667H149.3333333333334V10.6666666666667C149.3333333333334 4.7786666666667 154.112 0 160 0S170.6666666666667 4.7786666666667 170.6666666666667 10.6666666666667V160H234.6666666666667C240.5546666666667 160 245.3333333333333 164.7786666666667 245.3333333333333 170.6666666666667S240.5546666666667 181.3333333333334 234.6666666666667 181.3333333333334z" />
106
- <glyph glyph-name="action-73"
107
- unicode="&#xEA21;"
108
- horiz-adv-x="256" d="M234.6666666666667 170.6666666666667H21.3333333333333C15.4453333333333 170.6666666666667 10.6666666666667 165.8986666666667 10.6666666666667 160V10.6666666666667C10.6666666666667 4.768 15.4453333333333 0 21.3333333333333 0H234.6666666666667C240.5546666666667 0 245.3333333333333 4.768 245.3333333333333 10.6666666666667V160C245.3333333333333 165.8986666666667 240.5546666666667 170.6666666666667 234.6666666666667 170.6666666666667zM181.3333333333333 64H138.6666666666667V42.6666666666667H117.3333333333333V64H74.6666666666667V85.3333333333333H181.3333333333333V64zM181.3333333333333 106.6666666666667H74.6666666666667V128H181.3333333333333V106.6666666666667zM0.2151328 210.1284490666667L227.016624 256.400768L231.2811573333334 235.498368L4.4796661333333 189.2260490666667L0.2151328 210.1284490666667z" />
109
- <glyph glyph-name="action-74"
110
- unicode="&#xEA22;"
111
- horiz-adv-x="256" d="M234.6666666666667 170.6666666666667H21.3333333333333C15.4453333333333 170.6666666666667 10.6666666666667 165.8986666666667 10.6666666666667 160V10.6666666666667C10.6666666666667 4.768 15.4453333333333 0 21.3333333333333 0H234.6666666666667C240.5546666666667 0 245.3333333333333 4.768 245.3333333333333 10.6666666666667V160C245.3333333333333 165.8986666666667 240.5546666666667 170.6666666666667 234.6666666666667 170.6666666666667zM96 42.6666666666667V128L170.6666666666667 85.3333333333333L96 42.6666666666667zM0.2151328 210.1284490666667L227.016624 256.400768L231.2811573333334 235.498368L4.4796661333333 189.2260490666667L0.2151328 210.1284490666667z" />
112
- <glyph glyph-name="active-38"
113
- unicode="&#xEA23;"
114
- horiz-adv-x="256" d="M138.6666666666667 172.19072L138.6667733333333 222.8593066666667C138.6667733333333 233.48608 131.40512 243.3354666666667 120.91616 245.0413866666667C107.5505066666667 247.2152533333333 96 236.9575466666667 96 224V104.1726933333333C96 95.8816 86.9549866666667 90.76032 79.8453333333333 95.0261333333334L53.93152 110.5744C47.05248 114.7018666666667 38.41088 114.4962133333334 31.7358933333334 110.0461866666667L31.7358933333334 110.0461866666667C20.8360533333334 102.7796266666667 19.3089066666667 87.3576533333334 28.5720533333334 78.0946133333334L96 10.6666666666667H224L240.7438933333334 119.5025066666667C243.3208533333334 136.2525866666667 232.3917866666667 152.1072 215.8208 155.6580266666667L138.6666666666667 172.19072z" />
115
- <glyph glyph-name="active-40"
116
- unicode="&#xEA24;"
117
- horiz-adv-x="256" d="M193.36128 154.90432L106.6666666666667 170.6666666666667V222.8587733333333C106.6666666666667 233.48576 99.4055466666667 243.33472 88.9166933333333 245.0417066666667C75.5508266666667 247.2154666666667 64 236.9576533333334 64 224V106.6666666666667H53.3333333333333V138.6666666666667H42.6666666666667C30.8848 138.6666666666667 21.3333333333333 129.11584 21.3333333333333 117.3333333333334V86.44992C21.3333333333333 71.9173333333334 26.2792533333333 57.8170666666667 35.35808 46.4688L64 10.6666666666667H202.6666666666667L219.26496 118.5546666666667C221.9003733333333 135.6868266666667 210.416 151.8034133333334 193.36128 154.90432z" />
118
- <glyph glyph-name="add-27"
119
- unicode="&#xEA25;"
120
- horiz-adv-x="256" d="M160 128C189.408 128 213.3333333333333 151.9253333333333 213.3333333333333 181.3333333333333V202.6666666666667C213.3333333333333 232.0746666666667 189.408 256 160 256S106.6666666666667 232.0746666666667 106.6666666666667 202.6666666666667V181.3333333333334C106.6666666666667 151.9253333333334 130.592 128 160 128zM85.3333333333333 138.6666666666667L85.3333333333333 160L53.3333333333333 160L53.3333333333333 192L32 192L32 160L0 160L0 138.6666666666667L32 138.6666666666667L32 106.6666666666667L53.3333333333333 106.6666666666667L53.3333333333333 138.6666666666667zM228.5226666666667 94.4426666666667C213.8026666666667 100.0213333333334 189.984 106.6666666666667 160 106.6666666666667S106.1973333333334 100.0213333333334 91.4773333333333 94.4426666666667C75.04 88.224 64 72.192 64 54.5493333333334V0H256V54.5493333333333C256 72.192 244.96 88.224 228.5226666666667 94.4426666666667z" />
121
- <glyph glyph-name="add-29"
122
- unicode="&#xEA26;"
123
- horiz-adv-x="256" d="M128 106.6666666666667C163.296 106.6666666666667 192 135.3706666666667 192 170.6666666666667V192C192 227.296 163.296 256 128 256S64 227.296 64 192V170.6666666666667C64 135.3706666666667 92.704 106.6666666666667 128 106.6666666666667zM224 42.6666666666667C198.1973333333334 42.6666666666667 176.6826666666667 60.992 171.744 85.3333333333333H74.6666666666667C33.504 85.3333333333333 0 51.84 0 10.6666666666667V0H256V10.6666666666667C256 24.1066666666667 252.384 36.6933333333334 246.1333333333334 47.6053333333334C239.3813333333333 44.5013333333334 231.9253333333333 42.6666666666667 224 42.6666666666667zM234.6666666666667 128L213.3333333333333 128L213.3333333333333 106.6666666666667L192 106.6666666666667L192 85.3333333333333L213.3333333333333 85.3333333333333L213.3333333333333 64L234.6666666666667 64L234.6666666666667 85.3333333333333L256 85.3333333333333L256 106.6666666666667L234.6666666666667 106.6666666666667z" />
124
- <glyph glyph-name="add"
125
- unicode="&#xEA27;"
126
- horiz-adv-x="256" d="M234.6666666666667 256H21.3333333333333C15.4346666666667 256 10.6666666666667 251.2213333333334 10.6666666666667 245.3333333333334V10.6666666666667C10.6666666666667 4.7786666666667 15.4346666666667 0 21.3333333333333 0H234.6666666666667C240.5653333333333 0 245.3333333333333 4.7786666666667 245.3333333333333 10.6666666666667V245.3333333333334C245.3333333333333 251.2213333333334 240.5653333333334 256 234.6666666666667 256zM170.6666666666667 117.3333333333334H138.6666666666667V85.3333333333333H117.3333333333333V117.3333333333334H85.3333333333333V138.6666666666667H117.3333333333333V170.6666666666667H138.6666666666667V138.6666666666667H170.6666666666667V117.3333333333334z" />
127
- <glyph glyph-name="agenda-bookmark"
128
- unicode="&#xEA28;"
129
- horiz-adv-x="256" d="M202.6666666666667 256V0C220.3413333333333 0 234.6666666666667 14.3253333333333 234.6666666666667 32V224C234.6666666666667 241.6746666666667 220.3413333333333 256 202.6666666666667 256zM181.3333333333333 256H128V160L96 181.3333333333334L64 160V256H32C26.112 256 21.3333333333333 251.2213333333334 21.3333333333333 245.3333333333334V10.6666666666667C21.3333333333333 4.7786666666667 26.112 0 32 0H181.3333333333333V256z" />
130
- <glyph glyph-name="agenda"
131
- unicode="&#xEA29;"
132
- horiz-adv-x="256" d="M170.6666666666667 256H32C26.1013333333333 256 21.3333333333333 251.232 21.3333333333333 245.3333333333334V10.6666666666667C21.3333333333333 4.768 26.1013333333333 0 32 0H170.6666666666667V256zM96 181.3333333333334L64 160V234.6666666666667H128V160L96 181.3333333333334zM202.6666666666667 256H192V0H202.6666666666667C220.3093333333333 0 234.6666666666667 14.3573333333333 234.6666666666667 32V224C234.6666666666667 241.6426666666667 220.3093333333333 256 202.6666666666667 256z" />
133
- <glyph glyph-name="air-baloon"
134
- unicode="&#xEA2A;"
135
- horiz-adv-x="256" d="M149.3333333333333 42.6666666666667H106.6666666666667C100.768 42.6666666666667 96 37.888 96 32V10.6666666666667C96 4.7786666666667 100.768 0 106.6666666666667 0H149.3333333333333C155.232 0 160 4.7786666666667 160 10.6666666666667V32C160 37.888 155.232 42.6666666666667 149.3333333333333 42.6666666666667zM128.736 255.9573333333334C128.6613333333333 255.9573333333334 128.5866666666667 255.968 128.512 255.968C128.3413333333333 255.9786666666667 128.1706666666667 256 128 256C127.84 256 127.68 255.9786666666667 127.5093333333333 255.9786666666667C127.4133333333333 255.9786666666667 127.3386666666667 255.968 127.2426666666667 255.968C80.544 255.552 42.6666666666667 217.4613333333333 42.6666666666667 170.6666666666667C42.6666666666667 138.6773333333333 82.4853333333333 75.936 87.0293333333333 68.8853333333333C89.0026666666667 65.8453333333333 92.3733333333333 64 96 64H106.6346666666667C106.6453333333333 64 106.656 64 106.6666666666667 64C106.6773333333333 64 106.688 64 106.6986666666667 64H160C163.6266666666667 64 166.9973333333333 65.8453333333333 168.9706666666667 68.8853333333333C173.5146666666667 75.936 213.3333333333333 138.6773333333333 213.3333333333333 170.6666666666667C213.3333333333333 217.472 175.4453333333334 255.5626666666667 128.736 255.9573333333334z" />
136
- <glyph glyph-name="air-conditioner"
137
- unicode="&#xEA2B;"
138
- horiz-adv-x="256" d="M245.3333333333333 128H10.6666666666667C4.2666666666667 128 0 123.7333333333333 0 117.3333333333334V21.3333333333333C0 14.9333333333333 4.2666666666667 10.6666666666667 10.6666666666667 10.6666666666667H245.3333333333333C251.7333333333333 10.6666666666667 256 14.9333333333334 256 21.3333333333333V117.3333333333334C256 123.7333333333334 251.7333333333334 128 245.3333333333333 128zM213.3333333333333 53.3333333333333H42.6666666666667V74.6666666666667H213.3333333333333V53.3333333333333zM128 170.6666666666667C134.4 170.6666666666667 138.6666666666667 174.9333333333333 138.6666666666667 181.3333333333334V234.6666666666667C138.6666666666667 241.0666666666667 134.4 245.3333333333334 128 245.3333333333334C121.6 245.3333333333334 117.3333333333333 241.0666666666667 117.3333333333333 234.6666666666667V181.3333333333334C117.3333333333333 174.9333333333333 121.6 170.6666666666667 128 170.6666666666667zM74.6666666666667 149.3333333333334C81.0666666666667 149.3333333333334 85.3333333333333 153.6 85.3333333333333 160V192C85.3333333333333 198.4 81.0666666666667 202.6666666666667 74.6666666666667 202.6666666666667C68.2666666666667 202.6666666666667 64 198.4 64 192V160C64 153.6 68.2666666666667 149.3333333333334 74.6666666666667 149.3333333333334zM181.3333333333333 149.3333333333334C187.7333333333333 149.3333333333334 192 153.6 192 160V192C192 198.4 187.7333333333333 202.6666666666667 181.3333333333333 202.6666666666667C174.9333333333333 202.6666666666667 170.6666666666667 198.4 170.6666666666667 192V160C170.6666666666667 153.6 174.9333333333333 149.3333333333334 181.3333333333333 149.3333333333334z" />
139
- <glyph glyph-name="airbag"
140
- unicode="&#xEA2C;"
141
- horiz-adv-x="256" d="M181.3333333333333 197.3333333333334A37.33333333333334 37.33333333333334 0 0 1 256 197.3333333333334A37.33333333333334 37.33333333333334 0 0 1 181.3333333333333 197.3333333333334M0 181.3333333333334A74.66666666666669 74.66666666666669 0 0 1 149.3333333333333 181.3333333333334A74.66666666666669 74.66666666666669 0 0 1 0 181.3333333333334M163.4453333333334 85.3333333333333H106.6666666666667A10.666666666666666 10.666666666666666 0 0 1 98.336 81.3333333333333L49.0026666666667 19.6693333333334L65.664 6.3466666666667L111.7866666666667 64H170.6666666666667A10.666666666666666 10.666666666666666 0 0 1 180.576 70.7093333333334L205.8666666666667 133.9413333333334L186.0586666666667 141.8666666666667z" />
142
- <glyph glyph-name="alarm-add"
143
- unicode="&#xEA2D;"
144
- horiz-adv-x="256" d="M91.264 21.3333333333333A42.29333333333334 42.29333333333334 0 0 1 164.7253333333333 21.3333333333333zM245.3333333333333 213.3333333333334L213.3333333333333 213.3333333333334L213.3333333333333 245.3333333333334L192 245.3333333333334L192 213.3333333333334L160 213.3333333333334L160 192L192 192L192 160L213.3333333333333 160L213.3333333333333 192L245.3333333333333 192L245.3333333333333 213.3333333333334zM213.3333333333333 128V139.6266666666667A63.903999999999996 63.903999999999996 0 0 0 159.5626666666667 249.8773333333334A85.184 85.184 0 0 1 42.6666666666667 170.6666666666667V128A138.24 138.24 0 0 0 23.1253333333333 59.2533333333333A10.666666666666666 10.666666666666666 0 0 1 32 42.6666666666667H224A10.666666666666666 10.666666666666666 0 0 1 232.8746666666667 59.2533333333334A136.83200000000002 136.83200000000002 0 0 0 213.3333333333333 128z" />
145
- <glyph glyph-name="alarm-delete"
146
- unicode="&#xEA2E;"
147
- horiz-adv-x="256" d="M91.264 21.3333333333333A42.29333333333334 42.29333333333334 0 0 1 164.7253333333333 21.3333333333333zM223.6693333333333 77.5786666666667A134.4 134.4 0 0 0 213.3333333333333 128V170.6666666666667A85.22666666666667 85.22666666666667 0 0 1 69.0453333333333 232.2026666666667zM50.2826666666667 205.7173333333333A84.704 84.704 0 0 1 42.6666666666667 170.6666666666667V128A138.24 138.24 0 0 0 23.1253333333333 59.2533333333333A10.666666666666666 10.666666666666666 0 0 1 32 42.6666666666667H213.3333333333333zM234.6666666666667 10.6666666666667A10.666666666666666 10.666666666666666 0 0 0 227.1253333333333 13.792L13.792 227.1253333333334A10.666666666666666 10.666666666666666 0 0 0 28.8746666666667 242.208L242.208 28.8746666666667A10.666666666666666 10.666666666666666 0 0 0 234.6666666666667 10.6666666666667z" />
148
- <glyph glyph-name="album-2"
149
- unicode="&#xEA2F;"
150
- horiz-adv-x="256" d="M245.3333333333333 234.6666666666667H192V256H170.6666666666667V234.6666666666667H138.6666666666667V256H117.3333333333333V234.6666666666667H85.3333333333333V256H64V234.6666666666667H10.6666666666667C4.7786666666667 234.6666666666667 0 229.8986666666667 0 224V10.6666666666667C0 4.768 4.7786666666667 0 10.6666666666667 0H245.3333333333333C251.2213333333333 0 256 4.768 256 10.6666666666667V224C256 229.8986666666667 251.2213333333333 234.6666666666667 245.3333333333333 234.6666666666667zM234.6666666666667 21.3333333333333H21.3333333333333V213.3333333333334H64V192H85.3333333333333V213.3333333333334H117.3333333333333V192H138.6666666666667V213.3333333333334H170.6666666666667V192H192V213.3333333333334H234.6666666666667V21.3333333333333zM158.3786666666667 144.32C156.7146666666667 146.9866666666667 153.952 148.7786666666667 150.848 149.2266666666667C147.744 149.6853333333334 144.5973333333334 148.7253333333333 142.24 146.6453333333333L46.24 61.312C42.9333333333333 58.368 41.792 53.6853333333333 43.36 49.5466666666667S48.9066666666667 42.6666666666667 53.3333333333333 42.6666666666667H202.6666666666666C206.5493333333333 42.6666666666667 210.112 44.768 212 48.16S213.7706666666667 55.7013333333334 211.7226666666667 58.9866666666667L158.3786666666667 144.32zM53.3333333333333 144A16 16 0 0 1 85.3333333333333 144A16 16 0 0 1 53.3333333333333 144" />
151
- <glyph glyph-name="album"
152
- unicode="&#xEA30;"
153
- horiz-adv-x="256" d="M224 224H192V256H170.6666666666667V224H138.6666666666667V256H117.3333333333333V224H85.3333333333333V256H64V224H32C26.1013333333333 224 21.3333333333333 219.2213333333334 21.3333333333333 213.3333333333334V10.6666666666667C21.3333333333333 4.7786666666667 26.1013333333333 0 32 0H224C229.8986666666667 0 234.6666666666667 4.7786666666667 234.6666666666667 10.6666666666667V213.3333333333334C234.6666666666667 219.2213333333334 229.8986666666667 224 224 224zM181.3333333333333 96H74.6666666666667V160H181.3333333333333V96z" />
154
- <glyph glyph-name="alcohol"
155
- unicode="&#xEA31;"
156
- horiz-adv-x="256" d="M160 234.6666666666667V245.3333333333334C160 251.232 155.232 256 149.3333333333334 256H106.6666666666667C100.768 256 96 251.232 96 245.3333333333334V234.6666666666667H160zM185.312 134.2186666666667L160 154.4533333333334V213.3333333333334H96V154.4533333333334L70.688 134.2186666666667C52.8853333333333 119.968 42.6666666666667 98.72 42.6666666666667 75.904V10.6666666666667C42.6666666666667 4.768 47.4346666666667 0 53.3333333333333 0H202.6666666666666C208.5653333333333 0 213.3333333333333 4.768 213.3333333333333 10.6666666666667V75.904C213.3333333333333 98.72 203.1146666666667 119.968 185.312 134.2186666666667zM164.416 53.3333333333333L149.3333333333333 38.2506666666667L128 59.584L106.6666666666667 38.2506666666667L91.584 53.3333333333333L112.9173333333333 74.6666666666667L91.584 96L106.6666666666667 111.0826666666667L128 89.7493333333333L149.3333333333333 111.0826666666667L164.416 96L143.0826666666667 74.6666666666667L164.416 53.3333333333333z" />
157
- <glyph glyph-name="alert-circle-exc"
158
- unicode="&#xEA32;"
159
- horiz-adv-x="256" d="M128 256C57.4186666666667 256 0 198.5813333333333 0 128S57.4186666666667 0 128 0S256 57.4186666666667 256 128S198.5813333333333 256 128 256zM145.5466666666667 202.6666666666667L138.6666666666667 106.6666666666667H117.3333333333333L110.848 202.6666666666667H145.5466666666667zM128 42.6666666666667C116.2133333333334 42.6666666666667 106.6666666666667 52.2133333333334 106.6666666666667 64C106.6666666666667 75.7866666666667 116.2133333333334 85.3333333333334 128 85.3333333333334C139.7866666666667 85.3333333333334 149.3333333333334 75.7866666666667 149.3333333333334 64C149.3333333333333 52.2133333333333 139.7866666666667 42.6666666666667 128 42.6666666666667z" />
160
- <glyph glyph-name="alert-circle-i"
161
- unicode="&#xEA33;"
162
- horiz-adv-x="256" d="M128 256C57.4186666666667 256 0 198.5813333333333 0 128S57.4186666666667 0 128 0S256 57.4186666666667 256 128S198.5813333333333 256 128 256zM156.352 60.9706666666667C149.3013333333333 58.1973333333334 124.864 46.528 110.784 58.9333333333334C106.5813333333333 62.624 104.4906666666666 67.3066666666667 104.4906666666666 72.992C104.4906666666666 83.6373333333334 107.9893333333333 92.9173333333334 114.2933333333333 115.2C115.4026666666667 119.4133333333334 116.7573333333333 124.8746666666667 116.7573333333333 129.2053333333334C116.7573333333333 136.6826666666667 113.92 138.6666666666667 106.2293333333333 138.6666666666667C102.4746666666666 138.6666666666667 98.3146666666666 137.3333333333334 94.5493333333333 135.9253333333334L96.6293333333333 144.448C105.024 147.8613333333333 115.5626666666666 152.0213333333334 124.5866666666666 152.0213333333334C138.1226666666666 152.0213333333334 148.0853333333333 145.2693333333334 148.0853333333333 132.4266666666667C148.0853333333333 128.7253333333334 147.4453333333333 122.2400000000001 146.1013333333333 117.76L138.3146666666666 90.2186666666667C136.7039999999999 84.6506666666667 133.7919999999999 72.3733333333333 138.3039999999999 68.736C142.7413333333333 65.1413333333334 153.2479999999999 67.0506666666667 158.4319999999999 69.4933333333333L156.352 60.9706666666667zM143.488 170.6666666666667C134.656 170.6666666666667 127.488 177.8346666666667 127.488 186.6666666666667S134.656 202.6666666666667 143.488 202.6666666666667S159.488 195.4986666666667 159.488 186.6666666666667S152.32 170.6666666666667 143.488 170.6666666666667z" />
163
- <glyph glyph-name="alert-circle-que"
164
- unicode="&#xEA34;"
165
- horiz-adv-x="256" d="M128 256C57.4186666666667 256 0 198.5813333333333 0 128S57.4186666666667 0 128 0S256 57.4186666666667 256 128S198.5813333333333 256 128 256zM122.6666666666667 53.3333333333333C113.8346666666667 53.3333333333333 106.6666666666667 60.5013333333334 106.6666666666667 69.3333333333333S113.8346666666667 85.3333333333333 122.6666666666667 85.3333333333333S138.6666666666667 78.1653333333333 138.6666666666667 69.3333333333333S131.4986666666667 53.3333333333333 122.6666666666667 53.3333333333333zM168.6506666666667 147.9786666666667C165.3546666666667 142.6986666666667 159.0933333333333 136.768 149.856 130.176C134.912 119.1253333333334 135.3173333333333 116.672 135.3173333333333 106.6666666666667H109.1093333333333C109.1093333333333 114.4853333333333 108.9386666666667 120.4906666666667 113.1626666666667 127.7973333333333C115.8613333333333 132.48 120.8106666666667 137.4613333333333 128 142.7306666666667C136.6293333333333 148.896 145.0133333333333 154.8373333333333 145.0133333333333 165.184C145.0133333333333 174.88 136.7146666666667 178.336 127.0186666666667 178.336C117.1306666666667 178.336 105.856 175.104 93.1946666666667 168.64L82.4106666666667 190.2933333333333C105.4186666666667 203.1893333333333 141.728 209.024 161.5786666666667 192.864C176.1493333333333 180.992 176.2346666666667 160.1173333333333 168.6506666666667 147.9786666666667z" />
166
- <glyph glyph-name="alert-exc"
167
- unicode="&#xEA35;"
168
- horiz-adv-x="256" d="M138.6666666666667 85.3333333333333L117.3333333333333 85.3333333333333L106.6666666666667 245.3333333333334L149.3333333333333 245.3333333333334zM106.6666666666667 32A21.333333333333332 21.333333333333332 0 0 1 149.3333333333333 32A21.333333333333332 21.333333333333332 0 0 1 106.6666666666667 32" />
169
- <glyph glyph-name="alert-i"
170
- unicode="&#xEA36;"
171
- horiz-adv-x="256" d="M176.5866666666667 36.2346666666667L173.3226666666666 22.8586666666667C162.2506666666666 18.496 123.8933333333333 0.192 101.7706666666666 19.6693333333333C95.1786666666666 25.4613333333333 91.8826666666666 32.8213333333333 91.8826666666666 41.7386666666667C91.8826666666666 58.4533333333333 97.3866666666666 73.024 107.264 108.0106666666667C109.0026666666666 114.6133333333333 111.136 123.2 111.136 130.0053333333333C111.136 141.7386666666666 106.688 144.864 94.6026666666666 144.864C88.704 144.864 82.176 142.7626666666666 76.2666666666666 140.5546666666667L79.5413333333333 153.9306666666667C92.7146666666666 159.2853333333333 109.2586666666666 165.8133333333333 123.4346666666666 165.8133333333333C144.6933333333333 165.8133333333333 160.32 155.2106666666667 160.32 135.0506666666667C160.32 129.2373333333333 159.3173333333333 119.0613333333333 157.2053333333333 112.0213333333333L144.9813333333333 68.7786666666667C142.464 60.032 137.8773333333333 40.768 144.96 35.0506666666666C151.9466666666667 29.408 168.448 32.3946666666667 176.5866666666667 36.2346666666667zM128 218.6666666666667A26.666666666666664 26.666666666666664 0 0 1 181.3333333333333 218.6666666666667A26.666666666666664 26.666666666666664 0 0 1 128 218.6666666666667" />
172
- <glyph glyph-name="alert-que"
173
- unicode="&#xEA37;"
174
- horiz-adv-x="256" d="M102.4533333333333 82.9866666666667C102.4533333333333 95.04 101.696 108.7786666666667 108.704 121.5786666666667C112.8746666666667 129.184 120.16 137.0453333333333 130.5813333333333 145.1733333333334C151.2 161.4613333333333 159.9573333333334 169.9306666666667 159.9573333333334 187.36C159.9573333333334 206.7306666666667 145.4933333333334 214.5493333333333 126.048 214.5493333333333C113.248 214.5493333333333 99.0186666666667 212.5973333333333 73.856 200.1706666666667L60.736 227.6693333333334C81.8773333333333 239.4453333333334 104.5333333333333 245.3333333333334 128.704 245.3333333333334C149.12 245.3333333333334 165.3226666666667 240.3306666666667 177.3013333333333 230.336S195.2746666666667 206.5386666666667 195.2746666666667 188.928C195.2746666666667 174.2506666666667 191.328 162.4426666666667 181.4506666666667 150.6453333333333C176.8 145.12 168.8106666666666 137.9413333333333 157.4613333333333 129.088C147.776 121.4826666666667 141.28 115.1786666666667 138.016 110.1866666666667C132.6293333333333 101.9946666666667 133.088 92.64 133.088 82.9973333333333H102.4533333333333zM96 32A21.333333333333332 21.333333333333332 0 0 1 138.6666666666667 32A21.333333333333332 21.333333333333332 0 0 1 96 32" />
175
- <glyph glyph-name="alert-square-exc"
176
- unicode="&#xEA38;"
177
- horiz-adv-x="256" d="M245.3333333333333 256H10.6666666666667C4.7786666666667 256 0 251.2213333333334 0 245.3333333333334V10.6666666666667C0 4.7786666666667 4.7786666666667 0 10.6666666666667 0H245.3333333333333C251.2213333333333 0 256 4.7786666666667 256 10.6666666666667V245.3333333333334C256 251.2213333333334 251.2213333333333 256 245.3333333333333 256zM145.5466666666667 202.6666666666667L138.6666666666667 106.6666666666667H117.3333333333333L110.848 202.6666666666667H145.5466666666667zM128 42.6666666666667C116.2133333333334 42.6666666666667 106.6666666666667 52.2133333333334 106.6666666666667 64C106.6666666666667 75.7866666666667 116.2133333333334 85.3333333333334 128 85.3333333333334S149.3333333333334 75.7866666666667 149.3333333333334 64C149.3333333333333 52.2133333333333 139.7866666666667 42.6666666666667 128 42.6666666666667z" />
178
- <glyph glyph-name="alert-square-i"
179
- unicode="&#xEA39;"
180
- horiz-adv-x="256" d="M245.3333333333333 256H10.6666666666667C4.7786666666667 256 0 251.2213333333334 0 245.3333333333334V10.6666666666667C0 4.7786666666667 4.7786666666667 0 10.6666666666667 0H245.3333333333333C251.2213333333333 0 256 4.7786666666667 256 10.6666666666667V245.3333333333334C256 251.2213333333334 251.2213333333333 256 245.3333333333333 256zM156.8746666666667 60.9706666666667C149.824 58.1973333333334 125.3866666666667 46.528 111.3066666666667 58.9333333333334C107.104 62.624 105.0133333333333 67.3066666666667 105.0133333333333 72.992C105.0133333333333 83.6373333333334 108.512 92.9173333333334 114.816 115.2C115.9253333333333 119.4133333333334 117.28 124.8746666666667 117.28 129.2053333333334C117.28 136.6826666666667 114.4426666666667 138.6666666666667 106.752 138.6666666666667C102.9973333333333 138.6666666666667 98.8373333333333 137.3333333333334 95.072 135.9253333333334L97.152 144.448C105.5466666666666 147.8613333333333 116.0853333333333 152.0213333333334 125.1093333333333 152.0213333333334C138.6453333333333 152.0213333333334 148.5973333333333 145.2693333333334 148.5973333333333 132.4266666666667C148.5973333333333 128.7253333333334 147.9573333333333 122.2400000000001 146.6133333333333 117.76L138.8266666666666 90.2186666666667C137.2266666666666 84.6506666666667 134.304 72.3733333333333 138.816 68.736C143.2533333333333 65.1413333333334 153.7599999999999 67.0506666666667 158.944 69.4933333333333L156.8746666666667 60.9706666666667zM144 170.6666666666667C135.168 170.6666666666667 128 177.8346666666667 128 186.6666666666667S135.168 202.6666666666667 144 202.6666666666667S160 195.4986666666667 160 186.6666666666667S152.832 170.6666666666667 144 170.6666666666667z" />
181
- <glyph glyph-name="alert-square-que"
182
- unicode="&#xEA3A;"
183
- horiz-adv-x="256" d="M245.3333333333333 256H10.6666666666667C4.7786666666667 256 0 251.2213333333334 0 245.3333333333334V10.6666666666667C0 4.7786666666667 4.7786666666667 0 10.6666666666667 0H245.3333333333333C251.2213333333333 0 256 4.7786666666667 256 10.6666666666667V245.3333333333334C256 251.2213333333334 251.2213333333333 256 245.3333333333333 256zM122.6666666666667 53.3333333333333C113.8346666666667 53.3333333333333 106.6666666666667 60.5013333333334 106.6666666666667 69.3333333333333S113.8346666666667 85.3333333333333 122.6666666666667 85.3333333333333S138.6666666666667 78.1653333333333 138.6666666666667 69.3333333333333S131.4986666666667 53.3333333333333 122.6666666666667 53.3333333333333zM168.6506666666667 147.9786666666667C161.9413333333333 137.248 141.664 125.0453333333333 137.8453333333334 119.4986666666667C135.1253333333334 115.5626666666667 135.3173333333334 111.36 135.3173333333334 106.6666666666667H109.1093333333334C109.1093333333334 114.4853333333334 108.9386666666667 120.4906666666667 113.1626666666667 127.7973333333334C120.8106666666667 141.0453333333334 134.24 144.352 141.696 154.7946666666667C146.0906666666667 160.9706666666667 146.688 170.4213333333333 140.2666666666667 174.9653333333333C128.9173333333334 182.9973333333333 106.208 175.2853333333333 93.1946666666667 168.64L82.4106666666667 190.2933333333333C97.1093333333333 198.5493333333333 112.704 202.6666666666667 129.184 202.6666666666667C153.4826666666667 202.6666666666667 173.5893333333334 190.784 173.5893333333334 166.7626666666667C173.5893333333334 159.52 171.9466666666667 153.248 168.6506666666667 147.9786666666667z" />
184
- <glyph glyph-name="alert"
185
- unicode="&#xEA3B;"
186
- horiz-adv-x="256" d="M244.1066666666667 26.304L137.44 228.9706666666667C133.7493333333334 235.9786666666667 122.2506666666667 235.9786666666667 118.56 228.9706666666667L11.8933333333334 26.304C10.1546666666667 22.9973333333334 10.272 19.0186666666667 12.192 15.8293333333334C14.1333333333333 12.6186666666667 17.5893333333333 10.6666666666667 21.3333333333333 10.6666666666667H234.6666666666667C238.4106666666667 10.6666666666667 241.8666666666667 12.6186666666667 243.7973333333333 15.8186666666667C245.728 19.0186666666667 245.8453333333333 22.9973333333333 244.1066666666667 26.304zM128 42.6666666666667C122.112 42.6666666666667 117.3333333333333 47.4453333333333 117.3333333333333 53.3333333333333C117.3333333333333 59.2213333333334 122.112 64 128 64S138.6666666666667 59.2213333333334 138.6666666666667 53.3333333333333C138.6666666666667 47.4453333333333 133.888 42.6666666666667 128 42.6666666666667zM138.6666666666667 85.3333333333333H117.3333333333333V160H138.6666666666667V85.3333333333333z" />
187
- <glyph glyph-name="alien-29"
188
- unicode="&#xEA3C;"
189
- horiz-adv-x="256" d="M128 256C57.6 256 0 208 0 149.3333333333334C0 90.6666666666667 77.8666666666667 0 128 0S256 90.6666666666667 256 149.3333333333334C256 206.9333333333333 197.3333333333333 256 128 256zM106.6666666666667 96C106.6666666666667 96 84.2666666666667 99.2 70.4 113.0666666666667C53.3333333333333 129.0666666666667 53.3333333333333 160 53.3333333333333 160S82.1333333333333 161.0666666666667 100.2666666666667 142.9333333333333C114.1333333333333 129.0666666666667 106.6666666666667 96 106.6666666666667 96zM185.6 113.0666666666667C171.7333333333334 99.2 149.3333333333333 96 149.3333333333333 96S141.8666666666667 129.0666666666667 155.7333333333333 142.9333333333333C173.8666666666667 161.0666666666667 202.6666666666667 160 202.6666666666667 160S202.6666666666667 129.0666666666667 185.6 113.0666666666667z" />
190
- <glyph glyph-name="alien-33"
191
- unicode="&#xEA3D;"
192
- horiz-adv-x="256" d="M213.3333333333333 137.5893333333334V138.6666666666667C213.3333333333333 182.1013333333334 180.6933333333333 217.984 138.6666666666667 223.264V245.3333333333334A10.666666666666666 10.666666666666666 0 0 1 117.3333333333333 245.3333333333334V223.264C75.3066666666667 217.984 42.6666666666667 182.1013333333334 42.6666666666667 138.6666666666667V137.5893333333334A53.44 53.44 0 0 1 0 85.3333333333333A10.666666666666666 10.666666666666666 0 0 1 10.6666666666667 74.6666666666667H245.3333333333333A10.666666666666666 10.666666666666666 0 0 1 256 85.3333333333333A53.44 53.44 0 0 1 213.3333333333333 137.5893333333334zM128 202.6666666666667C163.296 202.6666666666667 192 173.9626666666667 192 138.6666666666667H64C64 173.9626666666667 92.704 202.6666666666667 128 202.6666666666667zM117.3333333333333 42.6666666666667H138.6666666666667V0H117.3333333333333zM163.4026666666667 48.1493333333333L182.7306666666667 57.1626666666667L200.7573333333334 18.4853333333333L181.4293333333334 9.472zM55.2106666666667 18.4746666666667L73.2373333333333 57.1626666666667L92.576 48.1493333333333L74.5493333333334 9.4613333333334zM117.3333333333333 170.6666666666667A10.666666666666666 10.666666666666666 0 0 1 138.6666666666667 170.6666666666667A10.666666666666666 10.666666666666666 0 0 1 117.3333333333333 170.6666666666667" />
193
- <glyph glyph-name="align-bottom"
194
- unicode="&#xEA3E;"
195
- horiz-adv-x="256" d="M53.3333333333333 64H106.6666666666667C112.5653333333333 64 117.3333333333333 68.768 117.3333333333333 74.6666666666667V224C117.3333333333333 229.8986666666667 112.5653333333333 234.6666666666667 106.6666666666667 234.6666666666667H53.3333333333333C47.4346666666667 234.6666666666667 42.6666666666667 229.8986666666667 42.6666666666667 224V74.6666666666667C42.6666666666667 68.768 47.4346666666667 64 53.3333333333333 64zM149.3333333333333 64H202.6666666666666C208.5653333333333 64 213.3333333333333 68.768 213.3333333333333 74.6666666666667V160C213.3333333333333 165.8986666666667 208.5653333333333 170.6666666666667 202.6666666666666 170.6666666666667H149.3333333333333C143.4346666666667 170.6666666666667 138.6666666666667 165.8986666666667 138.6666666666667 160V74.6666666666667C138.6666666666667 68.768 143.4346666666667 64 149.3333333333333 64zM256.0000000053357 42.6666666623011L256.0000000063058 21.3333333289678L6.3058e-9 21.3333333173263L5.3357e-9 42.6666666506596L256.0000000053357 42.6666666623011z" />
196
- <glyph glyph-name="align-center-horizontal"
197
- unicode="&#xEA3F;"
198
- horiz-adv-x="256" d="M117.3333333333333 256H138.6666666666667V0H117.3333333333333V256zM202.6666666666667 117.3333333333334H53.3333333333333C47.4453333333333 117.3333333333334 42.6666666666667 112.5653333333333 42.6666666666667 106.6666666666667V53.3333333333334C42.6666666666667 47.4346666666667 47.4453333333333 42.6666666666667 53.3333333333333 42.6666666666667H202.6666666666666C208.5546666666666 42.6666666666667 213.3333333333333 47.4346666666667 213.3333333333333 53.3333333333334V106.6666666666667C213.3333333333333 112.5653333333333 208.5546666666667 117.3333333333334 202.6666666666667 117.3333333333334zM85.3333333333333 138.6666666666667H170.6666666666667C176.5546666666667 138.6666666666667 181.3333333333333 143.4346666666667 181.3333333333333 149.3333333333334V202.6666666666667C181.3333333333333 208.5653333333334 176.5546666666667 213.3333333333334 170.6666666666667 213.3333333333334H85.3333333333333C79.4453333333333 213.3333333333334 74.6666666666667 208.5653333333334 74.6666666666667 202.6666666666667V149.3333333333334C74.6666666666667 143.4346666666667 79.4453333333333 138.6666666666667 85.3333333333333 138.6666666666667z" />
199
- <glyph glyph-name="align-center-vertical"
200
- unicode="&#xEA40;"
201
- horiz-adv-x="256" d="M256.0000000053357 138.6666666729725L256.0000000063058 117.3333333396392L6.3058e-9 117.3333333279977L5.3357e-9 138.666666661331L256.0000000053357 138.6666666729725zM106.6666666666667 213.3333333333334H53.3333333333333C47.4346666666667 213.3333333333334 42.6666666666667 208.5653333333334 42.6666666666667 202.6666666666667V53.3333333333334C42.6666666666667 47.4346666666667 47.4346666666667 42.6666666666667 53.3333333333333 42.6666666666667H106.6666666666667C112.5653333333333 42.6666666666667 117.3333333333333 47.4346666666667 117.3333333333333 53.3333333333334V202.6666666666667C117.3333333333333 208.5653333333334 112.5653333333333 213.3333333333334 106.6666666666667 213.3333333333334zM202.6666666666667 181.3333333333334H149.3333333333333C143.4346666666667 181.3333333333334 138.6666666666667 176.5653333333334 138.6666666666667 170.6666666666667V85.3333333333333C138.6666666666667 79.4346666666667 143.4346666666667 74.6666666666667 149.3333333333333 74.6666666666667H202.6666666666666C208.5653333333333 74.6666666666667 213.3333333333333 79.4346666666667 213.3333333333333 85.3333333333333V170.6666666666667C213.3333333333333 176.5653333333334 208.5653333333334 181.3333333333334 202.6666666666667 181.3333333333334z" />
202
- <glyph glyph-name="align-center"
203
- unicode="&#xEA41;"
204
- horiz-adv-x="256" d="M245.3333333333333 213.3333333333334H10.6666666666667C4.776 213.3333333333334 0 218.1093333333333 0 224S4.776 234.6666666666667 10.6666666666667 234.6666666666667H245.3333333333333C251.224 234.6666666666667 256 229.8906666666667 256 224S251.224 213.3333333333334 245.3333333333333 213.3333333333334zM192 149.3333333333334H64C58.1093333333333 149.3333333333334 53.3333333333333 154.1093333333333 53.3333333333333 160S58.1093333333333 170.6666666666667 64 170.6666666666667H192C197.8906666666667 170.6666666666667 202.6666666666667 165.8906666666667 202.6666666666667 160S197.8906666666667 149.3333333333334 192 149.3333333333334zM245.3333333333333 85.3333333333333H10.6666666666667C4.776 85.3333333333333 0 90.1093333333334 0 96S4.776 106.6666666666667 10.6666666666667 106.6666666666667H245.3333333333333C251.224 106.6666666666667 256 101.8906666666667 256 96S251.224 85.3333333333333 245.3333333333333 85.3333333333333zM192 21.3333333333333H64C58.1093333333333 21.3333333333333 53.3333333333333 26.1093333333334 53.3333333333333 32S58.1093333333333 42.6666666666667 64 42.6666666666667H192C197.8906666666667 42.6666666666667 202.6666666666667 37.8906666666666 202.6666666666667 32S197.8906666666667 21.3333333333333 192 21.3333333333333z" />
205
- <glyph glyph-name="align-justify"
206
- unicode="&#xEA42;"
207
- horiz-adv-x="256" d="M245.3333333333333 213.3333333333334H10.6666666666667C4.77088 213.3333333333334 0 218.1093333333333 0 224S4.77088 234.6666666666667 10.6666666666667 234.6666666666667H245.3333333333333C251.22912 234.6666666666667 256 229.8906666666667 256 224S251.22912 213.3333333333334 245.3333333333333 213.3333333333334zM245.3333333333333 149.3333333333334H10.6666666666667C4.77088 149.3333333333334 0 154.1093333333333 0 160S4.77088 170.6666666666667 10.6666666666667 170.6666666666667H245.3333333333333C251.22912 170.6666666666667 256 165.8906666666667 256 160S251.22912 149.3333333333334 245.3333333333333 149.3333333333334zM245.3333333333333 85.3333333333333H10.6666666666667C4.77088 85.3333333333333 0 90.1093333333334 0 96S4.77088 106.6666666666667 10.6666666666667 106.6666666666667H245.3333333333333C251.22912 106.6666666666667 256 101.8906666666667 256 96S251.22912 85.3333333333333 245.3333333333333 85.3333333333333zM245.3333333333333 21.3333333333333H10.6666666666667C4.77088 21.3333333333333 0 26.1093333333334 0 32S4.77088 42.6666666666667 10.6666666666667 42.6666666666667H245.3333333333333C251.22912 42.6666666666667 256 37.8906666666666 256 32S251.22912 21.3333333333333 245.3333333333333 21.3333333333333z" />
208
- <glyph glyph-name="align-left-2"
209
- unicode="&#xEA43;"
210
- horiz-adv-x="256" d="M245.3333333333333 213.3333333333334H10.6666666666667C4.776 213.3333333333334 0 218.1093333333333 0 224S4.776 234.6666666666667 10.6666666666667 234.6666666666667H245.3333333333333C251.224 234.6666666666667 256 229.8906666666667 256 224S251.224 213.3333333333334 245.3333333333333 213.3333333333334zM138.6666666666667 149.3333333333334H10.6666666666667C4.776 149.3333333333334 0 154.1093333333333 0 160S4.776 170.6666666666667 10.6666666666667 170.6666666666667H138.6666666666667C144.5573333333333 170.6666666666667 149.3333333333333 165.8906666666667 149.3333333333333 160S144.5573333333333 149.3333333333334 138.6666666666667 149.3333333333334zM245.3333333333333 85.3333333333333H10.6666666666667C4.776 85.3333333333333 0 90.1093333333334 0 96S4.776 106.6666666666667 10.6666666666667 106.6666666666667H245.3333333333333C251.224 106.6666666666667 256 101.8906666666667 256 96S251.224 85.3333333333333 245.3333333333333 85.3333333333333zM138.6666666666667 21.3333333333333H10.6666666666667C4.776 21.3333333333333 0 26.1093333333334 0 32S4.776 42.6666666666667 10.6666666666667 42.6666666666667H138.6666666666667C144.5573333333333 42.6666666666667 149.3333333333333 37.8906666666666 149.3333333333333 32S144.5573333333333 21.3333333333333 138.6666666666667 21.3333333333333z" />
211
- <glyph glyph-name="align-left"
212
- unicode="&#xEA44;"
213
- horiz-adv-x="256" d="M224 213.3333333333334H74.6666666666667C68.7786666666667 213.3333333333334 64 208.5653333333334 64 202.6666666666667V149.3333333333334C64 143.4346666666667 68.7786666666667 138.6666666666667 74.6666666666667 138.6666666666667H224C229.888 138.6666666666667 234.6666666666667 143.4346666666667 234.6666666666667 149.3333333333334V202.6666666666667C234.6666666666667 208.5653333333334 229.888 213.3333333333334 224 213.3333333333334zM160 117.3333333333334H74.6666666666667C68.7786666666667 117.3333333333334 64 112.5653333333333 64 106.6666666666667V53.3333333333334C64 47.4346666666667 68.7786666666667 42.6666666666667 74.6666666666667 42.6666666666667H160C165.888 42.6666666666667 170.6666666666667 47.4346666666667 170.6666666666667 53.3333333333334V106.6666666666667C170.6666666666667 112.5653333333333 165.888 117.3333333333334 160 117.3333333333334zM21.3333333333333 256H42.6666666666667V0H21.3333333333333V256z" />
214
- <glyph glyph-name="align-right-2"
215
- unicode="&#xEA45;"
216
- horiz-adv-x="256" d="M245.3333333333333 213.3333333333334H10.6666666666667C4.77088 213.3333333333334 0 218.1093333333333 0 224S4.77088 234.6666666666667 10.6666666666667 234.6666666666667H245.3333333333333C251.22912 234.6666666666667 256 229.8906666666667 256 224S251.22912 213.3333333333334 245.3333333333333 213.3333333333334zM245.3333333333333 149.3333333333334H117.3333333333333C111.4375466666667 149.3333333333334 106.6666666666667 154.1093333333333 106.6666666666667 160S111.4375466666667 170.6666666666667 117.3333333333333 170.6666666666667H245.3333333333333C251.22912 170.6666666666667 256 165.8906666666667 256 160S251.22912 149.3333333333334 245.3333333333333 149.3333333333334zM245.3333333333333 85.3333333333333H10.6666666666667C4.77088 85.3333333333333 0 90.1093333333334 0 96S4.77088 106.6666666666667 10.6666666666667 106.6666666666667H245.3333333333333C251.22912 106.6666666666667 256 101.8906666666667 256 96S251.22912 85.3333333333333 245.3333333333333 85.3333333333333zM245.3333333333333 21.3333333333333H117.3333333333333C111.4375466666667 21.3333333333333 106.6666666666667 26.1093333333334 106.6666666666667 32S111.4375466666667 42.6666666666667 117.3333333333333 42.6666666666667H245.3333333333333C251.22912 42.6666666666667 256 37.8906666666666 256 32S251.22912 21.3333333333333 245.3333333333333 21.3333333333333z" />
217
- <glyph glyph-name="align-right"
218
- unicode="&#xEA46;"
219
- horiz-adv-x="256" d="M213.3333333333333 256H234.6666666666667V0H213.3333333333333V256zM181.3333333333333 213.3333333333334H32C26.112 213.3333333333334 21.3333333333333 208.5653333333334 21.3333333333333 202.6666666666667V149.3333333333334C21.3333333333333 143.4346666666667 26.112 138.6666666666667 32 138.6666666666667H181.3333333333333C187.2213333333333 138.6666666666667 192 143.4346666666667 192 149.3333333333334V202.6666666666667C192 208.5653333333334 187.2213333333333 213.3333333333334 181.3333333333333 213.3333333333334zM181.3333333333333 117.3333333333334H96C90.112 117.3333333333334 85.3333333333333 112.5653333333333 85.3333333333333 106.6666666666667V53.3333333333334C85.3333333333333 47.4346666666667 90.112 42.6666666666667 96 42.6666666666667H181.3333333333333C187.2213333333333 42.6666666666667 192 47.4346666666667 192 53.3333333333334V106.6666666666667C192 112.5653333333333 187.2213333333333 117.3333333333334 181.3333333333333 117.3333333333334z" />
220
- <glyph glyph-name="align-top"
221
- unicode="&#xEA47;"
222
- horiz-adv-x="256" d="M202.6666666666667 192H149.3333333333333C143.4346666666667 192 138.6666666666667 187.232 138.6666666666667 181.3333333333333V32C138.6666666666667 26.1013333333333 143.4346666666667 21.3333333333333 149.3333333333333 21.3333333333333H202.6666666666666C208.5653333333333 21.3333333333333 213.3333333333333 26.1013333333333 213.3333333333333 32V181.3333333333334C213.3333333333333 187.232 208.5653333333334 192 202.6666666666667 192zM106.6666666666667 192H53.3333333333333C47.4346666666667 192 42.6666666666667 187.232 42.6666666666667 181.3333333333334V96C42.6666666666667 90.1013333333333 47.4346666666667 85.3333333333333 53.3333333333333 85.3333333333333H106.6666666666667C112.5653333333333 85.3333333333333 117.3333333333333 90.1013333333333 117.3333333333333 96V181.3333333333334C117.3333333333333 187.232 112.5653333333333 192 106.6666666666667 192zM256.0000000053357 234.6666666710323L256.0000000063058 213.3333333376989L6.3058e-9 213.3333333260574L5.3357e-9 234.6666666593908L256.0000000053357 234.6666666710323z" />
223
- <glyph glyph-name="ambulance"
224
- unicode="&#xEA48;"
225
- horiz-adv-x="256" d="M249.6 126.9333333333333L234.6666666666667 134.4V170.6666666666667C234.6666666666667 177.0666666666667 230.4 181.3333333333334 224 181.3333333333334H170.6666666666667V213.3333333333334C170.6666666666667 219.7333333333334 166.4 224 160 224H10.6666666666667C4.2666666666667 224 0 219.7333333333334 0 213.3333333333334V74.6666666666667C0 68.2666666666667 4.2666666666667 64 10.6666666666667 64H22.4C26.6666666666667 45.8666666666667 43.7333333333333 32 64 32S100.2666666666667 45.8666666666667 105.6 64H150.4C152.5333333333333 45.8666666666667 168.5333333333333 32 186.6666666666666 32S220.8 45.8666666666667 222.9333333333333 64H245.3333333333333C251.7333333333333 64 256 68.2666666666667 256 74.6666666666667V117.3333333333334C256 121.6 253.8666666666667 124.8 249.6 126.9333333333333zM64 53.3333333333333C52.2666666666667 53.3333333333333 42.6666666666667 62.9333333333333 42.6666666666667 74.6666666666667C42.6666666666667 86.4 52.2666666666667 96 64 96S85.3333333333333 86.4 85.3333333333333 74.6666666666667C85.3333333333333 62.9333333333333 75.7333333333333 53.3333333333333 64 53.3333333333333zM117.3333333333333 149.3333333333334H96V128H74.6666666666667V149.3333333333334H53.3333333333333V170.6666666666667H74.6666666666667V192H96V170.6666666666667H117.3333333333333V149.3333333333334zM186.6666666666667 53.3333333333333C178.1333333333333 53.3333333333333 170.6666666666667 60.8 170.6666666666667 69.3333333333333S178.1333333333333 85.3333333333333 186.6666666666667 85.3333333333333S202.6666666666667 77.8666666666667 202.6666666666667 69.3333333333333S195.2 53.3333333333333 186.6666666666667 53.3333333333333zM213.3333333333333 144C213.3333333333333 140.8 211.2 138.6666666666667 208 138.6666666666667H186.6666666666666C183.4666666666667 138.6666666666667 181.3333333333333 140.8 181.3333333333333 144V154.6666666666667C181.3333333333333 157.8666666666667 183.4666666666667 160 186.6666666666667 160H208C211.2 160 213.3333333333333 157.8666666666667 213.3333333333333 154.6666666666667V144z" />
226
- <glyph glyph-name="analytics-88"
227
- unicode="&#xEA49;"
228
- horiz-adv-x="256" d="M86.4 196.2666666666667C89.6 203.7333333333334 101.3333333333333 203.7333333333334 105.6 196.2666666666667L160 87.4666666666667L182.4 132.2666666666667C184.5333333333333 135.4666666666667 187.7333333333334 138.6666666666667 192 138.6666666666667H256V245.3333333333334C256 251.7333333333333 251.7333333333333 256 245.3333333333334 256H10.6666666666667C4.2666666666667 256 0 251.7333333333333 0 245.3333333333334V138.6666666666667H57.6L86.4 196.2666666666667zM169.6 59.7333333333334C167.4666666666667 55.4666666666667 164.2666666666667 53.3333333333333 160 53.3333333333333S152.5333333333333 55.4666666666667 150.4 59.7333333333334L96 168.5333333333334L73.6 123.7333333333334C71.4666666666667 119.4666666666667 68.2666666666667 117.3333333333334 64 117.3333333333334H0V10.6666666666667C0 4.2666666666667 4.2666666666667 0 10.6666666666667 0H245.3333333333333C251.7333333333333 0 256 4.2666666666667 256 10.6666666666667V117.3333333333334H198.4L169.6 59.7333333333334z" />
229
- <glyph glyph-name="analytics-89"
230
- unicode="&#xEA4A;"
231
- horiz-adv-x="256" d="M198.4 117.3333333333334L169.6 59.7333333333334C167.4666666666667 55.4666666666667 164.2666666666667 53.3333333333333 160 53.3333333333333S152.5333333333333 55.4666666666667 150.4 59.7333333333334L96 168.5333333333334L73.6 123.7333333333334C71.4666666666667 119.4666666666667 68.2666666666667 117.3333333333334 64 117.3333333333334H1.0666666666667C6.4 52.2666666666667 60.8 0 128 0S249.6 52.2666666666667 254.9333333333334 117.3333333333333H198.4zM57.6 138.6666666666667L86.4 196.2666666666667C89.6 203.7333333333334 101.3333333333333 203.7333333333334 105.6 196.2666666666667L160 87.4666666666667L182.4 132.2666666666667C184.5333333333333 135.4666666666667 187.7333333333334 138.6666666666667 192 138.6666666666667H254.9333333333334C249.6 203.7333333333334 195.2 256 128 256S6.4 203.7333333333334 1.0666666666667 138.6666666666667H57.6z" />
232
- <glyph glyph-name="anchor"
233
- unicode="&#xEA4B;"
234
- horiz-adv-x="256" d="M213.3333333333333 74.6666666666667H160V53.3333333333333H194.4C180.5866666666667 36.096 160.7573333333334 24.8213333333333 138.6666666666667 22.0693333333333V149.3333333333334H160C165.888 149.3333333333334 170.6666666666667 154.112 170.6666666666667 160S165.888 170.6666666666667 160 170.6666666666667H138.6666666666667V193.9626666666667C151.0506666666667 198.3786666666667 160 210.112 160 224C160 241.6426666666667 145.6426666666667 256 128 256S96 241.6426666666667 96 224C96 210.112 104.9493333333333 198.3786666666667 117.3333333333333 193.9626666666667V170.6666666666667H96C90.1013333333333 170.6666666666667 85.3333333333333 165.888 85.3333333333333 160S90.112 149.3333333333333 96 149.3333333333333H117.3333333333333V22.0693333333334C95.2533333333333 24.8213333333334 75.424 36.096 61.6 53.3333333333333H96V74.6666666666667H42.6666666666667C36.7786666666667 74.6666666666667 32 69.888 32 64V10.6666666666667H53.3333333333333V30.72C72.9493333333333 11.3813333333333 99.456 0 128 0C156.5333333333333 0 183.04 11.3813333333333 202.6666666666667 30.7093333333334V10.6666666666667H224V64C224 69.888 219.2213333333333 74.6666666666667 213.3333333333333 74.6666666666667zM128 213.3333333333334C122.1226666666667 213.3333333333334 117.3333333333333 218.1226666666667 117.3333333333333 224S122.1226666666667 234.6666666666667 128 234.6666666666667S138.6666666666667 229.8773333333334 138.6666666666667 224S133.8773333333333 213.3333333333334 128 213.3333333333334z" />
235
- <glyph glyph-name="android"
236
- unicode="&#xEA4C;"
237
- horiz-adv-x="256" d="M162.9973333333333 224.2133333333334L175.104 242.3786666666667C176.736 244.8213333333334 176.0746666666667 248.1386666666667 173.6213333333333 249.7706666666667C171.1573333333333 251.4026666666667 167.8506666666667 250.752 166.2293333333333 248.288L153.5786666666667 229.312C145.7386666666667 232.736 137.0986666666667 234.6666666666667 128 234.6666666666667S110.2613333333333 232.736 102.4213333333333 229.312L89.7706666666667 248.288C88.1386666666667 250.7413333333334 84.832 251.4026666666667 82.3786666666667 249.7706666666667S79.264 244.8213333333334 80.896 242.3786666666667L93.0026666666667 224.2133333333334C75.552 212.7786666666667 64 193.088 64 170.6666666666667H192C192 193.088 180.448 212.7786666666667 162.9973333333333 224.2133333333334zM64 53.3333333333333C64 47.4453333333333 68.7786666666667 42.6666666666667 74.6666666666667 42.6666666666667H85.3333333333333V10.6666666666667C85.3333333333333 4.7786666666667 90.112 0 96 0S106.6666666666667 4.7786666666667 106.6666666666667 10.6666666666667V42.6666666666667H149.3333333333334V10.6666666666667C149.3333333333334 4.7786666666667 154.112 0 160 0S170.6666666666667 4.7786666666667 170.6666666666667 10.6666666666667V42.6666666666667H181.3333333333333C187.2213333333333 42.6666666666667 192 47.4453333333333 192 53.3333333333333V160H64V53.3333333333333zM42.6666666666667 160C36.7786666666667 160 32 155.2213333333334 32 149.3333333333333V96C32 90.112 36.7786666666667 85.3333333333333 42.6666666666667 85.3333333333333S53.3333333333333 90.112 53.3333333333333 96V149.3333333333333C53.3333333333333 155.2213333333334 48.5546666666667 160 42.6666666666667 160zM213.3333333333333 160C207.4453333333333 160 202.6666666666667 155.2213333333334 202.6666666666667 149.3333333333333V96C202.6666666666667 90.112 207.4453333333334 85.3333333333333 213.3333333333333 85.3333333333333S224 90.112 224 96V149.3333333333333C224 155.2213333333334 219.2213333333333 160 213.3333333333333 160z" />
238
- <glyph glyph-name="angle"
239
- unicode="&#xEA4D;"
240
- horiz-adv-x="256" d="M245.2266666666667 0H10.6666666666667C4.768 0 0 4.7786666666667 0 10.6666666666667V245.3333333333334C0 251.2213333333334 4.768 256 10.6666666666667 256S21.3333333333333 251.2213333333334 21.3333333333333 245.3333333333334V21.3333333333333H245.2266666666667C251.1253333333333 21.3333333333333 255.8933333333333 16.5546666666667 255.8933333333333 10.6666666666667S251.1253333333333 0 245.2266666666667 0zM149.3333333333333 42.6666666666667H42.6666666666667V149.3333333333334H53.3333333333333C106.272 149.3333333333334 149.3333333333333 106.2613333333333 149.3333333333333 53.3333333333333V42.6666666666667z" />
241
- <glyph glyph-name="angry-10"
242
- unicode="&#xEA4E;"
243
- horiz-adv-x="256" d="M128 256C57.6 256 0 198.4 0 128S57.6 0 128 0C198.4 0 256 57.6 256 128S198.4 256 128 256zM64 170.6666666666667H106.6666666666667V149.3333333333334H64V170.6666666666667zM74.6666666666667 64C74.6666666666667 93.8666666666667 98.1333333333333 117.3333333333333 128 117.3333333333333C157.8666666666667 117.3333333333333 181.3333333333333 93.8666666666667 181.3333333333333 64H74.6666666666667zM192 149.3333333333334H149.3333333333334V170.6666666666667H192V149.3333333333334z" />
244
- <glyph glyph-name="angry-44"
245
- unicode="&#xEA4F;"
246
- horiz-adv-x="256" d="M128 256C57.6 256 0 198.4 0 128S57.6 0 128 0C198.4 0 256 57.6 256 128S198.4 256 128 256zM185.6 195.2L195.2 176L154.6666666666666 155.7333333333334L145.0666666666666 174.9333333333333L185.6 195.2zM70.4 195.2L110.9333333333333 174.9333333333333L100.2666666666667 156.8L60.8 177.0666666666667L70.4 195.2zM165.3333333333333 53.3333333333333H90.6666666666667C70.4 53.3333333333333 53.3333333333333 70.4 53.3333333333333 90.6666666666667S70.4 128 90.6666666666667 128H165.3333333333333C185.6 128 202.6666666666666 110.9333333333333 202.6666666666666 90.6666666666667S185.6 53.3333333333333 165.3333333333333 53.3333333333333z" />
247
- <glyph glyph-name="animation-14"
248
- unicode="&#xEA50;"
249
- horiz-adv-x="256" d="M202.6666666666667 106.6666666666667C173.2586666666667 106.6666666666667 149.3333333333333 130.592 149.3333333333333 160S173.2586666666667 213.3333333333334 202.6666666666666 213.3333333333334S256 189.408 256 160S232.0746666666667 106.6666666666667 202.6666666666667 106.6666666666667zM129.9946666666667 148.7466666666667C111.4666666666667 142.3253333333333 92.8533333333333 127.6906666666667 80.1386666666667 105.8346666666667C70.9546666666667 156.736 49.5466666666667 192.3413333333334 16.0426666666667 211.8826666666667L5.2906666666667 193.4506666666667C44.2453333333333 170.7306666666667 64 120 64 42.6666666666667H85.3333333333333C85.3333333333333 89.6746666666667 111.2746666666667 119.6906666666667 136.9706666666667 128.5973333333333L129.9946666666667 148.7466666666667z" />
250
- <glyph glyph-name="animation-31"
251
- unicode="&#xEA51;"
252
- horiz-adv-x="256" d="M224 74.6666666666667V181.3333333333334C224 187.2213333333334 228.7786666666667 192 234.6666666666667 192H256V234.6666666666667H0V192H21.3333333333333C27.2213333333333 192 32 187.2213333333334 32 181.3333333333333V74.6666666666667C32 68.7786666666667 27.2213333333333 64 21.3333333333333 64H0V21.3333333333334H256V64H234.6666666666667C228.7786666666667 64 224 68.7786666666667 224 74.6666666666667zM181.3333333333333 64H74.6666666666667C68.7786666666667 64 64 68.7786666666667 64 74.6666666666667V181.3333333333334C64 187.2213333333334 68.7786666666667 192 74.6666666666667 192H181.3333333333333C187.2213333333333 192 192 187.2213333333334 192 181.3333333333334V74.6666666666667C192 68.7786666666667 187.2213333333333 64 181.3333333333333 64z" />
253
- <glyph glyph-name="animation-32"
254
- unicode="&#xEA52;"
255
- horiz-adv-x="256" d="M42.6666666666667 42.6666666666667H10.6666666666667C4.7786666666667 42.6666666666667 0 47.4346666666667 0 53.3333333333333V85.3333333333333H21.3333333333333V64H42.6666666666667V42.6666666666667zM96 42.6666666666667H64V64H85.3333333333333V85.3333333333334H106.6666666666667V53.3333333333334C106.6666666666667 47.4346666666667 101.888 42.6666666666667 96 42.6666666666667zM106.6666666666667 170.6666666666667H85.3333333333333V192H64V213.3333333333334H96C101.888 213.3333333333334 106.6666666666667 208.5653333333334 106.6666666666667 202.6666666666667V170.6666666666667zM21.3333333333333 170.6666666666667H0V202.6666666666667C0 208.5653333333334 4.7786666666667 213.3333333333334 10.6666666666667 213.3333333333334H42.6666666666667V192H21.3333333333333V170.6666666666667zM245.3333333333333 0H149.3333333333333C143.4453333333333 0 138.6666666666667 4.7786666666667 138.6666666666667 10.6666666666667V245.3333333333334C138.6666666666667 251.2213333333334 143.4453333333334 256 149.3333333333333 256H245.3333333333333C251.2213333333333 256 256 251.2213333333334 256 245.3333333333334V10.6666666666667C256 4.7786666666667 251.2213333333333 0 245.3333333333333 0zM0 149.3333333333334H21.3333333333333V106.6666666666667H0V149.3333333333334zM85.3333333333333 149.3333333333334H106.6666666666667V106.6666666666667H85.3333333333333V149.3333333333334z" />
256
- <glyph glyph-name="app"
257
- unicode="&#xEA53;"
258
- horiz-adv-x="256" d="M128 161.0666666666667L222.9333333333333 203.7333333333333L132.2666666666667 244.2666666666667C129.0666666666667 245.3333333333333 125.8666666666667 245.3333333333333 123.7333333333334 244.2666666666667L33.0666666666667 203.7333333333334L128 161.0666666666667zM138.6666666666667 142.9333333333333V14.9333333333333L228.2666666666667 54.4C232.5333333333334 56.5333333333333 234.6666666666667 59.7333333333334 234.6666666666667 64V185.6L138.6666666666667 142.9333333333333zM117.3333333333333 142.9333333333333L21.3333333333333 185.6V64C21.3333333333333 59.7333333333333 23.4666666666667 55.4666666666667 27.7333333333333 54.4L117.3333333333333 14.9333333333333V142.9333333333333z" />
259
- <glyph glyph-name="apple-2"
260
- unicode="&#xEA54;"
261
- horiz-adv-x="256" d="M213.3333333333333 194.1333333333333C193.0666666666667 210.1333333333333 169.6 215.4666666666667 144 211.2C148.2666666666667 221.8666666666667 154.6666666666667 229.3333333333334 165.3333333333334 235.7333333333334C170.6666666666667 238.9333333333334 171.7333333333334 245.3333333333334 168.5333333333333 250.6666666666667C165.3333333333334 256 158.9333333333333 257.0666666666667 153.6 253.8666666666667C135.4666666666667 242.1333333333334 125.8666666666667 229.3333333333334 120.5333333333333 209.0666666666667C91.7333333333333 217.6 66.1333333333333 212.2666666666667 42.6666666666667 194.1333333333333C28.8 183.4666666666667 11.7333333333333 157.8666666666667 10.6666666666667 123.7333333333334C9.6 97.0666666666667 20.2666666666667 54.4 71.4666666666667 10.6666666666667C80 4.2666666666667 89.6 0 100.2666666666667 0C112 0 121.6 3.2 128 6.4C134.4 3.2 144 0 155.7333333333334 0H155.7333333333334C166.4 0 177.0666666666667 3.2 184.5333333333334 10.6666666666667C235.7333333333334 54.4 246.4000000000001 97.0666666666667 245.3333333333334 124.8C244.2666666666667 158.9333333333333 227.2 183.4666666666667 213.3333333333333 194.1333333333333zM166.4 162.1333333333333C155.7333333333333 153.6 141.8666666666667 149.3333333333333 128 149.3333333333333C114.1333333333333 149.3333333333333 100.2666666666666 153.6 89.6 162.1333333333333C85.3333333333333 165.3333333333334 84.2666666666667 172.8 87.4666666666667 177.0666666666667C90.6666666666667 181.3333333333333 98.1333333333333 182.4 102.4 179.2C117.3333333333333 168.5333333333333 138.6666666666667 168.5333333333333 153.6 179.2C157.8666666666667 182.4 165.3333333333333 181.3333333333334 168.5333333333333 177.0666666666667C171.7333333333334 172.8 170.6666666666667 165.3333333333334 166.4 162.1333333333333z" />
262
- <glyph glyph-name="apple"
263
- unicode="&#xEA55;"
264
- horiz-adv-x="256" d="M227.776 80.1386666666667C213.504 85.536 203.9573333333333 98.496 202.88 113.952C201.824 129.0133333333334 209.2053333333333 142.3893333333334 222.624 149.7386666666667L233.7813333333333 155.8506666666667L225.8133333333334 165.7706666666667C212.4266666666667 182.4426666666667 193.2693333333334 192.4053333333334 174.5706666666667 192.4053333333334C161.6106666666667 192.4053333333334 152.6186666666667 189.0133333333334 145.3973333333333 186.2826666666667C140.2986666666667 184.352 136.2773333333333 182.8373333333333 131.8613333333333 182.8373333333333C126.8266666666667 182.8373333333333 121.856 184.608 116.096 186.656C108.544 189.344 99.9893333333333 192.3946666666667 89.0026666666667 192.3946666666667C67.776 192.3946666666667 46.368 179.7226666666667 33.1413333333333 159.3493333333334C13.3973333333333 128.96 18.816 76.8533333333334 46.0266666666667 35.4453333333334C56.8106666666667 19.04 71.9253333333333 0.192 93.3333333333333 0C93.472 0 93.6106666666667 0 93.7493333333333 0C111.2746666666667 0 115.1146666666667 9.344 132.128 9.4506666666667C150.7093333333333 8.576 153.056 -0.0746666666666 170.4106666666667 0.0426666666667C191.328 0.2346666666667 206.4106666666667 18.9333333333334 218.4 37.2053333333334C225.4826666666667 47.9466666666667 228.224 53.568 233.7386666666667 65.7706666666667L238.4106666666667 76.1173333333334L227.776 80.1386666666667zM161.0666666666667 219.2C168 228.096 173.2586666666667 240.6506666666667 171.3493333333333 253.4826666666667C160.0213333333333 252.704 146.7946666666667 245.504 139.0613333333333 236.1173333333334C132.0426666666667 227.5946666666667 126.2506666666667 214.9653333333333 128.5013333333333 202.6773333333333C140.8533333333333 202.2933333333334 153.6426666666667 209.6746666666667 161.0666666666667 219.2L161.0666666666667 219.2z" />
265
- <glyph glyph-name="appointment"
266
- unicode="&#xEA56;"
267
- horiz-adv-x="256" d="M128 256C80.8106666666667 256 32 220.096 32 160C32 103.584 116.8106666666667 17.4613333333334 120.4266666666667 13.8133333333333C122.432 11.7973333333334 125.152 10.6666666666667 128 10.6666666666667S133.568 11.7973333333333 135.5733333333333 13.8133333333334C139.1893333333333 17.4613333333334 224 103.584 224 160C224 220.096 175.1893333333333 256 128 256zM181.3333333333333 149.3333333333334H117.3333333333333V213.3333333333334H138.6666666666667V170.6666666666667H181.3333333333333V149.3333333333334z" />
268
- <glyph glyph-name="archive-2"
269
- unicode="&#xEA57;"
270
- horiz-adv-x="256" d="M224 170.6666666666667H32C26.112 170.6666666666667 21.3333333333333 165.8986666666667 21.3333333333333 160V10.6666666666667C21.3333333333333 4.768 26.112 0 32 0H224C229.888 0 234.6666666666667 4.768 234.6666666666667 10.6666666666667V160C234.6666666666667 165.8986666666667 229.888 170.6666666666667 224 170.6666666666667zM181.3333333333333 96C181.3333333333333 90.1013333333333 176.5546666666667 85.3333333333333 170.6666666666667 85.3333333333333H85.3333333333333C79.4453333333333 85.3333333333333 74.6666666666667 90.1013333333333 74.6666666666667 96V128H96V106.6666666666667H160V128H181.3333333333334V96zM42.6666666666667 213.3333333333334H213.3333333333333V192H42.6666666666667V213.3333333333333zM74.6666666666667 256H181.3333333333333V234.6666666666667H74.6666666666667V256z" />
271
- <glyph glyph-name="archive-3d-check"
272
- unicode="&#xEA58;"
273
- horiz-adv-x="256" d="M213.3333333333333 256H42.6666666666667C36.7786666666667 256 32 251.2213333333334 32 245.3333333333334V96H224V245.3333333333334C224 251.2213333333334 219.2213333333333 256 213.3333333333333 256zM124.8746666666667 152.4586666666667C122.7946666666667 150.3786666666667 120.064 149.3333333333334 117.3333333333333 149.3333333333334S111.872 150.3786666666667 109.792 152.4586666666667L80.9173333333333 181.3333333333334L96 196.416L117.3333333333333 175.0826666666667L160 217.7493333333334L175.0826666666667 202.6666666666667L124.8746666666667 152.4586666666667zM160 74.6666666666667V53.3333333333333H96V74.6666666666667H0V10.6666666666667C0 4.7786666666667 4.7786666666667 0 10.6666666666667 0H245.3333333333333C251.2213333333333 0 256 4.7786666666667 256 10.6666666666667V74.6666666666667L160 74.6666666666667z" />
274
- <glyph glyph-name="archive-3d-content"
275
- unicode="&#xEA59;"
276
- horiz-adv-x="256" d="M224 245.3333333333334C224 251.2213333333334 219.2213333333334 256 213.3333333333334 256H42.6666666666667C36.7786666666667 256 32 251.2213333333334 32 245.3333333333334V96H224V245.3333333333334zM170.6666666666667 138.6666666666667H85.3333333333333V160H170.6666666666667V138.6666666666667zM170.6666666666667 192H85.3333333333333V213.3333333333334H170.6666666666667V192zM160 74.6666666666667V53.3333333333333H96V74.6666666666667H0V10.6666666666667C0 4.7786666666667 4.7786666666667 0 10.6666666666667 0H245.3333333333333C251.2213333333333 0 256 4.7786666666667 256 10.6666666666667V74.6666666666667L160 74.6666666666667z" />
277
- <glyph glyph-name="archive-check"
278
- unicode="&#xEA5A;"
279
- horiz-adv-x="256" d="M245.3333333333333 256H10.6666666666667C4.7786666666667 256 0 251.2213333333334 0 245.3333333333334V10.6666666666667C0 4.7786666666667 4.7786666666667 0 10.6666666666667 0H245.3333333333333C251.2213333333333 0 256 4.7786666666667 256 10.6666666666667V245.3333333333334C256 251.2213333333334 251.2213333333333 256 245.3333333333333 256zM234.6666666666667 234.6666666666667V96H170.6666666666667C164.7786666666667 96 160 91.2213333333334 160 85.3333333333333V64H96V85.3333333333333C96 91.2213333333334 91.2213333333333 96 85.3333333333333 96H21.3333333333333V234.6666666666667H234.6666666666667zM106.6666666666667 117.3333333333334C103.936 117.3333333333334 101.2053333333333 118.3786666666667 99.1253333333333 120.4586666666667L70.2506666666667 149.3333333333334L85.3333333333333 164.416L106.6666666666667 143.0826666666667L170.6666666666667 207.0826666666667L185.7493333333334 192L114.208 120.4586666666667C112.128 118.3786666666667 109.3973333333333 117.3333333333334 106.6666666666667 117.3333333333334z" />
280
- <glyph glyph-name="archive-content"
281
- unicode="&#xEA5B;"
282
- horiz-adv-x="256" d="M245.3333333333333 256H10.6666666666667C4.2666666666667 256 0 251.7333333333333 0 245.3333333333334V10.6666666666667C0 4.2666666666667 4.2666666666667 0 10.6666666666667 0H245.3333333333333C251.7333333333333 0 256 4.2666666666667 256 10.6666666666667V245.3333333333334C256 251.7333333333333 251.7333333333334 256 245.3333333333333 256zM234.6666666666667 234.6666666666667V96H170.6666666666667C164.2666666666667 96 160 91.7333333333333 160 85.3333333333333V64H96V85.3333333333333C96 91.7333333333334 91.7333333333333 96 85.3333333333333 96H21.3333333333333V234.6666666666667H234.6666666666667zM53.3333333333333 202.6666666666667H202.6666666666666V181.3333333333334H53.3333333333333V202.6666666666667zM53.3333333333333 149.3333333333334H202.6666666666666V128H53.3333333333333V149.3333333333334z" />
283
- <glyph glyph-name="archive-paper-check"
284
- unicode="&#xEA5C;"
285
- horiz-adv-x="256" d="M234.6666666666667 192V74.6666666666667L160 74.6666666666667V53.3333333333333H96V74.6666666666667H21.3333333333333V192H0V10.6666666666667C0 4.7786666666667 4.7786666666667 0 10.6666666666667 0H245.3333333333333C251.2213333333333 0 256 4.7786666666667 256 10.6666666666667V192H234.6666666666667zM202.6666666666667 256H53.3333333333333C47.4453333333333 256 42.6666666666667 251.2213333333334 42.6666666666667 245.3333333333334V96H213.3333333333333V245.3333333333334C213.3333333333333 251.2213333333334 208.5546666666667 256 202.6666666666667 256zM124.8746666666667 152.4586666666667C122.7946666666667 150.3786666666667 120.064 149.3333333333334 117.3333333333333 149.3333333333334S111.872 150.3786666666667 109.792 152.4586666666667L80.9173333333333 181.3333333333334L96 196.416L117.3333333333333 175.0826666666667L160 217.7493333333334L175.0826666666667 202.6666666666667L124.8746666666667 152.4586666666667z" />
286
- <glyph glyph-name="archive-paper"
287
- unicode="&#xEA5D;"
288
- horiz-adv-x="256" d="M213.3333333333333 245.3333333333334C213.3333333333333 251.2213333333334 208.5546666666667 256 202.6666666666667 256H53.3333333333333C47.4453333333333 256 42.6666666666667 251.2213333333334 42.6666666666667 245.3333333333334V96H213.3333333333333V245.3333333333334zM170.6666666666667 138.6666666666667H85.3333333333333V160H170.6666666666667V138.6666666666667zM170.6666666666667 192H85.3333333333333V213.3333333333334H170.6666666666667V192zM234.6666666666667 192V74.6666666666667L160 74.6666666666667V53.3333333333333H96V74.6666666666667H21.3333333333333V192H0V10.6666666666667C0 4.7786666666667 4.7786666666667 0 10.6666666666667 0H245.3333333333333C251.2213333333333 0 256 4.7786666666667 256 10.6666666666667V192H234.6666666666667z" />
289
- <glyph glyph-name="archive"
290
- unicode="&#xEA5E;"
291
- horiz-adv-x="256" d="M245.3333333333333 256H10.6666666666667C4.2666666666667 256 0 251.7333333333333 0 245.3333333333334V10.6666666666667C0 4.2666666666667 4.2666666666667 0 10.6666666666667 0H245.3333333333333C251.7333333333333 0 256 4.2666666666667 256 10.6666666666667V245.3333333333334C256 251.7333333333333 251.7333333333334 256 245.3333333333333 256zM234.6666666666667 234.6666666666667V96H170.6666666666667C164.2666666666667 96 160 91.7333333333333 160 85.3333333333333V64H96V85.3333333333333C96 91.7333333333334 91.7333333333333 96 85.3333333333333 96H21.3333333333333V234.6666666666667H234.6666666666667z" />
292
- <glyph glyph-name="armchair"
293
- unicode="&#xEA5F;"
294
- horiz-adv-x="256" d="M245.3333333333333 149.3333333333334H213.3333333333333C206.9333333333333 149.3333333333334 202.6666666666667 145.0666666666667 202.6666666666667 138.6666666666667V96H53.3333333333333V138.6666666666667C53.3333333333333 145.0666666666667 49.0666666666667 149.3333333333333 42.6666666666667 149.3333333333333H10.6666666666667C4.2666666666667 149.3333333333333 0 145.0666666666667 0 138.6666666666667V42.6666666666667C0 36.2666666666667 4.2666666666667 32 10.6666666666667 32H32V10.6666666666667C32 4.2666666666667 36.2666666666667 0 42.6666666666667 0S53.3333333333333 4.2666666666667 53.3333333333333 10.6666666666667V32H202.6666666666666V10.6666666666667C202.6666666666666 4.2666666666667 206.9333333333333 0 213.3333333333333 0S224 4.2666666666667 224 10.6666666666667V32H245.3333333333333C251.7333333333333 32 256 36.2666666666667 256 42.6666666666667V138.6666666666667C256 145.0666666666667 251.7333333333334 149.3333333333334 245.3333333333333 149.3333333333334zM64 170.6666666666667C70.4 170.6666666666667 74.6666666666667 166.4 74.6666666666667 160V117.3333333333334H181.3333333333333V160C181.3333333333333 166.4 185.6 170.6666666666667 192 170.6666666666667H224V245.3333333333334C224 251.7333333333333 219.7333333333333 256 213.3333333333333 256H42.6666666666667C36.2666666666667 256 32 251.7333333333333 32 245.3333333333334V170.6666666666667H64z" />
295
- <glyph glyph-name="artboard"
296
- unicode="&#xEA60;"
297
- horiz-adv-x="256" d="M192 202.6666666666667H64C58.1013333333333 202.6666666666667 53.3333333333333 197.888 53.3333333333333 192V64C53.3333333333333 58.112 58.1013333333333 53.3333333333333 64 53.3333333333333H192C197.8986666666667 53.3333333333333 202.6666666666667 58.112 202.6666666666667 64V192C202.6666666666667 197.888 197.8986666666667 202.6666666666667 192 202.6666666666667zM53.3333333333333 256H74.6666666666667V224H53.3333333333333V256zM2.377e-10 181.3333333311942L1.1884e-9 202.6666666645275L32.0000000011884 202.6666666631015L32.0000000002377 181.3333333297681L2.377e-10 181.3333333311942zM202.6666666666667 224.0000000081637L181.3333333333334 224.0000000091241L181.333333334774 256.0000000091241L202.6666666681073 256.0000000081636L202.6666666666667 224.0000000081637zM224 181.3333333333333L224 202.6666666666666L256 202.6666666666666L256 181.3333333333333L224 181.3333333333333zM53.3333333333333 32H74.6666666666667V0H53.3333333333333V32zM32.0000000002377 74.6666666588232L32.0000000011884 53.3333333254899L1.1884e-9 53.3333333240638L2.377e-10 74.6666666573971L32.0000000002377 74.6666666588232zM202.6666666565822 -8.1636e-9L181.3333333232489 -9.1241e-9L181.3333333218083 31.999999990876L202.6666666551416 31.9999999918364L202.6666666565822 -8.1636e-9zM256 74.6666666666667L256 53.3333333333334L224 53.3333333333334L224 74.6666666666667L256 74.6666666666667z" />
298
- <glyph glyph-name="astronaut"
299
- unicode="&#xEA61;"
300
- horiz-adv-x="256" d="M138.6666666666667 223.5626666666667V245.3333333333334C138.6666666666667 251.2213333333334 133.888 256 128 256S117.3333333333333 251.2213333333334 117.3333333333333 245.3333333333334V223.5626666666667C63.936 219.1893333333333 10.6666666666667 181.184 10.6666666666667 85.3333333333333C10.6666666666667 22.3466666666667 73.8773333333333 0 128 0S245.3333333333333 22.3466666666667 245.3333333333333 85.3333333333333C245.3333333333333 181.184 192.064 219.1893333333333 138.6666666666667 223.5626666666667zM128 53.3333333333333C88.64 53.3333333333333 42.6666666666667 67.3066666666667 42.6666666666667 106.6666666666667C42.6666666666667 162.688 85.5893333333333 192 128 192C169.3653333333333 192 213.3333333333333 162.0906666666667 213.3333333333333 106.6666666666667C213.3333333333333 67.3066666666667 167.36 53.3333333333333 128 53.3333333333333z" />
301
- <glyph glyph-name="at-sign"
302
- unicode="&#xEA62;"
303
- horiz-adv-x="256" d="M256 141.8666666666667A113.99466666666666 113.99466666666666 0 0 0 248.7893333333334 100.608C239.8293333333333 77.3973333333333 222.5386666666667 60.608 197.8346666666667 60.608A35.349333333333334 35.349333333333334 0 0 0 164.4373333333333 80.8106666666667A65.06666666666666 65.06666666666666 0 0 0 118.8266666666667 60.608A57.728 57.728 0 0 0 75.0933333333333 77.28C53.664 99.68 51.872 149.0026666666667 80.1066666666667 176.1493333333334C103.0613333333333 198.2186666666667 133.0986666666667 198.8053333333333 164.6826666666667 193.7706666666667A163.02933333333334 163.02933333333334 0 0 0 191.4133333333333 187.584L187.808 111.0186666666667Q187.808 89.2586666666667 199.7226666666667 89.2586666666667Q209.7493333333333 89.2586666666667 215.7226666666667 103.904A103.072 103.072 0 0 1 221.6853333333333 142.176A91.904 91.904 0 0 1 211.2 186.6666666666667A78.93333333333334 78.93333333333334 0 0 1 138.144 226.3573333333334A111.328 111.328 0 0 1 83.0826666666667 213.408C49.3973333333333 194.656 34.8053333333333 158.5173333333334 34.8053333333333 119.3066666666667A89.59999999999998 89.59999999999998 0 0 1 57.9306666666667 53.0133333333334C91.5946666666667 19.36 156.064 27.968 200.6613333333333 44.32V14.2506666666667A188.72533333333337 188.72533333333337 0 0 0 126.1973333333333 0Q66.624 0 33.312 31.3173333333333T0 118.4A133.25866666666667 133.25866666666667 0 0 0 65.4506666666667 238.0693333333334A143.49866666666668 143.49866666666668 0 0 0 137.8026666666667 256C180.4693333333333 256 220.2133333333333 238.9333333333334 241.2693333333333 201.824A119.55200000000002 119.55200000000002 0 0 0 256 141.8666666666667zM95.4773333333333 122.2826666666667Q95.4773333333333 89.216 122.4426666666667 89.216C145.3333333333334 89.216 151.2426666666667 108.608 152.8533333333333 131.4986666666667L154.8906666666667 166.0906666666667A85.42933333333333 85.42933333333333 0 0 1 136.864 167.8293333333334C109.4613333333333 167.8506666666667 95.4773333333333 149.1413333333333 95.4773333333333 122.2826666666667z" />
304
- <glyph glyph-name="atm"
305
- unicode="&#xEA63;"
306
- horiz-adv-x="256" d="M245.3333333333333 21.3333333333333H234.6666666666667V224C234.6666666666667 241.6426666666667 220.3093333333333 256 202.6666666666667 256H53.3333333333333C35.6906666666667 256 21.3333333333333 241.6426666666667 21.3333333333333 224V21.3333333333333H10.6666666666667C4.7786666666667 21.3333333333333 0 16.5653333333333 0 10.6666666666667S4.7786666666667 0 10.6666666666667 0H245.3333333333333C251.2213333333333 0 256 4.768 256 10.6666666666667S251.2213333333333 21.3333333333333 245.3333333333333 21.3333333333333zM192 85.3333333333333H64V106.6666666666667H192V85.3333333333333zM192 149.3333333333334C192 143.4346666666667 187.2213333333334 138.6666666666667 181.3333333333334 138.6666666666667H74.6666666666667C68.7786666666667 138.6666666666667 64 143.4346666666667 64 149.3333333333334V202.6666666666667C64 208.5653333333334 68.7786666666667 213.3333333333334 74.6666666666667 213.3333333333334H181.3333333333333C187.2213333333333 213.3333333333334 192 208.5653333333334 192 202.6666666666667V149.3333333333334z" />
307
- <glyph glyph-name="atom"
308
- unicode="&#xEA64;"
309
- horiz-adv-x="256" d="M235.7973333333334 197.0133333333333C229.6106666666667 206.6666666666667 214.784 216.5013333333333 179.264 208.5546666666667C176.5546666666667 207.9466666666667 173.7706666666667 207.2213333333334 170.9546666666667 206.432C162.1226666666667 235.6053333333334 147.7013333333333 256 128 256C109.8026666666667 256 94.7946666666667 238.3786666666667 85.0986666666667 206.336C57.1413333333333 214.208 31.2426666666667 214.272 20.2133333333333 197.0133333333333C14.0266666666667 187.3493333333333 11.2853333333333 169.76 33.3866666666667 140.8426666666667C36.64 136.5866666666667 40.352 132.2986666666667 44.3413333333333 128C40.352 123.7013333333334 36.64 119.4133333333333 33.3866666666667 115.1466666666667C11.2853333333333 86.2293333333333 14.0266666666667 68.64 20.2133333333333 58.976C26.3786666666667 49.344 37.7173333333333 44.4906666666667 53.312 44.4906666666667C62.4746666666667 44.4906666666667 73.1413333333333 46.208 85.0666666666667 49.568C93.472 21.6533333333334 107.3813333333333 0 128 0C147.7013333333334 0 162.1226666666667 20.3946666666667 170.9653333333333 49.5786666666667C173.7813333333333 48.7893333333333 176.5546666666667 48.064 179.2746666666667 47.456C199.4133333333333 42.944 224.7253333333333 41.6533333333333 235.7973333333333 58.9973333333333C246.3893333333333 75.5306666666667 237.5786666666667 99.7546666666667 211.4133333333333 127.712C233.8666666666667 151.6693333333333 247.9893333333333 177.9733333333333 235.7973333333334 197.0133333333333zM217.8346666666667 185.5146666666667C222.5386666666667 178.1653333333333 211.5093333333333 155.008 181.3333333333333 128.192C181.3226666666666 147.9466666666667 179.5413333333333 167.7653333333333 176.0426666666667 185.696C185.952 188.5226666666667 212.2986666666666 194.144 217.8346666666667 185.5146666666667zM74.8586666666667 128C97.76 148.288 127.392 166.9546666666667 155.6053333333333 178.528C161.2906666666667 147.6586666666667 161.632 110.2293333333333 155.6053333333333 77.472C127.4133333333333 89.0346666666667 97.7813333333333 107.7013333333333 74.8586666666667 128zM128 234.6666666666667C134.9973333333333 234.6666666666667 143.9573333333334 221.76 150.6133333333334 199.5413333333334C143.2213333333333 196.6186666666667 135.6373333333333 193.1626666666667 128 189.312C120.672 192.992 113.024 196.4373333333334 105.28 199.4773333333334C112.9173333333333 224.992 122.752 234.6666666666667 128 234.6666666666667zM38.176 185.5146666666667C42.7626666666667 192.704 68.3306666666667 192.5226666666667 105.12 176.5226666666667C88.3626666666667 166.272 73.504 155.392 59.584 142.9226666666667C51.6693333333333 151.52 32 175.8933333333334 38.176 185.5146666666667zM38.1653333333333 70.4853333333334C32.0106666666667 80.1066666666667 51.648 104.4586666666667 59.584 113.0773333333334C64.704 108.4906666666667 70.1653333333333 103.968 75.9146666666667 99.5413333333333C76.768 89.8666666666667 78.1013333333333 80 79.9893333333333 70.368C54.3893333333333 63.04 40.992 66.1013333333333 38.1653333333333 70.4853333333334zM128 21.3333333333333C119.2746666666667 21.3333333333333 105.696 43.1146666666667 99.392 82.9973333333333C116.5013333333333 72.0533333333333 134.0053333333334 63.0186666666667 150.6133333333333 56.4586666666667C143.9573333333334 34.24 134.9973333333333 21.3333333333333 128 21.3333333333333zM217.824 70.4853333333334C212.32 61.824 185.92 67.488 176.0426666666667 70.2933333333334C177.856 79.6053333333334 179.1573333333333 89.44 180.0426666666667 99.488C185.504 103.7013333333334 190.9226666666667 108.1706666666667 196.1493333333333 112.8533333333334C217.1093333333333 90.3253333333333 220.9386666666667 75.3386666666667 217.824 70.4853333333334zM117.3333333333333 128A10.666666666666666 10.666666666666666 0 0 1 138.6666666666667 128A10.666666666666666 10.666666666666666 0 0 1 117.3333333333333 128" />
310
- <glyph glyph-name="attach-86"
311
- unicode="&#xEA65;"
312
- horiz-adv-x="256" d="M122.6666666666667 0C78.9333333333333 0 42.6666666666667 36.2666666666667 42.6666666666667 80V197.3333333333333C42.6666666666667 229.3333333333334 69.3333333333333 256 101.3333333333333 256S160 229.3333333333334 160 197.3333333333334V90.6666666666667C160 70.4 142.9333333333333 53.3333333333334 122.6666666666667 53.3333333333334S85.3333333333333 70.4 85.3333333333333 90.6666666666667V181.3333333333334C85.3333333333333 187.7333333333334 89.6 192 96 192S106.6666666666667 187.7333333333334 106.6666666666667 181.3333333333334V90.6666666666667C106.6666666666667 82.1333333333334 114.1333333333334 74.6666666666667 122.6666666666667 74.6666666666667S138.6666666666667 82.1333333333334 138.6666666666667 90.6666666666667V197.3333333333334C138.6666666666667 217.6 121.6 234.6666666666667 101.3333333333333 234.6666666666667S64 217.6 64 197.3333333333334V80C64 48 90.6666666666667 21.3333333333333 122.6666666666667 21.3333333333333S181.3333333333333 48 181.3333333333333 80V213.3333333333334C181.3333333333333 219.7333333333334 185.6 224 192 224S202.6666666666666 219.7333333333334 202.6666666666666 213.3333333333334V80C202.6666666666667 36.2666666666667 166.4 0 122.6666666666667 0z" />
313
- <glyph glyph-name="attach-87"
314
- unicode="&#xEA66;"
315
- horiz-adv-x="256" d="M90.6666666666667 9.6C70.4 9.6 50.1333333333333 17.0666666666667 34.1333333333333 33.0666666666667C19.2 48 10.6666666666667 68.2666666666667 10.6666666666667 89.6C10.6666666666667 110.9333333333334 19.2 131.2 34.1333333333333 146.1333333333334L117.3333333333333 229.3333333333334C139.7333333333333 251.7333333333334 177.0666666666667 251.7333333333334 200.5333333333333 229.3333333333334S222.9333333333333 169.6 200.5333333333333 146.1333333333334L124.8 70.4C109.8666666666667 55.4666666666667 86.4 55.4666666666667 71.4666666666667 70.4C56.5333333333333 85.3333333333334 56.5333333333333 108.8 71.4666666666667 123.7333333333334L135.4666666666667 187.7333333333334C139.7333333333333 192 146.1333333333333 192 150.4 187.7333333333334S154.6666666666667 177.0666666666667 150.4 172.8L86.4 108.8C80 102.4 80 92.8 86.4 86.4C92.8 80 102.4 80 108.8 86.4L184.5333333333333 162.1333333333333C192 169.6 195.2 178.1333333333333 195.2 188.8C195.2 198.4 190.9333333333333 208 184.5333333333333 215.4666666666667C169.6 230.4 146.1333333333333 230.4 132.2666666666667 215.4666666666667L49.0666666666667 132.2666666666667C38.4 121.6 32 106.6666666666667 32 90.6666666666667C32 74.6666666666667 38.4 60.8 49.0666666666667 49.0666666666667C71.4666666666667 26.6666666666667 108.8 26.6666666666667 132.2666666666667 49.0666666666667L226.1333333333334 142.9333333333333C230.4 147.2 236.8 147.2 241.0666666666667 142.9333333333333S245.3333333333334 132.2666666666667 241.0666666666667 128L147.2 34.1333333333333C132.2666666666667 17.0666666666667 112 9.6 90.6666666666667 9.6z" />
316
- <glyph glyph-name="aubergine"
317
- unicode="&#xEA67;"
318
- horiz-adv-x="256" d="M163.5413333333334 159.2213333333334A123.28533333333337 123.28533333333337 0 0 0 117.4506666666667 180.864A171.97866666666667 171.97866666666667 0 0 0 46.8266666666667 131.7973333333334A63.87200000000001 63.87200000000001 0 0 1 64 6.4C116.6826666666667 6.4 165.568 58.6666666666667 194.912 101.9093333333334A120.77866666666665 120.77866666666665 0 0 0 163.5413333333334 159.2213333333334zM245.3333333333333 241.0666666666667A49.120000000000005 49.120000000000005 0 0 1 213.6106666666667 227.3706666666667A74.42133333333334 74.42133333333334 0 0 1 120.8853333333333 222.0373333333333A10.666666666666666 10.666666666666666 0 0 1 119.9573333333333 207.104A100.09600000000002 100.09600000000002 0 0 1 181.9733333333333 177.6533333333333A100.02133333333333 100.02133333333333 0 0 1 211.36 115.648A10.666666666666666 10.666666666666666 0 0 1 226.2933333333333 116.576A74.46400000000001 74.46400000000001 0 0 1 229.1306666666667 212.576A27.21066666666667 27.21066666666667 0 0 0 245.3333333333333 219.7333333333334A10.666666666666666 10.666666666666666 0 0 1 245.3333333333333 241.0666666666667z" />
319
- <glyph glyph-name="audio-91"
320
- unicode="&#xEA68;"
321
- horiz-adv-x="256" d="M128 85.3333333333333C163.2 85.3333333333333 192 114.1333333333334 192 149.3333333333334V192C192 227.2 163.2 256 128 256S64 227.2 64 192V149.3333333333334C64 114.1333333333333 92.8 85.3333333333333 128 85.3333333333333zM234.6666666666667 149.3333333333334C234.6666666666667 155.7333333333334 230.4 160 224 160S213.3333333333334 155.7333333333334 213.3333333333334 149.3333333333334C213.3333333333334 102.4 174.9333333333333 64 128 64S42.6666666666667 102.4 42.6666666666667 149.3333333333333C42.6666666666667 155.7333333333334 38.4 160 32 160S21.3333333333333 155.7333333333334 21.3333333333333 149.3333333333333C21.3333333333333 93.8666666666667 64 49.0666666666667 117.3333333333334 43.7333333333334V21.3333333333333H74.6666666666667C68.2666666666667 21.3333333333333 64 17.0666666666667 64 10.6666666666667S68.2666666666667 0 74.6666666666667 0H181.3333333333333C187.7333333333333 0 192 4.2666666666667 192 10.6666666666667S187.7333333333333 21.3333333333333 181.3333333333333 21.3333333333333H138.6666666666667V43.7333333333334C192 49.0666666666667 234.6666666666667 93.8666666666667 234.6666666666667 149.3333333333334z" />
322
- <glyph glyph-name="audio-92"
323
- unicode="&#xEA69;"
324
- horiz-adv-x="256" d="M234.6666666666667 149.3333333333334C234.6666666666667 155.232 229.888 160 224 160S213.3333333333334 155.232 213.3333333333334 149.3333333333334C213.3333333333334 102.2826666666667 175.0506666666667 64 128 64S42.6666666666667 102.2826666666667 42.6666666666667 149.3333333333333C42.6666666666667 155.232 37.888 160 32 160S21.3333333333333 155.232 21.3333333333333 149.3333333333333C21.3333333333333 94.1226666666667 63.5093333333334 48.576 117.3333333333334 43.2106666666667V21.3333333333333H74.6666666666667C68.7786666666667 21.3333333333333 64 16.5653333333333 64 10.6666666666667S68.7786666666667 0 74.6666666666667 0H181.3333333333333C187.2213333333333 0 192 4.768 192 10.6666666666667S187.2213333333333 21.3333333333333 181.3333333333333 21.3333333333333H138.6666666666667V43.2106666666667C192.4906666666667 48.576 234.6666666666667 94.1226666666667 234.6666666666667 149.3333333333334zM160 160V181.3333333333334H192V192C192 227.296 163.296 256 128 256S64 227.296 64 192V181.3333333333333H96V160H64V149.3333333333333C64 114.0373333333333 92.704 85.3333333333333 128 85.3333333333333S192 114.0373333333333 192 149.3333333333333V160H160z" />
325
- <glyph glyph-name="audio"
326
- unicode="&#xEA6A;"
327
- horiz-adv-x="256" d="M234.6666666666667 256H21.3333333333333C15.4453333333333 256 10.6666666666667 251.2213333333334 10.6666666666667 245.3333333333334V10.6666666666667C10.6666666666667 4.7786666666667 15.4453333333333 0 21.3333333333333 0H234.6666666666667C240.5546666666667 0 245.3333333333333 4.7786666666667 245.3333333333333 10.6666666666667V245.3333333333334C245.3333333333333 251.2213333333334 240.5546666666667 256 234.6666666666667 256zM181.3333333333333 64L117.3333333333333 106.6666666666667H85.3333333333333C79.4453333333333 106.6666666666667 74.6666666666667 111.4453333333333 74.6666666666667 117.3333333333333V138.6666666666666C74.6666666666667 144.5546666666667 79.4453333333333 149.3333333333333 85.3333333333333 149.3333333333333H117.3333333333333L181.3333333333333 192V64z" />
328
- <glyph glyph-name="avocado"
329
- unicode="&#xEA6B;"
330
- horiz-adv-x="256" d="M197.6853333333334 141.6A134.94400000000002 134.94400000000002 0 0 0 181.3333333333333 202.6666666666667A53.33333333333333 53.33333333333333 0 0 1 74.6666666666667 202.6666666666667A134.94400000000002 134.94400000000002 0 0 0 58.3146666666667 141.6A127.8826666666667 127.8826666666667 0 0 1 42.6666666666667 85.3333333333333A85.33333333333333 85.33333333333333 0 0 1 213.3333333333333 85.3333333333333A127.8826666666667 127.8826666666667 0 0 1 197.6853333333334 141.6zM128 53.3333333333333A32 32 0 1 0 160 85.3333333333333A32 32 0 0 0 128 53.3333333333333z" />
331
- <glyph glyph-name="award-48"
332
- unicode="&#xEA6C;"
333
- horiz-adv-x="256" d="M42.1333333333333 107.648L1.3333333333333 26.6666666666667L59.296 41.152L85.3333333333333 0L116.6933333333333 64.6186666666667C86.1226666666667 67.8506666666667 59.4666666666667 84.1066666666667 42.1333333333333 107.648zM213.8666666666667 107.648L254.6666666666667 26.6666666666667L196.704 41.152L170.6666666666667 0L139.3066666666667 64.6186666666667C169.8773333333333 67.8506666666667 196.5333333333333 84.1066666666667 213.8666666666667 107.648zM128 256C80.9493333333333 256 42.6666666666667 217.7173333333333 42.6666666666667 170.6666666666667S80.9493333333333 85.3333333333333 128 85.3333333333333S213.3333333333333 123.616 213.3333333333333 170.6666666666667S175.0506666666667 256 128 256zM128 149.3333333333334C116.2133333333334 149.3333333333334 106.6666666666667 158.88 106.6666666666667 170.6666666666667C106.6666666666667 182.4533333333333 116.2133333333334 192 128 192S149.3333333333334 182.4533333333333 149.3333333333334 170.6666666666667C149.3333333333333 158.88 139.7866666666667 149.3333333333334 128 149.3333333333334z" />
334
- <glyph glyph-name="award-49"
335
- unicode="&#xEA6D;"
336
- horiz-adv-x="256" d="M0 245.3333333333334V42.6666666666667C0 36.7786666666667 4.7786666666667 32 10.6666666666667 32H149.3333333333333V76.0106666666667C135.6586666666667 89.8986666666667 128 108.32 128 128C128 169.1733333333334 161.504 202.6666666666667 202.6666666666666 202.6666666666667V245.3333333333334C202.6666666666666 251.2213333333334 197.888 256 192 256H10.6666666666667C4.7786666666667 256 0 251.2213333333334 0 245.3333333333334zM85.3333333333333 85.3333333333333H42.6666666666667V106.6666666666667H85.3333333333333V85.3333333333333zM85.3333333333333 138.6666666666667H42.6666666666667V160H85.3333333333333V138.6666666666667zM117.3333333333333 192H42.6666666666667V213.3333333333334H117.3333333333333V192zM202.6666666666667 53.3333333333333C191.2106666666667 53.3333333333333 180.384 56.0106666666667 170.6666666666667 60.64V0L202.6666666666667 21.3333333333333L234.6666666666667 0V60.64C224.9493333333333 56.0106666666667 214.1226666666667 53.3333333333333 202.6666666666667 53.3333333333333zM149.3333333333333 128A53.33333333333333 53.33333333333333 0 0 1 256 128A53.33333333333333 53.33333333333333 0 0 1 149.3333333333333 128" />
337
- <glyph glyph-name="award-55"
338
- unicode="&#xEA6E;"
339
- horiz-adv-x="256" d="M253.664 198.6666666666667L210.9973333333333 252C208.9706666666667 254.528 205.9093333333333 256 202.6666666666667 256H53.3333333333333C50.0906666666667 256 47.0293333333333 254.528 45.0026666666667 252L2.336 198.6666666666667C-0.704 194.8693333333334 -0.7893333333333 189.4933333333334 2.1333333333333 185.6L58.0053333333333 111.0933333333334C55.04 103.0506666666667 53.3333333333333 94.4 53.3333333333333 85.3333333333333C53.3333333333333 44.1706666666667 86.8266666666667 10.6666666666667 128 10.6666666666667S202.6666666666666 44.1706666666667 202.6666666666666 85.3333333333333C202.6666666666666 94.4 200.96 103.0613333333334 197.984 111.104L253.8666666666667 185.6C256.7893333333334 189.4933333333334 256.704 194.8693333333334 253.664 198.6666666666667zM158.432 202.6666666666667L128 160.8L97.6533333333333 202.6666666666667H158.432zM24.16 191.7866666666667L52.9386666666667 227.7546666666667L104.9066666666667 156.2986666666667C90.7306666666667 151.6693333333334 78.4426666666667 142.912 69.408 131.456L24.16 191.7866666666667zM186.592 131.4666666666667C177.5573333333333 142.9226666666667 165.2586666666667 151.68 151.0933333333333 156.3093333333334L203.0613333333333 227.7653333333334L231.84 191.7973333333334L186.592 131.4666666666667z" />
340
- <glyph glyph-name="award-74"
341
- unicode="&#xEA6F;"
342
- horiz-adv-x="256" d="M21.3333333333333 192H213.3333333333334V181.3333333333333H234.6666666666667V202.6666666666667C234.6666666666667 208.5653333333334 229.8880000000001 213.3333333333334 224 213.3333333333334H194.8266666666667L122.6240000000001 254.592C119.3386666666667 256.4693333333334 115.3173333333334 256.4693333333334 112.0426666666667 254.592L39.84 213.3333333333334H10.6666666666667C4.7786666666667 213.3333333333334 0 208.5653333333334 0 202.6666666666667V53.3333333333334C0 47.4346666666667 4.7786666666667 42.6666666666667 10.6666666666667 42.6666666666667H149.3333333333333V64.0000000000001H21.3333333333333V192zM117.3333333333333 233.056L151.84 213.3333333333334H82.8266666666667L117.3333333333333 233.056zM42.6666666666667 160H138.6666666666667V138.6666666666667H42.6666666666667V160zM42.6666666666667 117.3333333333334H106.6666666666667V96H42.6666666666667V117.3333333333334zM170.6666666666667 49.9733333333333V0L202.6666666666667 21.3333333333333L234.6666666666667 0V49.9733333333333C224.9493333333333 45.344 214.1226666666667 42.6666666666667 202.6666666666667 42.6666666666667S180.384 45.344 170.6666666666667 49.9733333333333zM149.3333333333333 117.3333333333334A53.33333333333333 53.33333333333333 0 0 1 256 117.3333333333334A53.33333333333333 53.33333333333333 0 0 1 149.3333333333333 117.3333333333334" />
343
- <glyph glyph-name="award"
344
- unicode="&#xEA70;"
345
- horiz-adv-x="256" d="M128 64C103.9786666666667 64 81.856 72.0853333333333 64 85.536V0L128 32L192 0V85.536C174.144 72.0853333333333 152.0213333333333 64 128 64zM42.6666666666667 170.6666666666667A85.33333333333333 85.33333333333333 0 0 1 213.3333333333333 170.6666666666667A85.33333333333333 85.33333333333333 0 0 1 42.6666666666667 170.6666666666667" />
346
- <glyph glyph-name="axe"
347
- unicode="&#xEA71;"
348
- horiz-adv-x="256" d="M217.7493333333334 36.416L146.848 107.3173333333334L212.544 148.3733333333333L213.1626666666667 153.4186666666667C213.3333333333334 154.7306666666667 216.6826666666667 185.8773333333334 179.9573333333334 222.6026666666667C143.2426666666667 259.3173333333334 112.1493333333334 255.9573333333334 110.7733333333333 255.8186666666667L105.7066666666667 255.2106666666667L64.6506666666667 189.5146666666667L47.0826666666667 207.0826666666667C38.752 215.4133333333333 25.248 215.4133333333333 16.9173333333333 207.0826666666667C8.5866666666667 198.752 8.5866666666667 185.248 16.9173333333333 176.9173333333334L41.4506666666667 152.384L23.104 123.0293333333334L80.352 65.7706666666667L109.7173333333333 84.1173333333333L187.584 6.2506666666667C195.9146666666667 -2.08 209.4186666666667 -2.08 217.7493333333334 6.2506666666667C226.08 14.5813333333334 226.08 28.0853333333333 217.7493333333334 36.416zM50.1866666666667 126.1013333333334L117.8986666666667 234.4426666666667C125.9626666666667 233.4933333333334 143.5413333333333 228.8426666666667 164.864 207.5306666666667C186.176 186.208 190.8373333333333 168.6293333333333 191.776 160.5653333333334L83.4346666666667 92.8533333333334L50.1866666666667 126.1013333333334z" />
349
- <glyph glyph-name="b-add"
350
- unicode="&#xEA72;"
351
- horiz-adv-x="256" d="M105.4293333333333 58.6773333333334C96.2453333333333 65.9733333333333 80.672 74.6666666666667 58.6666666666667 74.6666666666667S21.088 65.9733333333334 11.9146666666667 58.688C4.3413333333333 52.6826666666667 0 43.5946666666667 0 33.7493333333334V10.6666666666667H117.3333333333333V33.7493333333334C117.3333333333333 43.5946666666667 112.992 52.6826666666667 105.4293333333333 58.6773333333334zM21.3333333333333 122.6666666666667A37.33333333333334 37.33333333333334 0 0 1 96 122.6666666666667A37.33333333333334 37.33333333333334 0 0 1 21.3333333333333 122.6666666666667M244.096 58.6773333333334C234.912 65.9733333333333 219.3386666666667 74.6666666666667 197.3333333333333 74.6666666666667S159.7546666666667 65.9733333333334 150.5813333333333 58.688C143.008 52.6826666666667 138.6666666666667 43.5946666666667 138.6666666666667 33.7493333333334V10.6666666666667H256V33.7493333333334C256 43.5946666666667 251.6586666666667 52.6826666666667 244.096 58.6773333333334zM160 122.6666666666667A37.33333333333334 37.33333333333334 0 0 1 234.6666666666667 122.6666666666667A37.33333333333334 37.33333333333334 0 0 1 160 122.6666666666667M138.6666666666667 160L138.6666666666667 192L170.6666666666667 192L170.6666666666667 213.3333333333334L138.6666666666667 213.3333333333334L138.6666666666667 245.3333333333334L117.3333333333333 245.3333333333334L117.3333333333333 213.3333333333334L85.3333333333333 213.3333333333334L85.3333333333333 192L117.3333333333333 192L117.3333333333333 160z" />
352
- <glyph glyph-name="b-check"
353
- unicode="&#xEA73;"
354
- horiz-adv-x="256" d="M170.6666666666667 249.7493333333334L117.3333333333333 196.416L96 217.7493333333334L80.9173333333333 202.6666666666667L117.3333333333333 166.2506666666667L185.7493333333334 234.6666666666667zM105.4293333333333 48.0106666666667C96.2453333333333 55.3066666666667 80.672 64 58.6666666666667 64S21.088 55.3066666666667 11.9146666666667 48.0213333333333C4.3413333333333 42.016 0 32.9386666666667 0 23.0826666666667V0H117.3333333333333V23.0826666666667C117.3333333333333 32.9386666666667 112.992 42.016 105.4293333333333 48.0106666666667zM21.3333333333333 112A37.33333333333334 37.33333333333334 0 0 1 96 112A37.33333333333334 37.33333333333334 0 0 1 21.3333333333333 112M244.096 48.0106666666667C234.912 55.3066666666667 219.3386666666667 64 197.3333333333333 64S159.7546666666667 55.3066666666667 150.5813333333333 48.0213333333333C143.008 42.016 138.6666666666667 32.9386666666667 138.6666666666667 23.0826666666667V0H256V23.0826666666667C256 32.9386666666667 251.6586666666667 42.016 244.096 48.0106666666667zM160 112A37.33333333333334 37.33333333333334 0 0 1 234.6666666666667 112A37.33333333333334 37.33333333333334 0 0 1 160 112" />
355
- <glyph glyph-name="b-location"
356
- unicode="&#xEA74;"
357
- horiz-adv-x="256" d="M128 256C101.7813333333333 256 74.6666666666667 236.7786666666667 74.6666666666667 204.6186666666667C74.6666666666667 175.648 115.936 135.4346666666667 120.64 130.944L128 123.9253333333334L135.36 130.9546666666667C140.064 135.4346666666667 181.3333333333333 175.648 181.3333333333333 204.6186666666667C181.3333333333333 236.7786666666667 154.2186666666667 256 128 256zM128 181.3333333333334C116.2133333333334 181.3333333333334 106.6666666666667 190.8906666666667 106.6666666666667 202.6666666666667C106.6666666666667 214.4533333333333 116.2133333333334 224 128 224S149.3333333333334 214.4533333333333 149.3333333333334 202.6666666666667C149.3333333333333 190.8906666666667 139.7866666666667 181.3333333333334 128 181.3333333333334zM105.4293333333333 48.0106666666667C96.2453333333333 55.3066666666667 80.672 64 58.6666666666667 64S21.088 55.3066666666667 11.9146666666667 48.0213333333333C4.3413333333333 42.016 0 32.928 0 23.0826666666667V0H117.3333333333333V23.0826666666667C117.3333333333333 32.928 112.992 42.016 105.4293333333333 48.0106666666667zM21.3333333333333 112A37.33333333333334 37.33333333333334 0 0 1 96 112A37.33333333333334 37.33333333333334 0 0 1 21.3333333333333 112M244.096 48.0106666666667C234.912 55.3066666666667 219.3386666666667 64 197.3333333333333 64S159.7546666666667 55.3066666666667 150.5813333333333 48.0213333333333C143.008 42.016 138.6666666666667 32.928 138.6666666666667 23.0826666666667V0H256V23.0826666666667C256 32.928 251.6586666666667 42.016 244.096 48.0106666666667zM160 112A37.33333333333334 37.33333333333334 0 0 1 234.6666666666667 112A37.33333333333334 37.33333333333334 0 0 1 160 112" />
358
- <glyph glyph-name="b-love"
359
- unicode="&#xEA75;"
360
- horiz-adv-x="256" d="M105.4293333333333 48.0106666666667C96.2453333333333 55.3066666666667 80.672 64 58.6666666666667 64S21.088 55.3066666666667 11.9146666666667 48.0213333333333C4.3413333333333 42.016 0 32.928 0 23.0826666666667V0H117.3333333333333V23.0826666666667C117.3333333333333 32.928 112.992 42.016 105.4293333333333 48.0106666666667zM21.3333333333333 112A37.33333333333334 37.33333333333334 0 0 1 96 112A37.33333333333334 37.33333333333334 0 0 1 21.3333333333333 112M244.096 48.0106666666667C234.912 55.3066666666667 219.3386666666667 64 197.3333333333333 64S159.7546666666667 55.3066666666667 150.5813333333333 48.0213333333333C143.008 42.016 138.6666666666667 32.928 138.6666666666667 23.0826666666667V0H256V23.0826666666667C256 32.928 251.6586666666667 42.016 244.096 48.0106666666667zM160 112A37.33333333333334 37.33333333333334 0 0 1 234.6666666666667 112A37.33333333333334 37.33333333333334 0 0 1 160 112M181.3333333333333 222.3466666666667C181.3333333333333 231.3706666666667 177.7813333333333 239.84 171.3386666666667 246.1866666666667V246.1973333333334C164.1066666666667 253.3333333333334 154.144 256.9066666666667 143.9786666666667 255.8186666666667C138.144 255.2426666666667 132.672 253.2053333333334 128 249.984C123.328 253.216 117.856 255.2426666666667 112.0213333333333 255.8293333333333C101.8346666666667 256.896 91.8826666666667 253.3226666666667 84.6613333333333 246.1866666666667C78.2186666666667 239.8293333333333 74.6666666666667 231.36 74.6666666666667 222.3466666666667S78.2186666666667 204.8533333333334 84.6613333333333 198.5066666666667L128 155.68L171.3493333333333 198.5066666666667C177.7813333333334 204.8533333333334 181.3333333333333 213.3226666666667 181.3333333333333 222.3466666666667z" />
361
- <glyph glyph-name="b-meeting"
362
- unicode="&#xEA76;"
363
- horiz-adv-x="256" d="M245.3333333333333 256H117.3333333333333C111.4453333333333 256 106.6666666666667 251.2213333333334 106.6666666666667 245.3333333333334V128L160 170.6666666666667H245.3333333333333C251.2213333333333 170.6666666666667 256 175.4453333333334 256 181.3333333333333V245.3333333333334C256 251.2213333333334 251.2213333333333 256 245.3333333333333 256zM105.4293333333333 48.0106666666667C96.2453333333333 55.3066666666667 80.672 64 58.6666666666667 64S21.088 55.3066666666667 11.9146666666667 48.0213333333333C4.3413333333333 42.016 0 32.9386666666667 0 23.0826666666667V0H117.3333333333333V23.0826666666667C117.3333333333333 32.9386666666667 112.992 42.016 105.4293333333333 48.0106666666667zM21.3333333333333 112A37.33333333333334 37.33333333333334 0 0 1 96 112A37.33333333333334 37.33333333333334 0 0 1 21.3333333333333 112M244.096 48.0106666666667C234.912 55.3066666666667 219.3386666666667 64 197.3333333333333 64S159.7546666666667 55.3066666666667 150.5813333333333 48.0213333333333C143.008 42.016 138.6666666666667 32.9386666666667 138.6666666666667 23.0826666666667V0H256V23.0826666666667C256 32.9386666666667 251.6586666666667 42.016 244.096 48.0106666666667zM160 112A37.33333333333334 37.33333333333334 0 0 1 234.6666666666667 112A37.33333333333334 37.33333333333334 0 0 1 160 112" />
364
- <glyph glyph-name="b-remove"
365
- unicode="&#xEA77;"
366
- horiz-adv-x="256" d="M105.4293333333333 58.6773333333334C96.2453333333333 65.9733333333333 80.672 74.6666666666667 58.6666666666667 74.6666666666667S21.088 65.9733333333334 11.9146666666667 58.688C4.3413333333333 52.6826666666667 0 43.5946666666667 0 33.7493333333334V10.6666666666667H117.3333333333333V33.7493333333334C117.3333333333333 43.5946666666667 112.992 52.6826666666667 105.4293333333333 58.6773333333334zM21.3333333333333 122.6666666666667A37.33333333333334 37.33333333333334 0 0 1 96 122.6666666666667A37.33333333333334 37.33333333333334 0 0 1 21.3333333333333 122.6666666666667M244.096 58.6773333333334C234.912 65.9733333333333 219.3386666666667 74.6666666666667 197.3333333333333 74.6666666666667S159.7546666666667 65.9733333333334 150.5813333333333 58.688C143.008 52.6826666666667 138.6666666666667 43.5946666666667 138.6666666666667 33.7493333333334V10.6666666666667H256V33.7493333333334C256 43.5946666666667 251.6586666666667 52.6826666666667 244.096 58.6773333333334zM160 122.6666666666667A37.33333333333334 37.33333333333334 0 0 1 234.6666666666667 122.6666666666667A37.33333333333334 37.33333333333334 0 0 1 160 122.6666666666667M85.3333333333333 213.3333333333334H170.6666666666667V192H85.3333333333333V213.3333333333333z" />
367
- <glyph glyph-name="b-security"
368
- unicode="&#xEA78;"
369
- horiz-adv-x="256" d="M105.4293333333333 58.6773333333334C96.2453333333333 65.9733333333333 80.672 74.6666666666667 58.6666666666667 74.6666666666667S21.088 65.9733333333334 11.9146666666667 58.688C4.3413333333333 52.6826666666667 0 43.5946666666667 0 33.7493333333334V10.6666666666667H117.3333333333333V33.7493333333334C117.3333333333333 43.5946666666667 112.992 52.6826666666667 105.4293333333333 58.6773333333334zM85.3333333333333 106.6666666666667C67.6906666666667 106.6666666666667 53.3333333333333 121.024 53.3333333333333 138.6666666666667V159.456C35.2853333333333 156.8426666666667 21.3333333333333 141.4186666666667 21.3333333333333 122.6666666666667C21.3333333333333 102.08 38.08 85.3333333333333 58.6666666666667 85.3333333333333C73.4826666666667 85.3333333333333 86.112 94.112 92.096 106.6666666666667H85.3333333333333zM150.5706666666667 58.6773333333334C159.7546666666667 65.9733333333333 175.328 74.6666666666667 197.3333333333333 74.6666666666667S234.912 65.9733333333334 244.0853333333333 58.688C251.6586666666667 52.6826666666667 256 43.5946666666667 256 33.7493333333334V10.6666666666667H138.6666666666667V33.7493333333334C138.6666666666667 43.5946666666667 143.008 52.6826666666667 150.5706666666667 58.6773333333334zM170.6666666666667 106.6666666666667C188.3093333333333 106.6666666666667 202.6666666666667 121.024 202.6666666666667 138.6666666666667V159.456C220.7146666666667 156.8426666666667 234.6666666666667 141.4186666666667 234.6666666666667 122.6666666666667C234.6666666666667 102.08 217.92 85.3333333333334 197.3333333333333 85.3333333333334C182.5173333333333 85.3333333333334 169.888 94.112 163.904 106.6666666666667H170.6666666666667zM170.6666666666667 202.6666666666667H160V224C160 241.6426666666667 145.6426666666667 256 128 256S96 241.6426666666667 96 224V202.6666666666667H85.3333333333333C79.4453333333333 202.6666666666667 74.6666666666667 197.8986666666667 74.6666666666667 192V138.6666666666667C74.6666666666667 132.768 79.4453333333333 128 85.3333333333333 128H170.6666666666667C176.5546666666667 128 181.3333333333333 132.768 181.3333333333333 138.6666666666667V192C181.3333333333333 197.8986666666667 176.5546666666667 202.6666666666667 170.6666666666667 202.6666666666667zM117.3333333333333 224C117.3333333333333 229.888 122.1226666666667 234.6666666666667 128 234.6666666666667S138.6666666666667 229.888 138.6666666666667 224V202.6666666666667H117.3333333333333V224z" />
370
- <glyph glyph-name="baby-2"
371
- unicode="&#xEA79;"
372
- horiz-adv-x="256" d="M202.6666666666667 192H160.704L143.8826666666667 245.248C141.2693333333333 251.776 135.04 256 128 256S114.7306666666667 251.776 111.8293333333333 244.4586666666667L95.4773333333333 192H53.3333333333333C47.4346666666667 192 42.6666666666667 187.2213333333334 42.6666666666667 181.3333333333334S47.4346666666667 170.6666666666667 53.3333333333333 170.6666666666667H202.6666666666666C208.5653333333333 170.6666666666667 213.3333333333333 175.4453333333334 213.3333333333333 181.3333333333334S208.5653333333334 192 202.6666666666667 192zM64 149.3333333333334V21.3333333333333C64 9.5466666666667 73.5466666666667 0 85.3333333333333 0H170.6666666666667C182.4533333333333 0 192 9.5466666666667 192 21.3333333333333V149.3333333333334H64zM170.6666666666667 42.6666666666667H128V64H170.6666666666667V42.6666666666667zM170.6666666666667 85.3333333333333H128V106.6666666666667H170.6666666666667V85.3333333333333z" />
373
- <glyph glyph-name="baby-3"
374
- unicode="&#xEA7A;"
375
- horiz-adv-x="256" d="M213.3333333333333 149.3333333333334H42.6666666666667C36.7786666666667 149.3333333333334 32 144.5546666666667 32 138.6666666666667S36.7786666666667 128 42.6666666666667 128H75.84C61.9733333333333 114.432 53.3333333333333 95.552 53.3333333333333 74.6666666666667C53.3333333333333 33.4933333333333 86.8266666666667 0 128 0S202.6666666666666 33.4933333333334 202.6666666666666 74.6666666666667C202.6666666666666 95.552 194.0266666666667 114.432 180.16 128H213.3333333333333C219.2213333333333 128 224 132.7786666666667 224 138.6666666666667S219.2213333333333 149.3333333333334 213.3333333333333 149.3333333333334zM181.3333333333333 74.6666666666667C181.3333333333333 45.2586666666667 157.408 21.3333333333334 128 21.3333333333334S74.6666666666667 45.2586666666667 74.6666666666667 74.6666666666667S98.592 128 128 128S181.3333333333333 104.0746666666667 181.3333333333333 74.6666666666667zM106.6666666666667 170.6666666666667H149.3333333333333V200.3093333333334C155.84 206.1653333333333 160 214.56 160 224C160 241.6746666666667 145.6746666666667 256 128 256S96 241.6746666666667 96 224C96 214.56 100.16 206.1653333333333 106.6666666666667 200.3093333333334V170.6666666666667z" />
376
- <glyph glyph-name="baby-bottle"
377
- unicode="&#xEA7B;"
378
- horiz-adv-x="256" d="M126.3253333333333 201.76L97.824 173.2586666666667L121.7493333333333 149.3333333333334L106.6666666666667 134.2506666666667L82.7413333333333 158.1653333333333L65.824 141.248L89.7493333333333 117.3333333333334L74.6666666666667 102.2506666666667L50.752 126.1653333333334L33.8346666666667 109.2480000000001L57.7493333333333 85.3333333333333L42.6666666666667 70.2506666666667L18.752 94.1653333333333L12.5013333333333 87.9146666666667C4.4373333333333 79.8613333333333 0 69.1413333333333 0 57.7493333333334S4.4373333333333 35.6373333333334 12.5013333333333 27.584L27.584 12.5013333333334C35.6373333333333 4.4373333333334 46.3573333333333 0 57.7493333333333 0S79.8613333333333 4.4373333333333 87.9253333333333 12.5013333333333L201.76 126.3253333333333L126.3253333333333 201.76zM256 224C256 232.544 252.672 240.5866666666667 246.6346666666667 246.624C234.5386666666667 258.72 213.4613333333334 258.72 201.376 246.624L171.584 216.832L146.208 242.208C142.0373333333333 246.3786666666667 135.296 246.3786666666667 131.1253333333334 242.208S126.9546666666667 231.296 131.1253333333334 227.1253333333333L227.1253333333334 131.1253333333334C229.2053333333334 129.0453333333334 231.936 128 234.6666666666667 128S240.128 129.0453333333333 242.208 131.1253333333334C246.3786666666667 135.296 246.3786666666667 142.0373333333333 242.208 146.208L216.832 171.584L246.624 201.376C252.672 207.4133333333334 256 215.456 256 224z" />
379
- <glyph glyph-name="baby"
380
- unicode="&#xEA7C;"
381
- horiz-adv-x="256" d="M249.6 222.9333333333333L206.9333333333333 244.2666666666667C205.8666666666667 245.3333333333334 204.8 245.3333333333334 202.6666666666667 245.3333333333334H170.6666666666667C164.2666666666667 245.3333333333334 160 241.0666666666667 160 234.6666666666667C160 216.5333333333333 146.1333333333333 202.6666666666667 128 202.6666666666667S96 216.5333333333333 96 234.6666666666667C96 241.0666666666667 91.7333333333333 245.3333333333334 85.3333333333333 245.3333333333334H53.3333333333333C51.2 245.3333333333334 50.1333333333333 245.3333333333334 49.0666666666667 244.2666666666667L6.4 222.9333333333333C2.1333333333333 220.8 0 217.6 0 213.3333333333334V149.3333333333334C0 142.9333333333333 4.2666666666667 138.6666666666667 10.6666666666667 138.6666666666667H42.6666666666667V64C42.6666666666667 57.6 46.9333333333333 53.3333333333333 53.3333333333333 53.3333333333333C71.4666666666667 53.3333333333333 85.3333333333333 39.4666666666667 85.3333333333333 21.3333333333333C85.3333333333333 14.9333333333333 89.6 10.6666666666667 96 10.6666666666667H160C166.4 10.6666666666667 170.6666666666667 14.9333333333334 170.6666666666667 21.3333333333333C170.6666666666667 39.4666666666667 184.5333333333333 53.3333333333333 202.6666666666667 53.3333333333333C209.0666666666667 53.3333333333333 213.3333333333333 57.6 213.3333333333333 64V138.6666666666667H245.3333333333333C251.7333333333333 138.6666666666667 256 142.9333333333333 256 149.3333333333333V213.3333333333334C256 217.6 253.8666666666667 220.8 249.6 222.9333333333333z" />
382
- <glyph glyph-name="back-78"
383
- unicode="&#xEA7D;"
384
- horiz-adv-x="256" d="M245.3333333333333 245.3333333333334H74.6666666666667V224H234.6666666666667V96H85.3333333333333V160L0 85.3333333333333L85.3333333333333 10.6666666666667V74.6666666666667H245.3333333333333C251.232 74.6666666666667 256 79.4346666666667 256 85.3333333333333V234.6666666666667C256 240.5653333333334 251.232 245.3333333333334 245.3333333333333 245.3333333333334z" />
385
- <glyph glyph-name="back-80"
386
- unicode="&#xEA7E;"
387
- horiz-adv-x="256" d="M170.6666666666667 245.3333333333334H85.3333333333333V224H170.6666666666667C205.9626666666667 224 234.6666666666667 195.296 234.6666666666667 160S205.9626666666667 96 170.6666666666667 96H85.3333333333333V160L0 85.3333333333333L85.3333333333333 10.6666666666667V74.6666666666667H170.6666666666667C217.7173333333333 74.6666666666667 256 112.9493333333334 256 160S217.7173333333333 245.3333333333334 170.6666666666667 245.3333333333334z" />
388
- <glyph glyph-name="background"
389
- unicode="&#xEA7F;"
390
- horiz-adv-x="256" d="M98.9010133333333 111.9681066666667L154.0468266666667 111.9681066666667L126.71424 194.94528zM245.3333333333333 256H10.6666666666667C4.77088 256 0 251.224 0 245.3333333333334V10.6666666666667C0 4.776 4.77088 0 10.6666666666667 0H245.3333333333333C251.22912 0 256 4.776 256 10.6666666666667V245.3333333333334C256 251.224 251.22912 256 245.3333333333333 256zM210.15168 42.6666666666667H152.6458666666667V55.3925333333334L171.9739733333333 57.5136L158.0833066666667 96H94.0833066666667L80.9739733333333 57.5137066666667L100.07232 55.39264V42.6666666666667H45.84832V55.1621333333333L55.98304 57.75392C59.7642666666667 58.6939733333334 60.9348266666667 59.4042666666667 61.8756266666667 62.2357333333333L113.73824 213.3333333333334H141.0904533333333L193.8945066666667 61.9954133333334C194.83456 59.1640533333334 196.71552 58.6939733333333 199.5565866666667 57.9934933333333L210.15168 55.3925333333334V42.6666666666667z" />
391
- <glyph glyph-name="backpack-2"
392
- unicode="&#xEA80;"
393
- horiz-adv-x="256" d="M181.3333333333333 96H149.3333333333333V85.3333333333333C149.3333333333333 78.9333333333333 145.0666666666666 74.6666666666667 138.6666666666667 74.6666666666667H117.3333333333333C110.9333333333333 74.6666666666667 106.6666666666667 78.9333333333334 106.6666666666667 85.3333333333333V96H74.6666666666667C62.9333333333333 96 51.2 100.2666666666667 42.6666666666667 106.6666666666667V21.3333333333333C42.6666666666667 14.9333333333333 46.9333333333333 10.6666666666667 53.3333333333333 10.6666666666667H202.6666666666666C209.0666666666666 10.6666666666667 213.3333333333333 14.9333333333333 213.3333333333333 21.3333333333333V106.6666666666666C204.8 100.2666666666667 193.0666666666667 96 181.3333333333333 96zM74.6666666666667 117.3333333333334H106.6666666666667V128C106.6666666666667 134.4 110.9333333333333 138.6666666666667 117.3333333333333 138.6666666666667H138.6666666666667C145.0666666666667 138.6666666666667 149.3333333333333 134.4 149.3333333333333 128V117.3333333333334H181.3333333333333C199.4666666666667 117.3333333333334 213.3333333333333 131.2 213.3333333333333 149.3333333333334V192C213.3333333333333 221.8666666666667 189.8666666666667 245.3333333333333 160 245.3333333333333H96C66.1333333333333 245.3333333333334 42.6666666666667 221.8666666666667 42.6666666666667 192V149.3333333333334C42.6666666666667 131.2 56.5333333333333 117.3333333333334 74.6666666666667 117.3333333333334zM234.6666666666667 10.6666666666667H245.3333333333333C251.7333333333333 10.6666666666667 256 14.9333333333334 256 21.3333333333333V128C256 141.8666666666667 247.4666666666667 153.6 234.6666666666667 157.8666666666667V10.6666666666667zM21.3333333333333 157.8666666666667C8.5333333333333 153.6 0 141.8666666666667 0 128V21.3333333333333C0 14.9333333333333 4.2666666666667 10.6666666666667 10.6666666666667 10.6666666666667H21.3333333333333V157.8666666666667z" />
394
- <glyph glyph-name="backpack-57"
395
- unicode="&#xEA81;"
396
- horiz-adv-x="256" d="M202.6666666666667 202.6666666666667H170.6666666666667L170.6666666666667 211.4453333333334C170.6666666666667 233.7173333333334 154.4213333333333 253.6426666666667 132.256 255.7973333333334C106.816 258.2613333333333 85.3333333333333 238.272 85.3333333333333 213.3333333333334V202.6666666666667H53.3333333333333C35.6586666666667 202.6666666666667 21.3333333333333 188.3413333333334 21.3333333333333 170.6666666666667V106.6666666666667C21.3333333333333 100.7786666666667 26.112 96 32 96H224C229.888 96 234.6666666666667 100.7786666666667 234.6666666666667 106.6666666666667V170.6666666666667C234.6666666666667 188.3413333333334 220.3413333333333 202.6666666666667 202.6666666666667 202.6666666666667zM106.6666666666667 213.3333333333334C106.6666666666667 225.0986666666667 116.2346666666667 234.6666666666667 128 234.6666666666667S149.3333333333333 225.0986666666667 149.3333333333333 213.3333333333334V202.6666666666667H106.6666666666667V213.3333333333334zM21.3333333333333 0H10.6666666666667C4.7786666666667 0 0 4.7786666666667 0 10.6666666666667V53.3333333333333C0 59.2213333333333 4.7786666666667 64 10.6666666666667 64H21.3333333333333V0zM234.6666666666667 0H245.3333333333333C251.2213333333333 0 256 4.7786666666667 256 10.6666666666667V53.3333333333333C256 59.2213333333333 251.2213333333333 64 245.3333333333333 64H234.6666666666667V0zM42.6666666666667 10.6666666666667C42.6666666666667 4.768 47.4346666666667 0 53.3333333333333 0H202.6666666666666C208.5653333333333 0 213.3333333333333 4.768 213.3333333333333 10.6666666666667V74.6666666666667H42.6666666666667V10.6666666666667z" />
397
- <glyph glyph-name="backpack-58"
398
- unicode="&#xEA82;"
399
- horiz-adv-x="256" d="M245.3333333333333 213.3333333333334H181.3333333333333V245.3333333333334C181.3333333333333 251.232 176.5653333333333 256 170.6666666666667 256H85.3333333333333C79.4346666666667 256 74.6666666666667 251.232 74.6666666666667 245.3333333333334V213.3333333333334H10.6666666666667C4.768 213.3333333333334 0 208.5653333333334 0 202.6666666666667V138.6666666666667C0 109.2586666666667 23.9253333333333 85.3333333333333 53.3333333333333 85.3333333333333H64V117.3333333333334H42.6666666666667V138.6666666666667H106.6666666666667V117.3333333333334H85.3333333333333V85.3333333333333H170.6666666666667V117.3333333333334H149.3333333333333V138.6666666666667H213.3333333333333V117.3333333333334H192V85.3333333333333H202.6666666666666C232.0746666666667 85.3333333333333 256 109.2586666666667 256 138.6666666666667V202.6666666666667C256 208.5653333333334 251.232 213.3333333333334 245.3333333333333 213.3333333333334zM160 213.3333333333334H96V234.6666666666667H160V213.3333333333334zM202.6666666666667 64H192V32H170.6666666666667V64H85.3333333333333V32H64V64H53.3333333333333C41.8773333333333 64 31.0506666666667 66.6773333333333 21.3333333333333 71.3066666666667V10.6666666666667C21.3333333333333 4.768 26.1013333333333 0 32 0H224C229.8986666666667 0 234.6666666666667 4.768 234.6666666666667 10.6666666666667V71.3066666666667C224.9493333333333 66.6773333333334 214.1226666666667 64 202.6666666666667 64z" />
400
- <glyph glyph-name="backpack"
401
- unicode="&#xEA83;"
402
- horiz-adv-x="256" d="M170.6666666666667 212.2666666666667L170.6666666666667 212.2666666666667C170.6666666666667 236.8 151.4666666666667 256 128 256S85.3333333333333 236.8 85.3333333333333 213.3333333333334V212.2666666666667C49.0666666666667 206.9333333333333 21.3333333333333 176 21.3333333333333 138.6666666666667V96C40.5333333333333 121.6 71.4666666666667 138.6666666666667 106.6666666666667 138.6666666666667H149.3333333333333C184.5333333333333 138.6666666666667 215.4666666666667 121.6 234.6666666666667 96V138.6666666666667C234.6666666666667 176 206.9333333333333 206.9333333333333 170.6666666666667 212.2666666666667zM106.6666666666667 213.3333333333334C106.6666666666667 225.0666666666667 116.2666666666667 234.6666666666667 128 234.6666666666667S149.3333333333333 225.0666666666667 149.3333333333333 213.3333333333334H106.6666666666667zM149.3333333333333 117.3333333333334H106.6666666666667C59.7333333333333 117.3333333333334 21.3333333333333 78.9333333333333 21.3333333333333 32V10.6666666666667C21.3333333333333 4.2666666666667 25.6 0 32 0H224C230.4 0 234.6666666666667 4.2666666666667 234.6666666666667 10.6666666666667V32C234.6666666666667 78.9333333333333 196.2666666666667 117.3333333333334 149.3333333333333 117.3333333333334z" />
403
- <glyph glyph-name="backward"
404
- unicode="&#xEA84;"
405
- horiz-adv-x="256" d="M10.6666666666667 234.6666666666667H245.3333333333333C251.232 234.6666666666667 256 239.4453333333334 256 245.3333333333334S251.232 256 245.3333333333333 256H10.6666666666667C4.768 256 0 251.2213333333334 0 245.3333333333334S4.768 234.6666666666667 10.6666666666667 234.6666666666667zM245.3333333333333 170.6666666666667H160V149.3333333333334H245.3333333333333C251.232 149.3333333333334 256 154.112 256 160S251.232 170.6666666666667 245.3333333333333 170.6666666666667zM96 170.6666666666667H10.6666666666667C4.768 170.6666666666667 0 165.888 0 160S4.768 149.3333333333333 10.6666666666667 149.3333333333333H96V170.6666666666667zM138.6666666666667 213.3333333333334L117.3333333333333 213.3333333333334L117.3333333333333 74.6666666666667L64 74.6666666666667L128 0L192 74.6666666666667L138.6666666666667 74.6666666666667z" />
406
- <glyph glyph-name="bacon"
407
- unicode="&#xEA85;"
408
- horiz-adv-x="256" d="M247.4666666666667 202.6666666666667L202.6666666666667 247.4666666666667C198.4 251.7333333333333 192 251.7333333333333 187.7333333333333 247.4666666666667L166.4 226.1333333333334C139.7333333333333 199.4666666666667 137.6 171.7333333333334 136.5333333333333 152.5333333333333C135.4666666666667 137.6 134.4 134.4 129.0666666666666 128C122.6666666666666 121.6 120.5333333333333 121.6 105.6 120.5333333333333C86.4 119.4666666666667 57.6 117.3333333333334 30.9333333333333 89.6L8.5333333333333 67.2C4.2666666666666 62.9333333333333 4.2666666666666 56.5333333333333 8.5333333333333 52.2666666666667L53.3333333333333 8.5333333333334C55.4666666666667 6.4 57.6 5.3333333333334 60.8 5.3333333333334S66.1333333333333 6.4 68.2666666666667 8.5333333333334L90.6666666666667 30.9333333333334C94.9333333333333 35.2 96 35.2 110.9333333333333 36.2666666666667C129.0666666666667 37.3333333333334 160 39.4666666666667 188.8 68.2666666666667C217.6 97.0666666666667 219.7333333333333 128 221.8666666666667 147.2000000000001C222.9333333333333 162.1333333333334 224 163.2000000000001 227.2 166.4L248.5333333333334 187.7333333333334C251.7333333333334 190.9333333333333 251.7333333333334 198.4 247.4666666666667 202.6666666666667z" />
409
- <glyph glyph-name="badge-13"
410
- unicode="&#xEA86;"
411
- horiz-adv-x="256" d="M245.3333333333333 234.6666666666667H202.6666666666667C202.6666666666667 222.88 193.12 213.3333333333334 181.3333333333333 213.3333333333334S160 222.88 160 234.6666666666667H96C96 222.88 86.4533333333333 213.3333333333334 74.6666666666667 213.3333333333334S53.3333333333333 222.88 53.3333333333333 234.6666666666667H10.6666666666667C4.7786666666667 234.6666666666667 0 229.888 0 224V32C0 26.112 4.7786666666667 21.3333333333333 10.6666666666667 21.3333333333333H245.3333333333333C251.2213333333333 21.3333333333333 256 26.112 256 32V224C256 229.888 251.2213333333333 234.6666666666667 245.3333333333333 234.6666666666667zM85.3333333333333 160C97.12 160 106.6666666666667 150.4533333333333 106.6666666666667 138.6666666666667C106.6666666666667 126.88 97.12 117.3333333333334 85.3333333333333 117.3333333333334S64 126.88 64 138.6666666666667C64 150.4533333333334 73.5466666666667 160 85.3333333333333 160zM42.6666666666667 74.6666666666667C42.6666666666667 92.3413333333334 56.992 106.6666666666667 74.6666666666667 106.6666666666667H96C113.6746666666667 106.6666666666667 128 92.3413333333334 128 74.6666666666667H42.6666666666667zM213.3333333333333 85.3333333333333H149.3333333333333V106.6666666666667H213.3333333333333V85.3333333333333zM213.3333333333333 128H149.3333333333333V149.3333333333333H213.3333333333333V128z" />
412
- <glyph glyph-name="badge-14"
413
- unicode="&#xEA87;"
414
- horiz-adv-x="256" d="M245.3333333333333 234.6666666666667H202.6666666666667C202.6666666666667 222.88 193.12 213.3333333333334 181.3333333333333 213.3333333333334S160 222.88 160 234.6666666666667H96C96 222.88 86.4533333333333 213.3333333333334 74.6666666666667 213.3333333333334S53.3333333333333 222.88 53.3333333333333 234.6666666666667H10.6666666666667C4.7786666666667 234.6666666666667 0 229.888 0 224V32C0 26.112 4.7786666666667 21.3333333333333 10.6666666666667 21.3333333333333H245.3333333333333C251.2213333333333 21.3333333333333 256 26.112 256 32V224C256 229.888 251.2213333333333 234.6666666666667 245.3333333333333 234.6666666666667zM106.6666666666667 85.3333333333333H42.6666666666667V149.3333333333334H106.6666666666667V85.3333333333333zM213.3333333333333 85.3333333333333H138.6666666666667V106.6666666666667H213.3333333333333V85.3333333333333zM213.3333333333333 128H138.6666666666667V149.3333333333333H213.3333333333333V128z" />
415
- <glyph glyph-name="badge-15"
416
- unicode="&#xEA88;"
417
- horiz-adv-x="256" d="M149.3333333333333 181.3333333333334H106.6666666666667V234.6666666666667C106.6666666666667 246.4533333333333 116.2133333333333 256 128 256H128C139.7866666666667 256 149.3333333333333 246.4533333333333 149.3333333333333 234.6666666666667V181.3333333333334zM245.3333333333333 202.6666666666667H170.6666666666667V160H85.3333333333333V202.6666666666667H10.6666666666667C4.7786666666667 202.6666666666667 0 197.888 0 192V10.6666666666667C0 4.7786666666667 4.7786666666667 0 10.6666666666667 0H245.3333333333333C251.2213333333333 0 256 4.7786666666667 256 10.6666666666667V192C256 197.888 251.2213333333333 202.6666666666667 245.3333333333333 202.6666666666667zM106.6666666666667 53.3333333333333H42.6666666666667V117.3333333333334H106.6666666666667V53.3333333333333zM213.3333333333333 53.3333333333333H138.6666666666667V74.6666666666667H213.3333333333333V53.3333333333333zM213.3333333333333 96H138.6666666666667V117.3333333333334H213.3333333333333V96z" />
418
- <glyph glyph-name="badge"
419
- unicode="&#xEA89;"
420
- horiz-adv-x="256" d="M149.3333333333333 181.3333333333334H106.6666666666667V234.6666666666667C106.6666666666667 246.4533333333333 116.2133333333333 256 128 256H128C139.7866666666667 256 149.3333333333333 246.4533333333333 149.3333333333333 234.6666666666667V181.3333333333334zM245.3333333333333 202.6666666666667H170.6666666666667V160H85.3333333333333V202.6666666666667H10.6666666666667C4.7786666666667 202.6666666666667 0 197.888 0 192V10.6666666666667C0 4.7786666666667 4.7786666666667 0 10.6666666666667 0H245.3333333333333C251.2213333333333 0 256 4.7786666666667 256 10.6666666666667V192C256 197.888 251.2213333333333 202.6666666666667 245.3333333333333 202.6666666666667zM85.3333333333333 128C97.12 128 106.6666666666667 118.4533333333333 106.6666666666667 106.6666666666667C106.6666666666667 94.88 97.12 85.3333333333333 85.3333333333333 85.3333333333333S64 94.88 64 106.6666666666667C64 118.4533333333334 73.5466666666667 128 85.3333333333333 128zM42.6666666666667 42.6666666666667C42.6666666666667 60.3413333333334 56.992 74.6666666666667 74.6666666666667 74.6666666666667H96C113.6746666666667 74.6666666666667 128 60.3413333333334 128 42.6666666666667H42.6666666666667zM213.3333333333333 53.3333333333333H149.3333333333333V74.6666666666667H213.3333333333333V53.3333333333333zM213.3333333333333 96H149.3333333333333V117.3333333333334H213.3333333333333V96z" />
421
- <glyph glyph-name="badminton"
422
- unicode="&#xEA8A;"
423
- horiz-adv-x="256" d="M23.9674730666667 23.9674272L23.9674272 23.9674677333334C11.4706634666667 36.4642325333334 11.4706634666667 56.725504 23.9674272 69.2222688L39.0523957333333 84.3072298666667L84.3072277333333 39.0523882666667L69.2222613333333 23.9674272C56.7254997333333 11.4706624 36.4642389333333 11.4706624 23.9674730666667 23.9674272zM235.1569013333333 144.6471349333334C226.8255210666667 152.9785152 213.3183594666666 152.9785152 204.9869792 144.6471349333334C213.3183594666666 152.9785152 213.3177088 166.4856768 204.9869792 174.8170570666667C196.6555989333333 183.1484373333333 183.1484373333333 183.1484373333333 174.8170570666667 174.8170570666667C183.1484373333333 183.1484373333333 183.1477866666667 196.6555989333333 174.8170570666667 204.9869792C166.4856768 213.3177088 152.9785152 213.3183594666667 144.6471349333333 204.9869792C152.9785152 213.3183594666667 152.9778645333333 226.8255210666667 144.6471349333333 235.1569013333334C136.3157546666667 243.4876309333333 122.8085930666667 243.4882816 114.4772128 235.1569013333334C112.0996085333333 232.7792970666667 110.4798165333333 229.9615893333334 109.4596352 226.9824224L49.0214848 104.5097653333334L104.5091146666667 49.0221354666667L226.9824224 109.4596352C229.9615893333334 110.4798176 232.7792970666667 112.1002602666667 235.1569013333334 114.4772128C243.4882816 122.8085941333334 243.4876298666667 136.3164064 235.1569013333333 144.6471349333334z" />
424
- <glyph glyph-name="bag-09"
425
- unicode="&#xEA8B;"
426
- horiz-adv-x="256" d="M245.3333333333333 13.8666666666667L224 182.4C222.9333333333333 187.7333333333334 218.6666666666667 192 213.3333333333333 192H181.3333333333333V202.6666666666667C181.3333333333333 232.5333333333334 157.8666666666667 256 128 256S74.6666666666667 232.5333333333334 74.6666666666667 202.6666666666667V192H42.6666666666667C37.3333333333333 192 33.0666666666667 187.7333333333334 32 182.4L10.6666666666667 11.7333333333333C10.6666666666667 8.5333333333334 11.7333333333333 5.3333333333333 12.8 3.2C14.9333333333333 1.0666666666667 18.1333333333333 0 21.3333333333333 0H234.6666666666667C234.6666666666667 0 234.6666666666667 0 234.6666666666667 0C241.0666666666667 0 245.3333333333333 4.2666666666667 245.3333333333333 10.6666666666667C245.3333333333333 11.7333333333333 245.3333333333333 12.8 245.3333333333333 13.8666666666667zM96 202.6666666666667C96 220.8 109.8666666666667 234.6666666666667 128 234.6666666666667S160 220.8 160 202.6666666666667V192H96V202.6666666666667z" />
427
- <glyph glyph-name="bag-16"
428
- unicode="&#xEA8C;"
429
- horiz-adv-x="256" d="M10.6666666666667 192V10.6666666666667C10.6666666666667 4.2666666666667 14.9333333333333 0 21.3333333333333 0H234.6666666666667C241.0666666666667 0 245.3333333333333 4.2666666666667 245.3333333333333 10.6666666666667V192H10.6666666666667zM128 85.3333333333333C92.8 85.3333333333333 64 114.1333333333334 64 149.3333333333334C64 155.7333333333334 68.2666666666667 160 74.6666666666667 160S85.3333333333333 155.7333333333334 85.3333333333333 149.3333333333334C85.3333333333333 125.8666666666667 104.5333333333334 106.6666666666667 128 106.6666666666667S170.6666666666667 125.8666666666667 170.6666666666667 149.3333333333334C170.6666666666667 155.7333333333334 174.9333333333333 160 181.3333333333333 160S192 155.7333333333334 192 149.3333333333334C192 114.1333333333333 163.2 85.3333333333333 128 85.3333333333333zM238.9333333333333 213.3333333333334L199.4666666666667 252.8C197.3333333333333 254.9333333333334 195.2 256 192 256H64C60.8 256 58.6666666666667 254.9333333333334 56.5333333333333 252.8L17.0666666666667 213.3333333333334H238.9333333333333z" />
430
- <glyph glyph-name="bag-17"
431
- unicode="&#xEA8D;"
432
- horiz-adv-x="256" d="M213.3333333333333 256H42.6666666666667C24.5333333333333 256 10.6666666666667 242.1333333333334 10.6666666666667 224V10.6666666666667C10.6666666666667 4.2666666666667 14.9333333333333 0 21.3333333333333 0H234.6666666666667C241.0666666666667 0 245.3333333333333 4.2666666666667 245.3333333333333 10.6666666666667V224C245.3333333333333 242.1333333333334 231.4666666666667 256 213.3333333333333 256zM128 85.3333333333333C92.8 85.3333333333333 64 114.1333333333334 64 149.3333333333334C64 155.7333333333334 68.2666666666667 160 74.6666666666667 160S85.3333333333333 155.7333333333334 85.3333333333333 149.3333333333334C85.3333333333333 125.8666666666667 104.5333333333334 106.6666666666667 128 106.6666666666667S170.6666666666667 125.8666666666667 170.6666666666667 149.3333333333334C170.6666666666667 155.7333333333334 174.9333333333333 160 181.3333333333333 160S192 155.7333333333334 192 149.3333333333334C192 114.1333333333333 163.2 85.3333333333333 128 85.3333333333333zM213.3333333333333 213.3333333333334H42.6666666666667C36.2666666666667 213.3333333333334 32 217.6 32 224S36.2666666666667 234.6666666666667 42.6666666666667 234.6666666666667H213.3333333333333C219.7333333333333 234.6666666666667 224 230.4 224 224S219.7333333333334 213.3333333333334 213.3333333333333 213.3333333333334z" />
433
- <glyph glyph-name="bag-20"
434
- unicode="&#xEA8E;"
435
- horiz-adv-x="256" d="M224 202.6666666666667H181.3333333333334C181.3333333333334 232.5333333333334 157.8666666666667 256 128 256S74.6666666666667 232.5333333333334 74.6666666666667 202.6666666666667H32C25.6 202.6666666666667 21.3333333333333 198.4 21.3333333333333 192V10.6666666666667C21.3333333333333 4.2666666666667 25.6 0 32 0H224C230.4 0 234.6666666666667 4.2666666666667 234.6666666666667 10.6666666666667V192C234.6666666666667 198.4 230.4 202.6666666666667 224 202.6666666666667zM128 234.6666666666667C146.1333333333333 234.6666666666667 160 220.8 160 202.6666666666667H96C96 220.8 109.8666666666667 234.6666666666667 128 234.6666666666667z" />
436
- <glyph glyph-name="bag-21"
437
- unicode="&#xEA8F;"
438
- horiz-adv-x="256" d="M245.3333333333333 192H192C192 227.2 163.2 256 128 256S64 227.2 64 192H10.6666666666667C4.2666666666667 192 0 187.7333333333334 0 181.3333333333334V53.3333333333333C0 23.4666666666667 23.4666666666667 0 53.3333333333333 0H202.6666666666666C232.5333333333333 0 256 23.4666666666667 256 53.3333333333333V181.3333333333334C256 187.7333333333334 251.7333333333334 192 245.3333333333333 192zM170.6666666666667 64C170.6666666666667 57.6 166.4 53.3333333333333 160 53.3333333333333H96C89.6 53.3333333333333 85.3333333333333 57.6 85.3333333333333 64V106.6666666666667C85.3333333333333 113.0666666666667 89.6 117.3333333333333 96 117.3333333333333H160C166.4 117.3333333333333 170.6666666666667 113.0666666666666 170.6666666666667 106.6666666666667V64zM85.3333333333333 192C85.3333333333333 215.4666666666667 104.5333333333333 234.6666666666667 128 234.6666666666667S170.6666666666667 215.4666666666667 170.6666666666667 192H85.3333333333333z" />
439
- <glyph glyph-name="bag-22"
440
- unicode="&#xEA90;"
441
- horiz-adv-x="256" d="M224 172.8C222.9333333333333 178.1333333333333 218.6666666666667 181.3333333333334 213.3333333333333 181.3333333333334H181.3333333333333V202.6666666666667C181.3333333333333 232.5333333333334 157.8666666666667 256 128 256S74.6666666666667 232.5333333333334 74.6666666666667 202.6666666666667V181.3333333333334H42.6666666666667C37.3333333333333 181.3333333333334 33.0666666666667 178.1333333333333 32 172.8L0 12.8C-1.0666666666667 9.6 0 6.4 2.1333333333333 4.2666666666667C4.2666666666667 1.0666666666667 7.4666666666667 0 10.6666666666667 0H245.3333333333333C248.5333333333333 0 251.7333333333333 1.0666666666667 253.8666666666667 4.2666666666667C256 6.4 257.0666666666667 9.6 256 12.8L224 172.8zM96 202.6666666666667C96 220.8 109.8666666666667 234.6666666666667 128 234.6666666666667S160 220.8 160 202.6666666666667V181.3333333333334H96V202.6666666666667z" />
442
- <glyph glyph-name="bag-49"
443
- unicode="&#xEA91;"
444
- horiz-adv-x="256" d="M234.6666666666667 32H21.3333333333333C14.9333333333333 32 10.6666666666667 27.7333333333333 10.6666666666667 21.3333333333333V10.6666666666667C10.6666666666667 4.2666666666667 14.9333333333333 0 21.3333333333333 0H234.6666666666667C241.0666666666667 0 245.3333333333333 4.2666666666667 245.3333333333333 10.6666666666667V21.3333333333333C245.3333333333333 27.7333333333334 241.0666666666667 32 234.6666666666667 32zM245.3333333333333 202.6666666666667H181.3333333333333V234.6666666666667C181.3333333333333 241.0666666666667 177.0666666666666 245.3333333333334 170.6666666666667 245.3333333333334H85.3333333333333C78.9333333333333 245.3333333333334 74.6666666666667 241.0666666666667 74.6666666666667 234.6666666666667V202.6666666666667H10.6666666666667C4.2666666666667 202.6666666666667 0 198.4 0 192V64C0 57.6 4.2666666666667 53.3333333333333 10.6666666666667 53.3333333333333H245.3333333333333C251.7333333333333 53.3333333333333 256 57.6 256 64V192C256 198.4 251.7333333333334 202.6666666666667 245.3333333333333 202.6666666666667zM160 117.3333333333334H138.6666666666667V96H117.3333333333333V117.3333333333334H96V138.6666666666667H117.3333333333333V160H138.6666666666667V138.6666666666667H160V117.3333333333334zM160 202.6666666666667H96V224H160V202.6666666666667z" />
445
- <glyph glyph-name="bag-50"
446
- unicode="&#xEA92;"
447
- horiz-adv-x="256" d="M245.3333333333333 213.3333333333334H181.3333333333333V245.3333333333334C181.3333333333333 251.7333333333333 177.0666666666666 256 170.6666666666667 256H85.3333333333333C78.9333333333333 256 74.6666666666667 251.7333333333333 74.6666666666667 245.3333333333334V213.3333333333334H10.6666666666667C4.2666666666667 213.3333333333334 0 209.0666666666667 0 202.6666666666667V10.6666666666667C0 4.2666666666667 4.2666666666667 0 10.6666666666667 0H245.3333333333333C251.7333333333333 0 256 4.2666666666667 256 10.6666666666667V202.6666666666667C256 209.0666666666667 251.7333333333334 213.3333333333334 245.3333333333333 213.3333333333334zM96 234.6666666666667H160V213.3333333333334H96V234.6666666666667zM181.3333333333333 85.3333333333333H149.3333333333333V53.3333333333333H106.6666666666667V85.3333333333333H74.6666666666667V128H106.6666666666667V160H149.3333333333333V128H181.3333333333333V85.3333333333333z" />
448
- <glyph glyph-name="bag-add-18"
449
- unicode="&#xEA93;"
450
- horiz-adv-x="256" d="M160 42.6666666666667C160 76.384 190.9653333333333 101.7706666666667 224.224 94.8693333333334L213.248 182.656C212.5866666666667 187.9893333333333 208.0426666666667 192 202.6666666666667 192H170.6666666666667V202.6666666666667C170.6666666666667 232.0746666666667 146.7413333333333 256 117.3333333333333 256S64 232.0746666666667 64 202.6666666666667V192H32C26.624 192 22.08 187.9893333333333 21.4186666666667 182.656L0.0853333333333 11.9893333333333C-0.704 5.6853333333333 4.2026666666667 0 10.6666666666667 0H181.632C168.576 9.7173333333334 160 25.1413333333333 160 42.6666666666667zM149.3333333333333 192H85.3333333333333V202.6666666666667C85.3333333333333 220.3093333333334 99.6906666666667 234.6666666666667 117.3333333333333 234.6666666666667S149.3333333333333 220.3093333333334 149.3333333333333 202.6666666666667V192zM245.3333333333333 53.3333333333333L224 53.3333333333333L224 74.6666666666667L202.6666666666667 74.6666666666667L202.6666666666667 53.3333333333333L181.3333333333333 53.3333333333333L181.3333333333333 32L202.6666666666667 32L202.6666666666667 10.6666666666667L224 10.6666666666667L224 32L245.3333333333333 32z" />
451
- <glyph glyph-name="bag-add-21"
452
- unicode="&#xEA94;"
453
- horiz-adv-x="256" d="M160 42.6666666666667C160 76.2773333333333 190.7946666666667 101.664 224 94.9226666666667V192C224 197.888 219.2213333333334 202.6666666666667 213.3333333333334 202.6666666666667H170.6666666666667C170.6666666666667 232.0746666666667 146.7413333333334 256 117.3333333333334 256S64 232.0746666666667 64 202.6666666666667H21.3333333333333C15.4453333333333 202.6666666666667 10.6666666666667 197.888 10.6666666666667 192V10.6666666666667C10.6666666666667 4.7786666666667 15.4453333333333 0 21.3333333333333 0H181.6213333333333C168.576 9.7173333333334 160 25.1413333333333 160 42.6666666666667zM85.3333333333333 202.6666666666667C85.3333333333333 220.3093333333334 99.6906666666667 234.6666666666667 117.3333333333333 234.6666666666667S149.3333333333333 220.3093333333334 149.3333333333333 202.6666666666667H85.3333333333333zM245.3333333333333 53.3333333333333L224 53.3333333333333L224 74.6666666666667L202.6666666666667 74.6666666666667L202.6666666666667 53.3333333333333L181.3333333333333 53.3333333333333L181.3333333333333 32L202.6666666666667 32L202.6666666666667 10.6666666666667L224 10.6666666666667L224 32L245.3333333333333 32z" />
454
- <glyph glyph-name="bag-delivery"
455
- unicode="&#xEA95;"
456
- horiz-adv-x="256" d="M245.3333333333333 192H202.6666666666667V213.3333333333334A42.666666666666664 42.666666666666664 0 0 1 117.3333333333333 213.3333333333334V192H74.6666666666667A10.666666666666666 10.666666666666666 0 0 1 64 181.3333333333334V138.6666666666667H21.3333333333333V117.3333333333334H128V96H0V74.6666666666667H106.6666666666667V53.3333333333333H64V21.3333333333333A10.666666666666666 10.666666666666666 0 0 1 74.6666666666667 10.6666666666667H245.3333333333333A10.666666666666666 10.666666666666666 0 0 1 256 21.3333333333333V181.3333333333334A10.666666666666666 10.666666666666666 0 0 1 245.3333333333333 192zM181.3333333333333 192H138.6666666666667V213.3333333333334A21.333333333333332 21.333333333333332 0 0 0 181.3333333333333 213.3333333333334z" />
457
- <glyph glyph-name="bag-edit"
458
- unicode="&#xEA96;"
459
- horiz-adv-x="256" d="M203.9573333333333 41.376C197.952 35.3706666666667 189.8133333333333 32 181.3226666666666 32H149.3333333333333C143.4453333333333 32 138.6666666666667 36.7786666666667 138.6666666666667 42.6666666666667V74.656C138.6666666666667 83.1466666666667 142.0373333333333 91.2853333333333 148.0426666666667 97.28L213.3333333333333 162.5813333333334V192C213.3333333333333 197.888 208.5546666666667 202.6666666666667 202.6666666666667 202.6666666666667H160C160 232.0746666666667 136.0746666666667 256 106.6666666666667 256S53.3333333333333 232.0746666666667 53.3333333333333 202.6666666666667H10.6666666666667C4.7786666666667 202.6666666666667 0 197.888 0 192V10.6666666666667C0 4.7786666666667 4.7786666666667 0 10.6666666666667 0H202.6666666666667C208.5546666666667 0 213.3333333333333 4.7786666666667 213.3333333333333 10.6666666666667V50.752L203.9573333333333 41.376zM106.6666666666667 234.6666666666667C124.3093333333333 234.6666666666667 138.6666666666667 220.3093333333334 138.6666666666667 202.6666666666667H74.6666666666667C74.6666666666667 220.3093333333334 89.024 234.6666666666667 106.6666666666667 234.6666666666667zM250.6346666666667 143.968L250.6346666666667 143.968C243.52 151.0826666666667 232 151.0826666666667 224.8853333333333 143.968L163.1253333333333 82.208C161.12 80.2026666666667 160 77.4933333333333 160 74.6666666666667V53.3333333333333H181.3333333333334C184.16 53.3333333333333 186.8693333333334 54.4533333333334 188.8746666666667 56.4586666666667L250.6346666666667 118.2186666666667C257.7493333333333 125.3333333333334 257.7493333333333 136.8533333333334 250.6346666666667 143.968z" />
460
- <glyph glyph-name="bag-remove-19"
461
- unicode="&#xEA97;"
462
- horiz-adv-x="256" d="M160 42.6666666666667C160 76.384 190.9653333333333 101.7706666666667 224.224 94.8693333333334L213.248 182.656C212.5866666666667 187.9893333333333 208.0426666666667 192 202.6666666666667 192H170.6666666666667V202.6666666666667C170.6666666666667 232.0746666666667 146.7413333333333 256 117.3333333333333 256S64 232.0746666666667 64 202.6666666666667V192H32C26.624 192 22.08 187.9893333333333 21.4186666666667 182.656L0.0853333333333 11.9893333333333C-0.704 5.6853333333333 4.2026666666667 0 10.6666666666667 0H181.632C168.576 9.7173333333334 160 25.1413333333333 160 42.6666666666667zM149.3333333333333 192H85.3333333333333V202.6666666666667C85.3333333333333 220.3093333333334 99.6906666666667 234.6666666666667 117.3333333333333 234.6666666666667S149.3333333333333 220.3093333333334 149.3333333333333 202.6666666666667V192zM181.3333333333333 53.3333333333333H245.3333333333333V32H181.3333333333333V53.3333333333333z" />
463
- <glyph glyph-name="bag-remove-22"
464
- unicode="&#xEA98;"
465
- horiz-adv-x="256" d="M160 42.6666666666667C160 76.2773333333333 190.7946666666667 101.664 224 94.9226666666667V192C224 197.888 219.2213333333334 202.6666666666667 213.3333333333334 202.6666666666667H170.6666666666667C170.6666666666667 232.0746666666667 146.7413333333334 256 117.3333333333334 256S64 232.0746666666667 64 202.6666666666667H21.3333333333333C15.4453333333333 202.6666666666667 10.6666666666667 197.888 10.6666666666667 192V10.6666666666667C10.6666666666667 4.7786666666667 15.4453333333333 0 21.3333333333333 0H181.6213333333333C168.576 9.7173333333334 160 25.1413333333333 160 42.6666666666667zM85.3333333333333 202.6666666666667C85.3333333333333 220.3093333333334 99.6906666666667 234.6666666666667 117.3333333333333 234.6666666666667S149.3333333333333 220.3093333333334 149.3333333333333 202.6666666666667H85.3333333333333zM181.3333333333333 53.3333333333333H245.3333333333333V32H181.3333333333333V53.3333333333333z" />
466
- <glyph glyph-name="bag-time"
467
- unicode="&#xEA99;"
468
- horiz-adv-x="256" d="M192 128C156.6506666666667 128 128 99.3493333333333 128 64S156.6506666666667 0 192 0S256 28.6506666666667 256 64S227.3493333333334 128 192 128zM234.6666666666667 53.3333333333333H181.3333333333333V106.6666666666667H202.6666666666667V74.6666666666667H234.6666666666667V53.3333333333333zM106.6666666666667 64C106.6666666666667 111.1253333333334 144.8746666666667 149.3333333333333 192 149.3333333333333C205.2906666666667 149.3333333333333 217.824 146.208 229.0453333333334 140.7786666666667L223.808 182.656C223.1466666666667 187.9893333333333 218.6026666666667 192 213.2266666666666 192H181.2266666666666V202.6666666666667C181.2266666666666 232.0746666666667 157.3013333333333 256 127.8933333333333 256S74.56 232.0746666666667 74.56 202.6666666666667V192H42.56C37.184 192 32.64 187.9893333333333 31.9786666666667 182.656L10.6453333333333 11.9893333333333C10.2613333333333 8.96 11.2106666666667 5.9093333333333 13.2373333333333 3.6053333333334C15.2533333333333 1.312 18.1653333333333 0 21.2266666666667 0H135.6906666666667C117.9306666666667 15.6373333333333 106.6666666666667 38.4746666666667 106.6666666666667 64zM95.8933333333333 202.6666666666667C95.8933333333333 220.3093333333334 110.2506666666667 234.6666666666667 127.8933333333333 234.6666666666667S159.8933333333333 220.3093333333334 159.8933333333333 202.6666666666667V192H95.8933333333333V202.6666666666667z" />
469
- <glyph glyph-name="bag"
470
- unicode="&#xEA9A;"
471
- horiz-adv-x="256" d="M181.3333333333333 234.6666666666667C181.3333333333333 241.0666666666667 177.0666666666666 245.3333333333334 170.6666666666667 245.3333333333334H85.3333333333333C78.9333333333333 245.3333333333334 74.6666666666667 241.0666666666667 74.6666666666667 234.6666666666667V192H53.3333333333333V10.6666666666667H202.6666666666666V192H181.3333333333333V234.6666666666667zM96 224H160V192H96V224zM245.3333333333333 192H224V10.6666666666667H245.3333333333333C251.7333333333333 10.6666666666667 256 14.9333333333334 256 21.3333333333333V181.3333333333334C256 187.7333333333334 251.7333333333334 192 245.3333333333333 192zM0 181.3333333333334V21.3333333333333C0 14.9333333333333 4.2666666666667 10.6666666666667 10.6666666666667 10.6666666666667H32V192H10.6666666666667C4.2666666666667 192 0 187.7333333333334 0 181.3333333333334z" />
472
- <glyph glyph-name="baguette"
473
- unicode="&#xEA9B;"
474
- horiz-adv-x="256" d="M233.6 233.6C209.0666666666666 258.1333333333334 168.5333333333333 258.1333333333334 142.9333333333333 233.6L22.4 113.0666666666667C-2.1333333333333 88.5333333333333 -2.1333333333333 48 22.4 22.4C35.2 9.6 51.2 3.2 67.2 3.2C83.2 3.2 100.2666666666667 9.6 112 22.4L232.5333333333333 142.9333333333333C258.1333333333334 168.5333333333334 258.1333333333334 209.0666666666667 233.6 233.6zM93.8666666666667 50.1333333333333C92.8 50.1333333333333 91.7333333333333 49.0666666666667 90.6666666666667 49.0666666666667C86.4 49.0666666666667 82.1333333333333 52.2666666666667 81.0666666666667 56.5333333333333L66.1333333333333 101.3333333333333C64 106.6666666666667 67.2 113.0666666666667 72.5333333333334 115.2C77.8666666666667 117.3333333333334 83.2 114.1333333333333 85.3333333333333 108.8L100.2666666666667 64C102.4 57.6 99.2 52.2666666666667 93.8666666666667 50.1333333333333zM138.6666666666667 94.9333333333333C137.6 94.9333333333333 136.5333333333333 93.8666666666667 135.4666666666667 93.8666666666667C131.2 93.8666666666667 126.9333333333333 97.0666666666667 125.8666666666667 101.3333333333333L110.9333333333333 146.1333333333333C108.8 151.4666666666667 112 157.8666666666667 117.3333333333334 160C122.6666666666667 162.1333333333333 129.0666666666667 158.9333333333333 131.2 153.6L146.1333333333334 108.8C147.2 103.4666666666667 144 97.0666666666667 138.6666666666667 94.9333333333333zM184.5333333333333 140.8C183.4666666666667 140.8 182.4 139.7333333333334 181.3333333333334 139.7333333333334C177.0666666666667 139.7333333333334 172.8 142.9333333333333 171.7333333333334 147.2L155.7333333333333 192C153.6 197.3333333333334 156.8 203.7333333333334 162.1333333333333 205.8666666666667C167.4666666666667 208 173.8666666666667 204.8 176 199.4666666666667L190.9333333333333 154.6666666666667C193.0666666666667 148.2666666666667 189.8666666666667 141.8666666666667 184.5333333333333 140.8z" />
475
- <glyph glyph-name="balance"
476
- unicode="&#xEA9C;"
477
- horiz-adv-x="256" d="M18.1333333333333 124.8C16 128 10.6666666666667 129.0666666666667 6.4 126.9333333333333C3.2 125.8666666666667 0 121.6 0 117.3333333333334V21.3333333333333C0 14.9333333333333 4.2666666666667 10.6666666666667 10.6666666666667 10.6666666666667H96C100.2666666666667 10.6666666666667 104.5333333333333 12.8 105.6 17.0666666666667S106.6666666666667 25.6 103.4666666666667 28.8L18.1333333333333 124.8zM249.6 126.9333333333333C245.3333333333333 128 241.0666666666667 126.9333333333333 237.8666666666666 123.7333333333334L152.5333333333333 27.7333333333334C149.3333333333333 24.5333333333334 149.3333333333333 20.2666666666667 150.4 16S155.7333333333333 10.6666666666667 160 10.6666666666667H245.3333333333333C251.7333333333333 10.6666666666667 256 14.9333333333334 256 21.3333333333333V117.3333333333334C256 121.6 252.8 125.8666666666667 249.6 126.9333333333333zM64 117.3333333333334H192C198.4 117.3333333333334 202.6666666666667 121.6 202.6666666666667 128V234.6666666666667C202.6666666666667 241.0666666666667 198.4 245.3333333333334 192 245.3333333333334H64C57.6 245.3333333333334 53.3333333333333 241.0666666666667 53.3333333333333 234.6666666666667V128C53.3333333333333 121.6 57.6 117.3333333333334 64 117.3333333333334z" />
478
- <glyph glyph-name="ball-basket"
479
- unicode="&#xEA9D;"
480
- horiz-adv-x="256" d="M128 256C57.6 256 0 198.4 0 128S57.6 0 128 0S256 57.6 256 128S198.4 256 128 256zM193.0666666666667 117.3333333333334C195.2 98.1333333333334 202.6666666666667 80 213.3333333333333 64C209.0666666666666 58.6666666666667 203.7333333333333 53.3333333333333 198.4 48C182.4 68.2666666666667 172.8 91.7333333333333 170.6666666666666 117.3333333333333H138.6666666666666V22.4C135.4666666666667 22.4 131.2 21.3333333333333 128 21.3333333333333S120.5333333333333 21.3333333333333 117.3333333333333 22.4V117.3333333333334H85.3333333333333C83.2 91.7333333333334 73.6 68.2666666666667 57.6 48C52.2666666666667 53.3333333333333 46.9333333333333 58.6666666666667 42.6666666666667 64C54.4 80 61.8666666666667 98.1333333333333 62.9333333333333 117.3333333333333H22.4C21.3333333333333 120.5333333333334 21.3333333333333 124.8 21.3333333333333 128S21.3333333333333 135.4666666666667 22.4 138.6666666666667H64C61.8666666666667 157.8666666666667 54.4 176 42.6666666666667 192C46.9333333333333 197.3333333333334 52.2666666666667 202.6666666666667 57.6 208C73.6 187.7333333333334 83.2 164.2666666666667 85.3333333333333 138.6666666666667H117.3333333333333V233.6C120.5333333333333 234.6666666666667 124.8 234.6666666666667 128 234.6666666666667S135.4666666666667 234.6666666666667 138.6666666666667 233.6V138.6666666666667H170.6666666666667C172.8 164.2666666666667 182.4 187.7333333333334 198.4 208C203.7333333333333 202.6666666666667 209.0666666666666 197.3333333333334 213.3333333333333 192C201.6 176 194.1333333333333 157.8666666666667 193.0666666666667 138.6666666666667H234.6666666666667C234.6666666666667 135.4666666666667 235.7333333333333 131.2 235.7333333333333 128S235.7333333333333 120.5333333333333 234.6666666666667 117.3333333333334H193.0666666666667z" />
481
- <glyph glyph-name="ball-soccer"
482
- unicode="&#xEA9E;"
483
- horiz-adv-x="256" d="M128 256C57.4186666666667 256 0 198.5813333333333 0 128S57.4186666666667 0 128 0S256 57.4186666666667 256 128S198.5813333333333 256 128 256zM106.6346666666667 23.488L92.736 68.5866666666667C91.3386666666667 73.12 86.8906666666667 76.352 82.3786666666667 76.1066666666667L35.3173333333333 75.392C28.3306666666667 87.648 23.68 101.3973333333334 22.0373333333333 116.0533333333334L60.576 143.168C64.4586666666667 145.8986666666667 66.0693333333334 150.8693333333334 64.5333333333334 155.3493333333333L49.3546666666667 199.808C59.0293333333333 210.3893333333334 70.752 219.0186666666667 83.9573333333333 225.0346666666667L121.6 196.8C123.4986666666667 195.3706666666667 125.7493333333333 194.6666666666667 128 194.6666666666667S132.5013333333333 195.3706666666667 134.4 196.8L172.0426666666667 225.0346666666667C185.248 219.0186666666667 196.9813333333334 210.3893333333333 206.6453333333333 199.808L191.4453333333334 155.3493333333333C189.9093333333333 150.8693333333333 191.52 145.8986666666667 195.4026666666667 143.168L233.9413333333334 116.0533333333334C232.2986666666667 101.3866666666667 227.648 87.648 220.6613333333334 75.392L173.6 76.1066666666667C168.768 76.2773333333333 164.64 73.1093333333333 163.2426666666667 68.5866666666667L149.344 23.488C142.4533333333333 22.08 135.3173333333333 21.3333333333333 128 21.3333333333333S113.5466666666667 22.08 106.6346666666667 23.488zM158.88 91.232L180.2133333333334 133.8986666666667C182.5173333333334 138.5173333333334 181.1946666666667 144.1066666666667 177.0773333333334 147.2L134.4106666666667 179.2C130.624 182.0586666666667 125.3973333333334 182.0586666666667 121.6106666666667 179.2L78.944 147.2C74.816 144.1066666666667 73.504 138.5173333333334 75.808 133.8986666666667L97.1413333333334 91.232C98.9333333333333 87.616 102.624 85.3333333333333 106.6666666666667 85.3333333333333H149.3333333333333C153.376 85.3333333333333 157.0666666666667 87.616 158.88 91.232z" />
484
- <glyph glyph-name="baloon"
485
- unicode="&#xEA9F;"
486
- horiz-adv-x="256" d="M128 256C75.0613333333333 256 32 212.928 32 160C32 114.9653333333333 63.2106666666667 77.1733333333334 105.12 66.8693333333334L80.9173333333333 42.6666666666667H117.3333333333333V0H138.6666666666667V42.6666666666667H175.0826666666667L150.88 66.8693333333334C192.7893333333333 77.1733333333334 224 114.9653333333334 224 160C224 212.928 180.9386666666667 256 128 256zM128 202.6666666666667C104.4693333333333 202.6666666666667 85.3333333333333 183.5306666666667 85.3333333333333 160H64C64 195.296 92.704 224 128 224V202.6666666666667z" />
487
- <glyph glyph-name="ban-bold"
488
- unicode="&#xEAA0;"
489
- horiz-adv-x="256" d="M128 245.3333333333334C62.9333333333333 245.3333333333334 10.6666666666667 193.0666666666667 10.6666666666667 128S62.9333333333333 10.6666666666667 128 10.6666666666667S245.3333333333333 62.9333333333333 245.3333333333333 128S193.0666666666667 245.3333333333334 128 245.3333333333334zM53.3333333333333 128C53.3333333333333 169.6 86.4 202.6666666666667 128 202.6666666666667C140.8 202.6666666666667 152.5333333333333 199.4666666666667 163.2 194.1333333333333L61.8666666666667 92.8C56.5333333333333 103.4666666666667 53.3333333333333 115.2 53.3333333333333 128zM128 53.3333333333333C115.2 53.3333333333333 103.4666666666667 56.5333333333333 92.8 61.8666666666667L194.1333333333333 163.2C199.4666666666667 152.5333333333333 202.6666666666667 140.8 202.6666666666667 128C202.6666666666667 86.4 169.6 53.3333333333333 128 53.3333333333333z" />
490
- <glyph glyph-name="ban"
491
- unicode="&#xEAA1;"
492
- horiz-adv-x="256" d="M218.6666666666667 218.6666666666667C218.6666666666667 218.6666666666667 218.6666666666667 218.6666666666667 218.6666666666667 218.6666666666667C195.2 242.1333333333334 163.2 256 128 256C57.6 256 0 198.4 0 128C0 92.8 13.8666666666667 60.8 37.3333333333333 37.3333333333333C37.3333333333333 37.3333333333333 37.3333333333333 37.3333333333333 37.3333333333333 37.3333333333333S37.3333333333333 37.3333333333333 37.3333333333333 37.3333333333333C60.8 13.8666666666667 92.8 0 128 0C198.4 0 256 57.6 256 128C256 163.2 242.1333333333334 195.2 218.6666666666667 218.6666666666667C218.6666666666667 218.6666666666667 218.6666666666667 218.6666666666667 218.6666666666667 218.6666666666667zM128 234.6666666666667C153.6 234.6666666666667 177.0666666666667 226.1333333333334 195.2 210.1333333333333L45.8666666666667 60.8C29.8666666666667 78.9333333333333 21.3333333333333 102.4 21.3333333333333 128C21.3333333333333 186.6666666666667 69.3333333333333 234.6666666666667 128 234.6666666666667zM128 21.3333333333333C102.4 21.3333333333333 78.9333333333333 29.8666666666667 60.8 45.8666666666667L210.1333333333333 195.2C226.1333333333334 177.0666666666667 234.6666666666667 153.6 234.6666666666667 128C234.6666666666667 69.3333333333333 186.6666666666667 21.3333333333333 128 21.3333333333333z" />
493
- <glyph glyph-name="banana"
494
- unicode="&#xEAA2;"
495
- horiz-adv-x="256" d="M130.1333333333333 132.2666666666667C154.6666666666667 121.6 178.1333333333333 115.2 198.4 115.2C210.1333333333333 115.2 217.6 117.3333333333334 221.8666666666667 118.4L222.9333333333333 118.4C226.1333333333333 119.4666666666667 229.3333333333333 119.4666666666667 232.5333333333333 119.4666666666667C236.8 119.4666666666667 241.0666666666667 118.4 244.2666666666667 117.3333333333334C245.3333333333333 119.4666666666667 246.4 120.5333333333333 246.4 122.6666666666667C252.8 140.8 246.4 156.8 236.8 165.3333333333334C230.4 171.7333333333334 221.8666666666667 172.8 214.4 168.5333333333334L213.3333333333333 167.4666666666667C202.6666666666667 162.1333333333334 170.6666666666667 145.0666666666667 106.6666666666667 156.8C101.3333333333333 160 94.9333333333333 161.0666666666667 88.5333333333333 163.2C97.0666666666667 150.4 108.8 141.8666666666667 130.1333333333333 132.2666666666667zM249.6 89.6C244.2666666666666 97.0666666666667 236.8 100.2666666666667 228.2666666666666 98.1333333333334L227.2 98.1333333333334C215.4666666666667 94.9333333333334 180.2666666666666 86.4 121.6 113.0666666666667C61.8666666666667 139.7333333333334 57.6 168.5333333333334 53.3333333333333 232.5333333333334C53.3333333333333 234.6666666666667 51.2 237.8666666666667 49.0666666666667 240C46.9333333333333 241.0666666666667 43.7333333333333 242.1333333333334 41.6 242.1333333333334L14.9333333333333 238.9333333333334C9.6 237.8666666666667 5.3333333333333 233.6 5.3333333333333 228.2666666666667L6.4 190.9333333333333C4.2666666666667 181.3333333333334 -5.3333333333333 140.8 4.2666666666667 101.3333333333333C17.0666666666667 45.8666666666667 82.1333333333333 14.9333333333333 138.6666666666667 13.8666666666667C141.8666666666667 13.8666666666667 144 13.8666666666667 147.2 13.8666666666667C196.2666666666667 13.8666666666667 235.7333333333333 26.6666666666667 248.5333333333333 45.8666666666667C259.2 61.8666666666667 257.0666666666667 80 249.6 89.6z" />
496
- <glyph glyph-name="bank"
497
- unicode="&#xEAA3;"
498
- horiz-adv-x="256" d="M245.3333333333333 32H234.6666666666667V117.3333333333333H213.3333333333333V32H170.6666666666667V117.3333333333333H149.3333333333333V32H106.6666666666667V117.3333333333333H85.3333333333333V32H42.6666666666667V117.3333333333333H21.3333333333333V32H10.6666666666667C4.7786666666667 32 0 27.232 0 21.3333333333333S4.7786666666667 10.6666666666667 10.6666666666667 10.6666666666667H245.3333333333333C251.2213333333333 10.6666666666667 256 15.4346666666667 256 21.3333333333333S251.2213333333333 32 245.3333333333333 32zM250.4426666666667 190.6986666666667L133.1093333333333 254.6986666666667C129.92 256.4266666666667 126.08 256.4266666666667 122.8906666666667 254.6986666666667L5.5573333333333 190.6986666666667C2.1333333333333 188.832 0 185.2373333333334 0 181.3333333333334V149.3333333333334C0 143.4346666666667 4.7786666666667 138.6666666666667 10.6666666666667 138.6666666666667H245.3333333333333C251.2213333333333 138.6666666666667 256 143.4346666666667 256 149.3333333333334V181.3333333333334C256 185.2373333333334 253.8666666666667 188.832 250.4426666666667 190.6986666666667zM128 170.6666666666667C116.2133333333334 170.6666666666667 106.6666666666667 180.2133333333334 106.6666666666667 192C106.6666666666667 203.7866666666667 116.2133333333334 213.3333333333333 128 213.3333333333333C139.7866666666667 213.3333333333333 149.3333333333334 203.7866666666667 149.3333333333334 192C149.3333333333333 180.2133333333334 139.7866666666667 170.6666666666667 128 170.6666666666667z" />
499
- <glyph glyph-name="barbecue-15"
500
- unicode="&#xEAA4;"
501
- horiz-adv-x="256" d="M10.6666666666667 149.3333333333334C10.6666666666667 105.7173333333333 34.6346666666667 67.6586666666667 70.048 47.4346666666667L54.4106666666667 15.3386666666667L73.5893333333333 5.9946666666667L89.4826666666667 38.624C101.568 34.4106666666667 114.496 32 128 32S154.432 34.4106666666667 166.5173333333334 38.624L182.4106666666667 5.9946666666667L201.5893333333334 15.3386666666667L185.952 47.4346666666667C221.3653333333333 67.6586666666667 245.3333333333333 105.7173333333333 245.3333333333333 149.3333333333334H10.6666666666667zM160 96H96V117.3333333333334H160V96zM242.56 170.6666666666667C232.5973333333333 196.352 200.5013333333333 222.208 159.0933333333333 231.2533333333334C155.7866666666667 245.408 143.136 256 128 256C112.8426666666667 256 100.1813333333333 245.3866666666667 96.896 231.2106666666667C55.776 222.1226666666667 23.68 196.288 13.5146666666667 170.6666666666667H242.56z" />
502
- <glyph glyph-name="barbecue-tools"
503
- unicode="&#xEAA5;"
504
- horiz-adv-x="256" d="M96 256C89.6 256 85.3333333333333 251.7333333333333 85.3333333333333 245.3333333333334V192C85.3333333333333 180.2666666666667 75.7333333333333 170.6666666666667 64 170.6666666666667S42.6666666666667 180.2666666666667 42.6666666666667 192V245.3333333333334C42.6666666666667 251.7333333333333 38.4 256 32 256S21.3333333333333 251.7333333333333 21.3333333333333 245.3333333333334V192C21.3333333333333 171.7333333333334 35.2 155.7333333333334 53.3333333333333 150.4V106.6666666666667H42.6666666666667C36.2666666666667 106.6666666666667 32 102.4 32 96V32C32 13.8666666666667 45.8666666666667 0 64 0S96 13.8666666666667 96 32V96C96 102.4 91.7333333333333 106.6666666666667 85.3333333333333 106.6666666666667H74.6666666666667V150.4C92.8 154.6666666666667 106.6666666666667 171.7333333333334 106.6666666666667 192V245.3333333333334C106.6666666666667 251.7333333333333 102.4 256 96 256zM234.6666666666667 256H149.3333333333333C142.9333333333333 256 138.6666666666667 251.7333333333333 138.6666666666667 245.3333333333334V160C138.6666666666667 153.6 142.9333333333333 149.3333333333333 149.3333333333333 149.3333333333333H181.3333333333333V106.6666666666667H170.6666666666667C164.2666666666667 106.6666666666667 160 102.4 160 96V32C160 13.8666666666667 173.8666666666667 0 192 0S224 13.8666666666667 224 32V96C224 102.4 219.7333333333333 106.6666666666667 213.3333333333334 106.6666666666667H202.6666666666667V149.3333333333333H234.6666666666667C241.0666666666667 149.3333333333333 245.3333333333334 153.6 245.3333333333334 160V245.3333333333334C245.3333333333333 251.7333333333333 241.0666666666667 256 234.6666666666667 256zM160 170.6666666666667V234.6666666666667H181.3333333333334V170.6666666666667H160zM224 170.6666666666667H202.6666666666667V234.6666666666667H224V170.6666666666667z" />
505
- <glyph glyph-name="barbecue"
506
- unicode="&#xEAA6;"
507
- horiz-adv-x="256" d="M128 202.6666666666667C134.4 202.6666666666667 138.6666666666667 206.9333333333333 138.6666666666667 213.3333333333334V245.3333333333334C138.6666666666667 251.7333333333333 134.4 256 128 256C121.6 256 117.3333333333333 251.7333333333333 117.3333333333333 245.3333333333334V213.3333333333334C117.3333333333333 206.9333333333333 121.6 202.6666666666667 128 202.6666666666667zM85.3333333333333 181.3333333333334C91.7333333333333 181.3333333333334 96 185.6 96 192V224C96 230.4 91.7333333333333 234.6666666666667 85.3333333333333 234.6666666666667C78.9333333333333 234.6666666666667 74.6666666666667 230.4 74.6666666666667 224V192C74.6666666666667 185.6 78.9333333333333 181.3333333333334 85.3333333333333 181.3333333333334zM170.6666666666667 181.3333333333334C177.0666666666667 181.3333333333334 181.3333333333333 185.6 181.3333333333333 192V224C181.3333333333333 230.4 177.0666666666666 234.6666666666667 170.6666666666667 234.6666666666667C164.2666666666667 234.6666666666667 160 230.4 160 224V192C160 185.6 164.2666666666667 181.3333333333334 170.6666666666667 181.3333333333334zM234.6666666666667 160H21.3333333333333C14.9333333333333 160 10.6666666666667 155.7333333333334 10.6666666666667 149.3333333333333C10.6666666666667 146.1333333333333 10.6666666666667 138.6666666666667 10.6666666666667 138.6666666666667H245.3333333333333C245.3333333333333 138.6666666666667 245.3333333333333 146.1333333333333 245.3333333333333 149.3333333333333C245.3333333333333 155.7333333333334 241.0666666666667 160 234.6666666666667 160zM70.4 46.9333333333333L54.4 14.9333333333333L73.6 5.3333333333333L89.6 38.4C101.3333333333333 34.1333333333333 114.1333333333333 32 128 32C141.8666666666667 32 154.6666666666667 34.1333333333333 166.4 38.4L182.4 5.3333333333333L201.6 14.9333333333333L185.6 46.9333333333333C212.2666666666667 61.8666666666667 232.5333333333334 87.4666666666667 241.0666666666667 117.3333333333333H14.9333333333333C23.4666666666667 87.4666666666667 43.7333333333333 61.8666666666667 70.4 46.9333333333333z" />
508
- <glyph glyph-name="barcode-qr"
509
- unicode="&#xEAA7;"
510
- horiz-adv-x="256" d="M117.3333333333333 138.6666666666667H0V256H117.3333333333333V138.6666666666667zM21.3333333333333 160H96V234.6666666666667H21.3333333333333V160zM256 138.6666666666667H138.6666666666667V256H256V138.6666666666667zM160 160H234.6666666666667V234.6666666666667H160V160zM117.3333333333333 0H0V117.3333333333334H117.3333333333333V0zM21.3333333333333 21.3333333333333H96V96H21.3333333333333V21.3333333333333zM256 42.6666666666667L234.6666666666667 42.6666666666667L234.6666666666667 96L213.3333333333333 96L213.3333333333333 64L149.3333333333333 64L149.3333333333333 117.3333333333334L170.6666666666667 117.3333333333334L170.6666666666667 85.3333333333333L192 85.3333333333333L192 117.3333333333334L256 117.3333333333334zM256 0L149.3333333333333 0L149.3333333333333 42.6666666666667L170.6666666666667 42.6666666666667L170.6666666666667 21.3333333333333L256 21.3333333333333zM42.6666666666667 213.3333333333334H74.6666666666667V181.3333333333334H42.6666666666667V213.3333333333334zM181.3333333333333 213.3333333333334H213.3333333333333V181.3333333333334H181.3333333333333V213.3333333333334zM42.6666666666667 74.6666666666667H74.6666666666667V42.6666666666667H42.6666666666667V74.6666666666667z" />
511
- <glyph glyph-name="barcode-scan"
512
- unicode="&#xEAA8;"
513
- horiz-adv-x="256" d="M160 256H213.3333333333333V149.3333333333334H160V256zM42.6666666666667 256H96V149.3333333333334H42.6666666666667V256zM256 128H0V0H21.3333333333333V106.6666666666667H42.6666666666667V53.3333333333334H96V106.6666666666667H117.3333333333333V53.3333333333334H138.6666666666667V106.6666666666667H160V53.3333333333334H213.3333333333333V106.6666666666667H234.6666666666667V0H256V128zM0 256H21.3333333333333V149.3333333333334H0V256zM117.3333333333333 256H138.6666666666667V149.3333333333334H117.3333333333333V256zM234.6666666666667 256H256V149.3333333333334H234.6666666666667V256z" />
514
- <glyph glyph-name="barcode"
515
- unicode="&#xEAA9;"
516
- horiz-adv-x="256" d="M160 256H213.3333333333333V53.3333333333333H160V256zM42.6666666666667 256H96V53.3333333333333H42.6666666666667V256zM117.3333333333333 256H138.6666666666667V53.3333333333333H117.3333333333333V256zM0 256H21.3333333333333V0H0V256zM234.6666666666667 256H256V0H234.6666666666667V256z" />
517
- <glyph glyph-name="bars-2"
518
- unicode="&#xEAAA;"
519
- horiz-adv-x="256" d="M106.6666666666667 229.8815146625042H149.3333333333333V26.1184853374958H106.6666666666667V229.8815146625042zM0 145.5851520041625H42.6666666666667V110.4148479958375H0V145.5851520041625zM213.3333333333333 145.5851520041625H256V110.4148479958375H213.3333333333333V145.5851520041625z" />
520
- <glyph glyph-name="bars-rotate"
521
- unicode="&#xEAAB;"
522
- horiz-adv-x="256" d="M117.3333333333333 256H138.6666666666667V192H117.3333333333333V256zM210.9671946783449 226.0521460797308L226.0521397450116 210.9672010130642L180.7973045450116 165.7123658130642L165.7123594783449 180.7973108797308L210.9671946783449 226.0521460797308zM192 138.6666666666667H256V117.3333333333334H192V138.6666666666667zM226.0521211464939 45.0328185215587L210.9671760798272 29.947873454892L165.7123408798272 75.202708654892L180.7972859464939 90.2876537215587L226.0521211464939 45.0328185215587zM117.3333333333333 64H138.6666666666667V0H117.3333333333333V64zM45.0328093750648 29.9478805333333L29.9478643083981 45.0328256L75.2026995083981 90.2876608L90.2876445750648 75.2027157333333L45.0328093750648 29.9478805333333zM0 138.6666666666667H64V117.3333333333334H0V138.6666666666667zM29.9478609334298 210.9671963581722L45.0328060000964 226.0521414248388L90.2876412000964 180.7973062248388L75.2026961334298 165.7123611581722L29.9478609334298 210.9671963581722z" />
523
- <glyph glyph-name="bars"
524
- unicode="&#xEAAC;"
525
- horiz-adv-x="256" d="M117.3333333333333 256H138.6666666666667V192H117.3333333333333V256zM165.712 180.7964672L210.9664 226.0508672L226.0512 210.9660672L180.7968 165.7116672L165.712 180.7964672zM192 138.6666666666667H256V117.3333333333334H192V138.6666666666667zM165.7106005333333 75.2021333333333L180.7954005333333 90.2869333333333L226.0498005333334 45.0325333333333L210.9650005333333 29.9477333333333L165.7106005333333 75.2021333333333zM117.3333333333333 64H138.6666666666667V0H117.3333333333333V64zM29.9456 45.0339328L75.2 90.2883328L90.2848 75.2035328L45.0304 29.9491328L29.9456 45.0339328zM0 138.6666666666667H64V117.3333333333334H0V138.6666666666667zM29.9469994666667 210.9674666666667L45.0317994666667 226.0522666666667L90.2861994666667 180.7978666666667L75.2013994666667 165.7130666666667L29.9469994666667 210.9674666666667z" />
526
- <glyph glyph-name="baseball-ball"
527
- unicode="&#xEAAD;"
528
- horiz-adv-x="256" d="M119.0065109333333 169.0130208C111.2272138666667 157.23112 106.6666666666667 143.1445312 106.6666666666667 128S111.2272138666667 98.76888 119.0065109333333 86.9869792C130.9062496 96.7766922666667 138.6666666666667 111.4251306666667 138.6666666666667 128S130.9062496 159.2233077333334 119.0065109333333 169.0130208zM243.6601557333334 169.0130208C231.7604170666667 159.2233077333334 224 144.5748693333334 224 128S231.7604170666667 96.7766922666667 243.6601557333334 86.9869792C251.4394528 98.76888 256 112.8554688 256 128S251.4394528 157.23112 243.6601557333334 169.0130208zM202.6666666666667 128C202.6666666666667 150.9010421333333 213.0507808 171.4036458666667 229.3333333333333 185.111328C216.342448 196.0468746666667 199.6041664 202.6666666666667 181.3333333333333 202.6666666666667S146.3242186666667 196.0468746666667 133.3333333333333 185.111328C149.6158858666667 171.4036458666667 160 150.9010421333333 160 128S149.6158858666667 84.5963541333333 133.3333333333334 70.888672C146.3242186666667 59.9531253333333 163.0625002666667 53.3333333333333 181.3333333333333 53.3333333333333S216.342448 59.9531253333333 229.3333333333333 70.888672C213.0507808 84.5963541333334 202.6666666666667 105.0989578666667 202.6666666666667 128zM85.3333333333333 170.6666666666667H32C26.1093749333333 170.6666666666667 21.3333333333333 175.4427082666667 21.3333333333333 181.3333333333334S26.1093749333333 192 32 192H85.3333333333333C91.2239584 192 96 187.2239584 96 181.3333333333334S91.2239584 170.6666666666667 85.3333333333333 170.6666666666667zM85.3333333333333 64H32C26.1093749333333 64 21.3333333333333 68.7760416 21.3333333333333 74.6666666666667S26.1093749333333 85.3333333333333 32 85.3333333333333H85.3333333333333C91.2239584 85.3333333333333 96 80.5572917333333 96 74.6666666666667S91.2239584 64 85.3333333333333 64zM64 117.3333333333334H10.6666666666667C4.7760416 117.3333333333334 0 122.1093749333334 0 128S4.7760416 138.6666666666667 10.6666666666667 138.6666666666667H64C69.8906250666667 138.6666666666667 74.6666666666667 133.8906250666667 74.6666666666667 128S69.8906250666667 117.3333333333334 64 117.3333333333334z" />
529
- <glyph glyph-name="baseball-bat"
530
- unicode="&#xEAAE;"
531
- horiz-adv-x="256" d="M149.3333333333333 117.3333333333334A32 32 0 0 1 213.3333333333333 117.3333333333334A32 32 0 0 1 149.3333333333333 117.3333333333334M239.119792 239.1145834666667C225.0156256 253.2187498666667 200.4166666666667 253.2187498666667 186.3229173333333 239.1145834666667L76.9531253333333 129.75C65.9635413333333 118.7604170666667 61.7291669333333 102.7083328 58.3333333333333 89.8072917333333C57.0625002666667 84.9843754666667 55.3177088 78.3750005333333 54.3281248 76.9531253333333L24.1562496 46.7812501333333C19.9895829333333 50.9479168 13.2395829333333 50.9479168 9.0729162666667 46.7812501333333S4.9062496 35.8645834666667 9.0729162666667 31.6979168L31.6979168 9.0729162666667C35.8645834666667 4.9062496 42.6145834666667 4.9062496 46.7812501333333 9.0729162666667S50.9479168 19.9895829333333 46.7812501333333 24.1562496L46.7766933333333 24.1608064L76.5781248 54C78.1927082666667 55.0937504 84.5156245333333 56.7760416 89.130208 58C102.2812501333333 61.4947914666667 118.6406250666667 65.8437504 129.75 76.9479168L138.5755210666667 85.7740885333333C132.0143232 94.6360672 128 105.4856768 128 117.3333333333334C128 146.7395829333334 151.9270837333334 170.6666666666667 181.3333333333333 170.6666666666667C193.1796874666667 170.6666666666667 204.0286453333333 166.6529952 212.8906250666667 160.092448L239.1145834666667 186.3177088C246.1666666666667 193.369792 250.0520832 202.7447925333334 250.0520832 212.7187509333334S246.1666666666667 232.0677088 239.119792 239.1145834666667z" />
532
- <glyph glyph-name="baseball"
533
- unicode="&#xEAAF;"
534
- horiz-adv-x="256" d="M217.9082026666667 203.25C209.6992181333333 196.7532554666667 202.5807285333333 188.9648437333334 196.8567701333333 180.1653642666667L206.3124992 175.4374997333334L196.7708330666667 156.3541664L187.3294272 161.0748693333334C184.7011722666667 153.9485674666667 182.8300778666667 146.4654944 181.9628906666667 138.6666666666667H192V117.3333333333334H181.9628906666667C182.8300778666667 109.5345056 184.7011722666667 102.0514325333334 187.3294272 94.9251306666667L196.7708330666667 99.6458336L206.3124992 80.5625002666667L196.8567701333334 75.8346357333334C202.5807285333334 67.0351562666667 209.6992181333334 59.2467456 217.9082026666667 52.75C235.0013024 73.1380213333334 245.3333333333333 99.3756512 245.3333333333333 128S235.0013024 182.8619786666667 217.9082026666667 203.25zM177.7363285333333 66.2740885333334L165.8958336 60.3541664L156.3541674666667 79.4374997333334L168.1484384 85.3346346666667C164.1959637333333 95.4121098666667 161.5559893333333 106.1315104 160.5403648 117.3333333333334H149.3333333333333V138.6666666666667H160.5403648C161.5559893333333 149.8684896 164.1959637333333 160.5878901333333 168.1484373333333 170.6653642666667L156.3541664 176.5624992L165.8958325333333 195.6458325333333L177.7363274666667 189.7259104C184.4882816 200.5794272 192.8561194666667 210.3242186666667 202.6666666666667 218.4381514666667C182.3652341333333 235.2285152 156.3417973333333 245.3333333333334 128 245.3333333333334S73.6347658666667 235.2285152 53.3333333333333 218.4381514666667C63.1438805333333 210.3242186666667 71.5117184 200.5794272 78.2636714666667 189.7259114666667L90.1041664 195.6458336L99.6458325333333 176.5625002666667L87.8515626666667 170.6653642666667C91.8040362666667 160.5878901333334 94.4440106666667 149.8684896 95.4596352 138.6666666666667H106.6666666666667V117.3333333333334H95.4596352C94.4440106666667 106.1315104 91.8040362666667 95.4121098666667 87.8515626666667 85.3346357333334L99.6458336 79.4375008L90.1041674666667 60.3541674666667L78.2636725333333 66.2740896C71.5117184 55.4205728 63.1438805333333 45.6757813333333 53.3333333333333 37.5618485333333C73.6347658666667 20.7714848 99.6582026666667 10.6666666666667 128 10.6666666666667S182.3652341333333 20.7714848 202.6666666666667 37.5618485333333C192.8561194666667 45.6757813333333 184.4882816 55.4205728 177.7363285333333 66.2740885333334zM38.0917973333333 203.25C20.9986976 182.8619786666667 10.6666666666667 156.6243488 10.6666666666667 128S20.9986976 73.1380213333333 38.0917973333333 52.75C46.3007818666667 59.2467445333333 53.4192714666667 67.0351562666667 59.1432298666667 75.8346357333333L49.6875008 80.5625002666667L59.2291669333333 99.6458336L68.6705728 94.9251306666667C71.2988277333333 102.0514325333334 73.1699221333333 109.5345056 74.0371093333333 117.3333333333334H64V138.6666666666667H74.0371093333333C73.1699221333333 146.4654944 71.2988277333333 153.9485674666667 68.6705728 161.0748693333334L59.2291669333333 156.3541664L49.6874997333333 175.4374997333334L59.1432288 180.1653642666667C53.4192704 188.9648437333334 46.3007808 196.7532554666667 38.0917973333333 203.25z" />
535
- <glyph glyph-name="basket-add"
536
- unicode="&#xEAB0;"
537
- horiz-adv-x="256" d="M245.3333333333333 181.3333333333334H208.8533333333333L169.2586666666667 250.624C166.3466666666667 255.7333333333334 159.8293333333334 257.5253333333333 154.7093333333334 254.592C149.6 251.6693333333334 147.8186666666667 245.152 150.7413333333334 240.0426666666667L184.288 181.3333333333334H71.712L105.2586666666667 240.0426666666667C108.1813333333333 245.152 106.4 251.6693333333334 101.2906666666667 254.592C96.1813333333333 257.5253333333333 89.664 255.7333333333334 86.7413333333333 250.624L47.1466666666667 181.3333333333334H10.6666666666667C4.7786666666667 181.3333333333334 0 176.5653333333334 0 170.6666666666667V149.3333333333334C0 143.4346666666667 4.7786666666667 138.6666666666667 10.6666666666667 138.6666666666667H245.3333333333333C251.2213333333333 138.6666666666667 256 143.4346666666667 256 149.3333333333334V170.6666666666667C256 176.5653333333334 251.2213333333333 181.3333333333334 245.3333333333333 181.3333333333334zM170.6666666666667 32C170.6666666666667 65.6106666666667 201.4613333333333 90.9973333333333 234.6666666666667 84.256V117.3333333333334H21.3333333333333V10.6666666666667C21.3333333333333 4.7786666666667 26.112 0 32 0H181.5786666666667C174.8266666666667 8.9386666666667 170.6666666666667 19.936 170.6666666666667 32zM256 42.6666666666667L234.6666666666667 42.6666666666667L234.6666666666667 64L213.3333333333333 64L213.3333333333333 42.6666666666667L192 42.6666666666667L192 21.3333333333333L213.3333333333333 21.3333333333333L213.3333333333333 0L234.6666666666667 0L234.6666666666667 21.3333333333333L256 21.3333333333333z" />
538
- <glyph glyph-name="basket-edit"
539
- unicode="&#xEAB1;"
540
- horiz-adv-x="256" d="M245.3333333333333 181.3333333333334H208.8533333333333L169.2586666666667 250.624C166.3466666666667 255.7333333333334 159.8293333333334 257.5253333333333 154.7093333333334 254.592C149.6 251.6693333333334 147.8186666666667 245.152 150.7413333333334 240.0426666666667L184.288 181.3333333333334H71.712L105.2586666666667 240.0426666666667C108.1813333333333 245.152 106.4 251.6693333333334 101.2906666666667 254.592C96.1813333333333 257.5253333333333 89.664 255.7333333333334 86.7413333333333 250.624L47.1466666666667 181.3333333333334H10.6666666666667C4.7786666666667 181.3333333333334 0 176.5653333333334 0 170.6666666666667V149.3333333333334C0 143.4346666666667 4.7786666666667 138.6666666666667 10.6666666666667 138.6666666666667H245.3333333333333C251.2213333333333 138.6666666666667 256 143.4346666666667 256 149.3333333333334V170.6666666666667C256 176.5653333333334 251.2213333333333 181.3333333333334 245.3333333333333 181.3333333333334zM225.28 30.6986666666667C219.2853333333333 24.704 211.1466666666667 21.3333333333333 202.6666666666667 21.3333333333333H170.6666666666667C164.7786666666667 21.3333333333333 160 26.112 160 32V64C160 72.4906666666667 163.3706666666667 80.6293333333333 169.376 86.624L200.0853333333333 117.3333333333334H21.3333333333333V10.6666666666667C21.3333333333333 4.7786666666667 26.112 0 32 0H224C229.888 0 234.6666666666667 4.7786666666667 234.6666666666667 10.6666666666667V40.0853333333334L225.28 30.6986666666667zM250.6666666666667 112L250.6666666666667 112C243.552 119.1146666666667 232.032 119.1146666666667 224.9173333333333 112L184.4586666666667 71.5413333333333C182.4533333333333 69.536 181.3333333333333 66.8266666666667 181.3333333333333 64V42.6666666666667H202.6666666666667C205.4933333333333 42.6666666666667 208.2026666666667 43.7866666666667 210.208 45.792L250.6666666666667 86.2506666666667C257.7813333333334 93.3653333333334 257.7813333333334 104.8853333333333 250.6666666666667 112z" />
541
- <glyph glyph-name="basket-favorite"
542
- unicode="&#xEAB2;"
543
- horiz-adv-x="256" d="M245.3333333333333 192H202.7626666666666L169.2586666666667 250.624C166.3466666666666 255.7333333333334 159.8293333333333 257.5146666666667 154.7093333333333 254.592C149.6 251.68 147.8186666666667 245.152 150.7413333333333 240.0426666666667L178.1866666666667 192H77.8026666666667L105.2586666666666 240.0426666666667C108.1813333333333 245.152 106.4 251.6693333333334 101.2906666666666 254.592C96.1813333333333 257.5146666666667 89.664 255.7333333333333 86.7413333333333 250.624L53.2373333333333 192H10.6666666666667C4.7786666666667 192 0 187.232 0 181.3333333333334V149.3333333333334C0 143.4346666666667 4.7786666666667 138.6666666666667 10.6666666666667 138.6666666666667H21.3333333333333V21.3333333333333C21.3333333333333 15.4346666666667 26.112 10.6666666666667 32 10.6666666666667H138.6666666666667V32H42.6666666666667V138.6666666666667H245.3333333333333C251.2213333333333 138.6666666666667 256 143.4346666666667 256 149.3333333333334V181.3333333333334C256 187.232 251.2213333333333 192 245.3333333333333 192zM202.6666666666667 82.7733333333334C192.4693333333334 98.3893333333334 170.816 100.512 157.856 87.3386666666667C146.496 75.7973333333334 146.496 57.0773333333334 157.856 45.5360000000001L202.6666666666667 0L247.488 45.536C258.848 57.0773333333333 258.848 75.7973333333333 247.488 87.3386666666667C234.5066666666667 100.5226666666667 212.8533333333333 98.368 202.6666666666667 82.7733333333334z" />
544
- <glyph glyph-name="basket-remove"
545
- unicode="&#xEAB3;"
546
- horiz-adv-x="256" d="M245.3333333333333 181.3333333333334H208.8533333333333L169.2586666666667 250.624C166.3466666666667 255.7333333333334 159.8293333333334 257.5253333333333 154.7093333333334 254.592C149.6 251.6693333333334 147.8186666666667 245.152 150.7413333333334 240.0426666666667L184.288 181.3333333333334H71.712L105.2586666666667 240.0426666666667C108.1813333333333 245.152 106.4 251.6693333333334 101.2906666666667 254.592C96.1813333333333 257.5253333333333 89.664 255.7333333333334 86.7413333333333 250.624L47.1466666666667 181.3333333333334H10.6666666666667C4.7786666666667 181.3333333333334 0 176.5653333333334 0 170.6666666666667V149.3333333333334C0 143.4346666666667 4.7786666666667 138.6666666666667 10.6666666666667 138.6666666666667H245.3333333333333C251.2213333333333 138.6666666666667 256 143.4346666666667 256 149.3333333333334V170.6666666666667C256 176.5653333333334 251.2213333333333 181.3333333333334 245.3333333333333 181.3333333333334zM170.6666666666667 32C170.6666666666667 65.6106666666667 201.4613333333333 90.9973333333333 234.6666666666667 84.256V117.3333333333334H21.3333333333333V10.6666666666667C21.3333333333333 4.7786666666667 26.112 0 32 0H181.5786666666667C174.8266666666667 8.9386666666667 170.6666666666667 19.936 170.6666666666667 32zM192 42.6666666666667H256V21.3333333333333H192V42.6666666666667z" />
547
- <glyph glyph-name="basket-search"
548
- unicode="&#xEAB4;"
549
- horiz-adv-x="256" d="M245.3333333333333 192H202.7626666666666L169.2586666666667 250.624C166.3466666666666 255.7333333333334 159.8186666666667 257.5146666666667 154.7093333333333 254.592C149.6 251.68 147.8186666666667 245.152 150.7413333333333 240.0426666666667L178.1866666666667 192H77.8026666666667L105.2586666666666 240.0426666666667C108.1813333333333 245.152 106.4 251.6693333333334 101.2906666666666 254.592C96.1813333333333 257.5146666666667 89.664 255.7333333333333 86.7413333333333 250.624L53.2373333333333 192H10.6666666666667C4.7786666666667 192 0 187.232 0 181.3333333333334V149.3333333333334C0 143.4346666666667 4.7786666666667 138.6666666666667 10.6666666666667 138.6666666666667H21.3333333333333V21.3333333333333C21.3333333333333 15.4346666666667 26.112 10.6666666666667 32 10.6666666666667H128V32H42.6666666666667V138.6666666666667H245.3333333333333C251.2213333333333 138.6666666666667 256 143.4346666666667 256 149.3333333333334V181.3333333333334C256 187.232 251.2213333333333 192 245.3333333333333 192zM234.6666666666667 64C234.6666666666667 87.5306666666667 215.5306666666667 106.6666666666667 192 106.6666666666667S149.3333333333334 87.5306666666667 149.3333333333334 64S168.4693333333334 21.3333333333333 192 21.3333333333333C199.8933333333334 21.3333333333333 207.1893333333333 23.6266666666667 213.536 27.3813333333333L237.792 3.1253333333333L252.8746666666667 18.208L228.6186666666667 42.464C232.3733333333334 48.8106666666667 234.6666666666667 56.1066666666667 234.6666666666667 64zM192 42.6666666666667C180.2346666666667 42.6666666666667 170.6666666666667 52.2346666666667 170.6666666666667 64S180.2346666666667 85.3333333333334 192 85.3333333333334S213.3333333333334 75.7653333333334 213.3333333333334 64S203.7653333333333 42.6666666666667 192 42.6666666666667z" />
550
- <glyph glyph-name="basket-share"
551
- unicode="&#xEAB5;"
552
- horiz-adv-x="256" d="M245.3333333333333 192H202.7626666666666L169.2586666666667 250.624C166.336 255.7333333333334 159.808 257.5466666666667 154.7093333333333 254.592C149.6 251.68 147.8186666666667 245.152 150.7413333333333 240.0426666666667L178.1866666666667 192H77.8026666666667L105.2586666666666 240.0426666666667C108.1813333333333 245.152 106.4 251.6693333333334 101.2906666666666 254.592C96.16 257.5573333333334 89.6533333333333 255.744 86.7413333333333 250.624L53.2373333333333 192H10.6666666666667C4.768 192 0 187.232 0 181.3333333333334V149.3333333333334C0 143.4346666666667 4.768 138.6666666666667 10.6666666666667 138.6666666666667H21.3333333333333V21.3333333333333C21.3333333333333 15.4346666666667 26.1013333333333 10.6666666666667 32 10.6666666666667H128V32H42.6666666666667V138.6666666666667H245.3333333333333C251.232 138.6666666666667 256 143.4346666666667 256 149.3333333333334V181.3333333333334C256 187.232 251.232 192 245.3333333333333 192zM224 64C235.7653333333334 64 245.3333333333334 73.568 245.3333333333334 85.3333333333333S235.7653333333334 106.6666666666667 224 106.6666666666667S202.6666666666667 97.0986666666667 202.6666666666667 85.3333333333333C202.6666666666667 85.216 202.6986666666667 85.1093333333334 202.6986666666667 84.992L180.9173333333334 71.9253333333334C177.856 73.6213333333334 174.4 74.6666666666667 170.6666666666667 74.6666666666667C158.9013333333333 74.6666666666667 149.3333333333333 65.0986666666667 149.3333333333333 53.3333333333333S158.9013333333333 32 170.6666666666667 32C174.4 32 177.856 33.0453333333333 180.9173333333333 34.7413333333333L202.6986666666667 21.6746666666667C202.6986666666667 21.5573333333334 202.6666666666667 21.4506666666667 202.6666666666667 21.3333333333333C202.6666666666667 9.568 212.2346666666667 0 224 0S245.3333333333334 9.568 245.3333333333334 21.3333333333333S235.7653333333334 42.6666666666667 224 42.6666666666667C220.2666666666667 42.6666666666667 216.8106666666667 41.6213333333334 213.7493333333334 39.9253333333334L191.968 52.992C191.968 53.1093333333333 192 53.216 192 53.3333333333333S191.968 53.5573333333333 191.968 53.6746666666667L213.7493333333333 66.7413333333333C216.8106666666667 65.0453333333333 220.2666666666667 64 224 64z" />
553
- <glyph glyph-name="basket-simple-add"
554
- unicode="&#xEAB6;"
555
- horiz-adv-x="256" d="M245.3333333333333 170.6666666666667H212.576L169.0453333333333 240.32C165.92 245.312 159.3386666666666 246.8266666666667 154.3466666666666 243.712C149.344 240.5866666666667 147.8293333333333 234.0053333333334 150.9546666666667 229.0133333333334L187.424 170.6666666666667H68.576L105.0453333333333 229.0133333333333C108.16 234.0053333333334 106.6453333333333 240.5866666666667 101.6533333333333 243.712C96.6613333333333 246.8266666666667 90.08 245.3226666666667 86.9546666666667 240.32L43.424 170.6666666666667H10.6666666666667C4.7786666666667 170.6666666666667 0 165.888 0 160V138.6666666666667C0 132.7786666666667 4.7786666666667 128 10.6666666666667 128H245.3333333333333C251.2213333333333 128 256 132.7786666666667 256 138.6666666666667V160C256 165.888 251.2213333333333 170.6666666666667 245.3333333333333 170.6666666666667zM160 32C160 61.4506666666667 183.8826666666667 85.3333333333333 213.3333333333333 85.3333333333333C217.056 85.3333333333333 220.6933333333333 84.9386666666667 224.2026666666667 84.2133333333333L231.6906666666667 106.6666666666667H21.0026666666667L42.9866666666667 18.7413333333334C44.1706666666667 13.9946666666667 48.4373333333333 10.6666666666667 53.3333333333333 10.6666666666667H164.5013333333333C161.6426666666667 17.2053333333333 160 24.4053333333333 160 32zM245.3333333333333 42.6666666666667L224 42.6666666666667L224 64L202.6666666666667 64L202.6666666666667 42.6666666666667L181.3333333333333 42.6666666666667L181.3333333333333 21.3333333333333L202.6666666666667 21.3333333333333L202.6666666666667 0L224 0L224 21.3333333333333L245.3333333333333 21.3333333333333z" />
556
- <glyph glyph-name="basket-simple-remove"
557
- unicode="&#xEAB7;"
558
- horiz-adv-x="256" d="M245.3333333333333 170.6666666666667H212.576L169.0453333333333 240.32C165.92 245.312 159.3386666666666 246.8266666666667 154.3466666666666 243.712C149.344 240.5866666666667 147.8293333333333 234.0053333333334 150.9546666666667 229.0133333333334L187.424 170.6666666666667H68.576L105.0453333333333 229.0133333333333C108.16 234.0053333333334 106.6453333333333 240.5866666666667 101.6533333333333 243.712C96.6613333333333 246.8266666666667 90.08 245.3226666666667 86.9546666666667 240.32L43.424 170.6666666666667H10.6666666666667C4.7786666666667 170.6666666666667 0 165.888 0 160V138.6666666666667C0 132.7786666666667 4.7786666666667 128 10.6666666666667 128H245.3333333333333C251.2213333333333 128 256 132.7786666666667 256 138.6666666666667V160C256 165.888 251.2213333333333 170.6666666666667 245.3333333333333 170.6666666666667zM160 21.3333333333333C160 50.784 183.8826666666667 74.6666666666667 213.3333333333333 74.6666666666667C215.8826666666666 74.6666666666667 218.3146666666667 74.2613333333333 220.768 73.92L231.6906666666667 106.6666666666667H21.0026666666667L42.9866666666667 18.7413333333334C44.1706666666667 13.9946666666667 48.4373333333333 10.6666666666667 53.3333333333333 10.6666666666667H161.0773333333334C160.3733333333333 14.112 160 17.6746666666667 160 21.3333333333333zM245.3333333333333 32L224 32L202.6666666666667 32L181.3333333333333 32L181.3333333333333 10.6666666666667L245.3333333333333 10.6666666666667z" />
559
- <glyph glyph-name="basket-simple"
560
- unicode="&#xEAB8;"
561
- horiz-adv-x="256" d="M21.0026666666667 106.6666666666667L42.9866666666667 18.7413333333334C44.1706666666667 13.9946666666667 48.4373333333333 10.6666666666667 53.3333333333333 10.6666666666667H192C196.5973333333333 10.6666666666667 200.6613333333334 13.6 202.1226666666667 17.9626666666667L231.6906666666667 106.6666666666667H21.0026666666667zM245.3333333333333 170.6666666666667H212.576L169.0453333333333 240.32C165.92 245.312 159.3386666666666 246.8266666666667 154.3466666666666 243.712C149.344 240.5866666666667 147.8293333333333 234.0053333333334 150.9546666666667 229.0133333333334L187.424 170.6666666666667H68.576L105.0453333333333 229.0133333333333C108.16 234.0053333333334 106.6453333333333 240.5866666666667 101.6533333333333 243.712C96.6613333333333 246.8266666666667 90.08 245.3226666666667 86.9546666666667 240.32L43.424 170.6666666666667H10.6666666666667C4.7786666666667 170.6666666666667 0 165.888 0 160V138.6666666666667C0 132.7786666666667 4.7786666666667 128 10.6666666666667 128H245.3333333333333C251.2213333333333 128 256 132.7786666666667 256 138.6666666666667V160C256 165.888 251.2213333333333 170.6666666666667 245.3333333333333 170.6666666666667z" />
562
- <glyph glyph-name="basket-update"
563
- unicode="&#xEAB9;"
564
- horiz-adv-x="256" d="M245.3333333333333 192H202.7626666666666L169.2586666666667 250.624C166.3466666666666 255.7333333333334 159.8293333333333 257.5146666666667 154.7093333333333 254.592C149.6 251.68 147.8186666666667 245.152 150.7413333333333 240.0426666666667L178.1866666666667 192H77.8026666666667L105.2586666666666 240.0426666666667C108.1813333333333 245.152 106.4 251.6693333333334 101.2906666666666 254.592C96.192 257.5146666666667 89.664 255.7333333333333 86.7413333333333 250.624L53.2373333333333 192H10.6666666666667C4.7786666666667 192 0 187.232 0 181.3333333333334V149.3333333333334C0 143.4346666666667 4.7786666666667 138.6666666666667 10.6666666666667 138.6666666666667H21.3333333333333V21.3333333333333C21.3333333333333 15.4346666666667 26.112 10.6666666666667 32 10.6666666666667H106.6666666666667V32H42.6666666666667V138.6666666666667H245.3333333333333C251.2213333333333 138.6666666666667 256 143.4346666666667 256 149.3333333333334V181.3333333333334C256 187.232 251.2213333333333 192 245.3333333333333 192zM192 117.3333333333334C167.648 117.3333333333334 146.4106666666667 100.8853333333333 140.352 77.3226666666667L161.0133333333333 72.0106666666667C164.6506666666667 86.1333333333333 177.3866666666667 96 192 96C200.6186666666667 96 208.7786666666667 92.4693333333333 214.7306666666667 86.4746666666667L197.5786666666667 74.016L243.1146666666667 64L247.68 110.4106666666667L232.0426666666667 99.0506666666666C222.0053333333333 110.464 207.4666666666667 117.3333333333334 192 117.3333333333334zM192 21.3333333333333C183.3813333333334 21.3333333333333 175.2213333333334 24.864 169.2693333333334 30.8586666666667L186.4213333333333 43.3173333333333L140.8853333333333 53.3333333333333L136.32 6.9226666666667L151.9573333333334 18.2826666666667C161.9946666666667 6.8693333333333 176.5333333333333 0 192 0C216.352 0 237.5893333333334 16.448 243.648 40.0106666666667L222.9866666666667 45.3226666666667C219.3493333333333 31.2 206.6133333333334 21.3333333333333 192 21.3333333333333z" />
565
- <glyph glyph-name="basket"
566
- unicode="&#xEABA;"
567
- horiz-adv-x="256" d="M245.3333333333333 181.3333333333334H208.8533333333333L169.2586666666667 250.624C166.3466666666667 255.7333333333334 159.8293333333334 257.5253333333333 154.7093333333334 254.592C149.6 251.6693333333334 147.8186666666667 245.152 150.7413333333334 240.0426666666667L184.288 181.3333333333334H71.712L105.2586666666667 240.0426666666667C108.1813333333333 245.152 106.4 251.6693333333334 101.2906666666667 254.592C96.1813333333333 257.5253333333333 89.664 255.7333333333334 86.7413333333333 250.624L47.1466666666667 181.3333333333334H10.6666666666667C4.7786666666667 181.3333333333334 0 176.5653333333334 0 170.6666666666667V149.3333333333334C0 143.4346666666667 4.7786666666667 138.6666666666667 10.6666666666667 138.6666666666667H245.3333333333333C251.2213333333333 138.6666666666667 256 143.4346666666667 256 149.3333333333334V170.6666666666667C256 176.5653333333334 251.2213333333333 181.3333333333334 245.3333333333333 181.3333333333334zM234.6666666666667 117.3333333333334H21.3333333333333V10.6666666666667C21.3333333333333 4.7786666666667 26.112 0 32 0H224C229.888 0 234.6666666666667 4.7786666666667 234.6666666666667 10.6666666666667V117.3333333333334zM96 32H74.6666666666667L74.6666666666667 85.3333333333333H96L96 32zM138.6666666666667 32H117.3333333333333L117.3333333333333 85.3333333333333H138.6666666666667L138.6666666666667 32zM181.3333333333333 32H160L160 85.3333333333333H181.3333333333333L181.3333333333333 32z" />
568
- <glyph glyph-name="basketball-12"
569
- unicode="&#xEABB;"
570
- horiz-adv-x="256" d="M240 234.6666666666667H16C7.1634112 234.6666666666667 0 227.5032554666667 0 218.6666666666667S7.1634112 202.6666666666667 16 202.6666666666667H21.3333333333333V8.2447914666667L77.2558592 57.9531242666667L128 18.4843754666667L178.7441408 57.9531253333333L234.6666666666667 8.2447914666667V202.6666666666667H240C248.8365888 202.6666666666667 256 209.8300778666667 256 218.6666666666667S248.8365888 234.6666666666667 240 234.6666666666667zM48.0592448 202.6666666666667H111.9407552L80 174.2747392L48.0592448 202.6666666666667zM63.9407552 160L42.6666666666667 141.0898442666667V178.9101557333334L63.9407552 160zM42.6666666666667 112.5397130666667L80 145.7252597333334L111.9414058666667 117.3333333333334L76.3444010666667 85.6914058666667L42.6666666666667 111.8841141333334V112.5397130666667zM96.0592448 160L128 188.3919274666667L159.9407552 160L128 131.6074218666667L96.0592448 160zM144.0592448 202.6666666666667H207.9407552L176 174.2747392L144.0592448 202.6666666666667zM176 145.7252608L213.3333333333333 112.5397141333334V111.8841152L179.6555989333333 85.6914069333334L144.0585941333333 117.3333333333334L176 145.7252608zM192.0592448 160L213.3333333333333 178.9101557333334V141.0898432L192.0592448 160zM42.6666666666667 55.7552085333334V84.8561194666667L60.1269536 71.2753898666667L42.6666666666667 55.7552085333334zM128 45.5156245333334L93.4733077333333 72.3691402666667L128 103.0592448L162.5266922666667 72.3691402666667L128 45.5156245333334zM195.8730464 71.2753909333333L213.3333333333333 84.8561194666667V55.7552085333333L195.8730464 71.2753909333333z" />
571
- <glyph glyph-name="basketball-13"
572
- unicode="&#xEABC;"
573
- horiz-adv-x="256" d="M181.3333333333333 128L74.6666666666667 128L80 74.6666666666667L176 74.6666666666667zM245.3333333333333 256H10.6666666666667C4.7760416 256 0 251.2239584 0 245.3333333333334V85.3333333333333C0 79.4427082666667 4.7760416 74.6666666666667 10.6666666666667 74.6666666666667H58.5605472L53.4394538666667 125.8776042666667L51.0937504 149.3333333333334H74.6666666666667H181.3333333333333H204.9062496L202.5605461333333 125.8776042666667L197.4394528 74.6666666666667H245.3333333333333C251.2239584 74.6666666666667 256 79.4427082666667 256 85.3333333333333V245.3333333333334C256 251.2239584 251.2239584 256 245.3333333333333 256zM106.6666666666667 32L128 21.3333333333333L149.3333333333333 32L170.6666666666667 21.3333333333333L181.3333333333333 128L74.6666666666667 128L85.3333333333333 21.3333333333333z" />
574
- <glyph glyph-name="bat"
575
- unicode="&#xEABD;"
576
- horiz-adv-x="256" d="M209.0729162666667 232.5208330666667L192.0520832 245.3333333333334L191.9895829333334 224.0312501333334C191.9394528 204.6184896 178.5729162666667 187.7656245333333 160 182.9654944C160 199.2981770666667 160 224 160 224L138.6666666666667 202.6666666666667H117.3333333333333L96 224C96 224 96 199.2981770666667 96 182.9654944C77.4270837333333 187.7656245333333 64.0605472 204.6184896 64.0104170666667 224.0312501333334L63.9479168 245.3333333333334L46.9270837333333 232.5208330666667C17.1041664 210.0781248 0 175.9218752 0 138.8020832C0 117.4583328 5.9062496 96.4427082666667 17.0937504 78.0312501333334L23.1354165333333 68.0781248L32.5208330666667 74.9687498666667C41.75 81.75 52.6354165333333 85.3333333333333 64 85.3333333333333C83.1458336 85.3333333333333 108.9583338666667 46.1822912 118.4583338666667 27.2239584L128 8.2031253333333L137.5416661333333 27.2239584C147.0416661333333 46.1822912 172.8541664 85.3333333333333 192 85.3333333333333C203.3645834666667 85.3333333333333 214.25 81.75 223.4791669333333 74.9687498666667L232.8645834666667 68.0781248L238.9062496 78.0312501333334C250.0937504 96.4427082666667 256 117.4583338666667 256 138.8020832C256 175.9218752 238.8958336 210.0781248 209.0729162666667 232.5208330666667z" />
577
- <glyph glyph-name="bath-tub"
578
- unicode="&#xEABE;"
579
- horiz-adv-x="256" d="M213.3333333333333 245.3333333333334C193.0666666666667 245.3333333333334 176 231.4666666666667 171.7333333333333 212.2666666666667C152.5333333333333 208 138.6666666666667 190.9333333333333 138.6666666666667 170.6666666666667V160H224V170.6666666666667C224 189.8666666666667 211.2 205.8666666666667 194.1333333333333 211.2C197.3333333333333 218.6666666666667 204.8 224 213.3333333333333 224C225.0666666666667 224 234.6666666666667 214.4 234.6666666666667 202.6666666666667V128H0V96C0 64 23.4666666666667 38.4 53.3333333333333 33.0666666666667V21.3333333333333C53.3333333333333 14.9333333333333 57.6 10.6666666666667 64 10.6666666666667C70.4 10.6666666666667 74.6666666666667 14.9333333333334 74.6666666666667 21.3333333333333V32H181.3333333333333V21.3333333333333C181.3333333333333 14.9333333333333 185.6 10.6666666666667 192 10.6666666666667C198.4 10.6666666666667 202.6666666666666 14.9333333333334 202.6666666666666 21.3333333333333V33.0666666666667C232.5333333333333 38.4 256 64 256 96V117.3333333333334V128V202.6666666666667C256 226.1333333333334 236.8 245.3333333333334 213.3333333333333 245.3333333333334z" />
580
- <glyph glyph-name="battery-81"
581
- unicode="&#xEABF;"
582
- horiz-adv-x="256" d="M192 202.6666666666667H10.6666666666667C4.7786666666667 202.6666666666667 0 197.8986666666667 0 192V64C0 58.1013333333333 4.7786666666667 53.3333333333333 10.6666666666667 53.3333333333333H192C197.888 53.3333333333333 202.6666666666666 58.1013333333333 202.6666666666666 64V192C202.6666666666667 197.8986666666667 197.888 202.6666666666667 192 202.6666666666667zM224 170.6666666666667H256V85.3333333333333H224V170.6666666666667z" />
583
- <glyph glyph-name="battery-83"
584
- unicode="&#xEAC0;"
585
- horiz-adv-x="256" d="M224 170.6666666666667H256V85.3333333333333H224V170.6666666666667zM192 202.6666666666667H10.6666666666667C4.7786666666667 202.6666666666667 0 197.8986666666667 0 192V64C0 58.1013333333333 4.7786666666667 53.3333333333333 10.6666666666667 53.3333333333333H192C197.888 53.3333333333333 202.6666666666666 58.1013333333333 202.6666666666666 64V192C202.6666666666667 197.8986666666667 197.888 202.6666666666667 192 202.6666666666667zM117.3333333333333 128V85.3333333333333L42.6666666666667 138.6666666666667L96 128V170.6666666666667L160 117.3333333333334L117.3333333333333 128z" />
586
- <glyph glyph-name="battery-half"
587
- unicode="&#xEAC1;"
588
- horiz-adv-x="256" d="M224 170.6666666666667H256V85.3333333333333H224V170.6666666666667zM192 202.6666666666667H10.6666666666667C4.7786666666667 202.6666666666667 0 197.8986666666667 0 192V64C0 58.1013333333333 4.7786666666667 53.3333333333333 10.6666666666667 53.3333333333333H192C197.888 53.3333333333333 202.6666666666666 58.1013333333333 202.6666666666666 64V192C202.6666666666667 197.8986666666667 197.888 202.6666666666667 192 202.6666666666667zM32 85.3333333333333V170.6666666666667H74.6666666666667L128 85.3333333333333H32z" />
589
- <glyph glyph-name="battery-level"
590
- unicode="&#xEAC2;"
591
- horiz-adv-x="256" d="M85.3333333333333 256H170.6666666666667V234.6666666666667H85.3333333333333V256zM202.6666666666667 213.3333333333334H53.3333333333333A10.666666666666666 10.666666666666666 0 0 1 42.6666666666667 202.6666666666667V10.6666666666667A10.666666666666666 10.666666666666666 0 0 1 53.3333333333333 0H202.6666666666667A10.666666666666666 10.666666666666666 0 0 1 213.3333333333333 10.6666666666667V202.6666666666667A10.666666666666666 10.666666666666666 0 0 1 202.6666666666667 213.3333333333334zM170.6666666666667 42.6666666666667H85.3333333333333V64H170.6666666666667zM170.6666666666667 85.3333333333333H85.3333333333333V106.6666666666667H170.6666666666667z" />
592
- <glyph glyph-name="battery-low"
593
- unicode="&#xEAC3;"
594
- horiz-adv-x="256" d="M224 170.6666666666667H256V85.3333333333333H224V170.6666666666667zM192 202.6666666666667H10.6666666666667C4.7786666666667 202.6666666666667 0 197.8986666666667 0 192V64C0 58.1013333333333 4.7786666666667 53.3333333333333 10.6666666666667 53.3333333333333H192C197.888 53.3333333333333 202.6666666666666 58.1013333333333 202.6666666666666 64V192C202.6666666666667 197.8986666666667 197.888 202.6666666666667 192 202.6666666666667zM74.6666666666667 85.3333333333333H32V170.6666666666667H74.6666666666667V85.3333333333333z" />
595
- <glyph glyph-name="battery"
596
- unicode="&#xEAC4;"
597
- horiz-adv-x="256" d="M53.3333333333333 256H96V234.6666666666667H53.3333333333333V256zM160 256H202.6666666666667V234.6666666666667H160V256zM213.3333333333333 213.3333333333334H42.6666666666667C36.7786666666667 213.3333333333334 32 208.5546666666667 32 202.6666666666667V10.6666666666667C32 4.7786666666667 36.7786666666667 0 42.6666666666667 0H213.3333333333333C219.2213333333333 0 224 4.7786666666667 224 10.6666666666667V202.6666666666667C224 208.5546666666667 219.2213333333333 213.3333333333334 213.3333333333333 213.3333333333334zM117.3333333333333 53.3333333333333L128 106.6666666666667H85.3333333333333L138.6666666666667 170.6666666666667L128 128H170.6666666666667L117.3333333333333 53.3333333333333z" />
598
- <glyph glyph-name="bear-2"
599
- unicode="&#xEAC5;"
600
- horiz-adv-x="256" d="M256 202.6666666666667C256 232.0746666666667 232.0746666666667 256 202.6666666666667 256C183.904 256 167.1253333333334 246.3146666666667 157.536 230.752C148.0853333333333 233.216 138.2186666666667 234.6666666666667 128 234.6666666666667S107.9146666666667 233.216 98.464 230.752C88.8746666666667 246.3146666666667 72.096 256 53.3333333333333 256C23.9253333333333 256 0 232.0746666666667 0 202.6666666666667C0 186.7306666666667 7.328 171.8613333333333 19.488 161.8346666666667C13.8346666666667 148.096 10.6666666666667 133.088 10.6666666666667 117.3333333333334C10.6666666666667 52.64 63.3066666666667 0 128 0S245.3333333333333 52.64 245.3333333333333 117.3333333333333C245.3333333333333 133.088 242.1653333333333 148.096 236.512 161.8346666666666C248.672 171.8613333333333 256 186.7306666666667 256 202.6666666666667zM29.856 181.4506666666667C24.5546666666667 187.232 21.3333333333333 194.688 21.3333333333333 202.6666666666667C21.3333333333333 220.3093333333334 35.6906666666667 234.6666666666667 53.3333333333333 234.6666666666667C63.008 234.6666666666667 71.7973333333333 230.3466666666667 77.7386666666667 223.2C58.208 213.888 41.632 199.4133333333334 29.856 181.4506666666667zM85.3333333333333 149.3333333333334C85.3333333333333 155.2213333333334 90.112 160 96 160C101.888 160 106.6666666666667 155.2213333333334 106.6666666666667 149.3333333333334C106.6666666666667 143.4453333333334 101.888 138.6666666666667 96 138.6666666666667C90.112 138.6666666666667 85.3333333333333 143.4453333333334 85.3333333333333 149.3333333333334zM160 53.3333333333333H96V74.6666666666667H117.3333333333333V82.816L107.7866666666667 101.8986666666667C106.1333333333333 105.2053333333334 106.3146666666667 109.1306666666667 108.256 112.2773333333334C110.208 115.4133333333334 113.632 117.3333333333334 117.3333333333333 117.3333333333334H138.6666666666667C142.368 117.3333333333334 145.792 115.4133333333334 147.744 112.2773333333333C149.6853333333334 109.1306666666667 149.8666666666667 105.2053333333333 148.2133333333334 101.8986666666667L138.6666666666667 82.816V74.6666666666667H160V53.3333333333333zM160 138.6666666666667C154.112 138.6666666666667 149.3333333333334 143.4453333333334 149.3333333333334 149.3333333333334C149.3333333333334 155.2213333333334 154.112 160 160 160C165.888 160 170.6666666666667 155.2213333333334 170.6666666666667 149.3333333333334C170.6666666666667 143.4453333333334 165.888 138.6666666666667 160 138.6666666666667zM226.144 181.4506666666667C214.368 199.4133333333334 197.7813333333334 213.888 178.2506666666667 223.2C184.2026666666666 230.3466666666667 192.992 234.6666666666667 202.6666666666667 234.6666666666667C220.3093333333333 234.6666666666667 234.6666666666667 220.3093333333334 234.6666666666667 202.6666666666667C234.6666666666667 194.688 231.4453333333334 187.232 226.144 181.4506666666667z" />
601
- <glyph glyph-name="bear"
602
- unicode="&#xEAC6;"
603
- horiz-adv-x="256" d="M256 213.3333333333334C256 236.8594133333333 236.8594133333334 256 213.3333333333334 256C197.8737066666667 256 183.9876266666667 247.5416533333334 176.4986666666667 234.7298133333334C161.9290666666667 241.4602666666667 145.472 245.3333333333334 128 245.3333333333334S94.0709333333333 241.4602666666667 79.5013333333333 234.7298133333334C72.0123733333333 247.5416533333334 58.1262933333333 256 42.6666666666667 256C19.1405866666667 256 0 236.8594133333334 0 213.3333333333334C0 196.20896 10.26432 181.3568 25.20448 174.5924266666667C22.75456 166.52928 21.3333333333333 158.0866133333333 21.3333333333333 149.3333333333334C21.3333333333333 90.5937066666667 67.1354666666667 0 128 0S234.6666666666667 90.5937066666667 234.6666666666667 149.3333333333334C234.6666666666667 158.0866133333333 233.24544 166.52928 230.79552 174.5924266666667C245.73568 181.3568 256 196.20896 256 213.3333333333334zM74.6666666666667 165.3333333333334C74.6666666666667 174.16992 81.83008 181.3333333333334 90.6666666666667 181.3333333333334S106.6666666666667 174.16992 106.6666666666667 165.3333333333334S99.5032533333333 149.3333333333334 90.6666666666667 149.3333333333334S74.6666666666667 156.4967466666667 74.6666666666667 165.3333333333334zM160 53.3333333333333H96V74.6666666666667H117.3333333333333V99.5553066666667L102.3997866666667 119.4667733333334C99.7629866666667 122.98304 102.2714666666667 128 106.6666666666667 128H149.3333333333333C153.7285333333333 128 156.2370133333333 122.98304 153.6002133333333 119.4667733333333L138.6666666666667 99.5553066666667V74.6666666666667H160V53.3333333333333zM165.3333333333333 149.3333333333334C156.4967466666667 149.3333333333334 149.3333333333333 156.4967466666667 149.3333333333333 165.3333333333334S156.4967466666667 181.3333333333334 165.3333333333333 181.3333333333334S181.3333333333333 174.16992 181.3333333333333 165.3333333333334S174.16992 149.3333333333334 165.3333333333333 149.3333333333334z" />
604
- <glyph glyph-name="bed-09"
605
- unicode="&#xEAC7;"
606
- horiz-adv-x="256" d="M224 192V234.6666666666667C224 241.0666666666667 219.7333333333333 245.3333333333334 213.3333333333334 245.3333333333334H42.6666666666667C36.2666666666667 245.3333333333334 32 241.0666666666667 32 234.6666666666667V192H224zM252.8 106.6666666666667L225.0666666666667 170.6666666666667L30.9333333333333 170.6666666666667L3.2 106.6666666666667zM0 21.3333333333333C0 14.9333333333333 4.2666666666667 10.6666666666667 10.6666666666667 10.6666666666667C17.0666666666667 10.6666666666667 21.3333333333333 14.9333333333334 21.3333333333333 21.3333333333333V42.6666666666667H234.6666666666667V21.3333333333333C234.6666666666667 14.9333333333333 238.9333333333334 10.6666666666667 245.3333333333333 10.6666666666667C251.7333333333333 10.6666666666667 256 14.9333333333334 256 21.3333333333333V85.3333333333333H0V21.3333333333333z" />
607
- <glyph glyph-name="bed-23"
608
- unicode="&#xEAC8;"
609
- horiz-adv-x="256" d="M234.6666666666667 224C234.6666666666667 230.4 230.4 234.6666666666667 224 234.6666666666667S213.3333333333334 230.4 213.3333333333334 224V213.3333333333334H138.6666666666667V160H234.6666666666667V224zM0 138.6666666666667V42.6666666666667C0 36.2666666666667 4.2666666666667 32 10.6666666666667 32S21.3333333333333 36.2666666666667 21.3333333333333 42.6666666666667V74.6666666666667H234.6666666666667V42.6666666666667C234.6666666666667 36.2666666666667 238.9333333333334 32 245.3333333333333 32S256 36.2666666666667 256 42.6666666666667V138.6666666666667H0zM117.3333333333333 213.3333333333334H42.6666666666667V224C42.6666666666667 230.4 38.4 234.6666666666667 32 234.6666666666667S21.3333333333333 230.4 21.3333333333333 224V160H117.3333333333333V213.3333333333334z" />
610
- <glyph glyph-name="bed-side"
611
- unicode="&#xEAC9;"
612
- horiz-adv-x="256" d="M245.3333333333333 170.6666666666667C238.9333333333333 170.6666666666667 234.6666666666667 166.4 234.6666666666667 160V138.6666666666667H21.3333333333333V213.3333333333334C21.3333333333333 219.7333333333334 17.0666666666667 224 10.6666666666667 224C4.2666666666667 224 0 219.7333333333334 0 213.3333333333334V42.6666666666667C0 36.2666666666667 4.2666666666667 32 10.6666666666667 32C17.0666666666667 32 21.3333333333333 36.2666666666667 21.3333333333333 42.6666666666667V74.6666666666667H234.6666666666667V42.6666666666667C234.6666666666667 36.2666666666667 238.9333333333334 32 245.3333333333333 32C251.7333333333333 32 256 36.2666666666667 256 42.6666666666667V160C256 166.4 251.7333333333334 170.6666666666667 245.3333333333333 170.6666666666667z" />
613
- <glyph glyph-name="bee"
614
- unicode="&#xEACA;"
615
- horiz-adv-x="256" d="M163.8405333333333 197.28192C167.9101866666667 201.8802133333333 170.6666666666667 207.2317866666667 170.6666666666667 213.3333333333334C170.6666666666667 240.8021333333334 145.4375466666667 256 128 256S85.3333333333333 240.8021333333334 85.3333333333333 213.3333333333334C85.3333333333333 207.2317866666667 88.0898133333333 201.8802133333333 92.1594666666667 197.28192C40.7285333333333 181.944 0 135.4967466666667 0 85.3333333333333V74.6666666666667H64.2552533333333C67.1211733333333 74.6666666666667 69.9336533333333 74.9114666666667 72.6875733333333 75.3424C80.1002666666667 48.9582933333333 97.9089066666667 0 128 0C158.05536 0 175.8906666666667 48.9582933333333 183.32032 75.3424C186.0715733333333 74.9121066666667 188.8814933333334 74.6666666666667 191.7447466666667 74.6666666666667H256V85.3333333333333C256 135.4967466666667 215.2714666666667 181.944 163.8405333333333 197.28192zM116.84704 117.3333333333334H139.1524266666667C140.0749866666667 114.4667733333334 140.65312 112.70048 140.6615466666667 112.67712C142.5162666666667 106.49088 145.4577066666667 100.92384 149.13024 96H106.9232C110.54304 100.8580266666667 113.43296 106.33984 115.2500266666667 112.4062933333333C115.2766933333333 112.4856533333334 115.88608 114.3482666666667 116.84704 117.3333333333334zM64.2552533333333 96H22.15104C27.9844266666667 134.5937066666667 64.5156266666667 173.88544 113.7083733333333 180.39584C104.6250666666667 148.4375466666667 95.0834133333333 119.37504 94.90112 118.8021333333333C90.81248 105.16672 78.5000533333333 96 64.2552533333333 96zM147.98048 42.6666666666667H108.0098133333333C104.8177066666667 48.65888 101.65504 55.81376 98.6817066666667 64H157.31648C154.3392 55.81376 151.1732266666667 48.65824 147.98048 42.6666666666667zM191.7447466666667 96C177.4999466666667 96 165.1874133333333 105.16672 161.0103466666667 119.07296C160.9010133333334 119.4062933333334 151.3749333333333 148.4270933333333 142.2916266666667 180.39584C191.4843733333334 173.88544 228.0155733333333 134.5937066666667 233.84896 96H191.7447466666667z" />
616
- <glyph glyph-name="beer-95"
617
- unicode="&#xEACB;"
618
- horiz-adv-x="256" d="M224 138.6666666666667H192V139.7333333333334C197.3333333333334 145.0666666666667 201.6 152.5333333333333 202.6666666666667 161.0666666666667C203.7333333333333 171.7333333333334 200.5333333333333 182.4 193.0666666666667 189.8666666666667C187.7333333333333 195.2 181.3333333333333 199.4666666666667 174.9333333333333 200.5333333333333C167.4666666666667 233.6 139.7333333333333 256 106.6666666666667 256S45.8666666666667 233.6 39.4666666666667 201.6C32 199.4666666666667 25.6 196.2666666666667 20.2666666666667 189.8666666666667C12.8 182.4 9.6 171.7333333333334 10.6666666666667 161.0666666666667C11.7333333333333 152.5333333333333 14.9333333333333 145.0666666666667 21.3333333333333 139.7333333333334V10.6666666666667C21.3333333333333 4.2666666666667 25.6 0 32 0H181.3333333333333C187.7333333333333 0 192 4.2666666666667 192 10.6666666666667V53.3333333333333H202.6666666666666C220.8 53.3333333333333 234.6666666666667 67.2 234.6666666666667 85.3333333333333V128C234.6666666666667 134.4 230.4 138.6666666666667 224 138.6666666666667zM36.2666666666667 176C39.4666666666667 179.2 43.7333333333333 181.3333333333334 46.9333333333333 181.3333333333334C50.1333333333333 181.3333333333334 52.2666666666667 181.3333333333334 54.4 183.4666666666667C56.5333333333333 185.6 57.6 187.7333333333334 58.6666666666667 190.9333333333333C60.8 215.4666666666667 82.1333333333333 234.6666666666667 106.6666666666667 234.6666666666667S152.5333333333333 215.4666666666667 154.6666666666667 190.9333333333333C154.6666666666667 187.7333333333334 156.8 185.6 158.9333333333333 183.4666666666667C161.0666666666667 182.4 163.2 181.3333333333334 165.3333333333333 181.3333333333334C169.6 181.3333333333334 173.8666666666667 179.2 177.0666666666667 176C180.2666666666667 172.8 181.3333333333333 168.5333333333334 181.3333333333333 163.2C180.2666666666667 154.6666666666667 172.8 149.3333333333334 164.2666666666667 149.3333333333334H106.6666666666667C100.2666666666667 149.3333333333334 96 145.0666666666667 96 138.6666666666667V96C96 89.6 91.7333333333333 85.3333333333333 85.3333333333333 85.3333333333333S74.6666666666666 89.6 74.6666666666666 96V138.6666666666667C74.6666666666666 145.0666666666667 70.4 149.3333333333333 64 149.3333333333333H49.0666666666667C40.5333333333333 149.3333333333334 33.0666666666667 155.7333333333334 32 163.2C32 168.5333333333334 33.0666666666667 172.8 36.2666666666667 176zM213.3333333333333 85.3333333333333C213.3333333333333 78.9333333333333 209.0666666666666 74.6666666666667 202.6666666666667 74.6666666666667H192V117.3333333333334H213.3333333333334V85.3333333333333z" />
619
- <glyph glyph-name="beer-96"
620
- unicode="&#xEACC;"
621
- horiz-adv-x="256" d="M188.8 219.7333333333334C182.4 241.0666666666667 162.1333333333333 256 138.6666666666667 256C117.3333333333333 256 98.1333333333333 243.2 89.6 224C84.2666666666667 224 78.9333333333333 224 73.6 221.8666666666667C55.4666666666667 216.5333333333333 42.6666666666667 198.4 42.6666666666667 179.2V160V138.6666666666667C42.6666666666667 116.2666666666667 48 93.8666666666667 53.3333333333333 71.4666666666667C58.6666666666667 50.1333333333334 64 29.8666666666667 64 10.6666666666667C64 4.2666666666667 68.2666666666667 0 74.6666666666667 0H181.3333333333333C187.7333333333333 0 192 4.2666666666667 192 10.6666666666667C192 30.9333333333333 197.3333333333333 51.2 202.6666666666666 72.5333333333334C208 93.8666666666667 213.3333333333333 116.2666666666667 213.3333333333333 138.6666666666667V160V181.3333333333334C213.3333333333333 197.3333333333334 203.7333333333334 212.2666666666667 188.8 219.7333333333334zM64 179.2C64 189.8666666666667 70.4 199.4666666666667 78.9333333333333 201.6C84.2666666666667 202.6666666666667 88.5333333333333 202.6666666666667 92.8 201.6C96 200.5333333333333 99.2 200.5333333333333 102.4 201.6C105.6 202.6666666666667 106.6666666666667 205.8666666666667 107.7333333333333 209.0666666666667C109.8666666666667 224 123.7333333333333 234.6666666666667 138.6666666666667 234.6666666666667C153.6 234.6666666666667 166.4 224 169.6 209.0666666666667C170.6666666666667 205.8666666666667 173.8666666666667 202.6666666666667 177.0666666666667 201.6C185.6 198.4 192 190.9333333333333 192 181.3333333333334V170.6666666666667H128C121.6 170.6666666666667 117.3333333333333 166.4 117.3333333333333 160V117.3333333333334C117.3333333333333 110.9333333333333 113.0666666666667 106.6666666666667 106.6666666666667 106.6666666666667S96 110.9333333333334 96 117.3333333333334V160C96 166.4 91.7333333333333 170.6666666666667 85.3333333333333 170.6666666666667H64V179.2z" />
622
- <glyph glyph-name="bell-53"
623
- unicode="&#xEACD;"
624
- horiz-adv-x="256" d="M232.5333333333334 59.7333333333334C232.5333333333334 59.7333333333334 213.3333333333334 89.6 213.3333333333334 128V170.6666666666667C213.3333333333334 217.6 174.9333333333333 256 128 256S42.6666666666667 217.6 42.6666666666667 170.6666666666667V128C42.6666666666667 89.6 23.4666666666667 59.7333333333334 23.4666666666667 59.7333333333334C21.3333333333333 56.5333333333334 21.3333333333333 52.2666666666667 23.4666666666667 49.0666666666667C24.5333333333333 44.8 27.7333333333333 42.6666666666667 32 42.6666666666667H224C228.2666666666667 42.6666666666667 231.4666666666667 44.8 233.6 48C235.7333333333334 52.2666666666667 234.6666666666667 55.4666666666667 232.5333333333334 59.7333333333334zM91.7333333333333 21.3333333333333C99.2 8.5333333333333 113.0666666666667 0 128 0S156.8 8.5333333333333 164.2666666666667 21.3333333333333H91.7333333333333z" />
625
- <glyph glyph-name="bell-54"
626
- unicode="&#xEACE;"
627
- horiz-adv-x="256" d="M213.3333333333333 123.7333333333334V170.6666666666667C213.3333333333333 217.6 174.9333333333333 256 128 256S42.6666666666667 217.6 42.6666666666667 170.6666666666667V123.7333333333334C11.7333333333333 104.5333333333334 0 65.0666666666667 0 42.6666666666667C0 8.5333333333334 80 0 128 0S256 8.5333333333334 256 42.6666666666667C256 65.0666666666667 244.2666666666667 104.5333333333334 213.3333333333333 123.7333333333334zM128 21.3333333333333C64 21.3333333333333 24.5333333333333 35.2 21.3333333333333 42.6666666666667C23.4666666666667 48 46.9333333333333 58.6666666666667 87.4666666666667 62.9333333333333C92.8 45.8666666666667 108.8 33.0666666666667 128 33.0666666666667C147.2 33.0666666666667 163.2 45.8666666666667 168.5333333333333 62.9333333333333C208 58.6666666666667 232.5333333333334 49.0666666666667 234.6666666666667 43.7333333333334C234.6666666666667 43.7333333333334 234.6666666666667 43.7333333333334 234.6666666666667 43.7333333333334C231.4666666666667 35.2 192 21.3333333333333 128 21.3333333333333z" />
628
- <glyph glyph-name="bell-55"
629
- unicode="&#xEACF;"
630
- horiz-adv-x="256" d="M202.6666666666667 138.6666666666667C202.6666666666667 155.7333333333334 202.6666666666667 170.6666666666667 202.6666666666667 170.6666666666667C202.6666666666667 212.2666666666667 169.6 245.3333333333333 128 245.3333333333333S53.3333333333333 212.2666666666667 53.3333333333333 170.6666666666667C53.3333333333333 170.6666666666667 53.3333333333333 155.7333333333334 53.3333333333333 138.6666666666667C53.3333333333333 103.4666666666667 21.3333333333333 94.9333333333333 21.3333333333333 74.6666666666667C21.3333333333333 56.5333333333334 62.9333333333333 42.6666666666667 128 42.6666666666667S234.6666666666667 56.5333333333334 234.6666666666667 74.6666666666667C234.6666666666667 94.9333333333333 202.6666666666667 103.4666666666667 202.6666666666667 138.6666666666667zM128 21.3333333333333C114.1333333333333 21.3333333333333 102.4 22.4 90.6666666666667 23.4666666666667C98.1333333333333 9.6 112 0 128 0S158.9333333333333 9.6 165.3333333333333 23.4666666666667C153.6 22.4 141.8666666666667 21.3333333333333 128 21.3333333333333z" />
631
- <glyph glyph-name="belt"
632
- unicode="&#xEAD0;"
633
- horiz-adv-x="256" d="M245.3333333333333 170.6666666666667H181.3333333333333V181.3333333333334C181.3333333333333 187.7333333333334 177.0666666666666 192 170.6666666666667 192H85.3333333333333C78.9333333333333 192 74.6666666666667 187.7333333333334 74.6666666666667 181.3333333333334V170.6666666666667H10.6666666666667C4.2666666666667 170.6666666666667 0 166.4 0 160V96C0 89.6 4.2666666666667 85.3333333333333 10.6666666666667 85.3333333333333H74.6666666666667V74.6666666666667C74.6666666666667 68.2666666666667 78.9333333333333 64 85.3333333333333 64H170.6666666666667C177.0666666666667 64 181.3333333333334 68.2666666666667 181.3333333333334 74.6666666666667V85.3333333333333H245.3333333333334C251.7333333333334 85.3333333333333 256 89.6 256 96V160C256 166.4 251.7333333333334 170.6666666666667 245.3333333333333 170.6666666666667zM160 85.3333333333333H96V117.3333333333334H117.3333333333333C123.7333333333333 117.3333333333334 128 121.6 128 128S123.7333333333333 138.6666666666667 117.3333333333333 138.6666666666667H96V170.6666666666667H160V85.3333333333333z" />
634
- <glyph glyph-name="berlin"
635
- unicode="&#xEAD1;"
636
- horiz-adv-x="256" d="M224 181.3333333333334V213.3333333333334C224 219.7333333333334 219.7333333333333 224 213.3333333333334 224H138.6666666666667V245.3333333333334C138.6666666666667 251.7333333333333 134.4 256 128 256C121.6 256 117.3333333333334 251.7333333333333 117.3333333333334 245.3333333333334V224H42.6666666666667C36.2666666666667 224 32 219.7333333333334 32 213.3333333333334V181.3333333333334H224zM245.3333333333333 138.6666666666667V160H10.6666666666667V138.6666666666667H0V117.3333333333334H10.6666666666667V21.3333333333333H0V0H256V21.3333333333333H245.3333333333334V117.3333333333334H256V138.6666666666667H245.3333333333333zM64 21.3333333333333H32V117.3333333333334H64V21.3333333333333zM117.3333333333333 21.3333333333333H85.3333333333333V117.3333333333334H117.3333333333333V21.3333333333333zM170.6666666666667 21.3333333333333H138.6666666666667V117.3333333333334H170.6666666666667V21.3333333333333zM224 21.3333333333333H192V117.3333333333334H224V21.3333333333333z" />
637
- <glyph glyph-name="beverage"
638
- unicode="&#xEAD2;"
639
- horiz-adv-x="256" d="M224 192H174.9333333333333L188.8 234.6666666666667H224C230.4 234.6666666666667 234.6666666666667 238.9333333333334 234.6666666666667 245.3333333333334S230.4 256 224 256H181.3333333333334C177.0666666666667 256 172.8 252.8 171.7333333333334 248.5333333333334L152.5333333333333 192H32C25.6 192 21.3333333333333 187.7333333333334 21.3333333333333 181.3333333333334V160C21.3333333333333 153.6 25.6 149.3333333333334 32 149.3333333333334H224C230.4 149.3333333333334 234.6666666666667 153.6 234.6666666666667 160V181.3333333333334C234.6666666666667 187.7333333333334 230.4 192 224 192zM45.8666666666667 128L64 8.5333333333334C65.0666666666667 4.2666666666667 69.3333333333333 0 74.6666666666667 0H181.3333333333333C186.6666666666667 0 190.9333333333333 4.2666666666667 192 8.5333333333333L210.1333333333333 128H45.8666666666667z" />
640
- <glyph glyph-name="big-eyes"
641
- unicode="&#xEAD3;"
642
- horiz-adv-x="256" d="M37.3333333333333 133.3333333333334A21.333333333333332 21.333333333333332 0 0 1 80 133.3333333333334A21.333333333333332 21.333333333333332 0 0 1 37.3333333333333 133.3333333333334M197.3333333333333 64C158.9333333333333 64 128 94.9333333333333 128 133.3333333333333C128 94.9333333333333 97.0666666666667 64 58.6666666666667 64C38.4 64 19.2 73.6 6.4 87.4666666666667C23.4666666666667 37.3333333333333 71.4666666666667 0 128 0C184.5333333333333 0 232.5333333333334 37.3333333333333 249.6 87.4666666666666C236.8 73.6 217.6 64 197.3333333333333 64zM197.3333333333333 202.6666666666667C214.4 202.6666666666667 229.3333333333333 196.2666666666667 242.1333333333334 186.6666666666667C220.8 228.2666666666667 177.0666666666667 256 128 256C78.9333333333333 256 35.2 228.2666666666667 13.8666666666667 186.6666666666667C26.6666666666667 196.2666666666667 41.6 202.6666666666667 58.6666666666667 202.6666666666667C97.0666666666667 202.6666666666667 128 171.7333333333334 128 133.3333333333334C128 171.7333333333334 158.9333333333333 202.6666666666667 197.3333333333333 202.6666666666667zM176 133.3333333333334A21.333333333333332 21.333333333333332 0 0 1 218.6666666666667 133.3333333333334A21.333333333333332 21.333333333333332 0 0 1 176 133.3333333333334" />
643
- <glyph glyph-name="big-smile"
644
- unicode="&#xEAD4;"
645
- horiz-adv-x="256" d="M202.6666666666667 96V24.5333333333333C226.1333333333334 41.6 244.2666666666667 67.2 251.7333333333333 96H202.6666666666667zM254.9333333333333 117.3333333333334C254.9333333333333 120.5333333333333 256 124.8 256 128C256 198.4 198.4 256 128 256C57.6 256 0 198.4 0 128C0 124.8 0 120.5333333333333 1.0666666666667 117.3333333333334H254.9333333333333zM185.6 195.2L195.2 176L154.6666666666666 155.7333333333334L145.0666666666666 174.9333333333333L185.6 195.2zM70.4 195.2L110.9333333333333 174.9333333333333L100.2666666666667 156.8L60.8 177.0666666666667L70.4 195.2zM138.6666666666667 1.0666666666667C153.6 2.1333333333334 168.5333333333333 6.4 181.3333333333333 12.8V96H138.6666666666667V1.0666666666667zM74.6666666666667 11.7333333333333C87.4666666666667 5.3333333333333 102.4 2.1333333333334 117.3333333333333 0V96H74.6666666666667V11.7333333333333zM53.3333333333333 96H4.2666666666667C11.7333333333333 67.2 29.8666666666667 41.6 53.3333333333333 24.5333333333333V96z" />
646
- <glyph glyph-name="bigmouth"
647
- unicode="&#xEAD5;"
648
- horiz-adv-x="256" d="M240 153.6C230.4 158.9333333333333 224 169.6 224 181.3333333333334C224 193.0666666666667 230.4 203.7333333333334 240 209.0666666666667C245.3333333333333 212.2666666666667 246.4 218.6666666666667 244.2666666666667 224C241.0666666666667 229.3333333333334 234.6666666666667 230.4 229.3333333333333 228.2666666666667C216.5333333333333 220.8 206.9333333333333 208 203.7333333333333 193.0666666666667H52.2666666666667C49.0666666666667 206.9333333333333 39.4666666666667 219.7333333333334 26.6666666666667 227.2C21.3333333333333 230.4 14.9333333333333 228.2666666666667 11.7333333333333 224C9.6 218.6666666666667 10.6666666666667 212.2666666666667 16 209.0666666666667C25.6 203.7333333333334 32 193.0666666666667 32 181.3333333333334C32 169.6 25.6 158.9333333333333 16 153.6C10.6666666666667 150.4 9.6 144 11.7333333333333 138.6666666666667C13.8666666666667 135.4666666666667 19.2 131.2 26.6666666666667 134.4C40.5333333333333 142.9333333333333 49.0666666666667 155.7333333333334 52.2666666666667 170.6666666666667H203.7333333333333C206.9333333333333 155.7333333333334 215.4666666666667 142.9333333333333 229.3333333333333 135.4666666666667C236.8 131.2 242.1333333333333 135.4666666666667 244.2666666666666 139.7333333333334C246.4 144 245.3333333333333 150.4 240 153.6zM138.6666666666667 149.3333333333334V117.3333333333334H117.3333333333333V149.3333333333334H64V96C64 60.8 92.8 32 128 32C163.2 32 192 60.8 192 96V149.3333333333333H138.6666666666667z" />
649
- <glyph glyph-name="bike-2"
650
- unicode="&#xEAD6;"
651
- horiz-adv-x="256" d="M93.0453333333333 134.5386666666667L68.96 170.6666666666667H32V192H74.6666666666667A10.666666666666666 10.666666666666666 0 0 0 83.5413333333333 187.2533333333333L110.7946666666667 146.3786666666667zM202.6666666666667 128C201.2906666666667 128 199.9893333333333 127.6906666666667 198.6346666666667 127.5946666666667L172.4586666666667 219.1893333333333A21.418666666666667 21.418666666666667 0 0 1 151.9573333333334 234.6666666666667H106.6666666666667V213.3333333333334H151.9573333333334L166.4 162.848L90.88 112.5013333333333A53.81333333333334 53.81333333333334 0 1 1 102.6986666666667 94.7413333333333L172.5546666666667 141.312L178.144 121.7386666666667A52.906666666666666 52.906666666666666 0 1 1 202.6666666666667 128zM85.3333333333333 74.6666666666667A32 32 0 1 0 53.3333333333333 106.6666666666667A31.690666666666672 31.690666666666672 0 0 0 72.416 100.2026666666667L47.4133333333333 83.5413333333333A10.666666666666666 10.666666666666666 0 1 1 59.2426666666667 65.792L84.2666666666667 82.464A31.63733333333334 31.63733333333334 0 0 0 85.3333333333333 74.6666666666667zM202.6666666666667 42.6666666666667A31.936000000000003 31.936000000000003 0 0 0 184.1493333333333 100.6613333333334L192.416 71.7333333333334A10.666666666666666 10.666666666666666 0 0 1 202.6666666666667 64A11.029333333333334 11.029333333333334 0 0 1 205.6 64.4053333333334A10.666666666666666 10.666666666666666 0 0 1 212.928 77.5893333333333L204.6826666666667 106.464A31.92533333333333 31.92533333333333 0 0 0 202.6666666666667 42.6666666666667z" />
652
- <glyph glyph-name="bike"
653
- unicode="&#xEAD7;"
654
- horiz-adv-x="256" d="M201.9093333333333 149.0986666666667L191.8186666666667 204.5653333333334C190.9013333333333 209.6426666666667 186.4853333333333 213.3333333333334 181.3333333333333 213.3333333333334H138.6666666666667V192H172.4266666666667L176.3093333333333 170.6666666666667H74.6666666666667C69.9093333333333 170.6666666666667 65.7173333333333 167.5093333333334 64.4053333333333 162.9333333333333L60.4906666666667 149.2373333333334C59.8826666666667 149.2586666666667 59.2853333333333 149.3333333333334 58.6666666666667 149.3333333333334C26.3253333333333 149.3333333333334 0 123.0186666666667 0 90.6666666666667S26.3253333333333 32 58.6666666666667 32S117.3333333333333 58.3146666666667 117.3333333333333 90.6666666666667C117.3333333333333 114.9546666666667 102.4853333333333 135.8506666666667 81.3973333333333 144.7466666666667L82.7093333333333 149.3333333333334H180.192L180.64 146.88C156.4053333333333 139.6693333333333 138.6666666666667 117.216 138.6666666666667 90.6666666666667C138.6666666666667 58.3146666666667 164.992 32 197.3333333333333 32S256 58.3146666666667 256 90.6666666666667C256 121.472 232.1173333333333 146.752 201.9093333333333 149.0986666666667zM96 90.6666666666667C96 70.08 79.2533333333333 53.3333333333333 58.6666666666667 53.3333333333333S21.3333333333333 70.08 21.3333333333333 90.6666666666667C21.3333333333333 109.7493333333333 35.7866666666667 125.3653333333334 54.304 127.5626666666667L43.0826666666667 88.2666666666667C41.472 82.6026666666667 44.7466666666667 76.704 50.4213333333333 75.0826666666667C51.3813333333333 74.7946666666667 52.3626666666667 74.6666666666667 53.344 74.6666666666667C57.984 74.6666666666667 62.2506666666667 77.728 63.5946666666667 82.4106666666667L75.424 123.8506666666667C87.5733333333333 117.6746666666667 96 105.1946666666667 96 90.6666666666667zM197.3333333333333 53.3333333333333C176.7466666666667 53.3333333333333 160 70.08 160 90.6666666666667C160 106.7306666666667 170.2506666666667 120.3306666666667 184.512 125.5893333333334L192.1813333333333 83.424C193.1093333333333 78.272 197.5893333333334 74.6666666666667 202.656 74.6666666666667C203.296 74.6666666666667 203.9253333333333 74.72 204.576 74.8373333333334C210.3786666666666 75.8933333333334 214.2186666666666 81.4506666666667 213.1626666666667 87.2426666666667L205.952 126.9013333333334C222.368 122.9866666666667 234.6666666666667 108.2773333333333 234.6666666666667 90.6666666666667C234.6666666666667 70.08 217.92 53.3333333333333 197.3333333333333 53.3333333333333zM42.6666666666667 213.3333333333334H106.6666666666667V192H42.6666666666667V213.3333333333333z" />
655
- <glyph glyph-name="bill"
656
- unicode="&#xEAD8;"
657
- horiz-adv-x="256" d="M224 256H32A10.666666666666666 10.666666666666666 0 0 1 21.3333333333333 245.3333333333334V1.408L64 29.8666666666667L96 8.5333333333333L128 29.8666666666667L160 8.5333333333333L192 29.8666666666667L234.6666666666667 1.4293333333333V245.3333333333334A10.666666666666666 10.666666666666666 0 0 1 224 256zM138.6666666666667 96H64V117.3333333333334H138.6666666666667zM128 149.3333333333333A32 32 0 1 0 160 181.3333333333333A32 32 0 0 0 128 149.3333333333334zM192 96H160V117.3333333333334H192z" />
658
- <glyph glyph-name="billiard"
659
- unicode="&#xEAD9;"
660
- horiz-adv-x="256" d="M128 256C57.4186666666667 256 0 198.5813333333333 0 128S57.4186666666667 0 128 0S256 57.4186666666667 256 128S198.5813333333333 256 128 256zM128 96C98.5493333333333 96 74.6666666666667 119.8826666666667 74.6666666666667 149.3333333333333S98.5493333333333 202.6666666666667 128 202.6666666666667S181.3333333333333 178.784 181.3333333333333 149.3333333333333S157.4506666666667 96 128 96z" />
661
- <glyph glyph-name="binocular"
662
- unicode="&#xEADA;"
663
- horiz-adv-x="256" d="M106.6666666666667 202.6666666666667H53.3333333333333C48.6293333333333 202.6666666666667 44.4693333333333 199.5733333333333 43.1146666666667 195.0613333333333L11.1146666666667 88.3946666666667C10.8266666666667 87.4026666666667 10.6666666666667 86.368 10.6666666666667 85.3333333333333V32H0V10.6666666666667H117.3333333333333V21.3333333333333V32V192C117.3333333333333 197.888 112.5653333333333 202.6666666666667 106.6666666666667 202.6666666666667zM64 245.3333333333334H117.3333333333333V224H64V245.3333333333334zM138.6666666666667 245.3333333333334H192V224H138.6666666666667V245.3333333333334zM245.3333333333333 32V85.3333333333333C245.3333333333333 86.368 245.1733333333333 87.4026666666667 244.8853333333333 88.3946666666666L212.8853333333333 195.0613333333333C211.5306666666667 199.5733333333333 207.3706666666666 202.6666666666667 202.6666666666667 202.6666666666667H149.3333333333333C143.4346666666667 202.6666666666667 138.6666666666667 197.888 138.6666666666667 192V32V21.3333333333333V10.6666666666667H256V32H245.3333333333333z" />
664
- <glyph glyph-name="biscuit"
665
- unicode="&#xEADB;"
666
- horiz-adv-x="256" d="M85.3333333333333 202.6666666666667A42.666666666666664 42.666666666666664 0 0 1 170.6666666666667 202.6666666666667A42.666666666666664 42.666666666666664 0 0 1 85.3333333333333 202.6666666666667M234.6673173333333 58.6666666666667L192 91.2942709333333V132.7063808L234.6673173333334 165.3339850666667C246.4485674666667 174.1725269333333 248.833984 190.8860682666667 240.0006506666667 202.6673184C231.1673173333334 214.4381514666667 214.4589845333333 216.8391936 202.6673173333334 208.0006517333334L191.8515626666667 199.7291669333334C190.3007808 165.8053386666667 162.3001301333333 138.6666666666667 128 138.6666666666667S65.6992192 165.8053386666667 64.1484373333333 199.7291669333334L53.3326826666667 208.0006506666667C41.5410154666667 216.8391925333334 24.8326826666667 214.4381504 15.9993493333333 202.6673173333333C7.166016 190.8860672 9.5514325333333 174.1725258666667 21.3326826666667 165.333984L64 132.7063797333333V91.2942698666667L21.3326826666667 58.6666666666667C9.5514325333333 49.8281248 7.166016 33.1145834666667 15.9993493333333 21.3333333333334C24.8326826666667 9.5625002666667 41.5410154666667 7.1614581333334 53.3326826666667 16L89.1230474666667 43.3691402666667C112.0703136 60.917968 143.9296885333333 60.917968 166.8769536 43.3691402666667L202.6673173333333 16C214.4589845333333 7.1614581333333 231.1673173333333 9.5625002666667 240.0006506666666 21.3333333333333C248.833984 33.1145834666667 246.4485674666667 49.8281248 234.6673173333333 58.6666666666667z" />
667
- <glyph glyph-name="bitcoin"
668
- unicode="&#xEADC;"
669
- horiz-adv-x="256" d="M171.2533333333333 146.912C177.4826666666667 155.008 181.3333333333333 165.0133333333334 181.3333333333333 176C181.3333333333333 200.64 162.6026666666667 220.768 138.6666666666667 223.456V256H117.3333333333333V224H96V256H74.6666666666667V224H64C58.112 224 53.3333333333333 219.232 53.3333333333333 213.3333333333334V42.6666666666667C53.3333333333333 36.768 58.112 32 64 32H74.6666666666667V0H96V32H117.3333333333333V0H138.6666666666667V32H154.6666666666667C187.0186666666667 32 213.3333333333333 58.3253333333334 213.3333333333333 90.6666666666667C213.3333333333333 117.248 195.5413333333334 139.7333333333334 171.2533333333333 146.912zM133.3333333333333 202.6666666666667C148.032 202.6666666666667 160 190.7093333333334 160 176S148.032 149.3333333333334 133.3333333333333 149.3333333333334H74.6666666666667V202.6666666666667H133.3333333333333zM154.6666666666667 53.3333333333333H74.6666666666667V128H154.6666666666667C175.2533333333333 128 192 111.2533333333333 192 90.6666666666667S175.2533333333333 53.3333333333333 154.6666666666667 53.3333333333333z" />
670
- <glyph glyph-name="bleah"
671
- unicode="&#xEADD;"
672
- horiz-adv-x="256" d="M128 256C57.6 256 0 198.4 0 128S57.6 0 128 0C198.4 0 256 57.6 256 128S198.4 256 128 256zM149.3333333333333 170.6666666666667H192V149.3333333333334H149.3333333333333V170.6666666666667zM64 170.6666666666667H106.6666666666667V149.3333333333334H64V170.6666666666667zM185.6 71.4666666666667L160 84.2666666666667L126.9333333333333 62.9333333333333L93.8666666666667 84.2666666666667L68.2666666666667 71.4666666666667L58.6666666666667 90.6666666666667L94.9333333333333 108.8L125.8666666666667 87.4666666666666L156.8 108.8L193.0666666666667 90.6666666666667L185.6 71.4666666666667z" />
673
- <glyph glyph-name="blend"
674
- unicode="&#xEADE;"
675
- horiz-adv-x="256" d="M256 96V138.6666666666667H201.376C202.1866666666667 131.7653333333333 202.6666666666667 124.6506666666667 202.6666666666667 117.3333333333334C202.6666666666667 110.0053333333333 202.1866666666667 102.8906666666667 201.3866666666667 96H256zM106.6666666666667 117.3333333333334C106.6666666666667 124.768 106.0373333333333 131.8826666666667 104.9493333333333 138.6666666666667H0V96H105.024C106.0586666666667 102.9226666666667 106.6666666666667 110.048 106.6666666666667 117.3333333333334zM122.4426666666667 74.6666666666667C117.1306666666667 53.568 108.864 35.2426666666667 101.1946666666667 21.3333333333334H154.048C159.0293333333333 29.8560000000001 169.3013333333333 49.4186666666667 175.7226666666667 74.6666666666667H122.4426666666667zM179.8613333333333 138.6666666666667H126.4533333333333C127.392 131.8293333333334 128 124.7466666666667 128 117.3333333333334C128 110.0373333333334 127.4133333333333 102.9333333333333 126.5173333333334 96H179.8826666666667C180.7893333333333 102.88 181.3333333333333 110.0053333333333 181.3333333333333 117.3333333333334C181.3333333333333 124.6506666666667 180.7786666666667 131.776 179.8613333333333 138.6666666666667zM122.0266666666667 160H175.6693333333333C169.2373333333334 185.1413333333333 158.9973333333333 204.768 154.016 213.3333333333333H96.8746666666667C105.4293333333333 200.9813333333334 115.68 182.752 122.0266666666667 160zM197.7066666666667 160H256V202.6666666666667C256 208.5546666666667 251.232 213.3333333333334 245.3333333333334 213.3333333333334H178.3146666666667C184.6293333333333 200.9173333333334 192.6293333333333 182.3573333333334 197.7066666666667 160zM100.3733333333333 74.6666666666667H0V32C0 26.112 4.768 21.3333333333334 10.6666666666667 21.3333333333334H76.3946666666667C83.9146666666667 33.44 93.952 52.224 100.3733333333333 74.6666666666667zM178.368 21.3333333333333H245.3333333333333C251.232 21.3333333333333 256 26.112 256 32V74.6666666666667H197.7493333333333C192.6826666666667 52.256 184.6933333333333 33.728 178.368 21.3333333333333zM69.952 213.3333333333334H10.6666666666667C4.768 213.3333333333334 0 208.5546666666667 0 202.6666666666667V160H99.7333333333333C90.8906666666667 187.2213333333334 76.0746666666667 206.272 69.952 213.3333333333334z" />
676
- <glyph glyph-name="blind"
677
- unicode="&#xEADF;"
678
- horiz-adv-x="256" d="M128 256C57.6 256 0 198.4 0 128S57.6 0 128 0C198.4 0 256 57.6 256 128S198.4 256 128 256zM64 123.7333333333334L49.0666666666667 138.6666666666667L65.0666666666667 154.6666666666667L49.0666666666667 170.6666666666667L64 185.6L80 169.6L96 185.6L110.9333333333333 170.6666666666667L94.9333333333333 154.6666666666667L110.9333333333333 138.6666666666667L96 123.7333333333334L80 139.7333333333334L64 123.7333333333334zM128 42.6666666666667C109.8666666666667 42.6666666666667 96 56.5333333333334 96 74.6666666666667S109.8666666666667 106.6666666666667 128 106.6666666666667C146.1333333333333 106.6666666666667 160 92.8 160 74.6666666666667S146.1333333333333 42.6666666666667 128 42.6666666666667zM206.9333333333333 138.6666666666667L192 123.7333333333334L176 139.7333333333334L160 123.7333333333334L145.0666666666667 138.6666666666667L161.0666666666667 154.6666666666667L145.0666666666667 170.6666666666667L160 185.6L176 169.6L192 185.6L206.9333333333333 170.6666666666667L190.9333333333333 154.6666666666667L206.9333333333333 138.6666666666667z" />
679
- <glyph glyph-name="block-bottom-left"
680
- unicode="&#xEAE0;"
681
- horiz-adv-x="256" d="M0 0L106.6666666666667 0L60.8746666666667 45.792L114.208 99.1253333333334L99.1253333333333 114.208L45.792 60.8746666666667L0 106.6666666666667zM138.6666666666667 256H245.3333333333333C251.232 256 256 251.232 256 245.3333333333334V138.6666666666667C256 132.768 251.232 128 245.3333333333333 128H138.6666666666667C132.768 128 128 132.768 128 138.6666666666667V245.3333333333334C128 251.232 132.768 256 138.6666666666667 256z" />
682
- <glyph glyph-name="block-bottom-right"
683
- unicode="&#xEAE1;"
684
- horiz-adv-x="256" d="M256 0L149.3333333333333 0L195.1253333333333 45.792L141.792 99.1253333333334L156.8746666666667 114.208L210.208 60.8746666666667L256 106.6666666666667zM117.3333333333333 256H10.6666666666667C4.768 256 0 251.232 0 245.3333333333334V138.6666666666667C0 132.768 4.768 128 10.6666666666667 128H117.3333333333333C123.232 128 128 132.768 128 138.6666666666667V245.3333333333334C128 251.232 123.232 256 117.3333333333333 256z" />
685
- <glyph glyph-name="block-down"
686
- unicode="&#xEAE2;"
687
- horiz-adv-x="256" d="M234.6666666666667 202.6666666666667V245.3333333333334C234.6666666666667 251.2213333333334 229.888 256 224 256L32 256C26.112 256 21.3333333333333 251.2213333333334 21.3333333333333 245.3333333333334V202.6666666666667C21.3333333333333 196.7786666666667 26.112 192 32 192H224C229.888 192 234.6666666666667 196.7786666666667 234.6666666666667 202.6666666666667zM128 0L202.6666666666667 96L138.6666666666667 96L138.6666666666667 170.6666666666667L117.3333333333333 170.6666666666667L117.3333333333333 96L53.3333333333333 96z" />
688
- <glyph glyph-name="block-left"
689
- unicode="&#xEAE3;"
690
- horiz-adv-x="256" d="M202.6666666666667 234.6666666666667H245.3333333333333C251.2213333333333 234.6666666666667 256 229.888 256 224V32C256 26.112 251.2213333333333 21.3333333333333 245.3333333333333 21.3333333333333H202.6666666666667C196.7786666666667 21.3333333333333 192 26.112 192 32V224C192 229.888 196.7786666666667 234.6666666666667 202.6666666666667 234.6666666666667zM0 128L96 202.6666666666667L96 138.6666666666667L170.6666666666667 138.6666666666667L170.6666666666667 117.3333333333334L96 117.3333333333334L96 53.3333333333333z" />
691
- <glyph glyph-name="block-right"
692
- unicode="&#xEAE4;"
693
- horiz-adv-x="256" d="M53.3333333333333 234.6666666666667H10.6666666666667C4.7786666666667 234.6666666666667 0 229.888 0 224V32C0 26.112 4.7786666666667 21.3333333333333 10.6666666666667 21.3333333333333H53.3333333333333C59.2213333333333 21.3333333333333 64 26.112 64 32V224C64 229.888 59.2213333333333 234.6666666666667 53.3333333333333 234.6666666666667zM256 128L160 202.6666666666667L160 138.6666666666667L85.3333333333333 138.6666666666667L85.3333333333333 117.3333333333334L160 117.3333333333334L160 53.3333333333333z" />
694
- <glyph glyph-name="block-top-left"
695
- unicode="&#xEAE5;"
696
- horiz-adv-x="256" d="M0 256L106.6666666666667 256L60.8746666666667 210.208L114.208 156.8746666666667L99.1253333333333 141.792L45.792 195.1253333333334L0 149.3333333333334zM138.6666666666667 0H245.3333333333333C251.232 0 256 4.768 256 10.6666666666667V117.3333333333334C256 123.232 251.232 128 245.3333333333333 128H138.6666666666667C132.768 128 128 123.232 128 117.3333333333334V10.6666666666667C128 4.768 132.768 0 138.6666666666667 0z" />
697
- <glyph glyph-name="block-top-right"
698
- unicode="&#xEAE6;"
699
- horiz-adv-x="256" d="M256 256L149.3333333333333 256L195.1253333333333 210.208L141.792 156.8746666666667L156.8746666666667 141.792L210.208 195.1253333333334L256 149.3333333333334zM117.3333333333333 0H10.6666666666667C4.768 0 0 4.768 0 10.6666666666667V117.3333333333334C0 123.232 4.768 128 10.6666666666667 128H117.3333333333333C123.232 128 128 123.232 128 117.3333333333334V10.6666666666667C128 4.768 123.232 0 117.3333333333333 0z" />
700
- <glyph glyph-name="block-up"
701
- unicode="&#xEAE7;"
702
- horiz-adv-x="256" d="M234.6666666666667 53.3333333333333V10.6666666666667C234.6666666666667 4.7786666666667 229.888 0 224 0H32C26.112 0 21.3333333333333 4.7786666666667 21.3333333333333 10.6666666666667V53.3333333333333C21.3333333333333 59.2213333333334 26.112 64 32 64H224C229.888 64 234.6666666666667 59.2213333333334 234.6666666666667 53.3333333333333zM128 256L202.6666666666667 160L138.6666666666667 160L138.6666666666667 85.3333333333333L117.3333333333333 85.3333333333333L117.3333333333333 160L53.3333333333333 160z" />
703
- <glyph glyph-name="blog"
704
- unicode="&#xEAE8;"
705
- horiz-adv-x="256" d="M224 256H32A10.666666666666666 10.666666666666666 0 0 1 21.3333333333333 245.3333333333334V10.6666666666667A10.666666666666666 10.666666666666666 0 0 1 32 0H224A10.666666666666666 10.666666666666666 0 0 1 234.6666666666667 10.6666666666667V245.3333333333334A10.666666666666666 10.666666666666666 0 0 1 224 256zM192 42.6666666666667H64V64H192zM192 96H64V117.3333333333334H192zM192 149.3333333333333H64V213.3333333333334H192z" />
706
- <glyph glyph-name="blueberries"
707
- unicode="&#xEAE9;"
708
- horiz-adv-x="256" d="M128 256A74.28266666666667 74.28266666666667 0 0 1 54.5173333333333 168.5333333333334A95.488 95.488 0 0 0 128 154.432A95.488 95.488 0 0 0 201.4826666666667 168.5333333333334A74.28266666666667 74.28266666666667 0 0 1 128 256zM128 202.6666666666667A10.666666666666666 10.666666666666666 0 1 0 138.6666666666667 213.3333333333334A10.666666666666666 10.666666666666666 0 0 0 128 202.6666666666667zM74.6666666666667 149.3333333333334A74.66666666666669 74.66666666666669 0 1 1 149.3333333333333 74.6666666666667A74.752 74.752 0 0 1 74.6666666666667 149.3333333333334zM53.3333333333333 85.3333333333333A10.666666666666666 10.666666666666666 0 1 0 64 96A10.666666666666666 10.666666666666666 0 0 0 53.3333333333333 85.3333333333333zM181.3333333333333 149.3333333333334A74.13333333333333 74.13333333333333 0 0 1 144.9706666666667 139.8186666666667A95.44533333333331 95.44533333333331 0 0 0 144.9706666666667 9.5146666666667A74.66666666666669 74.66666666666669 0 1 1 181.3333333333333 149.3333333333334zM213.3333333333333 64A10.666666666666666 10.666666666666666 0 1 0 224 74.6666666666667A10.666666666666666 10.666666666666666 0 0 0 213.3333333333333 64z" />
709
- <glyph glyph-name="bluetooth"
710
- unicode="&#xEAEA;"
711
- horiz-adv-x="256" d="M177.0666666666667 93.8666666666667L123.7333333333333 138.6666666666667L178.1333333333333 183.4666666666667C180.2666666666667 185.6 181.3333333333333 188.8 181.3333333333333 193.0666666666667C181.3333333333333 196.2666666666667 179.2 199.4666666666667 177.0666666666666 201.6L113.0666666666666 244.2666666666667C109.8666666666666 246.4 105.6 246.4 102.4 244.2666666666667C98.1333333333333 242.1333333333334 96 238.9333333333334 96 234.6666666666667V161.0666666666667L49.0666666666667 200.5333333333333C44.8 203.7333333333334 38.4 203.7333333333334 34.1333333333333 198.4C30.9333333333333 194.1333333333333 30.9333333333333 187.7333333333334 36.2666666666667 183.4666666666667L89.6 138.6666666666667L35.2 93.8666666666667C30.9333333333333 89.6 29.8666666666667 83.2 34.1333333333333 78.9333333333333C38.4 74.6666666666667 44.8 73.6 49.0666666666667 77.8666666666667L96 116.2666666666667V32C96 27.7333333333333 98.1333333333333 24.5333333333333 102.4 22.4C103.4666666666667 21.3333333333333 105.6 21.3333333333333 106.6666666666667 21.3333333333333C108.8 21.3333333333333 112 22.4 113.0666666666667 23.4666666666667L177.0666666666667 76.8C179.2 78.9333333333333 181.3333333333334 82.1333333333334 181.3333333333334 85.3333333333333S180.2666666666667 91.7333333333334 177.0666666666667 93.8666666666667zM117.3333333333333 214.4L152.5333333333333 190.9333333333333L117.3333333333333 161.0666666666667V214.4zM117.3333333333333 54.4V115.2000000000001L153.6 84.2666666666667L117.3333333333333 54.4z" />
712
- <glyph glyph-name="board-2"
713
- unicode="&#xEAEB;"
714
- horiz-adv-x="256" d="M10.6666666666667 256C4.768 256 0 251.232 0 245.3333333333334V0H21.3333333333333V234.6666666666667H85.3333333333333V213.3333333333334H53.3333333333333C47.4346666666667 213.3333333333334 42.6666666666667 208.5653333333334 42.6666666666667 202.6666666666667V74.6666666666667C42.6666666666667 68.768 47.4346666666667 64 53.3333333333333 64H245.3333333333333C251.232 64 256 68.768 256 74.6666666666667V202.6666666666667C256 208.5653333333334 251.232 213.3333333333334 245.3333333333333 213.3333333333334H213.3333333333333V234.6666666666667H256V256H10.6666666666667zM192 213.3333333333334H106.6666666666667V234.6666666666667H192V213.3333333333334z" />
715
- <glyph glyph-name="board-27"
716
- unicode="&#xEAEC;"
717
- horiz-adv-x="256" d="M224 256H32C26.112 256 21.3333333333333 251.2213333333334 21.3333333333333 245.3333333333334V85.3333333333333H234.6666666666667V245.3333333333334C234.6666666666667 251.2213333333334 229.888 256 224 256zM245.3333333333333 64H138.6666666666667H117.3333333333333H10.6666666666667C4.768 64 0 59.2213333333334 0 53.3333333333333S4.768 42.6666666666667 10.6666666666667 42.6666666666667H80.9173333333333L56.4586666666667 18.208L71.5413333333333 3.1253333333334L111.0826666666667 42.6666666666667H117.3333333333333V10.6666666666667H138.6666666666667V42.6666666666667H144.9173333333333L184.4586666666667 3.1253333333333L199.5413333333333 18.208L175.0826666666667 42.6666666666667H245.3333333333333C251.232 42.6666666666667 256 47.4453333333333 256 53.3333333333333S251.232 64 245.3333333333333 64z" />
718
- <glyph glyph-name="board-28"
719
- unicode="&#xEAED;"
720
- horiz-adv-x="256" d="M245.3333333333333 64H138.6666666666667H117.3333333333333H10.6666666666667C4.768 64 0 59.2213333333334 0 53.3333333333333S4.768 42.6666666666667 10.6666666666667 42.6666666666667H80.9173333333333L56.4586666666667 18.208L71.5413333333333 3.1253333333334L111.0826666666667 42.6666666666667H117.3333333333333V10.6666666666667H138.6666666666667V42.6666666666667H144.9173333333333L184.4586666666667 3.1253333333333L199.5413333333333 18.208L175.0826666666667 42.6666666666667H245.3333333333333C251.232 42.6666666666667 256 47.4453333333333 256 53.3333333333333S251.232 64 245.3333333333333 64zM224 256H32C26.112 256 21.3333333333333 251.2213333333334 21.3333333333333 245.3333333333334V85.3333333333333H234.6666666666667V245.3333333333334C234.6666666666667 251.2213333333334 229.888 256 224 256zM181.3333333333333 149.3333333333334H160V176.9173333333334L103.5413333333333 120.4586666666667L88.4586666666667 135.5413333333334L144.9173333333333 192H117.3333333333333V213.3333333333334H170.6666666666667C176.5653333333333 213.3333333333334 181.3333333333333 208.5546666666667 181.3333333333333 202.6666666666667V149.3333333333334z" />
721
- <glyph glyph-name="board-29"
722
- unicode="&#xEAEE;"
723
- horiz-adv-x="256" d="M245.3333333333333 64H138.6666666666667H117.3333333333333H10.6666666666667C4.768 64 0 59.2213333333334 0 53.3333333333333S4.768 42.6666666666667 10.6666666666667 42.6666666666667H80.9173333333333L56.4586666666667 18.208L71.5413333333333 3.1253333333334L111.0826666666667 42.6666666666667H117.3333333333333V10.6666666666667H138.6666666666667V42.6666666666667H144.9173333333333L184.4586666666667 3.1253333333333L199.5413333333333 18.208L175.0826666666667 42.6666666666667H245.3333333333333C251.232 42.6666666666667 256 47.4453333333333 256 53.3333333333333S251.232 64 245.3333333333333 64zM224 256H32C26.112 256 21.3333333333333 251.2213333333334 21.3333333333333 245.3333333333334V85.3333333333333H234.6666666666667V245.3333333333334C234.6666666666667 251.2213333333334 229.888 256 224 256zM128 128C104.4373333333333 128 85.3333333333333 147.104 85.3333333333333 170.6666666666667C85.3333333333333 194.2293333333333 104.4373333333333 213.3333333333333 128 213.3333333333333V170.6666666666667H170.6666666666667C170.6666666666667 147.104 151.5626666666667 128 128 128z" />
724
- <glyph glyph-name="board-30"
725
- unicode="&#xEAEF;"
726
- horiz-adv-x="256" d="M245.3333333333333 64H138.6666666666667H117.3333333333333H10.6666666666667C4.768 64 0 59.2213333333334 0 53.3333333333333S4.768 42.6666666666667 10.6666666666667 42.6666666666667H80.9173333333333L56.4586666666667 18.208L71.5413333333333 3.1253333333334L111.0826666666667 42.6666666666667H117.3333333333333V10.6666666666667H138.6666666666667V42.6666666666667H144.9173333333333L184.4586666666667 3.1253333333333L199.5413333333333 18.208L175.0826666666667 42.6666666666667H245.3333333333333C251.232 42.6666666666667 256 47.4453333333333 256 53.3333333333333S251.232 64 245.3333333333333 64zM224 256H32C26.112 256 21.3333333333333 251.2213333333334 21.3333333333333 245.3333333333334V85.3333333333333H234.6666666666667V245.3333333333334C234.6666666666667 251.2213333333334 229.888 256 224 256zM96 128H74.6666666666667V170.6666666666667H96V128zM138.6666666666667 128H117.3333333333333V213.3333333333334H138.6666666666667V128zM181.3333333333333 128H160V192H181.3333333333333V128z" />
727
- <glyph glyph-name="board-51"
728
- unicode="&#xEAF0;"
729
- horiz-adv-x="256" d="M64 170.6666666666667H128V149.3333333333334H64V170.6666666666667zM64 117.3333333333334H192V96H64V117.3333333333334zM245.3333333333333 64H234.6666666666667V181.3333333333334H213.3333333333333V64H42.6666666666667V213.3333333333334H224V234.6666666666667H138.6666666666666V256H117.3333333333333V234.6666666666667H32C26.112 234.6666666666667 21.3333333333333 229.8986666666667 21.3333333333333 224V64H10.6666666666667C4.7786666666667 64 0 59.232 0 53.3333333333333S4.7786666666667 42.6666666666667 10.6666666666667 42.6666666666667H80.9173333333333L56.4586666666667 18.208L71.5413333333333 3.1253333333334L111.0826666666667 42.6666666666667H117.3333333333333V10.6666666666667H138.6666666666667V42.6666666666667H144.9173333333333L184.4586666666667 3.1253333333333L199.5413333333333 18.208L175.0826666666667 42.6666666666667H245.3333333333333C251.2213333333333 42.6666666666667 256 47.4346666666667 256 53.3333333333333S251.2213333333333 64 245.3333333333333 64zM160 149.3333333333334C157.2693333333333 149.3333333333334 154.5386666666667 150.3786666666667 152.4586666666667 152.4586666666667C148.288 156.6293333333333 148.288 163.3706666666667 152.4586666666667 167.5413333333334L237.792 252.8746666666667C241.9626666666667 257.0453333333334 248.704 257.0453333333334 252.8746666666667 252.8746666666667S257.0453333333333 241.9626666666667 252.8746666666667 237.792L167.5413333333333 152.4586666666667C165.4613333333333 150.3786666666667 162.7306666666667 149.3333333333334 160 149.3333333333334z" />
730
- <glyph glyph-name="board"
731
- unicode="&#xEAF1;"
732
- horiz-adv-x="256" d="M255.68 23.9146666666667L202.3466666666666 237.248C201.1626666666667 242.0053333333334 196.896 245.3333333333334 192 245.3333333333334H53.3333333333333C50.048 245.3333333333334 46.944 243.8186666666667 44.928 241.2266666666667C42.9013333333333 238.6453333333334 42.1866666666667 235.2746666666667 42.9866666666667 232.0853333333333L96.32 18.752C97.7493333333333 13.024 103.5626666666667 9.5466666666667 109.2586666666667 10.9866666666667C114.976 12.416 118.4426666666667 18.208 117.024 23.9146666666667L106.9973333333333 64H223.6693333333333L234.9866666666667 18.752C236.2026666666667 13.8986666666667 240.544 10.6666666666667 245.3226666666667 10.6666666666667C246.1866666666667 10.6666666666667 247.0506666666667 10.7733333333333 247.9253333333333 10.9866666666667C253.632 12.416 257.1093333333333 18.208 255.68 23.9146666666667zM31.6906666666667 189.28L0.2773333333333 55.776C-1.0666666666667 50.0373333333334 2.4853333333333 44.2986666666667 8.224 42.944C9.0453333333333 42.7626666666667 9.8666666666667 42.6666666666667 10.6773333333333 42.6666666666667C15.5093333333333 42.6666666666667 19.8933333333333 45.984 21.056 50.8906666666667L29.152 85.3333333333333H57.6746666666667L31.6906666666667 189.28z" />
733
- <glyph glyph-name="boat-front"
734
- unicode="&#xEAF2;"
735
- horiz-adv-x="256" d="M149.3333333333333 245.3333333333334C149.3333333333333 251.2213333333334 144.5546666666667 256 138.6666666666667 256H117.3333333333333C111.4453333333333 256 106.6666666666667 251.2213333333334 106.6666666666667 245.3333333333334V224H149.3333333333333V245.3333333333334zM245.3333333333333 62.9226666666667C239.4453333333333 62.9226666666667 234.6666666666667 58.144 234.6666666666667 52.256C234.6666666666667 34.6133333333334 220.3093333333333 20.256 202.6666666666667 20.256C191.072 20.256 180.352 26.7093333333333 174.6986666666667 37.0986666666667C170.9546666666667 43.968 159.7013333333334 43.968 155.9573333333334 37.0986666666667C150.304 26.7093333333334 139.584 20.256 127.9893333333334 20.256S105.6746666666667 26.7093333333333 100.0213333333334 37.0986666666667C96.2773333333334 43.968 85.024 43.968 81.28 37.0986666666667C75.648 26.7093333333333 64.928 20.256 53.3333333333333 20.256C35.6906666666667 20.256 21.3333333333333 34.6133333333334 21.3333333333333 52.256C21.3333333333333 58.144 16.5546666666667 62.9226666666667 10.6666666666667 62.9226666666667S0 58.144 0 52.256C0 22.848 23.9253333333333 -1.0773333333333 53.3333333333333 -1.0773333333333C67.488 -1.0773333333333 80.832 4.6186666666667 90.6666666666667 14.4C100.5013333333333 4.6186666666667 113.8453333333333 -1.0773333333333 128 -1.0773333333333S155.4986666666667 4.6186666666667 165.3333333333333 14.4C175.168 4.6186666666667 188.512 -1.0773333333333 202.6666666666666 -1.0773333333333C232.0746666666667 -1.0773333333333 256 22.848 256 52.256C256 58.144 251.2213333333333 62.9226666666667 245.3333333333333 62.9226666666667zM43.7866666666667 48.5653333333333C46.4213333333333 43.296 52.8106666666667 41.1626666666667 58.1013333333333 43.7973333333333C63.3706666666667 46.432 65.504 52.8426666666667 62.8693333333333 58.112L46.1013333333333 91.648L128 137.1306666666667L209.888 91.6373333333334L193.12 58.1013333333333C190.4853333333333 52.832 192.6186666666667 46.4213333333333 197.888 43.7866666666667C199.424 43.0293333333333 201.056 42.6666666666667 202.656 42.6666666666667C206.5706666666667 42.6666666666667 210.336 44.8213333333333 212.2133333333333 48.5653333333333L233.5466666666667 91.232C236.096 96.3413333333333 234.176 102.56 229.184 105.3226666666667L213.3333333333333 114.1226666666667V192C213.3333333333333 197.888 208.5546666666667 202.6666666666667 202.6666666666667 202.6666666666667H53.3333333333333C47.4453333333333 202.6666666666667 42.6666666666667 197.888 42.6666666666667 192V114.1226666666667L26.816 105.3226666666667C21.824 102.5493333333333 19.904 96.3413333333333 22.4533333333333 91.232L43.7866666666667 48.5653333333333z" />
736
- <glyph glyph-name="boat-small-02"
737
- unicode="&#xEAF3;"
738
- horiz-adv-x="256" d="M245.3333333333333 64H10.6666666666667C6.7306666666667 64 3.1146666666667 61.8346666666667 1.2586666666667 58.368C-0.5973333333333 54.9013333333333 -0.3946666666667 50.688 1.792 47.424L23.1253333333333 15.424C25.1093333333333 12.448 28.4373333333333 10.6666666666667 32 10.6666666666667H213.3333333333333C216.16 10.6666666666667 218.88 11.7866666666667 220.8746666666667 13.792L252.8746666666667 45.792C255.9253333333334 48.8426666666667 256.8426666666667 53.4293333333334 255.1893333333333 57.4186666666667C253.536 61.3973333333333 249.6426666666667 64 245.3333333333333 64zM170.6666666666667 85.3333333333333H224C228 85.3333333333333 231.6586666666667 87.5626666666667 233.4826666666667 91.1146666666667S234.9973333333334 98.944 232.6826666666667 102.1973333333333L179.3493333333333 176.864C176.6506666666667 180.64 171.8293333333333 182.2293333333333 167.4133333333333 180.8213333333333C162.9973333333333 179.4133333333334 160 175.3066666666667 160 170.6666666666667V96C160 90.112 164.7786666666667 85.3333333333333 170.6666666666667 85.3333333333333zM21.3333333333333 85.3333333333333H128C133.888 85.3333333333333 138.6666666666667 90.112 138.6666666666667 96V245.3333333333334C138.6666666666667 249.9733333333334 135.6693333333333 254.08 131.2533333333333 255.488C126.8266666666667 256.896 122.016 255.296 119.3173333333333 251.5306666666667L12.6506666666667 102.1973333333334C10.336 98.944 10.016 94.6666666666667 11.8506666666667 91.1146666666667S17.3333333333333 85.3333333333333 21.3333333333333 85.3333333333333z" />
739
- <glyph glyph-name="boat-small-03"
740
- unicode="&#xEAF4;"
741
- horiz-adv-x="256" d="M245.3333333333333 64H10.6666666666667C6.7306666666667 64 3.1146666666667 61.8346666666667 1.2586666666667 58.368C-0.5973333333333 54.9013333333333 -0.3946666666667 50.688 1.792 47.424L23.1253333333333 15.424C25.1093333333333 12.448 28.4373333333333 10.6666666666667 32 10.6666666666667H213.3333333333333C216.16 10.6666666666667 218.88 11.7866666666667 220.8746666666667 13.792L252.8746666666667 45.792C255.9253333333334 48.8426666666667 256.8426666666667 53.4293333333334 255.1893333333333 57.4186666666667C253.536 61.3973333333333 249.6426666666667 64 245.3333333333333 64zM32 85.3333333333333H138.6666666666667C144.5546666666667 85.3333333333333 149.3333333333333 90.112 149.3333333333333 96V245.3333333333334C149.3333333333333 249.9733333333334 146.336 254.08 141.92 255.488C137.504 256.896 132.6826666666667 255.296 129.984 251.5306666666667L23.3173333333333 102.1973333333334C21.0026666666667 98.944 20.6826666666667 94.6666666666667 22.5173333333333 91.1146666666667S28 85.3333333333333 32 85.3333333333333z" />
742
- <glyph glyph-name="boat"
743
- unicode="&#xEAF5;"
744
- horiz-adv-x="256" d="M106.6666666666667 234.6666666666667C106.6666666666667 240.5546666666667 101.888 245.3333333333334 96 245.3333333333334H64C58.112 245.3333333333334 53.3333333333333 240.5546666666667 53.3333333333333 234.6666666666667V213.3333333333334H106.6666666666667V234.6666666666667zM245.3333333333333 74.6666666666667C239.4453333333333 74.6666666666667 234.6666666666667 69.888 234.6666666666667 64C234.6666666666667 46.3573333333334 220.3093333333333 32 202.6666666666667 32C191.072 32 180.352 38.4533333333334 174.6986666666667 48.8426666666667C170.9546666666667 55.712 159.7013333333334 55.712 155.9573333333334 48.8426666666667C150.3146666666667 38.4533333333334 139.5946666666667 32 128 32S105.6853333333333 38.4533333333333 100.032 48.8426666666667C96.288 55.712 85.0346666666667 55.712 81.2906666666667 48.8426666666667C75.648 38.4533333333334 64.928 32 53.3333333333333 32C35.6906666666667 32 21.3333333333333 46.3573333333333 21.3333333333333 64C21.3333333333333 69.888 16.5546666666667 74.6666666666667 10.6666666666667 74.6666666666667S0 69.888 0 64C0 34.592 23.9253333333333 10.6666666666667 53.3333333333333 10.6666666666667C67.488 10.6666666666667 80.832 16.3626666666667 90.6666666666667 26.144C100.5013333333333 16.3626666666667 113.8453333333333 10.6666666666667 128 10.6666666666667S155.4986666666667 16.3626666666667 165.3333333333333 26.144C175.168 16.3626666666667 188.512 10.6666666666667 202.6666666666667 10.6666666666667C232.0746666666667 10.6666666666667 256 34.592 256 64C256 69.888 251.2213333333333 74.6666666666667 245.3333333333333 74.6666666666667zM32.544 71.296C34.0373333333333 66.8266666666667 38.1973333333333 64 42.6666666666667 64C43.776 64 44.9173333333333 64.1813333333333 46.0373333333333 64.5546666666667C51.6266666666667 66.4213333333333 54.6453333333333 72.4586666666667 52.7786666666667 78.048L36.128 128H42.6666666666667H192C192.064 128 192.1386666666666 128.0106666666667 192.2133333333333 128H217.408L193.1306666666667 79.4346666666667C190.496 74.1653333333333 192.6293333333333 67.7546666666667 197.8986666666667 65.12C203.1893333333333 62.4746666666667 209.5786666666667 64.6186666666667 212.2133333333333 69.888L244.2133333333333 133.888C245.8666666666667 137.1946666666667 245.6853333333333 141.12 243.744 144.2666666666667C241.792 147.4133333333334 238.368 149.3333333333334 234.6666666666667 149.3333333333334H198.592L180.2133333333333 186.1013333333334C178.4 189.7173333333333 174.7093333333334 192 170.6666666666667 192H42.6666666666667C36.7786666666667 192 32 187.2213333333334 32 181.3333333333334V149.3333333333334H21.3333333333333C17.9093333333333 149.3333333333334 14.688 147.6906666666667 12.6826666666667 144.896C10.6773333333333 142.112 10.1333333333333 138.5386666666667 11.2106666666667 135.2853333333334L32.544 71.296z" />
745
- <glyph glyph-name="bold-add"
746
- unicode="&#xEAF6;"
747
- horiz-adv-x="256" d="M245.3333333333333 160H160V245.3333333333334C160 251.7333333333333 155.7333333333333 256 149.3333333333334 256H106.6666666666667C100.2666666666667 256 96 251.7333333333333 96 245.3333333333334V160H10.6666666666667C4.2666666666667 160 0 155.7333333333334 0 149.3333333333333V106.6666666666667C0 100.2666666666667 4.2666666666667 96 10.6666666666667 96H96V10.6666666666667C96 4.2666666666667 100.2666666666667 0 106.6666666666667 0H149.3333333333334C155.7333333333334 0 160 4.2666666666667 160 10.6666666666667V96H245.3333333333333C251.7333333333333 96 256 100.2666666666667 256 106.6666666666667V149.3333333333333C256 155.7333333333334 251.7333333333334 160 245.3333333333333 160z" />
748
- <glyph glyph-name="bold-delete"
749
- unicode="&#xEAF7;"
750
- horiz-adv-x="256" d="M245.3333333333333 160H10.6666666666667C4.2666666666667 160 0 155.7333333333334 0 149.3333333333333V106.6666666666667C0 100.2666666666667 4.2666666666667 96 10.6666666666667 96H245.3333333333333C251.7333333333333 96 256 100.2666666666667 256 106.6666666666667V149.3333333333333C256 155.7333333333334 251.7333333333334 160 245.3333333333333 160z" />
751
- <glyph glyph-name="bold-direction"
752
- unicode="&#xEAF8;"
753
- horiz-adv-x="256" d="M224 85.3333333333333H85.3333333333333V128L0 64L85.3333333333333 0V42.6666666666667H224C230.4 42.6666666666667 234.6666666666667 46.9333333333333 234.6666666666667 53.3333333333333V74.6666666666667C234.6666666666667 81.0666666666667 230.4 85.3333333333333 224 85.3333333333333zM170.6666666666667 128L256 192L170.6666666666667 256V213.3333333333334H32C25.6 213.3333333333334 21.3333333333333 209.0666666666667 21.3333333333333 202.6666666666667V181.3333333333334C21.3333333333333 174.9333333333333 25.6 170.6666666666667 32 170.6666666666667H170.6666666666667V128z" />
754
- <glyph glyph-name="bold-down"
755
- unicode="&#xEAF9;"
756
- horiz-adv-x="256" d="M21.3333333333333 160L64 202.6666666666667L128 138.6666666666667L192 202.6666666666667L234.6666666666667 160L128 53.3333333333333z" />
757
- <glyph glyph-name="bold-left"
758
- unicode="&#xEAFA;"
759
- horiz-adv-x="256" d="M160 234.6666666666667L202.6666666666667 192L138.6666666666667 128L202.6666666666667 64L160 21.3333333333333L53.3333333333333 128z" />
760
- <glyph glyph-name="bold-remove"
761
- unicode="&#xEAFB;"
762
- horiz-adv-x="256" d="M242.1333333333334 210.1333333333333L210.1333333333333 242.1333333333334C205.8666666666667 246.4 199.4666666666667 246.4 195.2 242.1333333333334L128 174.9333333333333L60.8 242.1333333333334C56.5333333333333 246.4 50.1333333333333 246.4 45.8666666666667 242.1333333333334L13.8666666666667 210.1333333333333C9.6 205.8666666666667 9.6 199.4666666666667 13.8666666666667 195.2L81.0666666666667 128L13.8666666666667 60.8C9.6 56.5333333333333 9.6 50.1333333333334 13.8666666666667 45.8666666666667L45.8666666666667 13.8666666666667C50.1333333333333 9.6 56.5333333333333 9.6 60.8 13.8666666666667L128 81.0666666666667L195.2 13.8666666666667C197.3333333333333 11.7333333333333 200.5333333333333 10.6666666666667 202.6666666666667 10.6666666666667S208 11.7333333333333 210.1333333333333 13.8666666666667L242.1333333333334 45.8666666666667C246.4 50.1333333333334 246.4 56.5333333333333 242.1333333333334 60.8L174.9333333333333 128L242.1333333333333 195.2C246.4 199.4666666666667 246.4 205.8666666666667 242.1333333333334 210.1333333333333z" />
763
- <glyph glyph-name="bold-right"
764
- unicode="&#xEAFC;"
765
- horiz-adv-x="256" d="M96 234.6666666666667L53.3333333333333 192L117.3333333333333 128L53.3333333333333 64L96 21.3333333333333L202.6666666666667 128z" />
766
- <glyph glyph-name="bold-up"
767
- unicode="&#xEAFD;"
768
- horiz-adv-x="256" d="M234.6666666666667 96L192 53.3333333333333L128 117.3333333333334L64 53.3333333333333L21.3333333333333 96L128 202.6666666666667z" />
769
- <glyph glyph-name="bold"
770
- unicode="&#xEAFE;"
771
- horiz-adv-x="256" d="M32 10.6666666666667V35.9504L45.86976 40.3169066666667C50.312 41.71552 53.3333333333333 45.83424 53.3333333333333 50.4913066666667V205.2781866666667C53.3333333333333 210.0450133333334 50.17056 214.23328 45.5856 215.5377066666667L32 219.4029866666667V245.3333333333334H139.8369066666667C195.2605866666667 245.3333333333334 210.81888 220.0496 210.81888 187.9698133333333C210.81888 157.1700266666667 191.0510933333333 139.9886933333334 171.2833066666667 133.50944V132.5461333333333C208.2324266666667 128.3233066666667 224 107.0763733333334 224 74.6666666666667C224 26.6987733333334 187.8048 10.6666666666667 136.9205333333334 10.6666666666667H32zM119.0925866666667 146.7978666666667C142.42336 146.7978666666667 163.16768 152.3138133333333 163.16768 179.8673066666667C163.16768 206.4442666666667 146.3162666666667 210.0072533333333 123.9488 210.0072533333333H106.6666666666667V146.7978666666667H119.0925866666667zM128.4882133333333 45.6759466666667C155.7117866666666 45.6759466666667 173.5397333333333 52.1552 173.5397333333333 80.3553066666667C173.5397333333333 107.2621866666667 155.3950933333333 114.38816 133.3575466666666 114.38816H106.6666666666667V45.6759466666667H128.4882133333333z" />
772
- <glyph glyph-name="bolt"
773
- unicode="&#xEAFF;"
774
- horiz-adv-x="256" d="M243.9893333333333 133.184L190.656 229.1840000000001C188.7786666666667 232.5653333333334 185.2053333333333 234.6666666666667 181.3333333333333 234.6666666666667H74.6666666666667C70.7946666666667 234.6666666666667 67.2213333333333 232.5653333333334 65.344 229.184L12.0106666666667 133.184C10.2186666666667 129.9626666666667 10.2186666666667 126.048 12.0106666666667 122.816L65.344 26.816C67.2213333333333 23.4346666666667 70.7946666666667 21.3333333333333 74.6666666666667 21.3333333333333H181.3333333333333C185.2053333333333 21.3333333333333 188.7786666666667 23.4346666666667 190.656 26.8266666666667L243.9893333333333 122.8266666666667C245.7813333333334 126.0373333333334 245.7813333333334 129.9626666666667 243.9893333333333 133.184zM128 85.3333333333333C104.4693333333333 85.3333333333333 85.3333333333333 104.4693333333333 85.3333333333333 128C85.3333333333333 151.5306666666667 104.4693333333333 170.6666666666667 128 170.6666666666667C151.5306666666667 170.6666666666667 170.6666666666667 151.5306666666667 170.6666666666667 128C170.6666666666667 104.4693333333333 151.5306666666667 85.3333333333333 128 85.3333333333333z" />
775
- <glyph glyph-name="bomb"
776
- unicode="&#xEB00;"
777
- horiz-adv-x="256" d="M160 186.6666666666667V213.3333333333334C160 219.7333333333334 155.7333333333333 224 149.3333333333334 224H141.8666666666667C145.0666666666667 230.4 152.5333333333333 234.6666666666667 160 234.6666666666667C171.7333333333334 234.6666666666667 181.3333333333334 225.0666666666667 181.3333333333334 213.3333333333333V202.6666666666667C181.3333333333334 196.2666666666667 185.6 192 192 192C198.4 192 202.6666666666667 196.2666666666667 202.6666666666667 202.6666666666667V213.3333333333334C202.6666666666667 236.8 183.4666666666667 256 160 256C139.7333333333334 256 123.7333333333333 242.1333333333334 118.4 224H106.6666666666667C100.2666666666667 224 96 2