Brizy – Page Builder - Version 1.0.118

Version Description

  • 2020-03-25 =
  • New: Notification system for errors and if two users work on the same page.
  • New: Maintenance Mode
  • New: Add a Get Help link
  • New: Shortcut, press Esc key to select parent container
  • New: Added toggle options to make the More settings right sidebar sticky
  • New: Changed the template rules to allow users to create templates for posts from a specific category
  • New: Added compatibility Broken Link Checker
  • New: Added compatibility with SeoPress
  • New: Added compatibility with RankMath
  • New: Add Maintenance Mode Link in the admin toolbar
  • New: Changed the template rules to allow users to create templates for posts from a specific category
  • New: Added compatibility Broken Link Checker
  • New: Added compatibility with SeoPress
  • New: Added compatibility with RankMath
  • New: Add Maintenance Mode Link in the admin toolbar
  • Improved: Added 2 styles for Progress element
  • Improved: Added icons, vertical/horizontal options for Tabs element
  • Improved: Added icons, tags for the Accordion element
  • Improved: Added styles, redirect, message for the Countdown element
  • Improved: Added 3 styles for the Counter element
  • Improved: Element toolbar doesnt cover the content you are editing anymore
  • Improved: Optimised and re-written options in the builder for Border, Box Shadow, Code Mirror, Color Picker, Image upload, Input Text, Multi Select, Element Toolbar, Select, Slider, Switch, Tabs, Toggle, Textarea, Typography
  • Fixed: Enable/Disable editing with Brizy
  • Fixed: Brizy post revisions
  • Fixed: Brizy templates that are using the default theme template
  • Fixed: Enable/Disable editing with brizy
  • Fixed: Refactoring the post type field in editor config
  • Fixed: Post field shortcode to use a sample post for templates
  • Fixed: Brizy post revisions
  • Fixed: Brizy templates that are using the default theme template
  • Fixed: Removed header To from email headers
Download this release

Release Info

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

Code changes from version 1.0.117 to 1.0.118

Files changed (56) hide show
  1. README.md +36 -3
  2. admin/blocks/api.php +28 -9
  3. admin/blocks/main.php +1 -1
  4. admin/dashboard-widget.php +1 -1
  5. admin/main.php +5 -6
  6. admin/migrations/fix-globals-to-data-migration.php +1 -1
  7. admin/migrations/global-blocks-to-custom-post-migration.php +2 -2
  8. admin/migrations/site-settings-migration.php +35 -0
  9. admin/optimize-images.php +3 -3
  10. admin/popups/main.php +2 -2
  11. admin/post/brizy-posts-monitor.php +1 -0
  12. admin/post/project-post-monitor.php +1 -1
  13. admin/rule-set.php +2 -6
  14. admin/rule.php +12 -1
  15. admin/rules/api.php +83 -27
  16. admin/settings.php +57 -21
  17. admin/static/css/style.css +56 -10
  18. admin/static/js/rules.js +116 -51
  19. admin/static/js/script.js +44 -2
  20. admin/templates.php +160 -111
  21. admin/views/settings/general.php +1 -1
  22. admin/views/settings/maintenance.php +79 -0
  23. admin/views/settings/roles.php +1 -1
  24. brizy.php +3 -3
  25. compatibilities/broken-link-checker.php +22 -0
  26. compatibilities/init.php +17 -2
  27. compatibilities/rank-math-seo.php +46 -0
  28. compatibilities/seo-press.php +42 -0
  29. content/placeholders/permalink.php +34 -0
  30. content/providers/free-provider.php +3 -2
  31. editor.php +65 -29
  32. editor/accounts/abstract-account-manager.php +1 -1
  33. editor/accounts/service-account-manager.php +1 -1
  34. editor/api.php +273 -54
  35. editor/api/client.php +1 -1
  36. editor/asset/static-file.php +3 -3
  37. editor/auto-save-aware.php +70 -25
  38. editor/block-screenshot-api.php +1 -1
  39. editor/block.php +74 -42
  40. editor/editor/editor.php +61 -23
  41. editor/entity.php +233 -0
  42. editor/exceptions/data-version-mismatch.php +4 -0
  43. editor/exceptions/exception.php +11 -1
  44. editor/forms/api.php +2 -2
  45. editor/forms/form-manager.php +1 -1
  46. editor/forms/smtp-integration.php +8 -3
  47. editor/post.php +240 -489
  48. editor/post3.php +905 -0
  49. editor/project.php +66 -173
  50. editor/storage/post.php +2 -0
  51. editor/url-builder.php +10 -10
  52. editor/user.php +1 -1
  53. maintenance-mode.php +181 -0
  54. public/asset-proxy.php +1 -1
  55. public/block-screenshot-proxy.php +1 -1
  56. public/editor-build/131-wp/editor/css/editor.css +0 -10407
README.md CHANGED
@@ -3,7 +3,7 @@ Contributors: themefuse<br>
3
  Requires at least: 4.5<br>
4
  Tested up to: 5.3.2<br>
5
  Requires PHP: 5.6<br>
6
- Stable tag: 1.0.117<br>
7
  License: GPLv3<br>
8
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
9
 
@@ -101,10 +101,10 @@ $html = new Brizy_Editor_CompiledHtml( $post->get_compiled_html() );
101
 
102
  // the <head> content
103
  // the $headHtml contains all the assets the page needs
104
- $headHtml = apply_filters( 'brizy_content', $html->get_head(), Brizy_Editor_Project::get(), $post->get_wp_post() );
105
 
106
  // the <body> content
107
- $bodyHtml = apply_filters( 'brizy_content', $html->get_body(), Brizy_Editor_Project::get(), $post->get_wp_post() );
108
  ```
109
 
110
 
@@ -118,6 +118,39 @@ $bodyHtml = apply_filters( 'brizy_content', $html->get_body(), Brizy_Editor_Proj
118
 
119
  ## Changelog
120
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
121
  ### 1.0.117 - 2020-03-12 ###
122
  * Fixed: Export errors for certain users
123
  * Fixed: Removed header 'To' from PHPMailer
3
  Requires at least: 4.5<br>
4
  Tested up to: 5.3.2<br>
5
  Requires PHP: 5.6<br>
6
+ Stable tag: 1.0.118<br>
7
  License: GPLv3<br>
8
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
9
 
101
 
102
  // the <head> content
103
  // the $headHtml contains all the assets the page needs
104
+ $headHtml = apply_filters( 'brizy_content', $html->get_head(), Brizy_Editor_Project::get(), $post->getWpPost() );
105
 
106
  // the <body> content
107
+ $bodyHtml = apply_filters( 'brizy_content', $html->get_body(), Brizy_Editor_Project::get(), $post->getWpPost() );
108
  ```
109
 
110
 
118
 
119
  ## Changelog
120
 
121
+ ### 1.0.118 - 2020-03-25 ###
122
+ * New: Notification system for errors and if two users work on the same page.
123
+ * New: Maintenance Mode
124
+ * New: Add a Get Help link
125
+ * New: Shortcut, press Esc key to select parent container
126
+ * New: Added toggle options to make the More settings right sidebar sticky
127
+ * New: Changed the template rules to allow users to create templates for posts from a specific category
128
+ * New: Added compatibility Broken Link Checker
129
+ * New: Added compatibility with SeoPress
130
+ * New: Added compatibility with RankMath
131
+ * New: Add Maintenance Mode Link in the admin toolbar
132
+ * New: Changed the template rules to allow users to create templates for posts from a specific category
133
+ * New: Added compatibility Broken Link Checker
134
+ * New: Added compatibility with SeoPress
135
+ * New: Added compatibility with RankMath
136
+ * New: Add Maintenance Mode Link in the admin toolbar
137
+ * Improved: Added 2 styles for Progress element
138
+ * Improved: Added icons, vertical/horizontal options for Tabs element
139
+ * Improved: Added icons, tags for the Accordion element
140
+ * Improved: Added styles, redirect, message for the Countdown element
141
+ * Improved: Added 3 styles for the Counter element
142
+ * Improved: Element toolbar doesn’t cover the content you are editing anymore
143
+ * Improved: Optimised and re-written options in the builder for Border, Box Shadow, Code Mirror, Color Picker, Image upload, Input Text, Multi Select, Element Toolbar, Select, Slider, Switch, Tabs, Toggle, Textarea, Typography
144
+ * Fixed: Enable/Disable editing with Brizy
145
+ * Fixed: Brizy post revisions
146
+ * Fixed: Brizy templates that are using the default theme template
147
+ * Fixed: Enable/Disable editing with brizy
148
+ * Fixed: Refactoring the post type field in editor config
149
+ * Fixed: Post field shortcode to use a sample post for templates
150
+ * Fixed: Brizy post revisions
151
+ * Fixed: Brizy templates that are using the default theme template
152
+ * Fixed: Removed header To from email headers
153
+
154
  ### 1.0.117 - 2020-03-12 ###
155
  * Fixed: Export errors for certain users
156
  * Fixed: Removed header 'To' from PHPMailer
admin/blocks/api.php CHANGED
@@ -122,13 +122,13 @@ class Brizy_Admin_Blocks_Api extends Brizy_Admin_AbstractApi {
122
  $rulesData = stripslashes( $this->param( 'rules' ) );
123
  $rules = $this->ruleManager->createRulesFromJson( $rulesData, Brizy_Admin_Blocks_Main::CP_GLOBAL );
124
 
125
- $this->ruleManager->addRules( $block->get_wp_post()->ID, $rules );
126
 
127
  $block->save();
128
 
129
  do_action( 'brizy_global_data_updated' );
130
 
131
- $this->success( Brizy_Editor_Block::postData( $block ) );
132
 
133
  } catch ( Exception $exception ) {
134
  $this->error( 400, $exception->getMessage() );
@@ -156,7 +156,7 @@ class Brizy_Admin_Blocks_Api extends Brizy_Admin_AbstractApi {
156
 
157
  do_action( 'brizy_global_data_updated' );
158
 
159
- $this->success( Brizy_Editor_Block::postData( $block ) );
160
 
161
  } catch ( Exception $exception ) {
162
  $this->error( 400, $exception->getMessage() );
@@ -176,12 +176,17 @@ class Brizy_Admin_Blocks_Api extends Brizy_Admin_AbstractApi {
176
  $this->error( '400', 'Invalid data' );
177
  }
178
 
 
 
 
 
179
 
180
  $block = $this->getBlock( $this->param( 'uid' ), Brizy_Admin_Blocks_Main::CP_GLOBAL );
181
  /**
182
  * @var Brizy_Editor_Block $block ;
183
  */
184
  $block->set_editor_data( stripslashes( $this->param( 'data' ) ) );
 
185
  $position = stripslashes( $this->param( 'position' ) );
186
 
187
  if ( $position ) {
@@ -192,16 +197,16 @@ class Brizy_Admin_Blocks_Api extends Brizy_Admin_AbstractApi {
192
  $rulesData = stripslashes( $this->param( 'rules' ) );
193
  $rules = $this->ruleManager->createRulesFromJson( $rulesData, Brizy_Admin_Blocks_Main::CP_GLOBAL );
194
 
195
- $this->ruleManager->setRules( $block->get_wp_post()->ID, $rules );
196
 
197
  if ( (int) $this->param( 'is_autosave' ) ) {
198
- $block->save(1);
199
  } else {
200
- $block->save(0);
201
  do_action( 'brizy_global_data_updated' );
202
  }
203
 
204
- $this->success( Brizy_Editor_Block::postData( $block ) );
205
  } catch ( Exception $exception ) {
206
  $this->error( 400, $exception->getMessage() );
207
  }
@@ -219,18 +224,27 @@ class Brizy_Admin_Blocks_Api extends Brizy_Admin_AbstractApi {
219
  $this->error( '400', 'Invalid data' );
220
  }
221
 
 
 
 
 
222
  $block = $this->getBlock( $this->param( 'uid' ), Brizy_Admin_Blocks_Main::CP_SAVED );
223
 
 
 
 
 
224
  $block->set_editor_data( stripslashes( $this->param( 'data' ) ) );
 
225
 
226
  if ( (int) $this->param( 'is_autosave' ) ) {
227
- $block->save(1);
228
  } else {
229
  $block->save();
230
  do_action( 'brizy_global_data_updated' );
231
  }
232
 
233
- $this->success( Brizy_Editor_Block::postData( $block ) );
234
  } catch ( Exception $exception ) {
235
  $this->error( 400, $exception->getMessage() );
236
  }
@@ -272,6 +286,10 @@ class Brizy_Admin_Blocks_Api extends Brizy_Admin_AbstractApi {
272
 
273
  $this->verifyNonce( self::nonce );
274
 
 
 
 
 
275
  $positions = file_get_contents( "php://input" );
276
  $positionObject = json_decode( $positions );
277
 
@@ -377,6 +395,7 @@ class Brizy_Admin_Blocks_Api extends Brizy_Admin_AbstractApi {
377
  $brizyPost = Brizy_Editor_Block::get( $post, $uid );
378
  $brizyPost->set_uses_editor( true );
379
  $brizyPost->set_needs_compile( true );
 
380
 
381
  return $brizyPost;
382
  }
122
  $rulesData = stripslashes( $this->param( 'rules' ) );
123
  $rules = $this->ruleManager->createRulesFromJson( $rulesData, Brizy_Admin_Blocks_Main::CP_GLOBAL );
124
 
125
+ $this->ruleManager->addRules( $block->getWpPostId(), $rules );
126
 
127
  $block->save();
128
 
129
  do_action( 'brizy_global_data_updated' );
130
 
131
+ $this->success( $block->createResponse() );
132
 
133
  } catch ( Exception $exception ) {
134
  $this->error( 400, $exception->getMessage() );
156
 
157
  do_action( 'brizy_global_data_updated' );
158
 
159
+ $this->success( $block->createResponse() );
160
 
161
  } catch ( Exception $exception ) {
162
  $this->error( 400, $exception->getMessage() );
176
  $this->error( '400', 'Invalid data' );
177
  }
178
 
179
+ if ( $this->param( 'dataVersion' ) === null ) {
180
+ $this->error( '400', 'Invalid data version' );
181
+ }
182
+
183
 
184
  $block = $this->getBlock( $this->param( 'uid' ), Brizy_Admin_Blocks_Main::CP_GLOBAL );
185
  /**
186
  * @var Brizy_Editor_Block $block ;
187
  */
188
  $block->set_editor_data( stripslashes( $this->param( 'data' ) ) );
189
+ $block->setDataVersion( $this->param( 'dataVersion' ) );
190
  $position = stripslashes( $this->param( 'position' ) );
191
 
192
  if ( $position ) {
197
  $rulesData = stripslashes( $this->param( 'rules' ) );
198
  $rules = $this->ruleManager->createRulesFromJson( $rulesData, Brizy_Admin_Blocks_Main::CP_GLOBAL );
199
 
200
+ $this->ruleManager->setRules( $block->getWpPostId(), $rules );
201
 
202
  if ( (int) $this->param( 'is_autosave' ) ) {
203
+ $block->save( 1 );
204
  } else {
205
+ $block->save( 0 );
206
  do_action( 'brizy_global_data_updated' );
207
  }
208
 
209
+ $this->success( $block->createResponse() );
210
  } catch ( Exception $exception ) {
211
  $this->error( 400, $exception->getMessage() );
212
  }
224
  $this->error( '400', 'Invalid data' );
225
  }
226
 
227
+ if ( $this->param( 'dataVersion' ) === null ) {
228
+ $this->error( '400', 'Invalid data version' );
229
+ }
230
+
231
  $block = $this->getBlock( $this->param( 'uid' ), Brizy_Admin_Blocks_Main::CP_SAVED );
232
 
233
+ if ( ! $block instanceof Brizy_Editor_Block ) {
234
+ $this->error( '404', 'Block not found' );
235
+ }
236
+
237
  $block->set_editor_data( stripslashes( $this->param( 'data' ) ) );
238
+ $block->setDataVersion( $this->param( 'dataVersion' ) );
239
 
240
  if ( (int) $this->param( 'is_autosave' ) ) {
241
+ $block->save( 1 );
242
  } else {
243
  $block->save();
244
  do_action( 'brizy_global_data_updated' );
245
  }
246
 
247
+ $this->success( $block->createResponse() );
248
  } catch ( Exception $exception ) {
249
  $this->error( 400, $exception->getMessage() );
250
  }
286
 
287
  $this->verifyNonce( self::nonce );
288
 
289
+ if ( $this->param( 'dataVersion' ) === null ) {
290
+ $this->error( '400', 'Invalid data version' );
291
+ }
292
+
293
  $positions = file_get_contents( "php://input" );
294
  $positionObject = json_decode( $positions );
295
 
395
  $brizyPost = Brizy_Editor_Block::get( $post, $uid );
396
  $brizyPost->set_uses_editor( true );
397
  $brizyPost->set_needs_compile( true );
398
+ $brizyPost->setDataVersion( 1 );
399
 
400
  return $brizyPost;
401
  }
admin/blocks/main.php CHANGED
@@ -66,7 +66,7 @@ class Brizy_Admin_Blocks_Main {
66
 
67
  foreach ( $blocks as $block ) {
68
  $brizy_editor_block = Brizy_Editor_Block::get( $block );
69
- $uid = $brizy_editor_block->get_uid();
70
  $globalData->globalBlocks[ $uid ] = json_decode( $brizy_editor_block->get_editor_data() );
71
  }
72
 
66
 
67
  foreach ( $blocks as $block ) {
68
  $brizy_editor_block = Brizy_Editor_Block::get( $block );
69
+ $uid = $brizy_editor_block->getUid();
70
  $globalData->globalBlocks[ $uid ] = json_decode( $brizy_editor_block->get_editor_data() );
71
  }
72
 
admin/dashboard-widget.php CHANGED
@@ -58,7 +58,7 @@ class Brizy_Admin_DashboardWidget extends Brizy_Admin_AbstractWidget {
58
 
59
  if ( ! ( $news = get_transient( $transient_key ) ) ) {
60
 
61
- $request = wp_remote_get( 'https://www.brizy.io/index.php/wp-json/wp/v2/posts' );
62
 
63
  if ( is_wp_error( $request ) ) {
64
 
58
 
59
  if ( ! ( $news = get_transient( $transient_key ) ) ) {
60
 
61
+ $request = wp_remote_get( 'https://www.brizy.io/index.php/wp-json/wp/v2/posts?categories=6' );
62
 
63
  if ( is_wp_error( $request ) ) {
64
 
admin/main.php CHANGED
@@ -119,7 +119,7 @@ class Brizy_Admin_Main {
119
 
120
  $bpost = Brizy_Editor_Post::get( $post );
121
 
122
- $urlBuilder = new Brizy_Editor_UrlBuilder( Brizy_Editor_Project::get(), $bpost->get_parent_id() );
123
 
124
  $pageUploadPath = $urlBuilder->page_upload_path( "assets/images" );
125
 
@@ -335,7 +335,7 @@ class Brizy_Admin_Main {
335
  do_action( 'brizy_before_disable_for_post', $p );
336
  Brizy_Editor_Post::get( $p->ID )
337
  ->disable_editor()
338
- ->save();
339
 
340
  do_action( 'brizy_after_disable_for_post', $p );
341
  } catch ( Brizy_Editor_Exceptions_Exception $exception ) {
@@ -459,8 +459,7 @@ class Brizy_Admin_Main {
459
  try {
460
  $post = Brizy_Editor_Post::get( $p->ID );
461
  } catch ( Exception $exception ) {
462
- $project = Brizy_Editor_Project::get();
463
- $post = Brizy_Editor_Post::create( $project, $p );
464
  }
465
 
466
  if ( ! $post ) {
@@ -495,7 +494,7 @@ class Brizy_Admin_Main {
495
  $post->enable_editor();
496
  $post->set_template( Brizy_Config::BRIZY_BLANK_TEMPLATE_FILE_NAME );
497
  $post->set_plugin_version( BRIZY_VERSION );
498
- $post->save();
499
  do_action( 'brizy_after_enabled_for_post', $p );
500
  // redirect
501
  wp_redirect( $post->edit_url() );
@@ -574,7 +573,7 @@ class Brizy_Admin_Main {
574
  //---------------------------------------------------------
575
 
576
  $currentProject->setDataAsJson( json_encode( $mergedData ) );
577
- $currentProject->save();
578
 
579
  return $currentProjectPostId;
580
  }
119
 
120
  $bpost = Brizy_Editor_Post::get( $post );
121
 
122
+ $urlBuilder = new Brizy_Editor_UrlBuilder( Brizy_Editor_Project::get(), $bpost->getWpPostParentId() );
123
 
124
  $pageUploadPath = $urlBuilder->page_upload_path( "assets/images" );
125
 
335
  do_action( 'brizy_before_disable_for_post', $p );
336
  Brizy_Editor_Post::get( $p->ID )
337
  ->disable_editor()
338
+ ->saveStorage();
339
 
340
  do_action( 'brizy_after_disable_for_post', $p );
341
  } catch ( Brizy_Editor_Exceptions_Exception $exception ) {
459
  try {
460
  $post = Brizy_Editor_Post::get( $p->ID );
461
  } catch ( Exception $exception ) {
462
+
 
463
  }
464
 
465
  if ( ! $post ) {
494
  $post->enable_editor();
495
  $post->set_template( Brizy_Config::BRIZY_BLANK_TEMPLATE_FILE_NAME );
496
  $post->set_plugin_version( BRIZY_VERSION );
497
+ $post->saveStorage();
498
  do_action( 'brizy_after_enabled_for_post', $p );
499
  // redirect
500
  wp_redirect( $post->edit_url() );
573
  //---------------------------------------------------------
574
 
575
  $currentProject->setDataAsJson( json_encode( $mergedData ) );
576
+ $currentProject->saveStorage();
577
 
578
  return $currentProjectPostId;
579
  }
admin/migrations/fix-globals-to-data-migration.php CHANGED
@@ -50,4 +50,4 @@ class Brizy_Admin_Migrations_FixGlobalsToDataMigration implements Brizy_Admin_Mi
50
  public function getPriority() {
51
  return 0;
52
  }
53
- }
50
  public function getPriority() {
51
  return 0;
52
  }
53
+ }
admin/migrations/global-blocks-to-custom-post-migration.php CHANGED
@@ -60,7 +60,7 @@ class Brizy_Admin_Migrations_GlobalBlocksToCustomPostMigration implements Brizy_
60
  $brizyPost->set_editor_data( json_encode( $data ) );
61
  $brizyPost->set_uses_editor( true );
62
  $brizyPost->set_needs_compile( true );
63
- $brizyPost->save();
64
  }
65
 
66
  }
@@ -79,7 +79,7 @@ class Brizy_Admin_Migrations_GlobalBlocksToCustomPostMigration implements Brizy_
79
  $brizyPost->set_editor_data( json_encode( $data ) );
80
  $brizyPost->set_uses_editor( true );
81
  $brizyPost->set_needs_compile( true );
82
- $brizyPost->save();
83
  }
84
  }
85
  }
60
  $brizyPost->set_editor_data( json_encode( $data ) );
61
  $brizyPost->set_uses_editor( true );
62
  $brizyPost->set_needs_compile( true );
63
+ $brizyPost->saveStorage();
64
  }
65
 
66
  }
79
  $brizyPost->set_editor_data( json_encode( $data ) );
80
  $brizyPost->set_uses_editor( true );
81
  $brizyPost->set_needs_compile( true );
82
+ $brizyPost->saveStorage();
83
  }
84
  }
85
  }
admin/migrations/site-settings-migration.php ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Brizy_Admin_Migrations_SiteSettingsMigration implements Brizy_Admin_Migrations_MigrationInterface {
4
+
5
+ /**
6
+ * @return int|mixed
7
+ */
8
+ public function getPriority() {
9
+ return 0;
10
+ }
11
+
12
+ /**
13
+ * Return the version
14
+ *
15
+ * @return mixed
16
+ */
17
+ public function getVersion() {
18
+ return '1.0.118';
19
+ }
20
+
21
+ /**
22
+ * @return int|mixed|WP_Error
23
+ * @throws Brizy_Editor_Exceptions_NotFound
24
+ */
25
+ public function execute() {
26
+
27
+ delete_option('brizy-social-title');
28
+ delete_option('brizy-social-description');
29
+ delete_option('brizy-custom-css');
30
+ delete_option('brizy-header-injection');
31
+ delete_option('brizy-footer-injection');
32
+ delete_option('brizy-social-thumbnail');
33
+ delete_option('brizy-settings-favicon');
34
+ }
35
+ }
admin/optimize-images.php CHANGED
@@ -171,14 +171,14 @@ class Brizy_Admin_OptimizeImages {
171
  if ( ! $shortpixelSettings['API_KEY'] ) {
172
  Brizy_Admin_Flash::instance()->add_warning( 'You have disabled Shortpixel.' );
173
  Brizy_Editor_Project::get()->setImageOptimizerSettings( $settings );
174
- Brizy_Editor_Project::get()->save();
175
 
176
  return;
177
  }
178
 
179
  if ( $shortpixelOptimizer->validateConfig() ) {
180
  Brizy_Editor_Project::get()->setImageOptimizerSettings( $settings );
181
- Brizy_Editor_Project::get()->save();
182
 
183
  Brizy_Admin_Flash::instance()->add_success( 'Settings saved.' );
184
  } else {
@@ -352,4 +352,4 @@ class Brizy_Admin_OptimizeImages {
352
  }
353
 
354
 
355
- }
171
  if ( ! $shortpixelSettings['API_KEY'] ) {
172
  Brizy_Admin_Flash::instance()->add_warning( 'You have disabled Shortpixel.' );
173
  Brizy_Editor_Project::get()->setImageOptimizerSettings( $settings );
174
+ Brizy_Editor_Project::get()->saveStorage();
175
 
176
  return;
177
  }
178
 
179
  if ( $shortpixelOptimizer->validateConfig() ) {
180
  Brizy_Editor_Project::get()->setImageOptimizerSettings( $settings );
181
+ Brizy_Editor_Project::get()->saveStorage();
182
 
183
  Brizy_Admin_Flash::instance()->add_success( 'Settings saved.' );
184
  } else {
352
  }
353
 
354
 
355
+ }
admin/popups/main.php CHANGED
@@ -125,8 +125,8 @@ class Brizy_Admin_Popups_Main {
125
 
126
  if ( $brizyPopup->get_needs_compile() ) {
127
  $brizyPopup->compile_page();
128
- $brizyPopup->save();
129
- $brizyPopup->save_wp_post();
130
  }
131
 
132
  $compiledPage = $brizyPopup->get_compiled_page();
125
 
126
  if ( $brizyPopup->get_needs_compile() ) {
127
  $brizyPopup->compile_page();
128
+ $brizyPopup->saveStorage();
129
+ $brizyPopup->savePost();
130
  }
131
 
132
  $compiledPage = $brizyPopup->get_compiled_page();
admin/post/brizy-posts-monitor.php CHANGED
@@ -11,6 +11,7 @@ class Brizy_Admin_Post_BrizyPostsMonitor extends Brizy_Admin_Post_AbstractMonito
11
  'brizy-post-compiler-version',
12
  'brizy-post-editor-version',
13
  'brizy_post_uid',
 
14
  ) );
15
  }
16
 
11
  'brizy-post-compiler-version',
12
  'brizy-post-editor-version',
13
  'brizy_post_uid',
14
+ 'brizy_data_version'
15
  ) );
16
  }
17
 
admin/post/project-post-monitor.php CHANGED
@@ -7,7 +7,7 @@ class Brizy_Admin_Post_ProjectPostMonitor extends Brizy_Admin_Post_AbstractMonit
7
  * Brizy_Admin_Post_ProjectPostMonitor constructor.
8
  */
9
  public function __construct() {
10
- parent::__construct( 'brizy-project', array( 'brizy-project' ) );
11
  }
12
 
13
  /**
7
  * Brizy_Admin_Post_ProjectPostMonitor constructor.
8
  */
9
  public function __construct() {
10
+ parent::__construct( 'brizy-project', array( 'brizy-project','brizy_data_version' ) );
11
  }
12
 
13
  /**
admin/rule-set.php CHANGED
@@ -28,15 +28,11 @@ class Brizy_Admin_RuleSet implements Brizy_Admin_RuleInterface {
28
  * @return float|int
29
  */
30
  public function getRuleWeight( $context ) {
31
- $map = array_map( function ( Brizy_Admin_RuleInterface $v ) use ( $context ) {
32
  return $v->getRuleWeight( $context );
33
  }, $this->rules );
34
 
35
- if ( count( $map ) > 0 ) {
36
- return max( $map );
37
- }
38
-
39
- return 0;
40
  }
41
 
42
  /**
28
  * @return float|int
29
  */
30
  public function getRuleWeight( $context ) {
31
+ $array_map = array_map( function ( Brizy_Admin_RuleInterface $v ) use ( $context ) {
32
  return $v->getRuleWeight( $context );
33
  }, $this->rules );
34
 
35
+ return count( $array_map ) > 0 ? max( $array_map ) : 0;
 
 
 
 
36
  }
37
 
38
  /**
admin/rule.php CHANGED
@@ -10,6 +10,7 @@ class Brizy_Admin_Rule extends Brizy_Admin_Serializable implements Brizy_Admin_R
10
  const ARCHIVE = 4;
11
  const TEMPLATE = 8;
12
  const BRIZY_TEMPLATE = 16;
 
13
 
14
  /**
15
  * @var int
@@ -109,6 +110,16 @@ class Brizy_Admin_Rule extends Brizy_Admin_Serializable implements Brizy_Admin_R
109
  return true;
110
  }
111
 
 
 
 
 
 
 
 
 
 
 
112
 
113
  foreach ( $ruleValues as $i => $value ) {
114
 
@@ -224,7 +235,7 @@ class Brizy_Admin_Rule extends Brizy_Admin_Serializable implements Brizy_Admin_R
224
  */
225
  public function getEntityValues() {
226
  return is_null( $this->entityValues ) ? array() : array_map( function ( $id ) {
227
- return (int) $id;
228
  }, $this->entityValues );
229
  }
230
 
10
  const ARCHIVE = 4;
11
  const TEMPLATE = 8;
12
  const BRIZY_TEMPLATE = 16;
13
+ const ALL_FROM_TAXONOMY = 32;
14
 
15
  /**
16
  * @var int
110
  return true;
111
  }
112
 
113
+ // check if post is in a term
114
+ if ( $applyFor == self::POSTS &&
115
+ $this->getAppliedFor() == self::POSTS &&
116
+ isset( $entity_values[0] ) && is_array($values = explode( '|', $entity_values[0] )) && count( $values ) > 1
117
+ ) {
118
+
119
+ // check if the post is in taxonomy with name $values[0] and with id $values[1]
120
+ return has_term( $values[1], $values[0], $entityValues[0] );
121
+ }
122
+
123
 
124
  foreach ( $ruleValues as $i => $value ) {
125
 
235
  */
236
  public function getEntityValues() {
237
  return is_null( $this->entityValues ) ? array() : array_map( function ( $id ) {
238
+ return $id;
239
  }, $this->entityValues );
240
  }
241
 
admin/rules/api.php CHANGED
@@ -80,7 +80,9 @@ class Brizy_Admin_Rules_Api extends Brizy_Admin_AbstractApi {
80
 
81
  $this->verifyNonce( self::nonce );
82
 
83
- $postId = (int) $this->param( 'post' );
 
 
84
 
85
  $postType = get_post_type( $postId );
86
 
@@ -88,6 +90,10 @@ class Brizy_Admin_Rules_Api extends Brizy_Admin_AbstractApi {
88
  $this->error( 400, "Validation" . 'Invalid post' );
89
  }
90
 
 
 
 
 
91
  $ruleData = file_get_contents( "php://input" );
92
 
93
  try {
@@ -97,8 +103,6 @@ class Brizy_Admin_Rules_Api extends Brizy_Admin_AbstractApi {
97
  }
98
 
99
  try {
100
- $ruleValidator = Brizy_Admin_Rules_ValidatorFactory::getValidator( $postId );
101
-
102
  // validate rule
103
  $ruleValidator = Brizy_Admin_Rules_ValidatorFactory::getValidator( $postId );
104
 
@@ -107,27 +111,42 @@ class Brizy_Admin_Rules_Api extends Brizy_Admin_AbstractApi {
107
  }
108
 
109
  $ruleValidator->validateRuleForPostId( $rule, $postId );
 
 
 
 
 
 
 
 
 
 
 
110
  } catch ( Brizy_Admin_Rules_ValidationException $e ) {
111
  wp_send_json_error( array( 'message' => $e->getMessage(), 'rule' => $e->getRuleId() ), 400 );
112
  } catch ( Exception $e ) {
113
  $this->error( 400, $e->getMessage() );
114
  }
115
 
116
- $this->manager->addRule( $postId, $rule );
117
  wp_send_json_success( $rule, 200 );
118
-
119
  }
120
 
121
  public function actionCreateRules() {
122
  $this->verifyNonce( self::nonce );
123
 
124
- $postId = (int) $this->param( 'post' );
125
- $postType = get_post_type( $postId );
 
 
126
 
127
  if ( ! $postId ) {
128
  $this->error( 400, 'Invalid post' );
129
  }
130
 
 
 
 
 
131
  $rulesData = file_get_contents( "php://input" );
132
 
133
  try {
@@ -145,6 +164,19 @@ class Brizy_Admin_Rules_Api extends Brizy_Admin_AbstractApi {
145
 
146
  try {
147
  $validator->validateRulesForPostId( $rules, $postId );
 
 
 
 
 
 
 
 
 
 
 
 
 
148
  } catch ( Brizy_Admin_Rules_ValidationException $e ) {
149
  wp_send_json_error( array(
150
  'rule' => $e->getRuleId(),
@@ -152,10 +184,6 @@ class Brizy_Admin_Rules_Api extends Brizy_Admin_AbstractApi {
152
  ), 400 );
153
  }
154
 
155
- foreach ( $rules as $newRule ) {
156
- $this->manager->addRule( $postId, $newRule );
157
- }
158
-
159
  $this->success( $rules );
160
 
161
  return null;
@@ -165,13 +193,19 @@ class Brizy_Admin_Rules_Api extends Brizy_Admin_AbstractApi {
165
  public function actionUpdateRules() {
166
  $this->verifyNonce( self::nonce );
167
 
168
- $postId = (int) $this->param( 'post' );
169
- $postType = get_post_type( $postId );
 
 
170
 
171
  if ( ! $postId ) {
172
  wp_send_json_error( (object) array( 'message' => 'Invalid template' ), 400 );
173
  }
174
 
 
 
 
 
175
  $rulesData = file_get_contents( "php://input" );
176
 
177
  try {
@@ -185,17 +219,20 @@ class Brizy_Admin_Rules_Api extends Brizy_Admin_AbstractApi {
185
  if ( ! $validator ) {
186
  $this->error( 400, 'Unable to get the rule validator for this post type' );
187
  }
188
- //
189
- // try {
190
- // $validator->validateRulesForPostId( $rules, $postId );
191
- // } catch ( Brizy_Admin_Rules_ValidationException $e ) {
192
- // wp_send_json_error( array(
193
- // 'rule' => $e->getRuleId(),
194
- // 'message' => $e->getMessage()
195
- // ), 400 );
196
- // }
197
 
198
- $this->manager->saveRules( $postId, $rules );
 
 
 
 
 
 
 
 
 
 
 
 
199
 
200
  wp_send_json_success( $rules, 200 );
201
 
@@ -206,15 +243,34 @@ class Brizy_Admin_Rules_Api extends Brizy_Admin_AbstractApi {
206
 
207
  $this->verifyNonce( self::nonce );
208
 
209
- $postId = (int) $this->param( 'post' );
210
- $ruleId = $this->param( 'rule' );
 
 
211
 
212
  if ( ! $postId || ! $ruleId ) {
213
  $this->error( 400, 'Invalid request' );
214
  }
215
 
216
- $this->manager->deleteRule( $postId, $ruleId );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
217
 
218
  $this->success( null );
219
  }
220
- }
80
 
81
  $this->verifyNonce( self::nonce );
82
 
83
+ $postId = (int) $this->param( 'post' );
84
+ $ignoreDataVersion = (int) $this->param( 'ignoreDataVersion' );
85
+ $dataVersion = (int) $this->param( 'dataVersion' );
86
 
87
  $postType = get_post_type( $postId );
88
 
90
  $this->error( 400, "Validation" . 'Invalid post' );
91
  }
92
 
93
+ if ( ! $dataVersion && $ignoreDataVersion===0 ) {
94
+ $this->error( 400, "Validation" . 'Invalid data version' );
95
+ }
96
+
97
  $ruleData = file_get_contents( "php://input" );
98
 
99
  try {
103
  }
104
 
105
  try {
 
 
106
  // validate rule
107
  $ruleValidator = Brizy_Admin_Rules_ValidatorFactory::getValidator( $postId );
108
 
111
  }
112
 
113
  $ruleValidator->validateRuleForPostId( $rule, $postId );
114
+
115
+ if ( !$ignoreDataVersion ) {
116
+ $post = Brizy_Editor_Entity::get( $postId );
117
+ $post->setDataVersion( $dataVersion );
118
+ $post->save( 0 );
119
+ }
120
+
121
+ $this->manager->addRule( $postId, $rule );
122
+
123
+ } catch ( Brizy_Editor_Exceptions_DataVersionMismatch $e ) {
124
+ $this->error( 400, 'Invalid data version' );
125
  } catch ( Brizy_Admin_Rules_ValidationException $e ) {
126
  wp_send_json_error( array( 'message' => $e->getMessage(), 'rule' => $e->getRuleId() ), 400 );
127
  } catch ( Exception $e ) {
128
  $this->error( 400, $e->getMessage() );
129
  }
130
 
 
131
  wp_send_json_success( $rule, 200 );
 
132
  }
133
 
134
  public function actionCreateRules() {
135
  $this->verifyNonce( self::nonce );
136
 
137
+ $postId = (int) $this->param( 'post' );
138
+ $ignoreDataVersion = (int) $this->param( 'ignoreDataVersion' );
139
+ $dataVersion = (int) $this->param( 'dataVersion' );
140
+ $postType = get_post_type( $postId );
141
 
142
  if ( ! $postId ) {
143
  $this->error( 400, 'Invalid post' );
144
  }
145
 
146
+ if ( ! $dataVersion && $ignoreDataVersion===0) {
147
+ $this->error( 400, "Validation" . 'Invalid data version' );
148
+ }
149
+
150
  $rulesData = file_get_contents( "php://input" );
151
 
152
  try {
164
 
165
  try {
166
  $validator->validateRulesForPostId( $rules, $postId );
167
+
168
+ if ( !$ignoreDataVersion ) {
169
+ $post = Brizy_Editor_Entity::get( $postId );
170
+ $post->setDataVersion( $dataVersion );
171
+ $post->save( 0 );
172
+ }
173
+
174
+ foreach ( $rules as $newRule ) {
175
+ $this->manager->addRule( $postId, $newRule );
176
+ }
177
+
178
+ } catch ( Brizy_Editor_Exceptions_DataVersionMismatch $e ) {
179
+ $this->error( 400, 'Invalid data version' );
180
  } catch ( Brizy_Admin_Rules_ValidationException $e ) {
181
  wp_send_json_error( array(
182
  'rule' => $e->getRuleId(),
184
  ), 400 );
185
  }
186
 
 
 
 
 
187
  $this->success( $rules );
188
 
189
  return null;
193
  public function actionUpdateRules() {
194
  $this->verifyNonce( self::nonce );
195
 
196
+ $postId = (int) $this->param( 'post' );
197
+ $ignoreDataVersion = (int) $this->param( 'ignoreDataVersion' );
198
+ $dataVersion = (int) $this->param( 'dataVersion' );
199
+ $postType = get_post_type( $postId );
200
 
201
  if ( ! $postId ) {
202
  wp_send_json_error( (object) array( 'message' => 'Invalid template' ), 400 );
203
  }
204
 
205
+ if ( ! $dataVersion && $ignoreDataVersion===0) {
206
+ $this->error( 400, "Validation" . 'Invalid data version' );
207
+ }
208
+
209
  $rulesData = file_get_contents( "php://input" );
210
 
211
  try {
219
  if ( ! $validator ) {
220
  $this->error( 400, 'Unable to get the rule validator for this post type' );
221
  }
 
 
 
 
 
 
 
 
 
222
 
223
+ try {
224
+ if ( !$ignoreDataVersion ) {
225
+ $post = Brizy_Editor_Entity::get( $postId );
226
+ $post->setDataVersion( $dataVersion );
227
+ $post->save( 0 );
228
+ }
229
+
230
+ $this->manager->saveRules( $postId, $rules );
231
+ } catch ( Brizy_Editor_Exceptions_DataVersionMismatch $e ) {
232
+ $this->error( 400, 'Invalid data version' );
233
+ } catch ( Exception $e ) {
234
+ $this->error( 400, 'Unable to save rules' );
235
+ }
236
 
237
  wp_send_json_success( $rules, 200 );
238
 
243
 
244
  $this->verifyNonce( self::nonce );
245
 
246
+ $postId = (int) $this->param( 'post' );
247
+ $ignoreDataVersion = (int) $this->param( 'ignoreDataVersion' );
248
+ $dataVersion = (int) $this->param( 'dataVersion' );
249
+ $ruleId = $this->param( 'rule' );
250
 
251
  if ( ! $postId || ! $ruleId ) {
252
  $this->error( 400, 'Invalid request' );
253
  }
254
 
255
+ if ( ! $dataVersion && $ignoreDataVersion===0 ) {
256
+ $this->error( 400, "Validation" . 'Invalid data version' );
257
+ }
258
+
259
+ try {
260
+
261
+ if ( !$ignoreDataVersion ) {
262
+ $post = Brizy_Editor_Entity::get( $postId );
263
+ $post->setDataVersion( $dataVersion );
264
+ $post->save( 0 );
265
+ }
266
+
267
+ $this->manager->deleteRule( $postId, $ruleId );
268
+ } catch ( Brizy_Editor_Exceptions_DataVersionMismatch $e ) {
269
+ $this->error( 400, 'Invalid data version' );
270
+ } catch ( Exception $e ) {
271
+ $this->error( 400, 'Unable to delete rules' );
272
+ }
273
 
274
  $this->success( null );
275
  }
276
+ }
admin/settings.php CHANGED
@@ -39,8 +39,9 @@ class Brizy_Admin_Settings {
39
  add_action( 'admin_menu', array( $this, 'actionRegisterSettingsPage' ) );
40
 
41
  if ( ! is_network_admin() ) {
42
- add_action( 'admin_menu', array( $this, 'actionRegisterRoleManagerPage' ), 9 );
43
- add_action( 'admin_menu', array( $this, 'actionRegisterGoProPage' ), 20 );
 
44
  } else {
45
  add_action( 'network_admin_menu', array( $this, 'actionRegisterSettingsPage' ), 10 );
46
  }
@@ -98,8 +99,8 @@ class Brizy_Admin_Settings {
98
  /**
99
  * @internal
100
  */
101
- function actionRegisterRoleManagerPage() {
102
- add_submenu_page( self::menu_slug(), __( 'Role Manager' ), __( 'Role Manager' ), 'manage_options', self::menu_slug(), array(
103
  $this,
104
  'render'
105
  ) );
@@ -108,7 +109,26 @@ class Brizy_Admin_Settings {
108
  /**
109
  * @internal
110
  */
111
- public function actionRegisterGoProPage() {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
112
 
113
  if ( class_exists( 'BrizyPro_Main' ) ) {
114
  return;
@@ -135,21 +155,26 @@ class Brizy_Admin_Settings {
135
 
136
  private function get_tabs() {
137
  $selected_tab = $this->get_selected_tab();
138
- $tabs = array(
139
- array(
140
  'id' => 'general',
141
  'label' => __( 'General', 'brizy' ),
142
  'is_selected' => is_null( $selected_tab ) || $selected_tab == 'general',
143
- 'href' => menu_page_url( self::menu_slug(), false ) . "&tab=general"
144
- ),
145
- array(
146
  'id' => 'roles',
147
- 'label' => __( 'Role Manager', 'brizy' ),
148
  'is_selected' => $selected_tab == 'roles',
149
- 'href' => menu_page_url( self::menu_slug(), false ) . "&tab=roles"
150
- ),
151
-
152
- );
 
 
 
 
 
153
 
154
  return apply_filters( 'brizy_settings_tabs', $tabs );
155
  }
@@ -163,6 +188,9 @@ class Brizy_Admin_Settings {
163
  case 'roles':
164
  return $this->get_roles_tab();
165
  break;
 
 
 
166
 
167
  }
168
  }
@@ -185,11 +213,13 @@ class Brizy_Admin_Settings {
185
  );
186
  }
187
 
188
- /**
189
- * @return bool
190
- */
191
- public function is_settings_page() {
192
- return get_current_screen()->base === "settings_page_" . Brizy_Editor::get()->get_slug() . "-settings";
 
 
193
  }
194
 
195
  public function settings_submit() {
@@ -207,10 +237,12 @@ class Brizy_Admin_Settings {
207
  case 'roles':
208
  $this->roles_settings_submit();
209
  break;
 
 
 
210
  }
211
  }
212
 
213
-
214
  public function general_settings_submit() {
215
  $error_count = 0;
216
  $allowed_post_types = array_map( array( $this, 'to_type' ), $this->post_types() );
@@ -234,6 +266,10 @@ class Brizy_Admin_Settings {
234
 
235
  }
236
 
 
 
 
 
237
  /**
238
  * Return the list of allowed capabilities Ids
239
  * @return array
39
  add_action( 'admin_menu', array( $this, 'actionRegisterSettingsPage' ) );
40
 
41
  if ( ! is_network_admin() ) {
42
+ add_action( 'admin_menu', array( $this, 'actionRegisterSubMenuSettingsPage' ), 9 );
43
+ add_action( 'admin_menu', array( $this, 'actionRegisterSubMenuGetHelpLink' ), 20 );
44
+ add_action( 'admin_menu', array( $this, 'actionRegisterSubMenuGoProPage' ), 20 );
45
  } else {
46
  add_action( 'network_admin_menu', array( $this, 'actionRegisterSettingsPage' ), 10 );
47
  }
99
  /**
100
  * @internal
101
  */
102
+ function actionRegisterSubMenuSettingsPage() {
103
+ add_submenu_page( self::menu_slug(), __( 'Settings', 'brizy' ), __( 'Settings', 'brizy' ), 'manage_options', self::menu_slug(), array(
104
  $this,
105
  'render'
106
  ) );
109
  /**
110
  * @internal
111
  */
112
+ function actionRegisterSubMenuGetHelpLink() {
113
+
114
+ if ( class_exists( 'BrizyPro_Admin_WhiteLabel' ) && BrizyPro_Admin_WhiteLabel::_init()->getEnabled() ) {
115
+ return;
116
+ }
117
+
118
+ add_submenu_page(
119
+ self::menu_slug(),
120
+ '',
121
+ '<span class="brz-get-help-add-target-blank">' . __( 'Get Help', 'brizy' ) . '</span>',
122
+ 'manage_options',
123
+ 'https://support.brizy.io/hc/en-us',
124
+ []
125
+ );
126
+ }
127
+
128
+ /**
129
+ * @internal
130
+ */
131
+ public function actionRegisterSubMenuGoProPage() {
132
 
133
  if ( class_exists( 'BrizyPro_Main' ) ) {
134
  return;
155
 
156
  private function get_tabs() {
157
  $selected_tab = $this->get_selected_tab();
158
+ $tabs = [
159
+ [
160
  'id' => 'general',
161
  'label' => __( 'General', 'brizy' ),
162
  'is_selected' => is_null( $selected_tab ) || $selected_tab == 'general',
163
+ 'href' => menu_page_url( self::menu_slug(), false ) . '&tab=general'
164
+ ],
165
+ [
166
  'id' => 'roles',
167
+ 'label' => __( 'Role Manager', 'brizy' ),
168
  'is_selected' => $selected_tab == 'roles',
169
+ 'href' => menu_page_url( self::menu_slug(), false ) . '&tab=roles'
170
+ ],
171
+ [
172
+ 'id' => 'maintenance',
173
+ 'label' => __( 'Maintenance Mode', 'brizy' ),
174
+ 'is_selected' => $selected_tab == 'maintenance',
175
+ 'href' => menu_page_url( self::menu_slug(), false ) . '&tab=maintenance'
176
+ ]
177
+ ];
178
 
179
  return apply_filters( 'brizy_settings_tabs', $tabs );
180
  }
188
  case 'roles':
189
  return $this->get_roles_tab();
190
  break;
191
+ case 'maintenance':
192
+ return $this->get_maintenance_tab();
193
+ break;
194
 
195
  }
196
  }
213
  );
214
  }
215
 
216
+ private function get_maintenance_tab() {
217
+
218
+ $args = Brizy_MaintenanceMode::get_settings();
219
+ $args['pages'] = wp_list_pluck( get_pages(), 'post_title', 'ID' );
220
+ $args['available_roles'] = $this->list_wp_roles();
221
+
222
+ return Brizy_Admin_View::render( 'settings/maintenance', $args );
223
  }
224
 
225
  public function settings_submit() {
237
  case 'roles':
238
  $this->roles_settings_submit();
239
  break;
240
+ case 'maintenance':
241
+ $this->maintenance_settings_submit();
242
+ break;
243
  }
244
  }
245
 
 
246
  public function general_settings_submit() {
247
  $error_count = 0;
248
  $allowed_post_types = array_map( array( $this, 'to_type' ), $this->post_types() );
266
 
267
  }
268
 
269
+ public function maintenance_settings_submit() {
270
+ Brizy_Editor_Storage_Common::instance()->set( 'maintenance', $_POST['brizy-maintenance'] );
271
+ }
272
+
273
  /**
274
  * Return the list of allowed capabilities Ids
275
  * @return array
admin/static/css/style.css CHANGED
@@ -198,16 +198,21 @@
198
  position: relative;
199
  }
200
 
201
- .brizy-rule-select::after {
202
- content: '';
203
- position: absolute;
204
- top: 50%;
205
- right: 7px;
206
- height: 0;
207
- width: 0;
208
- border-color: #888 transparent transparent transparent;
209
- border-style: solid;
210
- border-width: 5px 4px 0 4px;
 
 
 
 
 
211
  }
212
 
213
  .brizy-rule-new-condition .brizy-rule-select2::after {
@@ -292,6 +297,20 @@
292
  border-top: 1px solid #eee;
293
  }
294
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
295
  .brizy-dashboard-widget-footer__go-pro {
296
  display:inline-flex;
297
  fill: #0073aa;
@@ -301,6 +320,33 @@
301
  fill: #00a0d2;
302
  }
303
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
304
  /* Admin notice give us a rating */
305
  .brz-review-notice-container {
306
  display: flex;
198
  position: relative;
199
  }
200
 
201
+ .brizy-template-rules .select2-selection__arrow {
202
+ color: #32373c;
203
+ border-color: #7e8993;
204
+ box-shadow: none;
205
+ border-radius: 3px;
206
+ padding: 0 5px 0 0;
207
+ -webkit-appearance: none;
208
+ background: #fff url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23555%22%2F%3E%3C%2Fsvg%3E') no-repeat left 5px top 55%;
209
+ background-size: 16px 16px;
210
+ cursor: pointer;
211
+ vertical-align: middle;
212
+ }
213
+
214
+ .brizy-template-rules .select2-selection__arrow b {
215
+ display: none;
216
  }
217
 
218
  .brizy-rule-new-condition .brizy-rule-select2::after {
297
  border-top: 1px solid #eee;
298
  }
299
 
300
+ .brizy-dashboard-widget-footer a {
301
+ margin: 0 10px;
302
+ display: inline-block;
303
+ text-decoration: none;
304
+ }
305
+
306
+ .brizy-dashboard-widget-footer a:first-child {
307
+ margin-left: 0;
308
+ }
309
+
310
+ .brizy-dashboard-widget-footer a .dashicons {
311
+ font-size: 17px;
312
+ }
313
+
314
  .brizy-dashboard-widget-footer__go-pro {
315
  display:inline-flex;
316
  fill: #0073aa;
320
  fill: #00a0d2;
321
  }
322
 
323
+ .brizy-dashboard-widget-footer__go-pro svg {
324
+ vertical-align: bottom;
325
+ }
326
+
327
+ /* Maintenance Mode */
328
+ .brz-maintenance-table-access-links {
329
+ max-width: 1024px;
330
+ /*text-align: left;*/
331
+ }
332
+ .brz-maintenance-table-access-links th,
333
+ .brz-maintenance-table-access-links td {
334
+ border: 1px solid #ccd0d4;
335
+ }
336
+ .brz-maintenance-table-access-links th:first-child,
337
+ .brz-maintenance-table-access-links td:first-child {
338
+ width: 35px;
339
+ text-align: center;
340
+ }
341
+ .brz-maintenance-table-access-links th:not(:first-child) {
342
+ padding-left: 10px;
343
+ }
344
+ .brz-maintenance-delete-links {
345
+ padding-left: 10px !important;
346
+ }
347
+ .brz-maintenance-add-link {
348
+ margin-top: 15px !important;
349
+ }
350
  /* Admin notice give us a rating */
351
  .brz-review-notice-container {
352
  display: flex;
admin/static/js/rules.js CHANGED
@@ -20,15 +20,15 @@ var state = {
20
  rule: defaultRule,
21
  rules: Brizy_Admin_Rules.rules,
22
  errors: "",
23
- groups: []
24
  };
25
 
26
 
27
  var apiCache = {
28
  groupList: null,
 
29
  postList: [],
30
  termList: []
31
-
32
  };
33
 
34
  var api = {
@@ -37,14 +37,26 @@ var api = {
37
  if (apiCache.groupList)
38
  return apiCache.groupList;
39
 
40
- return jQuery.getJSON(Brizy_Admin_Rules.url, {
41
  action: "brizy_rule_group_list",
42
  hash: Brizy_Admin_Rules.hash,
43
  version: Brizy_Admin_Data.editorVersion,
44
  context: 'template-rules'
45
- }).done(function (data) {
46
- apiCache.groupList = jQuery.Deferred().resolve(data);
47
- });
 
 
 
 
 
 
 
 
 
 
 
 
48
  },
49
 
50
  getPosts: function (postType, filter, exclude) {
@@ -68,6 +80,7 @@ var api = {
68
  getTerms: function (taxonomy) {
69
  if (apiCache.termList[taxonomy])
70
  return apiCache.termList[taxonomy];
 
71
  return jQuery.getJSON(Brizy_Admin_Rules.url, {
72
  action: "brizy_get_terms",
73
  hash: Brizy_Admin_Rules.hash,
@@ -85,6 +98,8 @@ var api = {
85
  url.searchParams.append('hash', Brizy_Admin_Rules.hash);
86
  url.searchParams.append('post', Brizy_Admin_Rules.id);
87
  url.searchParams.append('version', Brizy_Admin_Data.editorVersion);
 
 
88
 
89
  return jQuery.ajax({
90
  type: "POST",
@@ -99,6 +114,8 @@ var api = {
99
  action: "brizy_delete_rule",
100
  rule: ruleId,
101
  hash: Brizy_Admin_Rules.hash,
 
 
102
  version: Brizy_Admin_Data.editorVersion,
103
  post: Brizy_Admin_Rules.id
104
  });
@@ -206,21 +223,34 @@ var RuleTypeField = function (params) {
206
  BrzSelect2 = function (params) {
207
 
208
  var oncreate = function (element) {
 
209
  var el = jQuery(element);
210
  if (!params.disabled) {
211
  el.select2();
212
  el.on("change", params.onChange);
213
  }
214
  if (typeof params.optionRequest === 'function') {
215
- params.optionRequest().done(function (response) {
216
- var options = params.convertResponseToOptions(response);
 
 
 
 
 
 
 
 
 
217
  options.forEach(function (option) {
218
- el.append(option).trigger("change");
219
  });
220
- });
221
  }
222
- };
223
 
 
 
 
 
224
 
225
  var onremove = function (element, done) {
226
  if (!params.disabled) {
@@ -244,12 +274,37 @@ BrzSelect2 = function (params) {
244
  );
245
  };
246
 
247
- var PostSelect2Field = function (params) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
248
  var convertResponseToOptions = function (response) {
249
  var options = [new Option("All", null, false, false)];
250
- response.data.posts.forEach(function (post) {
251
- var selected = params.value.includes(post.ID + "") || params.value.includes(post.ID);
252
- options.push(new Option(post.title, post.ID, false, selected));
253
  });
254
  return options;
255
  };
@@ -257,51 +312,59 @@ var PostSelect2Field = function (params) {
257
  return h(
258
  BrzSelect2,
259
  {
260
- id: params.id,
261
- value: params.value,
262
- disabled: params.disabled,
263
  style: params.style ? params.style : {width: "200px"},
264
- optionRequest: params.optionRequest,
265
- convertResponseToOptions: convertResponseToOptions,
266
- onChange: params.onChange
267
- },
268
- []
269
- );
270
- };
271
-
272
- var RuleCustomPostSearchField = function (params) {
273
- return h(
274
- PostSelect2Field,
275
- {
276
- id: params.id,
277
- disabled: params.disabled,
278
- value: params.rule.entityValues,
279
  optionRequest: function () {
280
- return api.getPosts(params.postType);
281
  },
282
- onChange: params.onChange
 
 
283
  },
284
  []
285
  );
286
  };
287
 
288
- var RuleTaxonomySearchField = function (params) {
 
 
 
 
 
289
  var convertResponseToOptions = function (response) {
290
- var options = [new Option("All", null, false, false)];
291
- response.data.forEach(function (term) {
292
- var selected = params.rule.entityValues && (params.rule.entityValues.includes(term.term_id + "") || params.rule.entityValues.includes(term.term_id));
293
- options.push(new Option(term.name, term.term_id, false, selected));
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
294
  });
295
- return options;
 
296
  };
297
 
298
  return h(
299
  BrzSelect2,
300
  {
301
- id: "taxonomies-" + params.taxonomy,
302
  style: params.style ? params.style : {width: "200px"},
303
  optionRequest: function () {
304
- return api.getTerms(params.taxonomy);
305
  },
306
  convertResponseToOptions: convertResponseToOptions,
307
  onChange: params.onChange,
@@ -356,22 +419,24 @@ var RuleApplyGroupField = function (params) {
356
  h("span", {class: "brizy-rule-select"}, h("select", attributes, groups))
357
  ];
358
 
 
359
  switch (appliedFor) {
360
  case RULE_POSTS:
361
  elements.push(
362
  h("span", {class: "brizy-rule-select brizy-rule-select2"}, [
363
- h(RuleCustomPostSearchField, {
364
  id: appliedFor + value,
365
- postType: entityType,
366
  rule: params.rule,
367
  disabled: params.disabled,
368
  onChange: function (e) {
369
- if (!params.disabled)
370
- actions.rule.setEntityValues(
371
- e.target.value && e.target.value != "null"
372
- ? [e.target.value]
373
- : []
374
- );
 
 
375
  }
376
  })
377
  ]));
20
  rule: defaultRule,
21
  rules: Brizy_Admin_Rules.rules,
22
  errors: "",
23
+ groups: [],
24
  };
25
 
26
 
27
  var apiCache = {
28
  groupList: null,
29
+ postGroupListPromise: [],
30
  postList: [],
31
  termList: []
 
32
  };
33
 
34
  var api = {
37
  if (apiCache.groupList)
38
  return apiCache.groupList;
39
 
40
+ return apiCache.groupList = jQuery.getJSON(Brizy_Admin_Rules.url, {
41
  action: "brizy_rule_group_list",
42
  hash: Brizy_Admin_Rules.hash,
43
  version: Brizy_Admin_Data.editorVersion,
44
  context: 'template-rules'
45
+ })
46
+ },
47
+
48
+ getPostsGroupList: function (postType) {
49
+
50
+ if (apiCache.postGroupListPromise[postType])
51
+ return apiCache.postGroupListPromise[postType];
52
+
53
+ return apiCache.postGroupListPromise[postType] = jQuery.getJSON(Brizy_Admin_Rules.url, {
54
+ action: "brizy_rule_posts_group_list",
55
+ postType: postType,
56
+ hash: Brizy_Admin_Rules.hash,
57
+ version: Brizy_Admin_Data.editorVersion,
58
+ context: 'template-rules'
59
+ })
60
  },
61
 
62
  getPosts: function (postType, filter, exclude) {
80
  getTerms: function (taxonomy) {
81
  if (apiCache.termList[taxonomy])
82
  return apiCache.termList[taxonomy];
83
+
84
  return jQuery.getJSON(Brizy_Admin_Rules.url, {
85
  action: "brizy_get_terms",
86
  hash: Brizy_Admin_Rules.hash,
98
  url.searchParams.append('hash', Brizy_Admin_Rules.hash);
99
  url.searchParams.append('post', Brizy_Admin_Rules.id);
100
  url.searchParams.append('version', Brizy_Admin_Data.editorVersion);
101
+ url.searchParams.append('dataVersion', 0);
102
+ url.searchParams.append('ignoreDataVersion', 1);
103
 
104
  return jQuery.ajax({
105
  type: "POST",
114
  action: "brizy_delete_rule",
115
  rule: ruleId,
116
  hash: Brizy_Admin_Rules.hash,
117
+ dataVersion: 0,
118
+ ignoreDataVersion: 1,
119
  version: Brizy_Admin_Data.editorVersion,
120
  post: Brizy_Admin_Rules.id
121
  });
223
  BrzSelect2 = function (params) {
224
 
225
  var oncreate = function (element) {
226
+
227
  var el = jQuery(element);
228
  if (!params.disabled) {
229
  el.select2();
230
  el.on("change", params.onChange);
231
  }
232
  if (typeof params.optionRequest === 'function') {
233
+ const optionRequest = params.optionRequest();
234
+
235
+ if (typeof params.optionRequest === 'function') {
236
+ optionRequest.done(function (response) {
237
+ var options = params.convertResponseToOptions(response);
238
+ options.forEach(function (option) {
239
+ el.append(option);
240
+ });
241
+ });
242
+ } else {
243
+ var options = params.convertResponseToOptions(optionRequest);
244
  options.forEach(function (option) {
245
+ el.append(option);
246
  });
247
+ }
248
  }
 
249
 
250
+ if (!params.disabled) {
251
+ el.trigger("change");
252
+ }
253
+ };
254
 
255
  var onremove = function (element, done) {
256
  if (!params.disabled) {
274
  );
275
  };
276
 
277
+ // var PostSelect2Field = function (params) {
278
+ // var convertResponseToOptions = function (response) {
279
+ // var options = [new Option("All", null, false, false)];
280
+ // response.data.posts.forEach(function (post) {
281
+ // var selected = params.value.includes(post.ID + "") || params.value.includes(post.ID);
282
+ // options.push(new Option(post.title, post.ID, false, selected));
283
+ // });
284
+ // return options;
285
+ // };
286
+ //
287
+ // return h(
288
+ // BrzSelect2,
289
+ // {
290
+ // id: params.id,
291
+ // value: params.value,
292
+ // disabled: params.disabled,
293
+ // style: params.style ? params.style : {width: "200px"},
294
+ // optionRequest: params.optionRequest,
295
+ // convertResponseToOptions: convertResponseToOptions,
296
+ // onChange: params.onChange
297
+ // },
298
+ // []
299
+ // );
300
+ // };
301
+
302
+ var RuleTaxonomySearchField = function (params) {
303
  var convertResponseToOptions = function (response) {
304
  var options = [new Option("All", null, false, false)];
305
+ response.data.forEach(function (term) {
306
+ var selected = params.rule.entityValues && (params.rule.entityValues.includes(term.term_id + "") || params.rule.entityValues.includes(term.term_id));
307
+ options.push(new Option(term.name, term.term_id, false, selected));
308
  });
309
  return options;
310
  };
312
  return h(
313
  BrzSelect2,
314
  {
315
+ id: "taxonomies-" + params.taxonomy,
 
 
316
  style: params.style ? params.style : {width: "200px"},
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
317
  optionRequest: function () {
318
+ return api.getTerms(params.taxonomy);
319
  },
320
+ convertResponseToOptions: convertResponseToOptions,
321
+ onChange: params.onChange,
322
+ disabled: params.disabled
323
  },
324
  []
325
  );
326
  };
327
 
328
+ var RulePostsGroupSelectField = function (params) {
329
+
330
+ var appliedFor = params.rule.appliedFor;
331
+ var entityType = params.rule.entityType;
332
+ var value = String(params.rule.entityValues[0] ? params.rule.entityValues[0] : '');
333
+
334
  var convertResponseToOptions = function (response) {
335
+ var groups = [];
336
+ groups.push(new Option("All", '', false, value === ''));
337
+ response.data.forEach(function (group) {
338
+
339
+ if (group.title === "") {
340
+ group.items.forEach(function (option) {
341
+ var optionValue = String(option.value);
342
+ groups.push(new Option(option.title, optionValue, false, params.rule.entityValues.includes(optionValue)));
343
+ });
344
+ } else {
345
+ var groupElement = document.createElement("OPTGROUP");
346
+ groupElement.label = group.title;
347
+
348
+ if (group.items.length > 0) {
349
+ group.items.forEach(function (option) {
350
+ var optionValue = String(option.value);
351
+ groupElement.appendChild(new Option(option.title, optionValue, false, params.rule.entityValues.includes(optionValue)))
352
+ });
353
+ groups.push(groupElement);
354
+ }
355
+ }
356
  });
357
+
358
+ return groups;
359
  };
360
 
361
  return h(
362
  BrzSelect2,
363
  {
364
+ id: "post-groups-" + entityType,
365
  style: params.style ? params.style : {width: "200px"},
366
  optionRequest: function () {
367
+ return api.getPostsGroupList(entityType);
368
  },
369
  convertResponseToOptions: convertResponseToOptions,
370
  onChange: params.onChange,
419
  h("span", {class: "brizy-rule-select"}, h("select", attributes, groups))
420
  ];
421
 
422
+
423
  switch (appliedFor) {
424
  case RULE_POSTS:
425
  elements.push(
426
  h("span", {class: "brizy-rule-select brizy-rule-select2"}, [
427
+ h(RulePostsGroupSelectField, {
428
  id: appliedFor + value,
 
429
  rule: params.rule,
430
  disabled: params.disabled,
431
  onChange: function (e) {
432
+ if (!params.disabled) {
433
+ var values = e.target.value.split("|");
434
+ if (values.length === 1) {
435
+ actions.rule.setEntityValues(values);
436
+ } else {
437
+ actions.rule.setEntityValues([e.target.value]);
438
+ }
439
+ }
440
  }
441
  })
442
  ]));
admin/static/js/script.js CHANGED
@@ -151,6 +151,9 @@ jQuery(document).ready(function ($) {
151
  window.location = $(this).attr('href');
152
  });
153
 
 
 
 
154
  var BrizyGutenberg = {
155
 
156
  insertBrizyBtn: function () {
@@ -173,10 +176,49 @@ jQuery(document).ready(function ($) {
173
  }
174
  };
175
 
176
- $(function () {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
177
  BrizyGutenberg.init();
178
  BrizyFeedbackDialog.init();
179
- });
 
 
180
  });
181
 
182
 
151
  window.location = $(this).attr('href');
152
  });
153
 
154
+ // Open our submenu link "Get Help" in a new tab.
155
+ $( '.brz-get-help-add-target-blank' ).parent().attr( 'target', '_blank' );
156
+
157
  var BrizyGutenberg = {
158
 
159
  insertBrizyBtn: function () {
176
  }
177
  };
178
 
179
+ var BrizyMaintenance = {
180
+ getSelectAccessRole: function() {
181
+ return $( '#brizy-maintenance-access-role' );
182
+ },
183
+ getSelectMode: function() {
184
+ return $( 'select[name="brizy-maintenance[mode]"]' );
185
+ },
186
+ handleEvents: function () {
187
+ this.getSelectAccessRole().change( function ( e ) {
188
+ var display = 'custom' === $( this ).val() ? 'table-cell' : 'none';
189
+ $( '.brizy-maintenance-roles th, .brizy-maintenance-roles td' ).css( 'display', display );
190
+ } );
191
+
192
+ this.getSelectMode().change( function ( e ) {
193
+ var self = $( this ),
194
+ trs = self.closest( 'table' ).find( 'tr:not(#brizy-maintenance-js-mode)' );
195
+
196
+ if ( self.val() ) {
197
+ trs.removeClass( 'hidden' );
198
+ } else {
199
+ trs.addClass( 'hidden' );
200
+ }
201
+ } );
202
+
203
+ this.getSelectMode().trigger( 'change' );
204
+ this.getSelectAccessRole().trigger( 'change' );
205
+ },
206
+
207
+ init: function () {
208
+ if ( ! this.getSelectAccessRole().length ) {
209
+ return;
210
+ }
211
+
212
+ this.handleEvents();
213
+ }
214
+ };
215
+
216
+ $( function () {
217
  BrizyGutenberg.init();
218
  BrizyFeedbackDialog.init();
219
+ BrizyMaintenance.init();
220
+ } );
221
+
222
  });
223
 
224
 
admin/templates.php CHANGED
@@ -5,14 +5,13 @@ class Brizy_Admin_Templates {
5
  const CP_TEMPLATE = 'brizy_template';
6
  const CP_TEMPLATES = 'brizy_templates';
7
  const RULE_LIST_VEIW = 'brizy_rule_list_view';
8
- const RULE_GROUP_LIST = 'brizy_rule_group_list';
9
  const RULE_TAXONOMY_LIST = 'brizy_taxonomy_list';
10
  const RULE_CREATE = 'brizy_create';
11
 
12
  /**
13
  * @var Brizy_Editor_Post
14
  */
15
- private $template;
16
 
17
  /**
18
  * @var Brizy_Admin_Rules_Manager
@@ -29,6 +28,13 @@ class Brizy_Admin_Templates {
29
  $this->ruleManager = new Brizy_Admin_Rules_Manager();
30
  }
31
 
 
 
 
 
 
 
 
32
  public function initializeActions() {
33
  // do other stuff here
34
  if ( is_admin() ) {
@@ -36,7 +42,6 @@ class Brizy_Admin_Templates {
36
  add_action( 'add_meta_boxes', array( $this, 'registerTemplateMetaBox' ), 9 );
37
  add_action( 'transition_post_status', array( $this, 'actionTransitionPostStatus' ), 10, 3 );
38
  add_action( 'wp_ajax_' . self::RULE_LIST_VEIW, array( $this, 'getTemplateRuleBox' ) );
39
- add_action( 'wp_ajax_' . self::RULE_GROUP_LIST, array( $this, 'getGroupList' ) );
40
  add_filter( 'post_row_actions', array( $this, 'removeRowActions' ), 10, 1 );
41
  add_action( 'admin_init', array( $this, 'addTemplateRoleCaps' ), 10000 );
42
  add_action( 'admin_enqueue_scripts', array( $this, 'action_register_static' ) );
@@ -284,95 +289,45 @@ class Brizy_Admin_Templates {
284
  exit;
285
  }
286
 
287
- public function getGroupList() {
288
-
289
- $context = $_REQUEST['template-rules'];
290
-
291
- $closure = function ( $v ) {
292
- return array(
293
- 'title' => $v->label,
294
- 'value' => $v->name,
295
- 'groupValue' => $v->groupValue
296
- );
297
- };
298
-
299
- $groups = array(
300
- array(
301
- 'title' => 'Pages',
302
- 'value' => Brizy_Admin_Rule::POSTS,
303
- 'items' => array_map( $closure, $this->getCustomPostsList( Brizy_Admin_Rule::POSTS ) )
304
- ),
305
- array(
306
- 'title' => 'Categories',
307
- 'value' => Brizy_Admin_Rule::TAXONOMY,
308
- 'items' => array_map( $closure, $this->getTaxonomyList( Brizy_Admin_Rule::TAXONOMY ) )
309
- ),
310
- array(
311
- 'title' => 'Archives',
312
- 'value' => Brizy_Admin_Rule::ARCHIVE,
313
- 'items' => array_map( $closure, $this->getArchivesList( Brizy_Admin_Rule::ARCHIVE ) )
314
- ),
315
- array(
316
- 'title' => 'Others',
317
- 'value' => Brizy_Admin_Rule::TEMPLATE,
318
- 'items' => $this->geTemplateList( $context )
319
- ),
320
- );
321
-
322
- wp_send_json_success( $groups, 200 );
323
- }
324
-
325
- private function getCustomPostsList( $groupValue ) {
326
- global $wp_post_types;
327
-
328
- return array_values( array_filter( $wp_post_types, function ( $type ) use ( $groupValue ) {
329
- $type->groupValue = $groupValue;
330
-
331
- return $type->public && $type->show_ui;
332
- } ) );
333
- }
334
-
335
- private function getArchivesList( $groupValue ) {
336
- global $wp_post_types;
337
-
338
- return array_values( array_filter( $wp_post_types, function ( $type ) use ( $groupValue ) {
339
- $type->groupValue = $groupValue;
340
-
341
- return $type->public && $type->show_ui && $type->has_archive;
342
- } ) );
343
- }
344
-
345
- private function getTaxonomyList( $groupValue ) {
346
- $terms = get_taxonomies( array( 'public' => true, 'show_ui' => true ), 'objects' );
347
-
348
- return array_values( array_filter( $terms, function ( $term ) use ( $groupValue ) {
349
- $term->groupValue = $groupValue;
350
-
351
- return $term;
352
- } ) );
353
- }
354
-
355
- public function geTemplateList( $context) {
356
-
357
- $list = array(
358
- array( 'title' => 'Author page', 'value' => 'author', 'groupValue' => Brizy_Admin_Rule::TEMPLATE ),
359
- array( 'title' => 'Search page', 'value' => 'search', 'groupValue' => Brizy_Admin_Rule::TEMPLATE ),
360
- array( 'title' => 'Front page', 'value' => 'front_page', 'groupValue' => Brizy_Admin_Rule::TEMPLATE ),
361
- array( 'title' => 'Blog / Posts page', 'value' => 'home_page', 'groupValue' => Brizy_Admin_Rule::TEMPLATE ),
362
- array( 'title' => '404 page', 'value' => '404', 'groupValue' => Brizy_Admin_Rule::TEMPLATE ),
363
- array( 'title' => 'Archive page', 'value' => '', 'groupValue' => Brizy_Admin_Rule::ARCHIVE )
364
- );
365
-
366
- if ( $context != 'template-rules' ) {
367
- $list[] = array(
368
- 'title' => 'Brizy Templates',
369
- 'value' => 'brizy_template',
370
- 'groupValue' => Brizy_Admin_Rule::BRIZY_TEMPLATE
371
- );
372
- }
373
-
374
- return $list;
375
- }
376
 
377
 
378
  /**
@@ -391,9 +346,10 @@ class Brizy_Admin_Templates {
391
  'post_status' => $is_preview ? 'any' : 'publish'
392
  ) );
393
 
394
- $templates = Brizy_Admin_Rules_Manager::sortEntitiesByRuleWeight( $templates, [ 'type' => $applyFor,
395
- 'entityType' => $entityType,
396
- 'entityValues' => $entityValues
 
397
  ] );
398
 
399
  foreach ( $templates as $atemplate ) {
@@ -413,13 +369,13 @@ class Brizy_Admin_Templates {
413
  */
414
  public function templateInclude( $template ) {
415
 
416
- if ( ! $this->template ) {
417
  return $template;
418
  }
419
 
420
- $templateName = $this->template->get_template();
421
 
422
- if ( ! $templateName ) {
423
  return path_join( BRIZY_PLUGIN_PATH, 'public/views/templates/' . Brizy_Config::BRIZY_TEMPLATE_FILE_NAME );
424
  }
425
 
@@ -448,20 +404,21 @@ class Brizy_Admin_Templates {
448
  try {
449
 
450
  if ( is_null( $pid ) || ! $is_using_brizy ) {
451
- $this->template = $this->getTemplateForCurrentPage();
452
 
453
- if ( ! $this->template ) {
454
  return;
455
  }
456
 
457
  $is_preview = is_preview() || isset( $_GET['preview'] );
458
- $needs_compile = ! $this->template->isCompiledWithCurrentVersion() || $this->template->get_needs_compile();
459
 
460
  if ( $needs_compile ) {
461
  try {
462
- $this->template->compile_page();
463
  if ( ! $is_preview && $needs_compile ) {
464
- $this->template->save();
 
465
  }
466
  } catch ( Exception $e ) {
467
  //ignore
@@ -511,6 +468,7 @@ class Brizy_Admin_Templates {
511
  'brizy-polyfill'
512
  ), BRIZY_EDITOR_VERSION, true );
513
  //wp_add_inline_script( 'brizy-preview', "var __CONFIG__ = ${config_json};", 'before' );
 
514
 
515
  do_action( 'brizy_preview_enqueue_scripts' );
516
  }
@@ -528,19 +486,19 @@ class Brizy_Admin_Templates {
528
  */
529
  public function insertPageHead() {
530
 
531
- if ( ! $this->template ) {
532
  return;
533
  }
534
  $pid = Brizy_Editor::get()->currentPostId();
535
 
536
- $post = $this->template->get_wp_post();
537
 
538
  if ( $pid ) {
539
  $post = get_post( $pid );
540
  }
541
 
542
 
543
- $compiled_page = $this->template->get_compiled_page();
544
 
545
  $head = apply_filters( 'brizy_content', $compiled_page->get_head(), Brizy_Editor_Project::get(), $post, 'head' );
546
  ?>
@@ -559,19 +517,19 @@ class Brizy_Admin_Templates {
559
  */
560
  public function insertPageContent() {
561
 
562
- if ( ! $this->template ) {
563
  return;
564
  }
565
 
566
  $pid = Brizy_Editor::get()->currentPostId();
567
 
568
- $post = $this->template->get_wp_post();
569
 
570
  if ( $pid ) {
571
  $post = get_post( $pid );
572
  }
573
 
574
- $compiled_page = $this->template->get_compiled_page();
575
 
576
  $content = apply_filters( 'brizy_content', $compiled_page->get_body(), Brizy_Editor_Project::get(), $post, 'body' );
577
 
@@ -586,12 +544,12 @@ class Brizy_Admin_Templates {
586
  */
587
  public function filterPageContent( $content ) {
588
 
589
- if ( ! $this->template ) {
590
  return $content;
591
  }
592
  $pid = Brizy_Editor::get()->currentPostId();
593
  $brizyPost = get_post( $pid );
594
- $compiled_page = $this->template->get_compiled_page();
595
 
596
  return apply_filters( 'brizy_content', $compiled_page->get_body(), Brizy_Editor_Project::get(), $brizyPost, 'body' );
597
  }
@@ -637,4 +595,95 @@ class Brizy_Admin_Templates {
637
  Brizy_Admin_Flash::instance()->add_error( 'Conflict of rules: Some rules have been deleted for restored posts. Please check them.' );
638
  }
639
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
640
  }
 
 
5
  const CP_TEMPLATE = 'brizy_template';
6
  const CP_TEMPLATES = 'brizy_templates';
7
  const RULE_LIST_VEIW = 'brizy_rule_list_view';
 
8
  const RULE_TAXONOMY_LIST = 'brizy_taxonomy_list';
9
  const RULE_CREATE = 'brizy_create';
10
 
11
  /**
12
  * @var Brizy_Editor_Post
13
  */
14
+ private static $template;
15
 
16
  /**
17
  * @var Brizy_Admin_Rules_Manager
28
  $this->ruleManager = new Brizy_Admin_Rules_Manager();
29
  }
30
 
31
+ /**
32
+ * @return Brizy_Editor_Post
33
+ */
34
+ public static function getTemplate() {
35
+ return self::$template;
36
+ }
37
+
38
  public function initializeActions() {
39
  // do other stuff here
40
  if ( is_admin() ) {
42
  add_action( 'add_meta_boxes', array( $this, 'registerTemplateMetaBox' ), 9 );
43
  add_action( 'transition_post_status', array( $this, 'actionTransitionPostStatus' ), 10, 3 );
44
  add_action( 'wp_ajax_' . self::RULE_LIST_VEIW, array( $this, 'getTemplateRuleBox' ) );
 
45
  add_filter( 'post_row_actions', array( $this, 'removeRowActions' ), 10, 1 );
46
  add_action( 'admin_init', array( $this, 'addTemplateRoleCaps' ), 10000 );
47
  add_action( 'admin_enqueue_scripts', array( $this, 'action_register_static' ) );
289
  exit;
290
  }
291
 
292
+ // private function get_post_list( $postType, $excludePostType = array() ) {
293
+ //
294
+ // global $wp_post_types;
295
+ //
296
+ // $post_query = array(
297
+ // 'post_type' => $postType,
298
+ // 'posts_per_page' => - 1,
299
+ // 'post_status' => $postType == 'attachment' ? 'inherit' : array(
300
+ // 'publish',
301
+ // 'pending',
302
+ // 'draft',
303
+ // 'future',
304
+ // 'private'
305
+ // ),
306
+ // 'orderby' => 'post_title',
307
+ // 'order' => 'ASC'
308
+ // );
309
+ //
310
+ // $posts = new WP_Query( $post_query );
311
+ //
312
+ // $result = array();
313
+ //
314
+ // foreach ( $posts->posts as $post ) {
315
+ //
316
+ // if ( in_array( $post->post_type, $excludePostType ) ) {
317
+ // continue;
318
+ // }
319
+ //
320
+ // $result[] = (object) array(
321
+ // 'ID' => $post->ID,
322
+ // 'uid' => $this->create_uid( $post->ID ),
323
+ // 'post_type' => $post->post_type,
324
+ // 'post_type_label' => $wp_post_types[ $post->post_type ]->label,
325
+ // 'title' => apply_filters( 'the_title', $post->post_title )
326
+ // );
327
+ // }
328
+ //
329
+ // return $result;
330
+ // }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
331
 
332
 
333
  /**
346
  'post_status' => $is_preview ? 'any' : 'publish'
347
  ) );
348
 
349
+ $templates = Brizy_Admin_Rules_Manager::sortEntitiesByRuleWeight( $templates, [
350
+ 'type' => $applyFor,
351
+ 'entityType' => $entityType,
352
+ 'entityValues' => $entityValues
353
  ] );
354
 
355
  foreach ( $templates as $atemplate ) {
369
  */
370
  public function templateInclude( $template ) {
371
 
372
+ if ( ! self::getTemplate() ) {
373
  return $template;
374
  }
375
 
376
+ $templateName = self::getTemplate()->get_template();
377
 
378
+ if ( ! $templateName || $templateName == 'default' ) {
379
  return path_join( BRIZY_PLUGIN_PATH, 'public/views/templates/' . Brizy_Config::BRIZY_TEMPLATE_FILE_NAME );
380
  }
381
 
404
  try {
405
 
406
  if ( is_null( $pid ) || ! $is_using_brizy ) {
407
+ self::$template = $this->getTemplateForCurrentPage();
408
 
409
+ if ( ! self::getTemplate() ) {
410
  return;
411
  }
412
 
413
  $is_preview = is_preview() || isset( $_GET['preview'] );
414
+ $needs_compile = $is_preview || ! self::getTemplate()->isCompiledWithCurrentVersion() || self::getTemplate()->get_needs_compile();
415
 
416
  if ( $needs_compile ) {
417
  try {
418
+ self::getTemplate()->compile_page();
419
  if ( ! $is_preview && $needs_compile ) {
420
+ self::getTemplate()->saveStorage();
421
+ self::getTemplate()->savePost();
422
  }
423
  } catch ( Exception $e ) {
424
  //ignore
468
  'brizy-polyfill'
469
  ), BRIZY_EDITOR_VERSION, true );
470
  //wp_add_inline_script( 'brizy-preview', "var __CONFIG__ = ${config_json};", 'before' );
471
+ wp_add_inline_script( 'brizy-preview', "jQuery(document).ready(function(){window.Brizy.emit('init.dom',jQuery(document.body))});", 'after' );
472
 
473
  do_action( 'brizy_preview_enqueue_scripts' );
474
  }
486
  */
487
  public function insertPageHead() {
488
 
489
+ if ( ! self::getTemplate() ) {
490
  return;
491
  }
492
  $pid = Brizy_Editor::get()->currentPostId();
493
 
494
+ $post = self::getTemplate()->getWpPost();
495
 
496
  if ( $pid ) {
497
  $post = get_post( $pid );
498
  }
499
 
500
 
501
+ $compiled_page = self::getTemplate()->get_compiled_page();
502
 
503
  $head = apply_filters( 'brizy_content', $compiled_page->get_head(), Brizy_Editor_Project::get(), $post, 'head' );
504
  ?>
517
  */
518
  public function insertPageContent() {
519
 
520
+ if ( ! self::getTemplate() ) {
521
  return;
522
  }
523
 
524
  $pid = Brizy_Editor::get()->currentPostId();
525
 
526
+ $post = self::getTemplate()->getWpPost();
527
 
528
  if ( $pid ) {
529
  $post = get_post( $pid );
530
  }
531
 
532
+ $compiled_page = self::getTemplate()->get_compiled_page();
533
 
534
  $content = apply_filters( 'brizy_content', $compiled_page->get_body(), Brizy_Editor_Project::get(), $post, 'body' );
535
 
544
  */
545
  public function filterPageContent( $content ) {
546
 
547
+ if ( ! self::getTemplate() ) {
548
  return $content;
549
  }
550
  $pid = Brizy_Editor::get()->currentPostId();
551
  $brizyPost = get_post( $pid );
552
+ $compiled_page = self::getTemplate()->get_compiled_page();
553
 
554
  return apply_filters( 'brizy_content', $compiled_page->get_body(), Brizy_Editor_Project::get(), $brizyPost, 'body' );
555
  }
595
  Brizy_Admin_Flash::instance()->add_error( 'Conflict of rules: Some rules have been deleted for restored posts. Please check them.' );
596
  }
597
  }
598
+
599
+
600
+ public static function getPostSample( $templateId ) {
601
+ $wp_post = get_post( $templateId );
602
+ if ( $wp_post->post_type !== Brizy_Admin_Templates::CP_TEMPLATE &&
603
+ $wp_post->post_type !== Brizy_Admin_Popups_Main::CP_POPUP ) {
604
+ return $wp_post;
605
+ }
606
+
607
+
608
+ $ruleManager = new Brizy_Admin_Rules_Manager();
609
+ $rules = $ruleManager->getRules( $wp_post->ID );
610
+ $rule = null;
611
+
612
+ // find first include rule
613
+ foreach ( $rules as $rule ) {
614
+ /**
615
+ * @var Brizy_Admin_Rule $rule ;
616
+ */
617
+ if ( $rule->getType() == Brizy_Admin_Rule::TYPE_INCLUDE ) {
618
+ break;
619
+ }
620
+ }
621
+
622
+ if ( $rule ) {
623
+
624
+ switch ( $rule->getAppliedFor() ) {
625
+ case Brizy_Admin_Rule::POSTS :
626
+ $args = array(
627
+ 'post_type' => $rule->getEntityType(),
628
+ );
629
+
630
+ if ( count( $rule->getEntityValues() ) ) {
631
+ $args['post__in'] = $rule->getEntityValues();
632
+ }
633
+ $array = get_posts( $args );
634
+
635
+ return array_pop( $array );
636
+ break;
637
+ case Brizy_Admin_Rule::TAXONOMY :
638
+ $args = array(
639
+ 'taxonomy' => $rule->getEntityType(),
640
+ 'hide_empty' => false,
641
+ );
642
+ if ( count( $rule->getEntityValues() ) ) {
643
+ $args['term_taxonomy_id'] = $rule->getEntityValues();
644
+ }
645
+
646
+ $array = get_terms( $args );
647
+
648
+ return array_pop( $array );
649
+ break;
650
+ case Brizy_Admin_Rule::ARCHIVE :
651
+ return null;
652
+ break;
653
+ case Brizy_Admin_Rule::TEMPLATE :
654
+
655
+ switch ( $rule->getEntityType() ) {
656
+ case 'author':
657
+ $authors = get_users();
658
+
659
+ return array_pop( $authors );
660
+ break;
661
+
662
+ case '404':
663
+ case 'search':
664
+ return null;
665
+ break;
666
+ case 'home_page':
667
+ $get_option = get_option( 'page_for_posts' );
668
+
669
+ if ( $get_option ) {
670
+ return get_post( $get_option );
671
+ }
672
+ break;
673
+ case 'front_page':
674
+ $get_option = get_option( 'page_on_front' );
675
+
676
+ if ( $get_option ) {
677
+ return get_post( $get_option );
678
+ }
679
+ break;
680
+ }
681
+
682
+ break;
683
+ }
684
+
685
+ }
686
+ }
687
  }
688
+
689
+
admin/views/settings/general.php CHANGED
@@ -43,6 +43,6 @@
43
  name="brizy-general-submit"
44
  id="submit"
45
  class="button button-primary"
46
- ><?php echo __( 'Save Changes' ); ?></button>
47
  </p>
48
  </form>
43
  name="brizy-general-submit"
44
  id="submit"
45
  class="button button-primary"
46
+ ><?php echo __( 'Save Changes', 'brizy' ); ?></button>
47
  </p>
48
  </form>
admin/views/settings/maintenance.php ADDED
@@ -0,0 +1,79 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php defined( 'ABSPATH' ) or die(); ?>
2
+
3
+ <form method="post" novalidate="novalidate">
4
+ <input type="hidden" name="tab" value="maintenance"/>
5
+ <?php wp_nonce_field() ?>
6
+ <table class="form-table">
7
+ <tbody>
8
+ <tr id="brizy-maintenance-js-mode">
9
+ <th>
10
+ <label for="brizy-maintenance-mode"><?php _e( 'Choose Mode', 'brizy' ); ?></label>
11
+ </th>
12
+ <td>
13
+ <select name="brizy-maintenance[mode]" id="brizy-maintenance-mode">
14
+ <option value=""<?php selected( $mode, '' ); ?>><?php _e( 'Disabled', 'brizy' ); ?></option>
15
+ <option value="coming_soon"<?php selected( $mode, 'coming_soon' ); ?>><?php _e( 'Coming Soon', 'brizy' ); ?></option>
16
+ <option value="maintenance"<?php selected( $mode, 'maintenance' ); ?>><?php _e( 'Maintenance', 'brizy' ); ?></option>
17
+ </select>
18
+ </td>
19
+ </tr>
20
+ <tr class="hidden">
21
+ <th>
22
+ <label for="brizy-maintenance-access-role"><?php _e( 'Who Can Access', 'brizy' ); ?></label>
23
+ </th>
24
+ <td>
25
+ <select name="brizy-maintenance[who]" id="brizy-maintenance-access-role">
26
+ <option value="logged"<?php selected( $who, 'logged' ); ?>><?php _e( 'Logged In', 'brizy' ); ?></option>
27
+ <option value="custom"<?php selected( $who, 'custom' ); ?>><?php _e( 'Custom', 'brizy' ); ?></option>
28
+ </select>
29
+ </td>
30
+ </tr>
31
+ <tr class="brizy-maintenance-roles hidden">
32
+ <th>
33
+ <?php _e( 'Roles', 'brizy' ); ?>
34
+ </th>
35
+ <td>
36
+ <fieldset>
37
+ <?php foreach ( $available_roles as $role ) : ?>
38
+ <label>
39
+ <input type="checkbox" name="brizy-maintenance[roles][]" value="<?php echo $role['id']; ?>"<?php checked( in_array( $role['id'], $roles ) ); ?>>
40
+ <?php echo $role['name']; ?>
41
+ </label>
42
+ <br>
43
+ <?php endforeach; ?>
44
+ </fieldset>
45
+ </td>
46
+ </tr>
47
+ <tr class="hidden">
48
+ <th>
49
+ <label for="brizy-maintenance-page"><?php _e( 'Choose a Page', 'brizy' ); ?></label>
50
+ </th>
51
+ <td>
52
+ <?php if ( $pages ) : ?>
53
+ <select name="brizy-maintenance[page]" id="brizy-maintenance-page">
54
+ <option value=""<?php selected( $page, '' ); ?>><?php _e( 'Select a page', 'brizy' ); ?></option>
55
+ <?php foreach ( $pages as $id => $title ) : ?>
56
+ <option value="<?php echo $id; ?>"<?php selected( $page, $id ); ?>><?php echo $title; ?></option>
57
+ <?php endforeach; ?>
58
+ </select>
59
+ <?php else : ?>
60
+ <?php printf( __( 'You have no pages. Please %s create %s one.', 'brizy' ), '<a href="' . admin_url( 'post-new.php?post_type=page' ) . '">', '</a>' ); ?>
61
+ <?php endif; ?>
62
+ </td>
63
+ </tr>
64
+ <tr class="hidden">
65
+ <th>
66
+ <label for="brizy-maintenance-ips"><?php _e( 'Whitelisted IP Addresses', 'brizy' ); ?></label>
67
+ </th>
68
+ <td>
69
+ <textarea name="brizy-maintenance[ips]" id="brizy-maintenance-ips" cols="25" rows="3" placeholder="122.45.23.22&#10;122.45.25.211"><?php echo $ips; ?></textarea>
70
+ </td>
71
+ </tr>
72
+ </tbody>
73
+ </table>
74
+ <p class="submit">
75
+ <button type="submit" id="submit" class="button button-primary">
76
+ <?php echo __( 'Save Changes', 'brizy' ); ?>
77
+ </button>
78
+ </p>
79
+ </form>
admin/views/settings/roles.php CHANGED
@@ -23,6 +23,6 @@
23
  <button type="submit"
24
  id="submit"
25
  class="button button-primary"
26
- ><?php echo __( 'Save Changes' ); ?></button>
27
  </p>
28
  </form>
23
  <button type="submit"
24
  id="submit"
25
  class="button button-primary"
26
+ ><?php echo __( 'Save Changes', 'brizy' ); ?></button>
27
  </p>
28
  </form>
brizy.php CHANGED
@@ -5,7 +5,7 @@
5
  * Plugin URI: https://brizy.io/
6
  * Author: Brizy.io
7
  * Author URI: https://brizy.io/
8
- * Version: 1.0.117
9
  * Text Domain: brizy
10
  * License: GPLv3
11
  * Domain Path: /languages
@@ -19,8 +19,8 @@ if ( isset( $_SERVER['HTTP_X_FORWARDED_PROTO'] ) && stripos( $_SERVER['HTTP_X_FO
19
 
20
  define( 'BRIZY_DEVELOPMENT', false );
21
  define( 'BRIZY_LOG', false );
22
- define( 'BRIZY_VERSION', '1.0.117' );
23
- define( 'BRIZY_EDITOR_VERSION', '131-wp' );
24
  define( 'BRIZY_FILE', __FILE__ );
25
  define( 'BRIZY_PLUGIN_BASE', plugin_basename( BRIZY_FILE ) );
26
  define( 'BRIZY_PLUGIN_PATH', dirname( BRIZY_FILE ) );
5
  * Plugin URI: https://brizy.io/
6
  * Author: Brizy.io
7
  * Author URI: https://brizy.io/
8
+ * Version: 1.0.118
9
  * Text Domain: brizy
10
  * License: GPLv3
11
  * Domain Path: /languages
19
 
20
  define( 'BRIZY_DEVELOPMENT', false );
21
  define( 'BRIZY_LOG', false );
22
+ define( 'BRIZY_VERSION', '1.0.118' );
23
+ define( 'BRIZY_EDITOR_VERSION', '134-wp' );
24
  define( 'BRIZY_FILE', __FILE__ );
25
  define( 'BRIZY_PLUGIN_BASE', plugin_basename( BRIZY_FILE ) );
26
  define( 'BRIZY_PLUGIN_PATH', dirname( BRIZY_FILE ) );
compatibilities/broken-link-checker.php ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Broken Link Checker plugin: https://wordpress.org/plugins/broken-link-checker/
4
+ */
5
+ class Brizy_Compatibilities_BrokenLinkChecker {
6
+
7
+ public function __construct() {
8
+ $this->insert_exclusion();
9
+ }
10
+
11
+ public function insert_exclusion() {
12
+
13
+ global $blc_config_manager;
14
+
15
+ if ( ! isset( $blc_config_manager->options['exclusion_list'] ) ) {
16
+ return;
17
+ }
18
+
19
+ $excludeRules = array_diff( [ '_dc_', 'SITE_URL_PLACEHOLDER' ], $blc_config_manager->options['exclusion_list'] );
20
+ $blc_config_manager->options['exclusion_list'] = array_merge( $blc_config_manager->options['exclusion_list'], $excludeRules );
21
+ }
22
+ }
compatibilities/init.php CHANGED
@@ -45,17 +45,32 @@ class Brizy_Compatibilities_Init {
45
  if ( $this->is_plugin_active( 'sg-cachepress/sg-cachepress.php' ) ) {
46
  new Brizy_Compatibilities_SgOptimizer();
47
  }
 
 
 
 
 
 
 
 
48
  }
49
 
50
  public function action_plugins_loaded() {
51
  if ( function_exists( 'wpseo_auto_load' ) ) {
52
  new Brizy_Compatibilities_YoastSeo();
53
  }
 
 
 
 
 
 
54
  }
55
 
56
  private function is_plugin_active( $plugin_file ) {
57
 
58
- if ( in_array( $plugin_file, apply_filters( 'active_plugins', get_option( 'active_plugins' ) ) ) ) {
 
59
  return true;
60
  }
61
 
@@ -71,4 +86,4 @@ class Brizy_Compatibilities_Init {
71
 
72
  return false;
73
  }
74
- }
45
  if ( $this->is_plugin_active( 'sg-cachepress/sg-cachepress.php' ) ) {
46
  new Brizy_Compatibilities_SgOptimizer();
47
  }
48
+
49
+ if ( defined( 'SEOPRESS_VERSION' ) ) {
50
+ new Brizy_Compatibilities_SeoPress();
51
+ }
52
+
53
+ if ( function_exists( 'rank_math' ) ) {
54
+ new Brizy_Compatibilities_RankMathSEO();
55
+ }
56
  }
57
 
58
  public function action_plugins_loaded() {
59
  if ( function_exists( 'wpseo_auto_load' ) ) {
60
  new Brizy_Compatibilities_YoastSeo();
61
  }
62
+
63
+ if ( is_admin() ) {
64
+ if ( class_exists( 'blcConfigurationManager' ) ) {
65
+ new Brizy_Compatibilities_BrokenLinkChecker();
66
+ }
67
+ }
68
  }
69
 
70
  private function is_plugin_active( $plugin_file ) {
71
 
72
+ $apply_filters = apply_filters( 'active_plugins', get_option( 'active_plugins' ) );
73
+ if ( is_array( $apply_filters ) && in_array( $plugin_file, $apply_filters ) ) {
74
  return true;
75
  }
76
 
86
 
87
  return false;
88
  }
89
+ }
compatibilities/rank-math-seo.php ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Brizy_Compatibilities_RankMathSeo {
4
+
5
+ public function __construct() {
6
+ add_action( 'rest_api_init', [ $this, 'init_rest_api' ] );
7
+ }
8
+
9
+ /**
10
+ * Load the REST API endpoints.
11
+ */
12
+ public function init_rest_api() {
13
+ register_rest_route( 'rankmath/v1', '/briz_post_content', array(
14
+ 'methods' => 'GET',
15
+ [
16
+ 'methods' => WP_REST_Server::ALLMETHODS,
17
+ 'callback' => [ $this, 'get_post_content' ],
18
+ 'args' => [
19
+ 'postId' => [
20
+ 'type' => 'string',
21
+ 'required' => true,
22
+ ]
23
+ ],
24
+ ]
25
+ ) );
26
+ }
27
+
28
+ /**
29
+ * @param WP_REST_Request $request
30
+ *
31
+ * @return mixed|void
32
+ */
33
+ public function get_post_content( WP_REST_Request $request ) {
34
+ try {
35
+ $post = Brizy_Editor_Post::get( $request->get_param( 'postId' ) );
36
+ if ( $post->uses_editor() ) {
37
+ return wp_send_json_success( [ 'content' => apply_filters( 'brizy_content', $post->get_compiled_page()->get_body(), Brizy_Editor_Project::get(), $post->getWpPost() ) ] );
38
+ } else {
39
+ wp_send_json_error( 'This post does not use Brizy.', 204 );
40
+ }
41
+ } catch ( Exception $e ) {
42
+ Brizy_Logger::instance()->critical( 'Failed to process REST request', [ $e ] );
43
+ wp_send_json_error( 'Failed to process the request', 500 );
44
+ }
45
+ }
46
+ }
compatibilities/seo-press.php ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Brizy_Compatibilities_SeoPress {
4
+
5
+ public function __construct() {
6
+ add_filter( 'rewrite_rules_array', array( $this, 'fixRewriteRules' ), 9998 );
7
+ }
8
+
9
+ /**
10
+ * Yoast has a feature to add twitter share image.
11
+ * If this image or featured image is not added then
12
+ * it takes the first image from the post content.
13
+ * These action is made in the hook wp_head and we
14
+ * haven't replaced the urls yet. Here's why we see:
15
+ * <meta name="twitter:image" content="http://@brizy_SITE_URL_PLACEHOLDER@/?
16
+ *
17
+ * @param $img_url
18
+ *
19
+ * @return string
20
+ */
21
+ public function fixRewriteRules( $rules ) {
22
+
23
+ foreach ( $rules as $regex => $rule ) {
24
+
25
+ $key_position = array_search( $regex, array_keys($rules) );
26
+ $newRegex = str_replace( '(/page/(\d+))', '(?:/page/(\d+))', $regex );
27
+
28
+ unset($rules[$regex]);
29
+
30
+ $array_1 = array_slice( $rules, 0, $key_position, true );
31
+ $array_slice = array_slice( $rules, $key_position, null, true );
32
+ $rules = array_merge(
33
+ $array_1,
34
+ array( $newRegex => $rule ), // Notice the new key ends with "_db"
35
+ $array_slice
36
+ );
37
+
38
+ }
39
+
40
+ return $rules;
41
+ }
42
+ }
content/placeholders/permalink.php ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Brizy_Content_Placeholders_Permalink extends Brizy_Content_Placeholders_Simple {
4
+
5
+
6
+ /**
7
+ * Brizy_Content_Placeholders_Simple constructor.
8
+ *
9
+ * @param $label
10
+ * @param $placeholder
11
+ * @param $value
12
+ * @param string $display
13
+ */
14
+ public function __construct() {
15
+ parent::__construct( 'Permalink', 'brizy_dc_permalink', null );
16
+ }
17
+
18
+ /**
19
+ * @param Brizy_Content_ContentPlaceholder $contentPlaceholder
20
+ * @param Brizy_Content_Context $context
21
+ *
22
+ * @return mixed|string
23
+ */
24
+ public function getValue( Brizy_Content_Context $context, Brizy_Content_ContentPlaceholder $contentPlaceholder ) {
25
+ $attributes = $contentPlaceholder->getAttributes();
26
+ if ( isset( $attributes['post_id'] ) && $attributes['post_id']>0 ) {
27
+ return get_permalink( (int) $attributes['post_id'] );
28
+ }
29
+
30
+ return '';
31
+ }
32
+
33
+
34
+ }
content/providers/free-provider.php CHANGED
@@ -19,9 +19,10 @@ class Brizy_Content_Providers_FreeProvider extends Brizy_Content_Providers_Abstr
19
  return array(
20
  new Brizy_Content_Placeholders_ImageTitleAttribute( 'Internal Title Attributes', 'brizy_dc_image_title' ),
21
  new Brizy_Content_Placeholders_ImageAltAttribute( 'Internal Alt Attributes', 'brizy_dc_image_alt' ),
22
- new Brizy_Content_Placeholders_UniquePageUrl( 'Uniquer page url','brizy_dc_current_page_unique_url' ),
23
  new Brizy_Content_Placeholders_Simple( 'WP Language', 'brizy_dc_page_language', get_locale() ),
24
- new Brizy_Content_Placeholders_Simple( 'Ajax Url', 'brizy_dc_ajax_url', admin_url( 'admin-ajax.php' ) )
 
25
  );
26
  }
27
  }
19
  return array(
20
  new Brizy_Content_Placeholders_ImageTitleAttribute( 'Internal Title Attributes', 'brizy_dc_image_title' ),
21
  new Brizy_Content_Placeholders_ImageAltAttribute( 'Internal Alt Attributes', 'brizy_dc_image_alt' ),
22
+ new Brizy_Content_Placeholders_UniquePageUrl( 'Uniquer page url', 'brizy_dc_current_page_unique_url' ),
23
  new Brizy_Content_Placeholders_Simple( 'WP Language', 'brizy_dc_page_language', get_locale() ),
24
+ new Brizy_Content_Placeholders_Simple( 'Ajax Url', 'brizy_dc_ajax_url', admin_url( 'admin-ajax.php' ) ),
25
+ new Brizy_Content_Placeholders_Permalink()
26
  );
27
  }
28
  }
editor.php CHANGED
@@ -37,6 +37,8 @@ class Brizy_Editor {
37
 
38
  return;
39
  }
 
 
40
  add_action( 'init', array( $this, 'resetPermalinks' ), - 2000 );
41
  add_action( 'init', array( $this, 'initialize' ), - 2000 );
42
  }
@@ -90,9 +92,6 @@ class Brizy_Editor {
90
  }
91
  }
92
 
93
- /**
94
- *
95
- */
96
  public function wordpressLoaded() {
97
 
98
  $pid = Brizy_Editor::get()->currentPostId();
@@ -113,7 +112,9 @@ class Brizy_Editor {
113
 
114
  function brizy_add_dashboard_widgets() {
115
  try {
116
- Brizy_Admin_DashboardWidget::_init();
 
 
117
  } catch ( Exception $e ) {
118
  // ignore this exceptions for now.
119
  }
@@ -161,8 +162,7 @@ class Brizy_Editor {
161
  $num = BRIZY_MAX_REVISIONS_TO_KEEP;
162
  }
163
  } catch ( Exception $e ) {
164
- Brizy_Logger::instance()->critical( $e->getMessage(), array( $e ) );
165
-
166
  }
167
 
168
  return $num;
@@ -198,7 +198,6 @@ class Brizy_Editor {
198
  ) );
199
  }
200
 
201
-
202
  public function registerCustomPostTemplates() {
203
  Brizy_Editor_Project::registerCustomPostType();
204
 
@@ -261,6 +260,15 @@ class Brizy_Editor {
261
  }
262
  }
263
 
 
 
 
 
 
 
 
 
 
264
  private function loadEditorAdminSettings() {
265
  try {
266
  new Brizy_Admin_Capabilities( Brizy_Editor_Storage_Common::instance() );
@@ -292,14 +300,6 @@ class Brizy_Editor {
292
  }
293
  }
294
 
295
- private function loadShortcodes() {
296
- new Brizy_Shortcode_Sidebar();
297
- new Brizy_Shortcode_Posts();
298
- new Brizy_Shortcode_Navigation();
299
- new Brizy_Shortcode_PostField();
300
- new Brizy_Shortcode_PostInfo();
301
- }
302
-
303
  private function initializeAssetLoaders() {
304
  try {
305
  $url_builder = new Brizy_Editor_UrlBuilder( null );
@@ -322,7 +322,6 @@ class Brizy_Editor {
322
  * =====================================================================================================
323
  * =====================================================================================================
324
  */
325
-
326
  function currentPostId() {
327
  $pid = null;
328
  global $wp_query;
@@ -353,7 +352,6 @@ class Brizy_Editor {
353
  return $pid;
354
  }
355
 
356
-
357
  public static function is_administrator() {
358
 
359
  if ( ! is_user_logged_in() ) {
@@ -395,23 +393,14 @@ class Brizy_Editor {
395
  return self::$is_allowed_for_current_user;
396
  }
397
 
398
- public function get_path(
399
- $rel = '/'
400
- ) {
401
-
402
  return BRIZY_PLUGIN_PATH . DIRECTORY_SEPARATOR . ltrim( $rel, DIRECTORY_SEPARATOR );
403
  }
404
 
405
- public function get_url(
406
- $rel = ''
407
- ) {
408
  return BRIZY_PLUGIN_URL . "/" . ltrim( $rel, "/" );
409
  }
410
 
411
- public function get_domain() {
412
- return 'brizy';
413
- }
414
-
415
  public function get_version() {
416
  return BRIZY_VERSION;
417
  }
@@ -420,6 +409,33 @@ class Brizy_Editor {
420
  return 'brizy';
421
  }
422
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
423
  public function supported_post_types() {
424
  $types = $this->get_post_types();
425
 
@@ -444,11 +460,31 @@ class Brizy_Editor {
444
  }
445
  }
446
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
447
  private function initFeedback() {
448
 
449
  $feedback = true;
450
 
451
- if ( defined( 'BRIZY_PRO_VERSION' ) ) {
452
 
453
  $whiteLabel = BrizyPro_Admin_WhiteLabel::_init();
454
  $callable = is_callable( [ $whiteLabel, 'getEnabled' ] );
37
 
38
  return;
39
  }
40
+
41
+ add_action( 'init', array( 'Brizy_MaintenanceMode', 'init' ), - 4000 );
42
  add_action( 'init', array( $this, 'resetPermalinks' ), - 2000 );
43
  add_action( 'init', array( $this, 'initialize' ), - 2000 );
44
  }
92
  }
93
  }
94
 
 
 
 
95
  public function wordpressLoaded() {
96
 
97
  $pid = Brizy_Editor::get()->currentPostId();
112
 
113
  function brizy_add_dashboard_widgets() {
114
  try {
115
+ if ( ! class_exists( 'BrizyPro_Admin_WhiteLabel' ) || ! BrizyPro_Admin_WhiteLabel::_init()->getEnabled() ) {
116
+ Brizy_Admin_DashboardWidget::_init();
117
+ }
118
  } catch ( Exception $e ) {
119
  // ignore this exceptions for now.
120
  }
162
  $num = BRIZY_MAX_REVISIONS_TO_KEEP;
163
  }
164
  } catch ( Exception $e ) {
165
+ Brizy_Logger::instance()->debug( $e->getMessage(), array( $e ) );
 
166
  }
167
 
168
  return $num;
198
  ) );
199
  }
200
 
 
201
  public function registerCustomPostTemplates() {
202
  Brizy_Editor_Project::registerCustomPostType();
203
 
260
  }
261
  }
262
 
263
+ private function loadShortcodes() {
264
+ new Brizy_Shortcode_Sidebar();
265
+ new Brizy_Shortcode_Posts();
266
+ new Brizy_Shortcode_Navigation();
267
+ new Brizy_Shortcode_PostField();
268
+ new Brizy_Shortcode_PostInfo();
269
+ new Brizy_Shortcode_WooProductPageWrapper();
270
+ }
271
+
272
  private function loadEditorAdminSettings() {
273
  try {
274
  new Brizy_Admin_Capabilities( Brizy_Editor_Storage_Common::instance() );
300
  }
301
  }
302
 
 
 
 
 
 
 
 
 
303
  private function initializeAssetLoaders() {
304
  try {
305
  $url_builder = new Brizy_Editor_UrlBuilder( null );
322
  * =====================================================================================================
323
  * =====================================================================================================
324
  */
 
325
  function currentPostId() {
326
  $pid = null;
327
  global $wp_query;
352
  return $pid;
353
  }
354
 
 
355
  public static function is_administrator() {
356
 
357
  if ( ! is_user_logged_in() ) {
393
  return self::$is_allowed_for_current_user;
394
  }
395
 
396
+ public function get_path( $rel = '/' ) {
 
 
 
397
  return BRIZY_PLUGIN_PATH . DIRECTORY_SEPARATOR . ltrim( $rel, DIRECTORY_SEPARATOR );
398
  }
399
 
400
+ public function get_url( $rel = '' ) {
 
 
401
  return BRIZY_PLUGIN_URL . "/" . ltrim( $rel, "/" );
402
  }
403
 
 
 
 
 
404
  public function get_version() {
405
  return BRIZY_VERSION;
406
  }
409
  return 'brizy';
410
  }
411
 
412
+ /**
413
+ * @param $wp_post_id
414
+ * @param bool $throw
415
+ *
416
+ * @return bool
417
+ * @throws Brizy_Editor_Exceptions_UnsupportedPostType
418
+ */
419
+ public static function checkIfPostTypeIsSupported( $wp_post_id, $throw = true ) {
420
+ $type = get_post_type( $wp_post_id );
421
+
422
+ $supported_post_types = self::get()->supported_post_types();
423
+ $supported_post_types[] = 'revision';
424
+
425
+ if ( ! in_array( $type, $supported_post_types ) ) {
426
+
427
+ if ( $throw ) {
428
+ throw new Brizy_Editor_Exceptions_UnsupportedPostType(
429
+ "Brizy editor doesn't support '{$type}' post type"
430
+ );
431
+ } else {
432
+ return false;
433
+ }
434
+ }
435
+
436
+ return true;
437
+ }
438
+
439
  public function supported_post_types() {
440
  $types = $this->get_post_types();
441
 
460
  }
461
  }
462
 
463
+ public function lockProject() {
464
+ if ( ! function_exists( 'wp_set_post_lock' ) ) {
465
+ require_once ABSPATH . 'wp-admin/includes/post.php';
466
+ }
467
+ wp_set_post_lock( Brizy_Editor_Project::get()->getWpPostId() );
468
+ }
469
+
470
+ public function removeProjectLock() {
471
+ delete_post_meta( Brizy_Editor_Project::get()->getWpPostId(), '_edit_lock' );
472
+ }
473
+
474
+ public function checkIfProjectIsLocked() {
475
+ if ( ! function_exists( 'wp_check_post_lock' ) ) {
476
+ require_once ABSPATH . 'wp-admin/includes/post.php';
477
+ }
478
+
479
+ return wp_check_post_lock( Brizy_Editor_Project::get()->getWpPostId() );
480
+ }
481
+
482
+
483
  private function initFeedback() {
484
 
485
  $feedback = true;
486
 
487
+ if ( class_exists( 'BrizyPro_Admin_WhiteLabel' ) ) {
488
 
489
  $whiteLabel = BrizyPro_Admin_WhiteLabel::_init();
490
  $callable = is_callable( [ $whiteLabel, 'getEnabled' ] );
editor/accounts/abstract-account-manager.php CHANGED
@@ -125,7 +125,7 @@ class Brizy_Editor_Accounts_AbstractAccountManager {
125
  }
126
 
127
  $this->project->setAccounts( $data );
128
- $this->project->save();
129
  }
130
 
131
  /**
125
  }
126
 
127
  $this->project->setAccounts( $data );
128
+ $this->project->saveStorage();
129
  }
130
 
131
  /**
editor/accounts/service-account-manager.php CHANGED
@@ -161,7 +161,7 @@ class Brizy_Editor_Accounts_ServiceAccountManager {
161
  }
162
 
163
  $this->project->setAccounts( $data );
164
- $this->project->save();
165
  }
166
 
167
  /**
161
  }
162
 
163
  $this->project->setAccounts( $data );
164
+ $this->project->saveStorage();
165
  }
166
 
167
  /**
editor/api.php CHANGED
@@ -3,10 +3,12 @@
3
  class Brizy_Editor_API extends Brizy_Admin_AbstractApi {
4
 
5
  const nonce = 'brizy-api';
 
6
  const AJAX_GET = 'brizy_editor_get_items';
7
  const AJAX_UPDATE = 'brizy_update_item';
8
  const AJAX_GET_PROJECT = 'brizy_get_project';
9
  const AJAX_SET_PROJECT = 'brizy_set_project';
 
10
  const AJAX_MEDIA = 'brizy_media';
11
  const AJAX_SIDEBARS = 'brizy_sidebars';
12
  const AJAX_SIDEBAR_CONTENT = 'brizy_sidebar_content';
@@ -14,6 +16,9 @@ class Brizy_Editor_API extends Brizy_Admin_AbstractApi {
14
  const AJAX_GET_POST_OBJECTS = 'brizy_get_posts';
15
  const AJAX_GET_MENU_LIST = 'brizy_get_menu_list';
16
  const AJAX_GET_TERMS = 'brizy_get_terms';
 
 
 
17
  const AJAX_JWT_TOKEN = 'brizy_multipass_create';
18
 
19
  const AJAX_UPDATE_MENU_DATA = 'brizy_update_menu_data';
@@ -29,6 +34,10 @@ class Brizy_Editor_API extends Brizy_Admin_AbstractApi {
29
  const AJAX_REMOVE_FEATURED_IMAGE = 'brizy_remove_featured_image';
30
  const AJAX_TIMESTAMP = 'brizy_timestamp';
31
 
 
 
 
 
32
  /**
33
  * @var Brizy_Editor_Post
34
  */
@@ -56,10 +65,15 @@ class Brizy_Editor_API extends Brizy_Admin_AbstractApi {
56
 
57
  protected function initializeApiActions() {
58
  if ( Brizy_Editor::is_user_allowed() ) {
 
 
 
59
  add_action( 'wp_ajax_' . self::AJAX_GET, array( $this, 'get_item' ) );
 
60
  add_action( 'wp_ajax_' . self::AJAX_UPDATE, array( $this, 'update_item' ) );
61
  add_action( 'wp_ajax_' . self::AJAX_GET_PROJECT, array( $this, 'get_project' ) );
62
  add_action( 'wp_ajax_' . self::AJAX_SET_PROJECT, array( $this, 'set_project' ) );
 
63
  add_action( 'wp_ajax_' . self::AJAX_SIDEBARS, array( $this, 'get_sidebars' ) );
64
  add_action( 'wp_ajax_' . self::AJAX_SHORTCODE_CONTENT, array( $this, 'shortcode_content' ) );
65
  add_action( 'wp_ajax_' . self::AJAX_GET_POST_OBJECTS, array( $this, 'get_post_objects' ) );
@@ -77,12 +91,59 @@ class Brizy_Editor_API extends Brizy_Admin_AbstractApi {
77
  add_action( 'wp_ajax_' . self::AJAX_TIMESTAMP, array( $this, 'timestamp' ) );
78
  add_action( 'wp_ajax_nopriv_' . self::AJAX_TIMESTAMP, array( $this, 'timestamp' ) );
79
  }
 
 
 
 
 
 
80
  }
81
 
82
  protected function getRequestNonce() {
83
  return self::nonce;
84
  }
85
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
86
  public function timestamp() {
87
  $this->success( array( 'timestamp' => time() ) );
88
  }
@@ -96,9 +157,9 @@ class Brizy_Editor_API extends Brizy_Admin_AbstractApi {
96
  }
97
 
98
  if ( $this->post && $this->post->uses_editor() ) {
99
- set_post_thumbnail( $this->post->get_id(), (int) $_REQUEST['attachmentId'] );
100
 
101
- $uid = $this->createMediaKey( $this->post->get_id(), (int) $_REQUEST['attachmentId'] );
102
 
103
  $this->success( array( 'uid' => $uid ) );
104
  }
@@ -115,7 +176,7 @@ class Brizy_Editor_API extends Brizy_Admin_AbstractApi {
115
 
116
  if ( $this->post && $this->post->uses_editor() ) {
117
 
118
- update_post_meta( $this->post->get_id(), 'brizy_attachment_focal_point', array(
119
  'x' => $_REQUEST['pointX'],
120
  'y' => $_REQUEST['pointY']
121
  ) );
@@ -130,8 +191,8 @@ class Brizy_Editor_API extends Brizy_Admin_AbstractApi {
130
  $this->verifyNonce( self::nonce );
131
 
132
  if ( $this->post && $this->post->uses_editor() ) {
133
- delete_post_thumbnail( $this->post->get_id() );
134
- delete_post_meta( $this->post->get_id(), 'brizy_attachment_focal_point' );
135
  $this->success( null );
136
  }
137
 
@@ -198,7 +259,7 @@ class Brizy_Editor_API extends Brizy_Admin_AbstractApi {
198
  public function get_project() {
199
  try {
200
  $this->verifyNonce( self::nonce );
201
- $data = Brizy_Editor_Project::get()->create_post_data();
202
 
203
  $this->success( $data );
204
  } catch ( Exception $exception ) {
@@ -215,29 +276,38 @@ class Brizy_Editor_API extends Brizy_Admin_AbstractApi {
215
  $this->verifyNonce( self::nonce );
216
 
217
  // update project globas
218
- $meta = stripslashes( $this->param( 'data' ) );
 
219
 
220
  if ( ! $meta ) {
221
- Brizy_Logger::instance()->error( 'Invalid project meta provided', [ 'data' => $this->param( 'data' ) ] );
 
 
 
 
 
222
  throw new Exception( '', 400 );
223
  }
224
 
225
  $project = Brizy_Editor_Project::get();
226
  $project->setDataAsJson( $meta );
 
 
227
 
228
  if ( (int) $this->param( 'is_autosave' ) === 1 ) {
229
- $project->auto_save_post();
230
  } else {
231
  $project->save();
232
- $project->save_wp_post();
233
-
234
  do_action( 'brizy_global_data_updated' );
235
  }
236
 
237
- $this->success( $project->create_post_data() );
 
238
  } catch ( Exception $exception ) {
239
  Brizy_Logger::instance()->exception( $exception );
240
- $this->error( $exception->getCode(), $exception->getMessage() );
241
  exit;
242
  }
243
  }
@@ -248,9 +318,45 @@ class Brizy_Editor_API extends Brizy_Admin_AbstractApi {
248
  public function get_item() {
249
  try {
250
  $this->verifyNonce( self::nonce );
251
- $post_arr = self::create_post_arr( $this->post );
252
- $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.
253
- $this->success( array( $post_arr ) );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
254
  } catch ( Exception $exception ) {
255
  Brizy_Logger::instance()->exception( $exception );
256
  $this->error( 500, $exception->getMessage() );
@@ -265,8 +371,9 @@ class Brizy_Editor_API extends Brizy_Admin_AbstractApi {
265
  try {
266
  $this->verifyNonce( self::nonce );
267
 
268
- $data = stripslashes( $this->param( 'data' ) );
269
- $atemplate = $this->param( 'template' );
 
270
 
271
  if ( $atemplate ) {
272
  $this->post->set_template( $atemplate );
@@ -281,11 +388,12 @@ class Brizy_Editor_API extends Brizy_Admin_AbstractApi {
281
  if ( (int) $this->param( 'is_autosave' ) == 1 ) {
282
  $this->post->save( 1 );
283
  } else {
 
284
  $this->post->save( 0 );
285
- $this->post->save_wp_post();
286
  }
287
 
288
- $this->success( self::create_post_arr( $this->post ) );
289
  } catch ( Exception $exception ) {
290
  Brizy_Logger::instance()->exception( $exception );
291
  $this->error( 500, $exception->getMessage() );
@@ -351,36 +459,6 @@ class Brizy_Editor_API extends Brizy_Admin_AbstractApi {
351
  $this->success( $items );
352
  }
353
 
354
- // protected function error( $code, $message ) {
355
- // wp_send_json_error( array( 'code' => $code, 'message' => $message ), $code );
356
- // }
357
- //
358
- // protected function success( $data ) {
359
- // wp_send_json( $data );
360
- // }
361
- // protected function static_url() {
362
- // return Brizy_Editor::get()->get_url( '/includes/editor/static' );
363
- // }
364
-
365
- public static function create_post_arr( Brizy_Editor_Post $post ) {
366
-
367
- $p_id = (int) $post->get_id();
368
- $the_title = get_the_title( $p_id );
369
-
370
- $global = array(
371
- 'title' => $the_title,
372
- 'slug' => sanitize_title( $the_title ),
373
- 'data' => $post->get_editor_data(),
374
- 'id' => $p_id,
375
- 'is_index' => false,
376
- 'template' => get_page_template_slug( $p_id ),
377
- 'status' => get_post_status( $p_id ),
378
- 'url' => get_the_permalink( $p_id )
379
- );
380
-
381
- return $global;
382
- }
383
-
384
 
385
  private function get_post_list( $searchTerm, $postType, $excludePostType = array() ) {
386
 
@@ -421,7 +499,7 @@ class Brizy_Editor_API extends Brizy_Admin_AbstractApi {
421
  'uid' => $this->create_uid( $post->ID ),
422
  'post_type' => $post->post_type,
423
  'post_type_label' => $wp_post_types[ $post->post_type ]->label,
424
- 'title' => apply_filters( 'the_title', $post->post_title ),
425
  'post_title' => apply_filters( 'the_title', $post->post_title )
426
  );
427
  }
@@ -491,7 +569,7 @@ class Brizy_Editor_API extends Brizy_Admin_AbstractApi {
491
  $apost = (int) $_REQUEST['post_id'];
492
  $post = Brizy_Editor_Post::get( $apost );
493
 
494
- $media_cacher = new Brizy_Editor_CropCacheMedia( $project, $post->get_parent_id() );
495
  $media_cacher->download_original_image( $_REQUEST['media'] );
496
 
497
  $this->success( array(), 200 );
@@ -526,7 +604,7 @@ class Brizy_Editor_API extends Brizy_Admin_AbstractApi {
526
  session_write_close();
527
 
528
  $this->verifyNonce( self::nonce );
529
- $attachmentId = (int) $_REQUEST['attachment_id'];
530
 
531
  if ( ! $attachmentId || get_post_status( $attachmentId ) === false ) {
532
  $this->error( 400, 'Invalid attachment id' );
@@ -548,6 +626,147 @@ class Brizy_Editor_API extends Brizy_Admin_AbstractApi {
548
  }
549
  }
550
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
551
 
552
  private function createMediaKey( $postId, $attachmentId ) {
553
  $uid = get_post_meta( $attachmentId, 'brizy_attachment_uid', true );
@@ -559,7 +778,7 @@ class Brizy_Editor_API extends Brizy_Admin_AbstractApi {
559
 
560
  if ( $postId ) {
561
  $post = Brizy_Editor_Post::get( $postId );
562
- $post_ui = $post->get_uid();
563
 
564
  $post_uids = get_post_meta( $attachmentId, 'brizy_post_uid' );
565
 
3
  class Brizy_Editor_API extends Brizy_Admin_AbstractApi {
4
 
5
  const nonce = 'brizy-api';
6
+ const AJAX_GET_POST_INFO = 'brizy_get_post_info';
7
  const AJAX_GET = 'brizy_editor_get_items';
8
  const AJAX_UPDATE = 'brizy_update_item';
9
  const AJAX_GET_PROJECT = 'brizy_get_project';
10
  const AJAX_SET_PROJECT = 'brizy_set_project';
11
+ const AJAX_LOCK_PROJECT = 'brizy_lock_project';
12
  const AJAX_MEDIA = 'brizy_media';
13
  const AJAX_SIDEBARS = 'brizy_sidebars';
14
  const AJAX_SIDEBAR_CONTENT = 'brizy_sidebar_content';
16
  const AJAX_GET_POST_OBJECTS = 'brizy_get_posts';
17
  const AJAX_GET_MENU_LIST = 'brizy_get_menu_list';
18
  const AJAX_GET_TERMS = 'brizy_get_terms';
19
+ const AJAX_REMOVE_LOCK = 'brizy_remove_lock';
20
+ const AJAX_HEARTBEAT = 'brizy_heartbeat';
21
+ const AJAX_TAKE_OVER = 'brizy_take_over';
22
  const AJAX_JWT_TOKEN = 'brizy_multipass_create';
23
 
24
  const AJAX_UPDATE_MENU_DATA = 'brizy_update_menu_data';
34
  const AJAX_REMOVE_FEATURED_IMAGE = 'brizy_remove_featured_image';
35
  const AJAX_TIMESTAMP = 'brizy_timestamp';
36
 
37
+
38
+ const RULE_GROUP_LIST = 'brizy_rule_group_list';
39
+ const RULE_POSTS_GROUP_LIST = 'brizy_rule_posts_group_list';
40
+
41
  /**
42
  * @var Brizy_Editor_Post
43
  */
65
 
66
  protected function initializeApiActions() {
67
  if ( Brizy_Editor::is_user_allowed() ) {
68
+ add_action( 'wp_ajax_' . self::AJAX_REMOVE_LOCK, array( $this, 'removeProjectLock' ) );
69
+ add_action( 'wp_ajax_' . self::AJAX_HEARTBEAT, array( $this, 'heartbeat' ) );
70
+ add_action( 'wp_ajax_' . self::AJAX_TAKE_OVER, array( $this, 'takeOver' ) );
71
  add_action( 'wp_ajax_' . self::AJAX_GET, array( $this, 'get_item' ) );
72
+ add_action( 'wp_ajax_' . self::AJAX_GET_POST_INFO, array( $this, 'get_post_info' ) );
73
  add_action( 'wp_ajax_' . self::AJAX_UPDATE, array( $this, 'update_item' ) );
74
  add_action( 'wp_ajax_' . self::AJAX_GET_PROJECT, array( $this, 'get_project' ) );
75
  add_action( 'wp_ajax_' . self::AJAX_SET_PROJECT, array( $this, 'set_project' ) );
76
+ add_action( 'wp_ajax_' . self::AJAX_LOCK_PROJECT, array( $this, 'lock_project' ) );
77
  add_action( 'wp_ajax_' . self::AJAX_SIDEBARS, array( $this, 'get_sidebars' ) );
78
  add_action( 'wp_ajax_' . self::AJAX_SHORTCODE_CONTENT, array( $this, 'shortcode_content' ) );
79
  add_action( 'wp_ajax_' . self::AJAX_GET_POST_OBJECTS, array( $this, 'get_post_objects' ) );
91
  add_action( 'wp_ajax_' . self::AJAX_TIMESTAMP, array( $this, 'timestamp' ) );
92
  add_action( 'wp_ajax_nopriv_' . self::AJAX_TIMESTAMP, array( $this, 'timestamp' ) );
93
  }
94
+
95
+ if ( is_admin() ) {
96
+
97
+ add_action( 'wp_ajax_' . self::RULE_GROUP_LIST, array( $this, 'getGroupList' ) );
98
+ add_action( 'wp_ajax_' . self::RULE_POSTS_GROUP_LIST, array( $this, 'getPostsGroupsList' ) );
99
+ }
100
  }
101
 
102
  protected function getRequestNonce() {
103
  return self::nonce;
104
  }
105
 
106
+ public function lock_project() {
107
+ $this->verifyNonce( self::nonce );
108
+
109
+ if ( Brizy_Editor::get()->checkIfProjectIsLocked() === false ) {
110
+ Brizy_Editor::get()->lockProject();
111
+ }
112
+
113
+ $editor = new Brizy_Editor_Editor_Editor( Brizy_Editor_Project::get(), null );
114
+ $this->success( $editor->getProjectStatus() );
115
+ }
116
+
117
+ public function removeProjectLock() {
118
+ $this->verifyNonce( self::nonce );
119
+
120
+ if ( Brizy_Editor::get()->checkIfProjectIsLocked() === false ) {
121
+ Brizy_Editor::get()->removeProjectLock();
122
+ }
123
+
124
+ $editor = new Brizy_Editor_Editor_Editor( Brizy_Editor_Project::get(), null );
125
+ $this->success( $editor->getProjectStatus() );
126
+ }
127
+
128
+ public function heartbeat() {
129
+ $this->verifyNonce( self::nonce );
130
+
131
+ if ( Brizy_Editor::get()->checkIfProjectIsLocked() === false ) {
132
+ Brizy_Editor::get()->lockProject();
133
+ }
134
+ $editor = new Brizy_Editor_Editor_Editor( Brizy_Editor_Project::get(), null );
135
+ $this->success( $editor->getProjectStatus() );
136
+ }
137
+
138
+ public function takeOver() {
139
+ $this->verifyNonce( self::nonce );
140
+
141
+ Brizy_Editor::get()->lockProject();
142
+
143
+ $editor = new Brizy_Editor_Editor_Editor( Brizy_Editor_Project::get(), null );
144
+ $this->success( $editor->getProjectStatus() );
145
+ }
146
+
147
  public function timestamp() {
148
  $this->success( array( 'timestamp' => time() ) );
149
  }
157
  }
158
 
159
  if ( $this->post && $this->post->uses_editor() ) {
160
+ set_post_thumbnail( $this->post->getWpPostId(), (int) $_REQUEST['attachmentId'] );
161
 
162
+ $uid = $this->createMediaKey( $this->post->getWpPostId(), (int) $_REQUEST['attachmentId'] );
163
 
164
  $this->success( array( 'uid' => $uid ) );
165
  }
176
 
177
  if ( $this->post && $this->post->uses_editor() ) {
178
 
179
+ update_post_meta( $this->post->getWpPostId(), 'brizy_attachment_focal_point', array(
180
  'x' => $_REQUEST['pointX'],
181
  'y' => $_REQUEST['pointY']
182
  ) );
191
  $this->verifyNonce( self::nonce );
192
 
193
  if ( $this->post && $this->post->uses_editor() ) {
194
+ delete_post_thumbnail( $this->post->getWpPostId() );
195
+ delete_post_meta( $this->post->getWpPostId(), 'brizy_attachment_focal_point' );
196
  $this->success( null );
197
  }
198
 
259
  public function get_project() {
260
  try {
261
  $this->verifyNonce( self::nonce );
262
+ $data = Brizy_Editor_Project::get()->createResponse();
263
 
264
  $this->success( $data );
265
  } catch ( Exception $exception ) {
276
  $this->verifyNonce( self::nonce );
277
 
278
  // update project globas
279
+ $meta = stripslashes( $this->param( 'data' ) );
280
+ $dataVersion = (int) stripslashes( $this->param( 'dataVersion' ) );
281
 
282
  if ( ! $meta ) {
283
+ Brizy_Logger::instance()->error( 'Invalid project meta provided', [ 'data' => $meta ] );
284
+ throw new Exception( '', 400 );
285
+ }
286
+
287
+ if ( ! $dataVersion ) {
288
+ Brizy_Logger::instance()->error( 'No data version provided', [ 'data' => $dataVersion ] );
289
  throw new Exception( '', 400 );
290
  }
291
 
292
  $project = Brizy_Editor_Project::get();
293
  $project->setDataAsJson( $meta );
294
+ $project->setDataVersion( $dataVersion );
295
+
296
 
297
  if ( (int) $this->param( 'is_autosave' ) === 1 ) {
298
+ $project->save( 1 );
299
  } else {
300
  $project->save();
301
+ $project->savePost();
302
+ Brizy_Editor::get()->lockProject();
303
  do_action( 'brizy_global_data_updated' );
304
  }
305
 
306
+
307
+ $this->success( $project->createResponse() );
308
  } catch ( Exception $exception ) {
309
  Brizy_Logger::instance()->exception( $exception );
310
+ $this->error( 400, $exception->getMessage() );
311
  exit;
312
  }
313
  }
318
  public function get_item() {
319
  try {
320
  $this->verifyNonce( self::nonce );
321
+ $data = $this->post->createResponse();
322
+ $data['is_index'] = true;
323
+
324
+ $this->success( array( $data ) );
325
+ } catch ( Exception $exception ) {
326
+ Brizy_Logger::instance()->exception( $exception );
327
+ $this->error( 500, $exception->getMessage() );
328
+ exit;
329
+ }
330
+ }
331
+
332
+ /**
333
+ * @internal
334
+ **/
335
+ public function get_post_info() {
336
+ try {
337
+ $this->verifyNonce( self::nonce );
338
+
339
+ $postId = (int) $this->param( 'post_id' ) ;
340
+ $defaultFields = [ 'ID', 'post_title', 'post_content' ];
341
+ $post_fields = array_intersect( $this->param( 'fields' ), $defaultFields );
342
+
343
+ if ( count( $post_fields ) == 0 ) {
344
+ $post_fields = $defaultFields;
345
+ }
346
+
347
+ if ( ! $postId ) {
348
+ $this->error( 400, 'Invalid post id' );
349
+ }
350
+
351
+ $post = get_post( $postId, ARRAY_A );
352
+
353
+ if(!$post) {
354
+ $this->error( 404, 'Invalid post id' );
355
+ }
356
+
357
+ $data = array_intersect_key( $post, array_flip( $defaultFields ) );
358
+
359
+ $this->success( $data );
360
  } catch ( Exception $exception ) {
361
  Brizy_Logger::instance()->exception( $exception );
362
  $this->error( 500, $exception->getMessage() );
371
  try {
372
  $this->verifyNonce( self::nonce );
373
 
374
+ $data = stripslashes( $this->param( 'data' ) );
375
+ $atemplate = $this->param( 'template' );
376
+ $dataVersion = (int) stripslashes( $this->param( 'dataVersion' ) );
377
 
378
  if ( $atemplate ) {
379
  $this->post->set_template( $atemplate );
388
  if ( (int) $this->param( 'is_autosave' ) == 1 ) {
389
  $this->post->save( 1 );
390
  } else {
391
+ $this->post->setDataVersion( $dataVersion );
392
  $this->post->save( 0 );
393
+ $this->post->savePost();
394
  }
395
 
396
+ $this->success( $this->post->createResponse() );
397
  } catch ( Exception $exception ) {
398
  Brizy_Logger::instance()->exception( $exception );
399
  $this->error( 500, $exception->getMessage() );
459
  $this->success( $items );
460
  }
461
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
462
 
463
  private function get_post_list( $searchTerm, $postType, $excludePostType = array() ) {
464
 
499
  'uid' => $this->create_uid( $post->ID ),
500
  'post_type' => $post->post_type,
501
  'post_type_label' => $wp_post_types[ $post->post_type ]->label,
502
+ 'title' => apply_filters( 'the_title', $post->post_title ),
503
  'post_title' => apply_filters( 'the_title', $post->post_title )
504
  );
505
  }
569
  $apost = (int) $_REQUEST['post_id'];
570
  $post = Brizy_Editor_Post::get( $apost );
571
 
572
+ $media_cacher = new Brizy_Editor_CropCacheMedia( $project, $post->getWpPostParentId() );
573
  $media_cacher->download_original_image( $_REQUEST['media'] );
574
 
575
  $this->success( array(), 200 );
604
  session_write_close();
605
 
606
  $this->verifyNonce( self::nonce );
607
+ $attachmentId = isset( $_REQUEST['attachment_id'] ) ? (int) $_REQUEST['attachment_id'] : null;
608
 
609
  if ( ! $attachmentId || get_post_status( $attachmentId ) === false ) {
610
  $this->error( 400, 'Invalid attachment id' );
626
  }
627
  }
628
 
629
+ public function getGroupList() {
630
+
631
+ $context = $_REQUEST['context'];
632
+
633
+ $closure = function ( $v ) {
634
+ return array(
635
+ 'title' => $v->label,
636
+ 'value' => $v->name,
637
+ 'groupValue' => $v->groupValue
638
+ );
639
+ };
640
+
641
+ $groups = array(
642
+ array(
643
+ 'title' => 'Pages',
644
+ 'value' => Brizy_Admin_Rule::POSTS,
645
+ 'items' => array_map( $closure, $this->getCustomPostsList( Brizy_Admin_Rule::POSTS ) )
646
+ ),
647
+ array(
648
+ 'title' => 'Categories',
649
+ 'value' => Brizy_Admin_Rule::TAXONOMY,
650
+ 'items' => array_map( $closure, $this->getTaxonomyList( Brizy_Admin_Rule::TAXONOMY ) )
651
+ ),
652
+ array(
653
+ 'title' => 'Archives',
654
+ 'value' => Brizy_Admin_Rule::ARCHIVE,
655
+ 'items' => array_map( $closure, $this->getArchivesList( Brizy_Admin_Rule::ARCHIVE ) )
656
+ ),
657
+ array(
658
+ 'title' => 'Others',
659
+ 'value' => Brizy_Admin_Rule::TEMPLATE,
660
+ 'items' => $this->geTemplateList( $context )
661
+ ),
662
+ );
663
+
664
+ wp_send_json_success( $groups, 200 );
665
+ }
666
+
667
+ public function getPostsGroupsList( $groupValue ) {
668
+
669
+ global $wp_post_types;
670
+
671
+ if ( ! isset( $_REQUEST['postType'] ) ) {
672
+ wp_send_json_error( 'Invalid post type', 400 );
673
+ }
674
+
675
+ $post_type = $_REQUEST['postType'];
676
+ if ( ! isset( $wp_post_types[ $post_type ] ) ) {
677
+ wp_send_json_error( 'Post type not found', 400 );
678
+ }
679
+
680
+ $taxonomies = get_taxonomies( [ 'object_type' => [ $post_type ] ], 'objects' );
681
+
682
+ $groups = array();
683
+
684
+ $closure = function ( $v ) {
685
+ return array(
686
+ 'title' => $v->name,
687
+ 'value' => $v->taxonomy."|".$v->term_id,
688
+ 'groupValue' => $v->taxonomy
689
+ );
690
+ };
691
+
692
+ foreach ( $taxonomies as $tax ) {
693
+ $groups[] = array(
694
+ 'title' => __("From",'brizy')." ".$tax->labels->singular_name,
695
+ 'value' => Brizy_Admin_Rule::ALL_FROM_TAXONOMY,
696
+ 'items' => array_map( $closure, get_terms( [ 'taxonomy' => $tax->name, 'hide_empty' => false ] ) )
697
+ );
698
+ }
699
+
700
+ $closure = function ( $v ) {
701
+ return array(
702
+ 'title' => $v->post_title,
703
+ 'value' => $v->ID,
704
+ 'groupValue' => $v->post_type
705
+ );
706
+ };
707
+
708
+ $groups[] = array(
709
+ 'title' => 'Specific Post',
710
+ 'value' => Brizy_Admin_Rule::POSTS,
711
+ 'items' => array_map( $closure, $this->get_post_list( null, $post_type ) )
712
+ );
713
+
714
+
715
+ wp_send_json_success( $groups, 200 );
716
+ }
717
+
718
+ private function getCustomPostsList( $groupValue ) {
719
+ global $wp_post_types;
720
+
721
+ return array_values( array_filter( $wp_post_types, function ( $type ) use ( $groupValue ) {
722
+ $type->groupValue = $groupValue;
723
+
724
+ return $type->public && $type->show_ui;
725
+ } ) );
726
+ }
727
+
728
+ private function getArchivesList( $groupValue ) {
729
+ global $wp_post_types;
730
+
731
+ return array_values( array_filter( $wp_post_types, function ( $type ) use ( $groupValue ) {
732
+ $type->groupValue = $groupValue;
733
+
734
+ return $type->public && $type->show_ui && $type->has_archive;
735
+ } ) );
736
+ }
737
+
738
+ private function getTaxonomyList( $groupValue ) {
739
+ $terms = get_taxonomies( array( 'public' => true, 'show_ui' => true ), 'objects' );
740
+
741
+ return array_values( array_filter( $terms, function ( $term ) use ( $groupValue ) {
742
+ $term->groupValue = $groupValue;
743
+
744
+ return $term;
745
+ } ) );
746
+ }
747
+
748
+ public function geTemplateList( $context ) {
749
+
750
+ $list = array(
751
+ array( 'title' => 'Author page', 'value' => 'author', 'groupValue' => Brizy_Admin_Rule::TEMPLATE ),
752
+ array( 'title' => 'Search page', 'value' => 'search', 'groupValue' => Brizy_Admin_Rule::TEMPLATE ),
753
+ array( 'title' => 'Front page', 'value' => 'front_page', 'groupValue' => Brizy_Admin_Rule::TEMPLATE ),
754
+ array( 'title' => 'Blog / Posts page', 'value' => 'home_page', 'groupValue' => Brizy_Admin_Rule::TEMPLATE ),
755
+ array( 'title' => '404 page', 'value' => '404', 'groupValue' => Brizy_Admin_Rule::TEMPLATE ),
756
+ array( 'title' => 'Archive page', 'value' => '', 'groupValue' => Brizy_Admin_Rule::ARCHIVE )
757
+ );
758
+
759
+ if ( $context != 'template-rules' ) {
760
+ $list[] = array(
761
+ 'title' => 'Brizy Templates',
762
+ 'value' => 'brizy_template',
763
+ 'groupValue' => Brizy_Admin_Rule::BRIZY_TEMPLATE
764
+ );
765
+ }
766
+
767
+ return $list;
768
+ }
769
+
770
 
771
  private function createMediaKey( $postId, $attachmentId ) {
772
  $uid = get_post_meta( $attachmentId, 'brizy_attachment_uid', true );
778
 
779
  if ( $postId ) {
780
  $post = Brizy_Editor_Post::get( $postId );
781
+ $post_ui = $post->getUid();
782
 
783
  $post_uids = get_post_meta( $attachmentId, 'brizy_post_uid' );
784
 
editor/api/client.php CHANGED
@@ -199,7 +199,7 @@ class Brizy_Editor_API_Client extends Brizy_Editor_Http_Client {
199
  'is_index' => true
200
  )
201
  ) ),
202
- 'project_json' => json_encode( $project->create_post_data() ),
203
  'global_blocks_json' => json_encode( Brizy_Editor_Block::getBlocksByType( Brizy_Admin_Blocks_Main::CP_GLOBAL ) )
204
  ) );
205
 
199
  'is_index' => true
200
  )
201
  ) ),
202
+ 'project_json' => json_encode( $project->createResponse() ),
203
  'global_blocks_json' => json_encode( Brizy_Editor_Block::getBlocksByType( Brizy_Admin_Blocks_Main::CP_GLOBAL ) )
204
  ) );
205
 
editor/asset/static-file.php CHANGED
@@ -101,7 +101,7 @@ abstract class Brizy_Editor_Asset_StaticFile {
101
  include_once ABSPATH . "/wp-admin/includes/image.php";
102
  }
103
 
104
- $attach_data = wp_generate_attachment_metadata( $attachment_id, $absolute_asset_path );
105
  wp_update_attachment_metadata( $attachment_id, $attach_data );
106
 
107
  return $attachment_id;
@@ -122,7 +122,7 @@ abstract class Brizy_Editor_Asset_StaticFile {
122
  }
123
  $bpost = Brizy_Editor_Post::get( $post_id );
124
 
125
- update_post_meta( $attachmentId, 'brizy_post_uid', $bpost->get_uid() );
126
 
127
  return $attachmentId;
128
  }
@@ -255,4 +255,4 @@ abstract class Brizy_Editor_Asset_StaticFile {
255
  return 'application/octet-stream';
256
  }
257
  }
258
- }
101
  include_once ABSPATH . "/wp-admin/includes/image.php";
102
  }
103
 
104
+ $attach_data = wp_generate_attachment_metadata( $attachment_id, $relative_asset_path );
105
  wp_update_attachment_metadata( $attachment_id, $attach_data );
106
 
107
  return $attachment_id;
122
  }
123
  $bpost = Brizy_Editor_Post::get( $post_id );
124
 
125
+ update_post_meta( $attachmentId, 'brizy_post_uid', $bpost->getUid() );
126
 
127
  return $attachmentId;
128
  }
255
  return 'application/octet-stream';
256
  }
257
  }
258
+ }
editor/auto-save-aware.php CHANGED
@@ -2,30 +2,17 @@
2
 
3
  trait Brizy_Editor_AutoSaveAware {
4
 
5
- protected function get_last_autosave( $postParentId, $user_id ) {
6
- global $wpdb;
7
-
8
- $postParentId = (int) $postParentId;
9
- $user_id = (int) $user_id;
10
-
11
- $query = sprintf( "SELECT ID FROM {$wpdb->posts} WHERE post_parent = %d AND post_type= 'revision' AND post_status= 'inherit'AND post_name LIKE '%d-autosave%%'", $postParentId, $postParentId );
12
-
13
- if ( is_integer( $user_id ) ) {
14
- $query .= " AND post_author={$user_id}";
15
- }
16
-
17
- $query .= " ORDER BY post_date DESC";
18
-
19
- return (int) $wpdb->get_var( $query );
20
-
21
- }
22
-
23
-
24
  public function auto_save_post( \WP_Post $post, $callaback ) {
25
  try {
26
  $user_id = get_current_user_id();
27
  $postParentId = $post->post_parent;
28
- $old_autosave = $this->get_last_autosave( $postParentId, $user_id );
29
  $post_data = get_object_vars( $post );
30
  $post_data['post_content'] .= "\n<!-- " . time() . "-->";
31
  $autosavePost = null;
@@ -69,21 +56,49 @@ trait Brizy_Editor_AutoSaveAware {
69
  $autosavePost = self::get( $revId );
70
  }
71
 
72
- $callaback($autosavePost);
73
 
74
  } catch ( Exception $exception ) {
75
- Brizy_Logger::instance()->critical( $exception );
76
 
77
  return false;
78
  }
79
  }
80
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
81
  /**
82
  * @param int $postParentId
83
  */
84
- private function deleteOldAutoSaves($postParentId) {
85
  global $wpdb;
86
- $user_id = get_current_user_id();
87
 
88
  $wpdb->query( $wpdb->prepare( "
89
  DELETE p, pm FROM {$wpdb->posts} p
@@ -93,4 +108,34 @@ trait Brizy_Editor_AutoSaveAware {
93
  p.post_type = 'revision' and
94
  p.post_name LIKE %s", $user_id, $postParentId, "{$postParentId}-autosave%" ) );
95
  }
96
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
 
3
  trait Brizy_Editor_AutoSaveAware {
4
 
5
+ /**
6
+ * @param WP_Post $post
7
+ * @param $callaback
8
+ *
9
+ * @return bool|WP_Error
10
+ */
 
 
 
 
 
 
 
 
 
 
 
 
 
11
  public function auto_save_post( \WP_Post $post, $callaback ) {
12
  try {
13
  $user_id = get_current_user_id();
14
  $postParentId = $post->post_parent;
15
+ $old_autosave = $this->getLastAutosave( $postParentId, $user_id );
16
  $post_data = get_object_vars( $post );
17
  $post_data['post_content'] .= "\n<!-- " . time() . "-->";
18
  $autosavePost = null;
56
  $autosavePost = self::get( $revId );
57
  }
58
 
59
+ $callaback( $autosavePost );
60
 
61
  } catch ( Exception $exception ) {
62
+ Brizy_Logger::instance()->exception( $exception );
63
 
64
  return false;
65
  }
66
  }
67
 
68
+
69
+ /**
70
+ * @param $postId
71
+ * @param $userId
72
+ *
73
+ * @return int|void|null
74
+ * @throws Exception
75
+ */
76
+ public static function getAutoSavePost( $postId, $userId ) {
77
+ $postParentId = wp_get_post_parent_id( $postId );
78
+ $autosave = wp_get_post_autosave( $postParentId, $userId );
79
+
80
+ if ( ! $autosave ) {
81
+ return;
82
+ }
83
+
84
+ $post = get_post( $postId );
85
+
86
+ $postDate = new DateTime( $post->post_modified );
87
+ $autosaveDate = new DateTime( $autosave->post_modified );
88
+
89
+ if ( $postDate > $autosaveDate ) {
90
+ return null;
91
+ }
92
+
93
+ return $autosave->ID;
94
+ }
95
+
96
  /**
97
  * @param int $postParentId
98
  */
99
+ private function deleteOldAutoSaves( $postParentId ) {
100
  global $wpdb;
101
+ $user_id = get_current_user_id();
102
 
103
  $wpdb->query( $wpdb->prepare( "
104
  DELETE p, pm FROM {$wpdb->posts} p
108
  p.post_type = 'revision' and
109
  p.post_name LIKE %s", $user_id, $postParentId, "{$postParentId}-autosave%" ) );
110
  }
111
+
112
+ /**
113
+ * @param int $postParentId
114
+ * @param int $user_id
115
+ *
116
+ * @return int
117
+ */
118
+ protected function getLastAutosave( $postParentId, $user_id ) {
119
+ global $wpdb;
120
+
121
+ $postParentId = (int) $postParentId;
122
+ $user_id = (int) $user_id;
123
+
124
+ $query = sprintf( "SELECT ID FROM {$wpdb->posts} WHERE post_parent = %d AND post_type= 'revision' AND post_status= 'inherit'AND post_name LIKE '%d-autosave%%'", $postParentId, $postParentId );
125
+
126
+ if ( is_integer( $user_id ) ) {
127
+ $query .= " AND post_author={$user_id}";
128
+ }
129
+
130
+ $query .= " ORDER BY post_date DESC";
131
+
132
+ return (int) $wpdb->get_var( $query );
133
+
134
+ }
135
+
136
+ /**
137
+ * @return mixed
138
+ */
139
+ abstract protected function populateAutoSavedData( $autosave );
140
+
141
+ }
editor/block-screenshot-api.php CHANGED
@@ -150,7 +150,7 @@ class Brizy_Editor_BlockScreenshotApi extends Brizy_Admin_AbstractApi {
150
  */
151
  private function saveScreenshot( $type, $blockFileName, $content ) {
152
  try {
153
- $urlBuilder = new Brizy_Editor_UrlBuilder( Brizy_Editor_Project::get(), $this->post ? $this->post->get_parent_id() : null );
154
 
155
  switch ( $type ) {
156
  case self::BLOCK_TYPE_NORMAL:
150
  */
151
  private function saveScreenshot( $type, $blockFileName, $content ) {
152
  try {
153
+ $urlBuilder = new Brizy_Editor_UrlBuilder( Brizy_Editor_Project::get(), $this->post ? $this->post->getWpPostParentId() : null );
154
 
155
  switch ( $type ) {
156
  case self::BLOCK_TYPE_NORMAL:
editor/block.php CHANGED
@@ -21,9 +21,10 @@ class Brizy_Editor_Block extends Brizy_Editor_Post {
21
 
22
  /**
23
  * @param $apost
 
24
  *
25
- * @return Brizy_Editor_Block|null
26
- * @throws Brizy_Editor_Exceptions_NotFound
27
  */
28
  public static function get( $apost, $uid = null ) {
29
 
@@ -37,30 +38,74 @@ class Brizy_Editor_Block extends Brizy_Editor_Post {
37
  }
38
 
39
  return self::$block_instance[ $wp_post_id ] = new self( $wp_post_id, $uid );
40
-
41
  }
42
 
43
- public function __construct( $wp_post_id, $uid = null ) {
 
 
 
 
 
 
 
44
 
45
- self::checkIfPostTypeIsSupported( $wp_post_id );
46
- $this->wp_post_id = (int) $wp_post_id;
47
 
48
- if ( $this->wp_post_id ) {
49
- $this->wp_post = get_post( $this->wp_post_id );
 
 
50
  }
51
 
52
- // get the storage values
53
- $storage = $this->storage();
54
- $storage_post = $storage->get( self::BRIZY_POST, false );
55
 
56
- $this->loadStorageData( $storage_post );
 
57
 
58
  if ( $uid ) {
59
  $this->uid = $uid;
60
- update_post_meta( $this->get_parent_id(), 'brizy_post_uid', $this->uid );
61
- } else {
62
- $this->create_uid();
63
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
64
  }
65
 
66
  public function setPosition( $position ) {
@@ -79,7 +124,7 @@ class Brizy_Editor_Block extends Brizy_Editor_Post {
79
 
80
  $ruleManager = new Brizy_Admin_Rules_Manager();
81
 
82
- $data['rules'] = $ruleManager->getRules( $this->get_id() );
83
  $data['position'] = $this->getPosition();
84
 
85
  unset( $data['wp_post'] );
@@ -87,11 +132,12 @@ class Brizy_Editor_Block extends Brizy_Editor_Post {
87
  return $data;
88
  }
89
 
90
- public function loadStorageData( $data ) {
91
- parent::loadStorageData( $data );
92
-
93
- if ( isset( $data['position'] ) ) {
94
- $this->position = $data['position'];
 
95
  }
96
  }
97
 
@@ -101,7 +147,7 @@ class Brizy_Editor_Block extends Brizy_Editor_Post {
101
  $data['position'] = $this->getPosition();
102
 
103
  $ruleManager = new Brizy_Admin_Rules_Manager();
104
- $data['rules'] = $ruleManager->getRules( $this->get_id() );
105
 
106
  return $data;
107
  }
@@ -143,35 +189,21 @@ class Brizy_Editor_Block extends Brizy_Editor_Post {
143
  $blocks = array();
144
 
145
  foreach ( $wpBlocks as $wpPost ) {
146
- $blocks[] = self::postData( Brizy_Editor_Block::get( $wpPost ) );
147
  }
148
 
149
  return $blocks;
150
  }
151
 
 
152
 
153
- /**
154
- * @param Brizy_Editor_Block $post
155
- *
156
- * @return array
157
- */
158
- public static function postData( Brizy_Editor_Block $post ) {
159
 
160
- $p_id = (int) $post->get_id();
161
- $ruleManager = new Brizy_Admin_Rules_Manager();
162
- $global = array(
163
- 'uid' => $post->get_uid(),
164
- 'status' => get_post_status( $p_id ),
165
- 'data' => $post->get_editor_data(),
166
- );
167
-
168
- if ( $post->get_wp_post()->post_type == Brizy_Admin_Blocks_Main::CP_GLOBAL ) {
169
- $global['position'] = $post->getPosition();
170
- $global['rules'] = $ruleManager->getRules( $p_id );
171
  }
172
 
173
- return $global;
174
  }
175
 
176
-
177
  }
21
 
22
  /**
23
  * @param $apost
24
+ * @param null $uid
25
  *
26
+ * @return Brizy_Editor_Block|Brizy_Editor_Post|mixed
27
+ * @throws Exception
28
  */
29
  public static function get( $apost, $uid = null ) {
30
 
38
  }
39
 
40
  return self::$block_instance[ $wp_post_id ] = new self( $wp_post_id, $uid );
 
41
  }
42
 
43
+ public function createResponse() {
44
+
45
+ $data = array(
46
+ 'uid' => $this->getUid(),
47
+ 'status' => get_post_status( $this->getWpPostId() ),
48
+ 'data' => $this->get_editor_data(),
49
+ 'dataVersion' => $this->getCurrentDataVersion(),
50
+ );
51
 
 
 
52
 
53
+ if ( $this->getWpPost()->post_type === Brizy_Admin_Blocks_Main::CP_GLOBAL ) {
54
+ $ruleManager = new Brizy_Admin_Rules_Manager();
55
+ $data['position'] = $this->getPosition();
56
+ $data['rules'] = $ruleManager->getRules( $this->getWpPostId() );
57
  }
58
 
59
+ return $data;
60
+ }
 
61
 
62
+
63
+ public function __construct( $wp_post_id, $uid = null ) {
64
 
65
  if ( $uid ) {
66
  $this->uid = $uid;
 
 
 
67
  }
68
+
69
+ parent::__construct( $wp_post_id );
70
+ }
71
+
72
+ /**
73
+ * @return bool
74
+ */
75
+ public function uses_editor() {
76
+ return true;
77
+ }
78
+
79
+ /**
80
+ * This should always return true
81
+ *
82
+ * @param $val
83
+ *
84
+ * @return $this
85
+ */
86
+ public function set_uses_editor( $val ) {
87
+ $this->uses_editor = true;
88
+
89
+ return $this;
90
+ }
91
+
92
+ /**
93
+ * @return mixed|string
94
+ */
95
+ protected function createUid() {
96
+
97
+ $post_parent_id = $this->getWpPostParentId();
98
+ $uid = get_post_meta( $post_parent_id, 'brizy_post_uid', true );
99
+
100
+ if ( ! $uid && $this->uid ) {
101
+ update_post_meta( $post_parent_id, 'brizy_post_uid', $this->uid );
102
+ }
103
+
104
+ if ( ! $this->uid && $uid ) {
105
+ $this->uid = $uid;
106
+ }
107
+
108
+ return $this->uid;
109
  }
110
 
111
  public function setPosition( $position ) {
124
 
125
  $ruleManager = new Brizy_Admin_Rules_Manager();
126
 
127
+ $data['rules'] = $ruleManager->getRules( $this->getWpPostId() );
128
  $data['position'] = $this->getPosition();
129
 
130
  unset( $data['wp_post'] );
132
  return $data;
133
  }
134
 
135
+ public function loadInstanceData() {
136
+ parent::loadInstanceData();
137
+ $storage = $this->getStorage();
138
+ $storage_post = $storage->get( self::BRIZY_POST, false );
139
+ if ( isset( $storage_post['position'] ) ) {
140
+ $this->position = $storage_post['position'];
141
  }
142
  }
143
 
147
  $data['position'] = $this->getPosition();
148
 
149
  $ruleManager = new Brizy_Admin_Rules_Manager();
150
+ $data['rules'] = $ruleManager->getRules( $this->getWpPostId() );
151
 
152
  return $data;
153
  }
189
  $blocks = array();
190
 
191
  foreach ( $wpBlocks as $wpPost ) {
192
+ $blocks[] = Brizy_Editor_Block::get( $wpPost )->createResponse();
193
  }
194
 
195
  return $blocks;
196
  }
197
 
198
+ public function save( $autosave = 0 ) {
199
 
200
+ parent::save( $autosave );
 
 
 
 
 
201
 
202
+ if ( $autosave !== 1 ) {
203
+ $this->savePost();
204
+ do_action( 'brizy_global_data_updated' );
 
 
 
 
 
 
 
 
205
  }
206
 
 
207
  }
208
 
 
209
  }
editor/editor/editor.php CHANGED
@@ -35,7 +35,7 @@ class Brizy_Editor_Editor_Editor {
35
  */
36
  public static function get( Brizy_Editor_Project $project, Brizy_Editor_Post $post ) {
37
 
38
- $postId = $post && $post->get_id() ? $post->get_id() : 0;
39
  if ( isset( self::$insance[ $postId ] ) ) {
40
  return self::$insance[ $postId ];
41
  }
@@ -52,7 +52,18 @@ class Brizy_Editor_Editor_Editor {
52
  public function __construct( Brizy_Editor_Project $project, Brizy_Editor_Post $post = null ) {
53
  $this->post = $post;
54
  $this->project = $project;
55
- $this->urlBuilder = new Brizy_Editor_UrlBuilder( $project, $post ? $post->get_parent_id() : null );
 
 
 
 
 
 
 
 
 
 
 
56
  }
57
 
58
  /**
@@ -60,7 +71,7 @@ class Brizy_Editor_Editor_Editor {
60
  */
61
  public function config() {
62
 
63
- $cachePostId = $this->post ? $this->post->get_id() : 0;
64
  if ( isset( self::$config[ $cachePostId ] ) ) {
65
  return self::$config[ $cachePostId ];
66
  }
@@ -72,19 +83,24 @@ class Brizy_Editor_Editor_Editor {
72
  $change_template_url = null;
73
  $templates = null;
74
 
75
- $parent_post_type = get_post_type( $this->post->get_parent_id() );
76
- $wp_post_id = $this->post->get_wp_post()->ID;
77
- $preview_post_link = $this->getPreviewUrl( $this->post->get_wp_post() );
78
 
79
- $change_template_url = set_url_scheme( admin_url( 'admin-post.php?post=' . $this->post->get_parent_id() . '&action=_brizy_change_template' ) );
80
  $templates = $this->post->get_templates();
81
- $isTemplate = $parent_post_type === Brizy_Admin_Templates::CP_TEMPLATE;
82
- $isPopup = $parent_post_type === Brizy_Admin_Popups_Main::CP_POPUP;
83
 
84
- $config = array(
 
 
 
 
 
85
  'user' => array( 'role' => 'admin' ),
86
  'project' => array(
87
- 'id' => $this->project->getId()
 
 
88
  ),
89
  'urls' => array(
90
  'site' => home_url(),
@@ -116,7 +132,7 @@ class Brizy_Editor_Editor_Editor {
116
  'wp' => array(
117
  'permalink' => get_permalink( $wp_post_id ),
118
  'page' => $wp_post_id,
119
- 'ruleMatches' => $this->getTempalteRuleMatches( $isTemplate, $wp_post_id ),
120
  'featuredImage' => $this->getThumbnailData( $wp_post_id ),
121
  'pageAttachments' => array( 'images' => $this->get_page_attachments() ),
122
  'templates' => $templates,
@@ -124,8 +140,13 @@ class Brizy_Editor_Editor_Editor {
124
  'hash' => wp_create_nonce( Brizy_Editor_API::nonce ),
125
  'url' => set_url_scheme( admin_url( 'admin-ajax.php' ) ),
126
 
127
- 'getPage' => Brizy_Editor_API::AJAX_GET,
128
- 'updatePage' => Brizy_Editor_API::AJAX_UPDATE,
 
 
 
 
 
129
 
130
  'getProject' => Brizy_Editor_API::AJAX_GET_PROJECT,
131
  'setProject' => Brizy_Editor_API::AJAX_SET_PROJECT,
@@ -135,7 +156,7 @@ class Brizy_Editor_Editor_Editor {
135
  'createGlobalBlock' => Brizy_Admin_Blocks_Api::CREATE_GLOBAL_BLOCK_ACTION,
136
  'updateGlobalBlock' => Brizy_Admin_Blocks_Api::UPDATE_GLOBAL_BLOCK_ACTION,
137
  'deleteGlobalBlock' => Brizy_Admin_Blocks_Api::DELETE_GLOBAL_BLOCK_ACTION,
138
- 'getRuleGroupList' => Brizy_Admin_Templates::RULE_GROUP_LIST,
139
  'createRule' => Brizy_Admin_Rules_Api::CREATE_RULE_ACTION,
140
  'createRules' => Brizy_Admin_Rules_Api::CREATE_RULES_ACTION,
141
  'updateRules' => Brizy_Admin_Rules_Api::UPDATE_RULES_ACTION,
@@ -199,10 +220,9 @@ class Brizy_Editor_Editor_Editor {
199
  'hasSidebars' => count( $wp_registered_sidebars ) > 0,
200
  'l10n' => $this->getTexts(),
201
  'pageData' => apply_filters( 'brizy_page_data', array() ),
202
- 'isTemplate' => $isTemplate,
203
- 'isGlobalPopup' => $isPopup,
204
  'availableRoles' => $this->roleList()
205
  ),
 
206
  'applications' => array(
207
  'form' => array(
208
  'submitUrl' => '{{brizy_dc_ajax_url}}?action=' . Brizy_Editor_Forms_Api::AJAX_SUBMIT_FORM
@@ -236,7 +256,7 @@ class Brizy_Editor_Editor_Editor {
236
  {$wpdb->prefix}postmeta pm
237
  JOIN {$wpdb->prefix}postmeta pm2 ON pm2.post_id=pm.post_id AND pm2.meta_key='brizy_post_uid' AND pm2.meta_value=%s
238
  WHERE pm.meta_key='brizy_attachment_uid'
239
- GROUP BY pm.post_id", $this->post->get_uid() );
240
 
241
  $results = $wpdb->get_results( $query );
242
  $attachment_data = array();
@@ -342,7 +362,8 @@ class Brizy_Editor_Editor_Editor {
342
  return addQueryStringToUrl( get_attachment_link( $p->ID ), 'preview=1' );
343
  }
344
 
345
- if ( ! Brizy_Editor_Post::checkIfPostTypeIsSupported( $p->ID, false ) || ! Brizy_Editor_Post::get( $p )->uses_editor() ) {
 
346
  $wp_post = $p;
347
  break;
348
  }
@@ -577,14 +598,14 @@ class Brizy_Editor_Editor_Editor {
577
  // Start with post_max_size.
578
  $post_max_size = $this->parseSize( ini_get( 'post_max_size' ) );
579
  if ( $post_max_size > 0 ) {
580
- $max_size = number_format( $post_max_size / 1048576, 2 );
581
  }
582
 
583
  // If upload_max_size is less, then reduce. Except if upload_max_size is
584
  // zero, which indicates no limit.
585
  $upload_max = $this->parseSize( ini_get( 'upload_max_filesize' ) );
586
  if ( $upload_max > 0 && $upload_max < $max_size ) {
587
- $max_size = number_format( $upload_max / 1048576, 2 );
588
  }
589
  }
590
 
@@ -713,7 +734,7 @@ class Brizy_Editor_Editor_Editor {
713
  * @throws Exception
714
  */
715
  private function getTexts() {
716
- if (BRIZY_DEVELOPMENT) {
717
  $brizy_public_editor_build_texts = '\Brizy_Public_EditorBuild_Dev_Texts';
718
  } else {
719
  $version = '';
@@ -765,11 +786,28 @@ class Brizy_Editor_Editor_Editor {
765
  $ruleMatches[] = array(
766
  'type' => Brizy_Admin_Rule::TYPE_INCLUDE,
767
  'group' => Brizy_Admin_Rule::POSTS,
768
- 'entityType' => $this->post->get_wp_post()->post_type,
769
  'values' => array( $wp_post_id )
770
  );
771
  }
772
 
773
  return $ruleMatches;
774
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
775
  }
35
  */
36
  public static function get( Brizy_Editor_Project $project, Brizy_Editor_Post $post ) {
37
 
38
+ $postId = $post && $post->getWpPostId() ? $post->getWpPostId() : 0;
39
  if ( isset( self::$insance[ $postId ] ) ) {
40
  return self::$insance[ $postId ];
41
  }
52
  public function __construct( Brizy_Editor_Project $project, Brizy_Editor_Post $post = null ) {
53
  $this->post = $post;
54
  $this->project = $project;
55
+ $this->urlBuilder = new Brizy_Editor_UrlBuilder( $project, $post ? $post->getWpPostParentId() : null );
56
+ }
57
+
58
+ private function getMode( $postType ) {
59
+ switch ( $postType ) {
60
+ case Brizy_Admin_Templates::CP_TEMPLATE:
61
+ return 'template';
62
+ case Brizy_Admin_Popups_Main::CP_POPUP:
63
+ return 'internal_popup';
64
+ default:
65
+ return 'page';
66
+ }
67
  }
68
 
69
  /**
71
  */
72
  public function config() {
73
 
74
+ $cachePostId = $this->post ? $this->post->getWpPostId() : 0;
75
  if ( isset( self::$config[ $cachePostId ] ) ) {
76
  return self::$config[ $cachePostId ];
77
  }
83
  $change_template_url = null;
84
  $templates = null;
85
 
86
+ $parent_post_type = get_post_type( $this->post->getWpPostParentId() );
87
+ $wp_post_id = $this->post->getWpPostId();
88
+ $preview_post_link = $this->getPreviewUrl( $this->post->getWpPost() );
89
 
90
+ $change_template_url = set_url_scheme( admin_url( 'admin-post.php?post=' . $this->post->getWpPostParentId() . '&action=_brizy_change_template' ) );
91
  $templates = $this->post->get_templates();
 
 
92
 
93
+
94
+ $mode = $this->getMode( $parent_post_type );
95
+
96
+
97
+ $heartBeatInterval = (int) apply_filters( 'wp_check_post_lock_window', 150 );
98
+ $config = array(
99
  'user' => array( 'role' => 'admin' ),
100
  'project' => array(
101
+ 'id' => $this->project->getId(),
102
+ 'status' => $this->getProjectStatus(),
103
+ 'heartBeatInterval' => ( $heartBeatInterval > 10 && $heartBeatInterval < 30 ? $heartBeatInterval : 30 ) * 1000
104
  ),
105
  'urls' => array(
106
  'site' => home_url(),
132
  'wp' => array(
133
  'permalink' => get_permalink( $wp_post_id ),
134
  'page' => $wp_post_id,
135
+ 'ruleMatches' => $this->getTempalteRuleMatches( $mode === 'template', $wp_post_id ),
136
  'featuredImage' => $this->getThumbnailData( $wp_post_id ),
137
  'pageAttachments' => array( 'images' => $this->get_page_attachments() ),
138
  'templates' => $templates,
140
  'hash' => wp_create_nonce( Brizy_Editor_API::nonce ),
141
  'url' => set_url_scheme( admin_url( 'admin-ajax.php' ) ),
142
 
143
+ 'heartBeat' => Brizy_Editor_API::AJAX_HEARTBEAT,
144
+ 'takeOver' => Brizy_Editor_API::AJAX_TAKE_OVER,
145
+ 'lockProject' => Brizy_Editor_API::AJAX_LOCK_PROJECT,
146
+ 'removeLock' => Brizy_Editor_API::AJAX_REMOVE_LOCK,
147
+ 'getPage' => Brizy_Editor_API::AJAX_GET,
148
+ 'getPostInfo' => Brizy_Editor_API::AJAX_GET_POST_INFO,
149
+ 'updatePage' => Brizy_Editor_API::AJAX_UPDATE,
150
 
151
  'getProject' => Brizy_Editor_API::AJAX_GET_PROJECT,
152
  'setProject' => Brizy_Editor_API::AJAX_SET_PROJECT,
156
  'createGlobalBlock' => Brizy_Admin_Blocks_Api::CREATE_GLOBAL_BLOCK_ACTION,
157
  'updateGlobalBlock' => Brizy_Admin_Blocks_Api::UPDATE_GLOBAL_BLOCK_ACTION,
158
  'deleteGlobalBlock' => Brizy_Admin_Blocks_Api::DELETE_GLOBAL_BLOCK_ACTION,
159
+ 'getRuleGroupList' => Brizy_Editor_API::RULE_GROUP_LIST,
160
  'createRule' => Brizy_Admin_Rules_Api::CREATE_RULE_ACTION,
161
  'createRules' => Brizy_Admin_Rules_Api::CREATE_RULES_ACTION,
162
  'updateRules' => Brizy_Admin_Rules_Api::UPDATE_RULES_ACTION,
220
  'hasSidebars' => count( $wp_registered_sidebars ) > 0,
221
  'l10n' => $this->getTexts(),
222
  'pageData' => apply_filters( 'brizy_page_data', array() ),
 
 
223
  'availableRoles' => $this->roleList()
224
  ),
225
+ 'mode' => $mode,
226
  'applications' => array(
227
  'form' => array(
228
  'submitUrl' => '{{brizy_dc_ajax_url}}?action=' . Brizy_Editor_Forms_Api::AJAX_SUBMIT_FORM
256
  {$wpdb->prefix}postmeta pm
257
  JOIN {$wpdb->prefix}postmeta pm2 ON pm2.post_id=pm.post_id AND pm2.meta_key='brizy_post_uid' AND pm2.meta_value=%s
258
  WHERE pm.meta_key='brizy_attachment_uid'
259
+ GROUP BY pm.post_id", $this->post->getUid() );
260
 
261
  $results = $wpdb->get_results( $query );
262
  $attachment_data = array();
362
  return addQueryStringToUrl( get_attachment_link( $p->ID ), 'preview=1' );
363
  }
364
 
365
+ if ( ! Brizy_Editor::checkIfPostTypeIsSupported( $p->ID, false ) ||
366
+ ! Brizy_Editor_Post::get( $p )->uses_editor() ) {
367
  $wp_post = $p;
368
  break;
369
  }
598
  // Start with post_max_size.
599
  $post_max_size = $this->parseSize( ini_get( 'post_max_size' ) );
600
  if ( $post_max_size > 0 ) {
601
+ $max_size = number_format( $post_max_size / 1048576, 2, '.', '' );
602
  }
603
 
604
  // If upload_max_size is less, then reduce. Except if upload_max_size is
605
  // zero, which indicates no limit.
606
  $upload_max = $this->parseSize( ini_get( 'upload_max_filesize' ) );
607
  if ( $upload_max > 0 && $upload_max < $max_size ) {
608
+ $max_size = number_format( $upload_max / 1048576, 2, '.', '' );
609
  }
610
  }
611
 
734
  * @throws Exception
735
  */
736
  private function getTexts() {
737
+ if ( BRIZY_DEVELOPMENT ) {
738
  $brizy_public_editor_build_texts = '\Brizy_Public_EditorBuild_Dev_Texts';
739
  } else {
740
  $version = '';
786
  $ruleMatches[] = array(
787
  'type' => Brizy_Admin_Rule::TYPE_INCLUDE,
788
  'group' => Brizy_Admin_Rule::POSTS,
789
+ 'entityType' => $this->post->getWpPost()->post_type,
790
  'values' => array( $wp_post_id )
791
  );
792
  }
793
 
794
  return $ruleMatches;
795
  }
796
+
797
+ /**
798
+ * @return array
799
+ */
800
+ public function getProjectStatus() {
801
+ $projectLockedBy = Brizy_Editor::get()->checkIfProjectIsLocked();
802
+ $userData = WP_User::get_data_by( 'id', $projectLockedBy );
803
+ unset( $userData->user_pass );
804
+ unset( $userData->user_registered );
805
+ unset( $userData->user_status );
806
+ unset( $userData->user_activation_key );
807
+
808
+ return [
809
+ 'locked' => $projectLockedBy !== false,
810
+ 'lockedBy' => $userData,
811
+ ];
812
+ }
813
  }
editor/entity.php ADDED
@@ -0,0 +1,233 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ abstract class Brizy_Editor_Entity extends Brizy_Admin_Serializable {
4
+
5
+ const BRIZY_DATA_VERSION_KEY = 'brizy_data_version';
6
+
7
+ /**
8
+ * @var string
9
+ */
10
+ protected $uid;
11
+
12
+ /**
13
+ * @var int
14
+ */
15
+ protected $wp_post_id;
16
+
17
+ /**
18
+ * @var WP_Post
19
+ */
20
+ protected $wp_post = null;
21
+
22
+ /**
23
+ * @var int
24
+ */
25
+ protected $dataVersion = null;
26
+
27
+ /**
28
+ * Brizy_Editor_Entity constructor.
29
+ */
30
+ public function __construct( $postId ) {
31
+
32
+ if ( ! is_numeric( $postId ) ) {
33
+ throw new Exception( 'Invalid post id provided' );
34
+ }
35
+
36
+ Brizy_Editor::checkIfPostTypeIsSupported( $postId );
37
+
38
+ $this->setWpPostId( $postId );
39
+
40
+ $this->loadInstanceData();
41
+ }
42
+
43
+ static public function get( $postId ) {
44
+ $type = get_post_type( $postId );
45
+
46
+ switch ( $type ) {
47
+ case 'post':
48
+ case Brizy_Admin_Popups_Main::CP_POPUP:
49
+ return Brizy_Editor_Post::get( $postId );
50
+
51
+ case Brizy_Admin_Blocks_Main::CP_GLOBAL:
52
+ case Brizy_Admin_Blocks_Main::CP_SAVED:
53
+ return Brizy_Editor_Block::get( $postId );
54
+ }
55
+ }
56
+
57
+ /**
58
+ * Will return the key on witch the object data will be saved in storage
59
+ *
60
+ * @return mixed
61
+ */
62
+ abstract protected function getObjectKey();
63
+
64
+ /**
65
+ * Load all object data
66
+ */
67
+ abstract protected function loadInstanceData();
68
+
69
+ /**
70
+ * @return mixed
71
+ */
72
+ abstract public function createResponse();
73
+
74
+ /**
75
+ * Save post data and and trigger post update
76
+ *
77
+ * @return mixed
78
+ */
79
+ abstract public function savePost();
80
+
81
+ /**
82
+ * This will save ro create an autosave object the the data from entity
83
+ * Also before saving the data version will be checked
84
+ *
85
+ * @return $this
86
+ * @throws Exception
87
+ */
88
+ public function save( $autosave = 0 ) {
89
+
90
+ // check entity versions before saving.
91
+ if ( (int) $autosave === 0 ) {
92
+ $this->saveDataVersion();
93
+ }
94
+
95
+ $this->createUid();
96
+
97
+ return $this;
98
+ }
99
+
100
+ /**
101
+ * This will take all values from entity and save them to database
102
+ */
103
+ public function saveStorage() {
104
+ $value = $this->convertToOptionValue();
105
+ $this->getStorage()->set( $this->getObjectKey(), $value );
106
+ }
107
+
108
+
109
+ /**
110
+ * @return Brizy_Editor_Post[]
111
+ * @throws Brizy_Editor_Exceptions_NotFound
112
+ * @throws Brizy_Editor_Exceptions_UnsupportedPostType
113
+ */
114
+ public static function get_all_brizy_post_ids() {
115
+ global $wpdb;
116
+ $posts = $wpdb->get_results(
117
+ $wpdb->prepare( "SELECT p.ID FROM {$wpdb->postmeta} pm
118
+ JOIN {$wpdb->posts} p ON p.ID=pm.post_id and p.post_type <> 'revision' and p.post_type<>'attachment'
119
+ WHERE pm.meta_key = %s ", Brizy_Editor_Storage_Post::META_KEY )
120
+ );
121
+
122
+ return array_map( function ( $o ) {
123
+ return (int) $o->ID;
124
+ }, $posts );
125
+ }
126
+
127
+ /**
128
+ * @return int
129
+ */
130
+ public function getWpPostId() {
131
+ return $this->wp_post_id;
132
+ }
133
+
134
+ /**
135
+ * @param int $wp_post_id
136
+ *
137
+ * @return Brizy_Editor_Entity
138
+ */
139
+ public function setWpPostId( $wp_post_id ) {
140
+ $this->wp_post_id = $wp_post_id;
141
+
142
+ return $this;
143
+ }
144
+
145
+ /**
146
+ * Return the post parent id
147
+ *
148
+ * @return int
149
+ */
150
+ public function getWpPostParentId() {
151
+ return $this->getWpPost()->post_parent ?: $this->getWpPostId();
152
+ }
153
+
154
+ /**
155
+ * @return WP_Post
156
+ */
157
+ public function getWpPost() {
158
+ return $this->wp_post ?: ( $this->wp_post = get_post( $this->getWpPostId() ) );
159
+ }
160
+
161
+ /**
162
+ * @return $this
163
+ */
164
+ protected function saveDataVersion() {
165
+ $version = $this->getCurrentDataVersion();
166
+
167
+ if ( $this->dataVersion !== $version + 1 ) {
168
+ Brizy_Logger::instance()->critical( 'Unable to save entity. The data version is wrong.', [
169
+ 'currentVersion' => $version,
170
+ 'newVersion' => $this->dataVersion
171
+ ] );
172
+ throw new Brizy_Editor_Exceptions_DataVersionMismatch( 'Unable to save entity. The data version is wrong.' );
173
+ }
174
+
175
+ update_post_meta( $this->getWpPostId(), self::BRIZY_DATA_VERSION_KEY, $this->dataVersion );
176
+
177
+ return $this;
178
+ }
179
+
180
+ /**
181
+ * @return int
182
+ */
183
+ public function getCurrentDataVersion() {
184
+ return (int) ( get_post_meta( $this->getWpPostId(), self::BRIZY_DATA_VERSION_KEY, true ) ?: 0 );
185
+ }
186
+
187
+
188
+ /**
189
+ * @param $dataVersion
190
+ *
191
+ * @return $this
192
+ */
193
+ public function setDataVersion( $dataVersion ) {
194
+ $this->dataVersion = (int) $dataVersion;
195
+
196
+ return $this;
197
+ }
198
+
199
+ /**
200
+ * @return string
201
+ */
202
+ public function getUid() {
203
+ return $this->uid;
204
+ }
205
+
206
+ /**
207
+ * Return an instance of Brizy_Editor_Storage_Abstract that will store the object data
208
+ *
209
+ * @return Brizy_Editor_Storage_Post
210
+ */
211
+ protected function getStorage() {
212
+ return Brizy_Editor_Storage_Post::instance( $this->wp_post_id );
213
+ }
214
+
215
+ /**
216
+ * @return mixed|string
217
+ */
218
+ protected function createUid() {
219
+ if ( $uid = $this->getUid() ) {
220
+ return $uid;
221
+ }
222
+
223
+ $post_parent_id = $this->getWpPostParentId();
224
+ $uid = get_post_meta( $post_parent_id, 'brizy_post_uid', true );
225
+
226
+ if ( ! $uid ) {
227
+ $uid = md5( $post_parent_id . time() );
228
+ update_post_meta( $post_parent_id, 'brizy_post_uid', $uid );
229
+ }
230
+
231
+ return $this->uid = $uid;
232
+ }
233
+ }
editor/exceptions/data-version-mismatch.php ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ <?php
2
+
3
+ class Brizy_Editor_Exceptions_DataVersionMismatch extends Exception {
4
+ }
editor/exceptions/exception.php CHANGED
@@ -1,6 +1,16 @@
1
  <?php
2
 
3
- class Brizy_Editor_Exceptions_Exception extends Exception {
4
  protected $code = 500;
5
  protected $message = 'Internal server error';
 
 
 
 
 
 
 
 
 
 
6
  }
1
  <?php
2
 
3
+ class Brizy_Editor_Exceptions_Exception extends Exception implements Serializable {
4
  protected $code = 500;
5
  protected $message = 'Internal server error';
6
+
7
+ public function serialize() {
8
+ return serialize( [ 'code' => $this->getCode(), 'message' => $this->getMessage() ] );
9
+ }
10
+
11
+ public function unserialize( $serialized ) {
12
+ $data = $this->unserialize( $serialized );
13
+ $this->code = $data['code'];
14
+ $this->message = $data['message'];
15
+ }
16
  }
editor/forms/api.php CHANGED
@@ -63,10 +63,10 @@ class Brizy_Editor_Forms_Api {
63
  add_action( 'wp_ajax_' . self::AJAX_GET_INTEGRATION, array( $this, 'getIntegration' ) );
64
  add_action( 'wp_ajax_' . self::AJAX_UPDATE_INTEGRATION, array( $this, 'updateIntegration' ) );
65
  add_action( 'wp_ajax_' . self::AJAX_DELETE_INTEGRATION, array( $this, 'deleteIntegration' ) );
66
-
67
- add_filter( 'brizy_form_submit_data', array( $this, 'handleFileTypeFields' ), - 100, 2 );
68
  }
69
 
 
 
70
  add_action( 'wp_ajax_' . self::AJAX_SUBMIT_FORM, array( $this, 'submit_form' ) );
71
  add_action( 'wp_ajax_nopriv_' . self::AJAX_SUBMIT_FORM, array( $this, 'submit_form' ) );
72
  }
63
  add_action( 'wp_ajax_' . self::AJAX_GET_INTEGRATION, array( $this, 'getIntegration' ) );
64
  add_action( 'wp_ajax_' . self::AJAX_UPDATE_INTEGRATION, array( $this, 'updateIntegration' ) );
65
  add_action( 'wp_ajax_' . self::AJAX_DELETE_INTEGRATION, array( $this, 'deleteIntegration' ) );
 
 
66
  }
67
 
68
+ add_filter( 'brizy_form_submit_data', array( $this, 'handleFileTypeFields' ), - 100, 2 );
69
+
70
  add_action( 'wp_ajax_' . self::AJAX_SUBMIT_FORM, array( $this, 'submit_form' ) );
71
  add_action( 'wp_ajax_nopriv_' . self::AJAX_SUBMIT_FORM, array( $this, 'submit_form' ) );
72
  }
editor/forms/form-manager.php CHANGED
@@ -98,6 +98,6 @@ class Brizy_Editor_Forms_FormManager {
98
  $data[ $id ] = $form->convertToOptionValue();
99
  }
100
  $this->project->setMetaValue( 'forms', $data );
101
- $this->project->save();
102
  }
103
  }
98
  $data[ $id ] = $form->convertToOptionValue();
99
  }
100
  $this->project->setMetaValue( 'forms', $data );
101
+ $this->project->saveStorage();
102
  }
103
  }
editor/forms/smtp-integration.php CHANGED
@@ -36,7 +36,7 @@ class Brizy_Editor_Forms_SmtpIntegration extends Brizy_Editor_Forms_WordpressInt
36
  /**
37
  * @var string
38
  */
39
- protected $encryption;
40
 
41
  /**
42
  * Brizy_Editor_Forms_WordpressIntegration constructor.
@@ -118,7 +118,9 @@ class Brizy_Editor_Forms_SmtpIntegration extends Brizy_Editor_Forms_WordpressInt
118
  $instance->setPassword( trim( $json_obj->password ) );
119
  }
120
  if ( isset( $json_obj->encryption ) ) {
121
- $instance->setEncryption( trim( $json_obj->encryption ) );
 
 
122
  }
123
  }
124
 
@@ -149,8 +151,11 @@ class Brizy_Editor_Forms_SmtpIntegration extends Brizy_Editor_Forms_WordpressInt
149
  }
150
  if ( isset( $data['encryption'] ) ) {
151
  $instance->setEncryption( $data['encryption'] );
 
 
152
  }
153
 
 
154
  if ( isset( $data['authentication'] ) ) {
155
  $instance->setAuthentication( $data['authentication'] );
156
  }
@@ -263,7 +268,7 @@ class Brizy_Editor_Forms_SmtpIntegration extends Brizy_Editor_Forms_WordpressInt
263
  * @return Brizy_Editor_Forms_SmtpIntegration
264
  */
265
  public function setEncryption( $encryption ) {
266
- $this->encryption = $encryption;
267
 
268
  return $this;
269
  }
36
  /**
37
  * @var string
38
  */
39
+ protected $encryption = true;
40
 
41
  /**
42
  * Brizy_Editor_Forms_WordpressIntegration constructor.
118
  $instance->setPassword( trim( $json_obj->password ) );
119
  }
120
  if ( isset( $json_obj->encryption ) ) {
121
+ $instance->setEncryption( (bool) $json_obj->encryption );
122
+ } else {
123
+ $instance->setEncryption( true );
124
  }
125
  }
126
 
151
  }
152
  if ( isset( $data['encryption'] ) ) {
153
  $instance->setEncryption( $data['encryption'] );
154
+ } else {
155
+ $instance->setEncryption( true );
156
  }
157
 
158
+
159
  if ( isset( $data['authentication'] ) ) {
160
  $instance->setAuthentication( $data['authentication'] );
161
  }
268
  * @return Brizy_Editor_Forms_SmtpIntegration
269
  */
270
  public function setEncryption( $encryption ) {
271
+ $this->encryption = (bool) $encryption;
272
 
273
  return $this;
274
  }
editor/post.php CHANGED
@@ -2,8 +2,7 @@
2
  die( 'Direct access forbidden.' );
3
  }
4
 
5
- class Brizy_Editor_Post extends Brizy_Admin_Serializable {
6
-
7
 
8
  use Brizy_Editor_AutoSaveAware;
9
 
@@ -17,21 +16,6 @@ class Brizy_Editor_Post extends Brizy_Admin_Serializable {
17
 
18
  static protected $instance = null;
19
 
20
- /**
21
- * @var Brizy_Editor_API_Page
22
- */
23
- protected $api_page;
24
-
25
- /**
26
- * @var int
27
- */
28
- protected $wp_post_id;
29
-
30
- /**
31
- * @var WP_Post
32
- */
33
- protected $wp_post;
34
-
35
  /**
36
  * @var string
37
  */
@@ -59,11 +43,6 @@ class Brizy_Editor_Post extends Brizy_Admin_Serializable {
59
  */
60
  protected $editor_data;
61
 
62
- /**
63
- * @var string
64
- */
65
- protected $uid;
66
-
67
  /**
68
  * @var bool
69
  */
@@ -90,59 +69,27 @@ class Brizy_Editor_Post extends Brizy_Admin_Serializable {
90
  static private $compiled_page;
91
 
92
 
93
- public static function cleanClassCache() {
94
- self::$instance = array();
95
- }
96
-
97
  /**
98
- * Brizy_Editor_Post constructor.
99
  *
100
- * @param $wp_post_id
101
  *
102
- * @throws Brizy_Editor_Exceptions_NotFound
103
  */
104
- public function __construct( $wp_post_id ) {
105
-
106
- self::checkIfPostTypeIsSupported( $wp_post_id );
107
- $this->wp_post_id = (int) $wp_post_id;
108
-
109
- if ( $this->wp_post_id ) {
110
- $this->wp_post = get_post( $this->wp_post_id );
111
- }
112
-
113
- // get the storage values
114
- $storage = $this->storage();
115
- //$storageData = $storage->get_storage();
116
- $using_editor_old = $storage->get( Brizy_Editor_Constants::USES_BRIZY, false );
117
- $storage_post = $storage->get( self::BRIZY_POST, false );
118
-
119
- // check for deprecated forms of posts
120
- if ( $storage_post instanceof self ) {
121
- $this->set_editor_data( $storage_post->editor_data );
122
- $this->set_needs_compile( true );
123
- $this->set_uses_editor( $using_editor_old );
124
- $this->save();
125
- } else if ( is_array( $storage_post ) ) {
126
- $this->loadStorageData( $storage_post );
127
- }
128
-
129
- // check if the old flag is set
130
- if ( ! is_null( $using_editor_old ) ) {
131
- $this->uses_editor = (bool) $using_editor_old;
132
- $storage->delete( Brizy_Editor_Constants::USES_BRIZY );
133
- $this->save();
134
- }
135
 
 
136
  if ( $this->uses_editor() ) {
137
- $this->create_uid();
138
  }
139
  }
140
 
141
  /**
142
  * @param $apost
143
  *
144
- * @return Brizy_Editor_Post|null
145
- * @throws Brizy_Editor_Exceptions_NotFound
146
  */
147
  public static function get( $apost ) {
148
 
@@ -159,51 +106,19 @@ class Brizy_Editor_Post extends Brizy_Admin_Serializable {
159
 
160
  }
161
 
162
- public static function getAutoSavePost( $postId, $userId ) {
163
- $postParentId = self::getPostParent( $postId );
164
- $autosave = wp_get_post_autosave( $postParentId, $userId );
165
-
166
- if ( ! $autosave ) {
167
- return;
168
- }
169
-
170
- $post = get_post( $postId );
171
-
172
- $postDate = new DateTime( $post->post_modified );
173
- $autosaveDate = new DateTime( $autosave->post_modified );
174
-
175
- if ( $postDate > $autosaveDate ) {
176
- return null;
177
- }
178
-
179
- return $autosave->ID;
180
  }
181
 
182
  /**
183
- * @param $wp_post_id
184
- * @param bool $throw
185
- *
186
- * @return bool
187
- * @throws Brizy_Editor_Exceptions_UnsupportedPostType
188
  */
189
- public static function checkIfPostTypeIsSupported( $wp_post_id, $throw = true ) {
190
- $type = get_post_type( $wp_post_id );
191
-
192
- $supported_post_types = Brizy_Editor::get()->supported_post_types();
193
- $supported_post_types[] = 'revision';
194
-
195
- if ( ! in_array( $type, $supported_post_types ) ) {
196
-
197
- if ( $throw ) {
198
- throw new Brizy_Editor_Exceptions_UnsupportedPostType(
199
- "Brizy editor doesn't support '{$type}' post type"
200
- );
201
- } else {
202
- return false;
203
- }
204
- }
205
-
206
- return true;
207
  }
208
 
209
  /**
@@ -221,20 +136,35 @@ class Brizy_Editor_Post extends Brizy_Admin_Serializable {
221
  return serialize( $get_object_vars );
222
  }
223
 
 
224
  /**
225
  * @param $data
226
  */
227
  public function unserialize( $data ) {
228
  parent::unserialize( $data ); // TODO: Change the autogenerated stub
 
229
 
230
- if ( $this->get_api_page() ) {
231
- $save_data = $this->get_api_page()->get_content();
232
- $this->set_editor_data( $save_data );
233
- }
234
 
235
- unset( $this->api_page );
 
 
 
 
 
 
 
 
 
 
 
 
236
  }
237
 
 
238
  public function convertToOptionValue() {
239
 
240
  return array(
@@ -249,21 +179,6 @@ class Brizy_Editor_Post extends Brizy_Admin_Serializable {
249
  );
250
  }
251
 
252
- public function loadStorageData( $data ) {
253
- if ( isset( $data['compiled_html'] ) ) {
254
- $this->set_encoded_compiled_html( $data['compiled_html'] );
255
- }
256
-
257
- $this->set_editor_data( $data['editor_data'] );
258
- $data_needs_compile = isset( $data['needs_compile'] ) ? $data['needs_compile'] : true;
259
- $this->needs_compile = metadata_exists( 'post', $this->wp_post_id, self::BRIZY_POST_NEEDS_COMPILE_KEY ) ? (bool) get_post_meta( $this->wp_post_id, self::BRIZY_POST_NEEDS_COMPILE_KEY, true ) : $data_needs_compile;
260
- $this->editor_version = isset( $data['editor_version'] ) ? $data['editor_version'] : null;
261
- $this->compiler_version = isset( $data['compiler_version'] ) ? $data['compiler_version'] : null;
262
- $this->plugin_version = isset( $data['plugin_version'] ) ? $data['plugin_version'] : null;
263
- $this->compiled_html_head = isset( $data['compiled_html_head'] ) ? $data['compiled_html_head'] : null;
264
- $this->compiled_html_body = isset( $data['compiled_html_body'] ) ? $data['compiled_html_body'] : null;
265
- $this->uses_editor = (bool) ( isset( $data[ Brizy_Editor_Constants::USES_BRIZY ] ) ? $data[ Brizy_Editor_Constants::USES_BRIZY ] : false );
266
- }
267
 
268
  /**
269
  * Mark all brizy post that needs compile
@@ -273,208 +188,54 @@ class Brizy_Editor_Post extends Brizy_Admin_Serializable {
273
  $wpdb->update( $wpdb->postmeta, array( 'meta_value' => 1 ), array( 'meta_key' => self::BRIZY_POST_NEEDS_COMPILE_KEY ) );
274
  }
275
 
276
- // /**
277
- // * @return Brizy_Editor_Post[]
278
- // * @throws Brizy_Editor_Exceptions_NotFound
279
- // * @throws Brizy_Editor_Exceptions_UnsupportedPostType
280
- // * @todo: We need to move this method from here
281
- // */
282
- // public static function foreach_brizy_post( $callback ) {
283
- // global $wpdb;
284
- // $posts = $wpdb->get_results(
285
- // $wpdb->prepare( "SELECT p.post_type, p.ID as post_id FROM {$wpdb->postmeta} pm
286
- // JOIN {$wpdb->posts} p ON p.ID=pm.post_id and p.post_type <> 'revision' and p.post_type<>'attachment'
287
- // WHERE pm.meta_key = %s ", Brizy_Editor_Storage_Post::META_KEY )
288
- // );
289
- //
290
- // $result = array();
291
- // foreach ( $posts as $p ) {
292
- // if ( in_array( $p->post_type, Brizy_Editor::get()->supported_post_types() ) ) {
293
- //
294
- // if ( is_callable( $callback ) ) {
295
- // $callback( $p );
296
- // }
297
- // }
298
- // }
299
- //
300
- // return $result;
301
- // }
302
 
303
- /**
304
- * @return Brizy_Editor_Post[]
305
- * @throws Brizy_Editor_Exceptions_NotFound
306
- * @throws Brizy_Editor_Exceptions_UnsupportedPostType
307
- */
308
- public static function get_all_brizy_post_ids() {
309
- global $wpdb;
310
- $posts = $wpdb->get_results(
311
- $wpdb->prepare( "SELECT p.ID FROM {$wpdb->postmeta} pm
312
- JOIN {$wpdb->posts} p ON p.ID=pm.post_id and p.post_type <> 'revision' and p.post_type<>'attachment'
313
- WHERE pm.meta_key = %s ", Brizy_Editor_Storage_Post::META_KEY )
314
- );
315
-
316
- return array_map( function ( $o ) {
317
- return (int) $o->ID;
318
- }, $posts );
319
- }
320
-
321
- /**
322
- * @param $project
323
- * @param $post
324
- *
325
- * @return Brizy_Editor_Post
326
- * @throws Brizy_Editor_Exceptions_UnsupportedPostType
327
- * @throws Exception
328
- */
329
- public static function create( $project, $post ) {
330
- if ( ! in_array( ( $type = get_post_type( $post->ID ) ), Brizy_Editor::get()->supported_post_types() ) ) {
331
- throw new Brizy_Editor_Exceptions_UnsupportedPostType(
332
- "Brizy editor doesn't support '$type' post type 2"
333
- );
334
- }
335
- Brizy_Logger::instance()->notice( 'Create post', array( $project, $post ) );
336
-
337
- $post = new self( $post->ID );
338
- $post->set_plugin_version( BRIZY_VERSION );
339
-
340
- return $post;
341
- }
342
-
343
- private function get_last_autosave( $postParentId, $user_id ) {
344
- global $wpdb;
345
 
346
- $postParentId = (int) $postParentId;
347
- $user_id = (int) $user_id;
348
-
349
- $query = sprintf( "SELECT ID FROM {$wpdb->posts} WHERE post_parent = %d AND post_type= 'revision' AND post_status= 'inherit'AND post_name LIKE '%d-autosave%%'", $postParentId, $postParentId );
350
-
351
- if ( is_integer( $user_id ) ) {
352
- $query .= " AND post_author={$user_id}";
353
- }
354
-
355
- $query .= " ORDER BY post_date DESC";
356
-
357
- return (int) $wpdb->get_var( $query );
358
-
359
- }
360
-
361
- // public function auto_save_post_deperecated() {
362
- // try {
363
- // $user_id = get_current_user_id();
364
- // $post = $this->get_wp_post();
365
- // $postParentId = $this->get_parent_id();
366
- // $old_autosave = $this->get_last_autosave( $postParentId, $user_id );
367
- // $post_data = get_object_vars( $post );
368
- // $post_data['post_content'] .= "\n<!-- " . time() . "-->";
369
- // $autosavePost = null;
370
- //
371
- // if ( $old_autosave ) {
372
- // $autosavePost = self::get( $old_autosave );
373
- // }
374
- //
375
- // if ( $old_autosave ) {
376
- // $new_autosave = _wp_post_revision_data( $post_data, true );
377
- // $new_autosave['ID'] = $old_autosave;
378
- // $new_autosave['post_author'] = $user_id;
379
- //
380
- // // If the new autosave has the same content as the post, delete the autosave.
381
- // $autosave_is_different = false;
382
- //
383
- // foreach ( array_intersect( array_keys( $new_autosave ), array_keys( _wp_post_revision_fields( $post ) ) ) as $field ) {
384
- // if ( normalize_whitespace( $new_autosave[ $field ] ) != normalize_whitespace( $post->$field ) ) {
385
- // $autosave_is_different = true;
386
- // break;
387
- // }
388
- // }
389
- //
390
- // if ( ! $autosave_is_different ) {
391
- // wp_delete_post_revision( $old_autosave );
392
- //
393
- // return new WP_Error( 'rest_autosave_no_changes', __( 'There is nothing to save. The autosave and the post content are the same.' ), array( 'status' => 400 ) );
394
- // }
395
- //
396
- // /**
397
- // * This filter is documented in wp-admin/post.php.
398
- // */
399
- // do_action( 'wp_creating_autosave', $new_autosave );
400
- //
401
- // // wp_update_post expects escaped array.
402
- // wp_update_post( wp_slash( $new_autosave ) );
403
- //
404
- // } else {
405
- // // Create the new autosave as a special post revision.
406
- // $revId = _wp_put_post_revision( $post_data, true );
407
- // $autosavePost = self::get( $revId );
408
- // }
409
- //
410
- // $autosavePost = $this->populateAutoSavedData( $autosavePost );
411
- // $autosavePost->save();
412
- //
413
- // } catch ( Exception $exception ) {
414
- // Brizy_Logger::instance()->exception( $exception );
415
- //
416
- // return false;
417
- // }
418
- // }
419
-
420
- public function save_wp_post() {
421
-
422
- $post_type = $this->get_wp_post()->post_type;
423
  $post_type_object = get_post_type_object( $post_type );
424
-
425
- if ( ! $post_type_object ) {
426
- Brizy_Logger::instance()->critical( 'Invalid post type provided on save_wp_post', [ 'post_type' => $post_type ] );
427
-
428
- return;
429
- }
430
-
431
- $can_publish = current_user_can( $post_type_object->cap->publish_posts );
432
- $post_status = $can_publish ? 'publish' : 'pending';
433
-
434
- $this->deleteOldAutoSaves( $this->get_parent_id() );
435
 
436
  $brizy_compiled_page = $this->get_compiled_page();
437
 
 
 
438
  $params = array(
439
- 'ID' => $this->get_parent_id(),
440
- 'post_content' => $brizy_compiled_page->get_body() . '<div class="brz-root__container"></div>'
441
  );
442
 
 
 
443
  if ( $can_publish ) {
444
  $params['post_status'] = $post_status;
445
  }
446
 
447
  wp_update_post( $params );
448
- }
449
 
 
 
450
 
451
  /**
452
- * This saves ony data.. it does not touch the wordpress post
453
- *
454
  *
455
- * @return bool
456
  */
457
  public function save( $autosave = 0 ) {
458
 
459
- try {
460
-
461
- if ( $autosave == 0 ) {
462
- $value = $this->convertToOptionValue();
463
- $this->storage()->set( self::BRIZY_POST, $value );
464
- } else {
465
- $this->auto_save_post( $this->get_wp_post(), function ( $autosaveObject ) {
466
- $autosavePost = $this->populateAutoSavedData( $autosaveObject );
467
- $autosavePost->save();
468
- } );
469
- }
470
-
471
- } catch ( Exception $exception ) {
472
- Brizy_Logger::instance()->exception( $exception );
473
 
474
- return false;
 
 
 
 
 
 
475
  }
476
- }
477
 
 
 
478
 
479
  /**
480
  * @return bool
@@ -499,113 +260,6 @@ class Brizy_Editor_Post extends Brizy_Admin_Serializable {
499
  return true;
500
  }
501
 
502
- /**
503
- * @return Brizy_Editor_CompiledHtml
504
- */
505
- public function get_compiled_page() {
506
-
507
- if ( self::$compiled_page ) {
508
- return self::$compiled_page;
509
- }
510
-
511
- return new Brizy_Editor_CompiledHtml( $this->get_compiled_html() );
512
- }
513
-
514
- public function isCompiledWithCurrentVersion() {
515
- return $this->get_compiler_version() === BRIZY_EDITOR_VERSION;
516
- }
517
-
518
- /**
519
- * @deprecated;
520
- */
521
- public function get_api_page() {
522
-
523
- if ( isset( $this->api_page ) ) {
524
- return $this->api_page;
525
- }
526
-
527
- return null;
528
- }
529
-
530
- /**
531
- * @return mixed
532
- */
533
- public function get_id() {
534
- return $this->wp_post_id;
535
- }
536
-
537
- /**
538
- * A unique id assigned when brizy is enabled for this post
539
- *
540
- * @return string
541
- */
542
- public function create_uid() {
543
-
544
- if ( $this->uid ) {
545
- return $this->uid;
546
- }
547
-
548
- $this->uid = get_post_meta( $this->get_parent_id(), 'brizy_post_uid', true );
549
-
550
- if ( ! $this->uid ) {
551
- $this->uid = md5( $this->get_parent_id() . time() );
552
- update_post_meta( $this->get_parent_id(), 'brizy_post_uid', $this->uid );
553
- }
554
-
555
- return $this->uid;
556
- }
557
-
558
- /**
559
- * @return string
560
- */
561
- public function get_uid() {
562
- return $this->uid;
563
- }
564
-
565
- /**
566
- * @return string
567
- */
568
- public function get_editor_data() {
569
-
570
- if ( ( $decodedData = base64_decode( $this->editor_data, true ) ) !== false ) {
571
- return $decodedData;
572
- }
573
-
574
- return $this->editor_data;
575
- }
576
-
577
- /**
578
- * @param $content
579
- *
580
- * @return $this
581
- */
582
- public function set_editor_data( $content ) {
583
-
584
- if ( base64_decode( $content, true ) !== false ) {
585
- $this->editor_data = $content;
586
- } else {
587
- $this->editor_data = base64_encode( $content );
588
- }
589
-
590
- return $this;
591
- }
592
-
593
- /**
594
- * @return false|int|mixed
595
- */
596
- public function get_parent_id() {
597
- return self::getPostParent( $this->get_id() );
598
- }
599
-
600
- protected static function getPostParent( $postId ) {
601
- $id = wp_is_post_revision( $postId );
602
-
603
- if ( ! $id ) {
604
- $id = $postId;
605
- }
606
-
607
- return $id;
608
- }
609
 
610
  /**
611
  * @return string
@@ -625,7 +279,6 @@ class Brizy_Editor_Post extends Brizy_Admin_Serializable {
625
  return $this;
626
  }
627
 
628
-
629
  /**
630
  * @param $compiled_html
631
  *
@@ -694,10 +347,31 @@ class Brizy_Editor_Post extends Brizy_Admin_Serializable {
694
  }
695
 
696
  /**
697
- * @return bool
698
  */
699
- public function can_edit_posts() {
700
- return current_user_can( "edit_posts" );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
701
  }
702
 
703
  /**
@@ -705,91 +379,106 @@ class Brizy_Editor_Post extends Brizy_Admin_Serializable {
705
  * @throws Brizy_Editor_Exceptions_AccessDenied
706
  */
707
  public function enable_editor() {
 
708
  if ( ! $this->can_edit_posts() ) {
709
  throw new Brizy_Editor_Exceptions_AccessDenied( 'Current user cannot edit page' );
710
  }
711
- $this->uses_editor = true;
 
712
 
713
  return $this;
714
  }
715
 
716
  /**
717
- *
 
718
  */
719
  public function disable_editor() {
720
- $this->uses_editor = false;
 
 
 
 
721
 
722
  return $this;
723
  }
724
 
725
  /**
726
- * @return Brizy_Editor_Storage_Post
727
  */
728
- public function storage() {
729
- return Brizy_Editor_Storage_Post::instance( $this->wp_post_id );
 
730
  }
731
 
732
  /**
733
- * @return array|null|WP_Post
734
  */
735
- public function get_wp_post() {
736
- return $this->wp_post;
 
737
  }
738
 
739
  /**
740
- * @return bool
741
  */
742
- public function uses_editor() {
743
- return $this->uses_editor;
 
744
  }
745
 
746
  /**
747
- * @param $val
748
  *
749
  * @return $this
750
  */
751
- public function set_uses_editor( $val ) {
752
- $this->uses_editor = $val;
 
753
 
754
  return $this;
755
  }
756
 
757
-
758
  /**
759
- * @return string
760
  */
761
- public function edit_url() {
762
- return add_query_arg(
763
- array( Brizy_Editor_Constants::EDIT_KEY => '' ),
764
- get_permalink( $this->get_parent_id() )
765
- );
766
  }
767
 
768
  /**
769
- * @param $text
770
- * @param string $tags
771
- * @param bool $invert
772
- *
773
- * @return null|string|string[]
774
- * @todo: We need to move this method from here
775
- *
776
  */
777
- function strip_tags_content( $text, $tags = '', $invert = false ) {
778
-
779
- preg_match_all( '/<(.+?)[\s]*\/?[\s]*>/si', trim( $tags ), $tags );
780
- $tags = array_unique( $tags[1] );
781
 
782
- if ( is_array( $tags ) AND count( $tags ) > 0 ) {
783
- if ( $invert == false ) {
784
- return preg_replace( '@<(?!(?:' . implode( '|', $tags ) . ')\b)(\w+)\b.*?>(.*?</\1>)?@si', '', $text );
785
- } else {
786
- return preg_replace( '@<(' . implode( '|', $tags ) . ')\b.*?>(.*?</\1>)?@si', '', $text );
787
- }
788
- } elseif ( $invert == false ) {
789
- return preg_replace( '@<(\w+)\b.*?>.*?</\1>@si', '', $text );
790
  }
791
 
792
- return $text;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
793
  }
794
 
795
  /**
@@ -797,7 +486,7 @@ class Brizy_Editor_Post extends Brizy_Admin_Serializable {
797
  */
798
  public function get_templates() {
799
 
800
- $type = get_post_type( $this->get_id() );
801
  $templates = array(
802
  array(
803
  'id' => '',
@@ -825,9 +514,9 @@ class Brizy_Editor_Post extends Brizy_Admin_Serializable {
825
  $aTemplate = apply_filters( 'brizy_post_template', $aTemplate );
826
 
827
  if ( $aTemplate == '' ) {
828
- delete_post_meta( $this->get_id(), '_wp_page_template' );
829
  } else {
830
- update_post_meta( $this->get_id(), '_wp_page_template', $aTemplate );
831
  }
832
 
833
  return $this;
@@ -837,66 +526,97 @@ class Brizy_Editor_Post extends Brizy_Admin_Serializable {
837
  * @return mixed
838
  */
839
  public function get_template() {
840
- return get_post_meta( $this->get_id(), '_wp_page_template', true );
841
  }
842
 
 
843
  /**
844
- * @param string $editor_version
845
  */
846
- public function set_editor_version( $editor_version ) {
847
- $this->editor_version = $editor_version;
848
- update_metadata( 'post', $this->wp_post_id, self::BRIZY_POST_EDITOR_VERSION, $editor_version );
849
  }
850
 
851
  /**
852
- * @param string $compiler_version
853
  */
854
- public function set_compiler_version( $compiler_version ) {
855
- $this->compiler_version = $compiler_version;
856
- update_metadata( 'post', $this->wp_post_id, self::BRIZY_POST_COMPILER_VERSION, $compiler_version );
857
  }
858
 
859
  /**
860
- * @param string $plugin_version
861
  */
862
- public function set_plugin_version( $plugin_version ) {
863
- $this->plugin_version = $plugin_version;
864
- update_metadata( 'post', $this->wp_post_id, self::BRIZY_POST_PLUGIN_VERSION, $plugin_version );
 
 
865
  }
866
 
867
  /**
868
- * @param $v
 
869
  *
870
- * @return $this
871
  */
872
- public function set_needs_compile( $v ) {
873
- $this->needs_compile = (bool) $v;
874
- update_metadata( 'post', $this->wp_post_id, self::BRIZY_POST_NEEDS_COMPILE_KEY, (bool) $v );
875
-
876
- return $this;
877
  }
878
 
879
  /**
880
- * @return bool
 
 
881
  */
882
- public function get_needs_compile() {
883
- return $this->needs_compile;
884
  }
885
 
886
  /**
887
- * @return string
888
  */
889
- public function get_compiler_version() {
890
- return $this->compiler_version;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
891
  }
892
 
893
  /**
894
- * @return string
 
 
895
  */
896
- public function get_editor_version() {
897
- return $this->editor_version;
898
- }
899
-
900
  protected function populateAutoSavedData( $autosave ) {
901
  $autosave->set_template( $this->get_template() );
902
  $autosave->set_editor_data( $this->get_editor_data() );
@@ -904,5 +624,36 @@ class Brizy_Editor_Post extends Brizy_Admin_Serializable {
904
 
905
  return $autosave;
906
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
907
  }
908
 
2
  die( 'Direct access forbidden.' );
3
  }
4
 
5
+ class Brizy_Editor_Post extends Brizy_Editor_Entity {
 
6
 
7
  use Brizy_Editor_AutoSaveAware;
8
 
16
 
17
  static protected $instance = null;
18
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  /**
20
  * @var string
21
  */
43
  */
44
  protected $editor_data;
45
 
 
 
 
 
 
46
  /**
47
  * @var bool
48
  */
69
  static private $compiled_page;
70
 
71
 
 
 
 
 
72
  /**
73
+ * Brizy_Editor_Post2 constructor.
74
  *
75
+ * @param $postId
76
  *
77
+ * @throws Exception
78
  */
79
+ public function __construct( $postId ) {
80
+ parent::__construct( $postId );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
81
 
82
+ // create the uid if the editor is enabled for this post
83
  if ( $this->uses_editor() ) {
84
+ $this->createUid();
85
  }
86
  }
87
 
88
  /**
89
  * @param $apost
90
  *
91
+ * @return Brizy_Editor_Post|mixed
92
+ * @throws Exception
93
  */
94
  public static function get( $apost ) {
95
 
106
 
107
  }
108
 
109
+ /**
110
+ * Clear all cached instances;
111
+ */
112
+ public static function cleanClassCache() {
113
+ self::$instance = array();
 
 
 
 
 
 
 
 
 
 
 
 
 
114
  }
115
 
116
  /**
117
+ * Mark all brizy post that needs compile
 
 
 
 
118
  */
119
+ public static function markAllForCompilation() {
120
+ global $wpdb;
121
+ $wpdb->update( $wpdb->postmeta, array( 'meta_value' => 1 ), array( 'meta_key' => self::BRIZY_POST_NEEDS_COMPILE_KEY ) );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
122
  }
123
 
124
  /**
136
  return serialize( $get_object_vars );
137
  }
138
 
139
+
140
  /**
141
  * @param $data
142
  */
143
  public function unserialize( $data ) {
144
  parent::unserialize( $data ); // TODO: Change the autogenerated stub
145
+ }
146
 
147
+ public function createResponse() {
148
+
149
+ $p_id = (int) $this->getWpPostId();
150
+ $the_title = get_the_title( $p_id );
151
 
152
+ $global = array(
153
+ 'title' => $the_title,
154
+ 'slug' => sanitize_title( $the_title ),
155
+ 'data' => $this->get_editor_data(),
156
+ 'id' => $p_id,
157
+ 'is_index' => false,
158
+ 'template' => get_page_template_slug( $p_id ),
159
+ 'status' => get_post_status( $p_id ),
160
+ 'url' => get_the_permalink( $p_id ),
161
+ 'dataVersion' => $this->getCurrentDataVersion()
162
+ );
163
+
164
+ return $global;
165
  }
166
 
167
+
168
  public function convertToOptionValue() {
169
 
170
  return array(
179
  );
180
  }
181
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
182
 
183
  /**
184
  * Mark all brizy post that needs compile
188
  $wpdb->update( $wpdb->postmeta, array( 'meta_value' => 1 ), array( 'meta_key' => self::BRIZY_POST_NEEDS_COMPILE_KEY ) );
189
  }
190
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
191
 
192
+ public function savePost() {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
193
 
194
+ $post_type = $this->getWpPost()->post_type;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
195
  $post_type_object = get_post_type_object( $post_type );
196
+ $can_publish = current_user_can( $post_type_object->cap->publish_posts );
197
+ $post_status = $can_publish ? 'publish' : 'pending';
 
 
 
 
 
 
 
 
 
198
 
199
  $brizy_compiled_page = $this->get_compiled_page();
200
 
201
+ $this->deleteOldAutosaves( $this->getWpPostParentId() );
202
+
203
  $params = array(
204
+ 'ID' => $this->getWpPostParentId(),
205
+ 'post_content' => $brizy_compiled_page->get_body() ?: '<div class="brz-root__container"></div>'
206
  );
207
 
208
+ $params['post_content'] .= "<!-- t:" . time() . " -->";
209
+
210
  if ( $can_publish ) {
211
  $params['post_status'] = $post_status;
212
  }
213
 
214
  wp_update_post( $params );
 
215
 
216
+ $this->createUid();
217
+ }
218
 
219
  /**
220
+ * @param int $autosave
 
221
  *
222
+ * @return bool|Brizy_Editor_Entity
223
  */
224
  public function save( $autosave = 0 ) {
225
 
226
+ parent::save( $autosave );
 
 
 
 
 
 
 
 
 
 
 
 
 
227
 
228
+ if ( $autosave == 0 ) {
229
+ $this->saveStorage();
230
+ } else {
231
+ $this->auto_save_post( $this->getWpPost(), function ( $autosaveObject ) {
232
+ $autosavePost = $this->populateAutoSavedData( $autosaveObject );
233
+ $autosavePost->saveStorage();
234
+ } );
235
  }
 
236
 
237
+ return true;
238
+ }
239
 
240
  /**
241
  * @return bool
260
  return true;
261
  }
262
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
263
 
264
  /**
265
  * @return string
279
  return $this;
280
  }
281
 
 
282
  /**
283
  * @param $compiled_html
284
  *
347
  }
348
 
349
  /**
350
+ * @return string
351
  */
352
+ public function get_editor_data() {
353
+
354
+ if ( ( $decodedData = base64_decode( $this->editor_data, true ) ) !== false ) {
355
+ return $decodedData;
356
+ }
357
+
358
+ return $this->editor_data;
359
+ }
360
+
361
+ /**
362
+ * @param $content
363
+ *
364
+ * @return $this
365
+ */
366
+ public function set_editor_data( $content ) {
367
+
368
+ if ( base64_decode( $content, true ) !== false ) {
369
+ $this->editor_data = $content;
370
+ } else {
371
+ $this->editor_data = base64_encode( $content );
372
+ }
373
+
374
+ return $this;
375
  }
376
 
377
  /**
379
  * @throws Brizy_Editor_Exceptions_AccessDenied
380
  */
381
  public function enable_editor() {
382
+
383
  if ( ! $this->can_edit_posts() ) {
384
  throw new Brizy_Editor_Exceptions_AccessDenied( 'Current user cannot edit page' );
385
  }
386
+
387
+ $this->set_uses_editor( true );
388
 
389
  return $this;
390
  }
391
 
392
  /**
393
+ * @return $this
394
+ * @throws Brizy_Editor_Exceptions_AccessDenied
395
  */
396
  public function disable_editor() {
397
+ if ( ! $this->can_edit_posts() ) {
398
+ throw new Brizy_Editor_Exceptions_AccessDenied( 'Current user cannot edit page' );
399
+ }
400
+
401
+ $this->set_uses_editor( false );
402
 
403
  return $this;
404
  }
405
 
406
  /**
407
+ * @param string $editor_version
408
  */
409
+ public function set_editor_version( $editor_version ) {
410
+ $this->editor_version = $editor_version;
411
+ update_metadata( 'post', $this->getWpPostId(), self::BRIZY_POST_EDITOR_VERSION, $editor_version );
412
  }
413
 
414
  /**
415
+ * @param string $compiler_version
416
  */
417
+ public function set_compiler_version( $compiler_version ) {
418
+ $this->compiler_version = $compiler_version;
419
+ update_metadata( 'post', $this->getWpPostId(), self::BRIZY_POST_COMPILER_VERSION, $compiler_version );
420
  }
421
 
422
  /**
423
+ * @param string $plugin_version
424
  */
425
+ public function set_plugin_version( $plugin_version ) {
426
+ $this->plugin_version = $plugin_version;
427
+ update_metadata( 'post', $this->getWpPostId(), self::BRIZY_POST_PLUGIN_VERSION, $plugin_version );
428
  }
429
 
430
  /**
431
+ * @param $v
432
  *
433
  * @return $this
434
  */
435
+ public function set_needs_compile( $v ) {
436
+ $this->needs_compile = (bool) $v;
437
+ update_metadata( 'post', $this->getWpPostId(), self::BRIZY_POST_NEEDS_COMPILE_KEY, (bool) $v );
438
 
439
  return $this;
440
  }
441
 
 
442
  /**
443
+ * @return bool
444
  */
445
+ public function get_needs_compile() {
446
+ return $this->needs_compile;
 
 
 
447
  }
448
 
449
  /**
450
+ * @return Brizy_Editor_CompiledHtml
 
 
 
 
 
 
451
  */
452
+ public function get_compiled_page() {
 
 
 
453
 
454
+ if ( self::$compiled_page ) {
455
+ return self::$compiled_page;
 
 
 
 
 
 
456
  }
457
 
458
+ return new Brizy_Editor_CompiledHtml( $this->get_compiled_html() );
459
+ }
460
+
461
+ public function isCompiledWithCurrentVersion() {
462
+ return $this->get_compiler_version() === BRIZY_EDITOR_VERSION;
463
+ }
464
+
465
+
466
+ /**
467
+ * @return bool
468
+ */
469
+ public function uses_editor() {
470
+ return $this->uses_editor;
471
+ }
472
+
473
+ /**
474
+ * @param $val
475
+ *
476
+ * @return $this
477
+ */
478
+ public function set_uses_editor( $val ) {
479
+ $this->uses_editor = $val;
480
+
481
+ return $this;
482
  }
483
 
484
  /**
486
  */
487
  public function get_templates() {
488
 
489
+ $type = get_post_type( $this->getWpPostId() );
490
  $templates = array(
491
  array(
492
  'id' => '',
514
  $aTemplate = apply_filters( 'brizy_post_template', $aTemplate );
515
 
516
  if ( $aTemplate == '' ) {
517
+ delete_post_meta( $this->getWpPostId(), '_wp_page_template' );
518
  } else {
519
+ update_post_meta( $this->getWpPostId(), '_wp_page_template', $aTemplate );
520
  }
521
 
522
  return $this;
526
  * @return mixed
527
  */
528
  public function get_template() {
529
+ return get_post_meta( $this->getWpPostId(), '_wp_page_template', true );
530
  }
531
 
532
+
533
  /**
534
+ * @return string
535
  */
536
+ public function get_compiler_version() {
537
+ return $this->compiler_version;
 
538
  }
539
 
540
  /**
541
+ * @return string
542
  */
543
+ public function get_editor_version() {
544
+ return $this->editor_version;
 
545
  }
546
 
547
  /**
548
+ * @return string
549
  */
550
+ public function edit_url() {
551
+ return add_query_arg(
552
+ array( Brizy_Editor_Constants::EDIT_KEY => '' ),
553
+ get_permalink( $this->getWpPostParentId() )
554
+ );
555
  }
556
 
557
  /**
558
+ * @return bool
559
+ * @todo: Move this
560
  *
 
561
  */
562
+ public function can_edit_posts() {
563
+ return current_user_can( 'edit_posts' );
 
 
 
564
  }
565
 
566
  /**
567
+ * Will return the key on witch the object data will be saved in storage
568
+ *
569
+ * @return mixed
570
  */
571
+ protected function getObjectKey() {
572
+ return self::BRIZY_POST;
573
  }
574
 
575
  /**
576
+ * Load all object data
577
  */
578
+ protected function loadInstanceData() {
579
+ // get the storage values
580
+ $storage = $this->getStorage();
581
+ //$storageData = $storage->get_storage();
582
+ $using_editor_old = $storage->get( Brizy_Editor_Constants::USES_BRIZY, false );
583
+ $storage_post = $storage->get( $this->getObjectKey(), false );
584
+
585
+ // check for deprecated forms of posts
586
+ if ( $storage_post instanceof self ) {
587
+ $this->set_editor_data( $storage_post->editor_data );
588
+ $this->set_needs_compile( true );
589
+ $this->set_uses_editor( $using_editor_old );
590
+ $this->save();
591
+ } else if ( is_array( $storage_post ) ) {
592
+ if ( isset( $storage_post['compiled_html'] ) ) {
593
+ $this->set_encoded_compiled_html( $storage_post['compiled_html'] );
594
+ }
595
+
596
+ $this->set_editor_data( $storage_post['editor_data'] );
597
+ $data_needs_compile = isset( $storage_post['needs_compile'] ) ? $storage_post['needs_compile'] : true;
598
+ $this->needs_compile = metadata_exists( 'post', $this->getWpPostId(), self::BRIZY_POST_NEEDS_COMPILE_KEY ) ? (bool) get_post_meta( $this->getWpPostId(), self::BRIZY_POST_NEEDS_COMPILE_KEY, true ) : $data_needs_compile;
599
+ $this->editor_version = isset( $storage_post['editor_version'] ) ? $storage_post['editor_version'] : BRIZY_EDITOR_VERSION;
600
+ $this->compiler_version = isset( $storage_post['compiler_version'] ) ? $storage_post['compiler_version'] : BRIZY_EDITOR_VERSION;
601
+ $this->plugin_version = isset( $storage_post['plugin_version'] ) ? $storage_post['plugin_version'] : BRIZY_VERSION;
602
+ $this->compiled_html_head = isset( $storage_post['compiled_html_head'] ) ? $storage_post['compiled_html_head'] : null;
603
+ $this->compiled_html_body = isset( $storage_post['compiled_html_body'] ) ? $storage_post['compiled_html_body'] : null;
604
+ $this->uses_editor = (bool) ( isset( $storage_post[ Brizy_Editor_Constants::USES_BRIZY ] ) ? $storage_post[ Brizy_Editor_Constants::USES_BRIZY ] : false );
605
+ }
606
+
607
+ // check if the old flag is set
608
+ if ( ! is_null( $using_editor_old ) ) {
609
+ $this->uses_editor = (bool) $using_editor_old;
610
+ $storage->delete( Brizy_Editor_Constants::USES_BRIZY );
611
+ $this->save();
612
+ }
613
  }
614
 
615
  /**
616
+ * @param self $autosave
617
+ *
618
+ * @return mixed
619
  */
 
 
 
 
620
  protected function populateAutoSavedData( $autosave ) {
621
  $autosave->set_template( $this->get_template() );
622
  $autosave->set_editor_data( $this->get_editor_data() );
624
 
625
  return $autosave;
626
  }
627
+
628
+ //=================================================================================================================
629
+ //=================================================================================================================
630
+ //=================================================================================================================
631
+ //=================================================================================================================
632
+ //=================================================================================================================
633
+ //=================================================================================================================
634
+ //=================================================================================================================
635
+
636
+ //
637
+ // /**
638
+ // * @var Brizy_Editor_API_Page
639
+ // */
640
+ // protected $api_page;
641
+ //
642
+ //
643
+ //
644
+ //
645
+ //
646
+ // /**
647
+ // * @deprecated;
648
+ // */
649
+ // public function get_api_page() {
650
+ //
651
+ // if ( isset( $this->api_page ) ) {
652
+ // return $this->api_page;
653
+ // }
654
+ //
655
+ // return null;
656
+ // }
657
+
658
  }
659
 
editor/post3.php ADDED
@@ -0,0 +1,905 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php if ( ! defined( 'ABSPATH' ) ) {
2
+ die( 'Direct access forbidden.' );
3
+ }
4
+
5
+ class Brizy_Editor_Post3 extends Brizy_Admin_Serializable {
6
+
7
+
8
+ use Brizy_Editor_AutoSaveAware;
9
+
10
+ const BRIZY_POST = 'brizy-post';
11
+ const BRIZY_POST_NEEDS_COMPILE_KEY = 'brizy-need-compile';
12
+ const BRIZY_POST_SIGNATURE_KEY = 'brizy-post-signature';
13
+ const BRIZY_POST_HASH_KEY = 'brizy-post-hash';
14
+ const BRIZY_POST_EDITOR_VERSION = 'brizy-post-editor-version';
15
+ const BRIZY_POST_COMPILER_VERSION = 'brizy-post-compiler-version';
16
+ const BRIZY_POST_PLUGIN_VERSION = 'brizy-post-plugin-version';
17
+
18
+ static protected $instance = null;
19
+
20
+ /**
21
+ * @var Brizy_Editor_API_Page
22
+ */
23
+ protected $api_page;
24
+
25
+ /**
26
+ * @var int
27
+ */
28
+ protected $wp_post_id;
29
+
30
+ /**
31
+ * @var WP_Post
32
+ */
33
+ protected $wp_post;
34
+
35
+ /**
36
+ * @var string
37
+ */
38
+ protected $compiled_html;
39
+
40
+ /**
41
+ * @var string
42
+ */
43
+ protected $compiled_html_body;
44
+
45
+ /**
46
+ * @var string
47
+ */
48
+ protected $compiled_html_head;
49
+
50
+ /**
51
+ * @var bool
52
+ */
53
+ protected $needs_compile;
54
+
55
+ /**
56
+ * Json for the editor.
57
+ *
58
+ * @var string
59
+ */
60
+ protected $editor_data;
61
+
62
+ /**
63
+ * @var string
64
+ */
65
+ protected $uid;
66
+
67
+ /**
68
+ * @var bool
69
+ */
70
+ protected $uses_editor;
71
+
72
+ /**
73
+ * @var string
74
+ */
75
+ protected $editor_version;
76
+
77
+ /**
78
+ * @var string
79
+ */
80
+ protected $compiler_version;
81
+
82
+ /**
83
+ * @var string
84
+ */
85
+ protected $plugin_version;
86
+
87
+ /**
88
+ * @var Brizy_Editor_CompiledHtml
89
+ */
90
+ static private $compiled_page;
91
+
92
+
93
+ public static function cleanClassCache() {
94
+ self::$instance = array();
95
+ }
96
+
97
+ /**
98
+ * Brizy_Editor_Post constructor.
99
+ *
100
+ * @param $wp_post_id
101
+ *
102
+ * @throws Brizy_Editor_Exceptions_NotFound
103
+ */
104
+ public function __construct( $wp_post_id ) {
105
+
106
+ self::checkIfPostTypeIsSupported( $wp_post_id );
107
+ $this->wp_post_id = (int) $wp_post_id;
108
+
109
+ if ( $this->wp_post_id ) {
110
+ $this->wp_post = get_post( $this->wp_post_id );
111
+ }
112
+
113
+ // get the storage values
114
+ $storage = $this->storage();
115
+ //$storageData = $storage->get_storage();
116
+ $using_editor_old = $storage->get( Brizy_Editor_Constants::USES_BRIZY, false );
117
+ $storage_post = $storage->get( self::BRIZY_POST, false );
118
+
119
+ // check for deprecated forms of posts
120
+ if ( $storage_post instanceof self ) {
121
+ $this->set_editor_data( $storage_post->editor_data );
122
+ $this->set_needs_compile( true );
123
+ $this->set_uses_editor( $using_editor_old );
124
+ $this->save();
125
+ } else if ( is_array( $storage_post ) ) {
126
+ $this->loadStorageData( $storage_post );
127
+ }
128
+
129
+ // check if the old flag is set
130
+ if ( ! is_null( $using_editor_old ) ) {
131
+ $this->uses_editor = (bool) $using_editor_old;
132
+ $storage->delete( Brizy_Editor_Constants::USES_BRIZY );
133
+ $this->save();
134
+ }
135
+
136
+ if ( $this->uses_editor() ) {
137
+ $this->create_uid();
138
+ }
139
+ }
140
+
141
+ /**
142
+ * @param $apost
143
+ *
144
+ * @return Brizy_Editor_Post|null
145
+ * @throws Brizy_Editor_Exceptions_NotFound
146
+ */
147
+ public static function get( $apost ) {
148
+
149
+ $wp_post_id = $apost;
150
+ if ( $apost instanceof WP_Post ) {
151
+ $wp_post_id = $apost->ID;
152
+ }
153
+
154
+ if ( isset( self::$instance[ $wp_post_id ] ) ) {
155
+ return self::$instance[ $wp_post_id ];
156
+ }
157
+
158
+ return self::$instance[ $wp_post_id ] = new self( $wp_post_id );
159
+
160
+ }
161
+
162
+ public static function getAutoSavePost( $postId, $userId ) {
163
+ $postParentId = self::getPostParent( $postId );
164
+ $autosave = wp_get_post_autosave( $postParentId, $userId );
165
+
166
+ if ( ! $autosave ) {
167
+ return;
168
+ }
169
+
170
+ $post = get_post( $postId );
171
+
172
+ $postDate = new DateTime( $post->post_modified );
173
+ $autosaveDate = new DateTime( $autosave->post_modified );
174
+
175
+ if ( $postDate > $autosaveDate ) {
176
+ return null;
177
+ }
178
+
179
+ return $autosave->ID;
180
+ }
181
+
182
+ /**
183
+ * @param $wp_post_id
184
+ * @param bool $throw
185
+ *
186
+ * @return bool
187
+ * @throws Brizy_Editor_Exceptions_UnsupportedPostType
188
+ */
189
+ public static function checkIfPostTypeIsSupported( $wp_post_id, $throw = true ) {
190
+ $type = get_post_type( $wp_post_id );
191
+
192
+ $supported_post_types = Brizy_Editor::get()->supported_post_types();
193
+ $supported_post_types[] = 'revision';
194
+
195
+ if ( ! in_array( $type, $supported_post_types ) ) {
196
+
197
+ if ( $throw ) {
198
+ throw new Brizy_Editor_Exceptions_UnsupportedPostType(
199
+ "Brizy editor doesn't support '{$type}' post type"
200
+ );
201
+ } else {
202
+ return false;
203
+ }
204
+ }
205
+
206
+ return true;
207
+ }
208
+
209
+ /**
210
+ * @return string
211
+ */
212
+ public function serialize() {
213
+ $get_object_vars = get_object_vars( $this );
214
+
215
+ unset( $get_object_vars['wp_post_id'] );
216
+ unset( $get_object_vars['wp_post'] );
217
+ unset( $get_object_vars['api_page'] );
218
+ unset( $get_object_vars['store_assets'] );
219
+ unset( $get_object_vars['assets'] );
220
+
221
+ return serialize( $get_object_vars );
222
+ }
223
+
224
+ /**
225
+ * @param $data
226
+ */
227
+ public function unserialize( $data ) {
228
+ parent::unserialize( $data ); // TODO: Change the autogenerated stub
229
+
230
+ if ( $this->get_api_page() ) {
231
+ $save_data = $this->get_api_page()->get_content();
232
+ $this->set_editor_data( $save_data );
233
+ }
234
+
235
+ unset( $this->api_page );
236
+ }
237
+
238
+ public function convertToOptionValue() {
239
+
240
+ return array(
241
+ 'compiled_html' => $this->get_encoded_compiled_html(),
242
+ 'compiled_html_body' => $this->get_compiled_html_body(),
243
+ 'compiled_html_head' => $this->get_compiled_html_head(),
244
+ 'editor_version' => $this->editor_version,
245
+ 'compiler_version' => $this->compiler_version,
246
+ 'plugin_version' => $this->plugin_version,
247
+ 'editor_data' => $this->editor_data,
248
+ Brizy_Editor_Constants::USES_BRIZY => $this->uses_editor
249
+ );
250
+ }
251
+
252
+ public function loadStorageData( $data ) {
253
+ if ( isset( $data['compiled_html'] ) ) {
254
+ $this->set_encoded_compiled_html( $data['compiled_html'] );
255
+ }
256
+
257
+ $this->set_editor_data( $data['editor_data'] );
258
+ $data_needs_compile = isset( $data['needs_compile'] ) ? $data['needs_compile'] : true;
259
+ $this->needs_compile = metadata_exists( 'post', $this->wp_post_id, self::BRIZY_POST_NEEDS_COMPILE_KEY ) ? (bool) get_post_meta( $this->wp_post_id, self::BRIZY_POST_NEEDS_COMPILE_KEY, true ) : $data_needs_compile;
260
+ $this->editor_version = isset( $data['editor_version'] ) ? $data['editor_version'] : null;
261
+ $this->compiler_version = isset( $data['compiler_version'] ) ? $data['compiler_version'] : null;
262
+ $this->plugin_version = isset( $data['plugin_version'] ) ? $data['plugin_version'] : null;
263
+ $this->compiled_html_head = isset( $data['compiled_html_head'] ) ? $data['compiled_html_head'] : null;
264
+ $this->compiled_html_body = isset( $data['compiled_html_body'] ) ? $data['compiled_html_body'] : null;
265
+ $this->uses_editor = (bool) ( isset( $data[ Brizy_Editor_Constants::USES_BRIZY ] ) ? $data[ Brizy_Editor_Constants::USES_BRIZY ] : false );
266
+ }
267
+
268
+ /**
269
+ * Mark all brizy post that needs compile
270
+ */
271
+ public static function mark_all_for_compilation() {
272
+ global $wpdb;
273
+ $wpdb->update( $wpdb->postmeta, array( 'meta_value' => 1 ), array( 'meta_key' => self::BRIZY_POST_NEEDS_COMPILE_KEY ) );
274
+ }
275
+
276
+ // /**
277
+ // * @return Brizy_Editor_Post[]
278
+ // * @throws Brizy_Editor_Exceptions_NotFound
279
+ // * @throws Brizy_Editor_Exceptions_UnsupportedPostType
280
+ // * @todo: We need to move this method from here
281
+ // */
282
+ // public static function foreach_brizy_post( $callback ) {
283
+ // global $wpdb;
284
+ // $posts = $wpdb->get_results(
285
+ // $wpdb->prepare( "SELECT p.post_type, p.ID as post_id FROM {$wpdb->postmeta} pm
286
+ // JOIN {$wpdb->posts} p ON p.ID=pm.post_id and p.post_type <> 'revision' and p.post_type<>'attachment'
287
+ // WHERE pm.meta_key = %s ", Brizy_Editor_Storage_Post::META_KEY )
288
+ // );
289
+ //
290
+ // $result = array();
291
+ // foreach ( $posts as $p ) {
292
+ // if ( in_array( $p->post_type, Brizy_Editor::get()->supported_post_types() ) ) {
293
+ //
294
+ // if ( is_callable( $callback ) ) {
295
+ // $callback( $p );
296
+ // }
297
+ // }
298
+ // }
299
+ //
300
+ // return $result;
301
+ // }
302
+
303
+ /**
304
+ * @return Brizy_Editor_Post[]
305
+ * @throws Brizy_Editor_Exceptions_NotFound
306
+ * @throws Brizy_Editor_Exceptions_UnsupportedPostType
307
+ */
308
+ public static function get_all_brizy_post_ids() {
309
+ global $wpdb;
310
+ $posts = $wpdb->get_results(
311
+ $wpdb->prepare( "SELECT p.ID FROM {$wpdb->postmeta} pm
312
+ JOIN {$wpdb->posts} p ON p.ID=pm.post_id and p.post_type <> 'revision' and p.post_type<>'attachment'
313
+ WHERE pm.meta_key = %s ", Brizy_Editor_Storage_Post::META_KEY )
314
+ );
315
+
316
+ return array_map( function ( $o ) {
317
+ return (int) $o->ID;
318
+ }, $posts );
319
+ }
320
+
321
+ /**
322
+ * @param $project
323
+ * @param $post
324
+ *
325
+ * @return Brizy_Editor_Post
326
+ * @throws Brizy_Editor_Exceptions_UnsupportedPostType
327
+ * @throws Exception
328
+ */
329
+ public static function create( $project, $post ) {
330
+ if ( ! in_array( ( $type = get_post_type( $post->ID ) ), Brizy_Editor::get()->supported_post_types() ) ) {
331
+ throw new Brizy_Editor_Exceptions_UnsupportedPostType(
332
+ "Brizy editor doesn't support '$type' post type 2"
333
+ );
334
+ }
335
+ Brizy_Logger::instance()->notice( 'Create post', array( $project, $post ) );
336
+
337
+ $post = new self( $post->ID );
338
+ $post->set_plugin_version( BRIZY_VERSION );
339
+
340
+ return $post;
341
+ }
342
+
343
+ private function getLastAutosave( $postParentId, $user_id ) {
344
+ global $wpdb;
345
+
346
+ $postParentId = (int) $postParentId;
347
+ $user_id = (int) $user_id;
348
+
349
+ $query = sprintf( "SELECT ID FROM {$wpdb->posts} WHERE post_parent = %d AND post_type= 'revision' AND post_status= 'inherit'AND post_name LIKE '%d-autosave%%'", $postParentId, $postParentId );
350
+
351
+ if ( is_integer( $user_id ) ) {
352
+ $query .= " AND post_author={$user_id}";
353
+ }
354
+
355
+ $query .= " ORDER BY post_date DESC";
356
+
357
+ return (int) $wpdb->get_var( $query );
358
+
359
+ }
360
+
361
+ // public function auto_save_post_deperecated() {
362
+ // try {
363
+ // $user_id = get_current_user_id();
364
+ // $post = $this->getWpPost();
365
+ // $postParentId = $this->get_parent_id();
366
+ // $old_autosave = $this->get_last_autosave( $postParentId, $user_id );
367
+ // $post_data = get_object_vars( $post );
368
+ // $post_data['post_content'] .= "\n<!-- " . time() . "-->";
369
+ // $autosavePost = null;
370
+ //
371
+ // if ( $old_autosave ) {
372
+ // $autosavePost = self::get( $old_autosave );
373
+ // }
374
+ //
375
+ // if ( $old_autosave ) {
376
+ // $new_autosave = _wp_post_revision_data( $post_data, true );
377
+ // $new_autosave['ID'] = $old_autosave;
378
+ // $new_autosave['post_author'] = $user_id;
379
+ //
380
+ // // If the new autosave has the same content as the post, delete the autosave.
381
+ // $autosave_is_different = false;
382
+ //
383
+ // foreach ( array_intersect( array_keys( $new_autosave ), array_keys( _wp_post_revision_fields( $post ) ) ) as $field ) {
384
+ // if ( normalize_whitespace( $new_autosave[ $field ] ) != normalize_whitespace( $post->$field ) ) {
385
+ // $autosave_is_different = true;
386
+ // break;
387
+ // }
388
+ // }
389
+ //
390
+ // if ( ! $autosave_is_different ) {
391
+ // wp_delete_post_revision( $old_autosave );
392
+ //
393
+ // return new WP_Error( 'rest_autosave_no_changes', __( 'There is nothing to save. The autosave and the post content are the same.' ), array( 'status' => 400 ) );
394
+ // }
395
+ //
396
+ // /**
397
+ // * This filter is documented in wp-admin/post.php.
398
+ // */
399
+ // do_action( 'wp_creating_autosave', $new_autosave );
400
+ //
401
+ // // wp_update_post expects escaped array.
402
+ // wp_update_post( wp_slash( $new_autosave ) );
403
+ //
404
+ // } else {
405
+ // // Create the new autosave as a special post revision.
406
+ // $revId = _wp_put_post_revision( $post_data, true );
407
+ // $autosavePost = self::get( $revId );
408
+ // }
409
+ //
410
+ // $autosavePost = $this->populateAutoSavedData( $autosavePost );
411
+ // $autosavePost->save();
412
+ //
413
+ // } catch ( Exception $exception ) {
414
+ // Brizy_Logger::instance()->exception( $exception );
415
+ //
416
+ // return false;
417
+ // }
418
+ // }
419
+
420
+ public function save_wp_post() {
421
+
422
+ $post_type = $this->get_wp_post()->post_type;
423
+ $post_type_object = get_post_type_object( $post_type );
424
+
425
+ if ( ! $post_type_object ) {
426
+ Brizy_Logger::instance()->critical( 'Invalid post type provided on save_wp_post', [ 'post_type' => $post_type ] );
427
+ return;
428
+ }
429
+
430
+ $can_publish = current_user_can( $post_type_object->cap->publish_posts );
431
+ $post_status = $can_publish ? 'publish' : 'pending';
432
+
433
+ $brizy_compiled_page = $this->get_compiled_page();
434
+
435
+ $this->deleteOldAutoSaves( $this->get_parent_id() );
436
+
437
+ $body = $brizy_compiled_page->get_body();
438
+
439
+
440
+ wp_update_post( array(
441
+ 'ID' => $this->get_parent_id(),
442
+ 'post_status' => $post_status,
443
+ 'post_content' => $body
444
+ ) );
445
+ }
446
+
447
+
448
+ /**
449
+ * This saves ony data.. it does not touch the wordpress post
450
+ *
451
+ *
452
+ * @return bool
453
+ */
454
+ public function save( $autosave = 0 ) {
455
+
456
+ try {
457
+
458
+ if ( $autosave == 0 ) {
459
+ $value = $this->convertToOptionValue();
460
+ $this->storage()->set( self::BRIZY_POST, $value );
461
+ } else {
462
+ $this->auto_save_post( $this->get_wp_post(), function ( $autosaveObject ) {
463
+ $autosavePost = $this->populateAutoSavedData( $autosaveObject );
464
+ $autosavePost->save();
465
+ } );
466
+ }
467
+
468
+ } catch ( Exception $exception ) {
469
+ Brizy_Logger::instance()->exception( $exception );
470
+
471
+ return false;
472
+ }
473
+ }
474
+
475
+
476
+ /**
477
+ * @return bool
478
+ * @throws Brizy_Editor_Exceptions_ServiceUnavailable
479
+ * @throws Exception
480
+ */
481
+ public function compile_page() {
482
+
483
+ Brizy_Logger::instance()->notice( 'Compile page', array( $this ) );
484
+
485
+ $compiled_html = Brizy_Editor_User::get()->compile_page( Brizy_Editor_Project::get(), $this );
486
+ $compiled_html = Brizy_SiteUrlReplacer::hideSiteUrl( $compiled_html );
487
+
488
+ $this->set_compiled_html( $compiled_html );
489
+
490
+ $this->set_compiled_html_head( null );
491
+ $this->set_compiled_html_body( null );
492
+
493
+ $this->set_needs_compile( false );
494
+ $this->set_compiler_version( BRIZY_EDITOR_VERSION );
495
+
496
+ return true;
497
+ }
498
+
499
+ /**
500
+ * @return Brizy_Editor_CompiledHtml
501
+ */
502
+ public function get_compiled_page() {
503
+
504
+ if ( self::$compiled_page ) {
505
+ return self::$compiled_page;
506
+ }
507
+
508
+ return new Brizy_Editor_CompiledHtml( $this->get_compiled_html() );
509
+ }
510
+
511
+ public function isCompiledWithCurrentVersion() {
512
+ return $this->get_compiler_version() === BRIZY_EDITOR_VERSION;
513
+ }
514
+
515
+ /**
516
+ * @deprecated;
517
+ */
518
+ public function get_api_page() {
519
+
520
+ if ( isset( $this->api_page ) ) {
521
+ return $this->api_page;
522
+ }
523
+
524
+ return null;
525
+ }
526
+
527
+ /**
528
+ * @return mixed
529
+ */
530
+ public function get_id() {
531
+ return $this->wp_post_id;
532
+ }
533
+
534
+ /**
535
+ * A unique id assigned when brizy is enabled for this post
536
+ *
537
+ * @return string
538
+ */
539
+ public function create_uid() {
540
+
541
+ if ( $this->uid ) {
542
+ return $this->uid;
543
+ }
544
+
545
+ $this->uid = get_post_meta( $this->get_parent_id(), 'brizy_post_uid', true );
546
+
547
+ if ( ! $this->uid ) {
548
+ $this->uid = md5( $this->get_parent_id() . time() );
549
+ update_post_meta( $this->get_parent_id(), 'brizy_post_uid', $this->uid );
550
+ }
551
+
552
+ return $this->uid;
553
+ }
554
+
555
+ /**
556
+ * @return string
557
+ */
558
+ public function get_uid() {
559
+ return $this->uid;
560
+ }
561
+
562
+ /**
563
+ * @return string
564
+ */
565
+ public function get_editor_data() {
566
+
567
+ if ( ( $decodedData = base64_decode( $this->editor_data, true ) ) !== false ) {
568
+ return $decodedData;
569
+ }
570
+
571
+ return $this->editor_data;
572
+ }
573
+
574
+ /**
575
+ * @param $content
576
+ *
577
+ * @return $this
578
+ */
579
+ public function set_editor_data( $content ) {
580
+
581
+ if ( base64_decode( $content, true ) !== false ) {
582
+ $this->editor_data = $content;
583
+ } else {
584
+ $this->editor_data = base64_encode( $content );
585
+ }
586
+
587
+ return $this;
588
+ }
589
+
590
+ /**
591
+ * @return false|int|mixed
592
+ */
593
+ public function get_parent_id() {
594
+ return self::getPostParent( $this->get_id() );
595
+ }
596
+
597
+ protected static function getPostParent( $postId ) {
598
+ $id = wp_is_post_revision( $postId );
599
+
600
+ if ( ! $id ) {
601
+ $id = $postId;
602
+ }
603
+
604
+ return $id;
605
+ }
606
+
607
+ /**
608
+ * @return string
609
+ */
610
+ public function get_compiled_html() {
611
+ return $this->compiled_html;
612
+ }
613
+
614
+ /**
615
+ * @param string $compiled_html
616
+ *
617
+ * @return Brizy_Editor_Post
618
+ */
619
+ public function set_compiled_html( $compiled_html ) {
620
+ $this->compiled_html = $compiled_html;
621
+
622
+ return $this;
623
+ }
624
+
625
+
626
+ /**
627
+ * @param $compiled_html
628
+ *
629
+ * @return $this
630
+ */
631
+ public function set_encoded_compiled_html( $compiled_html ) {
632
+
633
+ if ( ( $decodedData = base64_decode( $compiled_html, true ) ) !== false ) {
634
+ $this->set_compiled_html( $decodedData );
635
+ } else {
636
+ $this->set_compiled_html( $compiled_html );
637
+ }
638
+
639
+ return $this;
640
+ }
641
+
642
+ /**
643
+ * @return string
644
+ */
645
+ public function get_encoded_compiled_html() {
646
+
647
+ return base64_encode( $this->get_compiled_html() );
648
+ }
649
+
650
+ /**
651
+ * @return string
652
+ * @deprecated use get_compiled_html
653
+ */
654
+ public function get_compiled_html_body() {
655
+ return $this->compiled_html_body;
656
+ }
657
+
658
+ /**
659
+ * @return string
660
+ * @deprecated use get_compiled_html
661
+ */
662
+ public function get_compiled_html_head() {
663
+ return $this->compiled_html_head;
664
+ }
665
+
666
+ /**
667
+ * @param $html
668
+ *
669
+ * @return $this
670
+ * @deprecated use set_compiled_html
671
+ *
672
+ */
673
+ public function set_compiled_html_body( $html ) {
674
+ $this->compiled_html_body = $html;
675
+
676
+ return $this;
677
+ }
678
+
679
+ /**
680
+ * @param $html
681
+ *
682
+ * @return $this
683
+ * @deprecated use set_compiled_html
684
+ *
685
+ */
686
+ public function set_compiled_html_head( $html ) {
687
+ // remove all title and meta tags.
688
+ $this->compiled_html_head = $html;
689
+
690
+ return $this;
691
+ }
692
+
693
+ /**
694
+ * @return bool
695
+ */
696
+ public function can_edit_posts() {
697
+ return current_user_can( "edit_posts" );
698
+ }
699
+
700
+ /**
701
+ * @return $this
702
+ * @throws Brizy_Editor_Exceptions_AccessDenied
703
+ */
704
+ public function enable_editor() {
705
+ if ( ! $this->can_edit_posts() ) {
706
+ throw new Brizy_Editor_Exceptions_AccessDenied( 'Current user cannot edit page' );
707
+ }
708
+ $this->uses_editor = true;
709
+
710
+ return $this;
711
+ }
712
+
713
+ /**
714
+ *
715
+ */
716
+ public function disable_editor() {
717
+ $this->uses_editor = false;
718
+
719
+ return $this;
720
+ }
721
+
722
+ /**
723
+ * @return Brizy_Editor_Storage_Post
724
+ */
725
+ public function storage() {
726
+ return Brizy_Editor_Storage_Post::instance( $this->wp_post_id );
727
+ }
728
+
729
+ /**
730
+ * @return array|null|WP_Post
731
+ */
732
+ public function get_wp_post() {
733
+ return $this->wp_post;
734
+ }
735
+
736
+ /**
737
+ * @return bool
738
+ */
739
+ public function uses_editor() {
740
+ return $this->uses_editor;
741
+ }
742
+
743
+ /**
744
+ * @param $val
745
+ *
746
+ * @return $this
747
+ */
748
+ public function set_uses_editor( $val ) {
749
+ $this->uses_editor = $val;
750
+
751
+ return $this;
752
+ }
753
+
754
+
755
+ /**
756
+ * @return string
757
+ */
758
+ public function edit_url() {
759
+ return add_query_arg(
760
+ array( Brizy_Editor_Constants::EDIT_KEY => '' ),
761
+ get_permalink( $this->get_parent_id() )
762
+ );
763
+ }
764
+
765
+ /**
766
+ * @param $text
767
+ * @param string $tags
768
+ * @param bool $invert
769
+ *
770
+ * @return null|string|string[]
771
+ * @todo: We need to move this method from here
772
+ *
773
+ */
774
+ function strip_tags_content( $text, $tags = '', $invert = false ) {
775
+
776
+ preg_match_all( '/<(.+?)[\s]*\/?[\s]*>/si', trim( $tags ), $tags );
777
+ $tags = array_unique( $tags[1] );
778
+
779
+ if ( is_array( $tags ) AND count( $tags ) > 0 ) {
780
+ if ( $invert == false ) {
781
+ return preg_replace( '@<(?!(?:' . implode( '|', $tags ) . ')\b)(\w+)\b.*?>(.*?</\1>)?@si', '', $text );
782
+ } else {
783
+ return preg_replace( '@<(' . implode( '|', $tags ) . ')\b.*?>(.*?</\1>)?@si', '', $text );
784
+ }
785
+ } elseif ( $invert == false ) {
786
+ return preg_replace( '@<(\w+)\b.*?>.*?</\1>@si', '', $text );
787
+ }
788
+
789
+ return $text;
790
+ }
791
+
792
+ /**
793
+ * @return array
794
+ */
795
+ public function get_templates() {
796
+
797
+ $type = get_post_type( $this->get_id() );
798
+ $templates = array(
799
+ array(
800
+ 'id' => '',
801
+ 'title' => __( 'Default', 'brizy' )
802
+ )
803
+ );
804
+
805
+ foreach ( wp_get_theme()->get_page_templates( null, $type ) as $key => $title ) {
806
+ $templates[] = [
807
+ 'id' => $key,
808
+ 'title' => $title
809
+ ];
810
+ }
811
+
812
+ return apply_filters( "brizy:$type:templates", $templates );
813
+ }
814
+
815
+ /**
816
+ * @param string $aTemplate
817
+ *
818
+ * @return $this
819
+ */
820
+ public function set_template( $aTemplate ) {
821
+
822
+ $aTemplate = apply_filters( 'brizy_post_template', $aTemplate );
823
+
824
+ if ( $aTemplate == '' ) {
825
+ delete_post_meta( $this->get_id(), '_wp_page_template' );
826
+ } else {
827
+ update_post_meta( $this->get_id(), '_wp_page_template', $aTemplate );
828
+ }
829
+
830
+ return $this;
831
+ }
832
+
833
+ /**
834
+ * @return mixed
835
+ */
836
+ public function get_template() {
837
+ return get_post_meta( $this->get_id(), '_wp_page_template', true );
838
+ }
839
+
840
+ /**
841
+ * @param string $editor_version
842
+ */
843
+ public function set_editor_version( $editor_version ) {
844
+ $this->editor_version = $editor_version;
845
+ update_metadata( 'post', $this->wp_post_id, self::BRIZY_POST_EDITOR_VERSION, $editor_version );
846
+ }
847
+
848
+ /**
849
+ * @param string $compiler_version
850
+ */
851
+ public function set_compiler_version( $compiler_version ) {
852
+ $this->compiler_version = $compiler_version;
853
+ update_metadata( 'post', $this->wp_post_id, self::BRIZY_POST_COMPILER_VERSION, $compiler_version );
854
+ }
855
+
856
+ /**
857
+ * @param string $plugin_version
858
+ */
859
+ public function set_plugin_version( $plugin_version ) {
860
+ $this->plugin_version = $plugin_version;
861
+ update_metadata( 'post', $this->wp_post_id, self::BRIZY_POST_PLUGIN_VERSION, $plugin_version );
862
+ }
863
+
864
+ /**
865
+ * @param $v
866
+ *
867
+ * @return $this
868
+ */
869
+ public function set_needs_compile( $v ) {
870
+ $this->needs_compile = (bool) $v;
871
+ update_metadata( 'post', $this->wp_post_id, self::BRIZY_POST_NEEDS_COMPILE_KEY, (bool) $v );
872
+
873
+ return $this;
874
+ }
875
+
876
+ /**
877
+ * @return bool
878
+ */
879
+ public function get_needs_compile() {
880
+ return $this->needs_compile;
881
+ }
882
+
883
+ /**
884
+ * @return string
885
+ */
886
+ public function get_compiler_version() {
887
+ return $this->compiler_version;
888
+ }
889
+
890
+ /**
891
+ * @return string
892
+ */
893
+ public function get_editor_version() {
894
+ return $this->editor_version;
895
+ }
896
+
897
+ protected function populateAutoSavedData( $autosave ) {
898
+ $autosave->set_template( $this->get_template() );
899
+ $autosave->set_editor_data( $this->get_editor_data() );
900
+ $autosave->set_editor_version( $this->get_editor_version() );
901
+
902
+ return $autosave;
903
+ }
904
+ }
905
+
editor/project.php CHANGED
@@ -5,7 +5,10 @@
5
  include_once ABSPATH . "wp-admin/includes/class-wp-filesystem-base.php";
6
  include_once ABSPATH . "wp-admin/includes/class-wp-filesystem-direct.php";
7
 
8
- class Brizy_Editor_Project implements Serializable {
 
 
 
9
 
10
  const BRIZY_PROJECT = 'brizy-project';
11
 
@@ -19,16 +22,6 @@ class Brizy_Editor_Project implements Serializable {
19
  */
20
  protected $api_project = null;
21
 
22
- /**
23
- * @var WP_Post
24
- */
25
- protected $post = null;
26
-
27
- /**
28
- * @var Brizy_Editor_Storage_Abstract
29
- */
30
- protected $storage = null;
31
-
32
  //---------------------------------------------------------------------------------------------------
33
  protected $id;
34
  protected $title;
@@ -55,42 +48,32 @@ class Brizy_Editor_Project implements Serializable {
55
  * Brizy_Editor_Project constructor.
56
  *
57
  * @param WP_Post $post
 
 
58
  */
59
- protected function __construct( WP_Post $post ) {
60
- $this->post = $post;
61
- $this->storage = Brizy_Editor_Storage_Project::instance( $this->post->ID );
62
- $this->loadProjectData( $this->storage->get_storage() );
63
  }
64
 
65
- public static function cleanClassCache() {
66
- self::$instance = array();
67
  }
68
 
69
- /**
70
- * This will be returned by api when project is requested
71
- */
72
- public function create_post_data() {
73
- $data = array(
74
- 'id' => $this->getId(),
75
- 'data' => $this->getDataAsJson()
76
- );
77
-
78
- return $data;
79
  }
80
 
81
- public function serialize() {
82
- $get_object_vars = get_object_vars( $this );
83
-
84
- return serialize( $get_object_vars );
85
  }
86
 
87
- public function unserialize( $data ) {
88
-
89
- $vars = unserialize( $data );
90
 
91
- foreach ( $vars as $prop => $value ) {
92
- $this->$prop = $value;
93
- }
94
  }
95
 
96
  static public function registerCustomPostType() {
@@ -111,7 +94,6 @@ class Brizy_Editor_Project implements Serializable {
111
  );
112
  }
113
 
114
-
115
  /**
116
  * @return Brizy_Editor_Project|mixed
117
  * @throws Exception
@@ -150,7 +132,7 @@ class Brizy_Editor_Project implements Serializable {
150
  * @return false|WP_Post
151
  * @throws Exception
152
  */
153
- static public function getPost() {
154
  global $wpdb;
155
 
156
  $row = $wpdb->get_results(
@@ -223,23 +205,37 @@ class Brizy_Editor_Project implements Serializable {
223
  $storage = Brizy_Editor_Storage_Project::instance( $post_id );
224
  $storage->loadStorage( $project_data );
225
 
 
226
  return $post_id;
227
  }
228
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
229
  /**
230
  * @return array
231
  */
232
- protected function getProjectData() {
233
  return array(
234
  'id' => $this->id,
235
  'title' => $this->title,
236
- //'globals' => $this->globals,
237
  'name' => $this->name,
238
  'user' => $this->user,
239
  'template' => $this->template,
240
  'created' => $this->created,
241
  'updated' => $this->updated,
242
- 'languages' => $this->languages,
243
  'pluginVersion' => $this->pluginVersion,
244
  'editorVersion' => $this->editorVersion,
245
  'signature' => $this->signature,
@@ -279,152 +275,44 @@ class Brizy_Editor_Project implements Serializable {
279
  *
280
  * @return bool
281
  */
282
- public function save() {
283
-
284
- try {
285
- $value = $this->getProjectData();
286
- $this->storage->loadStorage( $value );
287
- } catch ( Exception $exception ) {
288
- Brizy_Logger::instance()->exception( $exception );
289
-
290
- return false;
291
- }
292
- }
293
-
294
- private function get_last_autosave( $postParentId, $user_id ) {
295
- global $wpdb;
296
-
297
- $postParentId = (int) $postParentId;
298
- $user_id = (int) $user_id;
299
 
300
- $query = sprintf( "SELECT ID FROM {$wpdb->posts} WHERE post_parent = %d AND post_type= 'revision' AND post_status= 'inherit'AND post_name LIKE '%d-autosave%%'", $postParentId, $postParentId );
301
 
302
- if ( is_integer( $user_id ) ) {
303
- $query .= " AND post_author={$user_id}";
 
 
 
 
 
304
  }
305
-
306
- $query .= " ORDER BY post_date DESC";
307
-
308
- return (int) $wpdb->get_var( $query );
309
-
310
  }
311
 
312
- public function auto_save_post() {
313
- try {
314
- $user_id = get_current_user_id();
315
- $post = $this->post;
316
- $postParentId = $this->get_parent_id();
317
- $old_autosave = $this->get_last_autosave( $postParentId, $user_id );
318
- //$old_autosave = wp_get_post_autosave( $postParentId, $user_id );
319
- $post_data = get_object_vars( $post );
320
- $post_data['post_content'] = md5( time() );
321
- $autosavePost = null;
322
-
323
- if ( $old_autosave ) {
324
- $autosavePost = self::get( $old_autosave );
325
- }
326
-
327
- if ( $old_autosave ) {
328
- $new_autosave = _wp_post_revision_data( $post_data, true );
329
- $new_autosave['ID'] = $old_autosave;
330
- $new_autosave['post_author'] = $user_id;
331
-
332
- // If the new autosave has the same content as the post, delete the autosave.
333
- $autosave_is_different = false;
334
-
335
- foreach ( array_intersect( array_keys( $new_autosave ), array_keys( _wp_post_revision_fields( $post ) ) ) as $field ) {
336
- if ( normalize_whitespace( $new_autosave[ $field ] ) != normalize_whitespace( $post->$field ) ) {
337
- $autosave_is_different = true;
338
- break;
339
- }
340
- }
341
-
342
- if ( ! $autosave_is_different ) {
343
- wp_delete_post_revision( $old_autosave );
344
-
345
- return new WP_Error( 'rest_autosave_no_changes',
346
- __( 'There is nothing to save. The autosave and the post content are the same.' ),
347
- array( 'status' => 400 ) );
348
- }
349
-
350
- /**
351
- * This filter is documented in wp-admin/post.php.
352
- */
353
- do_action( 'wp_creating_autosave', $new_autosave );
354
-
355
- // wp_update_post expects escaped array.
356
- wp_update_post( wp_slash( $new_autosave ) );
357
-
358
- } else {
359
- // Create the new autosave as a special post revision.
360
- $revId = _wp_put_post_revision( $post_data, true );
361
- $autosavePost = self::get( $revId );
362
- }
363
-
364
- // @todo: copy data to autosave instance
365
- $data = $this->getProjectData();
366
-
367
- $autosavePost->loadProjectData( $data );
368
- $autosavePost->setImageOptimizerSettings( $data['image-optimizer-settings'] );
369
-
370
- $autosavePost->save();
371
-
372
- } catch ( Exception $exception ) {
373
- Brizy_Logger::instance()->exception( $exception );
374
-
375
- return false;
376
- }
377
  }
378
 
379
  /**
380
  * Create revision
381
  */
382
- public function save_wp_post() {
383
 
384
- $post_type = $this->post->post_type;
385
  $post_type_object = get_post_type_object( $post_type );
386
  $can_publish = current_user_can( $post_type_object->cap->publish_posts );
387
  $post_status = $can_publish ? 'publish' : 'pending';
388
 
389
- $this->deleteOldAutoSaves();
390
 
391
  wp_update_post( array(
392
- 'ID' => $this->get_parent_id(),
393
  'post_status' => $post_status,
394
  'post_content' => md5( time() )
395
  ) );
396
  }
397
 
398
- /**
399
- * @return bool
400
- */
401
- private function deleteOldAutoSaves() {
402
- global $wpdb;
403
- $user_id = get_current_user_id();
404
- $postParentId = $this->get_parent_id();
405
-
406
- $wpdb->query( $wpdb->prepare( "
407
- DELETE FROM {$wpdb->posts}
408
- WHERE post_author = %d and
409
- post_parent = %d and
410
- post_type = 'revision' and
411
- post_name LIKE %s", $user_id, $postParentId, "{$postParentId}-autosave%" ) );
412
-
413
- }
414
-
415
- /**
416
- * @return false|int|mixed
417
- */
418
- public function get_parent_id() {
419
- $id = wp_is_post_revision( $this->post->ID );
420
-
421
- if ( ! $id ) {
422
- $id = $this->post->ID;
423
- }
424
-
425
- return $id;
426
- }
427
-
428
  /**
429
  * @return mixed
430
  */
@@ -699,7 +587,7 @@ class Brizy_Editor_Project implements Serializable {
699
  if ( $encodedData === false ) {
700
  throw new Exception( 'Failed to base54 encode the project data' );
701
  }
702
-
703
  $this->setData( $encodedData );
704
 
705
  return $this;
@@ -777,6 +665,10 @@ class Brizy_Editor_Project implements Serializable {
777
  $this->setCloudProject( $value );
778
  }
779
 
 
 
 
 
780
  return $this->$key = $value;
781
 
782
  }
@@ -800,6 +692,9 @@ class Brizy_Editor_Project implements Serializable {
800
  if ( $key == 'brizy-cloud-project' ) {
801
  $this->setCloudProject( null );
802
  }
 
 
 
803
 
804
  if ( isset( $this->$key ) ) {
805
  unset( $this->$key );
@@ -828,6 +723,9 @@ class Brizy_Editor_Project implements Serializable {
828
  if ( $key == 'brizy-cloud-project' ) {
829
  return $this->getCloudProject();
830
  }
 
 
 
831
 
832
  if ( isset( $this->$key ) ) {
833
  return $this->$key;
@@ -843,11 +741,6 @@ class Brizy_Editor_Project implements Serializable {
843
  return $this->api_project;
844
  }
845
 
846
- /**
847
- * @return WP_Post
848
- */
849
- public function getWpPost() {
850
- return $this->post;
851
- }
852
 
853
  }
5
  include_once ABSPATH . "wp-admin/includes/class-wp-filesystem-base.php";
6
  include_once ABSPATH . "wp-admin/includes/class-wp-filesystem-direct.php";
7
 
8
+ class Brizy_Editor_Project extends Brizy_Editor_Entity {
9
+
10
+ use Brizy_Editor_AutoSaveAware;
11
+
12
 
13
  const BRIZY_PROJECT = 'brizy-project';
14
 
22
  */
23
  protected $api_project = null;
24
 
 
 
 
 
 
 
 
 
 
 
25
  //---------------------------------------------------------------------------------------------------
26
  protected $id;
27
  protected $title;
48
  * Brizy_Editor_Project constructor.
49
  *
50
  * @param WP_Post $post
51
+ *
52
+ * @throws Exception
53
  */
54
+ public function __construct( WP_Post $post ) {
55
+ $this->setWpPostId( $post->ID );
56
+ $this->loadInstanceData();
 
57
  }
58
 
59
+ protected function getObjectKey() {
60
+ return self::BRIZY_PROJECT;
61
  }
62
 
63
+ protected function loadInstanceData() {
64
+ $this->loadProjectData( $this->getStorage()->get_storage() );
 
 
 
 
 
 
 
 
65
  }
66
 
67
+ protected function populateAutoSavedData( self $autosave ) {
68
+ $autosave->loadProjectData( $this->convertToOptionValue() );
 
 
69
  }
70
 
71
+ public function getStorage() {
72
+ return Brizy_Editor_Storage_Project::instance( $this->getWpPostId() );
73
+ }
74
 
75
+ public static function cleanClassCache() {
76
+ self::$instance = array();
 
77
  }
78
 
79
  static public function registerCustomPostType() {
94
  );
95
  }
96
 
 
97
  /**
98
  * @return Brizy_Editor_Project|mixed
99
  * @throws Exception
132
  * @return false|WP_Post
133
  * @throws Exception
134
  */
135
+ static protected function getPost() {
136
  global $wpdb;
137
 
138
  $row = $wpdb->get_results(
205
  $storage = Brizy_Editor_Storage_Project::instance( $post_id );
206
  $storage->loadStorage( $project_data );
207
 
208
+
209
  return $post_id;
210
  }
211
 
212
+ /**
213
+ * This will be returned by api when project is requested
214
+ */
215
+ public function createResponse() {
216
+ $data = array(
217
+ 'id' => $this->getId(),
218
+ 'data' => $this->getDataAsJson(),
219
+ 'dataVersion' => $this->getCurrentDataVersion()
220
+ );
221
+
222
+ return $data;
223
+ }
224
+
225
+
226
  /**
227
  * @return array
228
  */
229
+ public function convertToOptionValue() {
230
  return array(
231
  'id' => $this->id,
232
  'title' => $this->title,
 
233
  'name' => $this->name,
234
  'user' => $this->user,
235
  'template' => $this->template,
236
  'created' => $this->created,
237
  'updated' => $this->updated,
238
+ //'languages' => $this->languages,
239
  'pluginVersion' => $this->pluginVersion,
240
  'editorVersion' => $this->editorVersion,
241
  'signature' => $this->signature,
275
  *
276
  * @return bool
277
  */
278
+ public function save( $autosave = 0 ) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
279
 
280
+ parent::save( $autosave );
281
 
282
+ if ( $autosave == 0 ) {
283
+ $this->saveStorage();
284
+ } else {
285
+ $this->auto_save_post( $this->getWpPost(), function ( self $autoSaveObject ) {
286
+ $this->populateAutoSavedData( $autoSaveObject );
287
+ $autoSaveObject->saveStorage();
288
+ } );
289
  }
 
 
 
 
 
290
  }
291
 
292
+ public function saveStorage() {
293
+ $value = $this->convertToOptionValue();
294
+ $this->getStorage()->loadStorage( $value );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
295
  }
296
 
297
  /**
298
  * Create revision
299
  */
300
+ public function savePost() {
301
 
302
+ $post_type = $this->getWpPost()->post_type;
303
  $post_type_object = get_post_type_object( $post_type );
304
  $can_publish = current_user_can( $post_type_object->cap->publish_posts );
305
  $post_status = $can_publish ? 'publish' : 'pending';
306
 
307
+ $this->deleteOldAutoSaves( $this->getWpPostParentId() );
308
 
309
  wp_update_post( array(
310
+ 'ID' => $this->getWpPostParentId(),
311
  'post_status' => $post_status,
312
  'post_content' => md5( time() )
313
  ) );
314
  }
315
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
316
  /**
317
  * @return mixed
318
  */
587
  if ( $encodedData === false ) {
588
  throw new Exception( 'Failed to base54 encode the project data' );
589
  }
590
+
591
  $this->setData( $encodedData );
592
 
593
  return $this;
665
  $this->setCloudProject( $value );
666
  }
667
 
668
+ if ( $key == 'image-optimizer-settings' ) {
669
+ $this->setImageOptimizerSettings( $value );
670
+ }
671
+
672
  return $this->$key = $value;
673
 
674
  }
692
  if ( $key == 'brizy-cloud-project' ) {
693
  $this->setCloudProject( null );
694
  }
695
+ if ( $key == 'image-optimizer-settings' ) {
696
+ $this->setImageOptimizerSettings( null );
697
+ }
698
 
699
  if ( isset( $this->$key ) ) {
700
  unset( $this->$key );
723
  if ( $key == 'brizy-cloud-project' ) {
724
  return $this->getCloudProject();
725
  }
726
+ if ( $key == 'image-optimizer-settings' ) {
727
+ return $this->getImageOptimizerSettings();
728
+ }
729
 
730
  if ( isset( $this->$key ) ) {
731
  return $this->$key;
741
  return $this->api_project;
742
  }
743
 
744
+
 
 
 
 
 
745
 
746
  }
editor/storage/post.php CHANGED
@@ -26,6 +26,8 @@ class Brizy_Editor_Storage_Post extends Brizy_Editor_Storage_Abstract {
26
  }
27
 
28
  /**
 
 
29
  * @return array
30
  */
31
  public function get_storage() {
26
  }
27
 
28
  /**
29
+ * @todo: rename this to get_data
30
+ *
31
  * @return array
32
  */
33
  public function get_storage() {
editor/url-builder.php CHANGED
@@ -93,7 +93,7 @@ class Brizy_Editor_UrlBuilder {
93
  */
94
  public function upload_path( $path = null ) {
95
  if ( $path ) {
96
- $path = DIRECTORY_SEPARATOR . ltrim( $path, DIRECTORY_SEPARATOR );
97
  }
98
 
99
  return wp_normalize_path( $this->upload_dir['basedir'] . $path );
@@ -120,7 +120,7 @@ class Brizy_Editor_UrlBuilder {
120
  public function brizy_upload_path( $path = null ) {
121
 
122
  if ( $path ) {
123
- $path = ltrim( $path, DIRECTORY_SEPARATOR );
124
  }
125
 
126
  return $this->upload_path( sprintf( Brizy_Config::LOCAL_PAGE_ASSET_STATIC_URL, $path ) );
@@ -134,7 +134,7 @@ class Brizy_Editor_UrlBuilder {
134
  public function brizy_upload_relative_path( $path = null ) {
135
 
136
  if ( $path ) {
137
- $path = ltrim( $path, DIRECTORY_SEPARATOR );
138
  }
139
 
140
  return ltrim( sprintf( Brizy_Config::LOCAL_PAGE_ASSET_STATIC_URL, $path ), "/" );
@@ -171,7 +171,7 @@ class Brizy_Editor_UrlBuilder {
171
  }
172
 
173
  if ( $path ) {
174
- $path = DIRECTORY_SEPARATOR . ltrim( $path, DIRECTORY_SEPARATOR );
175
  }
176
 
177
  return $this->brizy_upload_path( $post_id . $path );
@@ -183,7 +183,7 @@ class Brizy_Editor_UrlBuilder {
183
  }
184
 
185
  if ( $path ) {
186
- $path = DIRECTORY_SEPARATOR . ltrim( $path, DIRECTORY_SEPARATOR );
187
  }
188
 
189
  return $this->brizy_upload_relative_path( $post_id . $path );
@@ -217,7 +217,7 @@ class Brizy_Editor_UrlBuilder {
217
  public function editor_asset_path( $path = null ) {
218
 
219
  if ( $path ) {
220
- $path = DIRECTORY_SEPARATOR . ltrim( $path, DIRECTORY_SEPARATOR );
221
  }
222
 
223
  return $this->brizy_upload_path( 'editor' . $path );
@@ -239,9 +239,9 @@ class Brizy_Editor_UrlBuilder {
239
  */
240
  static public function editor_build_path( $path = null ) {
241
  if ( $path ) {
242
- $path = DIRECTORY_SEPARATOR . ltrim(
243
- str_replace( array( '/', '\\' ), DIRECTORY_SEPARATOR, $path ),
244
- DIRECTORY_SEPARATOR );
245
  }
246
 
247
  return Brizy_Config::EDITOR_BUILD_PATH . $path;
@@ -254,7 +254,7 @@ class Brizy_Editor_UrlBuilder {
254
  */
255
  public function media_asset_path( $path = null ) {
256
  if ( $path ) {
257
- $path = DIRECTORY_SEPARATOR . ltrim( $path, DIRECTORY_SEPARATOR );
258
  }
259
 
260
  return $this->brizy_upload_path( "media" . $path );
93
  */
94
  public function upload_path( $path = null ) {
95
  if ( $path ) {
96
+ $path = '/' . ltrim( $path, '/' );
97
  }
98
 
99
  return wp_normalize_path( $this->upload_dir['basedir'] . $path );
120
  public function brizy_upload_path( $path = null ) {
121
 
122
  if ( $path ) {
123
+ $path = ltrim( $path, '/' );
124
  }
125
 
126
  return $this->upload_path( sprintf( Brizy_Config::LOCAL_PAGE_ASSET_STATIC_URL, $path ) );
134
  public function brizy_upload_relative_path( $path = null ) {
135
 
136
  if ( $path ) {
137
+ $path = ltrim( $path, '/' );
138
  }
139
 
140
  return ltrim( sprintf( Brizy_Config::LOCAL_PAGE_ASSET_STATIC_URL, $path ), "/" );
171
  }
172
 
173
  if ( $path ) {
174
+ $path = '/' . ltrim( $path, '/' );
175
  }
176
 
177
  return $this->brizy_upload_path( $post_id . $path );
183
  }
184
 
185
  if ( $path ) {
186
+ $path = '/' . ltrim( $path, '/' );
187
  }
188
 
189
  return $this->brizy_upload_relative_path( $post_id . $path );
217
  public function editor_asset_path( $path = null ) {
218
 
219
  if ( $path ) {
220
+ $path = '/' . ltrim( $path, '/' );
221
  }
222
 
223
  return $this->brizy_upload_path( 'editor' . $path );
239
  */
240
  static public function editor_build_path( $path = null ) {
241
  if ( $path ) {
242
+ $path = '/' . ltrim(
243
+ str_replace( array( '/', '\\' ), '/', $path ),
244
+ '/' );
245
  }
246
 
247
  return Brizy_Config::EDITOR_BUILD_PATH . $path;
254
  */
255
  public function media_asset_path( $path = null ) {
256
  if ( $path ) {
257
+ $path = '/' . ltrim( $path, '/' );
258
  }
259
 
260
  return $this->brizy_upload_path( "media" . $path );
editor/user.php CHANGED
@@ -187,7 +187,7 @@ class Brizy_Editor_User {
187
  $editor_data = $post->get_editor_data();
188
 
189
  $config = Brizy_Editor_Editor_Editor::get( $project, $post )->config();
190
- $urlBuilder = new Brizy_Editor_UrlBuilder( $project, $post->get_parent_id() );
191
 
192
 
193
  $page_html = $this->get_client()->compile_page( $project, $editor_data, $config, $urlBuilder->compiler_url() );
187
  $editor_data = $post->get_editor_data();
188
 
189
  $config = Brizy_Editor_Editor_Editor::get( $project, $post )->config();
190
+ $urlBuilder = new Brizy_Editor_UrlBuilder( $project, $post->getWpPostParentId() );
191
 
192
 
193
  $page_html = $this->get_client()->compile_page( $project, $editor_data, $config, $urlBuilder->compiler_url() );
maintenance-mode.php ADDED
@@ -0,0 +1,181 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Brizy_MaintenanceMode {
4
+
5
+ private static $instance;
6
+ private $send_headers = false;
7
+
8
+ public static function init() {
9
+
10
+ if ( self::$instance ) {
11
+ return self::$instance;
12
+ }
13
+
14
+ self::$instance = new self();
15
+
16
+ return self::$instance;
17
+ }
18
+
19
+ /**
20
+ * Brizy_Maintenance_Mode constructor.
21
+ */
22
+ private function __construct() {
23
+ $args = self::get_settings();
24
+
25
+ if ( 'maintenance' === $args['mode'] ) {
26
+ add_action( 'template_redirect', [ $this, '_action_template_redirect' ], 11 );
27
+ }
28
+
29
+ if ( ( 'maintenance' === $args['mode'] || 'coming_soon' === $args['mode'] ) && ! empty( $args['page'] ) ) {
30
+ add_action( 'admin_bar_menu', [ $this, 'action_add_menu_in_admin_bar' ], 301 );
31
+ add_action( 'admin_head', [ $this, 'print_style' ] );
32
+ add_action( 'wp_head', [ $this, 'print_style' ] );
33
+ }
34
+
35
+ $this->set_query( $args );
36
+ }
37
+
38
+ private function set_query( $args ) {
39
+
40
+ if ( empty( $args['mode'] ) || current_user_can( 'manage_options' ) || $this->is_login() ) {
41
+ return;
42
+ }
43
+
44
+ if ( 'logged' === $args['who'] && is_user_logged_in() ) {
45
+ return;
46
+ }
47
+
48
+ if ( false !== strpos( $args['ips'], $this->get_user_ip() ) ) {
49
+ return;
50
+ }
51
+
52
+ if ( 'custom' === $args['who'] ) {
53
+ $user = wp_get_current_user();
54
+ $user_roles = $user->roles;
55
+ $compare_roles = array_intersect( $user_roles, $args['roles'] );
56
+
57
+ if ( ! empty( $compare_roles ) ) {
58
+ return;
59
+ }
60
+ }
61
+
62
+ if ( is_user_logged_in() && ( is_admin() || ! empty( $_GET ) ) ) {
63
+ wp_redirect( home_url() );
64
+ exit;
65
+ }
66
+
67
+ if ( empty( $args['page'] ) ) {
68
+ return;
69
+ }
70
+
71
+ $this->send_headers = true;
72
+
73
+ $GLOBALS['post'] = get_post( $args['page'] );
74
+
75
+ query_posts( [
76
+ 'p' => $args['page'],
77
+ 'post_type' => 'page',
78
+ ] );
79
+ }
80
+
81
+ public function _action_template_redirect() {
82
+
83
+ if ( ! $this->send_headers ) {
84
+ return;
85
+ }
86
+
87
+ $protocol = wp_get_server_protocol();
88
+ header( "$protocol 503 Service Unavailable", true, 503 );
89
+ header( 'Content-Type: text/html; charset=utf-8' );
90
+ header( 'Retry-After: 600' );
91
+ }
92
+
93
+ /**
94
+ * Add menu in admin bar.
95
+ *
96
+ * Adds "Maintenance Mode" items to the WordPress admin bar.
97
+ *
98
+ * Fired by `admin_bar_menu` filter.
99
+ *
100
+ * @access public
101
+ *
102
+ * @param \WP_Admin_Bar $wp_admin_bar WP_Admin_Bar instance, passed by reference.
103
+ */
104
+ public function action_add_menu_in_admin_bar( \WP_Admin_Bar $wp_admin_bar ) {
105
+
106
+ $args = self::get_settings();
107
+
108
+ $wp_admin_bar->add_node( [
109
+ 'id' => 'brizy-maintenance-on',
110
+ 'title' => __( 'Maintenance Mode ON', 'brizy' ),
111
+ 'href' => esc_url( add_query_arg( [ 'page' => Brizy_Admin_Settings::menu_slug(), 'tab' => 'maintenance' ], admin_url() ) ),
112
+ ] );
113
+
114
+ $wp_admin_bar->add_node( [
115
+ 'id' => 'brizy-maintenance-edit',
116
+ 'parent' => 'brizy-maintenance-on',
117
+ 'title' => __( 'Edit Page', 'brizy' ),
118
+ 'href' => add_query_arg(
119
+ [ Brizy_Editor_Constants::EDIT_KEY => '' ],
120
+ get_permalink( $args['page'] )
121
+ ),
122
+ ] );
123
+ }
124
+
125
+ /**
126
+ * Print css style.
127
+ *
128
+ * Adds custom CSS to the HEAD html tag. The CSS that emphasise the maintenance
129
+ * mode with red colors.
130
+ *
131
+ * Fired by `admin_head` and `wp_head` filters.
132
+ *
133
+ * @access public
134
+ */
135
+ public function print_style() {
136
+ ?>
137
+ <style>#wp-admin-bar-brizy-maintenance-on > a { background-color: #dc3232; }
138
+ #wp-admin-bar-brizy-maintenance-on > .ab-item:before { content: "\f160"; top: 2px; }
139
+ </style>
140
+ <?php
141
+ }
142
+
143
+ private function get_user_ip() {
144
+
145
+ if ( ! empty( $_SERVER['HTTP_X_FORWARDED_FOR'] ) ) {
146
+ if ( strpos( $_SERVER['HTTP_X_FORWARDED_FOR'], ',' ) > 0 ) {
147
+ $addr = explode( ",", $_SERVER['HTTP_X_FORWARDED_FOR'] );
148
+
149
+ return trim( $addr[0] );
150
+ }
151
+
152
+ return $_SERVER['HTTP_X_FORWARDED_FOR'];
153
+
154
+ } elseif ( ! empty( $_SERVER['REMOTE_ADDR'] ) ) {
155
+ return $_SERVER['REMOTE_ADDR'];
156
+ } elseif ( ! empty( $_SERVER['HTTP_CLIENT_IP'] ) ) {
157
+ return $_SERVER['HTTP_CLIENT_IP'];
158
+ } else {
159
+ return 'unknown.ip';
160
+ }
161
+ }
162
+
163
+ private function is_login() {
164
+ $files = get_included_files();
165
+
166
+ return
167
+ in_array( ABSPATH . 'wp-login.php', $files ) ||
168
+ in_array( ABSPATH . 'wp-register.php', $files ) ||
169
+ $_SERVER['PHP_SELF'] == '/wp-login.php' ||
170
+ ( isset( $_GLOBALS['pagenow'] ) && $GLOBALS['pagenow'] === 'wp-login.php' );
171
+ }
172
+
173
+ public static function get_settings() {
174
+ return wp_parse_args( Brizy_Editor_Storage_Common::instance()->get( 'maintenance', false ), [
175
+ 'mode' => '',
176
+ 'who' => 'logged',
177
+ 'roles' => [],
178
+ 'ips' => '',
179
+ ] );
180
+ }
181
+ }
public/asset-proxy.php CHANGED
@@ -31,7 +31,7 @@ class Brizy_Public_AssetProxy extends Brizy_Public_AbstractProxy {
31
  $brizyPost = Brizy_Editor_Post::get( (int) $vars[ self::ENDPOINT_POST ] );
32
 
33
  if ( $brizyPost->uses_editor() ) {
34
- $this->urlBuilder->set_post_id( $brizyPost->get_parent_id() );
35
  }
36
 
37
  $endpoint_value = $wp_query->query_vars[ self::ENDPOINT ];
31
  $brizyPost = Brizy_Editor_Post::get( (int) $vars[ self::ENDPOINT_POST ] );
32
 
33
  if ( $brizyPost->uses_editor() ) {
34
+ $this->urlBuilder->set_post_id( $brizyPost->getWpPostParentId() );
35
  }
36
 
37
  $endpoint_value = $wp_query->query_vars[ self::ENDPOINT ];
public/block-screenshot-proxy.php CHANGED
@@ -59,7 +59,7 @@ class Brizy_Public_BlockScreenshotProxy extends Brizy_Public_AbstractProxy {
59
  switch ( $blockType ) {
60
  case Brizy_Editor_BlockScreenshotApi::BLOCK_TYPE_NORMAL:
61
  $brizyPost = Brizy_Editor_Post::get( $blockPost );
62
- $this->urlBuilder->set_post_id( $brizyPost->get_parent_id() );
63
  $folderPath = $this->urlBuilder->page_upload_path( 'blockThumbnails' );
64
  break;
65
  case Brizy_Editor_BlockScreenshotApi::BLOCK_TYPE_GLOBAL:
59
  switch ( $blockType ) {
60
  case Brizy_Editor_BlockScreenshotApi::BLOCK_TYPE_NORMAL:
61
  $brizyPost = Brizy_Editor_Post::get( $blockPost );
62
+ $this->urlBuilder->set_post_id( $brizyPost->getWpPostParentId() );
63
  $folderPath = $this->urlBuilder->page_upload_path( 'blockThumbnails' );
64
  break;
65
  case Brizy_Editor_BlockScreenshotApi::BLOCK_TYPE_GLOBAL:
public/editor-build/131-wp/editor/css/editor.css DELETED
@@ -1,11418 +0,0 @@
1
- .brz-ow-hidden{overflow:hidden!important}
2
- .brz-ow-visible{overflow:visible!important}
3
- @font-face{font-family:nunito;src:url(../fonts/nunito-regular-webfont.eot);src:url(../fonts/nunito-regular-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/nunito-regular-webfont.woff2) format("woff2"),url(../fonts/nunito-regular-webfont.woff) format("woff");font-weight:400;font-style:normal}
4
- @font-face{font-family:nunito;src:url(../fonts/nunito-italic-webfont.eot);src:url(../fonts/nunito-italic-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/nunito-italic-webfont.woff2) format("woff2"),url(../fonts/nunito-italic-webfont.woff) format("woff");font-weight:400;font-style:italic}
5
- @font-face{font-family:nunito;src:url(../fonts/nunito-semibold-webfont.eot);src:url(../fonts/nunito-semibold-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/nunito-semibold-webfont.woff2) format("woff2"),url(../fonts/nunito-semibold-webfont.woff) format("woff");font-weight:600;font-style:normal}
6
- @font-face{font-family:nunito;src:url(../fonts/nunito-bold-webfont.eot);src:url(../fonts/nunito-bold-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/nunito-bold-webfont.woff2) format("woff2"),url(../fonts/nunito-bold-webfont.woff) format("woff");font-weight:700;font-style:normal}
7
- .brz-ed-sorting{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:move}
8
- .brz-ed-sorting *{pointer-events:none}
9
- .brz-ed-sorting .brz-ed-draggable{display:none}
10
- .brz-ed-sorting .sortable-hovered:not(.brz-ed-border__sortable):not(.brz-ed-container-trigger){position:relative}
11
- .brz-ed-sorting .sortable-hovered.brz-ed-container-trigger{background-color:#03080f}
12
- .brz-ed-sorting .sortable-hovered.brz-ed-container-trigger:after{opacity:1!important;background-color:#fff!important}
13
- .brz-ed-sorting .sortable-chosen:after,.brz-ed-sorting .sortable-chosen:before{display:none}
14
- .brz-ed-sorting .sortable-chosen :not(.brz-ed-border){visibility:hidden!important}
15
- .brz-ed-sorting .sortable-chosen>.brz-ed-border.brz-ed-border--grey>.brz-ed-border__inner{border-color:#879294}
16
- .brz-ed-sorting .sortable-chosen>.brz-ed-border.brz-ed-border--blue>.brz-ed-border__inner{border-color:#3dbfe8}
17
- .brz-ed-sorting .sortable-chosen>.brz-ed-border.brz-ed-border--red>.brz-ed-border__inner{border-color:#ed2164}
18
- .brz-ed-sorting .sortable-chosen>.brz-ed-border>.brz-ed-border__inner{top:-1px;bottom:-1px;visibility:visible!important}
19
- .brz-ed-sorting .sortable-chosen.brz-columns__posts>.brz-ed-border>.brz-ed-border__inner{top:-2px;bottom:-2px}
20
- .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-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}
21
- .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}
22
- .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}
23
- .brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-columns:not(.brz-columns__posts)>.brz-ed-border.brz-ed-border--grey>.brz-ed-border__inner{border-left-color:#879294;border-right-color:#879294}
24
- .brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-columns:not(.brz-columns__posts)>.brz-ed-border.brz-ed-border--blue>.brz-ed-border__inner{border-left-color:#3dbfe8;border-right-color:#3dbfe8}
25
- .brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-columns:not(.brz-columns__posts)>.brz-ed-border.brz-ed-border--red>.brz-ed-border__inner{border-left-color:#ed2164;border-right-color:#ed2164}
26
- .brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-columns:not(.brz-columns__posts)>.brz-ed-border>.brz-ed-border__inner{top:-1px;bottom:-1px;-webkit-transition:none;transition:none}
27
- .brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty).brz-row{margin-top:5px;margin-bottom:5px}
28
- .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}
29
- .brz-ed-sorting .sortable-hovered-bottom:not(.brz-ed-container-trigger):not(.brz-ed-border__sortable):after{opacity:1!important;-webkit-transform:scaleY(2);transform:scaleY(2);border-radius:4px}
30
- .brz-ed-sorting .sortable-hovered-left:after,.brz-ed-sorting .sortable-hovered-right:after{top:0;width:2px;height:100%}
31
- .brz-ed-sorting .sortable-hovered-left>.brz-ed-border.brz-ed-border--grey>.brz-ed-border__inner{border-left-color:#879294}
32
- .brz-ed-sorting .sortable-hovered-left>.brz-ed-border.brz-ed-border--blue>.brz-ed-border__inner{border-left-color:#3dbfe8}
33
- .brz-ed-sorting .sortable-hovered-left>.brz-ed-border.brz-ed-border--red>.brz-ed-border__inner{border-left-color:#ed2164}
34
- .brz-ed-sorting .sortable-hovered-left>.brz-ed-border>.brz-ed-border__inner{border-left-width:4px;border-radius:4px;-webkit-transition:none;transition:none;top:-2px!important;bottom:-2px!important;left:-1px!important}
35
- .brz-ed-sorting .sortable-hovered-right>.brz-ed-border.brz-ed-border--grey>.brz-ed-border__inner{border-right-color:#879294}
36
- .brz-ed-sorting .sortable-hovered-right>.brz-ed-border.brz-ed-border--blue>.brz-ed-border__inner{border-right-color:#3dbfe8}
37
- .brz-ed-sorting .sortable-hovered-right>.brz-ed-border.brz-ed-border--red>.brz-ed-border__inner{border-right-color:#ed2164}
38
- .brz-ed-sorting .sortable-hovered-right>.brz-ed-border>.brz-ed-border__inner{border-right-width:4px;border-radius:4px;-webkit-transition:none;transition:none;right:-3px!important;top:-2px!important;bottom:-2px!important}
39
- .sortable-helper{width:30px;height:30px;border-radius:50%;background-color:#3dbfe8;cursor:move}
40
- .sortable-placeholder{outline:1px solid #3dbfe8}
41
- .brz-ed .brz-ed-sortable--empty{position:relative;min-height:125px;width:calc(100% - 20px);height:calc(100% - 20px);margin:10px}
42
- .brz-ed .brz-ed-sortable--empty .brz-ed-border__inner{opacity:.6}
43
- .brz-ed .brz-ed-sortable--empty .brz-ed-border--grey{border-color:#879294}
44
- .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}
45
- .brz{/*!
46
- * animate.css -https://daneden.github.io/animate.css/
47
- * Version - 3.7.2
48
- * Licensed under the MIT license - http://opensource.org/licenses/MIT
49
- *
50
- * Copyright (c) 2019 Daniel Eden
51
- */}
52
- html{-webkit-box-sizing:border-box;box-sizing:border-box}
53
- *,:after,:before{-webkit-box-sizing:border-box;box-sizing:border-box}
54
- @-ms-viewport{width:device-width}
55
- .brz .brz-figcaption,.brz .brz-figure,.brz .brz-section{display:block}
56
- body{margin:0}
57
- body.brz-ed{background-color:#f3f3f3}
58
- body.brz::after,body.brz::before{display:none}
59
- .brz-iframe{margin:0;padding:0;border:0;font:inherit;font-size:100%;vertical-align:baseline}
60
- .brz{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
61
- .brz .brz-root__container.brz-reset-all{display:block;overflow:hidden;font-family:inherit}
62
- .brz .brz-hr{-webkit-box-sizing:content-box;box-sizing:content-box;height:0;overflow:visible;margin:0}
63
- .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}
64
- .brz .brz-p{margin-top:0;margin-bottom:0;padding-top:0;padding-bottom:0}
65
- .brz .brz-span{float:none;margin:0;padding:0;font-family:inherit;font-size:inherit;font-weight:inherit;line-height:inherit;letter-spacing:inherit;color:inherit}
66
- .brz .brz-dl,.brz .brz-ol,.brz .brz-ul{margin:0;list-style:none;padding:0}
67
- .brz .brz-ol .brz-ol,.brz .brz-ol .brz-ul,.brz .brz-ul .brz-ol,.brz .brz-ul .brz-ul{margin:0}
68
- .brz .brz-dt{font-weight:700}
69
- .brz .brz-dd{margin-bottom:.5rem;margin-left:0}
70
- .brz .brz-blockquote{margin:0 0 1rem}
71
- .brz .brz-dfn{font-style:italic}
72
- .brz .brz-b,.brz .brz-strong{font-weight:700}
73
- .brz .brz-a:not(.brz-btn){color:#3dbfe8;text-decoration:none;background-color:transparent;-webkit-text-decoration-skip:objects;-webkit-box-shadow:none;box-shadow:none}
74
- .brz .brz-a:not(.brz-btn)[href]:hover{color:#1aabd8;-webkit-box-shadow:none;box-shadow:none;cursor:pointer}
75
- .brz .brz-a:not(.brz-btn):active,.brz .brz-a:not(.brz-btn):focus,.brz .brz-a:not(.brz-btn):hover{outline:0}
76
- .brz .brz-a.brz-btn[href]{text-decoration:none}
77
- .brz .brz-figure{margin:0;min-width:auto;min-height:auto}
78
- .brz .brz-img{vertical-align:middle;border-style:none}
79
- .brz svg:not(:root){overflow:hidden}
80
- .brz .brz-button,.brz .brz-input,.brz .brz-label,.brz .brz-textarea{-ms-touch-action:manipulation;touch-action:manipulation}
81
- .brz .brz-table{border-collapse:collapse}
82
- .brz .brz-caption{padding-top:.75rem;padding-bottom:.75rem;color:#828b92;text-align:left;caption-side:bottom}
83
- .brz .brz-th{text-align:left}
84
- .brz .brz-form{margin:0}
85
- .brz .brz-label{display:inline-block;margin-bottom:0;font-weight:400}
86
- .brz .brz-button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}
87
- .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}
88
- .brz .brz-button,.brz .brz-input{overflow:visible}
89
- .brz .brz-button,.brz .brz-select{text-transform:none}
90
- .brz .brz-button{-webkit-appearance:button}
91
- .brz .brz-button::-moz-focus-inner{padding:0;border-style:none}
92
- .brz .brz-input[type=checkbox],.brz .brz-input[type=radio]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}
93
- .brz .brz-input[type=number]{-moz-appearance:textfield}
94
- .brz .brz-input[type=date],.brz .brz-input[type=datetime-local],.brz .brz-input[type=month],.brz .brz-input[type=time]{-webkit-appearance:listbox}
95
- .brz .brz-textarea{overflow:auto;resize:vertical}
96
- .brz .brz-fieldset{min-width:0;padding:0;margin:0;border:0}
97
- .brz .brz-iframe,.brz .brz-object{margin-bottom:0;max-width:100%}
98
- .brz .brz-iframe{margin:0;padding:0;border:0;font:inherit;font-size:100%;vertical-align:baseline}
99
- .brz [hidden]{display:none!important}
100
- .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-attachment:scroll;background-blend-mode:normal;background-clip:border-box;background-color:transparent;background-image:none;background-origin:padding-box;background-position:0 0;background-repeat:repeat;background-size:auto auto;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-bottom-color:currentcolor;border-bottom-left-radius:0;border-bottom-right-radius:0;border-bottom-style:none;border-bottom-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-left-color:currentcolor;border-left-style:none;border-left-width:medium;border-right-color:currentcolor;border-right-style:none;border-right-width:medium;border-spacing:0;border-top-color:currentcolor;border-top-left-radius:0;border-top-right-radius:0;border-top-style:none;border-top-width:medium;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;-moz-column-count:auto;column-count:auto;-webkit-column-fill:balance;-moz-column-fill:balance;column-fill:balance;-webkit-column-gap:normal;-moz-column-gap:normal;column-gap:normal;-webkit-column-rule-color:currentcolor;-moz-column-rule-color:currentcolor;column-rule-color:currentcolor;-webkit-column-rule-style:none;-moz-column-rule-style:none;column-rule-style:none;-webkit-column-rule-width:medium;-moz-column-rule-width:medium;column-rule-width:medium;-webkit-column-span:none;-moz-column-span:none;column-span:none;-webkit-column-width:auto;-moz-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;list-style-image:none;list-style-position:outside;list-style-type:disc;-webkit-margin-after:0;margin-block-end:0;-webkit-margin-before:0;margin-block-start:0;margin-bottom:0;-webkit-margin-end:0;margin-inline-end:0;-webkit-margin-start:0;margin-inline-start:0;margin-left:0;margin-right:0;margin-top: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;padding-bottom:0;-webkit-padding-end:0;padding-inline-end:0;-webkit-padding-start:0;padding-inline-start:0;padding-left:0;padding-right:0;padding-top: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;-ms-scroll-snap-coordinate:none;scroll-snap-coordinate:none;-ms-scroll-snap-destination:0 0;scroll-snap-destination:0 0;-ms-scroll-snap-points-x:none;scroll-snap-points-x:none;-ms-scroll-snap-points-y:none;scroll-snap-points-y: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;-moz-text-align-last:auto;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-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;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}
101
- .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}
102
- .brz .brz-h1{font-size:55px;font-weight:400}
103
- .brz .brz-h2{font-size:40px}
104
- .brz .brz-h3{font-size:32px}
105
- .brz .brz-h4{font-size:26px}
106
- .brz .brz-h5{font-size:19px}
107
- .brz .brz-h6{font-size:14px}
108
- .brz .brz-p{font-size:14px;font-weight:400}
109
- .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}
110
- .brz .brz-flex-xs-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}
111
- .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}
112
- .brz .brz-justify-content-xs-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}
113
- .brz .brz-justify-content-xs-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}
114
- .brz .brz-justify-content-xs-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}
115
- .brz .brz-justify-content-xs-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}
116
- .brz .brz-justify-content-xs-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}
117
- .brz .brz-align-items-xs-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}
118
- .brz .brz-align-items-xs-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}
119
- .brz .brz-align-items-xs-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}
120
- .brz .brz-align-items-xs-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}
121
- .brz .brz-align-items-xs-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}
122
- .brz .brz-col-first-xs{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}
123
- .brz .brz-col-last-xs{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}
124
- .brz .brz-align-self-xs-start{-ms-flex-item-align:start!important;align-self:flex-start!important}
125
- .brz .brz-align-self-xs-end{-ms-flex-item-align:end!important;align-self:flex-end!important}
126
- .brz .brz-align-self-xs-center{-ms-flex-item-align:center!important;align-self:center!important}
127
- .brz .brz-align-self-xs-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}
128
- .brz .brz-align-self-xs-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}
129
- .brz .brz-flex-xs-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}
130
- .brz .brz-flex-xs-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}
131
- .brz .brz-align-content-xs-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}
132
- .brz .brz-align-content-xs-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}
133
- .brz .brz-align-content-xs-center{-ms-flex-line-pack:center!important;align-content:center!important}
134
- .brz .brz-align-content-xs-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}
135
- .brz .brz-align-content-xs-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}
136
- .brz .brz-align-content-xs-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}
137
- @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}
138
- .brz .brz-flex-ms-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}
139
- .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}
140
- .brz .brz-justify-content-ms-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}
141
- .brz .brz-justify-content-ms-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}
142
- .brz .brz-justify-content-ms-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}
143
- .brz .brz-justify-content-ms-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}
144
- .brz .brz-justify-content-ms-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}
145
- .brz .brz-align-items-ms-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}
146
- .brz .brz-align-items-ms-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}
147
- .brz .brz-align-items-ms-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}
148
- .brz .brz-align-items-ms-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}
149
- .brz .brz-align-items-ms-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}
150
- .brz .brz-col-first-ms{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}
151
- .brz .brz-col-last-ms{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}
152
- .brz .brz-align-self-ms-start{-ms-flex-item-align:start!important;align-self:flex-start!important}
153
- .brz .brz-align-self-ms-end{-ms-flex-item-align:end!important;align-self:flex-end!important}
154
- .brz .brz-align-self-ms-center{-ms-flex-item-align:center!important;align-self:center!important}
155
- .brz .brz-align-self-ms-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}
156
- .brz .brz-align-self-ms-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}
157
- .brz .brz-flex-ms-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}
158
- .brz .brz-flex-ms-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}
159
- .brz .brz-align-content-ms-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}
160
- .brz .brz-align-content-ms-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}
161
- .brz .brz-align-content-ms-center{-ms-flex-line-pack:center!important;align-content:center!important}
162
- .brz .brz-align-content-ms-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}
163
- .brz .brz-align-content-ms-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}
164
- .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}
165
- .brz .brz-flex-sm-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}
166
- .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}
167
- .brz .brz-justify-content-sm-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}
168
- .brz .brz-justify-content-sm-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}
169
- .brz .brz-justify-content-sm-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}
170
- .brz .brz-justify-content-sm-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}
171
- .brz .brz-justify-content-sm-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}
172
- .brz .brz-align-items-sm-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}
173
- .brz .brz-align-items-sm-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}
174
- .brz .brz-align-items-sm-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}
175
- .brz .brz-align-items-sm-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}
176
- .brz .brz-align-items-sm-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}
177
- .brz .brz-col-first-sm{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}
178
- .brz .brz-col-last-sm{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}
179
- .brz .brz-align-self-sm-start{-ms-flex-item-align:start!important;align-self:flex-start!important}
180
- .brz .brz-align-self-sm-end{-ms-flex-item-align:end!important;align-self:flex-end!important}
181
- .brz .brz-align-self-sm-center{-ms-flex-item-align:center!important;align-self:center!important}
182
- .brz .brz-align-self-sm-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}
183
- .brz .brz-align-self-sm-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}
184
- .brz .brz-flex-sm-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}
185
- .brz .brz-flex-sm-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}
186
- .brz .brz-align-content-sm-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}
187
- .brz .brz-align-content-sm-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}
188
- .brz .brz-align-content-sm-center{-ms-flex-line-pack:center!important;align-content:center!important}
189
- .brz .brz-align-content-sm-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}
190
- .brz .brz-align-content-sm-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}
191
- .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}
192
- .brz .brz-flex-md-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}
193
- .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}
194
- .brz .brz-justify-content-md-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}
195
- .brz .brz-justify-content-md-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}
196
- .brz .brz-justify-content-md-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}
197
- .brz .brz-justify-content-md-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}
198
- .brz .brz-justify-content-md-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}
199
- .brz .brz-align-items-md-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}
200
- .brz .brz-align-items-md-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}
201
- .brz .brz-align-items-md-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}
202
- .brz .brz-align-items-md-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}
203
- .brz .brz-align-items-md-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}
204
- .brz .brz-col-first-md{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}
205
- .brz .brz-col-last-md{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}
206
- .brz .brz-align-self-md-start{-ms-flex-item-align:start!important;align-self:flex-start!important}
207
- .brz .brz-align-self-md-end{-ms-flex-item-align:end!important;align-self:flex-end!important}
208
- .brz .brz-align-self-md-center{-ms-flex-item-align:center!important;align-self:center!important}
209
- .brz .brz-align-self-md-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}
210
- .brz .brz-align-self-md-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}
211
- .brz .brz-flex-md-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}
212
- .brz .brz-flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}
213
- .brz .brz-align-content-md-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}
214
- .brz .brz-align-content-md-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}
215
- .brz .brz-align-content-md-center{-ms-flex-line-pack:center!important;align-content:center!important}
216
- .brz .brz-align-content-md-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}
217
- .brz .brz-align-content-md-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}
218
- .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}
219
- .brz .brz-flex-lg-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}
220
- .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}
221
- .brz .brz-justify-content-lg-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}
222
- .brz .brz-justify-content-lg-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}
223
- .brz .brz-justify-content-lg-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}
224
- .brz .brz-justify-content-lg-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}
225
- .brz .brz-justify-content-lg-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}
226
- .brz .brz-align-items-lg-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}
227
- .brz .brz-align-items-lg-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}
228
- .brz .brz-align-items-lg-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}
229
- .brz .brz-align-items-lg-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}
230
- .brz .brz-align-items-lg-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}
231
- .brz .brz-col-first-lg{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}
232
- .brz .brz-col-last-lg{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}
233
- .brz .brz-align-self-lg-start{-ms-flex-item-align:start!important;align-self:flex-start!important}
234
- .brz .brz-align-self-lg-end{-ms-flex-item-align:end!important;align-self:flex-end!important}
235
- .brz .brz-align-self-lg-center{-ms-flex-item-align:center!important;align-self:center!important}
236
- .brz .brz-align-self-lg-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}
237
- .brz .brz-align-self-lg-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}
238
- .brz .brz-flex-lg-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}
239
- .brz .brz-flex-lg-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}
240
- .brz .brz-align-content-lg-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}
241
- .brz .brz-align-content-lg-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}
242
- .brz .brz-align-content-lg-center{-ms-flex-line-pack:center!important;align-content:center!important}
243
- .brz .brz-align-content-lg-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}
244
- .brz .brz-align-content-lg-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}
245
- .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}
246
- .brz .brz-flex-xl-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}
247
- .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}
248
- .brz .brz-justify-content-xl-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}
249
- .brz .brz-justify-content-xl-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}
250
- .brz .brz-justify-content-xl-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}
251
- .brz .brz-justify-content-xl-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}
252
- .brz .brz-justify-content-xl-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}
253
- .brz .brz-align-items-xl-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}
254
- .brz .brz-align-items-xl-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}
255
- .brz .brz-align-items-xl-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}
256
- .brz .brz-align-items-xl-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}
257
- .brz .brz-align-items-xl-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}
258
- .brz .brz-col-first-xl{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}
259
- .brz .brz-col-last-xl{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}
260
- .brz .brz-align-self-xl-start{-ms-flex-item-align:start!important;align-self:flex-start!important}
261
- .brz .brz-align-self-xl-end{-ms-flex-item-align:end!important;align-self:flex-end!important}
262
- .brz .brz-align-self-xl-center{-ms-flex-item-align:center!important;align-self:center!important}
263
- .brz .brz-align-self-xl-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}
264
- .brz .brz-align-self-xl-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}
265
- .brz .brz-flex-xl-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}
266
- .brz .brz-flex-xl-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}
267
- .brz .brz-align-content-xl-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}
268
- .brz .brz-align-content-xl-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}
269
- .brz .brz-align-content-xl-center{-ms-flex-line-pack:center!important;align-content:center!important}
270
- .brz .brz-align-content-xl-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}
271
- .brz .brz-align-content-xl-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}
272
- .brz .brz-align-content-xl-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}}.brz .brz-d-block{display:block!important}
273
- .brz .brz-d-inline-block{display:inline-block!important}
274
- .brz .brz-d-inline{display:inline!important}
275
- .brz .brz-d-none{display:none!important}
276
- .brz .brz-d-table{width:100%;display:table;position:relative}
277
- .brz .brz-d-table-cell{display:table-cell}
278
- .brz .brz-blocked{pointer-events:none}
279
- .brz .brz-d-xs-flex{display:-webkit-box;display:-ms-flexbox;display:flex;min-width:0}
280
- .brz .brz-d-xs-inline-flex{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}
281
- @media (min-width:480px){.brz .brz-d-ms-flex{display:-webkit-box;display:-ms-flexbox;display:flex;min-width:0}
282
- .brz .brz-d-ms-inline-flex{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}}@media (min-width:768px){.brz .brz-d-sm-flex{display:-webkit-box;display:-ms-flexbox;display:flex;min-width:0}
283
- .brz .brz-d-sm-inline-flex{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}}@media (min-width:992px){.brz .brz-d-md-flex{display:-webkit-box;display:-ms-flexbox;display:flex;min-width:0}
284
- .brz .brz-d-md-inline-flex{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}}@media (min-width:1200px){.brz .brz-d-lg-flex{display:-webkit-box;display:-ms-flexbox;display:flex;min-width:0}
285
- .brz .brz-d-lg-inline-flex{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}}@media (min-width:1400px){.brz .brz-d-xl-flex{display:-webkit-box;display:-ms-flexbox;display:flex;min-width:0}
286
- .brz .brz-d-xl-inline-flex{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}}.brz .brz-p-relative{position:relative!important}
287
- .brz .brz-p-absolute{position:absolute!important}
288
- .brz .brz-p-fixed{position:fixed!important}
289
- .brz .brz-invisible{visibility:hidden!important}
290
- .brz .brz-visible{visibility:visible!important}
291
- .brz .brz-hidden-xs-up{display:none!important}
292
- @media (max-width:479px){.brz .brz-hidden-xs-down{display:none!important}}.brz .brz-invisible-xs-up{visibility:hidden!important}
293
- @media (max-width:479px){.brz .brz-invisible-xs-down{visibility:hidden!important}}.brz .brz-invisible-blur-xs-up .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}
294
- @media (max-width:479px){.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}}@media (max-width:767px){.brz .brz-hidden-ms-down{display:none!important}}@media (min-width:480px){.brz .brz-invisible-ms-up{visibility:hidden!important}}@media (max-width:767px){.brz .brz-invisible-ms-down{visibility:hidden!important}}@media (min-width:480px){.brz .brz-invisible-blur-ms-up .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (max-width:767px){.brz .brz-invisible-blur-ms-down .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (min-width:768px){.brz .brz-hidden-sm-up{display:none!important}}@media (max-width:991px){.brz .brz-hidden-sm-down{display:none!important}}@media (min-width:768px){.brz .brz-invisible-sm-up{visibility:hidden!important}}@media (max-width:991px){.brz .brz-invisible-sm-down{visibility:hidden!important}}@media (min-width:768px){.brz .brz-invisible-blur-sm-up .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (max-width:991px){.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}}@media (max-width:1199px){.brz .brz-hidden-md-down{display:none!important}}@media (min-width:992px){.brz .brz-invisible-md-up{visibility:hidden!important}}@media (max-width:1199px){.brz .brz-invisible-md-down{visibility:hidden!important}}@media (min-width:992px){.brz .brz-invisible-blur-md-up .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (max-width:1199px){.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}}@media (max-width:1399px){.brz .brz-hidden-lg-down{display:none!important}}@media (min-width:1200px){.brz .brz-invisible-lg-up{visibility:hidden!important}}@media (max-width:1399px){.brz .brz-invisible-lg-down{visibility:hidden!important}}@media (min-width:1200px){.brz .brz-invisible-blur-lg-up .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (max-width:1399px){.brz .brz-invisible-blur-lg-down .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (min-width:1400px){.brz .brz-hidden-xl-up{display:none!important}}.brz .brz-hidden-xl-down{display:none!important}
295
- @media (min-width:1400px){.brz .brz-invisible-xl-up{visibility:hidden!important}}.brz .brz-invisible-xl-down{visibility:hidden!important}
296
- @media (min-width:1400px){.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}
297
- .brz .brz-hidden{display:none!important}
298
- .brz .brz-visible-print-block{display:none!important}
299
- @media print{.brz .brz-visible-print-block{display:block!important}}.brz .brz-visible-print-inline{display:none!important}
300
- @media print{.brz .brz-visible-print-inline{display:inline!important}}.brz .brz-visible-print-inline-block{display:none!important}
301
- @media print{.brz .brz-visible-print-inline-block{display:inline-block!important}}@media print{.brz .brz-hidden-print{display:none!important}}.brz .brz-ow-hidden{overflow:hidden!important}
302
- .brz .brz-ow-visible{overflow:visible!important}
303
- .brz .brz-pointer-events-none{pointer-events:none!important}
304
- .brz .brz-pointer-events-auto{pointer-events:auto!important}
305
- .brz .brz-fw-100{font-weight:100!important}
306
- .brz .brz-fw-200{font-weight:200!important}
307
- .brz .brz-fw-300{font-weight:300!important}
308
- .brz .brz-fw-400{font-weight:400!important}
309
- .brz .brz-fw-500{font-weight:500!important}
310
- .brz .brz-fw-600{font-weight:600!important}
311
- .brz .brz-fw-700{font-weight:700!important}
312
- .brz .brz-fw-800{font-weight:800!important}
313
- .brz .brz-fw-900{font-weight:900!important}
314
- .brz .brz--required{color:#ff0e0e;padding-left:5px}
315
- @-webkit-keyframes bounce{20%,53%,80%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
316
- 40%,43%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-30px,0);transform:translate3d(0,-30px,0)}
317
- 70%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-15px,0);transform:translate3d(0,-15px,0)}
318
- 90%{-webkit-transform:translate3d(0,-4px,0);transform:translate3d(0,-4px,0)}}@keyframes bounce{20%,53%,80%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
319
- 40%,43%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-30px,0);transform:translate3d(0,-30px,0)}
320
- 70%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-15px,0);transform:translate3d(0,-15px,0)}
321
- 90%{-webkit-transform:translate3d(0,-4px,0);transform:translate3d(0,-4px,0)}}.brz .bounce{-webkit-animation-name:bounce;animation-name:bounce;-webkit-transform-origin:center bottom;transform-origin:center bottom}
322
- @-webkit-keyframes flash{50%,from,to{opacity:1}
323
- 25%,75%{opacity:0}}@keyframes flash{50%,from,to{opacity:1}
324
- 25%,75%{opacity:0}}.brz .flash{-webkit-animation-name:flash;animation-name:flash}
325
- @-webkit-keyframes pulse{from{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}
326
- 50%{-webkit-transform:scale3d(1.05,1.05,1.05);transform:scale3d(1.05,1.05,1.05)}
327
- to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}@keyframes pulse{from{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}
328
- 50%{-webkit-transform:scale3d(1.05,1.05,1.05);transform:scale3d(1.05,1.05,1.05)}
329
- to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}.brz .pulse{-webkit-animation-name:pulse;animation-name:pulse}
330
- @-webkit-keyframes rubberBand{from{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}
331
- 30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}
332
- 40%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}
333
- 50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}
334
- 65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}
335
- 75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}
336
- to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}@keyframes rubberBand{from{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}
337
- 30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}
338
- 40%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}
339
- 50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}
340
- 65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}
341
- 75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}
342
- to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}.brz .rubberBand{-webkit-animation-name:rubberBand;animation-name:rubberBand}
343
- @-webkit-keyframes shake{from,to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
344
- 10%,30%,50%,70%,90%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}
345
- 20%,40%,60%,80%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}@keyframes shake{from,to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
346
- 10%,30%,50%,70%,90%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}
347
- 20%,40%,60%,80%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}.brz .shake{-webkit-animation-name:shake;animation-name:shake}
348
- @-webkit-keyframes headShake{0%{-webkit-transform:translateX(0);transform:translateX(0)}
349
- 6.5%{-webkit-transform:translateX(-6px) rotateY(-9deg);transform:translateX(-6px) rotateY(-9deg)}
350
- 18.5%{-webkit-transform:translateX(5px) rotateY(7deg);transform:translateX(5px) rotateY(7deg)}
351
- 31.5%{-webkit-transform:translateX(-3px) rotateY(-5deg);transform:translateX(-3px) rotateY(-5deg)}
352
- 43.5%{-webkit-transform:translateX(2px) rotateY(3deg);transform:translateX(2px) rotateY(3deg)}
353
- 50%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes headShake{0%{-webkit-transform:translateX(0);transform:translateX(0)}
354
- 6.5%{-webkit-transform:translateX(-6px) rotateY(-9deg);transform:translateX(-6px) rotateY(-9deg)}
355
- 18.5%{-webkit-transform:translateX(5px) rotateY(7deg);transform:translateX(5px) rotateY(7deg)}
356
- 31.5%{-webkit-transform:translateX(-3px) rotateY(-5deg);transform:translateX(-3px) rotateY(-5deg)}
357
- 43.5%{-webkit-transform:translateX(2px) rotateY(3deg);transform:translateX(2px) rotateY(3deg)}
358
- 50%{-webkit-transform:translateX(0);transform:translateX(0)}}.brz .headShake{-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;-webkit-animation-name:headShake;animation-name:headShake}
359
- @-webkit-keyframes swing{20%{-webkit-transform:rotate3d(0,0,1,15deg);transform:rotate3d(0,0,1,15deg)}
360
- 40%{-webkit-transform:rotate3d(0,0,1,-10deg);transform:rotate3d(0,0,1,-10deg)}
361
- 60%{-webkit-transform:rotate3d(0,0,1,5deg);transform:rotate3d(0,0,1,5deg)}
362
- 80%{-webkit-transform:rotate3d(0,0,1,-5deg);transform:rotate3d(0,0,1,-5deg)}
363
- to{-webkit-transform:rotate3d(0,0,1,0deg);transform:rotate3d(0,0,1,0deg)}}@keyframes swing{20%{-webkit-transform:rotate3d(0,0,1,15deg);transform:rotate3d(0,0,1,15deg)}
364
- 40%{-webkit-transform:rotate3d(0,0,1,-10deg);transform:rotate3d(0,0,1,-10deg)}
365
- 60%{-webkit-transform:rotate3d(0,0,1,5deg);transform:rotate3d(0,0,1,5deg)}
366
- 80%{-webkit-transform:rotate3d(0,0,1,-5deg);transform:rotate3d(0,0,1,-5deg)}
367
- to{-webkit-transform:rotate3d(0,0,1,0deg);transform:rotate3d(0,0,1,0deg)}}.brz .swing{-webkit-transform-origin:top center;transform-origin:top center;-webkit-animation-name:swing;animation-name:swing}
368
- @-webkit-keyframes tada{from{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}
369
- 10%,20%{-webkit-transform:scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg);transform:scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg)}
370
- 30%,50%,70%,90%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg)}
371
- 40%,60%,80%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg)}
372
- to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}@keyframes tada{from{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}
373
- 10%,20%{-webkit-transform:scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg);transform:scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg)}
374
- 30%,50%,70%,90%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg)}
375
- 40%,60%,80%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg)}
376
- to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}.brz .tada{-webkit-animation-name:tada;animation-name:tada}
377
- @-webkit-keyframes wobble{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
378
- 15%{-webkit-transform:translate3d(-25%,0,0) rotate3d(0,0,1,-5deg);transform:translate3d(-25%,0,0) rotate3d(0,0,1,-5deg)}
379
- 30%{-webkit-transform:translate3d(20%,0,0) rotate3d(0,0,1,3deg);transform:translate3d(20%,0,0) rotate3d(0,0,1,3deg)}
380
- 45%{-webkit-transform:translate3d(-15%,0,0) rotate3d(0,0,1,-3deg);transform:translate3d(-15%,0,0) rotate3d(0,0,1,-3deg)}
381
- 60%{-webkit-transform:translate3d(10%,0,0) rotate3d(0,0,1,2deg);transform:translate3d(10%,0,0) rotate3d(0,0,1,2deg)}
382
- 75%{-webkit-transform:translate3d(-5%,0,0) rotate3d(0,0,1,-1deg);transform:translate3d(-5%,0,0) rotate3d(0,0,1,-1deg)}
383
- to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes wobble{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
384
- 15%{-webkit-transform:translate3d(-25%,0,0) rotate3d(0,0,1,-5deg);transform:translate3d(-25%,0,0) rotate3d(0,0,1,-5deg)}
385
- 30%{-webkit-transform:translate3d(20%,0,0) rotate3d(0,0,1,3deg);transform:translate3d(20%,0,0) rotate3d(0,0,1,3deg)}
386
- 45%{-webkit-transform:translate3d(-15%,0,0) rotate3d(0,0,1,-3deg);transform:translate3d(-15%,0,0) rotate3d(0,0,1,-3deg)}
387
- 60%{-webkit-transform:translate3d(10%,0,0) rotate3d(0,0,1,2deg);transform:translate3d(10%,0,0) rotate3d(0,0,1,2deg)}
388
- 75%{-webkit-transform:translate3d(-5%,0,0) rotate3d(0,0,1,-1deg);transform:translate3d(-5%,0,0) rotate3d(0,0,1,-1deg)}
389
- to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .wobble{-webkit-animation-name:wobble;animation-name:wobble}
390
- @-webkit-keyframes jello{11.1%,from,to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
391
- 22.2%{-webkit-transform:skewX(-12.5deg) skewY(-12.5deg);transform:skewX(-12.5deg) skewY(-12.5deg)}
392
- 33.3%{-webkit-transform:skewX(6.25deg) skewY(6.25deg);transform:skewX(6.25deg) skewY(6.25deg)}
393
- 44.4%{-webkit-transform:skewX(-3.125deg) skewY(-3.125deg);transform:skewX(-3.125deg) skewY(-3.125deg)}
394
- 55.5%{-webkit-transform:skewX(1.5625deg) skewY(1.5625deg);transform:skewX(1.5625deg) skewY(1.5625deg)}
395
- 66.6%{-webkit-transform:skewX(-.78125deg) skewY(-.78125deg);transform:skewX(-.78125deg) skewY(-.78125deg)}
396
- 77.7%{-webkit-transform:skewX(.39062deg) skewY(.39062deg);transform:skewX(.39062deg) skewY(.39062deg)}
397
- 88.8%{-webkit-transform:skewX(-.19531deg) skewY(-.19531deg);transform:skewX(-.19531deg) skewY(-.19531deg)}}@keyframes jello{11.1%,from,to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
398
- 22.2%{-webkit-transform:skewX(-12.5deg) skewY(-12.5deg);transform:skewX(-12.5deg) skewY(-12.5deg)}
399
- 33.3%{-webkit-transform:skewX(6.25deg) skewY(6.25deg);transform:skewX(6.25deg) skewY(6.25deg)}
400
- 44.4%{-webkit-transform:skewX(-3.125deg) skewY(-3.125deg);transform:skewX(-3.125deg) skewY(-3.125deg)}
401
- 55.5%{-webkit-transform:skewX(1.5625deg) skewY(1.5625deg);transform:skewX(1.5625deg) skewY(1.5625deg)}
402
- 66.6%{-webkit-transform:skewX(-.78125deg) skewY(-.78125deg);transform:skewX(-.78125deg) skewY(-.78125deg)}
403
- 77.7%{-webkit-transform:skewX(.39062deg) skewY(.39062deg);transform:skewX(.39062deg) skewY(.39062deg)}
404
- 88.8%{-webkit-transform:skewX(-.19531deg) skewY(-.19531deg);transform:skewX(-.19531deg) skewY(-.19531deg)}}.brz .jello{-webkit-animation-name:jello;animation-name:jello;-webkit-transform-origin:center;transform-origin:center}
405
- @-webkit-keyframes heartBeat{0%{-webkit-transform:scale(1);transform:scale(1)}
406
- 14%{-webkit-transform:scale(1.3);transform:scale(1.3)}
407
- 28%{-webkit-transform:scale(1);transform:scale(1)}
408
- 42%{-webkit-transform:scale(1.3);transform:scale(1.3)}
409
- 70%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes heartBeat{0%{-webkit-transform:scale(1);transform:scale(1)}
410
- 14%{-webkit-transform:scale(1.3);transform:scale(1.3)}
411
- 28%{-webkit-transform:scale(1);transform:scale(1)}
412
- 42%{-webkit-transform:scale(1.3);transform:scale(1.3)}
413
- 70%{-webkit-transform:scale(1);transform:scale(1)}}.brz .heartBeat{-webkit-animation-name:heartBeat;animation-name:heartBeat;-webkit-animation-duration:1.3s;animation-duration:1.3s;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}
414
- @-webkit-keyframes bounceIn{20%,40%,60%,80%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}
415
- 0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}
416
- 20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}
417
- 40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}
418
- 60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}
419
- 80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}
420
- to{opacity:1;-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}@keyframes bounceIn{20%,40%,60%,80%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}
421
- 0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}
422
- 20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}
423
- 40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}
424
- 60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}
425
- 80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}
426
- to{opacity:1;-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}.brz .bounceIn{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-name:bounceIn;animation-name:bounceIn}
427
- @-webkit-keyframes bounceInDown{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}
428
- 0%{opacity:0;-webkit-transform:translate3d(0,-3000px,0);transform:translate3d(0,-3000px,0)}
429
- 60%{opacity:1;-webkit-transform:translate3d(0,25px,0);transform:translate3d(0,25px,0)}
430
- 75%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}
431
- 90%{-webkit-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0)}
432
- to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes bounceInDown{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}
433
- 0%{opacity:0;-webkit-transform:translate3d(0,-3000px,0);transform:translate3d(0,-3000px,0)}
434
- 60%{opacity:1;-webkit-transform:translate3d(0,25px,0);transform:translate3d(0,25px,0)}
435
- 75%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}
436
- 90%{-webkit-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0)}
437
- to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .bounceInDown{-webkit-animation-name:bounceInDown;animation-name:bounceInDown}
438
- @-webkit-keyframes bounceInLeft{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}
439
- 0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0);transform:translate3d(-3000px,0,0)}
440
- 60%{opacity:1;-webkit-transform:translate3d(25px,0,0);transform:translate3d(25px,0,0)}
441
- 75%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}
442
- 90%{-webkit-transform:translate3d(5px,0,0);transform:translate3d(5px,0,0)}
443
- to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes bounceInLeft{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}
444
- 0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0);transform:translate3d(-3000px,0,0)}
445
- 60%{opacity:1;-webkit-transform:translate3d(25px,0,0);transform:translate3d(25px,0,0)}
446
- 75%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}
447
- 90%{-webkit-transform:translate3d(5px,0,0);transform:translate3d(5px,0,0)}
448
- to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .bounceInLeft{-webkit-animation-name:bounceInLeft;animation-name:bounceInLeft}
449
- @-webkit-keyframes bounceInRight{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}
450
- from{opacity:0;-webkit-transform:translate3d(3000px,0,0);transform:translate3d(3000px,0,0)}
451
- 60%{opacity:1;-webkit-transform:translate3d(-25px,0,0);transform:translate3d(-25px,0,0)}
452
- 75%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}
453
- 90%{-webkit-transform:translate3d(-5px,0,0);transform:translate3d(-5px,0,0)}
454
- to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes bounceInRight{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}
455
- from{opacity:0;-webkit-transform:translate3d(3000px,0,0);transform:translate3d(3000px,0,0)}
456
- 60%{opacity:1;-webkit-transform:translate3d(-25px,0,0);transform:translate3d(-25px,0,0)}
457
- 75%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}
458
- 90%{-webkit-transform:translate3d(-5px,0,0);transform:translate3d(-5px,0,0)}
459
- to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .bounceInRight{-webkit-animation-name:bounceInRight;animation-name:bounceInRight}
460
- @-webkit-keyframes bounceInUp{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}
461
- from{opacity:0;-webkit-transform:translate3d(0,3000px,0);transform:translate3d(0,3000px,0)}
462
- 60%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}
463
- 75%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}
464
- 90%{-webkit-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}
465
- to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes bounceInUp{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}
466
- from{opacity:0;-webkit-transform:translate3d(0,3000px,0);transform:translate3d(0,3000px,0)}
467
- 60%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}
468
- 75%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}
469
- 90%{-webkit-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}
470
- to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .bounceInUp{-webkit-animation-name:bounceInUp;animation-name:bounceInUp}
471
- @-webkit-keyframes bounceOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}
472
- 50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}
473
- to{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}}@keyframes bounceOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}
474
- 50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}
475
- to{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}}.brz .bounceOut{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-name:bounceOut;animation-name:bounceOut}
476
- @-webkit-keyframes bounceOutDown{20%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}
477
- 40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}
478
- to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}@keyframes bounceOutDown{20%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}
479
- 40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}
480
- to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}.brz .bounceOutDown{-webkit-animation-name:bounceOutDown;animation-name:bounceOutDown}
481
- @-webkit-keyframes bounceOutLeft{20%{opacity:1;-webkit-transform:translate3d(20px,0,0);transform:translate3d(20px,0,0)}
482
- to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}@keyframes bounceOutLeft{20%{opacity:1;-webkit-transform:translate3d(20px,0,0);transform:translate3d(20px,0,0)}
483
- to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}.brz .bounceOutLeft{-webkit-animation-name:bounceOutLeft;animation-name:bounceOutLeft}
484
- @-webkit-keyframes bounceOutRight{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0);transform:translate3d(-20px,0,0)}
485
- to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}@keyframes bounceOutRight{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0);transform:translate3d(-20px,0,0)}
486
- to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}.brz .bounceOutRight{-webkit-animation-name:bounceOutRight;animation-name:bounceOutRight}
487
- @-webkit-keyframes bounceOutUp{20%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}
488
- 40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0)}
489
- to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}@keyframes bounceOutUp{20%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}
490
- 40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0)}
491
- to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}.brz .bounceOutUp{-webkit-animation-name:bounceOutUp;animation-name:bounceOutUp}
492
- @-webkit-keyframes fadeIn{from{opacity:0}
493
- to{opacity:1}}@keyframes fadeIn{from{opacity:0}
494
- to{opacity:1}}.brz .fadeIn{-webkit-animation-name:fadeIn;animation-name:fadeIn}
495
- @-webkit-keyframes fadeInDown{from{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}
496
- to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fadeInDown{from{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}
497
- to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .fadeInDown{-webkit-animation-name:fadeInDown;animation-name:fadeInDown}
498
- @-webkit-keyframes fadeInDownBig{from{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}
499
- to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fadeInDownBig{from{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}
500
- to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .fadeInDownBig{-webkit-animation-name:fadeInDownBig;animation-name:fadeInDownBig}
501
- @-webkit-keyframes fadeInLeft{from{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}
502
- to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fadeInLeft{from{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}
503
- to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .fadeInLeft{-webkit-animation-name:fadeInLeft;animation-name:fadeInLeft}
504
- @-webkit-keyframes fadeInLeftBig{from{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}
505
- to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fadeInLeftBig{from{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}
506
- to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .fadeInLeftBig{-webkit-animation-name:fadeInLeftBig;animation-name:fadeInLeftBig}
507
- @-webkit-keyframes fadeInRight{from{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}
508
- to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fadeInRight{from{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}
509
- to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .fadeInRight{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}
510
- @-webkit-keyframes fadeInRightBig{from{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}
511
- to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fadeInRightBig{from{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}
512
- to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .fadeInRightBig{-webkit-animation-name:fadeInRightBig;animation-name:fadeInRightBig}
513
- @-webkit-keyframes fadeInUp{from{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}
514
- to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fadeInUp{from{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}
515
- to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .fadeInUp{-webkit-animation-name:fadeInUp;animation-name:fadeInUp}
516
- @-webkit-keyframes fadeInUpBig{from{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}
517
- to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fadeInUpBig{from{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}
518
- to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .fadeInUpBig{-webkit-animation-name:fadeInUpBig;animation-name:fadeInUpBig}
519
- @-webkit-keyframes fadeOut{from{opacity:1}
520
- to{opacity:0}}@keyframes fadeOut{from{opacity:1}
521
- to{opacity:0}}.brz .fadeOut{-webkit-animation-name:fadeOut;animation-name:fadeOut}
522
- @-webkit-keyframes fadeOutDown{from{opacity:1}
523
- to{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@keyframes fadeOutDown{from{opacity:1}
524
- to{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}.brz .fadeOutDown{-webkit-animation-name:fadeOutDown;animation-name:fadeOutDown}
525
- @-webkit-keyframes fadeOutDownBig{from{opacity:1}
526
- to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}@keyframes fadeOutDownBig{from{opacity:1}
527
- to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}.brz .fadeOutDownBig{-webkit-animation-name:fadeOutDownBig;animation-name:fadeOutDownBig}
528
- @-webkit-keyframes fadeOutLeft{from{opacity:1}
529
- to{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@keyframes fadeOutLeft{from{opacity:1}
530
- to{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.brz .fadeOutLeft{-webkit-animation-name:fadeOutLeft;animation-name:fadeOutLeft}
531
- @-webkit-keyframes fadeOutLeftBig{from{opacity:1}
532
- to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}@keyframes fadeOutLeftBig{from{opacity:1}
533
- to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}.brz .fadeOutLeftBig{-webkit-animation-name:fadeOutLeftBig;animation-name:fadeOutLeftBig}
534
- @-webkit-keyframes fadeOutRight{from{opacity:1}
535
- to{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@keyframes fadeOutRight{from{opacity:1}
536
- to{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.brz .fadeOutRight{-webkit-animation-name:fadeOutRight;animation-name:fadeOutRight}
537
- @-webkit-keyframes fadeOutRightBig{from{opacity:1}
538
- to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}@keyframes fadeOutRightBig{from{opacity:1}
539
- to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}.brz .fadeOutRightBig{-webkit-animation-name:fadeOutRightBig;animation-name:fadeOutRightBig}
540
- @-webkit-keyframes fadeOutUp{from{opacity:1}
541
- to{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@keyframes fadeOutUp{from{opacity:1}
542
- to{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}.brz .fadeOutUp{-webkit-animation-name:fadeOutUp;animation-name:fadeOutUp}
543
- @-webkit-keyframes fadeOutUpBig{from{opacity:1}
544
- to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}@keyframes fadeOutUpBig{from{opacity:1}
545
- to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}.brz .fadeOutUpBig{-webkit-animation-name:fadeOutUpBig;animation-name:fadeOutUpBig}
546
- @-webkit-keyframes flip{from{-webkit-transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,-360deg);transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,-360deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}
547
- 40%{-webkit-transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}
548
- 50%{-webkit-transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}
549
- 80%{-webkit-transform:perspective(400px) scale3d(.95,.95,.95) translate3d(0,0,0) rotate3d(0,1,0,0deg);transform:perspective(400px) scale3d(.95,.95,.95) translate3d(0,0,0) rotate3d(0,1,0,0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}
550
- to{-webkit-transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,0deg);transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@keyframes flip{from{-webkit-transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,-360deg);transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,-360deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}
551
- 40%{-webkit-transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}
552
- 50%{-webkit-transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}
553
- 80%{-webkit-transform:perspective(400px) scale3d(.95,.95,.95) translate3d(0,0,0) rotate3d(0,1,0,0deg);transform:perspective(400px) scale3d(.95,.95,.95) translate3d(0,0,0) rotate3d(0,1,0,0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}
554
- to{-webkit-transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,0deg);transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}.brz .animated.flip{-webkit-backface-visibility:visible;backface-visibility:visible;-webkit-animation-name:flip;animation-name:flip}
555
- @-webkit-keyframes flipInX{from{-webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);transform:perspective(400px) rotate3d(1,0,0,90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}
556
- 40%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}
557
- 60%{-webkit-transform:perspective(400px) rotate3d(1,0,0,10deg);transform:perspective(400px) rotate3d(1,0,0,10deg);opacity:1}
558
- 80%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-5deg);transform:perspective(400px) rotate3d(1,0,0,-5deg)}
559
- to{-webkit-transform:perspective(400px);transform:perspective(400px)}}@keyframes flipInX{from{-webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);transform:perspective(400px) rotate3d(1,0,0,90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}
560
- 40%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}
561
- 60%{-webkit-transform:perspective(400px) rotate3d(1,0,0,10deg);transform:perspective(400px) rotate3d(1,0,0,10deg);opacity:1}
562
- 80%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-5deg);transform:perspective(400px) rotate3d(1,0,0,-5deg)}
563
- to{-webkit-transform:perspective(400px);transform:perspective(400px)}}.brz .flipInX{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInX;animation-name:flipInX}
564
- @-webkit-keyframes flipInY{from{-webkit-transform:perspective(400px) rotate3d(0,1,0,90deg);transform:perspective(400px) rotate3d(0,1,0,90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}
565
- 40%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-20deg);transform:perspective(400px) rotate3d(0,1,0,-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}
566
- 60%{-webkit-transform:perspective(400px) rotate3d(0,1,0,10deg);transform:perspective(400px) rotate3d(0,1,0,10deg);opacity:1}
567
- 80%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-5deg);transform:perspective(400px) rotate3d(0,1,0,-5deg)}
568
- to{-webkit-transform:perspective(400px);transform:perspective(400px)}}@keyframes flipInY{from{-webkit-transform:perspective(400px) rotate3d(0,1,0,90deg);transform:perspective(400px) rotate3d(0,1,0,90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}
569
- 40%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-20deg);transform:perspective(400px) rotate3d(0,1,0,-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}
570
- 60%{-webkit-transform:perspective(400px) rotate3d(0,1,0,10deg);transform:perspective(400px) rotate3d(0,1,0,10deg);opacity:1}
571
- 80%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-5deg);transform:perspective(400px) rotate3d(0,1,0,-5deg)}
572
- to{-webkit-transform:perspective(400px);transform:perspective(400px)}}.brz .flipInY{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInY;animation-name:flipInY}
573
- @-webkit-keyframes flipOutX{from{-webkit-transform:perspective(400px);transform:perspective(400px)}
574
- 30%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg);opacity:1}
575
- to{-webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);transform:perspective(400px) rotate3d(1,0,0,90deg);opacity:0}}@keyframes flipOutX{from{-webkit-transform:perspective(400px);transform:perspective(400px)}
576
- 30%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg);opacity:1}
577
- to{-webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);transform:perspective(400px) rotate3d(1,0,0,90deg);opacity:0}}.brz .flipOutX{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-name:flipOutX;animation-name:flipOutX;-webkit-backface-visibility:visible!important;backface-visibility:visible!important}
578
- @-webkit-keyframes flipOutY{from{-webkit-transform:perspective(400px);transform:perspective(400px)}
579
- 30%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-15deg);transform:perspective(400px) rotate3d(0,1,0,-15deg);opacity:1}
580
- to{-webkit-transform:perspective(400px) rotate3d(0,1,0,90deg);transform:perspective(400px) rotate3d(0,1,0,90deg);opacity:0}}@keyframes flipOutY{from{-webkit-transform:perspective(400px);transform:perspective(400px)}
581
- 30%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-15deg);transform:perspective(400px) rotate3d(0,1,0,-15deg);opacity:1}
582
- to{-webkit-transform:perspective(400px) rotate3d(0,1,0,90deg);transform:perspective(400px) rotate3d(0,1,0,90deg);opacity:0}}.brz .flipOutY{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipOutY;animation-name:flipOutY}
583
- @-webkit-keyframes lightSpeedIn{from{-webkit-transform:translate3d(100%,0,0) skewX(-30deg);transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}
584
- 60%{-webkit-transform:skewX(20deg);transform:skewX(20deg);opacity:1}
585
- 80%{-webkit-transform:skewX(-5deg);transform:skewX(-5deg)}
586
- to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes lightSpeedIn{from{-webkit-transform:translate3d(100%,0,0) skewX(-30deg);transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}
587
- 60%{-webkit-transform:skewX(20deg);transform:skewX(20deg);opacity:1}
588
- 80%{-webkit-transform:skewX(-5deg);transform:skewX(-5deg)}
589
- to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .lightSpeedIn{-webkit-animation-name:lightSpeedIn;animation-name:lightSpeedIn;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}
590
- @-webkit-keyframes lightSpeedOut{from{opacity:1}
591
- to{-webkit-transform:translate3d(100%,0,0) skewX(30deg);transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}@keyframes lightSpeedOut{from{opacity:1}
592
- to{-webkit-transform:translate3d(100%,0,0) skewX(30deg);transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}.brz .lightSpeedOut{-webkit-animation-name:lightSpeedOut;animation-name:lightSpeedOut;-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}
593
- @-webkit-keyframes rotateIn{from{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:rotate3d(0,0,1,-200deg);transform:rotate3d(0,0,1,-200deg);opacity:0}
594
- to{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes rotateIn{from{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:rotate3d(0,0,1,-200deg);transform:rotate3d(0,0,1,-200deg);opacity:0}
595
- to{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}.brz .rotateIn{-webkit-animation-name:rotateIn;animation-name:rotateIn}
596
- @-webkit-keyframes rotateInDownLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}
597
- to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes rotateInDownLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}
598
- to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}.brz .rotateInDownLeft{-webkit-animation-name:rotateInDownLeft;animation-name:rotateInDownLeft}
599
- @-webkit-keyframes rotateInDownRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}
600
- to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes rotateInDownRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}
601
- to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}.brz .rotateInDownRight{-webkit-animation-name:rotateInDownRight;animation-name:rotateInDownRight}
602
- @-webkit-keyframes rotateInUpLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}
603
- to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes rotateInUpLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}
604
- to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}.brz .rotateInUpLeft{-webkit-animation-name:rotateInUpLeft;animation-name:rotateInUpLeft}
605
- @-webkit-keyframes rotateInUpRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,-90deg);transform:rotate3d(0,0,1,-90deg);opacity:0}
606
- to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes rotateInUpRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,-90deg);transform:rotate3d(0,0,1,-90deg);opacity:0}
607
- to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}.brz .rotateInUpRight{-webkit-animation-name:rotateInUpRight;animation-name:rotateInUpRight}
608
- @-webkit-keyframes rotateOut{from{-webkit-transform-origin:center;transform-origin:center;opacity:1}
609
- to{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:rotate3d(0,0,1,200deg);transform:rotate3d(0,0,1,200deg);opacity:0}}@keyframes rotateOut{from{-webkit-transform-origin:center;transform-origin:center;opacity:1}
610
- to{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:rotate3d(0,0,1,200deg);transform:rotate3d(0,0,1,200deg);opacity:0}}.brz .rotateOut{-webkit-animation-name:rotateOut;animation-name:rotateOut}
611
- @-webkit-keyframes rotateOutDownLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;opacity:1}
612
- to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}}@keyframes rotateOutDownLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;opacity:1}
613
- to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}}.brz .rotateOutDownLeft{-webkit-animation-name:rotateOutDownLeft;animation-name:rotateOutDownLeft}
614
- @-webkit-keyframes rotateOutDownRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;opacity:1}
615
- to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}}@keyframes rotateOutDownRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;opacity:1}
616
- to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}}.brz .rotateOutDownRight{-webkit-animation-name:rotateOutDownRight;animation-name:rotateOutDownRight}
617
- @-webkit-keyframes rotateOutUpLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;opacity:1}
618
- to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}}@keyframes rotateOutUpLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;opacity:1}
619
- to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}}.brz .rotateOutUpLeft{-webkit-animation-name:rotateOutUpLeft;animation-name:rotateOutUpLeft}
620
- @-webkit-keyframes rotateOutUpRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;opacity:1}
621
- to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,90deg);transform:rotate3d(0,0,1,90deg);opacity:0}}@keyframes rotateOutUpRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;opacity:1}
622
- to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,90deg);transform:rotate3d(0,0,1,90deg);opacity:0}}.brz .rotateOutUpRight{-webkit-animation-name:rotateOutUpRight;animation-name:rotateOutUpRight}
623
- @-webkit-keyframes hinge{0%{-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}
624
- 20%,60%{-webkit-transform:rotate3d(0,0,1,80deg);transform:rotate3d(0,0,1,80deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}
625
- 40%,80%{-webkit-transform:rotate3d(0,0,1,60deg);transform:rotate3d(0,0,1,60deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}
626
- to{-webkit-transform:translate3d(0,700px,0);transform:translate3d(0,700px,0);opacity:0}}@keyframes hinge{0%{-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}
627
- 20%,60%{-webkit-transform:rotate3d(0,0,1,80deg);transform:rotate3d(0,0,1,80deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}
628
- 40%,80%{-webkit-transform:rotate3d(0,0,1,60deg);transform:rotate3d(0,0,1,60deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}
629
- to{-webkit-transform:translate3d(0,700px,0);transform:translate3d(0,700px,0);opacity:0}}.brz .hinge{-webkit-animation-duration:2s;animation-duration:2s;-webkit-animation-name:hinge;animation-name:hinge}
630
- @-webkit-keyframes jackInTheBox{from{opacity:0;-webkit-transform:scale(.1) rotate(30deg);transform:scale(.1) rotate(30deg);-webkit-transform-origin:center bottom;transform-origin:center bottom}
631
- 50%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}
632
- 70%{-webkit-transform:rotate(3deg);transform:rotate(3deg)}
633
- to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes jackInTheBox{from{opacity:0;-webkit-transform:scale(.1) rotate(30deg);transform:scale(.1) rotate(30deg);-webkit-transform-origin:center bottom;transform-origin:center bottom}
634
- 50%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}
635
- 70%{-webkit-transform:rotate(3deg);transform:rotate(3deg)}
636
- to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}.brz .jackInTheBox{-webkit-animation-name:jackInTheBox;animation-name:jackInTheBox}
637
- @-webkit-keyframes rollIn{from{opacity:0;-webkit-transform:translate3d(-100%,0,0) rotate3d(0,0,1,-120deg);transform:translate3d(-100%,0,0) rotate3d(0,0,1,-120deg)}
638
- to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes rollIn{from{opacity:0;-webkit-transform:translate3d(-100%,0,0) rotate3d(0,0,1,-120deg);transform:translate3d(-100%,0,0) rotate3d(0,0,1,-120deg)}
639
- to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .rollIn{-webkit-animation-name:rollIn;animation-name:rollIn}
640
- @-webkit-keyframes rollOut{from{opacity:1}
641
- to{opacity:0;-webkit-transform:translate3d(100%,0,0) rotate3d(0,0,1,120deg);transform:translate3d(100%,0,0) rotate3d(0,0,1,120deg)}}@keyframes rollOut{from{opacity:1}
642
- to{opacity:0;-webkit-transform:translate3d(100%,0,0) rotate3d(0,0,1,120deg);transform:translate3d(100%,0,0) rotate3d(0,0,1,120deg)}}.brz .rollOut{-webkit-animation-name:rollOut;animation-name:rollOut}
643
- @-webkit-keyframes zoomIn{from{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}
644
- 50%{opacity:1}}@keyframes zoomIn{from{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}
645
- 50%{opacity:1}}.brz .zoomIn{-webkit-animation-name:zoomIn;animation-name:zoomIn}
646
- @-webkit-keyframes zoomInDown{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}
647
- 60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInDown{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}
648
- 60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.brz .zoomInDown{-webkit-animation-name:zoomInDown;animation-name:zoomInDown}
649
- @-webkit-keyframes zoomInLeft{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}
650
- 60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);transform:scale3d(.475,.475,.475) translate3d(10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInLeft{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}
651
- 60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);transform:scale3d(.475,.475,.475) translate3d(10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.brz .zoomInLeft{-webkit-animation-name:zoomInLeft;animation-name:zoomInLeft}
652
- @-webkit-keyframes zoomInRight{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}
653
- 60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInRight{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}
654
- 60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.brz .zoomInRight{-webkit-animation-name:zoomInRight;animation-name:zoomInRight}
655
- @-webkit-keyframes zoomInUp{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}
656
- 60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInUp{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}
657
- 60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.brz .zoomInUp{-webkit-animation-name:zoomInUp;animation-name:zoomInUp}
658
- @-webkit-keyframes zoomOut{from{opacity:1}
659
- 50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}
660
- to{opacity:0}}@keyframes zoomOut{from{opacity:1}
661
- 50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}
662
- to{opacity:0}}.brz .zoomOut{-webkit-animation-name:zoomOut;animation-name:zoomOut}
663
- @-webkit-keyframes zoomOutDown{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}
664
- to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);-webkit-transform-origin:center bottom;transform-origin:center bottom;-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomOutDown{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}
665
- to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);-webkit-transform-origin:center bottom;transform-origin:center bottom;-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.brz .zoomOutDown{-webkit-animation-name:zoomOutDown;animation-name:zoomOutDown}
666
- @-webkit-keyframes zoomOutLeft{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(42px,0,0);transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}
667
- to{opacity:0;-webkit-transform:scale(.1) translate3d(-2000px,0,0);transform:scale(.1) translate3d(-2000px,0,0);-webkit-transform-origin:left center;transform-origin:left center}}@keyframes zoomOutLeft{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(42px,0,0);transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}
668
- to{opacity:0;-webkit-transform:scale(.1) translate3d(-2000px,0,0);transform:scale(.1) translate3d(-2000px,0,0);-webkit-transform-origin:left center;transform-origin:left center}}.brz .zoomOutLeft{-webkit-animation-name:zoomOutLeft;animation-name:zoomOutLeft}
669
- @-webkit-keyframes zoomOutRight{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-42px,0,0);transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}
670
- to{opacity:0;-webkit-transform:scale(.1) translate3d(2000px,0,0);transform:scale(.1) translate3d(2000px,0,0);-webkit-transform-origin:right center;transform-origin:right center}}@keyframes zoomOutRight{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-42px,0,0);transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}
671
- to{opacity:0;-webkit-transform:scale(.1) translate3d(2000px,0,0);transform:scale(.1) translate3d(2000px,0,0);-webkit-transform-origin:right center;transform-origin:right center}}.brz .zoomOutRight{-webkit-animation-name:zoomOutRight;animation-name:zoomOutRight}
672
- @-webkit-keyframes zoomOutUp{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}
673
- to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);-webkit-transform-origin:center bottom;transform-origin:center bottom;-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomOutUp{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}
674
- to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);-webkit-transform-origin:center bottom;transform-origin:center bottom;-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.brz .zoomOutUp{-webkit-animation-name:zoomOutUp;animation-name:zoomOutUp}
675
- @-webkit-keyframes slideInDown{from{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:visible}
676
- to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes slideInDown{from{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:visible}
677
- to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .slideInDown{-webkit-animation-name:slideInDown;animation-name:slideInDown}
678
- @-webkit-keyframes slideInLeft{from{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);visibility:visible}
679
- to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes slideInLeft{from{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);visibility:visible}
680
- to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .slideInLeft{-webkit-animation-name:slideInLeft;animation-name:slideInLeft}
681
- @-webkit-keyframes slideInRight{from{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);visibility:visible}
682
- to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes slideInRight{from{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);visibility:visible}
683
- to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .slideInRight{-webkit-animation-name:slideInRight;animation-name:slideInRight}
684
- @-webkit-keyframes slideInUp{from{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:visible}
685
- to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes slideInUp{from{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:visible}
686
- to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .slideInUp{-webkit-animation-name:slideInUp;animation-name:slideInUp}
687
- @-webkit-keyframes slideOutDown{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
688
- to{visibility:hidden;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@keyframes slideOutDown{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
689
- to{visibility:hidden;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}.brz .slideOutDown{-webkit-animation-name:slideOutDown;animation-name:slideOutDown}
690
- @-webkit-keyframes slideOutLeft{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
691
- to{visibility:hidden;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@keyframes slideOutLeft{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
692
- to{visibility:hidden;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.brz .slideOutLeft{-webkit-animation-name:slideOutLeft;animation-name:slideOutLeft}
693
- @-webkit-keyframes slideOutRight{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
694
- to{visibility:hidden;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@keyframes slideOutRight{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
695
- to{visibility:hidden;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.brz .slideOutRight{-webkit-animation-name:slideOutRight;animation-name:slideOutRight}
696
- @-webkit-keyframes slideOutUp{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
697
- to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@keyframes slideOutUp{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
698
- to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}.brz .slideOutUp{-webkit-animation-name:slideOutUp;animation-name:slideOutUp}
699
- .brz .animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}
700
- .brz .animated.infinite{-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}
701
- .brz .animated.delay-1s{-webkit-animation-delay:1s;animation-delay:1s}
702
- .brz .animated.delay-2s{-webkit-animation-delay:2s;animation-delay:2s}
703
- .brz .animated.delay-3s{-webkit-animation-delay:3s;animation-delay:3s}
704
- .brz .animated.delay-4s{-webkit-animation-delay:4s;animation-delay:4s}
705
- .brz .animated.delay-5s{-webkit-animation-delay:5s;animation-delay:5s}
706
- .brz .animated.fast{-webkit-animation-duration:.8s;animation-duration:.8s}
707
- .brz .animated.faster{-webkit-animation-duration:.5s;animation-duration:.5s}
708
- .brz .animated.slow{-webkit-animation-duration:2s;animation-duration:2s}
709
- .brz .animated.slower{-webkit-animation-duration:3s;animation-duration:3s}
710
- @media (print),(prefers-reduced-motion:reduce){.brz .animated{-webkit-animation-duration:1ms!important;animation-duration:1ms!important;-webkit-transition-duration:1ms!important;transition-duration:1ms!important;-webkit-animation-iteration-count:1!important;animation-iteration-count:1!important}}.brz .brz-animated{opacity:0;-webkit-animation-fill-mode:backwards;animation-fill-mode:backwards}
711
- .brz .brz-animated.brz-animate{opacity:1}
712
- .brz .brz-icon-svg{display:inline-block;width:1em;height:1em;stroke:none;max-width:none;position:relative;fill:currentColor;color:currentColor}
713
- .brz .brz-icon-svg use{fill:inherit}
714
- .brz .brz-icon-svg.grid-16{height:16px;width:16px}
715
- .brz .brz-icon-svg.grid-24{height:24px;width:24px}
716
- .brz .brz-icon-svg.glyph{fill:currentColor;stroke:none}
717
- .brz .brz-icon-svg.outline{stroke:currentColor;fill:none}
718
- .brz .brz-icon-svg.outline.stroke-2{stroke-width:2px}
719
- .brz .brz-section{position:relative;margin:0;padding:0;overflow:visible}
720
- .brz .brz-section__content{position:relative;width:100%}
721
- .brz .brz-section__content>.brz-bg{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;height:100%}
722
- .brz .brz-section__items{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;width:100%}
723
- .brz .brz-section>.brz-slick-slider .brz-container__wrap{-webkit-box-align:center;-ms-flex-align:center;align-items:center}
724
- .brz .brz-section>.brz-slick-slider:not(.slick-initialized)>.brz-section__items:not(:first-child){display:none}
725
- .brz .brz-section>.brz-slick-slider>.slick-list>.slick-track>.slick-slide{height:auto}
726
- .brz .brz-section>.brz-slick-slider>.slick-list>.slick-track>.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}
727
- .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}
728
- .brz .brz-section__header>.brz-section__menu-item{position:relative;z-index:1050}
729
- .brz .brz-section__header--animated{position:fixed;z-index:1051;top:0;left:0;width:100%;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);opacity:0;-webkit-transition:none;transition:none}
730
- .brz .brz-section__header--animated-opened{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1;-webkit-transition:opacity .2s linear,-webkit-transform .2s linear;transition:opacity .2s linear,-webkit-transform .2s linear;transition:transform .2s linear,opacity .2s linear;transition:transform .2s linear,opacity .2s linear,-webkit-transform .2s linear}
731
- .brz .brz-section__header--animated-closed{-webkit-transition:opacity .2s linear,-webkit-transform .2s linear;transition:opacity .2s linear,-webkit-transform .2s linear;transition:transform .2s linear,opacity .2s linear;transition:transform .2s linear,opacity .2s linear,-webkit-transform .2s linear}
732
- .brz .brz-section__header--fixed{position:relative;z-index:1050}
733
- .brz .brz-section__header--fixed-opened{position:fixed;z-index:1051;top:0;left:0;width:100%}
734
- .brz .brz-popup__inner{height:100%}
735
- .brz .brz-container,.brz .brz-container__wrap{margin-left:auto;margin-right:auto;width:100%}
736
- .brz .brz-container__wrap{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}
737
- .brz .brz-row{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;text-align:left}
738
- .brz .brz-row__container{position:relative;text-align:center;font-size:0}
739
- .brz .brz-row__container .brz-link-container{position:absolute;height:100%;width:100%;top:0;left:0}
740
- .brz .brz-row__bg{margin-left:auto;margin-right:auto;width:100%;font-size:initial}
741
- .brz .brz-columns{display:-webkit-box;display:-ms-flexbox;display:flex;position:relative;-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%;will-change:flex,max-width}
742
- .brz .brz-columns>.brz-bg{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;min-width:0}
743
- .brz .brz-columns .brz-container-link{position:absolute;height:100%;width:100%;top:0;left:0}
744
- .brz .brz-wrapper,.brz .brz-wrapper-clone{border-top:1px solid transparent;border-bottom:1px solid transparent;margin-top:-1px;margin-bottom:-1px}
745
- .brz .brz-wrapper-clone__wrap{height:100%}
746
- .brz .brz-wrapper-clone__wrap>div{-webkit-box-align:center;-ms-flex-align:center;align-items:center}
747
- .brz .brz-wrapper-clone__wrap:after{content:"";display:table}
748
- .brz .brz-wrapper-clone__wrap .brz-flex-xs-wrap{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}
749
- .brz .brz-wrapper-clone__item{position:relative;min-height:1px;-ms-flex-preferred-size:auto;flex-basis:auto}
750
- .brz .brz-bg{position:relative}
751
- .brz .brz-bg-content{position:relative;-webkit-box-flex:1;-ms-flex:1;flex:1;min-width:0}
752
- .brz .brz-bg-media{overflow:hidden}
753
- .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%}
754
- .brz .brz-bg-image{background-repeat:no-repeat;background-size:cover}
755
- .brz.brz-is-mobile .brz-bg-media>.brz-bg-image{background-attachment:scroll}
756
- .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}
757
- .brz .brz-bg-color{opacity:1}
758
- .brz .brz-bg-shape{width:100%;height:100px;position:absolute;left:0;right:0;background-repeat:no-repeat;pointer-events:none}
759
- .brz .brz-bg-shape__top{top:0}
760
- .brz .brz-bg-shape__bottom{bottom:0;-webkit-transform:rotateX(180deg);transform:rotateX(180deg)}
761
- .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;top:-50vh;height:100vh;-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}
762
- @media (max-width:991px){.brz .brz-bg-video .brz-iframe{display:none!important}}.brz .brz-btn{display:-webkit-inline-box;display:-ms-inline-flexbox;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;vertical-align:middle;-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;text-decoration:none}
763
- .brz .brz-btn.focus,.brz .brz-btn:focus,.brz .brz-btn:hover{text-decoration:none}
764
- .brz .brz-btn:focus{text-decoration:none}
765
- .brz .brz-btn .brz-span{display:block}
766
- .brz .brz-btn .brz-icon-svg{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto}
767
- .brz .buttons{margin:-10px;-webkit-box-align:center;-ms-flex-align:center;align-items:center}
768
- .brz .buttons .brz-wrapper-clone__item{padding:10px}
769
- .brz .brz-icon{display:-webkit-inline-box;display:-ms-inline-flexbox;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;vertical-align:middle;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}
770
- .brz .brz-list{margin:-6px;-webkit-box-align:center;-ms-flex-align:center;align-items:center}
771
- .brz .brz-list .brz-list__item{padding:6px}
772
- .brz .brz-countdown{display:-webkit-box;display:-ms-flexbox;display:flex}
773
- .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}
774
- .brz .brz-countdown__number{font-size:1em;margin-bottom:15px}
775
- .brz .brz-countdown .brz-ed-box__resizer{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;width:100%}
776
- .brz .brz-spacer{width:100%}
777
- .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}
778
- .brz .brz-icon-text .brz-text-btn,.brz .brz-icon-text .brz-text__editor{width:100%}
779
- .brz .brz-icon-text .brz-text__editor{white-space:pre-wrap}
780
- .brz .brz-icon-text .brz-wrapper-clone{overflow-wrap:break-word;word-wrap:break-word;word-break:break-word}
781
- .brz .brz-icon-text .brz-icon__container{min-width:auto}
782
- .brz .brz-line{position:relative;line-height:1;font-size:0;padding-top:7px;padding-bottom:7px;display:inline-block}
783
- .brz .brz-line .brz-hr{border-right-width:0;border-bottom-width:0;border-left-width:0;background:0 0}
784
- .brz .brz-map{position:relative;width:100%;display:inline-block;vertical-align:middle}
785
- .brz .brz-map::before{content:"";width:100%;height:100%;position:absolute;top:0;left:0;z-index:2;display:block;pointer-events:none}
786
- .brz .brz-map .brz-map-content{overflow:hidden;position:relative;height:100%;width:100%}
787
- .brz .brz-map .brz-iframe{position:absolute;top:0;left:0;width:100%;height:100%;border:none}
788
- .brz .brz-image{position:relative;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%}
789
- .brz .brz-image .brz-img{max-width:100%;border-radius:inherit}
790
- .brz .brz-image .brz-a,.brz .brz-image .brz-picture{outline:0;border-radius:inherit}
791
- .brz .brz-image::before{content:"";width:100%;height:100%;position:absolute;pointer-events:none;top:0;left:0;z-index:1}
792
- .brz .brz-ed-image__content{position:relative;width:100%}
793
- .brz .brz-ed-image__wrapper{position:absolute;top:0;left:0;margin-left:auto;margin-right:auto;overflow:hidden}
794
- .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;display:block}
795
- .brz .brz-ed-image__wrapper .brz-picture:after{content:"";position:absolute;top:0;left:0;width:100%;height:100%}
796
- .brz .brz-ed-image__wrapper::before{content:"";width:100%;height:100%;position:absolute;pointer-events:none;top:0;left:0;z-index:1}
797
- .brz .brz-image-fix-1-1{padding-top:100%}
798
- .brz .brz-image-fix-2-1{padding-top:50%}
799
- .brz .brz-image-fix-2-3{padding-top:150%}
800
- .brz .brz-image-fix-3-4{padding-top:125%}
801
- .brz .brz-image-fix-4-3{padding-top:75%}
802
- .brz .brz-image-fix-9-16{padding-top:177.8%}
803
- .brz .brz-image-fix-16-9{padding-top:56.25%}
804
- .brz:not(.brz-ed) .brz-image .brz-a,.brz:not(.brz-ed) .brz-image .brz-img,.brz:not(.brz-ed) .brz-image .brz-picture{width:100%;height:auto}
805
- .brz:not(.brz-ed) .brz-image .brz-img{top:0;left:0;height:100%}
806
- .brz:not(.brz-ed) .brz-image__lightbox *{cursor:-webkit-zoom-in;cursor:zoom-in}
807
- .brz .mfp-bg{z-index:1100}
808
- .brz .mfp-wrap{z-index:1101}
809
- .brz .mfp-figure:after,.brz .mfp-iframe-scaler iframe{-webkit-box-shadow:0 0 40px rgba(0,0,0,.35);box-shadow:0 0 40px rgba(0,0,0,.35)}
810
- .brz .brz-video{position:relative;width:100%;display:inline-block;vertical-align:middle}
811
- .brz .brz-video::before{content:"";width:100%;height:100%;position:absolute;top:0;left:0;z-index:2;display:block;pointer-events:none}
812
- .brz .brz-video .brz-video-content{overflow:hidden;position:relative;width:100%;height:100%}
813
- .brz .brz-video .brz-iframe,.brz .brz-video .brz-video__cover{position:absolute;top:0;left:0;width:100%;height:100%;border:none}
814
- .brz .brz-video .brz-video__cover{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}
815
- .brz .brz-video .brz-video__cover::before{content:"";display:block;position:absolute;top:0;left:0;right:0;bottom:0;margin:0 auto;background-repeat:no-repeat}
816
- .brz .brz-video .brz-video__cover .brz-video__cover-icon{position:relative;z-index:1;color:#fff;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;border-radius:50%;-webkit-transition:-webkit-transform .3s ease;transition:-webkit-transform .3s ease;transition:transform .3s ease;transition:transform .3s ease,-webkit-transform .3s ease}
817
- .brz .brz-video .brz-video__cover .brz-video__cover-icon .brz-icon-svg{width:100%;left:2px}
818
- .brz .brz-video .brz-video__cover .brz-video__cover-icon a{line-height:0}
819
- .brz .brz-video .brz-video__cover:hover{cursor:pointer}
820
- .brz .brz-video .brz-video__cover:hover .brz-video__cover-icon{-webkit-transform:scale(1.1);transform:scale(1.1)}
821
- .brz .brz-video .brz-shortcode__placeholder{position:absolute;top:0}
822
- .brz .brz-audio{pointer-events:auto;min-width:-webkit-fit-content;min-width:-moz-fit-content;min-width:fit-content}
823
- .brz .brz-audio .audio{display:-webkit-box;display:-ms-flexbox;display:flex;position:relative;width:100%;height:100%;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-left:20px;padding-right:20px;z-index:3}
824
- .brz .brz-audio .audio .play-pause-btn{display:-webkit-box;display:-ms-flexbox;display:flex;cursor:pointer;z-index:3}
825
- .brz .brz-audio .audio .current-time{margin-left:25px}
826
- .brz .brz-audio .audio .total-time{margin-left:15px}
827
- .brz .brz-audio .audio .slider{position:relative;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;cursor:pointer}
828
- .brz .brz-audio .audio .slider .progress{border-radius:inherit;position:absolute;pointer-events:none}
829
- .brz .brz-audio .audio .slider::before{content:"";display:block;position:absolute;top:0;left:0;right:0;bottom:0;margin:0 auto;background-repeat:no-repeat;opacity:.35}
830
- .brz .brz-audio .audio .controls{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;z-index:3}
831
- .brz .brz-audio .audio .controls .slider{margin-left:16px;margin-right:16px;border-radius:5px;height:8px}
832
- .brz .brz-audio .audio .controls .slider .progress{height:100%}
833
- .brz .brz-audio .audio .controls span{cursor:default}
834
- .brz .brz-audio .audio .controls:empty{display:none}
835
- .brz .brz-audio .audio .volume{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:15px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;z-index:3}
836
- .brz .brz-audio .audio .volume .volume-btn{display:-webkit-box;display:-ms-flexbox;display:flex;cursor:pointer}
837
- .brz .brz-audio .audio .volume .volume-controls{display:-webkit-box;display:-ms-flexbox;display:flex;width:60px;height:8px;margin-left:10px;border-radius:5px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}
838
- .brz .brz-audio .audio .volume .volume-controls .slider{border-radius:3px}
839
- .brz .brz-audio .audio .volume .volume-controls .slider .progress{bottom:0;height:100%;width:100%}
840
- .brz .brz-audio .brz-audio__cover{position:absolute;top:0;left:0;width:100%;height:100%;border:none}
841
- .brz .brz-audio .brz-audio__cover{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}
842
- .brz .brz-audio .brz-audio__cover::before{content:"";display:block;position:absolute;top:0;left:0;right:0;bottom:0;margin:0 auto;background-repeat:no-repeat}
843
- .brz .brz-audio .brz-audio__cover .brz-audio__cover-icon{position:relative;z-index:1;color:#fff;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;border-radius:50%;-webkit-transition:-webkit-transform .3s ease;transition:-webkit-transform .3s ease;transition:transform .3s ease;transition:transform .3s ease,-webkit-transform .3s ease}
844
- .brz .brz-embed-code{position:relative;display:inline-block;width:100%;min-height:20px;height:auto;word-break:break-all;word-wrap:break-word}
845
- .brz .brz-embed-code::before{content:"";width:100%;height:100%;position:absolute;top:0;left:0;z-index:2;display:block;pointer-events:none;overflow:hidden}
846
- .brz .brz-embed-code .brz-shortcode__placeholder{height:250px}
847
- .brz .brz-embed-code img{max-width:100%}
848
- .brz .brz-rich-text{-webkit-font-smoothing:antialiased;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;min-width:0;overflow-wrap:break-word;word-wrap:break-word;word-break:break-word}
849
- .brz .brz-rich-text>*{white-space:pre-wrap}
850
- .brz .brz-rich-text em,.brz .brz-rich-text i{font-style:italic}
851
- .brz .brz-rich-text ol li,.brz .brz-rich-text ul li{list-style:none;padding-left:1em}
852
- .brz .brz-rich-text ol li:before,.brz .brz-rich-text ul li:before{margin-left:-1em}
853
- .brz .brz-rich-text ul li:before{position:relative;top:-.1em;line-height:1;content:"\2022";padding-right:.5em}
854
- .brz .brz-rich-text ol{counter-reset:number}
855
- .brz .brz-rich-text ol li{counter-increment:number}
856
- .brz .brz-rich-text ol li:before{content:counter(number);line-height:1;padding-right:.5em}
857
- .brz .brz-rich-text .ql-editor{white-space:pre-wrap}
858
- .brz .brz-rich-text .brz-image-gradient,.brz .brz-rich-text .brz-text-mask{color:transparent!important;-webkit-background-clip:text;background-clip:text}
859
- .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-transform:initial;text-decoration:initial}
860
- .brz .brz-rich-text h1:before,.brz .brz-rich-text h2:before,.brz .brz-rich-text h3:before,.brz .brz-rich-text h4:before,.brz .brz-rich-text h5:before,.brz .brz-rich-text h6:before{display:none}
861
- .brz .brz-rich-text p,.brz .brz-rich-text span{margin-top:0;margin-bottom:0;padding-top:0;padding-bottom:0;text-transform:initial;text-decoration:initial}
862
- .brz .brz-rich-text span{font-family:inherit;font-size:inherit;font-weight:inherit;line-height:inherit;letter-spacing:inherit}
863
- .brz .brz-rich-text p{display:block}
864
- .brz .brz-rich-text a,.brz .brz-rich-text em,.brz .brz-rich-text span{display:inline}
865
- .brz .brz-rich-text dl,.brz .brz-rich-text ol,.brz .brz-rich-text ul{margin:0;list-style:none;padding:0}
866
- .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}
867
- .brz .brz-rich-text a{text-decoration:none;background-color:transparent;-webkit-text-decoration-skip:objects}
868
- .brz .brz-rich-text a[href]:hover{text-decoration:underline}
869
- .brz .brz-rich-text strong{font-weight:700}
870
- .brz .brz-rich-text .link--anchor,.brz .brz-rich-text .link--external,.brz .brz-rich-text .link--popup{text-decoration:none}
871
- .brz .brz-rich-text .link--anchor:hover,.brz .brz-rich-text .link--external:hover,.brz .brz-rich-text .link--popup:hover{text-decoration:underline}
872
- .brz .brz-rich-text .brz-tp__dc-block:after{content:"";display:table;clear:both}
873
- .brz .brz-text__editor{min-width:10px}
874
- .brz .brz-text__editor:empty:before{content:"\00a0\00a0"}
875
- .brz:not(.brz-ed) .brz-population-mask{background-clip:text;color:transparent!important}
876
- .brz .brz-counter{-webkit-transition:all .3s ease;transition:all .3s ease;cursor:default;text-align:center;display:inline-block}
877
- .brz .brz-progress-bar__wrapper{overflow:hidden}
878
- .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}
879
- .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}
880
- .brz .brz-shortcode__placeholder .brz-icon-svg{width:calc(16px + (.075 * 100%));height:calc(16px + (.075 * 100%))}
881
- .brz .brz-soundcloud{position:relative;font-size:0}
882
- .brz .brz-soundcloud::before{content:" ";position:absolute;width:100%;height:100%;z-index:3;pointer-events:none}
883
- .brz .brz-soundcloud .brz-soundCloud-content{overflow:hidden;position:relative;height:100%;width:100%}
884
- .brz .brz-soundcloud .brz-soundCloud-content iframe{width:100%}
885
- .brz .brz-soundcloud .brz-soundCloud-content::before{content:"";width:100%;height:100%;position:absolute;top:0;left:0;z-index:2;display:block;pointer-events:none}
886
- .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}
887
- .brz .slick-slider.slick-dotted{margin:0}
888
- .brz .slick-list{position:relative;overflow:hidden;display:block;margin:0;padding:0}
889
- .brz .slick-list:focus{outline:0}
890
- .brz .slick-list.dragging{cursor:pointer;cursor:hand}
891
- .brz .slick-slider .slick-list,.brz .slick-slider .slick-track{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
892
- .brz .slick-track{position:relative;left:0;top:0;display:block;margin-left:auto;margin-right:auto}
893
- .slick-loading .brz .slick-track{visibility:hidden}
894
- .brz .slick-track:after,.brz .slick-track:before{content:none}
895
- .brz .slick-slide{height:100%;min-height:1px;display:none;float:none}
896
- .brz .slick-slide img{display:block}
897
- .brz .slick-slide.slick-loading img{display:none}
898
- .brz .slick-slide.dragging img{pointer-events:none}
899
- .slick-initialized .brz .slick-slide{display:block}
900
- .slick-loading .brz .slick-slide{visibility:hidden}
901
- .slick-vertical .brz .slick-slide{display:block;height:auto;border:1px solid transparent}
902
- .brz .slick-arrow.slick-hidden{display:none}
903
- .brz .brz-slick-slider .brz-icon-svg,.brz .brz-slick-slider .brz-rich-text *{-webkit-backface-visibility:hidden;backface-visibility:hidden}
904
- .brz .brz-slick-slider .brz-bg-media{width:calc(100% + 1px)}
905
- .brz .brz-slick-slider .brz-bg-color,.brz .brz-slick-slider .brz-bg-content{-webkit-transform:translateZ(0);transform:translateZ(0)}
906
- .brz .brz-slick-slider .brz-section__items,.brz .brz-slick-slider .slick-slide>div{height:100%;outline:0}
907
- .brz .brz-slick-slider--fade .slick-slide{height:auto;visibility:hidden}
908
- .brz .brz-slick-slider--fade .slick-slide.slick-active{visibility:visible}
909
- .brz .slick-initialized .slick-slide{display:block}
910
- .brz .slick-track{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}
911
- .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}
912
- .brz .brz-slick-slider__dots li{display:inline-block;vertical-align:middle;padding-left:5px;padding-right:5px}
913
- .brz .brz-slick-slider__dots li:first-child{padding-left:0}
914
- .brz .brz-slick-slider__dots li:last-child{padding-right:0}
915
- .brz .brz-slick-slider__dots button{cursor:pointer;color:inherit;outline:0;overflow:hidden;padding:0;text-indent:-9999px;border:2px solid currentColor;border-radius:0;background-color:transparent;-webkit-transition:linear .2s transform,linear .2s background-color;transition:linear .2s transform,linear .2s background-color}
916
- .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}
917
- .brz .brz-slick-slider__dots--circle button{width:10px;height:10px;border-radius:10px}
918
- .brz .brz-slick-slider__dots--diamond button{width:10px;height:10px;-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}
919
- .brz .brz-slick-slider__dots--square button{width:10px;height:10px}
920
- .brz .brz-slick-slider__arrow{position:absolute;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);z-index:2;font-size:30px;cursor:pointer;-webkit-transition:linear .2s opacity;transition:linear .2s opacity;color:#000;background-color:transparent;border:none}
921
- .brz .brz-slick-slider__arrow:hover{-webkit-transition:linear .2s opacity;transition:linear .2s opacity}
922
- .brz .brz-slick-slider__arrow .brz-icon-svg{display:block}
923
- .brz .brz-slick-slider__arrow-prev{-webkit-transform:translateY(-50%) rotate(-180deg);transform:translateY(-50%) rotate(-180deg);left:30px}
924
- .brz .brz-slick-slider__arrow-next{right:30px}
925
- .brz .brz-forms{width:100%}
926
- .brz .brz-forms__fields,.brz .brz-forms__wrap{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}
927
- .brz .brz-forms__wrap{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}
928
- .brz .brz-forms__item{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-ms-flex-negative:0;flex-shrink:0}
929
- .brz .brz-forms .brz-input,.brz .brz-forms .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;-webkit-box-shadow:none;box-shadow:none}
930
- .brz .brz-forms .brz-input::-webkit-input-placeholder,.brz .brz-forms .brz-textarea::-webkit-input-placeholder{color:inherit}
931
- .brz .brz-forms .brz-input::-moz-placeholder,.brz .brz-forms .brz-textarea::-moz-placeholder{color:inherit}
932
- .brz .brz-forms .brz-input::-ms-input-placeholder,.brz .brz-forms .brz-textarea::-ms-input-placeholder{color:inherit}
933
- .brz .brz-forms .brz-input::placeholder,.brz .brz-forms .brz-textarea::placeholder{color:inherit}
934
- .brz .brz-forms .brz-textarea{height:100%;resize:none}
935
- .brz .brz-forms .brz-label{display:block}
936
- .brz .brz-forms .brz-forms__field{padding:14px 24px;text-align:left}
937
- .brz .brz-forms .brz-forms__field-label{border:none;cursor:auto}
938
- .brz .brz-forms__select{position:relative}
939
- .brz .brz-forms__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}
940
- .brz .brz-forms__select-current .brz-span{width:100%;cursor:pointer}
941
- .brz .brz-forms__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}
942
- .brz .brz-forms__select-item{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;border:0;height:52px}
943
- .brz .brz-forms__select-item:not(:last-child){border-bottom:1px solid #f1f1f2}
944
- .brz .brz-forms__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}
945
- .brz .brz-forms__select-item__input .brz-input{border-width:0;height:100%;width:100%;color:inherit}
946
- .brz .brz-forms__select-item__input .brz-input::-webkit-input-placeholder{color:rgba(115,119,127,.7);font-style:italic}
947
- .brz .brz-forms__select-item__input .brz-input:-moz-placeholder{color:rgba(115,119,127,.7);font-style:italic}
948
- .brz .brz-forms__select-item__input .brz-input::-moz-placeholder{color:rgba(115,119,127,.7);font-style:italic}
949
- .brz .brz-forms__select-item__input .brz-input:-ms-input-placeholder{color:rgba(115,119,127,.7);font-style:italic}
950
- .brz .brz-forms__select-item__input .brz-input.brz-input{cursor:text}
951
- .brz .brz-forms__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}
952
- .brz .brz-forms__select--arrow{font-size:14px}
953
- .brz .brz-forms .brz-control__select{position:relative}
954
- .brz .brz-forms .brz-control__select-current,.brz .brz-forms .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}
955
- .brz .brz-forms .brz-control__select-current{padding:14px 24px;cursor:pointer}
956
- .brz .brz-forms .brz-control__select-current .brz-control__select-option{border:0;-ms-flex-preferred-size:100%;flex-basis:100%;height:100%}
957
- .brz .brz-forms .brz-control__select-current .brz-control__select--arrow{font-size:14px}
958
- .brz .brz-forms .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}
959
- .brz .brz-forms .brz-control__select-options .brz-control__select-option{padding:14px 24px;font-size:16px;height:52px;line-height:1.5;cursor:pointer}
960
- .brz .brz-forms .brz-control__select-options .brz-control__select-option:not(:last-child){border-bottom:1px solid #f1f1f2}
961
- .brz .brz-forms__alert{min-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}
962
- .brz .brz-forms__alert--success{background-color:#15d053}
963
- .brz .brz-forms__alert--error{background-color:red}
964
- .brz .brz-forms__item--error .brz-control__select-current,.brz .brz-forms__item--error .brz-forms__field{border-color:red!important;border-style:solid!important}
965
- @media (max-width:767px){.brz .brz-forms__select-item__input{font-size:14px;padding:10px 16px}
966
- .brz .brz-forms .brz-forms__field{padding:10px 16px}
967
- .brz .brz-forms .brz-control__select-current{padding:10px 16px}
968
- .brz .brz-forms .brz-control__select-options .brz-control__select-option{padding:10px 16px;font-size:14px}}.brz .flatpickr-calendar{background:0 0;opacity:0;display:none;text-align:center;visibility:hidden;padding:0;-webkit-animation:none;animation:none;direction:ltr;border:0;font-size:14px;line-height:24px;border-radius:5px;position:absolute;width:307.875px;-webkit-box-sizing:border-box;box-sizing:border-box;-ms-touch-action:manipulation;touch-action:manipulation;background:#fff;-webkit-box-shadow:1px 0 0 #e6e6e6,-1px 0 0 #e6e6e6,0 1px 0 #e6e6e6,0 -1px 0 #e6e6e6,0 3px 13px rgba(0,0,0,.08);box-shadow:1px 0 0 #e6e6e6,-1px 0 0 #e6e6e6,0 1px 0 #e6e6e6,0 -1px 0 #e6e6e6,0 3px 13px rgba(0,0,0,.08)}
969
- .brz .flatpickr-calendar.inline,.brz .flatpickr-calendar.open{opacity:1;max-height:640px;visibility:visible}
970
- .brz .flatpickr-calendar.open{display:inline-block;z-index:99999}
971
- .brz .flatpickr-calendar.animate.open{-webkit-animation:fpFadeInDown .3s cubic-bezier(.23,1,.32,1);animation:fpFadeInDown .3s cubic-bezier(.23,1,.32,1)}
972
- .brz .flatpickr-calendar.inline{display:block;position:relative;top:2px}
973
- .brz .flatpickr-calendar.static{position:absolute;top:calc(100% + 2px)}
974
- .brz .flatpickr-calendar.static.open{z-index:999;display:block}
975
- .brz .flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7){-webkit-box-shadow:none!important;box-shadow:none!important}
976
- .brz .flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1){-webkit-box-shadow:-2px 0 0 #e6e6e6,5px 0 0 #e6e6e6;box-shadow:-2px 0 0 #e6e6e6,5px 0 0 #e6e6e6}
977
- .brz .flatpickr-calendar .hasTime .dayContainer,.brz .flatpickr-calendar .hasWeeks .dayContainer{border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}
978
- .brz .flatpickr-calendar .hasWeeks .dayContainer{border-left:0}
979
- .brz .flatpickr-calendar.showTimeInput.hasTime .flatpickr-time{height:40px;border-top:1px solid #e6e6e6}
980
- .brz .flatpickr-calendar.noCalendar.hasTime .flatpickr-time{height:auto}
981
- .brz .flatpickr-calendar:after,.brz .flatpickr-calendar:before{position:absolute;display:block;pointer-events:none;border:solid transparent;content:'';height:0;width:0;left:22px}
982
- .brz .flatpickr-calendar.rightMost:after,.brz .flatpickr-calendar.rightMost:before{left:auto;right:22px}
983
- .brz .flatpickr-calendar:before{border-width:5px;margin:0 -5px}
984
- .brz .flatpickr-calendar:after{border-width:4px;margin:0 -4px}
985
- .brz .flatpickr-calendar.arrowTop:after,.brz .flatpickr-calendar.arrowTop:before{bottom:100%}
986
- .brz .flatpickr-calendar.arrowTop:before{border-bottom-color:#e6e6e6}
987
- .brz .flatpickr-calendar.arrowTop:after{border-bottom-color:#fff}
988
- .brz .flatpickr-calendar.arrowBottom:after,.brz .flatpickr-calendar.arrowBottom:before{top:100%}
989
- .brz .flatpickr-calendar.arrowBottom:before{border-top-color:#e6e6e6}
990
- .brz .flatpickr-calendar.arrowBottom:after{border-top-color:#fff}
991
- .brz .flatpickr-calendar:focus{outline:0}
992
- .brz .flatpickr-wrapper{position:relative;display:inline-block}
993
- .brz .flatpickr-months{display:-webkit-box;display:-ms-flexbox;display:flex}
994
- .brz .flatpickr-months .flatpickr-month{background:0 0;color:rgba(0,0,0,.9);fill:rgba(0,0,0,.9);height:34px;line-height:1;text-align:center;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;overflow:hidden;-webkit-box-flex:1;-ms-flex:1;flex:1}
995
- .brz .flatpickr-months .flatpickr-next-month,.brz .flatpickr-months .flatpickr-prev-month{text-decoration:none;cursor:pointer;position:absolute;top:0;height:34px;padding:10px;z-index:3;color:rgba(0,0,0,.9);fill:rgba(0,0,0,.9)}
996
- .brz .flatpickr-months .flatpickr-next-month.flatpickr-disabled,.brz .flatpickr-months .flatpickr-prev-month.flatpickr-disabled{display:none}
997
- .brz .flatpickr-months .flatpickr-next-month i,.brz .flatpickr-months .flatpickr-prev-month i{position:relative}
998
- .brz .flatpickr-months .flatpickr-next-month.flatpickr-prev-month,.brz .flatpickr-months .flatpickr-prev-month.flatpickr-prev-month{left:0}
999
- .brz .flatpickr-months .flatpickr-next-month.flatpickr-next-month,.brz .flatpickr-months .flatpickr-prev-month.flatpickr-next-month{right:0}
1000
- .brz .flatpickr-months .flatpickr-next-month:hover,.brz .flatpickr-months .flatpickr-prev-month:hover{color:#959ea9}
1001
- .brz .flatpickr-months .flatpickr-next-month:hover svg,.brz .flatpickr-months .flatpickr-prev-month:hover svg{fill:#f64747}
1002
- .brz .flatpickr-months .flatpickr-next-month svg,.brz .flatpickr-months .flatpickr-prev-month svg{width:14px;height:14px}
1003
- .brz .flatpickr-months .flatpickr-next-month svg path,.brz .flatpickr-months .flatpickr-prev-month svg path{-webkit-transition:fill .1s;transition:fill .1s;fill:inherit}
1004
- .brz .numInputWrapper{position:relative;height:auto}
1005
- .brz .numInputWrapper input,.brz .numInputWrapper span{display:inline-block}
1006
- .brz .numInputWrapper input{width:100%}
1007
- .brz .numInputWrapper input::-ms-clear{display:none}
1008
- .brz .numInputWrapper input::-webkit-inner-spin-button,.brz .numInputWrapper input::-webkit-outer-spin-button{margin:0;-webkit-appearance:none}
1009
- .brz .numInputWrapper span{position:absolute;right:0;width:14px;padding:0 4px 0 2px;height:50%;line-height:50%;opacity:0;cursor:pointer;border:1px solid rgba(57,57,57,.15);-webkit-box-sizing:border-box;box-sizing:border-box}
1010
- .brz .numInputWrapper span:hover{background:rgba(0,0,0,.1)}
1011
- .brz .numInputWrapper span:active{background:rgba(0,0,0,.2)}
1012
- .brz .numInputWrapper span:after{display:block;content:"";position:absolute}
1013
- .brz .numInputWrapper span.arrowUp{top:0;border-bottom:0}
1014
- .brz .numInputWrapper span.arrowUp:after{border-left:4px solid transparent;border-right:4px solid transparent;border-bottom:4px solid rgba(57,57,57,.6);top:26%}
1015
- .brz .numInputWrapper span.arrowDown{top:50%}
1016
- .brz .numInputWrapper span.arrowDown:after{border-left:4px solid transparent;border-right:4px solid transparent;border-top:4px solid rgba(57,57,57,.6);top:40%}
1017
- .brz .numInputWrapper span svg{width:inherit;height:auto}
1018
- .brz .numInputWrapper span svg path{fill:rgba(0,0,0,.5)}
1019
- .brz .numInputWrapper:hover{background:rgba(0,0,0,.05)}
1020
- .brz .numInputWrapper:hover span{opacity:1}
1021
- .brz .flatpickr-current-month{font-size:135%;line-height:inherit;font-weight:300;color:inherit;position:absolute;width:75%;left:12.5%;padding:7.48px 0 0 0;line-height:1;height:34px;display:inline-block;text-align:center;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
1022
- .brz .flatpickr-current-month span.cur-month{font-family:inherit;font-weight:700;color:inherit;display:inline-block;margin-left:.5ch;padding:0}
1023
- .brz .flatpickr-current-month span.cur-month:hover{background:rgba(0,0,0,.05)}
1024
- .brz .flatpickr-current-month .numInputWrapper{width:6ch;display:inline-block}
1025
- .brz .flatpickr-current-month .numInputWrapper span.arrowUp:after{border-bottom-color:rgba(0,0,0,.9)}
1026
- .brz .flatpickr-current-month .numInputWrapper span.arrowDown:after{border-top-color:rgba(0,0,0,.9)}
1027
- .brz .flatpickr-current-month input.cur-year{background:0 0;-webkit-box-sizing:border-box;box-sizing:border-box;color:inherit;cursor:text;padding:0 0 0 .5ch;margin:0;display:inline-block;font-size:inherit;font-family:inherit;font-weight:300;line-height:inherit;height:auto;border:0;border-radius:0;vertical-align:initial;-webkit-appearance:textfield;-moz-appearance:textfield;appearance:textfield}
1028
- .brz .flatpickr-current-month input.cur-year:focus{outline:0}
1029
- .brz .flatpickr-current-month input.cur-year[disabled],.brz .flatpickr-current-month input.cur-year[disabled]:hover{font-size:100%;color:rgba(0,0,0,.5);background:0 0;pointer-events:none}
1030
- .brz .flatpickr-current-month .flatpickr-monthDropdown-months{appearance:menulist;background:0 0;border:none;border-radius:0;box-sizing:border-box;color:inherit;cursor:pointer;font-size:inherit;font-family:inherit;font-weight:300;height:auto;line-height:inherit;margin:-1px 0 0 0;outline:0;padding:0 0 0 .5ch;position:relative;vertical-align:initial;-webkit-box-sizing:border-box;-webkit-appearance:menulist;-moz-appearance:menulist;width:auto}
1031
- .brz .flatpickr-current-month .flatpickr-monthDropdown-months:active,.brz .flatpickr-current-month .flatpickr-monthDropdown-months:focus{outline:0}
1032
- .brz .flatpickr-current-month .flatpickr-monthDropdown-months:hover{background:rgba(0,0,0,.05)}
1033
- .brz .flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month{background-color:transparent;outline:0;padding:0}
1034
- .brz .flatpickr-weekdays{background:0 0;text-align:center;overflow:hidden;width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:28px}
1035
- .brz .flatpickr-weekdays .flatpickr-weekdaycontainer{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1;flex:1}
1036
- .brz span.flatpickr-weekday{cursor:default;font-size:90%;background:0 0;color:rgba(0,0,0,.54);line-height:1;margin:0;text-align:center;display:block;-webkit-box-flex:1;-ms-flex:1;flex:1;font-weight:bolder}
1037
- .brz .dayContainer,.brz .flatpickr-weeks{padding:1px 0 0 0}
1038
- .brz .flatpickr-days{position:relative;overflow:hidden;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;width:307.875px}
1039
- .brz .flatpickr-days:focus{outline:0}
1040
- .brz .dayContainer{padding:0;outline:0;text-align:left;width:307.875px;min-width:307.875px;max-width:307.875px;-webkit-box-sizing:border-box;box-sizing:border-box;display:inline-block;display:-ms-flexbox;display:-webkit-box;display:flex;flex-wrap:wrap;-ms-flex-wrap:wrap;-ms-flex-pack:justify;justify-content:space-around;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}
1041
- .brz .dayContainer+.dayContainer{-webkit-box-shadow:-1px 0 0 #e6e6e6;box-shadow:-1px 0 0 #e6e6e6}
1042
- .brz .flatpickr-day{background:0 0;border:1px solid transparent;border-radius:150px;-webkit-box-sizing:border-box;box-sizing:border-box;color:#393939;cursor:pointer;font-weight:400;width:14.2857143%;-ms-flex-preferred-size:14.2857143%;flex-basis:14.2857143%;max-width:39px;height:39px;line-height:39px;margin:0;display:inline-block;position:relative;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center}
1043
- .brz .flatpickr-day.inRange,.brz .flatpickr-day.nextMonthDay.inRange,.brz .flatpickr-day.nextMonthDay.today.inRange,.brz .flatpickr-day.nextMonthDay:focus,.brz .flatpickr-day.nextMonthDay:hover,.brz .flatpickr-day.prevMonthDay.inRange,.brz .flatpickr-day.prevMonthDay.today.inRange,.brz .flatpickr-day.prevMonthDay:focus,.brz .flatpickr-day.prevMonthDay:hover,.brz .flatpickr-day.today.inRange,.brz .flatpickr-day:focus,.brz .flatpickr-day:hover{cursor:pointer;outline:0;background:#e6e6e6;border-color:#e6e6e6}
1044
- .brz .flatpickr-day.today{border-color:#959ea9}
1045
- .brz .flatpickr-day.today:focus,.brz .flatpickr-day.today:hover{border-color:#959ea9;background:#959ea9;color:#fff}
1046
- .brz .flatpickr-day.endRange,.brz .flatpickr-day.endRange.inRange,.brz .flatpickr-day.endRange.nextMonthDay,.brz .flatpickr-day.endRange.prevMonthDay,.brz .flatpickr-day.endRange:focus,.brz .flatpickr-day.endRange:hover,.brz .flatpickr-day.selected,.brz .flatpickr-day.selected.inRange,.brz .flatpickr-day.selected.nextMonthDay,.brz .flatpickr-day.selected.prevMonthDay,.brz .flatpickr-day.selected:focus,.brz .flatpickr-day.selected:hover,.brz .flatpickr-day.startRange,.brz .flatpickr-day.startRange.inRange,.brz .flatpickr-day.startRange.nextMonthDay,.brz .flatpickr-day.startRange.prevMonthDay,.brz .flatpickr-day.startRange:focus,.brz .flatpickr-day.startRange:hover{background:#569ff7;-webkit-box-shadow:none;box-shadow:none;color:#fff;border-color:#569ff7}
1047
- .brz .flatpickr-day.endRange.startRange,.brz .flatpickr-day.selected.startRange,.brz .flatpickr-day.startRange.startRange{border-radius:50px 0 0 50px}
1048
- .brz .flatpickr-day.endRange.endRange,.brz .flatpickr-day.selected.endRange,.brz .flatpickr-day.startRange.endRange{border-radius:0 50px 50px 0}
1049
- .brz .flatpickr-day.endRange.startRange+.endRange:not(:nth-child(7n+1)),.brz .flatpickr-day.selected.startRange+.endRange:not(:nth-child(7n+1)),.brz .flatpickr-day.startRange.startRange+.endRange:not(:nth-child(7n+1)){-webkit-box-shadow:-10px 0 0 #569ff7;box-shadow:-10px 0 0 #569ff7}
1050
- .brz .flatpickr-day.endRange.startRange.endRange,.brz .flatpickr-day.selected.startRange.endRange,.brz .flatpickr-day.startRange.startRange.endRange{border-radius:50px}
1051
- .brz .flatpickr-day.inRange{border-radius:0;-webkit-box-shadow:-5px 0 0 #e6e6e6,5px 0 0 #e6e6e6;box-shadow:-5px 0 0 #e6e6e6,5px 0 0 #e6e6e6}
1052
- .brz .flatpickr-day.flatpickr-disabled,.brz .flatpickr-day.flatpickr-disabled:hover,.brz .flatpickr-day.nextMonthDay,.brz .flatpickr-day.notAllowed,.brz .flatpickr-day.notAllowed.nextMonthDay,.brz .flatpickr-day.notAllowed.prevMonthDay,.brz .flatpickr-day.prevMonthDay{color:rgba(57,57,57,.3);background:0 0;border-color:transparent;cursor:default}
1053
- .brz .flatpickr-day.flatpickr-disabled,.brz .flatpickr-day.flatpickr-disabled:hover{cursor:not-allowed;color:rgba(57,57,57,.1)}
1054
- .brz .flatpickr-day.week.selected{border-radius:0;-webkit-box-shadow:-5px 0 0 #569ff7,5px 0 0 #569ff7;box-shadow:-5px 0 0 #569ff7,5px 0 0 #569ff7}
1055
- .brz .flatpickr-day.hidden{visibility:hidden}
1056
- .brz .rangeMode .flatpickr-day{margin-top:1px}
1057
- .brz .flatpickr-weekwrapper{float:left}
1058
- .brz .flatpickr-weekwrapper .flatpickr-weeks{padding:0 12px;-webkit-box-shadow:1px 0 0 #e6e6e6;box-shadow:1px 0 0 #e6e6e6}
1059
- .brz .flatpickr-weekwrapper .flatpickr-weekday{float:none;width:100%;line-height:28px}
1060
- .brz .flatpickr-weekwrapper span.flatpickr-day,.brz .flatpickr-weekwrapper span.flatpickr-day:hover{display:block;width:100%;max-width:none;color:rgba(57,57,57,.3);background:0 0;cursor:default;border:none}
1061
- .brz .flatpickr-innerContainer{display:block;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden}
1062
- .brz .flatpickr-rContainer{display:inline-block;padding:0;-webkit-box-sizing:border-box;box-sizing:border-box}
1063
- .brz .flatpickr-time{text-align:center;outline:0;display:block;height:0;line-height:40px;max-height:40px;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden;display:-webkit-box;display:-ms-flexbox;display:flex}
1064
- .brz .flatpickr-time:after{content:"";display:table;clear:both}
1065
- .brz .flatpickr-time .numInputWrapper{-webkit-box-flex:1;-ms-flex:1;flex:1;width:40%;height:40px;float:left}
1066
- .brz .flatpickr-time .numInputWrapper span.arrowUp:after{border-bottom-color:#393939}
1067
- .brz .flatpickr-time .numInputWrapper span.arrowDown:after{border-top-color:#393939}
1068
- .brz .flatpickr-time.hasSeconds .numInputWrapper{width:26%}
1069
- .brz .flatpickr-time.time24hr .numInputWrapper{width:49%}
1070
- .brz .flatpickr-time input{background:0 0;-webkit-box-shadow:none;box-shadow:none;border:0;border-radius:0;text-align:center;margin:0;padding:0;height:inherit;line-height:inherit;color:#393939;font-size:14px;position:relative;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-appearance:textfield;-moz-appearance:textfield;appearance:textfield}
1071
- .brz .flatpickr-time input.flatpickr-hour{font-weight:700}
1072
- .brz .flatpickr-time input.flatpickr-minute,.brz .flatpickr-time input.flatpickr-second{font-weight:400}
1073
- .brz .flatpickr-time input:focus{outline:0;border:0}
1074
- .brz .flatpickr-time .flatpickr-am-pm,.brz .flatpickr-time .flatpickr-time-separator{height:inherit;float:left;line-height:inherit;color:#393939;font-weight:700;width:2%;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-align-self:center;-ms-flex-item-align:center;align-self:center}
1075
- .brz .flatpickr-time .flatpickr-am-pm{outline:0;width:18%;cursor:pointer;text-align:center;font-weight:400}
1076
- .brz .flatpickr-time .flatpickr-am-pm:focus,.brz .flatpickr-time .flatpickr-am-pm:hover,.brz .flatpickr-time input:focus,.brz .flatpickr-time input:hover{background:#eee}
1077
- .brz .flatpickr-input[readonly]{cursor:pointer}
1078
- @-webkit-keyframes fpFadeInDown{from{opacity:0;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}
1079
- to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fpFadeInDown{from{opacity:0;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}
1080
- to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .select2-container{-webkit-box-sizing:border-box;box-sizing:border-box;display:inline-block;margin:0;position:relative;vertical-align:middle}
1081
- .brz .select2-container .select2-selection--single{-webkit-box-sizing:border-box;box-sizing:border-box;cursor:pointer;display:block;height:28px;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-user-select:none}
1082
- .brz .select2-container .select2-selection--single .select2-selection__rendered{display:block;padding-left:8px;padding-right:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
1083
- .brz .select2-container .select2-selection--single .select2-selection__clear{position:relative}
1084
- .brz .select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered{padding-right:8px;padding-left:20px}
1085
- .brz .select2-container .select2-selection--multiple{-webkit-box-sizing:border-box;box-sizing:border-box;cursor:pointer;display:block;min-height:32px;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-user-select:none}
1086
- .brz .select2-container .select2-selection--multiple .select2-selection__rendered{display:inline-block;overflow:hidden;padding-left:8px;text-overflow:ellipsis;white-space:nowrap}
1087
- .brz .select2-container .select2-search--inline{float:left}
1088
- .brz .select2-container .select2-search--inline .select2-search__field{-webkit-box-sizing:border-box;box-sizing:border-box;border:none;font-size:100%;margin-top:5px;padding:0}
1089
- .brz .select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}
1090
- .brz .select2-dropdown{background-color:#fff;border:1px solid #aaa;border-radius:4px;-webkit-box-sizing:border-box;box-sizing:border-box;display:block;position:absolute;left:-100000px;width:100%;z-index:1051}
1091
- .brz .select2-results{display:block}
1092
- .brz .select2-results__options{list-style:none;margin:0;padding:0}
1093
- .brz .select2-results__option{padding:6px;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-user-select:none}
1094
- .brz .select2-results__option[aria-selected]{cursor:pointer}
1095
- .brz .select2-container--open .select2-dropdown{left:0}
1096
- .brz .select2-container--open .select2-dropdown--above{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}
1097
- .brz .select2-container--open .select2-dropdown--below{border-top:none;border-top-left-radius:0;border-top-right-radius:0}
1098
- .brz .select2-search--dropdown{display:block;padding:4px}
1099
- .brz .select2-search--dropdown .select2-search__field{padding:4px;width:100%;-webkit-box-sizing:border-box;box-sizing:border-box}
1100
- .brz .select2-search--dropdown .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}
1101
- .brz .select2-search--dropdown.select2-search--hide{display:none}
1102
- .brz .select2-close-mask{border:0;margin:0;padding:0;display:block;position:fixed;left:0;top:0;min-height:100%;min-width:100%;height:auto;width:auto;opacity:0;z-index:99;background-color:#fff}
1103
- .brz .select2-hidden-accessible{border:0!important;clip:rect(0 0 0 0)!important;-webkit-clip-path:inset(50%)!important;clip-path:inset(50%)!important;height:1px!important;overflow:hidden!important;padding:0!important;position:absolute!important;width:1px!important;white-space:nowrap!important}
1104
- .brz .select2-container--default .select2-selection--single{background-color:#fff;border:1px solid #aaa;border-radius:4px}
1105
- .brz .select2-container--default .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}
1106
- .brz .select2-container--default .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:700}
1107
- .brz .select2-container--default .select2-selection--single .select2-selection__placeholder{color:#999}
1108
- .brz .select2-container--default .select2-selection--single .select2-selection__arrow{height:26px;position:absolute;top:1px;right:1px;width:20px}
1109
- .brz .select2-container--default .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}
1110
- .brz .select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear{float:left}
1111
- .brz .select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow{left:1px;right:auto}
1112
- .brz .select2-container--default.select2-container--disabled .select2-selection--single{background-color:#eee;cursor:default}
1113
- .brz .select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear{display:none}
1114
- .brz .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}
1115
- .brz .select2-container--default .select2-selection--multiple{background-color:#fff;border:1px solid #aaa;border-radius:4px;cursor:text}
1116
- .brz .select2-container--default .select2-selection--multiple .select2-selection__rendered{-webkit-box-sizing:border-box;box-sizing:border-box;list-style:none;margin:0;padding:0 5px;width:100%}
1117
- .brz .select2-container--default .select2-selection--multiple .select2-selection__rendered li{list-style:none}
1118
- .brz .select2-container--default .select2-selection--multiple .select2-selection__clear{cursor:pointer;float:right;font-weight:700;margin-top:5px;margin-right:10px;padding:1px}
1119
- .brz .select2-container--default .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}
1120
- .brz .select2-container--default .select2-selection--multiple .select2-selection__choice__remove{color:#999;cursor:pointer;display:inline-block;font-weight:700;margin-right:2px}
1121
- .brz .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover{color:#333}
1122
- .brz .select2-container--default[dir=rtl] .select2-selection--multiple .select2-search--inline,.brz .select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice{float:right}
1123
- .brz .select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}
1124
- .brz .select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}
1125
- .brz .select2-container--default.select2-container--focus .select2-selection--multiple{border:solid #000 1px;outline:0}
1126
- .brz .select2-container--default.select2-container--disabled .select2-selection--multiple{background-color:#eee;cursor:default}
1127
- .brz .select2-container--default.select2-container--disabled .select2-selection__choice__remove{display:none}
1128
- .brz .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple,.brz .select2-container--default.select2-container--open.select2-container--above .select2-selection--single{border-top-left-radius:0;border-top-right-radius:0}
1129
- .brz .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple,.brz .select2-container--default.select2-container--open.select2-container--below .select2-selection--single{border-bottom-left-radius:0;border-bottom-right-radius:0}
1130
- .brz .select2-container--default .select2-search--dropdown .select2-search__field{border:1px solid #aaa}
1131
- .brz .select2-container--default .select2-search--inline .select2-search__field{background:0 0;border:none;outline:0;-webkit-box-shadow:none;box-shadow:none;-webkit-appearance:textfield}
1132
- .brz .select2-container--default .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}
1133
- .brz .select2-container--default .select2-results__option[role=group]{padding:0}
1134
- .brz .select2-container--default .select2-results__option[aria-disabled=true]{color:#999}
1135
- .brz .select2-container--default .select2-results__option[aria-selected=true]{background-color:#ddd}
1136
- .brz .select2-container--default .select2-results__option .select2-results__option{padding-left:1em}
1137
- .brz .select2-container--default .select2-results__option .select2-results__option .select2-results__group{padding-left:0}
1138
- .brz .select2-container--default .select2-results__option .select2-results__option .select2-results__option{margin-left:-1em;padding-left:2em}
1139
- .brz .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-2em;padding-left:3em}
1140
- .brz .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-3em;padding-left:4em}
1141
- .brz .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-4em;padding-left:5em}
1142
- .brz .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-5em;padding-left:6em}
1143
- .brz .select2-container--default .select2-results__option--highlighted[aria-selected]{background-color:#5897fb;color:#fff}
1144
- .brz .select2-container--default .select2-results__group{cursor:default;display:block;padding:6px}
1145
- .brz .select2-container--classic .select2-selection--single{background-color:#f7f7f7;border:1px solid #aaa;border-radius:4px;outline:0;background-image:-webkit-gradient(linear,left top,left bottom,color-stop(50%,#fff),to(#eee));background-image:linear-gradient(to bottom,#fff 50%,#eee 100%);background-repeat:repeat-x}
1146
- .brz .select2-container--classic .select2-selection--single:focus{border:1px solid #5897fb}
1147
- .brz .select2-container--classic .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}
1148
- .brz .select2-container--classic .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:700;margin-right:10px}
1149
- .brz .select2-container--classic .select2-selection--single .select2-selection__placeholder{color:#999}
1150
- .brz .select2-container--classic .select2-selection--single .select2-selection__arrow{background-color:#ddd;border:none;border-left:1px solid #aaa;border-top-right-radius:4px;border-bottom-right-radius:4px;height:26px;position:absolute;top:1px;right:1px;width:20px;background-image:-webkit-gradient(linear,left top,left bottom,color-stop(50%,#eee),to(#ccc));background-image:linear-gradient(to bottom,#eee 50%,#ccc 100%);background-repeat:repeat-x}
1151
- .brz .select2-container--classic .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}
1152
- .brz .select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__clear{float:left}
1153
- .brz .select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__arrow{border:none;border-right:1px solid #aaa;border-radius:0;border-top-left-radius:4px;border-bottom-left-radius:4px;left:1px;right:auto}
1154
- .brz .select2-container--classic.select2-container--open .select2-selection--single{border:1px solid #5897fb}
1155
- .brz .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow{background:0 0;border:none}
1156
- .brz .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}
1157
- .brz .select2-container--classic.select2-container--open.select2-container--above .select2-selection--single{border-top:none;border-top-left-radius:0;border-top-right-radius:0;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),color-stop(50%,#eee));background-image:linear-gradient(to bottom,#fff 0,#eee 50%);background-repeat:repeat-x}
1158
- .brz .select2-container--classic.select2-container--open.select2-container--below .select2-selection--single{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0;background-image:-webkit-gradient(linear,left top,left bottom,color-stop(50%,#eee),to(#fff));background-image:linear-gradient(to bottom,#eee 50%,#fff 100%);background-repeat:repeat-x}
1159
- .brz .select2-container--classic .select2-selection--multiple{background-color:#fff;border:1px solid #aaa;border-radius:4px;cursor:text;outline:0}
1160
- .brz .select2-container--classic .select2-selection--multiple:focus{border:1px solid #5897fb}
1161
- .brz .select2-container--classic .select2-selection--multiple .select2-selection__rendered{list-style:none;margin:0;padding:0 5px}
1162
- .brz .select2-container--classic .select2-selection--multiple .select2-selection__clear{display:none}
1163
- .brz .select2-container--classic .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}
1164
- .brz .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove{color:#888;cursor:pointer;display:inline-block;font-weight:700;margin-right:2px}
1165
- .brz .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover{color:#555}
1166
- .brz .select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice{float:right;margin-left:5px;margin-right:auto}
1167
- .brz .select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}
1168
- .brz .select2-container--classic.select2-container--open .select2-selection--multiple{border:1px solid #5897fb}
1169
- .brz .select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple{border-top:none;border-top-left-radius:0;border-top-right-radius:0}
1170
- .brz .select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}
1171
- .brz .select2-container--classic .select2-search--dropdown .select2-search__field{border:1px solid #aaa;outline:0}
1172
- .brz .select2-container--classic .select2-search--inline .select2-search__field{outline:0;-webkit-box-shadow:none;box-shadow:none}
1173
- .brz .select2-container--classic .select2-dropdown{background-color:#fff;border:1px solid transparent}
1174
- .brz .select2-container--classic .select2-dropdown--above{border-bottom:none}
1175
- .brz .select2-container--classic .select2-dropdown--below{border-top:none}
1176
- .brz .select2-container--classic .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}
1177
- .brz .select2-container--classic .select2-results__option[role=group]{padding:0}
1178
- .brz .select2-container--classic .select2-results__option[aria-disabled=true]{color:grey}
1179
- .brz .select2-container--classic .select2-results__option--highlighted[aria-selected]{background-color:#3875d7;color:#fff}
1180
- .brz .select2-container--classic .select2-results__group{cursor:default;display:block;padding:6px}
1181
- .brz .select2-container--classic.select2-container--open .select2-dropdown{border-color:#5897fb}
1182
- .brz .brz-forms2{width:100%}
1183
- .brz .brz-forms2__fields,.brz .brz-forms2__wrap{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}
1184
- .brz .brz-forms2__field{outline:0}
1185
- .brz .brz-forms2__wrap{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}
1186
- .brz .brz-forms2__item{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-ms-flex-negative:0;flex-shrink:0}
1187
- .brz .brz-forms2 .brz-input,.brz .brz-forms2 .brz-textarea{display:block;width:100%;height:auto;max-width:100%;min-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;-webkit-box-shadow:none;box-shadow:none}
1188
- .brz .brz-forms2 .brz-input::-webkit-input-placeholder,.brz .brz-forms2 .brz-textarea::-webkit-input-placeholder{color:inherit;opacity:.5}
1189
- .brz .brz-forms2 .brz-input::-moz-placeholder,.brz .brz-forms2 .brz-textarea::-moz-placeholder{color:inherit;opacity:.5}
1190
- .brz .brz-forms2 .brz-input::-ms-input-placeholder,.brz .brz-forms2 .brz-textarea::-ms-input-placeholder{color:inherit;opacity:.5}
1191
- .brz .brz-forms2 .brz-input::placeholder,.brz .brz-forms2 .brz-textarea::placeholder{color:inherit;opacity:.5}
1192
- .brz .brz-forms2 .brz-textarea{height:100%;resize:none}
1193
- .brz .brz-forms2 .brz-label{display:block}
1194
- .brz .brz-forms2 .brz-forms2__field{text-align:left}
1195
- .brz .brz-forms2 .brz-forms2__field-label{border:none;cursor:auto}
1196
- .brz .brz-forms2__radio.brz-forms2__field{padding:0;border:none!important;margin-bottom:-20px}
1197
- .brz .brz-forms2__radio-option{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;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding-bottom:1.2em}
1198
- .brz .brz-forms2__radio-option .brz-span{margin-left:10px;margin-right:auto}
1199
- .brz .brz-forms2__radio-option input.brz-input{cursor:auto}
1200
- .brz .brz-forms2__checkbox-options,.brz .brz-forms2__radio-options{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}
1201
- .brz .brz-forms2 .brz-control__check-group-icon,.brz .brz-forms2 .brz-control__radio-check{-ms-flex-preferred-size:1em;flex-basis:1em}
1202
- .brz .brz-forms2 .brz-forms2__checkbox-option-name,.brz .brz-forms2 .brz-forms2__radio-option-name{-ms-flex-preferred-size:calc(100% - 1em - 10px);flex-basis:calc(100% - 1em - 10px)}
1203
- .brz .brz-forms2__checkbox.brz-forms2__field{padding:0;border:none!important;margin-bottom:-20px}
1204
- .brz .brz-forms2__checkbox-option{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;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding-bottom:1.2em}
1205
- .brz .brz-forms2__checkbox-option .brz-forms2__checkbox-option-name{margin-left:10px;margin-right:auto}
1206
- .brz .brz-forms2__checkbox-option input.brz-input{cursor:auto}
1207
- .brz .brz-forms2__checkbox-option .brz-control__radio-check{border-radius:0}
1208
- .brz .brz-forms2__item-button .brz-btn{outline:0;width:100%}
1209
- .brz .brz-forms2__item-button .brz-icon-svg{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0}
1210
- .brz .brz-forms2__alert{min-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}
1211
- .brz .brz-forms2__alert--success{background-color:#15d053}
1212
- .brz .brz-forms2__alert--error{background-color:red}
1213
- .brz .brz-forms2__item--error .brz-control__check-group,.brz .brz-forms2__item--error .brz-control__radio{color:red!important}
1214
- .brz.brz:not(.brz-ed) .brz-control__check-group .brz-label{font:inherit;display:inherit;-webkit-box-align:inherit;-ms-flex-align:inherit;align-items:inherit;width:100%;cursor:pointer}
1215
- .brz.brz:not(.brz-ed) .brz-control__check-group--check{display:none}
1216
- .brz.brz:not(.brz-ed) .brz-control__check-group .brz-input{display:none}
1217
- .brz.brz:not(.brz-ed) .brz-control__check-group .brz-input:checked~.brz-label .brz-control__check-group--check{display:inline-block}
1218
- .brz.brz:not(.brz-ed) .brz-control__check-group .brz-input:checked~.brz-label .brz-control__check-group--uncheck{display:none}
1219
- .brz.brz:not(.brz-ed) .brz-control__radio .brz-label{font:inherit;display:inherit;-webkit-box-align:inherit;-ms-flex-align:inherit;align-items:inherit;width:100%;cursor:pointer}
1220
- .brz.brz:not(.brz-ed) .brz-control__radio--check{display:none}
1221
- .brz.brz:not(.brz-ed) .brz-control__radio .brz-input{display:none}
1222
- .brz.brz:not(.brz-ed) .brz-control__radio .brz-input:checked~.brz-label .brz-control__radio--check{display:inline-block}
1223
- .brz.brz:not(.brz-ed) .brz-control__radio .brz-input:checked~.brz-label .brz-control__radio--uncheck{display:none}
1224
- .brz.brz:not(.brz-ed) .brz-forms2__field-select{padding:0}
1225
- .brz.brz:not(.brz-ed) .brz-select{width:100%;visibility:hidden}
1226
- .brz.brz:not(.brz-ed) .select2-dropdown{background-color:#fff;border:none;border-radius:0}
1227
- .brz.brz:not(.brz-ed) .select2-results__option{padding:12px 24px;font-size:16px;height:48px;line-height:1.5;cursor:pointer;background-color:inherit}
1228
- .brz.brz:not(.brz-ed) .select2-container{height:100%}
1229
- .brz.brz:not(.brz-ed) .select2-container,.brz.brz:not(.brz-ed) .select2-selection{outline:0}
1230
- .brz.brz:not(.brz-ed) .select2-selection--multiple,.brz.brz:not(.brz-ed) .select2-selection--single{height:100%;border:none;background-color:transparent;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}
1231
- .brz.brz:not(.brz-ed) .select2-selection--multiple .select2-selection__rendered,.brz.brz:not(.brz-ed) .select2-selection--single .select2-selection__rendered{color:inherit;line-height:1;padding:0;-webkit-box-flex:1;-ms-flex:1;flex:1}
1232
- .brz.brz:not(.brz-ed) .select2-selection--multiple .select2-selection__rendered{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin:-2.5px}
1233
- .brz.brz:not(.brz-ed) .select2-selection--multiple .select2-selection__choice{margin:2.5px;float:none;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border:none;padding:0 11px}
1234
- .brz.brz:not(.brz-ed) .select2-selection--multiple .select2-selection__choice__remove{display:block;font-size:inherit;font-weight:400;color:inherit;margin-right:0;margin-left:8px}
1235
- .brz.brz:not(.brz-ed) .select2-selection__arrow{top:50%;right:18px;-webkit-transform:translateY(-50%);transform:translateY(-50%)}
1236
- .brz.brz:not(.brz-ed) .select2-selection__clear{margin-right:14px}
1237
- .brz.brz:not(.brz-ed) .select2-search__field{font:inherit;color:inherit;margin:0}
1238
- .brz.brz:not(.brz-ed) .select2-search__field::-webkit-input-placeholder{color:inherit}
1239
- .brz.brz:not(.brz-ed) .select2-search__field::-moz-placeholder{color:inherit}
1240
- .brz.brz:not(.brz-ed) .select2-search__field::-ms-input-placeholder{color:inherit}
1241
- .brz.brz:not(.brz-ed) .select2-search__field::placeholder{color:inherit}
1242
- .brz.brz:not(.brz-ed) .select2-container .select2-search--inline{margin:2.5px;-webkit-box-flex:1;-ms-flex:1;flex:1;float:none}
1243
- .brz.brz:not(.brz-ed) .select2-container--default .select2-results>.select2-results__options{max-height:initial}
1244
- .brz.brz:not(.brz-ed) .select2-container--default .select2-results__option--highlighted[aria-selected]{background-color:inherit;color:inherit}
1245
- .brz.brz:not(.brz-ed) .select2-container--default .select2-selection--single .select2-selection__placeholder{color:inherit}
1246
- .brz.brz:not(.brz-ed) .select2-container--default .select2-selection--single .select2-selection__placeholder:empty:before{content:"Fake content";visibility:hidden}
1247
- .brz.brz:not(.brz-ed) .select2-container--default .select2-selection--single .select2-selection__arrow b{border-color:currentColor transparent transparent}
1248
- .brz.brz:not(.brz-ed) .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent currentColor}
1249
- .brz.brz:not(.brz-ed) .select2-container--open .select2-dropdown{top:1px}
1250
- .brz.brz:not(.brz-ed) .select2-dropdown--below{background-color:transparent}
1251
- .brz.brz:not(.brz-ed) .flatpickr-calendar{font-family:Lato,sans-serif;width:306px}
1252
- .brz.brz:not(.brz-ed) .flatpickr-calendar.hasTime{width:150px}
1253
- .brz.brz:not(.brz-ed) .flatpickr-calendar.open{max-height:600px}
1254
- .brz.brz:not(.brz-ed) .flatpickr-calendar .dayContainer{width:286px;min-width:286px;max-width:286px}
1255
- .brz.brz:not(.brz-ed) .flatpickr-calendar .numInputWrapper:hover{background-color:transparent}
1256
- .brz.brz:not(.brz-ed) .flatpickr-months{padding:10px 10px 0}
1257
- .brz.brz:not(.brz-ed) .flatpickr-innerContainer{padding:0 10px 10px}
1258
- .brz.brz:not(.brz-ed) .flatpickr-next-month,.brz.brz:not(.brz-ed) .flatpickr-prev-month{top:7px}
1259
- .brz.brz:not(.brz-ed) .flatpickr-next-month{right:10px}
1260
- .brz.brz:not(.brz-ed) .flatpickr-prev-month{left:10px}
1261
- .brz.brz:not(.brz-ed) .flatpickr-months .flatpickr-next-month,.brz.brz:not(.brz-ed) .flatpickr-months .flatpickr-prev-month{color:rgba(0,0,0,.5)}
1262
- .brz.brz:not(.brz-ed) .flatpickr-months .flatpickr-next-month:hover,.brz.brz:not(.brz-ed) .flatpickr-months .flatpickr-prev-month:hover{color:#000}
1263
- .brz.brz:not(.brz-ed) .flatpickr-months .flatpickr-next-month svg,.brz.brz:not(.brz-ed) .flatpickr-months .flatpickr-prev-month svg{fill:currentColor}
1264
- .brz.brz:not(.brz-ed) .flatpickr-current-month input.cur-year{font-size:17px;font-weight:700}
1265
- .brz.brz:not(.brz-ed) .flatpickr-current-month .numInputWrapper:hover,.brz.brz:not(.brz-ed) .flatpickr-current-month span.cur-month:hover{background-color:transparent}
1266
- .brz.brz:not(.brz-ed) .flatpickr-weekdays{padding:20px 0 15px;height:auto}
1267
- .brz.brz:not(.brz-ed) .flatpickr-weekday{color:rgba(0,0,0,.8)}
1268
- .brz.brz:not(.brz-ed) .flatpickr-days{width:286px;font-size:13px;font-weight:700}
1269
- .brz.brz:not(.brz-ed) .flatpickr-day{height:36px;max-width:36px;line-height:1;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}
1270
- .brz.brz:not(.brz-ed) .flatpickr-day.today{border-color:#a9a9a9}
1271
- .brz.brz:not(.brz-ed) .flatpickr-day:focus,.brz.brz:not(.brz-ed) .flatpickr-day:hover{color:#fff;border-color:#a9a9a9;background-color:#a9a9a9}
1272
- .brz.brz:not(.brz-ed) .flatpickr-day.selected{border-color:rgba(0,0,0,.9);background-color:rgba(0,0,0,.9)}
1273
- .brz.brz:not(.brz-ed) .flatpickr-time input{font-size:15px;font-weight:700;text-align:left;text-indent:12px}
1274
- .brz.brz:not(.brz-ed) .flatpickr-time .flatpickr-am-pm:focus,.brz.brz:not(.brz-ed) .flatpickr-time .flatpickr-am-pm:hover,.brz.brz:not(.brz-ed) .flatpickr-time input:focus,.brz.brz:not(.brz-ed) .flatpickr-time input:hover{background-color:transparent}
1275
- .brz.brz:not(.brz-ed) .flatpickr-am-pm{font-size:14px;font-weight:700;color:rgba(0,0,0,.7);width:32.66%}
1276
- .brz.brz:not(.brz-ed) .flatpickr-am-pm:focus,.brz.brz:not(.brz-ed) .flatpickr-am-pm:hover{color:#000}
1277
- .brz.brz:not(.brz-ed) .flatpickr-calendar.hasTime .numInputWrapper{width:32.66%}
1278
- .brz.brz:not(.brz-ed) .flatpickr-calendar.hasTime .numInputWrapper span.arrowDown,.brz.brz:not(.brz-ed) .flatpickr-calendar.hasTime .numInputWrapper span.arrowUp{height:10px;top:50%}
1279
- .brz.brz:not(.brz-ed) .flatpickr-calendar.hasTime .numInputWrapper span.arrowUp{margin-top:-10px}
1280
- .brz.brz:not(.brz-ed) .flatpickr-calendar.hasTime .numInputWrapper span.arrowDown{margin-bottom:-10px}
1281
- .brz .brz-input__upload{position:relative}
1282
- .brz .brz-input__upload .brz-label{font:inherit;width:100%;height:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-right:1.5em;cursor:pointer}
1283
- .brz .brz-input__upload .brz-label .brz-span{max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
1284
- .brz .brz-input__upload .brz-label .brz-span:empty:before{content:"Hidden Placeholder";visibility:hidden}
1285
- .brz .brz-input__upload .brz-input__upload-delete{cursor:pointer;position:absolute;top:50%;right:24px;-webkit-transform:translateY(-50%);transform:translateY(-50%);font-size:1.5em}
1286
- .brz .brz-input__upload .brz-input:not(.brz-input__upload-placeholder){display:none}
1287
- .brz .brz-input__upload .brz-button{background-color:#fff;color:#000;border:1px solid #ccc;border-radius:3px;font-size:inherit;font-weight:inherit;font-family:inherit;line-height:1;padding:.5em;position:absolute;top:50%;right:24px;-webkit-transform:translateY(-50%);transform:translateY(-50%);outline:0!important}
1288
- @media (max-width:767px){.brz .brz-forms2__select-item__input{font-size:14px;padding:10px 16px}
1289
- .brz .brz-forms2 .brz-control__select-current{padding:10px 16px}
1290
- .brz .brz-forms2 .brz-control__select-options .brz-control__select-option{padding:10px 16px;font-size:14px}}.brz .brz-tabs{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}
1291
- .brz .brz-tabs__nav{display:-webkit-box;display:-ms-flexbox;display:flex;overflow:hidden;margin:0;padding:0}
1292
- .brz .brz-tabs__nav--item{position:relative;list-style:none;z-index:var(--zIndex)}
1293
- .brz .brz-tabs__nav--item:not(:last-child){margin-right:3px}
1294
- .brz .brz-tabs__nav--active:after,.brz .brz-tabs__nav--active:before{content:"";position:absolute;width:100vw;height:2px;bottom:0}
1295
- .brz .brz-tabs__nav--active:before{left:-100vw}
1296
- .brz .brz-tabs__nav--active:after{right:-100vw}
1297
- .brz .brz-tabs__nav--button{padding:10px 15px;cursor:pointer;border-style:solid;background-clip:padding-box}
1298
- .brz .brz-tabs__nav--mobile{display:none}
1299
- .brz .brz-tabs__items{display:none;border-style:solid;background-clip:padding-box;width:100%}
1300
- .brz .brz-tabs__items--active{display:block;border-top:none}
1301
- .brz .brz-tabs__items--active>.brz-tabs__item--content{-webkit-animation-name:fadeIn;animation-name:fadeIn;-webkit-animation-duration:.15s;animation-duration:.15s;-webkit-animation-fill-mode:both;animation-fill-mode:both}
1302
- .brz .brz-tabs__items--active .brz-bg-content:empty{min-height:50px}
1303
- @media (max-width:991px){.brz .brz-tabs__nav--mobile{display:block}
1304
- .brz .brz-tabs__nav--desktop{display:none}
1305
- .brz .brz-tabs__items{display:block}
1306
- .brz .brz-tabs__items>.brz-tabs__item--content{display:none}
1307
- .brz .brz-tabs__items:not(:last-child){margin-bottom:3px}
1308
- .brz .brz-tabs__items--active{border-top:solid}
1309
- .brz .brz-tabs__items--active>.brz-tabs__nav--button{border-bottom:solid}
1310
- .brz .brz-tabs__items--active>.brz-tabs__item--content{display:block}}.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}
1311
- .brz .brz-accordion__nav{padding:10px 15px;cursor:pointer;border-style:solid;background-clip:padding-box}
1312
- .brz .brz-accordion__item{display:block;width:100%}
1313
- .brz .brz-accordion__item>.brz-accordion__content{display:none;border-style:solid;background-clip:padding-box;border-top-color:transparent!important}
1314
- .brz .brz-accordion__item:not(:last-child){margin-bottom:3px}
1315
- .brz .brz-accordion__item--active>.brz-accordion__content{display:block}
1316
- .brz .brz-accordion__item--active>.brz-accordion__content:empty{min-height:50px}
1317
- .brz .brz-image__gallery{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}
1318
- .brz .brz-image__gallery .brz-image{display:block}
1319
- .brz .brz-image__gallery-item{-webkit-transition:none!important;transition:none!important}
1320
- .brz .brz-popup{position:fixed;width:100%;height:100%;top:0;left:0;z-index:1070}
1321
- .brz .brz-popup__close{position:absolute;z-index:2;top:36px;left:50px;color:#fff;font-size:0;cursor:pointer}
1322
- .brz .brz-popup__close .brz-icon-svg{font-size:26px}
1323
- .brz .brz-popup__inner>.brz-bg-content{max-height:100%;overflow:auto;padding-top:70px;padding-bottom:70px}
1324
- .brz .brz-popup__preview{z-index:-1;visibility:hidden;-webkit-transform:translate(-100%);transform:translate(-100%);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}
1325
- .brz .brz-popup__preview.brz-popup--opened{z-index:1070;visibility:visible;-webkit-transform:translate(0);transform:translate(0);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}
1326
- .brz .brz-popup2{position:fixed;width:100%;height:100%;top:0;left:0;z-index:1060}
1327
- .brz .brz-popup2__close{position:absolute;z-index:2;color:#fff;font-size:0;cursor:pointer}
1328
- .brz .brz-popup2__close .brz-icon-svg{font-size:26px}
1329
- .brz .brz-popup2 .brz-container__wrap{position:relative}
1330
- .brz .brz-popup2 .brz-container__wrap .brz-container{height:100%}
1331
- .brz .brz-popup2__inner{height:100%}
1332
- .brz .brz-popup2__inner>.brz-bg-content{max-height:100%;display:-webkit-box;display:-ms-flexbox;display:flex;overflow-x:hidden;overflow-y:auto}
1333
- .brz .brz-popup2__inner>.brz-bg-content>.brz-container__wrap{max-height:100%;margin:0;padding:0;min-width:300px}
1334
- .brz .brz-popup2__vertical-align{-webkit-transform:rotate(270deg);transform:rotate(270deg)}
1335
- .brz .brz-popup2__preview{z-index:-1;visibility:hidden;-webkit-transform:translate(-100%);transform:translate(-100%);opacity:0;-webkit-transition:.3s cubic-bezier(.25,.46,.45,.94) opacity;transition:.3s cubic-bezier(.25,.46,.45,.94) opacity}
1336
- .brz .brz-popup2__preview.brz-popup2--opened{z-index:1070;visibility:visible;-webkit-transform:translate(0);transform:translate(0);opacity:1;-webkit-transition:.3s cubic-bezier(.25,.46,.45,.94) opacity;transition:.3s cubic-bezier(.25,.46,.45,.94) opacity}
1337
- .brz .brz-carousel{display:block;width:100%}
1338
- .brz .brz-carousel__slider:not(.slick-initialized){display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}
1339
- .brz .brz-carousel>.slick-slider{overflow:hidden}
1340
- .brz .brz-carousel>.slick-slider .slick-slide{height:auto}
1341
- .brz .brz-carousel>.slick-slider>.slick-list>.slick-track>.slick-slide>div{height:100%}
1342
- .brz .brz-carousel>.slick-slider>.slick-list>.slick-track>.slick-slide>div>.brz-carousel__item,.brz .brz-carousel>.slick-slider>.slick-list>.slick-track>.slick-slide>div>.brz-carousel__item>.brz-columns,.brz .brz-carousel>.slick-slider>.slick-list>.slick-track>.slick-slide>div>.brz-columns{height:100%}
1343
- .brz .brz-carousel>.slick-slider>.brz-slick-slider__arrow{opacity:1}
1344
- .brz .brz-carousel>.slick-slider>.brz-slick-slider__dots{bottom:10px}
1345
- .brz .brz-carousel>.slick-slider .slick-slide{outline:0}
1346
- .brz .brz-carousel>.slick-slider .slick-track{-ms-flex-wrap:nowrap;flex-wrap:nowrap}
1347
- .brz .brz-carousel .brz-icon-svg,.brz .brz-carousel .brz-rich-text *{-webkit-backface-visibility:hidden;backface-visibility:hidden}
1348
- @media (max-width:767px){.brz.brz:not(.brz-ed) .slick-slider *{min-width:0;min-height:0}}.brz .brz-posts{width:100%;display:grid}
1349
- .brz .brz-posts ul.page-numbers{margin:0;list-style:none;padding:0;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;grid-column:1/-1;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}
1350
- .brz .brz-posts ul.page-numbers>li{position:relative;margin-left:4px;margin-right:4px}
1351
- .brz .brz-posts ul.page-numbers>li:first-child{margin-left:0}
1352
- .brz .brz-posts ul.page-numbers>li:last-child{margin-right:0}
1353
- .brz .brz-posts ul.page-numbers .page-numbers{position:relative;display:block;color:inherit;font-size:18px;line-height:1;text-decoration:none;padding:6px 10px;-webkit-transition:.2s linear color;transition:.2s linear color;outline:0}
1354
- .brz .brz-posts ul.page-numbers .page-numbers:before{content:"";width:28px;height:28px;position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);border:2px solid transparent;-webkit-transition:.2s linear border-color;transition:.2s linear border-color;opacity:.75}
1355
- .brz .brz-posts ul.page-numbers .page-numbers:hover{-webkit-transition:.2s linear color;transition:.2s linear color}
1356
- .brz .brz-posts ul.page-numbers .page-numbers.current:before{border-color:currentColor;-webkit-transition:.2s linear border-color;transition:.2s linear border-color}
1357
- .brz .fb_iframe_widget{min-height:20px}
1358
- .brz .fb-comments,.brz .fb-comments span,.brz .fb-comments span iframe[style],.brz .fb-page,.brz .fb-page span,.brz .fb-page span iframe[style],.brz .fb-post,.brz .fb-video{width:100%!important;min-width:100%!important}
1359
- .brz .brz-fb-embed,.brz .brz-fb-group,.brz .brz-fb-page{position:relative;width:100%}
1360
- .brz .brz-fb-embed::before,.brz .brz-fb-group::before,.brz .brz-fb-page::before{content:"";width:100%;height:100%;position:absolute;top:0;left:0;z-index:2;display:block;pointer-events:none}
1361
- .brz .brz-fb-comments,.brz .brz-fb-page{width:100%}
1362
- .brz .brz-wp__breadcrumbs{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:inherit;-ms-flex-pack:inherit;justify-content:inherit}
1363
- .brz .brz-wp__breadcrumbs .brz-breadcrumbs{width:100%;padding:0;margin:0;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-ms-flex-wrap:wrap;flex-wrap:wrap;word-break:break-all}
1364
- .brz .brz-wp__breadcrumbs .brz-breadcrumbs .brz-li{list-style:none;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}
1365
- .brz .brz-wp__breadcrumbs .brz-breadcrumbs .brz-li .brz-a{cursor:pointer}
1366
- .brz .brz-wp__breadcrumbs .brz-breadcrumbs .brz-li .brz-icon-svg{margin-top:1px}
1367
- .brz .brz-wp__breadcrumbs .brz-breadcrumbs .brz-li:last-child .brz-a{margin-right:0}
1368
- .brz .brz-wp__breadcrumbs .brz-breadcrumbs .brz-li:not(:last-child) .brz-a{color:inherit}
1369
- .brz .brz-woosku{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:inherit;-ms-flex-pack:inherit;justify-content:inherit}
1370
- .brz .brz-woostock{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:inherit;-ms-flex-pack:inherit;justify-content:inherit}
1371
- .brz .brz-woostock .in-stock{margin:0}
1372
- .brz .brz-wp__postContent>div>:first-child{margin-top:0}
1373
- .brz .brz-wp__postContent>div>:last-child{margin-bottom:0}
1374
- .brz .brz-wp__postinfo{width:auto!important;padding:0;margin:0;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-ms-flex-wrap:wrap;flex-wrap:wrap;word-break:break-all}
1375
- .brz .brz-wp__postinfo>ul{margin:0;padding:0}
1376
- .brz .brz-wp__postinfo .brz-li{list-style:none;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;cursor:pointer}
1377
- .brz .brz-wp__postinfo .brz-li:last-child{margin-right:0!important}
1378
- .brz .brz-wp__postinfo .brz-li .brz-icon-svg{margin-right:.5em}
1379
- .brz .brz-starrating{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}
1380
- .brz .brz-starrating-container{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}
1381
- .brz .brz-starrating-color{position:absolute;top:0;left:0;z-index:2;overflow:hidden}
1382
- .brz .brz-starrating-icon-wrap{position:relative}
1383
- .brz .brz-starrating .brz-icon-svg{top:.1em}
1384
- .brz .brz-starrating .brz-icon-svg:last-child{margin-right:0!important}
1385
- .brz .brz-starrating-color-full{width:100%}
1386
- .brz .brz-starrating-color-w1{width:10%}
1387
- .brz .brz-starrating-color-w2{width:20%}
1388
- .brz .brz-starrating-color-w3{width:30%}
1389
- .brz .brz-starrating-color-w4{width:40%}
1390
- .brz .brz-starrating-color-w5{width:50%}
1391
- .brz .brz-starrating-color-w6{width:60%}
1392
- .brz .brz-starrating-color-w7{width:70%}
1393
- .brz .brz-starrating-color-w8{width:80%}
1394
- .brz .brz-starrating-color-w9{width:90%}
1395
- .brz .screen-reader-text{display:none}
1396
- .brz .media-modal *{-webkit-box-sizing:content-box;box-sizing:content-box}
1397
- .brz .media-modal input,.brz .media-modal select,.brz .media-modal textarea{-webkit-box-sizing:border-box;box-sizing:border-box}
1398
- .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}
1399
- .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}
1400
- .brz .media-modal label,.brz .media-modal legend{font-size:13px;text-transform:capitalize;line-height:1.4em;color:#666;font-weight:400}
1401
- .brz .media-frame input,.brz .media-frame textarea{padding:6px 8px}
1402
- .brz .media-frame select,.brz .wp-admin .media-frame select{line-height:28px;margin-top:3px}
1403
- .brz .media-frame a{border-bottom:none;color:#0073aa}
1404
- .brz .media-frame a:active,.brz .media-frame a:hover{color:#00a0d2}
1405
- .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}
1406
- .brz .media-frame a.button{color:#32373c}
1407
- .brz .media-frame a.button:hover{color:#23282d}
1408
- .brz .media-frame a.button-primary,.brz .media-frame a.button-primary:hover{color:#fff}
1409
- .brz .media-frame input[type=email],.brz .media-frame input[type=number],.brz .media-frame input[type=password],.brz .media-frame input[type=search],.brz .media-frame input[type=text],.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}
1410
- .brz .media-frame input[type=email]:focus,.brz .media-frame input[type=number]:focus,.brz .media-frame input[type=password]:focus,.brz .media-frame input[type=search]:focus,.brz .media-frame input[type=text]:focus,.brz .media-frame input[type=url]:focus,.brz .media-frame select:focus,.brz .media-frame textarea:focus{border-color:#5b9dd9}
1411
- .brz .media-frame select{height:24px;padding:2px}
1412
- .brz .media-frame input:disabled,.brz .media-frame input[readonly],.brz .media-frame textarea:disabled,.brz .media-frame textarea[readonly]{background-color:#eee}
1413
- .brz .media-frame input[type=search]{-webkit-appearance:textfield}
1414
- .brz .media-frame ::-webkit-input-placeholder{color:#72777c}
1415
- .brz .media-frame ::-moz-placeholder{color:#72777c;opacity:1}
1416
- .brz .media-frame :-ms-input-placeholder{color:#72777c}
1417
- .brz .media-frame .hidden{display:none}
1418
- .brz .media-frame button{color:inherit;text-shadow:none!important;line-height:normal!important;letter-spacing:normal;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-weight:400;font-style:normal;text-transform:capitalize;margin:0}
1419
- .brz .media-frame button.delete-attachment{height:auto;font-size:12px;line-height:1}
1420
- .brz .media-frame button.media-button-select{color:#fff;margin-top:15px;font-size:13px;line-height:26px;height:28px}
1421
- .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}
1422
- .brz .media-frame button.browser:hover{background:#fafafa;border-color:#999;color:#23282d!important}
1423
- .brz .media-attachments-filter-heading:before{display:none}
1424
- .brz .media-modal .media-frame-title h1:before{display:none}
1425
- .brz .media-modal{position:fixed;top:30px;left:78px;right:30px;bottom:60px;z-index:160000}
1426
- .brz .media-frame-title h1{padding:0 16px;margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:22px;font-weight:600;font-style:normal;line-height:50px;color:#23282d;text-shadow:none;text-transform:capitalize}
1427
- .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}
1428
- .brz .media-modal-close:active,.brz .media-modal-close:hover{color:#00a0d2}
1429
- .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)}
1430
- .brz .media-modal-close span.media-modal-icon{background-image:none}
1431
- .brz .media-modal-close .media-modal-icon:before{content:"\f158";font:normal 20px/1 dashicons;speak:none;vertical-align:middle;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
1432
- .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-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-style:normal;font-weight:400;color:#0073aa;text-transform:capitalize;text-align:left;text-shadow:none}
1433
- .brz .media-router>a:hover{color:#00a0d2}
1434
- .brz .media-router>a:last-child{border-right:0}
1435
- .brz .media-router>a:active{outline:0}
1436
- .brz .media-router .active,.brz .media-router .active:hover{color:#32373c}
1437
- .brz .media-router .active,.brz .media-router>a.active:last-child{margin:-1px -1px 0;background:#fff;border:1px solid #ddd;border-bottom:none}
1438
- .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}
1439
- .brz .media-toolbar-primary .search{max-width:100%}
1440
- .brz .media-modal-content .media-frame select.attachment-filters{margin-top:32px;margin-right:2%;width:calc(48% - 12px);padding:2px;line-height:28px;height:28px}
1441
- .brz .thumbnail{display:block;padding:0;margin-bottom:0;line-height:normal;background-color:transparent;border:0;border-radius:0}
1442
- .brz .uploader-inline h2,.brz .uploader-inline h3{font-size:20px;line-height:28px;font-weight:400;margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-style:normal;letter-spacing:0;color:#23282d}
1443
- .brz .uploader-inline .has-upload-message .upload-instructions{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:14px;color:#444;font-weight:400}
1444
- .brz .uploader-inline p{font-size:12px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;margin:.5em 0}
1445
- .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}
1446
- .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;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;letter-spacing:normal;font-style:normal;text-shadow:none}
1447
- .brz .attachment-details .setting label,.brz .media-sidebar .setting label{display:block;text-transform:capitalize;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;letter-spacing:normal;font-style:normal;text-shadow:none}
1448
- .brz .attachment-details .setting span,.brz .media-sidebar .setting span{min-width:30%;margin-right:4%;font-size:12px;color:#666;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;letter-spacing:normal;font-style:normal;text-shadow:none;text-align:right;word-wrap:break-word}
1449
- .brz .media-sidebar .setting .name{max-width:80px}
1450
- .brz .attachment-details .setting select,.brz .media-sidebar .setting select{max-width:65%}
1451
- .brz .attachment-details .field input[type=checkbox],.brz .attachment-details .field input[type=radio],.brz .attachment-details .setting input[type=checkbox],.brz .attachment-details .setting input[type=radio],.brz .media-sidebar .field input[type=checkbox],.brz .media-sidebar .field input[type=radio],.brz .media-sidebar .setting input[type=checkbox],.brz .media-sidebar .setting input[type=radio]{float:none;margin:8px 3px 0;padding:0}
1452
- .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}
1453
- .brz .compat-item label span{text-align:right}
1454
- .brz .attachment-details .setting .value,.brz .attachment-details .setting input[type=email],.brz .attachment-details .setting input[type=number],.brz .attachment-details .setting input[type=password],.brz .attachment-details .setting input[type=search],.brz .attachment-details .setting input[type=tel],.brz .attachment-details .setting input[type=text],.brz .attachment-details .setting input[type=url],.brz .attachment-details .setting textarea,.brz .media-sidebar .setting .value,.brz .media-sidebar .setting input[type=email],.brz .media-sidebar .setting input[type=number],.brz .media-sidebar .setting input[type=password],.brz .media-sidebar .setting input[type=search],.brz .media-sidebar .setting input[type=tel],.brz .media-sidebar .setting input[type=text],.brz .media-sidebar .setting input[type=url],.brz .media-sidebar .setting textarea{-webkit-box-sizing:border-box;box-sizing:border-box;margin:1px;width:65%;float:right;border-radius:0}
1455
- .brz .attachment-details .setting .value,.brz .media-sidebar .setting .value{margin:0 1px;text-align:left}
1456
- .brz .attachment-details .setting textarea,.brz .compat-item .field textarea,.brz .media-sidebar .setting textarea{height:62px;resize:vertical}
1457
- .brz .attachment-details select,.brz .media-sidebar select{margin-top:3px}
1458
- .brz .media-frame-title .suggested-dimensions{font-size:14px;float:right;margin-right:20px}
1459
- .brz .media-frame select.attachment-filters{margin-top:11px;margin-right:2%;max-width:calc(48% - 12px)}
1460
- .brz .media-frame select.attachment-filters:last-of-type{margin-right:0}
1461
- .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}
1462
- .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}
1463
- .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}
1464
- .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}
1465
- .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}
1466
- .brz .wp-core-ui .attachment-preview:before{content:"";display:block;padding-top:100%}
1467
- .brz .wp-core-ui .attachment .icon{margin:0 auto;overflow:hidden}
1468
- .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}
1469
- .brz .wp-core-ui .attachment .portrait img{max-width:100%}
1470
- .brz .wp-core-ui .attachment .landscape img{max-height:100%}
1471
- .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}
1472
- .brz .wp-core-ui .attachment .thumbnail img{top:0;left:0}
1473
- .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%)}
1474
- .brz .wp-core-ui .attachment .thumbnail .centered img{-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}
1475
- .brz .wp-core-ui .attachments-browser .attachment .thumbnail .centered img.icon{-webkit-transform:translate(-50%,-70%);transform:translate(-50%,-70%)}
1476
- .brz .ie8 .wp-core-ui .attachment img.icon{top:20%;position:relative}
1477
- .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)}
1478
- .brz .wp-core-ui .attachment .filename div{padding:5px 10px}
1479
- .brz .wp-core-ui .attachment .thumbnail img{position:absolute}
1480
- .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}
1481
- .brz .wp-core-ui .attachment-close:focus,.brz .wp-core-ui .attachment-close:hover{background-position:-36px 4px}
1482
- .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)}
1483
- .brz .wp-core-ui .attachment .check .media-modal-icon{display:block;background-position:-1px 0;height:15px;width:15px;margin:5px}
1484
- .brz .wp-core-ui .attachment .check:hover .media-modal-icon{background-position:-40px 0}
1485
- .brz .wp-core-ui .attachment.selected .check{display:block}
1486
- .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}
1487
- .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}
1488
- .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}
1489
- .brz .wp-core-ui .media-frame .attachment .describe{position:relative;display:block;width:100%;margin:0;padding:8px;font-size:12px;border-radius:0}
1490
- .brz .media-frame .attachments-browser{position:relative;width:100%;height:100%;overflow:hidden}
1491
- .brz .attachments-browser .media-toolbar{right:300px;height:72px}
1492
- .brz .attachments-browser.hide-sidebar .media-toolbar{right:0}
1493
- .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}
1494
- .brz .attachments-browser .attachments{padding:2px 8px 8px}
1495
- .brz .attachments-browser .attachments,.brz .attachments-browser .uploader-inline{position:absolute;top:72px;left:0;right:300px;bottom:0;overflow:auto;outline:0}
1496
- .brz .attachments-browser .uploader-inline.hidden{display:none}
1497
- .brz .attachments-browser .media-toolbar-primary{max-width:33%}
1498
- .brz .attachments-browser .media-toolbar-secondary{max-width:66%}
1499
- .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}
1500
- .brz .uploader-inline .close:before{font:normal 30px/1 dashicons!important;color:#555d66;display:inline-block;content:"\f335";font-weight:300;margin-top:1px}
1501
- .brz .uploader-inline .close:focus{outline:1px solid #5b9dd9;-webkit-box-shadow:0 0 3px rgba(0,115,170,.8);box-shadow:0 0 3px rgba(0,115,170,.8)}
1502
- .brz .attachments-browser.hide-sidebar .attachments,.brz .attachments-browser.hide-sidebar .uploader-inline{right:0;margin-right:0}
1503
- .brz .attachments-browser .instructions{display:inline-block;margin-top:16px;line-height:18px;font-size:13px;color:#666;margin-right:.5em}
1504
- .brz .attachments-browser .no-media{padding:2em 0 0 2em}
1505
- .brz .media-progress-bar{position:relative;height:10px;width:70%;margin:10px auto;border-radius:10px;background:#ddd;background:rgba(0,0,0,.1)}
1506
- .brz .media-progress-bar div{height:10px;min-width:20px;width:0;background:#0073aa;border-radius:10px;-webkit-transition:width .3s;transition:width .3s}
1507
- .brz .media-uploader-status .media-progress-bar{display:none;width:100%}
1508
- .brz .uploading.media-uploader-status .media-progress-bar{display:block}
1509
- .brz .attachment-preview .media-progress-bar{position:absolute;top:50%;left:15%;width:70%;margin:-5px 0 0 0}
1510
- .brz .media-uploader-status{position:relative;margin:0 auto;padding-bottom:10px;max-width:400px}
1511
- .brz .uploader-inline .media-uploader-status h2,.brz .uploader-inline .media-uploader-status h3{display:none}
1512
- .brz .media-uploader-status .upload-details{display:none;font-size:12px;color:#666}
1513
- .brz .uploading.media-uploader-status .upload-details{display:block}
1514
- .brz .media-uploader-status .upload-detail-separator{padding:0 4px}
1515
- .brz .media-uploader-status .upload-count{color:#444}
1516
- .brz .media-uploader-status .upload-dismiss-errors,.brz .media-uploader-status .upload-errors{display:none}
1517
- .brz .errors.media-uploader-status .upload-dismiss-errors,.brz .errors.media-uploader-status .upload-errors{display:block}
1518
- .brz .media-uploader-status .upload-dismiss-errors{text-decoration:none}
1519
- .brz .media-sidebar .media-uploader-status .upload-dismiss-errors{position:absolute;top:-10px;right:-10px;padding:10px;-webkit-transition:none;transition:none}
1520
- .brz .media-sidebar .media-uploader-status .upload-dismiss-errors:before{content:"\f153";display:block;font:normal 16px/1 dashicons;color:#72777c}
1521
- .brz .media-sidebar .media-uploader-status .upload-dismiss-errors:focus:before,.brz .media-sidebar .media-uploader-status .upload-dismiss-errors:hover:before{color:#c00}
1522
- .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)}
1523
- .brz .uploader-inline .upload-errors .upload-error{background-color:#fbeaea;-webkit-box-shadow:none;box-shadow:none}
1524
- .brz .upload-errors .upload-error-filename{font-weight:600}
1525
- .brz .upload-errors .upload-error-message{display:block;padding-top:8px;word-wrap:break-word}
1526
- .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}
1527
- .brz .uploader-window-content{position:absolute;top:10px;left:10px;right:10px;bottom:10px;border:1px dashed #fff}
1528
- .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}
1529
- .brz .uploader-window .media-progress-bar{margin-top:20px;max-width:300px;background:0 0;border-color:#fff;display:none}
1530
- .brz .uploader-window .media-progress-bar div{background:#fff}
1531
- .brz .uploading .uploader-window .media-progress-bar{display:block}
1532
- .brz .media-frame .uploader-inline{margin-bottom:20px;padding:0;text-align:center}
1533
- .brz .uploader-inline-content{position:absolute;top:30%;left:0;right:0}
1534
- .brz .uploader-inline-content .upload-ui{margin:2em 0}
1535
- .brz .uploader-inline-content .post-upload-ui{margin-bottom:2em}
1536
- .brz .uploader-inline .has-upload-message .upload-ui{margin:0 0 4em}
1537
- .brz .uploader-inline h2,.brz .uploader-inline h3{font-size:20px;line-height:28px;font-weight:400;margin:0}
1538
- .brz .uploader-inline .has-upload-message .upload-instructions{font-size:14px;color:#444;font-weight:400}
1539
- .brz .uploader-inline .drop-instructions{display:none}
1540
- .brz .supports-drag-drop .uploader-inline .drop-instructions{display:block}
1541
- .brz .supports-drag-drop .uploader-inline .drop-instructions:before{display:none}
1542
- .brz .uploader-inline p{font-size:12px;margin:.5em 0}
1543
- .brz .uploader-inline .media-progress-bar{display:none}
1544
- .brz .uploading.uploader-inline .media-progress-bar{display:block}
1545
- .brz .uploader-inline .browser{display:inline-block!important}
1546
- .brz .media-selection{position:absolute;top:0;left:0;right:350px;height:60px;padding:0 0 0 16px;overflow:hidden;white-space:nowrap}
1547
- .brz .media-selection .selection-info{display:inline-block;font-size:12px;height:60px;margin-right:10px;vertical-align:top}
1548
- .brz .media-selection.editing,.brz .media-selection.empty{display:none}
1549
- .brz .media-selection.one .edit-selection{display:none}
1550
- .brz .media-selection .count{display:block;padding-top:12px;font-size:14px;line-height:20px;font-weight:600}
1551
- .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}
1552
- .brz .media-selection .button-link:focus,.brz .media-selection .button-link:hover{color:#00a0d2}
1553
- .brz .media-selection .button-link:last-child{border-right:0;margin-right:0}
1554
- .brz .selection-info .clear-selection{color:#bc0b0b}
1555
- .brz .selection-info .clear-selection:focus,.brz .selection-info .clear-selection:hover{color:#dc3232}
1556
- .brz .media-selection .selection-view{display:inline-block;vertical-align:top}
1557
- .brz .media-selection .attachments{display:inline-block;height:48px;margin:6px;padding:0;overflow:hidden;vertical-align:top}
1558
- .brz .media-selection .attachment{width:40px;padding:0;margin:4px}
1559
- .brz .media-selection .attachment .thumbnail{top:0;right:0;bottom:0;left:0}
1560
- .brz .media-selection .attachment .icon{width:50%}
1561
- .brz .media-selection .attachment-preview{-webkit-box-shadow:none;box-shadow:none;background:0 0}
1562
- .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}
1563
- .brz .wp-core-ui .media-selection .selected.attachment{-webkit-box-shadow:none;box-shadow:none}
1564
- .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}
1565
- .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))}
1566
- .brz .media-selection .attachment .filename{display:none}
1567
- .brz .media-frame .spinner{background-size:20px 20px;float:right;display:inline-block;visibility:hidden;opacity:.7;width:20px;height:20px;margin:0;vertical-align:middle}
1568
- .brz .media-frame .spinner.is-active{visibility:visible}
1569
- .brz .media-toolbar .spinner{margin-top:14px}
1570
- .brz .attachment-details{position:relative;overflow:auto}
1571
- .brz .attachment-details .settings-save-status{float:right;text-transform:none;z-index:10}
1572
- .brz .attachment-details .settings-save-status .spinner{margin-left:5px}
1573
- .brz .attachment-details .settings-save-status .saved{float:right;display:none}
1574
- .brz .attachment-details.save-waiting .settings-save-status .spinner{visibility:visible}
1575
- .brz .attachment-details.save-complete .settings-save-status .saved{display:block}
1576
- .brz .attachment-info{overflow:hidden;min-height:60px;margin-bottom:16px;line-height:18px;color:#666;border-bottom:1px solid #ddd;padding-bottom:11px}
1577
- .brz .attachment-info .filename{font-weight:600;color:#444;word-wrap:break-word}
1578
- .brz .attachment-info .thumbnail{position:relative;float:left;max-width:120px;max-height:120px;margin-top:5px;margin-right:10px;margin-bottom:5px}
1579
- .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)}
1580
- .brz .uploading .attachment-info .media-progress-bar{margin-top:35px}
1581
- .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}
1582
- .brz .attachment-info .thumbnail img{display:block;max-width:120px;max-height:120px;margin:0 auto}
1583
- .brz .attachment-info .details{float:left;font-size:12px;max-width:100%}
1584
- .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}
1585
- .brz .attachment-details.needs-refresh .attachment-info .edit-attachment{display:none}
1586
- .brz .attachment-info .edit-attachment{display:block}
1587
- .brz .media-modal .delete-attachment,.brz .media-modal .trash-attachment,.brz .media-modal .untrash-attachment{display:inline;padding:0;color:#bc0b0b}
1588
- .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}
1589
- .brz .attachment-display-settings{width:100%;float:left;overflow:hidden}
1590
- .brz .attachment-display-settings h4{margin:1.4em 0 .4em}
1591
- .brz .collection-settings{overflow:hidden}
1592
- .brz .collection-settings .setting input[type=checkbox]{float:left;margin-right:8px}
1593
- .brz .collection-settings .setting span{min-width:inherit}
1594
- .brz .media-modal .imgedit-wrap{position:static}
1595
- .brz .media-modal .imgedit-wrap .imgedit-panel-content{padding:16px;position:absolute;top:0;right:282px;bottom:0;left:0;overflow:auto}
1596
- .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}
1597
- .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}
1598
- .brz .media-modal .imgedit-group:last-of-type{border:none;margin:0;padding:0}
1599
- .brz .media-modal .imgedit-group-top{margin:0}
1600
- .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}
1601
- .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}
1602
- .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}
1603
- .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)}
1604
- .brz .wp-core-ui.media-modal .imgedit-group-top .dashicons-arrow-down.imgedit-help-toggle{margin-top:-3px}
1605
- .brz .wp-core-ui.media-modal .image-editor h3 .imgedit-help-toggle{margin-top:-2px}
1606
- .brz .media-modal .imgedit-help-toggled span.dashicons:before{content:"\f142"}
1607
- .brz .media-modal .imgedit-thumbnail-preview{margin:10px 8px 0 0}
1608
- .brz .imgedit-thumbnail-preview-caption{display:block}
1609
- .brz .media-modal .imgedit-wrap div.updated{margin:0 0 16px}
1610
- .brz .embed-url{display:block;position:relative;padding:16px;margin:0;z-index:250;background:#fff;font-size:18px}
1611
- .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)}
1612
- .brz .media-frame .embed-url .spinner{position:absolute;top:32px;right:26px}
1613
- .brz .media-frame .embed-loading .embed-url .spinner{visibility:visible}
1614
- .brz .embed-link-settings,.brz .embed-media-settings{position:absolute;top:70px;left:0;right:0;bottom:0;padding:16px 16px 32px;overflow:auto}
1615
- .brz .media-embed .embed-link-settings{overflow:visible}
1616
- .brz .embed-preview embed,.brz .embed-preview iframe,.brz .embed-preview img,.brz .mejs-container video{max-width:100%;vertical-align:middle}
1617
- .brz .embed-preview a{display:inline-block}
1618
- .brz .embed-preview img{display:block;height:auto}
1619
- .brz .mejs-container:focus{outline:1px solid #5b9dd9;-webkit-box-shadow:0 0 2px 1px rgba(30,140,190,.8);box-shadow:0 0 2px 1px rgba(30,140,190,.8)}
1620
- .brz .image-details .media-modal{left:140px;right:140px}
1621
- .brz .media-frame-content{outline:0}
1622
- .brz .image-details .media-frame-content,.brz .image-details .media-frame-router,.brz .image-details .media-frame-title{left:0}
1623
- .brz .image-details .embed-media-settings{top:0;overflow:visible;padding:0}
1624
- .brz .image-details .embed-media-settings,.brz .image-details .embed-media-settings div{-webkit-box-sizing:border-box;box-sizing:border-box}
1625
- .brz .image-details .column-settings{background:#f3f3f3;border-right:1px solid #ddd;min-height:100%;width:55%;position:absolute;top:0;left:0}
1626
- .brz .image-details .column-settings h2,.brz .image-details .column-settings h3{margin:20px;padding-top:20px;border-top:1px solid #ddd;color:#23282d}
1627
- .brz .image-details .column-image{width:45%;position:absolute;left:55%;top:0}
1628
- .brz .image-details .image{margin:20px}
1629
- .brz .image-details .image img{max-width:100%;max-height:500px}
1630
- .brz .image-details .advanced-toggle{padding:0;color:#666;text-transform:uppercase;text-decoration:none}
1631
- .brz .image-details .advanced-toggle:active,.brz .image-details .advanced-toggle:hover{color:#666}
1632
- .brz .image-details .advanced-toggle:after{font:normal 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}
1633
- .brz .image-details .advanced-visible .advanced-toggle:after{content:"\f142"}
1634
- .brz .image-details .embed-media-settings .size{margin-bottom:4px}
1635
- .brz .image-details .custom-size span{display:block}
1636
- .brz .image-details .custom-size label{display:block;float:left}
1637
- .brz .image-details .custom-size span small{color:#555d66;font-size:inherit}
1638
- .brz .image-details .custom-size input{width:5em}
1639
- .brz .image-details .custom-size .sep{float:left;margin:26px 6px 0}
1640
- .brz .image-details .custom-size:after{content:"";display:table;clear:both}
1641
- .brz .media-embed .thumbnail{max-width:100%;max-height:200px;position:relative;float:left}
1642
- .brz .media-embed .thumbnail img{max-height:200px;display:block}
1643
- .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}
1644
- .brz .media-embed .setting{width:100%;margin:10px 0;float:left;display:block;clear:both}
1645
- .brz .image-details .embed-media-settings .setting{float:none;width:auto}
1646
- .brz .image-details .actions{margin:10px 0}
1647
- .brz .image-details .hidden{display:none}
1648
- .brz .media-embed .setting input[type=text],.brz .media-embed .setting textarea{display:block;width:100%;max-width:400px;margin:1px 0}
1649
- .brz .image-details .embed-media-settings .setting input[type=text],.brz .image-details .embed-media-settings .setting textarea{max-width:inherit;width:70%}
1650
- .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%}
1651
- .brz .image-details .embed-media-settings .link-target{margin-top:24px}
1652
- .brz .media-embed .setting input.hidden,.brz .media-embed .setting textarea.hidden{display:none}
1653
- .brz .media-embed .setting span{display:block;width:200px;font-size:13px;line-height:24px;color:#666}
1654
- .brz .image-details .embed-media-settings .setting span{float:left;width:25%;text-align:right;margin:8px 1% 0;line-height:1.1}
1655
- .brz .media-embed .setting .button-group{margin:2px 0}
1656
- .brz .media-embed-sidebar{position:absolute;top:0;left:440px}
1657
- .brz .advanced-section,.brz .link-settings{margin-top:10px}
1658
- .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}
1659
- .brz .wp-editor-wrap .uploader-editor-content{border:1px dashed #fff;position:absolute;top:10px;left:10px;right:10px;bottom:10px}
1660
- .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}
1661
- .brz .wp-editor-wrap .uploader-editor.droppable{background:rgba(0,86,132,.9)}
1662
- .brz .wp-editor-wrap .uploader-editor.droppable .uploader-editor-title{display:block}
1663
- @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}
1664
- .brz .media-frame:not(.hide-menu) .media-frame-menu{position:static;width:0}
1665
- .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}
1666
- .brz .media-frame:not(.hide-menu) .media-menu.visible{left:0}
1667
- .brz .media-frame:not(.hide-menu) .media-menu>a{padding:12px 16px;font-size:16px}
1668
- .brz .media-frame:not(.hide-menu) .media-menu>a.active{display:none}
1669
- .brz .media-frame:not(.hide-menu) .media-menu .separator{margin:5px 10px}
1670
- .brz .media-frame:not(.hide-menu) .media-frame-title{left:0}
1671
- .brz .media-frame:not(.hide-menu) .media-frame-title .dashicons{display:inline-block;line-height:50px}
1672
- .brz .media-frame:not(.hide-menu) .media-frame-title h1{color:#0073aa;line-height:3;font-size:18px;float:left;cursor:pointer}
1673
- .brz .media-sidebar{width:230px}
1674
- .brz .attachments-browser .attachments,.brz .attachments-browser .media-toolbar,.brz .attachments-browser .uploader-inline{right:262px}
1675
- .brz .attachment-details .setting,.brz .media-sidebar .setting{margin:6px 0}
1676
- .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}
1677
- .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}
1678
- .brz .attachment-details .setting .value,.brz .media-sidebar .setting .value{float:none;width:auto}
1679
- .brz .attachment-details .setting input[type=email],.brz .attachment-details .setting input[type=number],.brz .attachment-details .setting input[type=password],.brz .attachment-details .setting input[type=search],.brz .attachment-details .setting input[type=tel],.brz .attachment-details .setting input[type=text],.brz .attachment-details .setting input[type=url],.brz .attachment-details .setting select,.brz .attachment-details .setting textarea,.brz .media-sidebar .setting input[type=email],.brz .media-sidebar .setting input[type=number],.brz .media-sidebar .setting input[type=password],.brz .media-sidebar .setting input[type=search],.brz .media-sidebar .setting input[type=tel],.brz .media-sidebar .setting input[type=text],.brz .media-sidebar .setting input[type=url],.brz .media-sidebar .setting select,.brz .media-sidebar .setting textarea{float:none;width:98%;max-width:none;height:auto}
1680
- .brz .attachment-details .setting select.columns,.brz .media-sidebar .setting select.columns{width:auto}
1681
- .brz .media-frame .search,.brz .media-frame input,.brz .media-frame textarea{padding:3px 6px}
1682
- .brz .image-details .column-image{width:30%;left:70%}
1683
- .brz .image-details .column-settings{width:70%}
1684
- .brz .image-details .media-modal{left:30px;right:30px}
1685
- .brz .image-details .embed-media-settings .setting{margin:20px}
1686
- .brz .image-details .embed-media-settings .setting span{float:none;text-align:left;width:100%;margin-bottom:4px}
1687
- .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}
1688
- .brz .image-details .embed-media-settings .custom-size{margin-left:20px}
1689
- .brz .collection-settings .setting input[type=checkbox]{margin-top:0}
1690
- .brz .media-selection{min-width:120px}
1691
- .brz .media-selection:after{background:0 0}
1692
- .brz .media-selection .attachments{display:none}
1693
- .brz .media-modal .attachments-browser .media-toolbar .search{max-width:100%;height:auto;float:right}
1694
- .brz .media-modal .attachments-browser .media-toolbar .attachment-filters{height:auto}
1695
- .brz .media-modal .attachments-browser .media-toolbar .spinner{margin:14px 2px 0}
1696
- .brz .media-frame input[type=email],.brz .media-frame input[type=number],.brz .media-frame input[type=password],.brz .media-frame input[type=search],.brz .media-frame input[type=text],.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}
1697
- .brz .media-modal-backdrop{position:fixed}
1698
- .brz .media-sidebar{z-index:1900;max-width:70%;bottom:120%;-webkit-box-sizing:border-box;box-sizing:border-box;padding-bottom:0}
1699
- .brz .media-sidebar.visible{bottom:0}
1700
- .brz .attachments-browser .attachments,.brz .attachments-browser .media-toolbar,.brz .attachments-browser .uploader-inline{right:0}
1701
- .brz .image-details .media-frame-title{display:block;top:0;font-size:14px}
1702
- .brz .image-details .column-image,.brz .image-details .column-settings{width:100%;position:relative;left:0}
1703
- .brz .image-details .column-settings{padding:4px 0}
1704
- .brz .media-frame-content .media-toolbar .instructions{display:none}}@media screen and (max-height:400px){.brz .media-menu{padding:0}
1705
- .brz .media-frame-router{top:44px}
1706
- .brz .media-frame-content{top:78px}
1707
- .brz .attachments-browser .attachments{top:40px}
1708
- .brz .embed-link-settings{overflow:visible}}@media only screen and (max-width:480px){.brz .media-modal-close{top:-5px}
1709
- .brz .media-modal .media-frame-title{height:40px}
1710
- .brz .wp-core-ui.wp-customizer .media-button{margin-top:13px}
1711
- .brz .media-frame:not(.hide-menu) .media-frame-title h1,.brz .media-modal .media-frame-title h1{font-size:18px;line-height:40px}
1712
- .brz .media-frame:not(.hide-menu) .media-frame-title .dashicons{line-height:40px}
1713
- .brz .media-frame-router,.brz .media-frame:not(.hide-menu) .media-menu{top:40px}
1714
- .brz .media-frame-content{top:74px}
1715
- .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-size:134px 15px}}.brz .media-frame-content[data-columns="1"] .attachment{width:100%}
1716
- .brz .media-frame-content[data-columns="2"] .attachment{width:50%}
1717
- .brz .media-frame-content[data-columns="3"] .attachment{width:33.33%}
1718
- .brz .media-frame-content[data-columns="4"] .attachment{width:25%}
1719
- .brz .media-frame-content[data-columns="5"] .attachment{width:20%}
1720
- .brz .media-frame-content[data-columns="6"] .attachment{width:16.66%}
1721
- .brz .media-frame-content[data-columns="7"] .attachment{width:14.28%}
1722
- .brz .media-frame-content[data-columns="8"] .attachment{width:12.5%}
1723
- .brz .media-frame-content[data-columns="9"] .attachment{width:11.11%}
1724
- .brz .media-frame-content[data-columns="10"] .attachment{width:10%}
1725
- .brz .media-frame-content[data-columns="11"] .attachment{width:9.09%}
1726
- .brz .media-frame-content[data-columns="12"] .attachment{width:8.33%}
1727
- .brz .admin-bar .wp-env .visual-sidebar{top:32px;left:0}
1728
- .brz .admin-bar .wp-env .visual-wrap-block-wrap{margin-left:0;padding-bottom:0}
1729
- .brz .brz-wp__sidebar{width:100%}
1730
- .brz .brz-wp__sidebar .brz-shortcode__placeholder{width:100%;min-height:300px}
1731
- .brz .brz-wp-shortcode{width:100%;min-height:20px}
1732
- .brz .brz-wp-shortcode .woocommerce:empty{width:100%;height:15px}
1733
- .brz .brz-wp-shortcode .woocommerce-product-gallery{opacity:1!important}
1734
- .brz .brz-wp-shortcode .brz-shortcode__placeholder{width:100%;min-height:300px}
1735
- .brz .brz-wp-shortcode__menu .menu{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 wrap;flex-flow:row wrap;list-style:none;margin:0 auto;padding:0}
1736
- .brz .brz-wp-shortcode__menu .menu li[class*=menu-item]{position:relative;text-align:left;list-style:none}
1737
- .brz .brz-wp-shortcode__menu .menu li[class*=menu-item] a span{display:block}
1738
- .brz .brz-wp-shortcode__menu .menu .sub-menu{position:absolute;left:0;padding-left:0;padding-right:0;text-align:center;text-transform:none;list-style:none;margin:0!important;display:none;width:280px;background-color:#33344b;z-index:110}
1739
- .brz .brz-wp-shortcode__menu .menu .sub-menu li[class*=menu-item]{display:block;margin:0;padding:0}
1740
- .brz .brz-wp-shortcode__menu .menu .sub-menu .sub-menu{display:none;left:100%;top:0}
1741
- .brz .brz-wp-shortcode__menu .menu .sub-menu a{display:block;line-height:1.2em;padding:10px 12%;color:#fcfcfc}
1742
- .brz .brz-wp-shortcode__menu .menu .sub-menu a:hover{background:rgba(36,36,53,.94)}
1743
- .brz .brz-wp-shortcode__menu .menu>li[class*=menu-item]{display:inline-block;-webkit-box-flex:0;-ms-flex:0 1 auto;flex:0 1 auto;padding-top:5px;padding-bottom:5px}
1744
- .brz .brz-wp-shortcode__menu .menu>li[class*=menu-item]>.sub-menu{top:100%;padding-top:15px;padding-bottom:15px}
1745
- .brz .brz-wp-shortcode__menu .menu>li[class*=menu-item]:hover>.sub-menu{display:block}
1746
- .brz .brz-wp-shortcode__menu .menu>li[class*=menu-item]>.sub-menu>li[class*=menu-item]:hover>.sub-menu{display:block}
1747
- .brz .brz-wp-shortcode__menu .menu>ul{margin:0!important}
1748
- .brz .brz-wp-shortcode__menu .menu>ul .page_item:not(:first-child){margin-left:15px}
1749
- .brz .brz-wp-shortcode__menu__toggle .menu{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap}
1750
- .brz .brz-wp-shortcode__menu__icon{display:none;padding:15px;position:relative;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;margin:0}
1751
- .brz .brz-wp-shortcode__menu__icon--bars{display:block;height:2px;position:relative;-webkit-transition:background .2s ease-out;transition:background .2s ease-out;width:18px}
1752
- .brz .brz-wp-shortcode__menu__icon--bars:after,.brz .brz-wp-shortcode__menu__icon--bars:before{background-color:currentColor;content:"";display:block;height:100%;position:absolute;-webkit-transition:all .2s ease-out;transition:all .2s ease-out;width:100%}
1753
- .brz .brz-wp-shortcode__menu__icon--bars:before{top:5px}
1754
- .brz .brz-wp-shortcode__menu__icon--bars:after{top:-5px}
1755
- .brz .brz-wp-shortcode__menu .brz-input{display:none}
1756
- .brz .brz-wp-shortcode__menu .brz-input:checked~div .menu{display:-webkit-box;display:-ms-flexbox;display:flex;max-height:100%}
1757
- .brz .brz-wp-shortcode__menu .brz-input:checked~.brz-wp-shortcode__menu__icon .brz-wp-shortcode__menu__icon--bars{background:0 0}
1758
- .brz .brz-wp-shortcode__menu .brz-input:checked~.brz-wp-shortcode__menu__icon .brz-wp-shortcode__menu__icon--bars:before{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}
1759
- .brz .brz-wp-shortcode__menu .brz-input:checked~.brz-wp-shortcode__menu__icon .brz-wp-shortcode__menu__icon--bars:after{-webkit-transform:rotate(45deg);transform:rotate(45deg)}
1760
- .brz .brz-wp-shortcode__menu .brz-input:checked~.brz-wp-shortcode__menu__icon:not(.steps) .brz-wp-shortcode__menu__icon--bars:after,.brz .brz-wp-shortcode__menu .brz-input:checked~.brz-wp-shortcode__menu__icon:not(.steps) .brz-wp-shortcode__menu__icon--bars:before{top:0}
1761
- @media (max-width:767px){.brz:not(.brz-ed) .brz-wp-shortcode__menu{width:auto;text-align:center}
1762
- .brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--mobile .menu{display:none;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column nowrap;flex-flow:column nowrap;max-height:0;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-transition:max-height .2s ease-out;transition:max-height .2s ease-out}
1763
- .brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--mobile .menu .sub-menu{position:relative;display:block;width:100%;left:15px;background-color:transparent}
1764
- .brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--mobile .menu .sub-menu li[class*=menu-item] a{padding:5px}
1765
- .brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--mobile .menu .sub-menu li[class*=menu-item] a:hover{background-color:transparent}
1766
- .brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--mobile .menu .sub-menu .sub-menu{display:block;left:15px}
1767
- .brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--mobile .menu>li[class*=menu-item]{padding:0}
1768
- .brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--mobile .menu>li[class*=menu-item]>.sub-menu{top:100%;padding:5px 0}
1769
- .brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--mobile>div:not(.brz-wp-shortcode__menu__toggle) .menu .sub-menu li[class*=menu-item] a{color:#fcfcfc}
1770
- .brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--mobile>div:not(.brz-wp-shortcode__menu__toggle) .menu .sub-menu li[class*=menu-item] a:hover{color:#fff;background:rgba(36,36,53,.94)}
1771
- .brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--mobile .brz-wp-shortcode__menu__icon{display:inline-block}}@media (min-width:768px) and (max-width:991px){.brz:not(.brz-ed) .brz-wp-shortcode__menu{width:auto;text-align:center}
1772
- .brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--tablet .menu{display:none;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column nowrap;flex-flow:column nowrap;max-height:0;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-transition:max-height .2s ease-out;transition:max-height .2s ease-out}
1773
- .brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--tablet .menu .sub-menu{position:relative;display:block;width:100%;left:15px;background-color:transparent}
1774
- .brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--tablet .menu .sub-menu li[class*=menu-item] a{padding:5px}
1775
- .brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--tablet .menu .sub-menu li[class*=menu-item] a:hover{background-color:transparent}
1776
- .brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--tablet .menu .sub-menu .sub-menu{display:block;left:15px}
1777
- .brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--tablet .menu>.menu-item{padding:0}
1778
- .brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--tablet .menu>.menu-item>.sub-menu{top:100%;padding:5px 0}
1779
- .brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--tablet .brz-wp-shortcode__menu__icon{display:inline-block}}.brz.brz-ed--mobile .brz-wp-shortcode__menu{width:auto;text-align:center}
1780
- .brz.brz-ed--mobile .brz-wp-shortcode__menu__toggle--mobile .menu{display:none;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column nowrap;flex-flow:column nowrap;max-height:0;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-transition:max-height .2s ease-out;transition:max-height .2s ease-out}
1781
- .brz.brz-ed--mobile .brz-wp-shortcode__menu__toggle--mobile .menu .sub-menu{position:relative;display:block;width:100%;left:15px;background-color:transparent}
1782
- .brz.brz-ed--mobile .brz-wp-shortcode__menu__toggle--mobile .menu .sub-menu .menu-item a{padding:5px}
1783
- .brz.brz-ed--mobile .brz-wp-shortcode__menu__toggle--mobile .menu .sub-menu .menu-item a:hover{background-color:transparent}
1784
- .brz.brz-ed--mobile .brz-wp-shortcode__menu__toggle--mobile .menu .sub-menu .sub-menu{display:block;left:15px}
1785
- .brz.brz-ed--mobile .brz-wp-shortcode__menu__toggle--mobile .menu>.menu-item{padding:0}
1786
- .brz.brz-ed--mobile .brz-wp-shortcode__menu__toggle--mobile .menu>.menu-item>.sub-menu{top:100%;padding:5px 0}
1787
- .brz.brz-ed--mobile .brz-wp-shortcode__menu__toggle--mobile .brz-wp-shortcode__menu__icon{display:inline-block}
1788
- .brz.brz-ed--tablet .brz-wp-shortcode__menu{width:auto;text-align:center}
1789
- .brz.brz-ed--tablet .brz-wp-shortcode__menu__toggle--tablet .menu{display:none;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column nowrap;flex-flow:column nowrap;max-height:0;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-transition:max-height .2s ease-out;transition:max-height .2s ease-out}
1790
- .brz.brz-ed--tablet .brz-wp-shortcode__menu__toggle--tablet .menu .sub-menu{position:relative;display:block;width:100%;left:15px;background-color:transparent}
1791
- .brz.brz-ed--tablet .brz-wp-shortcode__menu__toggle--tablet .menu .sub-menu .menu-item a{padding:5px}
1792
- .brz.brz-ed--tablet .brz-wp-shortcode__menu__toggle--tablet .menu .sub-menu .menu-item a:hover{background-color:transparent}
1793
- .brz.brz-ed--tablet .brz-wp-shortcode__menu__toggle--tablet .menu .sub-menu .sub-menu{display:block;left:15px}
1794
- .brz.brz-ed--tablet .brz-wp-shortcode__menu__toggle--tablet .menu>.menu-item{padding:0}
1795
- .brz.brz-ed--tablet .brz-wp-shortcode__menu__toggle--tablet .menu>.menu-item>.sub-menu{top:100%;padding:5px 0}
1796
- .brz.brz-ed--tablet .brz-wp-shortcode__menu__toggle--tablet .brz-wp-shortcode__menu__icon{display:inline-block}
1797
- .brz.brz-ed--tablet .brz-mm-menu--tablet{position:fixed}
1798
- .brz.brz-ed--desktop .brz-mm-menu--desktop{position:fixed}
1799
- .brz .brz-menu__editor .brz-menu__item--opened>.brz-mega-menu,.brz .brz-menu__editor .brz-menu__item--opened>.brz-menu__sub-menu{visibility:visible;opacity:1;z-index:1050;-webkit-transition:.2s visibility linear,.2s opacity linear,.2s -webkit-transform linear;transition:.2s visibility linear,.2s opacity linear,.2s -webkit-transform linear;transition:.2s visibility linear,.2s opacity linear,.2s transform linear;transition:.2s visibility linear,.2s opacity linear,.2s transform linear,.2s -webkit-transform linear}
1800
- .brz .brz-menu__editor .brz-menu__item--opened>.brz-menu__sub-menu{-webkit-transform:translateX(0);transform:translateX(0)}
1801
- .brz.brz-mm-wrapper_opened .brz-root__container{position:relative}
1802
- .brz.brz-mm-wrapper_opened .brz-popup,.brz.brz-mm-wrapper_opened .brz-popup2,.brz.brz-mm-wrapper_opened .brz-root__container,.brz.brz-mm-wrapper_opened .brz-section__header{z-index:1}
1803
- .brz.brz-mm-wrapper_opened .brz-section__header--animated{z-index:2}
1804
- @-webkit-keyframes brz-ed-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}
1805
- 100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes brz-ed-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}
1806
- 100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@-webkit-keyframes brz-ed-fadeInDown{from{opacity:0;-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}
1807
- to{opacity:1;-webkit-transform:none;transform:none}}@keyframes brz-ed-fadeInDown{from{opacity:0;-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}
1808
- to{opacity:1;-webkit-transform:none;transform:none}}@-webkit-keyframes brz-ed-fadeInUp{from{opacity:0;-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}
1809
- to{opacity:1;-webkit-transform:none;transform:none}}@keyframes brz-ed-fadeInUp{from{opacity:0;-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}
1810
- to{opacity:1;-webkit-transform:none;transform:none}}@-webkit-keyframes brz-ed-fadeIn{from{opacity:0}
1811
- to{opacity:1}}@keyframes brz-ed-fadeIn{from{opacity:0}
1812
- to{opacity:1}}@-webkit-keyframes brz-ed-fadeInLeft{from{opacity:0;-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}
1813
- to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes brz-ed-fadeInLeft{from{opacity:0;-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}
1814
- to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@-webkit-keyframes brz-ed-pulsate{0%{-webkit-transform:scale(.1,.1);transform:scale(.1,.1);opacity:0}
1815
- 50%{opacity:1}
1816
- 100%{-webkit-transform:scale(1.2,1.2);transform:scale(1.2,1.2);opacity:0}}@keyframes brz-ed-pulsate{0%{-webkit-transform:scale(.1,.1);transform:scale(.1,.1);opacity:0}
1817
- 50%{opacity:1}
1818
- 100%{-webkit-transform:scale(1.2,1.2);transform:scale(1.2,1.2);opacity:0}}@-webkit-keyframes brz-ed-sk-bounce{0%,100%{-webkit-transform:scale(0);transform:scale(0)}
1819
- 50%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes brz-ed-sk-bounce{0%,100%{-webkit-transform:scale(0);transform:scale(0)}
1820
- 50%{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes brz-rcSliderTooltipZoomDownIn{0%{opacity:0;-webkit-transform-origin:50% 100%;transform-origin:50% 100%;-webkit-transform:scale(0,0);transform:scale(0,0)}
1821
- 100%{-webkit-transform-origin:50% 100%;transform-origin:50% 100%;-webkit-transform:scale(1,1);transform:scale(1,1)}}@keyframes brz-rcSliderTooltipZoomDownIn{0%{opacity:0;-webkit-transform-origin:50% 100%;transform-origin:50% 100%;-webkit-transform:scale(0,0);transform:scale(0,0)}
1822
- 100%{-webkit-transform-origin:50% 100%;transform-origin:50% 100%;-webkit-transform:scale(1,1);transform:scale(1,1)}}@-webkit-keyframes brz-rcSliderTooltipZoomDownOut{0%{-webkit-transform-origin:50% 100%;transform-origin:50% 100%;-webkit-transform:scale(1,1);transform:scale(1,1)}
1823
- 100%{opacity:0;-webkit-transform-origin:50% 100%;transform-origin:50% 100%;-webkit-transform:scale(0,0);transform:scale(0,0)}}@keyframes brz-rcSliderTooltipZoomDownOut{0%{-webkit-transform-origin:50% 100%;transform-origin:50% 100%;-webkit-transform:scale(1,1);transform:scale(1,1)}
1824
- 100%{opacity:0;-webkit-transform-origin:50% 100%;transform-origin:50% 100%;-webkit-transform:scale(0,0);transform:scale(0,0)}}.brz-ed #brz-ed-root{position:relative;background-color:#f3f3f3}
1825
- .brz-ed #brz-ed-root>.brz-reset-all{overflow:hidden}
1826
- .brz-ed #brz-ed-home-page{width:100%;min-height:100vh;position:absolute}
1827
- .brz-ed .brz-height--100vh,.brz-ed.brz-height--100vh{height:100vh!important}
1828
- .brz-ed .body-without-scroll{overflow:hidden}
1829
- .brz-ed .brz-ed-wrap-block-wrap{width:100%}
1830
- .brz-ed .brz-ed-wrap-block-wrap--first{min-height:400px;height:100vh}
1831
- .brz-ed .btn .brz-span[contenteditable=true]{cursor:text}
1832
- .brz-ed .brz-ed-element-placeholder{position:relative}
1833
- .brz-ed .brz-ed-element-placeholder *{visibility:hidden}
1834
- .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}
1835
- .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}
1836
- .brz-ed .brz-ed-deg90{-webkit-transform:rotate(90deg);transform:rotate(90deg)}
1837
- .brz-ed .brz-ed-deg180{-webkit-transform:rotate(180deg);transform:rotate(180deg)}
1838
- .brz-ed .brz-ed-deg270{-webkit-transform:rotate(270deg);transform:rotate(270deg)}
1839
- html{-webkit-box-sizing:border-box;box-sizing:border-box}
1840
- *,:after,:before{-webkit-box-sizing:border-box;box-sizing:border-box}
1841
- @-ms-viewport{width:device-width}
1842
- .brz-ed .brz-figcaption,.brz-ed .brz-figure,.brz-ed .brz-section{display:block}
1843
- body{margin:0}
1844
- body.brz-ed{background-color:#f3f3f3}
1845
- body.brz::after,body.brz::before{display:none}
1846
- .brz-iframe{margin:0;padding:0;border:0;font:inherit;font-size:100%;vertical-align:baseline}
1847
- .brz{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
1848
- .brz .brz-root__container.brz-reset-all{display:block;overflow:hidden;font-family:inherit}
1849
- .brz-ed .brz-hr{-webkit-box-sizing:content-box;box-sizing:content-box;height:0;overflow:visible;margin:0}
1850
- .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}
1851
- .brz-ed .brz-p{margin-top:0;margin-bottom:0;padding-top:0;padding-bottom:0}
1852
- .brz-ed .brz-span{float:none;margin:0;padding:0;font-family:inherit;font-size:inherit;font-weight:inherit;line-height:inherit;letter-spacing:inherit;color:inherit}
1853
- .brz-ed .brz-dl,.brz-ed .brz-ol,.brz-ed .brz-ul{margin:0;list-style:none;padding:0}
1854
- .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}
1855
- .brz-ed .brz-dt{font-weight:700}
1856
- .brz-ed .brz-dd{margin-bottom:.5rem;margin-left:0}
1857
- .brz-ed .brz-blockquote{margin:0 0 1rem}
1858
- .brz-ed .brz-dfn{font-style:italic}
1859
- .brz-ed .brz-b,.brz-ed .brz-strong{font-weight:700}
1860
- .brz-ed .brz-a:not(.brz-btn){color:#3dbfe8;text-decoration:none;background-color:transparent;-webkit-text-decoration-skip:objects;-webkit-box-shadow:none;box-shadow:none}
1861
- .brz-ed .brz-a:not(.brz-btn)[href]:hover{color:#1aabd8;-webkit-box-shadow:none;box-shadow:none;cursor:pointer}
1862
- .brz-ed .brz-a:not(.brz-btn):active,.brz-ed .brz-a:not(.brz-btn):focus,.brz-ed .brz-a:not(.brz-btn):hover{outline:0}
1863
- .brz-ed .brz-a.brz-btn[href]{text-decoration:none}
1864
- .brz-ed .brz-figure{margin:0;min-width:auto;min-height:auto}
1865
- .brz-ed .brz-img{vertical-align:middle;border-style:none}
1866
- .brz-ed svg:not(:root){overflow:hidden}
1867
- .brz-ed .brz-button,.brz-ed .brz-input,.brz-ed .brz-label,.brz-ed .brz-textarea{-ms-touch-action:manipulation;touch-action:manipulation}
1868
- .brz-ed .brz-table{border-collapse:collapse}
1869
- .brz-ed .brz-caption{padding-top:.75rem;padding-bottom:.75rem;color:#828b92;text-align:left;caption-side:bottom}
1870
- .brz-ed .brz-th{text-align:left}
1871
- .brz-ed .brz-form{margin:0}
1872
- .brz-ed .brz-label{display:inline-block;margin-bottom:0;font-weight:400}
1873
- .brz-ed .brz-button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}
1874
- .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}
1875
- .brz-ed .brz-button,.brz-ed .brz-input{overflow:visible}
1876
- .brz-ed .brz-button,.brz-ed .brz-select{text-transform:none}
1877
- .brz-ed .brz-button{-webkit-appearance:button}
1878
- .brz-ed .brz-button::-moz-focus-inner{padding:0;border-style:none}
1879
- .brz-ed .brz-input[type=checkbox],.brz-ed .brz-input[type=radio]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}
1880
- .brz-ed .brz-input[type=number]{-moz-appearance:textfield}
1881
- .brz-ed .brz-input[type=date],.brz-ed .brz-input[type=datetime-local],.brz-ed .brz-input[type=month],.brz-ed .brz-input[type=time]{-webkit-appearance:listbox}
1882
- .brz-ed .brz-textarea{overflow:auto;resize:vertical}
1883
- .brz-ed .brz-fieldset{min-width:0;padding:0;margin:0;border:0}
1884
- .brz-ed .brz-iframe,.brz-ed .brz-object{margin-bottom:0;max-width:100%}
1885
- .brz-ed .brz-iframe{margin:0;padding:0;border:0;font:inherit;font-size:100%;vertical-align:baseline}
1886
- .brz-ed [hidden]{display:none!important}
1887
- .brz-ed .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-attachment:scroll;background-blend-mode:normal;background-clip:border-box;background-color:transparent;background-image:none;background-origin:padding-box;background-position:0 0;background-repeat:repeat;background-size:auto auto;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-bottom-color:currentcolor;border-bottom-left-radius:0;border-bottom-right-radius:0;border-bottom-style:none;border-bottom-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-left-color:currentcolor;border-left-style:none;border-left-width:medium;border-right-color:currentcolor;border-right-style:none;border-right-width:medium;border-spacing:0;border-top-color:currentcolor;border-top-left-radius:0;border-top-right-radius:0;border-top-style:none;border-top-width:medium;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;-moz-column-count:auto;column-count:auto;-webkit-column-fill:balance;-moz-column-fill:balance;column-fill:balance;-webkit-column-gap:normal;-moz-column-gap:normal;column-gap:normal;-webkit-column-rule-color:currentcolor;-moz-column-rule-color:currentcolor;column-rule-color:currentcolor;-webkit-column-rule-style:none;-moz-column-rule-style:none;column-rule-style:none;-webkit-column-rule-width:medium;-moz-column-rule-width:medium;column-rule-width:medium;-webkit-column-span:none;-moz-column-span:none;column-span:none;-webkit-column-width:auto;-moz-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;list-style-image:none;list-style-position:outside;list-style-type:disc;-webkit-margin-after:0;margin-block-end:0;-webkit-margin-before:0;margin-block-start:0;margin-bottom:0;-webkit-margin-end:0;margin-inline-end:0;-webkit-margin-start:0;margin-inline-start:0;margin-left:0;margin-right:0;margin-top: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;padding-bottom:0;-webkit-padding-end:0;padding-inline-end:0;-webkit-padding-start:0;padding-inline-start:0;padding-left:0;padding-right:0;padding-top: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;-ms-scroll-snap-coordinate:none;scroll-snap-coordinate:none;-ms-scroll-snap-destination:0 0;scroll-snap-destination:0 0;-ms-scroll-snap-points-x:none;scroll-snap-points-x:none;-ms-scroll-snap-points-y:none;scroll-snap-points-y: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;-moz-text-align-last:auto;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-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;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}
1888
- .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}
1889
- .brz-ed .brz-h1{font-size:55px;font-weight:400}
1890
- .brz-ed .brz-h2{font-size:40px}
1891
- .brz-ed .brz-h3{font-size:32px}
1892
- .brz-ed .brz-h4{font-size:26px}
1893
- .brz-ed .brz-h5{font-size:19px}
1894
- .brz-ed .brz-h6{font-size:14px}
1895
- .brz-ed .brz-p{font-size:14px;font-weight:400}
1896
- .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}
1897
- .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}
1898
- .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}
1899
- .brz-ed .brz-justify-content-xs-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}
1900
- .brz-ed .brz-justify-content-xs-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}
1901
- .brz-ed .brz-justify-content-xs-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}
1902
- .brz-ed .brz-justify-content-xs-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}
1903
- .brz-ed .brz-justify-content-xs-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}
1904
- .brz-ed .brz-align-items-xs-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}
1905
- .brz-ed .brz-align-items-xs-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}
1906
- .brz-ed .brz-align-items-xs-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}
1907
- .brz-ed .brz-align-items-xs-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}
1908
- .brz-ed .brz-align-items-xs-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}
1909
- .brz-ed .brz-col-first-xs{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}
1910
- .brz-ed .brz-col-last-xs{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}
1911
- .brz-ed .brz-align-self-xs-start{-ms-flex-item-align:start!important;align-self:flex-start!important}
1912
- .brz-ed .brz-align-self-xs-end{-ms-flex-item-align:end!important;align-self:flex-end!important}
1913
- .brz-ed .brz-align-self-xs-center{-ms-flex-item-align:center!important;align-self:center!important}
1914
- .brz-ed .brz-align-self-xs-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}
1915
- .brz-ed .brz-align-self-xs-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}
1916
- .brz-ed .brz-flex-xs-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}
1917
- .brz-ed .brz-flex-xs-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}
1918
- .brz-ed .brz-align-content-xs-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}
1919
- .brz-ed .brz-align-content-xs-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}
1920
- .brz-ed .brz-align-content-xs-center{-ms-flex-line-pack:center!important;align-content:center!important}
1921
- .brz-ed .brz-align-content-xs-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}
1922
- .brz-ed .brz-align-content-xs-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}
1923
- .brz-ed .brz-align-content-xs-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}
1924
- @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}
1925
- .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}
1926
- .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}
1927
- .brz-ed .brz-justify-content-ms-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}
1928
- .brz-ed .brz-justify-content-ms-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}
1929
- .brz-ed .brz-justify-content-ms-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}
1930
- .brz-ed .brz-justify-content-ms-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}
1931
- .brz-ed .brz-justify-content-ms-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}
1932
- .brz-ed .brz-align-items-ms-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}
1933
- .brz-ed .brz-align-items-ms-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}
1934
- .brz-ed .brz-align-items-ms-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}
1935
- .brz-ed .brz-align-items-ms-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}
1936
- .brz-ed .brz-align-items-ms-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}
1937
- .brz-ed .brz-col-first-ms{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}
1938
- .brz-ed .brz-col-last-ms{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}
1939
- .brz-ed .brz-align-self-ms-start{-ms-flex-item-align:start!important;align-self:flex-start!important}
1940
- .brz-ed .brz-align-self-ms-end{-ms-flex-item-align:end!important;align-self:flex-end!important}
1941
- .brz-ed .brz-align-self-ms-center{-ms-flex-item-align:center!important;align-self:center!important}
1942
- .brz-ed .brz-align-self-ms-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}
1943
- .brz-ed .brz-align-self-ms-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}
1944
- .brz-ed .brz-flex-ms-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}
1945
- .brz-ed .brz-flex-ms-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}
1946
- .brz-ed .brz-align-content-ms-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}
1947
- .brz-ed .brz-align-content-ms-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}
1948
- .brz-ed .brz-align-content-ms-center{-ms-flex-line-pack:center!important;align-content:center!important}
1949
- .brz-ed .brz-align-content-ms-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}
1950
- .brz-ed .brz-align-content-ms-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}
1951
- .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}
1952
- .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}
1953
- .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}
1954
- .brz-ed .brz-justify-content-sm-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}
1955
- .brz-ed .brz-justify-content-sm-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}
1956
- .brz-ed .brz-justify-content-sm-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}
1957
- .brz-ed .brz-justify-content-sm-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}
1958
- .brz-ed .brz-justify-content-sm-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}
1959
- .brz-ed .brz-align-items-sm-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}
1960
- .brz-ed .brz-align-items-sm-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}
1961
- .brz-ed .brz-align-items-sm-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}
1962
- .brz-ed .brz-align-items-sm-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}
1963
- .brz-ed .brz-align-items-sm-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}
1964
- .brz-ed .brz-col-first-sm{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}
1965
- .brz-ed .brz-col-last-sm{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}
1966
- .brz-ed .brz-align-self-sm-start{-ms-flex-item-align:start!important;align-self:flex-start!important}
1967
- .brz-ed .brz-align-self-sm-end{-ms-flex-item-align:end!important;align-self:flex-end!important}
1968
- .brz-ed .brz-align-self-sm-center{-ms-flex-item-align:center!important;align-self:center!important}
1969
- .brz-ed .brz-align-self-sm-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}
1970
- .brz-ed .brz-align-self-sm-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}
1971
- .brz-ed .brz-flex-sm-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}
1972
- .brz-ed .brz-flex-sm-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}
1973
- .brz-ed .brz-align-content-sm-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}
1974
- .brz-ed .brz-align-content-sm-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}
1975
- .brz-ed .brz-align-content-sm-center{-ms-flex-line-pack:center!important;align-content:center!important}
1976
- .brz-ed .brz-align-content-sm-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}
1977
- .brz-ed .brz-align-content-sm-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}
1978
- .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}
1979
- .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}
1980
- .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}
1981
- .brz-ed .brz-justify-content-md-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}
1982
- .brz-ed .brz-justify-content-md-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}
1983
- .brz-ed .brz-justify-content-md-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}
1984
- .brz-ed .brz-justify-content-md-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}
1985
- .brz-ed .brz-justify-content-md-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}
1986
- .brz-ed .brz-align-items-md-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}
1987
- .brz-ed .brz-align-items-md-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}
1988
- .brz-ed .brz-align-items-md-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}
1989
- .brz-ed .brz-align-items-md-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}
1990
- .brz-ed .brz-align-items-md-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}
1991
- .brz-ed .brz-col-first-md{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}
1992
- .brz-ed .brz-col-last-md{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}
1993
- .brz-ed .brz-align-self-md-start{-ms-flex-item-align:start!important;align-self:flex-start!important}
1994
- .brz-ed .brz-align-self-md-end{-ms-flex-item-align:end!important;align-self:flex-end!important}
1995
- .brz-ed .brz-align-self-md-center{-ms-flex-item-align:center!important;align-self:center!important}
1996
- .brz-ed .brz-align-self-md-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}
1997
- .brz-ed .brz-align-self-md-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}
1998
- .brz-ed .brz-flex-md-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}
1999
- .brz-ed .brz-flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}
2000
- .brz-ed .brz-align-content-md-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}
2001
- .brz-ed .brz-align-content-md-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}
2002
- .brz-ed .brz-align-content-md-center{-ms-flex-line-pack:center!important;align-content:center!important}
2003
- .brz-ed .brz-align-content-md-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}
2004
- .brz-ed .brz-align-content-md-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}
2005
- .brz-ed .brz-align-content-md-between{-ms-flex-line-pack:justify!important;align-content:space-between!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}
2006
- .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}
2007
- .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}
2008
- .brz-ed .brz-justify-content-lg-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}
2009
- .brz-ed .brz-justify-content-lg-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}
2010
- .brz-ed .brz-justify-content-lg-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}
2011
- .brz-ed .brz-justify-content-lg-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}
2012
- .brz-ed .brz-justify-content-lg-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}
2013
- .brz-ed .brz-align-items-lg-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}
2014
- .brz-ed .brz-align-items-lg-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}
2015
- .brz-ed .brz-align-items-lg-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}
2016
- .brz-ed .brz-align-items-lg-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}
2017
- .brz-ed .brz-align-items-lg-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}
2018
- .brz-ed .brz-col-first-lg{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}
2019
- .brz-ed .brz-col-last-lg{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}
2020
- .brz-ed .brz-align-self-lg-start{-ms-flex-item-align:start!important;align-self:flex-start!important}
2021
- .brz-ed .brz-align-self-lg-end{-ms-flex-item-align:end!important;align-self:flex-end!important}
2022
- .brz-ed .brz-align-self-lg-center{-ms-flex-item-align:center!important;align-self:center!important}
2023
- .brz-ed .brz-align-self-lg-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}
2024
- .brz-ed .brz-align-self-lg-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}
2025
- .brz-ed .brz-flex-lg-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}
2026
- .brz-ed .brz-flex-lg-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}
2027
- .brz-ed .brz-align-content-lg-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}
2028
- .brz-ed .brz-align-content-lg-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}
2029
- .brz-ed .brz-align-content-lg-center{-ms-flex-line-pack:center!important;align-content:center!important}
2030
- .brz-ed .brz-align-content-lg-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}
2031
- .brz-ed .brz-align-content-lg-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}
2032
- .brz-ed .brz-align-content-lg-between{-ms-flex-line-pack:justify!important;align-content:space-between!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}
2033
- .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}
2034
- .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}
2035
- .brz-ed .brz-justify-content-xl-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}
2036
- .brz-ed .brz-justify-content-xl-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}
2037
- .brz-ed .brz-justify-content-xl-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}
2038
- .brz-ed .brz-justify-content-xl-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}
2039
- .brz-ed .brz-justify-content-xl-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}
2040
- .brz-ed .brz-align-items-xl-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}
2041
- .brz-ed .brz-align-items-xl-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}
2042
- .brz-ed .brz-align-items-xl-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}
2043
- .brz-ed .brz-align-items-xl-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}
2044
- .brz-ed .brz-align-items-xl-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}
2045
- .brz-ed .brz-col-first-xl{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}
2046
- .brz-ed .brz-col-last-xl{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}
2047
- .brz-ed .brz-align-self-xl-start{-ms-flex-item-align:start!important;align-self:flex-start!important}
2048
- .brz-ed .brz-align-self-xl-end{-ms-flex-item-align:end!important;align-self:flex-end!important}
2049
- .brz-ed .brz-align-self-xl-center{-ms-flex-item-align:center!important;align-self:center!important}
2050
- .brz-ed .brz-align-self-xl-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}
2051
- .brz-ed .brz-align-self-xl-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}
2052
- .brz-ed .brz-flex-xl-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}
2053
- .brz-ed .brz-flex-xl-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}
2054
- .brz-ed .brz-align-content-xl-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}
2055
- .brz-ed .brz-align-content-xl-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}
2056
- .brz-ed .brz-align-content-xl-center{-ms-flex-line-pack:center!important;align-content:center!important}
2057
- .brz-ed .brz-align-content-xl-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}
2058
- .brz-ed .brz-align-content-xl-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}
2059
- .brz-ed .brz-align-content-xl-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}}.brz-ed .brz-d-block{display:block!important}
2060
- .brz-ed .brz-d-inline-block{display:inline-block!important}
2061
- .brz-ed .brz-d-inline{display:inline!important}
2062
- .brz-ed .brz-d-none{display:none!important}
2063
- .brz-ed .brz-d-table{width:100%;display:table;position:relative}
2064
- .brz-ed .brz-d-table-cell{display:table-cell}
2065
- .brz-ed .brz-blocked{pointer-events:none}
2066
- .brz-ed .brz-d-xs-flex{display:-webkit-box;display:-ms-flexbox;display:flex;min-width:0}
2067
- .brz-ed .brz-d-xs-inline-flex{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}
2068
- @media (min-width:480px){.brz-ed .brz-d-ms-flex{display:-webkit-box;display:-ms-flexbox;display:flex;min-width:0}
2069
- .brz-ed .brz-d-ms-inline-flex{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}}@media (min-width:768px){.brz-ed .brz-d-sm-flex{display:-webkit-box;display:-ms-flexbox;display:flex;min-width:0}
2070
- .brz-ed .brz-d-sm-inline-flex{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}}@media (min-width:992px){.brz-ed .brz-d-md-flex{display:-webkit-box;display:-ms-flexbox;display:flex;min-width:0}
2071
- .brz-ed .brz-d-md-inline-flex{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}}@media (min-width:1200px){.brz-ed .brz-d-lg-flex{display:-webkit-box;display:-ms-flexbox;display:flex;min-width:0}
2072
- .brz-ed .brz-d-lg-inline-flex{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}}@media (min-width:1400px){.brz-ed .brz-d-xl-flex{display:-webkit-box;display:-ms-flexbox;display:flex;min-width:0}
2073
- .brz-ed .brz-d-xl-inline-flex{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}}.brz-ed .brz-p-relative{position:relative!important}
2074
- .brz-ed .brz-p-absolute{position:absolute!important}
2075
- .brz-ed .brz-p-fixed{position:fixed!important}
2076
- .brz-ed .brz-invisible{visibility:hidden!important}
2077
- .brz-ed .brz-visible{visibility:visible!important}
2078
- .brz-ed .brz-hidden-xs-up{display:none!important}
2079
- @media (max-width:479px){.brz-ed .brz-hidden-xs-down{display:none!important}}.brz-ed .brz-invisible-xs-up{visibility:hidden!important}
2080
- @media (max-width:479px){.brz-ed .brz-invisible-xs-down{visibility:hidden!important}}.brz-ed .brz-invisible-blur-xs-up .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}
2081
- @media (max-width:479px){.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}}@media (max-width:767px){.brz-ed .brz-hidden-ms-down{display:none!important}}@media (min-width:480px){.brz-ed .brz-invisible-ms-up{visibility:hidden!important}}@media (max-width:767px){.brz-ed .brz-invisible-ms-down{visibility:hidden!important}}@media (min-width:480px){.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-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}}@media (max-width:991px){.brz-ed .brz-hidden-sm-down{display:none!important}}@media (min-width:768px){.brz-ed .brz-invisible-sm-up{visibility:hidden!important}}@media (max-width:991px){.brz-ed .brz-invisible-sm-down{visibility:hidden!important}}@media (min-width:768px){.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-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}}@media (max-width:1199px){.brz-ed .brz-hidden-md-down{display:none!important}}@media (min-width:992px){.brz-ed .brz-invisible-md-up{visibility:hidden!important}}@media (max-width:1199px){.brz-ed .brz-invisible-md-down{visibility:hidden!important}}@media (min-width:992px){.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-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}}@media (max-width:1399px){.brz-ed .brz-hidden-lg-down{display:none!important}}@media (min-width:1200px){.brz-ed .brz-invisible-lg-up{visibility:hidden!important}}@media (max-width:1399px){.brz-ed .brz-invisible-lg-down{visibility:hidden!important}}@media (min-width:1200px){.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-invisible-blur-lg-down .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (min-width:1400px){.brz-ed .brz-hidden-xl-up{display:none!important}}.brz-ed .brz-hidden-xl-down{display:none!important}
2082
- @media (min-width:1400px){.brz-ed .brz-invisible-xl-up{visibility:hidden!important}}.brz-ed .brz-invisible-xl-down{visibility:hidden!important}
2083
- @media (min-width:1400px){.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}
2084
- .brz-ed .brz-hidden{display:none!important}
2085
- .brz-ed .brz-visible-print-block{display:none!important}
2086
- @media print{.brz-ed .brz-visible-print-block{display:block!important}}.brz-ed .brz-visible-print-inline{display:none!important}
2087
- @media print{.brz-ed .brz-visible-print-inline{display:inline!important}}.brz-ed .brz-visible-print-inline-block{display:none!important}
2088
- @media print{.brz-ed .brz-visible-print-inline-block{display:inline-block!important}}@media print{.brz-ed .brz-hidden-print{display:none!important}}.brz-ed .brz-ow-hidden{overflow:hidden!important}
2089
- .brz-ed .brz-ow-visible{overflow:visible!important}
2090
- .brz-ed .brz-pointer-events-none{pointer-events:none!important}
2091
- .brz-ed .brz-pointer-events-auto{pointer-events:auto!important}
2092
- .brz-ed .brz-fw-100{font-weight:100!important}
2093
- .brz-ed .brz-fw-200{font-weight:200!important}
2094
- .brz-ed .brz-fw-300{font-weight:300!important}
2095
- .brz-ed .brz-fw-400{font-weight:400!important}
2096
- .brz-ed .brz-fw-500{font-weight:500!important}
2097
- .brz-ed .brz-fw-600{font-weight:600!important}
2098
- .brz-ed .brz-fw-700{font-weight:700!important}
2099
- .brz-ed .brz-fw-800{font-weight:800!important}
2100
- .brz-ed .brz-fw-900{font-weight:900!important}
2101
- .brz-ed .brz--required{color:#ff0e0e;padding-left:5px}
2102
- .brz-ed.disable-select{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}
2103
- .brz-ed .brz-ed-popup-image-inner{position:relative;color:#fff;display:inline-block;font-size:0}
2104
- .brz-ed .brz-ed-popup-image-label{margin-bottom:0}
2105
- .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}
2106
- .brz-ed .brz-ed-popup-image-remove:hover{background-color:#03080f;-webkit-transition:background .2s linear;transition:background .2s linear}
2107
- .brz-ed .brz-ed-popup-image-remove i{line-height:2.75}
2108
- .brz-ed .brz-ed-popup-image-upload{position:absolute;top:4px;left:4px;right:4px;bottom:4px;background:#fff url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iMjBweCIgaGVpZ2h0PSIyMHB4IiB2aWV3Qm94PSIwIDAgMjAgMjAiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDIwIDIwOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHBhdGggZD0iTTE5LDIwSDFjLTAuNTUyLDAtMS0wLjQ0OC0xLTFWMy44OTNjMC0wLjU1MiwwLjQ0OC0wLjksMS0wLjlMMy42ODUsM0M0LjEsMyw0LjQ3MiwyLjYzNiw0LjYyLDIuMjQ4bDAuNTgtMUM1LjIsMS4yNDksNS41NiwwLDYuMjUsMGg3LjVjMC42OSwwLDEuMTUsMS4yNDksMS4xNSwxLjI0OWwwLjQ4LDFjMC4xNDcsMC4zODgsMC41MiwwLjc0NSwwLjkzNSwwLjc0NUgxOWMwLjU1MiwwLDEsMC4zNDgsMSwwLjlWMTlDMjAsMTkuNTUyLDE5LjU1MiwyMCwxOSwyMHogTTE5LDQuNTg2Yy0wLjAwNC0wLjMyOC0wLjI3Mi0wLjU5Mi0wLjYtMC41OTJoLTMuMzk5Yy0wLjE0My0wLjE0My0wLjExNy0wLjIwMi0wLjg4MS0xLjg0N2MwLDAtMC40NDgtMS4xNDctMS0xLjE0N0g3LjExOGMtMC41NTIsMC0xLDEuMTQ3LTEsMS4xNDdDNS4wNTEsMy45MTMsNS4wOCwzLjg2NCw1LDMuOTk0SDEuNjUxYy0wLjMzMSwwLTAuNiwwLjI2OS0wLjYsMC42VjE4LjRjMCwwLjMzMSwwLjI2OSwwLjYsMC42LDAuNkgxOC40YzAuMzMxLDAsMC42LTAuMjY5LDAuNi0wLjZMMTksNC41ODZ6IE0xMi4wMiwxNS42MDNjLTQuMjg3LDEuNjk2LTguMzE5LTIuMzM1LTYuNjI0LTYuNjIyYzAuNDYzLTEuMTcyLDEuNDE0LTIuMTIyLDIuNTg2LTIuNTg2YzQuMjg3LTEuNjk1LDguMzE4LDIuMzM4LDYuNjIyLDYuNjI0QzE0LjE0LDE0LjE5LDEzLjE5LDE1LjE0LDEyLjAyLDE1LjYwM3ogTTEwLjYzMiw3LjA0OWMtMi43MDMtMC40MTQtNC45OTcsMS44OC00LjU4NCw0LjU4NGMwLjI1OCwxLjY4NSwxLjYzNSwzLjA2MSwzLjMxOSwzLjMxOWMyLjcwMywwLjQxNCw0Ljk5Ny0xLjg4LDQuNTg0LTQuNTg0QzEzLjY5NCw4LjY4MywxMi4zMTcsNy4zMDYsMTAuNjMyLDcuMDQ5eiIvPjwvc3ZnPg==) no-repeat 50% 50%;background-size:25px}
2109
- .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}
2110
- .brz-ed .brz-ed-loading:before{content:'Change Image';font:bold 10px nunito,"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}
2111
- .brz-ed .brz-ed-loading:hover{border-color:transparent}
2112
- .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}
2113
- .brz-ed .brz-p-events--none{pointer-events:none!important}
2114
- .brz-ed.brz-ed--desktop .brz-fs-lg-6{font-size:6px!important}
2115
- .brz-ed.brz-ed--desktop .brz-fs-lg-7{font-size:7px!important}
2116
- .brz-ed.brz-ed--desktop .brz-fs-lg-8{font-size:8px!important}
2117
- .brz-ed.brz-ed--desktop .brz-fs-lg-9{font-size:9px!important}
2118
- .brz-ed.brz-ed--desktop .brz-fs-lg-10{font-size:10px!important}
2119
- .brz-ed.brz-ed--desktop .brz-fs-lg-11{font-size:11px!important}
2120
- .brz-ed.brz-ed--desktop .brz-fs-lg-12{font-size:12px!important}
2121
- .brz-ed.brz-ed--desktop .brz-fs-lg-13{font-size:13px!important}
2122
- .brz-ed.brz-ed--desktop .brz-fs-lg-14{font-size:14px!important}
2123
- .brz-ed.brz-ed--desktop .brz-fs-lg-15{font-size:15px!important}
2124
- .brz-ed.brz-ed--desktop .brz-fs-lg-16{font-size:16px!important}
2125
- .brz-ed.brz-ed--desktop .brz-fs-lg-17{font-size:17px!important}
2126
- .brz-ed.brz-ed--desktop .brz-fs-lg-18{font-size:18px!important}
2127
- .brz-ed.brz-ed--desktop .brz-fs-lg-19{font-size:19px!important}
2128
- .brz-ed.brz-ed--desktop .brz-fs-lg-20{font-size:20px!important}
2129
- .brz-ed.brz-ed--desktop .brz-fs-lg-21{font-size:21px!important}
2130
- .brz-ed.brz-ed--desktop .brz-fs-lg-22{font-size:22px!important}
2131
- .brz-ed.brz-ed--desktop .brz-fs-lg-23{font-size:23px!important}
2132
- .brz-ed.brz-ed--desktop .brz-fs-lg-24{font-size:24px!important}
2133
- .brz-ed.brz-ed--desktop .brz-fs-lg-25{font-size:25px!important}
2134
- .brz-ed.brz-ed--desktop .brz-fs-lg-26{font-size:26px!important}
2135
- .brz-ed.brz-ed--desktop .brz-fs-lg-27{font-size:27px!important}
2136
- .brz-ed.brz-ed--desktop .brz-fs-lg-28{font-size:28px!important}
2137
- .brz-ed.brz-ed--desktop .brz-fs-lg-29{font-size:29px!important}
2138
- .brz-ed.brz-ed--desktop .brz-fs-lg-30{font-size:30px!important}
2139
- .brz-ed.brz-ed--desktop .brz-fs-lg-31{font-size:31px!important}
2140
- .brz-ed.brz-ed--desktop .brz-fs-lg-32{font-size:32px!important}
2141
- .brz-ed.brz-ed--desktop .brz-fs-lg-33{font-size:33px!important}
2142
- .brz-ed.brz-ed--desktop .brz-fs-lg-34{font-size:34px!important}
2143
- .brz-ed.brz-ed--desktop .brz-fs-lg-35{font-size:35px!important}
2144
- .brz-ed.brz-ed--desktop .brz-fs-lg-36{font-size:36px!important}
2145
- .brz-ed.brz-ed--desktop .brz-fs-lg-37{font-size:37px!important}
2146
- .brz-ed.brz-ed--desktop .brz-fs-lg-38{font-size:38px!important}
2147
- .brz-ed.brz-ed--desktop .brz-fs-lg-39{font-size:39px!important}
2148
- .brz-ed.brz-ed--desktop .brz-fs-lg-40{font-size:40px!important}
2149
- .brz-ed.brz-ed--desktop .brz-fs-lg-41{font-size:41px!important}
2150
- .brz-ed.brz-ed--desktop .brz-fs-lg-42{font-size:42px!important}
2151
- .brz-ed.brz-ed--desktop .brz-fs-lg-43{font-size:43px!important}
2152
- .brz-ed.brz-ed--desktop .brz-fs-lg-44{font-size:44px!important}
2153
- .brz-ed.brz-ed--desktop .brz-fs-lg-45{font-size:45px!important}
2154
- .brz-ed.brz-ed--desktop .brz-fs-lg-46{font-size:46px!important}
2155
- .brz-ed.brz-ed--desktop .brz-fs-lg-47{font-size:47px!important}
2156
- .brz-ed.brz-ed--desktop .brz-fs-lg-48{font-size:48px!important}
2157
- .brz-ed.brz-ed--desktop .brz-fs-lg-49{font-size:49px!important}
2158
- .brz-ed.brz-ed--desktop .brz-fs-lg-50{font-size:50px!important}
2159
- .brz-ed.brz-ed--desktop .brz-fs-lg-51{font-size:51px!important}
2160
- .brz-ed.brz-ed--desktop .brz-fs-lg-52{font-size:52px!important}
2161
- .brz-ed.brz-ed--desktop .brz-fs-lg-53{font-size:53px!important}
2162
- .brz-ed.brz-ed--desktop .brz-fs-lg-54{font-size:54px!important}
2163
- .brz-ed.brz-ed--desktop .brz-fs-lg-55{font-size:55px!important}
2164
- .brz-ed.brz-ed--desktop .brz-fs-lg-56{font-size:56px!important}
2165
- .brz-ed.brz-ed--desktop .brz-fs-lg-57{font-size:57px!important}
2166
- .brz-ed.brz-ed--desktop .brz-fs-lg-58{font-size:58px!important}
2167
- .brz-ed.brz-ed--desktop .brz-fs-lg-59{font-size:59px!important}
2168
- .brz-ed.brz-ed--desktop .brz-fs-lg-60{font-size:60px!important}
2169
- .brz-ed.brz-ed--desktop .brz-fs-lg-61{font-size:61px!important}
2170
- .brz-ed.brz-ed--desktop .brz-fs-lg-62{font-size:62px!important}
2171
- .brz-ed.brz-ed--desktop .brz-fs-lg-63{font-size:63px!important}
2172
- .brz-ed.brz-ed--desktop .brz-fs-lg-64{font-size:64px!important}
2173
- .brz-ed.brz-ed--desktop .brz-fs-lg-65{font-size:65px!important}
2174
- .brz-ed.brz-ed--desktop .brz-fs-lg-66{font-size:66px!important}
2175
- .brz-ed.brz-ed--desktop .brz-fs-lg-67{font-size:67px!important}
2176
- .brz-ed.brz-ed--desktop .brz-fs-lg-68{font-size:68px!important}
2177
- .brz-ed.brz-ed--desktop .brz-fs-lg-69{font-size:69px!important}
2178
- .brz-ed.brz-ed--desktop .brz-fs-lg-70{font-size:70px!important}
2179
- .brz-ed.brz-ed--desktop .brz-fs-lg-71{font-size:71px!important}
2180
- .brz-ed.brz-ed--desktop .brz-fs-lg-72{font-size:72px!important}
2181
- .brz-ed.brz-ed--desktop .brz-fs-lg-73{font-size:73px!important}
2182
- .brz-ed.brz-ed--desktop .brz-fs-lg-74{font-size:74px!important}
2183
- .brz-ed.brz-ed--desktop .brz-fs-lg-75{font-size:75px!important}
2184
- .brz-ed.brz-ed--desktop .brz-fs-lg-76{font-size:76px!important}
2185
- .brz-ed.brz-ed--desktop .brz-fs-lg-77{font-size:77px!important}
2186
- .brz-ed.brz-ed--desktop .brz-fs-lg-78{font-size:78px!important}
2187
- .brz-ed.brz-ed--desktop .brz-fs-lg-79{font-size:79px!important}
2188
- .brz-ed.brz-ed--desktop .brz-fs-lg-80{font-size:80px!important}
2189
- .brz-ed.brz-ed--desktop .brz-fs-lg-81{font-size:81px!important}
2190
- .brz-ed.brz-ed--desktop .brz-fs-lg-82{font-size:82px!important}
2191
- .brz-ed.brz-ed--desktop .brz-fs-lg-83{font-size:83px!important}
2192
- .brz-ed.brz-ed--desktop .brz-fs-lg-84{font-size:84px!important}
2193
- .brz-ed.brz-ed--desktop .brz-fs-lg-85{font-size:85px!important}
2194
- .brz-ed.brz-ed--desktop .brz-fs-lg-86{font-size:86px!important}
2195
- .brz-ed.brz-ed--desktop .brz-fs-lg-87{font-size:87px!important}
2196
- .brz-ed.brz-ed--desktop .brz-fs-lg-88{font-size:88px!important}
2197
- .brz-ed.brz-ed--desktop .brz-fs-lg-89{font-size:89px!important}
2198
- .brz-ed.brz-ed--desktop .brz-fs-lg-90{font-size:90px!important}
2199
- .brz-ed.brz-ed--desktop .brz-fs-lg-91{font-size:91px!important}
2200
- .brz-ed.brz-ed--desktop .brz-fs-lg-92{font-size:92px!important}
2201
- .brz-ed.brz-ed--desktop .brz-fs-lg-93{font-size:93px!important}
2202
- .brz-ed.brz-ed--desktop .brz-fs-lg-94{font-size:94px!important}
2203
- .brz-ed.brz-ed--desktop .brz-fs-lg-95{font-size:95px!important}
2204
- .brz-ed.brz-ed--desktop .brz-fs-lg-96{font-size:96px!important}
2205
- .brz-ed.brz-ed--desktop .brz-fs-lg-97{font-size:97px!important}
2206
- .brz-ed.brz-ed--desktop .brz-fs-lg-98{font-size:98px!important}
2207
- .brz-ed.brz-ed--desktop .brz-fs-lg-99{font-size:99px!important}
2208
- .brz-ed.brz-ed--desktop .brz-fs-lg-100{font-size:100px!important}
2209
- .brz-ed.brz-ed--desktop .brz-fs-lg-101{font-size:101px!important}
2210
- .brz-ed.brz-ed--desktop .brz-fs-lg-102{font-size:102px!important}
2211
- .brz-ed.brz-ed--desktop .brz-fs-lg-103{font-size:103px!important}
2212
- .brz-ed.brz-ed--desktop .brz-fs-lg-104{font-size:104px!important}
2213
- .brz-ed.brz-ed--desktop .brz-fs-lg-105{font-size:105px!important}
2214
- .brz-ed.brz-ed--desktop .brz-fs-lg-106{font-size:106px!important}
2215
- .brz-ed.brz-ed--desktop .brz-fs-lg-107{font-size:107px!important}
2216
- .brz-ed.brz-ed--desktop .brz-fs-lg-108{font-size:108px!important}
2217
- .brz-ed.brz-ed--desktop .brz-fs-lg-109{font-size:109px!important}
2218
- .brz-ed.brz-ed--desktop .brz-fs-lg-110{font-size:110px!important}
2219
- .brz-ed.brz-ed--desktop .brz-fs-lg-111{font-size:111px!important}
2220
- .brz-ed.brz-ed--desktop .brz-fs-lg-112{font-size:112px!important}
2221
- .brz-ed.brz-ed--desktop .brz-fs-lg-113{font-size:113px!important}
2222
- .brz-ed.brz-ed--desktop .brz-fs-lg-114{font-size:114px!important}
2223
- .brz-ed.brz-ed--desktop .brz-fs-lg-115{font-size:115px!important}
2224
- .brz-ed.brz-ed--desktop .brz-fs-lg-116{font-size:116px!important}
2225
- .brz-ed.brz-ed--desktop .brz-fs-lg-117{font-size:117px!important}
2226
- .brz-ed.brz-ed--desktop .brz-fs-lg-118{font-size:118px!important}
2227
- .brz-ed.brz-ed--desktop .brz-fs-lg-119{font-size:119px!important}
2228
- .brz-ed.brz-ed--desktop .brz-fs-lg-120{font-size:120px!important}
2229
- .brz-ed.brz-ed--desktop .brz-fs-lg-121{font-size:121px!important}
2230
- .brz-ed.brz-ed--desktop .brz-fs-lg-122{font-size:122px!important}
2231
- .brz-ed.brz-ed--desktop .brz-fs-lg-123{font-size:123px!important}
2232
- .brz-ed.brz-ed--desktop .brz-fs-lg-124{font-size:124px!important}
2233
- .brz-ed.brz-ed--desktop .brz-fs-lg-125{font-size:125px!important}
2234
- .brz-ed.brz-ed--desktop .brz-fs-lg-126{font-size:126px!important}
2235
- .brz-ed.brz-ed--desktop .brz-fs-lg-127{font-size:127px!important}
2236
- .brz-ed.brz-ed--desktop .brz-fs-lg-128{font-size:128px!important}
2237
- .brz-ed.brz-ed--desktop .brz-fs-lg-129{font-size:129px!important}
2238
- .brz-ed.brz-ed--desktop .brz-fs-lg-130{font-size:130px!important}
2239
- .brz-ed.brz-ed--desktop .brz-fs-lg-131{font-size:131px!important}
2240
- .brz-ed.brz-ed--desktop .brz-fs-lg-132{font-size:132px!important}
2241
- .brz-ed.brz-ed--desktop .brz-fs-lg-133{font-size:133px!important}
2242
- .brz-ed.brz-ed--desktop .brz-fs-lg-134{font-size:134px!important}
2243
- .brz-ed.brz-ed--desktop .brz-fs-lg-135{font-size:135px!important}
2244
- .brz-ed.brz-ed--desktop .brz-fs-lg-136{font-size:136px!important}
2245
- .brz-ed.brz-ed--desktop .brz-fs-lg-137{font-size:137px!important}
2246
- .brz-ed.brz-ed--desktop .brz-fs-lg-138{font-size:138px!important}
2247
- .brz-ed.brz-ed--desktop .brz-fs-lg-139{font-size:139px!important}
2248
- .brz-ed.brz-ed--desktop .brz-fs-lg-140{font-size:140px!important}
2249
- .brz-ed.brz-ed--desktop .brz-fs-lg-141{font-size:141px!important}
2250
- .brz-ed.brz-ed--desktop .brz-fs-lg-142{font-size:142px!important}
2251
- .brz-ed.brz-ed--desktop .brz-fs-lg-143{font-size:143px!important}
2252
- .brz-ed.brz-ed--desktop .brz-fs-lg-144{font-size:144px!important}
2253
- .brz-ed.brz-ed--desktop .brz-fs-lg-145{font-size:145px!important}
2254
- .brz-ed.brz-ed--desktop .brz-fs-lg-146{font-size:146px!important}
2255
- .brz-ed.brz-ed--desktop .brz-fs-lg-147{font-size:147px!important}
2256
- .brz-ed.brz-ed--desktop .brz-fs-lg-148{font-size:148px!important}
2257
- .brz-ed.brz-ed--desktop .brz-fs-lg-149{font-size:149px!important}
2258
- .brz-ed.brz-ed--desktop .brz-fs-lg-150{font-size:150px!important}
2259
- .brz-ed.brz-ed--desktop .brz-fs-lg-151{font-size:151px!important}
2260
- .brz-ed.brz-ed--desktop .brz-fs-lg-152{font-size:152px!important}
2261
- .brz-ed.brz-ed--desktop .brz-fs-lg-153{font-size:153px!important}
2262
- .brz-ed.brz-ed--desktop .brz-fs-lg-154{font-size:154px!important}
2263
- .brz-ed.brz-ed--desktop .brz-fs-lg-155{font-size:155px!important}
2264
- .brz-ed.brz-ed--desktop .brz-fs-lg-156{font-size:156px!important}
2265
- .brz-ed.brz-ed--desktop .brz-fs-lg-157{font-size:157px!important}
2266
- .brz-ed.brz-ed--desktop .brz-fs-lg-158{font-size:158px!important}
2267
- .brz-ed.brz-ed--desktop .brz-fs-lg-159{font-size:159px!important}
2268
- .brz-ed.brz-ed--desktop .brz-fs-lg-160{font-size:160px!important}
2269
- .brz-ed.brz-ed--desktop .brz-fs-lg-161{font-size:161px!important}
2270
- .brz-ed.brz-ed--desktop .brz-fs-lg-162{font-size:162px!important}
2271
- .brz-ed.brz-ed--desktop .brz-fs-lg-163{font-size:163px!important}
2272
- .brz-ed.brz-ed--desktop .brz-fs-lg-164{font-size:164px!important}
2273
- .brz-ed.brz-ed--desktop .brz-fs-lg-165{font-size:165px!important}
2274
- .brz-ed.brz-ed--desktop .brz-fs-lg-166{font-size:166px!important}
2275
- .brz-ed.brz-ed--desktop .brz-fs-lg-167{font-size:167px!important}
2276
- .brz-ed.brz-ed--desktop .brz-fs-lg-168{font-size:168px!important}
2277
- .brz-ed.brz-ed--desktop .brz-fs-lg-169{font-size:169px!important}
2278
- .brz-ed.brz-ed--desktop .brz-fs-lg-170{font-size:170px!important}
2279
- .brz-ed.brz-ed--desktop .brz-fs-lg-171{font-size:171px!important}
2280
- .brz-ed.brz-ed--desktop .brz-fs-lg-172{font-size:172px!important}
2281
- .brz-ed.brz-ed--desktop .brz-fs-lg-173{font-size:173px!important}
2282
- .brz-ed.brz-ed--desktop .brz-fs-lg-174{font-size:174px!important}
2283
- .brz-ed.brz-ed--desktop .brz-fs-lg-175{font-size:175px!important}
2284
- .brz-ed.brz-ed--desktop .brz-fs-lg-176{font-size:176px!important}
2285
- .brz-ed.brz-ed--desktop .brz-fs-lg-177{font-size:177px!important}
2286
- .brz-ed.brz-ed--desktop .brz-fs-lg-178{font-size:178px!important}
2287
- .brz-ed.brz-ed--desktop .brz-fs-lg-179{font-size:179px!important}
2288
- .brz-ed.brz-ed--desktop .brz-fs-lg-180{font-size:180px!important}
2289
- .brz-ed.brz-ed--desktop .brz-fs-lg-181{font-size:181px!important}
2290
- .brz-ed.brz-ed--desktop .brz-fs-lg-182{font-size:182px!important}
2291
- .brz-ed.brz-ed--desktop .brz-fs-lg-183{font-size:183px!important}
2292
- .brz-ed.brz-ed--desktop .brz-fs-lg-184{font-size:184px!important}
2293
- .brz-ed.brz-ed--desktop .brz-fs-lg-185{font-size:185px!important}
2294
- .brz-ed.brz-ed--desktop .brz-fs-lg-186{font-size:186px!important}
2295
- .brz-ed.brz-ed--desktop .brz-fs-lg-187{font-size:187px!important}
2296
- .brz-ed.brz-ed--desktop .brz-fs-lg-188{font-size:188px!important}
2297
- .brz-ed.brz-ed--desktop .brz-fs-lg-189{font-size:189px!important}
2298
- .brz-ed.brz-ed--desktop .brz-fs-lg-190{font-size:190px!important}
2299
- .brz-ed.brz-ed--desktop .brz-fs-lg-191{font-size:191px!important}
2300
- .brz-ed.brz-ed--desktop .brz-fs-lg-192{font-size:192px!important}
2301
- .brz-ed.brz-ed--desktop .brz-fs-lg-193{font-size:193px!important}
2302
- .brz-ed.brz-ed--desktop .brz-fs-lg-194{font-size:194px!important}
2303
- .brz-ed.brz-ed--desktop .brz-fs-lg-195{font-size:195px!important}
2304
- .brz-ed.brz-ed--desktop .brz-fs-lg-196{font-size:196px!important}
2305
- .brz-ed.brz-ed--desktop .brz-fs-lg-197{font-size:197px!important}
2306
- .brz-ed.brz-ed--desktop .brz-fs-lg-198{font-size:198px!important}
2307
- .brz-ed.brz-ed--desktop .brz-fs-lg-199{font-size:199px!important}
2308
- .brz-ed.brz-ed--desktop .brz-fs-lg-200{font-size:200px!important}
2309
- .brz-ed.brz-ed--desktop .brz-fs-lg-201{font-size:201px!important}
2310
- .brz-ed.brz-ed--desktop .brz-fs-lg-202{font-size:202px!important}
2311
- .brz-ed.brz-ed--desktop .brz-fs-lg-203{font-size:203px!important}
2312
- .brz-ed.brz-ed--desktop .brz-fs-lg-204{font-size:204px!important}
2313
- .brz-ed.brz-ed--desktop .brz-fs-lg-205{font-size:205px!important}
2314
- .brz-ed.brz-ed--desktop .brz-fs-lg-206{font-size:206px!important}
2315
- .brz-ed.brz-ed--desktop .brz-fs-lg-207{font-size:207px!important}
2316
- .brz-ed.brz-ed--desktop .brz-fs-lg-208{font-size:208px!important}
2317
- .brz-ed.brz-ed--desktop .brz-fs-lg-209{font-size:209px!important}
2318
- .brz-ed.brz-ed--desktop .brz-fs-lg-210{font-size:210px!important}
2319
- .brz-ed.brz-ed--desktop .brz-fs-lg-211{font-size:211px!important}
2320
- .brz-ed.brz-ed--desktop .brz-fs-lg-212{font-size:212px!important}
2321
- .brz-ed.brz-ed--desktop .brz-fs-lg-213{font-size:213px!important}
2322
- .brz-ed.brz-ed--desktop .brz-fs-lg-214{font-size:214px!important}
2323
- .brz-ed.brz-ed--desktop .brz-fs-lg-215{font-size:215px!important}
2324
- .brz-ed.brz-ed--desktop .brz-fs-lg-216{font-size:216px!important}
2325
- .brz-ed.brz-ed--desktop .brz-fs-lg-217{font-size:217px!important}
2326
- .brz-ed.brz-ed--desktop .brz-fs-lg-218{font-size:218px!important}
2327
- .brz-ed.brz-ed--desktop .brz-fs-lg-219{font-size:219px!important}
2328
- .brz-ed.brz-ed--desktop .brz-fs-lg-220{font-size:220px!important}
2329
- .brz-ed.brz-ed--desktop .brz-fs-lg-221{font-size:221px!important}
2330
- .brz-ed.brz-ed--desktop .brz-fs-lg-222{font-size:222px!important}
2331
- .brz-ed.brz-ed--desktop .brz-fs-lg-223{font-size:223px!important}
2332
- .brz-ed.brz-ed--desktop .brz-fs-lg-224{font-size:224px!important}
2333
- .brz-ed.brz-ed--desktop .brz-fs-lg-225{font-size:225px!important}
2334
- .brz-ed.brz-ed--desktop .brz-fs-lg-226{font-size:226px!important}
2335
- .brz-ed.brz-ed--desktop .brz-fs-lg-227{font-size:227px!important}
2336
- .brz-ed.brz-ed--desktop .brz-fs-lg-228{font-size:228px!important}
2337
- .brz-ed.brz-ed--desktop .brz-fs-lg-229{font-size:229px!important}
2338
- .brz-ed.brz-ed--desktop .brz-fs-lg-230{font-size:230px!important}
2339
- .brz-ed.brz-ed--desktop .brz-fs-lg-231{font-size:231px!important}
2340
- .brz-ed.brz-ed--desktop .brz-fs-lg-232{font-size:232px!important}
2341
- .brz-ed.brz-ed--desktop .brz-fs-lg-233{font-size:233px!important}
2342
- .brz-ed.brz-ed--desktop .brz-fs-lg-234{font-size:234px!important}
2343
- .brz-ed.brz-ed--desktop .brz-fs-lg-235{font-size:235px!important}
2344
- .brz-ed.brz-ed--desktop .brz-fs-lg-236{font-size:236px!important}
2345
- .brz-ed.brz-ed--desktop .brz-fs-lg-237{font-size:237px!important}
2346
- .brz-ed.brz-ed--desktop .brz-fs-lg-238{font-size:238px!important}
2347
- .brz-ed.brz-ed--desktop .brz-fs-lg-239{font-size:239px!important}
2348
- .brz-ed.brz-ed--desktop .brz-fs-lg-240{font-size:240px!important}
2349
- .brz-ed.brz-ed--desktop .brz-fs-lg-241{font-size:241px!important}
2350
- .brz-ed.brz-ed--desktop .brz-fs-lg-242{font-size:242px!important}
2351
- .brz-ed.brz-ed--desktop .brz-fs-lg-243{font-size:243px!important}
2352
- .brz-ed.brz-ed--desktop .brz-fs-lg-244{font-size:244px!important}
2353
- .brz-ed.brz-ed--desktop .brz-fs-lg-245{font-size:245px!important}
2354
- .brz-ed.brz-ed--desktop .brz-fs-lg-246{font-size:246px!important}
2355
- .brz-ed.brz-ed--desktop .brz-fs-lg-247{font-size:247px!important}
2356
- .brz-ed.brz-ed--desktop .brz-fs-lg-248{font-size:248px!important}
2357
- .brz-ed.brz-ed--desktop .brz-fs-lg-249{font-size:249px!important}
2358
- .brz-ed.brz-ed--desktop .brz-fs-lg-250{font-size:250px!important}
2359
- .brz-ed.brz-ed--desktop .brz-fs-lg-251{font-size:251px!important}
2360
- .brz-ed.brz-ed--desktop .brz-fs-lg-252{font-size:252px!important}
2361
- .brz-ed.brz-ed--desktop .brz-fs-lg-253{font-size:253px!important}
2362
- .brz-ed.brz-ed--desktop .brz-fs-lg-254{font-size:254px!important}
2363
- .brz-ed.brz-ed--desktop .brz-fs-lg-255{font-size:255px!important}
2364
- .brz-ed.brz-ed--desktop .brz-fs-lg-256{font-size:256px!important}
2365
- .brz-ed.brz-ed--desktop .brz-fs-lg-257{font-size:257px!important}
2366
- .brz-ed.brz-ed--desktop .brz-fs-lg-258{font-size:258px!important}
2367
- .brz-ed.brz-ed--desktop .brz-fs-lg-259{font-size:259px!important}
2368
- .brz-ed.brz-ed--desktop .brz-fs-lg-260{font-size:260px!important}
2369
- .brz-ed.brz-ed--desktop .brz-fs-lg-261{font-size:261px!important}
2370
- .brz-ed.brz-ed--desktop .brz-fs-lg-262{font-size:262px!important}
2371
- .brz-ed.brz-ed--desktop .brz-fs-lg-263{font-size:263px!important}
2372
- .brz-ed.brz-ed--desktop .brz-fs-lg-264{font-size:264px!important}
2373
- .brz-ed.brz-ed--desktop .brz-fs-lg-265{font-size:265px!important}
2374
- .brz-ed.brz-ed--desktop .brz-fs-lg-266{font-size:266px!important}
2375
- .brz-ed.brz-ed--desktop .brz-fs-lg-267{font-size:267px!important}
2376
- .brz-ed.brz-ed--desktop .brz-fs-lg-268{font-size:268px!important}
2377
- .brz-ed.brz-ed--desktop .brz-fs-lg-269{font-size:269px!important}
2378
- .brz-ed.brz-ed--desktop .brz-fs-lg-270{font-size:270px!important}
2379
- .brz-ed.brz-ed--desktop .brz-fs-lg-271{font-size:271px!important}
2380
- .brz-ed.brz-ed--desktop .brz-fs-lg-272{font-size:272px!important}
2381
- .brz-ed.brz-ed--desktop .brz-fs-lg-273{font-size:273px!important}
2382
- .brz-ed.brz-ed--desktop .brz-fs-lg-274{font-size:274px!important}
2383
- .brz-ed.brz-ed--desktop .brz-fs-lg-275{font-size:275px!important}
2384
- .brz-ed.brz-ed--desktop .brz-fs-lg-276{font-size:276px!important}
2385
- .brz-ed.brz-ed--desktop .brz-fs-lg-277{font-size:277px!important}
2386
- .brz-ed.brz-ed--desktop .brz-fs-lg-278{font-size:278px!important}
2387
- .brz-ed.brz-ed--desktop .brz-fs-lg-279{font-size:279px!important}
2388
- .brz-ed.brz-ed--desktop .brz-fs-lg-280{font-size:280px!important}
2389
- .brz-ed.brz-ed--desktop .brz-fs-lg-281{font-size:281px!important}
2390
- .brz-ed.brz-ed--desktop .brz-fs-lg-282{font-size:282px!important}
2391
- .brz-ed.brz-ed--desktop .brz-fs-lg-283{font-size:283px!important}
2392
- .brz-ed.brz-ed--desktop .brz-fs-lg-284{font-size:284px!important}
2393
- .brz-ed.brz-ed--desktop .brz-fs-lg-285{font-size:285px!important}
2394
- .brz-ed.brz-ed--desktop .brz-fs-lg-286{font-size:286px!important}
2395
- .brz-ed.brz-ed--desktop .brz-fs-lg-287{font-size:287px!important}
2396
- .brz-ed.brz-ed--desktop .brz-fs-lg-288{font-size:288px!important}
2397
- .brz-ed.brz-ed--desktop .brz-fs-lg-289{font-size:289px!important}
2398
- .brz-ed.brz-ed--desktop .brz-fs-lg-290{font-size:290px!important}
2399
- .brz-ed.brz-ed--desktop .brz-fs-lg-291{font-size:291px!important}
2400
- .brz-ed.brz-ed--desktop .brz-fs-lg-292{font-size:292px!important}
2401
- .brz-ed.brz-ed--desktop .brz-fs-lg-293{font-size:293px!important}
2402
- .brz-ed.brz-ed--desktop .brz-fs-lg-294{font-size:294px!important}
2403
- .brz-ed.brz-ed--desktop .brz-fs-lg-295{font-size:295px!important}
2404
- .brz-ed.brz-ed--desktop .brz-fs-lg-296{font-size:296px!important}
2405
- .brz-ed.brz-ed--desktop .brz-fs-lg-297{font-size:297px!important}
2406
- .brz-ed.brz-ed--desktop .brz-fs-lg-298{font-size:298px!important}
2407
- .brz-ed.brz-ed--desktop .brz-fs-lg-299{font-size:299px!important}
2408
- .brz-ed.brz-ed--desktop .brz-fs-lg-300{font-size:300px!important}
2409
- .brz-ed.brz-ed--desktop .brz-lh-lg-1{line-height:1em!important}
2410
- .brz-ed.brz-ed--desktop .brz-lh-lg-1_1{line-height:1.1em!important}
2411
- .brz-ed.brz-ed--desktop .brz-lh-lg-1_2{line-height:1.2em!important}
2412
- .brz-ed.brz-ed--desktop .brz-lh-lg-1_3{line-height:1.3em!important}
2413
- .brz-ed.brz-ed--desktop .brz-lh-lg-1_4{line-height:1.4em!important}
2414
- .brz-ed.brz-ed--desktop .brz-lh-lg-1_5{line-height:1.5em!important}
2415
- .brz-ed.brz-ed--desktop .brz-lh-lg-1_6{line-height:1.6em!important}
2416
- .brz-ed.brz-ed--desktop .brz-lh-lg-1_7{line-height:1.7em!important}
2417
- .brz-ed.brz-ed--desktop .brz-lh-lg-1_8{line-height:1.8em!important}
2418
- .brz-ed.brz-ed--desktop .brz-lh-lg-1_9{line-height:1.9em!important}
2419
- .brz-ed.brz-ed--desktop .brz-lh-lg-2{line-height:2em!important}
2420
- .brz-ed.brz-ed--desktop .brz-lh-lg-2_1{line-height:2.1em!important}
2421
- .brz-ed.brz-ed--desktop .brz-lh-lg-2_2{line-height:2.2em!important}
2422
- .brz-ed.brz-ed--desktop .brz-lh-lg-2_3{line-height:2.3em!important}
2423
- .brz-ed.brz-ed--desktop .brz-lh-lg-2_4{line-height:2.4em!important}
2424
- .brz-ed.brz-ed--desktop .brz-lh-lg-2_5{line-height:2.5em!important}
2425
- .brz-ed.brz-ed--desktop .brz-lh-lg-2_6{line-height:2.6em!important}
2426
- .brz-ed.brz-ed--desktop .brz-lh-lg-2_7{line-height:2.7em!important}
2427
- .brz-ed.brz-ed--desktop .brz-lh-lg-2_8{line-height:2.8em!important}
2428
- .brz-ed.brz-ed--desktop .brz-lh-lg-2_9{line-height:2.9em!important}
2429
- .brz-ed.brz-ed--desktop .brz-lh-lg-3{line-height:3em!important}
2430
- .brz-ed.brz-ed--desktop .brz-lh-lg-3_1{line-height:3.1em!important}
2431
- .brz-ed.brz-ed--desktop .brz-lh-lg-3_2{line-height:3.2em!important}
2432
- .brz-ed.brz-ed--desktop .brz-lh-lg-3_3{line-height:3.3em!important}
2433
- .brz-ed.brz-ed--desktop .brz-lh-lg-3_4{line-height:3.4em!important}
2434
- .brz-ed.brz-ed--desktop .brz-lh-lg-3_5{line-height:3.5em!important}
2435
- .brz-ed.brz-ed--desktop .brz-lh-lg-3_6{line-height:3.6em!important}
2436
- .brz-ed.brz-ed--desktop .brz-lh-lg-3_7{line-height:3.7em!important}
2437
- .brz-ed.brz-ed--desktop .brz-lh-lg-3_8{line-height:3.8em!important}
2438
- .brz-ed.brz-ed--desktop .brz-lh-lg-3_9{line-height:3.9em!important}
2439
- .brz-ed.brz-ed--desktop .brz-lh-lg-4{line-height:4em!important}
2440
- .brz-ed.brz-ed--desktop .brz-lh-lg-4_1{line-height:4.1em!important}
2441
- .brz-ed.brz-ed--desktop .brz-lh-lg-4_2{line-height:4.2em!important}
2442
- .brz-ed.brz-ed--desktop .brz-lh-lg-4_3{line-height:4.3em!important}
2443
- .brz-ed.brz-ed--desktop .brz-lh-lg-4_4{line-height:4.4em!important}
2444
- .brz-ed.brz-ed--desktop .brz-lh-lg-4_5{line-height:4.5em!important}
2445
- .brz-ed.brz-ed--desktop .brz-lh-lg-4_6{line-height:4.6em!important}
2446
- .brz-ed.brz-ed--desktop .brz-lh-lg-4_7{line-height:4.7em!important}
2447
- .brz-ed.brz-ed--desktop .brz-lh-lg-4_8{line-height:4.8em!important}
2448
- .brz-ed.brz-ed--desktop .brz-lh-lg-4_9{line-height:4.9em!important}
2449
- .brz-ed.brz-ed--desktop .brz-lh-lg-5{line-height:5em!important}
2450
- .brz-ed.brz-ed--desktop .brz-lh-lg-5_1{line-height:5.1em!important}
2451
- .brz-ed.brz-ed--desktop .brz-lh-lg-5_2{line-height:5.2em!important}
2452
- .brz-ed.brz-ed--desktop .brz-lh-lg-5_3{line-height:5.3em!important}
2453
- .brz-ed.brz-ed--desktop .brz-lh-lg-5_4{line-height:5.4em!important}
2454
- .brz-ed.brz-ed--desktop .brz-lh-lg-5_5{line-height:5.5em!important}
2455
- .brz-ed.brz-ed--desktop .brz-lh-lg-5_6{line-height:5.6em!important}
2456
- .brz-ed.brz-ed--desktop .brz-lh-lg-5_7{line-height:5.7em!important}
2457
- .brz-ed.brz-ed--desktop .brz-lh-lg-5_8{line-height:5.8em!important}
2458
- .brz-ed.brz-ed--desktop .brz-lh-lg-5_9{line-height:5.9em!important}
2459
- .brz-ed.brz-ed--desktop .brz-ls-lg-m_20{letter-spacing:-20px!important}
2460
- .brz-ed.brz-ed--desktop .brz-ls-lg-m_20_5{letter-spacing:-20.5px!important}
2461
- .brz-ed.brz-ed--desktop .brz-ls-lg-m_19{letter-spacing:-19px!important}
2462
- .brz-ed.brz-ed--desktop .brz-ls-lg-m_19_5{letter-spacing:-19.5px!important}
2463
- .brz-ed.brz-ed--desktop .brz-ls-lg-m_18{letter-spacing:-18px!important}
2464
- .brz-ed.brz-ed--desktop .brz-ls-lg-m_18_5{letter-spacing:-18.5px!important}
2465
- .brz-ed.brz-ed--desktop .brz-ls-lg-m_17{letter-spacing:-17px!important}
2466
- .brz-ed.brz-ed--desktop .brz-ls-lg-m_17_5{letter-spacing:-17.5px!important}
2467
- .brz-ed.brz-ed--desktop .brz-ls-lg-m_16{letter-spacing:-16px!important}
2468
- .brz-ed.brz-ed--desktop .brz-ls-lg-m_16_5{letter-spacing:-16.5px!important}
2469
- .brz-ed.brz-ed--desktop .brz-ls-lg-m_15{letter-spacing:-15px!important}
2470
- .brz-ed.brz-ed--desktop .brz-ls-lg-m_15_5{letter-spacing:-15.5px!important}
2471
- .brz-ed.brz-ed--desktop .brz-ls-lg-m_14{letter-spacing:-14px!important}
2472
- .brz-ed.brz-ed--desktop .brz-ls-lg-m_14_5{letter-spacing:-14.5px!important}
2473
- .brz-ed.brz-ed--desktop .brz-ls-lg-m_13{letter-spacing:-13px!important}
2474
- .brz-ed.brz-ed--desktop .brz-ls-lg-m_13_5{letter-spacing:-13.5px!important}
2475
- .brz-ed.brz-ed--desktop .brz-ls-lg-m_12{letter-spacing:-12px!important}
2476
- .brz-ed.brz-ed--desktop .brz-ls-lg-m_12_5{letter-spacing:-12.5px!important}
2477
- .brz-ed.brz-ed--desktop .brz-ls-lg-m_11{letter-spacing:-11px!important}
2478
- .brz-ed.brz-ed--desktop .brz-ls-lg-m_11_5{letter-spacing:-11.5px!important}
2479
- .brz-ed.brz-ed--desktop .brz-ls-lg-m_10{letter-spacing:-10px!important}
2480
- .brz-ed.brz-ed--desktop .brz-ls-lg-m_10_5{letter-spacing:-10.5px!important}
2481
- .brz-ed.brz-ed--desktop .brz-ls-lg-m_9{letter-spacing:-9px!important}
2482
- .brz-ed.brz-ed--desktop .brz-ls-lg-m_9_5{letter-spacing:-9.5px!important}
2483
- .brz-ed.brz-ed--desktop .brz-ls-lg-m_8{letter-spacing:-8px!important}
2484
- .brz-ed.brz-ed--desktop .brz-ls-lg-m_8_5{letter-spacing:-8.5px!important}
2485
- .brz-ed.brz-ed--desktop .brz-ls-lg-m_7{letter-spacing:-7px!important}
2486
- .brz-ed.brz-ed--desktop .brz-ls-lg-m_7_5{letter-spacing:-7.5px!important}
2487
- .brz-ed.brz-ed--desktop .brz-ls-lg-m_6{letter-spacing:-6px!important}
2488
- .brz-ed.brz-ed--desktop .brz-ls-lg-m_6_5{letter-spacing:-6.5px!important}
2489
- .brz-ed.brz-ed--desktop .brz-ls-lg-m_5{letter-spacing:-5px!important}
2490
- .brz-ed.brz-ed--desktop .brz-ls-lg-m_5_5{letter-spacing:-5.5px!important}
2491
- .brz-ed.brz-ed--desktop .brz-ls-lg-m_4{letter-spacing:-4px!important}
2492
- .brz-ed.brz-ed--desktop .brz-ls-lg-m_4_5{letter-spacing:-4.5px!important}
2493
- .brz-ed.brz-ed--desktop .brz-ls-lg-m_3{letter-spacing:-3px!important}
2494
- .brz-ed.brz-ed--desktop .brz-ls-lg-m_3_5{letter-spacing:-3.5px!important}
2495
- .brz-ed.brz-ed--desktop .brz-ls-lg-m_2{letter-spacing:-2px!important}
2496
- .brz-ed.brz-ed--desktop .brz-ls-lg-m_2_5{letter-spacing:-2.5px!important}
2497
- .brz-ed.brz-ed--desktop .brz-ls-lg-m_1{letter-spacing:-1px!important}
2498
- .brz-ed.brz-ed--desktop .brz-ls-lg-m_1_5{letter-spacing:-1.5px!important}
2499
- .brz-ed.brz-ed--desktop .brz-ls-lg-m_0{letter-spacing:0!important}
2500
- .brz-ed.brz-ed--desktop .brz-ls-lg-m_0_5{letter-spacing:-.5px!important}
2501
- .brz-ed.brz-ed--desktop .brz-ls-lg-0{letter-spacing:0!important}
2502
- .brz-ed.brz-ed--desktop .brz-ls-lg-0_5{letter-spacing:.5px!important}
2503
- .brz-ed.brz-ed--desktop .brz-ls-lg-1{letter-spacing:1px!important}
2504
- .brz-ed.brz-ed--desktop .brz-ls-lg-1_5{letter-spacing:1.5px!important}
2505
- .brz-ed.brz-ed--desktop .brz-ls-lg-2{letter-spacing:2px!important}
2506
- .brz-ed.brz-ed--desktop .brz-ls-lg-2_5{letter-spacing:2.5px!important}
2507
- .brz-ed.brz-ed--desktop .brz-ls-lg-3{letter-spacing:3px!important}
2508
- .brz-ed.brz-ed--desktop .brz-ls-lg-3_5{letter-spacing:3.5px!important}
2509
- .brz-ed.brz-ed--desktop .brz-ls-lg-4{letter-spacing:4px!important}
2510
- .brz-ed.brz-ed--desktop .brz-ls-lg-4_5{letter-spacing:4.5px!important}
2511
- .brz-ed.brz-ed--desktop .brz-ls-lg-5{letter-spacing:5px!important}
2512
- .brz-ed.brz-ed--desktop .brz-ls-lg-5_5{letter-spacing:5.5px!important}
2513
- .brz-ed.brz-ed--desktop .brz-ls-lg-6{letter-spacing:6px!important}
2514
- .brz-ed.brz-ed--desktop .brz-ls-lg-6_5{letter-spacing:6.5px!important}
2515
- .brz-ed.brz-ed--desktop .brz-ls-lg-7{letter-spacing:7px!important}
2516
- .brz-ed.brz-ed--desktop .brz-ls-lg-7_5{letter-spacing:7.5px!important}
2517
- .brz-ed.brz-ed--desktop .brz-ls-lg-8{letter-spacing:8px!important}
2518
- .brz-ed.brz-ed--desktop .brz-ls-lg-8_5{letter-spacing:8.5px!important}
2519
- .brz-ed.brz-ed--desktop .brz-ls-lg-9{letter-spacing:9px!important}
2520
- .brz-ed.brz-ed--desktop .brz-ls-lg-9_5{letter-spacing:9.5px!important}
2521
- .brz-ed.brz-ed--desktop .brz-ls-lg-10{letter-spacing:10px!important}
2522
- .brz-ed.brz-ed--desktop .brz-ls-lg-10_5{letter-spacing:10.5px!important}
2523
- .brz-ed.brz-ed--desktop .brz-ls-lg-11{letter-spacing:11px!important}
2524
- .brz-ed.brz-ed--desktop .brz-ls-lg-11_5{letter-spacing:11.5px!important}
2525
- .brz-ed.brz-ed--desktop .brz-ls-lg-12{letter-spacing:12px!important}
2526
- .brz-ed.brz-ed--desktop .brz-ls-lg-12_5{letter-spacing:12.5px!important}
2527
- .brz-ed.brz-ed--desktop .brz-ls-lg-13{letter-spacing:13px!important}
2528
- .brz-ed.brz-ed--desktop .brz-ls-lg-13_5{letter-spacing:13.5px!important}
2529
- .brz-ed.brz-ed--desktop .brz-ls-lg-14{letter-spacing:14px!important}
2530
- .brz-ed.brz-ed--desktop .brz-ls-lg-14_5{letter-spacing:14.5px!important}
2531
- .brz-ed.brz-ed--desktop .brz-ls-lg-15{letter-spacing:15px!important}
2532
- .brz-ed.brz-ed--desktop .brz-ls-lg-15_5{letter-spacing:15.5px!important}
2533
- .brz-ed.brz-ed--desktop .brz-ls-lg-16{letter-spacing:16px!important}
2534
- .brz-ed.brz-ed--desktop .brz-ls-lg-16_5{letter-spacing:16.5px!important}
2535
- .brz-ed.brz-ed--desktop .brz-ls-lg-17{letter-spacing:17px!important}
2536
- .brz-ed.brz-ed--desktop .brz-ls-lg-17_5{letter-spacing:17.5px!important}
2537
- .brz-ed.brz-ed--desktop .brz-ls-lg-18{letter-spacing:18px!important}
2538
- .brz-ed.brz-ed--desktop .brz-ls-lg-18_5{letter-spacing:18.5px!important}
2539
- .brz-ed.brz-ed--desktop .brz-ls-lg-19{letter-spacing:19px!important}
2540
- .brz-ed.brz-ed--desktop .brz-ls-lg-19_5{letter-spacing:19.5px!important}
2541
- .brz-ed.brz-ed--desktop .brz-ls-lg-20{letter-spacing:20px!important}
2542
- .brz-ed.brz-ed--desktop .brz-ls-lg-20_5{letter-spacing:20.5px!important}
2543
- .brz-ed.brz-ed--desktop .brz-fw-lg-100{font-weight:100!important}
2544
- .brz-ed.brz-ed--desktop .brz-fw-lg-200{font-weight:200!important}
2545
- .brz-ed.brz-ed--desktop .brz-fw-lg-300{font-weight:300!important}
2546
- .brz-ed.brz-ed--desktop .brz-fw-lg-400{font-weight:400!important}
2547
- .brz-ed.brz-ed--desktop .brz-fw-lg-500{font-weight:500!important}
2548
- .brz-ed.brz-ed--desktop .brz-fw-lg-600{font-weight:600!important}
2549
- .brz-ed.brz-ed--desktop .brz-fw-lg-700{font-weight:700!important}
2550
- .brz-ed.brz-ed--desktop .brz-fw-lg-800{font-weight:800!important}
2551
- .brz-ed.brz-ed--desktop .brz-fw-lg-900{font-weight:900!important}
2552
- .brz-ed.brz-ed--desktop .brz-fw-lg-1000{font-weight:1000!important}
2553
- .brz-ed.brz-ed--desktop .brz-fw-lg-1100{font-weight:1100!important}
2554
- .brz-ed.brz-ed--desktop .brz-fw-lg-1200{font-weight:1200!important}
2555
- .brz-ed.brz-ed--desktop .brz-fw-lg-1300{font-weight:1300!important}
2556
- .brz-ed.brz-ed--desktop .brz-fw-lg-1400{font-weight:1400!important}
2557
- .brz-ed.brz-ed--desktop .brz-fw-lg-1500{font-weight:1500!important}
2558
- .brz-ed.brz-ed--desktop .brz-fw-lg-1600{font-weight:1600!important}
2559
- .brz-ed.brz-ed--desktop .brz-fw-lg-1700{font-weight:1700!important}
2560
- .brz-ed.brz-ed--desktop .brz-fw-lg-1800{font-weight:1800!important}
2561
- .brz-ed.brz-ed--desktop .brz-fw-lg-1900{font-weight:1900!important}
2562
- .brz-ed.brz-ed--desktop .brz-fw-lg-2000{font-weight:2000!important}
2563
- .brz-ed.brz-ed--tablet .brz-fs-sm-6{font-size:6px!important}
2564
- .brz-ed.brz-ed--tablet .brz-fs-sm-7{font-size:7px!important}
2565
- .brz-ed.brz-ed--tablet .brz-fs-sm-8{font-size:8px!important}
2566
- .brz-ed.brz-ed--tablet .brz-fs-sm-9{font-size:9px!important}
2567
- .brz-ed.brz-ed--tablet .brz-fs-sm-10{font-size:10px!important}
2568
- .brz-ed.brz-ed--tablet .brz-fs-sm-11{font-size:11px!important}
2569
- .brz-ed.brz-ed--tablet .brz-fs-sm-12{font-size:12px!important}
2570
- .brz-ed.brz-ed--tablet .brz-fs-sm-13{font-size:13px!important}
2571
- .brz-ed.brz-ed--tablet .brz-fs-sm-14{font-size:14px!important}
2572
- .brz-ed.brz-ed--tablet .brz-fs-sm-15{font-size:15px!important}
2573
- .brz-ed.brz-ed--tablet .brz-fs-sm-16{font-size:16px!important}
2574
- .brz-ed.brz-ed--tablet .brz-fs-sm-17{font-size:17px!important}
2575
- .brz-ed.brz-ed--tablet .brz-fs-sm-18{font-size:18px!important}
2576
- .brz-ed.brz-ed--tablet .brz-fs-sm-19{font-size:19px!important}
2577
- .brz-ed.brz-ed--tablet .brz-fs-sm-20{font-size:20px!important}
2578
- .brz-ed.brz-ed--tablet .brz-fs-sm-21{font-size:21px!important}
2579
- .brz-ed.brz-ed--tablet .brz-fs-sm-22{font-size:22px!important}
2580
- .brz-ed.brz-ed--tablet .brz-fs-sm-23{font-size:23px!important}
2581
- .brz-ed.brz-ed--tablet .brz-fs-sm-24{font-size:24px!important}
2582
- .brz-ed.brz-ed--tablet .brz-fs-sm-25{font-size:25px!important}
2583
- .brz-ed.brz-ed--tablet .brz-fs-sm-26{font-size:26px!important}
2584
- .brz-ed.brz-ed--tablet .brz-fs-sm-27{font-size:27px!important}
2585
- .brz-ed.brz-ed--tablet .brz-fs-sm-28{font-size:28px!important}
2586
- .brz-ed.brz-ed--tablet .brz-fs-sm-29{font-size:29px!important}
2587
- .brz-ed.brz-ed--tablet .brz-fs-sm-30{font-size:30px!important}
2588
- .brz-ed.brz-ed--tablet .brz-fs-sm-31{font-size:31px!important}
2589
- .brz-ed.brz-ed--tablet .brz-fs-sm-32{font-size:32px!important}
2590
- .brz-ed.brz-ed--tablet .brz-fs-sm-33{font-size:33px!important}
2591
- .brz-ed.brz-ed--tablet .brz-fs-sm-34{font-size:34px!important}
2592
- .brz-ed.brz-ed--tablet .brz-fs-sm-35{font-size:35px!important}
2593
- .brz-ed.brz-ed--tablet .brz-fs-sm-36{font-size:36px!important}
2594
- .brz-ed.brz-ed--tablet .brz-fs-sm-37{font-size:37px!important}
2595
- .brz-ed.brz-ed--tablet .brz-fs-sm-38{font-size:38px!important}
2596
- .brz-ed.brz-ed--tablet .brz-fs-sm-39{font-size:39px!important}
2597
- .brz-ed.brz-ed--tablet .brz-fs-sm-40{font-size:40px!important}
2598
- .brz-ed.brz-ed--tablet .brz-fs-sm-41{font-size:41px!important}
2599
- .brz-ed.brz-ed--tablet .brz-fs-sm-42{font-size:42px!important}
2600
- .brz-ed.brz-ed--tablet .brz-fs-sm-43{font-size:43px!important}
2601
- .brz-ed.brz-ed--tablet .brz-fs-sm-44{font-size:44px!important}
2602
- .brz-ed.brz-ed--tablet .brz-fs-sm-45{font-size:45px!important}
2603
- .brz-ed.brz-ed--tablet .brz-fs-sm-46{font-size:46px!important}
2604
- .brz-ed.brz-ed--tablet .brz-fs-sm-47{font-size:47px!important}
2605
- .brz-ed.brz-ed--tablet .brz-fs-sm-48{font-size:48px!important}
2606
- .brz-ed.brz-ed--tablet .brz-fs-sm-49{font-size:49px!important}
2607
- .brz-ed.brz-ed--tablet .brz-fs-sm-50{font-size:50px!important}
2608
- .brz-ed.brz-ed--tablet .brz-fs-sm-51{font-size:51px!important}
2609
- .brz-ed.brz-ed--tablet .brz-fs-sm-52{font-size:52px!important}
2610
- .brz-ed.brz-ed--tablet .brz-fs-sm-53{font-size:53px!important}
2611
- .brz-ed.brz-ed--tablet .brz-fs-sm-54{font-size:54px!important}
2612
- .brz-ed.brz-ed--tablet .brz-fs-sm-55{font-size:55px!important}
2613
- .brz-ed.brz-ed--tablet .brz-fs-sm-56{font-size:56px!important}
2614
- .brz-ed.brz-ed--tablet .brz-fs-sm-57{font-size:57px!important}
2615
- .brz-ed.brz-ed--tablet .brz-fs-sm-58{font-size:58px!important}
2616
- .brz-ed.brz-ed--tablet .brz-fs-sm-59{font-size:59px!important}
2617
- .brz-ed.brz-ed--tablet .brz-fs-sm-60{font-size:60px!important}
2618
- .brz-ed.brz-ed--tablet .brz-fs-sm-61{font-size:61px!important}
2619
- .brz-ed.brz-ed--tablet .brz-fs-sm-62{font-size:62px!important}
2620
- .brz-ed.brz-ed--tablet .brz-fs-sm-63{font-size:63px!important}
2621
- .brz-ed.brz-ed--tablet .brz-fs-sm-64{font-size:64px!important}
2622
- .brz-ed.brz-ed--tablet .brz-fs-sm-65{font-size:65px!important}
2623
- .brz-ed.brz-ed--tablet .brz-fs-sm-66{font-size:66px!important}
2624
- .brz-ed.brz-ed--tablet .brz-fs-sm-67{font-size:67px!important}
2625
- .brz-ed.brz-ed--tablet .brz-fs-sm-68{font-size:68px!important}
2626
- .brz-ed.brz-ed--tablet .brz-fs-sm-69{font-size:69px!important}
2627
- .brz-ed.brz-ed--tablet .brz-fs-sm-70{font-size:70px!important}
2628
- .brz-ed.brz-ed--tablet .brz-fs-sm-71{font-size:71px!important}
2629
- .brz-ed.brz-ed--tablet .brz-fs-sm-72{font-size:72px!important}
2630
- .brz-ed.brz-ed--tablet .brz-fs-sm-73{font-size:73px!important}
2631
- .brz-ed.brz-ed--tablet .brz-fs-sm-74{font-size:74px!important}
2632
- .brz-ed.brz-ed--tablet .brz-fs-sm-75{font-size:75px!important}
2633
- .brz-ed.brz-ed--tablet .brz-fs-sm-76{font-size:76px!important}
2634
- .brz-ed.brz-ed--tablet .brz-fs-sm-77{font-size:77px!important}
2635
- .brz-ed.brz-ed--tablet .brz-fs-sm-78{font-size:78px!important}
2636
- .brz-ed.brz-ed--tablet .brz-fs-sm-79{font-size:79px!important}
2637
- .brz-ed.brz-ed--tablet .brz-fs-sm-80{font-size:80px!important}
2638
- .brz-ed.brz-ed--tablet .brz-fs-sm-81{font-size:81px!important}
2639
- .brz-ed.brz-ed--tablet .brz-fs-sm-82{font-size:82px!important}
2640
- .brz-ed.brz-ed--tablet .brz-fs-sm-83{font-size:83px!important}
2641
- .brz-ed.brz-ed--tablet .brz-fs-sm-84{font-size:84px!important}
2642
- .brz-ed.brz-ed--tablet .brz-fs-sm-85{font-size:85px!important}
2643
- .brz-ed.brz-ed--tablet .brz-fs-sm-86{font-size:86px!important}
2644
- .brz-ed.brz-ed--tablet .brz-fs-sm-87{font-size:87px!important}
2645
- .brz-ed.brz-ed--tablet .brz-fs-sm-88{font-size:88px!important}
2646
- .brz-ed.brz-ed--tablet .brz-fs-sm-89{font-size:89px!important}
2647
- .brz-ed.brz-ed--tablet .brz-fs-sm-90{font-size:90px!important}
2648
- .brz-ed.brz-ed--tablet .brz-fs-sm-91{font-size:91px!important}
2649
- .brz-ed.brz-ed--tablet .brz-fs-sm-92{font-size:92px!important}
2650
- .brz-ed.brz-ed--tablet .brz-fs-sm-93{font-size:93px!important}
2651
- .brz-ed.brz-ed--tablet .brz-fs-sm-94{font-size:94px!important}
2652
- .brz-ed.brz-ed--tablet .brz-fs-sm-95{font-size:95px!important}
2653
- .brz-ed.brz-ed--tablet .brz-fs-sm-96{font-size:96px!important}
2654
- .brz-ed.brz-ed--tablet .brz-fs-sm-97{font-size:97px!important}
2655
- .brz-ed.brz-ed--tablet .brz-fs-sm-98{font-size:98px!important}
2656
- .brz-ed.brz-ed--tablet .brz-fs-sm-99{font-size:99px!important}
2657
- .brz-ed.brz-ed--tablet .brz-fs-sm-100{font-size:100px!important}
2658
- .brz-ed.brz-ed--tablet .brz-fs-sm-101{font-size:101px!important}
2659
- .brz-ed.brz-ed--tablet .brz-fs-sm-102{font-size:102px!important}
2660
- .brz-ed.brz-ed--tablet .brz-fs-sm-103{font-size:103px!important}
2661
- .brz-ed.brz-ed--tablet .brz-fs-sm-104{font-size:104px!important}
2662
- .brz-ed.brz-ed--tablet .brz-fs-sm-105{font-size:105px!important}
2663
- .brz-ed.brz-ed--tablet .brz-fs-sm-106{font-size:106px!important}
2664
- .brz-ed.brz-ed--tablet .brz-fs-sm-107{font-size:107px!important}
2665
- .brz-ed.brz-ed--tablet .brz-fs-sm-108{font-size:108px!important}
2666
- .brz-ed.brz-ed--tablet .brz-fs-sm-109{font-size:109px!important}
2667
- .brz-ed.brz-ed--tablet .brz-fs-sm-110{font-size:110px!important}
2668
- .brz-ed.brz-ed--tablet .brz-fs-sm-111{font-size:111px!important}
2669
- .brz-ed.brz-ed--tablet .brz-fs-sm-112{font-size:112px!important}
2670
- .brz-ed.brz-ed--tablet .brz-fs-sm-113{font-size:113px!important}
2671
- .brz-ed.brz-ed--tablet .brz-fs-sm-114{font-size:114px!important}
2672
- .brz-ed.brz-ed--tablet .brz-fs-sm-115{font-size:115px!important}
2673
- .brz-ed.brz-ed--tablet .brz-fs-sm-116{font-size:116px!important}
2674
- .brz-ed.brz-ed--tablet .brz-fs-sm-117{font-size:117px!important}
2675
- .brz-ed.brz-ed--tablet .brz-fs-sm-118{font-size:118px!important}
2676
- .brz-ed.brz-ed--tablet .brz-fs-sm-119{font-size:119px!important}
2677
- .brz-ed.brz-ed--tablet .brz-fs-sm-120{font-size:120px!important}
2678
- .brz-ed.brz-ed--tablet .brz-fs-sm-121{font-size:121px!important}
2679
- .brz-ed.brz-ed--tablet .brz-fs-sm-122{font-size:122px!important}
2680
- .brz-ed.brz-ed--tablet .brz-fs-sm-123{font-size:123px!important}
2681
- .brz-ed.brz-ed--tablet .brz-fs-sm-124{font-size:124px!important}
2682
- .brz-ed.brz-ed--tablet .brz-fs-sm-125{font-size:125px!important}
2683
- .brz-ed.brz-ed--tablet .brz-fs-sm-126{font-size:126px!important}
2684
- .brz-ed.brz-ed--tablet .brz-fs-sm-127{font-size:127px!important}
2685
- .brz-ed.brz-ed--tablet .brz-fs-sm-128{font-size:128px!important}
2686
- .brz-ed.brz-ed--tablet .brz-fs-sm-129{font-size:129px!important}
2687
- .brz-ed.brz-ed--tablet .brz-fs-sm-130{font-size:130px!important}
2688
- .brz-ed.brz-ed--tablet .brz-fs-sm-131{font-size:131px!important}
2689
- .brz-ed.brz-ed--tablet .brz-fs-sm-132{font-size:132px!important}
2690
- .brz-ed.brz-ed--tablet .brz-fs-sm-133{font-size:133px!important}
2691
- .brz-ed.brz-ed--tablet .brz-fs-sm-134{font-size:134px!important}
2692
- .brz-ed.brz-ed--tablet .brz-fs-sm-135{font-size:135px!important}
2693
- .brz-ed.brz-ed--tablet .brz-fs-sm-136{font-size:136px!important}
2694
- .brz-ed.brz-ed--tablet .brz-fs-sm-137{font-size:137px!important}
2695
- .brz-ed.brz-ed--tablet .brz-fs-sm-138{font-size:138px!important}
2696
- .brz-ed.brz-ed--tablet .brz-fs-sm-139{font-size:139px!important}
2697
- .brz-ed.brz-ed--tablet .brz-fs-sm-140{font-size:140px!important}
2698
- .brz-ed.brz-ed--tablet .brz-fs-sm-141{font-size:141px!important}
2699
- .brz-ed.brz-ed--tablet .brz-fs-sm-142{font-size:142px!important}
2700
- .brz-ed.brz-ed--tablet .brz-fs-sm-143{font-size:143px!important}
2701
- .brz-ed.brz-ed--tablet .brz-fs-sm-144{font-size:144px!important}
2702
- .brz-ed.brz-ed--tablet .brz-fs-sm-145{font-size:145px!important}
2703
- .brz-ed.brz-ed--tablet .brz-fs-sm-146{font-size:146px!important}
2704
- .brz-ed.brz-ed--tablet .brz-fs-sm-147{font-size:147px!important}
2705
- .brz-ed.brz-ed--tablet .brz-fs-sm-148{font-size:148px!important}
2706
- .brz-ed.brz-ed--tablet .brz-fs-sm-149{font-size:149px!important}
2707
- .brz-ed.brz-ed--tablet .brz-fs-sm-150{font-size:150px!important}
2708
- .brz-ed.brz-ed--tablet .brz-fs-sm-151{font-size:151px!important}
2709
- .brz-ed.brz-ed--tablet .brz-fs-sm-152{font-size:152px!important}
2710
- .brz-ed.brz-ed--tablet .brz-fs-sm-153{font-size:153px!important}
2711
- .brz-ed.brz-ed--tablet .brz-fs-sm-154{font-size:154px!important}
2712
- .brz-ed.brz-ed--tablet .brz-fs-sm-155{font-size:155px!important}
2713
- .brz-ed.brz-ed--tablet .brz-fs-sm-156{font-size:156px!important}
2714
- .brz-ed.brz-ed--tablet .brz-fs-sm-157{font-size:157px!important}
2715
- .brz-ed.brz-ed--tablet .brz-fs-sm-158{font-size:158px!important}
2716
- .brz-ed.brz-ed--tablet .brz-fs-sm-159{font-size:159px!important}
2717
- .brz-ed.brz-ed--tablet .brz-fs-sm-160{font-size:160px!important}
2718
- .brz-ed.brz-ed--tablet .brz-fs-sm-161{font-size:161px!important}
2719
- .brz-ed.brz-ed--tablet .brz-fs-sm-162{font-size:162px!important}
2720
- .brz-ed.brz-ed--tablet .brz-fs-sm-163{font-size:163px!important}
2721
- .brz-ed.brz-ed--tablet .brz-fs-sm-164{font-size:164px!important}
2722
- .brz-ed.brz-ed--tablet .brz-fs-sm-165{font-size:165px!important}
2723
- .brz-ed.brz-ed--tablet .brz-fs-sm-166{font-size:166px!important}
2724
- .brz-ed.brz-ed--tablet .brz-fs-sm-167{font-size:167px!important}
2725
- .brz-ed.brz-ed--tablet .brz-fs-sm-168{font-size:168px!important}
2726
- .brz-ed.brz-ed--tablet .brz-fs-sm-169{font-size:169px!important}
2727
- .brz-ed.brz-ed--tablet .brz-fs-sm-170{font-size:170px!important}
2728
- .brz-ed.brz-ed--tablet .brz-fs-sm-171{font-size:171px!important}
2729
- .brz-ed.brz-ed--tablet .brz-fs-sm-172{font-size:172px!important}
2730
- .brz-ed.brz-ed--tablet .brz-fs-sm-173{font-size:173px!important}
2731
- .brz-ed.brz-ed--tablet .brz-fs-sm-174{font-size:174px!important}
2732
- .brz-ed.brz-ed--tablet .brz-fs-sm-175{font-size:175px!important}
2733
- .brz-ed.brz-ed--tablet .brz-fs-sm-176{font-size:176px!important}
2734
- .brz-ed.brz-ed--tablet .brz-fs-sm-177{font-size:177px!important}
2735
- .brz-ed.brz-ed--tablet .brz-fs-sm-178{font-size:178px!important}
2736
- .brz-ed.brz-ed--tablet .brz-fs-sm-179{font-size:179px!important}
2737
- .brz-ed.brz-ed--tablet .brz-fs-sm-180{font-size:180px!important}
2738
- .brz-ed.brz-ed--tablet .brz-fs-sm-181{font-size:181px!important}
2739
- .brz-ed.brz-ed--tablet .brz-fs-sm-182{font-size:182px!important}
2740
- .brz-ed.brz-ed--tablet .brz-fs-sm-183{font-size:183px!important}
2741
- .brz-ed.brz-ed--tablet .brz-fs-sm-184{font-size:184px!important}
2742
- .brz-ed.brz-ed--tablet .brz-fs-sm-185{font-size:185px!important}
2743
- .brz-ed.brz-ed--tablet .brz-fs-sm-186{font-size:186px!important}
2744
- .brz-ed.brz-ed--tablet .brz-fs-sm-187{font-size:187px!important}
2745
- .brz-ed.brz-ed--tablet .brz-fs-sm-188{font-size:188px!important}
2746
- .brz-ed.brz-ed--tablet .brz-fs-sm-189{font-size:189px!important}
2747
- .brz-ed.brz-ed--tablet .brz-fs-sm-190{font-size:190px!important}
2748
- .brz-ed.brz-ed--tablet .brz-fs-sm-191{font-size:191px!important}
2749
- .brz-ed.brz-ed--tablet .brz-fs-sm-192{font-size:192px!important}
2750
- .brz-ed.brz-ed--tablet .brz-fs-sm-193{font-size:193px!important}
2751
- .brz-ed.brz-ed--tablet .brz-fs-sm-194{font-size:194px!important}
2752
- .brz-ed.brz-ed--tablet .brz-fs-sm-195{font-size:195px!important}
2753
- .brz-ed.brz-ed--tablet .brz-fs-sm-196{font-size:196px!important}
2754
- .brz-ed.brz-ed--tablet .brz-fs-sm-197{font-size:197px!important}
2755
- .brz-ed.brz-ed--tablet .brz-fs-sm-198{font-size:198px!important}
2756
- .brz-ed.brz-ed--tablet .brz-fs-sm-199{font-size:199px!important}
2757
- .brz-ed.brz-ed--tablet .brz-fs-sm-200{font-size:200px!important}
2758
- .brz-ed.brz-ed--tablet .brz-fs-sm-201{font-size:201px!important}
2759
- .brz-ed.brz-ed--tablet .brz-fs-sm-202{font-size:202px!important}
2760
- .brz-ed.brz-ed--tablet .brz-fs-sm-203{font-size:203px!important}
2761
- .brz-ed.brz-ed--tablet .brz-fs-sm-204{font-size:204px!important}
2762
- .brz-ed.brz-ed--tablet .brz-fs-sm-205{font-size:205px!important}
2763
- .brz-ed.brz-ed--tablet .brz-fs-sm-206{font-size:206px!important}
2764
- .brz-ed.brz-ed--tablet .brz-fs-sm-207{font-size:207px!important}
2765
- .brz-ed.brz-ed--tablet .brz-fs-sm-208{font-size:208px!important}
2766
- .brz-ed.brz-ed--tablet .brz-fs-sm-209{font-size:209px!important}
2767
- .brz-ed.brz-ed--tablet .brz-fs-sm-210{font-size:210px!important}
2768
- .brz-ed.brz-ed--tablet .brz-fs-sm-211{font-size:211px!important}
2769
- .brz-ed.brz-ed--tablet .brz-fs-sm-212{font-size:212px!important}
2770
- .brz-ed.brz-ed--tablet .brz-fs-sm-213{font-size:213px!important}
2771
- .brz-ed.brz-ed--tablet .brz-fs-sm-214{font-size:214px!important}
2772
- .brz-ed.brz-ed--tablet .brz-fs-sm-215{font-size:215px!important}
2773
- .brz-ed.brz-ed--tablet .brz-fs-sm-216{font-size:216px!important}
2774
- .brz-ed.brz-ed--tablet .brz-fs-sm-217{font-size:217px!important}
2775
- .brz-ed.brz-ed--tablet .brz-fs-sm-218{font-size:218px!important}
2776
- .brz-ed.brz-ed--tablet .brz-fs-sm-219{font-size:219px!important}
2777
- .brz-ed.brz-ed--tablet .brz-fs-sm-220{font-size:220px!important}
2778
- .brz-ed.brz-ed--tablet .brz-fs-sm-221{font-size:221px!important}
2779
- .brz-ed.brz-ed--tablet .brz-fs-sm-222{font-size:222px!important}
2780
- .brz-ed.brz-ed--tablet .brz-fs-sm-223{font-size:223px!important}
2781
- .brz-ed.brz-ed--tablet .brz-fs-sm-224{font-size:224px!important}
2782
- .brz-ed.brz-ed--tablet .brz-fs-sm-225{font-size:225px!important}
2783
- .brz-ed.brz-ed--tablet .brz-fs-sm-226{font-size:226px!important}
2784
- .brz-ed.brz-ed--tablet .brz-fs-sm-227{font-size:227px!important}
2785
- .brz-ed.brz-ed--tablet .brz-fs-sm-228{font-size:228px!important}
2786
- .brz-ed.brz-ed--tablet .brz-fs-sm-229{font-size:229px!important}
2787
- .brz-ed.brz-ed--tablet .brz-fs-sm-230{font-size:230px!important}
2788
- .brz-ed.brz-ed--tablet .brz-fs-sm-231{font-size:231px!important}
2789
- .brz-ed.brz-ed--tablet .brz-fs-sm-232{font-size:232px!important}
2790
- .brz-ed.brz-ed--tablet .brz-fs-sm-233{font-size:233px!important}
2791
- .brz-ed.brz-ed--tablet .brz-fs-sm-234{font-size:234px!important}
2792
- .brz-ed.brz-ed--tablet .brz-fs-sm-235{font-size:235px!important}
2793
- .brz-ed.brz-ed--tablet .brz-fs-sm-236{font-size:236px!important}
2794
- .brz-ed.brz-ed--tablet .brz-fs-sm-237{font-size:237px!important}
2795
- .brz-ed.brz-ed--tablet .brz-fs-sm-238{font-size:238px!important}
2796
- .brz-ed.brz-ed--tablet .brz-fs-sm-239{font-size:239px!important}
2797
- .brz-ed.brz-ed--tablet .brz-fs-sm-240{font-size:240px!important}
2798
- .brz-ed.brz-ed--tablet .brz-fs-sm-241{font-size:241px!important}
2799
- .brz-ed.brz-ed--tablet .brz-fs-sm-242{font-size:242px!important}
2800
- .brz-ed.brz-ed--tablet .brz-fs-sm-243{font-size:243px!important}
2801
- .brz-ed.brz-ed--tablet .brz-fs-sm-244{font-size:244px!important}
2802
- .brz-ed.brz-ed--tablet .brz-fs-sm-245{font-size:245px!important}
2803
- .brz-ed.brz-ed--tablet .brz-fs-sm-246{font-size:246px!important}
2804
- .brz-ed.brz-ed--tablet .brz-fs-sm-247{font-size:247px!important}
2805
- .brz-ed.brz-ed--tablet .brz-fs-sm-248{font-size:248px!important}
2806
- .brz-ed.brz-ed--tablet .brz-fs-sm-249{font-size:249px!important}
2807
- .brz-ed.brz-ed--tablet .brz-fs-sm-250{font-size:250px!important}
2808
- .brz-ed.brz-ed--tablet .brz-fs-sm-251{font-size:251px!important}
2809
- .brz-ed.brz-ed--tablet .brz-fs-sm-252{font-size:252px!important}
2810
- .brz-ed.brz-ed--tablet .brz-fs-sm-253{font-size:253px!important}
2811
- .brz-ed.brz-ed--tablet .brz-fs-sm-254{font-size:254px!important}
2812
- .brz-ed.brz-ed--tablet .brz-fs-sm-255{font-size:255px!important}
2813
- .brz-ed.brz-ed--tablet .brz-fs-sm-256{font-size:256px!important}
2814
- .brz-ed.brz-ed--tablet .brz-fs-sm-257{font-size:257px!important}
2815
- .brz-ed.brz-ed--tablet .brz-fs-sm-258{font-size:258px!important}
2816
- .brz-ed.brz-ed--tablet .brz-fs-sm-259{font-size:259px!important}
2817
- .brz-ed.brz-ed--tablet .brz-fs-sm-260{font-size:260px!important}
2818
- .brz-ed.brz-ed--tablet .brz-fs-sm-261{font-size:261px!important}
2819
- .brz-ed.brz-ed--tablet .brz-fs-sm-262{font-size:262px!important}
2820
- .brz-ed.brz-ed--tablet .brz-fs-sm-263{font-size:263px!important}
2821
- .brz-ed.brz-ed--tablet .brz-fs-sm-264{font-size:264px!important}
2822
- .brz-ed.brz-ed--tablet .brz-fs-sm-265{font-size:265px!important}
2823
- .brz-ed.brz-ed--tablet .brz-fs-sm-266{font-size:266px!important}
2824
- .brz-ed.brz-ed--tablet .brz-fs-sm-267{font-size:267px!important}
2825
- .brz-ed.brz-ed--tablet .brz-fs-sm-268{font-size:268px!important}
2826
- .brz-ed.brz-ed--tablet .brz-fs-sm-269{font-size:269px!important}
2827
- .brz-ed.brz-ed--tablet .brz-fs-sm-270{font-size:270px!important}
2828
- .brz-ed.brz-ed--tablet .brz-fs-sm-271{font-size:271px!important}
2829
- .brz-ed.brz-ed--tablet .brz-fs-sm-272{font-size:272px!important}
2830
- .brz-ed.brz-ed--tablet .brz-fs-sm-273{font-size:273px!important}
2831
- .brz-ed.brz-ed--tablet .brz-fs-sm-274{font-size:274px!important}
2832
- .brz-ed.brz-ed--tablet .brz-fs-sm-275{font-size:275px!important}
2833
- .brz-ed.brz-ed--tablet .brz-fs-sm-276{font-size:276px!important}
2834
- .brz-ed.brz-ed--tablet .brz-fs-sm-277{font-size:277px!important}
2835
- .brz-ed.brz-ed--tablet .brz-fs-sm-278{font-size:278px!important}
2836
- .brz-ed.brz-ed--tablet .brz-fs-sm-279{font-size:279px!important}
2837
- .brz-ed.brz-ed--tablet .brz-fs-sm-280{font-size:280px!important}
2838
- .brz-ed.brz-ed--tablet .brz-fs-sm-281{font-size:281px!important}
2839
- .brz-ed.brz-ed--tablet .brz-fs-sm-282{font-size:282px!important}
2840
- .brz-ed.brz-ed--tablet .brz-fs-sm-283{font-size:283px!important}
2841
- .brz-ed.brz-ed--tablet .brz-fs-sm-284{font-size:284px!important}
2842
- .brz-ed.brz-ed--tablet .brz-fs-sm-285{font-size:285px!important}
2843
- .brz-ed.brz-ed--tablet .brz-fs-sm-286{font-size:286px!important}
2844
- .brz-ed.brz-ed--tablet .brz-fs-sm-287{font-size:287px!important}
2845
- .brz-ed.brz-ed--tablet .brz-fs-sm-288{font-size:288px!important}
2846
- .brz-ed.brz-ed--tablet .brz-fs-sm-289{font-size:289px!important}
2847
- .brz-ed.brz-ed--tablet .brz-fs-sm-290{font-size:290px!important}
2848
- .brz-ed.brz-ed--tablet .brz-fs-sm-291{font-size:291px!important}
2849
- .brz-ed.brz-ed--tablet .brz-fs-sm-292{font-size:292px!important}
2850
- .brz-ed.brz-ed--tablet .brz-fs-sm-293{font-size:293px!important}
2851
- .brz-ed.brz-ed--tablet .brz-fs-sm-294{font-size:294px!important}
2852
- .brz-ed.brz-ed--tablet .brz-fs-sm-295{font-size:295px!important}
2853
- .brz-ed.brz-ed--tablet .brz-fs-sm-296{font-size:296px!important}
2854
- .brz-ed.brz-ed--tablet .brz-fs-sm-297{font-size:297px!important}
2855
- .brz-ed.brz-ed--tablet .brz-fs-sm-298{font-size:298px!important}
2856
- .brz-ed.brz-ed--tablet .brz-fs-sm-299{font-size:299px!important}
2857
- .brz-ed.brz-ed--tablet .brz-fs-sm-300{font-size:300px!important}
2858
- .brz-ed.brz-ed--tablet .brz-lh-sm-1{line-height:1em!important}
2859
- .brz-ed.brz-ed--tablet .brz-lh-sm-1_1{line-height:1.1em!important}
2860
- .brz-ed.brz-ed--tablet .brz-lh-sm-1_2{line-height:1.2em!important}
2861
- .brz-ed.brz-ed--tablet .brz-lh-sm-1_3{line-height:1.3em!important}
2862
- .brz-ed.brz-ed--tablet .brz-lh-sm-1_4{line-height:1.4em!important}
2863
- .brz-ed.brz-ed--tablet .brz-lh-sm-1_5{line-height:1.5em!important}
2864
- .brz-ed.brz-ed--tablet .brz-lh-sm-1_6{line-height:1.6em!important}
2865
- .brz-ed.brz-ed--tablet .brz-lh-sm-1_7{line-height:1.7em!important}
2866
- .brz-ed.brz-ed--tablet .brz-lh-sm-1_8{line-height:1.8em!important}
2867
- .brz-ed.brz-ed--tablet .brz-lh-sm-1_9{line-height:1.9em!important}
2868
- .brz-ed.brz-ed--tablet .brz-lh-sm-2{line-height:2em!important}
2869
- .brz-ed.brz-ed--tablet .brz-lh-sm-2_1{line-height:2.1em!important}
2870
- .brz-ed.brz-ed--tablet .brz-lh-sm-2_2{line-height:2.2em!important}
2871
- .brz-ed.brz-ed--tablet .brz-lh-sm-2_3{line-height:2.3em!important}
2872
- .brz-ed.brz-ed--tablet .brz-lh-sm-2_4{line-height:2.4em!important}
2873
- .brz-ed.brz-ed--tablet .brz-lh-sm-2_5{line-height:2.5em!important}
2874
- .brz-ed.brz-ed--tablet .brz-lh-sm-2_6{line-height:2.6em!important}
2875
- .brz-ed.brz-ed--tablet .brz-lh-sm-2_7{line-height:2.7em!important}
2876
- .brz-ed.brz-ed--tablet .brz-lh-sm-2_8{line-height:2.8em!important}
2877
- .brz-ed.brz-ed--tablet .brz-lh-sm-2_9{line-height:2.9em!important}
2878
- .brz-ed.brz-ed--tablet .brz-lh-sm-3{line-height:3em!important}
2879
- .brz-ed.brz-ed--tablet .brz-lh-sm-3_1{line-height:3.1em!important}
2880
- .brz-ed.brz-ed--tablet .brz-lh-sm-3_2{line-height:3.2em!important}
2881
- .brz-ed.brz-ed--tablet .brz-lh-sm-3_3{line-height:3.3em!important}
2882
- .brz-ed.brz-ed--tablet .brz-lh-sm-3_4{line-height:3.4em!important}
2883
- .brz-ed.brz-ed--tablet .brz-lh-sm-3_5{line-height:3.5em!important}
2884
- .brz-ed.brz-ed--tablet .brz-lh-sm-3_6{line-height:3.6em!important}
2885
- .brz-ed.brz-ed--tablet .brz-lh-sm-3_7{line-height:3.7em!important}
2886
- .brz-ed.brz-ed--tablet .brz-lh-sm-3_8{line-height:3.8em!important}
2887
- .brz-ed.brz-ed--tablet .brz-lh-sm-3_9{line-height:3.9em!important}
2888
- .brz-ed.brz-ed--tablet .brz-lh-sm-4{line-height:4em!important}
2889
- .brz-ed.brz-ed--tablet .brz-lh-sm-4_1{line-height:4.1em!important}
2890
- .brz-ed.brz-ed--tablet .brz-lh-sm-4_2{line-height:4.2em!important}
2891
- .brz-ed.brz-ed--tablet .brz-lh-sm-4_3{line-height:4.3em!important}
2892
- .brz-ed.brz-ed--tablet .brz-lh-sm-4_4{line-height:4.4em!important}
2893
- .brz-ed.brz-ed--tablet .brz-lh-sm-4_5{line-height:4.5em!important}
2894
- .brz-ed.brz-ed--tablet .brz-lh-sm-4_6{line-height:4.6em!important}
2895
- .brz-ed.brz-ed--tablet .brz-lh-sm-4_7{line-height:4.7em!important}
2896
- .brz-ed.brz-ed--tablet .brz-lh-sm-4_8{line-height:4.8em!important}
2897
- .brz-ed.brz-ed--tablet .brz-lh-sm-4_9{line-height:4.9em!important}
2898
- .brz-ed.brz-ed--tablet .brz-lh-sm-5{line-height:5em!important}
2899
- .brz-ed.brz-ed--tablet .brz-lh-sm-5_1{line-height:5.1em!important}
2900
- .brz-ed.brz-ed--tablet .brz-lh-sm-5_2{line-height:5.2em!important}
2901
- .brz-ed.brz-ed--tablet .brz-lh-sm-5_3{line-height:5.3em!important}
2902
- .brz-ed.brz-ed--tablet .brz-lh-sm-5_4{line-height:5.4em!important}
2903
- .brz-ed.brz-ed--tablet .brz-lh-sm-5_5{line-height:5.5em!important}
2904
- .brz-ed.brz-ed--tablet .brz-lh-sm-5_6{line-height:5.6em!important}
2905
- .brz-ed.brz-ed--tablet .brz-lh-sm-5_7{line-height:5.7em!important}
2906
- .brz-ed.brz-ed--tablet .brz-lh-sm-5_8{line-height:5.8em!important}
2907
- .brz-ed.brz-ed--tablet .brz-lh-sm-5_9{line-height:5.9em!important}
2908
- .brz-ed.brz-ed--tablet .brz-fw-sm-100{font-weight:100!important}
2909
- .brz-ed.brz-ed--tablet .brz-fw-sm-200{font-weight:200!important}
2910
- .brz-ed.brz-ed--tablet .brz-fw-sm-300{font-weight:300!important}
2911
- .brz-ed.brz-ed--tablet .brz-fw-sm-400{font-weight:400!important}
2912
- .brz-ed.brz-ed--tablet .brz-fw-sm-500{font-weight:500!important}
2913
- .brz-ed.brz-ed--tablet .brz-fw-sm-600{font-weight:600!important}
2914
- .brz-ed.brz-ed--tablet .brz-fw-sm-700{font-weight:700!important}
2915
- .brz-ed.brz-ed--tablet .brz-fw-sm-800{font-weight:800!important}
2916
- .brz-ed.brz-ed--tablet .brz-fw-sm-900{font-weight:900!important}
2917
- .brz-ed.brz-ed--tablet .brz-fw-sm-1000{font-weight:1000!important}
2918
- .brz-ed.brz-ed--tablet .brz-fw-sm-1100{font-weight:1100!important}
2919
- .brz-ed.brz-ed--tablet .brz-fw-sm-1200{font-weight:1200!important}
2920
- .brz-ed.brz-ed--tablet .brz-fw-sm-1300{font-weight:1300!important}
2921
- .brz-ed.brz-ed--tablet .brz-fw-sm-1400{font-weight:1400!important}
2922
- .brz-ed.brz-ed--tablet .brz-fw-sm-1500{font-weight:1500!important}
2923
- .brz-ed.brz-ed--tablet .brz-fw-sm-1600{font-weight:1600!important}
2924
- .brz-ed.brz-ed--tablet .brz-fw-sm-1700{font-weight:1700!important}
2925
- .brz-ed.brz-ed--tablet .brz-fw-sm-1800{font-weight:1800!important}
2926
- .brz-ed.brz-ed--tablet .brz-fw-sm-1900{font-weight:1900!important}
2927
- .brz-ed.brz-ed--tablet .brz-fw-sm-2000{font-weight:2000!important}
2928
- .brz-ed.brz-ed--tablet .brz-ls-sm-m_20{letter-spacing:-20px!important}
2929
- .brz-ed.brz-ed--tablet .brz-ls-sm-m_20_5{letter-spacing:-20.5px!important}
2930
- .brz-ed.brz-ed--tablet .brz-ls-sm-m_19{letter-spacing:-19px!important}
2931
- .brz-ed.brz-ed--tablet .brz-ls-sm-m_19_5{letter-spacing:-19.5px!important}
2932
- .brz-ed.brz-ed--tablet .brz-ls-sm-m_18{letter-spacing:-18px!important}
2933
- .brz-ed.brz-ed--tablet .brz-ls-sm-m_18_5{letter-spacing:-18.5px!important}
2934
- .brz-ed.brz-ed--tablet .brz-ls-sm-m_17{letter-spacing:-17px!important}
2935
- .brz-ed.brz-ed--tablet .brz-ls-sm-m_17_5{letter-spacing:-17.5px!important}
2936
- .brz-ed.brz-ed--tablet .brz-ls-sm-m_16{letter-spacing:-16px!important}
2937
- .brz-ed.brz-ed--tablet .brz-ls-sm-m_16_5{letter-spacing:-16.5px!important}
2938
- .brz-ed.brz-ed--tablet .brz-ls-sm-m_15{letter-spacing:-15px!important}
2939
- .brz-ed.brz-ed--tablet .brz-ls-sm-m_15_5{letter-spacing:-15.5px!important}
2940
- .brz-ed.brz-ed--tablet .brz-ls-sm-m_14{letter-spacing:-14px!important}
2941
- .brz-ed.brz-ed--tablet .brz-ls-sm-m_14_5{letter-spacing:-14.5px!important}
2942
- .brz-ed.brz-ed--tablet .brz-ls-sm-m_13{letter-spacing:-13px!important}
2943
- .brz-ed.brz-ed--tablet .brz-ls-sm-m_13_5{letter-spacing:-13.5px!important}
2944
- .brz-ed.brz-ed--tablet .brz-ls-sm-m_12{letter-spacing:-12px!important}
2945
- .brz-ed.brz-ed--tablet .brz-ls-sm-m_12_5{letter-spacing:-12.5px!important}
2946
- .brz-ed.brz-ed--tablet .brz-ls-sm-m_11{letter-spacing:-11px!important}
2947
- .brz-ed.brz-ed--tablet .brz-ls-sm-m_11_5{letter-spacing:-11.5px!important}
2948
- .brz-ed.brz-ed--tablet .brz-ls-sm-m_10{letter-spacing:-10px!important}
2949
- .brz-ed.brz-ed--tablet .brz-ls-sm-m_10_5{letter-spacing:-10.5px!important}
2950
- .brz-ed.brz-ed--tablet .brz-ls-sm-m_9{letter-spacing:-9px!important}
2951
- .brz-ed.brz-ed--tablet .brz-ls-sm-m_9_5{letter-spacing:-9.5px!important}
2952
- .brz-ed.brz-ed--tablet .brz-ls-sm-m_8{letter-spacing:-8px!important}
2953
- .brz-ed.brz-ed--tablet .brz-ls-sm-m_8_5{letter-spacing:-8.5px!important}
2954
- .brz-ed.brz-ed--tablet .brz-ls-sm-m_7{letter-spacing:-7px!important}
2955
- .brz-ed.brz-ed--tablet .brz-ls-sm-m_7_5{letter-spacing:-7.5px!important}
2956
- .brz-ed.brz-ed--tablet .brz-ls-sm-m_6{letter-spacing:-6px!important}
2957
- .brz-ed.brz-ed--tablet .brz-ls-sm-m_6_5{letter-spacing:-6.5px!important}
2958
- .brz-ed.brz-ed--tablet .brz-ls-sm-m_5{letter-spacing:-5px!important}
2959
- .brz-ed.brz-ed--tablet .brz-ls-sm-m_5_5{letter-spacing:-5.5px!important}
2960
- .brz-ed.brz-ed--tablet .brz-ls-sm-m_4{letter-spacing:-4px!important}
2961
- .brz-ed.brz-ed--tablet .brz-ls-sm-m_4_5{letter-spacing:-4.5px!important}
2962
- .brz-ed.brz-ed--tablet .brz-ls-sm-m_3{letter-spacing:-3px!important}
2963
- .brz-ed.brz-ed--tablet .brz-ls-sm-m_3_5{letter-spacing:-3.5px!important}
2964
- .brz-ed.brz-ed--tablet .brz-ls-sm-m_2{letter-spacing:-2px!important}
2965
- .brz-ed.brz-ed--tablet .brz-ls-sm-m_2_5{letter-spacing:-2.5px!important}
2966
- .brz-ed.brz-ed--tablet .brz-ls-sm-m_1{letter-spacing:-1px!important}
2967
- .brz-ed.brz-ed--tablet .brz-ls-sm-m_1_5{letter-spacing:-1.5px!important}
2968
- .brz-ed.brz-ed--tablet .brz-ls-sm-m_0{letter-spacing:0!important}
2969
- .brz-ed.brz-ed--tablet .brz-ls-sm-m_0_5{letter-spacing:-.5px!important}
2970
- .brz-ed.brz-ed--tablet .brz-ls-sm-0{letter-spacing:0!important}
2971
- .brz-ed.brz-ed--tablet .brz-ls-sm-0_5{letter-spacing:.5px!important}
2972
- .brz-ed.brz-ed--tablet .brz-ls-sm-1{letter-spacing:1px!important}
2973
- .brz-ed.brz-ed--tablet .brz-ls-sm-1_5{letter-spacing:1.5px!important}
2974
- .brz-ed.brz-ed--tablet .brz-ls-sm-2{letter-spacing:2px!important}
2975
- .brz-ed.brz-ed--tablet .brz-ls-sm-2_5{letter-spacing:2.5px!important}
2976
- .brz-ed.brz-ed--tablet .brz-ls-sm-3{letter-spacing:3px!important}
2977
- .brz-ed.brz-ed--tablet .brz-ls-sm-3_5{letter-spacing:3.5px!important}
2978
- .brz-ed.brz-ed--tablet .brz-ls-sm-4{letter-spacing:4px!important}
2979
- .brz-ed.brz-ed--tablet .brz-ls-sm-4_5{letter-spacing:4.5px!important}
2980
- .brz-ed.brz-ed--tablet .brz-ls-sm-5{letter-spacing:5px!important}
2981
- .brz-ed.brz-ed--tablet .brz-ls-sm-5_5{letter-spacing:5.5px!important}
2982
- .brz-ed.brz-ed--tablet .brz-ls-sm-6{letter-spacing:6px!important}
2983
- .brz-ed.brz-ed--tablet .brz-ls-sm-6_5{letter-spacing:6.5px!important}
2984
- .brz-ed.brz-ed--tablet .brz-ls-sm-7{letter-spacing:7px!important}
2985
- .brz-ed.brz-ed--tablet .brz-ls-sm-7_5{letter-spacing:7.5px!important}
2986
- .brz-ed.brz-ed--tablet .brz-ls-sm-8{letter-spacing:8px!important}
2987
- .brz-ed.brz-ed--tablet .brz-ls-sm-8_5{letter-spacing:8.5px!important}
2988
- .brz-ed.brz-ed--tablet .brz-ls-sm-9{letter-spacing:9px!important}
2989
- .brz-ed.brz-ed--tablet .brz-ls-sm-9_5{letter-spacing:9.5px!important}
2990
- .brz-ed.brz-ed--tablet .brz-ls-sm-10{letter-spacing:10px!important}
2991
- .brz-ed.brz-ed--tablet .brz-ls-sm-10_5{letter-spacing:10.5px!important}
2992
- .brz-ed.brz-ed--tablet .brz-ls-sm-11{letter-spacing:11px!important}
2993
- .brz-ed.brz-ed--tablet .brz-ls-sm-11_5{letter-spacing:11.5px!important}
2994
- .brz-ed.brz-ed--tablet .brz-ls-sm-12{letter-spacing:12px!important}
2995
- .brz-ed.brz-ed--tablet .brz-ls-sm-12_5{letter-spacing:12.5px!important}
2996
- .brz-ed.brz-ed--tablet .brz-ls-sm-13{letter-spacing:13px!important}
2997
- .brz-ed.brz-ed--tablet .brz-ls-sm-13_5{letter-spacing:13.5px!important}
2998
- .brz-ed.brz-ed--tablet .brz-ls-sm-14{letter-spacing:14px!important}
2999
- .brz-ed.brz-ed--tablet .brz-ls-sm-14_5{letter-spacing:14.5px!important}
3000
- .brz-ed.brz-ed--tablet .brz-ls-sm-15{letter-spacing:15px!important}
3001
- .brz-ed.brz-ed--tablet .brz-ls-sm-15_5{letter-spacing:15.5px!important}
3002
- .brz-ed.brz-ed--tablet .brz-ls-sm-16{letter-spacing:16px!important}
3003
- .brz-ed.brz-ed--tablet .brz-ls-sm-16_5{letter-spacing:16.5px!important}
3004
- .brz-ed.brz-ed--tablet .brz-ls-sm-17{letter-spacing:17px!important}
3005
- .brz-ed.brz-ed--tablet .brz-ls-sm-17_5{letter-spacing:17.5px!important}
3006
- .brz-ed.brz-ed--tablet .brz-ls-sm-18{letter-spacing:18px!important}
3007
- .brz-ed.brz-ed--tablet .brz-ls-sm-18_5{letter-spacing:18.5px!important}
3008
- .brz-ed.brz-ed--tablet .brz-ls-sm-19{letter-spacing:19px!important}
3009
- .brz-ed.brz-ed--tablet .brz-ls-sm-19_5{letter-spacing:19.5px!important}
3010
- .brz-ed.brz-ed--tablet .brz-ls-sm-20{letter-spacing:20px!important}
3011
- .brz-ed.brz-ed--tablet .brz-ls-sm-20_5{letter-spacing:20.5px!important}
3012
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-6{font-size:6px!important}
3013
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-7{font-size:7px!important}
3014
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-8{font-size:8px!important}
3015
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-9{font-size:9px!important}
3016
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-10{font-size:10px!important}
3017
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-11{font-size:11px!important}
3018
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-12{font-size:12px!important}
3019
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-13{font-size:13px!important}
3020
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-14{font-size:14px!important}
3021
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-15{font-size:15px!important}
3022
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-16{font-size:16px!important}
3023
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-17{font-size:17px!important}
3024
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-18{font-size:18px!important}
3025
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-19{font-size:19px!important}
3026
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-20{font-size:20px!important}
3027
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-21{font-size:21px!important}
3028
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-22{font-size:22px!important}
3029
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-23{font-size:23px!important}
3030
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-24{font-size:24px!important}
3031
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-25{font-size:25px!important}
3032
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-26{font-size:26px!important}
3033
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-27{font-size:27px!important}
3034
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-28{font-size:28px!important}
3035
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-29{font-size:29px!important}
3036
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-30{font-size:30px!important}
3037
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-31{font-size:31px!important}
3038
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-32{font-size:32px!important}
3039
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-33{font-size:33px!important}
3040
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-34{font-size:34px!important}
3041
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-35{font-size:35px!important}
3042
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-36{font-size:36px!important}
3043
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-37{font-size:37px!important}
3044
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-38{font-size:38px!important}
3045
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-39{font-size:39px!important}
3046
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-40{font-size:40px!important}
3047
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-41{font-size:41px!important}
3048
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-42{font-size:42px!important}
3049
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-43{font-size:43px!important}
3050
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-44{font-size:44px!important}
3051
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-45{font-size:45px!important}
3052
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-46{font-size:46px!important}
3053
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-47{font-size:47px!important}
3054
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-48{font-size:48px!important}
3055
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-49{font-size:49px!important}
3056
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-50{font-size:50px!important}
3057
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-51{font-size:51px!important}
3058
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-52{font-size:52px!important}
3059
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-53{font-size:53px!important}
3060
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-54{font-size:54px!important}
3061
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-55{font-size:55px!important}
3062
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-56{font-size:56px!important}
3063
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-57{font-size:57px!important}
3064
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-58{font-size:58px!important}
3065
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-59{font-size:59px!important}
3066
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-60{font-size:60px!important}
3067
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-61{font-size:61px!important}
3068
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-62{font-size:62px!important}
3069
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-63{font-size:63px!important}
3070
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-64{font-size:64px!important}
3071
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-65{font-size:65px!important}
3072
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-66{font-size:66px!important}
3073
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-67{font-size:67px!important}
3074
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-68{font-size:68px!important}
3075
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-69{font-size:69px!important}
3076
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-70{font-size:70px!important}
3077
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-71{font-size:71px!important}
3078
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-72{font-size:72px!important}
3079
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-73{font-size:73px!important}
3080
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-74{font-size:74px!important}
3081
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-75{font-size:75px!important}
3082
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-76{font-size:76px!important}
3083
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-77{font-size:77px!important}
3084
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-78{font-size:78px!important}
3085
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-79{font-size:79px!important}
3086
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-80{font-size:80px!important}
3087
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-81{font-size:81px!important}
3088
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-82{font-size:82px!important}
3089
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-83{font-size:83px!important}
3090
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-84{font-size:84px!important}
3091
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-85{font-size:85px!important}
3092
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-86{font-size:86px!important}
3093
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-87{font-size:87px!important}
3094
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-88{font-size:88px!important}
3095
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-89{font-size:89px!important}
3096
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-90{font-size:90px!important}
3097
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-91{font-size:91px!important}
3098
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-92{font-size:92px!important}
3099
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-93{font-size:93px!important}
3100
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-94{font-size:94px!important}
3101
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-95{font-size:95px!important}
3102
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-96{font-size:96px!important}
3103
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-97{font-size:97px!important}
3104
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-98{font-size:98px!important}
3105
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-99{font-size:99px!important}
3106
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-100{font-size:100px!important}
3107
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-101{font-size:101px!important}
3108
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-102{font-size:102px!important}
3109
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-103{font-size:103px!important}
3110
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-104{font-size:104px!important}
3111
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-105{font-size:105px!important}
3112
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-106{font-size:106px!important}
3113
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-107{font-size:107px!important}
3114
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-108{font-size:108px!important}
3115
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-109{font-size:109px!important}
3116
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-110{font-size:110px!important}
3117
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-111{font-size:111px!important}
3118
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-112{font-size:112px!important}
3119
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-113{font-size:113px!important}
3120
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-114{font-size:114px!important}
3121
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-115{font-size:115px!important}
3122
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-116{font-size:116px!important}
3123
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-117{font-size:117px!important}
3124
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-118{font-size:118px!important}
3125
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-119{font-size:119px!important}
3126
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-120{font-size:120px!important}
3127
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-121{font-size:121px!important}
3128
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-122{font-size:122px!important}
3129
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-123{font-size:123px!important}
3130
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-124{font-size:124px!important}
3131
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-125{font-size:125px!important}
3132
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-126{font-size:126px!important}
3133
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-127{font-size:127px!important}
3134
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-128{font-size:128px!important}
3135
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-129{font-size:129px!important}
3136
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-130{font-size:130px!important}
3137
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-131{font-size:131px!important}
3138
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-132{font-size:132px!important}
3139
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-133{font-size:133px!important}
3140
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-134{font-size:134px!important}
3141
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-135{font-size:135px!important}
3142
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-136{font-size:136px!important}
3143
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-137{font-size:137px!important}
3144
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-138{font-size:138px!important}
3145
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-139{font-size:139px!important}
3146
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-140{font-size:140px!important}
3147
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-141{font-size:141px!important}
3148
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-142{font-size:142px!important}
3149
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-143{font-size:143px!important}
3150
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-144{font-size:144px!important}
3151
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-145{font-size:145px!important}
3152
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-146{font-size:146px!important}
3153
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-147{font-size:147px!important}
3154
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-148{font-size:148px!important}
3155
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-149{font-size:149px!important}
3156
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-150{font-size:150px!important}
3157
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-151{font-size:151px!important}
3158
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-152{font-size:152px!important}
3159
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-153{font-size:153px!important}
3160
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-154{font-size:154px!important}
3161
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-155{font-size:155px!important}
3162
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-156{font-size:156px!important}
3163
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-157{font-size:157px!important}
3164
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-158{font-size:158px!important}
3165
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-159{font-size:159px!important}
3166
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-160{font-size:160px!important}
3167
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-161{font-size:161px!important}
3168
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-162{font-size:162px!important}
3169
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-163{font-size:163px!important}
3170
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-164{font-size:164px!important}
3171
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-165{font-size:165px!important}
3172
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-166{font-size:166px!important}
3173
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-167{font-size:167px!important}
3174
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-168{font-size:168px!important}
3175
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-169{font-size:169px!important}
3176
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-170{font-size:170px!important}
3177
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-171{font-size:171px!important}
3178
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-172{font-size:172px!important}
3179
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-173{font-size:173px!important}
3180
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-174{font-size:174px!important}
3181
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-175{font-size:175px!important}
3182
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-176{font-size:176px!important}
3183
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-177{font-size:177px!important}
3184
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-178{font-size:178px!important}
3185
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-179{font-size:179px!important}
3186
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-180{font-size:180px!important}
3187
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-181{font-size:181px!important}
3188
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-182{font-size:182px!important}
3189
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-183{font-size:183px!important}
3190
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-184{font-size:184px!important}
3191
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-185{font-size:185px!important}
3192
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-186{font-size:186px!important}
3193
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-187{font-size:187px!important}
3194
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-188{font-size:188px!important}
3195
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-189{font-size:189px!important}
3196
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-190{font-size:190px!important}
3197
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-191{font-size:191px!important}
3198
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-192{font-size:192px!important}
3199
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-193{font-size:193px!important}
3200
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-194{font-size:194px!important}
3201
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-195{font-size:195px!important}
3202
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-196{font-size:196px!important}
3203
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-197{font-size:197px!important}
3204
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-198{font-size:198px!important}
3205
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-199{font-size:199px!important}
3206
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-200{font-size:200px!important}
3207
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-201{font-size:201px!important}
3208
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-202{font-size:202px!important}
3209
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-203{font-size:203px!important}
3210
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-204{font-size:204px!important}
3211
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-205{font-size:205px!important}
3212
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-206{font-size:206px!important}
3213
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-207{font-size:207px!important}
3214
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-208{font-size:208px!important}
3215
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-209{font-size:209px!important}
3216
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-210{font-size:210px!important}
3217
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-211{font-size:211px!important}
3218
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-212{font-size:212px!important}
3219
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-213{font-size:213px!important}
3220
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-214{font-size:214px!important}
3221
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-215{font-size:215px!important}
3222
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-216{font-size:216px!important}
3223
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-217{font-size:217px!important}
3224
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-218{font-size:218px!important}
3225
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-219{font-size:219px!important}
3226
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-220{font-size:220px!important}
3227
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-221{font-size:221px!important}
3228
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-222{font-size:222px!important}
3229
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-223{font-size:223px!important}
3230
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-224{font-size:224px!important}
3231
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-225{font-size:225px!important}
3232
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-226{font-size:226px!important}
3233
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-227{font-size:227px!important}
3234
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-228{font-size:228px!important}
3235
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-229{font-size:229px!important}
3236
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-230{font-size:230px!important}
3237
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-231{font-size:231px!important}
3238
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-232{font-size:232px!important}
3239
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-233{font-size:233px!important}
3240
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-234{font-size:234px!important}
3241
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-235{font-size:235px!important}
3242
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-236{font-size:236px!important}
3243
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-237{font-size:237px!important}
3244
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-238{font-size:238px!important}
3245
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-239{font-size:239px!important}
3246
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-240{font-size:240px!important}
3247
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-241{font-size:241px!important}
3248
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-242{font-size:242px!important}
3249
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-243{font-size:243px!important}
3250
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-244{font-size:244px!important}
3251
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-245{font-size:245px!important}
3252
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-246{font-size:246px!important}
3253
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-247{font-size:247px!important}
3254
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-248{font-size:248px!important}
3255
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-249{font-size:249px!important}
3256
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-250{font-size:250px!important}
3257
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-251{font-size:251px!important}
3258
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-252{font-size:252px!important}
3259
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-253{font-size:253px!important}
3260
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-254{font-size:254px!important}
3261
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-255{font-size:255px!important}
3262
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-256{font-size:256px!important}
3263
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-257{font-size:257px!important}
3264
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-258{font-size:258px!important}
3265
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-259{font-size:259px!important}
3266
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-260{font-size:260px!important}
3267
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-261{font-size:261px!important}
3268
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-262{font-size:262px!important}
3269
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-263{font-size:263px!important}
3270
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-264{font-size:264px!important}
3271
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-265{font-size:265px!important}
3272
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-266{font-size:266px!important}
3273
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-267{font-size:267px!important}
3274
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-268{font-size:268px!important}
3275
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-269{font-size:269px!important}
3276
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-270{font-size:270px!important}
3277
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-271{font-size:271px!important}
3278
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-272{font-size:272px!important}
3279
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-273{font-size:273px!important}
3280
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-274{font-size:274px!important}
3281
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-275{font-size:275px!important}
3282
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-276{font-size:276px!important}
3283
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-277{font-size:277px!important}
3284
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-278{font-size:278px!important}
3285
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-279{font-size:279px!important}
3286
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-280{font-size:280px!important}
3287
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-281{font-size:281px!important}
3288
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-282{font-size:282px!important}
3289
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-283{font-size:283px!important}
3290
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-284{font-size:284px!important}
3291
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-285{font-size:285px!important}
3292
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-286{font-size:286px!important}
3293
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-287{font-size:287px!important}
3294
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-288{font-size:288px!important}
3295
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-289{font-size:289px!important}
3296
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-290{font-size:290px!important}
3297
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-291{font-size:291px!important}
3298
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-292{font-size:292px!important}
3299
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-293{font-size:293px!important}
3300
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-294{font-size:294px!important}
3301
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-295{font-size:295px!important}
3302
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-296{font-size:296px!important}
3303
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-297{font-size:297px!important}
3304
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-298{font-size:298px!important}
3305
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-299{font-size:299px!important}
3306
- .brz-ed.brz-ed--tablet .brz-fs-sm-im-300{font-size:300px!important}
3307
- .brz-ed.brz-ed--tablet .brz-lh-sm-im-1{line-height:1em!important}
3308
- .brz-ed.brz-ed--tablet .brz-lh-sm-im-1_1{line-height:1.1em!important}
3309
- .brz-ed.brz-ed--tablet .brz-lh-sm-im-1_2{line-height:1.2em!important}
3310
- .brz-ed.brz-ed--tablet .brz-lh-sm-im-1_3{line-height:1.3em!important}
3311
- .brz-ed.brz-ed--tablet .brz-lh-sm-im-1_4{line-height:1.4em!important}
3312
- .brz-ed.brz-ed--tablet .brz-lh-sm-im-1_5{line-height:1.5em!important}
3313
- .brz-ed.brz-ed--tablet .brz-lh-sm-im-1_6{line-height:1.6em!important}
3314
- .brz-ed.brz-ed--tablet .brz-lh-sm-im-1_7{line-height:1.7em!important}
3315
- .brz-ed.brz-ed--tablet .brz-lh-sm-im-1_8{line-height:1.8em!important}
3316
- .brz-ed.brz-ed--tablet .brz-lh-sm-im-1_9{line-height:1.9em!important}
3317
- .brz-ed.brz-ed--tablet .brz-lh-sm-im-2{line-height:2em!important}
3318
- .brz-ed.brz-ed--tablet .brz-lh-sm-im-2_1{line-height:2.1em!important}
3319
- .brz-ed.brz-ed--tablet .brz-lh-sm-im-2_2{line-height:2.2em!important}
3320
- .brz-ed.brz-ed--tablet .brz-lh-sm-im-2_3{line-height:2.3em!important}
3321
- .brz-ed.brz-ed--tablet .brz-lh-sm-im-2_4{line-height:2.4em!important}
3322
- .brz-ed.brz-ed--tablet .brz-lh-sm-im-2_5{line-height:2.5em!important}
3323
- .brz-ed.brz-ed--tablet .brz-lh-sm-im-2_6{line-height:2.6em!important}
3324
- .brz-ed.brz-ed--tablet .brz-lh-sm-im-2_7{line-height:2.7em!important}
3325
- .brz-ed.brz-ed--tablet .brz-lh-sm-im-2_8{line-height:2.8em!important}
3326
- .brz-ed.brz-ed--tablet .brz-lh-sm-im-2_9{line-height:2.9em!important}
3327
- .brz-ed.brz-ed--tablet .brz-lh-sm-im-3{line-height:3em!important}
3328
- .brz-ed.brz-ed--tablet .brz-lh-sm-im-3_1{line-height:3.1em!important}
3329
- .brz-ed.brz-ed--tablet .brz-lh-sm-im-3_2{line-height:3.2em!important}
3330
- .brz-ed.brz-ed--tablet .brz-lh-sm-im-3_3{line-height:3.3em!important}
3331
- .brz-ed.brz-ed--tablet .brz-lh-sm-im-3_4{line-height:3.4em!important}
3332
- .brz-ed.brz-ed--tablet .brz-lh-sm-im-3_5{line-height:3.5em!important}
3333
- .brz-ed.brz-ed--tablet .brz-lh-sm-im-3_6{line-height:3.6em!important}
3334
- .brz-ed.brz-ed--tablet .brz-lh-sm-im-3_7{line-height:3.7em!important}
3335
- .brz-ed.brz-ed--tablet .brz-lh-sm-im-3_8{line-height:3.8em!important}
3336
- .brz-ed.brz-ed--tablet .brz-lh-sm-im-3_9{line-height:3.9em!important}
3337
- .brz-ed.brz-ed--tablet .brz-lh-sm-im-4{line-height:4em!important}
3338
- .brz-ed.brz-ed--tablet .brz-lh-sm-im-4_1{line-height:4.1em!important}
3339
- .brz-ed.brz-ed--tablet .brz-lh-sm-im-4_2{line-height:4.2em!important}
3340
- .brz-ed.brz-ed--tablet .brz-lh-sm-im-4_3{line-height:4.3em!important}
3341
- .brz-ed.brz-ed--tablet .brz-lh-sm-im-4_4{line-height:4.4em!important}
3342
- .brz-ed.brz-ed--tablet .brz-lh-sm-im-4_5{line-height:4.5em!important}
3343
- .brz-ed.brz-ed--tablet .brz-lh-sm-im-4_6{line-height:4.6em!important}
3344
- .brz-ed.brz-ed--tablet .brz-lh-sm-im-4_7{line-height:4.7em!important}
3345
- .brz-ed.brz-ed--tablet .brz-lh-sm-im-4_8{line-height:4.8em!important}
3346
- .brz-ed.brz-ed--tablet .brz-lh-sm-im-4_9{line-height:4.9em!important}
3347
- .brz-ed.brz-ed--tablet .brz-lh-sm-im-5{line-height:5em!important}
3348
- .brz-ed.brz-ed--tablet .brz-lh-sm-im-5_1{line-height:5.1em!important}
3349
- .brz-ed.brz-ed--tablet .brz-lh-sm-im-5_2{line-height:5.2em!important}
3350
- .brz-ed.brz-ed--tablet .brz-lh-sm-im-5_3{line-height:5.3em!important}
3351
- .brz-ed.brz-ed--tablet .brz-lh-sm-im-5_4{line-height:5.4em!important}
3352
- .brz-ed.brz-ed--tablet .brz-lh-sm-im-5_5{line-height:5.5em!important}
3353
- .brz-ed.brz-ed--tablet .brz-lh-sm-im-5_6{line-height:5.6em!important}
3354
- .brz-ed.brz-ed--tablet .brz-lh-sm-im-5_7{line-height:5.7em!important}
3355
- .brz-ed.brz-ed--tablet .brz-lh-sm-im-5_8{line-height:5.8em!important}
3356
- .brz-ed.brz-ed--tablet .brz-lh-sm-im-5_9{line-height:5.9em!important}
3357
- .brz-ed.brz-ed--tablet .brz-fw-sm-im-100{font-weight:100!important}
3358
- .brz-ed.brz-ed--tablet .brz-fw-sm-im-200{font-weight:200!important}
3359
- .brz-ed.brz-ed--tablet .brz-fw-sm-im-300{font-weight:300!important}
3360
- .brz-ed.brz-ed--tablet .brz-fw-sm-im-400{font-weight:400!important}
3361
- .brz-ed.brz-ed--tablet .brz-fw-sm-im-500{font-weight:500!important}
3362
- .brz-ed.brz-ed--tablet .brz-fw-sm-im-600{font-weight:600!important}
3363
- .brz-ed.brz-ed--tablet .brz-fw-sm-im-700{font-weight:700!important}
3364
- .brz-ed.brz-ed--tablet .brz-fw-sm-im-800{font-weight:800!important}
3365
- .brz-ed.brz-ed--tablet .brz-fw-sm-im-900{font-weight:900!important}
3366
- .brz-ed.brz-ed--tablet .brz-fw-sm-im-1000{font-weight:1000!important}
3367
- .brz-ed.brz-ed--tablet .brz-fw-sm-im-1100{font-weight:1100!important}
3368
- .brz-ed.brz-ed--tablet .brz-fw-sm-im-1200{font-weight:1200!important}
3369
- .brz-ed.brz-ed--tablet .brz-fw-sm-im-1300{font-weight:1300!important}
3370
- .brz-ed.brz-ed--tablet .brz-fw-sm-im-1400{font-weight:1400!important}
3371
- .brz-ed.brz-ed--tablet .brz-fw-sm-im-1500{font-weight:1500!important}
3372
- .brz-ed.brz-ed--tablet .brz-fw-sm-im-1600{font-weight:1600!important}
3373
- .brz-ed.brz-ed--tablet .brz-fw-sm-im-1700{font-weight:1700!important}
3374
- .brz-ed.brz-ed--tablet .brz-fw-sm-im-1800{font-weight:1800!important}
3375
- .brz-ed.brz-ed--tablet .brz-fw-sm-im-1900{font-weight:1900!important}
3376
- .brz-ed.brz-ed--tablet .brz-fw-sm-im-2000{font-weight:2000!important}
3377
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_20{letter-spacing:-20px!important}
3378
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_20_5{letter-spacing:-20.5px!important}
3379
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_19{letter-spacing:-19px!important}
3380
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_19_5{letter-spacing:-19.5px!important}
3381
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_18{letter-spacing:-18px!important}
3382
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_18_5{letter-spacing:-18.5px!important}
3383
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_17{letter-spacing:-17px!important}
3384
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_17_5{letter-spacing:-17.5px!important}
3385
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_16{letter-spacing:-16px!important}
3386
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_16_5{letter-spacing:-16.5px!important}
3387
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_15{letter-spacing:-15px!important}
3388
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_15_5{letter-spacing:-15.5px!important}
3389
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_14{letter-spacing:-14px!important}
3390
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_14_5{letter-spacing:-14.5px!important}
3391
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_13{letter-spacing:-13px!important}
3392
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_13_5{letter-spacing:-13.5px!important}
3393
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_12{letter-spacing:-12px!important}
3394
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_12_5{letter-spacing:-12.5px!important}
3395
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_11{letter-spacing:-11px!important}
3396
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_11_5{letter-spacing:-11.5px!important}
3397
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_10{letter-spacing:-10px!important}
3398
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_10_5{letter-spacing:-10.5px!important}
3399
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_9{letter-spacing:-9px!important}
3400
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_9_5{letter-spacing:-9.5px!important}
3401
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_8{letter-spacing:-8px!important}
3402
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_8_5{letter-spacing:-8.5px!important}
3403
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_7{letter-spacing:-7px!important}
3404
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_7_5{letter-spacing:-7.5px!important}
3405
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_6{letter-spacing:-6px!important}
3406
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_6_5{letter-spacing:-6.5px!important}
3407
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_5{letter-spacing:-5px!important}
3408
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_5_5{letter-spacing:-5.5px!important}
3409
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_4{letter-spacing:-4px!important}
3410
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_4_5{letter-spacing:-4.5px!important}
3411
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_3{letter-spacing:-3px!important}
3412
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_3_5{letter-spacing:-3.5px!important}
3413
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_2{letter-spacing:-2px!important}
3414
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_2_5{letter-spacing:-2.5px!important}
3415
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_1{letter-spacing:-1px!important}
3416
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_1_5{letter-spacing:-1.5px!important}
3417
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_0{letter-spacing:0!important}
3418
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_0_5{letter-spacing:-.5px!important}
3419
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-0{letter-spacing:0!important}
3420
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-0_5{letter-spacing:.5px!important}
3421
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-1{letter-spacing:1px!important}
3422
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-1_5{letter-spacing:1.5px!important}
3423
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-2{letter-spacing:2px!important}
3424
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-2_5{letter-spacing:2.5px!important}
3425
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-3{letter-spacing:3px!important}
3426
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-3_5{letter-spacing:3.5px!important}
3427
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-4{letter-spacing:4px!important}
3428
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-4_5{letter-spacing:4.5px!important}
3429
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-5{letter-spacing:5px!important}
3430
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-5_5{letter-spacing:5.5px!important}
3431
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-6{letter-spacing:6px!important}
3432
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-6_5{letter-spacing:6.5px!important}
3433
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-7{letter-spacing:7px!important}
3434
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-7_5{letter-spacing:7.5px!important}
3435
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-8{letter-spacing:8px!important}
3436
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-8_5{letter-spacing:8.5px!important}
3437
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-9{letter-spacing:9px!important}
3438
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-9_5{letter-spacing:9.5px!important}
3439
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-10{letter-spacing:10px!important}
3440
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-10_5{letter-spacing:10.5px!important}
3441
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-11{letter-spacing:11px!important}
3442
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-11_5{letter-spacing:11.5px!important}
3443
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-12{letter-spacing:12px!important}
3444
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-12_5{letter-spacing:12.5px!important}
3445
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-13{letter-spacing:13px!important}
3446
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-13_5{letter-spacing:13.5px!important}
3447
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-14{letter-spacing:14px!important}
3448
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-14_5{letter-spacing:14.5px!important}
3449
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-15{letter-spacing:15px!important}
3450
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-15_5{letter-spacing:15.5px!important}
3451
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-16{letter-spacing:16px!important}
3452
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-16_5{letter-spacing:16.5px!important}
3453
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-17{letter-spacing:17px!important}
3454
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-17_5{letter-spacing:17.5px!important}
3455
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-18{letter-spacing:18px!important}
3456
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-18_5{letter-spacing:18.5px!important}
3457
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-19{letter-spacing:19px!important}
3458
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-19_5{letter-spacing:19.5px!important}
3459
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-20{letter-spacing:20px!important}
3460
- .brz-ed.brz-ed--tablet .brz-ls-sm-im-20_5{letter-spacing:20.5px!important}
3461
- .brz-ed.brz-ed--mobile .brz-fs-xs-6{font-size:6px!important}
3462
- .brz-ed.brz-ed--mobile .brz-fs-xs-7{font-size:7px!important}
3463
- .brz-ed.brz-ed--mobile .brz-fs-xs-8{font-size:8px!important}
3464
- .brz-ed.brz-ed--mobile .brz-fs-xs-9{font-size:9px!important}
3465
- .brz-ed.brz-ed--mobile .brz-fs-xs-10{font-size:10px!important}
3466
- .brz-ed.brz-ed--mobile .brz-fs-xs-11{font-size:11px!important}
3467
- .brz-ed.brz-ed--mobile .brz-fs-xs-12{font-size:12px!important}
3468
- .brz-ed.brz-ed--mobile .brz-fs-xs-13{font-size:13px!important}
3469
- .brz-ed.brz-ed--mobile .brz-fs-xs-14{font-size:14px!important}
3470
- .brz-ed.brz-ed--mobile .brz-fs-xs-15{font-size:15px!important}
3471
- .brz-ed.brz-ed--mobile .brz-fs-xs-16{font-size:16px!important}
3472
- .brz-ed.brz-ed--mobile .brz-fs-xs-17{font-size:17px!important}
3473
- .brz-ed.brz-ed--mobile .brz-fs-xs-18{font-size:18px!important}
3474
- .brz-ed.brz-ed--mobile .brz-fs-xs-19{font-size:19px!important}
3475
- .brz-ed.brz-ed--mobile .brz-fs-xs-20{font-size:20px!important}
3476
- .brz-ed.brz-ed--mobile .brz-fs-xs-21{font-size:21px!important}
3477
- .brz-ed.brz-ed--mobile .brz-fs-xs-22{font-size:22px!important}
3478
- .brz-ed.brz-ed--mobile .brz-fs-xs-23{font-size:23px!important}
3479
- .brz-ed.brz-ed--mobile .brz-fs-xs-24{font-size:24px!important}
3480
- .brz-ed.brz-ed--mobile .brz-fs-xs-25{font-size:25px!important}
3481
- .brz-ed.brz-ed--mobile .brz-fs-xs-26{font-size:26px!important}
3482
- .brz-ed.brz-ed--mobile .brz-fs-xs-27{font-size:27px!important}
3483
- .brz-ed.brz-ed--mobile .brz-fs-xs-28{font-size:28px!important}
3484
- .brz-ed.brz-ed--mobile .brz-fs-xs-29{font-size:29px!important}
3485
- .brz-ed.brz-ed--mobile .brz-fs-xs-30{font-size:30px!important}
3486
- .brz-ed.brz-ed--mobile .brz-fs-xs-31{font-size:31px!important}
3487
- .brz-ed.brz-ed--mobile .brz-fs-xs-32{font-size:32px!important}
3488
- .brz-ed.brz-ed--mobile .brz-fs-xs-33{font-size:33px!important}
3489
- .brz-ed.brz-ed--mobile .brz-fs-xs-34{font-size:34px!important}
3490
- .brz-ed.brz-ed--mobile .brz-fs-xs-35{font-size:35px!important}
3491
- .brz-ed.brz-ed--mobile .brz-fs-xs-36{font-size:36px!important}
3492
- .brz-ed.brz-ed--mobile .brz-fs-xs-37{font-size:37px!important}
3493
- .brz-ed.brz-ed--mobile .brz-fs-xs-38{font-size:38px!important}
3494
- .brz-ed.brz-ed--mobile .brz-fs-xs-39{font-size:39px!important}
3495
- .brz-ed.brz-ed--mobile .brz-fs-xs-40{font-size:40px!important}
3496
- .brz-ed.brz-ed--mobile .brz-fs-xs-41{font-size:41px!important}
3497
- .brz-ed.brz-ed--mobile .brz-fs-xs-42{font-size:42px!important}
3498
- .brz-ed.brz-ed--mobile .brz-fs-xs-43{font-size:43px!important}
3499
- .brz-ed.brz-ed--mobile .brz-fs-xs-44{font-size:44px!important}
3500
- .brz-ed.brz-ed--mobile .brz-fs-xs-45{font-size:45px!important}
3501
- .brz-ed.brz-ed--mobile .brz-fs-xs-46{font-size:46px!important}
3502
- .brz-ed.brz-ed--mobile .brz-fs-xs-47{font-size:47px!important}
3503
- .brz-ed.brz-ed--mobile .brz-fs-xs-48{font-size:48px!important}
3504
- .brz-ed.brz-ed--mobile .brz-fs-xs-49{font-size:49px!important}
3505
- .brz-ed.brz-ed--mobile .brz-fs-xs-50{font-size:50px!important}
3506
- .brz-ed.brz-ed--mobile .brz-fs-xs-51{font-size:51px!important}
3507
- .brz-ed.brz-ed--mobile .brz-fs-xs-52{font-size:52px!important}
3508
- .brz-ed.brz-ed--mobile .brz-fs-xs-53{font-size:53px!important}
3509
- .brz-ed.brz-ed--mobile .brz-fs-xs-54{font-size:54px!important}
3510
- .brz-ed.brz-ed--mobile .brz-fs-xs-55{font-size:55px!important}
3511
- .brz-ed.brz-ed--mobile .brz-fs-xs-56{font-size:56px!important}
3512
- .brz-ed.brz-ed--mobile .brz-fs-xs-57{font-size:57px!important}
3513
- .brz-ed.brz-ed--mobile .brz-fs-xs-58{font-size:58px!important}
3514
- .brz-ed.brz-ed--mobile .brz-fs-xs-59{font-size:59px!important}
3515
- .brz-ed.brz-ed--mobile .brz-fs-xs-60{font-size:60px!important}
3516
- .brz-ed.brz-ed--mobile .brz-fs-xs-61{font-size:61px!important}
3517
- .brz-ed.brz-ed--mobile .brz-fs-xs-62{font-size:62px!important}
3518
- .brz-ed.brz-ed--mobile .brz-fs-xs-63{font-size:63px!important}
3519
- .brz-ed.brz-ed--mobile .brz-fs-xs-64{font-size:64px!important}
3520
- .brz-ed.brz-ed--mobile .brz-fs-xs-65{font-size:65px!important}
3521
- .brz-ed.brz-ed--mobile .brz-fs-xs-66{font-size:66px!important}
3522
- .brz-ed.brz-ed--mobile .brz-fs-xs-67{font-size:67px!important}
3523
- .brz-ed.brz-ed--mobile .brz-fs-xs-68{font-size:68px!important}
3524
- .brz-ed.brz-ed--mobile .brz-fs-xs-69{font-size:69px!important}
3525
- .brz-ed.brz-ed--mobile .brz-fs-xs-70{font-size:70px!important}
3526
- .brz-ed.brz-ed--mobile .brz-fs-xs-71{font-size:71px!important}
3527
- .brz-ed.brz-ed--mobile .brz-fs-xs-72{font-size:72px!important}
3528
- .brz-ed.brz-ed--mobile .brz-fs-xs-73{font-size:73px!important}
3529
- .brz-ed.brz-ed--mobile .brz-fs-xs-74{font-size:74px!important}
3530
- .brz-ed.brz-ed--mobile .brz-fs-xs-75{font-size:75px!important}
3531
- .brz-ed.brz-ed--mobile .brz-fs-xs-76{font-size:76px!important}
3532
- .brz-ed.brz-ed--mobile .brz-fs-xs-77{font-size:77px!important}
3533
- .brz-ed.brz-ed--mobile .brz-fs-xs-78{font-size:78px!important}
3534
- .brz-ed.brz-ed--mobile .brz-fs-xs-79{font-size:79px!important}
3535
- .brz-ed.brz-ed--mobile .brz-fs-xs-80{font-size:80px!important}
3536
- .brz-ed.brz-ed--mobile .brz-fs-xs-81{font-size:81px!important}
3537
- .brz-ed.brz-ed--mobile .brz-fs-xs-82{font-size:82px!important}
3538
- .brz-ed.brz-ed--mobile .brz-fs-xs-83{font-size:83px!important}
3539
- .brz-ed.brz-ed--mobile .brz-fs-xs-84{font-size:84px!important}
3540
- .brz-ed.brz-ed--mobile .brz-fs-xs-85{font-size:85px!important}
3541
- .brz-ed.brz-ed--mobile .brz-fs-xs-86{font-size:86px!important}
3542
- .brz-ed.brz-ed--mobile .brz-fs-xs-87{font-size:87px!important}
3543
- .brz-ed.brz-ed--mobile .brz-fs-xs-88{font-size:88px!important}
3544
- .brz-ed.brz-ed--mobile .brz-fs-xs-89{font-size:89px!important}
3545
- .brz-ed.brz-ed--mobile .brz-fs-xs-90{font-size:90px!important}
3546
- .brz-ed.brz-ed--mobile .brz-fs-xs-91{font-size:91px!important}
3547
- .brz-ed.brz-ed--mobile .brz-fs-xs-92{font-size:92px!important}
3548
- .brz-ed.brz-ed--mobile .brz-fs-xs-93{font-size:93px!important}
3549
- .brz-ed.brz-ed--mobile .brz-fs-xs-94{font-size:94px!important}
3550
- .brz-ed.brz-ed--mobile .brz-fs-xs-95{font-size:95px!important}
3551
- .brz-ed.brz-ed--mobile .brz-fs-xs-96{font-size:96px!important}
3552
- .brz-ed.brz-ed--mobile .brz-fs-xs-97{font-size:97px!important}
3553
- .brz-ed.brz-ed--mobile .brz-fs-xs-98{font-size:98px!important}
3554
- .brz-ed.brz-ed--mobile .brz-fs-xs-99{font-size:99px!important}
3555
- .brz-ed.brz-ed--mobile .brz-fs-xs-100{font-size:100px!important}
3556
- .brz-ed.brz-ed--mobile .brz-fs-xs-101{font-size:101px!important}
3557
- .brz-ed.brz-ed--mobile .brz-fs-xs-102{font-size:102px!important}
3558
- .brz-ed.brz-ed--mobile .brz-fs-xs-103{font-size:103px!important}
3559
- .brz-ed.brz-ed--mobile .brz-fs-xs-104{font-size:104px!important}
3560
- .brz-ed.brz-ed--mobile .brz-fs-xs-105{font-size:105px!important}
3561
- .brz-ed.brz-ed--mobile .brz-fs-xs-106{font-size:106px!important}
3562
- .brz-ed.brz-ed--mobile .brz-fs-xs-107{font-size:107px!important}
3563
- .brz-ed.brz-ed--mobile .brz-fs-xs-108{font-size:108px!important}
3564
- .brz-ed.brz-ed--mobile .brz-fs-xs-109{font-size:109px!important}
3565
- .brz-ed.brz-ed--mobile .brz-fs-xs-110{font-size:110px!important}
3566
- .brz-ed.brz-ed--mobile .brz-fs-xs-111{font-size:111px!important}
3567
- .brz-ed.brz-ed--mobile .brz-fs-xs-112{font-size:112px!important}
3568
- .brz-ed.brz-ed--mobile .brz-fs-xs-113{font-size:113px!important}
3569
- .brz-ed.brz-ed--mobile .brz-fs-xs-114{font-size:114px!important}
3570
- .brz-ed.brz-ed--mobile .brz-fs-xs-115{font-size:115px!important}
3571
- .brz-ed.brz-ed--mobile .brz-fs-xs-116{font-size:116px!important}
3572
- .brz-ed.brz-ed--mobile .brz-fs-xs-117{font-size:117px!important}
3573
- .brz-ed.brz-ed--mobile .brz-fs-xs-118{font-size:118px!important}
3574
- .brz-ed.brz-ed--mobile .brz-fs-xs-119{font-size:119px!important}
3575
- .brz-ed.brz-ed--mobile .brz-fs-xs-120{font-size:120px!important}
3576
- .brz-ed.brz-ed--mobile .brz-fs-xs-121{font-size:121px!important}
3577
- .brz-ed.brz-ed--mobile .brz-fs-xs-122{font-size:122px!important}
3578
- .brz-ed.brz-ed--mobile .brz-fs-xs-123{font-size:123px!important}
3579
- .brz-ed.brz-ed--mobile .brz-fs-xs-124{font-size:124px!important}
3580
- .brz-ed.brz-ed--mobile .brz-fs-xs-125{font-size:125px!important}
3581
- .brz-ed.brz-ed--mobile .brz-fs-xs-126{font-size:126px!important}
3582
- .brz-ed.brz-ed--mobile .brz-fs-xs-127{font-size:127px!important}
3583
- .brz-ed.brz-ed--mobile .brz-fs-xs-128{font-size:128px!important}
3584
- .brz-ed.brz-ed--mobile .brz-fs-xs-129{font-size:129px!important}
3585
- .brz-ed.brz-ed--mobile .brz-fs-xs-130{font-size:130px!important}
3586
- .brz-ed.brz-ed--mobile .brz-fs-xs-131{font-size:131px!important}
3587
- .brz-ed.brz-ed--mobile .brz-fs-xs-132{font-size:132px!important}
3588
- .brz-ed.brz-ed--mobile .brz-fs-xs-133{font-size:133px!important}
3589
- .brz-ed.brz-ed--mobile .brz-fs-xs-134{font-size:134px!important}
3590
- .brz-ed.brz-ed--mobile .brz-fs-xs-135{font-size:135px!important}
3591
- .brz-ed.brz-ed--mobile .brz-fs-xs-136{font-size:136px!important}
3592
- .brz-ed.brz-ed--mobile .brz-fs-xs-137{font-size:137px!important}
3593
- .brz-ed.brz-ed--mobile .brz-fs-xs-138{font-size:138px!important}
3594
- .brz-ed.brz-ed--mobile .brz-fs-xs-139{font-size:139px!important}
3595
- .brz-ed.brz-ed--mobile .brz-fs-xs-140{font-size:140px!important}
3596
- .brz-ed.brz-ed--mobile .brz-fs-xs-141{font-size:141px!important}
3597
- .brz-ed.brz-ed--mobile .brz-fs-xs-142{font-size:142px!important}
3598
- .brz-ed.brz-ed--mobile .brz-fs-xs-143{font-size:143px!important}
3599
- .brz-ed.brz-ed--mobile .brz-fs-xs-144{font-size:144px!important}
3600
- .brz-ed.brz-ed--mobile .brz-fs-xs-145{font-size:145px!important}
3601
- .brz-ed.brz-ed--mobile .brz-fs-xs-146{font-size:146px!important}
3602
- .brz-ed.brz-ed--mobile .brz-fs-xs-147{font-size:147px!important}
3603
- .brz-ed.brz-ed--mobile .brz-fs-xs-148{font-size:148px!important}
3604
- .brz-ed.brz-ed--mobile .brz-fs-xs-149{font-size:149px!important}
3605
- .brz-ed.brz-ed--mobile .brz-fs-xs-150{font-size:150px!important}
3606
- .brz-ed.brz-ed--mobile .brz-fs-xs-151{font-size:151px!important}
3607
- .brz-ed.brz-ed--mobile .brz-fs-xs-152{font-size:152px!important}
3608
- .brz-ed.brz-ed--mobile .brz-fs-xs-153{font-size:153px!important}
3609
- .brz-ed.brz-ed--mobile .brz-fs-xs-154{font-size:154px!important}
3610
- .brz-ed.brz-ed--mobile .brz-fs-xs-155{font-size:155px!important}
3611
- .brz-ed.brz-ed--mobile .brz-fs-xs-156{font-size:156px!important}
3612
- .brz-ed.brz-ed--mobile .brz-fs-xs-157{font-size:157px!important}
3613
- .brz-ed.brz-ed--mobile .brz-fs-xs-158{font-size:158px!important}
3614
- .brz-ed.brz-ed--mobile .brz-fs-xs-159{font-size:159px!important}
3615
- .brz-ed.brz-ed--mobile .brz-fs-xs-160{font-size:160px!important}
3616
- .brz-ed.brz-ed--mobile .brz-fs-xs-161{font-size:161px!important}
3617
- .brz-ed.brz-ed--mobile .brz-fs-xs-162{font-size:162px!important}
3618
- .brz-ed.brz-ed--mobile .brz-fs-xs-163{font-size:163px!important}
3619
- .brz-ed.brz-ed--mobile .brz-fs-xs-164{font-size:164px!important}
3620
- .brz-ed.brz-ed--mobile .brz-fs-xs-165{font-size:165px!important}
3621
- .brz-ed.brz-ed--mobile .brz-fs-xs-166{font-size:166px!important}
3622
- .brz-ed.brz-ed--mobile .brz-fs-xs-167{font-size:167px!important}
3623
- .brz-ed.brz-ed--mobile .brz-fs-xs-168{font-size:168px!important}
3624
- .brz-ed.brz-ed--mobile .brz-fs-xs-169{font-size:169px!important}
3625
- .brz-ed.brz-ed--mobile .brz-fs-xs-170{font-size:170px!important}
3626
- .brz-ed.brz-ed--mobile .brz-fs-xs-171{font-size:171px!important}
3627
- .brz-ed.brz-ed--mobile .brz-fs-xs-172{font-size:172px!important}
3628
- .brz-ed.brz-ed--mobile .brz-fs-xs-173{font-size:173px!important}
3629
- .brz-ed.brz-ed--mobile .brz-fs-xs-174{font-size:174px!important}
3630
- .brz-ed.brz-ed--mobile .brz-fs-xs-175{font-size:175px!important}
3631
- .brz-ed.brz-ed--mobile .brz-fs-xs-176{font-size:176px!important}
3632
- .brz-ed.brz-ed--mobile .brz-fs-xs-177{font-size:177px!important}
3633
- .brz-ed.brz-ed--mobile .brz-fs-xs-178{font-size:178px!important}
3634
- .brz-ed.brz-ed--mobile .brz-fs-xs-179{font-size:179px!important}
3635
- .brz-ed.brz-ed--mobile .brz-fs-xs-180{font-size:180px!important}
3636
- .brz-ed.brz-ed--mobile .brz-fs-xs-181{font-size:181px!important}
3637
- .brz-ed.brz-ed--mobile .brz-fs-xs-182{font-size:182px!important}
3638
- .brz-ed.brz-ed--mobile .brz-fs-xs-183{font-size:183px!important}
3639
- .brz-ed.brz-ed--mobile .brz-fs-xs-184{font-size:184px!important}
3640
- .brz-ed.brz-ed--mobile .brz-fs-xs-185{font-size:185px!important}
3641
- .brz-ed.brz-ed--mobile .brz-fs-xs-186{font-size:186px!important}
3642
- .brz-ed.brz-ed--mobile .brz-fs-xs-187{font-size:187px!important}
3643
- .brz-ed.brz-ed--mobile .brz-fs-xs-188{font-size:188px!important}
3644
- .brz-ed.brz-ed--mobile .brz-fs-xs-189{font-size:189px!important}
3645
- .brz-ed.brz-ed--mobile .brz-fs-xs-190{font-size:190px!important}
3646
- .brz-ed.brz-ed--mobile .brz-fs-xs-191{font-size:191px!important}
3647
- .brz-ed.brz-ed--mobile .brz-fs-xs-192{font-size:192px!important}
3648
- .brz-ed.brz-ed--mobile .brz-fs-xs-193{font-size:193px!important}
3649
- .brz-ed.brz-ed--mobile .brz-fs-xs-194{font-size:194px!important}
3650
- .brz-ed.brz-ed--mobile .brz-fs-xs-195{font-size:195px!important}
3651
- .brz-ed.brz-ed--mobile .brz-fs-xs-196{font-size:196px!important}
3652
- .brz-ed.brz-ed--mobile .brz-fs-xs-197{font-size:197px!important}
3653
- .brz-ed.brz-ed--mobile .brz-fs-xs-198{font-size:198px!important}
3654
- .brz-ed.brz-ed--mobile .brz-fs-xs-199{font-size:199px!important}
3655
- .brz-ed.brz-ed--mobile .brz-fs-xs-200{font-size:200px!important}
3656
- .brz-ed.brz-ed--mobile .brz-fs-xs-201{font-size:201px!important}
3657
- .brz-ed.brz-ed--mobile .brz-fs-xs-202{font-size:202px!important}
3658
- .brz-ed.brz-ed--mobile .brz-fs-xs-203{font-size:203px!important}
3659
- .brz-ed.brz-ed--mobile .brz-fs-xs-204{font-size:204px!important}
3660
- .brz-ed.brz-ed--mobile .brz-fs-xs-205{font-size:205px!important}
3661
- .brz-ed.brz-ed--mobile .brz-fs-xs-206{font-size:206px!important}
3662
- .brz-ed.brz-ed--mobile .brz-fs-xs-207{font-size:207px!important}
3663
- .brz-ed.brz-ed--mobile .brz-fs-xs-208{font-size:208px!important}
3664
- .brz-ed.brz-ed--mobile .brz-fs-xs-209{font-size:209px!important}
3665
- .brz-ed.brz-ed--mobile .brz-fs-xs-210{font-size:210px!important}
3666
- .brz-ed.brz-ed--mobile .brz-fs-xs-211{font-size:211px!important}
3667
- .brz-ed.brz-ed--mobile .brz-fs-xs-212{font-size:212px!important}
3668
- .brz-ed.brz-ed--mobile .brz-fs-xs-213{font-size:213px!important}
3669
- .brz-ed.brz-ed--mobile .brz-fs-xs-214{font-size:214px!important}
3670
- .brz-ed.brz-ed--mobile .brz-fs-xs-215{font-size:215px!important}
3671
- .brz-ed.brz-ed--mobile .brz-fs-xs-216{font-size:216px!important}
3672
- .brz-ed.brz-ed--mobile .brz-fs-xs-217{font-size:217px!important}
3673
- .brz-ed.brz-ed--mobile .brz-fs-xs-218{font-size:218px!important}
3674
- .brz-ed.brz-ed--mobile .brz-fs-xs-219{font-size:219px!important}
3675
- .brz-ed.brz-ed--mobile .brz-fs-xs-220{font-size:220px!important}
3676
- .brz-ed.brz-ed--mobile .brz-fs-xs-221{font-size:221px!important}
3677
- .brz-ed.brz-ed--mobile .brz-fs-xs-222{font-size:222px!important}
3678
- .brz-ed.brz-ed--mobile .brz-fs-xs-223{font-size:223px!important}
3679
- .brz-ed.brz-ed--mobile .brz-fs-xs-224{font-size:224px!important}
3680
- .brz-ed.brz-ed--mobile .brz-fs-xs-225{font-size:225px!important}
3681
- .brz-ed.brz-ed--mobile .brz-fs-xs-226{font-size:226px!important}
3682
- .brz-ed.brz-ed--mobile .brz-fs-xs-227{font-size:227px!important}
3683
- .brz-ed.brz-ed--mobile .brz-fs-xs-228{font-size:228px!important}
3684
- .brz-ed.brz-ed--mobile .brz-fs-xs-229{font-size:229px!important}
3685
- .brz-ed.brz-ed--mobile .brz-fs-xs-230{font-size:230px!important}
3686
- .brz-ed.brz-ed--mobile .brz-fs-xs-231{font-size:231px!important}
3687
- .brz-ed.brz-ed--mobile .brz-fs-xs-232{font-size:232px!important}
3688
- .brz-ed.brz-ed--mobile .brz-fs-xs-233{font-size:233px!important}
3689
- .brz-ed.brz-ed--mobile .brz-fs-xs-234{font-size:234px!important}
3690
- .brz-ed.brz-ed--mobile .brz-fs-xs-235{font-size:235px!important}
3691
- .brz-ed.brz-ed--mobile .brz-fs-xs-236{font-size:236px!important}
3692
- .brz-ed.brz-ed--mobile .brz-fs-xs-237{font-size:237px!important}
3693
- .brz-ed.brz-ed--mobile .brz-fs-xs-238{font-size:238px!important}
3694
- .brz-ed.brz-ed--mobile .brz-fs-xs-239{font-size:239px!important}
3695
- .brz-ed.brz-ed--mobile .brz-fs-xs-240{font-size:240px!important}
3696
- .brz-ed.brz-ed--mobile .brz-fs-xs-241{font-size:241px!important}
3697
- .brz-ed.brz-ed--mobile .brz-fs-xs-242{font-size:242px!important}
3698
- .brz-ed.brz-ed--mobile .brz-fs-xs-243{font-size:243px!important}
3699
- .brz-ed.brz-ed--mobile .brz-fs-xs-244{font-size:244px!important}
3700
- .brz-ed.brz-ed--mobile .brz-fs-xs-245{font-size:245px!important}
3701
- .brz-ed.brz-ed--mobile .brz-fs-xs-246{font-size:246px!important}
3702
- .brz-ed.brz-ed--mobile .brz-fs-xs-247{font-size:247px!important}
3703
- .brz-ed.brz-ed--mobile .brz-fs-xs-248{font-size:248px!important}
3704
- .brz-ed.brz-ed--mobile .brz-fs-xs-249{font-size:249px!important}
3705
- .brz-ed.brz-ed--mobile .brz-fs-xs-250{font-size:250px!important}
3706
- .brz-ed.brz-ed--mobile .brz-fs-xs-251{font-size:251px!important}
3707
- .brz-ed.brz-ed--mobile .brz-fs-xs-252{font-size:252px!important}
3708
- .brz-ed.brz-ed--mobile .brz-fs-xs-253{font-size:253px!important}
3709
- .brz-ed.brz-ed--mobile .brz-fs-xs-254{font-size:254px!important}
3710
- .brz-ed.brz-ed--mobile .brz-fs-xs-255{font-size:255px!important}
3711
- .brz-ed.brz-ed--mobile .brz-fs-xs-256{font-size:256px!important}
3712
- .brz-ed.brz-ed--mobile .brz-fs-xs-257{font-size:257px!important}
3713
- .brz-ed.brz-ed--mobile .brz-fs-xs-258{font-size:258px!important}
3714
- .brz-ed.brz-ed--mobile .brz-fs-xs-259{font-size:259px!important}
3715
- .brz-ed.brz-ed--mobile .brz-fs-xs-260{font-size:260px!important}
3716
- .brz-ed.brz-ed--mobile .brz-fs-xs-261{font-size:261px!important}
3717
- .brz-ed.brz-ed--mobile .brz-fs-xs-262{font-size:262px!important}
3718
- .brz-ed.brz-ed--mobile .brz-fs-xs-263{font-size:263px!important}
3719
- .brz-ed.brz-ed--mobile .brz-fs-xs-264{font-size:264px!important}
3720
- .brz-ed.brz-ed--mobile .brz-fs-xs-265{font-size:265px!important}
3721
- .brz-ed.brz-ed--mobile .brz-fs-xs-266{font-size:266px!important}
3722
- .brz-ed.brz-ed--mobile .brz-fs-xs-267{font-size:267px!important}
3723
- .brz-ed.brz-ed--mobile .brz-fs-xs-268{font-size:268px!important}
3724
- .brz-ed.brz-ed--mobile .brz-fs-xs-269{font-size:269px!important}
3725
- .brz-ed.brz-ed--mobile .brz-fs-xs-270{font-size:270px!important}
3726
- .brz-ed.brz-ed--mobile .brz-fs-xs-271{font-size:271px!important}
3727
- .brz-ed.brz-ed--mobile .brz-fs-xs-272{font-size:272px!important}
3728
- .brz-ed.brz-ed--mobile .brz-fs-xs-273{font-size:273px!important}
3729
- .brz-ed.brz-ed--mobile .brz-fs-xs-274{font-size:274px!important}
3730
- .brz-ed.brz-ed--mobile .brz-fs-xs-275{font-size:275px!important}
3731
- .brz-ed.brz-ed--mobile .brz-fs-xs-276{font-size:276px!important}
3732
- .brz-ed.brz-ed--mobile .brz-fs-xs-277{font-size:277px!important}
3733
- .brz-ed.brz-ed--mobile .brz-fs-xs-278{font-size:278px!important}
3734
- .brz-ed.brz-ed--mobile .brz-fs-xs-279{font-size:279px!important}
3735
- .brz-ed.brz-ed--mobile .brz-fs-xs-280{font-size:280px!important}
3736
- .brz-ed.brz-ed--mobile .brz-fs-xs-281{font-size:281px!important}
3737
- .brz-ed.brz-ed--mobile .brz-fs-xs-282{font-size:282px!important}
3738
- .brz-ed.brz-ed--mobile .brz-fs-xs-283{font-size:283px!important}
3739
- .brz-ed.brz-ed--mobile .brz-fs-xs-284{font-size:284px!important}
3740
- .brz-ed.brz-ed--mobile .brz-fs-xs-285{font-size:285px!important}
3741
- .brz-ed.brz-ed--mobile .brz-fs-xs-286{font-size:286px!important}
3742
- .brz-ed.brz-ed--mobile .brz-fs-xs-287{font-size:287px!important}
3743
- .brz-ed.brz-ed--mobile .brz-fs-xs-288{font-size:288px!important}
3744
- .brz-ed.brz-ed--mobile .brz-fs-xs-289{font-size:289px!important}
3745
- .brz-ed.brz-ed--mobile .brz-fs-xs-290{font-size:290px!important}
3746
- .brz-ed.brz-ed--mobile .brz-fs-xs-291{font-size:291px!important}
3747
- .brz-ed.brz-ed--mobile .brz-fs-xs-292{font-size:292px!important}
3748
- .brz-ed.brz-ed--mobile .brz-fs-xs-293{font-size:293px!important}
3749
- .brz-ed.brz-ed--mobile .brz-fs-xs-294{font-size:294px!important}
3750
- .brz-ed.brz-ed--mobile .brz-fs-xs-295{font-size:295px!important}
3751
- .brz-ed.brz-ed--mobile .brz-fs-xs-296{font-size:296px!important}
3752
- .brz-ed.brz-ed--mobile .brz-fs-xs-297{font-size:297px!important}
3753
- .brz-ed.brz-ed--mobile .brz-fs-xs-298{font-size:298px!important}
3754
- .brz-ed.brz-ed--mobile .brz-fs-xs-299{font-size:299px!important}
3755
- .brz-ed.brz-ed--mobile .brz-fs-xs-300{font-size:300px!important}
3756
- .brz-ed.brz-ed--mobile .brz-lh-xs-1{line-height:1em!important}
3757
- .brz-ed.brz-ed--mobile .brz-lh-xs-1_1{line-height:1.1em!important}
3758
- .brz-ed.brz-ed--mobile .brz-lh-xs-1_2{line-height:1.2em!important}
3759
- .brz-ed.brz-ed--mobile .brz-lh-xs-1_3{line-height:1.3em!important}
3760
- .brz-ed.brz-ed--mobile .brz-lh-xs-1_4{line-height:1.4em!important}
3761
- .brz-ed.brz-ed--mobile .brz-lh-xs-1_5{line-height:1.5em!important}
3762
- .brz-ed.brz-ed--mobile .brz-lh-xs-1_6{line-height:1.6em!important}
3763
- .brz-ed.brz-ed--mobile .brz-lh-xs-1_7{line-height:1.7em!important}
3764
- .brz-ed.brz-ed--mobile .brz-lh-xs-1_8{line-height:1.8em!important}
3765
- .brz-ed.brz-ed--mobile .brz-lh-xs-1_9{line-height:1.9em!important}
3766
- .brz-ed.brz-ed--mobile .brz-lh-xs-2{line-height:2em!important}
3767
- .brz-ed.brz-ed--mobile .brz-lh-xs-2_1{line-height:2.1em!important}
3768
- .brz-ed.brz-ed--mobile .brz-lh-xs-2_2{line-height:2.2em!important}
3769
- .brz-ed.brz-ed--mobile .brz-lh-xs-2_3{line-height:2.3em!important}
3770
- .brz-ed.brz-ed--mobile .brz-lh-xs-2_4{line-height:2.4em!important}
3771
- .brz-ed.brz-ed--mobile .brz-lh-xs-2_5{line-height:2.5em!important}
3772
- .brz-ed.brz-ed--mobile .brz-lh-xs-2_6{line-height:2.6em!important}
3773
- .brz-ed.brz-ed--mobile .brz-lh-xs-2_7{line-height:2.7em!important}
3774
- .brz-ed.brz-ed--mobile .brz-lh-xs-2_8{line-height:2.8em!important}
3775
- .brz-ed.brz-ed--mobile .brz-lh-xs-2_9{line-height:2.9em!important}
3776
- .brz-ed.brz-ed--mobile .brz-lh-xs-3{line-height:3em!important}
3777
- .brz-ed.brz-ed--mobile .brz-lh-xs-3_1{line-height:3.1em!important}
3778
- .brz-ed.brz-ed--mobile .brz-lh-xs-3_2{line-height:3.2em!important}
3779
- .brz-ed.brz-ed--mobile .brz-lh-xs-3_3{line-height:3.3em!important}
3780
- .brz-ed.brz-ed--mobile .brz-lh-xs-3_4{line-height:3.4em!important}
3781
- .brz-ed.brz-ed--mobile .brz-lh-xs-3_5{line-height:3.5em!important}
3782
- .brz-ed.brz-ed--mobile .brz-lh-xs-3_6{line-height:3.6em!important}
3783
- .brz-ed.brz-ed--mobile .brz-lh-xs-3_7{line-height:3.7em!important}
3784
- .brz-ed.brz-ed--mobile .brz-lh-xs-3_8{line-height:3.8em!important}
3785
- .brz-ed.brz-ed--mobile .brz-lh-xs-3_9{line-height:3.9em!important}
3786
- .brz-ed.brz-ed--mobile .brz-lh-xs-4{line-height:4em!important}
3787
- .brz-ed.brz-ed--mobile .brz-lh-xs-4_1{line-height:4.1em!important}
3788
- .brz-ed.brz-ed--mobile .brz-lh-xs-4_2{line-height:4.2em!important}
3789
- .brz-ed.brz-ed--mobile .brz-lh-xs-4_3{line-height:4.3em!important}
3790
- .brz-ed.brz-ed--mobile .brz-lh-xs-4_4{line-height:4.4em!important}
3791
- .brz-ed.brz-ed--mobile .brz-lh-xs-4_5{line-height:4.5em!important}
3792
- .brz-ed.brz-ed--mobile .brz-lh-xs-4_6{line-height:4.6em!important}
3793
- .brz-ed.brz-ed--mobile .brz-lh-xs-4_7{line-height:4.7em!important}
3794
- .brz-ed.brz-ed--mobile .brz-lh-xs-4_8{line-height:4.8em!important}
3795
- .brz-ed.brz-ed--mobile .brz-lh-xs-4_9{line-height:4.9em!important}
3796
- .brz-ed.brz-ed--mobile .brz-lh-xs-5{line-height:5em!important}
3797
- .brz-ed.brz-ed--mobile .brz-lh-xs-5_1{line-height:5.1em!important}
3798
- .brz-ed.brz-ed--mobile .brz-lh-xs-5_2{line-height:5.2em!important}
3799
- .brz-ed.brz-ed--mobile .brz-lh-xs-5_3{line-height:5.3em!important}
3800
- .brz-ed.brz-ed--mobile .brz-lh-xs-5_4{line-height:5.4em!important}
3801
- .brz-ed.brz-ed--mobile .brz-lh-xs-5_5{line-height:5.5em!important}
3802
- .brz-ed.brz-ed--mobile .brz-lh-xs-5_6{line-height:5.6em!important}
3803
- .brz-ed.brz-ed--mobile .brz-lh-xs-5_7{line-height:5.7em!important}
3804
- .brz-ed.brz-ed--mobile .brz-lh-xs-5_8{line-height:5.8em!important}
3805
- .brz-ed.brz-ed--mobile .brz-lh-xs-5_9{line-height:5.9em!important}
3806
- .brz-ed.brz-ed--mobile .brz-fw-xs-100{font-weight:100!important}
3807
- .brz-ed.brz-ed--mobile .brz-fw-xs-200{font-weight:200!important}
3808
- .brz-ed.brz-ed--mobile .brz-fw-xs-300{font-weight:300!important}
3809
- .brz-ed.brz-ed--mobile .brz-fw-xs-400{font-weight:400!important}
3810
- .brz-ed.brz-ed--mobile .brz-fw-xs-500{font-weight:500!important}
3811
- .brz-ed.brz-ed--mobile .brz-fw-xs-600{font-weight:600!important}
3812
- .brz-ed.brz-ed--mobile .brz-fw-xs-700{font-weight:700!important}
3813
- .brz-ed.brz-ed--mobile .brz-fw-xs-800{font-weight:800!important}
3814
- .brz-ed.brz-ed--mobile .brz-fw-xs-900{font-weight:900!important}
3815
- .brz-ed.brz-ed--mobile .brz-fw-xs-1000{font-weight:1000!important}
3816
- .brz-ed.brz-ed--mobile .brz-fw-xs-1100{font-weight:1100!important}
3817
- .brz-ed.brz-ed--mobile .brz-fw-xs-1200{font-weight:1200!important}
3818
- .brz-ed.brz-ed--mobile .brz-fw-xs-1300{font-weight:1300!important}
3819
- .brz-ed.brz-ed--mobile .brz-fw-xs-1400{font-weight:1400!important}
3820
- .brz-ed.brz-ed--mobile .brz-fw-xs-1500{font-weight:1500!important}
3821
- .brz-ed.brz-ed--mobile .brz-fw-xs-1600{font-weight:1600!important}
3822
- .brz-ed.brz-ed--mobile .brz-fw-xs-1700{font-weight:1700!important}
3823
- .brz-ed.brz-ed--mobile .brz-fw-xs-1800{font-weight:1800!important}
3824
- .brz-ed.brz-ed--mobile .brz-fw-xs-1900{font-weight:1900!important}
3825
- .brz-ed.brz-ed--mobile .brz-fw-xs-2000{font-weight:2000!important}
3826
- .brz-ed.brz-ed--mobile .brz-ls-xs-m_20{letter-spacing:-20px!important}
3827
- .brz-ed.brz-ed--mobile .brz-ls-xs-m_20_5{letter-spacing:-20.5px!important}
3828
- .brz-ed.brz-ed--mobile .brz-ls-xs-m_19{letter-spacing:-19px!important}
3829
- .brz-ed.brz-ed--mobile .brz-ls-xs-m_19_5{letter-spacing:-19.5px!important}
3830
- .brz-ed.brz-ed--mobile .brz-ls-xs-m_18{letter-spacing:-18px!important}
3831
- .brz-ed.brz-ed--mobile .brz-ls-xs-m_18_5{letter-spacing:-18.5px!important}
3832
- .brz-ed.brz-ed--mobile .brz-ls-xs-m_17{letter-spacing:-17px!important}
3833
- .brz-ed.brz-ed--mobile .brz-ls-xs-m_17_5{letter-spacing:-17.5px!important}
3834
- .brz-ed.brz-ed--mobile .brz-ls-xs-m_16{letter-spacing:-16px!important}
3835
- .brz-ed.brz-ed--mobile .brz-ls-xs-m_16_5{letter-spacing:-16.5px!important}
3836
- .brz-ed.brz-ed--mobile .brz-ls-xs-m_15{letter-spacing:-15px!important}
3837
- .brz-ed.brz-ed--mobile .brz-ls-xs-m_15_5{letter-spacing:-15.5px!important}
3838
- .brz-ed.brz-ed--mobile .brz-ls-xs-m_14{letter-spacing:-14px!important}
3839
- .brz-ed.brz-ed--mobile .brz-ls-xs-m_14_5{letter-spacing:-14.5px!important}
3840
- .brz-ed.brz-ed--mobile .brz-ls-xs-m_13{letter-spacing:-13px!important}
3841
- .brz-ed.brz-ed--mobile .brz-ls-xs-m_13_5{letter-spacing:-13.5px!important}
3842
- .brz-ed.brz-ed--mobile .brz-ls-xs-m_12{letter-spacing:-12px!important}
3843
- .brz-ed.brz-ed--mobile .brz-ls-xs-m_12_5{letter-spacing:-12.5px!important}
3844
- .brz-ed.brz-ed--mobile .brz-ls-xs-m_11{letter-spacing:-11px!important}
3845
- .brz-ed.brz-ed--mobile .brz-ls-xs-m_11_5{letter-spacing:-11.5px!important}
3846
- .brz-ed.brz-ed--mobile .brz-ls-xs-m_10{letter-spacing:-10px!important}
3847
- .brz-ed.brz-ed--mobile .brz-ls-xs-m_10_5{letter-spacing:-10.5px!important}
3848
- .brz-ed.brz-ed--mobile .brz-ls-xs-m_9{letter-spacing:-9px!important}
3849
- .brz-ed.brz-ed--mobile .brz-ls-xs-m_9_5{letter-spacing:-9.5px!important}
3850
- .brz-ed.brz-ed--mobile .brz-ls-xs-m_8{letter-spacing:-8px!important}
3851
- .brz-ed.brz-ed--mobile .brz-ls-xs-m_8_5{letter-spacing:-8.5px!important}
3852
- .brz-ed.brz-ed--mobile .brz-ls-xs-m_7{letter-spacing:-7px!important}
3853
- .brz-ed.brz-ed--mobile .brz-ls-xs-m_7_5{letter-spacing:-7.5px!important}
3854
- .brz-ed.brz-ed--mobile .brz-ls-xs-m_6{letter-spacing:-6px!important}
3855
- .brz-ed.brz-ed--mobile .brz-ls-xs-m_6_5{letter-spacing:-6.5px!important}
3856
- .brz-ed.brz-ed--mobile .brz-ls-xs-m_5{letter-spacing:-5px!important}
3857
- .brz-ed.brz-ed--mobile .brz-ls-xs-m_5_5{letter-spacing:-5.5px!important}
3858
- .brz-ed.brz-ed--mobile .brz-ls-xs-m_4{letter-spacing:-4px!important}
3859
- .brz-ed.brz-ed--mobile .brz-ls-xs-m_4_5{letter-spacing:-4.5px!important}
3860
- .brz-ed.brz-ed--mobile .brz-ls-xs-m_3{letter-spacing:-3px!important}
3861
- .brz-ed.brz-ed--mobile .brz-ls-xs-m_3_5{letter-spacing:-3.5px!important}
3862
- .brz-ed.brz-ed--mobile .brz-ls-xs-m_2{letter-spacing:-2px!important}
3863
- .brz-ed.brz-ed--mobile .brz-ls-xs-m_2_5{letter-spacing:-2.5px!important}
3864
- .brz-ed.brz-ed--mobile .brz-ls-xs-m_1{letter-spacing:-1px!important}
3865
- .brz-ed.brz-ed--mobile .brz-ls-xs-m_1_5{letter-spacing:-1.5px!important}
3866
- .brz-ed.brz-ed--mobile .brz-ls-xs-m_0{letter-spacing:0!important}
3867
- .brz-ed.brz-ed--mobile .brz-ls-xs-m_0_5{letter-spacing:-.5px!important}
3868
- .brz-ed.brz-ed--mobile .brz-ls-xs-0{letter-spacing:0!important}
3869
- .brz-ed.brz-ed--mobile .brz-ls-xs-0_5{letter-spacing:.5px!important}
3870
- .brz-ed.brz-ed--mobile .brz-ls-xs-1{letter-spacing:1px!important}
3871
- .brz-ed.brz-ed--mobile .brz-ls-xs-1_5{letter-spacing:1.5px!important}
3872
- .brz-ed.brz-ed--mobile .brz-ls-xs-2{letter-spacing:2px!important}
3873
- .brz-ed.brz-ed--mobile .brz-ls-xs-2_5{letter-spacing:2.5px!important}
3874
- .brz-ed.brz-ed--mobile .brz-ls-xs-3{letter-spacing:3px!important}
3875
- .brz-ed.brz-ed--mobile .brz-ls-xs-3_5{letter-spacing:3.5px!important}
3876
- .brz-ed.brz-ed--mobile .brz-ls-xs-4{letter-spacing:4px!important}
3877
- .brz-ed.brz-ed--mobile .brz-ls-xs-4_5{letter-spacing:4.5px!important}
3878
- .brz-ed.brz-ed--mobile .brz-ls-xs-5{letter-spacing:5px!important}
3879
- .brz-ed.brz-ed--mobile .brz-ls-xs-5_5{letter-spacing:5.5px!important}
3880
- .brz-ed.brz-ed--mobile .brz-ls-xs-6{letter-spacing:6px!important}
3881
- .brz-ed.brz-ed--mobile .brz-ls-xs-6_5{letter-spacing:6.5px!important}
3882
- .brz-ed.brz-ed--mobile .brz-ls-xs-7{letter-spacing:7px!important}
3883
- .brz-ed.brz-ed--mobile .brz-ls-xs-7_5{letter-spacing:7.5px!important}
3884
- .brz-ed.brz-ed--mobile .brz-ls-xs-8{letter-spacing:8px!important}
3885
- .brz-ed.brz-ed--mobile .brz-ls-xs-8_5{letter-spacing:8.5px!important}
3886
- .brz-ed.brz-ed--mobile .brz-ls-xs-9{letter-spacing:9px!important}
3887
- .brz-ed.brz-ed--mobile .brz-ls-xs-9_5{letter-spacing:9.5px!important}
3888
- .brz-ed.brz-ed--mobile .brz-ls-xs-10{letter-spacing:10px!important}
3889
- .brz-ed.brz-ed--mobile .brz-ls-xs-10_5{letter-spacing:10.5px!important}
3890
- .brz-ed.brz-ed--mobile .brz-ls-xs-11{letter-spacing:11px!important}
3891
- .brz-ed.brz-ed--mobile .brz-ls-xs-11_5{letter-spacing:11.5px!important}
3892
- .brz-ed.brz-ed--mobile .brz-ls-xs-12{letter-spacing:12px!important}
3893
- .brz-ed.brz-ed--mobile .brz-ls-xs-12_5{letter-spacing:12.5px!important}
3894
- .brz-ed.brz-ed--mobile .brz-ls-xs-13{letter-spacing:13px!important}
3895
- .brz-ed.brz-ed--mobile .brz-ls-xs-13_5{letter-spacing:13.5px!important}
3896
- .brz-ed.brz-ed--mobile .brz-ls-xs-14{letter-spacing:14px!important}
3897
- .brz-ed.brz-ed--mobile .brz-ls-xs-14_5{letter-spacing:14.5px!important}
3898
- .brz-ed.brz-ed--mobile .brz-ls-xs-15{letter-spacing:15px!important}
3899
- .brz-ed.brz-ed--mobile .brz-ls-xs-15_5{letter-spacing:15.5px!important}
3900
- .brz-ed.brz-ed--mobile .brz-ls-xs-16{letter-spacing:16px!important}
3901
- .brz-ed.brz-ed--mobile .brz-ls-xs-16_5{letter-spacing:16.5px!important}
3902
- .brz-ed.brz-ed--mobile .brz-ls-xs-17{letter-spacing:17px!important}
3903
- .brz-ed.brz-ed--mobile .brz-ls-xs-17_5{letter-spacing:17.5px!important}
3904
- .brz-ed.brz-ed--mobile .brz-ls-xs-18{letter-spacing:18px!important}
3905
- .brz-ed.brz-ed--mobile .brz-ls-xs-18_5{letter-spacing:18.5px!important}
3906
- .brz-ed.brz-ed--mobile .brz-ls-xs-19{letter-spacing:19px!important}
3907
- .brz-ed.brz-ed--mobile .brz-ls-xs-19_5{letter-spacing:19.5px!important}
3908
- .brz-ed.brz-ed--mobile .brz-ls-xs-20{letter-spacing:20px!important}
3909
- .brz-ed.brz-ed--mobile .brz-ls-xs-20_5{letter-spacing:20.5px!important}
3910
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-6{font-size:6px!important}
3911
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-7{font-size:7px!important}
3912
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-8{font-size:8px!important}
3913
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-9{font-size:9px!important}
3914
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-10{font-size:10px!important}
3915
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-11{font-size:11px!important}
3916
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-12{font-size:12px!important}
3917
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-13{font-size:13px!important}
3918
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-14{font-size:14px!important}
3919
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-15{font-size:15px!important}
3920
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-16{font-size:16px!important}
3921
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-17{font-size:17px!important}
3922
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-18{font-size:18px!important}
3923
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-19{font-size:19px!important}
3924
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-20{font-size:20px!important}
3925
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-21{font-size:21px!important}
3926
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-22{font-size:22px!important}
3927
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-23{font-size:23px!important}
3928
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-24{font-size:24px!important}
3929
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-25{font-size:25px!important}
3930
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-26{font-size:26px!important}
3931
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-27{font-size:27px!important}
3932
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-28{font-size:28px!important}
3933
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-29{font-size:29px!important}
3934
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-30{font-size:30px!important}
3935
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-31{font-size:31px!important}
3936
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-32{font-size:32px!important}
3937
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-33{font-size:33px!important}
3938
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-34{font-size:34px!important}
3939
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-35{font-size:35px!important}
3940
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-36{font-size:36px!important}
3941
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-37{font-size:37px!important}
3942
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-38{font-size:38px!important}
3943
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-39{font-size:39px!important}
3944
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-40{font-size:40px!important}
3945
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-41{font-size:41px!important}
3946
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-42{font-size:42px!important}
3947
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-43{font-size:43px!important}
3948
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-44{font-size:44px!important}
3949
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-45{font-size:45px!important}
3950
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-46{font-size:46px!important}
3951
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-47{font-size:47px!important}
3952
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-48{font-size:48px!important}
3953
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-49{font-size:49px!important}
3954
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-50{font-size:50px!important}
3955
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-51{font-size:51px!important}
3956
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-52{font-size:52px!important}
3957
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-53{font-size:53px!important}
3958
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-54{font-size:54px!important}
3959
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-55{font-size:55px!important}
3960
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-56{font-size:56px!important}
3961
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-57{font-size:57px!important}
3962
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-58{font-size:58px!important}
3963
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-59{font-size:59px!important}
3964
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-60{font-size:60px!important}
3965
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-61{font-size:61px!important}
3966
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-62{font-size:62px!important}
3967
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-63{font-size:63px!important}
3968
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-64{font-size:64px!important}
3969
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-65{font-size:65px!important}
3970
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-66{font-size:66px!important}
3971
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-67{font-size:67px!important}
3972
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-68{font-size:68px!important}
3973
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-69{font-size:69px!important}
3974
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-70{font-size:70px!important}
3975
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-71{font-size:71px!important}
3976
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-72{font-size:72px!important}
3977
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-73{font-size:73px!important}
3978
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-74{font-size:74px!important}
3979
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-75{font-size:75px!important}
3980
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-76{font-size:76px!important}
3981
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-77{font-size:77px!important}
3982
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-78{font-size:78px!important}
3983
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-79{font-size:79px!important}
3984
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-80{font-size:80px!important}
3985
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-81{font-size:81px!important}
3986
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-82{font-size:82px!important}
3987
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-83{font-size:83px!important}
3988
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-84{font-size:84px!important}
3989
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-85{font-size:85px!important}
3990
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-86{font-size:86px!important}
3991
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-87{font-size:87px!important}
3992
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-88{font-size:88px!important}
3993
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-89{font-size:89px!important}
3994
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-90{font-size:90px!important}
3995
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-91{font-size:91px!important}
3996
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-92{font-size:92px!important}
3997
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-93{font-size:93px!important}
3998
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-94{font-size:94px!important}
3999
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-95{font-size:95px!important}
4000
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-96{font-size:96px!important}
4001
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-97{font-size:97px!important}
4002
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-98{font-size:98px!important}
4003
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-99{font-size:99px!important}
4004
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-100{font-size:100px!important}
4005
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-101{font-size:101px!important}
4006
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-102{font-size:102px!important}
4007
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-103{font-size:103px!important}
4008
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-104{font-size:104px!important}
4009
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-105{font-size:105px!important}
4010
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-106{font-size:106px!important}
4011
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-107{font-size:107px!important}
4012
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-108{font-size:108px!important}
4013
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-109{font-size:109px!important}
4014
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-110{font-size:110px!important}
4015
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-111{font-size:111px!important}
4016
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-112{font-size:112px!important}
4017
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-113{font-size:113px!important}
4018
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-114{font-size:114px!important}
4019
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-115{font-size:115px!important}
4020
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-116{font-size:116px!important}
4021
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-117{font-size:117px!important}
4022
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-118{font-size:118px!important}
4023
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-119{font-size:119px!important}
4024
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-120{font-size:120px!important}
4025
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-121{font-size:121px!important}
4026
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-122{font-size:122px!important}
4027
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-123{font-size:123px!important}
4028
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-124{font-size:124px!important}
4029
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-125{font-size:125px!important}
4030
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-126{font-size:126px!important}
4031
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-127{font-size:127px!important}
4032
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-128{font-size:128px!important}
4033
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-129{font-size:129px!important}
4034
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-130{font-size:130px!important}
4035
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-131{font-size:131px!important}
4036
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-132{font-size:132px!important}
4037
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-133{font-size:133px!important}
4038
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-134{font-size:134px!important}
4039
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-135{font-size:135px!important}
4040
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-136{font-size:136px!important}
4041
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-137{font-size:137px!important}
4042
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-138{font-size:138px!important}
4043
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-139{font-size:139px!important}
4044
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-140{font-size:140px!important}
4045
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-141{font-size:141px!important}
4046
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-142{font-size:142px!important}
4047
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-143{font-size:143px!important}
4048
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-144{font-size:144px!important}
4049
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-145{font-size:145px!important}
4050
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-146{font-size:146px!important}
4051
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-147{font-size:147px!important}
4052
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-148{font-size:148px!important}
4053
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-149{font-size:149px!important}
4054
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-150{font-size:150px!important}
4055
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-151{font-size:151px!important}
4056
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-152{font-size:152px!important}
4057
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-153{font-size:153px!important}
4058
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-154{font-size:154px!important}
4059
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-155{font-size:155px!important}
4060
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-156{font-size:156px!important}
4061
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-157{font-size:157px!important}
4062
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-158{font-size:158px!important}
4063
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-159{font-size:159px!important}
4064
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-160{font-size:160px!important}
4065
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-161{font-size:161px!important}
4066
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-162{font-size:162px!important}
4067
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-163{font-size:163px!important}
4068
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-164{font-size:164px!important}
4069
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-165{font-size:165px!important}
4070
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-166{font-size:166px!important}
4071
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-167{font-size:167px!important}
4072
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-168{font-size:168px!important}
4073
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-169{font-size:169px!important}
4074
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-170{font-size:170px!important}
4075
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-171{font-size:171px!important}
4076
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-172{font-size:172px!important}
4077
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-173{font-size:173px!important}
4078
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-174{font-size:174px!important}
4079
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-175{font-size:175px!important}
4080
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-176{font-size:176px!important}
4081
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-177{font-size:177px!important}
4082
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-178{font-size:178px!important}
4083
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-179{font-size:179px!important}
4084
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-180{font-size:180px!important}
4085
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-181{font-size:181px!important}
4086
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-182{font-size:182px!important}
4087
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-183{font-size:183px!important}
4088
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-184{font-size:184px!important}
4089
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-185{font-size:185px!important}
4090
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-186{font-size:186px!important}
4091
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-187{font-size:187px!important}
4092
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-188{font-size:188px!important}
4093
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-189{font-size:189px!important}
4094
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-190{font-size:190px!important}
4095
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-191{font-size:191px!important}
4096
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-192{font-size:192px!important}
4097
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-193{font-size:193px!important}
4098
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-194{font-size:194px!important}
4099
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-195{font-size:195px!important}
4100
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-196{font-size:196px!important}
4101
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-197{font-size:197px!important}
4102
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-198{font-size:198px!important}
4103
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-199{font-size:199px!important}
4104
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-200{font-size:200px!important}
4105
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-201{font-size:201px!important}
4106
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-202{font-size:202px!important}
4107
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-203{font-size:203px!important}
4108
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-204{font-size:204px!important}
4109
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-205{font-size:205px!important}
4110
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-206{font-size:206px!important}
4111
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-207{font-size:207px!important}
4112
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-208{font-size:208px!important}
4113
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-209{font-size:209px!important}
4114
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-210{font-size:210px!important}
4115
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-211{font-size:211px!important}
4116
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-212{font-size:212px!important}
4117
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-213{font-size:213px!important}
4118
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-214{font-size:214px!important}
4119
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-215{font-size:215px!important}
4120
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-216{font-size:216px!important}
4121
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-217{font-size:217px!important}
4122
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-218{font-size:218px!important}
4123
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-219{font-size:219px!important}
4124
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-220{font-size:220px!important}
4125
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-221{font-size:221px!important}
4126
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-222{font-size:222px!important}
4127
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-223{font-size:223px!important}
4128
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-224{font-size:224px!important}
4129
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-225{font-size:225px!important}
4130
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-226{font-size:226px!important}
4131
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-227{font-size:227px!important}
4132
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-228{font-size:228px!important}
4133
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-229{font-size:229px!important}
4134
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-230{font-size:230px!important}
4135
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-231{font-size:231px!important}
4136
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-232{font-size:232px!important}
4137
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-233{font-size:233px!important}
4138
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-234{font-size:234px!important}
4139
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-235{font-size:235px!important}
4140
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-236{font-size:236px!important}
4141
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-237{font-size:237px!important}
4142
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-238{font-size:238px!important}
4143
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-239{font-size:239px!important}
4144
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-240{font-size:240px!important}
4145
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-241{font-size:241px!important}
4146
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-242{font-size:242px!important}
4147
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-243{font-size:243px!important}
4148
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-244{font-size:244px!important}
4149
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-245{font-size:245px!important}
4150
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-246{font-size:246px!important}
4151
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-247{font-size:247px!important}
4152
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-248{font-size:248px!important}
4153
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-249{font-size:249px!important}
4154
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-250{font-size:250px!important}
4155
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-251{font-size:251px!important}
4156
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-252{font-size:252px!important}
4157
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-253{font-size:253px!important}
4158
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-254{font-size:254px!important}
4159
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-255{font-size:255px!important}
4160
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-256{font-size:256px!important}
4161
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-257{font-size:257px!important}
4162
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-258{font-size:258px!important}
4163
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-259{font-size:259px!important}
4164
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-260{font-size:260px!important}
4165
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-261{font-size:261px!important}
4166
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-262{font-size:262px!important}
4167
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-263{font-size:263px!important}
4168
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-264{font-size:264px!important}
4169
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-265{font-size:265px!important}
4170
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-266{font-size:266px!important}
4171
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-267{font-size:267px!important}
4172
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-268{font-size:268px!important}
4173
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-269{font-size:269px!important}
4174
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-270{font-size:270px!important}
4175
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-271{font-size:271px!important}
4176
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-272{font-size:272px!important}
4177
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-273{font-size:273px!important}
4178
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-274{font-size:274px!important}
4179
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-275{font-size:275px!important}
4180
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-276{font-size:276px!important}
4181
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-277{font-size:277px!important}
4182
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-278{font-size:278px!important}
4183
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-279{font-size:279px!important}
4184
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-280{font-size:280px!important}
4185
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-281{font-size:281px!important}
4186
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-282{font-size:282px!important}
4187
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-283{font-size:283px!important}
4188
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-284{font-size:284px!important}
4189
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-285{font-size:285px!important}
4190
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-286{font-size:286px!important}
4191
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-287{font-size:287px!important}
4192
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-288{font-size:288px!important}
4193
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-289{font-size:289px!important}
4194
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-290{font-size:290px!important}
4195
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-291{font-size:291px!important}
4196
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-292{font-size:292px!important}
4197
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-293{font-size:293px!important}
4198
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-294{font-size:294px!important}
4199
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-295{font-size:295px!important}
4200
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-296{font-size:296px!important}
4201
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-297{font-size:297px!important}
4202
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-298{font-size:298px!important}
4203
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-299{font-size:299px!important}
4204
- .brz-ed.brz-ed--mobile .brz-fs-xs-im-300{font-size:300px!important}
4205
- .brz-ed.brz-ed--mobile .brz-lh-xs-im-1{line-height:1em!important}
4206
- .brz-ed.brz-ed--mobile .brz-lh-xs-im-1_1{line-height:1.1em!important}
4207
- .brz-ed.brz-ed--mobile .brz-lh-xs-im-1_2{line-height:1.2em!important}
4208
- .brz-ed.brz-ed--mobile .brz-lh-xs-im-1_3{line-height:1.3em!important}
4209
- .brz-ed.brz-ed--mobile .brz-lh-xs-im-1_4{line-height:1.4em!important}
4210
- .brz-ed.brz-ed--mobile .brz-lh-xs-im-1_5{line-height:1.5em!important}
4211
- .brz-ed.brz-ed--mobile .brz-lh-xs-im-1_6{line-height:1.6em!important}
4212
- .brz-ed.brz-ed--mobile .brz-lh-xs-im-1_7{line-height:1.7em!important}
4213
- .brz-ed.brz-ed--mobile .brz-lh-xs-im-1_8{line-height:1.8em!important}
4214
- .brz-ed.brz-ed--mobile .brz-lh-xs-im-1_9{line-height:1.9em!important}
4215
- .brz-ed.brz-ed--mobile .brz-lh-xs-im-2{line-height:2em!important}
4216
- .brz-ed.brz-ed--mobile .brz-lh-xs-im-2_1{line-height:2.1em!important}
4217
- .brz-ed.brz-ed--mobile .brz-lh-xs-im-2_2{line-height:2.2em!important}
4218
- .brz-ed.brz-ed--mobile .brz-lh-xs-im-2_3{line-height:2.3em!important}
4219
- .brz-ed.brz-ed--mobile .brz-lh-xs-im-2_4{line-height:2.4em!important}
4220
- .brz-ed.brz-ed--mobile .brz-lh-xs-im-2_5{line-height:2.5em!important}
4221
- .brz-ed.brz-ed--mobile .brz-lh-xs-im-2_6{line-height:2.6em!important}
4222
- .brz-ed.brz-ed--mobile .brz-lh-xs-im-2_7{line-height:2.7em!important}
4223
- .brz-ed.brz-ed--mobile .brz-lh-xs-im-2_8{line-height:2.8em!important}
4224
- .brz-ed.brz-ed--mobile .brz-lh-xs-im-2_9{line-height:2.9em!important}
4225
- .brz-ed.brz-ed--mobile .brz-lh-xs-im-3{line-height:3em!important}
4226
- .brz-ed.brz-ed--mobile .brz-lh-xs-im-3_1{line-height:3.1em!important}
4227
- .brz-ed.brz-ed--mobile .brz-lh-xs-im-3_2{line-height:3.2em!important}
4228
- .brz-ed.brz-ed--mobile .brz-lh-xs-im-3_3{line-height:3.3em!important}
4229
- .brz-ed.brz-ed--mobile .brz-lh-xs-im-3_4{line-height:3.4em!important}
4230
- .brz-ed.brz-ed--mobile .brz-lh-xs-im-3_5{line-height:3.5em!important}
4231
- .brz-ed.brz-ed--mobile .brz-lh-xs-im-3_6{line-height:3.6em!important}
4232
- .brz-ed.brz-ed--mobile .brz-lh-xs-im-3_7{line-height:3.7em!important}
4233
- .brz-ed.brz-ed--mobile .brz-lh-xs-im-3_8{line-height:3.8em!important}
4234
- .brz-ed.brz-ed--mobile .brz-lh-xs-im-3_9{line-height:3.9em!important}
4235
- .brz-ed.brz-ed--mobile .brz-lh-xs-im-4{line-height:4em!important}
4236
- .brz-ed.brz-ed--mobile .brz-lh-xs-im-4_1{line-height:4.1em!important}
4237
- .brz-ed.brz-ed--mobile .brz-lh-xs-im-4_2{line-height:4.2em!important}
4238
- .brz-ed.brz-ed--mobile .brz-lh-xs-im-4_3{line-height:4.3em!important}
4239
- .brz-ed.brz-ed--mobile .brz-lh-xs-im-4_4{line-height:4.4em!important}
4240
- .brz-ed.brz-ed--mobile .brz-lh-xs-im-4_5{line-height:4.5em!important}
4241
- .brz-ed.brz-ed--mobile .brz-lh-xs-im-4_6{line-height:4.6em!important}
4242
- .brz-ed.brz-ed--mobile .brz-lh-xs-im-4_7{line-height:4.7em!important}
4243
- .brz-ed.brz-ed--mobile .brz-lh-xs-im-4_8{line-height:4.8em!important}
4244
- .brz-ed.brz-ed--mobile .brz-lh-xs-im-4_9{line-height:4.9em!important}
4245
- .brz-ed.brz-ed--mobile .brz-lh-xs-im-5{line-height:5em!important}
4246
- .brz-ed.brz-ed--mobile .brz-lh-xs-im-5_1{line-height:5.1em!important}
4247
- .brz-ed.brz-ed--mobile .brz-lh-xs-im-5_2{line-height:5.2em!important}
4248
- .brz-ed.brz-ed--mobile .brz-lh-xs-im-5_3{line-height:5.3em!important}
4249
- .brz-ed.brz-ed--mobile .brz-lh-xs-im-5_4{line-height:5.4em!important}
4250
- .brz-ed.brz-ed--mobile .brz-lh-xs-im-5_5{line-height:5.5em!important}
4251
- .brz-ed.brz-ed--mobile .brz-lh-xs-im-5_6{line-height:5.6em!important}
4252
- .brz-ed.brz-ed--mobile .brz-lh-xs-im-5_7{line-height:5.7em!important}
4253
- .brz-ed.brz-ed--mobile .brz-lh-xs-im-5_8{line-height:5.8em!important}
4254
- .brz-ed.brz-ed--mobile .brz-lh-xs-im-5_9{line-height:5.9em!important}
4255
- .brz-ed.brz-ed--mobile .brz-fw-xs-im-100{font-weight:100!important}
4256
- .brz-ed.brz-ed--mobile .brz-fw-xs-im-200{font-weight:200!important}
4257
- .brz-ed.brz-ed--mobile .brz-fw-xs-im-300{font-weight:300!important}
4258
- .brz-ed.brz-ed--mobile .brz-fw-xs-im-400{font-weight:400!important}
4259
- .brz-ed.brz-ed--mobile .brz-fw-xs-im-500{font-weight:500!important}
4260
- .brz-ed.brz-ed--mobile .brz-fw-xs-im-600{font-weight:600!important}
4261
- .brz-ed.brz-ed--mobile .brz-fw-xs-im-700{font-weight:700!important}
4262
- .brz-ed.brz-ed--mobile .brz-fw-xs-im-800{font-weight:800!important}
4263
- .brz-ed.brz-ed--mobile .brz-fw-xs-im-900{font-weight:900!important}
4264
- .brz-ed.brz-ed--mobile .brz-fw-xs-im-1000{font-weight:1000!important}
4265
- .brz-ed.brz-ed--mobile .brz-fw-xs-im-1100{font-weight:1100!important}
4266
- .brz-ed.brz-ed--mobile .brz-fw-xs-im-1200{font-weight:1200!important}
4267
- .brz-ed.brz-ed--mobile .brz-fw-xs-im-1300{font-weight:1300!important}
4268
- .brz-ed.brz-ed--mobile .brz-fw-xs-im-1400{font-weight:1400!important}
4269
- .brz-ed.brz-ed--mobile .brz-fw-xs-im-1500{font-weight:1500!important}
4270
- .brz-ed.brz-ed--mobile .brz-fw-xs-im-1600{font-weight:1600!important}
4271
- .brz-ed.brz-ed--mobile .brz-fw-xs-im-1700{font-weight:1700!important}
4272
- .brz-ed.brz-ed--mobile .brz-fw-xs-im-1800{font-weight:1800!important}
4273
- .brz-ed.brz-ed--mobile .brz-fw-xs-im-1900{font-weight:1900!important}
4274
- .brz-ed.brz-ed--mobile .brz-fw-xs-im-2000{font-weight:2000!important}
4275
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_20{letter-spacing:-20px!important}
4276
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_20_5{letter-spacing:-20.5px!important}
4277
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_19{letter-spacing:-19px!important}
4278
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_19_5{letter-spacing:-19.5px!important}
4279
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_18{letter-spacing:-18px!important}
4280
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_18_5{letter-spacing:-18.5px!important}
4281
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_17{letter-spacing:-17px!important}
4282
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_17_5{letter-spacing:-17.5px!important}
4283
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_16{letter-spacing:-16px!important}
4284
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_16_5{letter-spacing:-16.5px!important}
4285
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_15{letter-spacing:-15px!important}
4286
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_15_5{letter-spacing:-15.5px!important}
4287
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_14{letter-spacing:-14px!important}
4288
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_14_5{letter-spacing:-14.5px!important}
4289
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_13{letter-spacing:-13px!important}
4290
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_13_5{letter-spacing:-13.5px!important}
4291
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_12{letter-spacing:-12px!important}
4292
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_12_5{letter-spacing:-12.5px!important}
4293
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_11{letter-spacing:-11px!important}
4294
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_11_5{letter-spacing:-11.5px!important}
4295
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_10{letter-spacing:-10px!important}
4296
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_10_5{letter-spacing:-10.5px!important}
4297
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_9{letter-spacing:-9px!important}
4298
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_9_5{letter-spacing:-9.5px!important}
4299
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_8{letter-spacing:-8px!important}
4300
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_8_5{letter-spacing:-8.5px!important}
4301
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_7{letter-spacing:-7px!important}
4302
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_7_5{letter-spacing:-7.5px!important}
4303
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_6{letter-spacing:-6px!important}
4304
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_6_5{letter-spacing:-6.5px!important}
4305
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_5{letter-spacing:-5px!important}
4306
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_5_5{letter-spacing:-5.5px!important}
4307
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_4{letter-spacing:-4px!important}
4308
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_4_5{letter-spacing:-4.5px!important}
4309
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_3{letter-spacing:-3px!important}
4310
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_3_5{letter-spacing:-3.5px!important}
4311
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_2{letter-spacing:-2px!important}
4312
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_2_5{letter-spacing:-2.5px!important}
4313
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_1{letter-spacing:-1px!important}
4314
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_1_5{letter-spacing:-1.5px!important}
4315
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_0{letter-spacing:0!important}
4316
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_0_5{letter-spacing:-.5px!important}
4317
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-0{letter-spacing:0!important}
4318
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-0_5{letter-spacing:.5px!important}
4319
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-1{letter-spacing:1px!important}
4320
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-1_5{letter-spacing:1.5px!important}
4321
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-2{letter-spacing:2px!important}
4322
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-2_5{letter-spacing:2.5px!important}
4323
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-3{letter-spacing:3px!important}
4324
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-3_5{letter-spacing:3.5px!important}
4325
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-4{letter-spacing:4px!important}
4326
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-4_5{letter-spacing:4.5px!important}
4327
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-5{letter-spacing:5px!important}
4328
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-5_5{letter-spacing:5.5px!important}
4329
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-6{letter-spacing:6px!important}
4330
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-6_5{letter-spacing:6.5px!important}
4331
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-7{letter-spacing:7px!important}
4332
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-7_5{letter-spacing:7.5px!important}
4333
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-8{letter-spacing:8px!important}
4334
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-8_5{letter-spacing:8.5px!important}
4335
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-9{letter-spacing:9px!important}
4336
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-9_5{letter-spacing:9.5px!important}
4337
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-10{letter-spacing:10px!important}
4338
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-10_5{letter-spacing:10.5px!important}
4339
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-11{letter-spacing:11px!important}
4340
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-11_5{letter-spacing:11.5px!important}
4341
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-12{letter-spacing:12px!important}
4342
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-12_5{letter-spacing:12.5px!important}
4343
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-13{letter-spacing:13px!important}
4344
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-13_5{letter-spacing:13.5px!important}
4345
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-14{letter-spacing:14px!important}
4346
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-14_5{letter-spacing:14.5px!important}
4347
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-15{letter-spacing:15px!important}
4348
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-15_5{letter-spacing:15.5px!important}
4349
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-16{letter-spacing:16px!important}
4350
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-16_5{letter-spacing:16.5px!important}
4351
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-17{letter-spacing:17px!important}
4352
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-17_5{letter-spacing:17.5px!important}
4353
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-18{letter-spacing:18px!important}
4354
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-18_5{letter-spacing:18.5px!important}
4355
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-19{letter-spacing:19px!important}
4356
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-19_5{letter-spacing:19.5px!important}
4357
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-20{letter-spacing:20px!important}
4358
- .brz-ed.brz-ed--mobile .brz-ls-xs-im-20_5{letter-spacing:20.5px!important}
4359
- .brz-ed .brz-mt-lg-0{margin-top:0!important}
4360
- .brz-ed .brz-mt-lg-1{margin-top:1px!important}
4361
- .brz-ed .brz-mt-lg-2{margin-top:2px!important}
4362
- .brz-ed .brz-mt-lg-3{margin-top:3px!important}
4363
- .brz-ed .brz-mt-lg-4{margin-top:4px!important}
4364
- .brz-ed .brz-mt-lg-5{margin-top:5px!important}
4365
- .brz-ed .brz-mt-lg-6{margin-top:6px!important}
4366
- .brz-ed .brz-mt-lg-7{margin-top:7px!important}
4367
- .brz-ed .brz-mt-lg-8{margin-top:8px!important}
4368
- .brz-ed .brz-mt-lg-9{margin-top:9px!important}
4369
- .brz-ed .brz-mt-lg-10{margin-top:10px!important}
4370
- .brz-ed .brz-mt-lg-11{margin-top:11px!important}
4371
- .brz-ed .brz-mt-lg-12{margin-top:12px!important}
4372
- .brz-ed .brz-mt-lg-13{margin-top:13px!important}
4373
- .brz-ed .brz-mt-lg-14{margin-top:14px!important}
4374
- .brz-ed .brz-mt-lg-15{margin-top:15px!important}
4375
- .brz-ed .brz-mt-lg-16{margin-top:16px!important}
4376
- .brz-ed .brz-mt-lg-17{margin-top:17px!important}
4377
- .brz-ed .brz-mt-lg-18{margin-top:18px!important}
4378
- .brz-ed .brz-mt-lg-19{margin-top:19px!important}
4379
- .brz-ed .brz-mt-lg-20{margin-top:20px!important}
4380
- .brz-ed .brz-mt-lg-21{margin-top:21px!important}
4381
- .brz-ed .brz-mt-lg-22{margin-top:22px!important}
4382
- .brz-ed .brz-mt-lg-23{margin-top:23px!important}
4383
- .brz-ed .brz-mt-lg-24{margin-top:24px!important}
4384
- .brz-ed .brz-mt-lg-25{margin-top:25px!important}
4385
- .brz-ed .brz-mt-lg-26{margin-top:26px!important}
4386
- .brz-ed .brz-mt-lg-27{margin-top:27px!important}
4387
- .brz-ed .brz-mt-lg-28{margin-top:28px!important}
4388
- .brz-ed .brz-mt-lg-29{margin-top:29px!important}
4389
- .brz-ed .brz-mt-lg-30{margin-top:30px!important}
4390
- .brz-ed .brz-mt-lg-31{margin-top:31px!important}
4391
- .brz-ed .brz-mt-lg-32{margin-top:32px!important}
4392
- .brz-ed .brz-mt-lg-33{margin-top:33px!important}
4393
- .brz-ed .brz-mt-lg-34{margin-top:34px!important}
4394
- .brz-ed .brz-mt-lg-35{margin-top:35px!important}
4395
- .brz-ed .brz-mt-lg-36{margin-top:36px!important}
4396
- .brz-ed .brz-mt-lg-37{margin-top:37px!important}
4397
- .brz-ed .brz-mt-lg-38{margin-top:38px!important}
4398
- .brz-ed .brz-mt-lg-39{margin-top:39px!important}
4399
- .brz-ed .brz-mt-lg-40{margin-top:40px!important}
4400
- .brz-ed .brz-mt-lg-41{margin-top:41px!important}
4401
- .brz-ed .brz-mt-lg-42{margin-top:42px!important}
4402
- .brz-ed .brz-mt-lg-43{margin-top:43px!important}
4403
- .brz-ed .brz-mt-lg-44{margin-top:44px!important}
4404
- .brz-ed .brz-mt-lg-45{margin-top:45px!important}
4405
- .brz-ed .brz-mt-lg-46{margin-top:46px!important}
4406
- .brz-ed .brz-mt-lg-47{margin-top:47px!important}
4407
- .brz-ed .brz-mt-lg-48{margin-top:48px!important}
4408
- .brz-ed .brz-mt-lg-49{margin-top:49px!important}
4409
- .brz-ed .brz-mt-lg-50{margin-top:50px!important}
4410
- .brz-ed .brz-mt-lg-51{margin-top:51px!important}
4411
- .brz-ed .brz-mt-lg-52{margin-top:52px!important}
4412
- .brz-ed .brz-mt-lg-53{margin-top:53px!important}
4413
- .brz-ed .brz-mt-lg-54{margin-top:54px!important}
4414
- .brz-ed .brz-mt-lg-55{margin-top:55px!important}
4415
- .brz-ed .brz-mt-lg-56{margin-top:56px!important}
4416
- .brz-ed .brz-mt-lg-57{margin-top:57px!important}
4417
- .brz-ed .brz-mt-lg-58{margin-top:58px!important}
4418
- .brz-ed .brz-mt-lg-59{margin-top:59px!important}
4419
- .brz-ed .brz-mt-lg-60{margin-top:60px!important}
4420
- .brz-ed .brz-mt-lg-61{margin-top:61px!important}
4421
- .brz-ed .brz-mt-lg-62{margin-top:62px!important}
4422
- .brz-ed .brz-mt-lg-63{margin-top:63px!important}
4423
- .brz-ed .brz-mt-lg-64{margin-top:64px!important}
4424
- .brz-ed .brz-mt-lg-65{margin-top:65px!important}
4425
- .brz-ed .brz-mt-lg-66{margin-top:66px!important}
4426
- .brz-ed .brz-mt-lg-67{margin-top:67px!important}
4427
- .brz-ed .brz-mt-lg-68{margin-top:68px!important}
4428
- .brz-ed .brz-mt-lg-69{margin-top:69px!important}
4429
- .brz-ed .brz-mt-lg-70{margin-top:70px!important}
4430
- .brz-ed .brz-mt-lg-71{margin-top:71px!important}
4431
- .brz-ed .brz-mt-lg-72{margin-top:72px!important}
4432
- .brz-ed .brz-mt-lg-73{margin-top:73px!important}
4433
- .brz-ed .brz-mt-lg-74{margin-top:74px!important}
4434
- .brz-ed .brz-mt-lg-75{margin-top:75px!important}
4435
- .brz-ed .brz-mt-lg-76{margin-top:76px!important}
4436
- .brz-ed .brz-mt-lg-77{margin-top:77px!important}
4437
- .brz-ed .brz-mt-lg-78{margin-top:78px!important}
4438
- .brz-ed .brz-mt-lg-79{margin-top:79px!important}
4439
- .brz-ed .brz-mt-lg-80{margin-top:80px!important}
4440
- .brz-ed .brz-mt-lg-81{margin-top:81px!important}
4441
- .brz-ed .brz-mt-lg-82{margin-top:82px!important}
4442
- .brz-ed .brz-mt-lg-83{margin-top:83px!important}
4443
- .brz-ed .brz-mt-lg-84{margin-top:84px!important}
4444
- .brz-ed .brz-mt-lg-85{margin-top:85px!important}
4445
- .brz-ed .brz-mt-lg-86{margin-top:86px!important}
4446
- .brz-ed .brz-mt-lg-87{margin-top:87px!important}
4447
- .brz-ed .brz-mt-lg-88{margin-top:88px!important}
4448
- .brz-ed .brz-mt-lg-89{margin-top:89px!important}
4449
- .brz-ed .brz-mt-lg-90{margin-top:90px!important}
4450
- .brz-ed .brz-mt-lg-91{margin-top:91px!important}
4451
- .brz-ed .brz-mt-lg-92{margin-top:92px!important}
4452
- .brz-ed .brz-mt-lg-93{margin-top:93px!important}
4453
- .brz-ed .brz-mt-lg-94{margin-top:94px!important}
4454
- .brz-ed .brz-mt-lg-95{margin-top:95px!important}
4455
- .brz-ed .brz-mt-lg-96{margin-top:96px!important}
4456
- .brz-ed .brz-mt-lg-97{margin-top:97px!important}
4457
- .brz-ed .brz-mt-lg-98{margin-top:98px!important}
4458
- .brz-ed .brz-mt-lg-99{margin-top:99px!important}
4459
- .brz-ed .brz-mt-lg-100{margin-top:100px!important}
4460
- .brz-ed .brz-mb-lg-0{margin-bottom:0!important}
4461
- .brz-ed .brz-mb-lg-1{margin-bottom:1px!important}
4462
- .brz-ed .brz-mb-lg-2{margin-bottom:2px!important}
4463
- .brz-ed .brz-mb-lg-3{margin-bottom:3px!important}
4464
- .brz-ed .brz-mb-lg-4{margin-bottom:4px!important}
4465
- .brz-ed .brz-mb-lg-5{margin-bottom:5px!important}
4466
- .brz-ed .brz-mb-lg-6{margin-bottom:6px!important}
4467
- .brz-ed .brz-mb-lg-7{margin-bottom:7px!important}
4468
- .brz-ed .brz-mb-lg-8{margin-bottom:8px!important}
4469
- .brz-ed .brz-mb-lg-9{margin-bottom:9px!important}
4470
- .brz-ed .brz-mb-lg-10{margin-bottom:10px!important}
4471
- .brz-ed .brz-mb-lg-11{margin-bottom:11px!important}
4472
- .brz-ed .brz-mb-lg-12{margin-bottom:12px!important}
4473
- .brz-ed .brz-mb-lg-13{margin-bottom:13px!important}
4474
- .brz-ed .brz-mb-lg-14{margin-bottom:14px!important}
4475
- .brz-ed .brz-mb-lg-15{margin-bottom:15px!important}
4476
- .brz-ed .brz-mb-lg-16{margin-bottom:16px!important}
4477
- .brz-ed .brz-mb-lg-17{margin-bottom:17px!important}
4478
- .brz-ed .brz-mb-lg-18{margin-bottom:18px!important}
4479
- .brz-ed .brz-mb-lg-19{margin-bottom:19px!important}
4480
- .brz-ed .brz-mb-lg-20{margin-bottom:20px!important}
4481
- .brz-ed .brz-mb-lg-21{margin-bottom:21px!important}
4482
- .brz-ed .brz-mb-lg-22{margin-bottom:22px!important}
4483
- .brz-ed .brz-mb-lg-23{margin-bottom:23px!important}
4484
- .brz-ed .brz-mb-lg-24{margin-bottom:24px!important}
4485
- .brz-ed .brz-mb-lg-25{margin-bottom:25px!important}
4486
- .brz-ed .brz-mb-lg-26{margin-bottom:26px!important}
4487
- .brz-ed .brz-mb-lg-27{margin-bottom:27px!important}
4488
- .brz-ed .brz-mb-lg-28{margin-bottom:28px!important}
4489
- .brz-ed .brz-mb-lg-29{margin-bottom:29px!important}
4490
- .brz-ed .brz-mb-lg-30{margin-bottom:30px!important}
4491
- .brz-ed .brz-mb-lg-31{margin-bottom:31px!important}
4492
- .brz-ed .brz-mb-lg-32{margin-bottom:32px!important}
4493
- .brz-ed .brz-mb-lg-33{margin-bottom:33px!important}
4494
- .brz-ed .brz-mb-lg-34{margin-bottom:34px!important}
4495
- .brz-ed .brz-mb-lg-35{margin-bottom:35px!important}
4496
- .brz-ed .brz-mb-lg-36{margin-bottom:36px!important}
4497
- .brz-ed .brz-mb-lg-37{margin-bottom:37px!important}
4498
- .brz-ed .brz-mb-lg-38{margin-bottom:38px!important}
4499
- .brz-ed .brz-mb-lg-39{margin-bottom:39px!important}
4500
- .brz-ed .brz-mb-lg-40{margin-bottom:40px!important}
4501
- .brz-ed .brz-mb-lg-41{margin-bottom:41px!important}
4502
- .brz-ed .brz-mb-lg-42{margin-bottom:42px!important}
4503
- .brz-ed .brz-mb-lg-43{margin-bottom:43px!important}
4504
- .brz-ed .brz-mb-lg-44{margin-bottom:44px!important}
4505
- .brz-ed .brz-mb-lg-45{margin-bottom:45px!important}
4506
- .brz-ed .brz-mb-lg-46{margin-bottom:46px!important}
4507
- .brz-ed .brz-mb-lg-47{margin-bottom:47px!important}
4508
- .brz-ed .brz-mb-lg-48{margin-bottom:48px!important}
4509
- .brz-ed .brz-mb-lg-49{margin-bottom:49px!important}
4510
- .brz-ed .brz-mb-lg-50{margin-bottom:50px!important}
4511
- .brz-ed .brz-mb-lg-51{margin-bottom:51px!important}
4512
- .brz-ed .brz-mb-lg-52{margin-bottom:52px!important}
4513
- .brz-ed .brz-mb-lg-53{margin-bottom:53px!important}
4514
- .brz-ed .brz-mb-lg-54{margin-bottom:54px!important}
4515
- .brz-ed .brz-mb-lg-55{margin-bottom:55px!important}
4516
- .brz-ed .brz-mb-lg-56{margin-bottom:56px!important}
4517
- .brz-ed .brz-mb-lg-57{margin-bottom:57px!important}
4518
- .brz-ed .brz-mb-lg-58{margin-bottom:58px!important}
4519
- .brz-ed .brz-mb-lg-59{margin-bottom:59px!important}
4520
- .brz-ed .brz-mb-lg-60{margin-bottom:60px!important}
4521
- .brz-ed .brz-mb-lg-61{margin-bottom:61px!important}
4522
- .brz-ed .brz-mb-lg-62{margin-bottom:62px!important}
4523
- .brz-ed .brz-mb-lg-63{margin-bottom:63px!important}
4524
- .brz-ed .brz-mb-lg-64{margin-bottom:64px!important}
4525
- .brz-ed .brz-mb-lg-65{margin-bottom:65px!important}
4526
- .brz-ed .brz-mb-lg-66{margin-bottom:66px!important}
4527
- .brz-ed .brz-mb-lg-67{margin-bottom:67px!important}
4528
- .brz-ed .brz-mb-lg-68{margin-bottom:68px!important}
4529
- .brz-ed .brz-mb-lg-69{margin-bottom:69px!important}
4530
- .brz-ed .brz-mb-lg-70{margin-bottom:70px!important}
4531
- .brz-ed .brz-mb-lg-71{margin-bottom:71px!important}
4532
- .brz-ed .brz-mb-lg-72{margin-bottom:72px!important}
4533
- .brz-ed .brz-mb-lg-73{margin-bottom:73px!important}
4534
- .brz-ed .brz-mb-lg-74{margin-bottom:74px!important}
4535
- .brz-ed .brz-mb-lg-75{margin-bottom:75px!important}
4536
- .brz-ed .brz-mb-lg-76{margin-bottom:76px!important}
4537
- .brz-ed .brz-mb-lg-77{margin-bottom:77px!important}
4538
- .brz-ed .brz-mb-lg-78{margin-bottom:78px!important}
4539
- .brz-ed .brz-mb-lg-79{margin-bottom:79px!important}
4540
- .brz-ed .brz-mb-lg-80{margin-bottom:80px!important}
4541
- .brz-ed .brz-mb-lg-81{margin-bottom:81px!important}
4542
- .brz-ed .brz-mb-lg-82{margin-bottom:82px!important}
4543
- .brz-ed .brz-mb-lg-83{margin-bottom:83px!important}
4544
- .brz-ed .brz-mb-lg-84{margin-bottom:84px!important}
4545
- .brz-ed .brz-mb-lg-85{margin-bottom:85px!important}
4546
- .brz-ed .brz-mb-lg-86{margin-bottom:86px!important}
4547
- .brz-ed .brz-mb-lg-87{margin-bottom:87px!important}
4548
- .brz-ed .brz-mb-lg-88{margin-bottom:88px!important}
4549
- .brz-ed .brz-mb-lg-89{margin-bottom:89px!important}
4550
- .brz-ed .brz-mb-lg-90{margin-bottom:90px!important}
4551
- .brz-ed .brz-mb-lg-91{margin-bottom:91px!important}
4552
- .brz-ed .brz-mb-lg-92{margin-bottom:92px!important}
4553
- .brz-ed .brz-mb-lg-93{margin-bottom:93px!important}
4554
- .brz-ed .brz-mb-lg-94{margin-bottom:94px!important}
4555
- .brz-ed .brz-mb-lg-95{margin-bottom:95px!important}
4556
- .brz-ed .brz-mb-lg-96{margin-bottom:96px!important}
4557
- .brz-ed .brz-mb-lg-97{margin-bottom:97px!important}
4558
- .brz-ed .brz-mb-lg-98{margin-bottom:98px!important}
4559
- .brz-ed .brz-mb-lg-99{margin-bottom:99px!important}
4560
- .brz-ed .brz-mb-lg-100{margin-bottom:100px!important}
4561
- .brz-ed.brz-ed--desktop .brz-mt-lg-0{margin-top:0!important}
4562
- .brz-ed.brz-ed--desktop .brz-mt-lg-1{margin-top:1px!important}
4563
- .brz-ed.brz-ed--desktop .brz-mt-lg-2{margin-top:2px!important}
4564
- .brz-ed.brz-ed--desktop .brz-mt-lg-3{margin-top:3px!important}
4565
- .brz-ed.brz-ed--desktop .brz-mt-lg-4{margin-top:4px!important}
4566
- .brz-ed.brz-ed--desktop .brz-mt-lg-5{margin-top:5px!important}
4567
- .brz-ed.brz-ed--desktop .brz-mt-lg-6{margin-top:6px!important}
4568
- .brz-ed.brz-ed--desktop .brz-mt-lg-7{margin-top:7px!important}
4569
- .brz-ed.brz-ed--desktop .brz-mt-lg-8{margin-top:8px!important}
4570
- .brz-ed.brz-ed--desktop .brz-mt-lg-9{margin-top:9px!important}
4571
- .brz-ed.brz-ed--desktop .brz-mt-lg-10{margin-top:10px!important}
4572
- .brz-ed.brz-ed--desktop .brz-mt-lg-11{margin-top:11px!important}
4573
- .brz-ed.brz-ed--desktop .brz-mt-lg-12{margin-top:12px!important}
4574
- .brz-ed.brz-ed--desktop .brz-mt-lg-13{margin-top:13px!important}
4575
- .brz-ed.brz-ed--desktop .brz-mt-lg-14{margin-top:14px!important}
4576
- .brz-ed.brz-ed--desktop .brz-mt-lg-15{margin-top:15px!important}
4577
- .brz-ed.brz-ed--desktop .brz-mt-lg-16{margin-top:16px!important}
4578
- .brz-ed.brz-ed--desktop .brz-mt-lg-17{margin-top:17px!important}
4579
- .brz-ed.brz-ed--desktop .brz-mt-lg-18{margin-top:18px!important}
4580
- .brz-ed.brz-ed--desktop .brz-mt-lg-19{margin-top:19px!important}
4581
- .brz-ed.brz-ed--desktop .brz-mt-lg-20{margin-top:20px!important}
4582
- .brz-ed.brz-ed--desktop .brz-mt-lg-21{margin-top:21px!important}
4583
- .brz-ed.brz-ed--desktop .brz-mt-lg-22{margin-top:22px!important}
4584
- .brz-ed.brz-ed--desktop .brz-mt-lg-23{margin-top:23px!important}
4585
- .brz-ed.brz-ed--desktop .brz-mt-lg-24{margin-top:24px!important}
4586
- .brz-ed.brz-ed--desktop .brz-mt-lg-25{margin-top:25px!important}
4587
- .brz-ed.brz-ed--desktop .brz-mt-lg-26{margin-top:26px!important}
4588
- .brz-ed.brz-ed--desktop .brz-mt-lg-27{margin-top:27px!important}
4589
- .brz-ed.brz-ed--desktop .brz-mt-lg-28{margin-top:28px!important}
4590
- .brz-ed.brz-ed--desktop .brz-mt-lg-29{margin-top:29px!important}
4591
- .brz-ed.brz-ed--desktop .brz-mt-lg-30{margin-top:30px!important}
4592
- .brz-ed.brz-ed--desktop .brz-mt-lg-31{margin-top:31px!important}
4593
- .brz-ed.brz-ed--desktop .brz-mt-lg-32{margin-top:32px!important}
4594
- .brz-ed.brz-ed--desktop .brz-mt-lg-33{margin-top:33px!important}
4595
- .brz-ed.brz-ed--desktop .brz-mt-lg-34{margin-top:34px!important}
4596
- .brz-ed.brz-ed--desktop .brz-mt-lg-35{margin-top:35px!important}
4597
- .brz-ed.brz-ed--desktop .brz-mt-lg-36{margin-top:36px!important}
4598
- .brz-ed.brz-ed--desktop .brz-mt-lg-37{margin-top:37px!important}
4599
- .brz-ed.brz-ed--desktop .brz-mt-lg-38{margin-top:38px!important}
4600
- .brz-ed.brz-ed--desktop .brz-mt-lg-39{margin-top:39px!important}
4601
- .brz-ed.brz-ed--desktop .brz-mt-lg-40{margin-top:40px!important}
4602
- .brz-ed.brz-ed--desktop .brz-mt-lg-41{margin-top:41px!important}
4603
- .brz-ed.brz-ed--desktop .brz-mt-lg-42{margin-top:42px!important}
4604
- .brz-ed.brz-ed--desktop .brz-mt-lg-43{margin-top:43px!important}
4605
- .brz-ed.brz-ed--desktop .brz-mt-lg-44{margin-top:44px!important}
4606
- .brz-ed.brz-ed--desktop .brz-mt-lg-45{margin-top:45px!important}
4607
- .brz-ed.brz-ed--desktop .brz-mt-lg-46{margin-top:46px!important}
4608
- .brz-ed.brz-ed--desktop .brz-mt-lg-47{margin-top:47px!important}
4609
- .brz-ed.brz-ed--desktop .brz-mt-lg-48{margin-top:48px!important}
4610
- .brz-ed.brz-ed--desktop .brz-mt-lg-49{margin-top:49px!important}
4611
- .brz-ed.brz-ed--desktop .brz-mt-lg-50{margin-top:50px!important}
4612
- .brz-ed.brz-ed--desktop .brz-mt-lg-51{margin-top:51px!important}
4613
- .brz-ed.brz-ed--desktop .brz-mt-lg-52{margin-top:52px!important}
4614
- .brz-ed.brz-ed--desktop .brz-mt-lg-53{margin-top:53px!important}
4615
- .brz-ed.brz-ed--desktop .brz-mt-lg-54{margin-top:54px!important}
4616
- .brz-ed.brz-ed--desktop .brz-mt-lg-55{margin-top:55px!important}
4617
- .brz-ed.brz-ed--desktop .brz-mt-lg-56{margin-top:56px!important}
4618
- .brz-ed.brz-ed--desktop .brz-mt-lg-57{margin-top:57px!important}
4619
- .brz-ed.brz-ed--desktop .brz-mt-lg-58{margin-top:58px!important}
4620
- .brz-ed.brz-ed--desktop .brz-mt-lg-59{margin-top:59px!important}
4621
- .brz-ed.brz-ed--desktop .brz-mt-lg-60{margin-top:60px!important}
4622
- .brz-ed.brz-ed--desktop .brz-mt-lg-61{margin-top:61px!important}
4623
- .brz-ed.brz-ed--desktop .brz-mt-lg-62{margin-top:62px!important}
4624
- .brz-ed.brz-ed--desktop .brz-mt-lg-63{margin-top:63px!important}
4625
- .brz-ed.brz-ed--desktop .brz-mt-lg-64{margin-top:64px!important}
4626
- .brz-ed.brz-ed--desktop .brz-mt-lg-65{margin-top:65px!important}
4627
- .brz-ed.brz-ed--desktop .brz-mt-lg-66{margin-top:66px!important}
4628
- .brz-ed.brz-ed--desktop .brz-mt-lg-67{margin-top:67px!important}
4629
- .brz-ed.brz-ed--desktop .brz-mt-lg-68{margin-top:68px!important}
4630
- .brz-ed.brz-ed--desktop .brz-mt-lg-69{margin-top:69px!important}
4631
- .brz-ed.brz-ed--desktop .brz-mt-lg-70{margin-top:70px!important}
4632
- .brz-ed.brz-ed--desktop .brz-mt-lg-71{margin-top:71px!important}
4633
- .brz-ed.brz-ed--desktop .brz-mt-lg-72{margin-top:72px!important}
4634
- .brz-ed.brz-ed--desktop .brz-mt-lg-73{margin-top:73px!important}
4635
- .brz-ed.brz-ed--desktop .brz-mt-lg-74{margin-top:74px!important}
4636
- .brz-ed.brz-ed--desktop .brz-mt-lg-75{margin-top:75px!important}
4637
- .brz-ed.brz-ed--desktop .brz-mt-lg-76{margin-top:76px!important}
4638
- .brz-ed.brz-ed--desktop .brz-mt-lg-77{margin-top:77px!important}
4639
- .brz-ed.brz-ed--desktop .brz-mt-lg-78{margin-top:78px!important}
4640
- .brz-ed.brz-ed--desktop .brz-mt-lg-79{margin-top:79px!important}
4641
- .brz-ed.brz-ed--desktop .brz-mt-lg-80{margin-top:80px!important}
4642
- .brz-ed.brz-ed--desktop .brz-mt-lg-81{margin-top:81px!important}
4643
- .brz-ed.brz-ed--desktop .brz-mt-lg-82{margin-top:82px!important}
4644
- .brz-ed.brz-ed--desktop .brz-mt-lg-83{margin-top:83px!important}
4645
- .brz-ed.brz-ed--desktop .brz-mt-lg-84{margin-top:84px!important}
4646
- .brz-ed.brz-ed--desktop .brz-mt-lg-85{margin-top:85px!important}
4647
- .brz-ed.brz-ed--desktop .brz-mt-lg-86{margin-top:86px!important}
4648
- .brz-ed.brz-ed--desktop .brz-mt-lg-87{margin-top:87px!important}
4649
- .brz-ed.brz-ed--desktop .brz-mt-lg-88{margin-top:88px!important}
4650
- .brz-ed.brz-ed--desktop .brz-mt-lg-89{margin-top:89px!important}
4651
- .brz-ed.brz-ed--desktop .brz-mt-lg-90{margin-top:90px!important}
4652
- .brz-ed.brz-ed--desktop .brz-mt-lg-91{margin-top:91px!important}
4653
- .brz-ed.brz-ed--desktop .brz-mt-lg-92{margin-top:92px!important}
4654
- .brz-ed.brz-ed--desktop .brz-mt-lg-93{margin-top:93px!important}
4655
- .brz-ed.brz-ed--desktop .brz-mt-lg-94{margin-top:94px!important}
4656
- .brz-ed.brz-ed--desktop .brz-mt-lg-95{margin-top:95px!important}
4657
- .brz-ed.brz-ed--desktop .brz-mt-lg-96{margin-top:96px!important}
4658
- .brz-ed.brz-ed--desktop .brz-mt-lg-97{margin-top:97px!important}
4659
- .brz-ed.brz-ed--desktop .brz-mt-lg-98{margin-top:98px!important}
4660
- .brz-ed.brz-ed--desktop .brz-mt-lg-99{margin-top:99px!important}
4661
- .brz-ed.brz-ed--desktop .brz-mt-lg-100{margin-top:100px!important}
4662
- .brz-ed.brz-ed--desktop .brz-mb-lg-0{margin-bottom:0!important}
4663
- .brz-ed.brz-ed--desktop .brz-mb-lg-1{margin-bottom:1px!important}
4664
- .brz-ed.brz-ed--desktop .brz-mb-lg-2{margin-bottom:2px!important}
4665
- .brz-ed.brz-ed--desktop .brz-mb-lg-3{margin-bottom:3px!important}
4666
- .brz-ed.brz-ed--desktop .brz-mb-lg-4{margin-bottom:4px!important}
4667
- .brz-ed.brz-ed--desktop .brz-mb-lg-5{margin-bottom:5px!important}
4668
- .brz-ed.brz-ed--desktop .brz-mb-lg-6{margin-bottom:6px!important}
4669
- .brz-ed.brz-ed--desktop .brz-mb-lg-7{margin-bottom:7px!important}
4670
- .brz-ed.brz-ed--desktop .brz-mb-lg-8{margin-bottom:8px!important}
4671
- .brz-ed.brz-ed--desktop .brz-mb-lg-9{margin-bottom:9px!important}
4672
- .brz-ed.brz-ed--desktop .brz-mb-lg-10{margin-bottom:10px!important}
4673
- .brz-ed.brz-ed--desktop .brz-mb-lg-11{margin-bottom:11px!important}
4674
- .brz-ed.brz-ed--desktop .brz-mb-lg-12{margin-bottom:12px!important}
4675
- .brz-ed.brz-ed--desktop .brz-mb-lg-13{margin-bottom:13px!important}
4676
- .brz-ed.brz-ed--desktop .brz-mb-lg-14{margin-bottom:14px!important}
4677
- .brz-ed.brz-ed--desktop .brz-mb-lg-15{margin-bottom:15px!important}
4678
- .brz-ed.brz-ed--desktop .brz-mb-lg-16{margin-bottom:16px!important}
4679
- .brz-ed.brz-ed--desktop .brz-mb-lg-17{margin-bottom:17px!important}
4680
- .brz-ed.brz-ed--desktop .brz-mb-lg-18{margin-bottom:18px!important}
4681
- .brz-ed.brz-ed--desktop .brz-mb-lg-19{margin-bottom:19px!important}
4682
- .brz-ed.brz-ed--desktop .brz-mb-lg-20{margin-bottom:20px!important}
4683
- .brz-ed.brz-ed--desktop .brz-mb-lg-21{margin-bottom:21px!important}
4684
- .brz-ed.brz-ed--desktop .brz-mb-lg-22{margin-bottom:22px!important}
4685
- .brz-ed.brz-ed--desktop .brz-mb-lg-23{margin-bottom:23px!important}
4686
- .brz-ed.brz-ed--desktop .brz-mb-lg-24{margin-bottom:24px!important}
4687
- .brz-ed.brz-ed--desktop .brz-mb-lg-25{margin-bottom:25px!important}
4688
- .brz-ed.brz-ed--desktop .brz-mb-lg-26{margin-bottom:26px!important}
4689
- .brz-ed.brz-ed--desktop .brz-mb-lg-27{margin-bottom:27px!important}
4690
- .brz-ed.brz-ed--desktop .brz-mb-lg-28{margin-bottom:28px!important}
4691
- .brz-ed.brz-ed--desktop .brz-mb-lg-29{margin-bottom:29px!important}
4692
- .brz-ed.brz-ed--desktop .brz-mb-lg-30{margin-bottom:30px!important}
4693
- .brz-ed.brz-ed--desktop .brz-mb-lg-31{margin-bottom:31px!important}
4694
- .brz-ed.brz-ed--desktop .brz-mb-lg-32{margin-bottom:32px!important}
4695
- .brz-ed.brz-ed--desktop .brz-mb-lg-33{margin-bottom:33px!important}
4696
- .brz-ed.brz-ed--desktop .brz-mb-lg-34{margin-bottom:34px!important}
4697
- .brz-ed.brz-ed--desktop .brz-mb-lg-35{margin-bottom:35px!important}
4698
- .brz-ed.brz-ed--desktop .brz-mb-lg-36{margin-bottom:36px!important}
4699
- .brz-ed.brz-ed--desktop .brz-mb-lg-37{margin-bottom:37px!important}
4700
- .brz-ed.brz-ed--desktop .brz-mb-lg-38{margin-bottom:38px!important}
4701
- .brz-ed.brz-ed--desktop .brz-mb-lg-39{margin-bottom:39px!important}
4702
- .brz-ed.brz-ed--desktop .brz-mb-lg-40{margin-bottom:40px!important}
4703
- .brz-ed.brz-ed--desktop .brz-mb-lg-41{margin-bottom:41px!important}
4704
- .brz-ed.brz-ed--desktop .brz-mb-lg-42{margin-bottom:42px!important}
4705
- .brz-ed.brz-ed--desktop .brz-mb-lg-43{margin-bottom:43px!important}
4706
- .brz-ed.brz-ed--desktop .brz-mb-lg-44{margin-bottom:44px!important}
4707
- .brz-ed.brz-ed--desktop .brz-mb-lg-45{margin-bottom:45px!important}
4708
- .brz-ed.brz-ed--desktop .brz-mb-lg-46{margin-bottom:46px!important}
4709
- .brz-ed.brz-ed--desktop .brz-mb-lg-47{margin-bottom:47px!important}
4710
- .brz-ed.brz-ed--desktop .brz-mb-lg-48{margin-bottom:48px!important}
4711
- .brz-ed.brz-ed--desktop .brz-mb-lg-49{margin-bottom:49px!important}
4712
- .brz-ed.brz-ed--desktop .brz-mb-lg-50{margin-bottom:50px!important}
4713
- .brz-ed.brz-ed--desktop .brz-mb-lg-51{margin-bottom:51px!important}
4714
- .brz-ed.brz-ed--desktop .brz-mb-lg-52{margin-bottom:52px!important}
4715
- .brz-ed.brz-ed--desktop .brz-mb-lg-53{margin-bottom:53px!important}
4716
- .brz-ed.brz-ed--desktop .brz-mb-lg-54{margin-bottom:54px!important}
4717
- .brz-ed.brz-ed--desktop .brz-mb-lg-55{margin-bottom:55px!important}
4718
- .brz-ed.brz-ed--desktop .brz-mb-lg-56{margin-bottom:56px!important}
4719
- .brz-ed.brz-ed--desktop .brz-mb-lg-57{margin-bottom:57px!important}
4720
- .brz-ed.brz-ed--desktop .brz-mb-lg-58{margin-bottom:58px!important}
4721
- .brz-ed.brz-ed--desktop .brz-mb-lg-59{margin-bottom:59px!important}
4722
- .brz-ed.brz-ed--desktop .brz-mb-lg-60{margin-bottom:60px!important}
4723
- .brz-ed.brz-ed--desktop .brz-mb-lg-61{margin-bottom:61px!important}
4724
- .brz-ed.brz-ed--desktop .brz-mb-lg-62{margin-bottom:62px!important}
4725
- .brz-ed.brz-ed--desktop .brz-mb-lg-63{margin-bottom:63px!important}
4726
- .brz-ed.brz-ed--desktop .brz-mb-lg-64{margin-bottom:64px!important}
4727
- .brz-ed.brz-ed--desktop .brz-mb-lg-65{margin-bottom:65px!important}
4728
- .brz-ed.brz-ed--desktop .brz-mb-lg-66{margin-bottom:66px!important}
4729
- .brz-ed.brz-ed--desktop .brz-mb-lg-67{margin-bottom:67px!important}
4730
- .brz-ed.brz-ed--desktop .brz-mb-lg-68{margin-bottom:68px!important}
4731
- .brz-ed.brz-ed--desktop .brz-mb-lg-69{margin-bottom:69px!important}
4732
- .brz-ed.brz-ed--desktop .brz-mb-lg-70{margin-bottom:70px!important}
4733
- .brz-ed.brz-ed--desktop .brz-mb-lg-71{margin-bottom:71px!important}
4734
- .brz-ed.brz-ed--desktop .brz-mb-lg-72{margin-bottom:72px!important}
4735
- .brz-ed.brz-ed--desktop .brz-mb-lg-73{margin-bottom:73px!important}
4736
- .brz-ed.brz-ed--desktop .brz-mb-lg-74{margin-bottom:74px!important}
4737
- .brz-ed.brz-ed--desktop .brz-mb-lg-75{margin-bottom:75px!important}
4738
- .brz-ed.brz-ed--desktop .brz-mb-lg-76{margin-bottom:76px!important}
4739
- .brz-ed.brz-ed--desktop .brz-mb-lg-77{margin-bottom:77px!important}
4740
- .brz-ed.brz-ed--desktop .brz-mb-lg-78{margin-bottom:78px!important}
4741
- .brz-ed.brz-ed--desktop .brz-mb-lg-79{margin-bottom:79px!important}
4742
- .brz-ed.brz-ed--desktop .brz-mb-lg-80{margin-bottom:80px!important}
4743
- .brz-ed.brz-ed--desktop .brz-mb-lg-81{margin-bottom:81px!important}
4744
- .brz-ed.brz-ed--desktop .brz-mb-lg-82{margin-bottom:82px!important}
4745
- .brz-ed.brz-ed--desktop .brz-mb-lg-83{margin-bottom:83px!important}
4746
- .brz-ed.brz-ed--desktop .brz-mb-lg-84{margin-bottom:84px!important}
4747
- .brz-ed.brz-ed--desktop .brz-mb-lg-85{margin-bottom:85px!important}
4748
- .brz-ed.brz-ed--desktop .brz-mb-lg-86{margin-bottom:86px!important}
4749
- .brz-ed.brz-ed--desktop .brz-mb-lg-87{margin-bottom:87px!important}
4750
- .brz-ed.brz-ed--desktop .brz-mb-lg-88{margin-bottom:88px!important}
4751
- .brz-ed.brz-ed--desktop .brz-mb-lg-89{margin-bottom:89px!important}
4752
- .brz-ed.brz-ed--desktop .brz-mb-lg-90{margin-bottom:90px!important}
4753
- .brz-ed.brz-ed--desktop .brz-mb-lg-91{margin-bottom:91px!important}
4754
- .brz-ed.brz-ed--desktop .brz-mb-lg-92{margin-bottom:92px!important}
4755
- .brz-ed.brz-ed--desktop .brz-mb-lg-93{margin-bottom:93px!important}
4756
- .brz-ed.brz-ed--desktop .brz-mb-lg-94{margin-bottom:94px!important}
4757
- .brz-ed.brz-ed--desktop .brz-mb-lg-95{margin-bottom:95px!important}
4758
- .brz-ed.brz-ed--desktop .brz-mb-lg-96{margin-bottom:96px!important}
4759
- .brz-ed.brz-ed--desktop .brz-mb-lg-97{margin-bottom:97px!important}
4760
- .brz-ed.brz-ed--desktop .brz-mb-lg-98{margin-bottom:98px!important}
4761
- .brz-ed.brz-ed--desktop .brz-mb-lg-99{margin-bottom:99px!important}
4762
- .brz-ed.brz-ed--desktop .brz-mb-lg-100{margin-bottom:100px!important}
4763
- .brz-ed.brz-ed--tablet .brz-mt-sm-0{margin-top:0!important}
4764
- .brz-ed.brz-ed--tablet .brz-mt-sm-1{margin-top:1px!important}
4765
- .brz-ed.brz-ed--tablet .brz-mt-sm-2{margin-top:2px!important}
4766
- .brz-ed.brz-ed--tablet .brz-mt-sm-3{margin-top:3px!important}
4767
- .brz-ed.brz-ed--tablet .brz-mt-sm-4{margin-top:4px!important}
4768
- .brz-ed.brz-ed--tablet .brz-mt-sm-5{margin-top:5px!important}
4769
- .brz-ed.brz-ed--tablet .brz-mt-sm-6{margin-top:6px!important}
4770
- .brz-ed.brz-ed--tablet .brz-mt-sm-7{margin-top:7px!important}
4771
- .brz-ed.brz-ed--tablet .brz-mt-sm-8{margin-top:8px!important}
4772
- .brz-ed.brz-ed--tablet .brz-mt-sm-9{margin-top:9px!important}
4773
- .brz-ed.brz-ed--tablet .brz-mt-sm-10{margin-top:10px!important}
4774
- .brz-ed.brz-ed--tablet .brz-mt-sm-11{margin-top:11px!important}
4775
- .brz-ed.brz-ed--tablet .brz-mt-sm-12{margin-top:12px!important}
4776
- .brz-ed.brz-ed--tablet .brz-mt-sm-13{margin-top:13px!important}
4777
- .brz-ed.brz-ed--tablet .brz-mt-sm-14{margin-top:14px!important}
4778
- .brz-ed.brz-ed--tablet .brz-mt-sm-15{margin-top:15px!important}
4779
- .brz-ed.brz-ed--tablet .brz-mt-sm-16{margin-top:16px!important}
4780
- .brz-ed.brz-ed--tablet .brz-mt-sm-17{margin-top:17px!important}
4781
- .brz-ed.brz-ed--tablet .brz-mt-sm-18{margin-top:18px!important}
4782
- .brz-ed.brz-ed--tablet .brz-mt-sm-19{margin-top:19px!important}
4783
- .brz-ed.brz-ed--tablet .brz-mt-sm-20{margin-top:20px!important}
4784
- .brz-ed.brz-ed--tablet .brz-mt-sm-21{margin-top:21px!important}
4785
- .brz-ed.brz-ed--tablet .brz-mt-sm-22{margin-top:22px!important}
4786
- .brz-ed.brz-ed--tablet .brz-mt-sm-23{margin-top:23px!important}
4787
- .brz-ed.brz-ed--tablet .brz-mt-sm-24{margin-top:24px!important}
4788
- .brz-ed.brz-ed--tablet .brz-mt-sm-25{margin-top:25px!important}
4789
- .brz-ed.brz-ed--tablet .brz-mt-sm-26{margin-top:26px!important}
4790
- .brz-ed.brz-ed--tablet .brz-mt-sm-27{margin-top:27px!important}
4791
- .brz-ed.brz-ed--tablet .brz-mt-sm-28{margin-top:28px!important}
4792
- .brz-ed.brz-ed--tablet .brz-mt-sm-29{margin-top:29px!important}
4793
- .brz-ed.brz-ed--tablet .brz-mt-sm-30{margin-top:30px!important}
4794
- .brz-ed.brz-ed--tablet .brz-mt-sm-31{margin-top:31px!important}
4795
- .brz-ed.brz-ed--tablet .brz-mt-sm-32{margin-top:32px!important}
4796
- .brz-ed.brz-ed--tablet .brz-mt-sm-33{margin-top:33px!important}
4797
- .brz-ed.brz-ed--tablet .brz-mt-sm-34{margin-top:34px!important}
4798
- .brz-ed.brz-ed--tablet .brz-mt-sm-35{margin-top:35px!important}
4799
- .brz-ed.brz-ed--tablet .brz-mt-sm-36{margin-top:36px!important}
4800
- .brz-ed.brz-ed--tablet .brz-mt-sm-37{margin-top:37px!important}
4801
- .brz-ed.brz-ed--tablet .brz-mt-sm-38{margin-top:38px!important}
4802
- .brz-ed.brz-ed--tablet .brz-mt-sm-39{margin-top:39px!important}
4803
- .brz-ed.brz-ed--tablet .brz-mt-sm-40{margin-top:40px!important}
4804
- .brz-ed.brz-ed--tablet .brz-mt-sm-41{margin-top:41px!important}
4805
- .brz-ed.brz-ed--tablet .brz-mt-sm-42{margin-top:42px!important}
4806
- .brz-ed.brz-ed--tablet .brz-mt-sm-43{margin-top:43px!important}
4807
- .brz-ed.brz-ed--tablet .brz-mt-sm-44{margin-top:44px!important}
4808
- .brz-ed.brz-ed--tablet .brz-mt-sm-45{margin-top:45px!important}
4809
- .brz-ed.brz-ed--tablet .brz-mt-sm-46{margin-top:46px!important}
4810
- .brz-ed.brz-ed--tablet .brz-mt-sm-47{margin-top:47px!important}
4811
- .brz-ed.brz-ed--tablet .brz-mt-sm-48{margin-top:48px!important}
4812
- .brz-ed.brz-ed--tablet .brz-mt-sm-49{margin-top:49px!important}
4813
- .brz-ed.brz-ed--tablet .brz-mt-sm-50{margin-top:50px!important}
4814
- .brz-ed.brz-ed--tablet .brz-mt-sm-51{margin-top:51px!important}
4815
- .brz-ed.brz-ed--tablet .brz-mt-sm-52{margin-top:52px!important}
4816
- .brz-ed.brz-ed--tablet .brz-mt-sm-53{margin-top:53px!important}
4817
- .brz-ed.brz-ed--tablet .brz-mt-sm-54{margin-top:54px!important}
4818
- .brz-ed.brz-ed--tablet .brz-mt-sm-55{margin-top:55px!important}
4819
- .brz-ed.brz-ed--tablet .brz-mt-sm-56{margin-top:56px!important}
4820
- .brz-ed.brz-ed--tablet .brz-mt-sm-57{margin-top:57px!important}
4821
- .brz-ed.brz-ed--tablet .brz-mt-sm-58{margin-top:58px!important}
4822
- .brz-ed.brz-ed--tablet .brz-mt-sm-59{margin-top:59px!important}
4823
- .brz-ed.brz-ed--tablet .brz-mt-sm-60{margin-top:60px!important}
4824
- .brz-ed.brz-ed--tablet .brz-mt-sm-61{margin-top:61px!important}
4825
- .brz-ed.brz-ed--tablet .brz-mt-sm-62{margin-top:62px!important}
4826
- .brz-ed.brz-ed--tablet .brz-mt-sm-63{margin-top:63px!important}
4827
- .brz-ed.brz-ed--tablet .brz-mt-sm-64{margin-top:64px!important}
4828
- .brz-ed.brz-ed--tablet .brz-mt-sm-65{margin-top:65px!important}
4829
- .brz-ed.brz-ed--tablet .brz-mt-sm-66{margin-top:66px!important}
4830
- .brz-ed.brz-ed--tablet .brz-mt-sm-67{margin-top:67px!important}
4831
- .brz-ed.brz-ed--tablet .brz-mt-sm-68{margin-top:68px!important}
4832
- .brz-ed.brz-ed--tablet .brz-mt-sm-69{margin-top:69px!important}
4833
- .brz-ed.brz-ed--tablet .brz-mt-sm-70{margin-top:70px!important}
4834
- .brz-ed.brz-ed--tablet .brz-mt-sm-71{margin-top:71px!important}
4835
- .brz-ed.brz-ed--tablet .brz-mt-sm-72{margin-top:72px!important}
4836
- .brz-ed.brz-ed--tablet .brz-mt-sm-73{margin-top:73px!important}
4837
- .brz-ed.brz-ed--tablet .brz-mt-sm-74{margin-top:74px!important}
4838
- .brz-ed.brz-ed--tablet .brz-mt-sm-75{margin-top:75px!important}
4839
- .brz-ed.brz-ed--tablet .brz-mt-sm-76{margin-top:76px!important}
4840
- .brz-ed.brz-ed--tablet .brz-mt-sm-77{margin-top:77px!important}
4841
- .brz-ed.brz-ed--tablet .brz-mt-sm-78{margin-top:78px!important}
4842
- .brz-ed.brz-ed--tablet .brz-mt-sm-79{margin-top:79px!important}
4843
- .brz-ed.brz-ed--tablet .brz-mt-sm-80{margin-top:80px!important}
4844
- .brz-ed.brz-ed--tablet .brz-mt-sm-81{margin-top:81px!important}
4845
- .brz-ed.brz-ed--tablet .brz-mt-sm-82{margin-top:82px!important}
4846
- .brz-ed.brz-ed--tablet .brz-mt-sm-83{margin-top:83px!important}
4847
- .brz-ed.brz-ed--tablet .brz-mt-sm-84{margin-top:84px!important}
4848
- .brz-ed.brz-ed--tablet .brz-mt-sm-85{margin-top:85px!important}
4849
- .brz-ed.brz-ed--tablet .brz-mt-sm-86{margin-top:86px!important}
4850
- .brz-ed.brz-ed--tablet .brz-mt-sm-87{margin-top:87px!important}
4851
- .brz-ed.brz-ed--tablet .brz-mt-sm-88{margin-top:88px!important}
4852
- .brz-ed.brz-ed--tablet .brz-mt-sm-89{margin-top:89px!important}
4853
- .brz-ed.brz-ed--tablet .brz-mt-sm-90{margin-top:90px!important}
4854
- .brz-ed.brz-ed--tablet .brz-mt-sm-91{margin-top:91px!important}
4855
- .brz-ed.brz-ed--tablet .brz-mt-sm-92{margin-top:92px!important}
4856
- .brz-ed.brz-ed--tablet .brz-mt-sm-93{margin-top:93px!important}
4857
- .brz-ed.brz-ed--tablet .brz-mt-sm-94{margin-top:94px!important}
4858
- .brz-ed.brz-ed--tablet .brz-mt-sm-95{margin-top:95px!important}
4859
- .brz-ed.brz-ed--tablet .brz-mt-sm-96{margin-top:96px!important}
4860
- .brz-ed.brz-ed--tablet .brz-mt-sm-97{margin-top:97px!important}
4861
- .brz-ed.brz-ed--tablet .brz-mt-sm-98{margin-top:98px!important}
4862
- .brz-ed.brz-ed--tablet .brz-mt-sm-99{margin-top:99px!important}
4863
- .brz-ed.brz-ed--tablet .brz-mt-sm-100{margin-top:100px!important}
4864
- .brz-ed.brz-ed--tablet .brz-mb-sm-0{margin-bottom:0!important}
4865
- .brz-ed.brz-ed--tablet .brz-mb-sm-1{margin-bottom:1px!important}
4866
- .brz-ed.brz-ed--tablet .brz-mb-sm-2{margin-bottom:2px!important}
4867
- .brz-ed.brz-ed--tablet .brz-mb-sm-3{margin-bottom:3px!important}
4868
- .brz-ed.brz-ed--tablet .brz-mb-sm-4{margin-bottom:4px!important}
4869
- .brz-ed.brz-ed--tablet .brz-mb-sm-5{margin-bottom:5px!important}
4870
- .brz-ed.brz-ed--tablet .brz-mb-sm-6{margin-bottom:6px!important}
4871
- .brz-ed.brz-ed--tablet .brz-mb-sm-7{margin-bottom:7px!important}
4872
- .brz-ed.brz-ed--tablet .brz-mb-sm-8{margin-bottom:8px!important}
4873
- .brz-ed.brz-ed--tablet .brz-mb-sm-9{margin-bottom:9px!important}
4874
- .brz-ed.brz-ed--tablet .brz-mb-sm-10{margin-bottom:10px!important}
4875
- .brz-ed.brz-ed--tablet .brz-mb-sm-11{margin-bottom:11px!important}
4876
- .brz-ed.brz-ed--tablet .brz-mb-sm-12{margin-bottom:12px!important}
4877
- .brz-ed.brz-ed--tablet .brz-mb-sm-13{margin-bottom:13px!important}
4878
- .brz-ed.brz-ed--tablet .brz-mb-sm-14{margin-bottom:14px!important}
4879
- .brz-ed.brz-ed--tablet .brz-mb-sm-15{margin-bottom:15px!important}
4880
- .brz-ed.brz-ed--tablet .brz-mb-sm-16{margin-bottom:16px!important}
4881
- .brz-ed.brz-ed--tablet .brz-mb-sm-17{margin-bottom:17px!important}
4882
- .brz-ed.brz-ed--tablet .brz-mb-sm-18{margin-bottom:18px!important}
4883
- .brz-ed.brz-ed--tablet .brz-mb-sm-19{margin-bottom:19px!important}
4884
- .brz-ed.brz-ed--tablet .brz-mb-sm-20{margin-bottom:20px!important}
4885
- .brz-ed.brz-ed--tablet .brz-mb-sm-21{margin-bottom:21px!important}
4886
- .brz-ed.brz-ed--tablet .brz-mb-sm-22{margin-bottom:22px!important}
4887
- .brz-ed.brz-ed--tablet .brz-mb-sm-23{margin-bottom:23px!important}
4888
- .brz-ed.brz-ed--tablet .brz-mb-sm-24{margin-bottom:24px!important}
4889
- .brz-ed.brz-ed--tablet .brz-mb-sm-25{margin-bottom:25px!important}
4890
- .brz-ed.brz-ed--tablet .brz-mb-sm-26{margin-bottom:26px!important}
4891
- .brz-ed.brz-ed--tablet .brz-mb-sm-27{margin-bottom:27px!important}
4892
- .brz-ed.brz-ed--tablet .brz-mb-sm-28{margin-bottom:28px!important}
4893
- .brz-ed.brz-ed--tablet .brz-mb-sm-29{margin-bottom:29px!important}
4894
- .brz-ed.brz-ed--tablet .brz-mb-sm-30{margin-bottom:30px!important}
4895
- .brz-ed.brz-ed--tablet .brz-mb-sm-31{margin-bottom:31px!important}
4896
- .brz-ed.brz-ed--tablet .brz-mb-sm-32{margin-bottom:32px!important}
4897
- .brz-ed.brz-ed--tablet .brz-mb-sm-33{margin-bottom:33px!important}
4898
- .brz-ed.brz-ed--tablet .brz-mb-sm-34{margin-bottom:34px!important}
4899
- .brz-ed.brz-ed--tablet .brz-mb-sm-35{margin-bottom:35px!important}
4900
- .brz-ed.brz-ed--tablet .brz-mb-sm-36{margin-bottom:36px!important}
4901
- .brz-ed.brz-ed--tablet .brz-mb-sm-37{margin-bottom:37px!important}
4902
- .brz-ed.brz-ed--tablet .brz-mb-sm-38{margin-bottom:38px!important}
4903
- .brz-ed.brz-ed--tablet .brz-mb-sm-39{margin-bottom:39px!important}
4904
- .brz-ed.brz-ed--tablet .brz-mb-sm-40{margin-bottom:40px!important}
4905
- .brz-ed.brz-ed--tablet .brz-mb-sm-41{margin-bottom:41px!important}
4906
- .brz-ed.brz-ed--tablet .brz-mb-sm-42{margin-bottom:42px!important}
4907
- .brz-ed.brz-ed--tablet .brz-mb-sm-43{margin-bottom:43px!important}
4908
- .brz-ed.brz-ed--tablet .brz-mb-sm-44{margin-bottom:44px!important}
4909
- .brz-ed.brz-ed--tablet .brz-mb-sm-45{margin-bottom:45px!important}
4910
- .brz-ed.brz-ed--tablet .brz-mb-sm-46{margin-bottom:46px!important}
4911
- .brz-ed.brz-ed--tablet .brz-mb-sm-47{margin-bottom:47px!important}
4912
- .brz-ed.brz-ed--tablet .brz-mb-sm-48{margin-bottom:48px!important}
4913
- .brz-ed.brz-ed--tablet .brz-mb-sm-49{margin-bottom:49px!important}
4914
- .brz-ed.brz-ed--tablet .brz-mb-sm-50{margin-bottom:50px!important}
4915
- .brz-ed.brz-ed--tablet .brz-mb-sm-51{margin-bottom:51px!important}
4916
- .brz-ed.brz-ed--tablet .brz-mb-sm-52{margin-bottom:52px!important}
4917
- .brz-ed.brz-ed--tablet .brz-mb-sm-53{margin-bottom:53px!important}
4918
- .brz-ed.brz-ed--tablet .brz-mb-sm-54{margin-bottom:54px!important}
4919
- .brz-ed.brz-ed--tablet .brz-mb-sm-55{margin-bottom:55px!important}
4920
- .brz-ed.brz-ed--tablet .brz-mb-sm-56{margin-bottom:56px!important}
4921
- .brz-ed.brz-ed--tablet .brz-mb-sm-57{margin-bottom:57px!important}
4922
- .brz-ed.brz-ed--tablet .brz-mb-sm-58{margin-bottom:58px!important}
4923
- .brz-ed.brz-ed--tablet .brz-mb-sm-59{margin-bottom:59px!important}
4924
- .brz-ed.brz-ed--tablet .brz-mb-sm-60{margin-bottom:60px!important}
4925
- .brz-ed.brz-ed--tablet .brz-mb-sm-61{margin-bottom:61px!important}
4926
- .brz-ed.brz-ed--tablet .brz-mb-sm-62{margin-bottom:62px!important}
4927
- .brz-ed.brz-ed--tablet .brz-mb-sm-63{margin-bottom:63px!important}
4928
- .brz-ed.brz-ed--tablet .brz-mb-sm-64{margin-bottom:64px!important}
4929
- .brz-ed.brz-ed--tablet .brz-mb-sm-65{margin-bottom:65px!important}
4930
- .brz-ed.brz-ed--tablet .brz-mb-sm-66{margin-bottom:66px!important}
4931
- .brz-ed.brz-ed--tablet .brz-mb-sm-67{margin-bottom:67px!important}
4932
- .brz-ed.brz-ed--tablet .brz-mb-sm-68{margin-bottom:68px!important}
4933
- .brz-ed.brz-ed--tablet .brz-mb-sm-69{margin-bottom:69px!important}
4934
- .brz-ed.brz-ed--tablet .brz-mb-sm-70{margin-bottom:70px!important}
4935
- .brz-ed.brz-ed--tablet .brz-mb-sm-71{margin-bottom:71px!important}
4936
- .brz-ed.brz-ed--tablet .brz-mb-sm-72{margin-bottom:72px!important}
4937
- .brz-ed.brz-ed--tablet .brz-mb-sm-73{margin-bottom:73px!important}
4938
- .brz-ed.brz-ed--tablet .brz-mb-sm-74{margin-bottom:74px!important}
4939
- .brz-ed.brz-ed--tablet .brz-mb-sm-75{margin-bottom:75px!important}
4940
- .brz-ed.brz-ed--tablet .brz-mb-sm-76{margin-bottom:76px!important}
4941
- .brz-ed.brz-ed--tablet .brz-mb-sm-77{margin-bottom:77px!important}
4942
- .brz-ed.brz-ed--tablet .brz-mb-sm-78{margin-bottom:78px!important}
4943
- .brz-ed.brz-ed--tablet .brz-mb-sm-79{margin-bottom:79px!important}
4944
- .brz-ed.brz-ed--tablet .brz-mb-sm-80{margin-bottom:80px!important}
4945
- .brz-ed.brz-ed--tablet .brz-mb-sm-81{margin-bottom:81px!important}
4946
- .brz-ed.brz-ed--tablet .brz-mb-sm-82{margin-bottom:82px!important}
4947
- .brz-ed.brz-ed--tablet .brz-mb-sm-83{margin-bottom:83px!important}
4948
- .brz-ed.brz-ed--tablet .brz-mb-sm-84{margin-bottom:84px!important}
4949
- .brz-ed.brz-ed--tablet .brz-mb-sm-85{margin-bottom:85px!important}
4950
- .brz-ed.brz-ed--tablet .brz-mb-sm-86{margin-bottom:86px!important}
4951
- .brz-ed.brz-ed--tablet .brz-mb-sm-87{margin-bottom:87px!important}
4952
- .brz-ed.brz-ed--tablet .brz-mb-sm-88{margin-bottom:88px!important}
4953
- .brz-ed.brz-ed--tablet .brz-mb-sm-89{margin-bottom:89px!important}
4954
- .brz-ed.brz-ed--tablet .brz-mb-sm-90{margin-bottom:90px!important}
4955
- .brz-ed.brz-ed--tablet .brz-mb-sm-91{margin-bottom:91px!important}
4956
- .brz-ed.brz-ed--tablet .brz-mb-sm-92{margin-bottom:92px!important}
4957
- .brz-ed.brz-ed--tablet .brz-mb-sm-93{margin-bottom:93px!important}
4958
- .brz-ed.brz-ed--tablet .brz-mb-sm-94{margin-bottom:94px!important}
4959
- .brz-ed.brz-ed--tablet .brz-mb-sm-95{margin-bottom:95px!important}
4960
- .brz-ed.brz-ed--tablet .brz-mb-sm-96{margin-bottom:96px!important}
4961
- .brz-ed.brz-ed--tablet .brz-mb-sm-97{margin-bottom:97px!important}
4962
- .brz-ed.brz-ed--tablet .brz-mb-sm-98{margin-bottom:98px!important}
4963
- .brz-ed.brz-ed--tablet .brz-mb-sm-99{margin-bottom:99px!important}
4964
- .brz-ed.brz-ed--tablet .brz-mb-sm-100{margin-bottom:100px!important}
4965
- .brz-ed.brz-ed--mobile .brz-mt-xs-0{margin-top:0!important}
4966
- .brz-ed.brz-ed--mobile .brz-mt-xs-1{margin-top:1px!important}
4967
- .brz-ed.brz-ed--mobile .brz-mt-xs-2{margin-top:2px!important}
4968
- .brz-ed.brz-ed--mobile .brz-mt-xs-3{margin-top:3px!important}
4969
- .brz-ed.brz-ed--mobile .brz-mt-xs-4{margin-top:4px!important}
4970
- .brz-ed.brz-ed--mobile .brz-mt-xs-5{margin-top:5px!important}
4971
- .brz-ed.brz-ed--mobile .brz-mt-xs-6{margin-top:6px!important}
4972
- .brz-ed.brz-ed--mobile .brz-mt-xs-7{margin-top:7px!important}
4973
- .brz-ed.brz-ed--mobile .brz-mt-xs-8{margin-top:8px!important}
4974
- .brz-ed.brz-ed--mobile .brz-mt-xs-9{margin-top:9px!important}
4975
- .brz-ed.brz-ed--mobile .brz-mt-xs-10{margin-top:10px!important}
4976
- .brz-ed.brz-ed--mobile .brz-mt-xs-11{margin-top:11px!important}
4977
- .brz-ed.brz-ed--mobile .brz-mt-xs-12{margin-top:12px!important}
4978
- .brz-ed.brz-ed--mobile .brz-mt-xs-13{margin-top:13px!important}
4979
- .brz-ed.brz-ed--mobile .brz-mt-xs-14{margin-top:14px!important}
4980
- .brz-ed.brz-ed--mobile .brz-mt-xs-15{margin-top:15px!important}
4981
- .brz-ed.brz-ed--mobile .brz-mt-xs-16{margin-top:16px!important}
4982
- .brz-ed.brz-ed--mobile .brz-mt-xs-17{margin-top:17px!important}
4983
- .brz-ed.brz-ed--mobile .brz-mt-xs-18{margin-top:18px!important}
4984
- .brz-ed.brz-ed--mobile .brz-mt-xs-19{margin-top:19px!important}
4985
- .brz-ed.brz-ed--mobile .brz-mt-xs-20{margin-top:20px!important}
4986
- .brz-ed.brz-ed--mobile .brz-mt-xs-21{margin-top:21px!important}
4987
- .brz-ed.brz-ed--mobile .brz-mt-xs-22{margin-top:22px!important}
4988
- .brz-ed.brz-ed--mobile .brz-mt-xs-23{margin-top:23px!important}
4989
- .brz-ed.brz-ed--mobile .brz-mt-xs-24{margin-top:24px!important}
4990
- .brz-ed.brz-ed--mobile .brz-mt-xs-25{margin-top:25px!important}
4991
- .brz-ed.brz-ed--mobile .brz-mt-xs-26{margin-top:26px!important}
4992
- .brz-ed.brz-ed--mobile .brz-mt-xs-27{margin-top:27px!important}
4993
- .brz-ed.brz-ed--mobile .brz-mt-xs-28{margin-top:28px!important}
4994
- .brz-ed.brz-ed--mobile .brz-mt-xs-29{margin-top:29px!important}
4995
- .brz-ed.brz-ed--mobile .brz-mt-xs-30{margin-top:30px!important}
4996
- .brz-ed.brz-ed--mobile .brz-mt-xs-31{margin-top:31px!important}
4997
- .brz-ed.brz-ed--mobile .brz-mt-xs-32{margin-top:32px!important}
4998
- .brz-ed.brz-ed--mobile .brz-mt-xs-33{margin-top:33px!important}
4999
- .brz-ed.brz-ed--mobile .brz-mt-xs-34{margin-top:34px!important}
5000
- .brz-ed.brz-ed--mobile .brz-mt-xs-35{margin-top:35px!important}
5001
- .brz-ed.brz-ed--mobile .brz-mt-xs-36{margin-top:36px!important}
5002
- .brz-ed.brz-ed--mobile .brz-mt-xs-37{margin-top:37px!important}
5003
- .brz-ed.brz-ed--mobile .brz-mt-xs-38{margin-top:38px!important}
5004
- .brz-ed.brz-ed--mobile .brz-mt-xs-39{margin-top:39px!important}
5005
- .brz-ed.brz-ed--mobile .brz-mt-xs-40{margin-top:40px!important}
5006
- .brz-ed.brz-ed--mobile .brz-mt-xs-41{margin-top:41px!important}
5007
- .brz-ed.brz-ed--mobile .brz-mt-xs-42{margin-top:42px!important}
5008
- .brz-ed.brz-ed--mobile .brz-mt-xs-43{margin-top:43px!important}
5009
- .brz-ed.brz-ed--mobile .brz-mt-xs-44{margin-top:44px!important}
5010
- .brz-ed.brz-ed--mobile .brz-mt-xs-45{margin-top:45px!important}
5011
- .brz-ed.brz-ed--mobile .brz-mt-xs-46{margin-top:46px!important}
5012
- .brz-ed.brz-ed--mobile .brz-mt-xs-47{margin-top:47px!important}
5013
- .brz-ed.brz-ed--mobile .brz-mt-xs-48{margin-top:48px!important}
5014
- .brz-ed.brz-ed--mobile .brz-mt-xs-49{margin-top:49px!important}
5015
- .brz-ed.brz-ed--mobile .brz-mt-xs-50{margin-top:50px!important}
5016
- .brz-ed.brz-ed--mobile .brz-mt-xs-51{margin-top:51px!important}
5017
- .brz-ed.brz-ed--mobile .brz-mt-xs-52{margin-top:52px!important}
5018
- .brz-ed.brz-ed--mobile .brz-mt-xs-53{margin-top:53px!important}
5019
- .brz-ed.brz-ed--mobile .brz-mt-xs-54{margin-top:54px!important}
5020
- .brz-ed.brz-ed--mobile .brz-mt-xs-55{margin-top:55px!important}
5021
- .brz-ed.brz-ed--mobile .brz-mt-xs-56{margin-top:56px!important}
5022
- .brz-ed.brz-ed--mobile .brz-mt-xs-57{margin-top:57px!important}
5023
- .brz-ed.brz-ed--mobile .brz-mt-xs-58{margin-top:58px!important}
5024
- .brz-ed.brz-ed--mobile .brz-mt-xs-59{margin-top:59px!important}
5025
- .brz-ed.brz-ed--mobile .brz-mt-xs-60{margin-top:60px!important}
5026
- .brz-ed.brz-ed--mobile .brz-mt-xs-61{margin-top:61px!important}
5027
- .brz-ed.brz-ed--mobile .brz-mt-xs-62{margin-top:62px!important}
5028
- .brz-ed.brz-ed--mobile .brz-mt-xs-63{margin-top:63px!important}
5029
- .brz-ed.brz-ed--mobile .brz-mt-xs-64{margin-top:64px!important}
5030
- .brz-ed.brz-ed--mobile .brz-mt-xs-65{margin-top:65px!important}
5031
- .brz-ed.brz-ed--mobile .brz-mt-xs-66{margin-top:66px!important}
5032
- .brz-ed.brz-ed--mobile .brz-mt-xs-67{margin-top:67px!important}
5033
- .brz-ed.brz-ed--mobile .brz-mt-xs-68{margin-top:68px!important}
5034
- .brz-ed.brz-ed--mobile .brz-mt-xs-69{margin-top:69px!important}
5035
- .brz-ed.brz-ed--mobile .brz-mt-xs-70{margin-top:70px!important}
5036
- .brz-ed.brz-ed--mobile .brz-mt-xs-71{margin-top:71px!important}
5037
- .brz-ed.brz-ed--mobile .brz-mt-xs-72{margin-top:72px!important}
5038
- .brz-ed.brz-ed--mobile .brz-mt-xs-73{margin-top:73px!important}
5039
- .brz-ed.brz-ed--mobile .brz-mt-xs-74{margin-top:74px!important}
5040
- .brz-ed.brz-ed--mobile .brz-mt-xs-75{margin-top:75px!important}
5041
- .brz-ed.brz-ed--mobile .brz-mt-xs-76{margin-top:76px!important}
5042
- .brz-ed.brz-ed--mobile .brz-mt-xs-77{margin-top:77px!important}
5043
- .brz-ed.brz-ed--mobile .brz-mt-xs-78{margin-top:78px!important}
5044
- .brz-ed.brz-ed--mobile .brz-mt-xs-79{margin-top:79px!important}
5045
- .brz-ed.brz-ed--mobile .brz-mt-xs-80{margin-top:80px!important}
5046
- .brz-ed.brz-ed--mobile .brz-mt-xs-81{margin-top:81px!important}
5047
- .brz-ed.brz-ed--mobile .brz-mt-xs-82{margin-top:82px!important}
5048
- .brz-ed.brz-ed--mobile .brz-mt-xs-83{margin-top:83px!important}
5049
- .brz-ed.brz-ed--mobile .brz-mt-xs-84{margin-top:84px!important}
5050
- .brz-ed.brz-ed--mobile .brz-mt-xs-85{margin-top:85px!important}
5051
- .brz-ed.brz-ed--mobile .brz-mt-xs-86{margin-top:86px!important}
5052
- .brz-ed.brz-ed--mobile .brz-mt-xs-87{margin-top:87px!important}
5053
- .brz-ed.brz-ed--mobile .brz-mt-xs-88{margin-top:88px!important}
5054
- .brz-ed.brz-ed--mobile .brz-mt-xs-89{margin-top:89px!important}
5055
- .brz-ed.brz-ed--mobile .brz-mt-xs-90{margin-top:90px!important}
5056
- .brz-ed.brz-ed--mobile .brz-mt-xs-91{margin-top:91px!important}
5057
- .brz-ed.brz-ed--mobile .brz-mt-xs-92{margin-top:92px!important}
5058
- .brz-ed.brz-ed--mobile .brz-mt-xs-93{margin-top:93px!important}
5059
- .brz-ed.brz-ed--mobile .brz-mt-xs-94{margin-top:94px!important}
5060
- .brz-ed.brz-ed--mobile .brz-mt-xs-95{margin-top:95px!important}
5061
- .brz-ed.brz-ed--mobile .brz-mt-xs-96{margin-top:96px!important}
5062
- .brz-ed.brz-ed--mobile .brz-mt-xs-97{margin-top:97px!important}
5063
- .brz-ed.brz-ed--mobile .brz-mt-xs-98{margin-top:98px!important}
5064
- .brz-ed.brz-ed--mobile .brz-mt-xs-99{margin-top:99px!important}
5065
- .brz-ed.brz-ed--mobile .brz-mt-xs-100{margin-top:100px!important}
5066
- .brz-ed.brz-ed--mobile .brz-mb-xs-0{margin-bottom:0!important}
5067
- .brz-ed.brz-ed--mobile .brz-mb-xs-1{margin-bottom:1px!important}
5068
- .brz-ed.brz-ed--mobile .brz-mb-xs-2{margin-bottom:2px!important}
5069
- .brz-ed.brz-ed--mobile .brz-mb-xs-3{margin-bottom:3px!important}
5070
- .brz-ed.brz-ed--mobile .brz-mb-xs-4{margin-bottom:4px!important}
5071
- .brz-ed.brz-ed--mobile .brz-mb-xs-5{margin-bottom:5px!important}
5072
- .brz-ed.brz-ed--mobile .brz-mb-xs-6{margin-bottom:6px!important}
5073
- .brz-ed.brz-ed--mobile .brz-mb-xs-7{margin-bottom:7px!important}
5074
- .brz-ed.brz-ed--mobile .brz-mb-xs-8{margin-bottom:8px!important}
5075
- .brz-ed.brz-ed--mobile .brz-mb-xs-9{margin-bottom:9px!important}
5076
- .brz-ed.brz-ed--mobile .brz-mb-xs-10{margin-bottom:10px!important}
5077
- .brz-ed.brz-ed--mobile .brz-mb-xs-11{margin-bottom:11px!important}
5078
- .brz-ed.brz-ed--mobile .brz-mb-xs-12{margin-bottom:12px!important}
5079
- .brz-ed.brz-ed--mobile .brz-mb-xs-13{margin-bottom:13px!important}
5080
- .brz-ed.brz-ed--mobile .brz-mb-xs-14{margin-bottom:14px!important}
5081
- .brz-ed.brz-ed--mobile .brz-mb-xs-15{margin-bottom:15px!important}
5082
- .brz-ed.brz-ed--mobile .brz-mb-xs-16{margin-bottom:16px!important}
5083
- .brz-ed.brz-ed--mobile .brz-mb-xs-17{margin-bottom:17px!important}
5084
- .brz-ed.brz-ed--mobile .brz-mb-xs-18{margin-bottom:18px!important}
5085
- .brz-ed.brz-ed--mobile .brz-mb-xs-19{margin-bottom:19px!important}
5086
- .brz-ed.brz-ed--mobile .brz-mb-xs-20{margin-bottom:20px!important}
5087
- .brz-ed.brz-ed--mobile .brz-mb-xs-21{margin-bottom:21px!important}
5088
- .brz-ed.brz-ed--mobile .brz-mb-xs-22{margin-bottom:22px!important}
5089
- .brz-ed.brz-ed--mobile .brz-mb-xs-23{margin-bottom:23px!important}
5090
- .brz-ed.brz-ed--mobile .brz-mb-xs-24{margin-bottom:24px!important}
5091
- .brz-ed.brz-ed--mobile .brz-mb-xs-25{margin-bottom:25px!important}
5092
- .brz-ed.brz-ed--mobile .brz-mb-xs-26{margin-bottom:26px!important}
5093
- .brz-ed.brz-ed--mobile .brz-mb-xs-27{margin-bottom:27px!important}
5094
- .brz-ed.brz-ed--mobile .brz-mb-xs-28{margin-bottom:28px!important}
5095
- .brz-ed.brz-ed--mobile .brz-mb-xs-29{margin-bottom:29px!important}
5096
- .brz-ed.brz-ed--mobile .brz-mb-xs-30{margin-bottom:30px!important}
5097
- .brz-ed.brz-ed--mobile .brz-mb-xs-31{margin-bottom:31px!important}
5098
- .brz-ed.brz-ed--mobile .brz-mb-xs-32{margin-bottom:32px!important}
5099
- .brz-ed.brz-ed--mobile .brz-mb-xs-33{margin-bottom:33px!important}
5100
- .brz-ed.brz-ed--mobile .brz-mb-xs-34{margin-bottom:34px!important}
5101
- .brz-ed.brz-ed--mobile .brz-mb-xs-35{margin-bottom:35px!important}
5102
- .brz-ed.brz-ed--mobile .brz-mb-xs-36{margin-bottom:36px!important}
5103
- .brz-ed.brz-ed--mobile .brz-mb-xs-37{margin-bottom:37px!important}
5104
- .brz-ed.brz-ed--mobile .brz-mb-xs-38{margin-bottom:38px!important}
5105
- .brz-ed.brz-ed--mobile .brz-mb-xs-39{margin-bottom:39px!important}
5106
- .brz-ed.brz-ed--mobile .brz-mb-xs-40{margin-bottom:40px!important}
5107
- .brz-ed.brz-ed--mobile .brz-mb-xs-41{margin-bottom:41px!important}
5108
- .brz-ed.brz-ed--mobile .brz-mb-xs-42{margin-bottom:42px!important}
5109
- .brz-ed.brz-ed--mobile .brz-mb-xs-43{margin-bottom:43px!important}
5110
- .brz-ed.brz-ed--mobile .brz-mb-xs-44{margin-bottom:44px!important}
5111
- .brz-ed.brz-ed--mobile .brz-mb-xs-45{margin-bottom:45px!important}
5112
- .brz-ed.brz-ed--mobile .brz-mb-xs-46{margin-bottom:46px!important}
5113
- .brz-ed.brz-ed--mobile .brz-mb-xs-47{margin-bottom:47px!important}
5114
- .brz-ed.brz-ed--mobile .brz-mb-xs-48{margin-bottom:48px!important}
5115
- .brz-ed.brz-ed--mobile .brz-mb-xs-49{margin-bottom:49px!important}
5116
- .brz-ed.brz-ed--mobile .brz-mb-xs-50{margin-bottom:50px!important}
5117
- .brz-ed.brz-ed--mobile .brz-mb-xs-51{margin-bottom:51px!important}
5118
- .brz-ed.brz-ed--mobile .brz-mb-xs-52{margin-bottom:52px!important}
5119
- .brz-ed.brz-ed--mobile .brz-mb-xs-53{margin-bottom:53px!important}
5120
- .brz-ed.brz-ed--mobile .brz-mb-xs-54{margin-bottom:54px!important}
5121
- .brz-ed.brz-ed--mobile .brz-mb-xs-55{margin-bottom:55px!important}
5122
- .brz-ed.brz-ed--mobile .brz-mb-xs-56{margin-bottom:56px!important}
5123
- .brz-ed.brz-ed--mobile .brz-mb-xs-57{margin-bottom:57px!important}
5124
- .brz-ed.brz-ed--mobile .brz-mb-xs-58{margin-bottom:58px!important}
5125
- .brz-ed.brz-ed--mobile .brz-mb-xs-59{margin-bottom:59px!important}
5126
- .brz-ed.brz-ed--mobile .brz-mb-xs-60{margin-bottom:60px!important}
5127
- .brz-ed.brz-ed--mobile .brz-mb-xs-61{margin-bottom:61px!important}
5128
- .brz-ed.brz-ed--mobile .brz-mb-xs-62{margin-bottom:62px!important}
5129
- .brz-ed.brz-ed--mobile .brz-mb-xs-63{margin-bottom:63px!important}
5130
- .brz-ed.brz-ed--mobile .brz-mb-xs-64{margin-bottom:64px!important}
5131
- .brz-ed.brz-ed--mobile .brz-mb-xs-65{margin-bottom:65px!important}
5132
- .brz-ed.brz-ed--mobile .brz-mb-xs-66{margin-bottom:66px!important}
5133
- .brz-ed.brz-ed--mobile .brz-mb-xs-67{margin-bottom:67px!important}
5134
- .brz-ed.brz-ed--mobile .brz-mb-xs-68{margin-bottom:68px!important}
5135
- .brz-ed.brz-ed--mobile .brz-mb-xs-69{margin-bottom:69px!important}
5136
- .brz-ed.brz-ed--mobile .brz-mb-xs-70{margin-bottom:70px!important}
5137
- .brz-ed.brz-ed--mobile .brz-mb-xs-71{margin-bottom:71px!important}
5138
- .brz-ed.brz-ed--mobile .brz-mb-xs-72{margin-bottom:72px!important}
5139
- .brz-ed.brz-ed--mobile .brz-mb-xs-73{margin-bottom:73px!important}
5140
- .brz-ed.brz-ed--mobile .brz-mb-xs-74{margin-bottom:74px!important}
5141
- .brz-ed.brz-ed--mobile .brz-mb-xs-75{margin-bottom:75px!important}
5142
- .brz-ed.brz-ed--mobile .brz-mb-xs-76{margin-bottom:76px!important}
5143
- .brz-ed.brz-ed--mobile .brz-mb-xs-77{margin-bottom:77px!important}
5144
- .brz-ed.brz-ed--mobile .brz-mb-xs-78{margin-bottom:78px!important}
5145
- .brz-ed.brz-ed--mobile .brz-mb-xs-79{margin-bottom:79px!important}
5146
- .brz-ed.brz-ed--mobile .brz-mb-xs-80{margin-bottom:80px!important}
5147
- .brz-ed.brz-ed--mobile .brz-mb-xs-81{margin-bottom:81px!important}
5148
- .brz-ed.brz-ed--mobile .brz-mb-xs-82{margin-bottom:82px!important}
5149
- .brz-ed.brz-ed--mobile .brz-mb-xs-83{margin-bottom:83px!important}
5150
- .brz-ed.brz-ed--mobile .brz-mb-xs-84{margin-bottom:84px!important}
5151
- .brz-ed.brz-ed--mobile .brz-mb-xs-85{margin-bottom:85px!important}
5152
- .brz-ed.brz-ed--mobile .brz-mb-xs-86{margin-bottom:86px!important}
5153
- .brz-ed.brz-ed--mobile .brz-mb-xs-87{margin-bottom:87px!important}
5154
- .brz-ed.brz-ed--mobile .brz-mb-xs-88{margin-bottom:88px!important}
5155
- .brz-ed.brz-ed--mobile .brz-mb-xs-89{margin-bottom:89px!important}
5156
- .brz-ed.brz-ed--mobile .brz-mb-xs-90{margin-bottom:90px!important}
5157
- .brz-ed.brz-ed--mobile .brz-mb-xs-91{margin-bottom:91px!important}
5158
- .brz-ed.brz-ed--mobile .brz-mb-xs-92{margin-bottom:92px!important}
5159
- .brz-ed.brz-ed--mobile .brz-mb-xs-93{margin-bottom:93px!important}
5160
- .brz-ed.brz-ed--mobile .brz-mb-xs-94{margin-bottom:94px!important}
5161
- .brz-ed.brz-ed--mobile .brz-mb-xs-95{margin-bottom:95px!important}
5162
- .brz-ed.brz-ed--mobile .brz-mb-xs-96{margin-bottom:96px!important}
5163
- .brz-ed.brz-ed--mobile .brz-mb-xs-97{margin-bottom:97px!important}
5164
- .brz-ed.brz-ed--mobile .brz-mb-xs-98{margin-bottom:98px!important}
5165
- .brz-ed.brz-ed--mobile .brz-mb-xs-99{margin-bottom:99px!important}
5166
- .brz-ed.brz-ed--mobile .brz-mb-xs-100{margin-bottom:100px!important}
5167
- .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}
5168
- .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}
5169
- .brz-ed .brz-text-lg-center{text-align:center!important;-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}
5170
- .brz-ed .brz-text-lg-justify{text-align:justify!important}
5171
- .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}
5172
- .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}
5173
- .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}
5174
- .brz-ed.brz-ed--desktop .brz-text-lg-justify{text-align:justify!important}
5175
- .brz-ed.brz-ed--tablet .brz-text-sm-left{text-align:left!important;-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}
5176
- .brz-ed.brz-ed--tablet .brz-text-sm-right{text-align:right!important;-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}
5177
- .brz-ed.brz-ed--tablet .brz-text-sm-center{text-align:center!important;-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}
5178
- .brz-ed.brz-ed--tablet .brz-text-sm-justify{text-align:justify!important}
5179
- .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}
5180
- .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}
5181
- .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}
5182
- .brz-ed.brz-ed--mobile .brz-text-xs-justify{text-align:justify!important}
5183
- .brz-ed .brz-ed-arrow{position:absolute;top:-6px;height:12px;left:50%;margin-left:-6px}
5184
- .brz-ed .brz-ed-arrow:after{content:"";display:block;border-bottom:6px solid rgba(3,8,15,.92);border-left:6px solid transparent;border-right:6px solid transparent}
5185
- .brz-ed .brz-ed-arrow--top-center,.brz-ed .brz-ed-arrow--top-left,.brz-ed .brz-ed-arrow--top-right{top:auto;bottom:-12px}
5186
- .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}
5187
- .brz-ed .brz-ed-animated{-webkit-animation-duration:.15s;animation-duration:.15s;-webkit-animation-fill-mode:both;animation-fill-mode:both}
5188
- .brz-ed .brz-ed-animated--fadeInDown{-webkit-animation-name:brz-ed-fadeInDown;animation-name:brz-ed-fadeInDown}
5189
- .brz-ed .brz-ed-animated--fadeInUp{-webkit-animation-name:brz-ed-fadeInUp;animation-name:brz-ed-fadeInUp}
5190
- .brz-ed .brz-ed-animated--fadeIn{-webkit-animation-name:brz-ed-fadeIn;animation-name:brz-ed-fadeIn}
5191
- .brz-ed .brz-ed-animated--fadeInLeft{-webkit-animation-name:brz-ed-fadeInLeft;animation-name:brz-ed-fadeInLeft}
5192
- .brz-ed .brz-ed-animated--spin{-webkit-animation-name:brz-ed-spin;animation-name:brz-ed-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}
5193
- .brz-ed .brz-ed-fade-enter{opacity:.01}
5194
- .brz-ed .brz-ed-fade-enter.brz-ed-fade-enter-active{opacity:1;-webkit-transition:opacity 150ms ease-in;transition:opacity 150ms ease-in}
5195
- .brz-ed .brz-ed-fade-exit{opacity:1}
5196
- .brz-ed .brz-ed-fade-exit.brz-ed-fade-exit-active{opacity:.01;-webkit-transition:opacity 150ms ease-in;transition:opacity 150ms ease-in}
5197
- .brz-ed .brz-animated{-webkit-animation-fill-mode:none;animation-fill-mode:none}
5198
- .brz-ed .brz-ed-btn{display:-webkit-inline-box;display:-ms-inline-flexbox;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 transparent;text-align:center;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;background-image:none;white-space:nowrap;-webkit-transition:all .3s ease;transition:all .3s ease;text-decoration:none;font-family:nunito,"Open Sans",Arial,sans-serif;font-size:14px;padding:12px 18px;line-height:1;outline:0}
5199
- .brz-ed .brz-ed-btn:active{outline:0;background-image:none}
5200
- .brz-ed .brz-ed-btn:focus{outline:0}
5201
- .brz-ed .brz-ed-btn-icon .brz-icon-svg{margin-left:10px;vertical-align:middle}
5202
- .brz-ed .brz-ed-btn-icon span{display:inline-block;vertical-align:middle}
5203
- .brz-ed .brz-ed-btn-icon--left .brz-icon-svg{margin-left:0;margin-right:10px}
5204
- .brz-ed .brz-ed-btn--loading{pointer-events:none!important;-webkit-transition:none;transition:none}
5205
- .brz-ed .brz-ed-btn--loading .brz-icon-svg{margin:0;-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}
5206
- .brz-ed .brz-ed-btn--disabled{pointer-events:none!important;color:#fff!important;background-color:rgba(41,46,55,.5)!important;border-color:transparent!important}
5207
- .brz-ed .brz-ed-btn-rounded{border-radius:3px}
5208
- .brz-ed .brz-ed-btn-sm{padding:11px 17px;font-size:14px}
5209
- .brz-ed .brz-ed-btn-sm.brz-ed-btn-icon .brz-icon-svg{font-size:12px}
5210
- .brz-ed .brz-ed-btn-sm.brz-ed-btn--loading{font-size:16px;padding-top:10px;padding-bottom:10px}
5211
- .brz-ed .brz-ed-btn-xs{font-size:10px;padding:9px 18px}
5212
- .brz-ed .brz-ed-btn-full{width:100%}
5213
- .brz-ed .brz-ed-btn-width-1{min-width:130px}
5214
- .brz-ed .brz-ed-btn-width-2{min-width:176px}
5215
- .brz-ed .brz-ed-btn-width-3{min-width:102px}
5216
- .brz-ed .brz-ed-btn-default{border-color:transparent;background-color:transparent;color:#626b70}
5217
- .brz-ed .brz-ed-btn-default:hover{border-color:transparent;background-color:transparent}
5218
- .brz-ed .brz-ed-btn-dark{border-color:#3b474b;background-color:#3b474b;color:#fff}
5219
- .brz-ed .brz-ed-btn-dark:hover{border-color:#283337;background-color:#283337}
5220
- .brz-ed .brz-ed-btn-dark-outline{color:#3b474b;border-color:#3b474b;background-color:#fff}
5221
- .brz-ed .brz-ed-btn-dark-outline:hover{background-color:#3b474b;color:#fff!important}
5222
- .brz-ed .brz-ed-btn-teal{border-color:#3dbfe8;background-color:#3dbfe8;color:#fff!important}
5223
- .brz-ed .brz-ed-btn-teal:hover{border-color:#35a9d6;background-color:#35a9d6}
5224
- .brz-ed .brz-ed-btn-teal-outline{color:#34beea;border-color:#34beea;background-color:transparent}
5225
- .brz-ed .brz-ed-btn-teal-outline:focus,.brz-ed .brz-ed-btn-teal-outline:hover{background-color:#34beea;color:#fff!important}
5226
- .brz-ed .brz-ed-btn-green{border-color:#8dc63f;background-color:#8dc63f;color:#fff!important}
5227
- .brz-ed .brz-ed-btn-green:focus,.brz-ed .brz-ed-btn-green:hover{border-color:#8dc63f;background-color:#8dc63f}
5228
- .brz-ed .brz-ed-btn-green-outline{color:#8dc63f;border-color:#8dc63f;background-color:transparent}
5229
- .brz-ed .brz-ed-btn-green-outline:hover{background-color:#8dc63f;color:#fff!important}
5230
- .brz-ed .brz-ed-btn-gray{border-color:transparent;background-color:rgba(41,46,55,.5);color:#fff!important}
5231
- .brz-ed .brz-ed-btn-gray:focus,.brz-ed .brz-ed-btn-gray:hover{border-color:transparent;background-color:rgba(41,46,55,.5)}
5232
- .brz-ed .brz-ed-btn-gray-outline{color:rgba(41,46,55,.5);border-color:rgba(41,46,55,.5);background-color:transparent}
5233
- .brz-ed .brz-ed-btn-gray-outline:hover{background-color:rgba(41,46,55,.5);color:#fff!important}
5234
- .brz-ed .brz-ed-btn-red{border-color:#ed2164;background-color:#ed2164;color:#fff!important}
5235
- .brz-ed .brz-ed-btn-red:focus,.brz-ed .brz-ed-btn-red:hover{border-color:transparent;background-color:#df3c3c}
5236
- .brz-ed .brz-ed-btn-red-outline{color:#df3c3c;border-color:#df3c3c;background-color:transparent}
5237
- .brz-ed .brz-ed-btn-red-outline:hover{background-color:#df3c3c;color:#fff!important}
5238
- .brz-ed .brz-ed-btn-pro{border-color:transparent;background-color:#d62c64;color:#fff;font-size:14px;font-weight:600}
5239
- .brz-ed .brz-ed-btn-pro:focus,.brz-ed .brz-ed-btn-pro:hover{border-color:transparent;background-color:rgba(214,44,100,.8)}
5240
- .brz-ed .brz-ed-btn-teal--hover:hover{border-color:#3dbfe8!important;background-color:#3dbfe8!important}
5241
- .brz-ed .brz-ed-btn-red--hover:hover{border-color:#ed2164!important;background-color:#ed2164!important}
5242
- .brz-ed .brz-ed-alert{font:600 14px/18px nunito,"Open Sans",Arial,sans-serif;background-color:#f2f2f2;padding:12px 15px;margin:0 0 20px}
5243
- .brz-ed .brz-ed-alert-error{border-left:4px solid #df3c3c;color:#df3c3c;background-color:rgba(223,60,60,.1)}
5244
- .brz-ed .brz-ed-alert-error .brz-span{color:#df3c3c!important}
5245
- .brz-ed .brz-ed-alert-success{border-left:4px solid #6ab504;color:#6ab504;background-color:#eff5e8}
5246
- .brz-ed .brz-ed-alert-success .brz-span{color:#6ab504!important}
5247
- .brz-ed .brz-ed-alert-info{border-left:4px solid #47a9c8;color:#656b6f;background-color:#eff9fd}
5248
- .brz-ed .brz-ed-alert-info .popup-icon-info{float:left;margin:0 15px 5px 0;color:#47a9c8;border-color:#47a9c8}
5249
- .brz-ed .brz-ed-alert-info .brz-span{color:#47a9c8!important}
5250
- .brz-ed .popup-icon-info{font-family:nunito,"Open Sans",Arial,sans-serif;display:inline-block;border:2px solid #ccc;color:#ccc;width:32px;height:32px;text-align:center;line-height:32px;font-size:18px;border-radius:50%;margin-bottom:10px}
5251
- .brz-ed .brz-ed-alert-pro{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;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;color:#d62c64;background-color:#e0e1e2;padding:21px 36px}
5252
- .brz-ed .brz-ed-rotate--180{-webkit-transform:rotate(-180deg);transform:rotate(-180deg)}
5253
- .brz-ed .brz-ed-rotate--90{-webkit-transform:rotate(-90deg);transform:rotate(-90deg)}
5254
- .brz-ed .brz-ed-badge{font-family:nunito,"Open Sans",Arial,sans-serif;font-size:9px;font-weight:600;color:#fff;background-color:#3dbfe8;border-radius:4px;text-transform:uppercase;display:inline-block;line-height:1;padding:4px 5px}
5255
- .brz-ed .brz-ed-badge--pro{background-color:#d62c64}
5256
- .brz-ed .brz-ed-badge__delete{width:28px;height:28px;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;font-size:12px;border-radius:28px;background-color:#fff;color:#03080f;-webkit-box-shadow:0 0 2px 0 rgba(0,0,0,.25);box-shadow:0 0 2px 0 rgba(0,0,0,.25);cursor:pointer;-webkit-transition:.2s linear opacity,.2s linear color;transition:.2s linear opacity,.2s linear color}
5257
- .brz-ed .brz-ed-badge__delete:hover{color:#ed2164;-webkit-transition:.2s linear color;transition:.2s linear color}
5258
- .brz-ed .nc-outline-2x-drag-down:before{content:"\ea01"}
5259
- .brz-ed .nc-outline-2x-drag-up:before{content:"\ea02"}
5260
- .brz-ed .nc-outline-2x-swipe-down:before{content:"\ea03"}
5261
- .brz-ed .nc-outline-2x-swipe-left:before{content:"\ea04"}
5262
- .brz-ed .nc-outline-2x-swipe-right:before{content:"\ea05"}
5263
- .brz-ed .nc-outline-2x-swipe-up:before{content:"\ea06"}
5264
- .brz-ed .nc-outline-2x-tap:before{content:"\ea07"}
5265
- .brz-ed .nc-outline-3d-29:before{content:"\ea08"}
5266
- .brz-ed .nc-outline-3d-model:before{content:"\ea09"}
5267
- .brz-ed .nc-outline-3d:before{content:"\ea0a"}
5268
- .brz-ed .nc-outline-3x-swipe-left:before{content:"\ea0b"}
5269
- .brz-ed .nc-outline-3x-swipe-right:before{content:"\ea0c"}
5270
- .brz-ed .nc-outline-3x-swipe-up:before{content:"\ea0e"}
5271
- .brz-ed .nc-outline-3x-tap:before{content:"\ea0d"}
5272
- .brz-ed .nc-outline-4x-swipe-left:before{content:"\ea0f"}
5273
- .brz-ed .nc-outline-4x-swipe-right:before{content:"\ea10"}
5274
- .brz-ed .nc-outline-4x-swipe-up:before{content:"\ea11"}
5275
- .brz-ed .nc-outline-a-add:before{content:"\ea12"}
5276
- .brz-ed .nc-outline-a-check:before{content:"\ea13"}
5277
- .brz-ed .nc-outline-a-delete:before{content:"\ea14"}
5278
- .brz-ed .nc-outline-a-edit:before{content:"\ea15"}
5279
- .brz-ed .nc-outline-a-heart:before{content:"\ea16"}
5280
- .brz-ed .nc-outline-a-location:before{content:"\ea17"}
5281
- .brz-ed .nc-outline-a-remove:before{content:"\ea18"}
5282
- .brz-ed .nc-outline-a-search:before{content:"\ea19"}
5283
- .brz-ed .nc-outline-a-security:before{content:"\ea1a"}
5284
- .brz-ed .nc-outline-a-share:before{content:"\ea1b"}
5285
- .brz-ed .nc-outline-a-star:before{content:"\ea1c"}
5286
- .brz-ed .nc-outline-a-sync:before{content:"\ea1d"}
5287
- .brz-ed .nc-outline-a-time:before{content:"\ea1e"}
5288
- .brz-ed .nc-outline-abc:before{content:"\ea1f"}
5289
- .brz-ed .nc-outline-accessibility:before{content:"\ea20"}
5290
- .brz-ed .nc-outline-action-73:before{content:"\ea22"}
5291
- .brz-ed .nc-outline-action-74:before{content:"\ea21"}
5292
- .brz-ed .nc-outline-active-38:before{content:"\ea23"}
5293
- .brz-ed .nc-outline-active-40:before{content:"\ea24"}
5294
- .brz-ed .nc-outline-add-27:before{content:"\ea26"}
5295
- .brz-ed .nc-outline-add-29:before{content:"\ea25"}
5296
- .brz-ed .nc-outline-add:before{content:"\ea28"}
5297
- .brz-ed .nc-outline-agenda-bookmark:before{content:"\ea27"}
5298
- .brz-ed .nc-outline-agenda:before{content:"\ea29"}
5299
- .brz-ed .nc-outline-air-baloon:before{content:"\ea2a"}
5300
- .brz-ed .nc-outline-air-conditioner:before{content:"\ea2b"}
5301
- .brz-ed .nc-outline-airbag:before{content:"\ea2c"}
5302
- .brz-ed .nc-outline-alarm-add:before{content:"\ea2d"}
5303
- .brz-ed .nc-outline-alarm-delete:before{content:"\ea2e"}
5304
- .brz-ed .nc-outline-album-2:before{content:"\ea2f"}
5305
- .brz-ed .nc-outline-album:before{content:"\ea30"}
5306
- .brz-ed .nc-outline-alcohol:before{content:"\ea31"}
5307
- .brz-ed .nc-outline-alert-circle-exc:before{content:"\ea32"}
5308
- .brz-ed .nc-outline-alert-circle-i:before{content:"\ea33"}
5309
- .brz-ed .nc-outline-alert-circle-que:before{content:"\ea34"}
5310
- .brz-ed .nc-outline-alert-exc:before{content:"\ea35"}
5311
- .brz-ed .nc-outline-alert-i:before{content:"\ea36"}
5312
- .brz-ed .nc-outline-alert-que:before{content:"\ea37"}
5313
- .brz-ed .nc-outline-alert-square-exc:before{content:"\ea38"}
5314
- .brz-ed .nc-outline-alert-square-i:before{content:"\ea39"}
5315
- .brz-ed .nc-outline-alert-square-que:before{content:"\ea3a"}
5316
- .brz-ed .nc-outline-alert:before{content:"\ea3b"}
5317
- .brz-ed .nc-outline-alien-29:before{content:"\ea3c"}
5318
- .brz-ed .nc-outline-alien-33:before{content:"\ea3d"}
5319
- .brz-ed .nc-outline-align-bottom:before{content:"\ea3e"}
5320
- .brz-ed .nc-outline-align-center-horizontal:before{content:"\ea3f"}
5321
- .brz-ed .nc-outline-align-center-vertical:before{content:"\ea40"}
5322
- .brz-ed .nc-outline-align-center:before{content:"\ea41"}
5323
- .brz-ed .nc-outline-align-justify:before{content:"\ea42"}
5324
- .brz-ed .nc-outline-align-left-2:before{content:"\ea43"}
5325
- .brz-ed .nc-outline-align-left:before{content:"\ea44"}
5326
- .brz-ed .nc-outline-align-right-2:before{content:"\ea45"}
5327
- .brz-ed .nc-outline-align-right:before{content:"\ea46"}
5328
- .brz-ed .nc-outline-align-top:before{content:"\ea47"}
5329
- .brz-ed .nc-outline-ambulance:before{content:"\ea48"}
5330
- .brz-ed .nc-outline-analytics-88:before{content:"\ea49"}
5331
- .brz-ed .nc-outline-analytics-89:before{content:"\ea4a"}
5332
- .brz-ed .nc-outline-anchor:before{content:"\ea4c"}
5333
- .brz-ed .nc-outline-android:before{content:"\ea4b"}
5334
- .brz-ed .nc-outline-angle:before{content:"\ea4d"}
5335
- .brz-ed .nc-outline-angry-10:before{content:"\ea4e"}
5336
- .brz-ed .nc-outline-angry-44:before{content:"\ea50"}
5337
- .brz-ed .nc-outline-animation-14:before{content:"\ea4f"}
5338
- .brz-ed .nc-outline-animation-31:before{content:"\ea51"}
5339
- .brz-ed .nc-outline-animation-32:before{content:"\ea52"}
5340
- .brz-ed .nc-outline-app:before{content:"\ea53"}
5341
- .brz-ed .nc-outline-apple-2:before{content:"\ea54"}
5342
- .brz-ed .nc-outline-apple:before{content:"\ea55"}
5343
- .brz-ed .nc-outline-appointment:before{content:"\ea56"}
5344
- .brz-ed .nc-outline-archive-2:before{content:"\ea57"}
5345
- .brz-ed .nc-outline-archive-3d-check:before{content:"\ea58"}
5346
- .brz-ed .nc-outline-archive-3d-content:before{content:"\ea59"}
5347
- .brz-ed .nc-outline-archive-check:before{content:"\ea5a"}
5348
- .brz-ed .nc-outline-archive-content:before{content:"\ea5b"}
5349
- .brz-ed .nc-outline-archive-paper-check:before{content:"\ea5c"}
5350
- .brz-ed .nc-outline-archive-paper:before{content:"\ea5d"}
5351
- .brz-ed .nc-outline-archive:before{content:"\ea5e"}
5352
- .brz-ed .nc-outline-armchair:before{content:"\ea5f"}
5353
- .brz-ed .nc-outline-artboard:before{content:"\ea60"}
5354
- .brz-ed .nc-outline-astronaut:before{content:"\ea62"}
5355
- .brz-ed .nc-outline-at-sign:before{content:"\ea61"}
5356
- .brz-ed .nc-outline-atm:before{content:"\ea63"}
5357
- .brz-ed .nc-outline-atom:before{content:"\ea64"}
5358
- .brz-ed .nc-outline-attach-86:before{content:"\ea65"}
5359
- .brz-ed .nc-outline-attach-87:before{content:"\ea66"}
5360
- .brz-ed .nc-outline-aubergine:before{content:"\ea67"}
5361
- .brz-ed .nc-outline-audio-91:before{content:"\ea68"}
5362
- .brz-ed .nc-outline-audio-92:before{content:"\ea69"}
5363
- .brz-ed .nc-outline-audio:before{content:"\ea6a"}
5364
- .brz-ed .nc-outline-avocado:before{content:"\ea6c"}
5365
- .brz-ed .nc-outline-award-48:before{content:"\ea6b"}
5366
- .brz-ed .nc-outline-award-49:before{content:"\ea6d"}
5367
- .brz-ed .nc-outline-award-55:before{content:"\ea6e"}
5368
- .brz-ed .nc-outline-award-74:before{content:"\ea6f"}
5369
- .brz-ed .nc-outline-award:before{content:"\ea70"}
5370
- .brz-ed .nc-outline-axe:before{content:"\ea71"}
5371
- .brz-ed .nc-outline-b-add:before{content:"\ea72"}
5372
- .brz-ed .nc-outline-b-check:before{content:"\ea74"}
5373
- .brz-ed .nc-outline-b-location:before{content:"\ea73"}
5374
- .brz-ed .nc-outline-b-love:before{content:"\ea75"}
5375
- .brz-ed .nc-outline-b-meeting:before{content:"\ea76"}
5376
- .brz-ed .nc-outline-b-remove:before{content:"\ea78"}
5377
- .brz-ed .nc-outline-b-security:before{content:"\ea77"}
5378
- .brz-ed .nc-outline-baby-2:before{content:"\ea79"}
5379
- .brz-ed .nc-outline-baby-3:before{content:"\ea7a"}
5380
- .brz-ed .nc-outline-baby-bottle:before{content:"\ea7b"}
5381
- .brz-ed .nc-outline-baby:before{content:"\ea7c"}
5382
- .brz-ed .nc-outline-back-78:before{content:"\ea7d"}
5383
- .brz-ed .nc-outline-back-80:before{content:"\ea7e"}
5384
- .brz-ed .nc-outline-background:before{content:"\ea7f"}
5385
- .brz-ed .nc-outline-backpack-2:before{content:"\ea80"}
5386
- .brz-ed .nc-outline-backpack-57:before{content:"\ea81"}
5387
- .brz-ed .nc-outline-backpack-58:before{content:"\ea82"}
5388
- .brz-ed .nc-outline-backpack:before{content:"\ea83"}
5389
- .brz-ed .nc-outline-backward:before{content:"\ea84"}
5390
- .brz-ed .nc-outline-bacon:before{content:"\ea85"}
5391
- .brz-ed .nc-outline-badge-13:before{content:"\ea86"}
5392
- .brz-ed .nc-outline-badge-14:before{content:"\ea87"}
5393
- .brz-ed .nc-outline-badge-15:before{content:"\ea88"}
5394
- .brz-ed .nc-outline-badge:before{content:"\ea89"}
5395
- .brz-ed .nc-outline-badminton:before{content:"\ea8a"}
5396
- .brz-ed .nc-outline-bag-09:before{content:"\ea8b"}
5397
- .brz-ed .nc-outline-bag-16:before{content:"\ea8c"}
5398
- .brz-ed .nc-outline-bag-17:before{content:"\ea8d"}
5399
- .brz-ed .nc-outline-bag-20:before{content:"\ea8e"}
5400
- .brz-ed .nc-outline-bag-21:before{content:"\ea8f"}
5401
- .brz-ed .nc-outline-bag-22:before{content:"\ea90"}
5402
- .brz-ed .nc-outline-bag-49:before{content:"\ea91"}
5403
- .brz-ed .nc-outline-bag-50:before{content:"\ea92"}
5404
- .brz-ed .nc-outline-bag-add-18:before{content:"\ea93"}
5405
- .brz-ed .nc-outline-bag-add-21:before{content:"\ea94"}
5406
- .brz-ed .nc-outline-bag-delivery:before{content:"\ea95"}
5407
- .brz-ed .nc-outline-bag-edit:before{content:"\ea96"}
5408
- .brz-ed .nc-outline-bag-remove-19:before{content:"\ea97"}
5409
- .brz-ed .nc-outline-bag-remove-22:before{content:"\ea98"}
5410
- .brz-ed .nc-outline-bag-time:before{content:"\ea99"}
5411
- .brz-ed .nc-outline-bag:before{content:"\ea9a"}
5412
- .brz-ed .nc-outline-baguette:before{content:"\ea9b"}
5413
- .brz-ed .nc-outline-balance:before{content:"\ea9c"}
5414
- .brz-ed .nc-outline-ball-basket:before{content:"\ea9d"}
5415
- .brz-ed .nc-outline-ball-soccer:before{content:"\ea9e"}
5416
- .brz-ed .nc-outline-baloon:before{content:"\eaa0"}
5417
- .brz-ed .nc-outline-ban-bold:before{content:"\ea9f"}
5418
- .brz-ed .nc-outline-ban:before{content:"\eaa1"}
5419
- .brz-ed .nc-outline-banana:before{content:"\eaa2"}
5420
- .brz-ed .nc-outline-bank:before{content:"\eaa3"}
5421
- .brz-ed .nc-outline-barbecue-15:before{content:"\eaa4"}
5422
- .brz-ed .nc-outline-barbecue-tools:before{content:"\eaa5"}
5423
- .brz-ed .nc-outline-barbecue:before{content:"\eaa6"}
5424
- .brz-ed .nc-outline-barcode-qr:before{content:"\eaa7"}
5425
- .brz-ed .nc-outline-barcode-scan:before{content:"\eaa8"}
5426
- .brz-ed .nc-outline-barcode:before{content:"\eaa9"}
5427
- .brz-ed .nc-outline-bars-2:before{content:"\eaaa"}
5428
- .brz-ed .nc-outline-bars-rotate:before{content:"\eaac"}
5429
- .brz-ed .nc-outline-bars:before{content:"\eaab"}
5430
- .brz-ed .nc-outline-baseball-ball:before{content:"\eaad"}
5431
- .brz-ed .nc-outline-baseball-bat:before{content:"\eaae"}
5432
- .brz-ed .nc-outline-baseball:before{content:"\eaaf"}
5433
- .brz-ed .nc-outline-basket-add:before{content:"\eab0"}
5434
- .brz-ed .nc-outline-basket-edit:before{content:"\eab1"}
5435
- .brz-ed .nc-outline-basket-favorite:before{content:"\eab2"}
5436
- .brz-ed .nc-outline-basket-remove:before{content:"\eab3"}
5437
- .brz-ed .nc-outline-basket-search:before{content:"\eab4"}
5438
- .brz-ed .nc-outline-basket-share:before{content:"\eab5"}
5439
- .brz-ed .nc-outline-basket-simple-add:before{content:"\eab6"}
5440
- .brz-ed .nc-outline-basket-simple-remove:before{content:"\eab7"}
5441
- .brz-ed .nc-outline-basket-simple:before{content:"\eab8"}
5442
- .brz-ed .nc-outline-basket-update:before{content:"\eab9"}
5443
- .brz-ed .nc-outline-basket:before{content:"\eaba"}
5444
- .brz-ed .nc-outline-basketball-12:before{content:"\eabb"}
5445
- .brz-ed .nc-outline-basketball-13:before{content:"\eabc"}
5446
- .brz-ed .nc-outline-bat:before{content:"\eabd"}
5447
- .brz-ed .nc-outline-bath-tub:before{content:"\eabe"}
5448
- .brz-ed .nc-outline-battery-81:before{content:"\eabf"}
5449
- .brz-ed .nc-outline-battery-83:before{content:"\eac0"}
5450
- .brz-ed .nc-outline-battery-half:before{content:"\eac1"}
5451
- .brz-ed .nc-outline-battery-level:before{content:"\eac2"}
5452
- .brz-ed .nc-outline-battery-low:before{content:"\eac3"}
5453
- .brz-ed .nc-outline-battery:before{content:"\eac4"}
5454
- .brz-ed .nc-outline-bear-2:before{content:"\eac5"}
5455
- .brz-ed .nc-outline-bear:before{content:"\eac6"}
5456
- .brz-ed .nc-outline-bed-09:before{content:"\eac8"}
5457
- .brz-ed .nc-outline-bed-23:before{content:"\eac9"}
5458
- .brz-ed .nc-outline-bed-side:before{content:"\eac7"}
5459
- .brz-ed .nc-outline-bee:before{content:"\eaca"}
5460
- .brz-ed .nc-outline-beer-95:before{content:"\eacb"}
5461
- .brz-ed .nc-outline-beer-96:before{content:"\eacc"}
5462
- .brz-ed .nc-outline-bell-53:before{content:"\eacd"}
5463
- .brz-ed .nc-outline-bell-54:before{content:"\eace"}
5464
- .brz-ed .nc-outline-bell-55:before{content:"\eacf"}
5465
- .brz-ed .nc-outline-belt:before{content:"\ead0"}
5466
- .brz-ed .nc-outline-berlin:before{content:"\ead1"}
5467
- .brz-ed .nc-outline-beverage:before{content:"\ead2"}
5468
- .brz-ed .nc-outline-big-eyes:before{content:"\ead4"}
5469
- .brz-ed .nc-outline-big-smile:before{content:"\ead3"}
5470
- .brz-ed .nc-outline-bigmouth:before{content:"\ead5"}
5471
- .brz-ed .nc-outline-bike-2:before{content:"\ead6"}
5472
- .brz-ed .nc-outline-bike:before{content:"\ead7"}
5473
- .brz-ed .nc-outline-bill:before{content:"\ead9"}
5474
- .brz-ed .nc-outline-billiard:before{content:"\ead8"}
5475
- .brz-ed .nc-outline-binocular:before{content:"\eada"}
5476
- .brz-ed .nc-outline-biscuit:before{content:"\eadb"}
5477
- .brz-ed .nc-outline-bitcoin:before{content:"\eadc"}
5478
- .brz-ed .nc-outline-bleah:before{content:"\eadd"}
5479
- .brz-ed .nc-outline-blend:before{content:"\eade"}
5480
- .brz-ed .nc-outline-blind:before{content:"\eae0"}
5481
- .brz-ed .nc-outline-block-bottom-left:before{content:"\eadf"}
5482
- .brz-ed .nc-outline-block-bottom-right:before{content:"\eae1"}
5483
- .brz-ed .nc-outline-block-down:before{content:"\eae2"}
5484
- .brz-ed .nc-outline-block-left:before{content:"\eae3"}
5485
- .brz-ed .nc-outline-block-right:before{content:"\eae4"}
5486
- .brz-ed .nc-outline-block-top-left:before{content:"\eae5"}
5487
- .brz-ed .nc-outline-block-top-right:before{content:"\eae6"}
5488
- .brz-ed .nc-outline-block-up:before{content:"\eae8"}
5489
- .brz-ed .nc-outline-blog:before{content:"\eae7"}
5490
- .brz-ed .nc-outline-blueberries:before{content:"\eae9"}
5491
- .brz-ed .nc-outline-bluetooth:before{content:"\eaea"}
5492
- .brz-ed .nc-outline-board-2:before{content:"\eaeb"}
5493
- .brz-ed .nc-outline-board-27:before{content:"\eaec"}
5494
- .brz-ed .nc-outline-board-28:before{content:"\eaed"}
5495
- .brz-ed .nc-outline-board-29:before{content:"\eaee"}
5496
- .brz-ed .nc-outline-board-30:before{content:"\eaef"}
5497
- .brz-ed .nc-outline-board-51:before{content:"\eaf0"}
5498
- .brz-ed .nc-outline-board:before{content:"\eaf1"}
5499
- .brz-ed .nc-outline-boat-front:before{content:"\eaf2"}
5500
- .brz-ed .nc-outline-boat-small-02:before{content:"\eaf3"}
5501
- .brz-ed .nc-outline-boat-small-03:before{content:"\eaf4"}
5502
- .brz-ed .nc-outline-boat:before{content:"\eaf5"}
5503
- .brz-ed .nc-outline-bold-add:before{content:"\eaf6"}
5504
- .brz-ed .nc-outline-bold-delete:before{content:"\eaf7"}
5505
- .brz-ed .nc-outline-bold-direction:before{content:"\eaf8"}
5506
- .brz-ed .nc-outline-bold-down:before{content:"\eaf9"}
5507
- .brz-ed .nc-outline-bold-left:before{content:"\eafa"}
5508
- .brz-ed .nc-outline-bold-remove:before{content:"\eafc"}
5509
- .brz-ed .nc-outline-bold-right:before{content:"\eafb"}
5510
- .brz-ed .nc-outline-bold-up:before{content:"\eafd"}
5511
- .brz-ed .nc-outline-bold:before{content:"\eafe"}
5512
- .brz-ed .nc-outline-bolt:before{content:"\eaff"}
5513
- .brz-ed .nc-outline-bomb:before{content:"\eb00"}
5514
- .brz-ed .nc-outline-bones:before{content:"\eb01"}
5515
- .brz-ed .nc-outline-book-07:before{content:"\eb02"}
5516
- .brz-ed .nc-outline-book-08:before{content:"\eb03"}
5517
- .brz-ed .nc-outline-book-39:before{content:"\eb04"}
5518
- .brz-ed .nc-outline-book-bookmark-2:before{content:"\eb05"}
5519
- .brz-ed .nc-outline-book-bookmark:before{content:"\eb06"}
5520
- .brz-ed .nc-outline-book-open-2:before{content:"\eb07"}
5521
- .brz-ed .nc-outline-book-open:before{content:"\eb08"}
5522
- .brz-ed .nc-outline-book:before{content:"\eb09"}
5523
- .brz-ed .nc-outline-bookmark-2:before{content:"\eb0a"}
5524
- .brz-ed .nc-outline-bookmark-add-2:before{content:"\eb0b"}
5525
- .brz-ed .nc-outline-bookmark-add:before{content:"\eb0c"}
5526
- .brz-ed .nc-outline-bookmark-remove-2:before{content:"\eb0d"}
5527
- .brz-ed .nc-outline-bookmark-remove:before{content:"\eb0e"}
5528
- .brz-ed .nc-outline-bookmark:before{content:"\eb0f"}
5529
- .brz-ed .nc-outline-books-46:before{content:"\eb10"}
5530
- .brz-ed .nc-outline-books:before{content:"\eb11"}
5531
- .brz-ed .nc-outline-boot-2:before{content:"\eb12"}
5532
- .brz-ed .nc-outline-boot-woman:before{content:"\eb14"}
5533
- .brz-ed .nc-outline-boot:before{content:"\eb15"}
5534
- .brz-ed .nc-outline-border-radius:before{content:"\eb13"}
5535
- .brz-ed .nc-outline-border:before{content:"\eb16"}
5536
- .brz-ed .nc-outline-bored:before{content:"\eb17"}
5537
- .brz-ed .nc-outline-bottle-wine:before{content:"\eb18"}
5538
- .brz-ed .nc-outline-bottle:before{content:"\eb19"}
5539
- .brz-ed .nc-outline-bow:before{content:"\eb1a"}
5540
- .brz-ed .nc-outline-bowl:before{content:"\eb1b"}
5541
- .brz-ed .nc-outline-bowling:before{content:"\eb1d"}
5542
- .brz-ed .nc-outline-box-2:before{content:"\eb1c"}
5543
- .brz-ed .nc-outline-box-3d-50:before{content:"\eb1e"}
5544
- .brz-ed .nc-outline-box-ribbon:before{content:"\eb1f"}
5545
- .brz-ed .nc-outline-box:before{content:"\eb20"}
5546
- .brz-ed .nc-outline-boxing:before{content:"\eb21"}
5547
- .brz-ed .nc-outline-bra:before{content:"\eb22"}
5548
- .brz-ed .nc-outline-brain:before{content:"\eb23"}
5549
- .brz-ed .nc-outline-brakes:before{content:"\eb24"}
5550
- .brz-ed .nc-outline-bread:before{content:"\eb25"}
5551
- .brz-ed .nc-outline-briefcase-24:before{content:"\eb26"}
5552
- .brz-ed .nc-outline-briefcase-25:before{content:"\eb28"}
5553
- .brz-ed .nc-outline-briefcase-26:before{content:"\eb27"}
5554
- .brz-ed .nc-outline-brightness-46:before{content:"\eb29"}
5555
- .brz-ed .nc-outline-brightness-47:before{content:"\eb2a"}
5556
- .brz-ed .nc-outline-brioche:before{content:"\eb2d"}
5557
- .brz-ed .nc-outline-broccoli:before{content:"\eb2b"}
5558
- .brz-ed .nc-outline-broom:before{content:"\eb2c"}
5559
- .brz-ed .nc-outline-browser-chrome:before{content:"\eb2e"}
5560
- .brz-ed .nc-outline-browser-edge:before{content:"\eb2f"}
5561
- .brz-ed .nc-outline-browser-firefox:before{content:"\eb30"}
5562
- .brz-ed .nc-outline-browser-ie:before{content:"\eb31"}
5563
- .brz-ed .nc-outline-browser-opera:before{content:"\eb32"}
5564
- .brz-ed .nc-outline-browser-safari:before{content:"\eb35"}
5565
- .brz-ed .nc-outline-brush:before{content:"\eb34"}
5566
- .brz-ed .nc-outline-bucket:before{content:"\eb33"}
5567
- .brz-ed .nc-outline-bug:before{content:"\eb36"}
5568
- .brz-ed .nc-outline-building:before{content:"\eb37"}
5569
- .brz-ed .nc-outline-bulb-61:before{content:"\eb39"}
5570
- .brz-ed .nc-outline-bulb-62:before{content:"\eb38"}
5571
- .brz-ed .nc-outline-bulb-63:before{content:"\eb3a"}
5572
- .brz-ed .nc-outline-bulb-saver:before{content:"\eb3b"}
5573
- .brz-ed .nc-outline-bulb:before{content:"\eb3d"}
5574
- .brz-ed .nc-outline-bullet-list-67:before{content:"\eb3c"}
5575
- .brz-ed .nc-outline-bullet-list-68:before{content:"\eb3e"}
5576
- .brz-ed .nc-outline-bullet-list-69:before{content:"\eb41"}
5577
- .brz-ed .nc-outline-bullet-list-70:before{content:"\eb3f"}
5578
- .brz-ed .nc-outline-bullet-list:before{content:"\eb40"}
5579
- .brz-ed .nc-outline-bus-front-10:before{content:"\eb42"}
5580
- .brz-ed .nc-outline-bus-front-12:before{content:"\eb44"}
5581
- .brz-ed .nc-outline-bus:before{content:"\eb45"}
5582
- .brz-ed .nc-outline-business-contact-85:before{content:"\eb43"}
5583
- .brz-ed .nc-outline-business-contact-89:before{content:"\eb46"}
5584
- .brz-ed .nc-outline-businessman-03:before{content:"\eb47"}
5585
- .brz-ed .nc-outline-businessman-04:before{content:"\eb48"}
5586
- .brz-ed .nc-outline-butterfly:before{content:"\eb49"}
5587
- .brz-ed .nc-outline-button-2:before{content:"\eb4a"}
5588
- .brz-ed .nc-outline-button-circle-pause:before{content:"\eb4c"}
5589
- .brz-ed .nc-outline-button-circle-play:before{content:"\eb4b"}
5590
- .brz-ed .nc-outline-button-circle-stop:before{content:"\eb4d"}
5591
- .brz-ed .nc-outline-button-eject:before{content:"\eb4e"}
5592
- .brz-ed .nc-outline-button-next:before{content:"\eb50"}
5593
- .brz-ed .nc-outline-button-pause:before{content:"\eb4f"}
5594
- .brz-ed .nc-outline-button-play:before{content:"\eb51"}
5595
- .brz-ed .nc-outline-button-power:before{content:"\eb52"}
5596
- .brz-ed .nc-outline-button-previous:before{content:"\eb54"}
5597
- .brz-ed .nc-outline-button-record:before{content:"\eb53"}
5598
- .brz-ed .nc-outline-button-rewind:before{content:"\eb55"}
5599
- .brz-ed .nc-outline-button-skip:before{content:"\eb56"}
5600
- .brz-ed .nc-outline-button-stop:before{content:"\eb57"}
5601
- .brz-ed .nc-outline-button:before{content:"\eb58"}
5602
- .brz-ed .nc-outline-cabinet:before{content:"\eb59"}
5603
- .brz-ed .nc-outline-cable-49:before{content:"\eb5a"}
5604
- .brz-ed .nc-outline-cable-50:before{content:"\eb5b"}
5605
- .brz-ed .nc-outline-cactus:before{content:"\eb5c"}
5606
- .brz-ed .nc-outline-cake-100:before{content:"\eb5d"}
5607
- .brz-ed .nc-outline-cake-13:before{content:"\eb5e"}
5608
- .brz-ed .nc-outline-cake-slice:before{content:"\eb5f"}
5609
- .brz-ed .nc-outline-cake:before{content:"\eb60"}
5610
- .brz-ed .nc-outline-calculator:before{content:"\eb61"}
5611
- .brz-ed .nc-outline-calendar-57:before{content:"\eb62"}
5612
- .brz-ed .nc-outline-calendar-60:before{content:"\eb64"}
5613
- .brz-ed .nc-outline-calendar-add:before{content:"\eb65"}
5614
- .brz-ed .nc-outline-calendar-check-59:before{content:"\eb63"}
5615
- .brz-ed .nc-outline-calendar-check-62:before{content:"\eb66"}
5616
- .brz-ed .nc-outline-calendar-grid-58:before{content:"\eb67"}
5617
- .brz-ed .nc-outline-calendar-grid-61:before{content:"\eb68"}
5618
- .brz-ed .nc-outline-camera-18:before{content:"\eb69"}
5619
- .brz-ed .nc-outline-camera-19:before{content:"\eb6a"}
5620
- .brz-ed .nc-outline-camera-20:before{content:"\eb6b"}
5621
- .brz-ed .nc-outline-camera-ban-36:before{content:"\eb6c"}
5622
- .brz-ed .nc-outline-camera-ban-37:before{content:"\eb6d"}
5623
- .brz-ed .nc-outline-camera-compact:before{content:"\eb6e"}
5624
- .brz-ed .nc-outline-camera-screen:before{content:"\eb6f"}
5625
- .brz-ed .nc-outline-camera-square-57:before{content:"\eb70"}
5626
- .brz-ed .nc-outline-camera-square-58:before{content:"\eb71"}
5627
- .brz-ed .nc-outline-camera-time:before{content:"\eb72"}
5628
- .brz-ed .nc-outline-camera:before{content:"\eb73"}
5629
- .brz-ed .nc-outline-camper:before{content:"\eb75"}
5630
- .brz-ed .nc-outline-camping:before{content:"\eb74"}
5631
- .brz-ed .nc-outline-candle:before{content:"\eb76"}
5632
- .brz-ed .nc-outline-candy-2:before{content:"\eb77"}
5633
- .brz-ed .nc-outline-candy:before{content:"\eb78"}
5634
- .brz-ed .nc-outline-canvas:before{content:"\eb79"}
5635
- .brz-ed .nc-outline-cap:before{content:"\eb7a"}
5636
- .brz-ed .nc-outline-capitalize:before{content:"\eb7b"}
5637
- .brz-ed .nc-outline-caps-all:before{content:"\eb7c"}
5638
- .brz-ed .nc-outline-caps-small:before{content:"\eb7d"}
5639
- .brz-ed .nc-outline-car-2:before{content:"\eb7e"}
5640
- .brz-ed .nc-outline-car-accident:before{content:"\eb7f"}
5641
- .brz-ed .nc-outline-car-connect:before{content:"\eb80"}
5642
- .brz-ed .nc-outline-car-door:before{content:"\eb81"}
5643
- .brz-ed .nc-outline-car-front:before{content:"\eb82"}
5644
- .brz-ed .nc-outline-car-lights:before{content:"\eb83"}
5645
- .brz-ed .nc-outline-car-parking:before{content:"\eb84"}
5646
- .brz-ed .nc-outline-car-simple:before{content:"\eb85"}
5647
- .brz-ed .nc-outline-car-sport:before{content:"\eb86"}
5648
- .brz-ed .nc-outline-car-taxi:before{content:"\eb87"}
5649
- .brz-ed .nc-outline-car-ventilation:before{content:"\eb88"}
5650
- .brz-ed .nc-outline-car-wash:before{content:"\eb89"}
5651
- .brz-ed .nc-outline-car:before{content:"\eb8a"}
5652
- .brz-ed .nc-outline-card-add-2:before{content:"\eb8b"}
5653
- .brz-ed .nc-outline-card-add:before{content:"\eb8c"}
5654
- .brz-ed .nc-outline-card-alert:before{content:"\eb8d"}
5655
- .brz-ed .nc-outline-card-edit:before{content:"\eb8e"}
5656
- .brz-ed .nc-outline-card-favorite:before{content:"\eb8f"}
5657
- .brz-ed .nc-outline-card-remove:before{content:"\eb90"}
5658
- .brz-ed .nc-outline-card-update:before{content:"\eb91"}
5659
- .brz-ed .nc-outline-cardio:before{content:"\eb92"}
5660
- .brz-ed .nc-outline-cards:before{content:"\eb94"}
5661
- .brz-ed .nc-outline-carrot:before{content:"\eb95"}
5662
- .brz-ed .nc-outline-cart-9:before{content:"\eb93"}
5663
- .brz-ed .nc-outline-cart-add-9:before{content:"\eb96"}
5664
- .brz-ed .nc-outline-cart-add:before{content:"\eb97"}
5665
- .brz-ed .nc-outline-cart-favorite:before{content:"\eb98"}
5666
- .brz-ed .nc-outline-cart-full:before{content:"\eb99"}
5667
- .brz-ed .nc-outline-cart-in-9:before{content:"\eb9a"}
5668
- .brz-ed .nc-outline-cart-refresh:before{content:"\eb9c"}
5669
- .brz-ed .nc-outline-cart-remove-9:before{content:"\eb9b"}
5670
- .brz-ed .nc-outline-cart-remove:before{content:"\eb9d"}
5671
- .brz-ed .nc-outline-cart-return:before{content:"\eb9e"}
5672
- .brz-ed .nc-outline-cart-simple-add:before{content:"\eb9f"}
5673
- .brz-ed .nc-outline-cart-simple-in:before{content:"\eba1"}
5674
- .brz-ed .nc-outline-cart-simple-remove:before{content:"\eba0"}
5675
- .brz-ed .nc-outline-cart-simple:before{content:"\eba2"}
5676
- .brz-ed .nc-outline-cart-speed:before{content:"\eba3"}
5677
- .brz-ed .nc-outline-cart:before{content:"\eba4"}
5678
- .brz-ed .nc-outline-cash-register:before{content:"\eba5"}
5679
- .brz-ed .nc-outline-castle:before{content:"\eba6"}
5680
- .brz-ed .nc-outline-cat:before{content:"\eba7"}
5681
- .brz-ed .nc-outline-cauldron:before{content:"\eba8"}
5682
- .brz-ed .nc-outline-cctv:before{content:"\eba9"}
5683
- .brz-ed .nc-outline-cd-reader:before{content:"\ebaa"}
5684
- .brz-ed .nc-outline-celsius:before{content:"\ebab"}
5685
- .brz-ed .nc-outline-centralize:before{content:"\ebac"}
5686
- .brz-ed .nc-outline-chair-2:before{content:"\ebad"}
5687
- .brz-ed .nc-outline-chair:before{content:"\ebae"}
5688
- .brz-ed .nc-outline-chalkboard:before{content:"\ebaf"}
5689
- .brz-ed .nc-outline-champagne:before{content:"\ebb0"}
5690
- .brz-ed .nc-outline-chart-2:before{content:"\ebb1"}
5691
- .brz-ed .nc-outline-chart-3:before{content:"\ebb2"}
5692
- .brz-ed .nc-outline-chart-bar-32:before{content:"\ebb3"}
5693
- .brz-ed .nc-outline-chart-bar-33:before{content:"\ebb4"}
5694
- .brz-ed .nc-outline-chart-bar-52:before{content:"\ebb5"}
5695
- .brz-ed .nc-outline-chart-bar-53:before{content:"\ebb6"}
5696
- .brz-ed .nc-outline-chart-bar:before{content:"\ebb7"}
5697
- .brz-ed .nc-outline-chart-bars:before{content:"\ebb8"}
5698
- .brz-ed .nc-outline-chart-growth:before{content:"\ebb9"}
5699
- .brz-ed .nc-outline-chart-pie-35:before{content:"\ebba"}
5700
- .brz-ed .nc-outline-chart-pie-36:before{content:"\ebbb"}
5701
- .brz-ed .nc-outline-chart-pie:before{content:"\ebbc"}
5702
- .brz-ed .nc-outline-chart:before{content:"\ebbd"}
5703
- .brz-ed .nc-outline-chat-33:before{content:"\ebbe"}
5704
- .brz-ed .nc-outline-chat-45:before{content:"\ebbf"}
5705
- .brz-ed .nc-outline-chat-46:before{content:"\ebc0"}
5706
- .brz-ed .nc-outline-chat-content:before{content:"\ebc1"}
5707
- .brz-ed .nc-outline-chat-reply:before{content:"\ebc2"}
5708
- .brz-ed .nc-outline-chat-round-content:before{content:"\ebc3"}
5709
- .brz-ed .nc-outline-chat-round:before{content:"\ebc4"}
5710
- .brz-ed .nc-outline-chat:before{content:"\ebc5"}
5711
- .brz-ed .nc-outline-check-2:before{content:"\ebc6"}
5712
- .brz-ed .nc-outline-check-bold:before{content:"\ebc7"}
5713
- .brz-ed .nc-outline-check-circle-07:before{content:"\ebc8"}
5714
- .brz-ed .nc-outline-check-circle-08:before{content:"\ebc9"}
5715
- .brz-ed .nc-outline-check-curve:before{content:"\ebca"}
5716
- .brz-ed .nc-outline-check-in:before{content:"\ebcb"}
5717
- .brz-ed .nc-outline-check-out:before{content:"\ebcc"}
5718
- .brz-ed .nc-outline-check-simple:before{content:"\ebcd"}
5719
- .brz-ed .nc-outline-check-small:before{content:"\ebce"}
5720
- .brz-ed .nc-outline-check-square-09:before{content:"\ebcf"}
5721
- .brz-ed .nc-outline-check-square-11:before{content:"\ebd0"}
5722
- .brz-ed .nc-outline-check:before{content:"\ebd1"}
5723
- .brz-ed .nc-outline-cheese-24:before{content:"\ebd2"}
5724
- .brz-ed .nc-outline-cheese-87:before{content:"\ebd3"}
5725
- .brz-ed .nc-outline-cheeseburger:before{content:"\ebd4"}
5726
- .brz-ed .nc-outline-chef-hat:before{content:"\ebd6"}
5727
- .brz-ed .nc-outline-chef:before{content:"\ebd5"}
5728
- .brz-ed .nc-outline-cheque-2:before{content:"\ebd7"}
5729
- .brz-ed .nc-outline-cheque-3:before{content:"\ebd8"}
5730
- .brz-ed .nc-outline-cheque:before{content:"\ebda"}
5731
- .brz-ed .nc-outline-cherry:before{content:"\ebd9"}
5732
- .brz-ed .nc-outline-chicken-2:before{content:"\ebdb"}
5733
- .brz-ed .nc-outline-chicken:before{content:"\ebdc"}
5734
- .brz-ed .nc-outline-child:before{content:"\ebdd"}
5735
- .brz-ed .nc-outline-chili:before{content:"\ebde"}
5736
- .brz-ed .nc-outline-chimney:before{content:"\ebdf"}
5737
- .brz-ed .nc-outline-china:before{content:"\ebe0"}
5738
- .brz-ed .nc-outline-chinese:before{content:"\ebe1"}
5739
- .brz-ed .nc-outline-chips:before{content:"\ebe2"}
5740
- .brz-ed .nc-outline-choco-cream:before{content:"\ebe3"}
5741
- .brz-ed .nc-outline-chocolate-mousse:before{content:"\ebe4"}
5742
- .brz-ed .nc-outline-chocolate:before{content:"\ebe5"}
5743
- .brz-ed .nc-outline-church:before{content:"\ebe6"}
5744
- .brz-ed .nc-outline-churros:before{content:"\ebe7"}
5745
- .brz-ed .nc-outline-circle-02:before{content:"\ebe8"}
5746
- .brz-ed .nc-outline-circle-03:before{content:"\ebe9"}
5747
- .brz-ed .nc-outline-circle-04:before{content:"\ebea"}
5748
- .brz-ed .nc-outline-circle-08:before{content:"\ebec"}
5749
- .brz-ed .nc-outline-circle-09:before{content:"\ebeb"}
5750
- .brz-ed .nc-outline-circle-10:before{content:"\ebed"}
5751
- .brz-ed .nc-outline-circle-add:before{content:"\ebee"}
5752
- .brz-ed .nc-outline-circle-bold-add:before{content:"\ebef"}
5753
- .brz-ed .nc-outline-circle-bold-delete:before{content:"\ebf0"}
5754
- .brz-ed .nc-outline-circle-bold-remove:before{content:"\ebf1"}
5755
- .brz-ed .nc-outline-circle-delete:before{content:"\ebf2"}
5756
- .brz-ed .nc-outline-circle-down-12:before{content:"\ebf3"}
5757
- .brz-ed .nc-outline-circle-down-40:before{content:"\ebf4"}
5758
- .brz-ed .nc-outline-circle-in:before{content:"\ebf5"}
5759
- .brz-ed .nc-outline-circle-left-10:before{content:"\ebf6"}
5760
- .brz-ed .nc-outline-circle-left-38:before{content:"\ebf7"}
5761
- .brz-ed .nc-outline-circle-out:before{content:"\ebf8"}
5762
- .brz-ed .nc-outline-circle-remove:before{content:"\ebf9"}
5763
- .brz-ed .nc-outline-circle-right-09:before{content:"\ebfa"}
5764
- .brz-ed .nc-outline-circle-right-37:before{content:"\ebfc"}
5765
- .brz-ed .nc-outline-circle-simple-down:before{content:"\ebfb"}
5766
- .brz-ed .nc-outline-circle-simple-left:before{content:"\ebfe"}
5767
- .brz-ed .nc-outline-circle-simple-right:before{content:"\ebfd"}
5768
- .brz-ed .nc-outline-circle-simple-up:before{content:"\ebff"}
5769
- .brz-ed .nc-outline-circle-up-11:before{content:"\ec00"}
5770
- .brz-ed .nc-outline-circle-up-39:before{content:"\ec02"}
5771
- .brz-ed .nc-outline-circle:before{content:"\ec01"}
5772
- .brz-ed .nc-outline-circuit-round:before{content:"\ec03"}
5773
- .brz-ed .nc-outline-circuit:before{content:"\ec04"}
5774
- .brz-ed .nc-outline-clone:before{content:"\ec05"}
5775
- .brz-ed .nc-outline-cloud-25:before{content:"\ec06"}
5776
- .brz-ed .nc-outline-cloud-26:before{content:"\ec08"}
5777
- .brz-ed .nc-outline-cloud-download-93:before{content:"\ec07"}
5778
- .brz-ed .nc-outline-cloud-download-95:before{content:"\ec09"}
5779
- .brz-ed .nc-outline-cloud-drop:before{content:"\ec0a"}
5780
- .brz-ed .nc-outline-cloud-fog-31:before{content:"\ec0c"}
5781
- .brz-ed .nc-outline-cloud-fog-32:before{content:"\ec0b"}
5782
- .brz-ed .nc-outline-cloud-hail:before{content:"\ec0d"}
5783
- .brz-ed .nc-outline-cloud-light:before{content:"\ec0e"}
5784
- .brz-ed .nc-outline-cloud-moon:before{content:"\ec10"}
5785
- .brz-ed .nc-outline-cloud-rain:before{content:"\ec0f"}
5786
- .brz-ed .nc-outline-cloud-rainbow:before{content:"\ec11"}
5787
- .brz-ed .nc-outline-cloud-snow-34:before{content:"\ec12"}
5788
- .brz-ed .nc-outline-cloud-snow-42:before{content:"\ec14"}
5789
- .brz-ed .nc-outline-cloud-sun-17:before{content:"\ec13"}
5790
- .brz-ed .nc-outline-cloud-sun-19:before{content:"\ec15"}
5791
- .brz-ed .nc-outline-cloud-upload-94:before{content:"\ec16"}
5792
- .brz-ed .nc-outline-cloud-upload-96:before{content:"\ec17"}
5793
- .brz-ed .nc-outline-cloud:before{content:"\ec18"}
5794
- .brz-ed .nc-outline-clover:before{content:"\ec19"}
5795
- .brz-ed .nc-outline-coat-hanger:before{content:"\ec1a"}
5796
- .brz-ed .nc-outline-coat:before{content:"\ec1c"}
5797
- .brz-ed .nc-outline-cockade:before{content:"\ec1b"}
5798
- .brz-ed .nc-outline-cocktail:before{content:"\ec1d"}
5799
- .brz-ed .nc-outline-code-editor:before{content:"\ec1e"}
5800
- .brz-ed .nc-outline-code:before{content:"\ec1f"}
5801
- .brz-ed .nc-outline-coffe-long:before{content:"\ec20"}
5802
- .brz-ed .nc-outline-coffee-2:before{content:"\ec21"}
5803
- .brz-ed .nc-outline-coffee-bean:before{content:"\ec22"}
5804
- .brz-ed .nc-outline-coffee-long:before{content:"\ec23"}
5805
- .brz-ed .nc-outline-coffee:before{content:"\ec24"}
5806
- .brz-ed .nc-outline-coffin:before{content:"\ec26"}
5807
- .brz-ed .nc-outline-coins:before{content:"\ec25"}
5808
- .brz-ed .nc-outline-collar:before{content:"\ec28"}
5809
- .brz-ed .nc-outline-collection:before{content:"\ec27"}
5810
- .brz-ed .nc-outline-color:before{content:"\ec2a"}
5811
- .brz-ed .nc-outline-command:before{content:"\ec29"}
5812
- .brz-ed .nc-outline-comment-add:before{content:"\ec2b"}
5813
- .brz-ed .nc-outline-compare:before{content:"\ec2c"}
5814
- .brz-ed .nc-outline-compass-04:before{content:"\ec2e"}
5815
- .brz-ed .nc-outline-compass-05:before{content:"\ec2d"}
5816
- .brz-ed .nc-outline-compass-06:before{content:"\ec2f"}
5817
- .brz-ed .nc-outline-compass-2:before{content:"\ec30"}
5818
- .brz-ed .nc-outline-compass-3:before{content:"\ec31"}
5819
- .brz-ed .nc-outline-compass:before{content:"\ec32"}
5820
- .brz-ed .nc-outline-components:before{content:"\ec33"}
5821
- .brz-ed .nc-outline-computer-monitor:before{content:"\ec34"}
5822
- .brz-ed .nc-outline-computer-old:before{content:"\ec35"}
5823
- .brz-ed .nc-outline-computer-upload:before{content:"\ec36"}
5824
- .brz-ed .nc-outline-computer:before{content:"\ec37"}
5825
- .brz-ed .nc-outline-cone:before{content:"\ec38"}
5826
- .brz-ed .nc-outline-connect:before{content:"\ec39"}
5827
- .brz-ed .nc-outline-connection:before{content:"\ec3a"}
5828
- .brz-ed .nc-outline-contact-86:before{content:"\ec3b"}
5829
- .brz-ed .nc-outline-contact-87:before{content:"\ec3c"}
5830
- .brz-ed .nc-outline-contact-88:before{content:"\ec3d"}
5831
- .brz-ed .nc-outline-contacts-2:before{content:"\ec3e"}
5832
- .brz-ed .nc-outline-contacts-44:before{content:"\ec3f"}
5833
- .brz-ed .nc-outline-contacts-45:before{content:"\ec40"}
5834
- .brz-ed .nc-outline-contacts:before{content:"\ec41"}
5835
- .brz-ed .nc-outline-contrast-2:before{content:"\ec42"}
5836
- .brz-ed .nc-outline-contrast:before{content:"\ec43"}
5837
- .brz-ed .nc-outline-controller-2:before{content:"\ec44"}
5838
- .brz-ed .nc-outline-controller-3:before{content:"\ec45"}
5839
- .brz-ed .nc-outline-controller:before{content:"\ec46"}
5840
- .brz-ed .nc-outline-conversion:before{content:"\ec47"}
5841
- .brz-ed .nc-outline-cookies:before{content:"\ec48"}
5842
- .brz-ed .nc-outline-copy-2:before{content:"\ec4a"}
5843
- .brz-ed .nc-outline-copy:before{content:"\ec49"}
5844
- .brz-ed .nc-outline-corn:before{content:"\ec4b"}
5845
- .brz-ed .nc-outline-corner-down-round:before{content:"\ec4c"}
5846
- .brz-ed .nc-outline-corner-down:before{content:"\ec4d"}
5847
- .brz-ed .nc-outline-corner-left-down:before{content:"\ec4e"}
5848
- .brz-ed .nc-outline-corner-left-round:before{content:"\ec50"}
5849
- .brz-ed .nc-outline-corner-left:before{content:"\ec4f"}
5850
- .brz-ed .nc-outline-corner-right-down:before{content:"\ec51"}
5851
- .brz-ed .nc-outline-corner-right-round:before{content:"\ec52"}
5852
- .brz-ed .nc-outline-corner-right:before{content:"\ec54"}
5853
- .brz-ed .nc-outline-corner-up-left:before{content:"\ec53"}
5854
- .brz-ed .nc-outline-corner-up-right:before{content:"\ec55"}
5855
- .brz-ed .nc-outline-corner-up-round:before{content:"\ec56"}
5856
- .brz-ed .nc-outline-corner-up:before{content:"\ec57"}
5857
- .brz-ed .nc-outline-corset:before{content:"\ec58"}
5858
- .brz-ed .nc-outline-countdown-34:before{content:"\ec59"}
5859
- .brz-ed .nc-outline-countdown-35:before{content:"\ec5a"}
5860
- .brz-ed .nc-outline-couple-gay:before{content:"\ec5b"}
5861
- .brz-ed .nc-outline-couple-lesbian:before{content:"\ec5c"}
5862
- .brz-ed .nc-outline-coupon:before{content:"\ec5d"}
5863
- .brz-ed .nc-outline-course:before{content:"\ec5e"}
5864
- .brz-ed .nc-outline-cow:before{content:"\ec5f"}
5865
- .brz-ed .nc-outline-crab:before{content:"\ec60"}
5866
- .brz-ed .nc-outline-cradle:before{content:"\ec62"}
5867
- .brz-ed .nc-outline-credit-card-in:before{content:"\ec61"}
5868
- .brz-ed .nc-outline-credit-card:before{content:"\ec64"}
5869
- .brz-ed .nc-outline-credit-locked:before{content:"\ec63"}
5870
- .brz-ed .nc-outline-crepe:before{content:"\ec66"}
5871
- .brz-ed .nc-outline-cricket:before{content:"\ec65"}
5872
- .brz-ed .nc-outline-croissant:before{content:"\ec67"}
5873
- .brz-ed .nc-outline-crop:before{content:"\ec68"}
5874
- .brz-ed .nc-outline-cross-down:before{content:"\ec69"}
5875
- .brz-ed .nc-outline-cross-horizontal:before{content:"\ec6a"}
5876
- .brz-ed .nc-outline-cross-left:before{content:"\ec6b"}
5877
- .brz-ed .nc-outline-cross-right:before{content:"\ec6c"}
5878
- .brz-ed .nc-outline-cross-up:before{content:"\ec6e"}
5879
- .brz-ed .nc-outline-cross-vertical:before{content:"\ec6d"}
5880
- .brz-ed .nc-outline-cross:before{content:"\ec6f"}
5881
- .brz-ed .nc-outline-crosshair:before{content:"\ec70"}
5882
- .brz-ed .nc-outline-crown:before{content:"\ec71"}
5883
- .brz-ed .nc-outline-crumpet:before{content:"\ec72"}
5884
- .brz-ed .nc-outline-cry-15:before{content:"\ec73"}
5885
- .brz-ed .nc-outline-cry-57:before{content:"\ec74"}
5886
- .brz-ed .nc-outline-css3:before{content:"\ec75"}
5887
- .brz-ed .nc-outline-cupcake:before{content:"\ec76"}
5888
- .brz-ed .nc-outline-currency-dollar:before{content:"\ec77"}
5889
- .brz-ed .nc-outline-currency-euro:before{content:"\ec78"}
5890
- .brz-ed .nc-outline-currency-exchange:before{content:"\ec79"}
5891
- .brz-ed .nc-outline-currency-pound:before{content:"\ec7a"}
5892
- .brz-ed .nc-outline-currency-yen:before{content:"\ec7b"}
5893
- .brz-ed .nc-outline-cursor-48:before{content:"\ec7c"}
5894
- .brz-ed .nc-outline-cursor-49:before{content:"\ec7e"}
5895
- .brz-ed .nc-outline-cursor-add:before{content:"\ec7d"}
5896
- .brz-ed .nc-outline-cursor-grab:before{content:"\ec7f"}
5897
- .brz-ed .nc-outline-cursor-load:before{content:"\ec80"}
5898
- .brz-ed .nc-outline-cursor-menu:before{content:"\ec81"}
5899
- .brz-ed .nc-outline-cursor-not-allowed:before{content:"\ec82"}
5900
- .brz-ed .nc-outline-cursor-pointer:before{content:"\ec83"}
5901
- .brz-ed .nc-outline-cursor-text:before{content:"\ec84"}
5902
- .brz-ed .nc-outline-curtain:before{content:"\ec85"}
5903
- .brz-ed .nc-outline-curve-circuit:before{content:"\ec86"}
5904
- .brz-ed .nc-outline-curve-directions:before{content:"\ec88"}
5905
- .brz-ed .nc-outline-curve-split:before{content:"\ec87"}
5906
- .brz-ed .nc-outline-curved-next:before{content:"\ec89"}
5907
- .brz-ed .nc-outline-curved-previous:before{content:"\ec8a"}
5908
- .brz-ed .nc-outline-customer-support:before{content:"\ec8b"}
5909
- .brz-ed .nc-outline-cut:before{content:"\ec8c"}
5910
- .brz-ed .nc-outline-cute:before{content:"\ec8d"}
5911
- .brz-ed .nc-outline-cutlery-75:before{content:"\ec8e"}
5912
- .brz-ed .nc-outline-cutlery-76:before{content:"\ec8f"}
5913
- .brz-ed .nc-outline-cutlery-77:before{content:"\ec90"}
5914
- .brz-ed .nc-outline-cutlery:before{content:"\ec91"}
5915
- .brz-ed .nc-outline-cyclist:before{content:"\ec92"}
5916
- .brz-ed .nc-outline-dart:before{content:"\ec93"}
5917
- .brz-ed .nc-outline-dashboard-29:before{content:"\ec94"}
5918
- .brz-ed .nc-outline-dashboard-30:before{content:"\ec95"}
5919
- .brz-ed .nc-outline-dashboard-half:before{content:"\ec96"}
5920
- .brz-ed .nc-outline-dashboard-level:before{content:"\ec97"}
5921
- .brz-ed .nc-outline-database:before{content:"\ec98"}
5922
- .brz-ed .nc-outline-dead-hand:before{content:"\ec9a"}
5923
- .brz-ed .nc-outline-decoration:before{content:"\ec99"}
5924
- .brz-ed .nc-outline-deer:before{content:"\ec9c"}
5925
- .brz-ed .nc-outline-delete-28:before{content:"\ec9b"}
5926
- .brz-ed .nc-outline-delete-30:before{content:"\ec9d"}
5927
- .brz-ed .nc-outline-delete-49:before{content:"\ec9e"}
5928
- .brz-ed .nc-outline-delete-50:before{content:"\ec9f"}
5929
- .brz-ed .nc-outline-delivery-2:before{content:"\eca0"}
5930
- .brz-ed .nc-outline-delivery-3:before{content:"\eca1"}
5931
- .brz-ed .nc-outline-delivery-fast:before{content:"\eca2"}
5932
- .brz-ed .nc-outline-delivery-time:before{content:"\eca3"}
5933
- .brz-ed .nc-outline-delivery-track:before{content:"\eca4"}
5934
- .brz-ed .nc-outline-delivery:before{content:"\eca5"}
5935
- .brz-ed .nc-outline-design-system:before{content:"\eca6"}
5936
- .brz-ed .nc-outline-design:before{content:"\eca7"}
5937
- .brz-ed .nc-outline-desk-drawer:before{content:"\eca8"}
5938
- .brz-ed .nc-outline-desk:before{content:"\eca9"}
5939
- .brz-ed .nc-outline-desktop-screen:before{content:"\ecaa"}
5940
- .brz-ed .nc-outline-desktop:before{content:"\ecab"}
5941
- .brz-ed .nc-outline-detox:before{content:"\ecac"}
5942
- .brz-ed .nc-outline-dev:before{content:"\ecad"}
5943
- .brz-ed .nc-outline-device-connection:before{content:"\ecae"}
5944
- .brz-ed .nc-outline-devil:before{content:"\ecaf"}
5945
- .brz-ed .nc-outline-diag-bottom-left:before{content:"\ecb0"}
5946
- .brz-ed .nc-outline-diag-bottom-right:before{content:"\ecb1"}
5947
- .brz-ed .nc-outline-diag-top-left:before{content:"\ecb2"}
5948
- .brz-ed .nc-outline-diag-top-right:before{content:"\ecb3"}
5949
- .brz-ed .nc-outline-diamond:before{content:"\ecb4"}
5950
- .brz-ed .nc-outline-dice:before{content:"\ecb6"}
5951
- .brz-ed .nc-outline-diet-plan:before{content:"\ecb5"}
5952
- .brz-ed .nc-outline-diet:before{content:"\ecb7"}
5953
- .brz-ed .nc-outline-direction-53:before{content:"\ecb8"}
5954
- .brz-ed .nc-outline-direction-56:before{content:"\ecb9"}
5955
- .brz-ed .nc-outline-direction:before{content:"\ecba"}
5956
- .brz-ed .nc-outline-directions:before{content:"\ecbb"}
5957
- .brz-ed .nc-outline-disabled:before{content:"\ecbc"}
5958
- .brz-ed .nc-outline-discount-2:before{content:"\ecbd"}
5959
- .brz-ed .nc-outline-discount:before{content:"\ecbe"}
5960
- .brz-ed .nc-outline-disgusted:before{content:"\ecc0"}
5961
- .brz-ed .nc-outline-dish:before{content:"\ecbf"}
5962
- .brz-ed .nc-outline-dishwasher:before{content:"\ecc1"}
5963
- .brz-ed .nc-outline-disk-2:before{content:"\ecc2"}
5964
- .brz-ed .nc-outline-disk-reader:before{content:"\ecc3"}
5965
- .brz-ed .nc-outline-disk:before{content:"\ecc4"}
5966
- .brz-ed .nc-outline-disperse:before{content:"\ecc6"}
5967
- .brz-ed .nc-outline-distribute-horizontal:before{content:"\ecc5"}
5968
- .brz-ed .nc-outline-distribute-vertical:before{content:"\ecc7"}
5969
- .brz-ed .nc-outline-divider:before{content:"\ecc8"}
5970
- .brz-ed .nc-outline-dna-27:before{content:"\ecc9"}
5971
- .brz-ed .nc-outline-dna-38:before{content:"\ecca"}
5972
- .brz-ed .nc-outline-dock-bottom:before{content:"\eccb"}
5973
- .brz-ed .nc-outline-dock-left:before{content:"\eccc"}
5974
- .brz-ed .nc-outline-dock-right:before{content:"\eccd"}
5975
- .brz-ed .nc-outline-dock-top:before{content:"\ecce"}
5976
- .brz-ed .nc-outline-dock:before{content:"\eccf"}
5977
- .brz-ed .nc-outline-doctor:before{content:"\ecd0"}
5978
- .brz-ed .nc-outline-dog-house:before{content:"\ecd1"}
5979
- .brz-ed .nc-outline-dog:before{content:"\ecd2"}
5980
- .brz-ed .nc-outline-donut:before{content:"\ecd3"}
5981
- .brz-ed .nc-outline-door:before{content:"\ecd4"}
5982
- .brz-ed .nc-outline-dots-05:before{content:"\ecd5"}
5983
- .brz-ed .nc-outline-dots-06:before{content:"\ecd6"}
5984
- .brz-ed .nc-outline-dots-07:before{content:"\ecd7"}
5985
- .brz-ed .nc-outline-dots-download:before{content:"\ecd8"}
5986
- .brz-ed .nc-outline-dots-upload:before{content:"\ecda"}
5987
- .brz-ed .nc-outline-dots:before{content:"\ecd9"}
5988
- .brz-ed .nc-outline-double-left:before{content:"\ecdb"}
5989
- .brz-ed .nc-outline-double-right:before{content:"\ecdc"}
5990
- .brz-ed .nc-outline-double-tap:before{content:"\ecdd"}
5991
- .brz-ed .nc-outline-download-2:before{content:"\ecde"}
5992
- .brz-ed .nc-outline-download-3:before{content:"\ecdf"}
5993
- .brz-ed .nc-outline-download:before{content:"\ece0"}
5994
- .brz-ed .nc-outline-drag-21:before{content:"\ece1"}
5995
- .brz-ed .nc-outline-drag-31:before{content:"\ece2"}
5996
- .brz-ed .nc-outline-drag-down:before{content:"\ece3"}
5997
- .brz-ed .nc-outline-drag-left:before{content:"\ece4"}
5998
- .brz-ed .nc-outline-drag-right:before{content:"\ece5"}
5999
- .brz-ed .nc-outline-drag-up:before{content:"\ece6"}
6000
- .brz-ed .nc-outline-drag:before{content:"\ece7"}
6001
- .brz-ed .nc-outline-drawer-2:before{content:"\ece8"}
6002
- .brz-ed .nc-outline-drawer:before{content:"\ece9"}
6003
- .brz-ed .nc-outline-dress-man:before{content:"\ecea"}
6004
- .brz-ed .nc-outline-dress-woman:before{content:"\eceb"}
6005
- .brz-ed .nc-outline-drink-2:before{content:"\ecec"}
6006
- .brz-ed .nc-outline-drink-list:before{content:"\eced"}
6007
- .brz-ed .nc-outline-drink:before{content:"\ecee"}
6008
- .brz-ed .nc-outline-drop-15:before{content:"\ecef"}
6009
- .brz-ed .nc-outline-drop:before{content:"\ecf0"}
6010
- .brz-ed .nc-outline-drops:before{content:"\ecf1"}
6011
- .brz-ed .nc-outline-dumbbells:before{content:"\ecf2"}
6012
- .brz-ed .nc-outline-eclipse:before{content:"\ecf3"}
6013
- .brz-ed .nc-outline-edit-2:before{content:"\ecf4"}
6014
- .brz-ed .nc-outline-edit-71:before{content:"\ecf5"}
6015
- .brz-ed .nc-outline-edit-72:before{content:"\ecf6"}
6016
- .brz-ed .nc-outline-edit-73:before{content:"\ecf7"}
6017
- .brz-ed .nc-outline-edit-74:before{content:"\ecf8"}
6018
- .brz-ed .nc-outline-edit-75:before{content:"\ecf9"}
6019
- .brz-ed .nc-outline-edit-76:before{content:"\ecfa"}
6020
- .brz-ed .nc-outline-edit-77:before{content:"\ecfb"}
6021
- .brz-ed .nc-outline-edit-78:before{content:"\ecfc"}
6022
- .brz-ed .nc-outline-edit-color:before{content:"\ecfd"}
6023
- .brz-ed .nc-outline-edit-contrast-42:before{content:"\ecfe"}
6024
- .brz-ed .nc-outline-edit-contrast-43:before{content:"\ecff"}
6025
- .brz-ed .nc-outline-edit-saturation:before{content:"\ed00"}
6026
- .brz-ed .nc-outline-edit:before{content:"\ed01"}
6027
- .brz-ed .nc-outline-egg-38:before{content:"\ed02"}
6028
- .brz-ed .nc-outline-egg-39:before{content:"\ed03"}
6029
- .brz-ed .nc-outline-egg:before{content:"\ed04"}
6030
- .brz-ed .nc-outline-eject:before{content:"\ed05"}
6031
- .brz-ed .nc-outline-email-83:before{content:"\ed06"}
6032
- .brz-ed .nc-outline-email-84:before{content:"\ed07"}
6033
- .brz-ed .nc-outline-email-85:before{content:"\ed08"}
6034
- .brz-ed .nc-outline-energy-drink-2:before{content:"\ed0a"}
6035
- .brz-ed .nc-outline-energy-drink:before{content:"\ed09"}
6036
- .brz-ed .nc-outline-energy-supplement:before{content:"\ed0b"}
6037
- .brz-ed .nc-outline-energy:before{content:"\ed0c"}
6038
- .brz-ed .nc-outline-engine-start:before{content:"\ed0d"}
6039
- .brz-ed .nc-outline-engine:before{content:"\ed0e"}
6040
- .brz-ed .nc-outline-enlarge-45:before{content:"\ed0f"}
6041
- .brz-ed .nc-outline-enlarge-46:before{content:"\ed10"}
6042
- .brz-ed .nc-outline-enlarge-57:before{content:"\ed12"}
6043
- .brz-ed .nc-outline-enlarge-58:before{content:"\ed11"}
6044
- .brz-ed .nc-outline-enlarge-59:before{content:"\ed13"}
6045
- .brz-ed .nc-outline-enlarge-circle:before{content:"\ed14"}
6046
- .brz-ed .nc-outline-enlarge-diagonal-43:before{content:"\ed15"}
6047
- .brz-ed .nc-outline-enlarge-diagonal-44:before{content:"\ed16"}
6048
- .brz-ed .nc-outline-enlarge-horizontal:before{content:"\ed17"}
6049
- .brz-ed .nc-outline-enlarge-vertical:before{content:"\ed18"}
6050
- .brz-ed .nc-outline-eraser-32:before{content:"\ed19"}
6051
- .brz-ed .nc-outline-eraser-33:before{content:"\ed1a"}
6052
- .brz-ed .nc-outline-eraser-46:before{content:"\ed1b"}
6053
- .brz-ed .nc-outline-event-confirm:before{content:"\ed1c"}
6054
- .brz-ed .nc-outline-event-create:before{content:"\ed1d"}
6055
- .brz-ed .nc-outline-exchange:before{content:"\ed1e"}
6056
- .brz-ed .nc-outline-exclamation:before{content:"\ed1f"}
6057
- .brz-ed .nc-outline-explore-2:before{content:"\ed20"}
6058
- .brz-ed .nc-outline-explore-user:before{content:"\ed21"}
6059
- .brz-ed .nc-outline-explore:before{content:"\ed22"}
6060
- .brz-ed .nc-outline-export:before{content:"\ed23"}
6061
- .brz-ed .nc-outline-eye-17:before{content:"\ed24"}
6062
- .brz-ed .nc-outline-eye-19:before{content:"\ed25"}
6063
- .brz-ed .nc-outline-eye-ban-18:before{content:"\ed26"}
6064
- .brz-ed .nc-outline-eye-ban-20:before{content:"\ed27"}
6065
- .brz-ed .nc-outline-factory:before{content:"\ed28"}
6066
- .brz-ed .nc-outline-fahrenheit:before{content:"\ed2a"}
6067
- .brz-ed .nc-outline-family:before{content:"\ed29"}
6068
- .brz-ed .nc-outline-fat-add:before{content:"\ed2b"}
6069
- .brz-ed .nc-outline-fat-delete:before{content:"\ed2c"}
6070
- .brz-ed .nc-outline-fat-remove:before{content:"\ed2e"}
6071
- .brz-ed .nc-outline-fav-remove:before{content:"\ed2d"}
6072
- .brz-ed .nc-outline-favourite-28:before{content:"\ed2f"}
6073
- .brz-ed .nc-outline-favourite-31:before{content:"\ed30"}
6074
- .brz-ed .nc-outline-favourite-add-29:before{content:"\ed31"}
6075
- .brz-ed .nc-outline-favourite-add-32:before{content:"\ed32"}
6076
- .brz-ed .nc-outline-favourite-remove-30:before{content:"\ed33"}
6077
- .brz-ed .nc-outline-favourite-remove-33:before{content:"\ed34"}
6078
- .brz-ed .nc-outline-fencing:before{content:"\ed36"}
6079
- .brz-ed .nc-outline-file-add:before{content:"\ed35"}
6080
- .brz-ed .nc-outline-file-delete:before{content:"\ed37"}
6081
- .brz-ed .nc-outline-file-download-87:before{content:"\ed38"}
6082
- .brz-ed .nc-outline-file-download-89:before{content:"\ed39"}
6083
- .brz-ed .nc-outline-file-download-94:before{content:"\ed3a"}
6084
- .brz-ed .nc-outline-file-upload-86:before{content:"\ed3b"}
6085
- .brz-ed .nc-outline-file-upload-88:before{content:"\ed3c"}
6086
- .brz-ed .nc-outline-file-upload-93:before{content:"\ed3d"}
6087
- .brz-ed .nc-outline-filter-check:before{content:"\ed3e"}
6088
- .brz-ed .nc-outline-filter-organization:before{content:"\ed3f"}
6089
- .brz-ed .nc-outline-filter-remove:before{content:"\ed40"}
6090
- .brz-ed .nc-outline-filter:before{content:"\ed41"}
6091
- .brz-ed .nc-outline-fire:before{content:"\ed42"}
6092
- .brz-ed .nc-outline-firewall:before{content:"\ed43"}
6093
- .brz-ed .nc-outline-fish:before{content:"\ed44"}
6094
- .brz-ed .nc-outline-fishbone:before{content:"\ed46"}
6095
- .brz-ed .nc-outline-fishing:before{content:"\ed45"}
6096
- .brz-ed .nc-outline-fist:before{content:"\ed47"}
6097
- .brz-ed .nc-outline-fit-horizontal:before{content:"\ed48"}
6098
- .brz-ed .nc-outline-fit-vertical:before{content:"\ed49"}
6099
- .brz-ed .nc-outline-flag-complex:before{content:"\ed4a"}
6100
- .brz-ed .nc-outline-flag-diagonal-33:before{content:"\ed4b"}
6101
- .brz-ed .nc-outline-flag-diagonal-34:before{content:"\ed4c"}
6102
- .brz-ed .nc-outline-flag-finish:before{content:"\ed4d"}
6103
- .brz-ed .nc-outline-flag-points-31:before{content:"\ed4e"}
6104
- .brz-ed .nc-outline-flag-points-32:before{content:"\ed50"}
6105
- .brz-ed .nc-outline-flag-simple:before{content:"\ed4f"}
6106
- .brz-ed .nc-outline-flag-triangle:before{content:"\ed51"}
6107
- .brz-ed .nc-outline-flag:before{content:"\ed52"}
6108
- .brz-ed .nc-outline-flame:before{content:"\ed53"}
6109
- .brz-ed .nc-outline-flash-21:before{content:"\ed54"}
6110
- .brz-ed .nc-outline-flash-24:before{content:"\ed55"}
6111
- .brz-ed .nc-outline-flash-29:before{content:"\ed56"}
6112
- .brz-ed .nc-outline-flash-auto-22:before{content:"\ed58"}
6113
- .brz-ed .nc-outline-flash-auto-25:before{content:"\ed57"}
6114
- .brz-ed .nc-outline-flash-off-23:before{content:"\ed59"}
6115
- .brz-ed .nc-outline-flash-off-26:before{content:"\ed5a"}
6116
- .brz-ed .nc-outline-flask-2:before{content:"\ed5b"}
6117
- .brz-ed .nc-outline-flask:before{content:"\ed5c"}
6118
- .brz-ed .nc-outline-flick-down:before{content:"\ed5d"}
6119
- .brz-ed .nc-outline-flick-left:before{content:"\ed5e"}
6120
- .brz-ed .nc-outline-flick-right:before{content:"\ed5f"}
6121
- .brz-ed .nc-outline-flick-up:before{content:"\ed60"}
6122
- .brz-ed .nc-outline-flip-horizontal:before{content:"\ed61"}
6123
- .brz-ed .nc-outline-flip-vertical:before{content:"\ed62"}
6124
- .brz-ed .nc-outline-flip:before{content:"\ed63"}
6125
- .brz-ed .nc-outline-flower-05:before{content:"\ed64"}
6126
- .brz-ed .nc-outline-flower-06:before{content:"\ed65"}
6127
- .brz-ed .nc-outline-flower-07:before{content:"\ed66"}
6128
- .brz-ed .nc-outline-focus-32:before{content:"\ed67"}
6129
- .brz-ed .nc-outline-focus-38:before{content:"\ed68"}
6130
- .brz-ed .nc-outline-focus-40:before{content:"\ed69"}
6131
- .brz-ed .nc-outline-focus-circle:before{content:"\ed6a"}
6132
- .brz-ed .nc-outline-focus:before{content:"\ed6c"}
6133
- .brz-ed .nc-outline-fog:before{content:"\ed6b"}
6134
- .brz-ed .nc-outline-folder-13:before{content:"\ed6d"}
6135
- .brz-ed .nc-outline-folder-14:before{content:"\ed6e"}
6136
- .brz-ed .nc-outline-folder-15:before{content:"\ed70"}
6137
- .brz-ed .nc-outline-folder-16:before{content:"\ed6f"}
6138
- .brz-ed .nc-outline-folder-17:before{content:"\ed71"}
6139
- .brz-ed .nc-outline-folder-18:before{content:"\ed72"}
6140
- .brz-ed .nc-outline-folder-19:before{content:"\ed73"}
6141
- .brz-ed .nc-outline-folder-add:before{content:"\ed74"}
6142
- .brz-ed .nc-outline-folder-audio:before{content:"\ed75"}
6143
- .brz-ed .nc-outline-folder-bookmark:before{content:"\ed76"}
6144
- .brz-ed .nc-outline-folder-chart-bar:before{content:"\ed78"}
6145
- .brz-ed .nc-outline-folder-chart-pie:before{content:"\ed77"}
6146
- .brz-ed .nc-outline-folder-check:before{content:"\ed79"}
6147
- .brz-ed .nc-outline-folder-cloud:before{content:"\ed7a"}
6148
- .brz-ed .nc-outline-folder-dev:before{content:"\ed7c"}
6149
- .brz-ed .nc-outline-folder-download:before{content:"\ed7b"}
6150
- .brz-ed .nc-outline-folder-edit:before{content:"\ed7d"}
6151
- .brz-ed .nc-outline-folder-exclamation:before{content:"\ed7e"}
6152
- .brz-ed .nc-outline-folder-gallery:before{content:"\ed7f"}
6153
- .brz-ed .nc-outline-folder-heart:before{content:"\ed80"}
6154
- .brz-ed .nc-outline-folder-image:before{content:"\ed81"}
6155
- .brz-ed .nc-outline-folder-info:before{content:"\ed82"}
6156
- .brz-ed .nc-outline-folder-link:before{content:"\ed83"}
6157
- .brz-ed .nc-outline-folder-locked:before{content:"\ed84"}
6158
- .brz-ed .nc-outline-folder-money:before{content:"\ed85"}
6159
- .brz-ed .nc-outline-folder-music:before{content:"\ed86"}
6160
- .brz-ed .nc-outline-folder-no-access:before{content:"\ed87"}
6161
- .brz-ed .nc-outline-folder-play:before{content:"\ed88"}
6162
- .brz-ed .nc-outline-folder-question:before{content:"\ed89"}
6163
- .brz-ed .nc-outline-folder-refresh:before{content:"\ed8a"}
6164
- .brz-ed .nc-outline-folder-remove:before{content:"\ed8b"}
6165
- .brz-ed .nc-outline-folder-search:before{content:"\ed8c"}
6166
- .brz-ed .nc-outline-folder-settings-81:before{content:"\ed8d"}
6167
- .brz-ed .nc-outline-folder-settings-97:before{content:"\ed8e"}
6168
- .brz-ed .nc-outline-folder-shared:before{content:"\ed8f"}
6169
- .brz-ed .nc-outline-folder-star:before{content:"\ed90"}
6170
- .brz-ed .nc-outline-folder-time:before{content:"\ed91"}
6171
- .brz-ed .nc-outline-folder-upload:before{content:"\ed92"}
6172
- .brz-ed .nc-outline-folder-user:before{content:"\ed93"}
6173
- .brz-ed .nc-outline-folder-vector:before{content:"\ed94"}
6174
- .brz-ed .nc-outline-food-dog:before{content:"\ed95"}
6175
- .brz-ed .nc-outline-food-scale:before{content:"\ed96"}
6176
- .brz-ed .nc-outline-food:before{content:"\ed97"}
6177
- .brz-ed .nc-outline-football-headguard:before{content:"\ed98"}
6178
- .brz-ed .nc-outline-forecast:before{content:"\ed99"}
6179
- .brz-ed .nc-outline-forest:before{content:"\ed9a"}
6180
- .brz-ed .nc-outline-fork-round:before{content:"\ed9c"}
6181
- .brz-ed .nc-outline-fork:before{content:"\ed9b"}
6182
- .brz-ed .nc-outline-form:before{content:"\ed9e"}
6183
- .brz-ed .nc-outline-format-left:before{content:"\ed9d"}
6184
- .brz-ed .nc-outline-format-right:before{content:"\ed9f"}
6185
- .brz-ed .nc-outline-forward:before{content:"\eda0"}
6186
- .brz-ed .nc-outline-frame-12:before{content:"\eda1"}
6187
- .brz-ed .nc-outline-frame-41:before{content:"\eda2"}
6188
- .brz-ed .nc-outline-frame:before{content:"\eda3"}
6189
- .brz-ed .nc-outline-frankenstein:before{content:"\eda4"}
6190
- .brz-ed .nc-outline-fridge:before{content:"\eda6"}
6191
- .brz-ed .nc-outline-fuel-2:before{content:"\eda5"}
6192
- .brz-ed .nc-outline-fuel-electric:before{content:"\eda7"}
6193
- .brz-ed .nc-outline-fuel:before{content:"\eda8"}
6194
- .brz-ed .nc-outline-full-screen:before{content:"\eda9"}
6195
- .brz-ed .nc-outline-fullscreen-70:before{content:"\edaa"}
6196
- .brz-ed .nc-outline-fullscreen-71:before{content:"\edab"}
6197
- .brz-ed .nc-outline-fullscreen-76:before{content:"\edac"}
6198
- .brz-ed .nc-outline-fullscreen-77:before{content:"\edae"}
6199
- .brz-ed .nc-outline-fullscreen-double-74:before{content:"\edad"}
6200
- .brz-ed .nc-outline-fullscreen-double-75:before{content:"\edaf"}
6201
- .brz-ed .nc-outline-fullscreen-split-72:before{content:"\edb0"}
6202
- .brz-ed .nc-outline-fullscreen-split-73:before{content:"\edb1"}
6203
- .brz-ed .nc-outline-fullsize:before{content:"\edb2"}
6204
- .brz-ed .nc-outline-funnel-39:before{content:"\edb3"}
6205
- .brz-ed .nc-outline-funnel-40:before{content:"\edb4"}
6206
- .brz-ed .nc-outline-funnel-41:before{content:"\edb5"}
6207
- .brz-ed .nc-outline-gallery:before{content:"\edb6"}
6208
- .brz-ed .nc-outline-gantt:before{content:"\edb7"}
6209
- .brz-ed .nc-outline-garlic:before{content:"\edb8"}
6210
- .brz-ed .nc-outline-ghost-2:before{content:"\edb9"}
6211
- .brz-ed .nc-outline-ghost:before{content:"\edba"}
6212
- .brz-ed .nc-outline-gift-2:before{content:"\edbb"}
6213
- .brz-ed .nc-outline-gift-exchange:before{content:"\edbc"}
6214
- .brz-ed .nc-outline-gift:before{content:"\edbd"}
6215
- .brz-ed .nc-outline-git-commit:before{content:"\edbe"}
6216
- .brz-ed .nc-outline-glass-water:before{content:"\edbf"}
6217
- .brz-ed .nc-outline-glass:before{content:"\edc0"}
6218
- .brz-ed .nc-outline-glasses-2:before{content:"\edc2"}
6219
- .brz-ed .nc-outline-glasses:before{content:"\edc1"}
6220
- .brz-ed .nc-outline-globe-2:before{content:"\edc3"}
6221
- .brz-ed .nc-outline-globe:before{content:"\edc4"}
6222
- .brz-ed .nc-outline-glove:before{content:"\edc5"}
6223
- .brz-ed .nc-outline-gloves:before{content:"\edc6"}
6224
- .brz-ed .nc-outline-goal-64:before{content:"\edc7"}
6225
- .brz-ed .nc-outline-goal-65:before{content:"\edc8"}
6226
- .brz-ed .nc-outline-gold:before{content:"\edc9"}
6227
- .brz-ed .nc-outline-golf:before{content:"\edca"}
6228
- .brz-ed .nc-outline-gps:before{content:"\edcb"}
6229
- .brz-ed .nc-outline-grab:before{content:"\edcc"}
6230
- .brz-ed .nc-outline-gradient:before{content:"\edcd"}
6231
- .brz-ed .nc-outline-grammar-check:before{content:"\edce"}
6232
- .brz-ed .nc-outline-grape:before{content:"\edcf"}
6233
- .brz-ed .nc-outline-grave:before{content:"\edd0"}
6234
- .brz-ed .nc-outline-grid-45:before{content:"\edd1"}
6235
- .brz-ed .nc-outline-grid-46:before{content:"\edd2"}
6236
- .brz-ed .nc-outline-grid-48:before{content:"\edd3"}
6237
- .brz-ed .nc-outline-grid-49:before{content:"\edd4"}
6238
- .brz-ed .nc-outline-grid-50:before{content:"\edd5"}
6239
- .brz-ed .nc-outline-grid-square:before{content:"\edd6"}
6240
- .brz-ed .nc-outline-grid-system:before{content:"\edd8"}
6241
- .brz-ed .nc-outline-grid:before{content:"\edd7"}
6242
- .brz-ed .nc-outline-group:before{content:"\edd9"}
6243
- .brz-ed .nc-outline-guitar:before{content:"\edda"}
6244
- .brz-ed .nc-outline-hammer:before{content:"\eddb"}
6245
- .brz-ed .nc-outline-hand-card:before{content:"\eddc"}
6246
- .brz-ed .nc-outline-handout:before{content:"\edde"}
6247
- .brz-ed .nc-outline-handshake:before{content:"\eddd"}
6248
- .brz-ed .nc-outline-hanger-clothes:before{content:"\eddf"}
6249
- .brz-ed .nc-outline-hanger:before{content:"\ede0"}
6250
- .brz-ed .nc-outline-hannibal:before{content:"\ede2"}
6251
- .brz-ed .nc-outline-happy-sun:before{content:"\ede1"}
6252
- .brz-ed .nc-outline-hat-2:before{content:"\ede3"}
6253
- .brz-ed .nc-outline-hat-3:before{content:"\ede4"}
6254
- .brz-ed .nc-outline-hat-top:before{content:"\ede5"}
6255
- .brz-ed .nc-outline-hat:before{content:"\ede6"}
6256
- .brz-ed .nc-outline-hazelnut:before{content:"\ede7"}
6257
- .brz-ed .nc-outline-hdmi:before{content:"\ede8"}
6258
- .brz-ed .nc-outline-headphone:before{content:"\ede9"}
6259
- .brz-ed .nc-outline-headphones-2:before{content:"\edea"}
6260
- .brz-ed .nc-outline-headphones-mic:before{content:"\edec"}
6261
- .brz-ed .nc-outline-headphones:before{content:"\edeb"}
6262
- .brz-ed .nc-outline-headset:before{content:"\eded"}
6263
- .brz-ed .nc-outline-heart-2:before{content:"\edee"}
6264
- .brz-ed .nc-outline-heart-add:before{content:"\edef"}
6265
- .brz-ed .nc-outline-heart-remove:before{content:"\edf0"}
6266
- .brz-ed .nc-outline-heart:before{content:"\edf2"}
6267
- .brz-ed .nc-outline-heartbeat:before{content:"\edf1"}
6268
- .brz-ed .nc-outline-heater:before{content:"\edf3"}
6269
- .brz-ed .nc-outline-height:before{content:"\edf4"}
6270
- .brz-ed .nc-outline-helicopter:before{content:"\edf5"}
6271
- .brz-ed .nc-outline-helmet-2:before{content:"\edf6"}
6272
- .brz-ed .nc-outline-helmet:before{content:"\edf7"}
6273
- .brz-ed .nc-outline-hierarchy-53:before{content:"\edf8"}
6274
- .brz-ed .nc-outline-hierarchy-54:before{content:"\edfa"}
6275
- .brz-ed .nc-outline-hierarchy-55:before{content:"\edf9"}
6276
- .brz-ed .nc-outline-hierarchy-56:before{content:"\edfb"}
6277
- .brz-ed .nc-outline-hit-down:before{content:"\edfc"}
6278
- .brz-ed .nc-outline-hit-left:before{content:"\edfd"}
6279
- .brz-ed .nc-outline-hit-right:before{content:"\edfe"}
6280
- .brz-ed .nc-outline-hit-up:before{content:"\edff"}
6281
- .brz-ed .nc-outline-hob:before{content:"\ee00"}
6282
- .brz-ed .nc-outline-hockey:before{content:"\ee01"}
6283
- .brz-ed .nc-outline-hold:before{content:"\ee02"}
6284
- .brz-ed .nc-outline-home-2:before{content:"\ee03"}
6285
- .brz-ed .nc-outline-home-51:before{content:"\ee04"}
6286
- .brz-ed .nc-outline-home-52:before{content:"\ee05"}
6287
- .brz-ed .nc-outline-home-minimal:before{content:"\ee06"}
6288
- .brz-ed .nc-outline-home-search:before{content:"\ee07"}
6289
- .brz-ed .nc-outline-home-simple:before{content:"\ee08"}
6290
- .brz-ed .nc-outline-home:before{content:"\ee09"}
6291
- .brz-ed .nc-outline-honey:before{content:"\ee0a"}
6292
- .brz-ed .nc-outline-hoodie:before{content:"\ee0b"}
6293
- .brz-ed .nc-outline-hospital-32:before{content:"\ee0c"}
6294
- .brz-ed .nc-outline-hospital-33:before{content:"\ee0d"}
6295
- .brz-ed .nc-outline-hospital-34:before{content:"\ee0e"}
6296
- .brz-ed .nc-outline-hot-dog:before{content:"\ee0f"}
6297
- .brz-ed .nc-outline-hotel-bell:before{content:"\ee10"}
6298
- .brz-ed .nc-outline-hotel-symbol:before{content:"\ee11"}
6299
- .brz-ed .nc-outline-hotel:before{content:"\ee12"}
6300
- .brz-ed .nc-outline-hourglass:before{content:"\ee13"}
6301
- .brz-ed .nc-outline-html5:before{content:"\ee14"}
6302
- .brz-ed .nc-outline-humidity-26:before{content:"\ee15"}
6303
- .brz-ed .nc-outline-humidity-52:before{content:"\ee16"}
6304
- .brz-ed .nc-outline-hurricane-44:before{content:"\ee17"}
6305
- .brz-ed .nc-outline-hurricane-45:before{content:"\ee18"}
6306
- .brz-ed .nc-outline-hut:before{content:"\ee19"}
6307
- .brz-ed .nc-outline-hybrid:before{content:"\ee1a"}
6308
- .brz-ed .nc-outline-ice-cream-22:before{content:"\ee1b"}
6309
- .brz-ed .nc-outline-ice-cream-72:before{content:"\ee1c"}
6310
- .brz-ed .nc-outline-ice-cream:before{content:"\ee1d"}
6311
- .brz-ed .nc-outline-igloo:before{content:"\ee1e"}
6312
- .brz-ed .nc-outline-image-01:before{content:"\ee1f"}
6313
- .brz-ed .nc-outline-image-02:before{content:"\ee20"}
6314
- .brz-ed .nc-outline-image-05:before{content:"\ee21"}
6315
- .brz-ed .nc-outline-image-2:before{content:"\ee22"}
6316
- .brz-ed .nc-outline-image-3:before{content:"\ee23"}
6317
- .brz-ed .nc-outline-image-add:before{content:"\ee24"}
6318
- .brz-ed .nc-outline-image-delete:before{content:"\ee25"}
6319
- .brz-ed .nc-outline-image-location:before{content:"\ee26"}
6320
- .brz-ed .nc-outline-image:before{content:"\ee27"}
6321
- .brz-ed .nc-outline-infinite:before{content:"\ee28"}
6322
- .brz-ed .nc-outline-info:before{content:"\ee29"}
6323
- .brz-ed .nc-outline-input-12:before{content:"\ee2a"}
6324
- .brz-ed .nc-outline-input-21:before{content:"\ee2c"}
6325
- .brz-ed .nc-outline-intestine:before{content:"\ee2b"}
6326
- .brz-ed .nc-outline-invert:before{content:"\ee2d"}
6327
- .brz-ed .nc-outline-iron-2:before{content:"\ee2e"}
6328
- .brz-ed .nc-outline-iron-dont:before{content:"\ee2f"}
6329
- .brz-ed .nc-outline-iron:before{content:"\ee30"}
6330
- .brz-ed .nc-outline-istanbul:before{content:"\ee31"}
6331
- .brz-ed .nc-outline-italic:before{content:"\ee32"}
6332
- .brz-ed .nc-outline-jam:before{content:"\ee34"}
6333
- .brz-ed .nc-outline-jeans-41:before{content:"\ee33"}
6334
- .brz-ed .nc-outline-jeans-43:before{content:"\ee35"}
6335
- .brz-ed .nc-outline-jeans-pocket:before{content:"\ee36"}
6336
- .brz-ed .nc-outline-jelly:before{content:"\ee37"}
6337
- .brz-ed .nc-outline-jellyfish:before{content:"\ee38"}
6338
- .brz-ed .nc-outline-journey-04:before{content:"\ee39"}
6339
- .brz-ed .nc-outline-journey-05:before{content:"\ee3a"}
6340
- .brz-ed .nc-outline-journey-06:before{content:"\ee3b"}
6341
- .brz-ed .nc-outline-journey-07:before{content:"\ee3c"}
6342
- .brz-ed .nc-outline-journey-08:before{content:"\ee3d"}
6343
- .brz-ed .nc-outline-juice:before{content:"\ee3e"}
6344
- .brz-ed .nc-outline-kettle:before{content:"\ee3f"}
6345
- .brz-ed .nc-outline-kettlebell:before{content:"\ee40"}
6346
- .brz-ed .nc-outline-key-25:before{content:"\ee41"}
6347
- .brz-ed .nc-outline-key-26:before{content:"\ee42"}
6348
- .brz-ed .nc-outline-keyboard-hide:before{content:"\ee43"}
6349
- .brz-ed .nc-outline-keyboard-mouse:before{content:"\ee44"}
6350
- .brz-ed .nc-outline-keyboard-wifi:before{content:"\ee45"}
6351
- .brz-ed .nc-outline-keyboard-wireless:before{content:"\ee46"}
6352
- .brz-ed .nc-outline-keyboard:before{content:"\ee47"}
6353
- .brz-ed .nc-outline-kid-2:before{content:"\ee48"}
6354
- .brz-ed .nc-outline-kid:before{content:"\ee49"}
6355
- .brz-ed .nc-outline-kiss:before{content:"\ee4a"}
6356
- .brz-ed .nc-outline-kitchen-fan:before{content:"\ee4b"}
6357
- .brz-ed .nc-outline-kitchen:before{content:"\ee4c"}
6358
- .brz-ed .nc-outline-kiwi:before{content:"\ee4d"}
6359
- .brz-ed .nc-outline-knife:before{content:"\ee4e"}
6360
- .brz-ed .nc-outline-knob:before{content:"\ee4f"}
6361
- .brz-ed .nc-outline-l-add:before{content:"\ee50"}
6362
- .brz-ed .nc-outline-l-check:before{content:"\ee51"}
6363
- .brz-ed .nc-outline-l-circle:before{content:"\ee52"}
6364
- .brz-ed .nc-outline-l-circles:before{content:"\ee53"}
6365
- .brz-ed .nc-outline-l-location:before{content:"\ee54"}
6366
- .brz-ed .nc-outline-l-remove:before{content:"\ee56"}
6367
- .brz-ed .nc-outline-l-search:before{content:"\ee55"}
6368
- .brz-ed .nc-outline-l-security:before{content:"\ee57"}
6369
- .brz-ed .nc-outline-l-settings:before{content:"\ee58"}
6370
- .brz-ed .nc-outline-l-sync:before{content:"\ee59"}
6371
- .brz-ed .nc-outline-l-system-update:before{content:"\ee5a"}
6372
- .brz-ed .nc-outline-lab:before{content:"\ee5b"}
6373
- .brz-ed .nc-outline-lamp-2:before{content:"\ee5c"}
6374
- .brz-ed .nc-outline-lamp-3:before{content:"\ee5d"}
6375
- .brz-ed .nc-outline-lamp-floor:before{content:"\ee5e"}
6376
- .brz-ed .nc-outline-lamp:before{content:"\ee60"}
6377
- .brz-ed .nc-outline-language:before{content:"\ee5f"}
6378
- .brz-ed .nc-outline-laptop-1:before{content:"\ee62"}
6379
- .brz-ed .nc-outline-laptop-2:before{content:"\ee61"}
6380
- .brz-ed .nc-outline-laptop-71:before{content:"\ee64"}
6381
- .brz-ed .nc-outline-laptop-72:before{content:"\ee63"}
6382
- .brz-ed .nc-outline-laptop:before{content:"\ee65"}
6383
- .brz-ed .nc-outline-laugh-17:before{content:"\ee66"}
6384
- .brz-ed .nc-outline-laugh-35:before{content:"\ee68"}
6385
- .brz-ed .nc-outline-launch-11:before{content:"\ee67"}
6386
- .brz-ed .nc-outline-launch-47:before{content:"\ee69"}
6387
- .brz-ed .nc-outline-law:before{content:"\ee6a"}
6388
- .brz-ed .nc-outline-layers-2:before{content:"\ee6b"}
6389
- .brz-ed .nc-outline-layers-3:before{content:"\ee6c"}
6390
- .brz-ed .nc-outline-layers:before{content:"\ee6d"}
6391
- .brz-ed .nc-outline-layout-11:before{content:"\ee6e"}
6392
- .brz-ed .nc-outline-layout-25:before{content:"\ee6f"}
6393
- .brz-ed .nc-outline-leaf-36:before{content:"\ee70"}
6394
- .brz-ed .nc-outline-leaf-38:before{content:"\ee71"}
6395
- .brz-ed .nc-outline-leaf-80:before{content:"\ee72"}
6396
- .brz-ed .nc-outline-leaf-81:before{content:"\ee73"}
6397
- .brz-ed .nc-outline-leaf-edit:before{content:"\ee74"}
6398
- .brz-ed .nc-outline-lemon-slice:before{content:"\ee76"}
6399
- .brz-ed .nc-outline-lemon:before{content:"\ee75"}
6400
- .brz-ed .nc-outline-lens-31:before{content:"\ee77"}
6401
- .brz-ed .nc-outline-lens-56:before{content:"\ee78"}
6402
- .brz-ed .nc-outline-library:before{content:"\ee79"}
6403
- .brz-ed .nc-outline-light-2:before{content:"\ee7a"}
6404
- .brz-ed .nc-outline-light-3:before{content:"\ee7b"}
6405
- .brz-ed .nc-outline-light-traffic:before{content:"\ee7c"}
6406
- .brz-ed .nc-outline-light:before{content:"\ee7e"}
6407
- .brz-ed .nc-outline-lighter:before{content:"\ee7d"}
6408
- .brz-ed .nc-outline-lighthouse:before{content:"\ee7f"}
6409
- .brz-ed .nc-outline-like-2:before{content:"\ee80"}
6410
- .brz-ed .nc-outline-like-no:before{content:"\ee81"}
6411
- .brz-ed .nc-outline-like:before{content:"\ee82"}
6412
- .brz-ed .nc-outline-line-height:before{content:"\ee83"}
6413
- .brz-ed .nc-outline-lines:before{content:"\ee84"}
6414
- .brz-ed .nc-outline-link-2:before{content:"\ee85"}
6415
- .brz-ed .nc-outline-link-66:before{content:"\ee86"}
6416
- .brz-ed .nc-outline-link-67:before{content:"\ee87"}
6417
- .brz-ed .nc-outline-link-68:before{content:"\ee88"}
6418
- .brz-ed .nc-outline-link-69:before{content:"\ee89"}
6419
- .brz-ed .nc-outline-link-71:before{content:"\ee8a"}
6420
- .brz-ed .nc-outline-link-72:before{content:"\ee8b"}
6421
- .brz-ed .nc-outline-link-broken-70:before{content:"\ee8c"}
6422
- .brz-ed .nc-outline-link-broken-73:before{content:"\ee8d"}
6423
- .brz-ed .nc-outline-link:before{content:"\ee8e"}
6424
- .brz-ed .nc-outline-list-bullet:before{content:"\ee8f"}
6425
- .brz-ed .nc-outline-list-numbers:before{content:"\ee90"}
6426
- .brz-ed .nc-outline-list:before{content:"\ee91"}
6427
- .brz-ed .nc-outline-lobster:before{content:"\ee92"}
6428
- .brz-ed .nc-outline-lock-circle-open:before{content:"\ee93"}
6429
- .brz-ed .nc-outline-lock-circle:before{content:"\ee94"}
6430
- .brz-ed .nc-outline-lock-landscape:before{content:"\ee95"}
6431
- .brz-ed .nc-outline-lock-open:before{content:"\ee96"}
6432
- .brz-ed .nc-outline-lock-portrait:before{content:"\ee97"}
6433
- .brz-ed .nc-outline-lock:before{content:"\ee98"}
6434
- .brz-ed .nc-outline-locked:before{content:"\ee99"}
6435
- .brz-ed .nc-outline-log-in:before{content:"\ee9a"}
6436
- .brz-ed .nc-outline-log-out-2:before{content:"\ee9b"}
6437
- .brz-ed .nc-outline-log-out:before{content:"\ee9c"}
6438
- .brz-ed .nc-outline-logout:before{content:"\ee9d"}
6439
- .brz-ed .nc-outline-lollipop:before{content:"\ee9e"}
6440
- .brz-ed .nc-outline-london:before{content:"\ee9f"}
6441
- .brz-ed .nc-outline-long-sleeve:before{content:"\eea0"}
6442
- .brz-ed .nc-outline-loop-30:before{content:"\eea1"}
6443
- .brz-ed .nc-outline-loop-34:before{content:"\eea2"}
6444
- .brz-ed .nc-outline-loop-82:before{content:"\eea3"}
6445
- .brz-ed .nc-outline-loop-83:before{content:"\eea4"}
6446
- .brz-ed .nc-outline-loop:before{content:"\eea5"}
6447
- .brz-ed .nc-outline-luggage:before{content:"\eea6"}
6448
- .brz-ed .nc-outline-lungs:before{content:"\eea8"}
6449
- .brz-ed .nc-outline-m-add:before{content:"\eea7"}
6450
- .brz-ed .nc-outline-m-check:before{content:"\eea9"}
6451
- .brz-ed .nc-outline-m-delete:before{content:"\eeaa"}
6452
- .brz-ed .nc-outline-m-edit:before{content:"\eeab"}
6453
- .brz-ed .nc-outline-m-heart:before{content:"\eeac"}
6454
- .brz-ed .nc-outline-m-location:before{content:"\eeae"}
6455
- .brz-ed .nc-outline-m-remove:before{content:"\eead"}
6456
- .brz-ed .nc-outline-m-search:before{content:"\eeaf"}
6457
- .brz-ed .nc-outline-m-security:before{content:"\eeb0"}
6458
- .brz-ed .nc-outline-m-settings:before{content:"\eeb2"}
6459
- .brz-ed .nc-outline-m-share:before{content:"\eeb1"}
6460
- .brz-ed .nc-outline-m-star:before{content:"\eeb3"}
6461
- .brz-ed .nc-outline-m-sync:before{content:"\eeb4"}
6462
- .brz-ed .nc-outline-m-time:before{content:"\eeb6"}
6463
- .brz-ed .nc-outline-m-update:before{content:"\eeb5"}
6464
- .brz-ed .nc-outline-macro:before{content:"\eeb7"}
6465
- .brz-ed .nc-outline-mad-12:before{content:"\eeb8"}
6466
- .brz-ed .nc-outline-mad-58:before{content:"\eeb9"}
6467
- .brz-ed .nc-outline-magnet:before{content:"\eeba"}
6468
- .brz-ed .nc-outline-makeup:before{content:"\eebb"}
6469
- .brz-ed .nc-outline-malicious:before{content:"\eebc"}
6470
- .brz-ed .nc-outline-man-20:before{content:"\eebd"}
6471
- .brz-ed .nc-outline-man-23:before{content:"\eebe"}
6472
- .brz-ed .nc-outline-man-down:before{content:"\eebf"}
6473
- .brz-ed .nc-outline-man-glasses:before{content:"\eec0"}
6474
- .brz-ed .nc-outline-man-up:before{content:"\eec1"}
6475
- .brz-ed .nc-outline-man:before{content:"\eec2"}
6476
- .brz-ed .nc-outline-manga-62:before{content:"\eec3"}
6477
- .brz-ed .nc-outline-manga-63:before{content:"\eec4"}
6478
- .brz-ed .nc-outline-map-big:before{content:"\eec5"}
6479
- .brz-ed .nc-outline-map-compass:before{content:"\eec6"}
6480
- .brz-ed .nc-outline-map-gps:before{content:"\eec7"}
6481
- .brz-ed .nc-outline-map-marker:before{content:"\eec8"}
6482
- .brz-ed .nc-outline-map-pin:before{content:"\eec9"}
6483
- .brz-ed .nc-outline-map:before{content:"\eeca"}
6484
- .brz-ed .nc-outline-margin-left:before{content:"\eecb"}
6485
- .brz-ed .nc-outline-margin-right:before{content:"\eecc"}
6486
- .brz-ed .nc-outline-marker-2:before{content:"\eecd"}
6487
- .brz-ed .nc-outline-marker-3:before{content:"\eece"}
6488
- .brz-ed .nc-outline-marker:before{content:"\eecf"}
6489
- .brz-ed .nc-outline-market-music:before{content:"\eed0"}
6490
- .brz-ed .nc-outline-market-play:before{content:"\eed1"}
6491
- .brz-ed .nc-outline-mask-oval:before{content:"\eed2"}
6492
- .brz-ed .nc-outline-mask-rect:before{content:"\eed3"}
6493
- .brz-ed .nc-outline-matches:before{content:"\eed4"}
6494
- .brz-ed .nc-outline-math:before{content:"\eed5"}
6495
- .brz-ed .nc-outline-measure-02:before{content:"\eed6"}
6496
- .brz-ed .nc-outline-measure-17:before{content:"\eed7"}
6497
- .brz-ed .nc-outline-measure-big:before{content:"\eed8"}
6498
- .brz-ed .nc-outline-measuring-cup:before{content:"\eed9"}
6499
- .brz-ed .nc-outline-meat-spit:before{content:"\eeda"}
6500
- .brz-ed .nc-outline-meeting:before{content:"\eedb"}
6501
- .brz-ed .nc-outline-menu-34:before{content:"\eedc"}
6502
- .brz-ed .nc-outline-menu-35:before{content:"\eedd"}
6503
- .brz-ed .nc-outline-menu-bold:before{content:"\eede"}
6504
- .brz-ed .nc-outline-menu-dots:before{content:"\eedf"}
6505
- .brz-ed .nc-outline-menu-left:before{content:"\eee0"}
6506
- .brz-ed .nc-outline-menu-right:before{content:"\eee1"}
6507
- .brz-ed .nc-outline-menu-square:before{content:"\eee2"}
6508
- .brz-ed .nc-outline-menu:before{content:"\eee3"}
6509
- .brz-ed .nc-outline-merge-2:before{content:"\eee4"}
6510
- .brz-ed .nc-outline-merge-round:before{content:"\eee5"}
6511
- .brz-ed .nc-outline-merge:before{content:"\eee6"}
6512
- .brz-ed .nc-outline-message:before{content:"\eee7"}
6513
- .brz-ed .nc-outline-metrics:before{content:"\eee8"}
6514
- .brz-ed .nc-outline-mic-2:before{content:"\eee9"}
6515
- .brz-ed .nc-outline-mic:before{content:"\eeea"}
6516
- .brz-ed .nc-outline-mickey-mouse:before{content:"\eeeb"}
6517
- .brz-ed .nc-outline-microscope:before{content:"\eeec"}
6518
- .brz-ed .nc-outline-microsoft:before{content:"\eeed"}
6519
- .brz-ed .nc-outline-microwave:before{content:"\eeee"}
6520
- .brz-ed .nc-outline-milk:before{content:"\eeef"}
6521
- .brz-ed .nc-outline-minimal-down:before{content:"\eef0"}
6522
- .brz-ed .nc-outline-minimal-left:before{content:"\eef1"}
6523
- .brz-ed .nc-outline-minimal-right:before{content:"\eef2"}
6524
- .brz-ed .nc-outline-minimal-up:before{content:"\eef4"}
6525
- .brz-ed .nc-outline-mirror-2:before{content:"\eef3"}
6526
- .brz-ed .nc-outline-mirror:before{content:"\eef5"}
6527
- .brz-ed .nc-outline-mistletoe:before{content:"\eef6"}
6528
- .brz-ed .nc-outline-mixer:before{content:"\eef7"}
6529
- .brz-ed .nc-outline-mobile-button:before{content:"\eef8"}
6530
- .brz-ed .nc-outline-mobile-camera:before{content:"\eef9"}
6531
- .brz-ed .nc-outline-mobile-card:before{content:"\eefa"}
6532
- .brz-ed .nc-outline-mobile-contact:before{content:"\eefb"}
6533
- .brz-ed .nc-outline-mobile-design:before{content:"\eefc"}
6534
- .brz-ed .nc-outline-mobile-dev:before{content:"\eefd"}
6535
- .brz-ed .nc-outline-mobile-landscape:before{content:"\eefe"}
6536
- .brz-ed .nc-outline-mobile-recharger-08:before{content:"\eeff"}
6537
- .brz-ed .nc-outline-mobile-recharger-09:before{content:"\ef00"}
6538
- .brz-ed .nc-outline-mobile-toolbar:before{content:"\ef01"}
6539
- .brz-ed .nc-outline-mobile:before{content:"\ef02"}
6540
- .brz-ed .nc-outline-moka:before{content:"\ef03"}
6541
- .brz-ed .nc-outline-molecule-39:before{content:"\ef04"}
6542
- .brz-ed .nc-outline-molecule-40:before{content:"\ef05"}
6543
- .brz-ed .nc-outline-molecule:before{content:"\ef06"}
6544
- .brz-ed .nc-outline-money-11:before{content:"\ef08"}
6545
- .brz-ed .nc-outline-money-12:before{content:"\ef07"}
6546
- .brz-ed .nc-outline-money-13:before{content:"\ef0a"}
6547
- .brz-ed .nc-outline-money-bag:before{content:"\ef09"}
6548
- .brz-ed .nc-outline-money-coins:before{content:"\ef0b"}
6549
- .brz-ed .nc-outline-money-growth:before{content:"\ef0c"}
6550
- .brz-ed .nc-outline-money-time:before{content:"\ef0d"}
6551
- .brz-ed .nc-outline-money:before{content:"\ef0e"}
6552
- .brz-ed .nc-outline-monster:before{content:"\ef0f"}
6553
- .brz-ed .nc-outline-moon-cloud-drop:before{content:"\ef10"}
6554
- .brz-ed .nc-outline-moon-cloud-fog:before{content:"\ef11"}
6555
- .brz-ed .nc-outline-moon-cloud-hail:before{content:"\ef12"}
6556
- .brz-ed .nc-outline-moon-cloud-light:before{content:"\ef13"}
6557
- .brz-ed .nc-outline-moon-cloud-rain:before{content:"\ef14"}
6558
- .brz-ed .nc-outline-moon-cloud-snow-61:before{content:"\ef15"}
6559
- .brz-ed .nc-outline-moon-cloud-snow-62:before{content:"\ef16"}
6560
- .brz-ed .nc-outline-moon-fog:before{content:"\ef17"}
6561
- .brz-ed .nc-outline-moon-full:before{content:"\ef18"}
6562
- .brz-ed .nc-outline-moon-stars:before{content:"\ef19"}
6563
- .brz-ed .nc-outline-moon:before{content:"\ef1a"}
6564
- .brz-ed .nc-outline-mosque:before{content:"\ef1b"}
6565
- .brz-ed .nc-outline-moto:before{content:"\ef1c"}
6566
- .brz-ed .nc-outline-mountain:before{content:"\ef1d"}
6567
- .brz-ed .nc-outline-mouse-08:before{content:"\ef1e"}
6568
- .brz-ed .nc-outline-mouse-09:before{content:"\ef1f"}
6569
- .brz-ed .nc-outline-mouse-10:before{content:"\ef20"}
6570
- .brz-ed .nc-outline-mouse:before{content:"\ef21"}
6571
- .brz-ed .nc-outline-move-05:before{content:"\ef22"}
6572
- .brz-ed .nc-outline-move-06:before{content:"\ef23"}
6573
- .brz-ed .nc-outline-move-92:before{content:"\ef24"}
6574
- .brz-ed .nc-outline-move-down-2:before{content:"\ef26"}
6575
- .brz-ed .nc-outline-move-down-right:before{content:"\ef25"}
6576
- .brz-ed .nc-outline-move-down:before{content:"\ef27"}
6577
- .brz-ed .nc-outline-move-left:before{content:"\ef28"}
6578
- .brz-ed .nc-outline-move-right:before{content:"\ef29"}
6579
- .brz-ed .nc-outline-move-up-2:before{content:"\ef2a"}
6580
- .brz-ed .nc-outline-move-up-left:before{content:"\ef2b"}
6581
- .brz-ed .nc-outline-move-up:before{content:"\ef2c"}
6582
- .brz-ed .nc-outline-movie-61:before{content:"\ef2d"}
6583
- .brz-ed .nc-outline-movie-62:before{content:"\ef2e"}
6584
- .brz-ed .nc-outline-muffin:before{content:"\ef2f"}
6585
- .brz-ed .nc-outline-mug:before{content:"\ef30"}
6586
- .brz-ed .nc-outline-multiple-11:before{content:"\ef31"}
6587
- .brz-ed .nc-outline-multiple-19:before{content:"\ef32"}
6588
- .brz-ed .nc-outline-multiple:before{content:"\ef33"}
6589
- .brz-ed .nc-outline-mushroom:before{content:"\ef34"}
6590
- .brz-ed .nc-outline-music-2:before{content:"\ef35"}
6591
- .brz-ed .nc-outline-music-album:before{content:"\ef36"}
6592
- .brz-ed .nc-outline-music-cloud:before{content:"\ef38"}
6593
- .brz-ed .nc-outline-music:before{content:"\ef37"}
6594
- .brz-ed .nc-outline-navigation:before{content:"\ef39"}
6595
- .brz-ed .nc-outline-needle:before{content:"\ef3a"}
6596
- .brz-ed .nc-outline-nerd-22:before{content:"\ef3b"}
6597
- .brz-ed .nc-outline-nerd-23:before{content:"\ef3c"}
6598
- .brz-ed .nc-outline-net:before{content:"\ef3d"}
6599
- .brz-ed .nc-outline-network:before{content:"\ef3e"}
6600
- .brz-ed .nc-outline-new:before{content:"\ef3f"}
6601
- .brz-ed .nc-outline-newsletter-dev:before{content:"\ef40"}
6602
- .brz-ed .nc-outline-newsletter:before{content:"\ef41"}
6603
- .brz-ed .nc-outline-night:before{content:"\ef42"}
6604
- .brz-ed .nc-outline-ninja:before{content:"\ef43"}
6605
- .brz-ed .nc-outline-no-access:before{content:"\ef44"}
6606
- .brz-ed .nc-outline-no-words:before{content:"\ef45"}
6607
- .brz-ed .nc-outline-node:before{content:"\ef46"}
6608
- .brz-ed .nc-outline-note-03:before{content:"\ef47"}
6609
- .brz-ed .nc-outline-note-04:before{content:"\ef48"}
6610
- .brz-ed .nc-outline-note-code:before{content:"\ef49"}
6611
- .brz-ed .nc-outline-notebook-2:before{content:"\ef4a"}
6612
- .brz-ed .nc-outline-notebook:before{content:"\ef4b"}
6613
- .brz-ed .nc-outline-notepad:before{content:"\ef4c"}
6614
- .brz-ed .nc-outline-notes:before{content:"\ef4d"}
6615
- .brz-ed .nc-outline-notification-69:before{content:"\ef4e"}
6616
- .brz-ed .nc-outline-notification-70:before{content:"\ef4f"}
6617
- .brz-ed .nc-outline-nurse:before{content:"\ef50"}
6618
- .brz-ed .nc-outline-nutrition:before{content:"\ef51"}
6619
- .brz-ed .nc-outline-ny:before{content:"\ef52"}
6620
- .brz-ed .nc-outline-octopus:before{content:"\ef53"}
6621
- .brz-ed .nc-outline-oil:before{content:"\ef54"}
6622
- .brz-ed .nc-outline-onion:before{content:"\ef55"}
6623
- .brz-ed .nc-outline-open-in-browser:before{content:"\ef56"}
6624
- .brz-ed .nc-outline-opening-times:before{content:"\ef57"}
6625
- .brz-ed .nc-outline-orange:before{content:"\ef58"}
6626
- .brz-ed .nc-outline-organic-2:before{content:"\ef59"}
6627
- .brz-ed .nc-outline-organic:before{content:"\ef5a"}
6628
- .brz-ed .nc-outline-oven:before{content:"\ef5b"}
6629
- .brz-ed .nc-outline-owl:before{content:"\ef5c"}
6630
- .brz-ed .nc-outline-p-add:before{content:"\ef5d"}
6631
- .brz-ed .nc-outline-p-check:before{content:"\ef5e"}
6632
- .brz-ed .nc-outline-p-edit:before{content:"\ef5f"}
6633
- .brz-ed .nc-outline-p-heart:before{content:"\ef60"}
6634
- .brz-ed .nc-outline-p-location:before{content:"\ef61"}
6635
- .brz-ed .nc-outline-p-remove:before{content:"\ef62"}
6636
- .brz-ed .nc-outline-p-search:before{content:"\ef63"}
6637
- .brz-ed .nc-outline-p-settings:before{content:"\ef64"}
6638
- .brz-ed .nc-outline-p-share:before{content:"\ef65"}
6639
- .brz-ed .nc-outline-p-sync:before{content:"\ef66"}
6640
- .brz-ed .nc-outline-p-system-update:before{content:"\ef67"}
6641
- .brz-ed .nc-outline-p-time:before{content:"\ef68"}
6642
- .brz-ed .nc-outline-paint-16:before{content:"\ef69"}
6643
- .brz-ed .nc-outline-paint-37:before{content:"\ef6a"}
6644
- .brz-ed .nc-outline-paint-38:before{content:"\ef6b"}
6645
- .brz-ed .nc-outline-paint-brush:before{content:"\ef6c"}
6646
- .brz-ed .nc-outline-paint-bucket-39:before{content:"\ef6d"}
6647
- .brz-ed .nc-outline-paint-bucket-40:before{content:"\ef6e"}
6648
- .brz-ed .nc-outline-pajamas:before{content:"\ef70"}
6649
- .brz-ed .nc-outline-palette:before{content:"\ef6f"}
6650
- .brz-ed .nc-outline-pan:before{content:"\ef71"}
6651
- .brz-ed .nc-outline-pancake:before{content:"\ef72"}
6652
- .brz-ed .nc-outline-panda:before{content:"\ef73"}
6653
- .brz-ed .nc-outline-panel:before{content:"\ef74"}
6654
- .brz-ed .nc-outline-pantone:before{content:"\ef75"}
6655
- .brz-ed .nc-outline-paper-2:before{content:"\ef76"}
6656
- .brz-ed .nc-outline-paper-design:before{content:"\ef77"}
6657
- .brz-ed .nc-outline-paper-dev:before{content:"\ef78"}
6658
- .brz-ed .nc-outline-paper-diploma:before{content:"\ef79"}
6659
- .brz-ed .nc-outline-paper:before{content:"\ef7a"}
6660
- .brz-ed .nc-outline-paragraph:before{content:"\ef7b"}
6661
- .brz-ed .nc-outline-parent:before{content:"\ef7c"}
6662
- .brz-ed .nc-outline-paris-tower:before{content:"\ef7e"}
6663
- .brz-ed .nc-outline-parking-sensors:before{content:"\ef7d"}
6664
- .brz-ed .nc-outline-parking:before{content:"\ef80"}
6665
- .brz-ed .nc-outline-parrot:before{content:"\ef7f"}
6666
- .brz-ed .nc-outline-passport:before{content:"\ef81"}
6667
- .brz-ed .nc-outline-pasta:before{content:"\ef82"}
6668
- .brz-ed .nc-outline-patch-19:before{content:"\ef83"}
6669
- .brz-ed .nc-outline-patch-34:before{content:"\ef84"}
6670
- .brz-ed .nc-outline-patch:before{content:"\ef85"}
6671
- .brz-ed .nc-outline-path-exclude:before{content:"\ef86"}
6672
- .brz-ed .nc-outline-path-intersect:before{content:"\ef87"}
6673
- .brz-ed .nc-outline-path-minus:before{content:"\ef88"}
6674
- .brz-ed .nc-outline-path-unite:before{content:"\ef8a"}
6675
- .brz-ed .nc-outline-paw:before{content:"\ef89"}
6676
- .brz-ed .nc-outline-payment:before{content:"\ef8b"}
6677
- .brz-ed .nc-outline-pci-card:before{content:"\ef8c"}
6678
- .brz-ed .nc-outline-peanut:before{content:"\ef8d"}
6679
- .brz-ed .nc-outline-pear:before{content:"\ef8e"}
6680
- .brz-ed .nc-outline-pen-01:before{content:"\ef8f"}
6681
- .brz-ed .nc-outline-pen-23:before{content:"\ef90"}
6682
- .brz-ed .nc-outline-pen-tool:before{content:"\ef92"}
6683
- .brz-ed .nc-outline-pencil-47:before{content:"\ef91"}
6684
- .brz-ed .nc-outline-pencil:before{content:"\ef93"}
6685
- .brz-ed .nc-outline-penguin:before{content:"\ef94"}
6686
- .brz-ed .nc-outline-pepper:before{content:"\ef96"}
6687
- .brz-ed .nc-outline-percentage-38:before{content:"\ef95"}
6688
- .brz-ed .nc-outline-percentage-39:before{content:"\ef97"}
6689
- .brz-ed .nc-outline-phone-2:before{content:"\ef98"}
6690
- .brz-ed .nc-outline-phone-3:before{content:"\ef99"}
6691
- .brz-ed .nc-outline-phone-call-end:before{content:"\ef9a"}
6692
- .brz-ed .nc-outline-phone-call:before{content:"\ef9b"}
6693
- .brz-ed .nc-outline-phone:before{content:"\ef9c"}
6694
- .brz-ed .nc-outline-photo-editor:before{content:"\ef9d"}
6695
- .brz-ed .nc-outline-piano:before{content:"\ef9e"}
6696
- .brz-ed .nc-outline-pickaxe:before{content:"\ef9f"}
6697
- .brz-ed .nc-outline-pickle:before{content:"\efa0"}
6698
- .brz-ed .nc-outline-picnic-basket:before{content:"\efa1"}
6699
- .brz-ed .nc-outline-picture:before{content:"\efa2"}
6700
- .brz-ed .nc-outline-pig-2:before{content:"\efa3"}
6701
- .brz-ed .nc-outline-pig:before{content:"\efa4"}
6702
- .brz-ed .nc-outline-pill-42:before{content:"\efa5"}
6703
- .brz-ed .nc-outline-pill-43:before{content:"\efa6"}
6704
- .brz-ed .nc-outline-pill-container-44:before{content:"\efa7"}
6705
- .brz-ed .nc-outline-pill-container-47:before{content:"\efa8"}
6706
- .brz-ed .nc-outline-pin-2:before{content:"\efa9"}
6707
- .brz-ed .nc-outline-pin-3:before{content:"\efaa"}
6708
- .brz-ed .nc-outline-pin-4:before{content:"\efab"}
6709
- .brz-ed .nc-outline-pin-add-2:before{content:"\efac"}
6710
- .brz-ed .nc-outline-pin-add:before{content:"\efad"}
6711
- .brz-ed .nc-outline-pin-check:before{content:"\efae"}
6712
- .brz-ed .nc-outline-pin-copy:before{content:"\efaf"}
6713
- .brz-ed .nc-outline-pin-delete:before{content:"\efb0"}
6714
- .brz-ed .nc-outline-pin-edit:before{content:"\efb2"}
6715
- .brz-ed .nc-outline-pin-heart:before{content:"\efb1"}
6716
- .brz-ed .nc-outline-pin-remove-2:before{content:"\efb3"}
6717
- .brz-ed .nc-outline-pin-remove:before{content:"\efb4"}
6718
- .brz-ed .nc-outline-pin-search:before{content:"\efb5"}
6719
- .brz-ed .nc-outline-pin-security:before{content:"\efb6"}
6720
- .brz-ed .nc-outline-pin-settings:before{content:"\efb7"}
6721
- .brz-ed .nc-outline-pin-share:before{content:"\efb8"}
6722
- .brz-ed .nc-outline-pin-star:before{content:"\efb9"}
6723
- .brz-ed .nc-outline-pin-sync:before{content:"\efba"}
6724
- .brz-ed .nc-outline-pin-time:before{content:"\efbb"}
6725
- .brz-ed .nc-outline-pin-user:before{content:"\efbc"}
6726
- .brz-ed .nc-outline-pin:before{content:"\efbd"}
6727
- .brz-ed .nc-outline-pinch:before{content:"\efbe"}
6728
- .brz-ed .nc-outline-pineapple:before{content:"\efbf"}
6729
- .brz-ed .nc-outline-ping-pong:before{content:"\efc0"}
6730
- .brz-ed .nc-outline-pins:before{content:"\efc2"}
6731
- .brz-ed .nc-outline-pipe:before{content:"\efc1"}
6732
- .brz-ed .nc-outline-pirate:before{content:"\efc3"}
6733
- .brz-ed .nc-outline-pizza-slice:before{content:"\efc4"}
6734
- .brz-ed .nc-outline-pizza:before{content:"\efc5"}
6735
- .brz-ed .nc-outline-plane-17:before{content:"\efc6"}
6736
- .brz-ed .nc-outline-plane-18:before{content:"\efc8"}
6737
- .brz-ed .nc-outline-planet:before{content:"\efc7"}
6738
- .brz-ed .nc-outline-plant-ground:before{content:"\efc9"}
6739
- .brz-ed .nc-outline-plant-vase:before{content:"\efca"}
6740
- .brz-ed .nc-outline-plate:before{content:"\efcc"}
6741
- .brz-ed .nc-outline-play-68:before{content:"\efcb"}
6742
- .brz-ed .nc-outline-play-69:before{content:"\efcd"}
6743
- .brz-ed .nc-outline-play:before{content:"\efce"}
6744
- .brz-ed .nc-outline-player-19:before{content:"\efcf"}
6745
- .brz-ed .nc-outline-player-48:before{content:"\efd0"}
6746
- .brz-ed .nc-outline-player:before{content:"\efd1"}
6747
- .brz-ed .nc-outline-playlist:before{content:"\efd2"}
6748
- .brz-ed .nc-outline-plug:before{content:"\efd4"}
6749
- .brz-ed .nc-outline-podium-trophy:before{content:"\efd3"}
6750
- .brz-ed .nc-outline-podium:before{content:"\efd5"}
6751
- .brz-ed .nc-outline-point-a:before{content:"\efd6"}
6752
- .brz-ed .nc-outline-point-b:before{content:"\efd7"}
6753
- .brz-ed .nc-outline-polaroid-add:before{content:"\efd8"}
6754
- .brz-ed .nc-outline-polaroid-delete:before{content:"\efd9"}
6755
- .brz-ed .nc-outline-polaroid-multiple:before{content:"\efda"}
6756
- .brz-ed .nc-outline-polaroid-user:before{content:"\efdb"}
6757
- .brz-ed .nc-outline-polaroid:before{content:"\efdc"}
6758
- .brz-ed .nc-outline-police:before{content:"\efdd"}
6759
- .brz-ed .nc-outline-pool:before{content:"\efde"}
6760
- .brz-ed .nc-outline-poop:before{content:"\efdf"}
6761
- .brz-ed .nc-outline-popcorn:before{content:"\efe0"}
6762
- .brz-ed .nc-outline-pos:before{content:"\efe1"}
6763
- .brz-ed .nc-outline-position-marker:before{content:"\efe2"}
6764
- .brz-ed .nc-outline-position-pin:before{content:"\efe3"}
6765
- .brz-ed .nc-outline-position-user:before{content:"\efe4"}
6766
- .brz-ed .nc-outline-position:before{content:"\efe5"}
6767
- .brz-ed .nc-outline-pot:before{content:"\efe6"}
6768
- .brz-ed .nc-outline-potato:before{content:"\efe7"}
6769
- .brz-ed .nc-outline-power-level:before{content:"\efe8"}
6770
- .brz-ed .nc-outline-preferences-circle-rotate:before{content:"\efea"}
6771
- .brz-ed .nc-outline-preferences-circle:before{content:"\efe9"}
6772
- .brz-ed .nc-outline-preferences-container-circle-rotate:before{content:"\efeb"}
6773
- .brz-ed .nc-outline-preferences-container-circle:before{content:"\efec"}
6774
- .brz-ed .nc-outline-preferences-container-rotate:before{content:"\efed"}
6775
- .brz-ed .nc-outline-preferences-container:before{content:"\efee"}
6776
- .brz-ed .nc-outline-preferences-rotate:before{content:"\efef"}
6777
- .brz-ed .nc-outline-preferences:before{content:"\eff0"}
6778
- .brz-ed .nc-outline-print:before{content:"\eff1"}
6779
- .brz-ed .nc-outline-printer:before{content:"\eff2"}
6780
- .brz-ed .nc-outline-priority-high:before{content:"\eff4"}
6781
- .brz-ed .nc-outline-priority-low:before{content:"\eff3"}
6782
- .brz-ed .nc-outline-progress:before{content:"\eff5"}
6783
- .brz-ed .nc-outline-prosciutto:before{content:"\eff6"}
6784
- .brz-ed .nc-outline-prototype:before{content:"\eff7"}
6785
- .brz-ed .nc-outline-pulse-chart:before{content:"\eff8"}
6786
- .brz-ed .nc-outline-pulse-phone:before{content:"\eff9"}
6787
- .brz-ed .nc-outline-pulse-sleep:before{content:"\effa"}
6788
- .brz-ed .nc-outline-pulse-watch:before{content:"\effb"}
6789
- .brz-ed .nc-outline-pulse:before{content:"\effc"}
6790
- .brz-ed .nc-outline-pumpkin:before{content:"\effd"}
6791
- .brz-ed .nc-outline-push-next:before{content:"\effe"}
6792
- .brz-ed .nc-outline-push-previous:before{content:"\efff"}
6793
- .brz-ed .nc-outline-puzzle-09:before{content:"\f000"}
6794
- .brz-ed .nc-outline-puzzle-10:before{content:"\f001"}
6795
- .brz-ed .nc-outline-puzzled:before{content:"\f002"}
6796
- .brz-ed .nc-outline-pyramid:before{content:"\f003"}
6797
- .brz-ed .nc-outline-question:before{content:"\f004"}
6798
- .brz-ed .nc-outline-quite-happy:before{content:"\f005"}
6799
- .brz-ed .nc-outline-quote:before{content:"\f006"}
6800
- .brz-ed .nc-outline-rabbit:before{content:"\f007"}
6801
- .brz-ed .nc-outline-rackets:before{content:"\f008"}
6802
- .brz-ed .nc-outline-radar:before{content:"\f009"}
6803
- .brz-ed .nc-outline-radiation:before{content:"\f00a"}
6804
- .brz-ed .nc-outline-radio:before{content:"\f00b"}
6805
- .brz-ed .nc-outline-rain-hail:before{content:"\f00c"}
6806
- .brz-ed .nc-outline-rain:before{content:"\f00d"}
6807
- .brz-ed .nc-outline-rainbow:before{content:"\f00e"}
6808
- .brz-ed .nc-outline-ram:before{content:"\f00f"}
6809
- .brz-ed .nc-outline-rat:before{content:"\f010"}
6810
- .brz-ed .nc-outline-receipt-list-42:before{content:"\f011"}
6811
- .brz-ed .nc-outline-receipt-list-43:before{content:"\f012"}
6812
- .brz-ed .nc-outline-receipt:before{content:"\f014"}
6813
- .brz-ed .nc-outline-recipe-book-46:before{content:"\f013"}
6814
- .brz-ed .nc-outline-recipe-book-47:before{content:"\f015"}
6815
- .brz-ed .nc-outline-recipe-create:before{content:"\f016"}
6816
- .brz-ed .nc-outline-recipe:before{content:"\f018"}
6817
- .brz-ed .nc-outline-recycling:before{content:"\f017"}
6818
- .brz-ed .nc-outline-redo-10:before{content:"\f019"}
6819
- .brz-ed .nc-outline-redo-26:before{content:"\f01a"}
6820
- .brz-ed .nc-outline-redo-79:before{content:"\f01b"}
6821
- .brz-ed .nc-outline-redo-81:before{content:"\f01c"}
6822
- .brz-ed .nc-outline-refresh-01:before{content:"\f01d"}
6823
- .brz-ed .nc-outline-refresh-02:before{content:"\f01e"}
6824
- .brz-ed .nc-outline-refresh-68:before{content:"\f01f"}
6825
- .brz-ed .nc-outline-refresh-69:before{content:"\f020"}
6826
- .brz-ed .nc-outline-refresh:before{content:"\f021"}
6827
- .brz-ed .nc-outline-reload:before{content:"\f022"}
6828
- .brz-ed .nc-outline-remix:before{content:"\f024"}
6829
- .brz-ed .nc-outline-remote:before{content:"\f023"}
6830
- .brz-ed .nc-outline-remove:before{content:"\f025"}
6831
- .brz-ed .nc-outline-replace-folder:before{content:"\f026"}
6832
- .brz-ed .nc-outline-replace:before{content:"\f027"}
6833
- .brz-ed .nc-outline-replay:before{content:"\f028"}
6834
- .brz-ed .nc-outline-reply-all:before{content:"\f02a"}
6835
- .brz-ed .nc-outline-reply:before{content:"\f029"}
6836
- .brz-ed .nc-outline-reservation:before{content:"\f02b"}
6837
- .brz-ed .nc-outline-resize-h:before{content:"\f02c"}
6838
- .brz-ed .nc-outline-resize-v:before{content:"\f02d"}
6839
- .brz-ed .nc-outline-restaurant-menu:before{content:"\f02e"}
6840
- .brz-ed .nc-outline-restore:before{content:"\f030"}
6841
- .brz-ed .nc-outline-rice:before{content:"\f02f"}
6842
- .brz-ed .nc-outline-rim:before{content:"\f032"}
6843
- .brz-ed .nc-outline-ring:before{content:"\f031"}
6844
- .brz-ed .nc-outline-rio:before{content:"\f034"}
6845
- .brz-ed .nc-outline-ripples:before{content:"\f033"}
6846
- .brz-ed .nc-outline-road-2:before{content:"\f035"}
6847
- .brz-ed .nc-outline-road-sign-left:before{content:"\f036"}
6848
- .brz-ed .nc-outline-road-sign-right:before{content:"\f038"}
6849
- .brz-ed .nc-outline-road:before{content:"\f037"}
6850
- .brz-ed .nc-outline-roast-chicken:before{content:"\f03a"}
6851
- .brz-ed .nc-outline-robot:before{content:"\f039"}
6852
- .brz-ed .nc-outline-rock:before{content:"\f03b"}
6853
- .brz-ed .nc-outline-roll:before{content:"\f03c"}
6854
- .brz-ed .nc-outline-rolling-pin:before{content:"\f03e"}
6855
- .brz-ed .nc-outline-rome:before{content:"\f03d"}
6856
- .brz-ed .nc-outline-rope:before{content:"\f03f"}
6857
- .brz-ed .nc-outline-rotate-22:before{content:"\f040"}
6858
- .brz-ed .nc-outline-rotate-23:before{content:"\f041"}
6859
- .brz-ed .nc-outline-rotate-left-2:before{content:"\f042"}
6860
- .brz-ed .nc-outline-rotate-left:before{content:"\f043"}
6861
- .brz-ed .nc-outline-rotate-lock:before{content:"\f044"}
6862
- .brz-ed .nc-outline-rotate-right-2:before{content:"\f045"}
6863
- .brz-ed .nc-outline-rotate-right:before{content:"\f046"}
6864
- .brz-ed .nc-outline-rotate:before{content:"\f047"}
6865
- .brz-ed .nc-outline-round-dollar:before{content:"\f048"}
6866
- .brz-ed .nc-outline-round-down:before{content:"\f049"}
6867
- .brz-ed .nc-outline-round-euro:before{content:"\f04a"}
6868
- .brz-ed .nc-outline-round-left-down:before{content:"\f04b"}
6869
- .brz-ed .nc-outline-round-left:before{content:"\f04c"}
6870
- .brz-ed .nc-outline-round-pound:before{content:"\f04d"}
6871
- .brz-ed .nc-outline-round-right-down:before{content:"\f04e"}
6872
- .brz-ed .nc-outline-round-right:before{content:"\f04f"}
6873
- .brz-ed .nc-outline-round-up-left:before{content:"\f050"}
6874
- .brz-ed .nc-outline-round-up-right:before{content:"\f051"}
6875
- .brz-ed .nc-outline-round-up:before{content:"\f052"}
6876
- .brz-ed .nc-outline-round-yen:before{content:"\f053"}
6877
- .brz-ed .nc-outline-route-alert:before{content:"\f054"}
6878
- .brz-ed .nc-outline-route-close:before{content:"\f055"}
6879
- .brz-ed .nc-outline-route-open:before{content:"\f056"}
6880
- .brz-ed .nc-outline-rowing:before{content:"\f057"}
6881
- .brz-ed .nc-outline-rugby:before{content:"\f058"}
6882
- .brz-ed .nc-outline-ruler-pencil:before{content:"\f059"}
6883
- .brz-ed .nc-outline-sad:before{content:"\f05a"}
6884
- .brz-ed .nc-outline-safe:before{content:"\f05b"}
6885
- .brz-ed .nc-outline-salad:before{content:"\f05c"}
6886
- .brz-ed .nc-outline-sale:before{content:"\f05d"}
6887
- .brz-ed .nc-outline-salt:before{content:"\f05e"}
6888
- .brz-ed .nc-outline-santa-hat:before{content:"\f05f"}
6889
- .brz-ed .nc-outline-satisfied:before{content:"\f060"}
6890
- .brz-ed .nc-outline-sausage:before{content:"\f061"}
6891
- .brz-ed .nc-outline-save-planet:before{content:"\f062"}
6892
- .brz-ed .nc-outline-scale-2:before{content:"\f063"}
6893
- .brz-ed .nc-outline-scale-3:before{content:"\f064"}
6894
- .brz-ed .nc-outline-scale-4:before{content:"\f065"}
6895
- .brz-ed .nc-outline-scale-down:before{content:"\f066"}
6896
- .brz-ed .nc-outline-scale-horizontal:before{content:"\f067"}
6897
- .brz-ed .nc-outline-scale-up:before{content:"\f068"}
6898
- .brz-ed .nc-outline-scale-vertical:before{content:"\f069"}
6899
- .brz-ed .nc-outline-scale:before{content:"\f06a"}
6900
- .brz-ed .nc-outline-scan:before{content:"\f06c"}
6901
- .brz-ed .nc-outline-scarf:before{content:"\f06b"}
6902
- .brz-ed .nc-outline-school:before{content:"\f06d"}
6903
- .brz-ed .nc-outline-scissors-dashed:before{content:"\f06e"}
6904
- .brz-ed .nc-outline-scissors:before{content:"\f06f"}
6905
- .brz-ed .nc-outline-scotch:before{content:"\f070"}
6906
- .brz-ed .nc-outline-scroll-horitontal:before{content:"\f071"}
6907
- .brz-ed .nc-outline-scroll-vertical:before{content:"\f072"}
6908
- .brz-ed .nc-outline-sd:before{content:"\f074"}
6909
- .brz-ed .nc-outline-sea-mask:before{content:"\f073"}
6910
- .brz-ed .nc-outline-search-2:before{content:"\f075"}
6911
- .brz-ed .nc-outline-search-3:before{content:"\f076"}
6912
- .brz-ed .nc-outline-search:before{content:"\f077"}
6913
- .brz-ed .nc-outline-seat:before{content:"\f078"}
6914
- .brz-ed .nc-outline-seatbelt:before{content:"\f07a"}
6915
- .brz-ed .nc-outline-security:before{content:"\f079"}
6916
- .brz-ed .nc-outline-segmentation:before{content:"\f07c"}
6917
- .brz-ed .nc-outline-select-83:before{content:"\f07b"}
6918
- .brz-ed .nc-outline-select-84:before{content:"\f07e"}
6919
- .brz-ed .nc-outline-select:before{content:"\f07d"}
6920
- .brz-ed .nc-outline-selection:before{content:"\f080"}
6921
- .brz-ed .nc-outline-selfie:before{content:"\f07f"}
6922
- .brz-ed .nc-outline-send-2:before{content:"\f081"}
6923
- .brz-ed .nc-outline-send:before{content:"\f082"}
6924
- .brz-ed .nc-outline-sensor:before{content:"\f083"}
6925
- .brz-ed .nc-outline-separate-round:before{content:"\f084"}
6926
- .brz-ed .nc-outline-separate:before{content:"\f085"}
6927
- .brz-ed .nc-outline-settings-46:before{content:"\f086"}
6928
- .brz-ed .nc-outline-settings-99:before{content:"\f087"}
6929
- .brz-ed .nc-outline-settings-gear-63:before{content:"\f088"}
6930
- .brz-ed .nc-outline-settings-gear-64:before{content:"\f089"}
6931
- .brz-ed .nc-outline-settings-gear-65:before{content:"\f08a"}
6932
- .brz-ed .nc-outline-settings-tool-66:before{content:"\f08c"}
6933
- .brz-ed .nc-outline-settings-tool-67:before{content:"\f08b"}
6934
- .brz-ed .nc-outline-settings:before{content:"\f08d"}
6935
- .brz-ed .nc-outline-sf-bridge:before{content:"\f08e"}
6936
- .brz-ed .nc-outline-shake:before{content:"\f08f"}
6937
- .brz-ed .nc-outline-shaker:before{content:"\f090"}
6938
- .brz-ed .nc-outline-shape-adjust:before{content:"\f091"}
6939
- .brz-ed .nc-outline-shape-arrow:before{content:"\f092"}
6940
- .brz-ed .nc-outline-shape-circle:before{content:"\f093"}
6941
- .brz-ed .nc-outline-shape-custom:before{content:"\f094"}
6942
- .brz-ed .nc-outline-shape-line:before{content:"\f095"}
6943
- .brz-ed .nc-outline-shape-oval:before{content:"\f096"}
6944
- .brz-ed .nc-outline-shape-polygon-2:before{content:"\f097"}
6945
- .brz-ed .nc-outline-shape-polygon:before{content:"\f098"}
6946
- .brz-ed .nc-outline-shape-rectangle:before{content:"\f099"}
6947
- .brz-ed .nc-outline-shape-square:before{content:"\f09a"}
6948
- .brz-ed .nc-outline-shape-star:before{content:"\f09b"}
6949
- .brz-ed .nc-outline-shape-triangle-2:before{content:"\f09c"}
6950
- .brz-ed .nc-outline-shape-triangle:before{content:"\f09e"}
6951
- .brz-ed .nc-outline-shapes:before{content:"\f09d"}
6952
- .brz-ed .nc-outline-share-2:before{content:"\f09f"}
6953
- .brz-ed .nc-outline-share-66:before{content:"\f0a0"}
6954
- .brz-ed .nc-outline-share-91:before{content:"\f0a1"}
6955
- .brz-ed .nc-outline-share-92:before{content:"\f0a2"}
6956
- .brz-ed .nc-outline-share-bold:before{content:"\f0a3"}
6957
- .brz-ed .nc-outline-share-left:before{content:"\f0a4"}
6958
- .brz-ed .nc-outline-share-right:before{content:"\f0a5"}
6959
- .brz-ed .nc-outline-share:before{content:"\f0a6"}
6960
- .brz-ed .nc-outline-shared:before{content:"\f0a7"}
6961
- .brz-ed .nc-outline-shark-2:before{content:"\f0a8"}
6962
- .brz-ed .nc-outline-shark:before{content:"\f0a9"}
6963
- .brz-ed .nc-outline-sharpener:before{content:"\f0aa"}
6964
- .brz-ed .nc-outline-sheep:before{content:"\f0ab"}
6965
- .brz-ed .nc-outline-shirt-business:before{content:"\f0ac"}
6966
- .brz-ed .nc-outline-shirt-buttons:before{content:"\f0ad"}
6967
- .brz-ed .nc-outline-shirt-neck:before{content:"\f0ae"}
6968
- .brz-ed .nc-outline-shirt:before{content:"\f0af"}
6969
- .brz-ed .nc-outline-shoe-man:before{content:"\f0b0"}
6970
- .brz-ed .nc-outline-shoe-run:before{content:"\f0b1"}
6971
- .brz-ed .nc-outline-shoe-sport:before{content:"\f0b2"}
6972
- .brz-ed .nc-outline-shoe-woman:before{content:"\f0b3"}
6973
- .brz-ed .nc-outline-shop-location:before{content:"\f0b4"}
6974
- .brz-ed .nc-outline-shop:before{content:"\f0b5"}
6975
- .brz-ed .nc-outline-shovel:before{content:"\f0b6"}
6976
- .brz-ed .nc-outline-shower:before{content:"\f0b7"}
6977
- .brz-ed .nc-outline-shrimp:before{content:"\f0b8"}
6978
- .brz-ed .nc-outline-shuffle-01:before{content:"\f0b9"}
6979
- .brz-ed .nc-outline-shuffle-35:before{content:"\f0ba"}
6980
- .brz-ed .nc-outline-shuffle-97:before{content:"\f0bb"}
6981
- .brz-ed .nc-outline-shuffle-98:before{content:"\f0bc"}
6982
- .brz-ed .nc-outline-shy:before{content:"\f0bd"}
6983
- .brz-ed .nc-outline-sick:before{content:"\f0be"}
6984
- .brz-ed .nc-outline-sickle:before{content:"\f0c0"}
6985
- .brz-ed .nc-outline-sidebar:before{content:"\f0bf"}
6986
- .brz-ed .nc-outline-sign-board:before{content:"\f0c1"}
6987
- .brz-ed .nc-outline-sign:before{content:"\f0c2"}
6988
- .brz-ed .nc-outline-signal-2:before{content:"\f0c3"}
6989
- .brz-ed .nc-outline-signal:before{content:"\f0c4"}
6990
- .brz-ed .nc-outline-signature:before{content:"\f0c6"}
6991
- .brz-ed .nc-outline-silly:before{content:"\f0c5"}
6992
- .brz-ed .nc-outline-sim-card:before{content:"\f0c8"}
6993
- .brz-ed .nc-outline-simple-add:before{content:"\f0c7"}
6994
- .brz-ed .nc-outline-simple-delete:before{content:"\f0c9"}
6995
- .brz-ed .nc-outline-simple-down:before{content:"\f0ca"}
6996
- .brz-ed .nc-outline-simple-left:before{content:"\f0cb"}
6997
- .brz-ed .nc-outline-simple-remove:before{content:"\f0cc"}
6998
- .brz-ed .nc-outline-simple-right:before{content:"\f0cd"}
6999
- .brz-ed .nc-outline-simple-up:before{content:"\f0ce"}
7000
- .brz-ed .nc-outline-single-01:before{content:"\f0cf"}
7001
- .brz-ed .nc-outline-single-02:before{content:"\f0d0"}
7002
- .brz-ed .nc-outline-single-03:before{content:"\f0d1"}
7003
- .brz-ed .nc-outline-single-04:before{content:"\f0d2"}
7004
- .brz-ed .nc-outline-single-05:before{content:"\f0d3"}
7005
- .brz-ed .nc-outline-single-body:before{content:"\f0d4"}
7006
- .brz-ed .nc-outline-single-content-02:before{content:"\f0d5"}
7007
- .brz-ed .nc-outline-single-content-03:before{content:"\f0d6"}
7008
- .brz-ed .nc-outline-single-copies:before{content:"\f0d8"}
7009
- .brz-ed .nc-outline-single-copy-04:before{content:"\f0d7"}
7010
- .brz-ed .nc-outline-single-copy-06:before{content:"\f0d9"}
7011
- .brz-ed .nc-outline-single-folded-content:before{content:"\f0da"}
7012
- .brz-ed .nc-outline-single-folded:before{content:"\f0db"}
7013
- .brz-ed .nc-outline-single-paragraph:before{content:"\f0dc"}
7014
- .brz-ed .nc-outline-single-position:before{content:"\f0dd"}
7015
- .brz-ed .nc-outline-single:before{content:"\f0de"}
7016
- .brz-ed .nc-outline-sink-wash:before{content:"\f0df"}
7017
- .brz-ed .nc-outline-sink:before{content:"\f0e0"}
7018
- .brz-ed .nc-outline-size-large:before{content:"\f0e1"}
7019
- .brz-ed .nc-outline-size-medium:before{content:"\f0e2"}
7020
- .brz-ed .nc-outline-size-small:before{content:"\f0e3"}
7021
- .brz-ed .nc-outline-size:before{content:"\f0e4"}
7022
- .brz-ed .nc-outline-skateboard-2:before{content:"\f0e5"}
7023
- .brz-ed .nc-outline-skateboard:before{content:"\f0e6"}
7024
- .brz-ed .nc-outline-skew-down:before{content:"\f0e7"}
7025
- .brz-ed .nc-outline-skew-left:before{content:"\f0e8"}
7026
- .brz-ed .nc-outline-skew-right:before{content:"\f0e9"}
7027
- .brz-ed .nc-outline-skew-up:before{content:"\f0ea"}
7028
- .brz-ed .nc-outline-skirt:before{content:"\f0ec"}
7029
- .brz-ed .nc-outline-skull-2:before{content:"\f0eb"}
7030
- .brz-ed .nc-outline-skull:before{content:"\f0ed"}
7031
- .brz-ed .nc-outline-slacks-12:before{content:"\f0ee"}
7032
- .brz-ed .nc-outline-slacks-13:before{content:"\f0f0"}
7033
- .brz-ed .nc-outline-sleep-2:before{content:"\f0ef"}
7034
- .brz-ed .nc-outline-sleep:before{content:"\f0f1"}
7035
- .brz-ed .nc-outline-slice:before{content:"\f0f2"}
7036
- .brz-ed .nc-outline-slide-left:before{content:"\f0f3"}
7037
- .brz-ed .nc-outline-slide-right:before{content:"\f0f4"}
7038
- .brz-ed .nc-outline-slider:before{content:"\f0f5"}
7039
- .brz-ed .nc-outline-sloth:before{content:"\f0f6"}
7040
- .brz-ed .nc-outline-small-add:before{content:"\f0f7"}
7041
- .brz-ed .nc-outline-small-delete:before{content:"\f0f8"}
7042
- .brz-ed .nc-outline-small-down:before{content:"\f0f9"}
7043
- .brz-ed .nc-outline-small-left:before{content:"\f0fa"}
7044
- .brz-ed .nc-outline-small-remove:before{content:"\f0fb"}
7045
- .brz-ed .nc-outline-small-right:before{content:"\f0fc"}
7046
- .brz-ed .nc-outline-small-triangle-down:before{content:"\f0fd"}
7047
- .brz-ed .nc-outline-small-triangle-left:before{content:"\f0fe"}
7048
- .brz-ed .nc-outline-small-triangle-right:before{content:"\f0ff"}
7049
- .brz-ed .nc-outline-small-triangle-up:before{content:"\f100"}
7050
- .brz-ed .nc-outline-small-up:before{content:"\f101"}
7051
- .brz-ed .nc-outline-smart:before{content:"\f102"}
7052
- .brz-ed .nc-outline-smile:before{content:"\f103"}
7053
- .brz-ed .nc-outline-smoothie:before{content:"\f104"}
7054
- .brz-ed .nc-outline-snack:before{content:"\f105"}
7055
- .brz-ed .nc-outline-snake:before{content:"\f106"}
7056
- .brz-ed .nc-outline-snow-ball:before{content:"\f107"}
7057
- .brz-ed .nc-outline-snow:before{content:"\f108"}
7058
- .brz-ed .nc-outline-snowboard:before{content:"\f10a"}
7059
- .brz-ed .nc-outline-snowman-head:before{content:"\f109"}
7060
- .brz-ed .nc-outline-snowman:before{content:"\f10b"}
7061
- .brz-ed .nc-outline-soak:before{content:"\f10c"}
7062
- .brz-ed .nc-outline-soccer-field:before{content:"\f10d"}
7063
- .brz-ed .nc-outline-sock:before{content:"\f10e"}
7064
- .brz-ed .nc-outline-socket-europe-1:before{content:"\f10f"}
7065
- .brz-ed .nc-outline-socket-europe-2:before{content:"\f110"}
7066
- .brz-ed .nc-outline-socket-uk:before{content:"\f111"}
7067
- .brz-ed .nc-outline-socket:before{content:"\f112"}
7068
- .brz-ed .nc-outline-sofa:before{content:"\f114"}
7069
- .brz-ed .nc-outline-soldier:before{content:"\f113"}
7070
- .brz-ed .nc-outline-sound-wave:before{content:"\f115"}
7071
- .brz-ed .nc-outline-soup:before{content:"\f116"}
7072
- .brz-ed .nc-outline-soy-sauce:before{content:"\f117"}
7073
- .brz-ed .nc-outline-spa:before{content:"\f118"}
7074
- .brz-ed .nc-outline-spaceship:before{content:"\f119"}
7075
- .brz-ed .nc-outline-speaker-01:before{content:"\f11a"}
7076
- .brz-ed .nc-outline-speaker-05:before{content:"\f11b"}
7077
- .brz-ed .nc-outline-speaker:before{content:"\f11c"}
7078
- .brz-ed .nc-outline-speechless:before{content:"\f11d"}
7079
- .brz-ed .nc-outline-spider:before{content:"\f11e"}
7080
- .brz-ed .nc-outline-spiteful:before{content:"\f11f"}
7081
- .brz-ed .nc-outline-split-33:before{content:"\f120"}
7082
- .brz-ed .nc-outline-split-37:before{content:"\f121"}
7083
- .brz-ed .nc-outline-split-horizontal:before{content:"\f122"}
7084
- .brz-ed .nc-outline-split-round:before{content:"\f123"}
7085
- .brz-ed .nc-outline-split-vertical:before{content:"\f124"}
7086
- .brz-ed .nc-outline-split:before{content:"\f125"}
7087
- .brz-ed .nc-outline-sport:before{content:"\f126"}
7088
- .brz-ed .nc-outline-spray-2:before{content:"\f127"}
7089
- .brz-ed .nc-outline-spray:before{content:"\f128"}
7090
- .brz-ed .nc-outline-square-add-08:before{content:"\f12a"}
7091
- .brz-ed .nc-outline-square-add-11:before{content:"\f129"}
7092
- .brz-ed .nc-outline-square-corner-down-left:before{content:"\f12b"}
7093
- .brz-ed .nc-outline-square-corner-down-right:before{content:"\f12c"}
7094
- .brz-ed .nc-outline-square-corner-up-left:before{content:"\f12d"}
7095
- .brz-ed .nc-outline-square-corner-up-right:before{content:"\f12e"}
7096
- .brz-ed .nc-outline-square-delete-10:before{content:"\f12f"}
7097
- .brz-ed .nc-outline-square-delete-13:before{content:"\f130"}
7098
- .brz-ed .nc-outline-square-down-06:before{content:"\f131"}
7099
- .brz-ed .nc-outline-square-down:before{content:"\f132"}
7100
- .brz-ed .nc-outline-square-download:before{content:"\f133"}
7101
- .brz-ed .nc-outline-square-left-04:before{content:"\f134"}
7102
- .brz-ed .nc-outline-square-left:before{content:"\f136"}
7103
- .brz-ed .nc-outline-square-marker:before{content:"\f135"}
7104
- .brz-ed .nc-outline-square-pin:before{content:"\f137"}
7105
- .brz-ed .nc-outline-square-remove-09:before{content:"\f138"}
7106
- .brz-ed .nc-outline-square-remove-12:before{content:"\f139"}
7107
- .brz-ed .nc-outline-square-right-03:before{content:"\f13a"}
7108
- .brz-ed .nc-outline-square-right:before{content:"\f13b"}
7109
- .brz-ed .nc-outline-square-simple-down:before{content:"\f13c"}
7110
- .brz-ed .nc-outline-square-simple-left:before{content:"\f13d"}
7111
- .brz-ed .nc-outline-square-simple-right:before{content:"\f13e"}
7112
- .brz-ed .nc-outline-square-simple-up:before{content:"\f13f"}
7113
- .brz-ed .nc-outline-square-up-05:before{content:"\f140"}
7114
- .brz-ed .nc-outline-square-up:before{content:"\f141"}
7115
- .brz-ed .nc-outline-square-upload:before{content:"\f142"}
7116
- .brz-ed .nc-outline-squares:before{content:"\f143"}
7117
- .brz-ed .nc-outline-stamp:before{content:"\f144"}
7118
- .brz-ed .nc-outline-standing-man:before{content:"\f145"}
7119
- .brz-ed .nc-outline-standing-woman:before{content:"\f146"}
7120
- .brz-ed .nc-outline-star:before{content:"\f148"}
7121
- .brz-ed .nc-outline-steak-2:before{content:"\f147"}
7122
- .brz-ed .nc-outline-steak:before{content:"\f149"}
7123
- .brz-ed .nc-outline-steering-wheel:before{content:"\f14a"}
7124
- .brz-ed .nc-outline-steps:before{content:"\f14b"}
7125
- .brz-ed .nc-outline-stock-2:before{content:"\f14c"}
7126
- .brz-ed .nc-outline-stock:before{content:"\f14d"}
7127
- .brz-ed .nc-outline-storage-hanger:before{content:"\f14e"}
7128
- .brz-ed .nc-outline-storage:before{content:"\f14f"}
7129
- .brz-ed .nc-outline-store:before{content:"\f150"}
7130
- .brz-ed .nc-outline-strategy:before{content:"\f151"}
7131
- .brz-ed .nc-outline-strawberry:before{content:"\f152"}
7132
- .brz-ed .nc-outline-stre-down:before{content:"\f153"}
7133
- .brz-ed .nc-outline-stre-left:before{content:"\f154"}
7134
- .brz-ed .nc-outline-stre-right:before{content:"\f156"}
7135
- .brz-ed .nc-outline-stre-up:before{content:"\f155"}
7136
- .brz-ed .nc-outline-stretch:before{content:"\f157"}
7137
- .brz-ed .nc-outline-strikethrough:before{content:"\f158"}
7138
- .brz-ed .nc-outline-strong-down:before{content:"\f15a"}
7139
- .brz-ed .nc-outline-strong-left:before{content:"\f159"}
7140
- .brz-ed .nc-outline-strong-right:before{content:"\f15b"}
7141
- .brz-ed .nc-outline-strong-up:before{content:"\f15c"}
7142
- .brz-ed .nc-outline-subscript:before{content:"\f15d"}
7143
- .brz-ed .nc-outline-subtitles:before{content:"\f15f"}
7144
- .brz-ed .nc-outline-sugar:before{content:"\f15e"}
7145
- .brz-ed .nc-outline-sun-cloud-drop:before{content:"\f160"}
7146
- .brz-ed .nc-outline-sun-cloud-fog:before{content:"\f161"}
7147
- .brz-ed .nc-outline-sun-cloud-hail:before{content:"\f162"}
7148
- .brz-ed .nc-outline-sun-cloud-light:before{content:"\f163"}
7149
- .brz-ed .nc-outline-sun-cloud-rain:before{content:"\f164"}
7150
- .brz-ed .nc-outline-sun-cloud-snow-54:before{content:"\f165"}
7151
- .brz-ed .nc-outline-sun-cloud-snow-55:before{content:"\f166"}
7152
- .brz-ed .nc-outline-sun-cloud:before{content:"\f167"}
7153
- .brz-ed .nc-outline-sun-fog-29:before{content:"\f168"}
7154
- .brz-ed .nc-outline-sun-fog-30:before{content:"\f169"}
7155
- .brz-ed .nc-outline-sun-fog-43:before{content:"\f16a"}
7156
- .brz-ed .nc-outline-sunglasses-48:before{content:"\f16b"}
7157
- .brz-ed .nc-outline-sunglasses-49:before{content:"\f16c"}
7158
- .brz-ed .nc-outline-sunglasses:before{content:"\f16d"}
7159
- .brz-ed .nc-outline-superscript:before{content:"\f16e"}
7160
- .brz-ed .nc-outline-supplement:before{content:"\f16f"}
7161
- .brz-ed .nc-outline-support-16:before{content:"\f170"}
7162
- .brz-ed .nc-outline-support-17:before{content:"\f171"}
7163
- .brz-ed .nc-outline-surf-2:before{content:"\f172"}
7164
- .brz-ed .nc-outline-surf:before{content:"\f173"}
7165
- .brz-ed .nc-outline-surprise:before{content:"\f174"}
7166
- .brz-ed .nc-outline-sushi:before{content:"\f175"}
7167
- .brz-ed .nc-outline-swap-horizontal:before{content:"\f176"}
7168
- .brz-ed .nc-outline-swap-vertical:before{content:"\f177"}
7169
- .brz-ed .nc-outline-swimsuit:before{content:"\f178"}
7170
- .brz-ed .nc-outline-swimwear:before{content:"\f179"}
7171
- .brz-ed .nc-outline-swipe-bottom:before{content:"\f17a"}
7172
- .brz-ed .nc-outline-swipe-left:before{content:"\f17b"}
7173
- .brz-ed .nc-outline-swipe-right:before{content:"\f17c"}
7174
- .brz-ed .nc-outline-swipe-up:before{content:"\f17d"}
7175
- .brz-ed .nc-outline-swiss-knife:before{content:"\f17e"}
7176
- .brz-ed .nc-outline-sync:before{content:"\f17f"}
7177
- .brz-ed .nc-outline-syringe:before{content:"\f180"}
7178
- .brz-ed .nc-outline-system-update:before{content:"\f181"}
7179
- .brz-ed .nc-outline-table-left:before{content:"\f182"}
7180
- .brz-ed .nc-outline-table-right:before{content:"\f183"}
7181
- .brz-ed .nc-outline-table:before{content:"\f184"}
7182
- .brz-ed .nc-outline-tablet-2:before{content:"\f185"}
7183
- .brz-ed .nc-outline-tablet-button:before{content:"\f186"}
7184
- .brz-ed .nc-outline-tablet-mobile:before{content:"\f187"}
7185
- .brz-ed .nc-outline-tablet-reader-31:before{content:"\f188"}
7186
- .brz-ed .nc-outline-tablet-reader-42:before{content:"\f189"}
7187
- .brz-ed .nc-outline-tablet-toolbar:before{content:"\f18a"}
7188
- .brz-ed .nc-outline-tablet:before{content:"\f18b"}
7189
- .brz-ed .nc-outline-tacos:before{content:"\f18c"}
7190
- .brz-ed .nc-outline-tactic:before{content:"\f18d"}
7191
- .brz-ed .nc-outline-tag-2:before{content:"\f18f"}
7192
- .brz-ed .nc-outline-tag-add:before{content:"\f18e"}
7193
- .brz-ed .nc-outline-tag-check:before{content:"\f190"}
7194
- .brz-ed .nc-outline-tag-content:before{content:"\f191"}
7195
- .brz-ed .nc-outline-tag-cut:before{content:"\f192"}
7196
- .brz-ed .nc-outline-tag-line:before{content:"\f193"}
7197
- .brz-ed .nc-outline-tag-loyalty:before{content:"\f194"}
7198
- .brz-ed .nc-outline-tag-remove:before{content:"\f195"}
7199
- .brz-ed .nc-outline-tag-sale:before{content:"\f197"}
7200
- .brz-ed .nc-outline-tag:before{content:"\f196"}
7201
- .brz-ed .nc-outline-tail-down:before{content:"\f198"}
7202
- .brz-ed .nc-outline-tail-left:before{content:"\f199"}
7203
- .brz-ed .nc-outline-tail-right:before{content:"\f19a"}
7204
- .brz-ed .nc-outline-tail-triangle-down:before{content:"\f19b"}
7205
- .brz-ed .nc-outline-tail-triangle-left:before{content:"\f19c"}
7206
- .brz-ed .nc-outline-tail-triangle-right:before{content:"\f19d"}
7207
- .brz-ed .nc-outline-tail-triangle-up:before{content:"\f19f"}
7208
- .brz-ed .nc-outline-tail-up:before{content:"\f19e"}
7209
- .brz-ed .nc-outline-tap-01:before{content:"\f1a0"}
7210
- .brz-ed .nc-outline-tap-02:before{content:"\f1a1"}
7211
- .brz-ed .nc-outline-tape:before{content:"\f1a2"}
7212
- .brz-ed .nc-outline-target:before{content:"\f1a3"}
7213
- .brz-ed .nc-outline-tea-bag:before{content:"\f1a4"}
7214
- .brz-ed .nc-outline-tea:before{content:"\f1a5"}
7215
- .brz-ed .nc-outline-temperature-23:before{content:"\f1a6"}
7216
- .brz-ed .nc-outline-temperature-24:before{content:"\f1a7"}
7217
- .brz-ed .nc-outline-temple-25:before{content:"\f1a8"}
7218
- .brz-ed .nc-outline-tennis-ball:before{content:"\f1a9"}
7219
- .brz-ed .nc-outline-tennis:before{content:"\f1aa"}
7220
- .brz-ed .nc-outline-terrace:before{content:"\f1ab"}
7221
- .brz-ed .nc-outline-text-2:before{content:"\f1ac"}
7222
- .brz-ed .nc-outline-text:before{content:"\f1ad"}
7223
- .brz-ed .nc-outline-texture:before{content:"\f1ae"}
7224
- .brz-ed .nc-outline-ticket-75:before{content:"\f1af"}
7225
- .brz-ed .nc-outline-ticket-76:before{content:"\f1b0"}
7226
- .brz-ed .nc-outline-tie-01:before{content:"\f1b1"}
7227
- .brz-ed .nc-outline-tie-02:before{content:"\f1b2"}
7228
- .brz-ed .nc-outline-tie-bow:before{content:"\f1b3"}
7229
- .brz-ed .nc-outline-tile-55:before{content:"\f1b4"}
7230
- .brz-ed .nc-outline-tile-56:before{content:"\f1b5"}
7231
- .brz-ed .nc-outline-time-2:before{content:"\f1b6"}
7232
- .brz-ed .nc-outline-time-3:before{content:"\f1b7"}
7233
- .brz-ed .nc-outline-time-alarm:before{content:"\f1b8"}
7234
- .brz-ed .nc-outline-time-clock:before{content:"\f1b9"}
7235
- .brz-ed .nc-outline-time-countdown:before{content:"\f1ba"}
7236
- .brz-ed .nc-outline-time:before{content:"\f1bb"}
7237
- .brz-ed .nc-outline-timeline:before{content:"\f1bc"}
7238
- .brz-ed .nc-outline-timer:before{content:"\f1bd"}
7239
- .brz-ed .nc-outline-todo:before{content:"\f1be"}
7240
- .brz-ed .nc-outline-toilet-paper:before{content:"\f1bf"}
7241
- .brz-ed .nc-outline-toilet:before{content:"\f1c0"}
7242
- .brz-ed .nc-outline-tomato:before{content:"\f1c1"}
7243
- .brz-ed .nc-outline-tool-blur:before{content:"\f1c2"}
7244
- .brz-ed .nc-outline-tool-hand:before{content:"\f1c3"}
7245
- .brz-ed .nc-outline-tool-select:before{content:"\f1c4"}
7246
- .brz-ed .nc-outline-tooth:before{content:"\f1c5"}
7247
- .brz-ed .nc-outline-touch:before{content:"\f1c7"}
7248
- .brz-ed .nc-outline-track-delivery:before{content:"\f1c6"}
7249
- .brz-ed .nc-outline-tracking:before{content:"\f1c8"}
7250
- .brz-ed .nc-outline-tractor:before{content:"\f1c9"}
7251
- .brz-ed .nc-outline-train-speed:before{content:"\f1ca"}
7252
- .brz-ed .nc-outline-train:before{content:"\f1cb"}
7253
- .brz-ed .nc-outline-tram:before{content:"\f1cc"}
7254
- .brz-ed .nc-outline-transform-2d:before{content:"\f1cd"}
7255
- .brz-ed .nc-outline-transform-origin:before{content:"\f1ce"}
7256
- .brz-ed .nc-outline-transform:before{content:"\f1cf"}
7257
- .brz-ed .nc-outline-transparent:before{content:"\f1d1"}
7258
- .brz-ed .nc-outline-trash-round:before{content:"\f1d0"}
7259
- .brz-ed .nc-outline-trash-simple:before{content:"\f1d2"}
7260
- .brz-ed .nc-outline-trash:before{content:"\f1d3"}
7261
- .brz-ed .nc-outline-treasure-map-21:before{content:"\f1d4"}
7262
- .brz-ed .nc-outline-treasure-map-40:before{content:"\f1d5"}
7263
- .brz-ed .nc-outline-tree-01:before{content:"\f1d6"}
7264
- .brz-ed .nc-outline-tree-02:before{content:"\f1d7"}
7265
- .brz-ed .nc-outline-tree-03:before{content:"\f1d8"}
7266
- .brz-ed .nc-outline-tree-ball:before{content:"\f1d9"}
7267
- .brz-ed .nc-outline-tree:before{content:"\f1da"}
7268
- .brz-ed .nc-outline-trend-down:before{content:"\f1db"}
7269
- .brz-ed .nc-outline-trend-up:before{content:"\f1dc"}
7270
- .brz-ed .nc-outline-triangle-down-20:before{content:"\f1dd"}
7271
- .brz-ed .nc-outline-triangle-down-65:before{content:"\f1de"}
7272
- .brz-ed .nc-outline-triangle-down:before{content:"\f1df"}
7273
- .brz-ed .nc-outline-triangle-left-18:before{content:"\f1e0"}
7274
- .brz-ed .nc-outline-triangle-left-63:before{content:"\f1e1"}
7275
- .brz-ed .nc-outline-triangle-left:before{content:"\f1e2"}
7276
- .brz-ed .nc-outline-triangle-right-17:before{content:"\f1e3"}
7277
- .brz-ed .nc-outline-triangle-right-62:before{content:"\f1e4"}
7278
- .brz-ed .nc-outline-triangle-right:before{content:"\f1e5"}
7279
- .brz-ed .nc-outline-triangle-up-19:before{content:"\f1e6"}
7280
- .brz-ed .nc-outline-triangle-up-64:before{content:"\f1e7"}
7281
- .brz-ed .nc-outline-triangle-up:before{content:"\f1e8"}
7282
- .brz-ed .nc-outline-tripod:before{content:"\f1e9"}
7283
- .brz-ed .nc-outline-trolley:before{content:"\f1ea"}
7284
- .brz-ed .nc-outline-trophy:before{content:"\f1eb"}
7285
- .brz-ed .nc-outline-truck-front:before{content:"\f1ec"}
7286
- .brz-ed .nc-outline-trunk:before{content:"\f1ed"}
7287
- .brz-ed .nc-outline-tshirt-53:before{content:"\f1ee"}
7288
- .brz-ed .nc-outline-tshirt-54:before{content:"\f1ef"}
7289
- .brz-ed .nc-outline-tshirt-sport:before{content:"\f1f0"}
7290
- .brz-ed .nc-outline-turtle:before{content:"\f1f1"}
7291
- .brz-ed .nc-outline-tv-2:before{content:"\f1f2"}
7292
- .brz-ed .nc-outline-tv-old:before{content:"\f1f3"}
7293
- .brz-ed .nc-outline-tv:before{content:"\f1f4"}
7294
- .brz-ed .nc-outline-ui-03:before{content:"\f1f5"}
7295
- .brz-ed .nc-outline-ui-04:before{content:"\f1f6"}
7296
- .brz-ed .nc-outline-umbrella-13:before{content:"\f1f7"}
7297
- .brz-ed .nc-outline-umbrella-14:before{content:"\f1f8"}
7298
- .brz-ed .nc-outline-underline:before{content:"\f1f9"}
7299
- .brz-ed .nc-outline-underwear-man:before{content:"\f1fa"}
7300
- .brz-ed .nc-outline-underwear:before{content:"\f1fb"}
7301
- .brz-ed .nc-outline-undo-25:before{content:"\f1fc"}
7302
- .brz-ed .nc-outline-undo-29:before{content:"\f1fd"}
7303
- .brz-ed .nc-outline-ungroup:before{content:"\f1fe"}
7304
- .brz-ed .nc-outline-unite-round:before{content:"\f1ff"}
7305
- .brz-ed .nc-outline-unite:before{content:"\f200"}
7306
- .brz-ed .nc-outline-upload-2:before{content:"\f201"}
7307
- .brz-ed .nc-outline-upload:before{content:"\f202"}
7308
- .brz-ed .nc-outline-upset-13:before{content:"\f203"}
7309
- .brz-ed .nc-outline-upset-14:before{content:"\f204"}
7310
- .brz-ed .nc-outline-usb:before{content:"\f205"}
7311
- .brz-ed .nc-outline-user-balance:before{content:"\f206"}
7312
- .brz-ed .nc-outline-user-climb:before{content:"\f207"}
7313
- .brz-ed .nc-outline-user-frame-31:before{content:"\f209"}
7314
- .brz-ed .nc-outline-user-frame-32:before{content:"\f208"}
7315
- .brz-ed .nc-outline-user-frame-33:before{content:"\f20a"}
7316
- .brz-ed .nc-outline-user-meditation:before{content:"\f20b"}
7317
- .brz-ed .nc-outline-user-run:before{content:"\f20c"}
7318
- .brz-ed .nc-outline-user-snowboard:before{content:"\f20d"}
7319
- .brz-ed .nc-outline-user-swim:before{content:"\f20e"}
7320
- .brz-ed .nc-outline-user:before{content:"\f20f"}
7321
- .brz-ed .nc-outline-vampire:before{content:"\f210"}
7322
- .brz-ed .nc-outline-vector-2:before{content:"\f211"}
7323
- .brz-ed .nc-outline-vector:before{content:"\f212"}
7324
- .brz-ed .nc-outline-vegan:before{content:"\f213"}
7325
- .brz-ed .nc-outline-ventilation:before{content:"\f215"}
7326
- .brz-ed .nc-outline-vespa-front:before{content:"\f214"}
7327
- .brz-ed .nc-outline-vespa:before{content:"\f216"}
7328
- .brz-ed .nc-outline-vest-31:before{content:"\f217"}
7329
- .brz-ed .nc-outline-vest-sport:before{content:"\f218"}
7330
- .brz-ed .nc-outline-vest:before{content:"\f219"}
7331
- .brz-ed .nc-outline-video-64:before{content:"\f21a"}
7332
- .brz-ed .nc-outline-video-65:before{content:"\f21b"}
7333
- .brz-ed .nc-outline-video-66:before{content:"\f21c"}
7334
- .brz-ed .nc-outline-video-67:before{content:"\f21d"}
7335
- .brz-ed .nc-outline-videocamera-71:before{content:"\f21e"}
7336
- .brz-ed .nc-outline-videocamera-72:before{content:"\f21f"}
7337
- .brz-ed .nc-outline-virus:before{content:"\f220"}
7338
- .brz-ed .nc-outline-voice-record:before{content:"\f221"}
7339
- .brz-ed .nc-outline-volleyball:before{content:"\f222"}
7340
- .brz-ed .nc-outline-volume-93:before{content:"\f223"}
7341
- .brz-ed .nc-outline-volume-97:before{content:"\f224"}
7342
- .brz-ed .nc-outline-volume-98:before{content:"\f225"}
7343
- .brz-ed .nc-outline-volume-ban:before{content:"\f226"}
7344
- .brz-ed .nc-outline-volume-down:before{content:"\f227"}
7345
- .brz-ed .nc-outline-volume-off:before{content:"\f228"}
7346
- .brz-ed .nc-outline-volume-up:before{content:"\f229"}
7347
- .brz-ed .nc-outline-vpn:before{content:"\f22a"}
7348
- .brz-ed .nc-outline-waffle:before{content:"\f22b"}
7349
- .brz-ed .nc-outline-walk:before{content:"\f22d"}
7350
- .brz-ed .nc-outline-wallet-43:before{content:"\f22c"}
7351
- .brz-ed .nc-outline-wallet-44:before{content:"\f22e"}
7352
- .brz-ed .nc-outline-wallet-90:before{content:"\f22f"}
7353
- .brz-ed .nc-outline-wallet:before{content:"\f230"}
7354
- .brz-ed .nc-outline-wand-11:before{content:"\f231"}
7355
- .brz-ed .nc-outline-wardrobe:before{content:"\f232"}
7356
- .brz-ed .nc-outline-wash-2:before{content:"\f233"}
7357
- .brz-ed .nc-outline-wash-30:before{content:"\f234"}
7358
- .brz-ed .nc-outline-wash-60:before{content:"\f235"}
7359
- .brz-ed .nc-outline-wash-90:before{content:"\f236"}
7360
- .brz-ed .nc-outline-wash-hand:before{content:"\f237"}
7361
- .brz-ed .nc-outline-wash:before{content:"\f238"}
7362
- .brz-ed .nc-outline-washing-fluid:before{content:"\f239"}
7363
- .brz-ed .nc-outline-waste-danger:before{content:"\f23a"}
7364
- .brz-ed .nc-outline-waste-recycling:before{content:"\f23b"}
7365
- .brz-ed .nc-outline-waste:before{content:"\f23c"}
7366
- .brz-ed .nc-outline-watch-circle:before{content:"\f23d"}
7367
- .brz-ed .nc-outline-watch-dev:before{content:"\f23e"}
7368
- .brz-ed .nc-outline-watch-time:before{content:"\f23f"}
7369
- .brz-ed .nc-outline-watch:before{content:"\f240"}
7370
- .brz-ed .nc-outline-water-hand:before{content:"\f241"}
7371
- .brz-ed .nc-outline-water-sink:before{content:"\f242"}
7372
- .brz-ed .nc-outline-water:before{content:"\f243"}
7373
- .brz-ed .nc-outline-watermelon:before{content:"\f244"}
7374
- .brz-ed .nc-outline-wc:before{content:"\f245"}
7375
- .brz-ed .nc-outline-web-design:before{content:"\f246"}
7376
- .brz-ed .nc-outline-webcam-38:before{content:"\f247"}
7377
- .brz-ed .nc-outline-webcam-39:before{content:"\f248"}
7378
- .brz-ed .nc-outline-webpage-2:before{content:"\f249"}
7379
- .brz-ed .nc-outline-webpage:before{content:"\f24a"}
7380
- .brz-ed .nc-outline-weed:before{content:"\f24b"}
7381
- .brz-ed .nc-outline-weight:before{content:"\f24c"}
7382
- .brz-ed .nc-outline-what:before{content:"\f24d"}
7383
- .brz-ed .nc-outline-wheel-2:before{content:"\f24e"}
7384
- .brz-ed .nc-outline-wheel:before{content:"\f251"}
7385
- .brz-ed .nc-outline-wheelchair:before{content:"\f24f"}
7386
- .brz-ed .nc-outline-whisk:before{content:"\f250"}
7387
- .brz-ed .nc-outline-whiskers:before{content:"\f252"}
7388
- .brz-ed .nc-outline-whistle:before{content:"\f253"}
7389
- .brz-ed .nc-outline-white-house:before{content:"\f254"}
7390
- .brz-ed .nc-outline-widget:before{content:"\f255"}
7391
- .brz-ed .nc-outline-wifi-2:before{content:"\f256"}
7392
- .brz-ed .nc-outline-wifi-off:before{content:"\f257"}
7393
- .brz-ed .nc-outline-wifi-protected:before{content:"\f258"}
7394
- .brz-ed .nc-outline-wifi-router:before{content:"\f259"}
7395
- .brz-ed .nc-outline-wifi:before{content:"\f25a"}
7396
- .brz-ed .nc-outline-wind-2:before{content:"\f25b"}
7397
- .brz-ed .nc-outline-wind:before{content:"\f25c"}
7398
- .brz-ed .nc-outline-window-add:before{content:"\f25d"}
7399
- .brz-ed .nc-outline-window-code:before{content:"\f25e"}
7400
- .brz-ed .nc-outline-window-delete:before{content:"\f25f"}
7401
- .brz-ed .nc-outline-window-dev:before{content:"\f260"}
7402
- .brz-ed .nc-outline-window-paragraph:before{content:"\f261"}
7403
- .brz-ed .nc-outline-window-responsive:before{content:"\f262"}
7404
- .brz-ed .nc-outline-window-zoom-in:before{content:"\f263"}
7405
- .brz-ed .nc-outline-window-zoom-out:before{content:"\f264"}
7406
- .brz-ed .nc-outline-wine-list:before{content:"\f265"}
7407
- .brz-ed .nc-outline-wink-06:before{content:"\f266"}
7408
- .brz-ed .nc-outline-wink-11:before{content:"\f267"}
7409
- .brz-ed .nc-outline-wink-69:before{content:"\f268"}
7410
- .brz-ed .nc-outline-witch-hat:before{content:"\f269"}
7411
- .brz-ed .nc-outline-wolf:before{content:"\f26a"}
7412
- .brz-ed .nc-outline-woman-2:before{content:"\f26b"}
7413
- .brz-ed .nc-outline-woman-21:before{content:"\f26c"}
7414
- .brz-ed .nc-outline-woman-24:before{content:"\f26d"}
7415
- .brz-ed .nc-outline-woman-25:before{content:"\f26e"}
7416
- .brz-ed .nc-outline-woman-down:before{content:"\f26f"}
7417
- .brz-ed .nc-outline-woman-man:before{content:"\f270"}
7418
- .brz-ed .nc-outline-woman-up:before{content:"\f271"}
7419
- .brz-ed .nc-outline-woman:before{content:"\f272"}
7420
- .brz-ed .nc-outline-wood:before{content:"\f273"}
7421
- .brz-ed .nc-outline-wool-ball:before{content:"\f274"}
7422
- .brz-ed .nc-outline-worl-marker:before{content:"\f275"}
7423
- .brz-ed .nc-outline-world-2:before{content:"\f276"}
7424
- .brz-ed .nc-outline-world-pin:before{content:"\f277"}
7425
- .brz-ed .nc-outline-world:before{content:"\f278"}
7426
- .brz-ed .nc-outline-yogurt:before{content:"\f279"}
7427
- .brz-ed .nc-outline-zip-54:before{content:"\f27a"}
7428
- .brz-ed .nc-outline-zip-55:before{content:"\f27b"}
7429
- .brz-ed .nc-outline-zombie:before{content:"\f27c"}
7430
- .brz-ed .nc-outline-zoom-100:before{content:"\f27d"}
7431
- .brz-ed .nc-outline-zoom-2:before{content:"\f27e"}
7432
- .brz-ed .nc-outline-zoom-88:before{content:"\f27f"}
7433
- .brz-ed .nc-outline-zoom-99:before{content:"\f281"}
7434
- .brz-ed .nc-outline-zoom-bold-in:before{content:"\f280"}
7435
- .brz-ed .nc-outline-zoom-bold-out:before{content:"\f282"}
7436
- .brz-ed .nc-outline-zoom-bold:before{content:"\f283"}
7437
- .brz-ed .nc-outline-zoom-e:before{content:"\f285"}
7438
- .brz-ed .nc-outline-zoom-in:before{content:"\f284"}
7439
- .brz-ed .nc-outline-zoom-out:before{content:"\f286"}
7440
- .brz-ed .nc-outline-zoom-split-in:before{content:"\f287"}
7441
- .brz-ed .nc-outline-zoom-split-out:before{content:"\f288"}
7442
- .brz-ed .nc-outline-zoom-split:before{content:"\f289"}
7443
- .brz-ed .nc-outline-zoom-triangles:before{content:"\f28a"}
7444
- .brz-ed .nc-outline-zoom:before{content:"\f28b"}
7445
- .brz-ed .nc-glyph-2x-drag-down:before{content:"\ea01"}
7446
- .brz-ed .nc-glyph-2x-drag-up:before{content:"\ea02"}
7447
- .brz-ed .nc-glyph-2x-swipe-down:before{content:"\ea03"}
7448
- .brz-ed .nc-glyph-2x-swipe-left:before{content:"\ea04"}
7449
- .brz-ed .nc-glyph-2x-swipe-right:before{content:"\ea05"}
7450
- .brz-ed .nc-glyph-2x-swipe-up:before{content:"\ea06"}
7451
- .brz-ed .nc-glyph-2x-tap:before{content:"\ea07"}
7452
- .brz-ed .nc-glyph-3d-29:before{content:"\ea08"}
7453
- .brz-ed .nc-glyph-3d-model:before{content:"\ea09"}
7454
- .brz-ed .nc-glyph-3d:before{content:"\ea0a"}
7455
- .brz-ed .nc-glyph-3x-swipe-left:before{content:"\ea0b"}
7456
- .brz-ed .nc-glyph-3x-swipe-right:before{content:"\ea0c"}
7457
- .brz-ed .nc-glyph-3x-swipe-up:before{content:"\ea0d"}
7458
- .brz-ed .nc-glyph-3x-tap:before{content:"\ea0e"}
7459
- .brz-ed .nc-glyph-4x-swipe-left:before{content:"\ea0f"}
7460
- .brz-ed .nc-glyph-4x-swipe-right:before{content:"\ea10"}
7461
- .brz-ed .nc-glyph-4x-swipe-up:before{content:"\ea11"}
7462
- .brz-ed .nc-glyph-a-add:before{content:"\ea12"}
7463
- .brz-ed .nc-glyph-a-check:before{content:"\ea13"}
7464
- .brz-ed .nc-glyph-a-delete:before{content:"\ea14"}
7465
- .brz-ed .nc-glyph-a-edit:before{content:"\ea15"}
7466
- .brz-ed .nc-glyph-a-heart:before{content:"\ea16"}
7467
- .brz-ed .nc-glyph-a-location:before{content:"\ea17"}
7468
- .brz-ed .nc-glyph-a-remove:before{content:"\ea18"}
7469
- .brz-ed .nc-glyph-a-search:before{content:"\ea19"}
7470
- .brz-ed .nc-glyph-a-security:before{content:"\ea1a"}
7471
- .brz-ed .nc-glyph-a-share:before{content:"\ea1b"}
7472
- .brz-ed .nc-glyph-a-star:before{content:"\ea1c"}
7473
- .brz-ed .nc-glyph-a-sync:before{content:"\ea1d"}
7474
- .brz-ed .nc-glyph-a-time:before{content:"\ea1e"}
7475
- .brz-ed .nc-glyph-abc:before{content:"\ea1f"}
7476
- .brz-ed .nc-glyph-accessibility:before{content:"\ea20"}
7477
- .brz-ed .nc-glyph-action-73:before{content:"\ea21"}
7478
- .brz-ed .nc-glyph-action-74:before{content:"\ea22"}
7479
- .brz-ed .nc-glyph-active-38:before{content:"\ea23"}
7480
- .brz-ed .nc-glyph-active-40:before{content:"\ea24"}
7481
- .brz-ed .nc-glyph-add-27:before{content:"\ea25"}
7482
- .brz-ed .nc-glyph-add-29:before{content:"\ea26"}
7483
- .brz-ed .nc-glyph-add:before{content:"\ea27"}
7484
- .brz-ed .nc-glyph-agenda-bookmark:before{content:"\ea28"}
7485
- .brz-ed .nc-glyph-agenda:before{content:"\ea29"}
7486
- .brz-ed .nc-glyph-air-baloon:before{content:"\ea2a"}
7487
- .brz-ed .nc-glyph-air-conditioner:before{content:"\ea2b"}
7488
- .brz-ed .nc-glyph-airbag:before{content:"\ea2c"}
7489
- .brz-ed .nc-glyph-alarm-add:before{content:"\ea2d"}
7490
- .brz-ed .nc-glyph-alarm-delete:before{content:"\ea2e"}
7491
- .brz-ed .nc-glyph-album-2:before{content:"\ea2f"}
7492
- .brz-ed .nc-glyph-album:before{content:"\ea30"}
7493
- .brz-ed .nc-glyph-alcohol:before{content:"\ea31"}
7494
- .brz-ed .nc-glyph-alert-circle-exc:before{content:"\ea32"}
7495
- .brz-ed .nc-glyph-alert-circle-i:before{content:"\ea33"}
7496
- .brz-ed .nc-glyph-alert-circle-que:before{content:"\ea34"}
7497
- .brz-ed .nc-glyph-alert-exc:before{content:"\ea35"}
7498
- .brz-ed .nc-glyph-alert-i:before{content:"\ea36"}
7499
- .brz-ed .nc-glyph-alert-que:before{content:"\ea37"}
7500
- .brz-ed .nc-glyph-alert-square-exc:before{content:"\ea38"}
7501
- .brz-ed .nc-glyph-alert-square-i:before{content:"\ea39"}
7502
- .brz-ed .nc-glyph-alert-square-que:before{content:"\ea3a"}
7503
- .brz-ed .nc-glyph-alert:before{content:"\ea3b"}
7504
- .brz-ed .nc-glyph-alien-29:before{content:"\ea3c"}
7505
- .brz-ed .nc-glyph-alien-33:before{content:"\ea3d"}
7506
- .brz-ed .nc-glyph-align-bottom:before{content:"\ea3e"}
7507
- .brz-ed .nc-glyph-align-center-horizontal:before{content:"\ea3f"}
7508
- .brz-ed .nc-glyph-align-center-vertical:before{content:"\ea40"}
7509
- .brz-ed .nc-glyph-align-center:before{content:"\ea41"}
7510
- .brz-ed .nc-glyph-align-justify:before{content:"\ea42"}
7511
- .brz-ed .nc-glyph-align-left-2:before{content:"\ea43"}
7512
- .brz-ed .nc-glyph-align-left:before{content:"\ea44"}
7513
- .brz-ed .nc-glyph-align-right-2:before{content:"\ea45"}
7514
- .brz-ed .nc-glyph-align-right:before{content:"\ea46"}
7515
- .brz-ed .nc-glyph-align-top:before{content:"\ea47"}
7516
- .brz-ed .nc-glyph-ambulance:before{content:"\ea48"}
7517
- .brz-ed .nc-glyph-analytics-88:before{content:"\ea49"}
7518
- .brz-ed .nc-glyph-analytics-89:before{content:"\ea4a"}
7519
- .brz-ed .nc-glyph-anchor:before{content:"\ea4b"}
7520
- .brz-ed .nc-glyph-android:before{content:"\ea4c"}
7521
- .brz-ed .nc-glyph-angle:before{content:"\ea4d"}
7522
- .brz-ed .nc-glyph-angry-10:before{content:"\ea4e"}
7523
- .brz-ed .nc-glyph-angry-44:before{content:"\ea4f"}
7524
- .brz-ed .nc-glyph-animation-14:before{content:"\ea50"}
7525
- .brz-ed .nc-glyph-animation-31:before{content:"\ea51"}
7526
- .brz-ed .nc-glyph-animation-32:before{content:"\ea52"}
7527
- .brz-ed .nc-glyph-app:before{content:"\ea53"}
7528
- .brz-ed .nc-glyph-apple-2:before{content:"\ea54"}
7529
- .brz-ed .nc-glyph-apple:before{content:"\ea55"}
7530
- .brz-ed .nc-glyph-appointment:before{content:"\ea56"}
7531
- .brz-ed .nc-glyph-archive-2:before{content:"\ea57"}
7532
- .brz-ed .nc-glyph-archive-3d-check:before{content:"\ea58"}
7533
- .brz-ed .nc-glyph-archive-3d-content:before{content:"\ea59"}
7534
- .brz-ed .nc-glyph-archive-check:before{content:"\ea5a"}
7535
- .brz-ed .nc-glyph-archive-content:before{content:"\ea5b"}
7536
- .brz-ed .nc-glyph-archive-paper-check:before{content:"\ea5c"}
7537
- .brz-ed .nc-glyph-archive-paper:before{content:"\ea5d"}
7538
- .brz-ed .nc-glyph-archive:before{content:"\ea5e"}
7539
- .brz-ed .nc-glyph-armchair:before{content:"\ea5f"}
7540
- .brz-ed .nc-glyph-artboard:before{content:"\ea60"}
7541
- .brz-ed .nc-glyph-astronaut:before{content:"\ea61"}
7542
- .brz-ed .nc-glyph-at-sign:before{content:"\ea62"}
7543
- .brz-ed .nc-glyph-atm:before{content:"\ea63"}
7544
- .brz-ed .nc-glyph-atom:before{content:"\ea64"}
7545
- .brz-ed .nc-glyph-attach-86:before{content:"\ea65"}
7546
- .brz-ed .nc-glyph-attach-87:before{content:"\ea66"}
7547
- .brz-ed .nc-glyph-aubergine:before{content:"\ea67"}
7548
- .brz-ed .nc-glyph-audio-91:before{content:"\ea68"}
7549
- .brz-ed .nc-glyph-audio-92:before{content:"\ea69"}
7550
- .brz-ed .nc-glyph-audio:before{content:"\ea6a"}
7551
- .brz-ed .nc-glyph-avocado:before{content:"\ea6b"}
7552
- .brz-ed .nc-glyph-award-48:before{content:"\ea6c"}
7553
- .brz-ed .nc-glyph-award-49:before{content:"\ea6d"}
7554
- .brz-ed .nc-glyph-award-55:before{content:"\ea6e"}
7555
- .brz-ed .nc-glyph-award-74:before{content:"\ea6f"}
7556
- .brz-ed .nc-glyph-award:before{content:"\ea70"}
7557
- .brz-ed .nc-glyph-axe:before{content:"\ea71"}
7558
- .brz-ed .nc-glyph-b-add:before{content:"\ea72"}
7559
- .brz-ed .nc-glyph-b-check:before{content:"\ea73"}
7560
- .brz-ed .nc-glyph-b-location:before{content:"\ea74"}
7561
- .brz-ed .nc-glyph-b-love:before{content:"\ea75"}
7562
- .brz-ed .nc-glyph-b-meeting:before{content:"\ea76"}
7563
- .brz-ed .nc-glyph-b-remove:before{content:"\ea77"}
7564
- .brz-ed .nc-glyph-b-security:before{content:"\ea78"}
7565
- .brz-ed .nc-glyph-baby-2:before{content:"\ea79"}
7566
- .brz-ed .nc-glyph-baby-3:before{content:"\ea7a"}
7567
- .brz-ed .nc-glyph-baby-bottle:before{content:"\ea7b"}
7568
- .brz-ed .nc-glyph-baby:before{content:"\ea7c"}
7569
- .brz-ed .nc-glyph-back-78:before{content:"\ea7d"}
7570
- .brz-ed .nc-glyph-back-80:before{content:"\ea7e"}
7571
- .brz-ed .nc-glyph-background:before{content:"\ea7f"}
7572
- .brz-ed .nc-glyph-backpack-2:before{content:"\ea80"}
7573
- .brz-ed .nc-glyph-backpack-57:before{content:"\ea81"}
7574
- .brz-ed .nc-glyph-backpack-58:before{content:"\ea82"}
7575
- .brz-ed .nc-glyph-backpack:before{content:"\ea83"}
7576
- .brz-ed .nc-glyph-backward:before{content:"\ea84"}
7577
- .brz-ed .nc-glyph-bacon:before{content:"\ea85"}
7578
- .brz-ed .nc-glyph-badge-13:before{content:"\ea86"}
7579
- .brz-ed .nc-glyph-badge-14:before{content:"\ea87"}
7580
- .brz-ed .nc-glyph-badge-15:before{content:"\ea88"}
7581
- .brz-ed .nc-glyph-badge:before{content:"\ea89"}
7582
- .brz-ed .nc-glyph-badminton:before{content:"\ea8a"}
7583
- .brz-ed .nc-glyph-bag-09:before{content:"\ea8b"}
7584
- .brz-ed .nc-glyph-bag-16:before{content:"\ea8c"}
7585
- .brz-ed .nc-glyph-bag-17:before{content:"\ea8d"}
7586
- .brz-ed .nc-glyph-bag-20:before{content:"\ea8e"}
7587
- .brz-ed .nc-glyph-bag-21:before{content:"\ea8f"}
7588
- .brz-ed .nc-glyph-bag-22:before{content:"\ea90"}
7589
- .brz-ed .nc-glyph-bag-49:before{content:"\ea91"}
7590
- .brz-ed .nc-glyph-bag-50:before{content:"\ea92"}
7591
- .brz-ed .nc-glyph-bag-add-18:before{content:"\ea93"}
7592
- .brz-ed .nc-glyph-bag-add-21:before{content:"\ea94"}
7593
- .brz-ed .nc-glyph-bag-delivery:before{content:"\ea95"}
7594
- .brz-ed .nc-glyph-bag-edit:before{content:"\ea96"}
7595
- .brz-ed .nc-glyph-bag-remove-19:before{content:"\ea97"}
7596
- .brz-ed .nc-glyph-bag-remove-22:before{content:"\ea98"}
7597
- .brz-ed .nc-glyph-bag-time:before{content:"\ea99"}
7598
- .brz-ed .nc-glyph-bag:before{content:"\ea9a"}
7599
- .brz-ed .nc-glyph-baguette:before{content:"\ea9b"}
7600
- .brz-ed .nc-glyph-balance:before{content:"\ea9c"}
7601
- .brz-ed .nc-glyph-ball-basket:before{content:"\ea9d"}
7602
- .brz-ed .nc-glyph-ball-soccer:before{content:"\ea9e"}
7603
- .brz-ed .nc-glyph-baloon:before{content:"\ea9f"}
7604
- .brz-ed .nc-glyph-ban-bold:before{content:"\eaa0"}
7605
- .brz-ed .nc-glyph-ban:before{content:"\eaa1"}
7606
- .brz-ed .nc-glyph-banana:before{content:"\eaa2"}
7607
- .brz-ed .nc-glyph-bank:before{content:"\eaa3"}
7608
- .brz-ed .nc-glyph-barbecue-15:before{content:"\eaa4"}
7609
- .brz-ed .nc-glyph-barbecue-tools:before{content:"\eaa5"}
7610
- .brz-ed .nc-glyph-barbecue:before{content:"\eaa6"}
7611
- .brz-ed .nc-glyph-barcode-qr:before{content:"\eaa7"}
7612
- .brz-ed .nc-glyph-barcode-scan:before{content:"\eaa8"}
7613
- .brz-ed .nc-glyph-barcode:before{content:"\eaa9"}
7614
- .brz-ed .nc-glyph-bars-2:before{content:"\eaaa"}
7615
- .brz-ed .nc-glyph-bars-rotate:before{content:"\eaab"}
7616
- .brz-ed .nc-glyph-bars:before{content:"\eaac"}
7617
- .brz-ed .nc-glyph-baseball-ball:before{content:"\eaad"}
7618
- .brz-ed .nc-glyph-baseball-bat:before{content:"\eaae"}
7619
- .brz-ed .nc-glyph-baseball:before{content:"\eaaf"}
7620
- .brz-ed .nc-glyph-basket-add:before{content:"\eab0"}
7621
- .brz-ed .nc-glyph-basket-edit:before{content:"\eab1"}
7622
- .brz-ed .nc-glyph-basket-favorite:before{content:"\eab2"}
7623
- .brz-ed .nc-glyph-basket-remove:before{content:"\eab3"}
7624
- .brz-ed .nc-glyph-basket-search:before{content:"\eab4"}
7625
- .brz-ed .nc-glyph-basket-share:before{content:"\eab5"}
7626
- .brz-ed .nc-glyph-basket-simple-add:before{content:"\eab6"}
7627
- .brz-ed .nc-glyph-basket-simple-remove:before{content:"\eab7"}
7628
- .brz-ed .nc-glyph-basket-simple:before{content:"\eab8"}
7629
- .brz-ed .nc-glyph-basket-update:before{content:"\eab9"}
7630
- .brz-ed .nc-glyph-basket:before{content:"\eaba"}
7631
- .brz-ed .nc-glyph-basketball-12:before{content:"\eabb"}
7632
- .brz-ed .nc-glyph-basketball-13:before{content:"\eabc"}
7633
- .brz-ed .nc-glyph-bat:before{content:"\eabd"}
7634
- .brz-ed .nc-glyph-bath-tub:before{content:"\eabe"}
7635
- .brz-ed .nc-glyph-battery-81:before{content:"\eabf"}
7636
- .brz-ed .nc-glyph-battery-83:before{content:"\eac0"}
7637
- .brz-ed .nc-glyph-battery-half:before{content:"\eac1"}
7638
- .brz-ed .nc-glyph-battery-level:before{content:"\eac2"}
7639
- .brz-ed .nc-glyph-battery-low:before{content:"\eac3"}
7640
- .brz-ed .nc-glyph-battery:before{content:"\eac4"}
7641
- .brz-ed .nc-glyph-bear-2:before{content:"\eac5"}
7642
- .brz-ed .nc-glyph-bear:before{content:"\eac6"}
7643
- .brz-ed .nc-glyph-bed-09:before{content:"\eac7"}
7644
- .brz-ed .nc-glyph-bed-23:before{content:"\eac8"}
7645
- .brz-ed .nc-glyph-bed-side:before{content:"\eac9"}
7646
- .brz-ed .nc-glyph-bee:before{content:"\eaca"}
7647
- .brz-ed .nc-glyph-beer-95:before{content:"\eacb"}
7648
- .brz-ed .nc-glyph-beer-96:before{content:"\eacc"}
7649
- .brz-ed .nc-glyph-bell-53:before{content:"\eacd"}
7650
- .brz-ed .nc-glyph-bell-54:before{content:"\eace"}
7651
- .brz-ed .nc-glyph-bell-55:before{content:"\eacf"}
7652
- .brz-ed .nc-glyph-belt:before{content:"\ead0"}
7653
- .brz-ed .nc-glyph-berlin:before{content:"\ead1"}
7654
- .brz-ed .nc-glyph-beverage:before{content:"\ead2"}
7655
- .brz-ed .nc-glyph-big-eyes:before{content:"\ead3"}
7656
- .brz-ed .nc-glyph-big-smile:before{content:"\ead4"}
7657
- .brz-ed .nc-glyph-bigmouth:before{content:"\ead5"}
7658
- .brz-ed .nc-glyph-bike-2:before{content:"\ead6"}
7659
- .brz-ed .nc-glyph-bike:before{content:"\ead7"}
7660
- .brz-ed .nc-glyph-bill:before{content:"\ead8"}
7661
- .brz-ed .nc-glyph-billiard:before{content:"\ead9"}
7662
- .brz-ed .nc-glyph-binocular:before{content:"\eada"}
7663
- .brz-ed .nc-glyph-biscuit:before{content:"\eadb"}
7664
- .brz-ed .nc-glyph-bitcoin:before{content:"\eadc"}
7665
- .brz-ed .nc-glyph-bleah:before{content:"\eadd"}
7666
- .brz-ed .nc-glyph-blend:before{content:"\eade"}
7667
- .brz-ed .nc-glyph-blind:before{content:"\eadf"}
7668
- .brz-ed .nc-glyph-block-bottom-left:before{content:"\eae0"}
7669
- .brz-ed .nc-glyph-block-bottom-right:before{content:"\eae1"}
7670
- .brz-ed .nc-glyph-block-down:before{content:"\eae2"}
7671
- .brz-ed .nc-glyph-block-left:before{content:"\eae3"}
7672
- .brz-ed .nc-glyph-block-right:before{content:"\eae4"}
7673
- .brz-ed .nc-glyph-block-top-left:before{content:"\eae5"}
7674
- .brz-ed .nc-glyph-block-top-right:before{content:"\eae6"}
7675
- .brz-ed .nc-glyph-block-up:before{content:"\eae7"}
7676
- .brz-ed .nc-glyph-blog:before{content:"\eae8"}
7677
- .brz-ed .nc-glyph-blueberries:before{content:"\eae9"}
7678
- .brz-ed .nc-glyph-bluetooth:before{content:"\eaea"}
7679
- .brz-ed .nc-glyph-board-2:before{content:"\eaeb"}
7680
- .brz-ed .nc-glyph-board-27:before{content:"\eaec"}
7681
- .brz-ed .nc-glyph-board-28:before{content:"\eaed"}
7682
- .brz-ed .nc-glyph-board-29:before{content:"\eaee"}
7683
- .brz-ed .nc-glyph-board-30:before{content:"\eaef"}
7684
- .brz-ed .nc-glyph-board-51:before{content:"\eaf0"}
7685
- .brz-ed .nc-glyph-board:before{content:"\eaf1"}
7686
- .brz-ed .nc-glyph-boat-front:before{content:"\eaf2"}
7687
- .brz-ed .nc-glyph-boat-small-02:before{content:"\eaf3"}
7688
- .brz-ed .nc-glyph-boat-small-03:before{content:"\eaf4"}
7689
- .brz-ed .nc-glyph-boat:before{content:"\eaf5"}
7690
- .brz-ed .nc-glyph-bold-add:before{content:"\eaf6"}
7691
- .brz-ed .nc-glyph-bold-delete:before{content:"\eaf7"}
7692
- .brz-ed .nc-glyph-bold-direction:before{content:"\eaf8"}
7693
- .brz-ed .nc-glyph-bold-down:before{content:"\eaf9"}
7694
- .brz-ed .nc-glyph-bold-left:before{content:"\eafa"}
7695
- .brz-ed .nc-glyph-bold-remove:before{content:"\eafb"}
7696
- .brz-ed .nc-glyph-bold-right:before{content:"\eafc"}
7697
- .brz-ed .nc-glyph-bold-up:before{content:"\eafd"}
7698
- .brz-ed .nc-glyph-bold:before{content:"\eafe"}
7699
- .brz-ed .nc-glyph-bolt:before{content:"\eaff"}
7700
- .brz-ed .nc-glyph-bomb:before{content:"\eb00"}
7701
- .brz-ed .nc-glyph-bones:before{content:"\eb01"}
7702
- .brz-ed .nc-glyph-book-07:before{content:"\eb02"}
7703
- .brz-ed .nc-glyph-book-08:before{content:"\eb03"}
7704
- .brz-ed .nc-glyph-book-39:before{content:"\eb04"}
7705
- .brz-ed .nc-glyph-book-bookmark-2:before{content:"\eb05"}
7706
- .brz-ed .nc-glyph-book-bookmark:before{content:"\eb06"}
7707
- .brz-ed .nc-glyph-book-open-2:before{content:"\eb07"}
7708
- .brz-ed .nc-glyph-book-open:before{content:"\eb08"}
7709
- .brz-ed .nc-glyph-book:before{content:"\eb09"}
7710
- .brz-ed .nc-glyph-bookmark-2:before{content:"\eb0a"}
7711
- .brz-ed .nc-glyph-bookmark-add-2:before{content:"\eb0b"}
7712
- .brz-ed .nc-glyph-bookmark-add:before{content:"\eb0c"}
7713
- .brz-ed .nc-glyph-bookmark-remove-2:before{content:"\eb0d"}
7714
- .brz-ed .nc-glyph-bookmark-remove:before{content:"\eb0e"}
7715
- .brz-ed .nc-glyph-bookmark:before{content:"\eb0f"}
7716
- .brz-ed .nc-glyph-books-46:before{content:"\eb10"}
7717
- .brz-ed .nc-glyph-books:before{content:"\eb11"}
7718
- .brz-ed .nc-glyph-boot-2:before{content:"\eb12"}
7719
- .brz-ed .nc-glyph-boot-woman:before{content:"\eb13"}
7720
- .brz-ed .nc-glyph-boot:before{content:"\eb14"}
7721
- .brz-ed .nc-glyph-border-radius:before{content:"\eb15"}
7722
- .brz-ed .nc-glyph-border:before{content:"\eb16"}
7723
- .brz-ed .nc-glyph-bored:before{content:"\eb17"}
7724
- .brz-ed .nc-glyph-bottle-wine:before{content:"\eb18"}
7725
- .brz-ed .nc-glyph-bottle:before{content:"\eb19"}
7726
- .brz-ed .nc-glyph-bow:before{content:"\eb1a"}
7727
- .brz-ed .nc-glyph-bowl:before{content:"\eb1b"}
7728
- .brz-ed .nc-glyph-bowling:before{content:"\eb1c"}
7729
- .brz-ed .nc-glyph-box-2:before{content:"\eb1d"}
7730
- .brz-ed .nc-glyph-box-3d-50:before{content:"\eb1e"}
7731
- .brz-ed .nc-glyph-box-ribbon:before{content:"\eb1f"}
7732
- .brz-ed .nc-glyph-box:before{content:"\eb20"}
7733
- .brz-ed .nc-glyph-boxing:before{content:"\eb21"}
7734
- .brz-ed .nc-glyph-bra:before{content:"\eb22"}
7735
- .brz-ed .nc-glyph-brain:before{content:"\eb23"}
7736
- .brz-ed .nc-glyph-brakes:before{content:"\eb24"}
7737
- .brz-ed .nc-glyph-bread:before{content:"\eb25"}
7738
- .brz-ed .nc-glyph-briefcase-24:before{content:"\eb26"}
7739
- .brz-ed .nc-glyph-briefcase-25:before{content:"\eb27"}
7740
- .brz-ed .nc-glyph-briefcase-26:before{content:"\eb28"}
7741
- .brz-ed .nc-glyph-brightness-46:before{content:"\eb29"}
7742
- .brz-ed .nc-glyph-brightness-47:before{content:"\eb2a"}
7743
- .brz-ed .nc-glyph-brioche:before{content:"\eb2b"}
7744
- .brz-ed .nc-glyph-broccoli:before{content:"\eb2c"}
7745
- .brz-ed .nc-glyph-broom:before{content:"\eb2d"}
7746
- .brz-ed .nc-glyph-browser-chrome:before{content:"\eb2e"}
7747
- .brz-ed .nc-glyph-browser-edge:before{content:"\eb2f"}
7748
- .brz-ed .nc-glyph-browser-firefox:before{content:"\eb30"}
7749
- .brz-ed .nc-glyph-browser-ie:before{content:"\eb31"}
7750
- .brz-ed .nc-glyph-browser-opera:before{content:"\eb32"}
7751
- .brz-ed .nc-glyph-browser-safari:before{content:"\eb33"}
7752
- .brz-ed .nc-glyph-brush:before{content:"\eb34"}
7753
- .brz-ed .nc-glyph-bucket:before{content:"\eb35"}
7754
- .brz-ed .nc-glyph-bug:before{content:"\eb36"}
7755
- .brz-ed .nc-glyph-building:before{content:"\eb37"}
7756
- .brz-ed .nc-glyph-bulb-61:before{content:"\eb38"}
7757
- .brz-ed .nc-glyph-bulb-62:before{content:"\eb39"}
7758
- .brz-ed .nc-glyph-bulb-63:before{content:"\eb3a"}
7759
- .brz-ed .nc-glyph-bulb-saver:before{content:"\eb3b"}
7760
- .brz-ed .nc-glyph-bulb:before{content:"\eb3c"}
7761
- .brz-ed .nc-glyph-bullet-list-67:before{content:"\eb3d"}
7762
- .brz-ed .nc-glyph-bullet-list-68:before{content:"\eb3e"}
7763
- .brz-ed .nc-glyph-bullet-list-69:before{content:"\eb3f"}
7764
- .brz-ed .nc-glyph-bullet-list-70:before{content:"\eb40"}
7765
- .brz-ed .nc-glyph-bullet-list:before{content:"\eb41"}
7766
- .brz-ed .nc-glyph-bus-front-10:before{content:"\eb42"}
7767
- .brz-ed .nc-glyph-bus-front-12:before{content:"\eb43"}
7768
- .brz-ed .nc-glyph-bus:before{content:"\eb44"}
7769
- .brz-ed .nc-glyph-business-contact-85:before{content:"\eb45"}
7770
- .brz-ed .nc-glyph-business-contact-86:before{content:"\eb46"}
7771
- .brz-ed .nc-glyph-business-contact-87:before{content:"\eb47"}
7772
- .brz-ed .nc-glyph-business-contact-88:before{content:"\eb48"}
7773
- .brz-ed .nc-glyph-business-contact-89:before{content:"\eb49"}
7774
- .brz-ed .nc-glyph-businessman-03:before{content:"\eb4a"}
7775
- .brz-ed .nc-glyph-businessman-04:before{content:"\eb4b"}
7776
- .brz-ed .nc-glyph-butterfly:before{content:"\eb4c"}
7777
- .brz-ed .nc-glyph-button-2:before{content:"\eb4d"}
7778
- .brz-ed .nc-glyph-button-circle-pause:before{content:"\eb4e"}
7779
- .brz-ed .nc-glyph-button-circle-play:before{content:"\eb4f"}
7780
- .brz-ed .nc-glyph-button-circle-stop:before{content:"\eb50"}
7781
- .brz-ed .nc-glyph-button-eject:before{content:"\eb51"}
7782
- .brz-ed .nc-glyph-button-next:before{content:"\eb52"}
7783
- .brz-ed .nc-glyph-button-pause:before{content:"\eb53"}
7784
- .brz-ed .nc-glyph-button-play:before{content:"\eb54"}
7785
- .brz-ed .nc-glyph-button-power:before{content:"\eb55"}
7786
- .brz-ed .nc-glyph-button-previous:before{content:"\eb56"}
7787
- .brz-ed .nc-glyph-button-record:before{content:"\eb57"}
7788
- .brz-ed .nc-glyph-button-rewind:before{content:"\eb58"}
7789
- .brz-ed .nc-glyph-button-skip:before{content:"\eb5b"}
7790
- .brz-ed .nc-glyph-button-stop:before{content:"\eb59"}
7791
- .brz-ed .nc-glyph-button:before{content:"\eb5a"}
7792
- .brz-ed .nc-glyph-cabinet:before{content:"\eb5c"}
7793
- .brz-ed .nc-glyph-cable-49:before{content:"\eb5d"}
7794
- .brz-ed .nc-glyph-cable-50:before{content:"\eb5e"}
7795
- .brz-ed .nc-glyph-cactus:before{content:"\eb5f"}
7796
- .brz-ed .nc-glyph-cake-100:before{content:"\eb60"}
7797
- .brz-ed .nc-glyph-cake-13:before{content:"\eb61"}
7798
- .brz-ed .nc-glyph-cake-slice:before{content:"\eb62"}
7799
- .brz-ed .nc-glyph-cake:before{content:"\eb63"}
7800
- .brz-ed .nc-glyph-calculator:before{content:"\eb64"}
7801
- .brz-ed .nc-glyph-calendar-57:before{content:"\eb65"}
7802
- .brz-ed .nc-glyph-calendar-60:before{content:"\eb66"}
7803
- .brz-ed .nc-glyph-calendar-add:before{content:"\eb67"}
7804
- .brz-ed .nc-glyph-calendar-check-59:before{content:"\eb68"}
7805
- .brz-ed .nc-glyph-calendar-check-62:before{content:"\eb69"}
7806
- .brz-ed .nc-glyph-calendar-grid-58:before{content:"\eb6a"}
7807
- .brz-ed .nc-glyph-calendar-grid-61:before{content:"\eb6b"}
7808
- .brz-ed .nc-glyph-camera-18:before{content:"\eb6c"}
7809
- .brz-ed .nc-glyph-camera-19:before{content:"\eb6d"}
7810
- .brz-ed .nc-glyph-camera-20:before{content:"\eb6e"}
7811
- .brz-ed .nc-glyph-camera-ban-36:before{content:"\eb6f"}
7812
- .brz-ed .nc-glyph-camera-ban-37:before{content:"\eb70"}
7813
- .brz-ed .nc-glyph-camera-compact:before{content:"\eb71"}
7814
- .brz-ed .nc-glyph-camera-screen:before{content:"\eb72"}
7815
- .brz-ed .nc-glyph-camera-square-57:before{content:"\eb73"}
7816
- .brz-ed .nc-glyph-camera-square-58:before{content:"\eb74"}
7817
- .brz-ed .nc-glyph-camera-time:before{content:"\eb75"}
7818
- .brz-ed .nc-glyph-camera:before{content:"\eb76"}
7819
- .brz-ed .nc-glyph-camper:before{content:"\eb77"}
7820
- .brz-ed .nc-glyph-camping:before{content:"\eb78"}
7821
- .brz-ed .nc-glyph-candle:before{content:"\eb79"}
7822
- .brz-ed .nc-glyph-candy-2:before{content:"\eb7a"}
7823
- .brz-ed .nc-glyph-candy:before{content:"\eb7b"}
7824
- .brz-ed .nc-glyph-canvas:before{content:"\eb7c"}
7825
- .brz-ed .nc-glyph-cap:before{content:"\eb7d"}
7826
- .brz-ed .nc-glyph-capitalize:before{content:"\eb7e"}
7827
- .brz-ed .nc-glyph-caps-all:before{content:"\eb7f"}
7828
- .brz-ed .nc-glyph-caps-small:before{content:"\eb80"}
7829
- .brz-ed .nc-glyph-car-2:before{content:"\eb81"}
7830
- .brz-ed .nc-glyph-car-accident:before{content:"\eb82"}
7831
- .brz-ed .nc-glyph-car-connect:before{content:"\eb83"}
7832
- .brz-ed .nc-glyph-car-door:before{content:"\eb84"}
7833
- .brz-ed .nc-glyph-car-front:before{content:"\eb85"}
7834
- .brz-ed .nc-glyph-car-lights:before{content:"\eb86"}
7835
- .brz-ed .nc-glyph-car-parking:before{content:"\eb87"}
7836
- .brz-ed .nc-glyph-car-simple:before{content:"\eb88"}
7837
- .brz-ed .nc-glyph-car-sport:before{content:"\eb89"}
7838
- .brz-ed .nc-glyph-car-taxi:before{content:"\eb8a"}
7839
- .brz-ed .nc-glyph-car-ventilation:before{content:"\eb8b"}
7840
- .brz-ed .nc-glyph-car-wash:before{content:"\eb8c"}
7841
- .brz-ed .nc-glyph-car:before{content:"\eb8d"}
7842
- .brz-ed .nc-glyph-card-add-2:before{content:"\eb8e"}
7843
- .brz-ed .nc-glyph-card-add:before{content:"\eb8f"}
7844
- .brz-ed .nc-glyph-card-alert:before{content:"\eb90"}
7845
- .brz-ed .nc-glyph-card-edit:before{content:"\eb91"}
7846
- .brz-ed .nc-glyph-card-favorite:before{content:"\eb92"}
7847
- .brz-ed .nc-glyph-card-remove:before{content:"\eb93"}
7848
- .brz-ed .nc-glyph-card-update:before{content:"\eb94"}
7849
- .brz-ed .nc-glyph-cardio:before{content:"\eb95"}
7850
- .brz-ed .nc-glyph-cards:before{content:"\eb96"}
7851
- .brz-ed .nc-glyph-carrot:before{content:"\eb97"}
7852
- .brz-ed .nc-glyph-cart-9:before{content:"\eb98"}
7853
- .brz-ed .nc-glyph-cart-add-9:before{content:"\eb99"}
7854
- .brz-ed .nc-glyph-cart-add:before{content:"\eb9a"}
7855
- .brz-ed .nc-glyph-cart-favorite:before{content:"\eb9b"}
7856
- .brz-ed .nc-glyph-cart-full:before{content:"\eb9c"}
7857
- .brz-ed .nc-glyph-cart-in-9:before{content:"\eb9d"}
7858
- .brz-ed .nc-glyph-cart-refresh:before{content:"\eb9e"}
7859
- .brz-ed .nc-glyph-cart-remove-9:before{content:"\eb9f"}
7860
- .brz-ed .nc-glyph-cart-remove:before{content:"\eba0"}
7861
- .brz-ed .nc-glyph-cart-return:before{content:"\eba1"}
7862
- .brz-ed .nc-glyph-cart-simple-add:before{content:"\eba2"}
7863
- .brz-ed .nc-glyph-cart-simple-in:before{content:"\eba3"}
7864
- .brz-ed .nc-glyph-cart-simple-remove:before{content:"\eba4"}
7865
- .brz-ed .nc-glyph-cart-simple:before{content:"\eba5"}
7866
- .brz-ed .nc-glyph-cart-speed:before{content:"\eba6"}
7867
- .brz-ed .nc-glyph-cart:before{content:"\eba7"}
7868
- .brz-ed .nc-glyph-cash-register:before{content:"\eba8"}
7869
- .brz-ed .nc-glyph-castle:before{content:"\eba9"}
7870
- .brz-ed .nc-glyph-cat:before{content:"\ebaa"}
7871
- .brz-ed .nc-glyph-cauldron:before{content:"\ebab"}
7872
- .brz-ed .nc-glyph-cctv:before{content:"\ebac"}
7873
- .brz-ed .nc-glyph-cd-reader:before{content:"\ebad"}
7874
- .brz-ed .nc-glyph-celsius:before{content:"\ebae"}
7875
- .brz-ed .nc-glyph-centralize:before{content:"\ebaf"}
7876
- .brz-ed .nc-glyph-chair-2:before{content:"\ebb0"}
7877
- .brz-ed .nc-glyph-chair:before{content:"\ebb1"}
7878
- .brz-ed .nc-glyph-chalkboard:before{content:"\ebb2"}
7879
- .brz-ed .nc-glyph-champagne:before{content:"\ebb3"}
7880
- .brz-ed .nc-glyph-chart-2:before{content:"\ebb4"}
7881
- .brz-ed .nc-glyph-chart-3:before{content:"\ebb5"}
7882
- .brz-ed .nc-glyph-chart-bar-32:before{content:"\ebb6"}
7883
- .brz-ed .nc-glyph-chart-bar-33:before{content:"\ebb7"}
7884
- .brz-ed .nc-glyph-chart-bar-52:before{content:"\ebb8"}
7885
- .brz-ed .nc-glyph-chart-bar-53:before{content:"\ebb9"}
7886
- .brz-ed .nc-glyph-chart-bar:before{content:"\ebba"}
7887
- .brz-ed .nc-glyph-chart-bars:before{content:"\ebbb"}
7888
- .brz-ed .nc-glyph-chart-growth:before{content:"\ebbc"}
7889
- .brz-ed .nc-glyph-chart-pie-35:before{content:"\ebbd"}
7890
- .brz-ed .nc-glyph-chart-pie-36:before{content:"\ebbe"}
7891
- .brz-ed .nc-glyph-chart-pie:before{content:"\ebbf"}
7892
- .brz-ed .nc-glyph-chart:before{content:"\ebc0"}
7893
- .brz-ed .nc-glyph-chat-33:before{content:"\ebc1"}
7894
- .brz-ed .nc-glyph-chat-45:before{content:"\ebc2"}
7895
- .brz-ed .nc-glyph-chat-46:before{content:"\ebc3"}
7896
- .brz-ed .nc-glyph-chat-content:before{content:"\ebc4"}
7897
- .brz-ed .nc-glyph-chat-reply:before{content:"\ebc5"}
7898
- .brz-ed .nc-glyph-chat-round-content:before{content:"\ebc6"}
7899
- .brz-ed .nc-glyph-chat-round:before{content:"\ebc7"}
7900
- .brz-ed .nc-glyph-chat:before{content:"\ebc8"}
7901
- .brz-ed .nc-glyph-check-2:before{content:"\ebc9"}
7902
- .brz-ed .nc-glyph-check-bold:before{content:"\ebca"}
7903
- .brz-ed .nc-glyph-check-circle-07:before{content:"\ebcb"}
7904
- .brz-ed .nc-glyph-check-circle-08:before{content:"\ebcc"}
7905
- .brz-ed .nc-glyph-check-curve:before{content:"\ebcd"}
7906
- .brz-ed .nc-glyph-check-in:before{content:"\ebce"}
7907
- .brz-ed .nc-glyph-check-out:before{content:"\ebcf"}
7908
- .brz-ed .nc-glyph-check-simple:before{content:"\ebd0"}
7909
- .brz-ed .nc-glyph-check-small:before{content:"\ebd1"}
7910
- .brz-ed .nc-glyph-check-square-09:before{content:"\ebd2"}
7911
- .brz-ed .nc-glyph-check-square-11:before{content:"\ebd3"}
7912
- .brz-ed .nc-glyph-check:before{content:"\ebd4"}
7913
- .brz-ed .nc-glyph-cheese-24:before{content:"\ebd5"}
7914
- .brz-ed .nc-glyph-cheese-87:before{content:"\ebd6"}
7915
- .brz-ed .nc-glyph-cheeseburger:before{content:"\ebd7"}
7916
- .brz-ed .nc-glyph-chef-hat:before{content:"\ebd8"}
7917
- .brz-ed .nc-glyph-chef:before{content:"\ebd9"}
7918
- .brz-ed .nc-glyph-cheque-2:before{content:"\ebda"}
7919
- .brz-ed .nc-glyph-cheque-3:before{content:"\ebdb"}
7920
- .brz-ed .nc-glyph-cheque:before{content:"\ebdc"}
7921
- .brz-ed .nc-glyph-cherry:before{content:"\ebdd"}
7922
- .brz-ed .nc-glyph-chicken-2:before{content:"\ebde"}
7923
- .brz-ed .nc-glyph-chicken:before{content:"\ebdf"}
7924
- .brz-ed .nc-glyph-child:before{content:"\ebe0"}
7925
- .brz-ed .nc-glyph-chili:before{content:"\ebe1"}
7926
- .brz-ed .nc-glyph-chimney:before{content:"\ebe2"}
7927
- .brz-ed .nc-glyph-china:before{content:"\ebe3"}
7928
- .brz-ed .nc-glyph-chinese:before{content:"\ebe4"}
7929
- .brz-ed .nc-glyph-chips:before{content:"\ebe5"}
7930
- .brz-ed .nc-glyph-choco-cream:before{content:"\ebe7"}
7931
- .brz-ed .nc-glyph-chocolate-mousse:before{content:"\ebe6"}
7932
- .brz-ed .nc-glyph-chocolate:before{content:"\ebe8"}
7933
- .brz-ed .nc-glyph-church:before{content:"\ebe9"}
7934
- .brz-ed .nc-glyph-churros:before{content:"\ebea"}
7935
- .brz-ed .nc-glyph-circle-02:before{content:"\ebeb"}
7936
- .brz-ed .nc-glyph-circle-03:before{content:"\ebec"}
7937
- .brz-ed .nc-glyph-circle-04:before{content:"\ebed"}
7938
- .brz-ed .nc-glyph-circle-08:before{content:"\ebee"}
7939
- .brz-ed .nc-glyph-circle-09:before{content:"\ebef"}
7940
- .brz-ed .nc-glyph-circle-10:before{content:"\ebf0"}
7941
- .brz-ed .nc-glyph-circle-add:before{content:"\ebf1"}
7942
- .brz-ed .nc-glyph-circle-bold-add:before{content:"\ebf2"}
7943
- .brz-ed .nc-glyph-circle-bold-delete:before{content:"\ebf3"}
7944
- .brz-ed .nc-glyph-circle-bold-remove:before{content:"\ebf4"}
7945
- .brz-ed .nc-glyph-circle-delete:before{content:"\ebf5"}
7946
- .brz-ed .nc-glyph-circle-down-12:before{content:"\ebf6"}
7947
- .brz-ed .nc-glyph-circle-down-40:before{content:"\ebf7"}
7948
- .brz-ed .nc-glyph-circle-in:before{content:"\ebf8"}
7949
- .brz-ed .nc-glyph-circle-left-10:before{content:"\ebf9"}
7950
- .brz-ed .nc-glyph-circle-left-38:before{content:"\ebfa"}
7951
- .brz-ed .nc-glyph-circle-out:before{content:"\ebfb"}
7952
- .brz-ed .nc-glyph-circle-remove:before{content:"\ebfc"}
7953
- .brz-ed .nc-glyph-circle-right-09:before{content:"\ebfd"}
7954
- .brz-ed .nc-glyph-circle-right-37:before{content:"\ebfe"}
7955
- .brz-ed .nc-glyph-circle-simple-down:before{content:"\ebff"}
7956
- .brz-ed .nc-glyph-circle-simple-left:before{content:"\ec00"}
7957
- .brz-ed .nc-glyph-circle-simple-right:before{content:"\ec01"}
7958
- .brz-ed .nc-glyph-circle-simple-up:before{content:"\ec02"}
7959
- .brz-ed .nc-glyph-circle-up-11:before{content:"\ec03"}
7960
- .brz-ed .nc-glyph-circle-up-39:before{content:"\ec04"}
7961
- .brz-ed .nc-glyph-circle:before{content:"\ec05"}
7962
- .brz-ed .nc-glyph-circuit-round:before{content:"\ec06"}
7963
- .brz-ed .nc-glyph-circuit:before{content:"\ec07"}
7964
- .brz-ed .nc-glyph-clone:before{content:"\ec08"}
7965
- .brz-ed .nc-glyph-cloud-25:before{content:"\ec09"}
7966
- .brz-ed .nc-glyph-cloud-26:before{content:"\ec0a"}
7967
- .brz-ed .nc-glyph-cloud-download-93:before{content:"\ec0b"}
7968
- .brz-ed .nc-glyph-cloud-download-95:before{content:"\ec0c"}
7969
- .brz-ed .nc-glyph-cloud-drop:before{content:"\ec0d"}
7970
- .brz-ed .nc-glyph-cloud-fog-31:before{content:"\ec0e"}
7971
- .brz-ed .nc-glyph-cloud-fog-32:before{content:"\ec0f"}
7972
- .brz-ed .nc-glyph-cloud-hail:before{content:"\ec10"}
7973
- .brz-ed .nc-glyph-cloud-light:before{content:"\ec11"}
7974
- .brz-ed .nc-glyph-cloud-moon:before{content:"\ec12"}
7975
- .brz-ed .nc-glyph-cloud-rain:before{content:"\ec13"}
7976
- .brz-ed .nc-glyph-cloud-rainbow:before{content:"\ec14"}
7977
- .brz-ed .nc-glyph-cloud-snow-34:before{content:"\ec15"}
7978
- .brz-ed .nc-glyph-cloud-snow-42:before{content:"\ec16"}
7979
- .brz-ed .nc-glyph-cloud-sun-17:before{content:"\ec17"}
7980
- .brz-ed .nc-glyph-cloud-sun-19:before{content:"\ec18"}
7981
- .brz-ed .nc-glyph-cloud-upload-94:before{content:"\ec19"}
7982
- .brz-ed .nc-glyph-cloud-upload-96:before{content:"\ec1a"}
7983
- .brz-ed .nc-glyph-cloud:before{content:"\ec1b"}
7984
- .brz-ed .nc-glyph-clover:before{content:"\ec1c"}
7985
- .brz-ed .nc-glyph-coat-hanger:before{content:"\ec1d"}
7986
- .brz-ed .nc-glyph-coat:before{content:"\ec1e"}
7987
- .brz-ed .nc-glyph-cockade:before{content:"\ec1f"}
7988
- .brz-ed .nc-glyph-cocktail:before{content:"\ec20"}
7989
- .brz-ed .nc-glyph-code-editor:before{content:"\ec21"}
7990
- .brz-ed .nc-glyph-code:before{content:"\ec22"}
7991
- .brz-ed .nc-glyph-coffe-long:before{content:"\ec23"}
7992
- .brz-ed .nc-glyph-coffee-2:before{content:"\ec24"}
7993
- .brz-ed .nc-glyph-coffee-bean:before{content:"\ec25"}
7994
- .brz-ed .nc-glyph-coffee-long:before{content:"\ec26"}
7995
- .brz-ed .nc-glyph-coffee:before{content:"\ec27"}
7996
- .brz-ed .nc-glyph-coffin:before{content:"\ec28"}
7997
- .brz-ed .nc-glyph-coins:before{content:"\ec29"}
7998
- .brz-ed .nc-glyph-collar:before{content:"\ec2a"}
7999
- .brz-ed .nc-glyph-collection:before{content:"\ec2b"}
8000
- .brz-ed .nc-glyph-color:before{content:"\ec2c"}
8001
- .brz-ed .nc-glyph-command:before{content:"\ec2d"}
8002
- .brz-ed .nc-glyph-comment-add:before{content:"\ec2e"}
8003
- .brz-ed .nc-glyph-compare:before{content:"\ec2f"}
8004
- .brz-ed .nc-glyph-compass-04:before{content:"\ec30"}
8005
- .brz-ed .nc-glyph-compass-05:before{content:"\ec31"}
8006
- .brz-ed .nc-glyph-compass-06:before{content:"\ec32"}
8007
- .brz-ed .nc-glyph-compass-2:before{content:"\ec33"}
8008
- .brz-ed .nc-glyph-compass-3:before{content:"\ec34"}
8009
- .brz-ed .nc-glyph-compass:before{content:"\ec35"}
8010
- .brz-ed .nc-glyph-components:before{content:"\ec36"}
8011
- .brz-ed .nc-glyph-computer-monitor:before{content:"\ec37"}
8012
- .brz-ed .nc-glyph-computer-old:before{content:"\ec38"}
8013
- .brz-ed .nc-glyph-computer-upload:before{content:"\ec39"}
8014
- .brz-ed .nc-glyph-computer:before{content:"\ec3a"}
8015
- .brz-ed .nc-glyph-cone:before{content:"\ec3b"}
8016
- .brz-ed .nc-glyph-connect:before{content:"\ec3c"}
8017
- .brz-ed .nc-glyph-connection:before{content:"\ec3d"}
8018
- .brz-ed .nc-glyph-contacts-2:before{content:"\ec3e"}
8019
- .brz-ed .nc-glyph-contacts-44:before{content:"\ec3f"}
8020
- .brz-ed .nc-glyph-contacts-45:before{content:"\ec40"}
8021
- .brz-ed .nc-glyph-contacts:before{content:"\ec41"}
8022
- .brz-ed .nc-glyph-contrast-2:before{content:"\ec42"}
8023
- .brz-ed .nc-glyph-contrast:before{content:"\ec43"}
8024
- .brz-ed .nc-glyph-controller-2:before{content:"\ec44"}
8025
- .brz-ed .nc-glyph-controller-3:before{content:"\ec45"}
8026
- .brz-ed .nc-glyph-controller:before{content:"\ec46"}
8027
- .brz-ed .nc-glyph-conversion:before{content:"\ec47"}
8028
- .brz-ed .nc-glyph-cookies:before{content:"\ec48"}
8029
- .brz-ed .nc-glyph-copy-2:before{content:"\ec49"}
8030
- .brz-ed .nc-glyph-copy:before{content:"\ec4a"}
8031
- .brz-ed .nc-glyph-corn:before{content:"\ec4b"}
8032
- .brz-ed .nc-glyph-corner-down-round:before{content:"\ec4c"}
8033
- .brz-ed .nc-glyph-corner-down:before{content:"\ec4d"}
8034
- .brz-ed .nc-glyph-corner-left-down:before{content:"\ec4e"}
8035
- .brz-ed .nc-glyph-corner-left-round:before{content:"\ec4f"}
8036
- .brz-ed .nc-glyph-corner-left:before{content:"\ec50"}
8037
- .brz-ed .nc-glyph-corner-right-down:before{content:"\ec51"}
8038
- .brz-ed .nc-glyph-corner-right-round:before{content:"\ec52"}
8039
- .brz-ed .nc-glyph-corner-right:before{content:"\ec53"}
8040
- .brz-ed .nc-glyph-corner-up-left:before{content:"\ec54"}
8041
- .brz-ed .nc-glyph-corner-up-right:before{content:"\ec55"}
8042
- .brz-ed .nc-glyph-corner-up-round:before{content:"\ec56"}
8043
- .brz-ed .nc-glyph-corner-up:before{content:"\ec57"}
8044
- .brz-ed .nc-glyph-corset:before{content:"\ec58"}
8045
- .brz-ed .nc-glyph-countdown-34:before{content:"\ec59"}
8046
- .brz-ed .nc-glyph-countdown-35:before{content:"\ec5a"}
8047
- .brz-ed .nc-glyph-couple-gay:before{content:"\ec5b"}
8048
- .brz-ed .nc-glyph-couple-lesbian:before{content:"\ec5c"}
8049
- .brz-ed .nc-glyph-coupon:before{content:"\ec5d"}
8050
- .brz-ed .nc-glyph-course:before{content:"\ec5e"}
8051
- .brz-ed .nc-glyph-cow:before{content:"\ec5f"}
8052
- .brz-ed .nc-glyph-crab:before{content:"\ec60"}
8053
- .brz-ed .nc-glyph-cradle:before{content:"\ec61"}
8054
- .brz-ed .nc-glyph-credit-card-in:before{content:"\ec62"}
8055
- .brz-ed .nc-glyph-credit-card:before{content:"\ec63"}
8056
- .brz-ed .nc-glyph-credit-locked:before{content:"\ec64"}
8057
- .brz-ed .nc-glyph-crepe:before{content:"\ec65"}
8058
- .brz-ed .nc-glyph-cricket:before{content:"\ec66"}
8059
- .brz-ed .nc-glyph-croissant:before{content:"\ec67"}
8060
- .brz-ed .nc-glyph-crop:before{content:"\ec68"}
8061
- .brz-ed .nc-glyph-cross-down:before{content:"\ec69"}
8062
- .brz-ed .nc-glyph-cross-horizontal:before{content:"\ec6a"}
8063
- .brz-ed .nc-glyph-cross-left:before{content:"\ec6b"}
8064
- .brz-ed .nc-glyph-cross-right:before{content:"\ec6c"}
8065
- .brz-ed .nc-glyph-cross-up:before{content:"\ec6d"}
8066
- .brz-ed .nc-glyph-cross-vertical:before{content:"\ec6e"}
8067
- .brz-ed .nc-glyph-cross:before{content:"\ec6f"}
8068
- .brz-ed .nc-glyph-crosshair:before{content:"\ec70"}
8069
- .brz-ed .nc-glyph-crown:before{content:"\ec71"}
8070
- .brz-ed .nc-glyph-crumpet:before{content:"\ec72"}
8071
- .brz-ed .nc-glyph-cry-15:before{content:"\ec73"}
8072
- .brz-ed .nc-glyph-cry-57:before{content:"\ec74"}
8073
- .brz-ed .nc-glyph-css3:before{content:"\ec75"}
8074
- .brz-ed .nc-glyph-cupcake:before{content:"\ec76"}
8075
- .brz-ed .nc-glyph-currency-dollar:before{content:"\ec77"}
8076
- .brz-ed .nc-glyph-currency-euro:before{content:"\ec78"}
8077
- .brz-ed .nc-glyph-currency-exchange:before{content:"\ec79"}
8078
- .brz-ed .nc-glyph-currency-pound:before{content:"\ec7a"}
8079
- .brz-ed .nc-glyph-currency-yen:before{content:"\ec7b"}
8080
- .brz-ed .nc-glyph-cursor-48:before{content:"\ec7c"}
8081
- .brz-ed .nc-glyph-cursor-49:before{content:"\ec7d"}
8082
- .brz-ed .nc-glyph-cursor-add:before{content:"\ec7e"}
8083
- .brz-ed .nc-glyph-cursor-grab:before{content:"\ec7f"}
8084
- .brz-ed .nc-glyph-cursor-load:before{content:"\ec80"}
8085
- .brz-ed .nc-glyph-cursor-menu:before{content:"\ec81"}
8086
- .brz-ed .nc-glyph-cursor-not-allowed:before{content:"\ec82"}
8087
- .brz-ed .nc-glyph-cursor-pointer:before{content:"\ec83"}
8088
- .brz-ed .nc-glyph-cursor-text:before{content:"\ec84"}
8089
- .brz-ed .nc-glyph-curtain:before{content:"\ec85"}
8090
- .brz-ed .nc-glyph-curve-circuit:before{content:"\ec86"}
8091
- .brz-ed .nc-glyph-curve-directions:before{content:"\ec87"}
8092
- .brz-ed .nc-glyph-curve-split:before{content:"\ec88"}
8093
- .brz-ed .nc-glyph-curved-next:before{content:"\ec89"}
8094
- .brz-ed .nc-glyph-curved-previous:before{content:"\ec8a"}
8095
- .brz-ed .nc-glyph-customer-support:before{content:"\ec8b"}
8096
- .brz-ed .nc-glyph-cut:before{content:"\ec8c"}
8097
- .brz-ed .nc-glyph-cute:before{content:"\ec8d"}
8098
- .brz-ed .nc-glyph-cutlery-75:before{content:"\ec8e"}
8099
- .brz-ed .nc-glyph-cutlery-76:before{content:"\ec8f"}
8100
- .brz-ed .nc-glyph-cutlery-77:before{content:"\ec90"}
8101
- .brz-ed .nc-glyph-cutlery:before{content:"\ec91"}
8102
- .brz-ed .nc-glyph-cyclist:before{content:"\ec92"}
8103
- .brz-ed .nc-glyph-dart:before{content:"\ec93"}
8104
- .brz-ed .nc-glyph-dashboard-29:before{content:"\ec94"}
8105
- .brz-ed .nc-glyph-dashboard-30:before{content:"\ec95"}
8106
- .brz-ed .nc-glyph-dashboard-half:before{content:"\ec96"}
8107
- .brz-ed .nc-glyph-dashboard-level:before{content:"\ec97"}
8108
- .brz-ed .nc-glyph-database:before{content:"\ec98"}
8109
- .brz-ed .nc-glyph-dead-hand:before{content:"\ec99"}
8110
- .brz-ed .nc-glyph-decoration:before{content:"\ec9a"}
8111
- .brz-ed .nc-glyph-deer:before{content:"\ec9b"}
8112
- .brz-ed .nc-glyph-delete-28:before{content:"\ec9c"}
8113
- .brz-ed .nc-glyph-delete-30:before{content:"\ec9d"}
8114
- .brz-ed .nc-glyph-delete-49:before{content:"\ec9e"}
8115
- .brz-ed .nc-glyph-delete-50:before{content:"\ec9f"}
8116
- .brz-ed .nc-glyph-delivery-2:before{content:"\eca0"}
8117
- .brz-ed .nc-glyph-delivery-3:before{content:"\eca1"}
8118
- .brz-ed .nc-glyph-delivery-fast:before{content:"\eca2"}
8119
- .brz-ed .nc-glyph-delivery-time:before{content:"\eca3"}
8120
- .brz-ed .nc-glyph-delivery-track:before{content:"\eca4"}
8121
- .brz-ed .nc-glyph-delivery:before{content:"\eca5"}
8122
- .brz-ed .nc-glyph-design-system:before{content:"\eca6"}
8123
- .brz-ed .nc-glyph-design:before{content:"\eca7"}
8124
- .brz-ed .nc-glyph-desk-drawer:before{content:"\eca8"}
8125
- .brz-ed .nc-glyph-desk:before{content:"\eca9"}
8126
- .brz-ed .nc-glyph-desktop-screen:before{content:"\ecaa"}
8127
- .brz-ed .nc-glyph-desktop:before{content:"\ecab"}
8128
- .brz-ed .nc-glyph-detox:before{content:"\ecac"}
8129
- .brz-ed .nc-glyph-dev:before{content:"\ecad"}
8130
- .brz-ed .nc-glyph-device-connection:before{content:"\ecae"}
8131
- .brz-ed .nc-glyph-devil:before{content:"\ecaf"}
8132
- .brz-ed .nc-glyph-diag-bottom-left:before{content:"\ecb0"}
8133
- .brz-ed .nc-glyph-diag-bottom-right:before{content:"\ecb1"}
8134
- .brz-ed .nc-glyph-diag-top-left:before{content:"\ecb2"}
8135
- .brz-ed .nc-glyph-diag-top-right:before{content:"\ecb3"}
8136
- .brz-ed .nc-glyph-diamond:before{content:"\ecb4"}
8137
- .brz-ed .nc-glyph-dice:before{content:"\ecb5"}
8138
- .brz-ed .nc-glyph-diet-plan:before{content:"\ecb6"}
8139
- .brz-ed .nc-glyph-diet:before{content:"\ecb7"}
8140
- .brz-ed .nc-glyph-direction-53:before{content:"\ecb8"}
8141
- .brz-ed .nc-glyph-direction-56:before{content:"\ecb9"}
8142
- .brz-ed .nc-glyph-direction:before{content:"\ecba"}
8143
- .brz-ed .nc-glyph-directions:before{content:"\ecbb"}
8144
- .brz-ed .nc-glyph-disabled:before{content:"\ecbc"}
8145
- .brz-ed .nc-glyph-discord:before{content:"\ecbd"}
8146
- .brz-ed .nc-glyph-discount-2:before{content:"\ecbe"}
8147
- .brz-ed .nc-glyph-discount:before{content:"\ecbf"}
8148
- .brz-ed .nc-glyph-disgusted:before{content:"\ecc0"}
8149
- .brz-ed .nc-glyph-dish:before{content:"\ecc1"}
8150
- .brz-ed .nc-glyph-dishwasher:before{content:"\ecc2"}
8151
- .brz-ed .nc-glyph-disk-2:before{content:"\ecc3"}
8152
- .brz-ed .nc-glyph-disk-reader:before{content:"\ecc4"}
8153
- .brz-ed .nc-glyph-disk:before{content:"\ecc5"}
8154
- .brz-ed .nc-glyph-disperse:before{content:"\ecc6"}
8155
- .brz-ed .nc-glyph-distribute-horizontal:before{content:"\ecc7"}
8156
- .brz-ed .nc-glyph-distribute-vertical:before{content:"\ecc8"}
8157
- .brz-ed .nc-glyph-divider:before{content:"\ecc9"}
8158
- .brz-ed .nc-glyph-dna-27:before{content:"\ecca"}
8159
- .brz-ed .nc-glyph-dna-38:before{content:"\eccb"}
8160
- .brz-ed .nc-glyph-dock-bottom:before{content:"\eccc"}
8161
- .brz-ed .nc-glyph-dock-left:before{content:"\eccd"}
8162
- .brz-ed .nc-glyph-dock-right:before{content:"\ecce"}
8163
- .brz-ed .nc-glyph-dock-top:before{content:"\eccf"}
8164
- .brz-ed .nc-glyph-dock:before{content:"\ecd0"}
8165
- .brz-ed .nc-glyph-doctor:before{content:"\ecd1"}
8166
- .brz-ed .nc-glyph-dog-house:before{content:"\ecd2"}
8167
- .brz-ed .nc-glyph-dog:before{content:"\ecd3"}
8168
- .brz-ed .nc-glyph-donut:before{content:"\ecd4"}
8169
- .brz-ed .nc-glyph-door:before{content:"\ecd5"}
8170
- .brz-ed .nc-glyph-dots-05:before{content:"\ecd6"}
8171
- .brz-ed .nc-glyph-dots-06:before{content:"\ecd7"}
8172
- .brz-ed .nc-glyph-dots-07:before{content:"\ecd8"}
8173
- .brz-ed .nc-glyph-dots-download:before{content:"\ecd9"}
8174
- .brz-ed .nc-glyph-dots-upload:before{content:"\ecda"}
8175
- .brz-ed .nc-glyph-dots:before{content:"\ecdb"}
8176
- .brz-ed .nc-glyph-double-left:before{content:"\ecdc"}
8177
- .brz-ed .nc-glyph-double-right:before{content:"\ecdd"}
8178
- .brz-ed .nc-glyph-double-tap:before{content:"\ecde"}
8179
- .brz-ed .nc-glyph-download-2:before{content:"\ecdf"}
8180
- .brz-ed .nc-glyph-download-3:before{content:"\ece0"}
8181
- .brz-ed .nc-glyph-download:before{content:"\ece1"}
8182
- .brz-ed .nc-glyph-drag-21:before{content:"\ece2"}
8183
- .brz-ed .nc-glyph-drag-31:before{content:"\ece3"}
8184
- .brz-ed .nc-glyph-drag-down:before{content:"\ece4"}
8185
- .brz-ed .nc-glyph-drag-left:before{content:"\ece5"}
8186
- .brz-ed .nc-glyph-drag-right:before{content:"\ece6"}
8187
- .brz-ed .nc-glyph-drag-up:before{content:"\ece7"}
8188
- .brz-ed .nc-glyph-drag:before{content:"\ece8"}
8189
- .brz-ed .nc-glyph-drawer-2:before{content:"\ece9"}
8190
- .brz-ed .nc-glyph-drawer:before{content:"\ecea"}
8191
- .brz-ed .nc-glyph-dress-man:before{content:"\eceb"}
8192
- .brz-ed .nc-glyph-dress-woman:before{content:"\ecec"}
8193
- .brz-ed .nc-glyph-drink-2:before{content:"\ecee"}
8194
- .brz-ed .nc-glyph-drink-list:before{content:"\eced"}
8195
- .brz-ed .nc-glyph-drink:before{content:"\ecef"}
8196
- .brz-ed .nc-glyph-drop-15:before{content:"\ecf0"}
8197
- .brz-ed .nc-glyph-drop:before{content:"\ecf1"}
8198
- .brz-ed .nc-glyph-drops:before{content:"\ecf3"}
8199
- .brz-ed .nc-glyph-dumbbells:before{content:"\ecf2"}
8200
- .brz-ed .nc-glyph-eclipse:before{content:"\ecf4"}
8201
- .brz-ed .nc-glyph-edit-2:before{content:"\ecf5"}
8202
- .brz-ed .nc-glyph-edit-71:before{content:"\ecf6"}
8203
- .brz-ed .nc-glyph-edit-72:before{content:"\ecf7"}
8204
- .brz-ed .nc-glyph-edit-73:before{content:"\ecf8"}
8205
- .brz-ed .nc-glyph-edit-74:before{content:"\ecf9"}
8206
- .brz-ed .nc-glyph-edit-75:before{content:"\ecfa"}
8207
- .brz-ed .nc-glyph-edit-76:before{content:"\ecfb"}
8208
- .brz-ed .nc-glyph-edit-77:before{content:"\ecfc"}
8209
- .brz-ed .nc-glyph-edit-78:before{content:"\ecfd"}
8210
- .brz-ed .nc-glyph-edit-color:before{content:"\ecfe"}
8211
- .brz-ed .nc-glyph-edit-contrast-42:before{content:"\ecff"}
8212
- .brz-ed .nc-glyph-edit-contrast-43:before{content:"\ed00"}
8213
- .brz-ed .nc-glyph-edit-saturation:before{content:"\ed01"}
8214
- .brz-ed .nc-glyph-edit:before{content:"\ed02"}
8215
- .brz-ed .nc-glyph-egg-38:before{content:"\ed03"}
8216
- .brz-ed .nc-glyph-egg-39:before{content:"\ed04"}
8217
- .brz-ed .nc-glyph-egg:before{content:"\ed05"}
8218
- .brz-ed .nc-glyph-eject:before{content:"\ed06"}
8219
- .brz-ed .nc-glyph-email-83:before{content:"\ed07"}
8220
- .brz-ed .nc-glyph-email-84:before{content:"\ed08"}
8221
- .brz-ed .nc-glyph-email-85:before{content:"\ed09"}
8222
- .brz-ed .nc-glyph-energy-drink-2:before{content:"\ed0a"}
8223
- .brz-ed .nc-glyph-energy-drink:before{content:"\ed0b"}
8224
- .brz-ed .nc-glyph-energy-supplement:before{content:"\ed0c"}
8225
- .brz-ed .nc-glyph-energy:before{content:"\ed0d"}
8226
- .brz-ed .nc-glyph-engine-start:before{content:"\ed0e"}
8227
- .brz-ed .nc-glyph-engine:before{content:"\ed0f"}
8228
- .brz-ed .nc-glyph-enlarge-45:before{content:"\ed10"}
8229
- .brz-ed .nc-glyph-enlarge-46:before{content:"\ed11"}
8230
- .brz-ed .nc-glyph-enlarge-57:before{content:"\ed12"}
8231
- .brz-ed .nc-glyph-enlarge-58:before{content:"\ed13"}
8232
- .brz-ed .nc-glyph-enlarge-59:before{content:"\ed14"}
8233
- .brz-ed .nc-glyph-enlarge-circle:before{content:"\ed15"}
8234
- .brz-ed .nc-glyph-enlarge-diagonal-43:before{content:"\ed16"}
8235
- .brz-ed .nc-glyph-enlarge-diagonal-44:before{content:"\ed17"}
8236
- .brz-ed .nc-glyph-enlarge-horizontal:before{content:"\ed18"}
8237
- .brz-ed .nc-glyph-enlarge-vertical:before{content:"\ed19"}
8238
- .brz-ed .nc-glyph-eraser-32:before{content:"\ed1a"}
8239
- .brz-ed .nc-glyph-eraser-33:before{content:"\ed1b"}
8240
- .brz-ed .nc-glyph-eraser-46:before{content:"\ed1c"}
8241
- .brz-ed .nc-glyph-event-confirm:before{content:"\ed1d"}
8242
- .brz-ed .nc-glyph-event-create:before{content:"\ed1e"}
8243
- .brz-ed .nc-glyph-exchange:before{content:"\ed1f"}
8244
- .brz-ed .nc-glyph-exclamation:before{content:"\ed20"}
8245
- .brz-ed .nc-glyph-explore-2:before{content:"\ed21"}
8246
- .brz-ed .nc-glyph-explore-user:before{content:"\ed22"}
8247
- .brz-ed .nc-glyph-explore:before{content:"\ed23"}
8248
- .brz-ed .nc-glyph-export:before{content:"\ed24"}
8249
- .brz-ed .nc-glyph-eye-17:before{content:"\ed25"}
8250
- .brz-ed .nc-glyph-eye-19:before{content:"\ed26"}
8251
- .brz-ed .nc-glyph-eye-ban-18:before{content:"\ed27"}
8252
- .brz-ed .nc-glyph-eye-ban-20:before{content:"\ed28"}
8253
- .brz-ed .nc-glyph-factory:before{content:"\ed29"}
8254
- .brz-ed .nc-glyph-fahrenheit:before{content:"\ed2a"}
8255
- .brz-ed .nc-glyph-family:before{content:"\ed2b"}
8256
- .brz-ed .nc-glyph-fat-add:before{content:"\ed2c"}
8257
- .brz-ed .nc-glyph-fat-delete:before{content:"\ed2d"}
8258
- .brz-ed .nc-glyph-fat-remove:before{content:"\ed2e"}
8259
- .brz-ed .nc-glyph-fav-remove:before{content:"\ed2f"}
8260
- .brz-ed .nc-glyph-favourite-28:before{content:"\ed30"}
8261
- .brz-ed .nc-glyph-favourite-31:before{content:"\ed31"}
8262
- .brz-ed .nc-glyph-favourite-add-29:before{content:"\ed32"}
8263
- .brz-ed .nc-glyph-favourite-add-32:before{content:"\ed33"}
8264
- .brz-ed .nc-glyph-favourite-remove-30:before{content:"\ed34"}
8265
- .brz-ed .nc-glyph-favourite-remove-33:before{content:"\ed35"}
8266
- .brz-ed .nc-glyph-fencing:before{content:"\ed36"}
8267
- .brz-ed .nc-glyph-file-add:before{content:"\ed37"}
8268
- .brz-ed .nc-glyph-file-delete:before{content:"\ed38"}
8269
- .brz-ed .nc-glyph-file-download-87:before{content:"\ed39"}
8270
- .brz-ed .nc-glyph-file-download-89:before{content:"\ed3a"}
8271
- .brz-ed .nc-glyph-file-download-94:before{content:"\ed3b"}
8272
- .brz-ed .nc-glyph-file-upload-86:before{content:"\ed3c"}
8273
- .brz-ed .nc-glyph-file-upload-88:before{content:"\ed3d"}
8274
- .brz-ed .nc-glyph-file-upload-93:before{content:"\ed3e"}
8275
- .brz-ed .nc-glyph-filter-check:before{content:"\ed3f"}
8276
- .brz-ed .nc-glyph-filter-organization:before{content:"\ed40"}
8277
- .brz-ed .nc-glyph-filter-remove:before{content:"\ed41"}
8278
- .brz-ed .nc-glyph-filter:before{content:"\ed42"}
8279
- .brz-ed .nc-glyph-fire:before{content:"\ed43"}
8280
- .brz-ed .nc-glyph-firewall:before{content:"\ed44"}
8281
- .brz-ed .nc-glyph-fish:before{content:"\ed45"}
8282
- .brz-ed .nc-glyph-fishbone:before{content:"\ed46"}
8283
- .brz-ed .nc-glyph-fishing:before{content:"\ed47"}
8284
- .brz-ed .nc-glyph-fist:before{content:"\ed48"}
8285
- .brz-ed .nc-glyph-fit-horizontal:before{content:"\ed49"}
8286
- .brz-ed .nc-glyph-fit-vertical:before{content:"\ed4a"}
8287
- .brz-ed .nc-glyph-flag-complex:before{content:"\ed4b"}
8288
- .brz-ed .nc-glyph-flag-diagonal-33:before{content:"\ed4c"}
8289
- .brz-ed .nc-glyph-flag-diagonal-34:before{content:"\ed4d"}
8290
- .brz-ed .nc-glyph-flag-finish:before{content:"\ed4e"}
8291
- .brz-ed .nc-glyph-flag-points-31:before{content:"\ed4f"}
8292
- .brz-ed .nc-glyph-flag-points-32:before{content:"\ed50"}
8293
- .brz-ed .nc-glyph-flag-simple:before{content:"\ed51"}
8294
- .brz-ed .nc-glyph-flag-triangle:before{content:"\ed52"}
8295
- .brz-ed .nc-glyph-flag:before{content:"\ed53"}
8296
- .brz-ed .nc-glyph-flame:before{content:"\ed54"}
8297
- .brz-ed .nc-glyph-flash-21:before{content:"\ed55"}
8298
- .brz-ed .nc-glyph-flash-24:before{content:"\ed56"}
8299
- .brz-ed .nc-glyph-flash-29:before{content:"\ed57"}
8300
- .brz-ed .nc-glyph-flash-auto-22:before{content:"\ed58"}
8301
- .brz-ed .nc-glyph-flash-auto-25:before{content:"\ed59"}
8302
- .brz-ed .nc-glyph-flash-off-23:before{content:"\ed5a"}
8303
- .brz-ed .nc-glyph-flash-off-26:before{content:"\ed5b"}
8304
- .brz-ed .nc-glyph-flask-2:before{content:"\ed5c"}
8305
- .brz-ed .nc-glyph-flask:before{content:"\ed5d"}
8306
- .brz-ed .nc-glyph-flick-down:before{content:"\ed5e"}
8307
- .brz-ed .nc-glyph-flick-left:before{content:"\ed5f"}
8308
- .brz-ed .nc-glyph-flick-right:before{content:"\ed60"}
8309
- .brz-ed .nc-glyph-flick-up:before{content:"\ed61"}
8310
- .brz-ed .nc-glyph-flip-horizontal:before{content:"\ed63"}
8311
- .brz-ed .nc-glyph-flip-vertical:before{content:"\ed62"}
8312
- .brz-ed .nc-glyph-flip:before{content:"\ed64"}
8313
- .brz-ed .nc-glyph-flower-05:before{content:"\ed66"}
8314
- .brz-ed .nc-glyph-flower-06:before{content:"\ed65"}
8315
- .brz-ed .nc-glyph-flower-07:before{content:"\ed67"}
8316
- .brz-ed .nc-glyph-focus-32:before{content:"\ed68"}
8317
- .brz-ed .nc-glyph-focus-38:before{content:"\ed69"}
8318
- .brz-ed .nc-glyph-focus-40:before{content:"\ed6a"}
8319
- .brz-ed .nc-glyph-focus-circle:before{content:"\ed6b"}
8320
- .brz-ed .nc-glyph-focus:before{content:"\ed6c"}
8321
- .brz-ed .nc-glyph-fog:before{content:"\ed6d"}
8322
- .brz-ed .nc-glyph-folder-13:before{content:"\ed6e"}
8323
- .brz-ed .nc-glyph-folder-14:before{content:"\ed6f"}
8324
- .brz-ed .nc-glyph-folder-15:before{content:"\ed70"}
8325
- .brz-ed .nc-glyph-folder-16:before{content:"\ed73"}
8326
- .brz-ed .nc-glyph-folder-17:before{content:"\ed71"}
8327
- .brz-ed .nc-glyph-folder-18:before{content:"\ed72"}
8328
- .brz-ed .nc-glyph-folder-19:before{content:"\ed74"}
8329
- .brz-ed .nc-glyph-folder-add:before{content:"\ed75"}
8330
- .brz-ed .nc-glyph-folder-audio:before{content:"\ed76"}
8331
- .brz-ed .nc-glyph-folder-bookmark:before{content:"\ed77"}
8332
- .brz-ed .nc-glyph-folder-chart-bar:before{content:"\ed78"}
8333
- .brz-ed .nc-glyph-folder-chart-pie:before{content:"\ed79"}
8334
- .brz-ed .nc-glyph-folder-check:before{content:"\ed7a"}
8335
- .brz-ed .nc-glyph-folder-cloud:before{content:"\ed7b"}
8336
- .brz-ed .nc-glyph-folder-dev:before{content:"\ed7c"}
8337
- .brz-ed .nc-glyph-folder-download:before{content:"\ed7d"}
8338
- .brz-ed .nc-glyph-folder-edit:before{content:"\ed7e"}
8339
- .brz-ed .nc-glyph-folder-exclamation:before{content:"\ed7f"}
8340
- .brz-ed .nc-glyph-folder-gallery:before{content:"\ed80"}
8341
- .brz-ed .nc-glyph-folder-heart:before{content:"\ed81"}
8342
- .brz-ed .nc-glyph-folder-image:before{content:"\ed82"}
8343
- .brz-ed .nc-glyph-folder-info:before{content:"\ed83"}
8344
- .brz-ed .nc-glyph-folder-link:before{content:"\ed84"}
8345
- .brz-ed .nc-glyph-folder-locked:before{content:"\ed85"}
8346
- .brz-ed .nc-glyph-folder-money:before{content:"\ed86"}
8347
- .brz-ed .nc-glyph-folder-music:before{content:"\ed87"}
8348
- .brz-ed .nc-glyph-folder-no-access:before{content:"\ed88"}
8349
- .brz-ed .nc-glyph-folder-play:before{content:"\ed89"}
8350
- .brz-ed .nc-glyph-folder-question:before{content:"\ed8a"}
8351
- .brz-ed .nc-glyph-folder-refresh:before{content:"\ed8b"}
8352
- .brz-ed .nc-glyph-folder-remove:before{content:"\ed8c"}
8353
- .brz-ed .nc-glyph-folder-search:before{content:"\ed8d"}
8354
- .brz-ed .nc-glyph-folder-settings-81:before{content:"\ed8e"}
8355
- .brz-ed .nc-glyph-folder-settings-97:before{content:"\ed8f"}
8356
- .brz-ed .nc-glyph-folder-shared:before{content:"\ed90"}
8357
- .brz-ed .nc-glyph-folder-star:before{content:"\ed91"}
8358
- .brz-ed .nc-glyph-folder-time:before{content:"\ed92"}
8359
- .brz-ed .nc-glyph-folder-upload:before{content:"\ed93"}
8360
- .brz-ed .nc-glyph-folder-user:before{content:"\ed94"}
8361
- .brz-ed .nc-glyph-folder-vector:before{content:"\ed95"}
8362
- .brz-ed .nc-glyph-food-dog:before{content:"\ed96"}
8363
- .brz-ed .nc-glyph-food-scale:before{content:"\ed97"}
8364
- .brz-ed .nc-glyph-food:before{content:"\ed98"}
8365
- .brz-ed .nc-glyph-football-headguard:before{content:"\ed99"}
8366
- .brz-ed .nc-glyph-forecast:before{content:"\ed9a"}
8367
- .brz-ed .nc-glyph-forest:before{content:"\ed9b"}
8368
- .brz-ed .nc-glyph-fork-round:before{content:"\ed9c"}
8369
- .brz-ed .nc-glyph-fork:before{content:"\ed9d"}
8370
- .brz-ed .nc-glyph-form:before{content:"\ed9e"}
8371
- .brz-ed .nc-glyph-format-left:before{content:"\ed9f"}
8372
- .brz-ed .nc-glyph-format-right:before{content:"\eda0"}
8373
- .brz-ed .nc-glyph-forward:before{content:"\eda1"}
8374
- .brz-ed .nc-glyph-frame-12:before{content:"\eda2"}
8375
- .brz-ed .nc-glyph-frame-41:before{content:"\eda3"}
8376
- .brz-ed .nc-glyph-frame:before{content:"\eda4"}
8377
- .brz-ed .nc-glyph-frankenstein:before{content:"\eda5"}
8378
- .brz-ed .nc-glyph-fridge:before{content:"\eda6"}
8379
- .brz-ed .nc-glyph-fuel-2:before{content:"\eda7"}
8380
- .brz-ed .nc-glyph-fuel-electric:before{content:"\eda8"}
8381
- .brz-ed .nc-glyph-fuel:before{content:"\eda9"}
8382
- .brz-ed .nc-glyph-full-screen:before{content:"\edaa"}
8383
- .brz-ed .nc-glyph-fullscreen-70:before{content:"\edab"}
8384
- .brz-ed .nc-glyph-fullscreen-71:before{content:"\edac"}
8385
- .brz-ed .nc-glyph-fullscreen-76:before{content:"\edad"}
8386
- .brz-ed .nc-glyph-fullscreen-77:before{content:"\edae"}
8387
- .brz-ed .nc-glyph-fullscreen-double-74:before{content:"\edaf"}
8388
- .brz-ed .nc-glyph-fullscreen-double-75:before{content:"\edb0"}
8389
- .brz-ed .nc-glyph-fullscreen-split-72:before{content:"\edb1"}
8390
- .brz-ed .nc-glyph-fullscreen-split-73:before{content:"\edb2"}
8391
- .brz-ed .nc-glyph-fullsize:before{content:"\edb3"}
8392
- .brz-ed .nc-glyph-funnel-39:before{content:"\edb4"}
8393
- .brz-ed .nc-glyph-funnel-40:before{content:"\edb5"}
8394
- .brz-ed .nc-glyph-funnel-41:before{content:"\edb6"}
8395
- .brz-ed .nc-glyph-gallery:before{content:"\edb7"}
8396
- .brz-ed .nc-glyph-gantt:before{content:"\edb8"}
8397
- .brz-ed .nc-glyph-garlic:before{content:"\edb9"}
8398
- .brz-ed .nc-glyph-ghost-2:before{content:"\edba"}
8399
- .brz-ed .nc-glyph-ghost:before{content:"\edbb"}
8400
- .brz-ed .nc-glyph-gift-2:before{content:"\edbc"}
8401
- .brz-ed .nc-glyph-gift-exchange:before{content:"\edbd"}
8402
- .brz-ed .nc-glyph-gift:before{content:"\edbe"}
8403
- .brz-ed .nc-glyph-git-commit:before{content:"\edbf"}
8404
- .brz-ed .nc-glyph-glass-water:before{content:"\edc0"}
8405
- .brz-ed .nc-glyph-glass:before{content:"\edc1"}
8406
- .brz-ed .nc-glyph-glasses-2:before{content:"\edc2"}
8407
- .brz-ed .nc-glyph-glasses:before{content:"\edc3"}
8408
- .brz-ed .nc-glyph-globe-2:before{content:"\edc4"}
8409
- .brz-ed .nc-glyph-globe:before{content:"\edc5"}
8410
- .brz-ed .nc-glyph-glove:before{content:"\edc6"}
8411
- .brz-ed .nc-glyph-gloves:before{content:"\edc7"}
8412
- .brz-ed .nc-glyph-goal-64:before{content:"\edc8"}
8413
- .brz-ed .nc-glyph-goal-65:before{content:"\edc9"}
8414
- .brz-ed .nc-glyph-gold:before{content:"\edca"}
8415
- .brz-ed .nc-glyph-golf:before{content:"\edcb"}
8416
- .brz-ed .nc-glyph-gps:before{content:"\edcc"}
8417
- .brz-ed .nc-glyph-grab:before{content:"\edcd"}
8418
- .brz-ed .nc-glyph-gradient:before{content:"\edce"}
8419
- .brz-ed .nc-glyph-grammar-check:before{content:"\edcf"}
8420
- .brz-ed .nc-glyph-grape:before{content:"\edd0"}
8421
- .brz-ed .nc-glyph-grave:before{content:"\edd1"}
8422
- .brz-ed .nc-glyph-grid-45:before{content:"\edd2"}
8423
- .brz-ed .nc-glyph-grid-46:before{content:"\edd3"}
8424
- .brz-ed .nc-glyph-grid-48:before{content:"\edd4"}
8425
- .brz-ed .nc-glyph-grid-49:before{content:"\edd5"}
8426
- .brz-ed .nc-glyph-grid-50:before{content:"\edd6"}
8427
- .brz-ed .nc-glyph-grid-square:before{content:"\edd7"}
8428
- .brz-ed .nc-glyph-grid-system:before{content:"\edd8"}
8429
- .brz-ed .nc-glyph-grid:before{content:"\edd9"}
8430
- .brz-ed .nc-glyph-group:before{content:"\edda"}
8431
- .brz-ed .nc-glyph-guitar:before{content:"\eddb"}
8432
- .brz-ed .nc-glyph-hammer:before{content:"\eddc"}
8433
- .brz-ed .nc-glyph-hand-card:before{content:"\eddd"}
8434
- .brz-ed .nc-glyph-handout:before{content:"\edde"}
8435
- .brz-ed .nc-glyph-handshake:before{content:"\eddf"}
8436
- .brz-ed .nc-glyph-hanger-clothes:before{content:"\ede0"}
8437
- .brz-ed .nc-glyph-hanger:before{content:"\ede1"}
8438
- .brz-ed .nc-glyph-hannibal:before{content:"\ede2"}
8439
- .brz-ed .nc-glyph-happy-sun:before{content:"\ede3"}
8440
- .brz-ed .nc-glyph-hat-2:before{content:"\ede4"}
8441
- .brz-ed .nc-glyph-hat-3:before{content:"\ede5"}
8442
- .brz-ed .nc-glyph-hat-top:before{content:"\ede6"}
8443
- .brz-ed .nc-glyph-hat:before{content:"\ede7"}
8444
- .brz-ed .nc-glyph-hazelnut:before{content:"\ede8"}
8445
- .brz-ed .nc-glyph-hdmi:before{content:"\ede9"}
8446
- .brz-ed .nc-glyph-headphone:before{content:"\edea"}
8447
- .brz-ed .nc-glyph-headphones-2:before{content:"\edeb"}
8448
- .brz-ed .nc-glyph-headphones-mic:before{content:"\edec"}
8449
- .brz-ed .nc-glyph-headphones:before{content:"\eded"}
8450
- .brz-ed .nc-glyph-headset:before{content:"\edee"}
8451
- .brz-ed .nc-glyph-heart-2:before{content:"\edef"}
8452
- .brz-ed .nc-glyph-heart-add:before{content:"\edf0"}
8453
- .brz-ed .nc-glyph-heart-remove:before{content:"\edf1"}
8454
- .brz-ed .nc-glyph-heart:before{content:"\edf2"}
8455
- .brz-ed .nc-glyph-heartbeat:before{content:"\edf3"}
8456
- .brz-ed .nc-glyph-heater:before{content:"\edf4"}
8457
- .brz-ed .nc-glyph-height:before{content:"\edf5"}
8458
- .brz-ed .nc-glyph-helicopter:before{content:"\edf6"}
8459
- .brz-ed .nc-glyph-helmet-2:before{content:"\edf7"}
8460
- .brz-ed .nc-glyph-helmet:before{content:"\edf8"}
8461
- .brz-ed .nc-glyph-hierarchy-53:before{content:"\edf9"}
8462
- .brz-ed .nc-glyph-hierarchy-54:before{content:"\edfa"}
8463
- .brz-ed .nc-glyph-hierarchy-55:before{content:"\edfb"}
8464
- .brz-ed .nc-glyph-hierarchy-56:before{content:"\edfc"}
8465
- .brz-ed .nc-glyph-hit-down:before{content:"\edfd"}
8466
- .brz-ed .nc-glyph-hit-left:before{content:"\edfe"}
8467
- .brz-ed .nc-glyph-hit-right:before{content:"\edff"}
8468
- .brz-ed .nc-glyph-hit-up:before{content:"\ee00"}
8469
- .brz-ed .nc-glyph-hob:before{content:"\ee01"}
8470
- .brz-ed .nc-glyph-hockey:before{content:"\ee02"}
8471
- .brz-ed .nc-glyph-hold:before{content:"\ee03"}
8472
- .brz-ed .nc-glyph-home-2:before{content:"\ee04"}
8473
- .brz-ed .nc-glyph-home-51:before{content:"\ee05"}
8474
- .brz-ed .nc-glyph-home-52:before{content:"\ee06"}
8475
- .brz-ed .nc-glyph-home-minimal:before{content:"\ee07"}
8476
- .brz-ed .nc-glyph-home-search:before{content:"\ee08"}
8477
- .brz-ed .nc-glyph-home-simple:before{content:"\ee09"}
8478
- .brz-ed .nc-glyph-home:before{content:"\ee0a"}
8479
- .brz-ed .nc-glyph-honey:before{content:"\ee0b"}
8480
- .brz-ed .nc-glyph-hoodie:before{content:"\ee0c"}
8481
- .brz-ed .nc-glyph-hospital-32:before{content:"\ee0d"}
8482
- .brz-ed .nc-glyph-hospital-33:before{content:"\ee0e"}
8483
- .brz-ed .nc-glyph-hospital-34:before{content:"\ee0f"}
8484
- .brz-ed .nc-glyph-hot-dog:before{content:"\ee10"}
8485
- .brz-ed .nc-glyph-hotel-bell:before{content:"\ee11"}
8486
- .brz-ed .nc-glyph-hotel-symbol:before{content:"\ee12"}
8487
- .brz-ed .nc-glyph-hotel:before{content:"\ee13"}
8488
- .brz-ed .nc-glyph-hourglass:before{content:"\ee14"}
8489
- .brz-ed .nc-glyph-html5:before{content:"\ee15"}
8490
- .brz-ed .nc-glyph-humidity-26:before{content:"\ee16"}
8491
- .brz-ed .nc-glyph-humidity-52:before{content:"\ee17"}
8492
- .brz-ed .nc-glyph-hurricane-44:before{content:"\ee18"}
8493
- .brz-ed .nc-glyph-hurricane-45:before{content:"\ee19"}
8494
- .brz-ed .nc-glyph-hut:before{content:"\ee1a"}
8495
- .brz-ed .nc-glyph-hybrid:before{content:"\ee1b"}
8496
- .brz-ed .nc-glyph-ice-cream-22:before{content:"\ee1c"}
8497
- .brz-ed .nc-glyph-ice-cream-72:before{content:"\ee1d"}
8498
- .brz-ed .nc-glyph-ice-cream:before{content:"\ee1e"}
8499
- .brz-ed .nc-glyph-igloo:before{content:"\ee1f"}
8500
- .brz-ed .nc-glyph-image-01:before{content:"\ee20"}
8501
- .brz-ed .nc-glyph-image-02:before{content:"\ee21"}
8502
- .brz-ed .nc-glyph-image-05:before{content:"\ee22"}
8503
- .brz-ed .nc-glyph-image-2:before{content:"\ee23"}
8504
- .brz-ed .nc-glyph-image-3:before{content:"\ee24"}
8505
- .brz-ed .nc-glyph-image-add:before{content:"\ee25"}
8506
- .brz-ed .nc-glyph-image-delete:before{content:"\ee26"}
8507
- .brz-ed .nc-glyph-image-location:before{content:"\ee27"}
8508
- .brz-ed .nc-glyph-image:before{content:"\ee28"}
8509
- .brz-ed .nc-glyph-infinite:before{content:"\ee29"}
8510
- .brz-ed .nc-glyph-info:before{content:"\ee2a"}
8511
- .brz-ed .nc-glyph-input-12:before{content:"\ee2b"}
8512
- .brz-ed .nc-glyph-input-21:before{content:"\ee2c"}
8513
- .brz-ed .nc-glyph-intestine:before{content:"\ee2d"}
8514
- .brz-ed .nc-glyph-invert:before{content:"\ee2e"}
8515
- .brz-ed .nc-glyph-iron-2:before{content:"\ee2f"}
8516
- .brz-ed .nc-glyph-iron-dont:before{content:"\ee30"}
8517
- .brz-ed .nc-glyph-iron:before{content:"\ee31"}
8518
- .brz-ed .nc-glyph-istanbul:before{content:"\ee32"}
8519
- .brz-ed .nc-glyph-italic:before{content:"\ee33"}
8520
- .brz-ed .nc-glyph-jam:before{content:"\ee34"}
8521
- .brz-ed .nc-glyph-jeans-41:before{content:"\ee35"}
8522
- .brz-ed .nc-glyph-jeans-43:before{content:"\ee36"}
8523
- .brz-ed .nc-glyph-jeans-pocket:before{content:"\ee37"}
8524
- .brz-ed .nc-glyph-jelly:before{content:"\ee38"}
8525
- .brz-ed .nc-glyph-jellyfish:before{content:"\ee39"}
8526
- .brz-ed .nc-glyph-journey-04:before{content:"\ee3a"}
8527
- .brz-ed .nc-glyph-journey-05:before{content:"\ee3b"}
8528
- .brz-ed .nc-glyph-journey-06:before{content:"\ee3c"}
8529
- .brz-ed .nc-glyph-journey-07:before{content:"\ee3d"}
8530
- .brz-ed .nc-glyph-journey-08:before{content:"\ee3e"}
8531
- .brz-ed .nc-glyph-juice:before{content:"\ee3f"}
8532
- .brz-ed .nc-glyph-kettle:before{content:"\ee40"}
8533
- .brz-ed .nc-glyph-kettlebell:before{content:"\ee41"}
8534
- .brz-ed .nc-glyph-key-25:before{content:"\ee42"}
8535
- .brz-ed .nc-glyph-key-26:before{content:"\ee43"}
8536
- .brz-ed .nc-glyph-keyboard-hide:before{content:"\ee44"}
8537
- .brz-ed .nc-glyph-keyboard-mouse:before{content:"\ee45"}
8538
- .brz-ed .nc-glyph-keyboard-wifi:before{content:"\ee46"}
8539
- .brz-ed .nc-glyph-keyboard-wireless:before{content:"\ee47"}
8540
- .brz-ed .nc-glyph-keyboard:before{content:"\ee48"}
8541
- .brz-ed .nc-glyph-kid-2:before{content:"\ee49"}
8542
- .brz-ed .nc-glyph-kid:before{content:"\ee4a"}
8543
- .brz-ed .nc-glyph-kiss:before{content:"\ee4b"}
8544
- .brz-ed .nc-glyph-kitchen-fan:before{content:"\ee4c"}
8545
- .brz-ed .nc-glyph-kitchen:before{content:"\ee4d"}
8546
- .brz-ed .nc-glyph-kiwi:before{content:"\ee4e"}
8547
- .brz-ed .nc-glyph-knife:before{content:"\ee4f"}
8548
- .brz-ed .nc-glyph-knob:before{content:"\ee50"}
8549
- .brz-ed .nc-glyph-l-add:before{content:"\ee51"}
8550
- .brz-ed .nc-glyph-l-check:before{content:"\ee52"}
8551
- .brz-ed .nc-glyph-l-circle:before{content:"\ee53"}
8552
- .brz-ed .nc-glyph-l-circles:before{content:"\ee54"}
8553
- .brz-ed .nc-glyph-l-location:before{content:"\ee55"}
8554
- .brz-ed .nc-glyph-l-remove:before{content:"\ee56"}
8555
- .brz-ed .nc-glyph-l-search:before{content:"\ee57"}
8556
- .brz-ed .nc-glyph-l-security:before{content:"\ee58"}
8557
- .brz-ed .nc-glyph-l-settings:before{content:"\ee59"}
8558
- .brz-ed .nc-glyph-l-sync:before{content:"\ee5a"}
8559
- .brz-ed .nc-glyph-l-system-update:before{content:"\ee5b"}
8560
- .brz-ed .nc-glyph-lab:before{content:"\ee5c"}
8561
- .brz-ed .nc-glyph-lamp-2:before{content:"\ee5d"}
8562
- .brz-ed .nc-glyph-lamp-3:before{content:"\ee5e"}
8563
- .brz-ed .nc-glyph-lamp-floor:before{content:"\ee5f"}
8564
- .brz-ed .nc-glyph-lamp:before{content:"\ee60"}
8565
- .brz-ed .nc-glyph-language:before{content:"\ee61"}
8566
- .brz-ed .nc-glyph-laptop-1:before{content:"\ee62"}
8567
- .brz-ed .nc-glyph-laptop-2:before{content:"\ee63"}
8568
- .brz-ed .nc-glyph-laptop-71:before{content:"\ee64"}
8569
- .brz-ed .nc-glyph-laptop-72:before{content:"\ee65"}
8570
- .brz-ed .nc-glyph-laptop:before{content:"\ee66"}
8571
- .brz-ed .nc-glyph-laugh-17:before{content:"\ee67"}
8572
- .brz-ed .nc-glyph-laugh-35:before{content:"\ee68"}
8573
- .brz-ed .nc-glyph-launch-11:before{content:"\ee69"}
8574
- .brz-ed .nc-glyph-launch-47:before{content:"\ee6a"}
8575
- .brz-ed .nc-glyph-law:before{content:"\ee6b"}
8576
- .brz-ed .nc-glyph-layers-2:before{content:"\ee6c"}
8577
- .brz-ed .nc-glyph-layers-3:before{content:"\ee6d"}
8578
- .brz-ed .nc-glyph-layers:before{content:"\ee6e"}
8579
- .brz-ed .nc-glyph-layout-11:before{content:"\ee6f"}
8580
- .brz-ed .nc-glyph-layout-25:before{content:"\ee70"}
8581
- .brz-ed .nc-glyph-leaf-36:before{content:"\ee71"}
8582
- .brz-ed .nc-glyph-leaf-38:before{content:"\ee72"}
8583
- .brz-ed .nc-glyph-leaf-80:before{content:"\ee73"}
8584
- .brz-ed .nc-glyph-leaf-81:before{content:"\ee74"}
8585
- .brz-ed .nc-glyph-leaf-edit:before{content:"\ee75"}
8586
- .brz-ed .nc-glyph-lemon-slice:before{content:"\ee76"}
8587
- .brz-ed .nc-glyph-lemon:before{content:"\ee77"}
8588
- .brz-ed .nc-glyph-lens-31:before{content:"\ee78"}
8589
- .brz-ed .nc-glyph-lens-56:before{content:"\ee79"}
8590
- .brz-ed .nc-glyph-library:before{content:"\ee7a"}
8591
- .brz-ed .nc-glyph-light-2:before{content:"\ee7b"}
8592
- .brz-ed .nc-glyph-light-3:before{content:"\ee7c"}
8593
- .brz-ed .nc-glyph-light-traffic:before{content:"\ee7d"}
8594
- .brz-ed .nc-glyph-light:before{content:"\ee7e"}
8595
- .brz-ed .nc-glyph-lighter:before{content:"\ee7f"}
8596
- .brz-ed .nc-glyph-lighthouse:before{content:"\ee80"}
8597
- .brz-ed .nc-glyph-like-2:before{content:"\ee81"}
8598
- .brz-ed .nc-glyph-like-no:before{content:"\ee82"}
8599
- .brz-ed .nc-glyph-like:before{content:"\ee83"}
8600
- .brz-ed .nc-glyph-line-height:before{content:"\ee84"}
8601
- .brz-ed .nc-glyph-lines:before{content:"\ee85"}
8602
- .brz-ed .nc-glyph-link-2:before{content:"\ee86"}
8603
- .brz-ed .nc-glyph-link-66:before{content:"\ee87"}
8604
- .brz-ed .nc-glyph-link-67:before{content:"\ee88"}
8605
- .brz-ed .nc-glyph-link-68:before{content:"\ee89"}
8606
- .brz-ed .nc-glyph-link-69:before{content:"\ee8a"}
8607
- .brz-ed .nc-glyph-link-71:before{content:"\ee8b"}
8608
- .brz-ed .nc-glyph-link-72:before{content:"\ee8c"}
8609
- .brz-ed .nc-glyph-link-broken-70:before{content:"\ee8d"}
8610
- .brz-ed .nc-glyph-link-broken-73:before{content:"\ee8e"}
8611
- .brz-ed .nc-glyph-link:before{content:"\ee8f"}
8612
- .brz-ed .nc-glyph-list-bullet:before{content:"\ee90"}
8613
- .brz-ed .nc-glyph-list-numbers:before{content:"\ee91"}
8614
- .brz-ed .nc-glyph-list:before{content:"\ee92"}
8615
- .brz-ed .nc-glyph-lobster:before{content:"\ee93"}
8616
- .brz-ed .nc-glyph-lock-circle-open:before{content:"\ee94"}
8617
- .brz-ed .nc-glyph-lock-circle:before{content:"\ee95"}
8618
- .brz-ed .nc-glyph-lock-landscape:before{content:"\ee96"}
8619
- .brz-ed .nc-glyph-lock-open:before{content:"\ee97"}
8620
- .brz-ed .nc-glyph-lock-portrait:before{content:"\ee98"}
8621
- .brz-ed .nc-glyph-lock:before{content:"\ee99"}
8622
- .brz-ed .nc-glyph-locked:before{content:"\ee9a"}
8623
- .brz-ed .nc-glyph-log-in:before{content:"\ee9b"}
8624
- .brz-ed .nc-glyph-log-out-2:before{content:"\ee9c"}
8625
- .brz-ed .nc-glyph-log-out:before{content:"\ee9d"}
8626
- .brz-ed .nc-glyph-logo-500px:before{content:"\ee9e"}
8627
- .brz-ed .nc-glyph-logo-angellist:before{content:"\ee9f"}
8628
- .brz-ed .nc-glyph-logo-behance:before{content:"\eea0"}
8629
- .brz-ed .nc-glyph-logo-blogger:before{content:"\eea1"}
8630
- .brz-ed .nc-glyph-logo-buffer:before{content:"\eea2"}
8631
- .brz-ed .nc-glyph-logo-buysellads:before{content:"\eea3"}
8632
- .brz-ed .nc-glyph-logo-codepen:before{content:"\eea4"}
8633
- .brz-ed .nc-glyph-logo-creative-market:before{content:"\eea5"}
8634
- .brz-ed .nc-glyph-logo-crunchbase:before{content:"\eea6"}
8635
- .brz-ed .nc-glyph-logo-deviantart:before{content:"\eea7"}
8636
- .brz-ed .nc-glyph-logo-dribbble:before{content:"\eea8"}
8637
- .brz-ed .nc-glyph-logo-dropbox:before{content:"\eea9"}
8638
- .brz-ed .nc-glyph-logo-envato:before{content:"\eeaa"}
8639
- .brz-ed .nc-glyph-logo-evernote:before{content:"\eeab"}
8640
- .brz-ed .nc-glyph-logo-facebook:before{content:"\eeac"}
8641
- .brz-ed .nc-glyph-logo-fb-simple:before{content:"\eead"}
8642
- .brz-ed .nc-glyph-logo-feedly:before{content:"\eeae"}
8643
- .brz-ed .nc-glyph-logo-flickr:before{content:"\eeaf"}
8644
- .brz-ed .nc-glyph-logo-github:before{content:"\eeb0"}
8645
- .brz-ed .nc-glyph-logo-google-plus:before{content:"\eeb1"}
8646
- .brz-ed .nc-glyph-logo-instagram:before{content:"\eeb2"}
8647
- .brz-ed .nc-glyph-logo-lastfm:before{content:"\eeb3"}
8648
- .brz-ed .nc-glyph-logo-linkedin:before{content:"\eeb4"}
8649
- .brz-ed .nc-glyph-logo-medium:before{content:"\eeb5"}
8650
- .brz-ed .nc-glyph-logo-meetup:before{content:"\eeb6"}
8651
- .brz-ed .nc-glyph-logo-messenger:before{content:"\eeb7"}
8652
- .brz-ed .nc-glyph-logo-myspace:before{content:"\eeb8"}
8653
- .brz-ed .nc-glyph-logo-paypal:before{content:"\eeb9"}
8654
- .brz-ed .nc-glyph-logo-pinterest:before{content:"\eeba"}
8655
- .brz-ed .nc-glyph-logo-product-hunt:before{content:"\eebb"}
8656
- .brz-ed .nc-glyph-logo-qq:before{content:"\eebc"}
8657
- .brz-ed .nc-glyph-logo-reddit:before{content:"\eebd"}
8658
- .brz-ed .nc-glyph-logo-rss:before{content:"\eebe"}
8659
- .brz-ed .nc-glyph-logo-shopify:before{content:"\eebf"}
8660
- .brz-ed .nc-glyph-logo-skype:before{content:"\eec0"}
8661
- .brz-ed .nc-glyph-logo-slack:before{content:"\eec1"}
8662
- .brz-ed .nc-glyph-logo-soundcloud:before{content:"\eec2"}
8663
- .brz-ed .nc-glyph-logo-spotify:before{content:"\eec3"}
8664
- .brz-ed .nc-glyph-logo-squarespace:before{content:"\eec4"}
8665
- .brz-ed .nc-glyph-logo-trello:before{content:"\eec5"}
8666
- .brz-ed .nc-glyph-logo-tumblr:before{content:"\eec6"}
8667
- .brz-ed .nc-glyph-logo-twitter:before{content:"\eec7"}
8668
- .brz-ed .nc-glyph-logo-vimeo:before{content:"\eec8"}
8669
- .brz-ed .nc-glyph-logo-vine:before{content:"\eec9"}
8670
- .brz-ed .nc-glyph-logo-vk:before{content:"\eeca"}
8671
- .brz-ed .nc-glyph-logo-wechat:before{content:"\eecb"}
8672
- .brz-ed .nc-glyph-logo-weibo:before{content:"\eecc"}
8673
- .brz-ed .nc-glyph-logo-whatsapp:before{content:"\eecd"}
8674
- .brz-ed .nc-glyph-logo-wikipedia:before{content:"\eece"}
8675
- .brz-ed .nc-glyph-logo-wordpress:before{content:"\eecf"}
8676
- .brz-ed .nc-glyph-logo-yelp:before{content:"\eed0"}
8677
- .brz-ed .nc-glyph-logo-youtube:before{content:"\eed1"}
8678
- .brz-ed .nc-glyph-logout:before{content:"\eed2"}
8679
- .brz-ed .nc-glyph-lollipop:before{content:"\eed3"}
8680
- .brz-ed .nc-glyph-london:before{content:"\eed4"}
8681
- .brz-ed .nc-glyph-long-sleeve:before{content:"\eed5"}
8682
- .brz-ed .nc-glyph-loop-30:before{content:"\eed6"}
8683
- .brz-ed .nc-glyph-loop-34:before{content:"\eed7"}
8684
- .brz-ed .nc-glyph-loop-82:before{content:"\eed8"}
8685
- .brz-ed .nc-glyph-loop-83:before{content:"\eed9"}
8686
- .brz-ed .nc-glyph-loop:before{content:"\eeda"}
8687
- .brz-ed .nc-glyph-luggage:before{content:"\eedb"}
8688
- .brz-ed .nc-glyph-lungs:before{content:"\eedc"}
8689
- .brz-ed .nc-glyph-m-add:before{content:"\eedd"}
8690
- .brz-ed .nc-glyph-m-check:before{content:"\eede"}
8691
- .brz-ed .nc-glyph-m-delete:before{content:"\eedf"}
8692
- .brz-ed .nc-glyph-m-edit:before{content:"\eee0"}
8693
- .brz-ed .nc-glyph-m-heart:before{content:"\eee1"}
8694
- .brz-ed .nc-glyph-m-location:before{content:"\eee2"}
8695
- .brz-ed .nc-glyph-m-remove:before{content:"\eee3"}
8696
- .brz-ed .nc-glyph-m-search:before{content:"\eee4"}
8697
- .brz-ed .nc-glyph-m-security:before{content:"\eee5"}
8698
- .brz-ed .nc-glyph-m-settings:before{content:"\eee6"}
8699
- .brz-ed .nc-glyph-m-share:before{content:"\eee7"}
8700
- .brz-ed .nc-glyph-m-star:before{content:"\eee8"}
8701
- .brz-ed .nc-glyph-m-sync:before{content:"\eee9"}
8702
- .brz-ed .nc-glyph-m-time:before{content:"\eeea"}
8703
- .brz-ed .nc-glyph-m-update:before{content:"\eeeb"}
8704
- .brz-ed .nc-glyph-macro:before{content:"\eeec"}
8705
- .brz-ed .nc-glyph-mad-12:before{content:"\eeed"}
8706
- .brz-ed .nc-glyph-mad-58:before{content:"\eeee"}
8707
- .brz-ed .nc-glyph-magnet:before{content:"\eeef"}
8708
- .brz-ed .nc-glyph-makeup:before{content:"\eef0"}
8709
- .brz-ed .nc-glyph-malicious:before{content:"\eef1"}
8710
- .brz-ed .nc-glyph-man-20:before{content:"\eef2"}
8711
- .brz-ed .nc-glyph-man-23:before{content:"\eef3"}
8712
- .brz-ed .nc-glyph-man-down:before{content:"\eef4"}
8713
- .brz-ed .nc-glyph-man-glasses:before{content:"\eef5"}
8714
- .brz-ed .nc-glyph-man-up:before{content:"\eef6"}
8715
- .brz-ed .nc-glyph-man:before{content:"\eef7"}
8716
- .brz-ed .nc-glyph-manga-62:before{content:"\eef8"}
8717
- .brz-ed .nc-glyph-manga-63:before{content:"\eef9"}
8718
- .brz-ed .nc-glyph-map-big:before{content:"\eefa"}
8719
- .brz-ed .nc-glyph-map-compass:before{content:"\eefb"}
8720
- .brz-ed .nc-glyph-map-gps:before{content:"\eefc"}
8721
- .brz-ed .nc-glyph-map-marker:before{content:"\eefd"}
8722
- .brz-ed .nc-glyph-map-pin:before{content:"\eefe"}
8723
- .brz-ed .nc-glyph-map:before{content:"\eeff"}
8724
- .brz-ed .nc-glyph-margin-left:before{content:"\ef00"}
8725
- .brz-ed .nc-glyph-margin-right:before{content:"\ef01"}
8726
- .brz-ed .nc-glyph-marker-2:before{content:"\ef02"}
8727
- .brz-ed .nc-glyph-marker-3:before{content:"\ef03"}
8728
- .brz-ed .nc-glyph-marker:before{content:"\ef04"}
8729
- .brz-ed .nc-glyph-market-music:before{content:"\ef05"}
8730
- .brz-ed .nc-glyph-market-play:before{content:"\ef06"}
8731
- .brz-ed .nc-glyph-mask-oval:before{content:"\ef07"}
8732
- .brz-ed .nc-glyph-mask-rect:before{content:"\ef08"}
8733
- .brz-ed .nc-glyph-matches:before{content:"\ef09"}
8734
- .brz-ed .nc-glyph-math:before{content:"\ef0a"}
8735
- .brz-ed .nc-glyph-measure-02:before{content:"\ef0b"}
8736
- .brz-ed .nc-glyph-measure-17:before{content:"\ef0c"}
8737
- .brz-ed .nc-glyph-measure-big:before{content:"\ef0d"}
8738
- .brz-ed .nc-glyph-measuring-cup:before{content:"\ef0e"}
8739
- .brz-ed .nc-glyph-meat-spit:before{content:"\ef0f"}
8740
- .brz-ed .nc-glyph-meeting:before{content:"\ef10"}
8741
- .brz-ed .nc-glyph-menu-34:before{content:"\ef11"}
8742
- .brz-ed .nc-glyph-menu-35:before{content:"\ef12"}
8743
- .brz-ed .nc-glyph-menu-bold:before{content:"\ef13"}
8744
- .brz-ed .nc-glyph-menu-dots:before{content:"\ef14"}
8745
- .brz-ed .nc-glyph-menu-left:before{content:"\ef15"}
8746
- .brz-ed .nc-glyph-menu-right:before{content:"\ef16"}
8747
- .brz-ed .nc-glyph-menu-square:before{content:"\ef17"}
8748
- .brz-ed .nc-glyph-menu:before{content:"\ef18"}
8749
- .brz-ed .nc-glyph-merge-2:before{content:"\ef19"}
8750
- .brz-ed .nc-glyph-merge-round:before{content:"\ef1a"}
8751
- .brz-ed .nc-glyph-merge:before{content:"\ef1b"}
8752
- .brz-ed .nc-glyph-message:before{content:"\ef1c"}
8753
- .brz-ed .nc-glyph-metrics:before{content:"\ef1d"}
8754
- .brz-ed .nc-glyph-mic-2:before{content:"\ef1e"}
8755
- .brz-ed .nc-glyph-mic:before{content:"\ef1f"}
8756
- .brz-ed .nc-glyph-mickey-mouse:before{content:"\ef20"}
8757
- .brz-ed .nc-glyph-microscope:before{content:"\ef21"}
8758
- .brz-ed .nc-glyph-microsoft:before{content:"\ef22"}
8759
- .brz-ed .nc-glyph-microwave:before{content:"\ef23"}
8760
- .brz-ed .nc-glyph-milk:before{content:"\ef24"}
8761
- .brz-ed .nc-glyph-minimal-down:before{content:"\ef25"}
8762
- .brz-ed .nc-glyph-minimal-left:before{content:"\ef26"}
8763
- .brz-ed .nc-glyph-minimal-right:before{content:"\ef27"}
8764
- .brz-ed .nc-glyph-minimal-up:before{content:"\ef28"}
8765
- .brz-ed .nc-glyph-mirror-2:before{content:"\ef29"}
8766
- .brz-ed .nc-glyph-mirror:before{content:"\ef2a"}
8767
- .brz-ed .nc-glyph-mistletoe:before{content:"\ef2b"}
8768
- .brz-ed .nc-glyph-mixer:before{content:"\ef2c"}
8769
- .brz-ed .nc-glyph-mobile-button:before{content:"\ef2d"}
8770
- .brz-ed .nc-glyph-mobile-camera:before{content:"\ef2e"}
8771
- .brz-ed .nc-glyph-mobile-card:before{content:"\ef2f"}
8772
- .brz-ed .nc-glyph-mobile-contact:before{content:"\ef30"}
8773
- .brz-ed .nc-glyph-mobile-design:before{content:"\ef31"}
8774
- .brz-ed .nc-glyph-mobile-dev:before{content:"\ef32"}
8775
- .brz-ed .nc-glyph-mobile-landscape:before{content:"\ef33"}
8776
- .brz-ed .nc-glyph-mobile-recharger-08:before{content:"\ef34"}
8777
- .brz-ed .nc-glyph-mobile-recharger-09:before{content:"\ef35"}
8778
- .brz-ed .nc-glyph-mobile-toolbar:before{content:"\ef36"}
8779
- .brz-ed .nc-glyph-mobile:before{content:"\ef37"}
8780
- .brz-ed .nc-glyph-moka:before{content:"\ef38"}
8781
- .brz-ed .nc-glyph-molecule-39:before{content:"\ef39"}
8782
- .brz-ed .nc-glyph-molecule-40:before{content:"\ef3a"}
8783
- .brz-ed .nc-glyph-molecule:before{content:"\ef3b"}
8784
- .brz-ed .nc-glyph-money-11:before{content:"\ef3c"}
8785
- .brz-ed .nc-glyph-money-12:before{content:"\ef3d"}
8786
- .brz-ed .nc-glyph-money-13:before{content:"\ef3e"}
8787
- .brz-ed .nc-glyph-money-bag:before{content:"\ef3f"}
8788
- .brz-ed .nc-glyph-money-coins:before{content:"\ef40"}
8789
- .brz-ed .nc-glyph-money-growth:before{content:"\ef41"}
8790
- .brz-ed .nc-glyph-money-time:before{content:"\ef42"}
8791
- .brz-ed .nc-glyph-money:before{content:"\ef43"}
8792
- .brz-ed .nc-glyph-monster:before{content:"\ef44"}
8793
- .brz-ed .nc-glyph-moon-cloud-drop:before{content:"\ef45"}
8794
- .brz-ed .nc-glyph-moon-cloud-fog:before{content:"\ef46"}
8795
- .brz-ed .nc-glyph-moon-cloud-hail:before{content:"\ef47"}
8796
- .brz-ed .nc-glyph-moon-cloud-light:before{content:"\ef48"}
8797
- .brz-ed .nc-glyph-moon-cloud-rain:before{content:"\ef49"}
8798
- .brz-ed .nc-glyph-moon-cloud-snow-61:before{content:"\ef4a"}
8799
- .brz-ed .nc-glyph-moon-cloud-snow-62:before{content:"\ef4b"}
8800
- .brz-ed .nc-glyph-moon-fog:before{content:"\ef4c"}
8801
- .brz-ed .nc-glyph-moon-full:before{content:"\ef4d"}
8802
- .brz-ed .nc-glyph-moon-stars:before{content:"\ef4e"}
8803
- .brz-ed .nc-glyph-moon:before{content:"\ef4f"}
8804
- .brz-ed .nc-glyph-mosque:before{content:"\ef50"}
8805
- .brz-ed .nc-glyph-moto:before{content:"\ef51"}
8806
- .brz-ed .nc-glyph-mountain:before{content:"\ef52"}
8807
- .brz-ed .nc-glyph-mouse-08:before{content:"\ef53"}
8808
- .brz-ed .nc-glyph-mouse-09:before{content:"\ef54"}
8809
- .brz-ed .nc-glyph-mouse-10:before{content:"\ef55"}
8810
- .brz-ed .nc-glyph-mouse:before{content:"\ef56"}
8811
- .brz-ed .nc-glyph-move-05:before{content:"\ef57"}
8812
- .brz-ed .nc-glyph-move-06:before{content:"\ef58"}
8813
- .brz-ed .nc-glyph-move-92:before{content:"\ef59"}
8814
- .brz-ed .nc-glyph-move-down-2:before{content:"\ef5a"}
8815
- .brz-ed .nc-glyph-move-down-right:before{content:"\ef5b"}
8816
- .brz-ed .nc-glyph-move-down:before{content:"\ef5c"}
8817
- .brz-ed .nc-glyph-move-left:before{content:"\ef5d"}
8818
- .brz-ed .nc-glyph-move-right:before{content:"\ef5e"}
8819
- .brz-ed .nc-glyph-move-up-2:before{content:"\ef5f"}
8820
- .brz-ed .nc-glyph-move-up-left:before{content:"\ef60"}
8821
- .brz-ed .nc-glyph-move-up:before{content:"\ef61"}
8822
- .brz-ed .nc-glyph-movie-61:before{content:"\ef62"}
8823
- .brz-ed .nc-glyph-movie-62:before{content:"\ef63"}
8824
- .brz-ed .nc-glyph-muffin:before{content:"\ef64"}
8825
- .brz-ed .nc-glyph-mug:before{content:"\ef65"}
8826
- .brz-ed .nc-glyph-multiple-11:before{content:"\ef66"}
8827
- .brz-ed .nc-glyph-multiple-19:before{content:"\ef67"}
8828
- .brz-ed .nc-glyph-multiple:before{content:"\ef68"}
8829
- .brz-ed .nc-glyph-mushroom:before{content:"\ef69"}
8830
- .brz-ed .nc-glyph-music-2:before{content:"\ef6a"}
8831
- .brz-ed .nc-glyph-music-album:before{content:"\ef6b"}
8832
- .brz-ed .nc-glyph-music-cloud:before{content:"\ef6c"}
8833
- .brz-ed .nc-glyph-music:before{content:"\ef6d"}
8834
- .brz-ed .nc-glyph-navigation:before{content:"\ef6e"}
8835
- .brz-ed .nc-glyph-needle:before{content:"\ef6f"}
8836
- .brz-ed .nc-glyph-nerd-22:before{content:"\ef70"}
8837
- .brz-ed .nc-glyph-nerd-23:before{content:"\ef71"}
8838
- .brz-ed .nc-glyph-net:before{content:"\ef72"}
8839
- .brz-ed .nc-glyph-network:before{content:"\ef73"}
8840
- .brz-ed .nc-glyph-new:before{content:"\ef74"}
8841
- .brz-ed .nc-glyph-newsletter-dev:before{content:"\ef75"}
8842
- .brz-ed .nc-glyph-newsletter:before{content:"\ef76"}
8843
- .brz-ed .nc-glyph-night:before{content:"\ef77"}
8844
- .brz-ed .nc-glyph-ninja:before{content:"\ef78"}
8845
- .brz-ed .nc-glyph-no-access:before{content:"\ef79"}
8846
- .brz-ed .nc-glyph-no-words:before{content:"\ef7a"}
8847
- .brz-ed .nc-glyph-node:before{content:"\ef7b"}
8848
- .brz-ed .nc-glyph-note-03:before{content:"\ef7c"}
8849
- .brz-ed .nc-glyph-note-04:before{content:"\ef7d"}
8850
- .brz-ed .nc-glyph-note-code:before{content:"\ef7e"}
8851
- .brz-ed .nc-glyph-notebook-2:before{content:"\ef7f"}
8852
- .brz-ed .nc-glyph-notebook:before{content:"\ef80"}
8853
- .brz-ed .nc-glyph-notepad:before{content:"\ef81"}
8854
- .brz-ed .nc-glyph-notes:before{content:"\ef82"}
8855
- .brz-ed .nc-glyph-notification-69:before{content:"\ef83"}
8856
- .brz-ed .nc-glyph-notification-70:before{content:"\ef84"}
8857
- .brz-ed .nc-glyph-nurse:before{content:"\ef85"}
8858
- .brz-ed .nc-glyph-nutrition:before{content:"\ef86"}
8859
- .brz-ed .nc-glyph-ny:before{content:"\ef87"}
8860
- .brz-ed .nc-glyph-octopus:before{content:"\ef88"}
8861
- .brz-ed .nc-glyph-oil:before{content:"\ef89"}
8862
- .brz-ed .nc-glyph-onenote:before{content:"\ef8a"}
8863
- .brz-ed .nc-glyph-onion:before{content:"\ef8b"}
8864
- .brz-ed .nc-glyph-open-in-browser:before{content:"\ef8c"}
8865
- .brz-ed .nc-glyph-opening-times:before{content:"\ef8d"}
8866
- .brz-ed .nc-glyph-orange:before{content:"\ef8e"}
8867
- .brz-ed .nc-glyph-organic-2:before{content:"\ef8f"}
8868
- .brz-ed .nc-glyph-organic:before{content:"\ef90"}
8869
- .brz-ed .nc-glyph-oven:before{content:"\ef91"}
8870
- .brz-ed .nc-glyph-owl:before{content:"\ef93"}
8871
- .brz-ed .nc-glyph-p-add:before{content:"\ef92"}
8872
- .brz-ed .nc-glyph-p-check:before{content:"\ef94"}
8873
- .brz-ed .nc-glyph-p-edit:before{content:"\ef95"}
8874
- .brz-ed .nc-glyph-p-heart:before{content:"\ef96"}
8875
- .brz-ed .nc-glyph-p-location:before{content:"\ef97"}
8876
- .brz-ed .nc-glyph-p-remove:before{content:"\ef98"}
8877
- .brz-ed .nc-glyph-p-search:before{content:"\ef99"}
8878
- .brz-ed .nc-glyph-p-settings:before{content:"\ef9a"}
8879
- .brz-ed .nc-glyph-p-share:before{content:"\ef9b"}
8880
- .brz-ed .nc-glyph-p-sync:before{content:"\ef9c"}
8881
- .brz-ed .nc-glyph-p-system-update:before{content:"\ef9d"}
8882
- .brz-ed .nc-glyph-p-time:before{content:"\ef9e"}
8883
- .brz-ed .nc-glyph-paint-16:before{content:"\ef9f"}
8884
- .brz-ed .nc-glyph-paint-37:before{content:"\efa0"}
8885
- .brz-ed .nc-glyph-paint-38:before{content:"\efa1"}
8886
- .brz-ed .nc-glyph-paint-brush:before{content:"\efa2"}
8887
- .brz-ed .nc-glyph-paint-bucket-39:before{content:"\efa3"}
8888
- .brz-ed .nc-glyph-paint-bucket-40:before{content:"\efa4"}
8889
- .brz-ed .nc-glyph-pajamas:before{content:"\efa5"}
8890
- .brz-ed .nc-glyph-palette:before{content:"\efa6"}
8891
- .brz-ed .nc-glyph-pan:before{content:"\efa7"}
8892
- .brz-ed .nc-glyph-pancake:before{content:"\efa8"}
8893
- .brz-ed .nc-glyph-panda:before{content:"\efa9"}
8894
- .brz-ed .nc-glyph-panel:before{content:"\efaa"}
8895
- .brz-ed .nc-glyph-pantone:before{content:"\efab"}
8896
- .brz-ed .nc-glyph-paper-2:before{content:"\efac"}
8897
- .brz-ed .nc-glyph-paper-design:before{content:"\efad"}
8898
- .brz-ed .nc-glyph-paper-dev:before{content:"\efae"}
8899
- .brz-ed .nc-glyph-paper-diploma:before{content:"\efaf"}
8900
- .brz-ed .nc-glyph-paper:before{content:"\efb0"}
8901
- .brz-ed .nc-glyph-paragraph:before{content:"\efb1"}
8902
- .brz-ed .nc-glyph-parent:before{content:"\efb2"}
8903
- .brz-ed .nc-glyph-paris-tower:before{content:"\efb3"}
8904
- .brz-ed .nc-glyph-parking-sensors:before{content:"\efb4"}
8905
- .brz-ed .nc-glyph-parking:before{content:"\efb5"}
8906
- .brz-ed .nc-glyph-parrot:before{content:"\efb6"}
8907
- .brz-ed .nc-glyph-passport:before{content:"\efb7"}
8908
- .brz-ed .nc-glyph-pasta:before{content:"\efb8"}
8909
- .brz-ed .nc-glyph-patch-19:before{content:"\efb9"}
8910
- .brz-ed .nc-glyph-patch-34:before{content:"\efba"}
8911
- .brz-ed .nc-glyph-patch:before{content:"\efbb"}
8912
- .brz-ed .nc-glyph-path-exclude:before{content:"\efbc"}
8913
- .brz-ed .nc-glyph-path-intersect:before{content:"\efbd"}
8914
- .brz-ed .nc-glyph-path-minus:before{content:"\efbe"}
8915
- .brz-ed .nc-glyph-path-unite:before{content:"\efbf"}
8916
- .brz-ed .nc-glyph-paw:before{content:"\efc0"}
8917
- .brz-ed .nc-glyph-payment:before{content:"\efc1"}
8918
- .brz-ed .nc-glyph-pci-card:before{content:"\efc2"}
8919
- .brz-ed .nc-glyph-peanut:before{content:"\efc3"}
8920
- .brz-ed .nc-glyph-pear:before{content:"\efc4"}
8921
- .brz-ed .nc-glyph-pen-01:before{content:"\efc5"}
8922
- .brz-ed .nc-glyph-pen-23:before{content:"\efc6"}
8923
- .brz-ed .nc-glyph-pen-tool:before{content:"\efc7"}
8924
- .brz-ed .nc-glyph-pencil-47:before{content:"\efc8"}
8925
- .brz-ed .nc-glyph-pencil:before{content:"\efc9"}
8926
- .brz-ed .nc-glyph-penguin:before{content:"\efca"}
8927
- .brz-ed .nc-glyph-pepper:before{content:"\efcb"}
8928
- .brz-ed .nc-glyph-percentage-38:before{content:"\efcc"}
8929
- .brz-ed .nc-glyph-percentage-39:before{content:"\efcd"}
8930
- .brz-ed .nc-glyph-phone-2:before{content:"\efce"}
8931
- .brz-ed .nc-glyph-phone-3:before{content:"\efcf"}
8932
- .brz-ed .nc-glyph-phone-call-end:before{content:"\efd0"}
8933
- .brz-ed .nc-glyph-phone-call:before{content:"\efd1"}
8934
- .brz-ed .nc-glyph-phone:before{content:"\efd2"}
8935
- .brz-ed .nc-glyph-photo-editor:before{content:"\efd3"}
8936
- .brz-ed .nc-glyph-piano:before{content:"\efd4"}
8937
- .brz-ed .nc-glyph-pickaxe:before{content:"\efd5"}
8938
- .brz-ed .nc-glyph-pickle:before{content:"\efd6"}
8939
- .brz-ed .nc-glyph-picnic-basket:before{content:"\efd7"}
8940
- .brz-ed .nc-glyph-picture:before{content:"\efd8"}
8941
- .brz-ed .nc-glyph-pig-2:before{content:"\efd9"}
8942
- .brz-ed .nc-glyph-pig:before{content:"\efda"}
8943
- .brz-ed .nc-glyph-pill-42:before{content:"\efdb"}
8944
- .brz-ed .nc-glyph-pill-43:before{content:"\efdc"}
8945
- .brz-ed .nc-glyph-pill-container-44:before{content:"\efdd"}
8946
- .brz-ed .nc-glyph-pill-container-47:before{content:"\efde"}
8947
- .brz-ed .nc-glyph-pin-2:before{content:"\efdf"}
8948
- .brz-ed .nc-glyph-pin-3:before{content:"\efe0"}
8949
- .brz-ed .nc-glyph-pin-4:before{content:"\efe1"}
8950
- .brz-ed .nc-glyph-pin-add-2:before{content:"\efe2"}
8951
- .brz-ed .nc-glyph-pin-add:before{content:"\efe3"}
8952
- .brz-ed .nc-glyph-pin-check:before{content:"\efe4"}
8953
- .brz-ed .nc-glyph-pin-copy:before{content:"\efe5"}
8954
- .brz-ed .nc-glyph-pin-delete:before{content:"\efe6"}
8955
- .brz-ed .nc-glyph-pin-edit:before{content:"\efe7"}
8956
- .brz-ed .nc-glyph-pin-heart:before{content:"\efe8"}
8957
- .brz-ed .nc-glyph-pin-remove-2:before{content:"\efe9"}
8958
- .brz-ed .nc-glyph-pin-remove:before{content:"\efea"}
8959
- .brz-ed .nc-glyph-pin-search:before{content:"\efeb"}
8960
- .brz-ed .nc-glyph-pin-security:before{content:"\efec"}
8961
- .brz-ed .nc-glyph-pin-settings:before{content:"\efed"}
8962
- .brz-ed .nc-glyph-pin-share:before{content:"\efee"}
8963
- .brz-ed .nc-glyph-pin-star:before{content:"\efef"}
8964
- .brz-ed .nc-glyph-pin-sync:before{content:"\eff0"}
8965
- .brz-ed .nc-glyph-pin-time:before{content:"\eff1"}
8966
- .brz-ed .nc-glyph-pin-user:before{content:"\eff2"}
8967
- .brz-ed .nc-glyph-pin:before{content:"\eff3"}
8968
- .brz-ed .nc-glyph-pinch:before{content:"\eff4"}
8969
- .brz-ed .nc-glyph-pineapple:before{content:"\eff5"}
8970
- .brz-ed .nc-glyph-ping-pong:before{content:"\eff6"}
8971
- .brz-ed .nc-glyph-pins:before{content:"\eff7"}
8972
- .brz-ed .nc-glyph-pipe:before{content:"\eff8"}
8973
- .brz-ed .nc-glyph-pirate:before{content:"\eff9"}
8974
- .brz-ed .nc-glyph-pizza-slice:before{content:"\effa"}
8975
- .brz-ed .nc-glyph-pizza:before{content:"\effb"}
8976
- .brz-ed .nc-glyph-plane-17:before{content:"\effc"}
8977
- .brz-ed .nc-glyph-plane-18:before{content:"\effd"}
8978
- .brz-ed .nc-glyph-planet:before{content:"\effe"}
8979
- .brz-ed .nc-glyph-plant-ground:before{content:"\efff"}
8980
- .brz-ed .nc-glyph-plant-vase:before{content:"\f000"}
8981
- .brz-ed .nc-glyph-plate:before{content:"\f001"}
8982
- .brz-ed .nc-glyph-play-68:before{content:"\f002"}
8983
- .brz-ed .nc-glyph-play-69:before{content:"\f003"}
8984
- .brz-ed .nc-glyph-play:before{content:"\f004"}
8985
- .brz-ed .nc-glyph-player-19:before{content:"\f005"}
8986
- .brz-ed .nc-glyph-player-48:before{content:"\f006"}
8987
- .brz-ed .nc-glyph-player:before{content:"\f007"}
8988
- .brz-ed .nc-glyph-playlist:before{content:"\f008"}
8989
- .brz-ed .nc-glyph-plug:before{content:"\f009"}
8990
- .brz-ed .nc-glyph-podium-trophy:before{content:"\f00a"}
8991
- .brz-ed .nc-glyph-podium:before{content:"\f00b"}
8992
- .brz-ed .nc-glyph-point-a:before{content:"\f00c"}
8993
- .brz-ed .nc-glyph-point-b:before{content:"\f00d"}
8994
- .brz-ed .nc-glyph-polaroid-add:before{content:"\f00e"}
8995
- .brz-ed .nc-glyph-polaroid-delete:before{content:"\f00f"}
8996
- .brz-ed .nc-glyph-polaroid-multiple:before{content:"\f010"}
8997
- .brz-ed .nc-glyph-polaroid-user:before{content:"\f011"}
8998
- .brz-ed .nc-glyph-polaroid:before{content:"\f012"}
8999
- .brz-ed .nc-glyph-police:before{content:"\f013"}
9000
- .brz-ed .nc-glyph-pool:before{content:"\f014"}
9001
- .brz-ed .nc-glyph-poop:before{content:"\f015"}
9002
- .brz-ed .nc-glyph-popcorn:before{content:"\f016"}
9003
- .brz-ed .nc-glyph-pos:before{content:"\f017"}
9004
- .brz-ed .nc-glyph-position-marker:before{content:"\f018"}
9005
- .brz-ed .nc-glyph-position-pin:before{content:"\f019"}
9006
- .brz-ed .nc-glyph-position-user:before{content:"\f01a"}
9007
- .brz-ed .nc-glyph-position:before{content:"\f01b"}
9008
- .brz-ed .nc-glyph-pot:before{content:"\f01c"}
9009
- .brz-ed .nc-glyph-potato:before{content:"\f01d"}
9010
- .brz-ed .nc-glyph-power-level:before{content:"\f01e"}
9011
- .brz-ed .nc-glyph-preferences-circle-rotate:before{content:"\f01f"}
9012
- .brz-ed .nc-glyph-preferences-circle:before{content:"\f020"}
9013
- .brz-ed .nc-glyph-preferences-container-circle-rotate:before{content:"\f021"}
9014
- .brz-ed .nc-glyph-preferences-container-circle:before{content:"\f022"}
9015
- .brz-ed .nc-glyph-preferences-container-rotate:before{content:"\f023"}
9016
- .brz-ed .nc-glyph-preferences-container:before{content:"\f024"}
9017
- .brz-ed .nc-glyph-preferences-rotate:before{content:"\f025"}
9018
- .brz-ed .nc-glyph-preferences:before{content:"\f026"}
9019
- .brz-ed .nc-glyph-print:before{content:"\f027"}
9020
- .brz-ed .nc-glyph-printer:before{content:"\f028"}
9021
- .brz-ed .nc-glyph-priority-high:before{content:"\f029"}
9022
- .brz-ed .nc-glyph-priority-low:before{content:"\f02a"}
9023
- .brz-ed .nc-glyph-progress:before{content:"\f02b"}
9024
- .brz-ed .nc-glyph-prosciutto:before{content:"\f02c"}
9025
- .brz-ed .nc-glyph-prototype:before{content:"\f02d"}
9026
- .brz-ed .nc-glyph-pulse-chart:before{content:"\f02e"}
9027
- .brz-ed .nc-glyph-pulse-phone:before{content:"\f02f"}
9028
- .brz-ed .nc-glyph-pulse-sleep:before{content:"\f030"}
9029
- .brz-ed .nc-glyph-pulse-watch:before{content:"\f031"}
9030
- .brz-ed .nc-glyph-pulse:before{content:"\f032"}
9031
- .brz-ed .nc-glyph-pumpkin:before{content:"\f033"}
9032
- .brz-ed .nc-glyph-push-next:before{content:"\f034"}
9033
- .brz-ed .nc-glyph-push-previous:before{content:"\f035"}
9034
- .brz-ed .nc-glyph-puzzle-09:before{content:"\f036"}
9035
- .brz-ed .nc-glyph-puzzle-10:before{content:"\f037"}
9036
- .brz-ed .nc-glyph-puzzled:before{content:"\f038"}
9037
- .brz-ed .nc-glyph-pyramid:before{content:"\f039"}
9038
- .brz-ed .nc-glyph-question:before{content:"\f03a"}
9039
- .brz-ed .nc-glyph-quite-happy:before{content:"\f03b"}
9040
- .brz-ed .nc-glyph-quote:before{content:"\f03c"}
9041
- .brz-ed .nc-glyph-rabbit:before{content:"\f03d"}
9042
- .brz-ed .nc-glyph-rackets:before{content:"\f03e"}
9043
- .brz-ed .nc-glyph-radar:before{content:"\f03f"}
9044
- .brz-ed .nc-glyph-radiation:before{content:"\f040"}
9045
- .brz-ed .nc-glyph-radio:before{content:"\f041"}
9046
- .brz-ed .nc-glyph-rain-hail:before{content:"\f042"}
9047
- .brz-ed .nc-glyph-rain:before{content:"\f043"}
9048
- .brz-ed .nc-glyph-rainbow:before{content:"\f044"}
9049
- .brz-ed .nc-glyph-ram:before{content:"\f045"}
9050
- .brz-ed .nc-glyph-rat:before{content:"\f046"}
9051
- .brz-ed .nc-glyph-receipt-list-42:before{content:"\f047"}
9052
- .brz-ed .nc-glyph-receipt-list-43:before{content:"\f048"}
9053
- .brz-ed .nc-glyph-receipt:before{content:"\f049"}
9054
- .brz-ed .nc-glyph-recipe-book-46:before{content:"\f04a"}
9055
- .brz-ed .nc-glyph-recipe-book-47:before{content:"\f04b"}
9056
- .brz-ed .nc-glyph-recipe-create:before{content:"\f04c"}
9057
- .brz-ed .nc-glyph-recipe:before{content:"\f04d"}
9058
- .brz-ed .nc-glyph-recycling:before{content:"\f04e"}
9059
- .brz-ed .nc-glyph-redo-10:before{content:"\f04f"}
9060
- .brz-ed .nc-glyph-redo-26:before{content:"\f050"}
9061
- .brz-ed .nc-glyph-redo-79:before{content:"\f051"}
9062
- .brz-ed .nc-glyph-redo-81:before{content:"\f052"}
9063
- .brz-ed .nc-glyph-refresh-01:before{content:"\f053"}
9064
- .brz-ed .nc-glyph-refresh-02:before{content:"\f054"}
9065
- .brz-ed .nc-glyph-refresh-68:before{content:"\f055"}
9066
- .brz-ed .nc-glyph-refresh-69:before{content:"\f056"}
9067
- .brz-ed .nc-glyph-refresh:before{content:"\f057"}
9068
- .brz-ed .nc-glyph-reload:before{content:"\f058"}
9069
- .brz-ed .nc-glyph-remix:before{content:"\f059"}
9070
- .brz-ed .nc-glyph-remote:before{content:"\f05a"}
9071
- .brz-ed .nc-glyph-remove:before{content:"\f05b"}
9072
- .brz-ed .nc-glyph-replace-folder:before{content:"\f05c"}
9073
- .brz-ed .nc-glyph-replace:before{content:"\f05d"}
9074
- .brz-ed .nc-glyph-replay:before{content:"\f05e"}
9075
- .brz-ed .nc-glyph-reply-all:before{content:"\f05f"}
9076
- .brz-ed .nc-glyph-reply:before{content:"\f060"}
9077
- .brz-ed .nc-glyph-reservation:before{content:"\f061"}
9078
- .brz-ed .nc-glyph-resize-h:before{content:"\f062"}
9079
- .brz-ed .nc-glyph-resize-v:before{content:"\f063"}
9080
- .brz-ed .nc-glyph-restaurant-menu:before{content:"\f064"}
9081
- .brz-ed .nc-glyph-restore:before{content:"\f065"}
9082
- .brz-ed .nc-glyph-rice:before{content:"\f066"}
9083
- .brz-ed .nc-glyph-rim:before{content:"\f067"}
9084
- .brz-ed .nc-glyph-ring:before{content:"\f068"}
9085
- .brz-ed .nc-glyph-rio:before{content:"\f069"}
9086
- .brz-ed .nc-glyph-ripples:before{content:"\f06a"}
9087
- .brz-ed .nc-glyph-road-2:before{content:"\f06b"}
9088
- .brz-ed .nc-glyph-road-sign-left:before{content:"\f06c"}
9089
- .brz-ed .nc-glyph-road-sign-right:before{content:"\f06d"}
9090
- .brz-ed .nc-glyph-road:before{content:"\f06e"}
9091
- .brz-ed .nc-glyph-roast-chicken:before{content:"\f06f"}
9092
- .brz-ed .nc-glyph-robot:before{content:"\f070"}
9093
- .brz-ed .nc-glyph-rock:before{content:"\f071"}
9094
- .brz-ed .nc-glyph-roll:before{content:"\f072"}
9095
- .brz-ed .nc-glyph-rolling-pin:before{content:"\f073"}
9096
- .brz-ed .nc-glyph-rome:before{content:"\f074"}
9097
- .brz-ed .nc-glyph-rope:before{content:"\f075"}
9098
- .brz-ed .nc-glyph-rotate-22:before{content:"\f076"}
9099
- .brz-ed .nc-glyph-rotate-23:before{content:"\f077"}
9100
- .brz-ed .nc-glyph-rotate-left-2:before{content:"\f078"}
9101
- .brz-ed .nc-glyph-rotate-left:before{content:"\f079"}
9102
- .brz-ed .nc-glyph-rotate-lock:before{content:"\f07a"}
9103
- .brz-ed .nc-glyph-rotate-right-2:before{content:"\f07b"}
9104
- .brz-ed .nc-glyph-rotate-right:before{content:"\f07c"}
9105
- .brz-ed .nc-glyph-rotate:before{content:"\f07d"}
9106
- .brz-ed .nc-glyph-round-dollar:before{content:"\f07e"}
9107
- .brz-ed .nc-glyph-round-down:before{content:"\f07f"}
9108
- .brz-ed .nc-glyph-round-euro:before{content:"\f080"}
9109
- .brz-ed .nc-glyph-round-left-down:before{content:"\f081"}
9110
- .brz-ed .nc-glyph-round-left:before{content:"\f082"}
9111
- .brz-ed .nc-glyph-round-pound:before{content:"\f083"}
9112
- .brz-ed .nc-glyph-round-right-down:before{content:"\f084"}
9113
- .brz-ed .nc-glyph-round-right:before{content:"\f085"}
9114
- .brz-ed .nc-glyph-round-up-left:before{content:"\f086"}
9115
- .brz-ed .nc-glyph-round-up-right:before{content:"\f087"}
9116
- .brz-ed .nc-glyph-round-up:before{content:"\f088"}
9117
- .brz-ed .nc-glyph-round-yen:before{content:"\f089"}
9118
- .brz-ed .nc-glyph-route-alert:before{content:"\f08a"}
9119
- .brz-ed .nc-glyph-route-close:before{content:"\f08b"}
9120
- .brz-ed .nc-glyph-route-open:before{content:"\f08c"}
9121
- .brz-ed .nc-glyph-rowing:before{content:"\f08d"}
9122
- .brz-ed .nc-glyph-rugby:before{content:"\f08e"}
9123
- .brz-ed .nc-glyph-ruler-pencil:before{content:"\f08f"}
9124
- .brz-ed .nc-glyph-sad:before{content:"\f090"}
9125
- .brz-ed .nc-glyph-safe:before{content:"\f091"}
9126
- .brz-ed .nc-glyph-salad:before{content:"\f092"}
9127
- .brz-ed .nc-glyph-sale:before{content:"\f093"}
9128
- .brz-ed .nc-glyph-salt:before{content:"\f094"}
9129
- .brz-ed .nc-glyph-santa-hat:before{content:"\f095"}
9130
- .brz-ed .nc-glyph-satisfied:before{content:"\f096"}
9131
- .brz-ed .nc-glyph-sausage:before{content:"\f097"}
9132
- .brz-ed .nc-glyph-save-planet:before{content:"\f098"}
9133
- .brz-ed .nc-glyph-scale-2:before{content:"\f099"}
9134
- .brz-ed .nc-glyph-scale-3:before{content:"\f09a"}
9135
- .brz-ed .nc-glyph-scale-4:before{content:"\f09b"}
9136
- .brz-ed .nc-glyph-scale-down:before{content:"\f09c"}
9137
- .brz-ed .nc-glyph-scale-horizontal:before{content:"\f09d"}
9138
- .brz-ed .nc-glyph-scale-up:before{content:"\f09e"}
9139
- .brz-ed .nc-glyph-scale-vertical:before{content:"\f09f"}
9140
- .brz-ed .nc-glyph-scale:before{content:"\f0a0"}
9141
- .brz-ed .nc-glyph-scan:before{content:"\f0a1"}
9142
- .brz-ed .nc-glyph-scarf:before{content:"\f0a2"}
9143
- .brz-ed .nc-glyph-school:before{content:"\f0a3"}
9144
- .brz-ed .nc-glyph-scissors-dashed:before{content:"\f0a4"}
9145
- .brz-ed .nc-glyph-scissors:before{content:"\f0a5"}
9146
- .brz-ed .nc-glyph-scotch:before{content:"\f0a6"}
9147
- .brz-ed .nc-glyph-scroll-horitontal:before{content:"\f0a7"}
9148
- .brz-ed .nc-glyph-scroll-vertical:before{content:"\f0a8"}
9149
- .brz-ed .nc-glyph-sd:before{content:"\f0a9"}
9150
- .brz-ed .nc-glyph-sea-mask:before{content:"\f0aa"}
9151
- .brz-ed .nc-glyph-search-2:before{content:"\f0ab"}
9152
- .brz-ed .nc-glyph-search-3:before{content:"\f0ac"}
9153
- .brz-ed .nc-glyph-search:before{content:"\f0ad"}
9154
- .brz-ed .nc-glyph-seat:before{content:"\f0ae"}
9155
- .brz-ed .nc-glyph-seatbelt:before{content:"\f0af"}
9156
- .brz-ed .nc-glyph-security:before{content:"\f0b0"}
9157
- .brz-ed .nc-glyph-segmentation:before{content:"\f0b1"}
9158
- .brz-ed .nc-glyph-select-83:before{content:"\f0b2"}
9159
- .brz-ed .nc-glyph-select-84:before{content:"\f0b3"}
9160
- .brz-ed .nc-glyph-select:before{content:"\f0b4"}
9161
- .brz-ed .nc-glyph-selection:before{content:"\f0b5"}
9162
- .brz-ed .nc-glyph-selfie:before{content:"\f0b6"}
9163
- .brz-ed .nc-glyph-send-2:before{content:"\f0b7"}
9164
- .brz-ed .nc-glyph-send:before{content:"\f0b8"}
9165
- .brz-ed .nc-glyph-sensor:before{content:"\f0b9"}
9166
- .brz-ed .nc-glyph-separate-round:before{content:"\f0ba"}
9167
- .brz-ed .nc-glyph-separate:before{content:"\f0bb"}
9168
- .brz-ed .nc-glyph-settings-46:before{content:"\f0bc"}
9169
- .brz-ed .nc-glyph-settings-99:before{content:"\f0bd"}
9170
- .brz-ed .nc-glyph-settings-gear-63:before{content:"\f0be"}
9171
- .brz-ed .nc-glyph-settings-gear-64:before{content:"\f0bf"}
9172
- .brz-ed .nc-glyph-settings-gear-65:before{content:"\f0c0"}
9173
- .brz-ed .nc-glyph-settings-tool-66:before{content:"\f0c1"}
9174
- .brz-ed .nc-glyph-settings-tool-67:before{content:"\f0c2"}
9175
- .brz-ed .nc-glyph-settings:before{content:"\f0c3"}
9176
- .brz-ed .nc-glyph-sf-bridge:before{content:"\f0c4"}
9177
- .brz-ed .nc-glyph-shake:before{content:"\f0c5"}
9178
- .brz-ed .nc-glyph-shaker:before{content:"\f0c6"}
9179
- .brz-ed .nc-glyph-shape-adjust:before{content:"\f0c7"}
9180
- .brz-ed .nc-glyph-shape-arrow:before{content:"\f0c8"}
9181
- .brz-ed .nc-glyph-shape-circle:before{content:"\f0c9"}
9182
- .brz-ed .nc-glyph-shape-custom:before{content:"\f0ca"}
9183
- .brz-ed .nc-glyph-shape-line:before{content:"\f0cb"}
9184
- .brz-ed .nc-glyph-shape-oval:before{content:"\f0cc"}
9185
- .brz-ed .nc-glyph-shape-polygon-2:before{content:"\f0cd"}
9186
- .brz-ed .nc-glyph-shape-polygon:before{content:"\f0ce"}
9187
- .brz-ed .nc-glyph-shape-rectangle:before{content:"\f0cf"}
9188
- .brz-ed .nc-glyph-shape-square:before{content:"\f0d0"}
9189
- .brz-ed .nc-glyph-shape-star:before{content:"\f0d1"}
9190
- .brz-ed .nc-glyph-shape-triangle-2:before{content:"\f0d2"}
9191
- .brz-ed .nc-glyph-shape-triangle:before{content:"\f0d3"}
9192
- .brz-ed .nc-glyph-shapes:before{content:"\f0d4"}
9193
- .brz-ed .nc-glyph-share-2:before{content:"\f0d5"}
9194
- .brz-ed .nc-glyph-share-66:before{content:"\f0d6"}
9195
- .brz-ed .nc-glyph-share-91:before{content:"\f0d7"}
9196
- .brz-ed .nc-glyph-share-92:before{content:"\f0d8"}
9197
- .brz-ed .nc-glyph-share-bold:before{content:"\f0d9"}
9198
- .brz-ed .nc-glyph-share-left:before{content:"\f0da"}
9199
- .brz-ed .nc-glyph-share-right:before{content:"\f0db"}
9200
- .brz-ed .nc-glyph-share:before{content:"\f0dc"}
9201
- .brz-ed .nc-glyph-shared:before{content:"\f0dd"}
9202
- .brz-ed .nc-glyph-shark-2:before{content:"\f0de"}
9203
- .brz-ed .nc-glyph-shark:before{content:"\f0df"}
9204
- .brz-ed .nc-glyph-sharpener:before{content:"\f0e0"}
9205
- .brz-ed .nc-glyph-sheep:before{content:"\f0e1"}
9206
- .brz-ed .nc-glyph-shirt-business:before{content:"\f0e2"}
9207
- .brz-ed .nc-glyph-shirt-buttons:before{content:"\f0e3"}
9208
- .brz-ed .nc-glyph-shirt-neck:before{content:"\f0e4"}
9209
- .brz-ed .nc-glyph-shirt:before{content:"\f0e5"}
9210
- .brz-ed .nc-glyph-shoe-man:before{content:"\f0e6"}
9211
- .brz-ed .nc-glyph-shoe-run:before{content:"\f0e7"}
9212
- .brz-ed .nc-glyph-shoe-sport:before{content:"\f0e8"}
9213
- .brz-ed .nc-glyph-shoe-woman:before{content:"\f0e9"}
9214
- .brz-ed .nc-glyph-shop-location:before{content:"\f0ea"}
9215
- .brz-ed .nc-glyph-shop:before{content:"\f0eb"}
9216
- .brz-ed .nc-glyph-shovel:before{content:"\f0ec"}
9217
- .brz-ed .nc-glyph-shower:before{content:"\f0ed"}
9218
- .brz-ed .nc-glyph-shrimp:before{content:"\f0ee"}
9219
- .brz-ed .nc-glyph-shuffle-01:before{content:"\f0ef"}
9220
- .brz-ed .nc-glyph-shuffle-35:before{content:"\f0f0"}
9221
- .brz-ed .nc-glyph-shuffle-97:before{content:"\f0f1"}
9222
- .brz-ed .nc-glyph-shuffle-98:before{content:"\f0f2"}
9223
- .brz-ed .nc-glyph-shy:before{content:"\f0f3"}
9224
- .brz-ed .nc-glyph-sick:before{content:"\f0f4"}
9225
- .brz-ed .nc-glyph-sickle:before{content:"\f0f5"}
9226
- .brz-ed .nc-glyph-sidebar:before{content:"\f0f6"}
9227
- .brz-ed .nc-glyph-sign-board:before{content:"\f0f7"}
9228
- .brz-ed .nc-glyph-sign:before{content:"\f0f8"}
9229
- .brz-ed .nc-glyph-signal-2:before{content:"\f0f9"}
9230
- .brz-ed .nc-glyph-signal:before{content:"\f0fa"}
9231
- .brz-ed .nc-glyph-signature:before{content:"\f0fb"}
9232
- .brz-ed .nc-glyph-silly:before{content:"\f0fc"}
9233
- .brz-ed .nc-glyph-sim-card:before{content:"\f0fd"}
9234
- .brz-ed .nc-glyph-simple-add:before{content:"\f0fe"}
9235
- .brz-ed .nc-glyph-simple-delete:before{content:"\f0ff"}
9236
- .brz-ed .nc-glyph-simple-down:before{content:"\f100"}
9237
- .brz-ed .nc-glyph-simple-left:before{content:"\f101"}
9238
- .brz-ed .nc-glyph-simple-remove:before{content:"\f102"}
9239
- .brz-ed .nc-glyph-simple-right:before{content:"\f103"}
9240
- .brz-ed .nc-glyph-simple-up:before{content:"\f104"}
9241
- .brz-ed .nc-glyph-single-01:before{content:"\f105"}
9242
- .brz-ed .nc-glyph-single-02:before{content:"\f106"}
9243
- .brz-ed .nc-glyph-single-03:before{content:"\f107"}
9244
- .brz-ed .nc-glyph-single-04:before{content:"\f108"}
9245
- .brz-ed .nc-glyph-single-05:before{content:"\f109"}
9246
- .brz-ed .nc-glyph-single-body:before{content:"\f10a"}
9247
- .brz-ed .nc-glyph-single-content-02:before{content:"\f10b"}
9248
- .brz-ed .nc-glyph-single-content-03:before{content:"\f10c"}
9249
- .brz-ed .nc-glyph-single-copies:before{content:"\f10d"}
9250
- .brz-ed .nc-glyph-single-copy-04:before{content:"\f10e"}
9251
- .brz-ed .nc-glyph-single-copy-06:before{content:"\f10f"}
9252
- .brz-ed .nc-glyph-single-folded-content:before{content:"\f110"}
9253
- .brz-ed .nc-glyph-single-folded:before{content:"\f111"}
9254
- .brz-ed .nc-glyph-single-paragraph:before{content:"\f112"}
9255
- .brz-ed .nc-glyph-single-position:before{content:"\f113"}
9256
- .brz-ed .nc-glyph-single:before{content:"\f114"}
9257
- .brz-ed .nc-glyph-sink-wash:before{content:"\f115"}
9258
- .brz-ed .nc-glyph-sink:before{content:"\f116"}
9259
- .brz-ed .nc-glyph-size-large:before{content:"\f117"}
9260
- .brz-ed .nc-glyph-size-medium:before{content:"\f118"}
9261
- .brz-ed .nc-glyph-size-small:before{content:"\f119"}
9262
- .brz-ed .nc-glyph-size:before{content:"\f11a"}
9263
- .brz-ed .nc-glyph-skateboard-2:before{content:"\f11b"}
9264
- .brz-ed .nc-glyph-skateboard:before{content:"\f11c"}
9265
- .brz-ed .nc-glyph-skew-down:before{content:"\f11d"}
9266
- .brz-ed .nc-glyph-skew-left:before{content:"\f11e"}
9267
- .brz-ed .nc-glyph-skew-right:before{content:"\f11f"}
9268
- .brz-ed .nc-glyph-skew-up:before{content:"\f120"}
9269
- .brz-ed .nc-glyph-skirt:before{content:"\f121"}
9270
- .brz-ed .nc-glyph-skull-2:before{content:"\f122"}
9271
- .brz-ed .nc-glyph-skull:before{content:"\f123"}
9272
- .brz-ed .nc-glyph-slacks-12:before{content:"\f124"}
9273
- .brz-ed .nc-glyph-slacks-13:before{content:"\f125"}
9274
- .brz-ed .nc-glyph-sleep-2:before{content:"\f126"}
9275
- .brz-ed .nc-glyph-sleep:before{content:"\f127"}
9276
- .brz-ed .nc-glyph-slice:before{content:"\f128"}
9277
- .brz-ed .nc-glyph-slide-left:before{content:"\f129"}
9278
- .brz-ed .nc-glyph-slide-right:before{content:"\f12a"}
9279
- .brz-ed .nc-glyph-slider:before{content:"\f12b"}
9280
- .brz-ed .nc-glyph-sloth:before{content:"\f12c"}
9281
- .brz-ed .nc-glyph-small-add:before{content:"\f12d"}
9282
- .brz-ed .nc-glyph-small-delete:before{content:"\f12e"}
9283
- .brz-ed .nc-glyph-small-down:before{content:"\f12f"}
9284
- .brz-ed .nc-glyph-small-left:before{content:"\f130"}
9285
- .brz-ed .nc-glyph-small-remove:before{content:"\f131"}
9286
- .brz-ed .nc-glyph-small-right:before{content:"\f132"}
9287
- .brz-ed .nc-glyph-small-triangle-down:before{content:"\f133"}
9288
- .brz-ed .nc-glyph-small-triangle-left:before{content:"\f134"}
9289
- .brz-ed .nc-glyph-small-triangle-right:before{content:"\f135"}
9290
- .brz-ed .nc-glyph-small-triangle-up:before{content:"\f136"}
9291
- .brz-ed .nc-glyph-small-up:before{content:"\f137"}
9292
- .brz-ed .nc-glyph-smart:before{content:"\f138"}
9293
- .brz-ed .nc-glyph-smile:before{content:"\f139"}
9294
- .brz-ed .nc-glyph-smoothie:before{content:"\f13a"}
9295
- .brz-ed .nc-glyph-snack:before{content:"\f13b"}
9296
- .brz-ed .nc-glyph-snake:before{content:"\f13c"}
9297
- .brz-ed .nc-glyph-snow-ball:before{content:"\f13d"}
9298
- .brz-ed .nc-glyph-snow:before{content:"\f13e"}
9299
- .brz-ed .nc-glyph-snowboard:before{content:"\f13f"}
9300
- .brz-ed .nc-glyph-snowman-head:before{content:"\f140"}
9301
- .brz-ed .nc-glyph-snowman:before{content:"\f141"}
9302
- .brz-ed .nc-glyph-soak:before{content:"\f142"}
9303
- .brz-ed .nc-glyph-soccer-field:before{content:"\f143"}
9304
- .brz-ed .nc-glyph-sock:before{content:"\f144"}
9305
- .brz-ed .nc-glyph-socket-europe-1:before{content:"\f145"}
9306
- .brz-ed .nc-glyph-socket-europe-2:before{content:"\f146"}
9307
- .brz-ed .nc-glyph-socket-uk:before{content:"\f147"}
9308
- .brz-ed .nc-glyph-socket:before{content:"\f148"}
9309
- .brz-ed .nc-glyph-sofa:before{content:"\f149"}
9310
- .brz-ed .nc-glyph-soldier:before{content:"\f14a"}
9311
- .brz-ed .nc-glyph-sound-wave:before{content:"\f14b"}
9312
- .brz-ed .nc-glyph-soup:before{content:"\f14c"}
9313
- .brz-ed .nc-glyph-soy-sauce:before{content:"\f14d"}
9314
- .brz-ed .nc-glyph-spa:before{content:"\f14e"}
9315
- .brz-ed .nc-glyph-spaceship:before{content:"\f14f"}
9316
- .brz-ed .nc-glyph-speaker-01:before{content:"\f150"}
9317
- .brz-ed .nc-glyph-speaker-05:before{content:"\f151"}
9318
- .brz-ed .nc-glyph-speaker:before{content:"\f152"}
9319
- .brz-ed .nc-glyph-speechless:before{content:"\f153"}
9320
- .brz-ed .nc-glyph-spider:before{content:"\f154"}
9321
- .brz-ed .nc-glyph-spiteful:before{content:"\f155"}
9322
- .brz-ed .nc-glyph-split-33:before{content:"\f156"}
9323
- .brz-ed .nc-glyph-split-37:before{content:"\f157"}
9324
- .brz-ed .nc-glyph-split-horizontal:before{content:"\f158"}
9325
- .brz-ed .nc-glyph-split-round:before{content:"\f159"}
9326
- .brz-ed .nc-glyph-split-vertical:before{content:"\f15a"}
9327
- .brz-ed .nc-glyph-split:before{content:"\f15b"}
9328
- .brz-ed .nc-glyph-sport:before{content:"\f15c"}
9329
- .brz-ed .nc-glyph-spray-2:before{content:"\f15d"}
9330
- .brz-ed .nc-glyph-spray:before{content:"\f15e"}
9331
- .brz-ed .nc-glyph-square-add-08:before{content:"\f15f"}
9332
- .brz-ed .nc-glyph-square-add-11:before{content:"\f160"}
9333
- .brz-ed .nc-glyph-square-corner-down-left:before{content:"\f161"}
9334
- .brz-ed .nc-glyph-square-corner-down-right:before{content:"\f162"}
9335
- .brz-ed .nc-glyph-square-corner-up-left:before{content:"\f163"}
9336
- .brz-ed .nc-glyph-square-corner-up-right:before{content:"\f164"}
9337
- .brz-ed .nc-glyph-square-delete-10:before{content:"\f165"}
9338
- .brz-ed .nc-glyph-square-delete-13:before{content:"\f166"}
9339
- .brz-ed .nc-glyph-square-down-06:before{content:"\f167"}
9340
- .brz-ed .nc-glyph-square-down:before{content:"\f168"}
9341
- .brz-ed .nc-glyph-square-download:before{content:"\f169"}
9342
- .brz-ed .nc-glyph-square-left-04:before{content:"\f16a"}
9343
- .brz-ed .nc-glyph-square-left:before{content:"\f16b"}
9344
- .brz-ed .nc-glyph-square-marker:before{content:"\f16c"}
9345
- .brz-ed .nc-glyph-square-pin:before{content:"\f16d"}
9346
- .brz-ed .nc-glyph-square-remove-09:before{content:"\f16e"}
9347
- .brz-ed .nc-glyph-square-remove-12:before{content:"\f16f"}
9348
- .brz-ed .nc-glyph-square-right-03:before{content:"\f170"}
9349
- .brz-ed .nc-glyph-square-right:before{content:"\f171"}
9350
- .brz-ed .nc-glyph-square-simple-down:before{content:"\f172"}
9351
- .brz-ed .nc-glyph-square-simple-left:before{content:"\f173"}
9352
- .brz-ed .nc-glyph-square-simple-right:before{content:"\f174"}
9353
- .brz-ed .nc-glyph-square-simple-up:before{content:"\f175"}
9354
- .brz-ed .nc-glyph-square-up-05:before{content:"\f176"}
9355
- .brz-ed .nc-glyph-square-up:before{content:"\f177"}
9356
- .brz-ed .nc-glyph-square-upload:before{content:"\f178"}
9357
- .brz-ed .nc-glyph-squares:before{content:"\f179"}
9358
- .brz-ed .nc-glyph-stamp:before{content:"\f17a"}
9359
- .brz-ed .nc-glyph-standing-man:before{content:"\f17b"}
9360
- .brz-ed .nc-glyph-standing-woman:before{content:"\f17c"}
9361
- .brz-ed .nc-glyph-star:before{content:"\f17d"}
9362
- .brz-ed .nc-glyph-steak-2:before{content:"\f17e"}
9363
- .brz-ed .nc-glyph-steak:before{content:"\f17f"}
9364
- .brz-ed .nc-glyph-steering-wheel:before{content:"\f180"}
9365
- .brz-ed .nc-glyph-steps:before{content:"\f181"}
9366
- .brz-ed .nc-glyph-stock-2:before{content:"\f182"}
9367
- .brz-ed .nc-glyph-stock:before{content:"\f183"}
9368
- .brz-ed .nc-glyph-storage-hanger:before{content:"\f184"}
9369
- .brz-ed .nc-glyph-storage:before{content:"\f185"}
9370
- .brz-ed .nc-glyph-store:before{content:"\f186"}
9371
- .brz-ed .nc-glyph-strategy:before{content:"\f187"}
9372
- .brz-ed .nc-glyph-strawberry:before{content:"\f188"}
9373
- .brz-ed .nc-glyph-stre-down:before{content:"\f189"}
9374
- .brz-ed .nc-glyph-stre-left:before{content:"\f18a"}
9375
- .brz-ed .nc-glyph-stre-right:before{content:"\f18b"}
9376
- .brz-ed .nc-glyph-stre-up:before{content:"\f18c"}
9377
- .brz-ed .nc-glyph-stretch:before{content:"\f18d"}
9378
- .brz-ed .nc-glyph-strikethrough:before{content:"\f18e"}
9379
- .brz-ed .nc-glyph-strong-down:before{content:"\f18f"}
9380
- .brz-ed .nc-glyph-strong-left:before{content:"\f190"}
9381
- .brz-ed .nc-glyph-strong-right:before{content:"\f191"}
9382
- .brz-ed .nc-glyph-strong-up:before{content:"\f192"}
9383
- .brz-ed .nc-glyph-subscript:before{content:"\f193"}
9384
- .brz-ed .nc-glyph-subtitles:before{content:"\f194"}
9385
- .brz-ed .nc-glyph-sugar:before{content:"\f195"}
9386
- .brz-ed .nc-glyph-sun-cloud-drop:before{content:"\f196"}
9387
- .brz-ed .nc-glyph-sun-cloud-fog:before{content:"\f197"}
9388
- .brz-ed .nc-glyph-sun-cloud-hail:before{content:"\f198"}
9389
- .brz-ed .nc-glyph-sun-cloud-light:before{content:"\f199"}
9390
- .brz-ed .nc-glyph-sun-cloud-rain:before{content:"\f19a"}
9391
- .brz-ed .nc-glyph-sun-cloud-snow-54:before{content:"\f19b"}
9392
- .brz-ed .nc-glyph-sun-cloud-snow-55:before{content:"\f19c"}
9393
- .brz-ed .nc-glyph-sun-cloud:before{content:"\f19d"}
9394
- .brz-ed .nc-glyph-sun-fog-29:before{content:"\f19e"}
9395
- .brz-ed .nc-glyph-sun-fog-30:before{content:"\f19f"}
9396
- .brz-ed .nc-glyph-sun-fog-43:before{content:"\f1a0"}
9397
- .brz-ed .nc-glyph-sunglasses-48:before{content:"\f1a1"}
9398
- .brz-ed .nc-glyph-sunglasses-49:before{content:"\f1a2"}
9399
- .brz-ed .nc-glyph-sunglasses:before{content:"\f1a3"}
9400
- .brz-ed .nc-glyph-superscript:before{content:"\f1a4"}
9401
- .brz-ed .nc-glyph-supplement:before{content:"\f1a5"}
9402
- .brz-ed .nc-glyph-support-16:before{content:"\f1a6"}
9403
- .brz-ed .nc-glyph-support-17:before{content:"\f1a7"}
9404
- .brz-ed .nc-glyph-surf-2:before{content:"\f1a8"}
9405
- .brz-ed .nc-glyph-surf:before{content:"\f1a9"}
9406
- .brz-ed .nc-glyph-surprise:before{content:"\f1aa"}
9407
- .brz-ed .nc-glyph-sushi:before{content:"\f1ab"}
9408
- .brz-ed .nc-glyph-swap-horizontal:before{content:"\f1ac"}
9409
- .brz-ed .nc-glyph-swap-vertical:before{content:"\f1ad"}
9410
- .brz-ed .nc-glyph-swimsuit:before{content:"\f1ae"}
9411
- .brz-ed .nc-glyph-swimwear:before{content:"\f1af"}
9412
- .brz-ed .nc-glyph-swipe-bottom:before{content:"\f1b0"}
9413
- .brz-ed .nc-glyph-swipe-left:before{content:"\f1b1"}
9414
- .brz-ed .nc-glyph-swipe-right:before{content:"\f1b2"}
9415
- .brz-ed .nc-glyph-swipe-up:before{content:"\f1b3"}
9416
- .brz-ed .nc-glyph-swiss-knife:before{content:"\f1b4"}
9417
- .brz-ed .nc-glyph-sync:before{content:"\f1b5"}
9418
- .brz-ed .nc-glyph-syringe:before{content:"\f1b6"}
9419
- .brz-ed .nc-glyph-system-update:before{content:"\f1b7"}
9420
- .brz-ed .nc-glyph-table-left:before{content:"\f1b8"}
9421
- .brz-ed .nc-glyph-table-right:before{content:"\f1b9"}
9422
- .brz-ed .nc-glyph-table:before{content:"\f1ba"}
9423
- .brz-ed .nc-glyph-tablet-2:before{content:"\f1bb"}
9424
- .brz-ed .nc-glyph-tablet-button:before{content:"\f1bc"}
9425
- .brz-ed .nc-glyph-tablet-mobile:before{content:"\f1bd"}
9426
- .brz-ed .nc-glyph-tablet-reader-31:before{content:"\f1be"}
9427
- .brz-ed .nc-glyph-tablet-reader-42:before{content:"\f1bf"}
9428
- .brz-ed .nc-glyph-tablet-toolbar:before{content:"\f1c0"}
9429
- .brz-ed .nc-glyph-tablet:before{content:"\f1c1"}
9430
- .brz-ed .nc-glyph-tacos:before{content:"\f1c2"}
9431
- .brz-ed .nc-glyph-tactic:before{content:"\f1c3"}
9432
- .brz-ed .nc-glyph-tag-2:before{content:"\f1c4"}
9433
- .brz-ed .nc-glyph-tag-add:before{content:"\f1c5"}
9434
- .brz-ed .nc-glyph-tag-check:before{content:"\f1c6"}
9435
- .brz-ed .nc-glyph-tag-content:before{content:"\f1c7"}
9436
- .brz-ed .nc-glyph-tag-cut:before{content:"\f1c8"}
9437
- .brz-ed .nc-glyph-tag-line:before{content:"\f1c9"}
9438
- .brz-ed .nc-glyph-tag-loyalty:before{content:"\f1ca"}
9439
- .brz-ed .nc-glyph-tag-remove:before{content:"\f1cb"}
9440
- .brz-ed .nc-glyph-tag-sale:before{content:"\f1cc"}
9441
- .brz-ed .nc-glyph-tag:before{content:"\f1cd"}
9442
- .brz-ed .nc-glyph-tail-down:before{content:"\f1ce"}
9443
- .brz-ed .nc-glyph-tail-left:before{content:"\f1cf"}
9444
- .brz-ed .nc-glyph-tail-right:before{content:"\f1d0"}
9445
- .brz-ed .nc-glyph-tail-triangle-down:before{content:"\f1d1"}
9446
- .brz-ed .nc-glyph-tail-triangle-left:before{content:"\f1d2"}
9447
- .brz-ed .nc-glyph-tail-triangle-right:before{content:"\f1d3"}
9448
- .brz-ed .nc-glyph-tail-triangle-up:before{content:"\f1d4"}
9449
- .brz-ed .nc-glyph-tail-up:before{content:"\f1d5"}
9450
- .brz-ed .nc-glyph-tap-01:before{content:"\f1d6"}
9451
- .brz-ed .nc-glyph-tap-02:before{content:"\f1d7"}
9452
- .brz-ed .nc-glyph-tape:before{content:"\f1d8"}
9453
- .brz-ed .nc-glyph-target:before{content:"\f1d9"}
9454
- .brz-ed .nc-glyph-tea-bag:before{content:"\f1da"}
9455
- .brz-ed .nc-glyph-tea:before{content:"\f1db"}
9456
- .brz-ed .nc-glyph-temperature-23:before{content:"\f1dc"}
9457
- .brz-ed .nc-glyph-temperature-24:before{content:"\f1dd"}
9458
- .brz-ed .nc-glyph-temple-25:before{content:"\f1de"}
9459
- .brz-ed .nc-glyph-tennis-ball:before{content:"\f1df"}
9460
- .brz-ed .nc-glyph-tennis:before{content:"\f1e0"}
9461
- .brz-ed .nc-glyph-terrace:before{content:"\f1e1"}
9462
- .brz-ed .nc-glyph-text-2:before{content:"\f1e2"}
9463
- .brz-ed .nc-glyph-text:before{content:"\f1e3"}
9464
- .brz-ed .nc-glyph-texture:before{content:"\f1e4"}
9465
- .brz-ed .nc-glyph-ticket-75:before{content:"\f1e5"}
9466
- .brz-ed .nc-glyph-ticket-76:before{content:"\f1e6"}
9467
- .brz-ed .nc-glyph-tie-01:before{content:"\f1e7"}
9468
- .brz-ed .nc-glyph-tie-02:before{content:"\f1e8"}
9469
- .brz-ed .nc-glyph-tie-bow:before{content:"\f1e9"}
9470
- .brz-ed .nc-glyph-tile-55:before{content:"\f1ea"}
9471
- .brz-ed .nc-glyph-time-2:before{content:"\f1eb"}
9472
- .brz-ed .nc-glyph-time-3:before{content:"\f1ec"}
9473
- .brz-ed .nc-glyph-time-alarm:before{content:"\f1ed"}
9474
- .brz-ed .nc-glyph-time-clock:before{content:"\f1ee"}
9475
- .brz-ed .nc-glyph-time-countdown:before{content:"\f1ef"}
9476
- .brz-ed .nc-glyph-time:before{content:"\f1f0"}
9477
- .brz-ed .nc-glyph-timeline:before{content:"\f1f1"}
9478
- .brz-ed .nc-glyph-timer:before{content:"\f1f2"}
9479
- .brz-ed .nc-glyph-todo:before{content:"\f1f3"}
9480
- .brz-ed .nc-glyph-toilet-paper:before{content:"\f1f4"}
9481
- .brz-ed .nc-glyph-toilet:before{content:"\f1f5"}
9482
- .brz-ed .nc-glyph-tomato:before{content:"\f1f6"}
9483
- .brz-ed .nc-glyph-tool-blur:before{content:"\f1f7"}
9484
- .brz-ed .nc-glyph-tool-hand:before{content:"\f1f8"}
9485
- .brz-ed .nc-glyph-tool-select:before{content:"\f1f9"}
9486
- .brz-ed .nc-glyph-tooth:before{content:"\f1fa"}
9487
- .brz-ed .nc-glyph-touch:before{content:"\f1fb"}
9488
- .brz-ed .nc-glyph-track-delivery:before{content:"\f1fc"}
9489
- .brz-ed .nc-glyph-tracking:before{content:"\f1fd"}
9490
- .brz-ed .nc-glyph-tractor:before{content:"\f1fe"}
9491
- .brz-ed .nc-glyph-train-speed:before{content:"\f1ff"}
9492
- .brz-ed .nc-glyph-train:before{content:"\f200"}
9493
- .brz-ed .nc-glyph-tram:before{content:"\f201"}
9494
- .brz-ed .nc-glyph-transform-2d:before{content:"\f202"}
9495
- .brz-ed .nc-glyph-transform-origin:before{content:"\f203"}
9496
- .brz-ed .nc-glyph-transform:before{content:"\f204"}
9497
- .brz-ed .nc-glyph-transparent:before{content:"\f205"}
9498
- .brz-ed .nc-glyph-trash-round:before{content:"\f206"}
9499
- .brz-ed .nc-glyph-trash-simple:before{content:"\f207"}
9500
- .brz-ed .nc-glyph-trash:before{content:"\f208"}
9501
- .brz-ed .nc-glyph-treasure-map-21:before{content:"\f209"}
9502
- .brz-ed .nc-glyph-treasure-map-40:before{content:"\f20a"}
9503
- .brz-ed .nc-glyph-tree-01:before{content:"\f20b"}
9504
- .brz-ed .nc-glyph-tree-02:before{content:"\f20c"}
9505
- .brz-ed .nc-glyph-tree-03:before{content:"\f20d"}
9506
- .brz-ed .nc-glyph-tree-ball:before{content:"\f20e"}
9507
- .brz-ed .nc-glyph-tree:before{content:"\f20f"}
9508
- .brz-ed .nc-glyph-trend-down:before{content:"\f210"}
9509
- .brz-ed .nc-glyph-trend-up:before{content:"\f211"}
9510
- .brz-ed .nc-glyph-triangle-down-20:before{content:"\f212"}
9511
- .brz-ed .nc-glyph-triangle-down-65:before{content:"\f213"}
9512
- .brz-ed .nc-glyph-triangle-down:before{content:"\f214"}
9513
- .brz-ed .nc-glyph-triangle-left-18:before{content:"\f215"}
9514
- .brz-ed .nc-glyph-triangle-left-63:before{content:"\f216"}
9515
- .brz-ed .nc-glyph-triangle-left:before{content:"\f217"}
9516
- .brz-ed .nc-glyph-triangle-right-17:before{content:"\f218"}
9517
- .brz-ed .nc-glyph-triangle-right-62:before{content:"\f219"}
9518
- .brz-ed .nc-glyph-triangle-right:before{content:"\f21a"}
9519
- .brz-ed .nc-glyph-triangle-up-19:before{content:"\f21b"}
9520
- .brz-ed .nc-glyph-triangle-up-64:before{content:"\f21c"}
9521
- .brz-ed .nc-glyph-triangle-up:before{content:"\f21d"}
9522
- .brz-ed .nc-glyph-tripod:before{content:"\f21e"}
9523
- .brz-ed .nc-glyph-trolley:before{content:"\f21f"}
9524
- .brz-ed .nc-glyph-trophy:before{content:"\f220"}
9525
- .brz-ed .nc-glyph-truck-front:before{content:"\f221"}
9526
- .brz-ed .nc-glyph-trunk:before{content:"\f222"}
9527
- .brz-ed .nc-glyph-tshirt-53:before{content:"\f223"}
9528
- .brz-ed .nc-glyph-tshirt-54:before{content:"\f224"}
9529
- .brz-ed .nc-glyph-tshirt-sport:before{content:"\f225"}
9530
- .brz-ed .nc-glyph-turtle:before{content:"\f226"}
9531
- .brz-ed .nc-glyph-tv-2:before{content:"\f227"}
9532
- .brz-ed .nc-glyph-tv-old:before{content:"\f228"}
9533
- .brz-ed .nc-glyph-tv:before{content:"\f229"}
9534
- .brz-ed .nc-glyph-twitch:before{content:"\f22a"}
9535
- .brz-ed .nc-glyph-ui-03:before{content:"\f22b"}
9536
- .brz-ed .nc-glyph-ui-04:before{content:"\f22c"}
9537
- .brz-ed .nc-glyph-umbrella-13:before{content:"\f22d"}
9538
- .brz-ed .nc-glyph-umbrella-14:before{content:"\f22e"}
9539
- .brz-ed .nc-glyph-underline:before{content:"\f22f"}
9540
- .brz-ed .nc-glyph-underwear-man:before{content:"\f230"}
9541
- .brz-ed .nc-glyph-underwear:before{content:"\f231"}
9542
- .brz-ed .nc-glyph-undo-25:before{content:"\f233"}
9543
- .brz-ed .nc-glyph-undo-29:before{content:"\f232"}
9544
- .brz-ed .nc-glyph-ungroup:before{content:"\f234"}
9545
- .brz-ed .nc-glyph-unite-round:before{content:"\f235"}
9546
- .brz-ed .nc-glyph-unite:before{content:"\f236"}
9547
- .brz-ed .nc-glyph-upload-2:before{content:"\f237"}
9548
- .brz-ed .nc-glyph-upload:before{content:"\f238"}
9549
- .brz-ed .nc-glyph-upset-13:before{content:"\f239"}
9550
- .brz-ed .nc-glyph-upset-14:before{content:"\f23a"}
9551
- .brz-ed .nc-glyph-usb:before{content:"\f23b"}
9552
- .brz-ed .nc-glyph-user-balance:before{content:"\f23c"}
9553
- .brz-ed .nc-glyph-user-climb:before{content:"\f23d"}
9554
- .brz-ed .nc-glyph-user-frame-31:before{content:"\f23e"}
9555
- .brz-ed .nc-glyph-user-frame-32:before{content:"\f23f"}
9556
- .brz-ed .nc-glyph-user-frame-33:before{content:"\f240"}
9557
- .brz-ed .nc-glyph-user-meditation:before{content:"\f241"}
9558
- .brz-ed .nc-glyph-user-run:before{content:"\f242"}
9559
- .brz-ed .nc-glyph-user-snowboard:before{content:"\f243"}
9560
- .brz-ed .nc-glyph-user-swim:before{content:"\f244"}
9561
- .brz-ed .nc-glyph-user:before{content:"\f245"}
9562
- .brz-ed .nc-glyph-vampire:before{content:"\f246"}
9563
- .brz-ed .nc-glyph-vector-2:before{content:"\f247"}
9564
- .brz-ed .nc-glyph-vector:before{content:"\f248"}
9565
- .brz-ed .nc-glyph-vegan:before{content:"\f249"}
9566
- .brz-ed .nc-glyph-ventilation:before{content:"\f24a"}
9567
- .brz-ed .nc-glyph-vespa-front:before{content:"\f24b"}
9568
- .brz-ed .nc-glyph-vespa:before{content:"\f24c"}
9569
- .brz-ed .nc-glyph-vest-31:before{content:"\f24d"}
9570
- .brz-ed .nc-glyph-vest-sport:before{content:"\f24e"}
9571
- .brz-ed .nc-glyph-vest:before{content:"\f24f"}
9572
- .brz-ed .nc-glyph-video-64:before{content:"\f250"}
9573
- .brz-ed .nc-glyph-video-65:before{content:"\f251"}
9574
- .brz-ed .nc-glyph-video-66:before{content:"\f252"}
9575
- .brz-ed .nc-glyph-video-67:before{content:"\f253"}
9576
- .brz-ed .nc-glyph-videocamera-71:before{content:"\f254"}
9577
- .brz-ed .nc-glyph-videocamera-72:before{content:"\f255"}
9578
- .brz-ed .nc-glyph-virus:before{content:"\f256"}
9579
- .brz-ed .nc-glyph-voice-record:before{content:"\f257"}
9580
- .brz-ed .nc-glyph-volleyball:before{content:"\f258"}
9581
- .brz-ed .nc-glyph-volume-93:before{content:"\f259"}
9582
- .brz-ed .nc-glyph-volume-97:before{content:"\f25a"}
9583
- .brz-ed .nc-glyph-volume-98:before{content:"\f25b"}
9584
- .brz-ed .nc-glyph-volume-ban:before{content:"\f25c"}
9585
- .brz-ed .nc-glyph-volume-down:before{content:"\f25d"}
9586
- .brz-ed .nc-glyph-volume-off:before{content:"\f25e"}
9587
- .brz-ed .nc-glyph-volume-up:before{content:"\f25f"}
9588
- .brz-ed .nc-glyph-vpn:before{content:"\f260"}
9589
- .brz-ed .nc-glyph-waffle:before{content:"\f261"}
9590
- .brz-ed .nc-glyph-walk:before{content:"\f262"}
9591
- .brz-ed .nc-glyph-wallet-43:before{content:"\f263"}
9592
- .brz-ed .nc-glyph-wallet-44:before{content:"\f264"}
9593
- .brz-ed .nc-glyph-wallet-90:before{content:"\f265"}
9594
- .brz-ed .nc-glyph-wallet:before{content:"\f266"}
9595
- .brz-ed .nc-glyph-wand-11:before{content:"\f267"}
9596
- .brz-ed .nc-glyph-wardrobe:before{content:"\f268"}
9597
- .brz-ed .nc-glyph-wash-2:before{content:"\f269"}
9598
- .brz-ed .nc-glyph-wash-30:before{content:"\f26a"}
9599
- .brz-ed .nc-glyph-wash-60:before{content:"\f26b"}
9600
- .brz-ed .nc-glyph-wash-90:before{content:"\f26c"}
9601
- .brz-ed .nc-glyph-wash-hand:before{content:"\f26d"}
9602
- .brz-ed .nc-glyph-wash:before{content:"\f26e"}
9603
- .brz-ed .nc-glyph-washing-fluid:before{content:"\f26f"}
9604
- .brz-ed .nc-glyph-waste-danger:before{content:"\f270"}
9605
- .brz-ed .nc-glyph-waste-recycling:before{content:"\f272"}
9606
- .brz-ed .nc-glyph-waste:before{content:"\f271"}
9607
- .brz-ed .nc-glyph-watch-circle:before{content:"\f273"}
9608
- .brz-ed .nc-glyph-watch-dev:before{content:"\f274"}
9609
- .brz-ed .nc-glyph-watch-time:before{content:"\f275"}
9610
- .brz-ed .nc-glyph-watch:before{content:"\f276"}
9611
- .brz-ed .nc-glyph-water-hand:before{content:"\f277"}
9612
- .brz-ed .nc-glyph-water-sink:before{content:"\f278"}
9613
- .brz-ed .nc-glyph-water:before{content:"\f279"}
9614
- .brz-ed .nc-glyph-watermelon:before{content:"\f27a"}
9615
- .brz-ed .nc-glyph-wc:before{content:"\f27b"}
9616
- .brz-ed .nc-glyph-web-design:before{content:"\f27c"}
9617
- .brz-ed .nc-glyph-webcam-38:before{content:"\f27d"}
9618
- .brz-ed .nc-glyph-webcam-39:before{content:"\f27e"}
9619
- .brz-ed .nc-glyph-webpage-2:before{content:"\f27f"}
9620
- .brz-ed .nc-glyph-webpage:before{content:"\f280"}
9621
- .brz-ed .nc-glyph-weed:before{content:"\f281"}
9622
- .brz-ed .nc-glyph-weight:before{content:"\f282"}
9623
- .brz-ed .nc-glyph-what:before{content:"\f283"}
9624
- .brz-ed .nc-glyph-wheel-2:before{content:"\f284"}
9625
- .brz-ed .nc-glyph-wheel:before{content:"\f285"}
9626
- .brz-ed .nc-glyph-wheelchair:before{content:"\f286"}
9627
- .brz-ed .nc-glyph-whisk:before{content:"\f287"}
9628
- .brz-ed .nc-glyph-whiskers:before{content:"\f288"}
9629
- .brz-ed .nc-glyph-whistle:before{content:"\f289"}
9630
- .brz-ed .nc-glyph-white-house:before{content:"\f28a"}
9631
- .brz-ed .nc-glyph-widget:before{content:"\f28b"}
9632
- .brz-ed .nc-glyph-wifi-2:before{content:"\f28c"}
9633
- .brz-ed .nc-glyph-wifi-off:before{content:"\f28d"}
9634
- .brz-ed .nc-glyph-wifi-protected:before{content:"\f28e"}
9635
- .brz-ed .nc-glyph-wifi-router:before{content:"\f28f"}
9636
- .brz-ed .nc-glyph-wifi:before{content:"\f290"}
9637
- .brz-ed .nc-glyph-wind-2:before{content:"\f291"}
9638
- .brz-ed .nc-glyph-wind:before{content:"\f292"}
9639
- .brz-ed .nc-glyph-window-add:before{content:"\f293"}
9640
- .brz-ed .nc-glyph-window-code:before{content:"\f294"}
9641
- .brz-ed .nc-glyph-window-delete:before{content:"\f295"}
9642
- .brz-ed .nc-glyph-window-dev:before{content:"\f296"}
9643
- .brz-ed .nc-glyph-window-paragraph:before{content:"\f297"}
9644
- .brz-ed .nc-glyph-window-responsive:before{content:"\f298"}
9645
- .brz-ed .nc-glyph-window-zoom-in:before{content:"\f299"}
9646
- .brz-ed .nc-glyph-window-zoom-out:before{content:"\f29a"}
9647
- .brz-ed .nc-glyph-wine-list:before{content:"\f29b"}
9648
- .brz-ed .nc-glyph-wink-06:before{content:"\f29c"}
9649
- .brz-ed .nc-glyph-wink-11:before{content:"\f29d"}
9650
- .brz-ed .nc-glyph-wink-69:before{content:"\f29e"}
9651
- .brz-ed .nc-glyph-witch-hat:before{content:"\f29f"}
9652
- .brz-ed .nc-glyph-wolf:before{content:"\f2a0"}
9653
- .brz-ed .nc-glyph-woman-2:before{content:"\f2a1"}
9654
- .brz-ed .nc-glyph-woman-21:before{content:"\f2a2"}
9655
- .brz-ed .nc-glyph-woman-24:before{content:"\f2a3"}
9656
- .brz-ed .nc-glyph-woman-25:before{content:"\f2a4"}
9657
- .brz-ed .nc-glyph-woman-down:before{content:"\f2a5"}
9658
- .brz-ed .nc-glyph-woman-man:before{content:"\f2a6"}
9659
- .brz-ed .nc-glyph-woman-up:before{content:"\f2a7"}
9660
- .brz-ed .nc-glyph-woman:before{content:"\f2a8"}
9661
- .brz-ed .nc-glyph-wood:before{content:"\f2a9"}
9662
- .brz-ed .nc-glyph-wool-ball:before{content:"\f2aa"}
9663
- .brz-ed .nc-glyph-worl-marker:before{content:"\f2ab"}
9664
- .brz-ed .nc-glyph-world-2:before{content:"\f2ac"}
9665
- .brz-ed .nc-glyph-world-pin:before{content:"\f2ad"}
9666
- .brz-ed .nc-glyph-world:before{content:"\f2ae"}
9667
- .brz-ed .nc-glyph-yogurt:before{content:"\f2af"}
9668
- .brz-ed .nc-glyph-zip-54:before{content:"\f2b0"}
9669
- .brz-ed .nc-glyph-zip-55:before{content:"\f2b1"}
9670
- .brz-ed .nc-glyph-zombie:before{content:"\f2b2"}
9671
- .brz-ed .nc-glyph-zoom-100:before{content:"\f2b3"}
9672
- .brz-ed .nc-glyph-zoom-2:before{content:"\f2b4"}
9673
- .brz-ed .nc-glyph-zoom-88:before{content:"\f2b5"}
9674
- .brz-ed .nc-glyph-zoom-99:before{content:"\f2b6"}
9675
- .brz-ed .nc-glyph-zoom-bold-in:before{content:"\f2b7"}
9676
- .brz-ed .nc-glyph-zoom-bold-out:before{content:"\f2b8"}
9677
- .brz-ed .nc-glyph-zoom-bold:before{content:"\f2b9"}
9678
- .brz-ed .nc-glyph-zoom-e:before{content:"\f2ba"}
9679
- .brz-ed .nc-glyph-zoom-in:before{content:"\f2bb"}
9680
- .brz-ed .nc-glyph-zoom-out:before{content:"\f2bc"}
9681
- .brz-ed .nc-glyph-zoom-split-in:before{content:"\f2bd"}
9682
- .brz-ed .nc-glyph-zoom-split-out:before{content:"\f2be"}
9683
- .brz-ed .nc-glyph-zoom-split:before{content:"\f2bf"}
9684
- .brz-ed .nc-glyph-zoom-triangles:before{content:"\f2c0"}
9685
- .brz-ed .nc-glyph-zoom:before{content:"\f2c1"}
9686
- .brz-ed .nc-icon{display:inline-block;font-size:24px;line-height:1;font-weight:400;font-style:normal;font-variant:normal;speak:none;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
9687
- .brz-ed .nc-outline{font-family:"Nucleo Outline"}
9688
- .brz-ed .nc-glyph{font-family:"Nucleo Glyph"}
9689
- .brz-ed .nc-icon.rotate-90{-webkit-transform:rotate(90deg);transform:rotate(90deg)}
9690
- .brz-ed .nc-icon.rotate-180{-webkit-transform:rotate(180deg);transform:rotate(180deg)}
9691
- .brz-ed .nc-icon.rotate-270{-webkit-transform:rotate(270deg);transform:rotate(270deg)}
9692
- .brz-ed .nc-icon.flip-y{-webkit-transform:scale(-1,1);transform:scale(-1,1)}
9693
- .brz-ed .nc-icon.flip-x{-webkit-transform:scale(1,-1);transform:scale(1,-1)}
9694
- .brz-ed .brz-icon-svg{display:inline-block;width:1em;height:1em;stroke:none;max-width:none;position:relative;fill:currentColor;color:currentColor}
9695
- .brz-ed .brz-icon-svg use{fill:inherit}
9696
- .brz-ed .brz-icon-svg.grid-16{height:16px;width:16px}
9697
- .brz-ed .brz-icon-svg.grid-24{height:24px;width:24px}
9698
- .brz-ed .brz-icon-svg.glyph{fill:currentColor;stroke:none}
9699
- .brz-ed .brz-icon-svg.outline{stroke:currentColor;fill:none}
9700
- .brz-ed .brz-icon-svg.outline.stroke-2{stroke-width:2px}
9701
- .brz-ed .brz-control__select{font-family:nunito,"Open Sans",Arial,sans-serif;position:relative;width:112px}
9702
- .brz-ed .brz-control__select .brz-ed-scroll-pane .brz-ed-tall-thumb{width:8px;background-color:transparent;border-radius:4px}
9703
- .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}
9704
- .brz-ed .brz-control__select .brz-ed-scroll-pane .brz-ed-wide-thumb{height:3px;background-color:#7b7b7b;border-radius:2px;top:3px}
9705
- .brz-ed .brz-control__select .brz-ed-scroll-pane .brz-ed-tall-track{border-radius:0 4px 4px 0}
9706
- .brz-ed .brz-control__select.opened .brz-control__select-options{visibility:visible;opacity:1}
9707
- .brz-ed .brz-control__select .brz-ed-scroll-pane-content{border-right:none!important}
9708
- .brz-ed .brz-control__select--top-left .brz-control__select-options,.brz-ed .brz-control__select--top-right .brz-control__select-options{bottom:100%;margin-bottom:3px}
9709
- .brz-ed .brz-control__select--bottom-left .brz-control__select-options,.brz-ed .brz-control__select--bottom-right .brz-control__select-options{margin-top:3px}
9710
- .brz-ed .brz-control__select--bottom-left .brz-control__select-options,.brz-ed .brz-control__select--top-left .brz-control__select-options{left:0}
9711
- .brz-ed .brz-control__select--bottom-right .brz-control__select-options,.brz-ed .brz-control__select--top-right .brz-control__select-options{right:0}
9712
- .brz-ed .brz-control__select--active .brz-control__select-current{color:#3dbfe8}
9713
- .brz-ed .brz-control__select__auto{width:auto}
9714
- .brz-ed .brz-control__select-current{line-height:30px;height:30px;border-radius:4px;overflow:hidden}
9715
- .brz-ed .brz-control__select-current .brz-control__select-option{border-bottom-color:transparent!important;padding-right:20px;text-overflow:ellipsis;overflow:hidden}
9716
- .brz-ed .brz-icon-svg.brz-control__select--arrow{position:absolute;top:50%;right:12px;margin-top:-.5em;font-size:8px}
9717
- .brz-ed .brz-control__select-current__icon{width:auto;height:auto;font-size:0;line-height:1;cursor:pointer}
9718
- .brz-ed .brz-control__select-current__icon .brz-icon-svg{font-size:14px}
9719
- .brz-ed .brz-control__select-options{position:absolute;z-index:12;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}
9720
- .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}
9721
- .brz-ed .brz-control__select-optgroup-label,.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;overflow:hidden;text-overflow:ellipsis}
9722
- .brz-ed .brz-control__select-optgroup-label:last-child,.brz-ed .brz-control__select-option:last-child{border-bottom-color:transparent!important}
9723
- .brz-ed .brz-control__select-optgroup-label--icon .brz-control__select-option .brz-icon-svg,.brz-ed .brz-control__select-option--icon .brz-control__select-option .brz-icon-svg{width:100%}
9724
- .brz-ed .brz-control__select-optgroup-label--icon--bottom .brz-control__select-option__bg,.brz-ed .brz-control__select-option--icon--bottom .brz-control__select-option__bg{-webkit-transform:rotateX(180deg);transform:rotateX(180deg)}
9725
- .brz-ed .brz-control__select-optgroup-label{cursor:auto}
9726
- .brz-ed .brz-control__select-optgroup .brz-control__select-option{padding-left:20px;border-bottom-color:rgba(255,255,255,.07)!important}
9727
- .brz-ed .brz-control__select-optgroup:last-child .brz-control__select-option:last-child{border-bottom-color:transparent!important}
9728
- .brz-ed .brz-control__select--dark .brz-control__select-current,.brz-ed .brz-control__select--dark .brz-control__select-options{background-color:#383e48}
9729
- .brz-ed .brz-control__select--dark .brz-control__select-current{color:rgba(255,255,255,.85)}
9730
- .brz-ed .brz-control__select--dark .brz-control__select-current:hover{background-color:#383e48}
9731
- .brz-ed .brz-control__select--dark.brz-control__select--active .brz-control__select-current{color:#3dbfe8}
9732
- .brz-ed .brz-control__select--dark .brz-control__select-option{color:rgba(255,255,255,.85)}
9733
- .brz-ed .brz-control__select--dark .brz-control__select-current__icon{background-color:transparent}
9734
- .brz-ed .brz-control__select--dark .brz-control__select-current__icon:hover{background-color:transparent}
9735
- .brz-ed .brz-control__select--dark .brz-control__select-optgroup-label{color:#828b92}
9736
- .brz-ed .brz-control__select--light .brz-control__select-current,.brz-ed .brz-control__select--light .brz-control__select-options{background-color:#f2f2f2}
9737
- .brz-ed .brz-control__select--light .brz-control__select-current__icon{background-color:transparent}
9738
- .brz-ed .brz-control__select--light .brz-control__select-current__icon:hover{background-color:transparent}
9739
- .brz-ed .brz-control__select--light .brz-control__select-current{color:#656b6f}
9740
- .brz-ed .brz-control__select--light .brz-control__select-current:hover{background-color:#f2f2f2}
9741
- .brz-ed .brz-control__select--light .brz-control__select-option{color:#656b6f;border-bottom-color:#e6e6e6}
9742
- .brz-ed .brz-control__select--white .brz-control__select-current,.brz-ed .brz-control__select--white .brz-control__select-options{background-color:#fff}
9743
- .brz-ed .brz-control__select--white .brz-control__select-options{-webkit-box-shadow:0 1px 10px 0 rgba(18,34,35,.1);box-shadow:0 1px 10px 0 rgba(18,34,35,.1)}
9744
- .brz-ed .brz-control__select--white .brz-control__select-current__icon{background-color:transparent}
9745
- .brz-ed .brz-control__select--white .brz-control__select-current__icon:hover{background-color:transparent}
9746
- .brz-ed .brz-control__select--white .brz-control__select-current{color:#383e48}
9747
- .brz-ed .brz-control__select--white .brz-control__select-current:hover{background-color:#fff}
9748
- .brz-ed .brz-control__select--white .brz-control__select-option{color:#383e48;border-bottom-color:rgba(71,76,84,.07)}
9749
- .brz-ed .brz-control__select--small .brz-control__select{width:62px}
9750
- .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}
9751
- .brz-ed .brz-control__select--medium .brz-control__select-option{font-size:14px;padding-left:15px;padding-right:15px}
9752
- .brz-ed .brz-control__select--medium .brz-control__select--arrow{font-size:10px;right:14px}
9753
- .brz-ed .brz-control__select--full-width{width:100%}
9754
- .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}
9755
- .brz-ed .brz-ed-popup-control__select--light .brz-control__select-current{color:#3dbfe8}
9756
- .brz-ed .brz-ed-popup-control__select--light .brz-control__select-current:hover{background-color:#fff}
9757
- .brz-ed .brz-ed-popup-control__select--light .brz-control__select-current .brz-control__select-option{color:#3dbfe8}
9758
- .brz-ed .brz-ed-popup-control__select--light .brz-control__select-option{color:#292e37}
9759
- .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}
9760
- .brz-ed .brz-ed-popup-control-select-light.opened .brz-control__select-current{border-bottom-left-radius:0;border-bottom-right-radius:0}
9761
- .brz-ed .brz-ed-popup-control-select-light.opened .brz-control__select-current .brz-control__select-option{border-bottom:1px solid #f4f4f4!important}
9762
- .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}
9763
- .brz-ed .brz-ed-popup-control-select-light.brz-control__select{width:300px}
9764
- .brz-ed .brz-ed-popup-control-select-light .brz-control__select-current{background-color:#fff;height:40px;color:#3dbfe8;font-size:14px;font-family:nunito,"Open Sans",Arial,sans-serif;font-weight:400}
9765
- .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}
9766
- .brz-ed .brz-ed-popup-control-select-light .brz-control__select-current .brz-control__select-option{border-bottom:0;color:#3dbfe8}
9767
- .brz-ed .brz-ed-popup-control-select-light .brz-control__select-current .brz-control__select-option:hover{background-color:#fff;color:#3dbfe8}
9768
- .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}
9769
- .brz-ed .brz-ed-popup-control-select-light .brz-control__select-option{font-size:14px;height:40px;line-height:41px;font-family:nunito,"Open Sans",Arial,sans-serif;padding-left:15px;padding-right:15px;letter-spacing:.1px;color:rgba(41,46,55,.8);border-bottom:0}
9770
- .brz-ed .brz-ed-popup-control-select-light .brz-control__select-option:not(:first-child){border-top:1px solid #f4f4f4}
9771
- .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}
9772
- .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}
9773
- .brz-ed .brz-ed-popup-control-select-light .brz-ed-scroll-pane .brz-ed-tall-thumb:after{opacity:0}
9774
- .brz-ed .brz-ed-popup-control-select-light .brz-ed-scroll-pane .brz-ed-tall-track{width:5px;right:4px}
9775
- .brz-ed .brz-control__select-population .brz-control__select-current{color:#fff;font-size:0;-webkit-transition:.2s linear color;transition:.2s linear color}
9776
- .brz-ed .brz-control__select-population .brz-control__select-current:hover{color:#3dbfe8!important;-webkit-transition:.2s linear color;transition:.2s linear color}
9777
- .brz-ed .brz-control__select-population.brz-control__select--active .brz-control__select-current{color:#fff}
9778
- .brz-ed .brz-control__select-population.opened .brz-control__select-current{color:#3dbfe8}
9779
- .brz-ed .brz-control__select-population .brz-control__select-options{width:120px}
9780
- .brz-ed .brz-control__portal-select{position:static}
9781
- .brz-ed .brz-control__portal-select .brz-control__select-options{z-index:1110;opacity:1;visibility:visible;min-width:auto}
9782
- .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}
9783
- .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}
9784
- .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)}
9785
- .brz-ed .brz-ed-control__switch--check{left:5px;opacity:0}
9786
- .brz-ed .brz-ed-control__switch--un-check{right:5px}
9787
- .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}
9788
- .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%)}
9789
- .brz-ed .brz-ed-control__switch--handle:before{top:10px}
9790
- .brz-ed .brz-ed-control__switch--handle:after{height:7px;border-bottom:1px solid #34beea}
9791
- .brz-ed .brz-ed-control__switch-input{position:absolute;top:0;left:0;opacity:0}
9792
- .brz-ed .brz-ed-control__switch-input:checked~.brz-ed-control__switch-arrows{background:#3dbfe8}
9793
- .brz-ed .brz-ed-control__switch-input:checked~.brz-ed-control__switch-arrows .brz-ed-control__switch--check{opacity:1}
9794
- .brz-ed .brz-ed-control__switch-input:checked~.brz-ed-control__switch-arrows .brz-ed-control__switch--un-check{opacity:0}
9795
- .brz-ed .brz-ed-control__switch-input:checked~.brz-ed-control__switch--handle{left:25px}
9796
- .brz-ed .brz-ed-control__switch--light .brz-ed-control__switch-arrows{background:#c7c9cd}
9797
- .brz-ed .brz-ed-control__switch--light .brz-ed-control__switch--handle:after{border-top-color:#bfbfbf;border-bottom-color:#bfbfbf}
9798
- .brz-ed .brz-ed-control__switch--light .brz-ed-control__switch--handle:before{border-top-color:#bfbfbf}
9799
- .brz-ed .brz-ed-control__slider .brz-ed-control__slider--value{position:relative;cursor:pointer}
9800
- .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}
9801
- .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}
9802
- .brz-ed .brz-ed-control__slider .ui-slider-vertical:before{bottom:-8px}
9803
- .brz-ed .brz-ed-control__slider .ui-slider-vertical:after{top:-8px}
9804
- .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}
9805
- .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}
9806
- .brz-ed .brz-ed-control__slider .ui-slider-horizontal:before{left:-9px}
9807
- .brz-ed .brz-ed-control__slider .ui-slider-horizontal:after{right:-9px}
9808
- .brz-ed .brz-ed-control__slider .ui-slider-horizontal .ui-slider-handle{top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);margin-left:-9px}
9809
- .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%)}
9810
- .brz-ed .brz-ed-control__slider .ui-slider-horizontal .ui-slider-handle:after{top:6px}
9811
- .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}
9812
- .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%)}
9813
- .brz-ed .brz-ed-control__slider .ui-slider-handle:after{height:7px;border-bottom:1px solid #3dbfe8}
9814
- .brz-ed .brz-ed-control__slider .ui-state-default,.brz-ed .brz-ed-control__slider .ui-widget-content{border:0}
9815
- .brz-ed .brz-ed-option__slider--brightness .brz-icon-svg,.brz-ed .brz-ed-option__slider--contrast .brz-icon-svg,.brz-ed .brz-ed-option__slider--hue .brz-icon-svg,.brz-ed .brz-ed-option__slider--saturation .brz-icon-svg{color:#fff}
9816
- .brz-ed .brz-ed-option__slider--hue .rc-slider-rail{background-image:-webkit-gradient(linear,right top,left top,color-stop(0,#e1451d),color-stop(17%,#fdff47),color-stop(50%,#86f9fe),color-stop(65%,#2900f8),color-stop(74%,#6e00f8),color-stop(83%,#e33df9),to(#e14423));background-image:linear-gradient(to left,#e1451d 0,#fdff47 17%,#86f9fe 50%,#2900f8 65%,#6e00f8 74%,#e33df9 83%,#e14423 100%)}
9817
- .brz-ed .brz-ed-option__slider--saturation .rc-slider-rail{background-image:-webkit-gradient(linear,left top,right top,color-stop(30%,#40444d),to(#0fe6a2));background-image:linear-gradient(to right,#40444d 30%,#0fe6a2 100%)}
9818
- .brz-ed .brz-ed-option__slider--brightness .rc-slider-rail{background-image:-webkit-gradient(linear,left top,right top,from(#40444d),to(#f8f9fc));background-image:linear-gradient(to right,#40444d 0,#f8f9fc 100%)}
9819
- .brz-ed .brz-ed-option__slider--contrast .rc-slider-rail{background-color:#454a50}
9820
- .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}
9821
- .brz-ed .rc-slider *{-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-tap-highlight-color:transparent}
9822
- .brz-ed .rc-slider-rail{position:relative;display:block;width:calc(100% + 18px);height:4px;background-color:#3dbfe8;border-radius:4px;left:-9px}
9823
- .brz-ed .rc-slider-track{display:none}
9824
- .brz-ed .rc-slider-handle{position:absolute;display:inline-block;outline:0;width:18px;height:18px;top:50%;left:50%;margin-top:-9px;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}
9825
- .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%)}
9826
- .brz-ed .rc-slider-handle:before{top:6px}
9827
- .brz-ed .rc-slider-handle:after{height:4px;border-bottom:1px solid #3dbfe8;top:9px}
9828
- .brz-ed .rc-slider-handle:hover{border-color:#57c5f7}
9829
- .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}
9830
- .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}
9831
- .brz-ed .rc-slider-mark{position:absolute;top:18px;left:0;width:100%;font-size:12px}
9832
- .brz-ed .rc-slider-mark-text{position:absolute;display:inline-block;vertical-align:middle;text-align:center;cursor:pointer;color:#999}
9833
- .brz-ed .rc-slider-mark-text-active{color:#666}
9834
- .brz-ed .rc-slider-step{position:absolute;width:100%;height:4px;background:0 0}
9835
- .brz-ed .rc-slider-dot{position:absolute;bottom:-2px;margin-left:-4px;width:8px;height:8px;border:2px solid #e9e9e9;background-color:#fff;cursor:pointer;border-radius:50%;vertical-align:middle}
9836
- .brz-ed .rc-slider-dot-active{border-color:#96dbfa}
9837
- .brz-ed .rc-slider-disabled{background-color:#e9e9e9}
9838
- .brz-ed .rc-slider-disabled .rc-slider-track{background-color:#ccc}
9839
- .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}
9840
- .brz-ed .rc-slider-disabled .rc-slider-dot,.brz-ed .rc-slider-disabled .rc-slider-mark-text{cursor:not-allowed!important}
9841
- .brz-ed .rc-slider-vertical{width:14px;height:100px;padding:0 5px}
9842
- .brz-ed .rc-slider-vertical .rc-slider-rail{height:100%;width:4px}
9843
- .brz-ed .rc-slider-vertical .rc-slider-track{left:5px;bottom:0;width:4px}
9844
- .brz-ed .rc-slider-vertical .rc-slider-handle{margin-left:-5px;margin-bottom:-7px;-ms-touch-action:pan-y;touch-action:pan-y}
9845
- .brz-ed .rc-slider-vertical .rc-slider-mark{top:0;left:18px;height:100%}
9846
- .brz-ed .rc-slider-vertical .rc-slider-step{height:100%;width:4px}
9847
- .brz-ed .rc-slider-vertical .rc-slider-dot{left:2px;margin-bottom:-4px}
9848
- .brz-ed .rc-slider-vertical .rc-slider-dot:first-child{margin-bottom:-4px}
9849
- .brz-ed .rc-slider-vertical .rc-slider-dot:last-child{margin-bottom:-4px}
9850
- .brz-ed .rc-slider-tooltip-zoom-down-appear,.brz-ed .rc-slider-tooltip-zoom-down-enter{-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}
9851
- .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}
9852
- .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:brz-rcSliderTooltipZoomDownIn;animation-name:brz-rcSliderTooltipZoomDownIn;-webkit-animation-play-state:running;animation-play-state:running}
9853
- .brz-ed .rc-slider-tooltip-zoom-down-leave.rc-slider-tooltip-zoom-down-leave-active{-webkit-animation-name:brz-rcSliderTooltipZoomDownOut;animation-name:brz-rcSliderTooltipZoomDownOut;-webkit-animation-play-state:running;animation-play-state:running}
9854
- .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)}
9855
- .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)}
9856
- .brz-ed .rc-slider-tooltip{position:absolute;left:-9999px;top:-9999px;visibility:visible;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-tap-highlight-color:transparent}
9857
- .brz-ed .rc-slider-tooltip *{-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-tap-highlight-color:transparent}
9858
- .brz-ed .rc-slider-tooltip-hidden{display:none}
9859
- .brz-ed .rc-slider-tooltip-placement-top{padding:4px 0 8px}
9860
- .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}
9861
- .brz-ed .rc-slider-tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}
9862
- .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}
9863
- .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}
9864
- .brz-ed .brz-ed-control__stepper--arrows,.brz-ed .brz-ed-control__stepper--value{position:relative;min-width:0}
9865
- .brz-ed .brz-ed-control__stepper--value{font-family:nunito,"Open Sans",Arial,sans-serif;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;max-width:100%}
9866
- .brz-ed .brz-ed-control__stepper--value .brz-ed-control__input,.brz-ed .brz-ed-control__stepper--value .brz-ed-option__input__population{max-width:100%;padding:0}
9867
- .brz-ed .brz-ed-control__stepper--arrows{width:35%;-ms-flex-preferred-size:35%;flex-basis:35%;height:30px}
9868
- .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}
9869
- .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}
9870
- .brz-ed .brz-ed-control__stepper--down:hover,.brz-ed .brz-ed-control__stepper--up:hover{color:#3dbfe8}
9871
- .brz-ed .brz-ed-control__stepper--up{top:0}
9872
- .brz-ed .brz-ed-control__stepper--up .brz-icon-svg{bottom:1px}
9873
- .brz-ed .brz-ed-control__stepper--down{bottom:0}
9874
- .brz-ed .brz-ed-control__stepper--down .brz-icon-svg{top:1px}
9875
- .brz-ed .brz-ed-control-radio-option{color:#626b70;-webkit-transition:.2s linear color;transition:.2s linear color}
9876
- .brz-ed .brz-ed-control-radio-option--active{color:#3dbfe8;-webkit-transition:.2s linear color;transition:.2s linear color}
9877
- .brz-ed .brz-ed-control-radio-option:hover{color:#3dbfe8;-webkit-transition:.2s linear color;transition:.2s linear color}
9878
- .brz-ed .brz-ed-control__tabs .brz-ed-control__tab{margin:0}
9879
- .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:#828b92;font-family:nunito,"Open Sans",Arial,sans-serif;font-size:13px;float:none}
9880
- .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:0 0 -1px;padding-top:2px;width:auto}
9881
- .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}
9882
- .brz-ed .brz-ed-control__tabs:not(.brz-ed-control__tabs__left) .brz-ed-control__tab.active{border-bottom-color:#3dbfe8}
9883
- .brz-ed .brz-ed-control__tabs:not(.brz-ed-control__tabs__left) .brz-ed-control__tab:not(:last-child){margin-right:15px}
9884
- .brz-ed .brz-ed-control__tabs:not(.brz-ed-control__tabs__left) .brz-ed-control__tab__icon{height:42px}
9885
- .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}
9886
- .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}
9887
- .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}
9888
- .brz-ed .brz-ed-control__tabs__left .brz-ed-control__tab{width:30px;height:35px;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:7px;border-bottom-left-radius:7px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-left:11px;color:#fff;font-size:13px;cursor:pointer;margin:0 0 1px;position:relative;left:8px}
9889
- .brz-ed .brz-ed-control__tabs__left .brz-ed-control__tab.active{color:#3dbfe8;background-color:rgba(3,8,15,.92)}
9890
- .brz-ed .brz-ed-control__tabs__editor.brz-ed-control__tabs__editor{width:144px;margin-left:10px;margin-right:10px;padding:0}
9891
- .brz-ed .brz-ed-control__tabs__editor.brz-ed-control__tabs__editor+.brz-ed-control__tab__content{margin-bottom:-9px}
9892
- .brz-ed .brz-ed-input__search{position:absolute;border:none;background:0 0;color:rgba(255,255,255,.6);outline:0;font-size:13px;text-indent:10px;padding:0 35px 0 0;width:100%}
9893
- .brz-ed .brz-ed-input__search:active,.brz-ed .brz-ed-input__search:focus{background:0 0;color:rgba(255,255,255,.6)}
9894
- .brz-ed .brz-ed-input__search::-webkit-input-placeholder{color:rgba(234,241,255,.2);font-style:italic;font-size:1em;letter-spacing:.25px}
9895
- .brz-ed .brz-ed-input__search--auto-complete{color:#fff}
9896
- .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}
9897
- .brz-ed .brz-ed-input__search__icon.active{color:#3dbfe8}
9898
- .brz-ed .brz-ed-control-multiPicker--body{margin-top:20px}
9899
- .brz-ed .brz-ed-sidebar-row .brz-ed-options--multi-picker{display:block}
9900
- .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}
9901
- .brz-ed .brz-ed-control__radio-group--active{color:#3dbfe8}
9902
- .brz-ed .brz-ed-tooltip__content{position:relative;z-index:1}
9903
- .brz-ed .brz-ed-tooltip__overlay{position:absolute;top:0;left:0;z-index:1100}
9904
- .brz-ed .brz-ed-tooltip--auto{width:auto}
9905
- .brz-ed .brz-ed-tooltip--small{width:171px}
9906
- .brz-ed .brz-ed-tooltip--medium{width:255px}
9907
- .brz-ed .brz-ed-tooltip--big{width:305px}
9908
- .brz-ed .brz-ed-popover__inner.brz-ed-tooltip--large,.brz-ed .brz-ed-tooltip--large{width:385px}
9909
- .brz-ed .brz-ed-tooltip__static{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}
9910
- .brz-ed .brz-ed-tooltip__static .brz-ed-tooltip--top-center{top:auto;bottom:calc(100% + 9px);left:auto}
9911
- .brz-ed .brz-ed-tooltip__static .brz-ed-tooltip--bottom-center{top:calc(100% + 9px);left:auto}
9912
- .brz-ed .brz-ed-tooltip__static .brz-ed-tooltip--bottom-right,.brz-ed .brz-ed-tooltip__static .brz-ed-tooltip--top-right{left:auto;right:-15px}
9913
- .brz-ed .brz-ed-tooltip__static .brz-ed-tooltip--bottom-left,.brz-ed .brz-ed-tooltip__static .brz-ed-tooltip--top-left{left:-15px}
9914
- .brz-ed .brz-ed-tooltip__static .brz-ed-tooltip--top-left,.brz-ed .brz-ed-tooltip__static .brz-ed-tooltip--top-right{top:auto;bottom:calc(100% + 9px)}
9915
- .brz-ed .brz-ed-tooltip__static .brz-ed-tooltip--bottom-left,.brz-ed .brz-ed-tooltip__static .brz-ed-tooltip--bottom-right{top:calc(100% + 9px)}
9916
- .brz-ed .brz-ed-tooltip--delay-1{-webkit-animation-delay:.6s;animation-delay:.6s}
9917
- .brz-ed .brz-ed-tooltip--delay-2{-webkit-animation-delay:1s;animation-delay:1s}
9918
- .brz-ed .brz-ed-tooltip-content__pro{font-family:nunito,"Open Sans",Arial,sans-serif;font-weight:600;color:rgba(255,255,255,.8);padding:18px 18px 18px 22px;font-size:13px;line-height:18px;text-align:left}
9919
- .brz-ed .brz-ed-tooltip-content__pro-title{margin-bottom:17px}
9920
- .brz-ed .brz-ed-tooltip-content__pro-body .brz-icon-svg{font-size:10px;margin-right:8px}
9921
- .brz-ed .brz-ed-tooltip-content__pro .brz-p{font-size:inherit;font-weight:600}
9922
- .brz-ed .brz-ed-control__focal-point{position:relative;text-align:center}
9923
- .brz-ed .brz-ed-control__focal-point:after{display:inline-block;height:100%;vertical-align:middle;content:""}
9924
- .brz-ed .brz-ed-control__focal-point__setter{text-align:center;display:inline-block;vertical-align:middle;position:relative;width:100%}
9925
- .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)}
9926
- .brz-ed .brz-ed-control__focal-point__setter .brz-img{max-width:140px;max-height:140px;height:100%}
9927
- .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}
9928
- .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}
9929
- .brz-ed .brz-ed-control__focal-point__upload:hover{border-color:#5e6470;color:#5e646f}
9930
- .brz-ed .brz-ed-control__focal-point__upload .brz-icon-svg{font-size:inherit!important}
9931
- .brz-ed .brz-ed-control__focal-point__upload--loading{cursor:progress}
9932
- .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}
9933
- .brz-ed .brz-ed-control__focal-point__delete .brz-icon-svg{font-size:inherit!important}
9934
- .brz-ed .brz-ed-control__focal-point__label--disable .brz-ed-control__focal-point__upload{cursor:no-drop}
9935
- .brz-ed .brz-ed-control__icon-setter{position:relative}
9936
- .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}
9937
- .brz-ed .brz-ed-control__icon-setter__box:hover{border-color:#5e6470;color:#5e646f}
9938
- .brz-ed .brz-ed-control__icon-setter--active{color:#fff;display:inline-block;font-size:0}
9939
- .brz-ed .brz-ed-control__input,.brz-ed .brz-ed-option__input__population{font-family:nunito,"Open Sans",Arial,sans-serif;font-size:13px;font-style:normal;font-weight:400;letter-spacing:0;background:#383e48 none;color:#fff;width:auto;-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;outline:0;-webkit-box-shadow:none;box-shadow:none;text-shadow:none;text-align:left;margin-left:auto;-moz-appearance:textfield}
9940
- .brz-ed .brz-ed-control__input:active,.brz-ed .brz-ed-control__input:focus,.brz-ed .brz-ed-option__input__population:active,.brz-ed .brz-ed-option__input__population:focus{background-color:#383e48;color:#fff}
9941
- .brz-ed .brz-ed-control__input::-webkit-inner-spin-button,.brz-ed .brz-ed-control__input::-webkit-outer-spin-button,.brz-ed .brz-ed-option__input__population::-webkit-inner-spin-button,.brz-ed .brz-ed-option__input__population::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}
9942
- .brz-ed .brz-ed-control__input::-webkit-input-placeholder,.brz-ed .brz-ed-option__input__population::-webkit-input-placeholder{color:rgba(234,241,255,.2);font-style:italic;font-size:1em}
9943
- .brz-ed .brz-ed-control__input:-moz-placeholder,.brz-ed .brz-ed-option__input__population:-moz-placeholder{color:rgba(234,241,255,.2);font-style:italic;font-size:1em}
9944
- .brz-ed .brz-ed-control__input::-moz-placeholder,.brz-ed .brz-ed-option__input__population::-moz-placeholder{color:rgba(234,241,255,.2);font-style:italic;font-size:1em}
9945
- .brz-ed .brz-ed-control__input:-ms-input-placeholder,.brz-ed .brz-ed-option__input__population:-ms-input-placeholder{color:rgba(234,241,255,.2);font-style:italic;font-size:1em}
9946
- .brz-ed .brz-ed-control__input--large{max-width:136px}
9947
- .brz-ed .brz-ed-control__input--medium{max-width:112px}
9948
- .brz-ed .brz-ed-control__input--small{max-width:62px}
9949
- .brz-ed .brz-ed-control__input--auto{max-width:100%}
9950
- .brz-ed .brz-ed-control__textarea{font-family:nunito,"Open Sans",Arial,sans-serif;font-size:13px;letter-spacing:.25px;line-height:22px;background-color:#383e48;color:#fff;width:auto;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;height:136px;padding:5px 10px;border-radius:4px;border:0;outline:0;resize:none}
9951
- .brz-ed .brz-ed-control__textarea::-webkit-input-placeholder{color:rgba(234,241,255,.2);font-style:italic;font-size:1em}
9952
- .brz-ed .brz-ed-control__textarea:-moz-placeholder{color:rgba(234,241,255,.2);font-style:italic;font-size:1em}
9953
- .brz-ed .brz-ed-control__textarea::-moz-placeholder{color:rgba(234,241,255,.2);font-style:italic;font-size:1em}
9954
- .brz-ed .brz-ed-control__textarea:-ms-input-placeholder{color:rgba(234,241,255,.2);font-style:italic;font-size:1em}
9955
- .brz-ed .brz-ed-control__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}
9956
- .brz-ed .brz-ed-control__color-palette__item{width:18px;height:18px;border-radius:2px;margin-left:2px;cursor:pointer;border:1px solid #3a3d43}
9957
- .brz-ed .brz-ed-control__color-palette__item:first-child{margin-left:0}
9958
- .brz-ed .brz-ed-control__color-palette__item.active{border:2px solid #fff}
9959
- .brz-ed .brz-ed-control__color-palette__icon{cursor:pointer;font-size:14px;margin-left:5px;display:-webkit-box;display:-ms-flexbox;display:flex;color:#828b92;-webkit-transition:color .2s linear;transition:color .2s linear}
9960
- .brz-ed .brz-ed-control__color-palette__icon:hover{color:#3dbfe8}
9961
- .brz-ed .brz-ed-control__color-palette-editor{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}
9962
- .brz-ed .brz-ed-control__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}
9963
- .brz-ed .brz-ed-control__color-palette-editor__item.active,.brz-ed .brz-ed-control__color-palette-editor__item:hover{border:2px solid #3dbfe8}
9964
- .brz-ed .brz-ed-control__color-palette-editor__item:first-child{margin-left:0}
9965
- .brz-ed .brz-ed-sidebar-control__color-palette2-editor{margin-bottom:32px!important}
9966
- .brz-ed .color-picker-body{margin-bottom:2px;display:-webkit-box;display:-ms-flexbox;display:flex}
9967
- .brz-ed .color-picker-body .color-picker-saturation{width:153px;height:153px;position:relative;cursor:move}
9968
- .brz-ed .color-picker-body .color-picker-saturation>div{border-radius:3px 3px 4px 4px}
9969
- .brz-ed .color-picker-body .color-picker-saturation .color-picker-saturation-body{position:absolute;top:0;right:0;bottom:0;left:0}
9970
- .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(rgba(0,0,0,0)));background:linear-gradient(to top,#000,rgba(0,0,0,0))}
9971
- .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))}
9972
- .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}
9973
- .brz-ed .color-picker-body .color-picker-saturation .color-picker-saturation-body .saturation-pointer{position:absolute;cursor:move}
9974
- .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)}
9975
- .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}
9976
- .brz-ed .color-picker-body .color-picker-alpha .hue-vertical,.brz-ed .color-picker-body .color-picker-hue .hue-vertical{border-radius:3px}
9977
- .brz-ed .color-picker-body .color-picker-hue .hue{position:absolute;top:0;right:0;bottom:0;left:0}
9978
- .brz-ed .color-picker-body .color-picker-hue .hue-container{padding:0 2px;position:relative;height:100%}
9979
- .brz-ed .color-picker-body .color-picker-hue .hue-pointer{position:absolute}
9980
- .brz-ed .color-picker-body .color-picker-hue .color-picker-pointer{-webkit-transform:translate(-1px,-7px);transform:translate(-1px,-7px)}
9981
- .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)}
9982
- .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%)}
9983
- .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%)}
9984
- .brz-ed .color-picker-body .color-picker-alpha{background-color:#fff;border-radius:3px 3px 4px 4px}
9985
- .brz-ed .color-picker-body .color-picker-alpha div:not(.color-picker-pointer){border-radius:3px}
9986
- .brz-ed .color-picker-body .color-picker-alpha div>div>div:not(.color-picker-pointer){background-size:8px!important}
9987
- .brz-ed .color-picker-body .color-picker-alpha .color-picker-pointer{-webkit-transform:translate(-4px,-7px);transform:translate(-4px,-7px);position:relative}
9988
- .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:nunito,"Open Sans",Arial,sans-serif;color:rgba(255,255,255,.85)}
9989
- .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)}
9990
- .brz-ed .color-picker-body .color-picker-alpha .color-picker-alpha-body{position:absolute;top:0;left:0;bottom:0;right:0}
9991
- .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}
9992
- .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}
9993
- .brz-ed .color-picker-body .color-picker-alpha .color-picker-alpha-body .color-picker-alpha-container{position:relative;height:100%;margin:0 3px}
9994
- .brz-ed .color-picker-body .color-picker-alpha .color-picker-alpha-body .color-picker-alpha-container .color-picker-alpha-pointer{position:absolute}
9995
- .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)}
9996
- .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}
9997
- .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}
9998
- .brz-ed .color-picker-preset-colors .color-picker-swatch-wrap{width:20px;height:20px;margin-left:2px}
9999
- .brz-ed .brz-ed-control__colorPicker2{position:relative}
10000
- .brz-ed .color-picker2-body{margin-bottom:2px;display:-webkit-box;display:-ms-flexbox;display:flex}
10001
- .brz-ed .color-picker2-body .color-picker2-saturation{width:153px;height:153px;position:relative;cursor:move}
10002
- .brz-ed .color-picker2-body .color-picker2-saturation>div{border-radius:3px 3px 4px 4px}
10003
- .brz-ed .color-picker2-body .color-picker2-saturation .color-picker2-saturation-body{position:absolute;top:0;right:0;bottom:0;left:0}
10004
- .brz-ed .color-picker2-body .color-picker2-saturation .color-picker2-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(rgba(0,0,0,0)));background:linear-gradient(to top,#000,rgba(0,0,0,0))}
10005
- .brz-ed .color-picker2-body .color-picker2-saturation .color-picker2-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))}
10006
- .brz-ed .color-picker2-body .color-picker2-saturation .color-picker2-saturation-body .color-picker2-pointer{width:16px;height:16px;-webkit-transform:translate(-8px,-8px);transform:translate(-8px,-8px);cursor:move}
10007
- .brz-ed .color-picker2-body .color-picker2-saturation .color-picker2-saturation-body .saturation-pointer{position:absolute;cursor:move}
10008
- .brz-ed .color-picker2-body .color-picker2-saturation .color-picker2-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)}
10009
- .brz-ed .color-picker2-body .color-picker2-alpha,.brz-ed .color-picker2-body .color-picker2-hue{position:relative;height:153px;width:12px;margin-left:10px;cursor:ns-resize}
10010
- .brz-ed .color-picker2-body .color-picker2-alpha .hue-vertical,.brz-ed .color-picker2-body .color-picker2-hue .hue-vertical{border-radius:3px}
10011
- .brz-ed .color-picker2-body .color-picker2-hue .hue{position:absolute;top:0;right:0;bottom:0;left:0}
10012
- .brz-ed .color-picker2-body .color-picker2-hue .hue-container{padding:0 2px;position:relative;height:100%}
10013
- .brz-ed .color-picker2-body .color-picker2-hue .hue-pointer{position:absolute}
10014
- .brz-ed .color-picker2-body .color-picker2-hue .color-picker2-pointer{-webkit-transform:translate(-1px,-7px);transform:translate(-1px,-7px)}
10015
- .brz-ed .color-picker2-body .color-picker2-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)}
10016
- .brz-ed .color-picker2-body .color-picker2-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%)}
10017
- .brz-ed .color-picker2-body .color-picker2-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%)}
10018
- .brz-ed .color-picker2-body .color-picker2-alpha{background-color:#fff;border-radius:3px 3px 4px 4px}
10019
- .brz-ed .color-picker2-body .color-picker2-alpha div:not(.color-picker2-pointer){border-radius:3px}
10020
- .brz-ed .color-picker2-body .color-picker2-alpha div>div>div:not(.color-picker2-pointer){background-size:8px!important}
10021
- .brz-ed .color-picker2-body .color-picker2-alpha .color-picker2-pointer{-webkit-transform:translate(-4px,-7px);transform:translate(-4px,-7px);position:relative}
10022
- .brz-ed .color-picker2-body .color-picker2-alpha .color-picker2-pointer .color-picker2-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:nunito,"Open Sans",Arial,sans-serif;color:rgba(255,255,255,.85)}
10023
- .brz-ed .color-picker2-body .color-picker2-alpha .color-picker2-pointer .color-picker2-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)}
10024
- .brz-ed .color-picker2-body .color-picker2-alpha .color-picker2-alpha-body{position:absolute;top:0;left:0;bottom:0;right:0}
10025
- .brz-ed .color-picker2-body .color-picker2-alpha .color-picker2-alpha-body .color-picker2-alpha-checkboard{position:absolute;top:0;left:0;bottom:0;right:0;overflow:hidden}
10026
- .brz-ed .color-picker2-body .color-picker2-alpha .color-picker2-alpha-body .color-picker2-alpha-gradient{position:absolute;top:0;left:0;bottom:0;right:0}
10027
- .brz-ed .color-picker2-body .color-picker2-alpha .color-picker2-alpha-body .color-picker2-alpha-container{position:relative;height:100%;margin:0 3px}
10028
- .brz-ed .color-picker2-body .color-picker2-alpha .color-picker2-alpha-body .color-picker2-alpha-container .color-picker2-alpha-pointer{position:absolute}
10029
- .brz-ed .color-picker2-body .color-picker2-alpha .color-picker2-alpha-body .color-picker2-alpha-container .color-picker2-alpha-pointer .color-picker2-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)}
10030
- .brz-ed .color-picker2-body .color-picker2-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}
10031
- .brz-ed .color-picker2-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}
10032
- .brz-ed .color-picker2-preset-colors .color-picker2-swatch-wrap{width:20px;height:20px;margin-left:2px}
10033
- .brz-ed .brz-ed-control__colorPicker3 .brz-ed-control__color-palette{margin-top:10px}
10034
- .brz-ed .brz-ed-control__colorPicker3 .brz-input{margin-top:10px;background-color:transparent;border:none;outline:0;color:#828b92;border-bottom:1px solid rgba(255,255,255,.1);text-align:left;text-transform:uppercase;padding:2px 0;-webkit-transition:.2s linear color,.2s border-color linear;transition:.2s linear color,.2s border-color linear;width:58px}
10035
- .brz-ed .brz-ed-control__colorPickerSelect .brz-control__select{position:absolute;z-index:2;font-size:12px;margin-top:6px;margin-left:4px}
10036
- .brz-ed .brz-ed-control__colorPickerSelect .brz-control__select .brz-control__select-current{height:24px}
10037
- .brz-ed .brz-ed-control__colorPickerSelect .brz-control__select .brz-control__select-option{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:12px;height:24px;-webkit-box-align:center;-ms-flex-align:center;align-items:center;line-height:normal;padding-right:30px}
10038
- .brz-ed .brz-ed-control__boxShadow{position:relative}
10039
- .brz-ed .brz-ed-control__boxShadow .brz-ed-option__multi-input{width:50%;position:absolute;bottom:10px;right:17px}
10040
- .brz-ed .brz-ed-listbox{position:absolute;background-color:#383e48;z-index:1070;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);color:#fff}
10041
- .brz-ed .brz-ed-listbox .brz-ed-scroll-pane .brz-ed-tall-thumb{width:8px;background-color:transparent;border-radius:4px}
10042
- .brz-ed .brz-ed-listbox .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}
10043
- .brz-ed .brz-ed-listbox .brz-ed-scroll-pane .brz-ed-wide-thumb{height:3px;background-color:#7b7b7b;border-radius:2px;top:3px}
10044
- .brz-ed .brz-ed-listbox .brz-ed-scroll-pane .brz-ed-tall-track{border-radius:0 4px 4px 0}
10045
- .brz-ed .brz-ed-listbox__item{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;overflow:hidden;text-overflow:ellipsis}
10046
- .brz-ed .brz-ed-listbox__item:last-child{border-bottom-color:transparent!important}
10047
- .brz-ed .brz-ed-listbox__item--active{color:#3dbfe8;-webkit-transition:color .15s linear;transition:color .15s linear}
10048
- .brz-ed .brz-ed-listbox__item--disable{cursor:default}
10049
- .brz-ed .brz-control__select2{font-family:nunito,"Open Sans",Arial,sans-serif}
10050
- .brz-ed .brz-control__select2-value-container{line-height:30px;height:30px;border-radius:4px;font-size:13px;letter-spacing:.25px}
10051
- .brz-ed .brz-control__select2-value-container-tag{border-radius:4px;font-size:13px;letter-spacing:.25px;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:5px}
10052
- .brz-ed .brz-control__select2-value-container-tag .brz-control__select2-value{height:20px!important;-webkit-box-flex:1;-ms-flex:1;flex:1;margin-bottom:5px}
10053
- .brz-ed .brz-control__select2-value{font:inherit;letter-spacing:inherit;width:100%;height:100%;outline:0;border:none;background:0 0;padding-left:10px;padding-right:10px}
10054
- .brz-ed .brz-control__select2-tag{height:20px;padding:5px;line-height:1;color:#fff;margin:0 2px 5px}
10055
- .brz-ed .brz-control__select2-tag .brz-icon-svg{cursor:pointer;font-size:10px;margin-left:4px;-webkit-transition:.2s color linear;transition:.2s color linear}
10056
- .brz-ed .brz-control__select2-tag .brz-icon-svg:hover{color:#3dbfe8;-webkit-transition:.2s color linear;transition:.2s color linear}
10057
- .brz-ed .brz-control__select2-menu{font-family:nunito,"Open Sans",Arial,sans-serif;z-index:1110;width:200px;-webkit-box-shadow:0 1px 10px 0 rgba(18,34,35,.1);box-shadow:0 1px 10px 0 rgba(18,34,35,.1);margin-top:3px;border-radius:4px}
10058
- .brz-ed .brz-control__select2-option{cursor:pointer;padding-left:10px;padding-right:10px;font-size:13px;letter-spacing:.25px;line-height:30px;height:30px;-webkit-transition:color .15s linear;transition:color .15s linear;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
10059
- .brz-ed .brz-control__select2-option:last-child{border-bottom-color:transparent}
10060
- .brz-ed .brz-control__select2-option--active,.brz-ed .brz-control__select2-option:hover{-webkit-transition:color .15s linear;transition:color .15s linear;color:#3dbfe8}
10061
- .brz-ed .brz-control__select2-scroll-pane .brz-ed-scroll-inner{height:120px;overflow:hidden}
10062
- .brz-ed .brz-control__select2--light .brz-control__select2-value-container,.brz-ed .brz-control__select2--light .brz-control__select2-value-container-tag{background-color:#fff;color:#383e48}
10063
- .brz-ed .brz-control__select2--light .brz-control__select2-tag{background-color:#383e48;color:#fff}
10064
- .brz-ed .brz-control__select2--light .brz-control__select2-menu{background-color:#fff}
10065
- .brz-ed .brz-control__select2--light .brz-control__select2-option{border-bottom:1px solid #e6e6e6}
10066
- .brz-ed .brz-control__select2--light .brz-control__select2-scroll-pane .brz-ed-tall-thumb,.brz-ed .brz-control__select2--light .brz-control__select2-scroll-pane .brz-ed-wide-thumb{background-color:#7b7b7b;border-radius:2px}
10067
- .brz-ed .brz-ed-grid,.brz-ed .brz-ed-grid__option,.brz-ed .brz-ed-popover__option,.brz-ed .brz-ed-sidebar__right__option{font-family:nunito,"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}
10068
- .brz-ed .brz-ed-grid:last-child,.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}
10069
- .brz-ed .brz-ed-popover__inner--icon{-webkit-transition:color .2s linear;transition:color .2s linear}
10070
- .brz-ed .brz-ed-popover__inner--icon:hover{color:#3dbfe8;-webkit-transition:color .2s linear;transition:color .2s linear}
10071
- .brz-ed .brz-ed-grid,.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}
10072
- .brz-ed .brz-ed-grid:first-child,.brz-ed .brz-ed-grid__option:first-child,.brz-ed .brz-ed-popover__option:first-child{padding-top:15px;border-top-color:transparent}
10073
- .brz-ed .brz-ed-grid:last-child,.brz-ed .brz-ed-grid__option:last-child,.brz-ed .brz-ed-popover__option:last-child{padding-bottom:15px;min-height:56px}
10074
- .brz-ed .brz-ed-tabs__option--inline:first-child:last-child>.brz-ed-tabs__options>.brz-ed-grid:first-child,.brz-ed .brz-ed-tabs__option--inline:first-child:last-child>.brz-ed-tabs__options>.brz-ed-grid__option:first-child,.brz-ed .brz-ed-tabs__option--inline:first-child:last-child>.brz-ed-tabs__options>.brz-ed-popover__option:first-child{padding-top:15px}
10075
- .brz-ed .brz-ed-tabs__option--inline:first-child:last-child>.brz-ed-tabs__options>.brz-ed-grid:last-child,.brz-ed .brz-ed-tabs__option--inline:first-child:last-child>.brz-ed-tabs__options>.brz-ed-grid__option:last-child,.brz-ed .brz-ed-tabs__option--inline:first-child:last-child>.brz-ed-tabs__options>.brz-ed-popover__option:last-child{padding-bottom:15px}
10076
- .brz-ed .brz-ed-tabs__option--inline:first-child:last-child>.brz-ed-control__tabs__top+.brz-ed-control__tab__content>.brz-ed-tabs__options>.brz-ed-grid: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-tabs__options>.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-tabs__options>.brz-ed-popover__option:first-child{padding-top:10px}
10077
- .brz-ed .brz-ed-tabs__option--inline:first-child:last-child>.brz-ed-control__tabs__top+.brz-ed-control__tab__content>.brz-ed-tabs__options>.brz-ed-grid: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-tabs__options>.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-tabs__options>.brz-ed-popover__option:last-child{padding-bottom:15px}
10078
- .brz-ed .brz-ed-control__tabs__top+.brz-ed-control__tab__content>.brz-ed-tabs__options>.brz-ed-grid:first-child,.brz-ed .brz-ed-control__tabs__top+.brz-ed-control__tab__content>.brz-ed-tabs__options>.brz-ed-grid__option:first-child,.brz-ed .brz-ed-control__tabs__top+.brz-ed-control__tab__content>.brz-ed-tabs__options>.brz-ed-popover__option:first-child{padding-top:10px}
10079
- .brz-ed .brz-ed-control__tabs__top+.brz-ed-control__tab__content>.brz-ed-tabs__options>.brz-ed-grid:last-child,.brz-ed .brz-ed-control__tabs__top+.brz-ed-control__tab__content>.brz-ed-tabs__options>.brz-ed-grid__option:last-child,.brz-ed .brz-ed-control__tabs__top+.brz-ed-control__tab__content>.brz-ed-tabs__options>.brz-ed-popover__option:last-child{padding-bottom:10px}
10080
- .brz-ed .brz-ed-control__tabs__content__left{min-height:89px}
10081
- .brz-ed .brz-ed-tabs__option--inline+.brz-ed-option__advanced{border-top:1px solid rgba(255,255,255,.1)}
10082
- .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}
10083
- .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:normal;-ms-flex-align:normal;align-items:normal;text-align:left}
10084
- .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-right:0;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-bottom:6px}
10085
- .brz-ed .brz-ed-option__block.brz-ed-option__slider{padding-top:15px!important}
10086
- .brz-ed .brz-ed-option__block .brz-ed-option__input-container,.brz-ed .brz-ed-option__block .brz-input{width:100%;max-width:100%}
10087
- .brz-ed .brz-ed-option__block .brz-ed-option__input-number-wrap{position:relative}
10088
- .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}
10089
- .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;font-weight:600;margin:0;margin-left:9px;cursor:pointer;font-size:13px}
10090
- .brz-ed .brz-ed-option__advanced:hover{color:#fff}
10091
- .brz-ed .brz-ed-option__font-style-editor__title,.brz-ed .brz-ed-option__label{font-family:nunito,"Open Sans",Arial,sans-serif;font-size:13px;color:#828b92;font-weight:600;-ms-flex-preferred-size:auto;flex-basis:auto;margin-right:17px;display:-webkit-box;display:-ms-flexbox;display:flex;line-height:1.3}
10092
- .brz-ed .brz-ed-option__slider__label{-ms-flex-preferred-size:65px;flex-basis:65px}
10093
- .brz-ed .brz-ed-grid__options,.brz-ed .brz-ed-popover__options{height:100%;width:100%;-ms-flex-preferred-size:100%;flex-basis:100%}
10094
- .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}
10095
- .brz-ed .brz-ed-toolbar__item>.brz-ed-option__advanced{border:none;color:inherit;-webkit-transition:color .2s linear;transition:color .2s linear}
10096
- .brz-ed .brz-ed-toolbar__item>.brz-ed-option__advanced:hover{color:#3dbfe8;-webkit-transition:color .2s linear;transition:color .2s linear}
10097
- .brz-ed .brz-ed-toolbar__item>.brz-ed-option__advanced .brz-icon-svg{font-size:16px}
10098
- .brz-ed .brz-ed-option__button{-webkit-transition:color .2s linear;transition:color .2s linear}
10099
- .brz-ed .brz-ed-option__button:hover{-webkit-transition:color .2s linear;transition:color .2s linear;color:#3dbfe8}
10100
- .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}
10101
- .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}
10102
- .brz-ed .floating-action-button:before{width:16px;height:2px}
10103
- .brz-ed .floating-action-button:after{width:2px;height:16px}
10104
- .brz-ed .floating-action-button:hover{background:#03080f}
10105
- .brz-ed .floating-action-button--icon{color:#fff;font-size:16px}
10106
- .brz-ed .floating-action-button--icon .brz-icon-svg{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}
10107
- .brz-ed .floating-action-button--icon:after,.brz-ed .floating-action-button--icon:before{display:none}
10108
- .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}
10109
- .brz-ed .brz-ed-option-tools:after,.brz-ed .brz-ed-option-tools:before{content:'';position:absolute}
10110
- .brz-ed .brz-ed-option-tools:after{top:15px;width:22px;height:1px}
10111
- .brz-ed .brz-ed-option-tools:before{top:32px;width:1px;height:22px}
10112
- .brz-ed .brz-ed-option-tools i{position:absolute;top:8px;left:7px}
10113
- .brz-ed .brz-ed-control-tabs-options{position:relative}
10114
- .brz-ed .brz-ed-control-tabs-options>.brz-ed-options-tabs--label{position:absolute;top:7px}
10115
- .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}
10116
- .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}
10117
- .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%)}
10118
- .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}
10119
- .brz-ed .brz-ed-control-tabs-options>.brz-ed-control__tabs>.brz-ed-control__tab.active{background-color:#3dbfe8}
10120
- .brz-ed .brz-ed-control-tabs-options>.brz-ed-control__tabs>.brz-ed-control__tab:first-child{border-radius:3px 0 0 3px}
10121
- .brz-ed .brz-ed-control-tabs-options>.brz-ed-control__tabs>.brz-ed-control__tab:last-child{border-radius:0 3px 3px 0}
10122
- .brz-ed .brz-ed-tabs__option--inline{position:relative}
10123
- .brz-ed .brz-ed-tabs__option--inline .brz-ed-control__tabs{margin-bottom:0}
10124
- .brz-ed .brz-ed-tabs__option--inline .brz-ed-control__tab .brz-span{font-weight:600}
10125
- .brz-ed .brz-ed-grid__typography--sidebar .brz-ed-control__tabs{margin-bottom:5px}
10126
- .brz-ed .brz-ed-grid__option__gradient{height:22px}
10127
- .brz-ed .brz-ed-grid__option__gradient .brz-ed-control__range{padding:6px 14px 0}
10128
- .brz-ed .brz-ed-option__range{padding:0!important;height:22px!important;min-height:22px!important;border-bottom:0;margin-bottom:0;max-width:112px}
10129
- .brz-ed .brz-ed-option__range .rc-slider{width:calc(100% - 16px);margin-left:8px;height:22px}
10130
- .brz-ed .brz-ed-option__range .rc-slider-rail{height:12px;width:calc(100% + 16px);left:-8px}
10131
- .brz-ed .brz-ed-option__range .rc-slider-track{display:none}
10132
- .brz-ed .brz-ed-option__range .rc-slider-step{display:none}
10133
- .brz-ed .brz-ed-option__range .rc-slider-mark{display:none}
10134
- .brz-ed .brz-ed-option__range .rc-slider-handle{width:16px;height:16px;background:0 0;border:3px solid #fff;margin-left:-8px}
10135
- .brz-ed .brz-ed-option__range .rc-slider-handle::after{display:none}
10136
- .brz-ed .brz-ed-option__range .rc-slider-handle::before{opacity:0}
10137
- .brz-ed .brz-ed-option__range .rc-slider-handle:focus{-webkit-box-shadow:none;box-shadow:none}
10138
- .brz-ed .brz-ed-option__range .brz-ed-rc-slider-handle--active::before{content:"";opacity:1;border-radius:100%;border:0;position:absolute;top:2px;right:2px;bottom:2px;left:5px;display:block;background:#fff}
10139
- .brz-ed .brz-ed-grid__option__gradient .rc-slider-rail{background:0 0}
10140
- .brz-ed .brz-ed-option__slider__icon{font-size:16px;line-height:1;margin-right:18px;display:-webkit-box;display:-ms-flexbox;display:flex}
10141
- .brz-ed .brz-ed-option__slider .brz-ed-option-field__text-box{min-height:initial}
10142
- .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}
10143
- .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%;color:#fff}
10144
- .brz-ed .brz-ed-option__slider-suffix .brz-ed-option__text-box{width:65px;border-color:transparent}
10145
- .brz-ed .brz-ed-option__slider-suffix .brz-ed-option__text-box__input{position:relative}
10146
- .brz-ed .brz-ed-option__slider-suffix .brz-ed-option__text-box__input:after{content:"";position:absolute;bottom:-2px;left:0;width:calc(100% + 3px);height:1px;background-color:rgba(255,255,255,.1)}
10147
- .brz-ed .brz-ed-option__slider__suffix{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}
10148
- .brz-ed .brz-ed-option__slider__suffix-item{padding-left:5px;cursor:pointer}
10149
- .brz-ed .brz-ed-option__slider__suffix-item--active{color:#3dbfe8}
10150
- .brz-ed .brz-ed-option__text-box{width:44px;border-bottom:1px solid rgba(255,255,255,.1);margin-left:17px;padding:0 0 4px}
10151
- .brz-ed .brz-ed-option__text-box .brz-label{display:-webkit-box;display:-ms-flexbox;display:flex;line-height:1;color:#828b92;font-family:nunito,"Open Sans",Arial,sans-serif;font-size:13px;font-weight:400;font-style:normal;letter-spacing:0;text-transform:lowercase;padding:0;margin:0}
10152
- .brz-ed .brz-ed-option__text-box__helper,.brz-ed .brz-ed-option__text-box__input{position:relative;font-weight:400;max-width:90%}
10153
- .brz-ed .brz-ed-option__text-box__helper{font-family:inherit;font-size:inherit;margin-left:3px}
10154
- .brz-ed .brz-ed-option__text-box__helper--active{color:#3dbfe8}
10155
- .brz-ed .brz-ed-option__text-box--fixed-width{width:65px;margin-left:13px;border-bottom-color:transparent}
10156
- .brz-ed .brz-ed-option__text-box--fixed-width .brz-label{-webkit-box-align:center;-ms-flex-align:center;align-items:center}
10157
- .brz-ed .brz-ed-option__text-box--fixed-width .brz-ed-option__text-box__input{margin-right:2px}
10158
- .brz-ed .brz-ed-option__text-box--fixed-width .brz-ed-option__text-box__input:after{content:"";width:100%;height:1px;background-color:rgba(255,255,255,.1);position:absolute;bottom:-3px;left:0}
10159
- .brz-ed .brz-ed-option__text-box--fixed-width .brz-ed-option__text-box__helper{cursor:pointer;margin-left:5px}
10160
- .brz-ed .brz-ed-option__text-box--fixed-width .brz-ed-control__text-box--resizer{position:relative}
10161
- .brz-ed .brz-ed-control__text-box--resizer{background-color:transparent;color:#828b92;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%;-webkit-transition:.2s linear color;transition:.2s linear color}
10162
- .brz-ed .brz-ed-control__text-box--resizer:active,.brz-ed .brz-ed-control__text-box--resizer:focus{background-color:transparent;color:#fff;-webkit-transition:.2s linear color;transition:.2s linear color;-webkit-box-shadow:none;box-shadow:none;border:none;outline:0}
10163
- .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}
10164
- .brz-ed .brz-ed-sidebar-row .brz-ed-options__switch--tab{display:block}
10165
- .brz-ed .brz-ed-option__select__after{margin-left:8px;margin-bottom:0;font-size:16px;color:#828b92;line-height:1;display:-webkit-box;display:-ms-flexbox;display:flex;cursor:pointer;-webkit-transition:color .2s linear;transition:color .2s linear}
10166
- .brz-ed .brz-ed-option__select__after:hover{color:#3dbfe8}
10167
- .brz-ed .brz-ed-option__select .brz-control__select-current .brz-control__select-option{border-bottom:none}
10168
- .brz-ed .brz-ed-option__select .brz-control__select-current .brz-control__select-option span{top:1px}
10169
- .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}
10170
- .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}
10171
- .brz-ed .brz-ed-option__select .brz-control__select-option span{position:relative;top:.5px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}
10172
- .brz-ed .brz-ed-option__select .brz-control__select-option .brz-icon-svg{font-size:12px;margin-left:5px;margin-right:5px}
10173
- .brz-ed .brz-ed-option__select .brz-control__select-option__bg{background-size:100%;background-repeat:no-repeat;background-position:center;width:100%;height:12px;-webkit-filter:invert(100%) sepia(100%) saturate(0) hue-rotate(125deg) brightness(103%) contrast(103%);filter:invert(100%) sepia(100%) saturate(0) hue-rotate(125deg) brightness(103%) contrast(103%)}
10174
- .brz-ed .brz-ed-option__select .brz-control__select-option__bg.brz-ed-shape--40,.brz-ed .brz-ed-option__select .brz-control__select-option__bg.brz-ed-shape--42,.brz-ed .brz-ed-option__select .brz-control__select-option__bg.brz-ed-shape--5,.brz-ed .brz-ed-option__select .brz-control__select-option__bg.brz-ed-shape--6{height:8px}
10175
- .brz-ed .brz-ed-option__select .brz-control__select-option.active .brz-control__select-option__bg{-webkit-filter:invert(73%) sepia(61%) saturate(2312%) hue-rotate(160deg) brightness(97%) contrast(87%);filter:invert(73%) sepia(61%) saturate(2312%) hue-rotate(160deg) brightness(97%) contrast(87%)}
10176
- .brz-ed .brz-ed-option__select .brz-control__select-options .brz-control__select-option__bg:hover{-webkit-filter:invert(73%) sepia(61%) saturate(2312%) hue-rotate(160deg) brightness(97%) contrast(87%);filter:invert(73%) sepia(61%) saturate(2312%) hue-rotate(160deg) brightness(97%) contrast(87%)}
10177
- .brz-ed .brz-ed-option__select-taxonomy .brz-control__select-options{width:140px}
10178
- .brz-ed .brz-ed__select--transparent{padding:0!important;height:13px!important;min-height:13px!important;border-bottom:0;margin-bottom:0}
10179
- .brz-ed .brz-ed__select--transparent .brz-control__select{width:110px}
10180
- .brz-ed .brz-ed__select--transparent .brz-control__select-current,.brz-ed .brz-ed__select--transparent .brz-control__select-current:hover{background-color:transparent;line-height:13px;height:13px}
10181
- .brz-ed .brz-ed__select--transparent .brz-control__select-current{display:-webkit-box;display:-ms-flexbox;display:flex}
10182
- .brz-ed .brz-ed__select--transparent .brz-control__select-current .brz-control__select-option{line-height:13px;height:13px;padding-left:0;padding-right:6px}
10183
- .brz-ed .brz-ed__select--transparent .brz-control__select-current .brz-control__select--arrow{margin-top:-.4em;position:relative;right:auto}
10184
- .brz-ed .brz-ed__select--transparent .brz-control__select-options{width:112px;margin-top:10px;margin-left:-10px}
10185
- .brz-ed .brz-ed__select--align-right .brz-control__select-current{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;margin-right:7px}
10186
- .brz-ed .brz-ed-option__radio-group-option{margin-left:5px;margin-right:5px}
10187
- .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}
10188
- .brz-ed .brz-ed-option__radio-group--boxed:first-child{border-top-left-radius:4px;border-bottom-left-radius:4px}
10189
- .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}
10190
- .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}
10191
- .brz-ed .brz-ed-option__radio-group--boxed.active .brz-ed-option__radio-group__icon{background-color:#3dbfe8}
10192
- .brz-ed .brz-ed-option__check-group-option{margin-left:5px;margin-right:5px}
10193
- .brz-ed .brz-ed-option__check-group--boxed{width:37px;height:30px;border-right:1px solid rgba(255,255,255,.07);background-color:#383e48;color:#fff;overflow:hidden;display:inline-block}
10194
- .brz-ed .brz-ed-option__check-group--boxed:first-child{border-top-left-radius:4px;border-bottom-left-radius:4px}
10195
- .brz-ed .brz-ed-option__check-group--boxed:last-child{border-right:transparent;border-top-right-radius:4px;border-bottom-right-radius:4px}
10196
- .brz-ed .brz-ed-option__check-group--boxed .brz-ed-option__check-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}
10197
- .brz-ed .brz-ed-option__check-group--boxed.active .brz-ed-option__check-group__icon{background-color:#3dbfe8}
10198
- .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}
10199
- .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}
10200
- .brz-ed .brz-ed-tooltip__anchor .brz-ed-tooltip__content{padding-left:17px}
10201
- .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}
10202
- .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}
10203
- .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}
10204
- .brz-ed .brz-ed-multiPicker__option:first-child{margin-top:10px}
10205
- .brz-ed .brz-ed-multiPicker__option:not(:last-child){margin-bottom:10px}
10206
- .brz-ed .brz-ed-sidebar__right .brz-ed-multiPicker__option.brz-ed-option__slider:not(:last-child){margin-bottom:15px}
10207
- .brz-ed .brz-ed-sidebar__right .brz-ed-multiPicker__option:first-child{margin-top:20px}
10208
- .brz-ed .brz-ed-sidebar__right .brz-ed-multiPicker__option:not(:last-child){margin-bottom:20px}
10209
- .brz-ed .brz-ed-popover__typography{padding:11px 7px 14px}
10210
- .brz-ed .brz-ed-popover__typography .brz-ed-grid,.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}
10211
- .brz-ed .brz-ed-popover__typography--small .brz-ed-grid,.brz-ed .brz-ed-popover__typography--small .brz-ed-grid__option,.brz-ed .brz-ed-popover__typography--small .brz-ed-popover__option{padding-right:10px;padding-left:17px}
10212
- .brz-ed .brz-ed-popover__typography--small:last-child .brz-ed-grid,.brz-ed .brz-ed-popover__typography--small:last-child .brz-ed-grid__option,.brz-ed .brz-ed-popover__typography--small:last-child .brz-ed-popover__option{padding-left:10px;padding-right:17px}
10213
- .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-ed-control__stepper,.brz-ed .brz-ed-popover__typography--small .brz-control__select,.brz-ed .brz-ed-popover__typography--small .brz-control__select-current,.brz-ed .brz-ed-popover__typography--small .brz-ed-control__stepper{width:62px}
10214
- .brz-ed .brz-ed-popover__typography .brz-control__select-options,.brz-ed .brz-ed-popover__typography--small .brz-control__select-options{width:95px}
10215
- .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}
10216
- .brz-ed .brz-ed-grid__typography{padding:0}
10217
- .brz-ed .brz-ed-grid__typography:first-child{padding-top:0}
10218
- .brz-ed .brz-ed-grid__typography:last-child{padding-bottom:0}
10219
- .brz-ed .brz-ed-grid__typography .brz-ed-grid__typography{padding:0}
10220
- .brz-ed .brz-ed-grid__typography .brz-ed-grid__typography:first-child{padding-top:0}
10221
- .brz-ed .brz-ed-grid__typography .brz-ed-grid__typography:last-child{padding-bottom:0}
10222
- .brz-ed .brz-ed-option__helper{margin-left:7px;cursor:pointer;color:rgba(130,139,146,.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}
10223
- .brz-ed .brz-ed-option__helper:hover{color:rgba(130,139,146,.6)}
10224
- .brz-ed .brz-ed-option__helper svg{overflow:visible}
10225
- .brz-ed .brz-ed-option__helper__content{font-size:13px;font-family:nunito,"Open Sans",Arial,sans-serif;line-height:1.5;width:240px;background-color:#03080f;color:rgba(255,255,255,.8);text-align:left;padding:18px 20px;border-radius:10px}
10226
- .brz-ed .brz-ed-option__helper__content .brz-p{font-weight:inherit;font-size:inherit}
10227
- .brz-ed .brz-ed-option__helper__content .brz-p:first-child{margin-bottom:13px}
10228
- .brz-ed .brz-ed-option__prompt-icon{-webkit-transition:color .2s linear;transition:color .2s linear}
10229
- .brz-ed .brz-ed-option__prompt-icon:hover{-webkit-transition:color .2s linear;transition:color .2s linear;color:#3dbfe8}
10230
- .brz-ed .brz-ed-option__prompt-popup__image{position:relative;cursor:pointer}
10231
- .brz-ed .brz-ed-option__prompt-popup__image .brz-img{max-width:100%}
10232
- .brz-ed .brz-ed-option__prompt-popup-remove{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}
10233
- .brz-ed .brz-ed-option__prompt-popup .brz-ed-control__focal-point__upload{font-size:16px}
10234
- .brz-ed .brz-ed-option__toggle{-webkit-transition:color .2s linear;transition:color .2s linear}
10235
- .brz-ed .brz-ed-option__toggle:hover{-webkit-transition:color .2s linear;transition:color .2s linear;color:#3dbfe8}
10236
- .brz-ed .brz-ed-grid__gradient{min-height:40px;padding-bottom:8px;border-bottom:0;margin-bottom:0;-webkit-box-align:center;-ms-flex-align:center;align-items:center}
10237
- .brz-ed .brz-ed-grid__gradient__degree .brz-ed-option__input-number-wrap .brz-input,.brz-ed .brz-ed-grid__gradient__size .brz-ed-option__input-number-wrap .brz-input{width:29px}
10238
- .brz-ed .brz-ed-grid__gradient__size .brz-ed-option__input-number-wrap{position:relative}
10239
- .brz-ed .brz-ed-grid__gradient__size .brz-ed-option__input-number-wrap::before{content:"";position:absolute;width:5px;height:5px;display:block;border:1px solid #828b92;border-radius:100%;top:1px;right:-3px}
10240
- .brz-ed .brz-ed-option__colorPicker{padding-top:0;border-bottom:0}
10241
- .brz-ed .brz-ed-option__colorPicker__fields{padding-top:0}
10242
- .brz-ed .brz-ed-option__colorPicker__fields:last-child{min-height:100%}
10243
- .brz-ed .brz-ed-option__colorPicker2{position:relative;padding-top:0;border-bottom:0}
10244
- .brz-ed .brz-ed-option__colorPicker2 .brz-control__select{position:absolute;z-index:2;font-size:12px;margin-top:6px;margin-left:4px}
10245
- .brz-ed .brz-ed-option__colorPicker2 .brz-control__select-current,.brz-ed .brz-ed-option__colorPicker2 .brz-control__select-option{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:12px;height:24px;-webkit-box-align:center;-ms-flex-align:center;align-items:center;line-height:normal}
10246
- .brz-ed .brz-ed-option__colorPicker2 .brz-control__select-option{padding-right:30px}
10247
- .brz-ed .brz-ed-option__colorPicker2 .brz-ed-option__range{max-width:100%;margin-bottom:5px}
10248
- .brz-ed .brz-ed-option__colorPicker2 .brz-ed-option__color-palette2{margin-top:10px}
10249
- .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%}
10250
- .brz-ed .brz-ed-option__color-palette__item{width:18px;height:18px;border-radius:2px;margin-left:2px;cursor:pointer;border:1px solid #3a3d43}
10251
- .brz-ed .brz-ed-option__color-palette__item:first-child{margin-left:0}
10252
- .brz-ed .brz-ed-option__color-palette__item.active{border:2px solid #fff}
10253
- .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:#828b92;-webkit-transition:color .2s linear;transition:color .2s linear}
10254
- .brz-ed .brz-ed-option__color-palette__icon:hover{color:#3dbfe8}
10255
- .brz-ed .brz-ed-option__color-palette-editor{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}
10256
- .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}
10257
- .brz-ed .brz-ed-option__color-palette-editor__item.active,.brz-ed .brz-ed-option__color-palette-editor__item:hover{border:2px solid #3dbfe8}
10258
- .brz-ed .brz-ed-option__color-palette-editor__item:first-child{margin-left:0}
10259
- .brz-ed .brz-ed-sidebar-option__color-palette-editor{margin-bottom:32px!important}
10260
- .brz-ed .brz-ed-option__color-palette2{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}
10261
- .brz-ed .brz-ed-option__color-palette2__item{width:18px;height:18px;border-radius:2px;margin-left:2px;cursor:pointer;border:1px solid #3a3d43}
10262
- .brz-ed .brz-ed-option__color-palette2__item:first-child{margin-left:0}
10263
- .brz-ed .brz-ed-option__color-palette2__item.active{border:2px solid #fff}
10264
- .brz-ed .brz-ed-option__color-palette2__icon{cursor:pointer;font-size:14px;margin-left:5px;display:-webkit-box;display:-ms-flexbox;display:flex;color:#828b92;-webkit-transition:color .2s linear;transition:color .2s linear}
10265
- .brz-ed .brz-ed-option__color-palette2__icon:hover{color:#3dbfe8}
10266
- .brz-ed .brz-ed-option__color-palette2-editor{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}
10267
- .brz-ed .brz-ed-option__color-palette2-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}
10268
- .brz-ed .brz-ed-option__color-palette2-editor__item.active,.brz-ed .brz-ed-option__color-palette2-editor__item:hover{border:2px solid #3dbfe8}
10269
- .brz-ed .brz-ed-option__color-palette2-editor__item:first-child{margin-left:0}
10270
- .brz-ed .brz-ed-sidebar-option__color-palette2-editor{margin-bottom:32px!important}
10271
- .brz-ed .brz-ed-grid__color-fileds{padding-top:0;-webkit-box-align:center;-ms-flex-align:center;align-items:center}
10272
- .brz-ed .brz-ed-grid__color-fileds:last-child{min-height:21px}
10273
- .brz-ed .brz-ed-grid__color-fileds .brz-ed-grid__option{padding:0;min-height:21px}
10274
- .brz-ed .brz-ed-option__color-picker__hex .brz-input{width:58px}
10275
- .brz-ed .brz-ed-option__input-number-wrap .brz-input{width:22px}
10276
- .brz-ed .brz-ed-option__font-style-editor{position:relative;cursor:pointer;margin:0 30px 16px}
10277
- .brz-ed .brz-ed-option__font-style-editor:last-child{margin-bottom:0}
10278
- .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}
10279
- .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}
10280
- .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}
10281
- .brz-ed .brz-ed-option__font-style-editor__title{line-height:1;margin-bottom:3px;margin-right:0}
10282
- .brz-ed .brz-ed-option__font-style-editor__title .brz-span{display:block;line-height:1.5}
10283
- .brz-ed .brz-ed-option__font-style-editor__sample{color:#fff;line-height:1;font-size:21px}
10284
- .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}
10285
- .brz-ed .brz-ed-option__font-style-editor--delete .brz-icon-svg{background-color:#fff;color:#15191f;border-radius:16px}
10286
- .brz-ed .brz-ed-option__font-styles{position:relative;height:calc(100% - 270px);margin-right:-30px;margin-left:-30px}
10287
- .brz-ed .brz-ed-option__font-styles--add{font-size:0;margin-bottom:0;padding-top:33px;padding-bottom:30px;color:#828b92;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%)}
10288
- .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}
10289
- .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}
10290
- .brz-ed .brz-ed-option__font-styles--add .brz-icon-svg{font-size:16px}
10291
- .brz-ed .brz-ed-option__font-styles--add .brz-span{margin-left:10px}
10292
- .brz-ed .brz-ed-option__font-styles--scroll-pane{position:absolute;top:-10px;bottom:0;left:0;right:0}
10293
- .brz-ed .brz-ed-option__font-styles--scroll-pane .brz-ed-scroll-inner{padding-top:10px}
10294
- .brz-ed .brz-ed-option__font-adder .brz-control__select{width:100%}
10295
- .brz-ed .brz-ed-option__font-adder__label{margin-bottom:7px;margin-right:0}
10296
- .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}
10297
- .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}
10298
- .brz-ed .brz-ed-fixed-bottom-panel__item{color:#828b92;font-size:12px;letter-spacing:.25px;font-family:nunito,"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)}
10299
- .brz-ed .brz-ed-fixed-bottom-panel__item.active{color:#fff;cursor:pointer}
10300
- .brz-ed .brz-ed-fixed-bottom-panel__item.active:hover{color:#3dbfe8}
10301
- .brz-ed .brz-ed-fixed-bottom-panel__item:first-child{padding-left:18px}
10302
- .brz-ed .brz-ed-fixed-bottom-panel__item:last-child{border-right:none}
10303
- .brz-ed .brz-ed-fixed-bottom-panel__item .brz-icon-svg{font-size:14px}
10304
- .brz-ed .brz-ed-fixed-bottom-panel__preview{cursor:pointer;padding:0}
10305
- .brz-ed .brz-ed-fixed-bottom-panel__preview .brz-a{color:#fff;-webkit-transition:color 150ms linear;transition:color 150ms linear;font-size:0;padding:14px}
10306
- .brz-ed .brz-ed-fixed-bottom-panel__preview:hover .brz-a{color:#3dbfe8}
10307
- .brz-ed .brz-ed-fixed-bottom-panel__hidden_elements{cursor:pointer;color:#fff}
10308
- .brz-ed .brz-ed-fixed-bottom-panel__btn{padding:8px 13px;cursor:pointer}
10309
- .brz-ed .brz-ed-fixed-bottom-panel__btn .brz-a,.brz-ed .brz-ed-fixed-bottom-panel__btn .brz-span{font-size:13px;line-height:1;color:#fff;padding:8px 14px 5px;border-bottom:2px solid #006799;background-color:#0085ba;border-radius:15px;height:28px;min-width:75px;text-align:center;-webkit-transition:background-color 150ms linear;transition:background-color 150ms linear}
10310
- .brz-ed .brz-ed-fixed-bottom-panel__btn .brz-a:hover,.brz-ed .brz-ed-fixed-bottom-panel__btn .brz-span:hover{background-color:#0092cc;color:#fff}
10311
- .brz-ed .brz-ed-fixed-bottom-panel__btn .brz-a .brz-icon-svg,.brz-ed .brz-ed-fixed-bottom-panel__btn .brz-span .brz-icon-svg{width:1em;height:1em}
10312
- .brz-ed .brz-ed-fixed-bottom-panel__btn--download .brz-a,.brz-ed .brz-ed-fixed-bottom-panel__btn--download .brz-span{min-width:97px}
10313
- .brz-ed .brz-ed-grid__inline-options{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}
10314
- .brz-ed .brz-ed-grid__inline-options .brz-ed-grid__option{padding:0;min-height:16px;font-size:16px;color:#fff;-webkit-transition:color .2s linear;transition:color .2s linear;cursor:pointer;text-align:center;padding:0 14px}
10315
- .brz-ed .brz-ed-grid__inline-options .brz-ed-grid__option:hover{color:#3dbfe8;-webkit-transition:color .2s linear;transition:color .2s linear}
10316
- .brz-ed .brz-ed-option__block-thumbnail .brz-ed-scroll-pane .brz-ed-scroll-inner{max-height:240px;border-right-style:none!important}
10317
- .brz-ed .brz-ed-option__block-thumbnail .brz-ed-scroll-pane .brz-ed-tall-track{right:-10px}
10318
- .brz-ed .brz-ed-option__block-thumbnail-item{margin-bottom:0;max-width:140px;position:relative;cursor:pointer;padding:4px;margin:2px 0}
10319
- .brz-ed .brz-ed-option__block-thumbnail-item.active .brz-ed-option__block-thumbnail-anchor{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center}
10320
- .brz-ed .brz-ed-option__block-thumbnail-item: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}
10321
- .brz-ed .brz-ed-option__block-thumbnail-item.active:after,.brz-ed .brz-ed-option__block-thumbnail-item:hover:after{border-color:#3dbfe8;-webkit-transition:.2s linear border-color;transition:.2s linear border-color}
10322
- .brz-ed .brz-ed-option__block-thumbnail-item:last-child{margin-bottom:0}
10323
- .brz-ed .brz-ed-option__block-thumbnail-image{position:relative}
10324
- .brz-ed .brz-ed-option__block-thumbnail-image .brz-img{position:absolute;top:0;left:0;max-width:100%}
10325
- .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}
10326
- .brz-ed .brz-ed-option__block-thumbnail-anchor{display:none;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:absolute;bottom:0;left:0;z-index:1;width:140px;height:22px;background:#3dbfe8;color:#fff;font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:13px;font-weight:600}
10327
- .brz-ed .brz-ed-option__block-thumbnail-anchor .brz-span{font-size:12px;opacity:.9;font-style:italic;margin-left:5px}
10328
- .brz-ed .brz-ed-option__block-thumbnail-anchor .brz-input{width:108px;padding:0 5px;border:none;background:0 0;color:#fff;text-align:left;font-family:nunito,"Open Sans",Arial,sans-serif;font-size:13px;font-weight:600}
10329
- .brz-ed .brz-ed-option__block-thumbnail-anchor .brz-input:focus{outline:0}
10330
- .brz-ed .brz-ed-option__block-thumbnail-anchor .brz-input::-webkit-input-placeholder{color:#fff;opacity:.6;font-family:nunito,"Open Sans",Arial,sans-serif;font-size:13px;font-weight:600;font-style:italic}
10331
- .brz-ed .brz-ed-option__block-thumbnail-anchor .brz-input::-moz-placeholder{color:#fff;opacity:.6;font-family:nunito,"Open Sans",Arial,sans-serif;font-size:13px;font-weight:600;font-style:italic}
10332
- .brz-ed .brz-ed-option__block-thumbnail-anchor .brz-input::-ms-input-placeholder{color:#fff;opacity:.6;font-family:nunito,"Open Sans",Arial,sans-serif;font-size:13px;font-weight:600;font-style:italic}
10333
- .brz-ed .brz-ed-option__block-thumbnail-anchor .brz-input::placeholder{color:#fff;opacity:.6;font-family:nunito,"Open Sans",Arial,sans-serif;font-size:13px;font-weight:600;font-style:italic}
10334
- .brz-ed .brz-ed-option__block-thumbnail-anchor .brz-label{color:#fff;cursor:pointer;margin:3px 0 0 0}
10335
- .brz-ed .brz-ed-option__block-thumbnail-anchor .brz-icon-svg{width:18px;height:18px;padding:5px}
10336
- .brz-ed .brz-ed-option__block-thumbnail-anchor .brz-icon-svg:hover{color:#03080f;opacity:.92}
10337
- .brz-ed .brz-portal__form-apps{position:absolute;top:0;right:0;left:0;bottom:0;width:100%;height:100%;z-index:1080}
10338
- .brz-ed .brz-portal__form-apps .brz-iframe{width:100%;height:100%;position:relative;z-index:2}
10339
- .brz-ed .brz-portal__form-apps--loading{position:absolute;top:0;left:0;width:100%;height:100%;background-color:rgba(3,8,15,.75);color:#fff;font-size:25px;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}
10340
- .brz-ed .brz-ed-option__input .brz-control__select{margin-left:10px}
10341
- .brz-ed .brz-ed-option__input-number-wrap{position:relative}
10342
- .brz-ed .brz-ed-option__input-container{position:relative}
10343
- .brz-ed .brz-ed-option__input-container .brz-icon-svg{cursor:pointer;position:absolute;right:10px;font-size:16px;top:50%;-webkit-transform:translateY(-.5em);transform:translateY(-.5em);color:#fff;-webkit-transition:.2s linear color;transition:.2s linear color}
10344
- .brz-ed .brz-ed-option__input-container .brz-icon-svg:hover{color:#3dbfe8;-webkit-transition:.2s linear color;transition:.2s linear color}
10345
- .brz-ed .brz-ed-option__input__population{width:136px;line-height:30px;padding-right:30px;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}
10346
- .brz-ed .brz-ed-option__color-picker__hex .brz-input,.brz-ed .brz-ed-option__input-number-wrap .brz-input,.brz-ed .brz-ed-option__input-outline .brz-input{background-color:transparent;border:none;outline:0;color:#828b92;border-bottom:1px solid rgba(255,255,255,.1);text-align:left;text-transform:uppercase;padding:2px 0;-webkit-transition:.2s linear color,.2s border-color linear;transition:.2s linear color,.2s border-color linear}
10347
- .brz-ed .brz-ed-option__color-picker__hex .brz-input:hover,.brz-ed .brz-ed-option__input-number-wrap .brz-input:hover,.brz-ed .brz-ed-option__input-outline .brz-input:hover{border-bottom:1px solid #828b92;-webkit-transition:.2s border-color linear;transition:.2s border-color linear}
10348
- .brz-ed .brz-ed-option__color-picker__hex .brz-input:active,.brz-ed .brz-ed-option__color-picker__hex .brz-input:focus,.brz-ed .brz-ed-option__input-number-wrap .brz-input:active,.brz-ed .brz-ed-option__input-number-wrap .brz-input:focus,.brz-ed .brz-ed-option__input-outline .brz-input:active,.brz-ed .brz-ed-option__input-outline .brz-input:focus{border-bottom:1px solid #3dbfe8;color:#fff;-webkit-transition:.2s linear color,.2s border-color linear;transition:.2s linear color,.2s border-color linear}
10349
- .brz-ed .brz-ed-option__multi-input .brz-input{width:17px;outline:0;margin-right:8px}
10350
- .brz-ed .brz-ed-option__multi-input .brz-input::-webkit-inner-spin-button,.brz-ed .brz-ed-option__multi-input .brz-input::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}
10351
- .brz-ed .brz-ed-option__multi-input .brz-icon{color:#828b92;margin-right:11px;font-size:13px}
10352
- .brz-ed .brz-ed-option__multi-input .brz-input:last-child{margin-right:0}
10353
- .brz-ed .brz-ed-option__multi-input .brz-ed-option__multi-input-container{padding:0 4px}
10354
- .brz-ed .brz-ed-option__multi-input .brz-ed-option__multi-input-container:first-of-type{padding:0 4px 0 0}
10355
- .brz-ed .brz-ed-option__multi-input .brz-ed-option__multi-input-container:last-child{padding:0 0 0 4px}
10356
- .brz-ed .brz-ed-option__multi-input:focus-within>.brz-icon{color:#33beea}
10357
- .brz-ed .brz-ed-option__multi-border{position:relative;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}
10358
- .brz-ed .brz-ed-option__multi-border .brz-input{color:#818a91;width:17px;background:0 0;outline:0;border:none;border-bottom:1px solid rgba(255,255,255,.1);margin-right:6px}
10359
- .brz-ed .brz-ed-option__multi-border .brz-input:hover{border-bottom:1px solid #828b92;-webkit-transition:.2s border-color linear;transition:.2s border-color linear}
10360
- .brz-ed .brz-ed-option__multi-border .brz-input:active,.brz-ed .brz-ed-option__multi-border .brz-input:focus{border-bottom:1px solid #3dbfe8;color:#fff;-webkit-transition:.2s linear color,.2s border-color linear;transition:.2s linear color,.2s border-color linear}
10361
- .brz-ed .brz-ed-option__multi-border .brz-input:last-of-type{margin-right:3px}
10362
- .brz-ed .brz-ed-option__multi-border .brz-input::-webkit-inner-spin-button,.brz-ed .brz-ed-option__multi-border .brz-input::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}
10363
- .brz-ed .brz-ed-option__multi-border .brz-icon{position:absolute;color:#818a91;font-size:10px;margin-left:5px;top:5px}
10364
- .brz-ed .brz-ed-option__multi-border .brz-input:last-child{margin-right:0}
10365
- .brz-ed .brz-ed-option__multi-border .brz-ed-option__multi-input-container{padding:0 4px}
10366
- .brz-ed .brz-ed-option__multi-border .brz-ed-option__multi-input-container:first-of-type{padding:0 4px 0 0}
10367
- .brz-ed .brz-ed-option__multi-border .brz-ed-option__multi-input-container:last-child{padding:0 0 0 4px}
10368
- .brz-ed .brz-ed-option__multi-border .brz-label{height:16px;width:25px;color:#818a91;font-family:nunito,"Open Sans",Arial,sans-serif;font-size:13px;font-weight:600;line-height:16px;margin-right:12px}
10369
- .brz-ed .brz-ed-option__multi-border .brz-button{background:0 0;border:none;outline:0;cursor:pointer}
10370
- .brz-ed .brz-ed-option__multi-border--active .brz-icon{color:#33beea}
10371
- .brz-ed .brz-ed-option__input-number{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}
10372
- .brz-ed .brz-ed-option__input-number .brz-ed-option__input-number__label{margin-right:10px}
10373
- .brz-ed .brz-ed-option__input-number .brz-input{outline:0;line-height:1;-moz-appearance:textfield}
10374
- .brz-ed .brz-ed-option__input-number .brz-input::-webkit-inner-spin-button,.brz-ed .brz-ed-option__input-number .brz-input::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}
10375
- .brz-ed .brz-ed-option__focal-point .brz-ed-control__focal-point+.brz-control__select{margin-left:8px}
10376
- .brz-ed .brz-ed-option__focal-point .brz-control__select{margin-left:4px}
10377
- .brz-ed .brz-ed-shape--1{background-image:url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTkyMCAyMDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+PHBhdGggZD0iTTE5MjAgLjAyM0wwIDIwMFYwaDE5MjB6IiBmaWxsPSJyZ2JhKDAsIDAsIDAsIDEpIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48L3N2Zz4=)}
10378
- .brz-ed .brz-ed-shape--2{background-image:url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTkyMCAyNDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+PGcgZmlsbD0icmdiYSgwLCAwLCAwLCAxKSIgZmlsbC1ydWxlPSJub256ZXJvIj48cGF0aCBkPSJNMCAyMDBWMGgxOTIweiIvPjxwYXRoIG9wYWNpdHk9Ii4yNTEiIGQ9Ik0wIDI0MFYwaDE5MjBMMTM3LjE5NSAyMjIuODV6Ii8+PC9nPjwvc3ZnPg==)}
10379
- .brz-ed .brz-ed-shape--3{background-image:url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTkyMCAyMDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+PHBhdGggZD0iTTE5MjAgMjAwTDEzNzQuMjU2IDExLjUxOCAwIDIwMFYwaDE5MjB6IiBmaWxsPSJyZ2JhKDAsIDAsIDAsIDEpIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48L3N2Zz4=)}
10380
- .brz-ed .brz-ed-shape--4{background-image:url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTkyMCAyNTAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+PGcgZmlsbD0icmdiYSgwLCAwLCAwLCAxKSIgZmlsbC1ydWxlPSJub256ZXJvIj48cGF0aCBvcGFjaXR5PSIuMjUiIGQ9Ik0xOTIwIDI0MEwxMzc0LjI1NiAxMS41MTggMCAyNTBWMGgxOTIweiIvPjxwYXRoIGQ9Ik0xOTIwIDIwMEwxMzc0LjI1NiAxMS41MTggMCAyMDBWMGgxOTIweiIvPjwvZz48L3N2Zz4=)}
10381
- .brz-ed .brz-ed-shape--5{background-image:url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTkyMCA2OSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48cGF0aCBkPSJNMTkyMCAzMi4zMzJMMTg3Mi4wMDMgNjlsLTQ3Ljk5OS0zNi42NjhMMTc3Ni4wMDggNjlsLTQ3Ljk5Ny0zNi42NjgtNDggMzYuNjY4LTQ3Ljk5OC0zNi42NjhMMTU4NC4wMTYgNjlsLTQ3Ljk5Ny0zNi42NjhMMTQ4OC4wMiA2OWwtNDcuOTk5LTM2LjY2OEwxMzkyLjAyMiA2OWwtNDgtMzYuNjY4LTQ4IDM2LjY2OC00OC0zNi42NjhMMTIwMC4wMjUgNjlsLTQ3Ljk5OS0zNi42NjgtNDggMzYuNjY4LTQ4LTM2LjY2OC00OCAzNi42NjgtNDgtMzYuNjY4TDkxMi4wMjcgNjlsLTQ4LTM2LjY2OEw4MTYuMDMyIDY5bC00Ny45OTctMzYuNjY4TDcyMC4wMzMgNjlsLTQ3Ljk5OC0zNi42NjgtNDggMzYuNjY4LTQ3Ljk5OC0zNi42NjhMNTI4LjA0IDY5bC00OC0zNi42NjhMNDMyLjAzNiA2OWwtNDguMDA0LTM2LjY2OC00OCAzNi42NjgtNDguMDA1LTM2LjY2OC00OCAzNi42NjgtNDguMDAzLTM2LjY2OEwxNDQuMDIgNjkgOTYuMDE4IDMyLjMzMiA0OC4wMSA2OSAwIDMyLjMzMlYwaDE5MjB6IiBmaWxsPSJyZ2JhKDAsIDAsIDAsIDEpIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48L3N2Zz4=)}
10382
- .brz-ed .brz-ed-shape--6{background-image:url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTkxOSAxMDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+PHBhdGggZD0iTTE4NjUuNjg3IDEwMGMtMjYuNjU3IDAtMjYuNjU3LTMzLjMxNC01My4zMTUtMzMuMzE0LTI2LjY1NCAwLTI2LjY1NCAzMy4zMTQtNTMuMzA4IDMzLjMxNHMtMjYuNjU0LTMzLjMxNC01My4zMS0zMy4zMTRjLTI2LjY1MyAwLTI2LjY1MyAzMy4zMTQtNTMuMzA2IDMzLjMxNHMtMjYuNjUzLTMzLjMxNC01My4zMDYtMzMuMzE0Yy0yNi42NTUgMC0yNi42NTUgMzMuMzE0LTUzLjMxIDMzLjMxNC0yNi42NTIgMC0yNi42NTItMzMuMzE0LTUzLjMwNS0zMy4zMTQtMjYuNjU0IDAtMjYuNjU0IDMzLjMxNC01My4zMSAzMy4zMTQtMjYuNjUzIDAtMjYuNjUzLTMzLjMxNC01My4zMDctMzMuMzE0LTI2LjY1MiAwLTI2LjY1MiAzMy4zMTQtNTMuMzA1IDMzLjMxNC0yNi42NTIgMC0yNi42NTItMzMuMzE0LTUzLjMwNC0zMy4zMTQtMjYuNjUxIDAtMjYuNjUxIDMzLjMxNC01My4zMDMgMzMuMzE0LTI2LjY1MyAwLTI2LjY1My0zMy4zMTQtNTMuMzA1LTMzLjMxNC0yNi42NSAwLTI2LjY1IDMzLjMxNC01My4zMDEgMzMuMzE0LTI2LjY1MyAwLTI2LjY1My0zMy4zMTQtNTMuMzA3LTMzLjMxNC0yNi42NSAwLTI2LjY1IDMzLjMxNC01My4zMDEgMzMuMzE0LTI2LjY1NCAwLTI2LjY1NC0zMy4zMTQtNTMuMzA2LTMzLjMxNC0yNi42NTIgMC0yNi42NTMgMzMuMzE0LTUzLjMwNSAzMy4zMTRzLTI2LjY1My0zMy4zMTQtNTMuMzA1LTMzLjMxNFM4MjYuMjE2IDEwMCA3OTkuNTY0IDEwMGMtMjYuNjU0IDAtMjYuNjU0LTMzLjMxNC01My4zMDYtMzMuMzE0LTI2LjY1MiAwLTI2LjY1MiAzMy4zMTQtNTMuMzA0IDMzLjMxNC0yNi42NTMgMC0yNi42NTMtMzMuMzE0LTUzLjMwNi0zMy4zMTQtMjYuNjUyIDAtMjYuNjUyIDMzLjMxNC01My4zMDQgMzMuMzE0LTI2LjY1MyAwLTI2LjY1My0zMy4zMTQtNTMuMzA0LTMzLjMxNC0yNi42NSAwLTI2LjY1MiAzMy4zMTQtNTMuMzA0IDMzLjMxNHMtMjYuNjUyLTMzLjMxNC01My4zMDUtMzMuMzE0UzM5OS43NzggMTAwIDM3My4xMjYgMTAwYy0yNi42NTMgMC0yNi42NTMtMzMuMzE0LTUzLjMwNi0zMy4zMTQtMjYuNjUyIDAtMjYuNjUyIDMzLjMxNC01My4zMDQgMzMuMzE0cy0yNi42NTItMzMuMzE0LTUzLjMwNC0zMy4zMTRjLTI2LjY1MSAwLTI2LjY1MSAzMy4zMTQtNTMuMzAyIDMzLjMxNHMtMjYuNjUxLTMzLjMxNC01My4zMDMtMzMuMzE0Yy0yNi42NSAwLTI2LjY1IDMzLjMxNC01My4zMDIgMzMuMzE0QzI2LjY1MiAxMDAgMjYuNjUyIDY2LjY4NiAwIDY2LjY4NlYwaDE5MTkuMDAzTDE5MTkgNjYuNjg2Yy0yNi42NTcgMC0yNi42NTcgMzMuMzE0LTUzLjMxNCAzMy4zMTR6IiBmaWxsPSJyZ2JhKDAsIDAsIDAsIDEpIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48L3N2Zz4=)}
10383
- .brz-ed .brz-ed-shape--7{background-image:url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTkyMCAyMDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+PHBhdGggZD0iTTAgMTExLjIyYzM5LjkyNCA1Ny44NjMgNDMuNjM1LTgxLjEyIDg2LjA1Ny00OS4zNzcgMjIuOTYgMTcuMTggMjguNDIzIDEzOS43OTUgNjMuNjcgMTMxLjU3NyAyOS42OS02LjkyIDQ2LjkyMy00NC42ODMgNjIuMTI4LTcxLjc1NiAzMS44Ny01MC4wMzkgODAuMzM0IDI0LjY4NiAxMzQuNzIgNC40NzcgNDMuNjg3LTE2LjIzMiAzNS40Mi0zNi4yNjYgNzAuODQyLS4zOTggMzguMDg1IDM4LjU2MyA2NS4zNDMtNTkuMzgxIDkyLjYzLTUxLjI2NSA1Mi41MzUgMTUuNjI2IDY2LjUyMyAxNzUuOTEyIDEwNy4zODYgODMuNDQyIDIxLjM5NS00OC40MTQgNjguODc0LTEyMS44MSAxMDMuNDI0LTQ1Ljg3NSA0NS4xNDggOTkuMjMgNTQuMzM3IDE1LjAxIDczLjkzNS0zNi45OTIgMjcuMjg2LTcyLjQwMiA0Ny41NTkgNTAuODI4IDkwLjk5NiA2MS40MDIgMjUuNTIgNi4yMTIgNDMuNzQtMjQuNDQyIDU2LjM5Ni00Ny4yNzUgNTAuMTktNjcuNjQ3IDcyLjIyMyAzOC41MTcgMTA1LjgwNCA0Mi45MTMgMzMuNTgyIDQuMzk1IDQzLjk1Mi00MC45MzMgNzguMTctMzEuMjU3IDM4LjY1NyAxMC45MzIgNDQuNzI5IDk5LjYyNSA3NS43MDUgOTguNTg1IDMyLjA2Ni0xLjA3NyAxMC40NzUtMTEzLjI5MiA1OC4yNjMtMTMxLjk4NCAzNy4wNTQtMTQuNDkyIDQ0Ljk5NiA0Ni41MDQgODcuMjggNDUuNzE1IDQyLjI4NS0uNzg5IDUzLjE0LTEzNy43MjUgOTUuMDgyLTQ0Ljg4NiA5LjM3MyAyMC43NSAxNi4zMjIgMTAzLjYyMSA0My40MzMgMTA5LjQwNiAzNS4wNjMgNy40OCA0My44Ni04MS4zNjQgOTAuOTIzLTgxLjcxNCA2OC4zMjcgNS4wNzcgNjEuOTMzIDgyLjEwMSA5Ni43MSA3MC4zMzUgMjkuODctMTAuMTA2IDQ5LjE4Ny0xMzEuNTQ2IDcyLjc3OS0xMjIuODAyIDI2LjQzIDkuNzk3IDI5LjIxNCAxMTkuODgzIDc3LjkxNiA3MC42MjQgMjMuMTIyLTIzLjM4NSAzNC4zNy04Mi4xODQgNjkuMzUtMzYuMzU2IDIxLjE2MyAyNy43MjYgNC4wMDMgNy43OTkgMjYuNDAxIDM1LjIwMlYwSDB2MTExLjIyeiIgZmlsbD0icmdiYSgwLCAwLCAwLCAxKSIgZmlsbC1ydWxlPSJub256ZXJvIi8+PC9zdmc+)}
10384
- .brz-ed .brz-ed-shape--8{background-image:url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTkyMCAyMDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+PGcgZmlsbD0icmdiYSgwLCAwLCAwLCAxKSIgZmlsbC1ydWxlPSJub256ZXJvIj48cGF0aCBkPSJNMCAxMTEuMjJjMzkuOTI0IDU3Ljg2MyA0My42MzUtODEuMTIgODYuMDU3LTQ5LjM3NyAyMi45NiAxNy4xOCAyOC40MjMgMTM5Ljc5NSA2My42NyAxMzEuNTc3IDI5LjY5LTYuOTIgNDYuOTIzLTQ0LjY4MyA2Mi4xMjgtNzEuNzU2IDMxLjg3LTUwLjAzOSA4MC4zMzQgMjQuNjg2IDEzNC43MiA0LjQ3NyA0My42ODctMTYuMjMyIDM1LjQyLTM2LjI2NiA3MC44NDItLjM5OCAzOC4wODUgMzguNTYzIDY1LjM0My01OS4zODEgOTIuNjMtNTEuMjY1IDUyLjUzNSAxNS42MjYgNjYuNTIzIDE3NS45MTIgMTA3LjM4NiA4My40NDIgMjEuMzk1LTQ4LjQxNCA2OC44NzQtMTIxLjgxIDEwMy40MjQtNDUuODc1IDQ1LjE0OCA5OS4yMyA1NC4zMzcgMTUuMDEgNzMuOTM1LTM2Ljk5MiAyNy4yODYtNzIuNDAyIDQ3LjU1OSA1MC44MjggOTAuOTk2IDYxLjQwMiAyNS41MiA2LjIxMiA0My43NC0yNC40NDIgNTYuMzk2LTQ3LjI3NSA1MC4xOS02Ny42NDcgNzIuMjIzIDM4LjUxNyAxMDUuODA0IDQyLjkxMyAzMy41ODIgNC4zOTUgNDMuOTUyLTQwLjkzMyA3OC4xNy0zMS4yNTcgMzguNjU3IDEwLjkzMiA0NC43MjkgOTkuNjI1IDc1LjcwNSA5OC41ODUgMzIuMDY2LTEuMDc3IDEwLjQ3NS0xMTMuMjkyIDU4LjI2My0xMzEuOTg0IDM3LjA1NC0xNC40OTIgNDQuOTk2IDQ2LjUwNCA4Ny4yOCA0NS43MTUgNDIuMjg1LS43ODkgNTMuMTQtMTM3LjcyNSA5NS4wODItNDQuODg2IDkuMzczIDIwLjc1IDE2LjMyMiAxMDMuNjIxIDQzLjQzMyAxMDkuNDA2IDM1LjA2MyA3LjQ4IDQzLjg2LTgxLjM2NCA5MC45MjMtODEuNzE0IDY4LjMyNyA1LjA3NyA2MS45MzMgODIuMTAxIDk2LjcxIDcwLjMzNSAyOS44Ny0xMC4xMDYgNDkuMTg3LTEzMS41NDYgNzIuNzc5LTEyMi44MDIgMjYuNDMgOS43OTcgMjkuMjE0IDExOS44ODMgNzcuOTE2IDcwLjYyNCAyMy4xMjItMjMuMzg1IDM0LjM3LTgyLjE4NCA2OS4zNS0zNi4zNTYgMjEuMTYzIDI3LjcyNiA0LjAwMyA3Ljc5OSAyNi40MDEgMzUuMjAyVjBIMHYxMTEuMjJ6Ii8+PHBhdGggZD0iTTE5MjAgMTExLjIyYy0zOS45MjQgNTcuODYzLTExMy42MTQtMTI1LjI3MS0xMDEuMjAyLTkzLjI4MkMxODMyIDUxLjk2IDE3ODQuODcyIDExMi45NiAxNzU4IDExMi45NnMtNjAuNzk1LTY3Ljk1LTc2LTk1LjAyM2MtMzEuODctNTAuMDQtNjkuNjE0IDEzOC43MjUtMTI0IDExOC41MTctNDMuNjg4LTE2LjIzMy0xOS45OTUtNDYuNTgtNTUuNDE3LTEwLjcxMi0zOC4wODUgMzguNTYzLTY1LjM0My01OS4zODEtOTIuNjMtNTEuMjY1LTUyLjUzNSAxNS42MjYtNzAuMDkgMTM5LjY1Ni0xMTAuOTUzIDQ3LjE4Ni0yMS4zOTUtNDguNDE0LTY1LjMwNy01Ni4xNDItOTkuODU3IDE5Ljc5My0xNi40MzMgMzYuMTE4LTI4LjEwMiA0Ny45MzItMzcuMjQzIDQ1Ljg0MS0xNS45NzMtMy42NTItMjQuMjI3LTQ5Ljc1OS0zNi42OTItODIuODM0LTI3LjI4Ni03Mi40LTQ3LjU1OSAyMS40MTctOTAuOTk2IDMxLjk5LTI1LjUyIDYuMjEzLTQzLjc0LTI0LjQ0LTU2LjM5Ni00Ny4yNzQtNTAuMTktNjcuNjQ3LTc1LjIzNCA0Mi44OC0xMDguODE2IDQ3LjI3NS0zMy41ODIgNC4zOTUtNDAuOTQtNDUuMjk1LTc1LjE1OS0zNS42MTktMzguNjU2IDEwLjkzMi0zNS44NjUgNzguNjM2LTY2Ljg0MSA3Ny41OTUtMzIuMDY2LTEuMDc3LTE5LjMzOC05Mi4zMDItNjcuMTI2LTExMC45OTRDNjIyLjgyIDUyLjk0NSA2MTAuMjg0IDE3Mi4zNTcgNTY4IDE3MS41N2MtNDIuMjg1LS43OS0zMy0xNDQuMTE4LTcwLTEwNC4xMzItMTkuMTMzIDIwLjY3Ny0yOC44ODkgODQuNjk5LTU2IDkwLjQ4My0zNS4wNjMgNy40OC01OS45MzYtNTYuNzM0LTEwNy01Ny4wODQtNjguMzI3IDUuMDc4LTU2LjMyNyA0MC42MjEtOTUgNDAuNjIxcy00OC40MDgtMzcuMjQtNzItMjguNDk2Yy0yNi40MzEgOS43OTYtMjUuNzUxIDk0LjAwNy02MiAzNi41NTQtMTQuNzk1LTIzLjQ1LTQ0LjYyLTExNy41ODQtNzkuNi03MS43NTZDNS4yMzkgMTA1LjQ4NSAyMi4zOTkgODUuNTU4IDAgMTEyLjk2VjBoMTkyMHYxMTEuMjJ6IiBvcGFjaXR5PSIuMjUiLz48L2c+PC9zdmc+)}
10385
- .brz-ed .brz-ed-shape--9{background-image:url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTkyMCAyMDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+PGcgZmlsbD0icmdiYSgwLCAwLCAwLCAxKSIgZmlsbC1ydWxlPSJub256ZXJvIj48cGF0aCBkPSJNMTAwMC41MjEuMDIzTDAgMjAwVjBoMTAwMC41MjF6Ii8+PHBhdGggZD0iTTkxOS40NzkuMDIzTDE5MjAgMjAwVjBIOTE5LjQ3OXoiLz48L2c+PC9zdmc+)}
10386
- .brz-ed .brz-ed-shape--10{background-image:url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTkyMCAyNDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+PGcgZmlsbD0icmdiYSgwLCAwLCAwLCAxKSIgZmlsbC1ydWxlPSJub256ZXJvIj48cGF0aCBvcGFjaXR5PSIuMjUiIGQ9Ik0xOTIwIDB2MjQwTDk1OS45NDQgOS43MzQgMCAyNDBWMHoiLz48cGF0aCBkPSJNMTkyMCAwdjE5OC4zNDdMOTU5Ljk0NCA4LjA0NCAwIDE5OC4zNDdWMHoiLz48L2c+PC9zdmc+)}
10387
- .brz-ed .brz-ed-shape--11{background-image:url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTkyMCAyNDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+PHBhdGggZD0iTTE5MjAgNS4yMDZjLTMyMCAxLjk5Ni02NDAgMjEuNDMyLTk2MCA1OC4zMDhDNjQwIDEwMC4zOSAzMjAgMTU5LjIyIDAgMjQwVjBoMTkyMHY1LjIwNnoiIGZpbGw9InJnYmEoMCwgMCwgMCwgMSkiIGZpbGwtcnVsZT0ibm9uemVybyIvPjwvc3ZnPg==)}
10388
- .brz-ed .brz-ed-shape--12{background-image:url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTkyMCAyNDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+PGcgZmlsbD0icmdiYSgwLCAwLCAwLCAxKSIgZmlsbC1ydWxlPSJub256ZXJvIj48cGF0aCBkPSJNMCAyNDBWMGgxOTIwdjQuNTM4Yy0zMTIuNjY3LS44MjctNjMyLjY2NyAxNC45MzgtOTYwIDQ3LjI5NUM2MzIuNjY3IDg0LjE5MSAzMTIuNjY3IDE0Ni45MTMgMCAyNDB6IiBvcGFjaXR5PSIuMTUiLz48cGF0aCBkPSJNMCAyMTAuNzA0VjBoMTkyMHY0LjUwN2MtMzMyIDEuMi02NTIgMTYuNzM1LTk2MCA0Ni42MDVDNjUyIDgwLjk4MiAzMzIgMTM0LjE4IDAgMjEwLjcwNHoiIG9wYWNpdHk9Ii4zIi8+PHBhdGggZD0iTTAgNC41MDdWMGgxOTIwdjQuNTA3Yy0zMjAgMS40OTQtNjQwIDE2LjA0NS05NjAgNDMuNjUxQzY0MCA3NS43NjUgMzIwIDExOS44MDYgMCAxODAuMjgyVjQuNTA3eiIvPjwvZz48L3N2Zz4=)}
10389
- .brz-ed .brz-ed-shape--13{background-image:url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTkyMCAyNDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+PHBhdGggZD0iTTE5MjAgNS4yMDZWMjQwYy0xNjAtODAuNzgtMzIwLTEzOS42MS00ODAtMTc2LjQ4Ni0xNjAtMzYuODc2LTMyMC01Ni4zMTItNDgwLTU4LjMwOC0xNjAgMS45OTYtMzIwIDIxLjQzMi00ODAgNTguMzA4QzMyMCAxMDAuMzkgMTYwIDE1OS4yMiAwIDI0MFYwaDE5MjB2NS4yMDZ6IiBmaWxsPSJyZ2JhKDAsIDAsIDAsIDEpIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48L3N2Zz4=)}
10390
- .brz-ed .brz-ed-shape--14{background-image:url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTkyMCAyNDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+PGcgZmlsbD0icmdiYSgwLCAwLCAwLCAxKSIgZmlsbC1ydWxlPSJub256ZXJvIj48cGF0aCBkPSJNMCAyNDBWMGw5NjAgLjAzVjRDNzU0IDcuODQ5IDYwMCAyMy4xODIgNDk4IDUwIDM1NC4zMzQgODcuNzczIDE4OC4zMzQgMTUxLjEwNiAwIDI0MHoiIG9wYWNpdHk9Ii4xNSIvPjxwYXRoIGQ9Ik0wIDIxMVYwaDk2MHY1Qzc5NCAxLjY2NyA2MzQgMTcuMTg3IDQ4MCA1MS41NiAzMjYgODUuOTM1IDE2NiAxMzkuMDggMCAyMTF6IiBvcGFjaXR5PSIuMyIvPjxwYXRoIGQ9Ik0wIDQuNVYwaDk2MHY1QzgwMCA2LjE1OCA2NDAgMjAuNTIgNDgwIDQ4LjA4MyAzMjAgNzUuNjQ3IDE2MCAxMTkuNjIgMCAxODBWNC41eiIvPjxnPjxwYXRoIGQ9Ik0xOTIwIDI0MFYwTDk2MCAuMDNWNGMyMDYgMy44NDkgMzYwIDE5LjE4MiA0NjIgNDYgMTQzLjY2NiAzNy43NzMgMzA5LjY2NiAxMDEuMTA2IDQ5OCAxOTB6IiBvcGFjaXR5PSIuMTUiLz48cGF0aCBkPSJNMTkyMCAyMTFWMEg5NjB2NWMxNjYtMy4zMzMgMzI2IDEyLjE4NyA0ODAgNDYuNTYgMTU0IDM0LjM3NCAzMTQgODcuNTIgNDgwIDE1OS40NHoiIG9wYWNpdHk9Ii4zIi8+PHBhdGggZD0iTTE5MjAgNC41VjBIOTYwdjVjMTYwIDEuMTU4IDMyMCAxNS41MiA0ODAgNDMuMDgzQzE2MDAgNzUuNjQ3IDE3NjAgMTE5LjYyIDE5MjAgMTgwVjQuNXoiLz48L2c+PC9nPjwvc3ZnPg==)}
10391
- .brz-ed .brz-ed-shape--15{background-image:url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTkyMCAyMDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+PHBhdGggZD0iTTAgMGgxOTIwdjIwMGwtMTYwLTE1LjgzM0wxNDM4IDcwIDcwNyAxODQuMTY3IDIxMSA5MCAwIDIwMHoiIGZpbGw9InJnYmEoMCwgMCwgMCwgMSkiIGZpbGwtcnVsZT0ibm9uemVybyIvPjwvc3ZnPg==)}
10392
- .brz-ed .brz-ed-shape--16{background-image:url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTkyMCAyNDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+PGcgZmlsbD0icmdiYSgwLCAwLCAwLCAxKSIgZmlsbC1ydWxlPSJub256ZXJvIj48cGF0aCBkPSJNMCAwaDE5MjB2MTk4LjM0N0wxNzYwIDE4MiAxNDM4IDcwIDcwNyAxODMgMjExIDg5IDAgMTk4LjM0N3oiLz48cGF0aCBvcGFjaXR5PSIuMiIgZD0iTTAgMGgxOTIwdjIyOC4xTDE3MjEgMjQwIDE0MzggNzBsLTI4MyAxMjIuMzk3LTM0Ny4zNDctMjUuMDRMNzA3IDE4M2wtODEuOTItMTUuNTE3TDM4MyAxOTIuMzk3IDIxMSA4OSAwIDIyOC4xeiIvPjxwYXRoIG9wYWNpdHk9Ii4yNSIgZD0iTTE5MjAgMEgwdjIyOC4xbDE5MyA5LjkxN0wzOTAgMTIzbDMxNyA2MCA2Ny0xMS40MyA0NzctMjMuODAxIDI3MSA0NC42MjhMMTYxNiAxMzJsMTQ0IDUwIDExMCAxMiA1MCAzNC4xeiIvPjwvZz48L3N2Zz4=)}
10393
- .brz-ed .brz-ed-shape--17{background-image:url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTkyMCAyNDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+PHBhdGggZD0iTTE5MjAgMEgwdjE0NC40MTlMNjQwIDI0MGw2NDAtMTg5LjE5NyA2NDAgOTMuNjE2eiIgZmlsbD0icmdiYSgwLCAwLCAwLCAxKSIgZmlsbC1ydWxlPSJub256ZXJvIi8+PC9zdmc+)}
10394
- .brz-ed .brz-ed-shape--18{background-image:url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTkyMCAyNDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+PGcgZmlsbD0icmdiYSgwLCAwLCAwLCAxKSIgZmlsbC1ydWxlPSJub256ZXJvIj48cGF0aCBvcGFjaXR5PSIuMjUiIGQ9Ik0wIDBoMTkyMHYxNDQuNDE5TDEyNzcgMjIxbC0yODYtODUtMzUxIDEwNEwwIDE0NC40MTl6Ii8+PHBhdGggb3BhY2l0eT0iLjIiIGQ9Ik0xOTIwIDBIMHYxNDQuNDE5TDY0MCAyNDBsMTY3LjgxMS00OS44OUwxMDM4IDI0MGwzOTMtMTY3IDQ4OSA3MS40MTl6Ii8+PHBhdGggZD0iTTE5MjAgMEgwdjE0NC40MTlMNjQwIDI0MGw2NDAtMTg5LjE5NyA2NDAgOTMuNjE2eiIvPjwvZz48L3N2Zz4=)}
10395
- .brz-ed .brz-ed-shape--19{background-image:url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTkyMCAyNDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+PHBhdGggZD0iTTAgMTcyLjA0M0MxNjAgMjE3LjM0OCAzMjAgMjQwIDQ4MCAyNDBjMjQwIDAgNzIwLTEzOC40OTUgOTYwLTEzNi43NzQgMTYwIDEuMTQ3IDMyMCAyNC4wODYgNDgwIDY4LjgxN1YwSDB2MTcyLjA0M3oiIGZpbGw9InJnYmEoMCwgMCwgMCwgMSkiIGZpbGwtcnVsZT0ibm9uemVybyIvPjwvc3ZnPg==)}
10396
- .brz-ed .brz-ed-shape--20{background-image:url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTkyMCAyNDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+PGcgZmlsbD0icmdiYSgwLCAwLCAwLCAxKSIgZmlsbC1ydWxlPSJub256ZXJvIj48cGF0aCBkPSJNMTkyMCAxMjkuNzUxQzE3NjAgMTkxLjkxNyAxNjAwIDIyMyAxNDQwIDIyM2MtMTUyLjg5MiAwLTM5OS41MzItMzEuMzg0LTYyMC40NzUtNTMuNzg0QzY4NyAxOTEgNTU3LjEwOCAyMDUuNDY1IDQ3MCAyMDZjLTE2Mi0yLTMxOC42NjctMjEuMzMzLTQ3MC01OFYwaDE5MjB2MTI5Ljc1MXoiIG9wYWNpdHk9Ii4yMDMiLz48cGF0aCBkPSJNMjMwIDE5MGMxNjAgMzMuMzMzIDMyMCA1MCA0ODAgNTAgMjQwIDAgNzc2LTEwNSA5MjMtMTE1IDk4LTYuNjY3IDE5My42NjcgMSAyODcgMjNWMEgwdjE0OGM0NS4wNzMgMTAuNDE2IDgxLjA3MyAxOC4wODMgMTA4IDIzIDI2LjkyNyA0LjkxNyA2Ny41OTQgMTEuMjUgMTIyIDE5eiIgb3BhY2l0eT0iLjMiLz48cGF0aCBkPSJNMCAxNDhjMTYwIDM4LjQ3NiAzMjAgNTcuNzE0IDQ4MCA1Ny43MTQgMjQwIDAgNzIwLTExOC43MSA5NjAtMTE3LjIzNSAxNjAgLjk4MyAzMjAgMjAuODI0IDQ4MCA1OS41MjFWMEgwdjE0OHoiLz48L2c+PC9zdmc+)}
10397
- .brz-ed .brz-ed-shape--21{background-image:url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTkyMCAyNDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+PHBhdGggZD0iTTAgNzEuMDExYzgwLjU0Ny00OC42MTUgMTYwLjUxMi01MS45NjYgMjM5Ljg5NC0xMC4wNTQgMTE5LjA3NCA2Mi44NyAxMTkuOTE5IDExOS4yMTcgMjAzLjg3NSAxMTkuMjE3UzU0Ny44NjkgMzEuNjAyIDY5Ny43OSA0MC42NDZjMTQ5LjkyMiA5LjA0MyA3OC45NiAxNzIuNTIyIDIzOS44NzUgMTk3LjU2NSAxNjAuOTE2IDI1LjA0NCAzMDEuODU1LTIyMS4zNzMgNDc5Ljc1LTIwNy4zMDQgMTM1LjkzIDEwLjc1IDg2LjggMTQwLjkyIDE5Ny43NDMgMTYzLjg3NiA3My45NjEgMTUuMzA0IDE3NS4yOTMtMjYuMDg4IDMwMy45OTYtMTI0LjE3NVYuMjk4SDB2NzAuNzEzeiIgZmlsbD0icmdiYSgwLCAwLCAwLCAxKSIgZmlsbC1ydWxlPSJub256ZXJvIi8+PC9zdmc+)}
10398
- .brz-ed .brz-ed-shape--22{background-image:url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTkyMCAyNTUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+PGcgZmlsbD0icmdiYSgwLCAwLCAwLCAxKSIgZmlsbC1ydWxlPSJub256ZXJvIj48cGF0aCBkPSJNMCA3MWM1NS4yMjctMzguNjA3IDEyMi41MzItMzYuOTU1IDIwMS45MTQgNC45NTcgMTE5LjA3MyA2Mi44NyAxMTkuOTE4IDExOS4yMTcgMjAzLjg3NSAxMTkuMjE3IDgzLjk1NiAwIDEwNC4xLTE0OC41NzIgMjU0LjAyMi0xMzkuNTI4IDE0OS45MjIgOS4wNDMgNzguOTU5IDE3Mi41MjIgMjM5Ljg3NSAxOTcuNTY1IDE2MC45MTYgMjUuMDQ0IDMwMS44NTUtMjIxLjM3MyA0NzkuNzUtMjA3LjMwNCAxMzUuOTMgMTAuNzUgODYuOCAxNDAuOTIgMTk3Ljc0MyAxNjMuODc2QzE2NTEuMTQgMjI1LjA4NyAxNzY1LjA4IDE3OC44MjYgMTkxOSA3MVYwSDB2NzF6IiBvcGFjaXR5PSIuMyIvPjxwYXRoIGQ9Ik0wIDcxLjAxMWM4MC41NDctNDguNjE1IDE2MC41MTItNTEuOTY2IDIzOS44OTQtMTAuMDU0IDExOS4wNzQgNjIuODcgMTE5LjkxOSAxMTkuMjE3IDIwMy44NzUgMTE5LjIxN1M1NDcuODY5IDMxLjYwMiA2OTcuNzkgNDAuNjQ2YzE0OS45MjIgOS4wNDMgNzguOTYgMTcyLjUyMiAyMzkuODc1IDE5Ny41NjUgMTYwLjkxNiAyNS4wNDQgMzAxLjg1NS0yMjEuMzczIDQ3OS43NS0yMDcuMzA0IDEzNS45MyAxMC43NSA4Ni44IDE0MC45MiAxOTcuNzQzIDE2My44NzYgNzMuOTYxIDE1LjMwNCAxNzUuMjkzLTI1Ljk1MyAzMDMuOTk2LTEyMy43NzJWMEgwdjcxLjAxMXoiLz48L2c+PC9zdmc+)}
10399
- .brz-ed .brz-ed-shape--23{background-image:url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTkyMCAyNDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+PHBhdGggZD0iTTE5MjAgMHYxMzEuMTQ0Yy05NS45OCAwLTk2LjMzNiAxMDguODU2LTE5Mi4zMTkgMTA4Ljg1Ni05NS45ODIgMC05NS45ODItMTA4Ljg1Ni0xOTEuOTY5LTEwOC44NTYtOTUuOTg2IDAtOTUuOTg2IDU0LjY4LTE5MS45NjkgNTQuNjgtOTUuOTg2IDAtOTUuOTg2LTEyNS4xMS0xOTEuOTY5LTEyNS4xMS05NS45ODIgMC05NS45ODIgMTczLjg2OC0xOTEuOTY1IDE3My44NjhzLTk1Ljk4My0xMDMuNDM4LTE5MS45NjUtMTAzLjQzOGMtOTUuOTggMC05NS45OCA3MC45MzMtMTkxLjk1OSA3MC45MzNzLTk1Ljk3OS05OC4wMjEtMTkxLjk1OC05OC4wMjEtOTUuOTc5IDgxLjc2OC0xOTEuOTU4IDgxLjc2OGMtOTUuOTg2IDAtOTUuOTg2LTU0LjY4LTE5MS45NjktNTQuNjhWMGgxOTIweiIgZmlsbD0icmdiYSgwLCAwLCAwLCAxKSIgZmlsbC1ydWxlPSJub256ZXJvIi8+PC9zdmc+)}
10400
- .brz-ed .brz-ed-shape--24{background-image:url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTkyMCAzOTgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+PGcgZmlsbD0icmdiYSgwLCAwLCAwLCAxKSIgZmlsbC1ydWxlPSJub256ZXJvIj48cGF0aCBkPSJNMTkyMCAwdjE5OC4yNDdjLTk1Ljk4IDAtOTYuMzM2IDExNC43NTMtMTkyLjMxOSAxMTQuNzUzLTk1Ljk4MiAwLTk1Ljk4Mi0xMTQuNzUzLTE5MS45NjktMTE0Ljc1My05NS45ODYgMC05NS45ODYgNTcuNjQyLTE5MS45NjkgNTcuNjQyLTk1Ljk4NiAwLTk1Ljk4Ni0xMzEuODg1LTE5MS45NjktMTMxLjg4NS05NS45ODIgMC05NS45ODIgMTgzLjI4NS0xOTEuOTY1IDE4My4yODVzLTk1Ljk4My0xMDkuMDQyLTE5MS45NjUtMTA5LjA0MmMtOTUuOTggMC05NS45OCA3NC43NzYtMTkxLjk1OSA3NC43NzZzLTk1Ljk3OS0xMDMuMzMtMTkxLjk1OC0xMDMuMzMtOTUuOTc5IDg2LjE5Ni0xOTEuOTU4IDg2LjE5NmMtOTUuOTg2IDAtOTUuOTg2LTU3LjY0Mi0xOTEuOTY5LTU3LjY0MlYwaDE5MjB6IiBvcGFjaXR5PSIuMjUiLz48cGF0aCBkPSJNMTkyMCAwdjE1OC4zNThjLTk1Ljk4IDAtOTYuMzM2IDgxLjY0Mi0xOTIuMzE5IDgxLjY0Mi05NS45ODIgMC05NS45ODItODEuNjQyLTE5MS45NjktODEuNjQyLTk1Ljk4NiAwLTk1Ljk4NiA0MS4wMS0xOTEuOTY5IDQxLjAxLTk1Ljk4NiAwLTk1Ljk4Ni05My44MzItMTkxLjk2OS05My44MzItOTUuOTgyIDAtOTUuOTgyIDEzMC40LTE5MS45NjUgMTMwLjRzLTk1Ljk4My03Ny41NzgtMTkxLjk2NS03Ny41NzhjLTk1Ljk4IDAtOTUuOTggNTMuMi0xOTEuOTU5IDUzLjJzLTk1Ljk3OS03My41MTYtMTkxLjk1OC03My41MTYtOTUuOTc5IDYxLjMyNi0xOTEuOTU4IDYxLjMyNmMtOTUuOTg2IDAtOTUuOTg2LTQxLjAxLTE5MS45NjktNDEuMDFWMGgxOTIweiIgb3BhY2l0eT0iLjM1Ii8+PHBhdGggZD0iTTAgMHYyNDQuNjk0Qzk1Ljk4IDI0NC42OTQgOTYuMzM2IDM5OCAxOTIuMzE5IDM5OGM5NS45ODIgMCA5NS45ODItMTUzLjMwNiAxOTEuOTY5LTE1My4zMDYgOTUuOTg2IDAgOTUuOTg2IDc3LjAwOCAxOTEuOTY5IDc3LjAwOCA5NS45ODYgMCA5NS45ODYtMTc2LjE5NSAxOTEuOTY5LTE3Ni4xOTUgOTUuOTgyIDAgOTUuOTgyIDI0NC44NjMgMTkxLjk2NSAyNDQuODYzczk1Ljk4My0xNDUuNjc2IDE5MS45NjUtMTQ1LjY3NmM5NS45OCAwIDk1Ljk4IDk5Ljg5NyAxOTEuOTU5IDk5Ljg5N3M5NS45NzktMTM4LjA0NiAxOTEuOTU4LTEzOC4wNDYgOTUuOTc5IDExNS4xNTcgMTkxLjk1OCAxMTUuMTU3Yzk1Ljk4NiAwIDk1Ljk4Ni03Ny4wMDggMTkxLjk2OS03Ny4wMDhWMEgweiIgb3BhY2l0eT0iLjEzNCIvPjxwYXRoIGQ9Ik0xOTIwIDB2MTMxLjE0NGMtOTUuOTggMC05Ni4zMzYgMTA4Ljg1Ni0xOTIuMzE5IDEwOC44NTYtOTUuOTgyIDAtOTUuOTgyLTEwOC44NTYtMTkxLjk2OS0xMDguODU2LTk1Ljk4NiAwLTk1Ljk4NiA1NC42OC0xOTEuOTY5IDU0LjY4LTk1Ljk4NiAwLTk1Ljk4Ni0xMjUuMTEtMTkxLjk2OS0xMjUuMTEtOTUuOTgyIDAtOTUuOTgyIDE3My44NjgtMTkxLjk2NSAxNzMuODY4cy05NS45ODMtMTAzLjQzOC0xOTEuOTY1LTEwMy40MzhjLTk1Ljk4IDAtOTUuOTggNzAuOTMzLTE5MS45NTkgNzAuOTMzcy05NS45NzktOTguMDIxLTE5MS45NTgtOTguMDIxLTk1Ljk3OSA4MS43NjgtMTkxLjk1OCA4MS43NjhjLTk1Ljk4NiAwLTk1Ljk4Ni01NC42OC0xOTEuOTY5LTU0LjY4VjBoMTkyMHoiLz48L2c+PC9zdmc+)}
10401
- .brz-ed .brz-ed-shape--25{background-image:url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTkyMCA3ODgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+PHBhdGggZD0iTTE5MjAgMEgwdjE3M2M0OC0zOC42NjcgOTUuNjY3LTc1LjMzMyAxNDMtMTEwIDcxLTUxIDExMC01OCAyMDYtNDAgMzY2IDg0IDExNTQgMjQzIDEyOTMgMjk3IDU4IDIyIDg4IDQ0IDEyMSAxMDEgMjMuMzMzIDUyIDc1LjY2NyAxNzQuMzMzIDE1NyAzNjdWMHoiIGZpbGw9InJnYmEoMCwgMCwgMCwgMSkiIGZpbGwtcnVsZT0ibm9uemVybyIvPjwvc3ZnPg==)}
10402
- .brz-ed .brz-ed-shape--26{background-image:url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTkyMCA3OTgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+PGcgZmlsbD0icmdiYSgwLCAwLCAwLCAxKSIgZmlsbC1ydWxlPSJub256ZXJvIj48cGF0aCBkPSJNMTkyMCAwSDB2MTg5YzI0LTE4IDYwLjM0Ny00MS43NTUgMTA5LjA0LTcxLjI2NEMyMDcuMzY4IDU3Ljc3MiAyNjEuMzggNTAuOTE1IDM5NC4zMyA3OC41NDkgOTAyIDE3MiAxMzQ5IDI3MCAxNTM0Ljk5OSAzMTkuNTEyYzgwLjMyNCAyMS41NTMgMTIxLjg3IDUzLjEwNiAxNjcuNTcyIDEwOC45NDdDMTczNC44ODYgNDc5LjQwMiAxODA3LjM2MSA2MDIuNTgzIDE5MjAgNzk4VjB6IiBvcGFjaXR5PSIuMjUiLz48cGF0aCBkPSJNMTkyMCAwSDB2MTczYzQ4LTM4LjY2NyA5NS42NjctNzUuMzMzIDE0My0xMTAgNzEtNTEgMTEwLTU4IDIwNi00MCAzNjYgODQgMTE1NCAyNDMgMTI5MyAyOTcgNTggMjIgODggNDQgMTIxIDEwMSAyMy4zMzMgNTIgNzUuNjY3IDE3NC4zMzMgMTU3IDM2N1YweiIvPjwvZz48L3N2Zz4=)}
10403
- .brz-ed .brz-ed-shape--27{background-image:url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTkyMCA4MDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+PHBhdGggZD0iTTE5MjAgMEgwdjEyLjk4NGMxMDI5LjcxOSAxMzAuNTAzIDE1ODcuMjkyIDIxMy43MzMgMTY3Mi43MTkgMjQ5LjY4OCA1My40NjggMjEuOTcyIDgxLjEyNSA0My45NDUgMTExLjU0NyAxMDAuODc0QzE4MDUuNzc2IDQxNS40OCAxODUxLjAyIDU2MC45NjYgMTkyMCA4MDBWMHoiIGZpbGw9InJnYmEoMCwgMCwgMCwgMSkiIGZpbGwtcnVsZT0ibm9uemVybyIvPjwvc3ZnPg==)}
10404
- .brz-ed .brz-ed-shape--28{background-image:url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTkyMCA4MDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+PGcgZmlsbD0icmdiYSgwLCAwLCAwLCAxKSIgZmlsbC1ydWxlPSJub256ZXJvIj48cGF0aCBkPSJNMTkyMCAwSDB2MTIuOTg0YzEwMjkuNzE5IDEzMC41MDMgMTU4Ny4yOTIgMjEzLjczMyAxNjcyLjcxOSAyNDkuNjg4IDUzLjQ2OCAyMS45NzIgODEuMTI1IDQzLjk0NSAxMTEuNTQ3IDEwMC44NzRDMTgwNS43NzYgNDE1LjQ4IDE4NTEuMDIgNTYwLjk2NiAxOTIwIDgwMFYweiIvPjxwYXRoIGQ9Ik0xOTIwIDBIMHYxM2M5OTYuNzg4IDE1OS44MjYgMTUzNi45MTYgMjU3LjcxNyAxNjIwLjM4NiAyOTMuNjcyIDUyLjI0MyAyMS45NzIgNzkuMjY1IDQzLjk0NSAxMDguOTkgMTAwLjg3NEwxOTIwIDgwMFYweiIgb3BhY2l0eT0iLjI1Ii8+PC9nPjwvc3ZnPg==)}
10405
- .brz-ed .brz-ed-shape--29{background-image:url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTkyMCAxNDQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+PHBhdGggZD0iTTAgMGgxOTIwdjcwYy05Ni0zMS0xODQgMS42MzktMjg5IDIxLTE0NSAyOC0yNDUgNDEtMzczIDUwLTY2IDQtMTUwIDctMzI3LTMwLTE3MS0zMS0zMDEtODMtMzk5LTgzLTExNCA0LTI1OCA3MC0zNjIgNzctNDQgLjY2Ny0xMDAuNjY3LTExLTE3MC0zNVYweiIgZmlsbD0icmdiYSgwLCAwLCAwLCAxKSIgZmlsbC1ydWxlPSJub256ZXJvIi8+PC9zdmc+)}
10406
- .brz-ed .brz-ed-shape--30{background-image:url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTkyMCA5OSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48cGF0aCBkPSJNNzgxLjY1OSA2Ny42NzljNS4zOTQtLjI5NyAxOC4wODggMS4xNTkgMjIuNjYtMS41MjYtMi44NDYgMS42NjctMTkuMjMuMzItMjEuOTU0LjM5NC01Ljk1NC4xNjQtMTEuOTAzLjE5OC0xNy45MDIuNTMyLTEwLjM5Ni41NzgtMjAuNjg0Ljc3Ni0zMS4wMjMgMS43LTMwLjM0MyAyLjcxMy02MC42MDYgMy45MDktOTAuOTgzIDQuNzAyLS43NzYuMjYtNi40NDItLjA2OC05LjExIDEuMDk5Ljk2OS0uNDc2IDIuMDYyLS43NDIgMy4yMTItLjkyMy0xMi42NzguMzExLTI1LjM3NC41NzItMzguMTIuODIxLTE4LjU3MS4zNjMtMzcuMzQ2LjkwNi01NS44OTQgMi4xNzUtMTMuMTk0LjkwNy0yNi4zMDkgMS4zMDMtMzkuNDg2IDIuMjA0LTguNTU1LjU4NC0yOC40MTcgNC44MjctMzUuMzIzIDEuMDk0IDEzLjYwMi0zLjg5OCAyOS42NTgtMS43OCA0My43MDItMi43NDIgOS42MDgtLjY2MyAxOS4xMDgtLjc2NSAyOC42OTQtMS40MjIgMTkuNjAxLTEuMzQzIDM4Ljk5My0yLjc5MyA1OC43MzctMy40NzMgMzcuMTE4LTEuMjc1IDc1LjAxOC01LjIxOCAxMTIuMDA2LTUuMzgyIDIzLjMzLS4xMDIgNDcuMzE2LTIuOTc0IDcwLjUwNC0zLjUwMSAxNi42NzMtLjM4IDMzLjY0Ni0uODE2IDUwLjEzNy0yLjIzMiAzNi4wMzYtMy4wOTMgNzIuNzAyLS45MyAxMDguNzk1LTMuODUzIDEyLjU4OC0xLjAyIDI1LjcwMyAxLjc5IDM4LjM1OS0uMjA0IDcuMTc3LTEuMTMzIDEzLjk3LTIuMDQ1IDIxLjg3My0yLjAzOSAxMS43OTUuMDA2IDIzLjQwMy0uODUgMzUuMzU3LS44NzIgOC41MTQtLjAxNyAxNy44NjguNzAyIDI2LjE2Ny0xLjU0MS0xNS45NDItMi4xODctMzEuOTc0LjM5LTQ4LjAxMi4yMzgtMjAuMzY3LS4xOTktNDAuODM1LS4zLTYxLjI2NC42MTEtMzQuMzQ4IDEuNTMtNjkuMDQyIDEuMjkyLTEwMy41MDkgMy4wMTQtMTE2LjcxNCA1LjgyNC0yMzMuNTU0IDExLjkxNC0zNTAuMzQyIDE2LjIyNS02MS43NSAyLjI3OC0xMjMuNzUgNy40NS0xODUuMjggMTAuNDc1LTI3LjIyMiAxLjM0My01NC4wODYgMy45MzgtODEuMjkgNS4zNi0xMC4zNDUuNTM4LTk3LjE3NiAxMC45MDUtOTguNTY0IDYuMTc1IDE0LjU0My00Ljc4MiAzMy4wNTctMi45NjMgNDguMzk4LTMuOTQ5IDExLjAyNS0uNzA4IDIyLjAzMi0xLjk4MyAzMy4wNTEtMi44ODQgMjkuNDE0LTIuNDAyIDU5LjQyOC00LjAwNSA4OS4wMzQtNS43NzIgNzcuMi00LjYxMiAxNTQuMDM3LTExLjU1NyAyMzEuMzA1LTE0LjA5IDM1LjY0LTEuMTY3IDcxLjMzNi0zLjIgMTA2Ljk4Ny00LjQzNiAyNS45NDctLjkgNTEuODItMy42MDMgNzcuNzg0LTQuMjMxIDE2LjIzNi0uMzkxIDMzLjIzMi4yMDMgNDkuNC0yLjUxLTI3LjQ1My0yLjkzLTU3LjI0MSAyLjE4Ny04NC44NDcgMy4xMDQtMjEuNzY2LjcyNi00NS4yODIgNS41NjQtNjYuODI3IDMuMzM3IDIuNTc3LTEuMTUgNy43NTUuNzcgOS43NzgtMS4yLS4wMTEuMDA1LTE0LjcxMy0uODc5LTE2LjIzNy0uNzQzLTQuMjE0LjM4LTguNDI0IDEuMDQyLTEyLjcwNyAxLjMyLTEzLjk0Ny45MDYtMjcuNzk5Ljg1NS00MS43NCAxLjc5NmExNjg3Ljc4IDE2ODcuNzggMCAwIDEtNTguNzY2IDIuOTM0Yy03MC4yMjYgMi4yNzgtMTQwLjg2NSA4LjU0NC0yMTEuMTU0IDEzLjQ0NC0zMy42IDIuMzQ1LTY2Ljk2MiAyLjc0OC0xMDAuNjAyIDUuODQ2LTUuMjkyLjQ4OC01NS45NjEgMy40MDUtODkuMDA2IDYuNDQyIDQuMDA1LS40NjUgNy4xMjctLjg4NCA4LjA3OC0xLjIzLTYuMTU4LS42NDUgNi43ODctMS40NSA5Ljc5NS0xLjYyNSA3LjY2Ni0uNDQ4IDE1LjI5Ny0xLjU3IDIyLjk2Ny0yLjA0IDUuNzczLS4zNTEgMTEuMzctLjc5OSAxNy4wOTgtMS40NzkgMTEuODY4LTEuNDA1IDMzLjYyMyAxLjQ1IDQzLjcxMy00LjcxM2E1LjIwNSA1LjIwNSAwIDAgMS0xLjk2Ni0uMzk3YzQuODYtMi4yMzcgMTEuODQtLjIxNSAxNi45MjctMS44NTItMTQuMTkxLTMuMzQ4LTI5LjgyNyAyLjY3NC00My4yMDMgMy40NDQtMTIuODM3Ljc0My0yNi4wNiAxLjg3LTM4Ljg2MyAzLjM4OGExNTQ2LjYgMTU0Ni42IDAgMCAxLTM5LjgxNSA0LjE5MmMtOS43MDQuOTAxLTE5LjA2OSAyLjgyNy0yOC45MTUgMy43NS05Ljk3Ni45MzYtMTkuOTUzIDEuODY1LTI5LjkzIDIuOC0yLjc5OC4yNi0xNi4zNzItLjMwNy0xOS4yMTYgMS4yMTcgMi40Ny0yLjI0MyAxNS43OS0xLjk4OCAxOC42NTYtMi45OTYtNS41OC0uNjk3LTEyLjgxLjM3My0xOC40NjkuOTQtMi40OS4yNS0xMC40MTMtLjM2LTEzLjU1OS4xNjZDLjM0MiA5Ni45MjYuMDI0IDY0LjY3MiAwIDBoMTkyMHYyNWMtMS4xODcuNDAyLS43MDcuNTM3LS4yNDUuNjg3LTMuMTE2LS43NjktMTIuNzk4IDIuMDg2LTE2Ljc4NSAyLjUyMy0xMC4yOTkgMS4xMjItMjEuMy45OTItMzEuNTUgMS4wMTQtMTUuMjM5LjAzNC0zMC4zNTMgMy44NTgtNDUuOTMzIDQuNzkzLTE0LjE3NC44NS0yOC42NDMgMi4wMzQtNDIuNjY0IDIuNDMtNS45NjYuMTctMTIuNTcxLS41ODktMTguNTU0LjM4LTEuNTc1LjI1NS0xNy45OTIgMy4wMzctMTEuMzEzIDEuMzQ4LTMyLjI5OC0xLjg0Ny02NS44MjQgMS44MTktOTguMTM5IDIuMTMtMTMuOTk4LjEzNi0yOC4yIDEuMjc1LTQyLjEyLjc4OC0xMy4wNDctLjQ1OS0zMy4zNzQtMy41MDctNDUuNDI0IDEuNTg2IDUuNTY5LTIuMzUgMjEuMTE0LjcyNSAyOC4yNTIuNDYgOS42Ni0uMzYzIDE5LjA3NS0uNzcxIDI4LjY4My0uOTQxIDIxLjM4Ni0uMzggNDIuNzA1LS41MTYgNjQuMTY0LTEuMTQ1IDI4LjMyLS44MzMgNTYuMjc5IDIuNTY3IDg0Ljg3NyAxLjU1OCAxMS4xMzctLjM5NiAyMS40MDgtLjMzNCAzMi42MjUtLjY2OCA2Ljg1Mi0uMjAzIDIwLjk1LTQuMDUzIDI3LjMyLS4yMDctMi40NS0xLjE4My0yMy4zMjIgMS4yMjctMjYuMjgzIDEuMjcyLTQuNTA0LjA2OC0zMi4wNy0xLjcxMS0zMy45NC44OTUuNzg3LS45NTIgNy4zODcgMS4zODIgNy45MDkgMS42MDktMi4xODIuMy04LjAzNCAxLjM5My05Ljg0Ny42MTIgMi4wNzQgMS4wMiA0LjY3NCAxLjUwNyA3LjU0IDEuNy0xLjQ1NS4yNDMtMi43ODYuNDI0LTMuOTE0LjQ5OCAzLjk2LjEzIDEwLjEzLS40MjUgMTEuMjEyLS41NDQgMy4yNS0uMjU3IDYuMjI0LS41NyA5LjE0LS45MjJsLjExLS4wMDJjLjQwMy0uMDUuOC0uMDk2IDEuMjAyLS4xNDdhMi43OTMgMi43OTMgMCAwIDAtLjAwOS0uMDA4YzQuNzM4LS41NzIgOC4zMTctLjk4NiAxMS4yNDktMS4wMjMgOC41MDktLjEwOCAxNi4zMDQtLjc5MyAyNC41OTIuMjY2LTE5LjIxIDYuMTY0LTQzLjkxNiAzLjg3NS02NC4wNSA0LjY4LTE3LjI4NS42OTEtMzQuNjc3LjY2My01Mi4wMzUgMS4zODItMjguMTczIDEuMTY3LTU2LjM5Mi43NDgtODQuNjE2IDEuODc1LTEwLjA2MS40MDMtMjAuMzQ0LjM4LTMwLjQ1Ni44NzMtMTQuNzc2LjcxOC0zNS4yODMgNS4xNzUtNDkuNDY1IDEuMDY0IDEuODIzLjM5IDEzLjI2NC4wNTEgMjAuNjY5LS43OTItOC4xODYuMjc3LTIxLjcyNi0xLjMyNi0yNS4zNzUtMS4wODgtMy4xMTYuMjA0LTE5LjYwMSAxLjk2Ni0xNC40NTcuNDkzLTE1LjkzLTIuNjM0LTM0Ljg3LjczNi01MS4wNS43MTQtMTYuOTA0LS4wMjMtMzMuMjQzIDEuNDktNTAuMDkxIDEuNTEyLTE1LjkxNC4wMjMtMzEuNi4yNTUtNDcuNTMxLjY0LTIxLjIxLjUxNi00Mi40MTYgMS4wMi02My42MjYgMS42MS0xMS41ODUuMzE3LTIzLjE2NS42NTYtMzQuNzQgMS4wMTMtMi41NTQuMDgtMjEuMjg5LTEuMDM2LTI1LjMxMS4xNDIgMy43MjItMS43OSAxNS4wOC0xLjQwNSAxOC42MzMtMi4yNzItMy4yMTMtNi4wNzgtNTguNTM5LS45ODUtNjQuNi0uNDM2LTE4LjkxNyAxLjcxNy0zNy4xMDIgMi4yMi01NS43NTggMS44NTMtNjMuMzQyLTEuMjU4LTEyNy41ODYgMS4xNjEtMTkxLjE1NSAzLjQ2MS0zMi4wODIgMS4xNjEtNjQuMzQgMS4zMTQtOTYuNTEyIDIuOTEyLTE0LjM0LjcwOC0yOC4zNi44NDQtNDIuNzU2IDEuNjMyLTUuNjAxLjMwNS00NS4zMzQgMy4yMjgtNDYuMjI3LjQ3MWE1LjU1NyA1LjU1NyAwIDAgMCAuMDEzLS4wMDJ6bS01NTkuNDQ3IDExLjQ1YzguMzQ1LTIuNzc2IDE5Ljk0Ny0yLjgwNCAyOC44NjQtMy4yNjMuMjUuMDIzLTI2LjQ2MiAzLjUxOC0yOC44NjQgMy4yNjN6bTQ4LjI1LTQuNTgzYzUuMDY1LS45OTEgMTAuNDEzLTEuMTYxIDE1LjUxMi0uNzMtNC41MjEgMS40Ni0xMC43OTIgMS4zNDItMTUuNTExLjczek02MzAuMzQgNjEuODIyYy44OTUgMi4yNDkgMTEuMDM2LTEuMDQyIDEyLjQ5Ny0uNTg0LTEuNDI3LS41NjYtNC45MzQtLjE2NC02LjMxLS4zMjgtLjM2My0uMDEyLTYuNDIuMzM0LTYuMTg3LjkxMnptMTguNDI5LS45NTJ6bTE0LjI0Mi0uNDUzYzUuMDk5LS4xNTkgMTEuMzM2LjU2IDE2LjUzMS0uNjA2LTIuMzU2LjA5Ni01Ljg4Ni0uNDctNy4wMy0uNjA2LTUuMDM5LjMxNi0xOS41MDQtMS4wMTItMjMuNzA2IDEuNjQxIDIuMDMyLTEuMjU2IDExLjE5My0uMzM5IDE0LjIwNS0uNDN6bTEzOS4wOTItNC45NTFjMS4zOTQuMTEzIDEuMTUuMjQzLS43Mi4zOTYtMS4zOTktLjEwMi0xLjE1NS0uMjM4LjcyLS4zOTZ6bTEyLjgyLS44MzNhMS4yMDcgMS4yMDcgMCAwIDAgMCAwem0zMS44MzMtLjg5NWMtNC4xNTItLjI0NC04Ljc5OC0uMDY4LTEyLjkwNS42NTcgMi45MDYuNjA2IDYuMDktLjE1MyA5LjA1My4yODMgMS4yOC0uMzExIDIuNTY2LS42MjkgMy44NTItLjk0em0xMC4yOTQtLjAwNmMtMS45ODguNDI1LTMuODQuNjQ2LTUuMjk3LS4yNDQgMi4yNDQtLjQ1MyAzLjcwNS4wNDYgNS4yOTcuMjQ0em0tNDQuOTM0IDExLjcxYy0xLjA1Mi4wMi0yLjA5LjEyNy0yLjA3Ni40NjUuNTU1LjA2OCAxLjUxOC0uMDc3IDIuMzktLjIxNmwtLjMxNC0uMjQ5em0yMC41NC0uNzM2Yy0xLjM4My0uOTctMTEuNjQyLS42MTgtMTIuNzQxLjY1Ny0uMjA0LjM2MiA4LjM5LjA5IDkuMTc3LjE5MiAxLjgwOC42ODYgMi45OTIuNDAzIDMuNTY0LS44NXptMjcuOTg2LS45OThjLTQuOTc0LS43NjQtMTcuODA2LTEuMjM1LTIyLjMzOC45ODYgMi43NTktMS4yODYgMTAuNzg2LS4yNiAxNC4wMzMuMTc2IDIuOTIzLjEwMiA1LjUxMi0uMzkxIDguMzA1LTEuMTYyem0yMDguNjQ0LTExLjI0Yy0uNzM3LjQwOS0zLjIyNC0uNjUtNC4zNDYuMDE4LjQ5OS41ODMgMy44ODEuMjk0IDQuMzQ2LS4wMTd6bTQ2Ljc3Ny0xLjIwNmMtOC45NjItMi40ODEtMjQuNjY2LTEuMDc2LTMzLjg1LS4wNzQuNjQgMS4xMTYtLjA1NiAxLjU0Ny0yLjA5NSAxLjI4NiAxLjUzNSAxLjk4MyAzMy4yMTUuOTE4IDM1Ljk0NS0xLjIxMnptMjUuNDMxLS45NDZjLTEuNDEtLjkyNC0xMy4wNjQgMS40MS0xMS4wMjQgMS41OC42NjgtLjAyMiAxMS4xOTQtMS40NjcgMTEuMDI0LTEuNTh6bTU2LjYwNy0uOThjLS40MDItMS43NC0xMS40MjEtMS4wNTQtMTIuMzY3LjI1bDMuNDg0LjY2MmMuNzUzLS4wMjggOS4wNy0uMTEzIDguODgzLS45MTJ6bTI4LjA0My0uOTU4Yy4wNjIuODQ0IDguNDQ3Ljc3NyA5LjI0LjkzIDMuODA3LS42NjktOS40OTUtMy41MDItOS4yNC0uOTN6bTM1LjcxMy0uNjU3Yy00LjY3NC0uOTU3LTExLjk5My0uODMzLTE2LjUyNS4xODItLjA2OC4wMDUtNC4zMDYuNTgzLTMuMjY5LjkyOSA0LjQ0MiAxLjQ5IDE1LjUzNC42OTYgMTkuNzk0LTEuMTF6bTE4LjA3OC0uNjA2Yy0zLjItMS4xNzMtNC41MTUuMDc0LTcuNDM4LjczNy42OTYgMi4wOTYgOC45MzQtMS4xMTcgNy40MzgtLjczN3ptMTkuODkuMDljLTEuOTcxLjAzNS0yLjMtLjA3My0uOTg1LS4zMjggMS45NDktLjA0IDIuMjc3LjA2OC45ODUuMzI5em02LjMxMSA4LjAxMWMtNS42My0uMTQ3LTEyLjIwOC0xLjEyNy0xNy43MDkuNjMgMCAxLjQ5NSA1Ljk3MS4yMzcgNi42OTYuMDg0IDMuNTgtLjAxNyA3LjY5NC41NzggMTEuMDEzLS43MTR6bTIyLjI0OC0uMzYyYy0xLjkzMi4wNC0yLjI2LS4wNjgtLjk4Ni0uMzIzIDEuOTg4LS4wMjMgMi4zMTcuMDg1Ljk4Ni4zMjN6bTEyLjgzNy0uMTNjLTEuODUyLjA5Ni0yLjA5LjIyLS43MDguMzczIDEuODgtLjEwNyAyLjExOS0uMjMyLjcwOC0uMzc0em0xOC40MjktOC43M2MtMS43MzQtMi40ODgtOS4yNTEtMS4xNjItMTEuODg2LS41MzktMTMuNTk2LjMzNC0yOC42MTUtLjk3NC00MS45NjcgMS4zNzcgNy45NyAxLjYzMSAxNi41My41NiAyNC41Ny4xMTkgOS43MjctLjUzOCAxOS43MTQuOTY4IDI5LjI4My0uOTU4em03LjM0OC0uNDE0Yy0xLjc0NS4xMjQtNC41NzIuMjcyLTUuMTk1LS40MDItLjMwNi0uMzM1IDIuODEuMTEzIDUuMTk1LjQwMnptLjU4OS0uMTAyYy0uMTQyLjAxMy0uMTk4LjAzNy0uMTk4LjA2OC4yMDQtLjAxNy4zOTItLjAzMS41NDgtLjA0MmwtLjM1LS4wMjZ6bS45MzUuMzZjLjQwOS4wMzguODI3LjAyOCAxLjA2NS0uMDgzLS4wNzEuMDQtLjMyMi4wNDEtLjY4OS4wMTdsLS4zNzYuMDY2em05LjkyNS40MzljLTMuODc1LTEuODkzIDE2LjYyOC0xLjE2NyAxNi41MTQtMS4xMS00LjEwNyAyLjEyNC0xMi4wMSAxLjAwMi0xNi41MTQgMS4xMXptMTkuNTIyIDcuMTcyYy0xLjIyMy0uMjIxLTIuNDUzLS40MzYtMy42NzYtLjY1Ny0uMzkxLS4wMjMtNi40ODEtLjAwNi02LjMwNi42OC4zNTcgMS40MSA4Ljk2My4zNDUgOS45ODItLjAyM3ptMy44NDcuMTNjLTEuMzg4LS4xNTMtMS4xNDQtLjI3OC43My0uMzc0IDEuNDEyLjE1MyAxLjE2Mi4yNzgtLjczLjM3NHptMTcuOTY0LTEuNDIyYzQuNDIgMS4xNTYtNS41MTIgMi42NjgtNi4wNSAxLjE0NC0uMjU1LS43MjUgNS4zMzctMS4xNTUgNi4wNS0xLjE0NHptMi4wMTctNy40MzhjMi44MjctLjU5NSA1LjkwMy0xLjE0NSA4Ljc4Ny0uNTM5LTUuODg2IDEuNDczLTEwLjQxOCAxLjMyLTE2LjM4NC43MjYgMi41MjctLjA2MyA1LjA3LS4xOTMgNy41OTctLjE4N3ptMTIuNDA3IDguNDM1Yy0xLjU2NC42MjMtOS41IDEuNjAzLTEwLjI4OC0uMjk0IDMuNTAxLS44NTYgNy4zNzYtMS41OTggMTAuMjg4LjI5NHptNC45OTctOC4xMDdjLTEuNjEtLjI1NS0yLjk5Ny0uNzgyLTUuMjk3LS40MDIgMS40NS45NDYgMy4yOC43NiA1LjI5Ny40MDJ6bTkuODggNy4zMjVjLS42NzQtLjQ0Ny0xLjQ0NS0uNTQ0LTIuMzA2LS4zYTQuODU4IDQuODU4IDAgMCAwLTEuNzU2LjEzM2MuOTc2LS4xNCAzLjAzNS42OCA0LjA2Mi4xNjd6bS00LjMyOC0uMDlhNS4yIDUuMiAwIDAgMSAuMjY2LS4wNzcuODc0Ljg3NCAwIDAgMC0uMjY2LjA3N3ptMTYuMTQxLjIwMmEzLjA2IDMuMDYgMCAwIDAtLjcyNi4xODljLjI2LS4wNDYuNTItLjA5Ljc4Mi0uMTM0bC0uMDU2LS4wNTV6bTEuMDA3LS4xMDZsLjQyLS4wNjhjLS4xMTQuMDA2LS4xODIuMDA2LS4yNzguMDA2LS4wNTEuMDE3LS4wOS4wNC0uMTQyLjA2MnptLS45MzQuNDM2Yy4yMzctLjE0Ny41NjYtLjI3Mi44NzItLjQwMi43MTQtLjAxMS45NjkuMTMtLjg3Mi40MDJ6bTYuMTEyLS45Yy0xLjM0Mi0uNTU2LTMuMzctLjIzOC00LjkwNi4zNCAxLjc0NS0uMDk3IDUuMTE2LS4yNTYgNC45MDYtLjM0em03LjUwNy03LjQzOWMtNC4yNjYgMS43NDUtMTYuMTk3LTQuNjUxLTIwLjExNy0uODMzLS4xMzYuMTIgOC4xMjMgMS4wMzEgOS4yNSAxLjIxOCAyLjIxNi0uMDQgOC41MS42OTcgMTAuODY3LS4zODV6bTIzLjE3LS40N2MtLjU1NS4yNzctMi40NTMtLjA5Ni0yLjE3LS4yMzggMS4xODUuMTEzIDIuMjE2LjIyIDIuMTcuMjM4em0tMy4xMzMtLjUyMWMtLjM1Ni0uMDYzLS43My0uMDQtMS4wODItLjE0Mi0uMDYyLS4wOS41MzkuMDE3IDEuMDgyLjE0MnptLTEuNDA0IDguMDM5YzMuMTMyIDEuMTEgOC4wNjcuNzUzIDExLjMxOS4wMDUgMi4xMjgtLjA0IDExLjEwOC0xLjM2MyAxMy40ODMtLjU5LTcuNDU1LTIuNDI3LTE3LjYxNSAyLjg1LTI0LjgwMi41ODV6bTM1LjQ4LTguMTM2Yy0yLjEzLTEuNzc5LTguMTE4LS42NTEtMTAuNTc2LS40NTMgMi4wMzQgMS44NDcgOC4zODQgMS4wNDMgMTAuNTc3LjQ1M3ptNC45Ny0uNDAyYy0uNDE0LS44MjEgOC45MTYtMS4yMTggOS40MzItMS4xODQgMi4wNTYgMi41NzItOC43NjQgMi41MS05LjQzMyAxLjE4NHptMjM3LjcxNyAyLjIzMmMtMS4zOTQtLjE3NS0xLjE1Ni0uMjk0LjcxNC0uMzQ1IDEuNDEuMTY0IDEuMTcyLjI3Ny0uNzE0LjM0NXptLTcwLjk3OCAyLjA2NGEyLjM3NCAyLjM3NCAwIDAgMC0uNTQ1LjI1OWMuMTczLS4wOS4zNTUtLjE3Ny41NDUtLjI2em0wIDBjMy4yMjEtMS4wODcgMTEuMzMgMi4zNiAxNC4wNiAyLjYwNCA2LjExOC41NTYgMTIuMjQyLS40NjQgMTguMzI2LS42MTcgNy41OTItLjE4NyAxNS45MDguMjYgMjMuNTc5LS43MzctNy45MzEtLjQwMi0xNy4zMTMtMS40MzktMjAuNjU1LTEuNDE2LTguOTguMDU1LTI3Ljk5MS0zLjAwNi0zNS4zMS4xNjZ6bS02Ny4xNCAxLjQwM2MyLjUzOC0uMTg3IDUuODAxLS43MDggNy45MTQuNTU1LTIuMDU2LjQ3Ni03LjA4MSAxLjg4MS03LjkxNC0uNTU1em0tMjAuNDg1LjQwM2M1LjQyMS0xLjQzNCAxMi41MjUtLjggMTguMDMyLjMwNS01LjkxNC43MjYtMTIuMTkyLjU5NS0xOC4wMzItLjMwNXptLjAyOCAzLjk2Yy0yLjE4MS4wMjItNi4yMTUuNjc0LTguNDM2LS4wNzQuMDQuMDA2IDEwLjY5LS4yMzIgOC40MzYuMDczem0tMTAuMDM4LTMuNTk2Yy0xLjA0Ni0uMDI2LTIuMDgzLjAzOC0yLjA4Ni4zNzguNTczLjEwNCAxLjUyLS4wMDIgMi4zOC0uMTA5bC0uMjk0LS4yN3ptLTEyLjY5NiAzLjcyNWMtMS41NjIuMTMtMy4wMjguMTk0LTMuNjEuMDA2IDEuMDkuMjk2IDIuMzUyLjMyNiAzLjY4OC4yMzRsLS4wNzgtLjI0em0tMzMuMzQtMy4xMzhjLjktLjA3MyAxLjkxNS0uMTY0IDIuOTQtLjIyLTQuMTguNDUzLTkuMDkzIDIuMjAzLTEyLjYyMi43NDEgMS43OS40OTkgNy45ODItLjQ4NyA5LjY4Mi0uNTJ6IiBmaWxsPSJyZ2JhKDAsIDAsIDAsIDEpIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiLz48L3N2Zz4=)}
10407
- .brz-ed .brz-ed-shape--31{background-image:url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTkyMCAzNTkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+PHBhdGggZD0iTTE5MDAuODIxIDMyLjY4NmMtOC4xNjEgNS42NDYtMTcuMjg0IDExLjU5My0yNS43MiAxNi4yOTUtNy42MjQgNC4yNS0xMS40ODggOS4wNDgtMTguNTg0IDEzLjk3Ny01LjkxOSA0LjEwOS0xMC45OTkgOS4xMDQtMTYuODggMTMuMjk4LTEzLjQzIDkuNTk0LTI3LjQ1MyAyMC4wNDYtNDEuNzIyIDI3LjU2Ni01LjAzMiAyLjY0OS0xMC42MDIgNC41OS0xNS42ODIgNy41OTYtNS45NTYgMy41MjUtNC45NjcgNi4zMjQtMTEuNjU4IDkuNTQ3LS43NzMtLjg5NS0uMjI2LTEuNjg2IDEuNjUtMi4zODQtMTguMDc3IDYuNTAzLTM1LjI4NiAxNy43NDYtNTIuNzg3IDI2Ljg1LTEzLjc4OCA3LjE4Mi0yNy43NjUgMTIuNTM1LTQxLjkwMSAxOC4zNzgtMTMuMjQyIDUuNDc2LTI1LjE5MiAxMy40MDItMzguNzgyIDE2Ljk5Mi03LjEzNCAxLjg4NS0xMy4xNTcgNC45NzctMTkuNzE2IDguMTE1LTMuNjE