Brizy – Page Builder - Version 1.0.109

Version Description

  • 2020-01-16 =
  • New: Forms added new Fields
  • New: SVG Upload Feature
  • New: Lazy load for image ( Chrome Only )
  • Improved: Images search for optimization
  • Improved: Icons for Tabs was added
  • Improved: WordPress Dynamic content ( Title, Excerpt, Content )
  • Fixed: Pagination on front page
  • Fixed: Dashboard Brizy Box
  • Fixed: Template rules match
  • Fixed: Popup compilation
  • Fixes: Popup scroll fixes
  • Fixes: Incompatibility with LiteSpeed Cache
  • Fixes: Incompatibility with Unicon core plugin
  • Fixes: Remove unnecessary SEO, Social entries
Download this release

Release Info

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

Code changes from version 1.0.108 to 1.0.109

Files changed (55) hide show
  1. README.md +17 -5
  2. admin/abstract-widget.php +1 -1
  3. admin/dashboard-widget.php +14 -0
  4. admin/feedback.php +172 -0
  5. admin/fonts/main.php +16 -8
  6. admin/form-entries.php +8 -1
  7. admin/main.php +7 -2
  8. admin/optimize-images.php +94 -50
  9. admin/popups/main.php +5 -1
  10. admin/rule-interface.php +14 -1
  11. admin/rule-set.php +5 -3
  12. admin/rule.php +15 -3
  13. admin/rules/abstract-validator.php +2 -3
  14. admin/rules/manager.php +6 -5
  15. admin/settings.php +29 -22
  16. admin/static/css/style.css +200 -1
  17. admin/static/img/logo.svg +10 -0
  18. admin/static/js/script.js +140 -0
  19. admin/svg/main.php +127 -0
  20. admin/templates.php +6 -4
  21. admin/views/dashboard-news.php +4 -4
  22. admin/views/dashboard-posts.php +1 -1
  23. admin/views/form-data.html.twig +9 -4
  24. admin/views/settings/general.php +14 -0
  25. brizy.php +6 -6
  26. compatibilities/init.php +1 -1
  27. compatibilities/lite-speed.php +10 -14
  28. config.php +2 -4
  29. content/main-processor.php +1 -0
  30. content/placeholder-extractor.php +98 -83
  31. editor.php +48 -6
  32. editor/accounts/abstract-account.php +22 -4
  33. editor/accounts/account.php +1 -1
  34. editor/accounts/api.php +155 -0
  35. editor/accounts/recaptcha-account.php +100 -0
  36. editor/accounts/service-account-manager.php +40 -21
  37. editor/accounts/social-account.php +52 -0
  38. editor/api.php +13 -0
  39. editor/asset/crop/cropper.php +4 -0
  40. editor/asset/static-file.php +1 -1
  41. editor/asset/svg-asset-processor.php +95 -0
  42. editor/auto-save-aware.php +6 -5
  43. editor/editor/editor.php +100 -8
  44. editor/forms/abstract-integration.php +52 -10
  45. editor/forms/api.php +178 -59
  46. editor/forms/dynamic-props-aware.php +4 -2
  47. editor/forms/folder.php +63 -0
  48. editor/forms/form.php +114 -8
  49. editor/forms/gmail-smtp-integration.php +62 -0
  50. editor/forms/service-integration.php +142 -37
  51. editor/forms/smtp-integration.php +268 -0
  52. editor/forms/wordpress-integration.php +319 -7
  53. editor/project.php +19 -9
  54. public/editor-build/{defaults.json → 126-wp/defaults.json} +0 -0
  55. public/editor-build/126-wp/editor/css/editor.css +10834 -0
README.md CHANGED
@@ -1,9 +1,9 @@
1
  # Brizy - Page Builder
2
  Contributors: themefuse<br>
3
  Requires at least: 4.5<br>
4
- Tested up to: 5.2.3<br>
5
  Requires PHP: 5.6<br>
6
- Stable tag: 1.0.108<br>
7
  License: GPLv3<br>
8
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
9
 
@@ -118,9 +118,21 @@ $bodyHtml = apply_filters( 'brizy_content', $html->get_body(), Brizy_Editor_Proj
118
 
119
  ## Changelog
120
 
121
- ### 1.0.108 - 2019-12-18 ###
122
- * Fixed: Editor config cache
123
- * Fixed: Compilation and save post
 
 
 
 
 
 
 
 
 
 
 
 
124
 
125
  ### 1.0.107 - 2019-12-11 ###
126
  * Fixed: Compile if there is no autosave post on vew page
1
  # Brizy - Page Builder
2
  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.109<br>
7
  License: GPLv3<br>
8
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
9
 
118
 
119
  ## Changelog
120
 
121
+ ### 1.0.109 - 2020-01-16 ###
122
+ * New: Forms added new Fields
123
+ * New: SVG Upload Feature
124
+ * New: Lazy load for image ( Chrome Only )
125
+ * Improved: Images search for optimization
126
+ * Improved: Icons for Tabs was added
127
+ * Improved: WordPress Dynamic content ( Title, Excerpt, Content )
128
+ * Fixed: Pagination on front page
129
+ * Fixed: Dashboard Brizy Box
130
+ * Fixed: Template rules match
131
+ * Fixed: Popup compilation
132
+ * Fixes: Popup scroll fixes
133
+ * Fixes: Incompatibility with LiteSpeed Cache
134
+ * Fixes: Incompatibility with Unicon core plugin
135
+ * Fixes: Remove unnecessary SEO, Social entries
136
 
137
  ### 1.0.107 - 2019-12-11 ###
138
  * Fixed: Compile if there is no autosave post on vew page
admin/abstract-widget.php CHANGED
@@ -20,7 +20,7 @@ abstract class Brizy_Admin_AbstractWidget {
20
  * @return string
21
  * @throws Exception
22
  */
23
- private function internalGetId() {
24
  $id = $this->getId();
25
 
26
  if ( empty( $id ) ) {
20
  * @return string
21
  * @throws Exception
22
  */
23
+ protected function internalGetId() {
24
  $id = $this->getId();
25
 
26
  if ( empty( $id ) ) {
admin/dashboard-widget.php CHANGED
@@ -14,6 +14,20 @@ class Brizy_Admin_DashboardWidget extends Brizy_Admin_AbstractWidget {
14
  }
15
  }
16
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17
  /**
18
  * @return string
19
  */
14
  }
15
  }
16
 
17
+ public function __construct() {
18
+ parent::__construct();
19
+
20
+ global $wp_meta_boxes;
21
+
22
+ $dashboard = $wp_meta_boxes['dashboard']['normal']['core'];
23
+ $widget_id = $this->internalGetId();
24
+ $ours = [
25
+ $widget_id => $dashboard[ $widget_id ],
26
+ ];
27
+
28
+ $wp_meta_boxes['dashboard']['normal']['core'] = array_merge( $ours, $dashboard );
29
+ }
30
+
31
  /**
32
  * @return string
33
  */
admin/feedback.php ADDED
@@ -0,0 +1,172 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php defined( 'ABSPATH' ) or die();
2
+
3
+ class Brizy_Admin_Feedback {
4
+
5
+ /**
6
+ * Brizy_Admin_Feedback constructor.
7
+ */
8
+ public function __construct() {
9
+ add_action( 'wp_ajax_brizy-dismiss-notice', [ $this, 'ajax_dismiss_notice' ] );
10
+ add_action( 'wp_ajax_brizy-send-feedback', [ $this, 'ajax_send_feedback' ] );
11
+ add_action( 'admin_notices', [ $this, 'admin_notices' ] );
12
+ add_action( 'admin_enqueue_scripts', [ $this, 'admin_enqueue_scripts' ] );
13
+ add_action( 'admin_footer', [ $this, 'admin_footer' ] );
14
+ }
15
+
16
+ public function admin_notices() {
17
+
18
+ if ( 'dismissed' == get_user_meta( get_current_user_id(), 'brizy-notice-rating', true ) || get_transient( 'brizy-notice-rating' ) ) {
19
+ return;
20
+ }
21
+
22
+ ?>
23
+ <div class="brz-notice notice is-dismissible">
24
+ <div class="brz-notice-container">
25
+ <div class="brz-notice-image">
26
+ <img src="<?php echo plugins_url( 'static/img/logo.svg', __FILE__ ) ?>" alt="brizy-logo">
27
+ </div>
28
+ <div class="brz-notice-content">
29
+ <div class="brz-notice-heading">
30
+ <?php esc_html_e( 'Hello! Seems like you are using Brizy to build your website - Thanks a lot!', 'brizy' ); ?>
31
+ </div>
32
+ <?php esc_html_e( 'Could you please do us a BIG favor and give it a 5-star rating on WordPress? This would boost our motivation and help other users make a comfortable decision while choosing the Brizy plugin.', 'brizy' ); ?>
33
+ <br/>
34
+ <div class="brz-review-notice-container">
35
+ <a href="https://wordpress.org/support/plugin/brizy/reviews/?filter=5#new-post" class="brz-review-deserve button-primary" target="_blank">
36
+ <?php esc_html_e( 'Ok, you deserve it', 'brizy' ); ?>
37
+ </a>
38
+ <span class="dashicons dashicons-calendar"></span>
39
+ <a href="#" class="brz-review-later">
40
+ <?php esc_html_e( 'Nope, maybe later', 'brizy' ); ?>
41
+ </a>
42
+ <span class="dashicons dashicons-smiley"></span>
43
+ <a href="#" class="brz-review-done">
44
+ <?php esc_html_e( 'I already did', 'brizy' ); ?>
45
+ </a>
46
+ </div>
47
+ </div>
48
+ </div>
49
+ </div>
50
+
51
+ <?php
52
+ }
53
+
54
+ public function ajax_dismiss_notice() {
55
+
56
+ check_ajax_referer( 'brizy-admin-nonce', 'nonce' );
57
+
58
+ if ( $_POST['repeat'] == 'true' ) {
59
+ set_transient( 'brizy-notice-rating', true, WEEK_IN_SECONDS );
60
+ } else {
61
+ update_user_meta( get_current_user_id(), 'brizy-notice-rating', 'dismissed' );
62
+ }
63
+
64
+ wp_send_json_success();
65
+ }
66
+
67
+ public function ajax_send_feedback() {
68
+
69
+ check_ajax_referer( 'brizy-admin-nonce', 'nonce' );
70
+
71
+ parse_str( $_POST['form'], $form );
72
+
73
+ $reason_key = $form['reason_key'];
74
+
75
+ $body = [
76
+ 'version' => BRIZY_VERSION,
77
+ 'site_lang' => get_bloginfo( 'language' ),
78
+ 'feedback_key' => $reason_key
79
+ ];
80
+
81
+ if ( ! empty( $form[ 'reason_' . $reason_key ] ) ) {
82
+ $body['feedback'] = sanitize_text_field( $form[ 'reason_' . $reason_key ] );
83
+ }
84
+
85
+ wp_remote_post( 'http://test.themefuse.com/', [
86
+ 'timeout' => 30,
87
+ 'body' => $body,
88
+ ] );
89
+
90
+ wp_send_json_success();
91
+ }
92
+
93
+ public function admin_enqueue_scripts() {
94
+
95
+ if ( ! $this->is_plugins_page() ) {
96
+ return;
97
+ }
98
+
99
+ wp_enqueue_script( 'jquery-ui-dialog' );
100
+ wp_enqueue_style( 'wp-jquery-ui-dialog' );
101
+ }
102
+
103
+ public function admin_footer() {
104
+
105
+ if ( ! $this->is_plugins_page() ) {
106
+ return;
107
+ }
108
+
109
+ $deactivate_reasons = [
110
+ 'no_longer_needed' => [
111
+ 'title' => __( 'I no longer need the plugin', 'brizy' ),
112
+ 'input_placeholder' => '',
113
+ ],
114
+ 'found_a_better_plugin' => [
115
+ 'title' => __( 'I found a better plugin', 'brizy' ),
116
+ 'input_placeholder' => __( 'Please share which plugin', 'brizy' ),
117
+ ],
118
+ 'couldnt_get_the_plugin_to_work' => [
119
+ 'title' => __( 'I couldn\'t get the plugin to work', 'brizy' ),
120
+ 'input_placeholder' => '',
121
+ ],
122
+ 'temporary_deactivation' => [
123
+ 'title' => __( 'It\'s a temporary deactivation', 'brizy' ),
124
+ 'input_placeholder' => '',
125
+ ],
126
+ 'brizy_pro' => [
127
+ 'title' => __( 'I have Brizy Pro', 'brizy' ),
128
+ 'input_placeholder' => '',
129
+ 'alert' => __( 'Wait! Don\'t deactivate Brizy. You have to activate both Brizy and Brizy Pro in order for the plugin to work.', 'brizy' ),
130
+ ],
131
+ 'other' => [
132
+ 'title' => __( 'Other', 'brizy' ),
133
+ 'input_placeholder' => __( 'Please share the reason', 'brizy' ),
134
+ ],
135
+ ];
136
+
137
+ ?>
138
+
139
+ <div id="brz-deactivate-feedback-dialog" class="hidden">
140
+ <div class="brz-deactivate-feedback-dialog-header">
141
+ <img class="brz-deactivate-feedback-dialog-logo" src="<?php echo plugins_url( 'static/img/logo.svg', __FILE__ ) ?>" alt="brizy-logo">
142
+ <span class="brz-deactivate-feedback-dialog-header-title"><?php echo __( 'Quick Feedback', 'brizy' ); ?></span>
143
+ </div>
144
+ <form class="brz-deactivate-feedback-dialog-form" method="post">
145
+ <div class="brz-deactivate-feedback-dialog-form-caption">
146
+ <?php echo __( 'If you have a moment, please share why you are deactivating Brizy:', 'brizy' ); ?>
147
+ </div>
148
+ <div class="brz-deactivate-feedback-dialog-form-body">
149
+ <?php foreach ( $deactivate_reasons as $reason_key => $reason ) : ?>
150
+ <div class="brz-deactivate-feedback-dialog-input-wrapper">
151
+ <input id="brz-deactivate-feedback-<?php echo esc_attr( $reason_key ); ?>" class="brz-deactivate-feedback-dialog-input" type="radio" name="reason_key" value="<?php echo esc_attr( $reason_key ); ?>" />
152
+ <label for="brz-deactivate-feedback-<?php echo esc_attr( $reason_key ); ?>" class="brz-deactivate-feedback-dialog-label"><?php echo esc_html( $reason['title'] ); ?></label>
153
+ <?php if ( ! empty( $reason['input_placeholder'] ) ) : ?>
154
+ <input class="brz-feedback-text hidden" type="text" name="reason_<?php echo esc_attr( $reason_key ); ?>" placeholder="<?php echo esc_attr( $reason['input_placeholder'] ); ?>" />
155
+ <?php endif; ?>
156
+ <?php if ( ! empty( $reason['alert'] ) ) : ?>
157
+ <div class="brz-feedback-text-alert brz-feedback-text hidden"><?php echo esc_html( $reason['alert'] ); ?></div>
158
+ <?php endif; ?>
159
+ </div>
160
+ <?php endforeach; ?>
161
+ </div>
162
+ </form>
163
+ </div>
164
+ <?php
165
+ }
166
+
167
+ private function is_plugins_page() {
168
+ global $pagenow;
169
+
170
+ return 'plugins.php' === $pagenow;
171
+ }
172
+ }
admin/fonts/main.php CHANGED
@@ -10,6 +10,7 @@
10
  class Brizy_Admin_Fonts_Main {
11
 
12
  const CP_FONT = 'brizy-font';
 
13
 
14
  /**
15
  * @return Brizy_Admin_Fonts_Main
@@ -29,40 +30,46 @@ class Brizy_Admin_Fonts_Main {
29
  */
30
  public function __construct() {
31
  add_action( 'wp_loaded', array( $this, 'initializeActions' ) );
32
- add_filter( 'upload_mimes', array( $this, 'addFOntTypes' ) );
33
  add_filter( 'wp_check_filetype_and_ext', array( $this, 'wp_check_filetype_and_ext' ), 10, 4 );
34
 
35
  $urlBuilder = new Brizy_Editor_UrlBuilder();
36
  $handler = new Brizy_Admin_Fonts_Handler( $urlBuilder, null );
37
  }
38
 
39
- /**
40
- *
41
- */
42
  public function initializeActions() {
43
  Brizy_Admin_Fonts_Api::_init();
44
  }
45
 
46
- public function addFOntTypes( $mime_types ) {
47
 
48
  $mime_types['ttf'] = 'application/x-font-ttf';
49
  $mime_types['eot'] = 'application/vnd.ms-fontobject';
50
  $mime_types['woff'] = 'application/x-font-woff';
51
  $mime_types['woff2'] = 'application/x-font-woff2';
52
- $mime_types['svg'] = 'image/svg+xml';
53
 
54
  return $mime_types;
55
  }
56
 
 
 
 
 
 
 
 
 
 
57
  public function wp_check_filetype_and_ext( $data, $file, $filename, $mimes ) {
58
 
59
- if ( is_null( $data['ext'] ) ) {
60
 
61
  // Do basic extension validation and MIME mapping
62
  $wp_filetype = wp_check_filetype( $filename, $mimes );
63
  $ext = $wp_filetype['ext'];
64
  $type = $wp_filetype['type'];
65
 
 
66
  if ( $ext === 'ttf' ) {
67
  return array( 'ext' => $ext, 'type' => 'application/x-font-ttf', 'proper_filename' => false );
68
  }
@@ -80,7 +87,8 @@ class Brizy_Admin_Fonts_Main {
80
  return $data;
81
  }
82
 
83
- static public function registerCustomPosts() {
 
84
 
85
  $labels = array(
86
  'name' => _x( 'Fonts', 'post type general name' ),
10
  class Brizy_Admin_Fonts_Main {
11
 
12
  const CP_FONT = 'brizy-font';
13
+ const SVG_MIME = 'image/svg+xml';
14
 
15
  /**
16
  * @return Brizy_Admin_Fonts_Main
30
  */
31
  public function __construct() {
32
  add_action( 'wp_loaded', array( $this, 'initializeActions' ) );
33
+ add_filter( 'upload_mimes', array( $this, 'addFontTypes' ) );
34
  add_filter( 'wp_check_filetype_and_ext', array( $this, 'wp_check_filetype_and_ext' ), 10, 4 );
35
 
36
  $urlBuilder = new Brizy_Editor_UrlBuilder();
37
  $handler = new Brizy_Admin_Fonts_Handler( $urlBuilder, null );
38
  }
39
 
 
 
 
40
  public function initializeActions() {
41
  Brizy_Admin_Fonts_Api::_init();
42
  }
43
 
44
+ public function addFontTypes( $mime_types ) {
45
 
46
  $mime_types['ttf'] = 'application/x-font-ttf';
47
  $mime_types['eot'] = 'application/vnd.ms-fontobject';
48
  $mime_types['woff'] = 'application/x-font-woff';
49
  $mime_types['woff2'] = 'application/x-font-woff2';
 
50
 
51
  return $mime_types;
52
  }
53
 
54
+ /**
55
+ * @param $data
56
+ * @param $file
57
+ * @param $filename
58
+ * @param $mimes
59
+ * @param $real_mime
60
+ *
61
+ * @return array
62
+ */
63
  public function wp_check_filetype_and_ext( $data, $file, $filename, $mimes ) {
64
 
65
+ if ( ! $data['ext'] ) {
66
 
67
  // Do basic extension validation and MIME mapping
68
  $wp_filetype = wp_check_filetype( $filename, $mimes );
69
  $ext = $wp_filetype['ext'];
70
  $type = $wp_filetype['type'];
71
 
72
+
73
  if ( $ext === 'ttf' ) {
74
  return array( 'ext' => $ext, 'type' => 'application/x-font-ttf', 'proper_filename' => false );
75
  }
87
  return $data;
88
  }
89
 
90
+
91
+ public static function registerCustomPosts() {
92
 
93
  $labels = array(
94
  'name' => _x( 'Fonts', 'post type general name' ),
admin/form-entries.php CHANGED
@@ -188,10 +188,16 @@ class Brizy_Admin_FormEntries {
188
 
189
  $title = '';
190
 
191
- foreach ( $fields as $field ) {
192
  if ( strtolower( $field->type ) == 'email' ) {
193
  $title = $field->value;
194
  }
 
 
 
 
 
 
195
  }
196
 
197
  $params = array(
@@ -200,6 +206,7 @@ class Brizy_Admin_FormEntries {
200
  'post_status' => 'publish',
201
  'post_content' => json_encode( array( 'formId' => $form->getId(), 'formData' => $fields ) )
202
  );
 
203
  wp_insert_post( $params );
204
 
205
  return $fields;
188
 
189
  $title = '';
190
 
191
+ foreach ( $fields as $i=>$field ) {
192
  if ( strtolower( $field->type ) == 'email' ) {
193
  $title = $field->value;
194
  }
195
+
196
+ if($field->name=='g-recaptcha-response')
197
+ {
198
+ unset($fields[$i]);
199
+ $fields = array_values($fields);
200
+ }
201
  }
202
 
203
  $params = array(
206
  'post_status' => 'publish',
207
  'post_content' => json_encode( array( 'formId' => $form->getId(), 'formData' => $fields ) )
208
  );
209
+
210
  wp_insert_post( $params );
211
 
212
  return $fields;
admin/main.php CHANGED
@@ -255,7 +255,7 @@ class Brizy_Admin_Main {
255
  Brizy_Editor::get()->get_slug() . '-admin-css',
256
  Brizy_Editor::get()->get_url( 'admin/static/css/style.css' ),
257
  array(),
258
- true
259
  );
260
  wp_enqueue_style(
261
  Brizy_Editor::get()->get_slug() . '-select2',
@@ -286,7 +286,7 @@ class Brizy_Admin_Main {
286
  Brizy_Editor::get()->get_slug() . '-admin-js',
287
  'Brizy_Admin_Data',
288
  array(
289
- 'url' => set_url_scheme( admin_url( 'admin-ajax.php' ) ),
290
  'pluginUrl' => BRIZY_PLUGIN_URL,
291
  'ruleApiHash' => wp_create_nonce( Brizy_Admin_Rules_Api::nonce ),
292
  'id' => get_the_ID(),
@@ -299,6 +299,11 @@ class Brizy_Admin_Main {
299
  ),
300
  'editorVersion' => BRIZY_EDITOR_VERSION,
301
  'pluginVersion' => BRIZY_VERSION,
 
 
 
 
 
302
  )
303
  );
304
  }
255
  Brizy_Editor::get()->get_slug() . '-admin-css',
256
  Brizy_Editor::get()->get_url( 'admin/static/css/style.css' ),
257
  array(),
258
+ Brizy_Editor::get()->get_version()
259
  );
260
  wp_enqueue_style(
261
  Brizy_Editor::get()->get_slug() . '-select2',
286
  Brizy_Editor::get()->get_slug() . '-admin-js',
287
  'Brizy_Admin_Data',
288
  array(
289
+ 'url' => admin_url( 'admin-ajax.php' ),
290
  'pluginUrl' => BRIZY_PLUGIN_URL,
291
  'ruleApiHash' => wp_create_nonce( Brizy_Admin_Rules_Api::nonce ),
292
  'id' => get_the_ID(),
299
  ),
300
  'editorVersion' => BRIZY_EDITOR_VERSION,
301
  'pluginVersion' => BRIZY_VERSION,
302
+ 'nonce' => wp_create_nonce( 'brizy-admin-nonce' ),
303
+ 'l10n' => [
304
+ 'deactivateFeedbackSubmitBtn' => __( 'Submit & Deactivate', 'brizy' ),
305
+ 'deactivateFeedbackSkipBtn' => __( 'Skip & Deactivate', 'brizy' ),
306
+ ]
307
  )
308
  );
309
  }
admin/optimize-images.php CHANGED
@@ -98,30 +98,18 @@ class Brizy_Admin_OptimizeImages {
98
 
99
 
100
  private function get_general_tab( $context ) {
101
- $settings = Brizy_Editor_Project::get()->getImageOptimizerSettings();
102
- $urlBuilder = new Brizy_Editor_UrlBuilder( Brizy_Editor_Project::get() );
103
- $brizy_upload_path = $urlBuilder->brizy_upload_path();
104
- $adapter = new Brizy_Admin_Guafrette_LocalAdapter( $brizy_upload_path );
105
- $filesystem = new Filesystem( $adapter );
 
106
 
107
  $brizy_ids = Brizy_Editor_Post::get_all_brizy_post_ids();
108
  $urls = array();
109
  foreach ( $brizy_ids as $id ) {
110
  try {
111
- $brizyPost = Brizy_Editor_Post::get( $id );
112
-
113
- if ( ! $brizyPost->get_compiled_html() ) {
114
- $content = $brizyPost->get_compiled_html_body();
115
- } else {
116
- $compiled_page = $brizyPost->get_compiled_page();
117
- $content = $compiled_page->get_head() . $compiled_page->get_body();
118
- }
119
-
120
- $content = Brizy_SiteUrlReplacer::restoreSiteUrl( $content );
121
-
122
- $content = apply_filters( 'brizy_content', $content, Brizy_Editor_Project::get(), $brizyPost->get_wp_post(), 'document' );
123
-
124
- $urls = array_merge( $urls, $this->extract_media_urls( $content, $filesystem ) );
125
  } catch ( Exception $e ) {
126
  continue;
127
  }
@@ -129,16 +117,33 @@ class Brizy_Admin_OptimizeImages {
129
 
130
  $urls = array_unique( $urls );
131
 
132
- $context['urls'] = $urls;
133
- $context['count'] = count( $urls );
134
- $context['svgObject'] = file_get_contents( str_replace( '/', DIRECTORY_SEPARATOR, BRIZY_PLUGIN_PATH . "/admin/static/img/spinner.svg" ) );
135
- $context['svg'] = str_replace( '/', DIRECTORY_SEPARATOR, BRIZY_PLUGIN_URL . "/admin/static/img/spinner.svg#circle" );
136
- $context['enabled'] = ( isset( $settings['shortpixel']['API_KEY'] ) && $settings['shortpixel']['API_KEY'] != '' ) ? 1 : 0;
137
-
138
 
139
  return $this->twig->render( 'optimizer-general.html.twig', $context );
140
  }
141
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
142
  public function settings_submit() {
143
 
144
  switch ( $_POST['tab'] ) {
@@ -202,20 +207,25 @@ class Brizy_Admin_OptimizeImages {
202
  *
203
  * @return array
204
  */
205
- private function extract_media_urls( $content, $filesystem ) {
 
 
 
 
 
206
 
207
- $result = array();
208
  $site_url = str_replace( array( 'http://', 'https://', '/', '.' ), array( '', '', '\/', '\.' ), home_url() );
209
 
210
- preg_match_all( '/' . $site_url . '\/?(\?' . Brizy_Public_CropProxy::ENDPOINT . '=(.[^"\',\s)]*))/im', $content, $matches );
211
  preg_match_all( '/(http|https):\/\/' . $site_url . '\/?(\?' . Brizy_Public_CropProxy::ENDPOINT . '=(.[^"\',\s)]*))/im', $content, $matches );
212
 
213
  if ( ! isset( $matches[0] ) || count( $matches[0] ) == 0 ) {
214
- return $result;
215
  }
216
 
217
- $time = time();
218
- $t = null;
 
219
  foreach ( $matches[0] as $i => $url ) {
220
 
221
  $parsed_url = parse_url( html_entity_decode( $matches[0][ $i ] ) );
@@ -226,43 +236,77 @@ class Brizy_Admin_OptimizeImages {
226
 
227
  parse_str( $parsed_url['query'], $params );
228
 
229
-
230
  if ( ! isset( $params[ Brizy_Public_CropProxy::ENDPOINT ] ) ) {
231
  continue;
232
  }
233
 
234
- $brizy_media = $params[ Brizy_Public_CropProxy::ENDPOINT ];
235
 
236
- if ( strpos( $params[ Brizy_Public_CropProxy::ENDPOINT ], 'wp-' ) !== false ) {
237
- $attachments = get_posts( array(
238
- 'meta_key' => 'brizy_attachment_uid',
239
- 'meta_value' => $params[ Brizy_Public_CropProxy::ENDPOINT ],
240
- 'post_type' => 'attachment',
241
- ) );
 
 
 
242
 
243
- if ( isset( $attachments[0] ) ) {
244
- $attachment = $attachments[0];
245
- }
246
 
247
- if ( ! isset( $attachment ) ) {
248
- continue;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
249
  }
250
 
251
- $media_url = get_attached_file( $attachment->ID );
252
- $brizy_media = basename( $media_url );
253
  }
 
 
254
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
255
 
256
  $wp_imageFullName = sprintf( "%s/assets/images/%s/optimized/%s", $params['brizy_post'], $params['brizy_crop'], $brizy_media );
257
- //$imageFullName = sprintf( "%s/assets/images/%s/optimized/%s", $params['brizy_post'], $params['brizy_crop'], $params['brizy_media'] );
258
 
259
  if ( ! $filesystem->has( $wp_imageFullName ) ) {
260
- $result[] = $url . "&brizy_optimize=1&t=" . $time;
261
  }
262
-
263
  }
264
 
265
- return $result;
266
  }
267
 
268
  /**
98
 
99
 
100
  private function get_general_tab( $context ) {
101
+ $brizy_editor_project = Brizy_Editor_Project::get();
102
+ $settings = $brizy_editor_project->getImageOptimizerSettings();
103
+ $urlBuilder = new Brizy_Editor_UrlBuilder( $brizy_editor_project );
104
+ $brizy_upload_path = $urlBuilder->brizy_upload_path();
105
+ $adapter = new Brizy_Admin_Guafrette_LocalAdapter( $brizy_upload_path );
106
+ $filesystem = new Filesystem( $adapter );
107
 
108
  $brizy_ids = Brizy_Editor_Post::get_all_brizy_post_ids();
109
  $urls = array();
110
  foreach ( $brizy_ids as $id ) {
111
  try {
112
+ $urls = $this->extractUrlFromPage( $urls, $id, $filesystem, $brizy_editor_project );
 
 
 
 
 
 
 
 
 
 
 
 
 
113
  } catch ( Exception $e ) {
114
  continue;
115
  }
117
 
118
  $urls = array_unique( $urls );
119
 
120
+ $context['urls'] = $urls;
121
+ $context['count'] = count( $urls );
122
+ $context['svgObject'] = file_get_contents( str_replace( '/', DIRECTORY_SEPARATOR, BRIZY_PLUGIN_PATH . "/admin/static/img/spinner.svg" ) );
123
+ $context['svg'] = str_replace( '/', DIRECTORY_SEPARATOR, BRIZY_PLUGIN_URL . "/admin/static/img/spinner.svg#circle" );
124
+ $context['enabled'] = ( isset( $settings['shortpixel']['API_KEY'] ) && $settings['shortpixel']['API_KEY'] != '' ) ? 1 : 0;
125
+ $context['submit_label'] = __( 'Optimize', 'brizy' );
126
 
127
  return $this->twig->render( 'optimizer-general.html.twig', $context );
128
  }
129
 
130
+ private function extractUrlFromPage( $urls, $postId, $filesystem, $project ) {
131
+ $storage = Brizy_Editor_Storage_Post::instance( $postId );
132
+ $data = $storage->get( Brizy_Editor_Post::BRIZY_POST, false );
133
+
134
+ if ( ! isset( $data['compiled_html'] ) ) {
135
+ return $urls;
136
+ }
137
+
138
+ $content = base64_decode( $data['compiled_html'] );
139
+
140
+ $content = Brizy_SiteUrlReplacer::restoreSiteUrl( $content );
141
+
142
+ $content = apply_filters( 'brizy_content', $content, $project, get_post( $postId ) );
143
+
144
+ return $this->extract_media_urls( $urls, $content, $filesystem );
145
+ }
146
+
147
  public function settings_submit() {
148
 
149
  switch ( $_POST['tab'] ) {
207
  *
208
  * @return array
209
  */
210
+ private function extract_media_urls( $urls, $content, $filesystem ) {
211
+
212
+ global $wpdb;
213
+
214
+ $pt = $wpdb->posts;
215
+ $mt = $wpdb->postmeta;
216
 
 
217
  $site_url = str_replace( array( 'http://', 'https://', '/', '.' ), array( '', '', '\/', '\.' ), home_url() );
218
 
219
+ //preg_match_all( '/' . $site_url . '\/?(\?' . Brizy_Public_CropProxy::ENDPOINT . '=(.[^"\',\s)]*))/im', $content, $matches );
220
  preg_match_all( '/(http|https):\/\/' . $site_url . '\/?(\?' . Brizy_Public_CropProxy::ENDPOINT . '=(.[^"\',\s)]*))/im', $content, $matches );
221
 
222
  if ( ! isset( $matches[0] ) || count( $matches[0] ) == 0 ) {
223
+ return $urls;
224
  }
225
 
226
+ $time = time();
227
+ $t = null;
228
+ $attachmentUids = array();
229
  foreach ( $matches[0] as $i => $url ) {
230
 
231
  $parsed_url = parse_url( html_entity_decode( $matches[0][ $i ] ) );
236
 
237
  parse_str( $parsed_url['query'], $params );
238
 
 
239
  if ( ! isset( $params[ Brizy_Public_CropProxy::ENDPOINT ] ) ) {
240
  continue;
241
  }
242
 
243
+ $mediaUid = $params[ Brizy_Public_CropProxy::ENDPOINT ];
244
 
245
+ if ( strpos( $mediaUid, 'wp-' ) !== false ) {
246
+ $attachmentUids[] = array(
247
+ 'url' => $url,
248
+ 'parsed_url' => $parsed_url,
249
+ 'uid' => $mediaUid,
250
+ 'uidQuery' => "'{$mediaUid}'"
251
+ );
252
+ }
253
+ }
254
 
255
+ if ( count( $attachmentUids ) === 0 ) {
256
+ return $urls;
257
+ }
258
 
259
+ $uids_subquery = implode( ',', array_unique( array_map( function ( $o ) {
260
+ return $o['uidQuery'];
261
+ }, $attachmentUids ) ) );
262
+
263
+ $query = "SELECT
264
+ {$pt}.ID,
265
+ {$mt}.meta_value AS UID
266
+ FROM {$pt}
267
+ INNER JOIN {$mt} ON ( {$pt}.ID = {$mt}.post_id AND {$mt}.meta_key = 'brizy_attachment_uid' ) AND {$mt}.meta_value IN (" . $uids_subquery . ")
268
+ WHERE
269
+ {$pt}.post_type = 'attachment'
270
+ ORDER BY {$pt}.post_date DESC";
271
+
272
+ $attachmentIds = $wpdb->get_results( $query );
273
+
274
+ $attachmentUids = array_map( function ( $o ) use ( $attachmentIds ) {
275
+ foreach ( $attachmentIds as $row ) {
276
+ if ( $row->UID === $o['uid'] ) {
277
+ $o['ID'] = $row->ID;
278
  }
279
 
280
+ return $o;
 
281
  }
282
+ }, $attachmentUids );
283
+
284
 
285
+ foreach ( $attachmentUids as $uidRes ) {
286
+
287
+ $parsed_url = $uidRes['parsed_url'];
288
+
289
+ if ( ! isset( $parsed_url['query'] ) || !isset($uidRes['ID']) ) {
290
+ continue;
291
+ }
292
+
293
+ parse_str( $parsed_url['query'], $params );
294
+
295
+ if ( ! isset( $params[ Brizy_Public_CropProxy::ENDPOINT ] ) ) {
296
+ continue;
297
+ }
298
+
299
+ $media_url = get_attached_file( $uidRes['ID'] );
300
+ $brizy_media = basename( $media_url );
301
 
302
  $wp_imageFullName = sprintf( "%s/assets/images/%s/optimized/%s", $params['brizy_post'], $params['brizy_crop'], $brizy_media );
 
303
 
304
  if ( ! $filesystem->has( $wp_imageFullName ) ) {
305
+ $urls[] = $uidRes['url'] . "&brizy_optimize=1&t=" . $time;
306
  }
 
307
  }
308
 
309
+ return $urls;
310
  }
311
 
312
  /**
admin/popups/main.php CHANGED
@@ -199,7 +199,11 @@ class Brizy_Admin_Popups_Main {
199
  'post_status' => 'publish'
200
  ) );
201
 
202
- $allPopups = Brizy_Admin_Rules_Manager::sortEntitiesByRuleWeight( $allPopups );
 
 
 
 
203
 
204
  $ruleManager = new Brizy_Admin_Rules_Manager();
205
  foreach ( $allPopups as $aPopup ) {
199
  'post_status' => 'publish'
200
  ) );
201
 
202
+ $allPopups = Brizy_Admin_Rules_Manager::sortEntitiesByRuleWeight( $allPopups, [
203
+ 'type' => $applyFor,
204
+ 'entityType' => $entityType,
205
+ 'entityValues' => $entityValues
206
+ ] );
207
 
208
  $ruleManager = new Brizy_Admin_Rules_Manager();
209
  foreach ( $allPopups as $aPopup ) {
admin/rule-interface.php CHANGED
@@ -1,7 +1,20 @@
1
  <?php
2
 
3
  interface Brizy_Admin_RuleInterface {
 
 
 
 
 
 
 
 
4
  public function isMatching( $applyFor, $entityType, $entityValues );
5
 
6
- public function getRuleWeight();
 
 
 
 
 
7
  }
1
  <?php
2
 
3
  interface Brizy_Admin_RuleInterface {
4
+
5
+ /**
6
+ * @param $applyFor
7
+ * @param $entityType
8
+ * @param $entityValues
9
+ *
10
+ * @return mixed
11
+ */
12
  public function isMatching( $applyFor, $entityType, $entityValues );
13
 
14
+ /**
15
+ * @param $context
16
+ *
17
+ * @return mixed
18
+ */
19
+ public function getRuleWeight($context);
20
  }
admin/rule-set.php CHANGED
@@ -23,11 +23,13 @@ class Brizy_Admin_RuleSet implements Brizy_Admin_RuleInterface {
23
  }
24
 
25
  /**
 
 
26
  * @return float|int
27
  */
28
- public function getRuleWeight() {
29
- return array_sum( array_map( function ( $v ) {
30
- return $v->getRuleWeight();
31
  }, $this->rules ) );
32
  }
33
 
23
  }
24
 
25
  /**
26
+ * @param $context
27
+ *
28
  * @return float|int
29
  */
30
+ public function getRuleWeight( $context ) {
31
+ return max( array_map( function ( Brizy_Admin_RuleInterface $v ) use ( $context ) {
32
+ return $v->getRuleWeight( $context );
33
  }, $this->rules ) );
34
  }
35
 
admin/rule.php CHANGED
@@ -258,7 +258,7 @@ class Brizy_Admin_Rule extends Brizy_Admin_Serializable implements Brizy_Admin_R
258
  }
259
 
260
 
261
- public function getRuleWeight() {
262
 
263
  $weight = 0;
264
 
@@ -286,6 +286,18 @@ class Brizy_Admin_Rule extends Brizy_Admin_Serializable implements Brizy_Admin_R
286
 
287
  $weight += count( $values );
288
 
 
 
 
 
 
 
 
 
 
 
 
 
289
  return $weight;
290
  }
291
 
@@ -318,7 +330,7 @@ class Brizy_Admin_Rule extends Brizy_Admin_Serializable implements Brizy_Admin_R
318
  */
319
  static public function createFromRequestData( $data ) {
320
 
321
- if ( is_null( $data ) ) {
322
  throw new Exception( 'Invalid parameter provided' );
323
  }
324
 
@@ -360,6 +372,6 @@ class Brizy_Admin_Rule extends Brizy_Admin_Serializable implements Brizy_Admin_R
360
  * @return string
361
  */
362
  private function generateId() {
363
- return md5( implode( '', func_get_args() ) .time() );
364
  }
365
  }
258
  }
259
 
260
 
261
+ public function getRuleWeight( $context ) {
262
 
263
  $weight = 0;
264
 
286
 
287
  $weight += count( $values );
288
 
289
+ if ( isset( $context['type'] ) && $this->getAppliedFor() === $context['type'] ) {
290
+ $weight += 1;
291
+ }
292
+
293
+ if ( isset( $context['entityType'] ) && $this->getEntityType() === $context['entityType'] ) {
294
+ $weight += 1;
295
+ }
296
+
297
+ if ( isset( $context['entityValues'] ) && $intersection = count( array_intersect( $context['entityValues'], $this->getEntityValues() ) ) ) {
298
+ $weight += $intersection;
299
+ }
300
+
301
  return $weight;
302
  }
303
 
330
  */
331
  static public function createFromRequestData( $data ) {
332
 
333
+ if ( is_null( $data ) ) {
334
  throw new Exception( 'Invalid parameter provided' );
335
  }
336
 
372
  * @return string
373
  */
374
  private function generateId() {
375
+ return md5( implode( '', func_get_args() ) . time() );
376
  }
377
  }
admin/rules/abstract-validator.php CHANGED
@@ -123,9 +123,8 @@ abstract class Brizy_Admin_Rules_AbstractValidator implements Brizy_Admin_Rules_
123
  * @var Brizy_Admin_Rule $a ;
124
  * @var Brizy_Admin_Rule $b ;
125
  */
126
-
127
- $la = $a->getRuleWeight();
128
- $lb = $b->getRuleWeight();
129
  if ( $lb == $la ) {
130
  return 0;
131
  }
123
  * @var Brizy_Admin_Rule $a ;
124
  * @var Brizy_Admin_Rule $b ;
125
  */
126
+ $la = $a->getRuleWeight([]);
127
+ $lb = $b->getRuleWeight([]);
 
128
  if ( $lb == $la ) {
129
  return 0;
130
  }
admin/rules/manager.php CHANGED
@@ -101,17 +101,18 @@ class Brizy_Admin_Rules_Manager {
101
 
102
  /**
103
  * @param $entities
 
104
  *
105
  * @return mixed
106
  */
107
- static function sortEntitiesByRuleWeight($entities) {
108
  $ruleManager = new Brizy_Admin_Rules_Manager();
109
  // sort templates by rule set weight
110
- usort( $entities, function ( $t1, $t2 ) use ( $ruleManager ) {
111
  $ruleSetT1 = $ruleManager->getRuleSet( $t1->ID );
112
  $ruleSetT2 = $ruleManager->getRuleSet( $t2->ID );
113
- $rule_weight_t1 = $ruleSetT1->getRuleWeight();
114
- $rule_weight_t2 = $ruleSetT2->getRuleWeight();
115
  if ( $rule_weight_t1 == $rule_weight_t2 ) {
116
  return 0;
117
  }
@@ -175,7 +176,7 @@ class Brizy_Admin_Rules_Manager {
175
 
176
  foreach ( $meta_value as $v ) {
177
  $brizy_admin_rule = Brizy_Admin_Rule::createFromSerializedData( $v );
178
- $rules[] = $brizy_admin_rule;
179
  }
180
  }
181
 
101
 
102
  /**
103
  * @param $entities
104
+ * @param $context
105
  *
106
  * @return mixed
107
  */
108
+ static function sortEntitiesByRuleWeight( $entities, $context ) {
109
  $ruleManager = new Brizy_Admin_Rules_Manager();
110
  // sort templates by rule set weight
111
+ usort( $entities, function ( $t1, $t2 ) use ( $ruleManager, $context ) {
112
  $ruleSetT1 = $ruleManager->getRuleSet( $t1->ID );
113
  $ruleSetT2 = $ruleManager->getRuleSet( $t2->ID );
114
+ $rule_weight_t1 = $ruleSetT1->getRuleWeight( $context );
115
+ $rule_weight_t2 = $ruleSetT2->getRuleWeight( $context );
116
  if ( $rule_weight_t1 == $rule_weight_t2 ) {
117
  return 0;
118
  }
176
 
177
  foreach ( $meta_value as $v ) {
178
  $brizy_admin_rule = Brizy_Admin_Rule::createFromSerializedData( $v );
179
+ $rules[] = $brizy_admin_rule;
180
  }
181
  }
182
 
admin/settings.php CHANGED
@@ -3,7 +3,6 @@
3
  }
4
 
5
 
6
-
7
  class Brizy_Admin_Settings {
8
 
9
  private $selected_post_types;
@@ -85,7 +84,7 @@ class Brizy_Admin_Settings {
85
  return;
86
  }
87
 
88
- $this->screenName = add_menu_page( Brizy_Editor::get()->get_name(),
89
  Brizy_Editor::get()->get_name(),
90
  'read',
91
  self::menu_slug(),
@@ -100,7 +99,7 @@ class Brizy_Admin_Settings {
100
  * @internal
101
  */
102
  function actionRegisterRoleManagerPage() {
103
- add_submenu_page( self::menu_slug(), __( 'Role Manager' ), __( 'Role Manager' ), 'manage_options', self::menu_slug(), array(
104
  $this,
105
  'render'
106
  ) );
@@ -111,27 +110,27 @@ class Brizy_Admin_Settings {
111
  */
112
  public function actionRegisterGoProPage() {
113
 
114
- if ( class_exists( 'BrizyPro_Main' ) ) {
115
- return;
116
- }
117
 
118
  add_submenu_page(
119
- self::menu_slug(),
120
- '',
121
- '<span style="display:flex;color:#00b9eb;">
122
  <svg height="20" width="20">
123
  <path d="M13,7 L12,7 L12,4.73333333 C12,2.6744 10.206,1 8,1 C5.794,1 4,2.6744 4,4.73333333 L4,7 L3,7 C2.448,7 2,7.41813333 2,7.93333333 L2,14.0666667 C2,14.5818667 2.448,15 3,15 L13,15 C13.552,15 14,14.5818667 14,14.0666667 L14,7.93333333 C14,7.41813333 13.552,7 13,7 Z M10,5 L12,5 L12,7 L10,7 L6,7 L6,5 C6,3.897 6.897,3 8,3 C9.103,3 10,3.897 10,5 Z" fill="#00b9eb" fill-rule="nonzero"/>
124
  </svg>' .
125
- __( 'Go Pro', 'brizy' ) .
126
- '</span>',
127
- 'manage_options',
128
  Brizy_Config::GO_PRO_DASHBOARD_URL,
129
- array()
130
- );
131
  }
132
 
133
  private function get_selected_tab() {
134
- return ( ! empty( $_REQUEST['tab'] ) ) ? esc_attr( $_REQUEST['tab'] ) : null;
135
  }
136
 
137
  private function get_tabs() {
@@ -145,7 +144,7 @@ class Brizy_Admin_Settings {
145
  ),
146
  array(
147
  'id' => 'roles',
148
- 'label' => __( 'Role Manager', 'brizy' ),
149
  'is_selected' => $selected_tab == 'roles',
150
  'href' => menu_page_url( self::menu_slug(), false ) . "&tab=roles"
151
  ),
@@ -171,10 +170,11 @@ class Brizy_Admin_Settings {
171
  private function get_general_tab() {
172
  $list_post_types = $this->list_post_types();
173
  $prepared_types = array_map( array( $this, 'is_selected' ), $list_post_types );
 
174
 
175
  return Brizy_Admin_View::render(
176
  'settings/general',
177
- array( 'types' => $prepared_types, )
178
  );
179
  }
180
 
@@ -217,12 +217,16 @@ class Brizy_Admin_Settings {
217
  $post_types = isset( $_POST['post-types'] ) ? (array) $_POST['post-types'] : array();
218
  $array_diff = array_diff( $post_types, $allowed_post_types );
219
 
 
 
220
  if ( count( $array_diff ) > 0 ) {
221
  //error
222
  Brizy_Admin_Flash::instance()->add_error( 'Invalid post type selected' );
223
  $error_count ++;
224
  }
225
 
 
 
226
  if ( $error_count == 0 ) {
227
  $this->selected_post_types = $post_types;
228
  Brizy_Editor_Storage_Common::instance()->set( 'post-types', $post_types );
@@ -252,8 +256,11 @@ class Brizy_Admin_Settings {
252
  */
253
  public function get_capability_options() {
254
  return apply_filters( 'brizy_settings_capability_options', array(
255
- array( 'capability' => '', 'label' => __('No Access') ),
256
- array( 'capability' => Brizy_Admin_Capabilities::CAP_EDIT_WHOLE_PAGE, 'label' => __('Full Access','brizy') )
 
 
 
257
  ) );
258
  }
259
 
@@ -333,9 +340,9 @@ class Brizy_Admin_Settings {
333
  return;
334
  }
335
 
336
- if(!isset($_POST['tab'])) {
337
- return;
338
- }
339
 
340
  if ( ! isset( $_POST['_wpnonce'] ) || ! wp_verify_nonce( $_POST['_wpnonce'] ) ) {
341
  return;
3
  }
4
 
5
 
 
6
  class Brizy_Admin_Settings {
7
 
8
  private $selected_post_types;
84
  return;
85
  }
86
 
87
+ $this->screenName = add_menu_page( Brizy_Editor::get()->get_name(),
88
  Brizy_Editor::get()->get_name(),
89
  'read',
90
  self::menu_slug(),
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
  ) );
110
  */
111
  public function actionRegisterGoProPage() {
112
 
113
+ if ( class_exists( 'BrizyPro_Main' ) ) {
114
+ return;
115
+ }
116
 
117
  add_submenu_page(
118
+ self::menu_slug(),
119
+ '',
120
+ '<span style="display:flex;color:#00b9eb;">
121
  <svg height="20" width="20">
122
  <path d="M13,7 L12,7 L12,4.73333333 C12,2.6744 10.206,1 8,1 C5.794,1 4,2.6744 4,4.73333333 L4,7 L3,7 C2.448,7 2,7.41813333 2,7.93333333 L2,14.0666667 C2,14.5818667 2.448,15 3,15 L13,15 C13.552,15 14,14.5818667 14,14.0666667 L14,7.93333333 C14,7.41813333 13.552,7 13,7 Z M10,5 L12,5 L12,7 L10,7 L6,7 L6,5 C6,3.897 6.897,3 8,3 C9.103,3 10,3.897 10,5 Z" fill="#00b9eb" fill-rule="nonzero"/>
123
  </svg>' .
124
+ __( 'Go Pro', 'brizy' ) .
125
+ '</span>',
126
+ 'manage_options',
127
  Brizy_Config::GO_PRO_DASHBOARD_URL,
128
+ array()
129
+ );
130
  }
131
 
132
  private function get_selected_tab() {
133
+ return ( ! empty( $_REQUEST['tab'] ) ) ? esc_attr( $_REQUEST['tab'] ) : null;
134
  }
135
 
136
  private function get_tabs() {
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
  ),
170
  private function get_general_tab() {
171
  $list_post_types = $this->list_post_types();
172
  $prepared_types = array_map( array( $this, 'is_selected' ), $list_post_types );
173
+ $svgEnabled = Brizy_Editor_Storage_Common::instance()->get( 'svg-upload', false );
174
 
175
  return Brizy_Admin_View::render(
176
  'settings/general',
177
+ array( 'types' => $prepared_types, 'svgUploadEnabled' => $svgEnabled )
178
  );
179
  }
180
 
217
  $post_types = isset( $_POST['post-types'] ) ? (array) $_POST['post-types'] : array();
218
  $array_diff = array_diff( $post_types, $allowed_post_types );
219
 
220
+ $svgEnabled = isset( $_POST['svg-upload-enabled'] ) ? (bool) $_POST['svg-upload-enabled'] : false;
221
+
222
  if ( count( $array_diff ) > 0 ) {
223
  //error
224
  Brizy_Admin_Flash::instance()->add_error( 'Invalid post type selected' );
225
  $error_count ++;
226
  }
227
 
228
+ Brizy_Editor_Storage_Common::instance()->set( 'svg-upload', $svgEnabled );
229
+
230
  if ( $error_count == 0 ) {
231
  $this->selected_post_types = $post_types;
232
  Brizy_Editor_Storage_Common::instance()->set( 'post-types', $post_types );
256
  */
257
  public function get_capability_options() {
258
  return apply_filters( 'brizy_settings_capability_options', array(
259
+ array( 'capability' => '', 'label' => __( 'No Access' ) ),
260
+ array(
261
+ 'capability' => Brizy_Admin_Capabilities::CAP_EDIT_WHOLE_PAGE,
262
+ 'label' => __( 'Full Access', 'brizy' )
263
+ )
264
  ) );
265
  }
266
 
340
  return;
341
  }
342
 
343
+ if ( ! isset( $_POST['tab'] ) ) {
344
+ return;
345
+ }
346
 
347
  if ( ! isset( $_POST['_wpnonce'] ) || ! wp_verify_nonce( $_POST['_wpnonce'] ) ) {
348
  return;
admin/static/css/style.css CHANGED
@@ -299,4 +299,203 @@
299
 
300
  .brizy-dashboard-widget-footer__go-pro:hover {
301
  fill: #00a0d2;
302
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
299
 
300
  .brizy-dashboard-widget-footer__go-pro:hover {
301
  fill: #00a0d2;
302
+ }
303
+
304
+ /* Admin notice give us a rating */
305
+ .brz-review-notice-container {
306
+ display: flex;
307
+ align-items: center;
308
+ padding-top: 10px;
309
+ }
310
+ .brz-review-notice-container .dashicons {
311
+ font-size: 1.4em;
312
+ padding-left: 10px;
313
+ }
314
+ .brz-review-notice-container a {
315
+ padding-left: 5px;
316
+ text-decoration: none;
317
+ }
318
+ .brz-review-notice-container .dashicons:first-child {
319
+ padding-left: 0;
320
+ }
321
+ .brz-notice-image {
322
+ max-width: 100px;
323
+ }
324
+
325
+ .brz-notice-content .brz-notice-heading {
326
+ padding-bottom: 5px;
327
+ }
328
+ .brz-notice-content {
329
+ margin-left: 15px;
330
+ }
331
+ .brz-notice-container {
332
+ padding-top: 10px;
333
+ padding-bottom: 10px;
334
+ display: flex;
335
+ justify-content: left;
336
+ align-items: center;
337
+ }
338
+
339
+ /* Admin deactivate plugin modal */
340
+ .brz-deactivate-modal {
341
+ border-radius:3px;
342
+ animation: brz-feedback-modal-fadein .5s linear;
343
+ }
344
+ .brz-deactivate-overlay {
345
+ animation: brz-feedback-overlay-fadein .5s linear;
346
+ }
347
+ .brz-deactivate-feedback-dialog-logo {
348
+ width: 40px;
349
+ vertical-align: middle;
350
+ }
351
+ .brz-deactivate-modal .ui-dialog-titlebar {
352
+ display: none;
353
+ }
354
+ .brz-deactivate-modal .ui-dialog-content {
355
+ padding: 0;
356
+ }
357
+ .brz-deactivate-feedback-dialog-header {
358
+ padding: 18px 15px;
359
+ box-shadow: 0 0 8px rgba(0,0,0,.1);
360
+ text-align: left;
361
+ }
362
+ .brz-deactivate-feedback-dialog-header-title {
363
+ font-size: 15px;
364
+ text-transform: uppercase;
365
+ font-weight: 700;
366
+ padding-left: 5px;
367
+ color: #495157;
368
+ }
369
+ .brz-deactivate-feedback-dialog-form {
370
+ padding: 30px;
371
+ text-align: left;
372
+ }
373
+ .brz-deactivate-feedback-dialog-form-caption {
374
+ font-weight: 700;
375
+ font-size: 15px;
376
+ color: #495157;
377
+ line-height: 1.4;
378
+ margin-bottom: 30px;
379
+ }
380
+ .brz-deactivate-feedback-dialog-input {
381
+ float: left;
382
+ margin: 0 15px 0 0;
383
+ box-shadow: none;
384
+ }
385
+ .brz-deactivate-feedback-dialog-label {
386
+ display: block;
387
+ font-size: 13px;
388
+ color: #6d7882;
389
+ }
390
+ #brz-deactivate-feedback-dialog .brz-deactivate-feedback-dialog-input {
391
+ float: left;
392
+ margin: 0 15px 0 0;
393
+ box-shadow: none;
394
+ }
395
+ .brz-deactivate-feedback-dialog-input-wrapper {
396
+ line-height: 1.3;
397
+ overflow: hidden;
398
+ margin-bottom: 15px;
399
+ }
400
+ .brz-deactivate-modal .ui-dialog-buttonpane {
401
+ border: none;
402
+ padding-bottom: 30px;
403
+ border-radius:3px;
404
+ }
405
+ .brz-deactivate-modal .ui-dialog-buttonset {
406
+ float:none;
407
+ }
408
+ .brz-feedback-submit {
409
+ background-color: #05b3e6;
410
+ color: #fff;
411
+ width: 180px;
412
+ height: 38px;
413
+ border:none;
414
+ }
415
+ .brz-feedback-submit:hover,
416
+ .brz-feedback-submit:focus {
417
+ opacity: 0.9;
418
+ background-color: #05b3e6;
419
+ color: #fff !important;
420
+ }
421
+ .brz-feedback-submit:disabled:hover {
422
+ color: #a4afb7 !important;
423
+ }
424
+ .brz-feedback-skip {
425
+ font-size: 12px;
426
+ color: #a4afb7;
427
+ background: none;
428
+ float: right;
429
+ width: auto;
430
+ border:none;
431
+ box-shadow: none;
432
+ }
433
+ .brz-feedback-skip:hover,
434
+ .brz-feedback-skip:active,
435
+ .brz-feedback-skip:focus {
436
+ opacity: 0.8;
437
+ color: #a4afb7;
438
+ background: none;
439
+ box-shadow: none;
440
+ }
441
+ .brz-feedback-text {
442
+ margin: 10px 0 0 30px;
443
+ padding: 5px;
444
+ font-size: 13px;
445
+ -webkit-box-shadow: none;
446
+ box-shadow: none;
447
+ background-color: #fff;
448
+ width: 92%;
449
+ }
450
+ .brz-feedback-text-alert {
451
+ max-width: fit-content;
452
+ color: #b01b1b;
453
+ padding: 0;
454
+ }
455
+ @-webkit-keyframes brz-feedback-modal-fadein {
456
+ 0% {
457
+ opacity: 0;
458
+ }
459
+
460
+ to {
461
+ opacity: 1;
462
+ }
463
+ }
464
+ @-webkit-keyframes brz-feedback-overlay-fadein {
465
+ 0% {
466
+ opacity: 0;
467
+ }
468
+
469
+ to {
470
+ opacity: 0.7;
471
+ }
472
+ }
473
+ @-webkit-keyframes brz-rotation {
474
+ 0% {
475
+ -webkit-transform: rotate(0deg);
476
+ transform: rotate(0deg);
477
+ }
478
+
479
+ to {
480
+ -webkit-transform: rotate(359deg);
481
+ transform: rotate(359deg);
482
+ }
483
+ }
484
+ @keyframes brz-rotation {
485
+ 0% {
486
+ -webkit-transform: rotate(0deg);
487
+ transform: rotate(0deg);
488
+ }
489
+
490
+ to {
491
+ -webkit-transform: rotate(359deg);
492
+ transform: rotate(359deg);
493
+ }
494
+ }
495
+ .brz-loading:before {
496
+ display: inline-block;
497
+ content: "\f463";
498
+ font: 18px dashicons;
499
+ animation: brz-rotation 2s linear infinite;
500
+ margin-top:10px;
501
+ }
admin/static/img/logo.svg ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="87px" height="74px" viewBox="0 0 87 74" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <title>Brizy logo</title>
4
+ <g id="Brizy-logo" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <g id="Group" transform="translate(5.000000, 5.000000)">
6
+ <path d="M0,23.3212886 L38.4152832,3.55271368e-15 L76.8305664,23.3212886 L38.4152832,46.6425772 L0,23.3212886 Z M13.7901017,23.8765574 L38.4152832,38.8688143 L63.0404647,23.8765574 L38.4152832,8.88430041 L13.7901017,23.8765574 Z" id="Top-element" fill="#181C25" fill-rule="nonzero"></path>
7
+ <polygon id="Bottom-el" fill="#A7B2DD" points="0 40.1772962 6.88092406 36 38.4152832 55.1225586 70.1540838 36.124113 76.8305664 40.1772962 38.4152832 63.4985848"></polygon>
8
+ </g>
9
+ </g>
10
+ </svg>
admin/static/js/script.js CHANGED
@@ -1,5 +1,144 @@
1
  jQuery(document).ready(function ($) {
2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  $('.enable-brizy-editor').on('click', function (event) {
4
  event.preventDefault();
5
 
@@ -36,6 +175,7 @@ jQuery(document).ready(function ($) {
36
 
37
  $(function () {
38
  BrizyGutenberg.init();
 
39
  });
40
  });
41
 
1
  jQuery(document).ready(function ($) {
2
 
3
+ $( '.brz-review-deserve, .brz-review-later, .brz-review-done' ).on( 'click', function ( e ) {
4
+
5
+ var btn = $( this );
6
+ notice = btn.closest( '.brz-notice' );
7
+
8
+ if ( ! btn.hasClass( 'brz-review-deserve' ) ) {
9
+ e.preventDefault();
10
+ }
11
+
12
+ $.ajax( {
13
+ url: Brizy_Admin_Data.url,
14
+ type: 'POST',
15
+ data: {
16
+ 'action': 'brizy-dismiss-notice',
17
+ 'nonce': Brizy_Admin_Data.nonce,
18
+ 'repeat': !!btn.hasClass( 'brz-review-later' )
19
+ }
20
+ } );
21
+
22
+ notice.animate({
23
+ opacity: '-=1'
24
+ }, 1000, function() {
25
+ notice.remove();
26
+ });
27
+ } );
28
+
29
+ var BrizyFeedbackDialog = {
30
+
31
+ init: function () {
32
+
33
+ if ( ! $( '#brz-deactivate-feedback-dialog' ).length && typeof dialog !== "function" ) {
34
+ return;
35
+ }
36
+
37
+ this.initDialog();
38
+
39
+ $( 'tr[data-slug="brizy"] .deactivate' ).click( function ( e ) {
40
+ e.preventDefault();
41
+ $( '#brz-deactivate-feedback-dialog' ).dialog( 'open' );
42
+ } );
43
+
44
+ $( '#brz-deactivate-feedback-dialog input:radio' ).change( function () {
45
+
46
+ var radio = $( this ),
47
+ submitBtn = $( '.brz-feedback-submit' ),
48
+ skipBtn = $( '.brz-feedback-skip' );
49
+
50
+ $( '.brz-feedback-text' ).addClass( 'hidden' );
51
+ submitBtn.prop( 'disabled', false );
52
+ skipBtn.prop( 'disabled', false );
53
+
54
+ if ( radio.val() === 'brizy_pro' ) {
55
+ submitBtn.prop( 'disabled', true );
56
+ skipBtn.prop( 'disabled', true );
57
+ }
58
+
59
+ radio.parent().find( '.brz-feedback-text' ).removeClass( 'hidden' );
60
+ } );
61
+ },
62
+ submitFeedback: function () {
63
+
64
+ var redirect = false;
65
+
66
+ $( '#brz-deactivate-feedback-dialog input:radio' ).each( function () {
67
+ if ( $( this ).is( ':checked' ) ) {
68
+ redirect = true;
69
+ }
70
+ } );
71
+
72
+ if ( !redirect ) {
73
+ return;
74
+ }
75
+
76
+ $( '.brz-feedback-submit .ui-button-text' ).addClass( 'brz-loading' ).text( '' );
77
+
78
+ $.ajax( {
79
+ url: Brizy_Admin_Data.url,
80
+ type: 'POST',
81
+ data: {
82
+ 'action': 'brizy-send-feedback',
83
+ 'nonce': Brizy_Admin_Data.nonce,
84
+ 'form': $( 'form.brz-deactivate-feedback-dialog-form' ).serialize()
85
+ }
86
+ } );
87
+
88
+ setTimeout( function () {
89
+ location.href = $( 'tr[data-slug="brizy"] .deactivate a' ).attr( 'href' );
90
+ }, 1000 );
91
+ },
92
+ initDialog: function () {
93
+
94
+ $( '#brz-deactivate-feedback-dialog' ).dialog( {
95
+ dialogClass: 'brz-deactivate-modal',
96
+ autoOpen: false,
97
+ draggable: false,
98
+ width: 'auto',
99
+ modal: true,
100
+ resizable: false,
101
+ closeOnEscape: true,
102
+ buttons: [
103
+ {
104
+ text: Brizy_Admin_Data.l10n.deactivateFeedbackSubmitBtn,
105
+ class: 'brz-feedback-submit',
106
+ click: function () {
107
+ BrizyFeedbackDialog.submitFeedback();
108
+ }
109
+ },
110
+ {
111
+ text: Brizy_Admin_Data.l10n.deactivateFeedbackSkipBtn,
112
+ class: 'brz-feedback-skip',
113
+ click: function () {
114
+ location.href = $( 'tr[data-slug="brizy"] .deactivate a' ).attr( 'href' );
115
+ }
116
+ }
117
+ ],
118
+ open: function () {
119
+ var overlay = $('.ui-widget-overlay');
120
+
121
+ overlay.addClass( 'brz-deactivate-overlay' );
122
+
123
+ $( '.brz-feedback-text' ).addClass( 'hidden' );
124
+ $( '.brz-deactivate-modal input:radio' ).prop( 'checked', false );
125
+
126
+ // close dialog by clicking the overlay behind it
127
+ overlay.bind( 'click', function () {
128
+ $( '#brz-deactivate-feedback-dialog' ).dialog( 'close' );
129
+ } );
130
+
131
+ $( '.brz-feedback-submit' ).prop( 'disabled', false );
132
+ $( '.brz-feedback-skip' ).prop( 'disabled', false );
133
+ },
134
+ create: function () {
135
+ // style fix for WordPress admin
136
+ $( '.ui-dialog-titlebar-close' ).addClass( 'ui-button' );
137
+ },
138
+ } );
139
+ }
140
+ };
141
+
142
  $('.enable-brizy-editor').on('click', function (event) {
143
  event.preventDefault();
144
 
175
 
176
  $(function () {
177
  BrizyGutenberg.init();
178
+ BrizyFeedbackDialog.init();
179
  });
180
  });
181
 
admin/svg/main.php ADDED
@@ -0,0 +1,127 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Created by PhpStorm.
4
+ * User: alex
5
+ * Date: 1/11/19
6
+ * Time: 10:59 AM
7
+ */
8
+
9
+
10
+ class Brizy_Admin_Svg_Main {
11
+
12
+ const SVG_MIME = 'image/svg+xml';
13
+
14
+ /**
15
+ * @return Brizy_Admin_Fonts_Main
16
+ */
17
+ public static function _init() {
18
+ static $instance;
19
+
20
+ if ( ! $instance ) {
21
+ $instance = new self();
22
+ }
23
+
24
+ return $instance;
25
+ }
26
+
27
+ /**
28
+ * BrizyPro_Admin_Popups constructor.
29
+ */
30
+ public function __construct() {
31
+ if(Brizy_Editor_Storage_Common::instance()->get( 'svg-upload', false )) {
32
+ add_filter( 'upload_mimes', array( $this, 'addSvgMimeType' ) );
33
+ add_filter( 'wp_check_filetype_and_ext', array( $this, 'wp_check_filetype_and_ext' ), 10, 4 );
34
+ add_filter( 'wp_prepare_attachment_for_js', [ $this, 'wp_prepare_attachment_for_js' ], 10, 3 );
35
+ add_filter( 'wp_handle_upload_prefilter', array( $this, 'wp_handle_upload_prefilter' ) );
36
+ }
37
+ }
38
+
39
+ public function addSvgMimeType( $mime_types ) {
40
+
41
+ $mime_types['svg'] = self::SVG_MIME;
42
+
43
+ return $mime_types;
44
+ }
45
+
46
+ public function wp_handle_upload_prefilter( $file ) {
47
+ if ( self::SVG_MIME !== $file['type'] ) {
48
+ return $file;
49
+ }
50
+
51
+ $dirtySVG = file_get_contents( $file['tmp_name'] );
52
+
53
+ $sanitizer = new \enshrined\svgSanitize\Sanitizer();
54
+ $cleanSVG = $sanitizer->sanitize( $dirtySVG );
55
+ file_put_contents( $file['tmp_name'], $cleanSVG );
56
+
57
+ return $file;
58
+ }
59
+
60
+ /**
61
+ * @param $data
62
+ * @param $file
63
+ * @param $filename
64
+ * @param $mimes
65
+ * @param $real_mime
66
+ *
67
+ * @return array
68
+ */
69
+ public function wp_check_filetype_and_ext( $data, $file, $filename, $mimes ) {
70
+
71
+ if ( ! $data['ext'] ) {
72
+
73
+ $wp_filetype = wp_check_filetype( $filename, $mimes );
74
+ $ext = $wp_filetype['ext'];
75
+ $type = $wp_filetype['type'];
76
+
77
+ if ( $ext === 'svg' ) {
78
+ return array( 'ext' => $ext, 'type' => $type, 'proper_filename' => false );
79
+ }
80
+ }
81
+
82
+ return $data;
83
+ }
84
+
85
+ /**
86
+ * @param $attachment_data
87
+ * @param $attachment
88
+ * @param $meta
89
+ *
90
+ * @return mixed
91
+ */
92
+ public function wp_prepare_attachment_for_js( $attachment_data, $attachment, $meta ) {
93
+
94
+ if ( 'image' !== $attachment_data['type'] || 'svg+xml' !== $attachment_data['subtype'] ) {
95
+ return $attachment_data;
96
+ }
97
+
98
+ if ( ! class_exists( 'SimpleXMLElement' ) ) {
99
+ return $attachment_data;
100
+ }
101
+
102
+ $svg = file_get_contents( get_attached_file( $attachment->ID ) );
103
+
104
+ if ( ! $svg ) {
105
+ return $attachment_data;
106
+ }
107
+
108
+ try {
109
+ $svg = new \SimpleXMLElement( $svg );
110
+ $width = (int) $svg['width'];
111
+ $height = (int) $svg['height'];
112
+ } catch ( \Exception $e ) {
113
+ return $attachment_data;
114
+ }
115
+
116
+ $src = $url = $attachment_data['url'];
117
+ $orientation = $height > $width ? 'portrait' : 'landscape';
118
+
119
+ // Media Gallery
120
+ $attachment_data['image'] = compact( 'src', 'width', 'height' );
121
+ $attachment_data['thumb'] = compact( 'src', 'width', 'height' );
122
+ $attachment_data['sizes']['full'] = compact( 'url', 'height', 'width', 'orientation' );
123
+
124
+ return $attachment_data;
125
+ }
126
+
127
+ }
admin/templates.php CHANGED
@@ -209,7 +209,7 @@ class Brizy_Admin_Templates {
209
  'labels' => $labels,
210
  'public' => false,
211
  'has_archive' => false,
212
- 'description' => __bt( 'brizy', 'Brizy' ) . ' ' . __( 'templates','brizy' ) . '.',
213
  'publicly_queryable' => Brizy_Editor::is_user_allowed(),
214
  'show_ui' => true,
215
  'show_in_menu' => Brizy_Admin_Settings::menu_slug(),
@@ -345,7 +345,7 @@ class Brizy_Admin_Templates {
345
  } ) );
346
  }
347
 
348
- public function geTemplateList( $context ) {
349
 
350
  $list = array(
351
  array( 'title' => 'Author page', 'value' => 'author', 'groupValue' => Brizy_Admin_Rule::TEMPLATE ),
@@ -384,7 +384,10 @@ class Brizy_Admin_Templates {
384
  'post_status' => $is_preview ? 'any' : 'publish'
385
  ) );
386
 
387
- $templates = Brizy_Admin_Rules_Manager::sortEntitiesByRuleWeight( $templates );
 
 
 
388
 
389
  foreach ( $templates as $atemplate ) {
390
  $ruleSet = $this->ruleManager->getRuleSet( $atemplate->ID );
@@ -420,7 +423,6 @@ class Brizy_Admin_Templates {
420
  return Brizy_Editor::get()->get_path( '/public/views/templates/' . $templateName );
421
  }
422
 
423
-
424
  return $template;
425
  }
426
 
209
  'labels' => $labels,
210
  'public' => false,
211
  'has_archive' => false,
212
+ 'description' => __bt( 'brizy', 'Brizy' ) . ' ' . __( 'templates', 'brizy' ) . '.',
213
  'publicly_queryable' => Brizy_Editor::is_user_allowed(),
214
  'show_ui' => true,
215
  'show_in_menu' => Brizy_Admin_Settings::menu_slug(),
345
  } ) );
346
  }
347
 
348
+ public function geTemplateList( $context) {
349
 
350
  $list = array(
351
  array( 'title' => 'Author page', 'value' => 'author', 'groupValue' => Brizy_Admin_Rule::TEMPLATE ),
384
  'post_status' => $is_preview ? 'any' : 'publish'
385
  ) );
386
 
387
+ $templates = Brizy_Admin_Rules_Manager::sortEntitiesByRuleWeight( $templates, [ 'type' => $applyFor,
388
+ 'entityType' => $entityType,
389
+ 'entityValues' => $entityValues
390
+ ] );
391
 
392
  foreach ( $templates as $atemplate ) {
393
  $ruleSet = $this->ruleManager->getRuleSet( $atemplate->ID );
423
  return Brizy_Editor::get()->get_path( '/public/views/templates/' . $templateName );
424
  }
425
 
 
426
  return $template;
427
  }
428
 
admin/views/dashboard-news.php CHANGED
@@ -1,16 +1,16 @@
1
  <?php if ( $news ) : ?>
2
  <div class="brizy-overview__feed">
3
  <h3 class="brizy-overview__heading">
4
- <?php echo __( 'News & Updates', 'elementor' ); ?>
5
  </h3>
6
  <ul class="brizy-overview__posts">
7
  <?php foreach ( $news as $item ) : ?>
8
  <li class="brizy-overview__post">
9
  <a href="<?php echo esc_url( $item['url'] ); ?>" class="brizy-overview__post-link" target="_blank">
10
- <span class="brizy-overview__badge"><?php echo __( 'New', 'elementor' ); ?></span>
11
- <?php echo esc_html( $item['title'] ); ?>
12
  </a>
13
- <p class="brizy-overview__post-description"><?php echo $item['excerpt']; ?></p>
14
  </li>
15
  <?php endforeach; ?>
16
  </ul>
1
  <?php if ( $news ) : ?>
2
  <div class="brizy-overview__feed">
3
  <h3 class="brizy-overview__heading">
4
+ <?php _e( 'News & Updates', 'brizy' ); ?>
5
  </h3>
6
  <ul class="brizy-overview__posts">
7
  <?php foreach ( $news as $item ) : ?>
8
  <li class="brizy-overview__post">
9
  <a href="<?php echo esc_url( $item['url'] ); ?>" class="brizy-overview__post-link" target="_blank">
10
+ <span class="brizy-overview__badge"><?php _e( 'New', 'brizy' ); ?></span>
11
+ <?php echo strip_tags( $item['title'] ); ?>
12
  </a>
13
+ <p class="brizy-overview__post-description"><?php echo strip_tags( $item['excerpt'] ); ?></p>
14
  </li>
15
  <?php endforeach; ?>
16
  </ul>
admin/views/dashboard-posts.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php if ( count( $posts ) ) : ?>
2
  <div class="brizy-overview__recently-edited">
3
  <h3 class="brizy-overview__heading">
4
- <?php echo __( 'Recently Edited', 'elementor' ); ?>
5
  </h3>
6
  <ul class="brizy-overview__posts">
7
  <?php foreach ( $posts as $apost ) : ?>
1
  <?php if ( count( $posts ) ) : ?>
2
  <div class="brizy-overview__recently-edited">
3
  <h3 class="brizy-overview__heading">
4
+ <?php _e( 'Recently Edited', 'brizy' ); ?>
5
  </h3>
6
  <ul class="brizy-overview__posts">
7
  <?php foreach ( $posts as $apost ) : ?>
admin/views/form-data.html.twig CHANGED
@@ -2,19 +2,24 @@
2
  {% for field in data.formData %}
3
  <li>
4
  <label for="{{ field.name }}">{{ field.label }}</label>:
5
- <span id="{{ field.name }}">{{ field.value }}</span>
 
 
 
 
6
  </li>
7
  {% endfor %}
8
  </ul>
9
  <style>
10
- .formData{
11
  margin: 0;
12
  }
13
- .formData label{
 
14
  font-weight: bold;
15
  }
16
 
17
- .formData span{
18
  vertical-align: middle;
19
  }
20
  </style>
2
  {% for field in data.formData %}
3
  <li>
4
  <label for="{{ field.name }}">{{ field.label }}</label>:
5
+ {% if field.type == "FileUpload" %}
6
+ <span id="{{ field.name }}"><a href="{{ field.value }}" target="_blank">{{ field.value }}</a></span>
7
+ {% else %}
8
+ <span id="{{ field.name }}">{{ field.value }}</span>
9
+ {% endif %}
10
  </li>
11
  {% endfor %}
12
  </ul>
13
  <style>
14
+ .formData {
15
  margin: 0;
16
  }
17
+
18
+ .formData label {
19
  font-weight: bold;
20
  }
21
 
22
+ .formData span {
23
  vertical-align: middle;
24
  }
25
  </style>
admin/views/settings/general.php CHANGED
@@ -20,6 +20,20 @@
20
  </fieldset>
21
  </td>
22
  </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23
  </tbody>
24
  </table>
25
 
20
  </fieldset>
21
  </td>
22
  </tr>
23
+ <tr>
24
+ <th scope="row"><?php echo __( 'Enable SVG uploads' ); ?></th>
25
+ <td>
26
+ <label>
27
+ <input type="checkbox"
28
+ id="svg-upload-enabled"
29
+ name="svg-upload-enabled"
30
+ value="1"
31
+ <?php echo $svgUploadEnabled ? 'checked' : ''; ?>
32
+ >
33
+
34
+ </label>
35
+ </td>
36
+ </tr>
37
  </tbody>
38
  </table>
39
 
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.108
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.108' );
23
- define( 'BRIZY_EDITOR_VERSION', '125' );
24
  define( 'BRIZY_FILE', __FILE__ );
25
  define( 'BRIZY_PLUGIN_BASE', plugin_basename( BRIZY_FILE ) );
26
  define( 'BRIZY_PLUGIN_PATH', dirname( BRIZY_FILE ) );
@@ -63,7 +63,7 @@ function brizy_upgrade_completed( $upgrader_object, $options ) {
63
  if ( $options['action'] == 'update' && $options['type'] == 'plugin' && isset( $options['plugins'] ) ) {
64
  foreach ( $options['plugins'] as $plugin ) {
65
  if ( $plugin == BRIZY_PLUGIN_BASE ) {
66
- flush_rewrite_rules( );
67
  }
68
  }
69
  }
@@ -71,12 +71,12 @@ function brizy_upgrade_completed( $upgrader_object, $options ) {
71
 
72
  function brizy_install() {
73
  Brizy_Logger::install();
74
- Brizy_Editor::get()->registerCustomPostTemplates();
75
- flush_rewrite_rules( );
76
  }
77
 
78
  function brizy_clean() {
79
  Brizy_Logger::clean();
 
80
  }
81
 
82
  new Brizy_Compatibilities_Init();
5
  * Plugin URI: https://brizy.io/
6
  * Author: Brizy.io
7
  * Author URI: https://brizy.io/
8
+ * Version: 1.0.109
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.109' );
23
+ define( 'BRIZY_EDITOR_VERSION', '126-wp' );
24
  define( 'BRIZY_FILE', __FILE__ );
25
  define( 'BRIZY_PLUGIN_BASE', plugin_basename( BRIZY_FILE ) );
26
  define( 'BRIZY_PLUGIN_PATH', dirname( BRIZY_FILE ) );
63
  if ( $options['action'] == 'update' && $options['type'] == 'plugin' && isset( $options['plugins'] ) ) {
64
  foreach ( $options['plugins'] as $plugin ) {
65
  if ( $plugin == BRIZY_PLUGIN_BASE ) {
66
+ add_option('brizy-regenerate-permalinks',1 );
67
  }
68
  }
69
  }
71
 
72
  function brizy_install() {
73
  Brizy_Logger::install();
74
+ add_option('brizy-regenerate-permalinks',1 );
 
75
  }
76
 
77
  function brizy_clean() {
78
  Brizy_Logger::clean();
79
+ add_option('brizy-regenerate-permalinks',1 );
80
  }
81
 
82
  new Brizy_Compatibilities_Init();
compatibilities/init.php CHANGED
@@ -28,7 +28,7 @@ class Brizy_Compatibilities_Init {
28
  new Brizy_Compatibilities_WPML();
29
  }
30
 
31
- if ( class_exists( 'LiteSpeed_Cache_Config' ) ) {
32
  new Brizy_Compatibilities_LiteSpeed();
33
  }
34
 
28
  new Brizy_Compatibilities_WPML();
29
  }
30
 
31
+ if ( $this->is_plugin_active( 'litespeed-cache/litespeed-cache.php' ) ) {
32
  new Brizy_Compatibilities_LiteSpeed();
33
  }
34
 
compatibilities/lite-speed.php CHANGED
@@ -1,24 +1,20 @@
1
  <?php
 
2
  /**
3
  * Compatibility with LiteSpeed plugin: https://wordpress.org/plugins/litespeed-cache/
4
  */
5
  class Brizy_Compatibilities_LiteSpeed {
6
 
7
  public function __construct() {
8
- add_action( 'litespeed_option_js_minify', array( $this, 'disable_js_minify' ), 10, 1 );
9
- }
10
-
11
- /**
12
- * @param $is_minify
13
- *
14
- * @return bool
15
- */
16
- public function disable_js_minify( $is_minify ) {
17
-
18
- if ( isset( $_GET['brizy-edit'] ) || isset( $_GET['brizy-edit-iframe'] ) ) {
19
- return false;
20
  }
21
-
22
- return $is_minify;
23
  }
24
  }
1
  <?php
2
+
3
  /**
4
  * Compatibility with LiteSpeed plugin: https://wordpress.org/plugins/litespeed-cache/
5
  */
6
  class Brizy_Compatibilities_LiteSpeed {
7
 
8
  public function __construct() {
9
+ if ( isset( $_GET['brizy-edit'] ) || isset( $_GET['brizy-edit-iframe'] ) ) {
10
+ add_action( 'litespeed_option_html_minify', '__return_false' );
11
+ add_action( 'litespeed_option_js_minify', '__return_false' );
12
+ add_action( 'litespeed_option_js_inline_minify', '__return_false' );
13
+ add_action( 'litespeed_option_js_combine', '__return_false' );
14
+ add_action( 'litespeed_option_css_minify', '__return_false' );
15
+ add_action( 'litespeed_option_css_inline_minify', '__return_false' );
16
+ add_action( 'litespeed_option_css_combine', '__return_false' );
17
+ add_action( 'litespeed_option_js_http2', '__return_false' );
 
 
 
18
  }
 
 
19
  }
20
  }
config.php CHANGED
@@ -28,10 +28,8 @@ class Brizy_Config {
28
  const ABOUT_URL = "https://www.brizy.io";
29
  const GO_PRO_DASHBOARD_URL = "https://www.brizy.io/brizy-pro-pricing/?utm_source=wp-menu&utm_campaign=gopro&utm_medium=wp-dash/";
30
 
31
- // const EDITOR_BUILD_PATH = BRIZY_PLUGIN_PATH . DIRECTORY_SEPARATOR . 'public' . DIRECTORY_SEPARATOR . 'editor-build' . DIRECTORY_SEPARATOR . BRIZY_EDITOR_VERSION;
32
- // const EDITOR_BUILD_URL = BRIZY_PLUGIN_URL . '/public/editor-build/'.BRIZY_EDITOR_VERSION;
33
- const EDITOR_BUILD_PATH = BRIZY_PLUGIN_PATH . DIRECTORY_SEPARATOR . 'public' . DIRECTORY_SEPARATOR . 'editor-build';
34
- const EDITOR_BUILD_URL = BRIZY_PLUGIN_URL . '/public/editor-build';
35
 
36
  static public function getCompilerUrls() {
37
  return new Brizy_Admin_UrlIterator(
28
  const ABOUT_URL = "https://www.brizy.io";
29
  const GO_PRO_DASHBOARD_URL = "https://www.brizy.io/brizy-pro-pricing/?utm_source=wp-menu&utm_campaign=gopro&utm_medium=wp-dash/";
30
 
31
+ const EDITOR_BUILD_PATH = BRIZY_PLUGIN_PATH . DIRECTORY_SEPARATOR . 'public' . DIRECTORY_SEPARATOR . 'editor-build' . DIRECTORY_SEPARATOR . BRIZY_EDITOR_VERSION;
32
+ const EDITOR_BUILD_URL = BRIZY_PLUGIN_URL . '/public/editor-build/'.BRIZY_EDITOR_VERSION;
 
 
33
 
34
  static public function getCompilerUrls() {
35
  return new Brizy_Admin_UrlIterator(
content/main-processor.php CHANGED
@@ -32,6 +32,7 @@ class Brizy_Content_MainProcessor {
32
 
33
  $this->processors[] = new Brizy_Editor_Asset_AssetProxyProcessor( $asset_storage );
34
  $this->processors[] = new Brizy_Editor_Asset_MediaAssetProcessor( $media_storage );
 
35
 
36
  $this->processors = apply_filters( 'brizy_content_processors', $this->processors, $context );
37
 
32
 
33
  $this->processors[] = new Brizy_Editor_Asset_AssetProxyProcessor( $asset_storage );
34
  $this->processors[] = new Brizy_Editor_Asset_MediaAssetProcessor( $media_storage );
35
+ $this->processors[] = new Brizy_Editor_Asset_SvgAssetProcessor( );
36
 
37
  $this->processors = apply_filters( 'brizy_content_processors', $this->processors, $context );
38
 
content/placeholder-extractor.php CHANGED
@@ -1,93 +1,108 @@
1
  <?php
2
 
3
 
4
- class Brizy_Content_PlaceholderExtractor {
5
-
6
- /**
7
- * @var Brizy_Content_Providers_AbstractProvider
8
- */
9
- private $provider;
10
-
11
-
12
- /**
13
- * BrizyPro_Content_PlaceholderExtractor constructor.
14
- *
15
- * @param Brizy_Content_Providers_AbstractProvider $provider
16
- */
17
- public function __construct( $provider ) {
18
- $this->provider = $provider;
19
- }
20
-
21
- /**
22
- * @param $content
23
- *
24
- * @return array
25
- */
26
- public function extract( $content ) {
27
-
28
- $placeholders = array();
29
- $expression = "/(?<placeholder>{{\s*(?<placeholderName>.+?)(?<attributes>(?:\s+)((?:\w+\s*=\s*'(?:.[^']*|)'\s*)*))?}}(?:(?<content>.*?){{\s*end_(\g{placeholderName})\s*}})?)/ims";
30
-
31
- $matches = array();
32
-
33
- preg_match_all( $expression, $content, $matches );
34
-
35
- if ( count( $matches['placeholder'] ) == 0 ) {
36
- return array( $placeholders, $content );
37
- }
38
-
39
- foreach ( $matches['placeholder'] as $i => $name ) {
40
- $placeholders[] = $placeholder = new Brizy_Content_ContentPlaceholder(
41
- $matches['placeholderName'][ $i ],
42
- $matches['placeholder'][ $i ],
43
- $this->getPlaceholderAttributes( $matches['attributes'][ $i ] ),
44
- $matches['content'][ $i ]
45
- );
46
-
47
- $hasPlaceholder = $this->provider->getPlaceholder( $placeholder->getName() );
48
-
49
- // ignore unknown placeholders
50
- if ( ! $hasPlaceholder ) {
51
- continue;
52
- }
53
-
54
- $pos = strpos( $content, $placeholder->getPlaceholder() );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
55
 
56
  // if ( function_exists( 'mb_strpos' ) ) {
57
  // $pos = mb_strpos( utf8_encode( $content ), utf8_encode($placeholder->getPlaceholder()) );
58
  // }
59
 
60
- $length = strlen( $placeholder->getPlaceholder() );
61
-
62
- if ( $pos !== false ) {
63
- $content = substr_replace( $content, $placeholder->getUid(), $pos, $length );
64
- }
65
-
66
- }
67
-
68
- return array( $placeholders, $content );
69
- }
70
-
71
- /**
72
- * Split the attributs from attribute string
73
- *
74
- * @param $attributeString
75
- *
76
- * @return array
77
- */
78
- private function getPlaceholderAttributes( $attributeString ) {
79
- $attrString = trim( $attributeString );
80
- $attrMatches = array();
81
- $attributes = array();
82
- preg_match_all( "/(\w+)\s*=\s*'([^']*)'/mi", $attrString, $attrMatches );
83
-
84
- if ( isset( $attrMatches[0] ) && is_array( $attrMatches[0] ) ) {
85
- foreach ( $attrMatches[1] as $i => $name ) {
86
- $attributes[ $name ] = $attrMatches[2][ $i ];
87
- }
88
- }
89
-
90
- return $attributes;
91
- }
 
92
 
93
  }
1
  <?php
2
 
3
 
4
+ class Brizy_Content_PlaceholderExtractor
5
+ {
6
+
7
+ /**
8
+ * @var Brizy_Content_Providers_AbstractProvider
9
+ */
10
+ private $provider;
11
+
12
+
13
+ /**
14
+ * BrizyPro_Content_PlaceholderExtractor constructor.
15
+ *
16
+ * @param Brizy_Content_Providers_AbstractProvider $provider
17
+ */
18
+ public function __construct($provider)
19
+ {
20
+ $this->provider = $provider;
21
+ }
22
+
23
+ private static function getPlaceholderRegexExpression()
24
+ {
25
+ return "/(?<placeholder>{{\s*(?<placeholderName>.+?)(?<attributes>(?:\s+)((?:\w+\s*=\s*'(?:.[^']*|)'\s*)*))?}}(?:(?<content>.*?){{\s*end_(\g{placeholderName})\s*}})?)/ims";;
26
+ }
27
+
28
+ public static function stripPlaceholders($content)
29
+ {
30
+ $expression = self::getPlaceholderRegexExpression();
31
+ return preg_replace($expression, '', $content);
32
+ }
33
+
34
+ /**
35
+ * @param $content
36
+ *
37
+ * @return array
38
+ */
39
+ public function extract($content)
40
+ {
41
+
42
+ $placeholders = array();
43
+ $expression = self::getPlaceholderRegexExpression();
44
+
45
+ $matches = array();
46
+
47
+ preg_match_all($expression, $content, $matches);
48
+
49
+ if (count($matches['placeholder']) == 0) {
50
+ return array($placeholders, $content);
51
+ }
52
+
53
+ foreach ($matches['placeholder'] as $i => $name) {
54
+ $placeholders[] = $placeholder = new Brizy_Content_ContentPlaceholder(
55
+ $matches['placeholderName'][$i],
56
+ $matches['placeholder'][$i],
57
+ $this->getPlaceholderAttributes($matches['attributes'][$i]),
58
+ $matches['content'][$i]
59
+ );
60
+
61
+ $hasPlaceholder = $this->provider->getPlaceholder($placeholder->getName());
62
+
63
+ // ignore unknown placeholders
64
+ if (!$hasPlaceholder) {
65
+ continue;
66
+ }
67
+
68
+ $pos = strpos($content, $placeholder->getPlaceholder());
69
 
70
  // if ( function_exists( 'mb_strpos' ) ) {
71
  // $pos = mb_strpos( utf8_encode( $content ), utf8_encode($placeholder->getPlaceholder()) );
72
  // }
73
 
74
+ $length = strlen($placeholder->getPlaceholder());
75
+
76
+ if ($pos !== false) {
77
+ $content = substr_replace($content, $placeholder->getUid(), $pos, $length);
78
+ }
79
+
80
+ }
81
+
82
+ return array($placeholders, $content);
83
+ }
84
+
85
+ /**
86
+ * Split the attributs from attribute string
87
+ *
88
+ * @param $attributeString
89
+ *
90
+ * @return array
91
+ */
92
+ private function getPlaceholderAttributes($attributeString)
93
+ {
94
+ $attrString = trim($attributeString);
95
+ $attrMatches = array();
96
+ $attributes = array();
97
+ preg_match_all("/(\w+)\s*=\s*'([^']*)'/mi", $attrString, $attrMatches);
98
+
99
+ if (isset($attrMatches[0]) && is_array($attrMatches[0])) {
100
+ foreach ($attrMatches[1] as $i => $name) {
101
+ $attributes[$name] = $attrMatches[2][$i];
102
+ }
103
+ }
104
+
105
+ return $attributes;
106
+ }
107
 
108
  }
editor.php CHANGED
@@ -34,8 +34,10 @@ class Brizy_Editor {
34
  add_action( 'init', array( $this, 'runMigrations' ), - 3000 );
35
  } catch ( Exception $e ) {
36
  Brizy_Logger::instance()->critical( 'Migration process ERROR', [ $e ] );
 
37
  return;
38
  }
 
39
  add_action( 'init', array( $this, 'initialize' ), - 2000 );
40
  }
41
 
@@ -50,7 +52,7 @@ class Brizy_Editor {
50
  }
51
 
52
  add_filter( "wp_revisions_to_keep", array( $this, 'revisionsToKeep' ), 10, 2 );
53
- add_action( 'wp_head', array( $this, 'brizy_settings_header' ) );
54
  add_action( 'wp_footer', array( $this, 'brizy_settings_footer' ) );
55
 
56
  }
@@ -73,6 +75,7 @@ class Brizy_Editor {
73
  Brizy_Admin_Templates::_init();
74
  Brizy_Admin_Blocks_Main::_init();
75
  Brizy_Admin_Fonts_Main::_init();
 
76
  Brizy_Admin_Popups_Main::_init();
77
  Brizy_Admin_OptimizeImages::_init();
78
 
@@ -128,7 +131,6 @@ class Brizy_Editor {
128
  add_filter( 'brizy_content', array( $this, 'brizy_content' ), 10, 3 );
129
  }
130
 
131
-
132
  public function wordpressObjectCreated() {
133
  $pid = Brizy_Editor::get()->currentPostId();
134
  $post = null;
@@ -167,6 +169,24 @@ class Brizy_Editor {
167
  return $num;
168
  }
169
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
170
  /**
171
  * @param $templates
172
  *
@@ -233,6 +253,8 @@ class Brizy_Editor {
233
  new Brizy_Editor_BlockScreenshotApi( $post );
234
  new Brizy_Editor_Forms_Api( $post );
235
 
 
 
236
  // for other apis
237
  do_action( 'brizy_register_api_methods', $user, $post );
238
  } catch ( Exception $e ) {
@@ -247,6 +269,8 @@ class Brizy_Editor {
247
  if ( is_admin() ) {
248
  Brizy_Admin_Main::instance();
249
  Brizy_Admin_Settings::_init();
 
 
250
  }
251
  } catch ( Exception $exception ) {
252
  Brizy_Admin_Flash::instance()->add_error( 'Unable to empty the trash. Please try again later.' );
@@ -351,10 +375,9 @@ class Brizy_Editor {
351
  } elseif
352
  ( isset( $_REQUEST['brizy_post'] ) ) {
353
  $pid = (int) $_REQUEST['brizy_post'];
354
- } elseif ($wp_query->is_posts_page) {
355
- $pid = (int) get_queried_object_id();
356
- }
357
- elseif
358
  ( ( $apid = get_queried_object_id() ) && ( is_single() || is_page() ) && $wp_query->queried_object instanceof WP_Post ) {
359
  $pid = (int) $apid;
360
  } elseif ( function_exists( 'is_shop' ) && is_shop() ) {
@@ -454,4 +477,23 @@ class Brizy_Editor {
454
  return $this->default_supported_post_types();
455
  }
456
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
457
  }
34
  add_action( 'init', array( $this, 'runMigrations' ), - 3000 );
35
  } catch ( Exception $e ) {
36
  Brizy_Logger::instance()->critical( 'Migration process ERROR', [ $e ] );
37
+
38
  return;
39
  }
40
+ add_action( 'init', array( $this, 'resetPermalinks' ), - 2000 );
41
  add_action( 'init', array( $this, 'initialize' ), - 2000 );
42
  }
43
 
52
  }
53
 
54
  add_filter( "wp_revisions_to_keep", array( $this, 'revisionsToKeep' ), 10, 2 );
55
+ //add_action( 'wp_head', array( $this, 'brizy_settings_header' ) );
56
  add_action( 'wp_footer', array( $this, 'brizy_settings_footer' ) );
57
 
58
  }
75
  Brizy_Admin_Templates::_init();
76
  Brizy_Admin_Blocks_Main::_init();
77
  Brizy_Admin_Fonts_Main::_init();
78
+ Brizy_Admin_Svg_Main::_init();
79
  Brizy_Admin_Popups_Main::_init();
80
  Brizy_Admin_OptimizeImages::_init();
81
 
131
  add_filter( 'brizy_content', array( $this, 'brizy_content' ), 10, 3 );
132
  }
133
 
 
134
  public function wordpressObjectCreated() {
135
  $pid = Brizy_Editor::get()->currentPostId();
136
  $post = null;
169
  return $num;
170
  }
171
 
172
+ /**
173
+ * Reset permalinks after plugin upgrade or enable
174
+ */
175
+ public function resetPermalinks() {
176
+
177
+ $this->registerCustomPostTemplates();
178
+
179
+ if(defined('BRIZY_PRO_VERSION')) {
180
+ $mainInstance = new BrizyPro_Main();
181
+ $mainInstance->registerCustomPosts();
182
+ }
183
+
184
+ if ( get_option( 'brizy-regenerate-permalinks', false ) ) {
185
+ flush_rewrite_rules();
186
+ delete_option( 'brizy-regenerate-permalinks' );
187
+ }
188
+ }
189
+
190
  /**
191
  * @param $templates
192
  *
253
  new Brizy_Editor_BlockScreenshotApi( $post );
254
  new Brizy_Editor_Forms_Api( $post );
255
 
256
+ Brizy_Editor_Accounts_Api::_init();
257
+
258
  // for other apis
259
  do_action( 'brizy_register_api_methods', $user, $post );
260
  } catch ( Exception $e ) {
269
  if ( is_admin() ) {
270
  Brizy_Admin_Main::instance();
271
  Brizy_Admin_Settings::_init();
272
+
273
+ $this->initFeedback();
274
  }
275
  } catch ( Exception $exception ) {
276
  Brizy_Admin_Flash::instance()->add_error( 'Unable to empty the trash. Please try again later.' );
375
  } elseif
376
  ( isset( $_REQUEST['brizy_post'] ) ) {
377
  $pid = (int) $_REQUEST['brizy_post'];
378
+ } elseif ( $wp_query->is_posts_page ) {
379
+ $pid = (int) get_queried_object_id();
380
+ } elseif
 
381
  ( ( $apid = get_queried_object_id() ) && ( is_single() || is_page() ) && $wp_query->queried_object instanceof WP_Post ) {
382
  $pid = (int) $apid;
383
  } elseif ( function_exists( 'is_shop' ) && is_shop() ) {
477
  return $this->default_supported_post_types();
478
  }
479
  }
480
+
481
+ private function initFeedback() {
482
+
483
+ $feedback = true;
484
+
485
+ if ( defined( 'BRIZY_PRO_VERSION' ) ) {
486
+
487
+ $whiteLabel = BrizyPro_Admin_WhiteLabel::_init();
488
+ $callable = is_callable( [ $whiteLabel, 'getEnabled' ] );
489
+
490
+ if ( ( $callable && $whiteLabel->getEnabled() ) || ! $callable ) {
491
+ $feedback = false;
492
+ }
493
+ }
494
+
495
+ if ( $feedback ) {
496
+ new Brizy_Admin_Feedback();
497
+ }
498
+ }
499
  }
editor/accounts/abstract-account.php CHANGED
@@ -4,6 +4,8 @@
4
  abstract class Brizy_Editor_Accounts_AbstractAccount extends Brizy_Admin_Serializable {
5
 
6
  const INTEGRATIONS_GROUP = 'form-integration';
 
 
7
 
8
 
9
  use Brizy_Editor_Forms_DynamicPropsAware;
@@ -34,16 +36,18 @@ abstract class Brizy_Editor_Accounts_AbstractAccount extends Brizy_Admin_Seriali
34
  */
35
  public function __construct( $data = null ) {
36
  if ( is_array( $data ) ) {
37
- $this->data = $data;
 
 
38
  } else {
39
  $this->data = array();
40
  }
41
 
42
  if ( ! isset( $data['id'] ) ) {
43
- $this->data['id'] = md5( time() . rand( 0, 10000 ) );
44
  }
45
 
46
- $this->data['group'] = $this->getGroup();
47
  }
48
 
49
  /**
@@ -57,7 +61,7 @@ abstract class Brizy_Editor_Accounts_AbstractAccount extends Brizy_Admin_Seriali
57
  if ( $key == 'id' ) {
58
  continue;
59
  }
60
- if ( !isset($aData[ $key ]) || $aData[ $key ] != $val ) {
61
  return false;
62
  }
63
  }
@@ -132,6 +136,10 @@ abstract class Brizy_Editor_Accounts_AbstractAccount extends Brizy_Admin_Seriali
132
  default:
133
  case self::INTEGRATIONS_GROUP:
134
  return new Brizy_Editor_Accounts_Account( $data );
 
 
 
 
135
  }
136
 
137
  throw new Exception( 'Invalid account group.' );
@@ -156,5 +164,15 @@ abstract class Brizy_Editor_Accounts_AbstractAccount extends Brizy_Admin_Seriali
156
  throw new Exception( 'Invalid json provided.' );
157
  }
158
 
 
 
 
 
 
 
 
 
 
 
159
 
160
  }
4
  abstract class Brizy_Editor_Accounts_AbstractAccount extends Brizy_Admin_Serializable {
5
 
6
  const INTEGRATIONS_GROUP = 'form-integration';
7
+ const RECAPTCHA_GROUP = 'recaptcha';
8
+ const SOCIAL_GROUP = 'social';
9
 
10
 
11
  use Brizy_Editor_Forms_DynamicPropsAware;
36
  */
37
  public function __construct( $data = null ) {
38
  if ( is_array( $data ) ) {
39
+ foreach ( $data as $key => $val ) {
40
+ $this->set( $key, $val );
41
+ }
42
  } else {
43
  $this->data = array();
44
  }
45
 
46
  if ( ! isset( $data['id'] ) ) {
47
+ $this->set( 'id', md5( time() . rand( 0, 10000 ) ) );
48
  }
49
 
50
+ $this->set( 'group', $this->getGroup() );
51
  }
52
 
53
  /**
61
  if ( $key == 'id' ) {
62
  continue;
63
  }
64
+ if ( ! isset( $aData[ $key ] ) || $aData[ $key ] != $val ) {
65
  return false;
66
  }
67
  }
136
  default:
137
  case self::INTEGRATIONS_GROUP:
138
  return new Brizy_Editor_Accounts_Account( $data );
139
+ case self::SOCIAL_GROUP:
140
+ return new Brizy_Editor_Accounts_SocialAccount( $data );
141
+ case self::RECAPTCHA_GROUP:
142
+ return new Brizy_Editor_Accounts_RecaptchaAccount( $data );
143
  }
144
 
145
  throw new Exception( 'Invalid account group.' );
164
  throw new Exception( 'Invalid json provided.' );
165
  }
166
 
167
+ /**
168
+ * Some accounts may need advanced validation
169
+ *
170
+ * Ex: a request to an external api may be needed
171
+ *
172
+ * @return bool
173
+ */
174
+ public function validate() {
175
+ return true;
176
+ }
177
 
178
  }
editor/accounts/account.php CHANGED
@@ -44,7 +44,7 @@ class Brizy_Editor_Accounts_Account extends Brizy_Editor_Accounts_AbstractAccoun
44
  }
45
 
46
  if ( is_object( $json_obj ) ) {
47
- return Brizy_Editor_Accounts_AbstractAccount::createFromJson( get_object_vars( $json_obj ) );
48
  }
49
 
50
  throw new Exception( 'Invalid json provided.' );
44
  }
45
 
46
  if ( is_object( $json_obj ) ) {
47
+ return Brizy_Editor_Accounts_AbstractAccount::createFromSerializedData( get_object_vars( $json_obj ) );
48
  }
49
 
50
  throw new Exception( 'Invalid json provided.' );
editor/accounts/api.php ADDED
@@ -0,0 +1,155 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Created by PhpStorm.
4
+ * User: alex
5
+ * Date: 2/7/19
6
+ * Time: 10:13 AM
7
+ */
8
+
9
+
10
+ class Brizy_Editor_Accounts_Api extends Brizy_Admin_AbstractApi {
11
+
12
+ const nonce = 'brizy-api';
13
+ const BRIZY_GET_ACCOUNT = 'brizy_get_account';
14
+ const BRIZY_GET_ACCOUNTS = 'brizy_get_accounts';
15
+ const BRIZY_ADD_ACCOUNT = 'brizy_add_account';
16
+ const BRIZY_UPDATE_ACCOUNT = 'brizy_update_account';
17
+ const BRIZY_DELETE_ACCOUNT = 'brizy_delete_account';
18
+
19
+ /**
20
+ * @var Brizy_Editor_Accounts_ServiceAccountManager
21
+ */
22
+ private $manager;
23
+
24
+ /**
25
+ * Brizy_Admin_Rules_Api constructor.
26
+ *
27
+ * @param Brizy_Editor_Accounts_ServiceAccountManager $manager
28
+ */
29
+ public function __construct( $manager ) {
30
+ $this->manager = $manager;
31
+
32
+ parent::__construct();
33
+ }
34
+
35
+ /**
36
+ * @return Brizy_Editor_Accounts_Api
37
+ * @throws Exception
38
+ */
39
+ public static function _init() {
40
+ static $instance;
41
+
42
+ if ( ! $instance ) {
43
+ $instance = new self( new Brizy_Editor_Accounts_ServiceAccountManager( Brizy_Editor_Project::get() ) );
44
+ }
45
+
46
+ return $instance;
47
+ }
48
+
49
+ /***
50
+ * @return null
51
+ */
52
+ protected function getRequestNonce() {
53
+ return $this->param( 'hash' );
54
+ }
55
+
56
+ /**
57
+ * Register all api actions
58
+ */
59
+ protected function initializeApiActions() {
60
+ add_action( 'wp_ajax_' . self::BRIZY_GET_ACCOUNT, array( $this, 'actionGetAccount' ) );
61
+ add_action( 'wp_ajax_' . self::BRIZY_GET_ACCOUNTS, array( $this, 'actionGetAccounts' ) );
62
+ add_action( 'wp_ajax_' . self::BRIZY_ADD_ACCOUNT, array( $this, 'actionAddAccount' ) );
63
+ add_action( 'wp_ajax_' . self::BRIZY_UPDATE_ACCOUNT, array( $this, 'actionUpdateAccount' ) );
64
+ add_action( 'wp_ajax_' . self::BRIZY_DELETE_ACCOUNT, array( $this, 'actionDeleteAccount' ) );
65
+ }
66
+
67
+
68
+ public function actionGetAccount() {
69
+ $this->verifyNonce( self::nonce );
70
+ if ( ! $this->param( 'id' ) ) {
71
+ $this->error( 400, 'Invalid account id' );
72
+ }
73
+ try {
74
+ $manager = new Brizy_Editor_Accounts_ServiceAccountManager( Brizy_Editor_Project::get() );
75
+ $account = $manager->getAccount( $this->param( 'id' ) );
76
+
77
+ if ( ! $account ) {
78
+ $this->error( 404, 'Account not found' );
79
+ }
80
+
81
+ $this->success( $account );
82
+ } catch ( Exception $e ) {
83
+ Brizy_Logger::instance()->critical( $e->getMessage(), array( $e ) );
84
+ $this->error( 500, $e->getMessage() );
85
+ }
86
+ }
87
+
88
+
89
+ public function actionGetAccounts() {
90
+ $this->verifyNonce( self::nonce );
91
+
92
+ $filter = array();
93
+
94
+ if ( $this->param( 'group' ) ) {
95
+ $filter['group'] = $this->param( 'group' );
96
+ }
97
+ if ( $this->param( 'service' ) ) {
98
+ $filter['service'] = $this->param( 'service' );
99
+ }
100
+
101
+ try {
102
+ $manager = new Brizy_Editor_Accounts_ServiceAccountManager( Brizy_Editor_Project::get() );
103
+ $accounts = $manager->getFilteredAccounts( $filter );
104
+ $this->success( $accounts );
105
+ } catch ( Exception $e ) {
106
+ Brizy_Logger::instance()->critical( $e->getMessage(), array( $e ) );
107
+ $this->error( 500, $e->getMessage() );
108
+ }
109
+ }
110
+
111
+ public function actionAddAccount() {
112
+ $this->verifyNonce( self::nonce );
113
+ try {
114
+ $manager = new Brizy_Editor_Accounts_ServiceAccountManager( Brizy_Editor_Project::get() );
115
+ $instance = Brizy_Editor_Accounts_AbstractAccount::createFromJson( json_decode( file_get_contents( 'php://input' ) ) );
116
+ $instance->validate();
117
+ $manager->addAccount( $instance );
118
+ $this->success( $instance );
119
+ } catch ( Exception $e ) {
120
+ Brizy_Logger::instance()->critical( $e->getMessage(), array( $e ) );
121
+ $this->error( 500, $e->getMessage() );
122
+ }
123
+ }
124
+
125
+ public function actionUpdateAccount() {
126
+ $this->verifyNonce( self::nonce );
127
+ try {
128
+ $manager = new Brizy_Editor_Accounts_ServiceAccountManager( Brizy_Editor_Project::get() );
129
+ $instance = Brizy_Editor_Accounts_AbstractAccount::createFromJson( json_decode( file_get_contents( 'php://input' ) ) );
130
+ $manager->updateAccount( $instance );
131
+ $this->success( $instance );
132
+ } catch ( Exception $e ) {
133
+ Brizy_Logger::instance()->critical( $e->getMessage(), array( $e ) );
134
+ $this->error( 500, $e->getMessage() );
135
+ }
136
+ }
137
+
138
+ public function actionDeleteAccount() {
139
+ $this->verifyNonce( self::nonce );
140
+ try {
141
+
142
+ if ( ! $this->param( 'id' ) ) {
143
+ $this->error( 400, 'Invalid account id' );
144
+ }
145
+
146
+ $manager = new Brizy_Editor_Accounts_ServiceAccountManager( Brizy_Editor_Project::get() );
147
+ $manager->deleteAccountById( $this->param( 'id' ) );
148
+ $this->success( null );
149
+ } catch ( Exception $e ) {
150
+ Brizy_Logger::instance()->critical( $e->getMessage(), array( $e ) );
151
+ $this->error( 500, $e->getMessage() );
152
+ }
153
+ }
154
+
155
+ }
editor/accounts/recaptcha-account.php ADDED
@@ -0,0 +1,100 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Created by PhpStorm.
4
+ * User: alex
5
+ * Date: 11/26/18
6
+ * Time: 5:00 PM
7
+ */
8
+
9
+ class Brizy_Editor_Accounts_RecaptchaAccount extends Brizy_Editor_Accounts_AbstractAccount {
10
+
11
+ const SERVICE_NAME = 'recaptcha';
12
+
13
+ /**
14
+ * @return mixed
15
+ */
16
+ public function getGroup() {
17
+ return Brizy_Editor_Accounts_AbstractAccount::RECAPTCHA_GROUP;
18
+ }
19
+
20
+ /**
21
+ * @return mixed
22
+ */
23
+ public function getService() {
24
+ return self::SERVICE_NAME;
25
+ }
26
+
27
+ /**
28
+ * @param $data
29
+ *
30
+ * @return Brizy_Editor_Accounts_AbstractAccount
31
+ * @throws Exception
32
+ */
33
+ static public function createFromSerializedData( $data ) {
34
+
35
+ $data['group'] = Brizy_Editor_Accounts_AbstractAccount::RECAPTCHA_GROUP;
36
+ $data['service'] = self::SERVICE_NAME;
37
+
38
+ return Brizy_Editor_Accounts_AbstractAccount::createFromSerializedData( $data );
39
+ }
40
+
41
+ /**
42
+ * @param $json_obj
43
+ *
44
+ * @return Brizy_Editor_Accounts_AbstractAccount
45
+ * @throws Exception
46
+ */
47
+ public static function createFromJson( $json_obj ) {
48
+
49
+ if ( ! isset( $json_obj ) ) {
50
+ throw new Exception( 'Bad Request', 400 );
51
+ }
52
+
53
+ if ( is_object( $json_obj ) ) {
54
+ $json_obj->group = Brizy_Editor_Accounts_AbstractAccount::RECAPTCHA_GROUP;
55
+ $json_obj->service = self::SERVICE_NAME;
56
+
57
+ return Brizy_Editor_Accounts_AbstractAccount::createFromSerializedData( get_object_vars( $json_obj ) );
58
+ }
59
+
60
+ throw new Exception( 'Invalid json provided.' );
61
+ }
62
+
63
+ public function getSiteKey() {
64
+ return $this->get( 'sitekey' );
65
+ }
66
+
67
+ /**
68
+ * @throws Exception
69
+ */
70
+ public function validate() {
71
+
72
+ if ( ! isset( $_REQUEST['secretkey'] ) ) {
73
+ throw new Exception( 'Invalid secret provided' );
74
+ }
75
+
76
+ if ( ! isset( $_REQUEST['response'] ) ) {
77
+ throw new Exception( 'Invalid response provided' );
78
+ }
79
+
80
+ $http = new WP_Http();
81
+ $response = $http->post( 'https://www.google.com/recaptcha/api/siteverify', array(
82
+ 'body' => array(
83
+ 'secret' => $_REQUEST['secretkey'],
84
+ 'response' => $_REQUEST['response']
85
+ )
86
+ ) );
87
+
88
+ $body = wp_remote_retrieve_body( $response );
89
+
90
+ $responseJsonObject = json_decode( $body );
91
+
92
+ if ( ! is_object( $responseJsonObject ) || ! $responseJsonObject->success ) {
93
+ throw new Exception( "Unable to validate account" );
94
+ }
95
+
96
+ return true;
97
+ }
98
+
99
+
100
+ }
editor/accounts/service-account-manager.php CHANGED
@@ -32,38 +32,40 @@ class Brizy_Editor_Accounts_ServiceAccountManager {
32
  return $this->accounts;
33
  }
34
 
35
- /**
36
- * @param $service
37
- *
38
- * @return array
39
- */
40
- public function getAccountsByGroup( $group ) {
41
-
42
  $accounts = array();
43
- foreach ( $this->accounts as $account ) {
44
- if ( $account->getGroup() == $group ) {
45
- $accounts[] = $account;
 
46
  }
 
 
 
 
 
 
47
  }
48
 
49
  return $accounts;
50
  }
51
 
 
 
 
 
 
 
 
 
 
52
  /**
53
  * @param $service
54
  *
55
  * @return array
56
  */
57
  public function getAccountsByService( $service ) {
58
-
59
- $accounts = array();
60
- foreach ( $this->getAllAccounts() as $account ) {
61
- if ( $account->getService() == $service ) {
62
- $accounts[] = $account;
63
- }
64
- }
65
-
66
- return $accounts;
67
  }
68
 
69
  /**
@@ -102,14 +104,30 @@ class Brizy_Editor_Accounts_ServiceAccountManager {
102
  if ( $this->hasAccount( $account ) ) {
103
  return;
104
  }
 
105
  $this->accounts[] = $account;
106
  $this->updateStorage();
107
  }
108
 
109
  /**
110
- * @param Brizy_Editor_Accounts_Account $account
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
111
  */
112
- public function deleteAccount( Brizy_Editor_Accounts_Account $account ) {
113
 
114
  $this->deleteAccountById( $account->getId() );
115
  }
@@ -122,6 +140,7 @@ class Brizy_Editor_Accounts_ServiceAccountManager {
122
  foreach ( $this->getAllAccounts() as $key => $account ) {
123
  if ( $account->getId() == $accountId ) {
124
  unset( $this->accounts[ $key ] );
 
125
  }
126
  }
127
 
32
  return $this->accounts;
33
  }
34
 
35
+ public function getFilteredAccounts( $filter ) {
 
 
 
 
 
 
36
  $accounts = array();
37
+ foreach ( $this->getAllAccounts() as $account ) {
38
+
39
+ if ( isset( $filter['service'] ) && $filter['service'] != $account->getService() ) {
40
+ continue;
41
  }
42
+
43
+ if ( isset( $filter['group'] ) && $filter['group'] != $account->getGroup() ) {
44
+ continue;
45
+ }
46
+
47
+ $accounts[] = $account;
48
  }
49
 
50
  return $accounts;
51
  }
52
 
53
+ /**
54
+ * @param $group
55
+ *
56
+ * @return array
57
+ */
58
+ public function getAccountsByGroup( $group ) {
59
+ return $this->getFilteredAccounts( array( 'group' => $group ) );
60
+ }
61
+
62
  /**
63
  * @param $service
64
  *
65
  * @return array
66
  */
67
  public function getAccountsByService( $service ) {
68
+ return $this->getFilteredAccounts( array( 'service' => $service ) );
 
 
 
 
 
 
 
 
69
  }
70
 
71
  /**
104
  if ( $this->hasAccount( $account ) ) {
105
  return;
106
  }
107
+
108
  $this->accounts[] = $account;
109
  $this->updateStorage();
110
  }
111
 
112
  /**
113
+ * @param Brizy_Editor_Accounts_AbstractAccount $anAccount
114
+ */
115
+ public function updateAccount( Brizy_Editor_Accounts_AbstractAccount $anAccount ) {
116
+
117
+ foreach ( $this->getAllAccounts() as $index => $account ) {
118
+ if ( $account->getId() == $anAccount->getId() ) {
119
+ $this->accounts[ $index ] = $anAccount;
120
+ break;
121
+ }
122
+ }
123
+
124
+ $this->updateStorage();
125
+ }
126
+
127
+ /**
128
+ * @param Brizy_Editor_Accounts_AbstractAccount $account
129
  */
130
+ public function deleteAccount( Brizy_Editor_Accounts_AbstractAccount $account ) {
131
 
132
  $this->deleteAccountById( $account->getId() );
133
  }
140
  foreach ( $this->getAllAccounts() as $key => $account ) {
141
  if ( $account->getId() == $accountId ) {
142
  unset( $this->accounts[ $key ] );
143
+ break;
144
  }
145
  }
146
 
editor/accounts/social-account.php ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Created by PhpStorm.
4
+ * User: alex
5
+ * Date: 11/26/18
6
+ * Time: 5:00 PM
7
+ */
8
+
9
+ class Brizy_Editor_Accounts_SocialAccount extends Brizy_Editor_Accounts_Account {
10
+
11
+ /**
12
+ * @return mixed
13
+ */
14
+ public function getGroup() {
15
+ return Brizy_Editor_Accounts_AbstractAccount::SOCIAL_GROUP;
16
+ }
17
+
18
+ /**
19
+ * @param $data
20
+ *
21
+ * @return Brizy_Editor_Accounts_AbstractAccount
22
+ * @throws Exception
23
+ */
24
+ static public function createFromSerializedData( $data ) {
25
+
26
+ $data['group'] = Brizy_Editor_Accounts_AbstractAccount::SOCIAL_GROUP;
27
+
28
+ return Brizy_Editor_Accounts_AbstractAccount::createFromSerializedData( $data );
29
+ }
30
+
31
+ /**
32
+ * @param $json_obj
33
+ *
34
+ * @return Brizy_Editor_Accounts_AbstractAccount
35
+ * @throws Exception
36
+ */
37
+ public static function createFromJson( $json_obj ) {
38
+
39
+ if ( ! isset( $json_obj ) ) {
40
+ throw new Exception( 'Bad Request', 400 );
41
+ }
42
+
43
+ if ( is_object( $json_obj ) ) {
44
+
45
+ $json_obj->group = Brizy_Editor_Accounts_AbstractAccount::SOCIAL_GROUP;
46
+
47
+ return Brizy_Editor_Accounts_AbstractAccount::createFromSerializedData( get_object_vars( $json_obj ) );
48
+ }
49
+
50
+ throw new Exception( 'Invalid json provided.' );
51
+ }
52
+ }
editor/api.php CHANGED
@@ -418,6 +418,7 @@ class Brizy_Editor_API extends Brizy_Admin_AbstractApi {
418
 
419
  $result[] = (object) array(
420
  'ID' => $post->ID,
 
421
  'post_type' => $post->post_type,
422
  'post_type_label' => $wp_post_types[ $post->post_type ]->label,
423
  'title' => apply_filters( 'the_title', $post->post_title )
@@ -429,6 +430,18 @@ class Brizy_Editor_API extends Brizy_Admin_AbstractApi {
429
  return $result;
430
  }
431
 
 
 
 
 
 
 
 
 
 
 
 
 
432
  public function brizy_post_title_filter( $where, $wp_query = null ) {
433
 
434
  global $wpdb;
418
 
419
  $result[] = (object) array(
420
  'ID' => $post->ID,
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 )
430
  return $result;
431
  }
432
 
433
+ private function create_uid( $postId ) {
434
+
435
+ $uid = get_post_meta( $postId, 'brizy_post_uid', true );
436
+
437
+ if ( ! $uid ) {
438
+ $uid = md5( $postId . time() );
439
+ update_post_meta( $postId, 'brizy_post_uid', $uid );
440
+ }
441
+
442
+ return $uid;
443
+ }
444
+
445
  public function brizy_post_title_filter( $where, $wp_query = null ) {
446
 
447
  global $wpdb;
editor/asset/crop/cropper.php CHANGED
@@ -188,6 +188,10 @@ class Brizy_Editor_Asset_Crop_Cropper {
188
 
189
  $imageEditor = wp_get_image_editor( $source );
190
 
 
 
 
 
191
  parse_str( strtolower( $filter ), $output );
192
  $configuration = array();
193
  $configuration['format'] = pathinfo( basename( $source ), PATHINFO_EXTENSION );
188
 
189
  $imageEditor = wp_get_image_editor( $source );
190
 
191
+ if($imageEditor instanceof WP_Error) {
192
+ throw new Exception('No image editor returned');
193
+ }
194
+
195
  parse_str( strtolower( $filter ), $output );
196
  $configuration = array();
197
  $configuration['format'] = pathinfo( basename( $source ), PATHINFO_EXTENSION );
editor/asset/static-file.php CHANGED
@@ -50,7 +50,7 @@ abstract class Brizy_Editor_Asset_StaticFile {
50
  $dir_path = dirname( $asset_path );
51
 
52
  if ( ! file_exists( $dir_path ) ) {
53
- if ( ! mkdir( $dir_path, 0755, true ) && ! is_dir( $dir_path ) ) {
54
  throw new \RuntimeException( sprintf( 'Directory "%s" was not created', $dir_path ) );
55
  }
56
  }
50
  $dir_path = dirname( $asset_path );
51
 
52
  if ( ! file_exists( $dir_path ) ) {
53
+ if ( !file_exists( $dir_path ) && ! mkdir( $dir_path, 0755, true ) && ! is_dir( $dir_path ) ) {
54
  throw new \RuntimeException( sprintf( 'Directory "%s" was not created', $dir_path ) );
55
  }
56
  }
editor/asset/svg-asset-processor.php ADDED
@@ -0,0 +1,95 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+
4
+ class Brizy_Editor_Asset_SvgAssetProcessor implements Brizy_Editor_Content_ProcessorInterface {
5
+
6
+
7
+ /**
8
+ * Find and cache all assets and replace the urls with new local ones.
9
+ *
10
+ * @param string $content
11
+ * @param Brizy_Content_Context $context
12
+ *
13
+ * @return mixed|string
14
+ */
15
+ public function process( $content, Brizy_Content_Context $context ) {
16
+
17
+ $content = $this->process_external_asset_urls( $content, $context );
18
+
19
+ return $content;
20
+ }
21
+
22
+ /**
23
+ * @param string $content
24
+ * @param Brizy_Content_Context $context
25
+ *
26
+ * @return mixed
27
+ */
28
+ public function process_external_asset_urls( $content, Brizy_Content_Context $context ) {
29
+
30
+ $site_url = str_replace( array( 'http://', 'https://' ), '', home_url() );
31
+ $site_url = str_replace( array( '/', '.' ), array( '\/', '\.' ), $site_url );
32
+
33
+ //preg_match_all( '/' . $site_url . '\/?(\?' . Brizy_Public_CropProxy::ENDPOINT . '=(.[^"\',\s)]*))/im', $content, $matches );
34
+ preg_match_all( '/(http|https):\/\/' . $site_url . '\/?(\?brizy_attachment=(.[^"\',\s)]*))/im', $content, $matches );
35
+
36
+ if ( ! isset( $matches[0] ) || count( $matches[0] ) == 0 ) {
37
+ return $content;
38
+ }
39
+
40
+ foreach ( $matches[0] as $i => $url ) {
41
+
42
+ $parsed_url = parse_url( html_entity_decode( $matches[0][ $i ] ) );
43
+
44
+ if ( ! isset( $parsed_url['query'] ) ) {
45
+ continue;
46
+ }
47
+
48
+ parse_str( $parsed_url['query'], $params );
49
+
50
+ if ( ! isset( $params['brizy_attachment'] ) ) {
51
+ continue;
52
+ }
53
+
54
+ $media_path = $this->get_attachment_file_by_uid( $params['brizy_attachment'] );
55
+
56
+ if ( ! $media_path ) {
57
+ return $content;
58
+ }
59
+ $content = str_replace( $matches[0][ $i ], $media_path, $content );
60
+ }
61
+
62
+ return $content;
63
+ }
64
+
65
+ private function get_attachment_file_by_uid( $attachmentUId ) {
66
+
67
+
68
+ if ( ! is_numeric( $attachmentUId ) ) {
69
+ global $wpdb;
70
+
71
+ $posts_table = $wpdb->posts;
72
+ $meta_table = $wpdb->postmeta;
73
+ $attachment = $wpdb->get_var( $wpdb->prepare(
74
+ "SELECT
75
+ {$posts_table}.ID
76
+ FROM {$posts_table}
77
+ INNER JOIN {$meta_table} ON ( {$posts_table}.ID = {$meta_table}.post_id )
78
+ WHERE
79
+ ( ({$meta_table}.meta_key = 'brizy_attachment_uid' OR {$meta_table}.meta_key = 'brizy_post_uid')
80
+ AND {$meta_table}.meta_value = %s )
81
+ AND {$posts_table}.post_type = 'attachment'
82
+ GROUP BY {$posts_table}.ID
83
+ ORDER BY {$posts_table}.post_date DESC",
84
+ $attachmentUId
85
+ ) );
86
+
87
+
88
+ if ( ! $attachment ) {
89
+ return;
90
+ }
91
+ }
92
+
93
+ return wp_get_attachment_url( (int)$attachment );
94
+ }
95
+ }
editor/auto-save-aware.php CHANGED
@@ -86,10 +86,11 @@ trait Brizy_Editor_AutoSaveAware {
86
  $user_id = get_current_user_id();
87
 
88
  $wpdb->query( $wpdb->prepare( "
89
- DELETE FROM {$wpdb->posts}
90
- WHERE post_author = %d and
91
- post_parent = %d and
92
- post_type = 'revision' and
93
- post_name LIKE %s", $user_id, $postParentId, "{$postParentId}-autosave%" ) );
 
94
  }
95
  }
86
  $user_id = get_current_user_id();
87
 
88
  $wpdb->query( $wpdb->prepare( "
89
+ DELETE p, pm FROM {$wpdb->posts} p
90
+ INNER JOIN {$wpdb->postmeta} pm ON pm.post_id = p.id
91
+ WHERE p.post_author = %d and
92
+ p.post_parent = %d and
93
+ p.post_type = 'revision' and
94
+ p.post_name LIKE %s", $user_id, $postParentId, "{$postParentId}-autosave%" ) );
95
  }
96
  }
editor/editor/editor.php CHANGED
@@ -170,10 +170,10 @@ class Brizy_Editor_Editor_Editor {
170
  'setFeaturedImageFocalPoint' => Brizy_Editor_API::AJAX_SET_FEATURED_IMAGE_FOCAL_POINT,
171
  'removeFeaturedImage' => Brizy_Editor_API::AJAX_REMOVE_FEATURED_IMAGE,
172
 
173
- 'getForm' => Brizy_Editor_Forms_Api::AJAX_GET_FORM,
174
- 'createForm' => Brizy_Editor_Forms_Api::AJAX_CREATE_FORM,
175
- 'deleteForm' => Brizy_Editor_Forms_Api::AJAX_DELETE_FORM,
176
-
177
  'getIntegration' => Brizy_Editor_Forms_Api::AJAX_GET_INTEGRATION,
178
  'createIntegration' => Brizy_Editor_Forms_Api::AJAX_CREATE_INTEGRATION,
179
  'updateIntegration' => Brizy_Editor_Forms_Api::AJAX_UPDATE_INTEGRATION,
@@ -181,7 +181,16 @@ class Brizy_Editor_Editor_Editor {
181
 
182
  'createFont' => Brizy_Admin_Fonts_Api::AJAX_CREATE_FONT_ACTION,
183
  'deleteFont' => Brizy_Admin_Fonts_Api::AJAX_DELETE_FONT_ACTION,
184
- 'getFonts' => Brizy_Admin_Fonts_Api::AJAX_GET_FONTS_ACTION
 
 
 
 
 
 
 
 
 
185
  ),
186
  'plugins' => array(
187
  'dummy' => true,
@@ -197,12 +206,21 @@ class Brizy_Editor_Editor_Editor {
197
  'applications' => array(
198
  'form' => array(
199
  'submitUrl' => '{{brizy_dc_ajax_url}}?action=' . Brizy_Editor_Forms_Api::AJAX_SUBMIT_FORM
200
- )
 
 
 
201
  ),
202
  'branding' => array( 'brizy' => __bt( 'brizy', 'Brizy' ) ),
203
  'editorVersion' => BRIZY_EDITOR_VERSION
204
  );
205
 
 
 
 
 
 
 
206
  return self::$config[ $cachePostId ] = apply_filters( 'brizy_editor_config', $config );
207
  }
208
 
@@ -517,6 +535,73 @@ class Brizy_Editor_Editor_Editor {
517
  );
518
  }
519
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
520
  /**
521
  * @return array
522
  */
@@ -628,8 +713,15 @@ class Brizy_Editor_Editor_Editor {
628
  * @throws Exception
629
  */
630
  private function getTexts() {
631
- // $brizy_public_editor_build_texts = "\Brizy_Public_EditorBuild_" . ( BRIZY_DEVELOPMENT ? "Dev" : BRIZY_EDITOR_VERSION ) . "_Texts";
632
- $brizy_public_editor_build_texts = "\Brizy_Public_EditorBuild_Texts";
 
 
 
 
 
 
 
633
 
634
  if ( ! class_exists( $brizy_public_editor_build_texts ) ) {
635
  if ( BRIZY_DEVELOPMENT ) {
170
  'setFeaturedImageFocalPoint' => Brizy_Editor_API::AJAX_SET_FEATURED_IMAGE_FOCAL_POINT,
171
  'removeFeaturedImage' => Brizy_Editor_API::AJAX_REMOVE_FEATURED_IMAGE,
172
 
173
+ 'getForm' => Brizy_Editor_Forms_Api::AJAX_GET_FORM,
174
+ 'createForm' => Brizy_Editor_Forms_Api::AJAX_CREATE_FORM,
175
+ 'updateForm' => Brizy_Editor_Forms_Api::AJAX_UPDATE_FORM,
176
+ 'deleteForm' => Brizy_Editor_Forms_Api::AJAX_DELETE_FORM,
177
  'getIntegration' => Brizy_Editor_Forms_Api::AJAX_GET_INTEGRATION,
178
  'createIntegration' => Brizy_Editor_Forms_Api::AJAX_CREATE_INTEGRATION,
179
  'updateIntegration' => Brizy_Editor_Forms_Api::AJAX_UPDATE_INTEGRATION,
181
 
182
  'createFont' => Brizy_Admin_Fonts_Api::AJAX_CREATE_FONT_ACTION,
183
  'deleteFont' => Brizy_Admin_Fonts_Api::AJAX_DELETE_FONT_ACTION,
184
+ 'getFonts' => Brizy_Admin_Fonts_Api::AJAX_GET_FONTS_ACTION,
185
+
186
+ 'getAccount' => Brizy_Editor_Accounts_Api::BRIZY_GET_ACCOUNT,
187
+ 'getAccounts' => Brizy_Editor_Accounts_Api::BRIZY_GET_ACCOUNTS,
188
+ 'addAccount' => Brizy_Editor_Accounts_Api::BRIZY_ADD_ACCOUNT,
189
+ 'updateAccount' => Brizy_Editor_Accounts_Api::BRIZY_UPDATE_ACCOUNT,
190
+ 'deleteAccount' => Brizy_Editor_Accounts_Api::BRIZY_DELETE_ACCOUNT,
191
+
192
+ 'validateRecaptchaAccount' => Brizy_Editor_Forms_Api::AJAX_VALIDATE_RECAPTCHA_ACCOUNT,
193
+
194
  ),
195
  'plugins' => array(
196
  'dummy' => true,
206
  'applications' => array(
207
  'form' => array(
208
  'submitUrl' => '{{brizy_dc_ajax_url}}?action=' . Brizy_Editor_Forms_Api::AJAX_SUBMIT_FORM
209
+ ),
210
+ ),
211
+ 'server' => array(
212
+ 'maxUploadSize' => $this->fileUploadMaxSize()
213
  ),
214
  'branding' => array( 'brizy' => __bt( 'brizy', 'Brizy' ) ),
215
  'editorVersion' => BRIZY_EDITOR_VERSION
216
  );
217
 
218
+ $manager = new Brizy_Editor_Accounts_ServiceAccountManager( Brizy_Editor_Project::get() );
219
+
220
+ $config = $this->addRecaptchaAccounts( $manager, $config );
221
+
222
+ $config = $this->addSocialAccounts( $manager, $config );
223
+
224
  return self::$config[ $cachePostId ] = apply_filters( 'brizy_editor_config', $config );
225
  }
226
 
535
  );
536
  }
537
 
538
+ /**
539
+ * @param Brizy_Editor_Accounts_ServiceAccountManager $manager
540
+ * @param array $config
541
+ *
542
+ * @return array
543
+ */
544
+ private function addRecaptchaAccounts( Brizy_Editor_Accounts_ServiceAccountManager $manager, array $config ) {
545
+ $accounts = $manager->getAccountsByGroup( Brizy_Editor_Accounts_AbstractAccount::RECAPTCHA_GROUP );
546
+
547
+ if ( isset( $accounts[0] ) && $accounts[0] instanceof Brizy_Editor_Accounts_RecaptchaAccount ) {
548
+ $config['applications']['form']['recaptcha']['siteKey'] = $accounts[0]->getSiteKey();
549
+ }
550
+
551
+ return $config;
552
+ }
553
+
554
+ /**
555
+ * @param Brizy_Editor_Accounts_ServiceAccountManager $manager
556
+ * @param array $config
557
+ *
558
+ * @return array
559
+ */
560
+ private function addSocialAccounts( Brizy_Editor_Accounts_ServiceAccountManager $manager, array $config ) {
561
+ $accounts = $manager->getAccountsByGroup( Brizy_Editor_Accounts_AbstractAccount::SOCIAL_GROUP );
562
+
563
+ foreach ( $accounts as $account ) {
564
+ if ( isset( $account ) && $account instanceof Brizy_Editor_Accounts_SocialAccount ) {
565
+ $config['applications'][ $account->getGroup() ][] = $account->convertToOptionValue();
566
+ }
567
+ }
568
+
569
+ return $config;
570
+ }
571
+
572
+
573
+ private function fileUploadMaxSize() {
574
+ static $max_size = - 1;
575
+
576
+ if ( $max_size < 0 ) {
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
+
591
+ return $max_size;
592
+ }
593
+
594
+ private function parseSize( $size ) {
595
+ $unit = preg_replace( '/[^bkmgtpezy]/i', '', $size ); // Remove the non-unit characters from the size.
596
+ $size = preg_replace( '/[^0-9\.]/', '', $size ); // Remove the non-numeric characters from the size.
597
+ if ( $unit ) {
598
+ // Find the position of the unit in the ordered string which is the power of magnitude to multiply a kilobyte by.
599
+ return round( $size * pow( 1024, stripos( 'bkmgtpezy', $unit[0] ) ) );
600
+ } else {
601
+ return round( $size );
602
+ }
603
+ }
604
+
605
  /**
606
  * @return array
607
  */
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 = '';
720
+ foreach ( explode( '-', BRIZY_EDITOR_VERSION ) as $tmp ) {
721
+ $version .= ucfirst( $tmp );
722
+ }
723
+ $brizy_public_editor_build_texts = '\Brizy_Public_EditorBuild_' . $version . '_Texts';
724
+ }
725
 
726
  if ( ! class_exists( $brizy_public_editor_build_texts ) ) {
727
  if ( BRIZY_DEVELOPMENT ) {
editor/forms/abstract-integration.php CHANGED
@@ -23,6 +23,14 @@ abstract class Brizy_Editor_Forms_AbstractIntegration extends Brizy_Admin_Serial
23
  $this->id = $id;
24
  }
25
 
 
 
 
 
 
 
 
 
26
  /**
27
  * @return bool
28
  */
@@ -69,10 +77,26 @@ abstract class Brizy_Editor_Forms_AbstractIntegration extends Brizy_Admin_Serial
69
  public static function createInstanceFromJson( $json_obj ) {
70
  $instance = null;
71
  if ( is_object( $json_obj ) ) {
72
- if ( ( isset( $json_obj->subject ) && isset( $json_obj->emailTo ) ) || $json_obj->id == 'wordpress' ) {
73
- $instance = Brizy_Editor_Forms_WordpressIntegration::createFromJson( $json_obj );
74
- } else {
75
- $instance = apply_filters( 'brizy_create_integration_from_json', $json_obj );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
76
  }
77
 
78
  if ( $instance ) {
@@ -87,20 +111,38 @@ abstract class Brizy_Editor_Forms_AbstractIntegration extends Brizy_Admin_Serial
87
  /**
88
  * @param $data
89
  *
 
 
90
  * @return Brizy_Editor_Forms_ServiceIntegration|Brizy_Editor_Forms_WordpressIntegration|void|null
91
  */
92
- public static function createFromSerializedData( $data ) {
93
- $instance = null;
94
  if ( $data instanceof Brizy_Editor_Forms_WordpressIntegration ||
95
  $data instanceof Brizy_Editor_Forms_ServiceIntegration ) {
96
  return $data;
97
  }
98
 
99
  if ( is_array( $data ) ) {
100
- if ( ( isset( $data['subject'] ) && isset( $data['emailTo'] ) ) || $data['id'] == 'wordpress' ) {
101
- $instance = Brizy_Editor_Forms_WordpressIntegration::createFromSerializedData( $data );
102
- } else {
103
- $instance = Brizy_Editor_Forms_ServiceIntegration::createFromSerializedData( $data );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
104
  }
105
 
106
  if ( $instance ) {
23
  $this->id = $id;
24
  }
25
 
26
+ /**
27
+ * @param Brizy_Editor_Forms_Form $form
28
+ * @param $fields
29
+ *
30
+ * @return mixed
31
+ */
32
+ abstract public function handleSubmit( Brizy_Editor_Forms_Form $form, $fields );
33
+
34
  /**
35
  * @return bool
36
  */
77
  public static function createInstanceFromJson( $json_obj ) {
78
  $instance = null;
79
  if ( is_object( $json_obj ) ) {
80
+
81
+ switch ( $json_obj->id ) {
82
+ case 'wordpress':
83
+ $instance = Brizy_Editor_Forms_WordpressIntegration::createFromJson( $json_obj );
84
+ break;
85
+ case 'smtp':
86
+ if ( class_exists( 'Brizy_Editor_Forms_SmtpIntegration' ) ) {
87
+ $instance = Brizy_Editor_Forms_SmtpIntegration::createFromJson( $json_obj );
88
+ }
89
+ break;
90
+ case 'gmail_smtp':
91
+ if ( class_exists( 'Brizy_Editor_Forms_GmailSmtpIntegration' ) ) {
92
+ $instance = Brizy_Editor_Forms_GmailSmtpIntegration::createFromJson( $json_obj );
93
+ }
94
+ break;
95
+ default:
96
+ if ( class_exists( 'Brizy_Editor_Forms_ServiceIntegration' ) ) {
97
+ $instance = Brizy_Editor_Forms_ServiceIntegration::createFromJson( $json_obj );
98
+ }
99
+ break;
100
  }
101
 
102
  if ( $instance ) {
111
  /**
112
  * @param $data
113
  *
114
+ * @param null $instance
115
+ *
116
  * @return Brizy_Editor_Forms_ServiceIntegration|Brizy_Editor_Forms_WordpressIntegration|void|null
117
  */
118
+ public static function createFromSerializedData( $data, $instance = null ) {
119
+
120
  if ( $data instanceof Brizy_Editor_Forms_WordpressIntegration ||
121
  $data instanceof Brizy_Editor_Forms_ServiceIntegration ) {
122
  return $data;
123
  }
124
 
125
  if ( is_array( $data ) ) {
126
+
127
+ switch ( $data['id'] ) {
128
+ case 'wordpress':
129
+ $instance = Brizy_Editor_Forms_WordpressIntegration::createFromSerializedData( $data, $instance );
130
+ break;
131
+ case 'smtp':
132
+ if ( class_exists( 'Brizy_Editor_Forms_SmtpIntegration' ) ) {
133
+ $instance = Brizy_Editor_Forms_SmtpIntegration::createFromSerializedData( $data );
134
+ }
135
+ break;
136
+ case 'gmail_smtp':
137
+ if ( class_exists( 'Brizy_Editor_Forms_GmailSmtpIntegration' ) ) {
138
+ $instance = Brizy_Editor_Forms_GmailSmtpIntegration::createFromSerializedData( $data );
139
+ }
140
+ break;
141
+ default:
142
+ if ( class_exists( 'Brizy_Editor_Forms_ServiceIntegration' ) ) {
143
+ $instance = Brizy_Editor_Forms_ServiceIntegration::createFromSerializedData( $data );
144
+ }
145
+ break;
146
  }
147
 
148
  if ( $instance ) {
editor/forms/api.php CHANGED
@@ -1,10 +1,16 @@
1
  <?php
2
 
3
 
 
 
 
 
 
4
  class Brizy_Editor_Forms_Api {
5
 
6
  const AJAX_GET_FORM = 'brizy_get_form';
7
  const AJAX_CREATE_FORM = 'brizy_create_form';
 
8
  const AJAX_DELETE_FORM = 'brizy_delete_form';
9
  const AJAX_SUBMIT_FORM = 'brizy_submit_form';
10
 
@@ -13,6 +19,12 @@ class Brizy_Editor_Forms_Api {
13
  const AJAX_UPDATE_INTEGRATION = 'brizy_update_integration';
14
  const AJAX_DELETE_INTEGRATION = 'brizy_delete_integration';
15
 
 
 
 
 
 
 
16
  const AJAX_AUTHENTICATION_CALLBACK = 'brizy_authentication_callback';
17
 
18
  /**
@@ -44,12 +56,15 @@ class Brizy_Editor_Forms_Api {
44
  if ( Brizy_Editor::is_user_allowed() ) {
45
  add_action( 'wp_ajax_' . self::AJAX_GET_FORM, array( $this, 'get_form' ) );
46
  add_action( 'wp_ajax_' . self::AJAX_CREATE_FORM, array( $this, 'create_form' ) );
 
47
  add_action( 'wp_ajax_' . self::AJAX_DELETE_FORM, array( $this, 'delete_form' ) );
48
 
49
  add_action( 'wp_ajax_' . self::AJAX_CREATE_INTEGRATION, array( $this, 'createIntegration' ) );
50
  add_action( 'wp_ajax_' . self::AJAX_GET_INTEGRATION, array( $this, 'getIntegration' ) );
51
  add_action( 'wp_ajax_' . self::AJAX_UPDATE_INTEGRATION, array( $this, 'updateIntegration' ) );
52
  add_action( 'wp_ajax_' . self::AJAX_DELETE_INTEGRATION, array( $this, 'deleteIntegration' ) );
 
 
53
  }
54
 
55
  add_action( 'wp_ajax_' . self::AJAX_SUBMIT_FORM, array( $this, 'submit_form' ) );
@@ -60,8 +75,8 @@ class Brizy_Editor_Forms_Api {
60
  wp_send_json_error( array( 'code' => $code, 'message' => $message ), $code );
61
  }
62
 
63
- protected function success( $data ) {
64
- wp_send_json_success( $data );
65
  }
66
 
67
  private function authorize() {
@@ -70,6 +85,7 @@ class Brizy_Editor_Forms_Api {
70
  }
71
  }
72
 
 
73
  public function get_form() {
74
  try {
75
  $this->authorize();
@@ -85,7 +101,7 @@ class Brizy_Editor_Forms_Api {
85
  $this->error( 404, 'Form not found' );
86
 
87
  } catch ( Exception $exception ) {
88
- Brizy_Logger::instance()->exception( $exception );
89
  $this->error( $exception->getCode(), $exception->getMessage() );
90
  exit;
91
  }
@@ -101,13 +117,52 @@ class Brizy_Editor_Forms_Api {
101
 
102
  if ( $validation_result === true ) {
103
  $manager->addForm( $instance );
104
- $this->success( $instance );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
105
  }
106
 
107
  $this->error( 400, $validation_result );
108
 
109
  } catch ( Exception $exception ) {
110
- Brizy_Logger::instance()->exception( $exception );
111
  $this->error( $exception->getCode(), $exception->getMessage() );
112
  exit;
113
  }
@@ -120,7 +175,7 @@ class Brizy_Editor_Forms_Api {
120
  $manager->deleteFormById( $_REQUEST['formId'] );
121
  $this->success( array() );
122
  } catch ( Exception $exception ) {
123
- Brizy_Logger::instance()->exception( $exception );
124
  $this->error( $exception->getCode(), $exception->getMessage() );
125
  exit;
126
  }
@@ -130,13 +185,13 @@ class Brizy_Editor_Forms_Api {
130
  try {
131
  $manager = new Brizy_Editor_Forms_FormManager( Brizy_Editor_Project::get() );
132
  /**
133
- * @var Brizy_Editor_FormsCompatibility fix_Form $form ;
134
  */
135
 
136
  $form = $manager->getForm( $_REQUEST['form_id'] );
137
 
138
  if ( ! $form ) {
139
- $this->error( 400, "Invalid form id" );
140
  }
141
 
142
  $fields = json_decode( stripslashes( $_REQUEST['data'] ) );
@@ -145,57 +200,54 @@ class Brizy_Editor_Forms_Api {
145
  $this->error( 400, "Invalid form data" );
146
  }
147
 
 
 
 
148
 
149
- $form = apply_filters( 'brizy_form', $form );
150
- $fields = apply_filters( 'brizy_form_submit_data', $fields, $form );
151
-
152
-
153
- foreach ( $form->getIntegrations() as $integration ) {
154
- if ( ! $integration->isCompleted() ) {
155
- continue;
156
  }
157
 
158
- try {
159
-
160
- if ( $integration instanceof Brizy_Editor_Forms_WordpressIntegration ) {
161
-
162
- $headers = array();
163
- $headers[] = 'Content-type: text/html; charset=UTF-8';
164
-
165
- $field_string = array();
166
- foreach ( $fields as $field ) {
167
- $field_string[] = "{$field->label}: " . esc_html( $field->value );
168
- }
169
 
170
- $email_body = implode( '<br>', $field_string );
171
 
172
- $headers = apply_filters( 'brizy_form_email_headers', $headers, $form, $fields );
173
- $email_body = apply_filters( 'brizy_form_email_body', $email_body, $form, $fields );
 
 
 
 
 
 
 
174
 
175
- if ( ! function_exists( 'wp_mail' ) ) {
176
- throw new Exception( 'Please check your wordpress configuration.' );
177
- }
178
 
179
- $result = wp_mail(
180
- $integration->getEmailTo(),
181
- $integration->getSubject(),
182
- $email_body,
183
- $headers
184
- );
185
 
186
- } else {
 
 
 
187
 
188
- /**
189
- * @var \BrizyForms\Service\Service $service ;
190
- */
191
- $service = \BrizyForms\ServiceFactory::getInstance( $integration->getId() );
192
 
193
- if ( ! ( $service instanceof \BrizyForms\Service\Service ) ) {
194
- $this->error( 400, "Invalid integration service" );
195
- }
196
 
197
- do_action( 'brizy_submit_form', $service, $form, $fields, $integration );
 
 
 
198
  }
 
199
  } catch ( Exception $e ) {
200
  Brizy_Logger::instance()->exception( $e );
201
  $this->error( 500, 'Member was not created.' );
@@ -205,13 +257,72 @@ class Brizy_Editor_Forms_Api {
205
  $this->success( 200 );
206
 
207
  } catch ( Exception $exception ) {
208
- Brizy_Logger::instance()->exception( $exception );
209
- $this->error( $exception->getCode(), $exception->getMessage() );
210
  exit;
211
  }
212
  }
213
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
214
  public function createIntegration() {
 
215
  $this->authorize();
216
  $manager = new Brizy_Editor_Forms_FormManager( Brizy_Editor_Project::get() );
217
 
@@ -221,18 +332,25 @@ class Brizy_Editor_Forms_Api {
221
  $this->error( 400, "Invalid form id" );
222
  }
223
 
224
- $integration = Brizy_Editor_Forms_AbstractIntegration::createInstanceFromJson( json_decode( file_get_contents( 'php://input' ) ) );
 
225
 
226
- if ( $form->getIntegration( $integration->getid() ) ) {
227
- $this->error( 400, "This integration is already created" );
228
- }
 
 
 
 
229
 
230
- $integration = apply_filters( 'brizy_create_integration', $integration, $form );
231
- $integration = apply_filters( 'brizy_add_integration_accounts', $integration, $form );
 
 
232
 
233
- if ( $form->addIntegration( $integration ) ) {
234
- $manager->addForm( $form );
235
- $this->success( $integration );
236
  }
237
 
238
  $this->error( 500, "Unable to create integration" );
@@ -257,7 +375,7 @@ class Brizy_Editor_Forms_Api {
257
 
258
  if ( $integration ) {
259
  $integration = apply_filters( 'brizy_add_integration_accounts', $integration, $form );
260
- $integration = apply_filters( 'brizy_get_integration', $integration, $form );
261
  $this->success( $integration );
262
  }
263
 
@@ -278,6 +396,7 @@ class Brizy_Editor_Forms_Api {
278
  $integration = Brizy_Editor_Forms_AbstractIntegration::createInstanceFromJson( json_decode( file_get_contents( 'php://input' ) ) );
279
 
280
  $integration = apply_filters( 'brizy_update_integration', $integration, $form );
 
281
 
282
  //------------------
283
 
1
  <?php
2
 
3
 
4
+ /**
5
+ * @todo: Implement Brizy_Admin_AbstractApi here
6
+ *
7
+ * Class Brizy_Editor_Forms_Api
8
+ */
9
  class Brizy_Editor_Forms_Api {
10
 
11
  const AJAX_GET_FORM = 'brizy_get_form';
12
  const AJAX_CREATE_FORM = 'brizy_create_form';
13
+ const AJAX_UPDATE_FORM = 'brizy_update_form';
14
  const AJAX_DELETE_FORM = 'brizy_delete_form';
15
  const AJAX_SUBMIT_FORM = 'brizy_submit_form';
16
 
19
  const AJAX_UPDATE_INTEGRATION = 'brizy_update_integration';
20
  const AJAX_DELETE_INTEGRATION = 'brizy_delete_integration';
21
 
22
+ const AJAX_SET_RECAPTCHA_ACCOUNT = 'brizy_set_recaptcha_account';
23
+ const AJAX_GET_RECAPTCHA_ACCOUNT = 'brizy_get_recaptcha_account';
24
+ const AJAX_DELETE_RECAPTCHA_ACCOUNT = 'brizy_delete_recaptcha_account';
25
+ const AJAX_VALIDATE_RECAPTCHA_ACCOUNT = 'brizy_validate_recaptcha_account';
26
+
27
+
28
  const AJAX_AUTHENTICATION_CALLBACK = 'brizy_authentication_callback';
29
 
30
  /**
56
  if ( Brizy_Editor::is_user_allowed() ) {
57
  add_action( 'wp_ajax_' . self::AJAX_GET_FORM, array( $this, 'get_form' ) );
58
  add_action( 'wp_ajax_' . self::AJAX_CREATE_FORM, array( $this, 'create_form' ) );
59
+ add_action( 'wp_ajax_' . self::AJAX_UPDATE_FORM, array( $this, 'update_form' ) );
60
  add_action( 'wp_ajax_' . self::AJAX_DELETE_FORM, array( $this, 'delete_form' ) );
61
 
62
  add_action( 'wp_ajax_' . self::AJAX_CREATE_INTEGRATION, array( $this, 'createIntegration' ) );
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' ) );
75
  wp_send_json_error( array( 'code' => $code, 'message' => $message ), $code );
76
  }
77
 
78
+ protected function success( $data, $code = 200 ) {
79
+ wp_send_json_success( $data, $code );
80
  }
81
 
82
  private function authorize() {
85
  }
86
  }
87
 
88
+
89
  public function get_form() {
90
  try {
91
  $this->authorize();
101
  $this->error( 404, 'Form not found' );
102
 
103
  } catch ( Exception $exception ) {
104
+ Brizy_Logger::instance()->critical( $exception->getMessage(), array( $exception ) );
105
  $this->error( $exception->getCode(), $exception->getMessage() );
106
  exit;
107
  }
117
 
118
  if ( $validation_result === true ) {
119
  $manager->addForm( $instance );
120
+ $this->success( $instance, 201 );
121
+ }
122
+
123
+ $this->error( 400, $validation_result );
124
+
125
+ } catch ( Exception $exception ) {
126
+ Brizy_Logger::instance()->critical( $exception->getMessage(), array( $exception ) );
127
+ $this->error( $exception->getCode(), $exception->getMessage() );
128
+ exit;
129
+ }
130
+ }
131
+
132
+ public function update_form() {
133
+ try {
134
+ $this->authorize();
135
+
136
+ $manager = new Brizy_Editor_Forms_FormManager( Brizy_Editor_Project::get() );
137
+
138
+ $form_json = json_decode( file_get_contents( 'php://input' ) );
139
+
140
+ if ( ! $form_json ) {
141
+ $this->error( 400, 'Invalid json object provided' );
142
+ }
143
+
144
+ if ( ! isset( $_REQUEST['formId'] ) ) {
145
+ $this->error( 400, 'Invalid form id provided' );
146
+ }
147
+
148
+ $form = $manager->getForm( $_REQUEST['formId'] );
149
+
150
+ if ( ! $form ) {
151
+ $this->error( 404, 'Form not found' );
152
+ }
153
+
154
+ $instance = Brizy_Editor_Forms_Form::updateFromJson( $form, $form_json );
155
+ $validation_result = $instance->validate();
156
+
157
+ if ( $validation_result === true ) {
158
+ $manager->addForm( $instance );
159
+ $this->success( $instance, 200 );
160
  }
161
 
162
  $this->error( 400, $validation_result );
163
 
164
  } catch ( Exception $exception ) {
165
+ Brizy_Logger::instance()->critical( $exception->getMessage(), array( $exception ) );
166
  $this->error( $exception->getCode(), $exception->getMessage() );
167
  exit;
168
  }
175
  $manager->deleteFormById( $_REQUEST['formId'] );
176
  $this->success( array() );
177
  } catch ( Exception $exception ) {
178
+ Brizy_Logger::instance()->critical( $exception->getMessage(), array( $exception ) );
179
  $this->error( $exception->getCode(), $exception->getMessage() );
180
  exit;
181
  }
185
  try {
186
  $manager = new Brizy_Editor_Forms_FormManager( Brizy_Editor_Project::get() );
187
  /**
188
+ * @var Brizy_Editor_Forms_Form $form ;
189
  */
190
 
191
  $form = $manager->getForm( $_REQUEST['form_id'] );
192
 
193
  if ( ! $form ) {
194
+ $this->error( 404, "Form not found" );
195
  }
196
 
197
  $fields = json_decode( stripslashes( $_REQUEST['data'] ) );
200
  $this->error( 400, "Invalid form data" );
201
  }
202
 
203
+ // validtate recaptha response if exists
204
+ $accountManager = new Brizy_Editor_Accounts_ServiceAccountManager( Brizy_Editor_Project::get() );
205
+ $recaptchaAccounts = $accountManager->getAccountsByGroup( Brizy_Editor_Accounts_AbstractAccount::RECAPTCHA_GROUP );
206
 
207
+ if ( count( $recaptchaAccounts ) > 0 ) {
208
+ $recaptchaField = null;
209
+ foreach ( $fields as $field ) {
210
+ if ( $field->name == 'g-recaptcha-response' ) {
211
+ $recaptchaField = $field;
212
+ }
 
213
  }
214
 
215
+ if ( ! $recaptchaField ) {
216
+ Brizy_Logger::instance()->error( "The submitted data is invalid." );
217
+ $this->error( 400, "The submitted data is invalid." );
218
+ }
 
 
 
 
 
 
 
219
 
220
+ $recaptchaAccount = $recaptchaAccounts[0];
221
 
222
+ $http = new WP_Http();
223
+ $array = array(
224
+ 'secret' => $recaptchaAccount->getSecretKey(),
225
+ 'response' => $recaptchaField->value
226
+ );
227
+ $response = $http->post( 'https://www.google.com/recaptcha/api/siteverify', array(
228
+ 'body' => $array
229
+ )
230
+ );
231
 
232
+ $body = wp_remote_retrieve_body( $response );
 
 
233
 
234
+ $responseJsonObject = json_decode( $body );
 
 
 
 
 
235
 
236
+ if ( ! is_object( $responseJsonObject ) || ! $responseJsonObject->success ) {
237
+ $this->error( 400, "Unable to validation request" );
238
+ }
239
+ }
240
 
241
+ $form = apply_filters( 'brizy_form', $form );
242
+ $fields = apply_filters( 'brizy_form_submit_data', $fields, $form );
 
 
243
 
 
 
 
244
 
245
+ foreach ( $form->getIntegrations() as $integration ) {
246
+ try {
247
+ if ( ! $integration->isCompleted() ) {
248
+ continue;
249
  }
250
+ $integration->handleSubmit( $form, $fields );
251
  } catch ( Exception $e ) {
252
  Brizy_Logger::instance()->exception( $e );
253
  $this->error( 500, 'Member was not created.' );
257
  $this->success( 200 );
258
 
259
  } catch ( Exception $exception ) {
260
+ Brizy_Logger::instance()->critical( $exception->getMessage(), array( $exception ) );
261
+ $this->error( 400, $exception->getMessage() );
262
  exit;
263
  }
264
  }
265
 
266
+ public function handleFileTypeFields( $fields, $form ) {
267
+
268
+ foreach ( $fields as $field ) {
269
+ if ( $field->type == 'FileUpload' ) {
270
+ $uFile = $_FILES[ $field->name ];
271
+
272
+ foreach ( $_FILES[ $field->name ]['name'] as $index => $value ) {
273
+ $uFile = array(
274
+ 'name' => $_FILES[ $field->name ]['name'][ $index ],
275
+ 'type' => $_FILES[ $field->name ]['type'][ $index ],
276
+ 'tmp_name' => $_FILES[ $field->name ]['tmp_name'][ $index ],
277
+ 'error' => $_FILES[ $field->name ]['error'][ $index ],
278
+ 'size' => $_FILES[ $field->name ]['size'][ $index ]
279
+ );
280
+
281
+ $uploadOverrides = array( 'test_form' => false );
282
+
283
+ $file = wp_handle_upload( $uFile, $uploadOverrides );
284
+
285
+ if ( ! $file || isset( $file['error'] ) ) {
286
+ Brizy_Logger::instance()->error( 'Failed to handle upload', $fields );
287
+ throw new Exception( 'Failed to handle upload' );
288
+ }
289
+
290
+ // create attachment
291
+ $wp_upload_dir = wp_upload_dir();
292
+ $attachment = array(
293
+ 'guid' => $wp_upload_dir['url'] . '/' . basename( $file['file'] ),
294
+ 'post_mime_type' => $file['type'],
295
+ 'post_title' => preg_replace( '/\.[^.]+$/', '', basename( $file['file'] ) ),
296
+ 'post_content' => '',
297
+ 'post_status' => 'inherit'
298
+ );
299
+
300
+ $attach_id = wp_insert_attachment( $attachment, $file['file'] );
301
+
302
+ if ( $attach_id instanceof WP_Error ) {
303
+ Brizy_Logger::instance()->critical( 'Failed to handle upload', array( $attach_id ) );
304
+ throw new Exception( 'Failed to handle upload' );
305
+ }
306
+
307
+ update_post_meta( $attach_id, 'brizy-form-upload', 1 );
308
+
309
+ // Make sure that this file is included, as wp_generate_attachment_metadata() depends on it.
310
+ require_once( ABSPATH . 'wp-admin/includes/image.php' );
311
+
312
+ // Generate the metadata for the attachment, and update the database record.
313
+ $attach_data = wp_generate_attachment_metadata( $attach_id, $file['file'] );
314
+ wp_update_attachment_metadata( $attach_id, $attach_data );
315
+
316
+ $field->value = $file['url'];
317
+ }
318
+ }
319
+ }
320
+
321
+ return $fields;
322
+ }
323
+
324
  public function createIntegration() {
325
+
326
  $this->authorize();
327
  $manager = new Brizy_Editor_Forms_FormManager( Brizy_Editor_Project::get() );
328
 
332
  $this->error( 400, "Invalid form id" );
333
  }
334
 
335
+ try {
336
+ $integration = Brizy_Editor_Forms_AbstractIntegration::createInstanceFromJson( json_decode( file_get_contents( 'php://input' ) ) );
337
 
338
+ if ( $form->getIntegration( $integration->getid() ) ) {
339
+ $this->error( 400, "This integration is already created" );
340
+ }
341
+
342
+ $integration = apply_filters( 'brizy_create_integration', $integration, $form );
343
+ $integration = apply_filters( 'brizy_prepare_integration', $integration, $form );
344
+ $integration = apply_filters( 'brizy_add_integration_accounts', $integration, $form );
345
 
346
+ if ( $form->addIntegration( $integration ) ) {
347
+ $manager->addForm( $form );
348
+ $this->success( $integration );
349
+ }
350
 
351
+ } catch ( Exception $exception ) {
352
+ Brizy_Logger::instance()->critical( $exception->getMessage(), array( $exception ) );
353
+ $this->error( 400, $exception->getMessage() );
354
  }
355
 
356
  $this->error( 500, "Unable to create integration" );
375
 
376
  if ( $integration ) {
377
  $integration = apply_filters( 'brizy_add_integration_accounts', $integration, $form );
378
+ $integration = apply_filters( 'brizy_prepare_integration', $integration, $form );
379
  $this->success( $integration );
380
  }
381
 
396
  $integration = Brizy_Editor_Forms_AbstractIntegration::createInstanceFromJson( json_decode( file_get_contents( 'php://input' ) ) );
397
 
398
  $integration = apply_filters( 'brizy_update_integration', $integration, $form );
399
+ $integration = apply_filters( 'brizy_prepare_integration', $integration, $form );
400
 
401
  //------------------
402
 
editor/forms/dynamic-props-aware.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
 
3
 
4
- trait Brizy_Editor_Forms_DynamicPropsAware {
5
  /**
6
  * @var string[]
7
  */
@@ -19,7 +19,9 @@ trait Brizy_Editor_Forms_DynamicPropsAware {
19
  $method = substr( $name, 0, 3 );
20
  $key = substr( $name, 3 );
21
 
22
- if(empty($key)) throw new Exception('Invalid key. You method must look like this: setKey();');
 
 
23
 
24
  switch ( $method ) {
25
  case 'set':
1
  <?php
2
 
3
 
4
+ trait Brizy_Editor_Forms_DynamicPropsAware {
5
  /**
6
  * @var string[]
7
  */
19
  $method = substr( $name, 0, 3 );
20
  $key = substr( $name, 3 );
21
 
22
+ if ( empty( $key ) ) {
23
+ throw new Exception( 'Invalid key. You method must look like this: setKey();' );
24
+ }
25
 
26
  switch ( $method ) {
27
  case 'set':
editor/forms/folder.php ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+
4
+ class Brizy_Editor_Forms_Folder extends Brizy_Admin_Serializable {
5
+
6
+
7
+ use Brizy_Editor_Forms_DynamicPropsAware;
8
+
9
+ /**
10
+ * Brizy_Editor_Forms_Folder constructor.
11
+ *
12
+ * @param \BrizyForms\Model\Folder|null $folder
13
+ */
14
+ public function __construct( \BrizyForms\Model\Field $folder = null ) {
15
+ $this->data = array();
16
+ if ( $folder ) {
17
+ $this->data = array( 'id' => $folder->getId(), 'name' => $folder->getName() );
18
+ }
19
+ }
20
+
21
+ /**
22
+ * @return string
23
+ */
24
+ public function serialize() {
25
+ return serialize( $this->jsonSerialize() );
26
+ }
27
+
28
+ public function unserialize( $serialized ) {
29
+ $this->data = unserialize( $serialized );
30
+ }
31
+
32
+ public function jsonSerialize() {
33
+ return $this->data;
34
+ }
35
+
36
+ public function convertToOptionValue() {
37
+ return $this->data;
38
+ }
39
+
40
+ static public function createFromSerializedData( $data ) {
41
+ $instance = new self();
42
+
43
+ foreach ( $data as $key => $val ) {
44
+ $instance->set( $key, $val );
45
+ }
46
+
47
+ return $instance;
48
+ }
49
+
50
+ public static function createFromJson( $json_obj ) {
51
+
52
+ if ( ! isset( $json_obj ) ) {
53
+ throw new Exception( 'Bad Request', 400 );
54
+ }
55
+
56
+ if ( is_object( $json_obj ) ) {
57
+ return self::createFromSerializedData( get_object_vars( $json_obj ) );
58
+ }
59
+
60
+ return new self();
61
+ }
62
+
63
+ }
editor/forms/form.php CHANGED
@@ -7,12 +7,21 @@ class Brizy_Editor_Forms_Form extends Brizy_Admin_Serializable {
7
  */
8
  protected $id;
9
 
10
-
11
  /**
12
  * @var Brizy_Editor_Forms_AbstractIntegration[]
13
  */
14
  protected $integrations = array();
15
 
 
 
 
 
 
 
 
 
 
 
16
  /**
17
  * @return string
18
  */
@@ -28,18 +37,30 @@ class Brizy_Editor_Forms_Form extends Brizy_Admin_Serializable {
28
  return self::createFromSerializedData( $vars );
29
  }
30
 
 
 
 
31
  public function jsonSerialize() {
32
  $get_object_vars = array(
33
- 'id' => $this->id,
34
- 'integrations' => $this->integrations
 
 
35
  );
36
 
 
 
 
 
37
  return $get_object_vars;
38
  }
39
 
40
  public function convertToOptionValue() {
41
  $get_object_vars = array(
42
- 'id' => $this->id,
 
 
 
43
  );
44
 
45
  foreach ( $this->integrations as $integration ) {
@@ -53,6 +74,9 @@ class Brizy_Editor_Forms_Form extends Brizy_Admin_Serializable {
53
  $instance = new self();
54
  $instance->id = $data['id'];
55
 
 
 
 
56
  foreach ( $data['integrations'] as $integration ) {
57
  $brizy_editor_forms_wordpress_integration = Brizy_Editor_Forms_AbstractIntegration::createFromSerializedData( $integration );
58
 
@@ -90,7 +114,7 @@ class Brizy_Editor_Forms_Form extends Brizy_Admin_Serializable {
90
  * @throws Exception
91
  */
92
  public static function createFromJson( $json_obj ) {
93
- $instance = new self();
94
 
95
  if ( ! isset( $json_obj ) ) {
96
  throw new Exception( 'Bad Request', 400 );
@@ -98,22 +122,48 @@ class Brizy_Editor_Forms_Form extends Brizy_Admin_Serializable {
98
 
99
  if ( is_object( $json_obj ) ) {
100
 
101
- $instance->setId( $json_obj->id );
102
 
103
  // add uncompleted wordpress integration
104
  $current_user = wp_get_current_user();
105
  $an_integration = new Brizy_Editor_Forms_WordpressIntegration();
106
  $an_integration->setEmailTo( $current_user->user_email );
107
 
108
- $instance->addIntegration( $an_integration );
109
 
110
  foreach ( (array) $json_obj->integrations as $integration ) {
111
  if ( is_object( $integration ) ) {
112
- $instance->addIntegration( Brizy_Editor_Forms_AbstractIntegration::createInstanceFromJson( $integration ) );
113
  }
114
  }
115
  }
116
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
117
  return $instance;
118
  }
119
 
@@ -132,6 +182,10 @@ class Brizy_Editor_Forms_Form extends Brizy_Admin_Serializable {
132
  $errors['id'] = 'Invalid form id';
133
  }
134
 
 
 
 
 
135
  if ( count( $errors ) ) {
136
  return $errors;
137
  }
@@ -216,4 +270,56 @@ class Brizy_Editor_Forms_Form extends Brizy_Admin_Serializable {
216
  return false;
217
  }
218
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
219
  }
7
  */
8
  protected $id;
9
 
 
10
  /**
11
  * @var Brizy_Editor_Forms_AbstractIntegration[]
12
  */
13
  protected $integrations = array();
14
 
15
+ /**
16
+ * @var bool
17
+ */
18
+ protected $hasEmailTemplate = false;
19
+
20
+ /**
21
+ * @var string
22
+ */
23
+ protected $emailTemplate;
24
+
25
  /**
26
  * @return string
27
  */
37
  return self::createFromSerializedData( $vars );
38
  }
39
 
40
+ /**
41
+ * @return array|mixed
42
+ */
43
  public function jsonSerialize() {
44
  $get_object_vars = array(
45
+ 'id' => $this->id,
46
+ 'hasEmailTemplate' => $this->hasEmailTemplate(),
47
+ 'emailTemplate' => $this->getEmailTemplate(),
48
+ 'integrations' => array()
49
  );
50
 
51
+ foreach ( $this->integrations as $integration ) {
52
+ $get_object_vars['integrations'][] = $integration->convertToOptionValue();
53
+ }
54
+
55
  return $get_object_vars;
56
  }
57
 
58
  public function convertToOptionValue() {
59
  $get_object_vars = array(
60
+ 'id' => $this->id,
61
+ 'hasEmailTemplate' => $this->hasEmailTemplate(),
62
+ 'emailTemplate' => $this->getEmailTemplate(),
63
+ 'integrations' => array()
64
  );
65
 
66
  foreach ( $this->integrations as $integration ) {
74
  $instance = new self();
75
  $instance->id = $data['id'];
76
 
77
+ $instance->hasEmailTemplate = $data['hasEmailTemplate'];
78
+ $instance->emailTemplate = $data['emailTemplate'];
79
+
80
  foreach ( $data['integrations'] as $integration ) {
81
  $brizy_editor_forms_wordpress_integration = Brizy_Editor_Forms_AbstractIntegration::createFromSerializedData( $integration );
82
 
114
  * @throws Exception
115
  */
116
  public static function createFromJson( $json_obj ) {
117
+ $formInstance = new self();
118
 
119
  if ( ! isset( $json_obj ) ) {
120
  throw new Exception( 'Bad Request', 400 );
122
 
123
  if ( is_object( $json_obj ) ) {
124
 
125
+ $formInstance->setId( $json_obj->id );
126
 
127
  // add uncompleted wordpress integration
128
  $current_user = wp_get_current_user();
129
  $an_integration = new Brizy_Editor_Forms_WordpressIntegration();
130
  $an_integration->setEmailTo( $current_user->user_email );
131
 
132
+ $formInstance->addIntegration( $an_integration );
133
 
134
  foreach ( (array) $json_obj->integrations as $integration ) {
135
  if ( is_object( $integration ) ) {
136
+ $formInstance->addIntegration( Brizy_Editor_Forms_AbstractIntegration::createInstanceFromJson( $integration ) );
137
  }
138
  }
139
  }
140
 
141
+ return $formInstance;
142
+ }
143
+
144
+ /**
145
+ * @param Brizy_Editor_Forms_Form $instance
146
+ * @param $json_obj
147
+ *
148
+ * @return Brizy_Editor_Forms_Form
149
+ * @throws Exception
150
+ */
151
+ public static function updateFromJson( Brizy_Editor_Forms_Form $instance, $json_obj ) {
152
+
153
+ if ( ! isset( $json_obj ) ) {
154
+ throw new Exception( 'Bad Request', 400 );
155
+ }
156
+
157
+ if ( is_object( $json_obj ) ) {
158
+ $instance->setHasEmailTemplate( $json_obj->hasEmailTemplate );
159
+
160
+ if ( $json_obj->hasEmailTemplate ) {
161
+ $instance->setEmailTemplate( $json_obj->emailTemplate );
162
+ } else {
163
+ $instance->setEmailTemplate( '' );
164
+ }
165
+ }
166
+
167
  return $instance;
168
  }
169
 
182
  $errors['id'] = 'Invalid form id';
183
  }
184
 
185
+ if ( $this->hasEmailTemplate && $this->getEmailTemplate() == '' ) {
186
+ $errors['emailTemplate'] = 'Invalid email template content';
187
+ }
188
+
189
  if ( count( $errors ) ) {
190
  return $errors;
191
  }
270
  return false;
271
  }
272
 
273
+ /**
274
+ * @return bool
275
+ */
276
+ public function hasEmailTemplate() {
277
+ return $this->hasEmailTemplate;
278
+ }
279
+
280
+ /**
281
+ * @param bool $hasEmailTemplate
282
+ *
283
+ * @return Brizy_Editor_Forms_Form
284
+ */
285
+ public function setHasEmailTemplate( $hasEmailTemplate ) {
286
+ $this->hasEmailTemplate = $hasEmailTemplate;
287
+
288
+ return $this;
289
+ }
290
+
291
+ /**
292
+ * @return string
293
+ */
294
+ public function getEmailTemplate() {
295
+ return $this->emailTemplate;
296
+ }
297
+
298
+ /**
299
+ * @param string $emailTemplate
300
+ *
301
+ * @return Brizy_Editor_Forms_Form
302
+ */
303
+ public function setEmailTemplate( $emailTemplate ) {
304
+ $this->emailTemplate = $emailTemplate;
305
+
306
+ return $this;
307
+ }
308
+
309
+ /**
310
+ * @param $fields
311
+ *
312
+ * @return string
313
+ */
314
+ public function getEmailTemplateContent( $fields ) {
315
+
316
+ $field_string = array();
317
+ foreach ( $fields as $field ) {
318
+ $field_string[] = "{$field->label}: " . esc_html( $field->value );
319
+ }
320
+
321
+ $content = implode( '<br>', $field_string );
322
+
323
+ return $content;
324
+ }
325
  }
editor/forms/gmail-smtp-integration.php ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Created by PhpStorm.
4
+ * User: alex
5
+ * Date: 11/20/18
6
+ * Time: 4:48 PM
7
+ */
8
+
9
+ class Brizy_Editor_Forms_GmailSmtpIntegration extends Brizy_Editor_Forms_SmtpIntegration {
10
+
11
+ /**
12
+ * Brizy_Editor_Forms_WordpressIntegration constructor.
13
+ */
14
+ public function __construct() {
15
+ $this->id = 'gmail_smtp';
16
+ $this->host = 'smtp.gmail.com';
17
+ $this->port = 465;
18
+ $this->encryption = 'ssl';
19
+ $this->authentication = true;
20
+ }
21
+
22
+ /**
23
+ * @param $json_obj
24
+ *
25
+ * @return Brizy_Editor_Forms_WordpressIntegration|null
26
+ */
27
+ public static function createFromJson( $json_obj ) {
28
+ $instance = null;
29
+ if ( is_object( $json_obj ) ) {
30
+ $instance = new self();
31
+
32
+ self::populateInstanceDataFromJson( $instance, $json_obj );
33
+
34
+ if ( isset( $json_obj->emailTo ) ) {
35
+ $instance->setEmailTo( trim( $json_obj->emailTo ) );
36
+ }
37
+
38
+ if ( isset( $json_obj->subject ) ) {
39
+ $instance->setSubject( trim( $json_obj->subject ) );
40
+ }
41
+
42
+ if ( isset( $json_obj->username ) ) {
43
+ $instance->setUsername( trim( $json_obj->username ) );
44
+ }
45
+ if ( isset( $json_obj->password ) ) {
46
+ $instance->setPassword( trim( $json_obj->password ) );
47
+ }
48
+ }
49
+
50
+ return $instance;
51
+ }
52
+
53
+ public static function createFromSerializedData( $data, $instance = null ) {
54
+ if ( is_null( $instance ) ) {
55
+ $instance = new self();
56
+ }
57
+
58
+ $instance = parent::createFromSerializedData( $data, $instance );
59
+
60
+ return $instance;
61
+ }
62
+ }
editor/forms/service-integration.php CHANGED
@@ -20,6 +20,15 @@ class Brizy_Editor_Forms_ServiceIntegration extends Brizy_Editor_Forms_AbstractI
20
  */
21
  protected $lists = array();
22
 
 
 
 
 
 
 
 
 
 
23
 
24
  /**
25
  * @var
@@ -29,7 +38,7 @@ class Brizy_Editor_Forms_ServiceIntegration extends Brizy_Editor_Forms_AbstractI
29
  /**
30
  * @var
31
  */
32
- protected $fieldsMap;
33
 
34
  /**
35
  * @var
@@ -52,6 +61,26 @@ class Brizy_Editor_Forms_ServiceIntegration extends Brizy_Editor_Forms_AbstractI
52
  */
53
  protected $usedFolder;
54
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
55
  /**
56
  * @return array|mixed
57
  */
@@ -59,15 +88,39 @@ class Brizy_Editor_Forms_ServiceIntegration extends Brizy_Editor_Forms_AbstractI
59
 
60
  $get_object_vars = parent::jsonSerialize();
61
 
62
- $get_object_vars['fields'] = $this->getFields();
63
- $get_object_vars['lists'] = $this->getLists();
64
- $get_object_vars['usedAccount'] = $this->getUsedAccount();
65
- $get_object_vars['usedList'] = $this->getUsedList();
66
- $get_object_vars['usedFolder'] = $this->getUsedFolder();
67
- $get_object_vars['fieldsMap'] = $this->getFieldsMap();
68
- $get_object_vars['accounts'] = $this->getAccounts();
69
- $get_object_vars['confirmationNeeded'] = $this->isConfirmationNeeded();
70
- $get_object_vars['hasConfirmation'] = $this->hasConfirmation();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
71
 
72
  return $get_object_vars;
73
  }
@@ -78,6 +131,10 @@ class Brizy_Editor_Forms_ServiceIntegration extends Brizy_Editor_Forms_AbstractI
78
  public function serialize() {
79
  $value = $this->jsonSerialize();
80
  unset( $value['accounts'] );
 
 
 
 
81
 
82
  return serialize( $value );
83
  }
@@ -99,10 +156,25 @@ class Brizy_Editor_Forms_ServiceIntegration extends Brizy_Editor_Forms_AbstractI
99
  }
100
  }
101
  if ( isset( $json_obj->lists ) ) {
102
- foreach ( $json_obj->lists as $lists ) {
103
- $instance->addList( Brizy_Editor_Forms_Group::createFromJson( $lists ) );
 
 
 
 
104
  }
105
  }
 
 
 
 
 
 
 
 
 
 
 
106
  if ( isset( $json_obj->usedAccount ) ) {
107
  $instance->setUsedAccount( $json_obj->usedAccount );
108
  }
@@ -126,33 +198,15 @@ class Brizy_Editor_Forms_ServiceIntegration extends Brizy_Editor_Forms_AbstractI
126
  return $instance;
127
  }
128
 
129
- static public function createFromSerializedData( $data ) {
130
- $instance = new self( $data['id'] );
 
 
131
 
132
  if ( isset( $data['completed'] ) ) {
133
  $instance->setCompleted( $data['completed'] );
134
  }
135
 
136
- if ( isset( $data['fields'] ) ) {
137
- foreach ( $data['fields'] as $field ) {
138
-
139
- if ( $field instanceof Brizy_Editor_Forms_Field ) {
140
- $instance->addField( $field );
141
- } else {
142
- $instance->addField( Brizy_Editor_Forms_Field::createFromSerializedData( $field ) );
143
- }
144
-
145
- }
146
- }
147
- if ( isset( $data['lists'] ) ) {
148
- foreach ( $data['lists'] as $list ) {
149
- if ( $list instanceof Brizy_Editor_Forms_Group ) {
150
- $instance->addList( $list );
151
- } else {
152
- $instance->addList( Brizy_Editor_Forms_Group::createFromSerializedData( $list ) );
153
- }
154
- }
155
- }
156
  if ( isset( $data['usedAccount'] ) ) {
157
  $instance->setUsedAccount( $data['usedAccount'] );
158
  }
@@ -163,7 +217,15 @@ class Brizy_Editor_Forms_ServiceIntegration extends Brizy_Editor_Forms_AbstractI
163
  $instance->setUsedFolder( $data['usedFolder'] );
164
  }
165
  if ( isset( $data['fieldsMap'] ) ) {
166
- $instance->setFieldsMap( $data['fieldsMap'] );
 
 
 
 
 
 
 
 
167
  }
168
  if ( isset( $data['confirmationNeeded'] ) ) {
169
  $instance->setConfirmationNeeded( $data['confirmationNeeded'] );
@@ -172,6 +234,7 @@ class Brizy_Editor_Forms_ServiceIntegration extends Brizy_Editor_Forms_AbstractI
172
  $instance->setHasConfirmation( $data['hasConfirmation'] );
173
  }
174
 
 
175
  return $instance;
176
  }
177
 
@@ -182,6 +245,13 @@ class Brizy_Editor_Forms_ServiceIntegration extends Brizy_Editor_Forms_AbstractI
182
  $this->lists[] = $list;
183
  }
184
 
 
 
 
 
 
 
 
185
  /**
186
  * @param Brizy_Editor_Forms_Field $field
187
  */
@@ -189,6 +259,23 @@ class Brizy_Editor_Forms_ServiceIntegration extends Brizy_Editor_Forms_AbstractI
189
  $this->fields[] = $field;
190
  }
191
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
192
 
193
  /**
194
  * @return array
@@ -250,9 +337,9 @@ class Brizy_Editor_Forms_ServiceIntegration extends Brizy_Editor_Forms_AbstractI
250
  */
251
  public function getUsedListObject() {
252
 
 
253
  foreach ( (array) $this->lists as $list ) {
254
- $var = $list->getId();
255
- $used_account = $this->getUsedList();
256
  if ( $var == $used_account ) {
257
  return $list;
258
  }
@@ -368,4 +455,22 @@ class Brizy_Editor_Forms_ServiceIntegration extends Brizy_Editor_Forms_AbstractI
368
 
369
  return $this;
370
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
371
  }
20
  */
21
  protected $lists = array();
22
 
23
+ /**
24
+ * @var array
25
+ */
26
+ protected $listProperties = array();
27
+
28
+ /**
29
+ * @var array
30
+ */
31
+ protected $folders = array();
32
 
33
  /**
34
  * @var
38
  /**
39
  * @var
40
  */
41
+ protected $fieldsMap = '[]';
42
 
43
  /**
44
  * @var
61
  */
62
  protected $usedFolder;
63
 
64
+
65
+ /**
66
+ * @param $fields
67
+ *
68
+ * @return bool|mixed
69
+ * @throws Exception
70
+ */
71
+ public function handleSubmit( Brizy_Editor_Forms_Form $form, $fields ) {
72
+ /**
73
+ * @var \BrizyForms\Service\Service $service ;
74
+ */
75
+ $service = \BrizyForms\ServiceFactory::getInstance( $this->getId() );
76
+
77
+ if ( ! ( $service instanceof \BrizyForms\Service\Service ) ) {
78
+ $this->error( 400, "Invalid integration service" );
79
+ }
80
+
81
+ do_action( 'brizy_submit_form', $service, $fields, $this );
82
+ }
83
+
84
  /**
85
  * @return array|mixed
86
  */
88
 
89
  $get_object_vars = parent::jsonSerialize();
90
 
91
+ if ( ! is_null( $this->getFields() ) ) {
92
+ $get_object_vars['fields'] = $this->getFields();
93
+ }
94
+ if ( ! is_null( $this->getLists() ) ) {
95
+ $get_object_vars['lists'] = $this->getLists();
96
+ }
97
+ if ( ! is_null( $this->getListProperties() ) ) {
98
+ $get_object_vars['listProperties'] = $this->getListProperties();
99
+ }
100
+ if ( ! is_null( $this->getFolders() ) ) {
101
+ $get_object_vars['folders'] = $this->getFolders();
102
+ }
103
+ if ( ! is_null( $this->getUsedAccount() ) ) {
104
+ $get_object_vars['usedAccount'] = $this->getUsedAccount();
105
+ }
106
+ if ( ! is_null( $this->getUsedList() ) ) {
107
+ $get_object_vars['usedList'] = $this->getUsedList();
108
+ }
109
+ if ( ! is_null( $this->getUsedFolder() ) ) {
110
+ $get_object_vars['usedFolder'] = $this->getUsedFolder();
111
+ }
112
+ if ( ! is_null( $this->getFieldsMap() ) ) {
113
+ $get_object_vars['fieldsMap'] = $this->getFieldsMap();
114
+ }
115
+ if ( ! is_null( $this->getAccounts() ) ) {
116
+ $get_object_vars['accounts'] = $this->getAccounts();
117
+ }
118
+ if ( ! is_null( $this->isConfirmationNeeded() ) ) {
119
+ $get_object_vars['confirmationNeeded'] = $this->isConfirmationNeeded();
120
+ }
121
+ if ( ! is_null( $this->hasConfirmation() ) ) {
122
+ $get_object_vars['hasConfirmation'] = $this->hasConfirmation();
123
+ }
124
 
125
  return $get_object_vars;
126
  }
131
  public function serialize() {
132
  $value = $this->jsonSerialize();
133
  unset( $value['accounts'] );
134
+ unset( $value['folders'] );
135
+ unset( $value['lists'] );
136
+ unset( $value['fields'] );
137
+ unset( $value['listProperties'] );
138
 
139
  return serialize( $value );
140
  }
156
  }
157
  }
158
  if ( isset( $json_obj->lists ) ) {
159
+ foreach ( $json_obj->lists as $list ) {
160
+ if ( ! $list instanceof Brizy_Editor_Forms_Group ) {
161
+ $instance->addList( Brizy_Editor_Forms_Group::createFromJson( $list ) );
162
+ } else {
163
+ $instance->addList( $list );
164
+ }
165
  }
166
  }
167
+
168
+ if ( isset( $json_obj->folders ) ) {
169
+ foreach ( $json_obj->folders as $folder ) {
170
+ if ( ! $folder instanceof Brizy_Editor_Forms_Folder ) {
171
+ $instance->addFolder( Brizy_Editor_Forms_Folder::createFromJson( $folder ) );
172
+ } else {
173
+ $instance->addFolder( $folder );
174
+ }
175
+ }
176
+ }
177
+
178
  if ( isset( $json_obj->usedAccount ) ) {
179
  $instance->setUsedAccount( $json_obj->usedAccount );
180
  }
198
  return $instance;
199
  }
200
 
201
+ static public function createFromSerializedData( $data, $instance = null ) {
202
+ if ( is_null( $instance ) ) {
203
+ $instance = new self( $data['id'] );
204
+ }
205
 
206
  if ( isset( $data['completed'] ) ) {
207
  $instance->setCompleted( $data['completed'] );
208
  }
209
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
210
  if ( isset( $data['usedAccount'] ) ) {
211
  $instance->setUsedAccount( $data['usedAccount'] );
212
  }
217
  $instance->setUsedFolder( $data['usedFolder'] );
218
  }
219
  if ( isset( $data['fieldsMap'] ) ) {
220
+
221
+ if ( is_array( $data['fieldsMap'] ) ) {
222
+ $instance->setFieldsMap( json_encode( $data['fieldsMap'] ) );
223
+ } elseif ( empty( $data['fieldsMap'] ) ) {
224
+ $instance->setFieldsMap( '[]' );
225
+ } else {
226
+ $instance->setFieldsMap( $data['fieldsMap'] );
227
+ }
228
+
229
  }
230
  if ( isset( $data['confirmationNeeded'] ) ) {
231
  $instance->setConfirmationNeeded( $data['confirmationNeeded'] );
234
  $instance->setHasConfirmation( $data['hasConfirmation'] );
235
  }
236
 
237
+
238
  return $instance;
239
  }
240
 
245
  $this->lists[] = $list;
246
  }
247
 
248
+ /**
249
+ * @param Brizy_Editor_Forms_Folder $folders
250
+ */
251
+ public function addFolder( Brizy_Editor_Forms_Folder $folders ) {
252
+ $this->folders[] = $folders;
253
+ }
254
+
255
  /**
256
  * @param Brizy_Editor_Forms_Field $field
257
  */
259
  $this->fields[] = $field;
260
  }
261
 
262
+ /**
263
+ * @return array
264
+ */
265
+ public function getFolders() {
266
+ return $this->folders;
267
+ }
268
+
269
+ /**
270
+ * @param array $folders
271
+ *
272
+ * @return Brizy_Editor_Forms_ServiceIntegration
273
+ */
274
+ public function setFolders( $folders ) {
275
+ $this->folders = $folders;
276
+
277
+ return $this;
278
+ }
279
 
280
  /**
281
  * @return array
337
  */
338
  public function getUsedListObject() {
339
 
340
+ $used_account = $this->getUsedList();
341
  foreach ( (array) $this->lists as $list ) {
342
+ $var = $list->getId();
 
343
  if ( $var == $used_account ) {
344
  return $list;
345
  }
455
 
456
  return $this;
457
  }
458
+
459
+ /**
460
+ * @return array
461
+ */
462
+ public function getListProperties() {
463
+ return $this->listProperties;
464
+ }
465
+
466
+ /**
467
+ * @param array $listProperties
468
+ *
469
+ * @return Brizy_Editor_Forms_ServiceIntegration
470
+ */
471
+ public function setListProperties( $listProperties ) {
472
+ $this->listProperties = $listProperties;
473
+
474
+ return $this;
475
+ }
476
  }
editor/forms/smtp-integration.php ADDED
@@ -0,0 +1,268 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Created by PhpStorm.
4
+ * User: alex
5
+ * Date: 11/20/18
6
+ * Time: 4:48 PM
7
+ */
8
+
9
+ class Brizy_Editor_Forms_SmtpIntegration extends Brizy_Editor_Forms_WordpressIntegration {
10
+
11
+ /**
12
+ * @var string
13
+ */
14
+ protected $host;
15
+
16
+ /**
17
+ * @var string
18
+ */
19
+ protected $port;
20
+
21
+ /**
22
+ * @var string
23
+ */
24
+ protected $authentication;
25
+
26
+ /**
27
+ * @var string
28
+ */
29
+ protected $username;
30
+
31
+ /**
32
+ * @var string
33
+ */
34
+ protected $password;
35
+
36
+ /**
37
+ * @var string
38
+ */
39
+ protected $encryption;
40
+
41
+ /**
42
+ * Brizy_Editor_Forms_WordpressIntegration constructor.
43
+ */
44
+ public function __construct() {
45
+ $this->id = 'smtp';
46
+ }
47
+
48
+ /**
49
+ * @param Brizy_Editor_Forms_Form $form
50
+ * @param $fields
51
+ *
52
+ * @return bool|mixed
53
+ * @throws Exception
54
+ */
55
+ public function handleSubmit( Brizy_Editor_Forms_Form $form, $fields ) {
56
+ add_action( 'phpmailer_init', array( $this, 'decoratePhpMailer' ) );
57
+
58
+ return parent::handleSubmit( $form, $fields );
59
+ }
60
+
61
+ public function decoratePhpMailer( $phpmailer ) {
62
+ $phpmailer->isSMTP();
63
+ $phpmailer->Host = $this->getHost();
64
+ $phpmailer->SMTPAuth = $this->getAuthentication();
65
+ $phpmailer->Port = $this->getPort();
66
+ $phpmailer->Username = $this->getUsername();
67
+ $phpmailer->Password = $this->getPassword();
68
+ }
69
+
70
+ /**
71
+ * @return array|mixed
72
+ */
73
+ public function jsonSerialize() {
74
+
75
+ $get_object_vars = parent::jsonSerialize();
76
+
77
+ $get_object_vars['emailTo'] = $this->getEmailTo();
78
+ $get_object_vars['subject'] = $this->getSubject();
79
+ $get_object_vars['host'] = $this->getHost();
80
+ $get_object_vars['authentication'] = $this->getAuthentication();
81
+ $get_object_vars['port'] = $this->getPort();
82
+ $get_object_vars['username'] = $this->getUsername();
83
+ $get_object_vars['password'] = $this->getPassword();
84
+ $get_object_vars['encryption'] = $this->getEncryption();
85
+
86
+ return $get_object_vars;
87
+ }
88
+
89
+ /**
90
+ * @param $json_obj
91
+ *
92
+ * @return Brizy_Editor_Forms_WordpressIntegration|null
93
+ */
94
+ public static function createFromJson( $json_obj ) {
95
+ $instance = null;
96
+ if ( is_object( $json_obj ) ) {
97
+
98
+ $instance = new self();
99
+
100
+ self::populateInstanceDataFromJson( $instance, $json_obj );
101
+
102
+ if ( isset( $json_obj->host ) ) {
103
+ $instance->setHost( trim( $json_obj->host ) );
104
+ }
105
+ if ( isset( $json_obj->port ) ) {
106
+ $instance->setPort( trim( $json_obj->port ) );
107
+ }
108
+ if ( isset( $json_obj->authentication ) ) {
109
+ $instance->setAuthentication( $json_obj->authentication );
110
+ }
111
+ if ( isset( $json_obj->username ) ) {
112
+ $instance->setUsername( trim( $json_obj->username ) );
113
+ }
114
+ if ( isset( $json_obj->password ) ) {
115
+ $instance->setPassword( trim( $json_obj->password ) );
116
+ }
117
+ if ( isset( $json_obj->encryption ) ) {
118
+ $instance->setEncryption( trim( $json_obj->encryption ) );
119
+ }
120
+ }
121
+
122
+ return $instance;
123
+ }
124
+
125
+
126
+ static public function createFromSerializedData( $data, $instance = null ) {
127
+
128
+ if ( is_null( $instance ) ) {
129
+ $instance = new self();
130
+ }
131
+
132
+ $instance = parent::createFromSerializedData( $data, $instance );
133
+
134
+ if ( isset( $data['host'] ) ) {
135
+ $instance->setHost( $data['host'] );
136
+ }
137
+
138
+ if ( isset( $data['port'] ) ) {
139
+ $instance->setPort( $data['port'] );
140
+ }
141
+ if ( isset( $data['username'] ) ) {
142
+ $instance->setUsername( $data['username'] );
143
+ }
144
+ if ( isset( $data['password'] ) ) {
145
+ $instance->setPassword( $data['password'] );
146
+ }
147
+ if ( isset( $data['encryption'] ) ) {
148
+ $instance->setEncryption( $data['encryption'] );
149
+ }
150
+
151
+ if ( isset( $data['authentication'] ) ) {
152
+ $instance->setAuthentication( $data['authentication'] );
153
+ }
154
+
155
+
156
+ return $instance;
157
+ }
158
+
159
+ /**
160
+ * @return string
161
+ */
162
+ public function getHost() {
163
+ return $this->host;
164
+ }
165
+
166
+ /**
167
+ * @param string $host
168
+ *
169
+ * @return Brizy_Editor_Forms_SmtpIntegration
170
+ */
171
+ public function setHost( $host ) {
172
+ $this->host = $host;
173
+
174
+ return $this;
175
+ }
176
+
177
+ /**
178
+ * @return string
179
+ */
180
+ public function getPort() {
181
+ return $this->port;
182
+ }
183
+
184
+ /**
185
+ * @param string $port
186
+ *
187
+ * @return Brizy_Editor_Forms_SmtpIntegration
188
+ */
189
+ public function setPort( $port ) {
190
+ $this->port = $port;
191
+
192
+ return $this;
193
+ }
194
+
195
+
196
+ /**
197
+ * @return string
198
+ */
199
+ public function getAuthentication() {
200
+ return $this->authentication;
201
+ }
202
+
203
+ /**
204
+ * @param string $authentication
205
+ *
206
+ * @return Brizy_Editor_Forms_SmtpIntegration
207
+ */
208
+ public function setAuthentication( $authentication ) {
209
+ $this->authentication = $authentication;
210
+
211
+ return $this;
212
+ }
213
+
214
+ /**
215
+ * @return string
216
+ */
217
+ public function getUsername() {
218
+ return $this->username;
219
+ }
220
+
221
+ /**
222
+ * @param string $username
223
+ *
224
+ * @return Brizy_Editor_Forms_SmtpIntegration
225
+ */
226
+ public function setUsername( $username ) {
227
+ $this->username = $username;
228
+
229
+ return $this;
230
+ }
231
+
232
+ /**
233
+ * @return string
234
+ */
235
+ public function getPassword() {
236
+ return $this->password;
237
+ }
238
+
239
+ /**
240
+ * @param string $password
241
+ *
242
+ * @return Brizy_Editor_Forms_SmtpIntegration
243
+ */
244
+ public function setPassword( $password ) {
245
+ $this->password = $password;
246
+
247
+ return $this;
248
+ }
249
+
250
+ /**
251
+ * @return string
252
+ */
253
+ public function getEncryption() {
254
+ return $this->encryption;
255
+ }
256
+
257
+ /**
258
+ * @param string $encryption
259
+ *
260
+ * @return Brizy_Editor_Forms_SmtpIntegration
261
+ */
262
+ public function setEncryption( $encryption ) {
263
+ $this->encryption = $encryption;
264
+
265
+ return $this;
266
+ }
267
+
268
+ }
editor/forms/wordpress-integration.php CHANGED
@@ -13,6 +13,36 @@ class Brizy_Editor_Forms_WordpressIntegration extends Brizy_Editor_Forms_Abstrac
13
  */
14
  protected $subject;
15
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
  /**
17
  * Brizy_Editor_Forms_WordpressIntegration constructor.
18
  */
@@ -20,6 +50,69 @@ class Brizy_Editor_Forms_WordpressIntegration extends Brizy_Editor_Forms_Abstrac
20
  parent::__construct( 'wordpress' );
21
  }
22
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23
  /**
24
  * @return array|mixed
25
  */
@@ -27,14 +120,23 @@ class Brizy_Editor_Forms_WordpressIntegration extends Brizy_Editor_Forms_Abstrac
27
 
28
  $get_object_vars = parent::jsonSerialize();
29
 
30
- $get_object_vars['emailTo'] = $this->getEmailTo();
31
- $get_object_vars['subject'] = $this->getSubject();
 
 
 
 
 
 
32
 
33
  return $get_object_vars;
34
  }
35
 
36
- static public function createFromSerializedData( $data ) {
37
- $instance = new self( $data['id'] );
 
 
 
38
 
39
  if ( isset( $data['completed'] ) ) {
40
  $instance->setCompleted( $data['completed'] );
@@ -48,9 +150,40 @@ class Brizy_Editor_Forms_WordpressIntegration extends Brizy_Editor_Forms_Abstrac
48
  $instance->setSubject( $data['subject'] );
49
  }
50
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
51
  return $instance;
52
  }
53
 
 
 
 
 
 
 
 
54
  /**
55
  * @return string
56
  */
@@ -87,6 +220,114 @@ class Brizy_Editor_Forms_WordpressIntegration extends Brizy_Editor_Forms_Abstrac
87
  return $this;
88
  }
89
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90
  /**
91
  * @param $json_obj
92
  *
@@ -95,14 +336,85 @@ class Brizy_Editor_Forms_WordpressIntegration extends Brizy_Editor_Forms_Abstrac
95
  public static function createFromJson( $json_obj ) {
96
  $instance = null;
97
  if ( is_object( $json_obj ) ) {
98
- $instance = new self( $json_obj->id );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
99
 
100
  if ( isset( $json_obj->emailTo ) ) {
101
- $instance->setEmailTo( $json_obj->emailTo );
102
  }
103
  if ( isset( $json_obj->subject ) ) {
104
- $instance->setSubject( $json_obj->subject );
105
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
106
  }
107
 
108
  return $instance;
13
  */
14
  protected $subject;
15
 
16
+ /**
17
+ * @var string
18
+ */
19
+ protected $fromEmail;
20
+
21
+ /**
22
+ * @var string
23
+ */
24
+ protected $fromName;
25
+
26
+ /**
27
+ * @var string
28
+ */
29
+ protected $replayTo;
30
+
31
+ /**
32
+ * @var string
33
+ */
34
+ protected $cc;
35
+
36
+ /**
37
+ * @var string
38
+ */
39
+ protected $bcc;
40
+
41
+ /**
42
+ * @var string
43
+ */
44
+ protected $metaData;
45
+
46
  /**
47
  * Brizy_Editor_Forms_WordpressIntegration constructor.
48
  */
50
  parent::__construct( 'wordpress' );
51
  }
52
 
53
+ /**
54
+ * @param Brizy_Editor_Forms_Form $form
55
+ * @param $fields
56
+ *
57
+ * @return bool|mixed
58
+ * @throws Exception
59
+ */
60
+ public function handleSubmit( Brizy_Editor_Forms_Form $form, $fields ) {
61
+
62
+ ///$recipients = explode( ',', $this->getEmailTo() );
63
+
64
+ $headers = array();
65
+ $headers[] = 'Content-type: text/html; charset=UTF-8';
66
+
67
+ if ( $this->getEmailTo() ) {
68
+ $headers[] = "To: {$this->getEmailTo()}";
69
+ }
70
+
71
+ if ( $this->getCc() ) {
72
+ $headers[] = "Cc: {$this->getCc()}";
73
+ }
74
+
75
+ if ( $this->getBcc() ) {
76
+ $headers[] = "Bcc: {$this->getBcc()}";
77
+ }
78
+
79
+ if ( $this->getReplayTo() ) {
80
+ $headers[] = "Reply-To: {$this->getReplayTo()}";
81
+ }
82
+
83
+ if ( $this->getFromEmail() ) {
84
+ $fromName = '';
85
+ if ( $this->getFromName() ) {
86
+ $headers[] = "From: \"{$this->getFromName()}\" <{$this->getFromEmail()}>";
87
+ } else {
88
+ $headers[] = "From: {$this->getFromEmail()}";
89
+ }
90
+ }
91
+
92
+ // $field_string = array();
93
+ // foreach ( $fields as $field ) {
94
+ // $field_string[] = "{$field->label}: " . esc_html( $field->value );
95
+ // }
96
+
97
+ $email_body = $form->getEmailTemplateContent( $fields );
98
+
99
+ $headers = apply_filters( 'brizy_form_email_headers', $headers, $fields, $form );
100
+ $email_body = apply_filters( 'brizy_form_email_body', $email_body, $fields, $form );
101
+
102
+ $email_body = $this->insertMetaDataFields( $email_body );
103
+
104
+ if ( ! function_exists( 'wp_mail' ) ) {
105
+ throw new Exception( 'Please check your wordpress configuration.' );
106
+ }
107
+
108
+ return wp_mail(
109
+ null,
110
+ $this->getSubject(),
111
+ $email_body,
112
+ $headers
113
+ );
114
+ }
115
+
116
  /**
117
  * @return array|mixed
118
  */
120
 
121
  $get_object_vars = parent::jsonSerialize();
122
 
123
+ $get_object_vars['emailTo'] = $this->getEmailTo();
124
+ $get_object_vars['subject'] = $this->getSubject();
125
+ $get_object_vars['fromEmail'] = $this->getFromEmail();
126
+ $get_object_vars['fromName'] = $this->getFromName();
127
+ $get_object_vars['replayTo'] = $this->getReplayTo();
128
+ $get_object_vars['cc'] = $this->getCc();
129
+ $get_object_vars['bcc'] = $this->getBcc();
130
+ $get_object_vars['metaData'] = $this->getMetaData();
131
 
132
  return $get_object_vars;
133
  }
134
 
135
+ static public function createFromSerializedData( $data, $instance = null ) {
136
+
137
+ if ( is_null( $instance ) ) {
138
+ $instance = new self();
139
+ }
140
 
141
  if ( isset( $data['completed'] ) ) {
142
  $instance->setCompleted( $data['completed'] );
150
  $instance->setSubject( $data['subject'] );
151
  }
152
 
153
+ if ( isset( $data['fromEmail'] ) ) {
154
+ $instance->setFromEmail( $data['fromEmail'] );
155
+ }
156
+
157
+ if ( isset( $data['fromName'] ) ) {
158
+ $instance->setFromName( $data['fromName'] );
159
+ }
160
+
161
+ if ( isset( $data['replayTo'] ) ) {
162
+ $instance->setReplayTo( $data['replayTo'] );
163
+ }
164
+
165
+ if ( isset( $data['cc'] ) ) {
166
+ $instance->setCc( $data['cc'] );
167
+ }
168
+
169
+ if ( isset( $data['bcc'] ) ) {
170
+ $instance->setBcc( $data['bcc'] );
171
+ }
172
+
173
+ if ( isset( $data['metaData'] ) ) {
174
+ $instance->setMetaData( $data['metaData'] );
175
+ }
176
+
177
  return $instance;
178
  }
179
 
180
+ /**
181
+ * @return string
182
+ */
183
+ public function serialize() {
184
+ return serialize( $this->jsonSerialize() );
185
+ }
186
+
187
  /**
188
  * @return string
189
  */
220
  return $this;
221
  }
222
 
223
+ /**
224
+ * @return string
225
+ */
226
+ public function getFromEmail() {
227
+ return $this->fromEmail;
228
+ }
229
+
230
+ /**
231
+ * @param string $fromEmail
232
+ *
233
+ * @return Brizy_Editor_Forms_WordpressIntegration
234
+ */
235
+ public function setFromEmail( $fromEmail ) {
236
+ $this->fromEmail = $fromEmail;
237
+
238
+ return $this;
239
+ }
240
+
241
+ /**
242
+ * @return string
243
+ */
244
+ public function getFromName() {
245
+ return $this->fromName;
246
+ }
247
+
248
+ /**
249
+ * @param string $fromName
250
+ *
251
+ * @return Brizy_Editor_Forms_WordpressIntegration
252
+ */
253
+ public function setFromName( $fromName ) {
254
+ $this->fromName = $fromName;
255
+
256
+ return $this;
257
+ }
258
+
259
+ /**
260
+ * @return string
261
+ */
262
+ public function getReplayTo() {
263
+ return $this->replayTo;
264
+ }
265
+
266
+ /**
267
+ * @param string $replayTo
268
+ *
269
+ * @return Brizy_Editor_Forms_WordpressIntegration
270
+ */
271
+ public function setReplayTo( $replayTo ) {
272
+ $this->replayTo = $replayTo;
273
+
274
+ return $this;
275
+ }
276
+
277
+ /**
278
+ * @return string
279
+ */
280
+ public function getCc() {
281
+ return $this->cc;
282
+ }
283
+
284
+ /**
285
+ * @param string $cc
286
+ *
287
+ * @return Brizy_Editor_Forms_WordpressIntegration
288
+ */
289
+ public function setCc( $cc ) {
290
+ $this->cc = $cc;
291
+
292
+ return $this;
293
+ }
294
+
295
+ /**
296
+ * @return string
297
+ */
298
+ public function getBcc() {
299
+ return $this->bcc;
300
+ }
301
+
302
+ /**
303
+ * @param string $bcc
304
+ *
305
+ * @return Brizy_Editor_Forms_WordpressIntegration
306
+ */
307
+ public function setBcc( $bcc ) {
308
+ $this->bcc = $bcc;
309
+
310
+ return $this;
311
+ }
312
+
313
+ /**
314
+ * @return string
315
+ */
316
+ public function getMetaData() {
317
+ return $this->metaData;
318
+ }
319
+
320
+ /**
321
+ * @param string $metaData
322
+ *
323
+ * @return Brizy_Editor_Forms_WordpressIntegration
324
+ */
325
+ public function setMetaData( $metaData ) {
326
+ $this->metaData = $metaData;
327
+
328
+ return $this;
329
+ }
330
+
331
  /**
332
  * @param $json_obj
333
  *
336
  public static function createFromJson( $json_obj ) {
337
  $instance = null;
338
  if ( is_object( $json_obj ) ) {
339
+ $instance = new self();
340
+
341
+ self::populateInstanceDataFromJson( $instance, $json_obj );
342
+ }
343
+
344
+ return $instance;
345
+ }
346
+
347
+ private function insertMetaDataFields( $emailBody ) {
348
+
349
+ $metaFields = explode( ',', $this->getMetaData() );
350
+ $tests = array();
351
+ foreach ( $metaFields as $meta ) {
352
+ switch ( $meta ) {
353
+ case 'time':
354
+ $tests[] = 'Time: ' . date( 'Y-m-d H:i:s' );
355
+ break;
356
+ case 'pageUrl':
357
+ $tests[] = 'Page Url: ' . $_SERVER['HTTP_REFERER'];
358
+ break;
359
+ case 'userAgent':
360
+ $tests[] = 'User Agent: ' . $_SERVER['HTTP_USER_AGENT'];
361
+ break;
362
+ case 'remoteIp':
363
+ $ip = $_SERVER['REMOTE_ADDR'];
364
+
365
+ if ( ! empty( $_SERVER['HTTP_CLIENT_IP'] ) ) {
366
+ $ip = $_SERVER['HTTP_CLIENT_IP'];
367
+ } elseif ( ! empty( $_SERVER['HTTP_X_FORWARDED_FOR'] ) ) {
368
+ $ip = $_SERVER['HTTP_X_FORWARDED_FOR'];
369
+ }
370
+
371
+ $tests[] = 'Remote IP: ' . $ip;
372
+ break;
373
+ case 'credit':
374
+ $tests[] = 'Powered by : ' . __bt( 'brizy', 'Brizy' );
375
+ break;
376
+ }
377
+ }
378
+
379
+ $tests = implode( '<br>', $tests );
380
+
381
+ return $emailBody . "<br>-------------------------<br>" . $tests;
382
+ }
383
+
384
+ protected static function populateInstanceDataFromJson( $instance, $json_obj ) {
385
+ if ( is_object( $json_obj ) ) {
386
 
387
  if ( isset( $json_obj->emailTo ) ) {
388
+ $instance->setEmailTo( trim( $json_obj->emailTo ) );
389
  }
390
  if ( isset( $json_obj->subject ) ) {
391
+ $instance->setSubject( trim( $json_obj->subject ) );
392
  }
393
+
394
+ if ( isset( $json_obj->fromEmail ) ) {
395
+ $instance->setFromEmail( trim( $json_obj->fromEmail ) );
396
+ }
397
+
398
+ if ( isset( $json_obj->fromName ) ) {
399
+ $instance->setFromName( trim( $json_obj->fromName ) );
400
+ }
401
+
402
+ if ( isset( $json_obj->replayTo ) ) {
403
+ $instance->setReplayTo( trim( $json_obj->replayTo ) );
404
+ }
405
+
406
+ if ( isset( $json_obj->cc ) ) {
407
+ $instance->setCc( trim( $json_obj->cc ) );
408
+ }
409
+
410
+ if ( isset( $json_obj->bcc ) ) {
411
+ $instance->setBcc( trim( $json_obj->bcc ) );
412
+ }
413
+
414
+ if ( isset( $json_obj->metaData ) ) {
415
+ $instance->setMetaData( trim( $json_obj->metaData ) );
416
+ }
417
+
418
  }
419
 
420
  return $instance;
editor/project.php CHANGED
@@ -140,6 +140,7 @@ class Brizy_Editor_Project implements Serializable {
140
  }
141
  } catch ( Exception $e ) {
142
  Brizy_Logger::instance()->exception( $e );
 
143
  }
144
 
145
  return self::$instance[ $wp_post->ID ] = new self( $wp_post );
@@ -178,15 +179,14 @@ class Brizy_Editor_Project implements Serializable {
178
  * @throws Exception
179
  */
180
  private static function createPost() {
181
- $post_id = wp_insert_post( array(
182
- 'post_type' => self::BRIZY_PROJECT,
183
- 'post_title' => 'Brizy Project',
184
- 'post_status' => 'publish',
185
- 'comment_status' => 'closed',
186
- 'ping_status' => 'closed'
187
- ) );
188
 
189
- Brizy_Logger::instance()->notice( 'Create new project', array( 'id' => $post_id ) );
 
 
 
 
 
 
190
 
191
  $project_data = array(
192
  'id' => md5( uniqid( 'Local project', true ) ),
@@ -202,13 +202,23 @@ class Brizy_Editor_Project implements Serializable {
202
  'signature' => Brizy_Editor_Signature::get(),
203
  'accounts' => array(),
204
  'forms' => array(),
205
- 'data' => base64_encode( file_get_contents( Brizy_Editor_UrlBuilder::editor_build_path( 'defaults.json' ) ) ),
206
  'brizy-license-key' => null,
207
  'brizy-cloud-token' => null,
208
  'brizy-cloud-project' => null,
209
  'image-optimizer-settings' => array(),
210
  );
211
 
 
 
 
 
 
 
 
 
 
 
212
 
213
  $storage = Brizy_Editor_Storage_Project::instance( $post_id );
214
  $storage->loadStorage( $project_data );
140
  }
141
  } catch ( Exception $e ) {
142
  Brizy_Logger::instance()->exception( $e );
143
+ throw $e;
144
  }
145
 
146
  return self::$instance[ $wp_post->ID ] = new self( $wp_post );
179
  * @throws Exception
180
  */
181
  private static function createPost() {
 
 
 
 
 
 
 
182
 
183
+ $defaultJsonPath = Brizy_Editor_UrlBuilder::editor_build_path( 'defaults.json' );
184
+
185
+ if ( ! file_exists( $defaultJsonPath ) ) {
186
+ $message = 'Failed to create the default project data. ' . $defaultJsonPath . ' was not found. ';
187
+ Brizy_Logger::instance()->critical( $message, [ $message ] );
188
+ throw new Exception( $message );
189
+ }
190
 
191
  $project_data = array(
192
  'id' => md5( uniqid( 'Local project', true ) ),
202
  'signature' => Brizy_Editor_Signature::get(),
203
  'accounts' => array(),
204
  'forms' => array(),
205
+ 'data' => base64_encode( file_get_contents( $defaultJsonPath ) ),
206
  'brizy-license-key' => null,
207
  'brizy-cloud-token' => null,
208
  'brizy-cloud-project' => null,
209
  'image-optimizer-settings' => array(),
210
  );
211
 
212
+ $post_id = wp_insert_post( array(
213
+ 'post_type' => self::BRIZY_PROJECT,
214
+ 'post_title' => 'Brizy Project',
215
+ 'post_status' => 'publish',
216
+ 'comment_status' => 'closed',
217
+ 'ping_status' => 'closed'
218
+ ) );
219
+
220
+ Brizy_Logger::instance()->notice( 'Create new project', array( 'id' => $post_id ) );
221
+
222
 
223
  $storage = Brizy_Editor_Storage_Project::instance( $post_id );
224
  $storage->loadStorage( $project_data );
public/editor-build/{defaults.json → 126-wp/defaults.json} RENAMED
File without changes
public/editor-build/126-wp/editor/css/editor.css ADDED
@@ -0,0 +1,11889 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @import url(https://fonts.googleapis.com/css?family=Lato&display=swap);.brz-ow-hidden{overflow:hidden!important}
2
+ .brz-ow-visible{overflow:visible!important}
3
+ @font-face{font-family:iowanoldst_btroman;src:url(../fonts/iowaosrm-webfont.woff);src:url(../fonts/iowaosrm-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/iowaosrm-webfont.woff2) format("woff2"),url(../fonts/iowaosrm-webfont.woff) format("woff"),url(../fonts/iowaosrm-webfont.ttf) format("truetype");font-weight:400;font-style:normal}
4
+ @font-face{font-family:europa;src:url(../fonts/europa-regular-webfont.woff);src:url(../fonts/europa-regular-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/europa-regular-webfont.woff2) format("woff2"),url(../fonts/europa-regular-webfont.woff) format("woff"),url(../fonts/europa-regular-webfont.ttf) format("truetype");font-weight:400;font-style:normal}
5
+ @font-face{font-family:europa;src:url(../fonts/europa-bold-webfont.woff);src:url(../fonts/europa-bold-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/europa-bold-webfont.woff2) format("woff2"),url(../fonts/europa-bold-webfont.woff) format("woff"),url(../fonts/europa-bold-webfont.ttf) format("truetype");font-weight:700;font-style:normal}
6
+ @font-face{font-family:europa;src:url(../fonts/europa-light-webfont.woff);src:url(../fonts/europa-light-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/europa-light-webfont.woff2) format("woff2"),url(../fonts/europa-light-webfont.woff) format("woff"),url(../fonts/europa-light-webfont.ttf) format("truetype");font-weight:300;font-style:normal}
7
+ @font-face{font-family:pn;src:url(../fonts/pn-regular-webfont.eot);src:url(../fonts/pn-regular-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/pn-regular-webfont.woff2) format("woff2"),url(../fonts/pn-regular-webfont.woff) format("woff"),url(../fonts/pn-regular-webfont.svg) format("svg");font-weight:400;font-style:normal}
8
+ @font-face{font-family:pn;src:url(../fonts/pn-medium-webfont.eot);src:url(../fonts/pn-medium-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/pn-medium-webfont.woff2) format("woff2"),url(../fonts/pn-medium-webfont.woff) format("woff"),url(../fonts/pn-medium-webfont.svg) format("svg");font-weight:600;font-style:normal}
9
+ @font-face{font-family:pn;src:url(../fonts/pn-bold-webfont.eot);src:url(../fonts/pn-bold-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/pn-bold-webfont.woff2) format("woff2"),url(../fonts/pn-bold-webfont.woff) format("woff"),url(../fonts/pn-bold-webfont.svg) format("svg");font-weight:700;font-style:normal}
10
+ .brz-ed-sorting{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:move}
11
+ .brz-ed-sorting *{pointer-events:none}
12
+ .brz-ed-sorting .brz-ed-draggable{display:none}
13
+ .brz-ed-sorting .sortable-hovered:not(.brz-ed-border__sortable):not(.brz-ed-container-trigger){position:relative}
14
+ .brz-ed-sorting .sortable-hovered.brz-ed-container-trigger{background-color:#03080f}
15
+ .brz-ed-sorting .sortable-hovered.brz-ed-container-trigger:after{opacity:1!important;background-color:#fff!important}
16
+ .brz-ed-sorting .sortable-chosen:after,.brz-ed-sorting .sortable-chosen:before{display:none}
17
+ .brz-ed-sorting .sortable-chosen :not(.brz-ed-border){visibility:hidden!important}
18
+ .brz-ed-sorting .sortable-chosen>.brz-ed-border.brz-ed-border--grey>.brz-ed-border__inner{border-color:#879294}
19
+ .brz-ed-sorting .sortable-chosen>.brz-ed-border.brz-ed-border--blue>.brz-ed-border__inner{border-color:#3dbfe8}
20
+ .brz-ed-sorting .sortable-chosen>.brz-ed-border.brz-ed-border--red>.brz-ed-border__inner{border-color:#ed2164}
21
+ .brz-ed-sorting .sortable-chosen>.brz-ed-border>.brz-ed-border__inner{top:-1px;bottom:-1px;visibility:visible!important}
22
+ .brz-ed-sorting .sortable-chosen.brz-columns__posts>.brz-ed-border>.brz-ed-border__inner{top:-2px;bottom:-2px}
23
+ .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}
24
+ .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}
25
+ .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}
26
+ .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}
27
+ .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}
28
+ .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}
29
+ .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}
30
+ .brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty).brz-row{margin-top:5px;margin-bottom:5px}
31
+ .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}
32
+ .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}
33
+ .brz-ed-sorting .sortable-hovered-left:after,.brz-ed-sorting .sortable-hovered-right:after{top:0;width:2px;height:100%}
34
+ .brz-ed-sorting .sortable-hovered-left>.brz-ed-border.brz-ed-border--grey>.brz-ed-border__inner{border-left-color:#879294}
35
+ .brz-ed-sorting .sortable-hovered-left>.brz-ed-border.brz-ed-border--blue>.brz-ed-border__inner{border-left-color:#3dbfe8}
36
+ .brz-ed-sorting .sortable-hovered-left>.brz-ed-border.brz-ed-border--red>.brz-ed-border__inner{border-left-color:#ed2164}
37
+ .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}
38
+ .brz-ed-sorting .sortable-hovered-right>.brz-ed-border.brz-ed-border--grey>.brz-ed-border__inner{border-right-color:#879294}
39
+ .brz-ed-sorting .sortable-hovered-right>.brz-ed-border.brz-ed-border--blue>.brz-ed-border__inner{border-right-color:#3dbfe8}
40
+ .brz-ed-sorting .sortable-hovered-right>.brz-ed-border.brz-ed-border--red>.brz-ed-border__inner{border-right-color:#ed2164}
41
+ .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}
42
+ .sortable-helper{width:30px;height:30px;border-radius:50%;background-color:#3dbfe8;cursor:move}
43
+ .sortable-placeholder{outline:1px solid #3dbfe8}
44
+ .brz-ed .brz-ed-sortable--empty{position:relative;min-height:125px;width:calc(100% - 20px);height:calc(100% - 20px);margin:10px}
45
+ .brz-ed .brz-ed-sortable--empty .brz-ed-border__inner{opacity:.6}
46
+ .brz-ed .brz-ed-sortable--empty .brz-ed-border--grey{border-color:#879294}
47
+ .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}
48
+ /*!
49
+ * jQuery mmenu v7.3.3
50
+ * @requires jQuery 1.7.0 or later
51
+ *
52
+ * mmenujs.com
53
+ *
54
+ * Copyright (c) Fred Heusschen
55
+ * www.frebsite.nl
56
+ *
57
+ * License: CC-BY-NC-4.0
58
+ * http://creativecommons.org/licenses/by-nc/4.0/
59
+ */.mm-menu{--mm-line-height:20px;--mm-listitem-size:44px;--mm-navbar-size:44px;--mm-offset-top:0;--mm-offset-right:0;--mm-offset-bottom:0;--mm-offset-left:0;--mm-color-border:rgba(0, 0, 0, 0.1);--mm-color-button:rgba(0, 0, 0, 0.3);--mm-color-text:rgba(0, 0, 0, 0.75);--mm-color-text-dimmed:rgba(0, 0, 0, 0.3);--mm-color-background:#f3f3f3;--mm-color-background-highlight:rgba(0, 0, 0, 0.05);--mm-color-background-emphasis:rgba(255, 255, 255, 0.4);--mm-shadow:0 0 10px rgba( 0,0,0, 0.3 )}
60
+ .mm-hidden{display:none!important}
61
+ .mm-wrapper{overflow-x:hidden;position:relative}
62
+ .mm-menu{background:#f3f3f3;border-color:rgba(0,0,0,.1);color:rgba(0,0,0,.75);background:var(--mm-color-background);border-color:var(--mm-color-border);color:var(--mm-color-text);line-height:20px;line-height:var(--mm-line-height);-webkit-box-sizing:border-box;box-sizing:border-box;display:block;padding:0;margin:0;position:absolute;z-index:0;top:0;right:0;bottom:0;left:0;top:var(--mm-offset-top);right:var(--mm-offset-right);bottom:var(--mm-offset-bottom);left:var(--mm-offset-left);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
63
+ .mm-menu a,.mm-menu a:active,.mm-menu a:hover,.mm-menu a:link,.mm-menu a:visited{color:inherit;text-decoration:none}
64
+ [dir=rtl] .mm-menu{direction:rtl}
65
+ .mm-panels,.mm-panels>.mm-panel{position:absolute;left:0;right:0;top:0;bottom:0;z-index:0}
66
+ .mm-panel,.mm-panels{-webkit-box-sizing:border-box;box-sizing:border-box;background:#f3f3f3;border-color:rgba(0,0,0,.1);color:rgba(0,0,0,.75);background:var(--mm-color-background);border-color:var(--mm-color-border);color:var(--mm-color-text)}
67
+ .mm-panels{overflow:hidden}
68
+ .mm-panel{-webkit-overflow-scrolling:touch;overflow:scroll;overflow-x:hidden;overflow-y:auto;width:100%;padding:0 20px;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);-webkit-transition:-webkit-transform .4s ease;transition:-webkit-transform .4s ease;transition:transform .4s ease;transition:transform .4s ease,-webkit-transform .4s ease;transition:transform .4s ease,-webkit-transform .4s ease}
69
+ .mm-panel:not(.mm-hidden){display:block}
70
+ .mm-panel:after,.mm-panel:before{content:'';display:block;height:20px}
71
+ .mm-panel_has-navbar{padding-top:44px;padding-top:var(--mm-navbar-size)}
72
+ .mm-panel_opened{z-index:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
73
+ .mm-panel_opened-parent{-webkit-transform:translate3d(-30%,0,0);transform:translate3d(-30%,0,0)}
74
+ .mm-panel_highest{z-index:2}
75
+ .mm-panel_noanimation{-webkit-transition:none!important;transition:none!important}
76
+ .mm-panel_noanimation.mm-panel_opened-parent{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
77
+ [dir=rtl] .mm-panel:not(.mm-panel_opened){-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}
78
+ [dir=rtl] .mm-panel.mm-panel_opened-parent{-webkit-transform:translate3d(30%,0,0);transform:translate3d(30%,0,0)}
79
+ .mm-listitem_vertical>.mm-panel{-webkit-transform:none!important;transform:none!important;display:none;width:100%;padding:10px 0 10px 10px}
80
+ .mm-listitem_vertical>.mm-panel:after,.mm-listitem_vertical>.mm-panel:before{content:none;display:none}
81
+ .mm-listitem_opened>.mm-panel{display:block}
82
+ .mm-listitem_vertical>.mm-listitem__btn{height:44px;height:var(--mm-listitem-size);bottom:auto}
83
+ .mm-listitem_vertical .mm-listitem:last-child:after{border-color:transparent}
84
+ .mm-listitem_opened>.mm-listitem__btn:after{-webkit-transform:rotate(225deg);transform:rotate(225deg);right:19px}
85
+ .mm-btn{-webkit-box-sizing:border-box;box-sizing:border-box;width:44px;padding:0}
86
+ .mm-btn:after,.mm-btn:before{border-color:rgba(0,0,0,.1);border-color:var(--mm-color-button);border-width:2px;border-style:solid}
87
+ .mm-btn_close:after,.mm-btn_close:before{content:'';-webkit-box-sizing:content-box;box-sizing:content-box;display:block;width:5px;height:5px;margin:auto;position:absolute;top:0;bottom:0;-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}
88
+ .mm-btn_close:before{border-right:none;border-bottom:none;right:18px}
89
+ .mm-btn_close:after{border-left:none;border-top:none;right:25px}
90
+ .mm-btn_next:after,.mm-btn_prev:before{content:'';border-bottom:none;border-right:none;-webkit-box-sizing:content-box;box-sizing:content-box;display:block;width:8px;height:8px;margin:auto;position:absolute;top:0;bottom:0}
91
+ .mm-btn_prev:before{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);left:23px;right:auto}
92
+ .mm-btn_next:after{-webkit-transform:rotate(135deg);transform:rotate(135deg);right:23px;left:auto}
93
+ [dir=rtl] .mm-btn_next:after{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);left:23px;right:auto}
94
+ [dir=rtl] .mm-btn_prev:before{-webkit-transform:rotate(135deg);transform:rotate(135deg);right:23px;left:auto}
95
+ [dir=rtl] .mm-btn_close:after,[dir=rtl] .mm-btn_close:before{right:auto}
96
+ [dir=rtl] .mm-btn_close:before{left:25px}
97
+ [dir=rtl] .mm-btn_close:after{left:18px}
98
+ .mm-navbar{background:#f3f3f3;border-color:rgba(0,0,0,.1);color:rgba(0,0,0,.3);background:var(--mm-color-background);border-color:var(--mm-color-border);color:var(--mm-color-text-dimmed);border-bottom-width:1px;border-bottom-style:solid;text-align:center;display:none;height:44px;height:var(--mm-navbar-size);padding:0 44px;margin:0;position:absolute;top:0;left:0;right:0;opacity:1;-webkit-transition:opacity .4s ease;transition:opacity .4s ease}
99
+ .mm-navbar>*{-webkit-box-sizing:border-box;box-sizing:border-box;display:block;padding:12px;padding:calc((var(--mm-navbar-size) - var(--mm-line-height)) * .5);padding-left:0;padding-right:0}
100
+ .mm-navbar a,.mm-navbar a:hover{text-decoration:none}
101
+ .mm-navbar__title{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}
102
+ .mm-navbar__btn{position:absolute;top:0;bottom:0;z-index:1}
103
+ .mm-navbar__btn:first-child{text-align:left;left:0}
104
+ .mm-navbar__btn:last-child{text-align:right;right:0}
105
+ .mm-panel_has-navbar .mm-navbar{display:block}
106
+ [dir=rtl] .mm-navbar__btn:first-child{text-align:right;right:0;left:auto}
107
+ [dir=rtl] .mm-navbar__btn:last-child{text-align:left;left:0;right:auto}
108
+ .mm-listitem,.mm-listview{list-style:none;display:block;padding:0;margin:0}
109
+ .mm-listitem{color:rgba(0,0,0,.75);color:var(--mm-color-text);border-color:rgba(0,0,0,.1);border-color:var(--mm-color-border);position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}
110
+ .mm-listitem:after{content:'';border-color:inherit;border-bottom-width:1px;border-bottom-style:solid;display:block;position:absolute;left:20px;right:0;bottom:0}
111
+ .mm-listitem a,.mm-listitem a:hover{text-decoration:none}
112
+ .mm-listitem__btn,.mm-listitem__text{color:inherit;display:block;padding-top:12px;padding-top:calc((var(--mm-listitem-size) - var(--mm-line-height))/ 2);padding-bottom:12px;padding-bottom:calc((var(--mm-listitem-size) - var(--mm-line-height))/ 2)}
113
+ .mm-listitem__text{text-overflow:ellipsis;white-space:nowrap;overflow:hidden;padding-left:20px;padding-right:10px;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-ms-flex-preferred-size:10%;flex-basis:10%}
114
+ .mm-listitem__btn{-webkit-tap-highlight-color:rgba(255,255,255,.4);tap-highlight-color:rgba(255,255,255,.4);-webkit-tap-highlight-color:var(--mm-color-background-emphasis);tap-highlight-color:var(--mm-color-background-emphasis);background:rgba(3,2,1,0);border-color:inherit;width:auto;padding-right:54px;position:relative}
115
+ .mm-listitem__btn:not(.mm-listitem__text){border-left-width:1px;border-left-style:solid}
116
+ .mm-listitem_selected>.mm-listitem__text{background:rgba(255,255,255,.4);background:var(--mm-color-background-emphasis)}
117
+ .mm-listitem_opened>.mm-listitem__btn,.mm-listitem_opened>.mm-panel{background:rgba(0,0,0,.05);background:var(--mm-color-background-highlight)}
118
+ .mm-panels>.mm-panel>.mm-listview{margin:20px -20px}
119
+ .mm-panels>.mm-panel>.mm-listview:first-child,.mm-panels>.mm-panel>.mm-navbar+.mm-listview{margin-top:-20px}
120
+ .mm-listitem_divider{text-overflow:ellipsis;white-space:nowrap;overflow:hidden;background:rgba(0,0,0,.05);background:var(--mm-color-background-highlight);font-size:75%;text-transform:uppercase;min-height:20px;min-height:var(--mm-line-height);padding:6.5px;padding:calc(((var(--mm-listitem-size) * .75) - var(--mm-line-height)) * .5);padding-right:10px;padding-left:20px}
121
+ .mm-listitem_spacer{padding-top:44px;padding-top:var(--mm-listitem-size)}
122
+ .mm-listitem_spacer>.mm-btn_next{top:44px;top:var(--mm-listitem-size)}
123
+ [dir=rtl] .mm-listitem:after{left:0;right:20px}
124
+ [dir=rtl] .mm-listitem__text{padding-left:10px;padding-right:20px}
125
+ [dir=rtl] .mm-listitem__btn{padding-left:54px;border-left-width:0;border-left-style:none}
126
+ [dir=rtl] .mm-listitem__btn:not(.mm-listitem__text){padding-right:0;border-right-width:1px;border-right-style:solid}
127
+ .mm-page{-webkit-box-sizing:border-box;box-sizing:border-box;position:relative}
128
+ .mm-slideout{-webkit-transition:-webkit-transform .4s ease;transition:-webkit-transform .4s ease;transition:transform .4s ease;transition:transform .4s ease,-webkit-transform .4s ease;transition:transform .4s ease,-webkit-transform .4s ease;z-index:1}
129
+ .mm-wrapper_opened{overflow-x:hidden;position:relative}
130
+ .mm-wrapper_background .mm-page{background:inherit}
131
+ .mm-menu_offcanvas{display:none;position:fixed;right:auto;z-index:0}
132
+ .mm-menu_offcanvas.mm-menu_opened{display:block}
133
+ .mm-menu_offcanvas{width:80%;min-width:240px;max-width:440px}
134
+ .mm-wrapper_opening .mm-menu_offcanvas.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(80vw,0,0);transform:translate3d(80vw,0,0)}
135
+ @media all and (max-width:300px){.mm-wrapper_opening .mm-menu_offcanvas.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(240px,0,0);transform:translate3d(240px,0,0)}}@media all and (min-width:550px){.mm-wrapper_opening .mm-menu_offcanvas.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(440px,0,0);transform:translate3d(440px,0,0)}}.mm-wrapper__blocker{background:rgba(3,2,1,0);overflow:hidden;display:none;width:100%;height:100%;position:fixed;top:0;left:0;z-index:2}
136
+ .mm-wrapper_blocking{overflow:hidden}
137
+ .mm-wrapper_blocking body{overflow:hidden}
138
+ .mm-wrapper_blocking .mm-wrapper__blocker{display:block}
139
+ .mm-sronly{border:0!important;clip:rect(1px,1px,1px,1px)!important;-webkit-clip-path:inset(50%)!important;clip-path:inset(50%)!important;white-space:nowrap!important;width:1px!important;min-width:1px!important;height:1px!important;min-height:1px!important;padding:0!important;overflow:hidden!important;position:absolute!important}
140
+ .mm-menu_autoheight{-webkit-transition:none .4s ease;transition:none .4s ease;-webkit-transition-property:height,-webkit-transform;transition-property:height,-webkit-transform;transition-property:transform,height;transition-property:transform,height,-webkit-transform}
141
+ .mm-menu_autoheight:not(.mm-menu_offcanvas){position:relative}
142
+ .mm-menu_autoheight.mm-menu_position-bottom,.mm-menu_autoheight.mm-menu_position-top{max-height:80%}
143
+ .mm-menu_autoheight-measuring .mm-panel{display:block!important}
144
+ .mm-menu_autoheight-measuring .mm-listitem_vertical:not(.mm-listitem_opened) .mm-panel{display:none!important}
145
+ .mm-menu_autoheight-measuring .mm-panels>.mm-panel{bottom:auto!important;height:auto!important}
146
+ [class*=mm-menu_columns-]{-webkit-transition-property:width;transition-property:width}
147
+ [class*=mm-menu_columns-] .mm-panels>.mm-panel{right:auto;-webkit-transition-property:width,-webkit-transform;transition-property:width,-webkit-transform;transition-property:width,transform;transition-property:width,transform,-webkit-transform}
148
+ [class*=mm-menu_columns-] .mm-panels>.mm-panel_opened,[class*=mm-menu_columns-] .mm-panels>.mm-panel_opened-parent{display:block!important}
149
+ [class*=mm-panel_columns-]{border-right:1px solid;border-color:inherit}
150
+ .mm-menu_columns-1 .mm-panel_columns-0,.mm-menu_columns-2 .mm-panel_columns-1,.mm-menu_columns-3 .mm-panel_columns-2,.mm-menu_columns-4 .mm-panel_columns-3{border-right:none}
151
+ [class*=mm-menu_columns-] .mm-panels>.mm-panel_columns-0{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
152
+ .mm-menu_columns-0 .mm-panels>.mm-panel{z-index:0}
153
+ .mm-menu_columns-0 .mm-panels>.mm-panel else{width:100%}
154
+ .mm-menu_columns-0 .mm-panels>.mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent){-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}
155
+ .mm-menu_columns-0{width:80%;min-width:240px;max-width:0}
156
+ .mm-wrapper_opening .mm-menu_columns-0.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(80vw,0,0);transform:translate3d(80vw,0,0)}
157
+ @media all and (max-width:300px){.mm-wrapper_opening .mm-menu_columns-0.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(240px,0,0);transform:translate3d(240px,0,0)}}@media all and (min-width:0px){.mm-wrapper_opening .mm-menu_columns-0.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.mm-wrapper_opening .mm-menu_columns-0.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-80vw,0,0);transform:translate3d(-80vw,0,0)}
158
+ @media all and (max-width:300px){.mm-wrapper_opening .mm-menu_columns-0.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-240px,0,0);transform:translate3d(-240px,0,0)}}@media all and (min-width:0px){.mm-wrapper_opening .mm-menu_columns-0.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}[class*=mm-menu_columns-] .mm-panels>.mm-panel_columns-1{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}
159
+ .mm-menu_columns-1 .mm-panels>.mm-panel{z-index:1;width:100%}
160
+ .mm-menu_columns-1 .mm-panels>.mm-panel else{width:100%}
161
+ .mm-menu_columns-1 .mm-panels>.mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent){-webkit-transform:translate3d(200%,0,0);transform:translate3d(200%,0,0)}
162
+ .mm-menu_columns-1{width:80%;min-width:240px;max-width:440px}
163
+ .mm-wrapper_opening .mm-menu_columns-1.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(80vw,0,0);transform:translate3d(80vw,0,0)}
164
+ @media all and (max-width:300px){.mm-wrapper_opening .mm-menu_columns-1.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(240px,0,0);transform:translate3d(240px,0,0)}}@media all and (min-width:550px){.mm-wrapper_opening .mm-menu_columns-1.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(440px,0,0);transform:translate3d(440px,0,0)}}.mm-wrapper_opening .mm-menu_columns-1.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-80vw,0,0);transform:translate3d(-80vw,0,0)}
165
+ @media all and (max-width:300px){.mm-wrapper_opening .mm-menu_columns-1.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-240px,0,0);transform:translate3d(-240px,0,0)}}@media all and (min-width:550px){.mm-wrapper_opening .mm-menu_columns-1.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-440px,0,0);transform:translate3d(-440px,0,0)}}[class*=mm-menu_columns-] .mm-panels>.mm-panel_columns-2{-webkit-transform:translate3d(200%,0,0);transform:translate3d(200%,0,0)}
166
+ .mm-menu_columns-2 .mm-panels>.mm-panel{z-index:2;width:50%}
167
+ .mm-menu_columns-2 .mm-panels>.mm-panel else{width:100%}
168
+ .mm-menu_columns-2 .mm-panels>.mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent){-webkit-transform:translate3d(300%,0,0);transform:translate3d(300%,0,0)}
169
+ .mm-menu_columns-2{width:80%;min-width:240px;max-width:880px}
170
+ .mm-wrapper_opening .mm-menu_columns-2.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(80vw,0,0);transform:translate3d(80vw,0,0)}
171
+ @media all and (max-width:300px){.mm-wrapper_opening .mm-menu_columns-2.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(240px,0,0);transform:translate3d(240px,0,0)}}@media all and (min-width:1100px){.mm-wrapper_opening .mm-menu_columns-2.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(880px,0,0);transform:translate3d(880px,0,0)}}.mm-wrapper_opening .mm-menu_columns-2.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-80vw,0,0);transform:translate3d(-80vw,0,0)}
172
+ @media all and (max-width:300px){.mm-wrapper_opening .mm-menu_columns-2.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-240px,0,0);transform:translate3d(-240px,0,0)}}@media all and (min-width:1100px){.mm-wrapper_opening .mm-menu_columns-2.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-880px,0,0);transform:translate3d(-880px,0,0)}}[class*=mm-menu_columns-] .mm-panels>.mm-panel_columns-3{-webkit-transform:translate3d(300%,0,0);transform:translate3d(300%,0,0)}
173
+ .mm-menu_columns-3 .mm-panels>.mm-panel{z-index:3;width:33.34%}
174
+ .mm-menu_columns-3 .mm-panels>.mm-panel else{width:100%}
175
+ .mm-menu_columns-3 .mm-panels>.mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent){-webkit-transform:translate3d(400%,0,0);transform:translate3d(400%,0,0)}
176
+ .mm-menu_columns-3{width:80%;min-width:240px;max-width:1320px}
177
+ .mm-wrapper_opening .mm-menu_columns-3.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(80vw,0,0);transform:translate3d(80vw,0,0)}
178
+ @media all and (max-width:300px){.mm-wrapper_opening .mm-menu_columns-3.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(240px,0,0);transform:translate3d(240px,0,0)}}@media all and (min-width:1650px){.mm-wrapper_opening .mm-menu_columns-3.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(1320px,0,0);transform:translate3d(1320px,0,0)}}.mm-wrapper_opening .mm-menu_columns-3.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-80vw,0,0);transform:translate3d(-80vw,0,0)}
179
+ @media all and (max-width:300px){.mm-wrapper_opening .mm-menu_columns-3.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-240px,0,0);transform:translate3d(-240px,0,0)}}@media all and (min-width:1650px){.mm-wrapper_opening .mm-menu_columns-3.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-1320px,0,0);transform:translate3d(-1320px,0,0)}}[class*=mm-menu_columns-] .mm-panels>.mm-panel_columns-4{-webkit-transform:translate3d(400%,0,0);transform:translate3d(400%,0,0)}
180
+ .mm-menu_columns-4 .mm-panels>.mm-panel{z-index:4;width:25%}
181
+ .mm-menu_columns-4 .mm-panels>.mm-panel else{width:100%}
182
+ .mm-menu_columns-4 .mm-panels>.mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent){-webkit-transform:translate3d(500%,0,0);transform:translate3d(500%,0,0)}
183
+ .mm-menu_columns-4{width:80%;min-width:240px;max-width:1760px}
184
+ .mm-wrapper_opening .mm-menu_columns-4.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(80vw,0,0);transform:translate3d(80vw,0,0)}
185
+ @media all and (max-width:300px){.mm-wrapper_opening .mm-menu_columns-4.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(240px,0,0);transform:translate3d(240px,0,0)}}@media all and (min-width:2200px){.mm-wrapper_opening .mm-menu_columns-4.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(1760px,0,0);transform:translate3d(1760px,0,0)}}.mm-wrapper_opening .mm-menu_columns-4.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-80vw,0,0);transform:translate3d(-80vw,0,0)}
186
+ @media all and (max-width:300px){.mm-wrapper_opening .mm-menu_columns-4.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-240px,0,0);transform:translate3d(-240px,0,0)}}@media all and (min-width:2200px){.mm-wrapper_opening .mm-menu_columns-4.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-1760px,0,0);transform:translate3d(-1760px,0,0)}}[class*=mm-menu_columns-].mm-menu_position-bottom,[class*=mm-menu_columns-].mm-menu_position-top{width:100%;max-width:100%;min-width:100%}
187
+ .mm-wrapper_opening [class*=mm-menu_columns-].mm-menu_position-front{-webkit-transition-property:width,min-width,max-width,-webkit-transform;transition-property:width,min-width,max-width,-webkit-transform;transition-property:width,min-width,max-width,transform;transition-property:width,min-width,max-width,transform,-webkit-transform}
188
+ .mm-counter{color:rgba(0,0,0,.3);color:var(--mm-color-text-dimmed);text-align:right;display:block;min-width:44px;float:right}
189
+ .mm-listitem_nosubitems>.mm-counter{display:none}
190
+ [dir=rtl] .mm-counter{text-align:left;float:left}
191
+ .mm-listitem_divider{opacity:1;-webkit-transition:opacity .4s ease;transition:opacity .4s ease}
192
+ .mm-menu_dividers-light .mm-listitem_divider{background:inherit;font-size:inherit;color:rgba(0,0,0,.3);color:var(--mm-color-text-dimmed);padding-top:18px;padding-top:calc((var(--mm-listitem-size) - var(--mm-line-height)) * .75);padding-bottom:6px;padding-bottom:calc((var(--mm-listitem-size) - var(--mm-line-height)) * .25)}
193
+ .mm-menu_border-none .mm-listitem_divider{border-top-width:1px;border-top-style:solid}
194
+ .mm-listview_fixeddivider{background:inherit;display:none;width:100%;position:absolute;top:0;left:0;right:0;z-index:10}
195
+ .mm-listview_fixeddivider:after{content:none!important;display:none!important}
196
+ .mm-panel_dividers .mm-listview_fixeddivider{display:block}
197
+ .mm-wrapper_opened.mm-dragging .mm-menu,.mm-wrapper_opened.mm-dragging .mm-slideout{-webkit-transition-duration:0s;transition-duration:0s}
198
+ .mm-menu_dropdown{-webkit-box-shadow:0 2px 10px rgba(0,0,0,.3);box-shadow:0 2px 10px rgba(0,0,0,.3);height:80%;overflow:visible}
199
+ .mm-wrapper_dropdown .mm-slideout{-webkit-transform:none!important;transform:none!important;z-index:0}
200
+ .mm-wrapper_dropdown .mm-wrapper__blocker{-webkit-transition-delay:0s!important;transition-delay:0s!important;z-index:1}
201
+ .mm-wrapper_dropdown .mm-menu_dropdown{z-index:2}
202
+ .mm-wrapper_dropdown.mm-wrapper_opened:not(.mm-wrapper_opening) .mm-menu_dropdown{display:none}
203
+ [class*=mm-menu_tip-]:before{content:'';background:inherit;-webkit-box-shadow:0 2px 10px rgba(0,0,0,.3);box-shadow:0 2px 10px rgba(0,0,0,.3);display:block;width:15px;height:15px;position:absolute;z-index:0;-webkit-transform:rotate(45deg);transform:rotate(45deg)}
204
+ .mm-menu_tip-left:before{left:22px}
205
+ .mm-menu_tip-right:before{right:22px}
206
+ .mm-menu_tip-top:before{top:-8px}
207
+ .mm-menu_tip-bottom:before{bottom:-8px}
208
+ .mm-menu{--mm-iconbar-size:44px}
209
+ .mm-iconbar{color:rgba(0,0,0,.3);color:var(--mm-color-text-dimmed);border:0 solid rgba(0,0,0,.1);border-color:var(--mm-color-border);border-right-width:1px;text-align:center;overflow:hidden;-webkit-box-sizing:border-box;box-sizing:border-box;width:44px;width:var(--mm-iconbar-size);position:absolute;top:0;left:0;bottom:0;z-index:2}
210
+ .mm-menu_iconbar .mm-navbars_bottom,.mm-menu_iconbar .mm-navbars_top,.mm-menu_iconbar .mm-panels{left:44px;left:var(--mm-iconbar-size)}
211
+ .mm-iconbar__bottom,.mm-iconbar__top{width:inherit;position:absolute}
212
+ .mm-iconbar__bottom>*,.mm-iconbar__top>*{-webkit-box-sizing:border-box;box-sizing:border-box;display:block;padding:11px 0}
213
+ .mm-iconbar__bottom a,.mm-iconbar__bottom a:hover,.mm-iconbar__top a,.mm-iconbar__top a:hover{text-decoration:none}
214
+ .mm-iconbar__top{top:0}
215
+ .mm-iconbar__bottom{bottom:0}
216
+ .mm-iconbar__tab_selected{background:rgba(255,255,255,.4);background:var(--mm-color-background-emphasis)}
217
+ .mm-menu_keyboardfocus a:focus,.mm-menu_keyboardfocus.mm-menu_opened~.mm-wrapper__blocker a:focus{outline:0;background:rgba(255,255,255,.4);background:var(--mm-color-background-emphasis)}
218
+ .mm-wrapper__blocker .mm-tabstart{cursor:default;display:block;width:100%;height:100%}
219
+ .mm-wrapper__blocker .mm-tabend{opacity:0;position:absolute;bottom:0}
220
+ .mm-menu{--mm-iconpanel-size:44px}
221
+ .mm-panel_iconpanel-1,.mm-panel_iconpanel-1.mm-panel_opened~.mm-listview_fixeddivider{width:calc(100% - (44px * 1));width:calc(100% - (var(--mm-iconpanel-size) * 1))}
222
+ .mm-panel_iconpanel-2,.mm-panel_iconpanel-2.mm-panel_opened~.mm-listview_fixeddivider{width:calc(100% - (44px * 2));width:calc(100% - (var(--mm-iconpanel-size) * 2))}
223
+ .mm-panel_iconpanel-3,.mm-panel_iconpanel-3.mm-panel_opened~.mm-listview_fixeddivider{width:calc(100% - (44px * 3));width:calc(100% - (var(--mm-iconpanel-size) * 3))}
224
+ .mm-panel_iconpanel-first~.mm-panel,.mm-panel_iconpanel-first~.mm-panel_opened~.mm-listview_fixeddivider{width:calc(100% - 44px);width:calc(100% - var(--mm-iconpanel-size))}
225
+ .mm-menu_iconpanel .mm-panels>.mm-listview_fixeddivider,.mm-menu_iconpanel .mm-panels>.mm-panel{left:auto;-webkit-transition-property:width,-webkit-transform;transition-property:width,-webkit-transform;transition-property:transform,width;transition-property:transform,width,-webkit-transform}
226
+ .mm-menu_iconpanel .mm-panels>.mm-panel:not(.mm-panel_iconpanel-first):not(.mm-panel_iconpanel-0){border-left-width:1px;border-left-style:solid}
227
+ .mm-menu_iconpanel .mm-panels>.mm-panel_opened,.mm-menu_iconpanel .mm-panels>.mm-panel_opened-parent{display:block!important}
228
+ .mm-menu_iconpanel .mm-panels>.mm-panel_opened-parent{overflow-y:hidden;-webkit-transform:unset;transform:unset}
229
+ .mm-menu_hidedivider .mm-panel_opened-parent .mm-listitem_divider,.mm-menu_hidenavbar .mm-panel_opened-parent .mm-navbar{opacity:0}
230
+ .mm-panel__blocker{background:inherit;opacity:0;display:block;position:absolute;top:0;right:0;left:0;z-index:3;-webkit-transition:opacity .4s ease;transition:opacity .4s ease}
231
+ .mm-panel_opened-parent .mm-panel__blocker{opacity:.6;bottom:-100000px}
232
+ [dir=rtl] .mm-menu_iconpanel .mm-panels>.mm-listview_fixeddivider,[dir=rtl] .mm-menu_iconpanel .mm-panels>.mm-panel{left:0;right:auto;-webkit-transition-property:width,-webkit-transform;transition-property:width,-webkit-transform;transition-property:transform,width;transition-property:transform,width,-webkit-transform}
233
+ [dir=rtl] .mm-menu_iconpanel .mm-panels>.mm-panel:not(.mm-panel_iconpanel-first):not(.mm-panel_iconpanel-0){border-left:none;border-right:1px solid;border-color:inherit}
234
+ .mm-navbars_bottom,.mm-navbars_top{background:inherit;border-color:inherit;border-width:0;position:absolute;left:0;right:0;z-index:1}
235
+ .mm-navbars_bottom>.mm-navbar,.mm-navbars_top>.mm-navbar{border-width:0;display:-webkit-box;display:-ms-flexbox;display:flex;position:relative}
236
+ .mm-navbars_bottom>.mm-navbar:not(.mm-navbar_has-btns),.mm-navbars_top>.mm-navbar:not(.mm-navbar_has-btns){padding:0}
237
+ .mm-navbars_bottom>.mm-navbar>:not(img):not(.mm-btn),.mm-navbars_top>.mm-navbar>:not(img):not(.mm-btn){-webkit-box-flex:1;-ms-flex:1;flex:1}
238
+ .mm-navbars_top{border-bottom-style:solid;border-bottom-width:1px;top:0;bottom:auto}
239
+ .mm-menu_navbar_top-1 .mm-panels{top:44px;top:calc(var(--mm-navbar-size) * 1)}
240
+ .mm-menu_navbar_top-2 .mm-panels{top:88px;top:calc(var(--mm-navbar-size) * 2)}
241
+ .mm-menu_navbar_top-3 .mm-panels{top:132px;top:calc(var(--mm-navbar-size) * 3)}
242
+ .mm-menu_navbar_top-4 .mm-panels{top:176px;top:calc(var(--mm-navbar-size) * 4)}
243
+ .mm-navbars_bottom{border-top-style:solid;border-top-width:1px;bottom:0;top:auto}
244
+ .mm-menu_navbar_bottom-1 .mm-panels{bottom:44px;bottom:calc(var(--mm-navbar-size) * 1)}
245
+ .mm-menu_navbar_bottom-2 .mm-panels{bottom:88px;bottom:calc(var(--mm-navbar-size) * 2)}
246
+ .mm-menu_navbar_bottom-3 .mm-panels{bottom:132px;bottom:calc(var(--mm-navbar-size) * 3)}
247
+ .mm-menu_navbar_bottom-4 .mm-panels{bottom:176px;bottom:calc(var(--mm-navbar-size) * 4)}
248
+ .mm-navbar_size-2{height:88px;height:calc(var(--mm-navbar-size) * 2)}
249
+ .mm-navbar_size-3{height:132px;height:calc(var(--mm-navbar-size) * 3)}
250
+ .mm-navbar_size-4{height:176px;height:calc(var(--mm-navbar-size) * 4)}
251
+ .mm-navbar__breadcrumbs{text-overflow:ellipsis;white-space:nowrap;overflow:hidden;-webkit-overflow-scrolling:touch;overflow-x:auto;text-align:left;padding:0 0 0 20px}
252
+ .mm-navbar__breadcrumbs>*{display:inline-block;padding-right:6px;padding-top:12px;padding-top:calc((var(--mm-navbar-size) - var(--mm-line-height)) * .5);padding-bottom:12px;padding-bottom:calc((var(--mm-navbar-size) - var(--mm-line-height)) * .5)}
253
+ .mm-navbar__breadcrumbs>a{text-decoration:underline}
254
+ .mm-navbar_has-btns .mm-navbar__breadcrumbs{margin-left:-44px}
255
+ .mm-navbar_has-btns .mm-btn:not(.mm-hidden)+.mm-navbar__breadcrumbs{margin-left:0;padding-left:0}
256
+ .mm-navbar__tab_selected{background:inherit!important;color:inherit!important;border-width:1px;border-style:solid;border-color:inherit}
257
+ .mm-navbar__tab_selected:first-child{border-left:none}
258
+ .mm-navbar__tab_selected:last-child{border-right:none}
259
+ .mm-navbars_top.mm-navbars_has-tabs .mm-navbar_tabs,.mm-navbars_top.mm-navbars_has-tabs .mm-navbar_tabs~.mm-navbar{background:inherit!important;color:inherit!important}
260
+ .mm-navbars_top .mm-navbar_tabs:not(:last-child){border-bottom-width:1px;border-bottom-style:solid}
261
+ .mm-navbars_top .mm-navbar__tab_selected{border-bottom:none;margin-bottom:-1px}
262
+ .mm-navbars_top .mm-navbar_tabs:first-child .mm-navbar__tab_selected{border-top:none}
263
+ .mm-navbars_bottom.mm-navbars_has-tabs .mm-navbar{background:inherit;color:inherit}
264
+ .mm-navbars_bottom .mm-navbar_tabs:not(:first-child){border-top-width:1px;border-top-style:solid}
265
+ .mm-navbars_bottom .mm-navbar__tab_selected{border-top:none;margin-top:-1px}
266
+ .mm-navbars_bottom .mm-navbar_tabs:last-child .mm-navbar__tab_selected{border-bottom:none}
267
+ .mm-navbar_tabs>a:not(.mm-navbar__tab_selected),.mm-navbars_bottom.mm-navbars_has-tabs .mm-navbar_tabs~.mm-navbar,.mm-navbars_top.mm-navbars_has-tabs>.mm-navbar:not(.mm-navbar_tabs){background:rgba(255,255,255,.4);background:var(--mm-color-background-emphasis);color:rgba(0,0,0,.3);color:var(--mm-color-text-dimmed)}
268
+ .mm-searchfield{display:-webkit-box;display:-ms-flexbox;display:flex;height:44px;height:var(--mm-navbar-size);padding:0;overflow:hidden}
269
+ .mm-searchfield input{border:none!important;outline:0!important;-webkit-box-shadow:none!important;box-shadow:none!important;border-radius:4px;background:rgba(0,0,0,.05);background:var(--mm-color-background-highlight);color:rgba(0,0,0,.75);color:var(--mm-color-text);font:inherit;font-size:inherit;line-height:35.2px;line-height:calc(var(--mm-navbar-size) * .7);display:block;-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;max-width:100%;height:24px;height:calc(var(--mm-navbar-size) * .7);min-height:unset;max-height:unset;margin:0;padding:0 10px}
270
+ .mm-searchfield input::-ms-clear{display:none}
271
+ .mm-searchfield__input{padding:6.6px 10px 0 10px;padding-top:calc(var(--mm-navbar-size) * .15);position:relative}
272
+ .mm-panel__noresultsmsg{color:rgba(0,0,0,.3);color:var(--mm-color-text-dimmed);text-align:center;font-size:150%;padding:44px 0}
273
+ .mm-searchfield__btn{position:absolute;right:0;top:0;bottom:0}
274
+ .mm-panel_search{left:0!important;right:0!important;width:100%!important;border-left:none!important}
275
+ .mm-searchfield__input{-webkit-box-flex:1;-ms-flex:1;flex:1;-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;max-width:100%}
276
+ .mm-searchfield__cancel{line-height:44px;line-height:var(--mm-navbar-size);text-decoration:none;display:block;padding-right:10px;margin-right:-100px;-webkit-transition:margin .4s ease;transition:margin .4s ease}
277
+ .mm-searchfield__cancel-active{margin-right:0}
278
+ .mm-panel>.mm-searchfield{width:100%;position:absolute;top:0;left:0}
279
+ .mm-panel_has-searchfield{padding-top:44px;padding-top:var(--mm-navbar-size)}
280
+ .mm-panel_has-navbar.mm-panel_has-searchfield{padding-top:88px;padding-top:calc(var(--mm-navbar-size) * 2)}
281
+ .mm-panel_has-navbar.mm-panel_has-searchfield>.mm-searchfield{top:44px;top:var(--mm-navbar-size)}
282
+ .mm-listitem_nosubitems>.mm-listitem__btn{display:none}
283
+ .mm-listitem_nosubitems>.mm-listitem__text{padding-right:10px}
284
+ .mm-sectionindexer{background:inherit;text-align:center;font-size:12px;-webkit-box-sizing:border-box;box-sizing:border-box;width:20px;position:absolute;top:0;bottom:0;right:-20px;z-index:15;-webkit-transition:right .4s ease;transition:right .4s ease;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:space-evenly;-ms-flex-pack:space-evenly;justify-content:space-evenly}
285
+ .mm-sectionindexer a{color:rgba(0,0,0,.3);color:var(--mm-color-text-dimmed);line-height:1;text-decoration:none;display:block}
286
+ .mm-sectionindexer~.mm-panels{-webkit-transition:right .4s ease;transition:right .4s ease}
287
+ .mm-menu_has-sectionindexer .mm-sectionindexer{right:0}
288
+ .mm-menu_has-sectionindexer .mm-panels{right:20px}
289
+ .mm-menu_navbar_top-1 .mm-sectionindexer{top:46px;top:calc((var(--mm-navbar-size) * 1) + 2px)}
290
+ .mm-menu_navbar_top-2 .mm-sectionindexer{top:90px;top:calc((var(--mm-navbar-size) * 2) + 2px)}
291
+ .mm-menu_navbar_top-3 .mm-sectionindexer{top:134px;top:calc((var(--mm-navbar-size) * 3) + 2px)}
292
+ .mm-menu_navbar_top-4 .mm-sectionindexer{top:178px;top:calc((var(--mm-navbar-size) * 4) + 2px)}
293
+ .mm-menu_navbar_bottom-1 .mm-sectionindexer{bottom:46px;bottom:calc((var(--mm-navbar-size) * 1) + 2px)}
294
+ .mm-menu_navbar_bottom-2 .mm-sectionindexer{bottom:90px;bottom:calc((var(--mm-navbar-size) * 2) + 2px)}
295
+ .mm-menu_navbar_bottom-3 .mm-sectionindexer{bottom:134px;bottom:calc((var(--mm-navbar-size) * 3) + 2px)}
296
+ .mm-menu_navbar_bottom-4 .mm-sectionindexer{bottom:178px;bottom:calc((var(--mm-navbar-size) * 4) + 2px)}
297
+ .mm-menu_selected-hover .mm-listitem>.mm-listitem__btn,.mm-menu_selected-hover .mm-listitem>.mm-listitem__text,.mm-menu_selected-parent .mm-listitem>.mm-listitem__btn,.mm-menu_selected-parent .mm-listitem>.mm-listitem__text{-webkit-transition:background .4s ease;transition:background .4s ease}
298
+ .mm-menu_selected-hover .mm-listview:hover>.mm-listitem_selected .mm-listitem__text{background:0 0}
299
+ .mm-menu_selected-hover .mm-listitem__btn:hover,.mm-menu_selected-hover .mm-listitem__text:hover{background:rgba(255,255,255,.4);background:var(--mm-color-background-emphasis)}
300
+ .mm-menu_selected-parent .mm-panel_opened-parent .mm-listitem:not(.mm-listitem_selected-parent) .mm-listitem__text{background:0 0}
301
+ .mm-menu_selected-parent .mm-listitem_selected-parent>.mm-listitem__btn,.mm-menu_selected-parent .mm-listitem_selected-parent>.mm-listitem__text{background:rgba(255,255,255,.4);background:var(--mm-color-background-emphasis)}
302
+ .mm-menu,.mm-slideout{--mm-sidebar-collapsed-size:44px;--mm-sidebar-expanded-size:440px}
303
+ .mm-wrapper_sidebar-collapsed body,.mm-wrapper_sidebar-expanded body{position:relative}
304
+ .mm-wrapper_sidebar-collapsed .mm-slideout,.mm-wrapper_sidebar-expanded .mm-slideout{-webkit-transition-property:width,-webkit-transform;transition-property:width,-webkit-transform;transition-property:width,transform;transition-property:width,transform,-webkit-transform}
305
+ .mm-wrapper_sidebar-collapsed .mm-page,.mm-wrapper_sidebar-expanded .mm-page{background:inherit;-webkit-box-sizing:border-box;box-sizing:border-box;min-height:100vh}
306
+ .mm-wrapper_sidebar-collapsed .mm-menu_sidebar-collapsed,.mm-wrapper_sidebar-expanded .mm-menu_sidebar-expanded{display:block!important;top:0!important;right:auto!important;bottom:0!important;left:0!important}
307
+ .mm-wrapper_sidebar-collapsed:not(.mm-wrapper_opening) .mm-menu_hidedivider .mm-listitem_divider,.mm-wrapper_sidebar-collapsed:not(.mm-wrapper_opening) .mm-menu_hidenavbar .mm-navbar{opacity:0}
308
+ .mm-wrapper_sidebar-collapsed .mm-slideout{width:calc(100% - 44px);width:calc(100% - var(--mm-sidebar-collapsed-size));-webkit-transform:translate3d(44px,0,0);transform:translate3d(44px,0,0);-webkit-transform:translate3d(var(--mm-sidebar-collapsed-size),0,0);transform:translate3d(var(--mm-sidebar-collapsed-size),0,0)}
309
+ .mm-wrapper_sidebar-expanded .mm-menu_sidebar-expanded{border-right-width:1px;border-right-style:solid;min-width:0!important;max-width:100000px!important}
310
+ .mm-wrapper_sidebar-expanded .mm-menu_sidebar-expanded.mm-menu_pageshadow:after{content:none;display:none}
311
+ .mm-wrapper_sidebar-expanded.mm-wrapper_blocking,.mm-wrapper_sidebar-expanded.mm-wrapper_blocking body{overflow:visible}
312
+ .mm-wrapper_sidebar-expanded .mm-wrapper__blocker{display:none!important}
313
+ .mm-wrapper_sidebar-expanded:not(.mm-wrapper_sidebar-closed) .mm-menu_sidebar-expanded.mm-menu_opened~.mm-slideout{width:calc(100% - 440px);width:calc(100% - var(--mm-sidebar-expanded-size));-webkit-transform:translate3d(440px,0,0);transform:translate3d(440px,0,0);-webkit-transform:translate3d(var(--mm-sidebar-expanded-size),0,0);transform:translate3d(var(--mm-sidebar-expanded-size),0,0)}
314
+ .mm-wrapper_sidebar-expanded .mm-menu_sidebar-expanded{width:440px;width:var(--mm-sidebar-expanded-size)}
315
+ .mm-menu__blocker{background:rgba(3,2,1,0);display:block;position:absolute;top:0;right:0;bottom:0;left:0;z-index:3}
316
+ .mm-menu_opened .mm-menu__blocker{display:none}
317
+ [dir=rtl].mm-wrapper_sidebar-collapsed .mm-slideout{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
318
+ [dir=rtl].mm-wrapper_sidebar-expanded .mm-slideout{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
319
+ [dir=rtl].mm-wrapper_sidebar-expanded:not(.mm-wrapper_sidebar-closed) .mm-menu_sidebar-expanded.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
320
+ label.mm-toggle{border-radius:34px;min-width:58px;width:58px;height:34px;margin:0 10px;margin-top:5px;margin-top:calc((var(--mm-listitem-size) - 34px)/ 2)}
321
+ label.mm-toggle:before{content:'';display:block;border-radius:34px;width:32px;height:32px;margin:1px}
322
+ input.mm-toggle{position:absolute;left:-10000px}
323
+ input.mm-toggle:checked~label.mm-toggle:before{float:right}
324
+ label.mm-toggle{background:rgba(0,0,0,.1);background:var(--mm-color-border)}
325
+ label.mm-toggle:before{background:#f3f3f3;background:var(--mm-color-background)}
326
+ input.mm-toggle:checked~label.mm-toggle{background:#4bd963}
327
+ label.mm-check{width:34px;height:34px}
328
+ label.mm-check:before{border-color:rgba(0,0,0,.75);border-color:var(--mm-color-text);content:'';display:block;border-left:3px solid;border-bottom:3px solid;width:40%;height:20%;margin:25% 0 0 20%;opacity:.1;-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}
329
+ input.mm-check{position:absolute;left:-10000px}
330
+ input.mm-check:checked~label.mm-check:before{opacity:1}
331
+ [dir=rtl] input.mm-toggle:checked~label.mm-toggle:before{float:left}
332
+ .mm-menu_border-none .mm-listitem:after,.mm-panel_border-none .mm-listitem:after{content:none}
333
+ .mm-menu_border-full .mm-listitem:after,.mm-panel_border-full .mm-listitem:after{left:0!important}
334
+ .mm-menu_border-offset .mm-listitem:after,.mm-panel_border-offset .mm-listitem:after{right:20px}
335
+ .mm-menu_fx-menu-zoom{-webkit-transition:-webkit-transform .4s ease;transition:-webkit-transform .4s ease;transition:transform .4s ease;transition:transform .4s ease,-webkit-transform .4s ease;transition:transform .4s ease,-webkit-transform .4s ease}
336
+ .mm-wrapper_opened .mm-menu_fx-menu-zoom{-webkit-transform:scale(.7,.7) translate3d(-30%,0,0);transform:scale(.7,.7) translate3d(-30%,0,0);-webkit-transform-origin:left center;transform-origin:left center}
337
+ .mm-wrapper_opening .mm-menu_fx-menu-zoom{-webkit-transform:scale(1,1) translate3d(0,0,0);transform:scale(1,1) translate3d(0,0,0)}
338
+ .mm-wrapper_opened .mm-menu_fx-menu-zoom.mm-menu_position-right{-webkit-transform:scale(.7,.7) translate3d(30%,0,0);transform:scale(.7,.7) translate3d(30%,0,0);-webkit-transform-origin:right center;transform-origin:right center}
339
+ .mm-wrapper_opening .mm-menu_fx-menu-zoom.mm-menu_position-right{-webkit-transform:scale(1,1) translate3d(0,0,0);transform:scale(1,1) translate3d(0,0,0)}
340
+ .mm-menu_fx-menu-slide{-webkit-transition:-webkit-transform .4s ease;transition:-webkit-transform .4s ease;transition:transform .4s ease;transition:transform .4s ease,-webkit-transform .4s ease;transition:transform .4s ease,-webkit-transform .4s ease}
341
+ .mm-wrapper_opened .mm-menu_fx-menu-slide{-webkit-transform:translate3d(-30%,0,0);transform:translate3d(-30%,0,0)}
342
+ .mm-wrapper_opening .mm-menu_fx-menu-slide{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
343
+ .mm-wrapper_opened .mm-menu_fx-menu-slide.mm-menu_position-right{-webkit-transform:translate3d(30%,0,0);transform:translate3d(30%,0,0)}
344
+ .mm-wrapper_opening .mm-menu_fx-menu-slide.mm-menu_position-right{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
345
+ .mm-menu_fx-menu-fade{opacity:0;-webkit-transition:opacity .4s ease;transition:opacity .4s ease}
346
+ .mm-wrapper_opening .mm-menu_fx-menu-fade{opacity:1}
347
+ .mm-menu_fx-panels-none .mm-panel,.mm-panel_fx-none{-webkit-transition-property:none;transition-property:none}
348
+ .mm-menu_fx-panels-none .mm-panel.mm-panel_opened-parent,.mm-panel_fx-none.mm-panel_opened-parent{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
349
+ .mm-menu_fx-panels-zoom .mm-panel,.mm-panel_fx-zoom{-webkit-transform-origin:left center;transform-origin:left center;-webkit-transform:scale(1.5,1.5) translate3d(100%,0,0);transform:scale(1.5,1.5) translate3d(100%,0,0)}
350
+ .mm-menu_fx-panels-zoom .mm-panel.mm-panel_opened,.mm-panel_fx-zoom.mm-panel_opened{-webkit-transform:scale(1,1) translate3d(0,0,0);transform:scale(1,1) translate3d(0,0,0)}
351
+ .mm-menu_fx-panels-zoom .mm-panel.mm-panel_opened-parent,.mm-panel_fx-zoom.mm-panel_opened-parent{-webkit-transform:scale(.7,.7) translate3d(-30%,0,0);transform:scale(.7,.7) translate3d(-30%,0,0)}
352
+ .mm-menu_fx-panels-slide-0 .mm-panel_opened-parent,.mm-panel_fx-slide-0.mm-panel_opened-parent{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
353
+ .mm-menu_fx-panels-slide-100 .mm-panel_opened-parent,.mm-panel_fx-slide-100.mm-panel_opened-parent{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}
354
+ .mm-menu_fx-panels-slide-up .mm-panel,.mm-panel_fx-slide-up{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}
355
+ .mm-menu_fx-panels-slide-up .mm-panel_opened,.mm-menu_fx-panels-slide-up .mm-panel_opened-parent,.mm-panel_fx-slide-up.mm-panel_opened{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
356
+ .mm-menu_fx-panels-slide-right .mm-panel,.mm-panel_fx-slide-right{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}
357
+ .mm-menu_fx-panels-slide-right .mm-panel_opened,.mm-menu_fx-panels-slide-right .mm-panel_opened-parent,.mm-panel_fx-slide-right.mm-panel_opened{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
358
+ [class*=mm-menu_fx-listitems-] .mm-listitem{-webkit-transition:none .4s ease;transition:none .4s ease}
359
+ [class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(1){-webkit-transition-delay:50ms;transition-delay:50ms}
360
+ [class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(2){-webkit-transition-delay:.1s;transition-delay:.1s}
361
+ [class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(3){-webkit-transition-delay:150ms;transition-delay:150ms}
362
+ [class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(4){-webkit-transition-delay:.2s;transition-delay:.2s}
363
+ [class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(5){-webkit-transition-delay:250ms;transition-delay:250ms}
364
+ [class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(6){-webkit-transition-delay:.3s;transition-delay:.3s}
365
+ [class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(7){-webkit-transition-delay:350ms;transition-delay:350ms}
366
+ [class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(8){-webkit-transition-delay:.4s;transition-delay:.4s}
367
+ [class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(9){-webkit-transition-delay:450ms;transition-delay:450ms}
368
+ [class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(10){-webkit-transition-delay:.5s;transition-delay:.5s}
369
+ [class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(11){-webkit-transition-delay:550ms;transition-delay:550ms}
370
+ [class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(12){-webkit-transition-delay:.6s;transition-delay:.6s}
371
+ [class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(13){-webkit-transition-delay:650ms;transition-delay:650ms}
372
+ [class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(14){-webkit-transition-delay:.7s;transition-delay:.7s}
373
+ [class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(15){-webkit-transition-delay:750ms;transition-delay:750ms}
374
+ .mm-menu_fx-listitems-slide .mm-listitem{-webkit-transition-property:opacity,-webkit-transform;transition-property:opacity,-webkit-transform;transition-property:transform,opacity;transition-property:transform,opacity,-webkit-transform;-webkit-transform:translate3d(50%,0,0);transform:translate3d(50%,0,0);opacity:0}
375
+ .mm-wrapper_opening .mm-menu_fx-listitems-slide .mm-panel_opened .mm-listitem{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}
376
+ .mm-menu_fx-listitems-fade .mm-listitem{-webkit-transition-property:opacity;transition-property:opacity;opacity:0}
377
+ .mm-wrapper_opening .mm-menu_fx-listitems-fade .mm-panel_opened .mm-listitem{opacity:1}
378
+ .mm-menu_fx-listitems-drop .mm-listitem{-webkit-transition-property:opacity,top;transition-property:opacity,top;opacity:0;top:-25%}
379
+ .mm-wrapper_opening .mm-menu_fx-listitems-drop .mm-panel_opened .mm-listitem{opacity:1;top:0}
380
+ .mm-menu_fullscreen{width:100%;min-width:140px;max-width:10000px}
381
+ .mm-wrapper_opening .mm-menu_fullscreen.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(100vw,0,0);transform:translate3d(100vw,0,0)}
382
+ @media all and (max-width:140px){.mm-wrapper_opening .mm-menu_fullscreen.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(140px,0,0);transform:translate3d(140px,0,0)}}@media all and (min-width:10000px){.mm-wrapper_opening .mm-menu_fullscreen.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(10000px,0,0);transform:translate3d(10000px,0,0)}}.mm-wrapper_opening .mm-menu_fullscreen.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-100vw,0,0);transform:translate3d(-100vw,0,0)}
383
+ @media all and (max-width:140px){.mm-wrapper_opening .mm-menu_fullscreen.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-140px,0,0);transform:translate3d(-140px,0,0)}}@media all and (min-width:10000px){.mm-wrapper_opening .mm-menu_fullscreen.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-10000px,0,0);transform:translate3d(-10000px,0,0)}}.mm-menu_fullscreen.mm-menu_position-top{height:100vh;min-height:140px;max-height:10000px}
384
+ .mm-menu_fullscreen.mm-menu_position-bottom{height:100vh;min-height:140px;max-height:10000px}
385
+ .mm-menu_listview-justify .mm-panels>.mm-panel:after,.mm-menu_listview-justify .mm-panels>.mm-panel:before,.mm-panels>.mm-panel_listview-justify:after,.mm-panels>.mm-panel_listview-justify:before{content:none;display:none}
386
+ .mm-menu_listview-justify .mm-panels>.mm-panel .mm-listview,.mm-panels>.mm-panel_listview-justify .mm-listview{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;height:100%;margin-top:0;margin-bottom:0}
387
+ .mm-menu_listview-justify .mm-panels>.mm-panel .mm-listitem,.mm-panels>.mm-panel_listview-justify .mm-listitem{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;min-height:44px}
388
+ .mm-menu_listview-justify .mm-panels>.mm-panel .mm-listitem:not(.mm-listitem_divider),.mm-panels>.mm-panel_listview-justify .mm-listitem:not(.mm-listitem_divider){display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}
389
+ .mm-menu_listview-justify .mm-panels>.mm-panel .mm-listitem__text,.mm-panels>.mm-panel_listview-justify .mm-listitem__text{-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}
390
+ .mm-listview_inset{list-style:inside disc;width:100%;padding:0 30px 15px 30px;margin:0}
391
+ .mm-listview_inset .mm-listitem{padding:5px 0}
392
+ .mm-menu_multiline .mm-listitem__text,.mm-panel_multiline .mm-listitem__text{text-overflow:clip;white-space:normal}
393
+ [class*=mm-menu_pagedim].mm-menu_opened~.mm-wrapper__blocker{opacity:0}
394
+ .mm-wrapper_opening [class*=mm-menu_pagedim].mm-menu_opened~.mm-wrapper__blocker{opacity:.3;-webkit-transition:opacity .4s ease .4s;transition:opacity .4s ease .4s}
395
+ .mm-menu_opened.mm-menu_pagedim~.mm-wrapper__blocker{background:inherit}
396
+ .mm-menu_opened.mm-menu_pagedim-black~.mm-wrapper__blocker{background:#000}
397
+ .mm-menu_opened.mm-menu_pagedim-white~.mm-wrapper__blocker{background:#fff}
398
+ .mm-menu_popup{-webkit-transition:opacity .4s ease;transition:opacity .4s ease;opacity:0;-webkit-box-shadow:0 2px 10px rgba(0,0,0,.3);box-shadow:0 2px 10px rgba(0,0,0,.3);height:80%;min-height:140px;max-height:880px;top:50%;left:50%;bottom:auto;right:auto;z-index:2;-webkit-transform:translate3d(-50%,-50%,0);transform:translate3d(-50%,-50%,0)}
399
+ .mm-menu_popup.mm-menu_opened~.mm-slideout{-webkit-transform:none!important;transform:none!important;z-index:0}
400
+ .mm-menu_popup.mm-menu_opened~.mm-wrapper__blocker{-webkit-transition-delay:0s!important;transition-delay:0s!important;z-index:1}
401
+ .mm-wrapper_opening .mm-menu_popup{opacity:1}
402
+ .mm-menu_position-right{left:auto;right:0}
403
+ .mm-wrapper_opening .mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-80vw,0,0);transform:translate3d(-80vw,0,0)}
404
+ @media all and (max-width:300px){.mm-wrapper_opening .mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-240px,0,0);transform:translate3d(-240px,0,0)}}@media all and (min-width:550px){.mm-wrapper_opening .mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-440px,0,0);transform:translate3d(-440px,0,0)}}.mm-menu_position-bottom,.mm-menu_position-front,.mm-menu_position-top{-webkit-transition:-webkit-transform .4s ease;transition:-webkit-transform .4s ease;transition:transform .4s ease;transition:transform .4s ease,-webkit-transform .4s ease;transition:transform .4s ease,-webkit-transform .4s ease}
405
+ .mm-menu_position-bottom.mm-menu_opened,.mm-menu_position-front.mm-menu_opened,.mm-menu_position-top.mm-menu_opened{z-index:2}
406
+ .mm-menu_position-bottom.mm-menu_opened~.mm-slideout,.mm-menu_position-front.mm-menu_opened~.mm-slideout,.mm-menu_position-top.mm-menu_opened~.mm-slideout{-webkit-transform:none!important;transform:none!important;z-index:0}
407
+ .mm-menu_position-bottom.mm-menu_opened~.mm-wrapper__blocker,.mm-menu_position-front.mm-menu_opened~.mm-wrapper__blocker,.mm-menu_position-top.mm-menu_opened~.mm-wrapper__blocker{z-index:1}
408
+ .mm-menu_position-front{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}
409
+ .mm-menu_position-front.mm-menu_position-right{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}
410
+ .mm-menu_position-bottom,.mm-menu_position-top{width:100%;min-width:100%;max-width:100%}
411
+ .mm-menu_position-top{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}
412
+ .mm-menu_position-top{height:80vh;min-height:140px;max-height:880px}
413
+ .mm-menu_position-bottom{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);top:auto}
414
+ .mm-menu_position-bottom{height:80vh;min-height:140px;max-height:880px}
415
+ .mm-wrapper_opening .mm-menu_position-bottom,.mm-wrapper_opening .mm-menu_position-front,.mm-wrapper_opening .mm-menu_position-top{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
416
+ .mm-menu_shadow-page:after{-webkit-box-shadow:0 0 10px rgba(0,0,0,.3);box-shadow:0 0 10px rgba(0,0,0,.3);-webkit-box-shadow:var(--mm-shadow);box-shadow:var(--mm-shadow);content:"";display:block;width:20px;height:120%;position:absolute;left:100%;top:-10%;z-index:100;-webkit-clip-path:polygon(-20px 0,0 0,0 100%,-20px 100%);clip-path:polygon(-20px 0,0 0,0 100%,-20px 100%)}
417
+ .mm-menu_shadow-page.mm-menu_position-right:after{left:auto;right:100%;-webkit-clip-path:polygon(20px 0,40px 0,40px 100%,20px 100%);clip-path:polygon(20px 0,40px 0,40px 100%,20px 100%)}
418
+ .mm-menu_shadow-page.mm-menu_position-front:after{content:none;display:none}
419
+ .mm-menu_shadow-menu{-webkit-box-shadow:0 0 10px rgba(0,0,0,.3);box-shadow:0 0 10px rgba(0,0,0,.3);-webkit-box-shadow:var(--mm-shadow);box-shadow:var(--mm-shadow)}
420
+ .mm-menu_shadow-panels .mm-panels>.mm-panel{-webkit-box-shadow:0 0 10px rgba(0,0,0,.3);box-shadow:0 0 10px rgba(0,0,0,.3);-webkit-box-shadow:var(--mm-shadow);box-shadow:var(--mm-shadow)}
421
+ .mm-menu_theme-white{--mm-color-border:rgba( 0,0,0, 0.1 );--mm-color-button:rgba( 0,0,0, 0.3 );--mm-color-text:rgba( 0,0,0, 0.7 );--mm-color-text-dimmed:rgba( 0,0,0, 0.3 );--mm-color-background:#fff;--mm-color-background-highlight:rgba( 0,0,0, 0.06 );--mm-color-background-emphasis:rgba( 0,0,0, 0.03 );--mm-shadow:0 0 10px rgba( 0,0,0, 0.2 )}
422
+ .mm-menu_theme-dark{--mm-color-border:rgba( 0,0,0, 0.3 );--mm-color-button:rgba( 255,255,255, 0.4 );--mm-color-text:rgba( 255,255,255, 0.85 );--mm-color-text-dimmed:rgba( 255,255,255, 0.4 );--mm-color-background:#333;--mm-color-background-highlight:rgba( 255,255,255, 0.08 );--mm-color-background-emphasis:rgba( 0,0,0, 0.1 );--mm-shadow:0 0 20px rgba( 0,0,0, 0.5 )}
423
+ .mm-menu_theme-black{--mm-color-border:rgba( 255,255,255, 0.25 );--mm-color-button:rgba( 255,255,255, 0.4 );--mm-color-text:rgba( 255,255,255, 0.75 );--mm-color-text-dimmed:rgba( 255,255,255, 0.4 );--mm-color-background:#000;--mm-color-background-highlight:rgba( 255,255,255, 0.2 );--mm-color-background-emphasis:rgba( 255,255,255, 0.15 );--mm-shadow:none}
424
+ .mm-menu_tileview .mm-listview,.mm-panel_tileview .mm-listview{margin:0!important}
425
+ .mm-menu_tileview .mm-listview:after,.mm-panel_tileview .mm-listview:after{content:'';display:block;clear:both}
426
+ .mm-menu_tileview .mm-listitem,.mm-panel_tileview .mm-listitem{padding:0;float:left;position:relative;width:50%;height:0;padding-top:50%}
427
+ .mm-menu_tileview .mm-listitem:after,.mm-panel_tileview .mm-listitem:after{left:0;top:0;border-right-width:1px;border-right-style:solid;z-index:-1}
428
+ .mm-menu_tileview .mm-listitem.mm-tile-xs,.mm-panel_tileview .mm-listitem.mm-tile-xs{width:12.5%;padding-top:12.5%}
429
+ .mm-menu_tileview .mm-listitem.mm-tile-s,.mm-panel_tileview .mm-listitem.mm-tile-s{width:25%;padding-top:25%}
430
+ .mm-menu_tileview .mm-listitem.mm-tile-l,.mm-panel_tileview .mm-listitem.mm-tile-l{width:75%;padding-top:75%}
431
+ .mm-menu_tileview .mm-listitem.mm-tile-xl,.mm-panel_tileview .mm-listitem.mm-tile-xl{width:100%;padding-top:100%}
432
+ .mm-menu_tileview .mm-listitem__text,.mm-panel_tileview .mm-listitem__text{line-height:1px;text-align:center;padding:50% 10px 0 10px;margin:0;position:absolute;top:0;right:1px;bottom:1px;left:0}
433
+ .mm-menu_tileview .mm-listitem__btn,.mm-panel_tileview .mm-listitem__btn{width:auto}
434
+ .mm-menu_tileview .mm-listitem__btn:after,.mm-menu_tileview .mm-listitem__btn:before,.mm-panel_tileview .mm-listitem__btn:after,.mm-panel_tileview .mm-listitem__btn:before{content:none;display:none}
435
+ .mm-menu_tileview .mm-listitem_divider,.mm-panel_tileview .mm-listitem_divider{display:none}
436
+ .mm-menu_tileview .mm-panel,.mm-panel_tileview{padding-left:0;padding-right:0}
437
+ .mm-menu_tileview .mm-panel:after,.mm-menu_tileview .mm-panel:before,.mm-panel_tileview:after,.mm-panel_tileview:before{content:none;display:none}
438
+ body.modal-open .mm-slideout{z-index:unset}
439
+ .brz{/*!
440
+ * animate.css -https://daneden.github.io/animate.css/
441
+ * Version - 3.7.2
442
+ * Licensed under the MIT license - http://opensource.org/licenses/MIT
443
+ *
444
+ * Copyright (c) 2019 Daniel Eden
445
+ */}
446
+ html{-webkit-box-sizing:border-box;box-sizing:border-box}
447
+ *,:after,:before{-webkit-box-sizing:border-box;box-sizing:border-box}
448
+ @-ms-viewport{width:device-width}
449
+ .brz .brz-figcaption,.brz .brz-figure,.brz .brz-section{display:block}
450
+ body{margin:0}
451
+ body.brz-ed{background-color:#f3f3f3}
452
+ body.brz::after,body.brz::before{display:none}
453
+ .brz-iframe{margin:0;padding:0;border:0;font:inherit;font-size:100%;vertical-align:baseline}
454
+ .brz{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
455
+ .brz .brz-root__container.brz-reset-all{display:block;overflow:hidden;font-family:inherit}
456
+ .brz .brz-hr{-webkit-box-sizing:content-box;box-sizing:content-box;height:0;overflow:visible;margin:0}
457
+ .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}
458
+ .brz .brz-p{margin-top:0;margin-bottom:0;padding-top:0;padding-bottom:0}
459
+ .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}
460
+ .brz .brz-dl,.brz .brz-ol,.brz .brz-ul{margin:0;list-style:none;padding:0}
461
+ .brz .brz-ol .brz-ol,.brz .brz-ol .brz-ul,.brz .brz-ul .brz-ol,.brz .brz-ul .brz-ul{margin:0}
462
+ .brz .brz-dt{font-weight:700}
463
+ .brz .brz-dd{margin-bottom:.5rem;margin-left:0}
464
+ .brz .brz-blockquote{margin:0 0 1rem}
465
+ .brz .brz-dfn{font-style:italic}
466
+ .brz .brz-b,.brz .brz-strong{font-weight:700}
467
+ .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}
468
+ .brz .brz-a:not(.brz-btn)[href]:hover{color:#1aabd8;-webkit-box-shadow:none;box-shadow:none;cursor:pointer}
469
+ .brz .brz-a:not(.brz-btn):active,.brz .brz-a:not(.brz-btn):focus,.brz .brz-a:not(.brz-btn):hover{outline:0}
470
+ .brz .brz-a.brz-btn[href]{text-decoration:none}
471
+ .brz .brz-figure{margin:0;min-width:auto;min-height:auto}
472
+ .brz .brz-img{vertical-align:middle;border-style:none}
473
+ .brz svg:not(:root){overflow:hidden}
474
+ .brz .brz-button,.brz .brz-input,.brz .brz-label,.brz .brz-textarea{-ms-touch-action:manipulation;touch-action:manipulation}
475
+ .brz .brz-table{border-collapse:collapse}
476
+ .brz .brz-caption{padding-top:.75rem;padding-bottom:.75rem;color:#828b92;text-align:left;caption-side:bottom}
477
+ .brz .brz-th{text-align:left}
478
+ .brz .brz-form{margin:0}
479
+ .brz .brz-label{display:inline-block;margin-bottom:0;font-weight:400}
480
+ .brz .brz-button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}
481
+ .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}
482
+ .brz .brz-button,.brz .brz-input{overflow:visible}
483
+ .brz .brz-button,.brz .brz-select{text-transform:none}
484
+ .brz .brz-button{-webkit-appearance:button}
485
+ .brz .brz-button::-moz-focus-inner{padding:0;border-style:none}
486
+ .brz .brz-input[type=checkbox],.brz .brz-input[type=radio]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}
487
+ .brz .brz-input[type=number]{-moz-appearance:textfield}
488
+ .brz .brz-input[type=date],.brz .brz-input[type=datetime-local],.brz .brz-input[type=month],.brz .brz-input[type=time]{-webkit-appearance:listbox}
489
+ .brz .brz-textarea{overflow:auto;resize:vertical}
490
+ .brz .brz-fieldset{min-width:0;padding:0;margin:0;border:0}
491
+ .brz .brz-iframe,.brz .brz-object{margin-bottom:0;max-width:100%}
492
+ .brz .brz-iframe{margin:0;padding:0;border:0;font:inherit;font-size:100%;vertical-align:baseline}
493
+ .brz [hidden]{display:none!important}
494
+ .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}
495
+ .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}
496
+ .brz .brz-h1{font-size:55px;font-weight:400}
497
+ .brz .brz-h2{font-size:40px}
498
+ .brz .brz-h3{font-size:32px}
499
+ .brz .brz-h4{font-size:26px}
500
+ .brz .brz-h5{font-size:19px}
501
+ .brz .brz-h6{font-size:14px}
502
+ .brz .brz-p{font-size:14px;font-weight:400}
503
+ .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}
504
+ .brz .brz-flex-xs-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}
505
+ .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}
506
+ .brz .brz-justify-content-xs-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}
507
+ .brz .brz-justify-content-xs-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}
508
+ .brz .brz-justify-content-xs-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}
509
+ .brz .brz-justify-content-xs-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}
510
+ .brz .brz-justify-content-xs-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}
511
+ .brz .brz-align-items-xs-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}
512
+ .brz .brz-align-items-xs-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}
513
+ .brz .brz-align-items-xs-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}
514
+ .brz .brz-align-items-xs-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}
515
+ .brz .brz-align-items-xs-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}
516
+ .brz .brz-col-first-xs{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}
517
+ .brz .brz-col-last-xs{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}
518
+ .brz .brz-align-self-xs-start{-ms-flex-item-align:start!important;align-self:flex-start!important}
519
+ .brz .brz-align-self-xs-end{-ms-flex-item-align:end!important;align-self:flex-end!important}
520
+ .brz .brz-align-self-xs-center{-ms-flex-item-align:center!important;align-self:center!important}
521
+ .brz .brz-align-self-xs-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}
522
+ .brz .brz-align-self-xs-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}
523
+ .brz .brz-flex-xs-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}
524
+ .brz .brz-flex-xs-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}
525
+ .brz .brz-align-content-xs-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}
526
+ .brz .brz-align-content-xs-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}
527
+ .brz .brz-align-content-xs-center{-ms-flex-line-pack:center!important;align-content:center!important}
528
+ .brz .brz-align-content-xs-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}
529
+ .brz .brz-align-content-xs-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}
530
+ .brz .brz-align-content-xs-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}
531
+ @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}
532
+ .brz .brz-flex-ms-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}
533
+ .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}
534
+ .brz .brz-justify-content-ms-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}
535
+ .brz .brz-justify-content-ms-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}
536
+ .brz .brz-justify-content-ms-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}
537
+ .brz .brz-justify-content-ms-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}
538
+ .brz .brz-justify-content-ms-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}
539
+ .brz .brz-align-items-ms-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}
540
+ .brz .brz-align-items-ms-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}
541
+ .brz .brz-align-items-ms-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}
542
+ .brz .brz-align-items-ms-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}
543
+ .brz .brz-align-items-ms-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}
544
+ .brz .brz-col-first-ms{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}
545
+ .brz .brz-col-last-ms{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}
546
+ .brz .brz-align-self-ms-start{-ms-flex-item-align:start!important;align-self:flex-start!important}
547
+ .brz .brz-align-self-ms-end{-ms-flex-item-align:end!important;align-self:flex-end!important}
548
+ .brz .brz-align-self-ms-center{-ms-flex-item-align:center!important;align-self:center!important}
549
+ .brz .brz-align-self-ms-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}
550
+ .brz .brz-align-self-ms-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}
551
+ .brz .brz-flex-ms-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}
552
+ .brz .brz-flex-ms-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}
553
+ .brz .brz-align-content-ms-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}
554
+ .brz .brz-align-content-ms-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}
555
+ .brz .brz-align-content-ms-center{-ms-flex-line-pack:center!important;align-content:center!important}
556
+ .brz .brz-align-content-ms-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}
557
+ .brz .brz-align-content-ms-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}
558
+ .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}
559
+ .brz .brz-flex-sm-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}
560
+ .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}
561
+ .brz .brz-justify-content-sm-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}
562
+ .brz .brz-justify-content-sm-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}
563
+ .brz .brz-justify-content-sm-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}
564
+ .brz .brz-justify-content-sm-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}
565
+ .brz .brz-justify-content-sm-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}
566
+ .brz .brz-align-items-sm-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}
567
+ .brz .brz-align-items-sm-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}
568
+ .brz .brz-align-items-sm-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}
569
+ .brz .brz-align-items-sm-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}
570
+ .brz .brz-align-items-sm-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}
571
+ .brz .brz-col-first-sm{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}
572
+ .brz .brz-col-last-sm{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}
573
+ .brz .brz-align-self-sm-start{-ms-flex-item-align:start!important;align-self:flex-start!important}
574
+ .brz .brz-align-self-sm-end{-ms-flex-item-align:end!important;align-self:flex-end!important}
575
+ .brz .brz-align-self-sm-center{-ms-flex-item-align:center!important;align-self:center!important}
576
+ .brz .brz-align-self-sm-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}
577
+ .brz .brz-align-self-sm-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}
578
+ .brz .brz-flex-sm-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}
579
+ .brz .brz-flex-sm-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}
580
+ .brz .brz-align-content-sm-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}
581
+ .brz .brz-align-content-sm-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}
582
+ .brz .brz-align-content-sm-center{-ms-flex-line-pack:center!important;align-content:center!important}
583
+ .brz .brz-align-content-sm-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}
584
+ .brz .brz-align-content-sm-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}
585
+ .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}
586
+ .brz .brz-flex-md-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}
587
+ .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}
588
+ .brz .brz-justify-content-md-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}
589
+ .brz .brz-justify-content-md-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}
590
+ .brz .brz-justify-content-md-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}
591
+ .brz .brz-justify-content-md-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}
592
+ .brz .brz-justify-content-md-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}
593
+ .brz .brz-align-items-md-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}
594
+ .brz .brz-align-items-md-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}
595
+ .brz .brz-align-items-md-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}
596
+ .brz .brz-align-items-md-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}
597
+ .brz .brz-align-items-md-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}
598
+ .brz .brz-col-first-md{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}
599
+ .brz .brz-col-last-md{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}
600
+ .brz .brz-align-self-md-start{-ms-flex-item-align:start!important;align-self:flex-start!important}
601
+ .brz .brz-align-self-md-end{-ms-flex-item-align:end!important;align-self:flex-end!important}
602
+ .brz .brz-align-self-md-center{-ms-flex-item-align:center!important;align-self:center!important}
603
+ .brz .brz-align-self-md-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}
604
+ .brz .brz-align-self-md-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}
605
+ .brz .brz-flex-md-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}
606
+ .brz .brz-flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}
607
+ .brz .brz-align-content-md-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}
608
+ .brz .brz-align-content-md-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}
609
+ .brz .brz-align-content-md-center{-ms-flex-line-pack:center!important;align-content:center!important}
610
+ .brz .brz-align-content-md-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}
611
+ .brz .brz-align-content-md-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}
612
+ .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}
613
+ .brz .brz-flex-lg-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}
614
+ .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}
615
+ .brz .brz-justify-content-lg-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}
616
+ .brz .brz-justify-content-lg-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}
617
+ .brz .brz-justify-content-lg-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}
618
+ .brz .brz-justify-content-lg-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}
619
+ .brz .brz-justify-content-lg-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}
620
+ .brz .brz-align-items-lg-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}
621
+ .brz .brz-align-items-lg-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}
622
+ .brz .brz-align-items-lg-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}
623
+ .brz .brz-align-items-lg-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}
624
+ .brz .brz-align-items-lg-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}
625
+ .brz .brz-col-first-lg{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}
626
+ .brz .brz-col-last-lg{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}
627
+ .brz .brz-align-self-lg-start{-ms-flex-item-align:start!important;align-self:flex-start!important}
628
+ .brz .brz-align-self-lg-end{-ms-flex-item-align:end!important;align-self:flex-end!important}
629
+ .brz .brz-align-self-lg-center{-ms-flex-item-align:center!important;align-self:center!important}
630
+ .brz .brz-align-self-lg-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}
631
+ .brz .brz-align-self-lg-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}
632
+ .brz .brz-flex-lg-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}
633
+ .brz .brz-flex-lg-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}
634
+ .brz .brz-align-content-lg-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}
635
+ .brz .brz-align-content-lg-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}
636
+ .brz .brz-align-content-lg-center{-ms-flex-line-pack:center!important;align-content:center!important}
637
+ .brz .brz-align-content-lg-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}
638
+ .brz .brz-align-content-lg-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}
639
+ .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}
640
+ .brz .brz-flex-xl-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}
641
+ .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}
642
+ .brz .brz-justify-content-xl-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}
643
+ .brz .brz-justify-content-xl-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}
644
+ .brz .brz-justify-content-xl-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}
645
+ .brz .brz-justify-content-xl-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}
646
+ .brz .brz-justify-content-xl-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}
647
+ .brz .brz-align-items-xl-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}
648
+ .brz .brz-align-items-xl-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}
649
+ .brz .brz-align-items-xl-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}
650
+ .brz .brz-align-items-xl-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}
651
+ .brz .brz-align-items-xl-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}
652
+ .brz .brz-col-first-xl{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}
653
+ .brz .brz-col-last-xl{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}
654
+ .brz .brz-align-self-xl-start{-ms-flex-item-align:start!important;align-self:flex-start!important}
655
+ .brz .brz-align-self-xl-end{-ms-flex-item-align:end!important;align-self:flex-end!important}
656
+ .brz .brz-align-self-xl-center{-ms-flex-item-align:center!important;align-self:center!important}
657
+ .brz .brz-align-self-xl-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}
658
+ .brz .brz-align-self-xl-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}
659
+ .brz .brz-flex-xl-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}
660
+ .brz .brz-flex-xl-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}
661
+ .brz .brz-align-content-xl-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}
662
+ .brz .brz-align-content-xl-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}
663
+ .brz .brz-align-content-xl-center{-ms-flex-line-pack:center!important;align-content:center!important}
664
+ .brz .brz-align-content-xl-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}
665
+ .brz .brz-align-content-xl-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}
666
+ .brz .brz-align-content-xl-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}}.brz .brz-d-block{display:block!important}
667
+ .brz .brz-d-inline-block{display:inline-block!important}
668
+ .brz .brz-d-inline{display:inline!important}
669
+ .brz .brz-d-none{display:none!important}
670
+ .brz .brz-d-table{width:100%;display:table;position:relative}
671
+ .brz .brz-d-table-cell{display:table-cell}
672
+ .brz .brz-blocked{pointer-events:none}
673
+ .brz .brz-d-xs-flex{display:-webkit-box;display:-ms-flexbox;display:flex;min-width:0}
674
+ .brz .brz-d-xs-inline-flex{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}
675
+ @media (min-width:480px){.brz .brz-d-ms-flex{display:-webkit-box;display:-ms-flexbox;display:flex;min-width:0}
676
+ .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}
677
+ .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}
678
+ .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}
679
+ .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}
680
+ .brz .brz-d-xl-inline-flex{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}}.brz .brz-p-relative{position:relative!important}
681
+ .brz .brz-p-absolute{position:absolute!important}
682
+ .brz .brz-p-fixed{position:fixed!important}
683
+ .brz .brz-invisible{visibility:hidden!important}
684
+ .brz .brz-visible{visibility:visible!important}
685
+ .brz .brz-hidden-xs-up{display:none!important}
686
+ @media (max-width:479px){.brz .brz-hidden-xs-down{display:none!important}}.brz .brz-invisible-xs-up{visibility:hidden!important}
687
+ @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}
688
+ @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}
689
+ @media (min-width:1400px){.brz .brz-invisible-xl-up{visibility:hidden!important}}.brz .brz-invisible-xl-down{visibility:hidden!important}
690
+ @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}
691
+ .brz .brz-hidden{display:none!important}
692
+ .brz .brz-visible-print-block{display:none!important}
693
+ @media print{.brz .brz-visible-print-block{display:block!important}}.brz .brz-visible-print-inline{display:none!important}
694
+ @media print{.brz .brz-visible-print-inline{display:inline!important}}.brz .brz-visible-print-inline-block{display:none!important}
695
+ @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}
696
+ .brz .brz-ow-visible{overflow:visible!important}
697
+ .brz .brz-pointer-events-none{pointer-events:none!important}
698
+ .brz .brz-pointer-events-auto{pointer-events:auto!important}
699
+ .brz .brz-fw-100{font-weight:100!important}
700
+ .brz .brz-fw-200{font-weight:200!important}
701
+ .brz .brz-fw-300{font-weight:300!important}
702
+ .brz .brz-fw-400{font-weight:400!important}
703
+ .brz .brz-fw-500{font-weight:500!important}
704
+ .brz .brz-fw-600{font-weight:600!important}
705
+ .brz .brz-fw-700{font-weight:700!important}
706
+ .brz .brz-fw-800{font-weight:800!important}
707
+ .brz .brz-fw-900{font-weight:900!important}
708
+ .brz .brz--required{color:#ff0e0e;padding-left:5px}
709
+ @-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)}
710
+ 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)}
711
+ 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)}
712
+ 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)}
713
+ 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)}
714
+ 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)}
715
+ 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}
716
+ @-webkit-keyframes flash{50%,from,to{opacity:1}
717
+ 25%,75%{opacity:0}}@keyframes flash{50%,from,to{opacity:1}
718
+ 25%,75%{opacity:0}}.brz .flash{-webkit-animation-name:flash;animation-name:flash}
719
+ @-webkit-keyframes pulse{from{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}
720
+ 50%{-webkit-transform:scale3d(1.05,1.05,1.05);transform:scale3d(1.05,1.05,1.05)}
721
+ 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)}
722
+ 50%{-webkit-transform:scale3d(1.05,1.05,1.05);transform:scale3d(1.05,1.05,1.05)}
723
+ to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}.brz .pulse{-webkit-animation-name:pulse;animation-name:pulse}
724
+ @-webkit-keyframes rubberBand{from{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}
725
+ 30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}
726
+ 40%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}
727
+ 50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}
728
+ 65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}
729
+ 75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}
730
+ 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)}
731
+ 30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}
732
+ 40%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}
733
+ 50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}
734
+ 65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}
735
+ 75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}
736
+ to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}.brz .rubberBand{-webkit-animation-name:rubberBand;animation-name:rubberBand}
737
+ @-webkit-keyframes shake{from,to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
738
+ 10%,30%,50%,70%,90%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}
739
+ 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)}
740
+ 10%,30%,50%,70%,90%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}
741
+ 20%,40%,60%,80%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}.brz .shake{-webkit-animation-name:shake;animation-name:shake}
742
+ @-webkit-keyframes headShake{0%{-webkit-transform:translateX(0);transform:translateX(0)}
743
+ 6.5%{-webkit-transform:translateX(-6px) rotateY(-9deg);transform:translateX(-6px) rotateY(-9deg)}
744
+ 18.5%{-webkit-transform:translateX(5px) rotateY(7deg);transform:translateX(5px) rotateY(7deg)}
745
+ 31.5%{-webkit-transform:translateX(-3px) rotateY(-5deg);transform:translateX(-3px) rotateY(-5deg)}
746
+ 43.5%{-webkit-transform:translateX(2px) rotateY(3deg);transform:translateX(2px) rotateY(3deg)}
747
+ 50%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes headShake{0%{-webkit-transform:translateX(0);transform:translateX(0)}
748
+ 6.5%{-webkit-transform:translateX(-6px) rotateY(-9deg);transform:translateX(-6px) rotateY(-9deg)}
749
+ 18.5%{-webkit-transform:translateX(5px) rotateY(7deg);transform:translateX(5px) rotateY(7deg)}
750
+ 31.5%{-webkit-transform:translateX(-3px) rotateY(-5deg);transform:translateX(-3px) rotateY(-5deg)}
751
+ 43.5%{-webkit-transform:translateX(2px) rotateY(3deg);transform:translateX(2px) rotateY(3deg)}
752
+ 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}
753
+ @-webkit-keyframes swing{20%{-webkit-transform:rotate3d(0,0,1,15deg);transform:rotate3d(0,0,1,15deg)}
754
+ 40%{-webkit-transform:rotate3d(0,0,1,-10deg);transform:rotate3d(0,0,1,-10deg)}
755
+ 60%{-webkit-transform:rotate3d(0,0,1,5deg);transform:rotate3d(0,0,1,5deg)}
756
+ 80%{-webkit-transform:rotate3d(0,0,1,-5deg);transform:rotate3d(0,0,1,-5deg)}
757
+ 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)}
758
+ 40%{-webkit-transform:rotate3d(0,0,1,-10deg);transform:rotate3d(0,0,1,-10deg)}
759
+ 60%{-webkit-transform:rotate3d(0,0,1,5deg);transform:rotate3d(0,0,1,5deg)}
760
+ 80%{-webkit-transform:rotate3d(0,0,1,-5deg);transform:rotate3d(0,0,1,-5deg)}
761
+ 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}
762
+ @-webkit-keyframes tada{from{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}
763
+ 10%,20%{-webkit-transform:scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg);transform:scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg)}
764
+ 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)}
765
+ 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)}
766
+ 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)}
767
+ 10%,20%{-webkit-transform:scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg);transform:scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg)}
768
+ 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)}
769
+ 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)}
770
+ to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}.brz .tada{-webkit-animation-name:tada;animation-name:tada}
771
+ @-webkit-keyframes wobble{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
772
+ 15%{-webkit-transform:translate3d(-25%,0,0) rotate3d(0,0,1,-5deg);transform:translate3d(-25%,0,0) rotate3d(0,0,1,-5deg)}
773
+ 30%{-webkit-transform:translate3d(20%,0,0) rotate3d(0,0,1,3deg);transform:translate3d(20%,0,0) rotate3d(0,0,1,3deg)}
774
+ 45%{-webkit-transform:translate3d(-15%,0,0) rotate3d(0,0,1,-3deg);transform:translate3d(-15%,0,0) rotate3d(0,0,1,-3deg)}
775
+ 60%{-webkit-transform:translate3d(10%,0,0) rotate3d(0,0,1,2deg);transform:translate3d(10%,0,0) rotate3d(0,0,1,2deg)}
776
+ 75%{-webkit-transform:translate3d(-5%,0,0) rotate3d(0,0,1,-1deg);transform:translate3d(-5%,0,0) rotate3d(0,0,1,-1deg)}
777
+ 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)}
778
+ 15%{-webkit-transform:translate3d(-25%,0,0) rotate3d(0,0,1,-5deg);transform:translate3d(-25%,0,0) rotate3d(0,0,1,-5deg)}
779
+ 30%{-webkit-transform:translate3d(20%,0,0) rotate3d(0,0,1,3deg);transform:translate3d(20%,0,0) rotate3d(0,0,1,3deg)}
780
+ 45%{-webkit-transform:translate3d(-15%,0,0) rotate3d(0,0,1,-3deg);transform:translate3d(-15%,0,0) rotate3d(0,0,1,-3deg)}
781
+ 60%{-webkit-transform:translate3d(10%,0,0) rotate3d(0,0,1,2deg);transform:translate3d(10%,0,0) rotate3d(0,0,1,2deg)}
782
+ 75%{-webkit-transform:translate3d(-5%,0,0) rotate3d(0,0,1,-1deg);transform:translate3d(-5%,0,0) rotate3d(0,0,1,-1deg)}
783
+ to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .wobble{-webkit-animation-name:wobble;animation-name:wobble}
784
+ @-webkit-keyframes jello{11.1%,from,to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
785
+ 22.2%{-webkit-transform:skewX(-12.5deg) skewY(-12.5deg);transform:skewX(-12.5deg) skewY(-12.5deg)}
786
+ 33.3%{-webkit-transform:skewX(6.25deg) skewY(6.25deg);transform:skewX(6.25deg) skewY(6.25deg)}
787
+ 44.4%{-webkit-transform:skewX(-3.125deg) skewY(-3.125deg);transform:skewX(-3.125deg) skewY(-3.125deg)}
788
+ 55.5%{-webkit-transform:skewX(1.5625deg) skewY(1.5625deg);transform:skewX(1.5625deg) skewY(1.5625deg)}
789
+ 66.6%{-webkit-transform:skewX(-.78125deg) skewY(-.78125deg);transform:skewX(-.78125deg) skewY(-.78125deg)}
790
+ 77.7%{-webkit-transform:skewX(.39062deg) skewY(.39062deg);transform:skewX(.39062deg) skewY(.39062deg)}
791
+ 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)}
792
+ 22.2%{-webkit-transform:skewX(-12.5deg) skewY(-12.5deg);transform:skewX(-12.5deg) skewY(-12.5deg)}
793
+ 33.3%{-webkit-transform:skewX(6.25deg) skewY(6.25deg);transform:skewX(6.25deg) skewY(6.25deg)}
794
+ 44.4%{-webkit-transform:skewX(-3.125deg) skewY(-3.125deg);transform:skewX(-3.125deg) skewY(-3.125deg)}
795
+ 55.5%{-webkit-transform:skewX(1.5625deg) skewY(1.5625deg);transform:skewX(1.5625deg) skewY(1.5625deg)}
796
+ 66.6%{-webkit-transform:skewX(-.78125deg) skewY(-.78125deg);transform:skewX(-.78125deg) skewY(-.78125deg)}
797
+ 77.7%{-webkit-transform:skewX(.39062deg) skewY(.39062deg);transform:skewX(.39062deg) skewY(.39062deg)}
798
+ 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}
799
+ @-webkit-keyframes heartBeat{0%{-webkit-transform:scale(1);transform:scale(1)}
800
+ 14%{-webkit-transform:scale(1.3);transform:scale(1.3)}
801
+ 28%{-webkit-transform:scale(1);transform:scale(1)}
802
+ 42%{-webkit-transform:scale(1.3);transform:scale(1.3)}
803
+ 70%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes heartBeat{0%{-webkit-transform:scale(1);transform:scale(1)}
804
+ 14%{-webkit-transform:scale(1.3);transform:scale(1.3)}
805
+ 28%{-webkit-transform:scale(1);transform:scale(1)}
806
+ 42%{-webkit-transform:scale(1.3);transform:scale(1.3)}
807
+ 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}
808
+ @-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)}
809
+ 0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}
810
+ 20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}
811
+ 40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}
812
+ 60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}
813
+ 80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}
814
+ 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)}
815
+ 0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}
816
+ 20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}
817
+ 40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}
818
+ 60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}
819
+ 80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}
820
+ 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}
821
+ @-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)}
822
+ 0%{opacity:0;-webkit-transform:translate3d(0,-3000px,0);transform:translate3d(0,-3000px,0)}
823
+ 60%{opacity:1;-webkit-transform:translate3d(0,25px,0);transform:translate3d(0,25px,0)}
824
+ 75%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}
825
+ 90%{-webkit-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0)}
826
+ 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)}
827
+ 0%{opacity:0;-webkit-transform:translate3d(0,-3000px,0);transform:translate3d(0,-3000px,0)}
828
+ 60%{opacity:1;-webkit-transform:translate3d(0,25px,0);transform:translate3d(0,25px,0)}
829
+ 75%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}
830
+ 90%{-webkit-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0)}
831
+ to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .bounceInDown{-webkit-animation-name:bounceInDown;animation-name:bounceInDown}
832
+ @-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)}
833
+ 0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0);transform:translate3d(-3000px,0,0)}
834
+ 60%{opacity:1;-webkit-transform:translate3d(25px,0,0);transform:translate3d(25px,0,0)}
835
+ 75%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}
836
+ 90%{-webkit-transform:translate3d(5px,0,0);transform:translate3d(5px,0,0)}
837
+ 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)}
838
+ 0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0);transform:translate3d(-3000px,0,0)}
839
+ 60%{opacity:1;-webkit-transform:translate3d(25px,0,0);transform:translate3d(25px,0,0)}
840
+ 75%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}
841
+ 90%{-webkit-transform:translate3d(5px,0,0);transform:translate3d(5px,0,0)}
842
+ to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .bounceInLeft{-webkit-animation-name:bounceInLeft;animation-name:bounceInLeft}
843
+ @-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)}
844
+ from{opacity:0;-webkit-transform:translate3d(3000px,0,0);transform:translate3d(3000px,0,0)}
845
+ 60%{opacity:1;-webkit-transform:translate3d(-25px,0,0);transform:translate3d(-25px,0,0)}
846
+ 75%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}
847
+ 90%{-webkit-transform:translate3d(-5px,0,0);transform:translate3d(-5px,0,0)}
848
+ 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)}
849
+ from{opacity:0;-webkit-transform:translate3d(3000px,0,0);transform:translate3d(3000px,0,0)}
850
+ 60%{opacity:1;-webkit-transform:translate3d(-25px,0,0);transform:translate3d(-25px,0,0)}
851
+ 75%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}
852
+ 90%{-webkit-transform:translate3d(-5px,0,0);transform:translate3d(-5px,0,0)}
853
+ to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .bounceInRight{-webkit-animation-name:bounceInRight;animation-name:bounceInRight}
854
+ @-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)}
855
+ from{opacity:0;-webkit-transform:translate3d(0,3000px,0);transform:translate3d(0,3000px,0)}
856
+ 60%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}
857
+ 75%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}
858
+ 90%{-webkit-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}
859
+ 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)}
860
+ from{opacity:0;-webkit-transform:translate3d(0,3000px,0);transform:translate3d(0,3000px,0)}
861
+ 60%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}
862
+ 75%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}
863
+ 90%{-webkit-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}
864
+ to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .bounceInUp{-webkit-animation-name:bounceInUp;animation-name:bounceInUp}
865
+ @-webkit-keyframes bounceOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}
866
+ 50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}
867
+ 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)}
868
+ 50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}
869
+ 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}
870
+ @-webkit-keyframes bounceOutDown{20%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}
871
+ 40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}
872
+ 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)}
873
+ 40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}
874
+ to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}.brz .bounceOutDown{-webkit-animation-name:bounceOutDown;animation-name:bounceOutDown}
875
+ @-webkit-keyframes bounceOutLeft{20%{opacity:1;-webkit-transform:translate3d(20px,0,0);transform:translate3d(20px,0,0)}
876
+ 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)}
877
+ to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}.brz .bounceOutLeft{-webkit-animation-name:bounceOutLeft;animation-name:bounceOutLeft}
878
+ @-webkit-keyframes bounceOutRight{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0);transform:translate3d(-20px,0,0)}
879
+ 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)}
880
+ to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}.brz .bounceOutRight{-webkit-animation-name:bounceOutRight;animation-name:bounceOutRight}
881
+ @-webkit-keyframes bounceOutUp{20%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}
882
+ 40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0)}
883
+ 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)}
884
+ 40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0)}
885
+ to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}.brz .bounceOutUp{-webkit-animation-name:bounceOutUp;animation-name:bounceOutUp}
886
+ @-webkit-keyframes fadeIn{from{opacity:0}
887
+ to{opacity:1}}@keyframes fadeIn{from{opacity:0}
888
+ to{opacity:1}}.brz .fadeIn{-webkit-animation-name:fadeIn;animation-name:fadeIn}
889
+ @-webkit-keyframes fadeInDown{from{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}
890
+ 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)}
891
+ to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .fadeInDown{-webkit-animation-name:fadeInDown;animation-name:fadeInDown}
892
+ @-webkit-keyframes fadeInDownBig{from{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}
893
+ 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)}
894
+ to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .fadeInDownBig{-webkit-animation-name:fadeInDownBig;animation-name:fadeInDownBig}
895
+ @-webkit-keyframes fadeInLeft{from{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}
896
+ 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)}
897
+ to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .fadeInLeft{-webkit-animation-name:fadeInLeft;animation-name:fadeInLeft}
898
+ @-webkit-keyframes fadeInLeftBig{from{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}
899
+ 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)}
900
+ to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .fadeInLeftBig{-webkit-animation-name:fadeInLeftBig;animation-name:fadeInLeftBig}
901
+ @-webkit-keyframes fadeInRight{from{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}
902
+ 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)}
903
+ to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .fadeInRight{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}
904
+ @-webkit-keyframes fadeInRightBig{from{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}
905
+ 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)}
906
+ to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .fadeInRightBig{-webkit-animation-name:fadeInRightBig;animation-name:fadeInRightBig}
907
+ @-webkit-keyframes fadeInUp{from{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}
908
+ 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)}
909
+ to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .fadeInUp{-webkit-animation-name:fadeInUp;animation-name:fadeInUp}
910
+ @-webkit-keyframes fadeInUpBig{from{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}
911
+ 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)}
912
+ to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .fadeInUpBig{-webkit-animation-name:fadeInUpBig;animation-name:fadeInUpBig}
913
+ @-webkit-keyframes fadeOut{from{opacity:1}
914
+ to{opacity:0}}@keyframes fadeOut{from{opacity:1}
915
+ to{opacity:0}}.brz .fadeOut{-webkit-animation-name:fadeOut;animation-name:fadeOut}
916
+ @-webkit-keyframes fadeOutDown{from{opacity:1}
917
+ to{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@keyframes fadeOutDown{from{opacity:1}
918
+ to{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}.brz .fadeOutDown{-webkit-animation-name:fadeOutDown;animation-name:fadeOutDown}
919
+ @-webkit-keyframes fadeOutDownBig{from{opacity:1}
920
+ to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}@keyframes fadeOutDownBig{from{opacity:1}
921
+ to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}.brz .fadeOutDownBig{-webkit-animation-name:fadeOutDownBig;animation-name:fadeOutDownBig}
922
+ @-webkit-keyframes fadeOutLeft{from{opacity:1}
923
+ to{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@keyframes fadeOutLeft{from{opacity:1}
924
+ to{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.brz .fadeOutLeft{-webkit-animation-name:fadeOutLeft;animation-name:fadeOutLeft}
925
+ @-webkit-keyframes fadeOutLeftBig{from{opacity:1}
926
+ to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}@keyframes fadeOutLeftBig{from{opacity:1}
927
+ to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}.brz .fadeOutLeftBig{-webkit-animation-name:fadeOutLeftBig;animation-name:fadeOutLeftBig}
928
+ @-webkit-keyframes fadeOutRight{from{opacity:1}
929
+ to{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@keyframes fadeOutRight{from{opacity:1}
930
+ to{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.brz .fadeOutRight{-webkit-animation-name:fadeOutRight;animation-name:fadeOutRight}
931
+ @-webkit-keyframes fadeOutRightBig{from{opacity:1}
932
+ to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}@keyframes fadeOutRightBig{from{opacity:1}
933
+ to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}.brz .fadeOutRightBig{-webkit-animation-name:fadeOutRightBig;animation-name:fadeOutRightBig}
934
+ @-webkit-keyframes fadeOutUp{from{opacity:1}
935
+ to{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@keyframes fadeOutUp{from{opacity:1}
936
+ to{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}.brz .fadeOutUp{-webkit-animation-name:fadeOutUp;animation-name:fadeOutUp}
937
+ @-webkit-keyframes fadeOutUpBig{from{opacity:1}
938
+ to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}@keyframes fadeOutUpBig{from{opacity:1}
939
+ to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}.brz .fadeOutUpBig{-webkit-animation-name:fadeOutUpBig;animation-name:fadeOutUpBig}
940
+ @-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}
941
+ 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}
942
+ 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}
943
+ 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}
944
+ 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}
945
+ 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}
946
+ 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}
947
+ 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}
948
+ 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}
949
+ @-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}
950
+ 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}
951
+ 60%{-webkit-transform:perspective(400px) rotate3d(1,0,0,10deg);transform:perspective(400px) rotate3d(1,0,0,10deg);opacity:1}
952
+ 80%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-5deg);transform:perspective(400px) rotate3d(1,0,0,-5deg)}
953
+ 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}
954
+ 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}
955
+ 60%{-webkit-transform:perspective(400px) rotate3d(1,0,0,10deg);transform:perspective(400px) rotate3d(1,0,0,10deg);opacity:1}
956
+ 80%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-5deg);transform:perspective(400px) rotate3d(1,0,0,-5deg)}
957
+ 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}
958
+ @-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}
959
+ 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}
960
+ 60%{-webkit-transform:perspective(400px) rotate3d(0,1,0,10deg);transform:perspective(400px) rotate3d(0,1,0,10deg);opacity:1}
961
+ 80%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-5deg);transform:perspective(400px) rotate3d(0,1,0,-5deg)}
962
+ 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}
963
+ 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}
964
+ 60%{-webkit-transform:perspective(400px) rotate3d(0,1,0,10deg);transform:perspective(400px) rotate3d(0,1,0,10deg);opacity:1}
965
+ 80%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-5deg);transform:perspective(400px) rotate3d(0,1,0,-5deg)}
966
+ 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}
967
+ @-webkit-keyframes flipOutX{from{-webkit-transform:perspective(400px);transform:perspective(400px)}
968
+ 30%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg);opacity:1}
969
+ 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)}
970
+ 30%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg);opacity:1}
971
+ 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}
972
+ @-webkit-keyframes flipOutY{from{-webkit-transform:perspective(400px);transform:perspective(400px)}
973
+ 30%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-15deg);transform:perspective(400px) rotate3d(0,1,0,-15deg);opacity:1}
974
+ 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)}
975
+ 30%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-15deg);transform:perspective(400px) rotate3d(0,1,0,-15deg);opacity:1}
976
+ 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}
977
+ @-webkit-keyframes lightSpeedIn{from{-webkit-transform:translate3d(100%,0,0) skewX(-30deg);transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}
978
+ 60%{-webkit-transform:skewX(20deg);transform:skewX(20deg);opacity:1}
979
+ 80%{-webkit-transform:skewX(-5deg);transform:skewX(-5deg)}
980
+ 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}
981
+ 60%{-webkit-transform:skewX(20deg);transform:skewX(20deg);opacity:1}
982
+ 80%{-webkit-transform:skewX(-5deg);transform:skewX(-5deg)}
983
+ 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}
984
+ @-webkit-keyframes lightSpeedOut{from{opacity:1}
985
+ to{-webkit-transform:translate3d(100%,0,0) skewX(30deg);transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}@keyframes lightSpeedOut{from{opacity:1}
986
+ 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}
987
+ @-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}
988
+ 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}
989
+ 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}
990
+ @-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}
991
+ 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}
992
+ 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}
993
+ @-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}
994
+ 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}
995
+ 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}
996
+ @-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}
997
+ 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}
998
+ 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}
999
+ @-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}
1000
+ 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}
1001
+ 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}
1002
+ @-webkit-keyframes rotateOut{from{-webkit-transform-origin:center;transform-origin:center;opacity:1}
1003
+ 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}
1004
+ 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}
1005
+ @-webkit-keyframes rotateOutDownLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;opacity:1}
1006
+ 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}
1007
+ 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}
1008
+ @-webkit-keyframes rotateOutDownRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;opacity:1}
1009
+ 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}
1010
+ 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}
1011
+ @-webkit-keyframes rotateOutUpLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;opacity:1}
1012
+ 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}
1013
+ 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}
1014
+ @-webkit-keyframes rotateOutUpRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;opacity:1}
1015
+ 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}
1016
+ 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}
1017
+ @-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}
1018
+ 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}
1019
+ 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}
1020
+ 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}
1021
+ 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}
1022
+ 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}
1023
+ 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}
1024
+ @-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}
1025
+ 50%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}
1026
+ 70%{-webkit-transform:rotate(3deg);transform:rotate(3deg)}
1027
+ 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}
1028
+ 50%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}
1029
+ 70%{-webkit-transform:rotate(3deg);transform:rotate(3deg)}
1030
+ to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}.brz .jackInTheBox{-webkit-animation-name:jackInTheBox;animation-name:jackInTheBox}
1031
+ @-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)}
1032
+ 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)}
1033
+ to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .rollIn{-webkit-animation-name:rollIn;animation-name:rollIn}
1034
+ @-webkit-keyframes rollOut{from{opacity:1}
1035
+ 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}
1036
+ 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}
1037
+ @-webkit-keyframes zoomIn{from{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}
1038
+ 50%{opacity:1}}@keyframes zoomIn{from{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}
1039
+ 50%{opacity:1}}.brz .zoomIn{-webkit-animation-name:zoomIn;animation-name:zoomIn}
1040
+ @-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)}
1041
+ 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)}
1042
+ 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}
1043
+ @-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)}
1044
+ 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)}
1045
+ 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}
1046
+ @-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)}
1047
+ 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)}
1048
+ 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}
1049
+ @-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)}
1050
+ 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)}
1051
+ 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}
1052
+ @-webkit-keyframes zoomOut{from{opacity:1}
1053
+ 50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}
1054
+ to{opacity:0}}@keyframes zoomOut{from{opacity:1}
1055
+ 50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}
1056
+ to{opacity:0}}.brz .zoomOut{-webkit-animation-name:zoomOut;animation-name:zoomOut}
1057
+ @-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)}
1058
+ 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)}
1059
+ 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}
1060
+ @-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)}
1061
+ 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)}
1062
+ 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}
1063
+ @-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)}
1064
+ 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)}
1065
+ 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}
1066
+ @-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)}
1067
+ 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)}
1068
+ 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}
1069
+ @-webkit-keyframes slideInDown{from{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:visible}
1070
+ 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}
1071
+ to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .slideInDown{-webkit-animation-name:slideInDown;animation-name:slideInDown}
1072
+ @-webkit-keyframes slideInLeft{from{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);visibility:visible}
1073
+ 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}
1074
+ to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .slideInLeft{-webkit-animation-name:slideInLeft;animation-name:slideInLeft}
1075
+ @-webkit-keyframes slideInRight{from{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);visibility:visible}
1076
+ 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}
1077
+ to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .slideInRight{-webkit-animation-name:slideInRight;animation-name:slideInRight}
1078
+ @-webkit-keyframes slideInUp{from{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:visible}
1079
+ 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}
1080
+ to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz .slideInUp{-webkit-animation-name:slideInUp;animation-name:slideInUp}
1081
+ @-webkit-keyframes slideOutDown{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
1082
+ 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)}
1083
+ to{visibility:hidden;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}.brz .slideOutDown{-webkit-animation-name:slideOutDown;animation-name:slideOutDown}
1084
+ @-webkit-keyframes slideOutLeft{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
1085
+ 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)}
1086
+ to{visibility:hidden;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.brz .slideOutLeft{-webkit-animation-name:slideOutLeft;animation-name:slideOutLeft}
1087
+ @-webkit-keyframes slideOutRight{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
1088
+ 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)}
1089
+ to{visibility:hidden;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.brz .slideOutRight{-webkit-animation-name:slideOutRight;animation-name:slideOutRight}
1090
+ @-webkit-keyframes slideOutUp{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
1091
+ 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)}
1092
+ to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}.brz .slideOutUp{-webkit-animation-name:slideOutUp;animation-name:slideOutUp}
1093
+ .brz .animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}
1094
+ .brz .animated.infinite{-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}
1095
+ .brz .animated.delay-1s{-webkit-animation-delay:1s;animation-delay:1s}
1096
+ .brz .animated.delay-2s{-webkit-animation-delay:2s;animation-delay:2s}
1097
+ .brz .animated.delay-3s{-webkit-animation-delay:3s;animation-delay:3s}
1098
+ .brz .animated.delay-4s{-webkit-animation-delay:4s;animation-delay:4s}
1099
+ .brz .animated.delay-5s{-webkit-animation-delay:5s;animation-delay:5s}
1100
+ .brz .animated.fast{-webkit-animation-duration:.8s;animation-duration:.8s}
1101
+ .brz .animated.faster{-webkit-animation-duration:.5s;animation-duration:.5s}
1102
+ .brz .animated.slow{-webkit-animation-duration:2s;animation-duration:2s}
1103
+ .brz .animated.slower{-webkit-animation-duration:3s;animation-duration:3s}
1104
+ @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}
1105
+ .brz .brz-animated.brz-animate{opacity:1}
1106
+ .brz .brz-icon-svg{display:inline-block;width:1em;height:1em;stroke:none;max-width:none;position:relative;fill:currentColor;color:currentColor}
1107
+ .brz .brz-icon-svg use{fill:inherit}
1108
+ .brz .brz-icon-svg.grid-16{height:16px;width:16px}
1109
+ .brz .brz-icon-svg.grid-24{height:24px;width:24px}
1110
+ .brz .brz-icon-svg.glyph{fill:currentColor;stroke:none}
1111
+ .brz .brz-icon-svg.outline{stroke:currentColor;fill:none}
1112
+ .brz .brz-icon-svg.outline.stroke-2{stroke-width:2px}
1113
+ .brz .brz-section{position:relative;margin:0;padding:0;overflow:visible}
1114
+ .brz .brz-section__content{position:relative;width:100%}
1115
+ .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%}
1116
+ .brz .brz-section__items{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;width:100%}
1117
+ .brz .brz-section>.brz-slick-slider .brz-container__wrap{-webkit-box-align:center;-ms-flex-align:center;align-items:center}
1118
+ .brz .brz-section>.brz-slick-slider:not(.slick-initialized)>.brz-section__items:not(:first-child){display:none}
1119
+ .brz .brz-section>.brz-slick-slider>.slick-list>.slick-track>.slick-slide{height:auto}
1120
+ .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}
1121
+ .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}
1122
+ .brz .brz-section__header>.brz-section__menu-item{position:relative;z-index:1050}
1123
+ .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}
1124
+ .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}
1125
+ .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}
1126
+ .brz .brz-section__header--fixed{position:relative;z-index:1050}
1127
+ .brz .brz-section__header--fixed-opened{position:fixed;z-index:1051;top:0;left:0;width:100%}
1128
+ .brz .brz-popup__inner{height:100%}
1129
+ .brz .brz-container,.brz .brz-container__wrap{margin-left:auto;margin-right:auto;width:100%}
1130
+ .brz .brz-container__wrap{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}
1131
+ .brz .brz-row{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;text-align:left}
1132
+ .brz .brz-row__container{position:relative;text-align:center;font-size:0}
1133
+ .brz .brz-row__container .brz-link-container{position:absolute;height:100%;width:100%;top:0;left:0}
1134
+ .brz .brz-row__bg{margin-left:auto;margin-right:auto;width:100%;font-size:initial}
1135
+ .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}
1136
+ .brz .brz-columns>.brz-bg{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;min-width:0}
1137
+ .brz .brz-columns .brz-container-link{position:absolute;height:100%;width:100%;top:0;left:0}
1138
+ .brz .brz-wrapper,.brz .brz-wrapper-clone{border-top:1px solid transparent;border-bottom:1px solid transparent;margin-top:-1px;margin-bottom:-1px}
1139
+ .brz .brz-wrapper-clone__wrap{height:100%}
1140
+ .brz .brz-wrapper-clone__wrap>div{-webkit-box-align:center;-ms-flex-align:center;align-items:center}
1141
+ .brz .brz-wrapper-clone__wrap:after{content:"";display:table}
1142
+ .brz .brz-wrapper-clone__wrap .brz-flex-xs-wrap{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}
1143
+ .brz .brz-wrapper-clone__item{position:relative;min-height:1px;-ms-flex-preferred-size:auto;flex-basis:auto}
1144
+ .brz .brz-bg{position:relative}
1145
+ .brz .brz-bg-content{position:relative;-webkit-box-flex:1;-ms-flex:1;flex:1;min-width:0}
1146
+ .brz .brz-bg-media{overflow:hidden}
1147
+ .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%}
1148
+ .brz .brz-bg-image{background-repeat:no-repeat;background-size:cover}
1149
+ .brz.brz-is-mobile .brz-bg-media>.brz-bg-image{background-attachment:scroll}
1150
+ .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}
1151
+ .brz .brz-bg-color{opacity:1}
1152
+ .brz .brz-bg-shape{width:100%;height:100px;position:absolute;left:0;right:0;background-repeat:no-repeat;pointer-events:none}
1153
+ .brz .brz-bg-shape__top{top:0}
1154
+ .brz .brz-bg-shape__bottom{bottom:0;-webkit-transform:rotateX(180deg);transform:rotateX(180deg)}
1155
+ .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}
1156
+ @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}
1157
+ .brz .brz-btn.focus,.brz .brz-btn:focus,.brz .brz-btn:hover{text-decoration:none}
1158
+ .brz .brz-btn:focus{text-decoration:none}
1159
+ .brz .brz-btn .brz-span{display:block}
1160
+ .brz .brz-btn .brz-icon-svg{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto}
1161
+ .brz .buttons{margin:-10px;-webkit-box-align:center;-ms-flex-align:center;align-items:center}
1162
+ .brz .buttons .brz-wrapper-clone__item{padding:10px}
1163
+ .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}
1164
+ .brz .brz-list{margin:-6px;-webkit-box-align:center;-ms-flex-align:center;align-items:center}
1165
+ .brz .brz-list .brz-list__item{padding:6px}
1166
+ .brz .brz-countdown{display:-webkit-box;display:-ms-flexbox;display:flex}
1167
+ .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}
1168
+ .brz .brz-countdown__number{font-size:1em;margin-bottom:15px}
1169
+ .brz .brz-countdown .brz-ed-box__resizer{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;width:100%}
1170
+ .brz .brz-spacer{width:100%}
1171
+ .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}
1172
+ .brz .brz-icon-text .brz-text-btn,.brz .brz-icon-text .brz-text__editor{width:100%}
1173
+ .brz .brz-icon-text .brz-text__editor{white-space:pre-wrap}
1174
+ .brz .brz-icon-text .brz-wrapper-clone{overflow-wrap:break-word;word-wrap:break-word;word-break:break-word}
1175
+ .brz .brz-icon-text .brz-icon__container{min-width:auto}
1176
+ .brz .brz-line{position:relative;line-height:1;font-size:0;padding-top:7px;padding-bottom:7px;display:inline-block}
1177
+ .brz .brz-line .brz-hr{border-right-width:0;border-bottom-width:0;border-left-width:0;background:0 0}
1178
+ .brz .brz-map{position:relative;width:100%;display:inline-block;vertical-align:middle}
1179
+ .brz .brz-map::before{content:"";width:100%;height:100%;position:absolute;top:0;left:0;z-index:2;display:block;pointer-events:none}
1180
+ .brz .brz-map .brz-map-content{overflow:hidden;position:relative;height:100%;width:100%}
1181
+ .brz .brz-map .brz-iframe{position:absolute;top:0;left:0;width:100%;height:100%;border:none}
1182
+ .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%}
1183
+ .brz .brz-image .brz-img{max-width:100%;border-radius:inherit}
1184
+ .brz .brz-image .brz-a,.brz .brz-image .brz-picture{outline:0;border-radius:inherit}
1185
+ .brz .brz-image::before{content:"";width:100%;height:100%;position:absolute;pointer-events:none;top:0;left:0;z-index:1}
1186
+ .brz .brz-ed-image__content{position:relative;width:100%}
1187
+ .brz .brz-ed-image__wrapper{position:absolute;top:0;left:0;margin-left:auto;margin-right:auto;overflow:hidden}
1188
+ .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}
1189
+ .brz .brz-ed-image__wrapper .brz-picture:after{content:"";position:absolute;top:0;left:0;width:100%;height:100%}
1190
+ .brz .brz-ed-image__wrapper::before{content:"";width:100%;height:100%;position:absolute;pointer-events:none;top:0;left:0;z-index:1}
1191
+ .brz .brz-image-fix-1-1{padding-top:100%}
1192
+ .brz .brz-image-fix-2-1{padding-top:50%}
1193
+ .brz .brz-image-fix-2-3{padding-top:150%}
1194
+ .brz .brz-image-fix-3-4{padding-top:125%}
1195
+ .brz .brz-image-fix-4-3{padding-top:75%}
1196
+ .brz .brz-image-fix-9-16{padding-top:177.8%}
1197
+ .brz .brz-image-fix-16-9{padding-top:56.25%}
1198
+ .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}
1199
+ .brz:not(.brz-ed) .brz-image .brz-img{top:0;left:0;height:100%}
1200
+ .brz:not(.brz-ed) .brz-image__lightbox *{cursor:-webkit-zoom-in;cursor:zoom-in}
1201
+ .brz .mfp-bg{z-index:1100}
1202
+ .brz .mfp-wrap{z-index:1101}
1203
+ .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)}
1204
+ .brz .brz-video{position:relative;width:100%;display:inline-block;vertical-align:middle}
1205
+ .brz .brz-video::before{content:"";width:100%;height:100%;position:absolute;top:0;left:0;z-index:2;display:block;pointer-events:none}
1206
+ .brz .brz-video .brz-video-content{overflow:hidden;position:relative;width:100%;height:100%}
1207
+ .brz .brz-video .brz-iframe,.brz .brz-video .brz-video__cover{position:absolute;top:0;left:0;width:100%;height:100%;border:none}
1208
+ .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}
1209
+ .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}
1210
+ .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}
1211
+ .brz .brz-video .brz-video__cover .brz-video__cover-icon .brz-icon-svg{width:100%;left:2px}
1212
+ .brz .brz-video .brz-video__cover .brz-video__cover-icon a{line-height:0}
1213
+ .brz .brz-video .brz-video__cover:hover{cursor:pointer}
1214
+ .brz .brz-video .brz-video__cover:hover .brz-video__cover-icon{-webkit-transform:scale(1.1);transform:scale(1.1)}
1215
+ .brz .brz-video .brz-shortcode__placeholder{position:absolute;top:0}
1216
+ .brz .brz-audio{pointer-events:auto;min-width:-webkit-fit-content;min-width:-moz-fit-content;min-width:fit-content}
1217
+ .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}
1218
+ .brz .brz-audio .audio .play-pause-btn{display:-webkit-box;display:-ms-flexbox;display:flex;cursor:pointer;z-index:3}
1219
+ .brz .brz-audio .audio .current-time{margin-left:25px}
1220
+ .brz .brz-audio .audio .total-time{margin-left:15px}
1221
+ .brz .brz-audio .audio .slider{position:relative;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;cursor:pointer}
1222
+ .brz .brz-audio .audio .slider .progress{border-radius:inherit;position:absolute;pointer-events:none}
1223
+ .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}
1224
+ .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}
1225
+ .brz .brz-audio .audio .controls .slider{margin-left:16px;margin-right:16px;border-radius:5px;height:8px}
1226
+ .brz .brz-audio .audio .controls .slider .progress{height:100%}
1227
+ .brz .brz-audio .audio .controls span{cursor:default}
1228
+ .brz .brz-audio .audio .controls:empty{display:none}
1229
+ .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}
1230
+ .brz .brz-audio .audio .volume .volume-btn{display:-webkit-box;display:-ms-flexbox;display:flex;cursor:pointer}
1231
+ .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}
1232
+ .brz .brz-audio .audio .volume .volume-controls .slider{border-radius:3px}
1233
+ .brz .brz-audio .audio .volume .volume-controls .slider .progress{bottom:0;height:100%;width:100%}
1234
+ .brz .brz-audio .brz-audio__cover{position:absolute;top:0;left:0;width:100%;height:100%;border:none}
1235
+ .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}
1236
+ .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}
1237
+ .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}
1238
+ .brz .brz-embed-code{position:relative;display:inline-block;width:100%;min-height:20px;height:auto;word-break:break-all;word-wrap:break-word}
1239
+ .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}
1240
+ .brz .brz-embed-code .brz-shortcode__placeholder{height:250px}
1241
+ .brz .brz-embed-code img{max-width:100%}
1242
+ .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}
1243
+ .brz .brz-rich-text>*{white-space:pre-wrap}
1244
+ .brz .brz-rich-text em,.brz .brz-rich-text i{font-style:italic}
1245
+ .brz .brz-rich-text ol li,.brz .brz-rich-text ul li{list-style:none;padding-left:1em}
1246
+ .brz .brz-rich-text ol li:before,.brz .brz-rich-text ul li:before{margin-left:-1em}
1247
+ .brz .brz-rich-text ul li:before{position:relative;top:-.1em;line-height:1;content:"\2022";padding-right:.5em}
1248
+ .brz .brz-rich-text ol{counter-reset:number}
1249
+ .brz .brz-rich-text ol li{counter-increment:number}
1250
+ .brz .brz-rich-text ol li:before{content:counter(number);line-height:1;padding-right:.5em}
1251
+ .brz .brz-rich-text .ql-editor{white-space:pre-wrap}
1252
+ .brz .brz-rich-text .brz-image-gradient,.brz .brz-rich-text .brz-text-mask{color:transparent!important;-webkit-background-clip:text;background-clip:text}
1253
+ .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}
1254
+ .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}
1255
+ .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}
1256
+ .brz .brz-rich-text span{font-family:inherit;font-size:inherit;font-weight:inherit;line-height:inherit;letter-spacing:inherit}
1257
+ .brz .brz-rich-text p{display:block}
1258
+ .brz .brz-rich-text a,.brz .brz-rich-text em,.brz .brz-rich-text span{display:inline}
1259
+ .brz .brz-rich-text dl,.brz .brz-rich-text ol,.brz .brz-rich-text ul{margin:0;list-style:none;padding:0}
1260
+ .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}
1261
+ .brz .brz-rich-text a{text-decoration:none;background-color:transparent;-webkit-text-decoration-skip:objects}
1262
+ .brz .brz-rich-text a[href]:hover{text-decoration:underline}
1263
+ .brz .brz-rich-text strong{font-weight:700}
1264
+ .brz .brz-rich-text .link--anchor,.brz .brz-rich-text .link--external,.brz .brz-rich-text .link--popup{text-decoration:none}
1265
+ .brz .brz-rich-text .link--anchor:hover,.brz .brz-rich-text .link--external:hover,.brz .brz-rich-text .link--popup:hover{text-decoration:underline}
1266
+ .brz .brz-rich-text .brz-tp__dc-block:after{content:"";display:table;clear:both}
1267
+ .brz .brz-text__editor{min-width:10px}
1268
+ .brz .brz-text__editor:empty:before{content:"\00a0\00a0"}
1269
+ .brz:not(.brz-ed) .brz-population-mask{background-clip:text;color:transparent!important}
1270
+ .brz .brz-counter{-webkit-transition:all .3s ease;transition:all .3s ease;cursor:default;text-align:center;display:inline-block}
1271
+ .brz .brz-progress-bar__wrapper{overflow:hidden}
1272
+ .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}
1273
+ .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}
1274
+ .brz .brz-shortcode__placeholder .brz-icon-svg{width:calc(16px + (.075 * 100%));height:calc(16px + (.075 * 100%))}
1275
+ .brz .brz-soundcloud{position:relative;font-size:0}
1276
+ .brz .brz-soundcloud::before{content:" ";position:absolute;width:100%;height:100%;z-index:3;pointer-events:none}
1277
+ .brz .brz-soundcloud .brz-soundCloud-content{overflow:hidden;position:relative;height:100%;width:100%}
1278
+ .brz .brz-soundcloud .brz-soundCloud-content iframe{width:100%}
1279
+ .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}
1280
+ .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}
1281
+ .brz .slick-slider.slick-dotted{margin:0}
1282
+ .brz .slick-list{position:relative;overflow:hidden;display:block;margin:0;padding:0}
1283
+ .brz .slick-list:focus{outline:0}
1284
+ .brz .slick-list.dragging{cursor:pointer;cursor:hand}
1285
+ .brz .slick-slider .slick-list,.brz .slick-slider .slick-track{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
1286
+ .brz .slick-track{position:relative;left:0;top:0;display:block;margin-left:auto;margin-right:auto}
1287
+ .slick-loading .brz .slick-track{visibility:hidden}
1288
+ .brz .slick-track:after,.brz .slick-track:before{content:none}
1289
+ .brz .slick-slide{height:100%;min-height:1px;display:none;float:none}
1290
+ .brz .slick-slide img{display:block}
1291
+ .brz .slick-slide.slick-loading img{display:none}
1292
+ .brz .slick-slide.dragging img{pointer-events:none}
1293
+ .slick-initialized .brz .slick-slide{display:block}
1294
+ .slick-loading .brz .slick-slide{visibility:hidden}
1295
+ .slick-vertical .brz .slick-slide{display:block;height:auto;border:1px solid transparent}
1296
+ .brz .slick-arrow.slick-hidden{display:none}
1297
+ .brz .brz-slick-slider .brz-icon-svg,.brz .brz-slick-slider .brz-rich-text *{-webkit-backface-visibility:hidden;backface-visibility:hidden}
1298
+ .brz .brz-slick-slider .brz-bg-media{width:calc(100% + 1px)}
1299
+ .brz .brz-slick-slider .brz-bg-color,.brz .brz-slick-slider .brz-bg-content{-webkit-transform:translateZ(0);transform:translateZ(0)}
1300
+ .brz .brz-slick-slider .brz-section__items,.brz .brz-slick-slider .slick-slide>div{height:100%;outline:0}
1301
+ .brz .brz-slick-slider--fade .slick-slide{height:auto;visibility:hidden}
1302
+ .brz .brz-slick-slider--fade .slick-slide.slick-active{visibility:visible}
1303
+ .brz .slick-initialized .slick-slide{display:block}
1304
+ .brz .slick-track{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}
1305
+ .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}
1306
+ .brz .brz-slick-slider__dots li{display:inline-block;vertical-align:middle;padding-left:5px;padding-right:5px}
1307
+ .brz .brz-slick-slider__dots li:first-child{padding-left:0}
1308
+ .brz .brz-slick-slider__dots li:last-child{padding-right:0}
1309
+ .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}
1310
+ .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}
1311
+ .brz .brz-slick-slider__dots--circle button{width:10px;height:10px;border-radius:10px}
1312
+ .brz .brz-slick-slider__dots--diamond button{width:10px;height:10px;-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}
1313
+ .brz .brz-slick-slider__dots--square button{width:10px;height:10px}
1314
+ .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}
1315
+ .brz .brz-slick-slider__arrow:hover{-webkit-transition:linear .2s opacity;transition:linear .2s opacity}
1316
+ .brz .brz-slick-slider__arrow .brz-icon-svg{display:block}
1317
+ .brz .brz-slick-slider__arrow-prev{-webkit-transform:translateY(-50%) rotate(-180deg);transform:translateY(-50%) rotate(-180deg);left:30px}
1318
+ .brz .brz-slick-slider__arrow-next{right:30px}
1319
+ .brz .brz-forms{width:100%}
1320
+ .brz .brz-forms__fields,.brz .brz-forms__wrap{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}
1321
+ .brz .brz-forms__wrap{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}
1322
+ .brz .brz-forms__item{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-ms-flex-negative:0;flex-shrink:0}
1323
+ .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}
1324
+ .brz .brz-forms .brz-input::-webkit-input-placeholder,.brz .brz-forms .brz-textarea::-webkit-input-placeholder{color:inherit}
1325
+ .brz .brz-forms .brz-input::-moz-placeholder,.brz .brz-forms .brz-textarea::-moz-placeholder{color:inherit}
1326
+ .brz .brz-forms .brz-input::-ms-input-placeholder,.brz .brz-forms .brz-textarea::-ms-input-placeholder{color:inherit}
1327
+ .brz .brz-forms .brz-input::placeholder,.brz .brz-forms .brz-textarea::placeholder{color:inherit}
1328
+ .brz .brz-forms .brz-textarea{height:100%;resize:none}
1329
+ .brz .brz-forms .brz-label{display:block}
1330
+ .brz .brz-forms .brz-forms__field{padding:14px 24px;text-align:left}
1331
+ .brz .brz-forms .brz-forms__field-label{border:none;cursor:auto}
1332
+ .brz .brz-forms__select{position:relative}
1333
+ .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}
1334
+ .brz .brz-forms__select-current .brz-span{width:100%;cursor:pointer}
1335
+ .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}
1336
+ .brz .brz-forms__select-item{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;border:0;height:52px}
1337
+ .brz .brz-forms__select-item:not(:last-child){border-bottom:1px solid #f1f1f2}
1338
+ .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}
1339
+ .brz .brz-forms__select-item__input .brz-input{border-width:0;height:100%;width:100%;color:inherit}
1340
+ .brz .brz-forms__select-item__input .brz-input::-webkit-input-placeholder{color:rgba(115,119,127,.7);font-style:italic}
1341
+ .brz .brz-forms__select-item__input .brz-input:-moz-placeholder{color:rgba(115,119,127,.7);font-style:italic}
1342
+ .brz .brz-forms__select-item__input .brz-input::-moz-placeholder{color:rgba(115,119,127,.7);font-style:italic}
1343
+ .brz .brz-forms__select-item__input .brz-input:-ms-input-placeholder{color:rgba(115,119,127,.7);font-style:italic}
1344
+ .brz .brz-forms__select-item__input .brz-input.brz-input{cursor:text}
1345
+ .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}
1346
+ .brz .brz-forms__select--arrow{font-size:14px}
1347
+ .brz .brz-forms .brz-control__select{position:relative}
1348
+ .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}
1349
+ .brz .brz-forms .brz-control__select-current{padding:14px 24px;cursor:pointer}
1350
+ .brz .brz-forms .brz-control__select-current .brz-control__select-option{border:0;-ms-flex-preferred-size:100%;flex-basis:100%;height:100%}
1351
+ .brz .brz-forms .brz-control__select-current .brz-control__select--arrow{font-size:14px}
1352
+ .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}
1353
+ .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}
1354
+ .brz .brz-forms .brz-control__select-options .brz-control__select-option:not(:last-child){border-bottom:1px solid #f1f1f2}
1355
+ .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}
1356
+ .brz .brz-forms__alert--success{background-color:#15d053}
1357
+ .brz .brz-forms__alert--error{background-color:red}
1358
+ .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}
1359
+ @media (max-width:767px){.brz .brz-forms__select-item__input{font-size:14px;padding:10px 16px}
1360
+ .brz .brz-forms .brz-forms__field{padding:10px 16px}
1361
+ .brz .brz-forms .brz-control__select-current{padding:10px 16px}
1362
+ .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)}
1363
+ .brz .flatpickr-calendar.inline,.brz .flatpickr-calendar.open{opacity:1;max-height:640px;visibility:visible}
1364
+ .brz .flatpickr-calendar.open{display:inline-block;z-index:99999}
1365
+ .brz .flatpickr-calendar.animate.open{-webkit-animation:fpFadeInDown .3s cubic-bezier(.23,1,.32,1);animation:fpFadeInDown .3s cubic-bezier(.23,1,.32,1)}
1366
+ .brz .flatpickr-calendar.inline{display:block;position:relative;top:2px}
1367
+ .brz .flatpickr-calendar.static{position:absolute;top:calc(100% + 2px)}
1368
+ .brz .flatpickr-calendar.static.open{z-index:999;display:block}
1369
+ .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}
1370
+ .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}
1371
+ .brz .flatpickr-calendar .hasTime .dayContainer,.brz .flatpickr-calendar .hasWeeks .dayContainer{border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}
1372
+ .brz .flatpickr-calendar .hasWeeks .dayContainer{border-left:0}
1373
+ .brz .flatpickr-calendar.showTimeInput.hasTime .flatpickr-time{height:40px;border-top:1px solid #e6e6e6}
1374
+ .brz .flatpickr-calendar.noCalendar.hasTime .flatpickr-time{height:auto}
1375
+ .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}
1376
+ .brz .flatpickr-calendar.rightMost:after,.brz .flatpickr-calendar.rightMost:before{left:auto;right:22px}
1377
+ .brz .flatpickr-calendar:before{border-width:5px;margin:0 -5px}
1378
+ .brz .flatpickr-calendar:after{border-width:4px;margin:0 -4px}
1379
+ .brz .flatpickr-calendar.arrowTop:after,.brz .flatpickr-calendar.arrowTop:before{bottom:100%}
1380
+ .brz .flatpickr-calendar.arrowTop:before{border-bottom-color:#e6e6e6}
1381
+ .brz .flatpickr-calendar.arrowTop:after{border-bottom-color:#fff}
1382
+ .brz .flatpickr-calendar.arrowBottom:after,.brz .flatpickr-calendar.arrowBottom:before{top:100%}
1383
+ .brz .flatpickr-calendar.arrowBottom:before{border-top-color:#e6e6e6}
1384
+ .brz .flatpickr-calendar.arrowBottom:after{border-top-color:#fff}
1385
+ .brz .flatpickr-calendar:focus{outline:0}
1386
+ .brz .flatpickr-wrapper{position:relative;display:inline-block}
1387
+ .brz .flatpickr-months{display:-webkit-box;display:-ms-flexbox;display:flex}
1388
+ .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}
1389
+ .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)}
1390
+ .brz .flatpickr-months .flatpickr-next-month.flatpickr-disabled,.brz .flatpickr-months .flatpickr-prev-month.flatpickr-disabled{display:none}
1391
+ .brz .flatpickr-months .flatpickr-next-month i,.brz .flatpickr-months .flatpickr-prev-month i{position:relative}
1392
+ .brz .flatpickr-months .flatpickr-next-month.flatpickr-prev-month,.brz .flatpickr-months .flatpickr-prev-month.flatpickr-prev-month{left:0}
1393
+ .brz .flatpickr-months .flatpickr-next-month.flatpickr-next-month,.brz .flatpickr-months .flatpickr-prev-month.flatpickr-next-month{right:0}
1394
+ .brz .flatpickr-months .flatpickr-next-month:hover,.brz .flatpickr-months .flatpickr-prev-month:hover{color:#959ea9}
1395
+ .brz .flatpickr-months .flatpickr-next-month:hover svg,.brz .flatpickr-months .flatpickr-prev-month:hover svg{fill:#f64747}
1396
+ .brz .flatpickr-months .flatpickr-next-month svg,.brz .flatpickr-months .flatpickr-prev-month svg{width:14px;height:14px}
1397
+ .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}
1398
+ .brz .numInputWrapper{position:relative;height:auto}
1399
+ .brz .numInputWrapper input,.brz .numInputWrapper span{display:inline-block}
1400
+ .brz .numInputWrapper input{width:100%}
1401
+ .brz .numInputWrapper input::-ms-clear{display:none}
1402
+ .brz .numInputWrapper input::-webkit-inner-spin-button,.brz .numInputWrapper input::-webkit-outer-spin-button{margin:0;-webkit-appearance:none}
1403
+ .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}
1404
+ .brz .numInputWrapper span:hover{background:rgba(0,0,0,.1)}
1405
+ .brz .numInputWrapper span:active{background:rgba(0,0,0,.2)}
1406
+ .brz .numInputWrapper span:after{display:block;content:"";position:absolute}
1407
+ .brz .numInputWrapper span.arrowUp{top:0;border-bottom:0}
1408
+ .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%}
1409
+ .brz .numInputWrapper span.arrowDown{top:50%}
1410
+ .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%}
1411
+ .brz .numInputWrapper span svg{width:inherit;height:auto}
1412
+ .brz .numInputWrapper span svg path{fill:rgba(0,0,0,.5)}
1413
+ .brz .numInputWrapper:hover{background:rgba(0,0,0,.05)}
1414
+ .brz .numInputWrapper:hover span{opacity:1}
1415
+ .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)}
1416
+ .brz .flatpickr-current-month span.cur-month{font-family:inherit;font-weight:700;color:inherit;display:inline-block;margin-left:.5ch;padding:0}
1417
+ .brz .flatpickr-current-month span.cur-month:hover{background:rgba(0,0,0,.05)}
1418
+ .brz .flatpickr-current-month .numInputWrapper{width:6ch;display:inline-block}
1419
+ .brz .flatpickr-current-month .numInputWrapper span.arrowUp:after{border-bottom-color:rgba(0,0,0,.9)}
1420
+ .brz .flatpickr-current-month .numInputWrapper span.arrowDown:after{border-top-color:rgba(0,0,0,.9)}
1421
+ .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}
1422
+ .brz .flatpickr-current-month input.cur-year:focus{outline:0}
1423
+ .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}
1424
+ .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}
1425
+ .brz .flatpickr-current-month .flatpickr-monthDropdown-months:active,.brz .flatpickr-current-month .flatpickr-monthDropdown-months:focus{outline:0}
1426
+ .brz .flatpickr-current-month .flatpickr-monthDropdown-months:hover{background:rgba(0,0,0,.05)}
1427
+ .brz .flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month{background-color:transparent;outline:0;padding:0}
1428
+ .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}
1429
+ .brz .flatpickr-weekdays .flatpickr-weekdaycontainer{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1;flex:1}
1430
+ .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}
1431
+ .brz .dayContainer,.brz .flatpickr-weeks{padding:1px 0 0 0}
1432
+ .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}
1433
+ .brz .flatpickr-days:focus{outline:0}
1434
+ .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}
1435
+ .brz .dayContainer+.dayContainer{-webkit-box-shadow:-1px 0 0 #e6e6e6;box-shadow:-1px 0 0 #e6e6e6}
1436
+ .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}
1437
+ .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}
1438
+ .brz .flatpickr-day.today{border-color:#959ea9}
1439
+ .brz .flatpickr-day.today:focus,.brz .flatpickr-day.today:hover{border-color:#959ea9;background:#959ea9;color:#fff}
1440
+ .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}
1441
+ .brz .flatpickr-day.endRange.startRange,.brz .flatpickr-day.selected.startRange,.brz .flatpickr-day.startRange.startRange{border-radius:50px 0 0 50px}
1442
+ .brz .flatpickr-day.endRange.endRange,.brz .flatpickr-day.selected.endRange,.brz .flatpickr-day.startRange.endRange{border-radius:0 50px 50px 0}
1443
+ .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}
1444
+ .brz .flatpickr-day.endRange.startRange.endRange,.brz .flatpickr-day.selected.startRange.endRange,.brz .flatpickr-day.startRange.startRange.endRange{border-radius:50px}
1445
+ .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}
1446
+ .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}
1447
+ .brz .flatpickr-day.flatpickr-disabled,.brz .flatpickr-day.flatpickr-disabled:hover{cursor:not-allowed;color:rgba(57,57,57,.1)}
1448
+ .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}
1449
+ .brz .flatpickr-day.hidden{visibility:hidden}
1450
+ .brz .rangeMode .flatpickr-day{margin-top:1px}
1451
+ .brz .flatpickr-weekwrapper{float:left}
1452
+ .brz .flatpickr-weekwrapper .flatpickr-weeks{padding:0 12px;-webkit-box-shadow:1px 0 0 #e6e6e6;box-shadow:1px 0 0 #e6e6e6}
1453
+ .brz .flatpickr-weekwrapper .flatpickr-weekday{float:none;width:100%;line-height:28px}
1454
+ .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}
1455
+ .brz .flatpickr-innerContainer{display:block;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden}
1456
+ .brz .flatpickr-rContainer{display:inline-block;padding:0;-webkit-box-sizing:border-box;box-sizing:border-box}
1457
+ .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}
1458
+ .brz .flatpickr-time:after{content:"";display:table;clear:both}
1459
+ .brz .flatpickr-time .numInputWrapper{-webkit-box-flex:1;-ms-flex:1;flex:1;width:40%;height:40px;float:left}
1460
+ .brz .flatpickr-time .numInputWrapper span.arrowUp:after{border-bottom-color:#393939}
1461
+ .brz .flatpickr-time .numInputWrapper span.arrowDown:after{border-top-color:#393939}
1462
+ .brz .flatpickr-time.hasSeconds .numInputWrapper{width:26%}
1463
+ .brz .flatpickr-time.time24hr .numInputWrapper{width:49%}
1464
+ .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}
1465
+ .brz .flatpickr-time input.flatpickr-hour{font-weight:700}
1466
+ .brz .flatpickr-time input.flatpickr-minute,.brz .flatpickr-time input.flatpickr-second{font-weight:400}
1467
+ .brz .flatpickr-time input:focus{outline:0;border:0}
1468
+ .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}
1469
+ .brz .flatpickr-time .flatpickr-am-pm{outline:0;width:18%;cursor:pointer;text-align:center;font-weight:400}
1470
+ .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}
1471
+ .brz .flatpickr-input[readonly]{cursor:pointer}
1472
+ @-webkit-keyframes fpFadeInDown{from{opacity:0;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}
1473
+ 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)}
1474
+ 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}
1475
+ .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}
1476
+ .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}
1477
+ .brz .select2-container .select2-selection--single .select2-selection__clear{position:relative}
1478
+ .brz .select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered{padding-right:8px;padding-left:20px}
1479
+ .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}
1480
+ .brz .select2-container .select2-selection--multiple .select2-selection__rendered{display:inline-block;overflow:hidden;padding-left:8px;text-overflow:ellipsis;white-space:nowrap}
1481
+ .brz .select2-container .select2-search--inline{float:left}
1482
+ .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}
1483
+ .brz .select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}
1484
+ .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}
1485
+ .brz .select2-results{display:block}
1486
+ .brz .select2-results__options{list-style:none;margin:0;padding:0}
1487
+ .brz .select2-results__option{padding:6px;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-user-select:none}
1488
+ .brz .select2-results__option[aria-selected]{cursor:pointer}
1489
+ .brz .select2-container--open .select2-dropdown{left:0}
1490
+ .brz .select2-container--open .select2-dropdown--above{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}
1491
+ .brz .select2-container--open .select2-dropdown--below{border-top:none;border-top-left-radius:0;border-top-right-radius:0}
1492
+ .brz .select2-search--dropdown{display:block;padding:4px}
1493
+ .brz .select2-search--dropdown .select2-search__field{padding:4px;width:100%;-webkit-box-sizing:border-box;box-sizing:border-box}
1494
+ .brz .select2-search--dropdown .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}
1495
+ .brz .select2-search--dropdown.select2-search--hide{display:none}
1496
+ .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}
1497
+ .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}
1498
+ .brz .select2-container--default .select2-selection--single{background-color:#fff;border:1px solid #aaa;border-radius:4px}
1499
+ .brz .select2-container--default .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}
1500
+ .brz .select2-container--default .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:700}
1501
+ .brz .select2-container--default .select2-selection--single .select2-selection__placeholder{color:#999}
1502
+ .brz .select2-container--default .select2-selection--single .select2-selection__arrow{height:26px;position:absolute;top:1px;right:1px;width:20px}
1503
+ .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}
1504
+ .brz .select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear{float:left}
1505
+ .brz .select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow{left:1px;right:auto}
1506
+ .brz .select2-container--default.select2-container--disabled .select2-selection--single{background-color:#eee;cursor:default}
1507
+ .brz .select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear{display:none}
1508
+ .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}
1509
+ .brz .select2-container--default .select2-selection--multiple{background-color:#fff;border:1px solid #aaa;border-radius:4px;cursor:text}
1510
+ .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%}
1511
+ .brz .select2-container--default .select2-selection--multiple .select2-selection__rendered li{list-style:none}
1512
+ .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}
1513
+ .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}
1514
+ .brz .select2-container--default .select2-selection--multiple .select2-selection__choice__remove{color:#999;cursor:pointer;display:inline-block;font-weight:700;margin-right:2px}
1515
+ .brz .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover{color:#333}
1516
+ .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}
1517
+ .brz .select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}
1518
+ .brz .select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}
1519
+ .brz .select2-container--default.select2-container--focus .select2-selection--multiple{border:solid #000 1px;outline:0}
1520
+ .brz .select2-container--default.select2-container--disabled .select2-selection--multiple{background-color:#eee;cursor:default}
1521
+ .brz .select2-container--default.select2-container--disabled .select2-selection__choice__remove{display:none}
1522
+ .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}
1523
+ .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}
1524
+ .brz .select2-container--default .select2-search--dropdown .select2-search__field{border:1px solid #aaa}
1525
+ .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}
1526
+ .brz .select2-container--default .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}
1527
+ .brz .select2-container--default .select2-results__option[role=group]{padding:0}
1528
+ .brz .select2-container--default .select2-results__option[aria-disabled=true]{color:#999}
1529
+ .brz .select2-container--default .select2-results__option[aria-selected=true]{background-color:#ddd}
1530
+ .brz .select2-container--default .select2-results__option .select2-results__option{padding-left:1em}
1531
+ .brz .select2-container--default .select2-results__option .select2-results__option .select2-results__group{padding-left:0}
1532
+ .brz .select2-container--default .select2-results__option .select2-results__option .select2-results__option{margin-left:-1em;padding-left:2em}
1533
+ .brz .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-2em;padding-left:3em}
1534
+ .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}
1535
+ .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}
1536
+ .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}
1537
+ .brz .select2-container--default .select2-results__option--highlighted[aria-selected]{background-color:#5897fb;color:#fff}
1538
+ .brz .select2-container--default .select2-results__group{cursor:default;display:block;padding:6px}
1539
+ .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}
1540
+ .brz .select2-container--classic .select2-selection--single:focus{border:1px solid #5897fb}
1541
+ .brz .select2-container--classic .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}
1542
+ .brz .select2-container--classic .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:700;margin-right:10px}
1543
+ .brz .select2-container--classic .select2-selection--single .select2-selection__placeholder{color:#999}
1544
+ .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}
1545
+ .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}
1546
+ .brz .select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__clear{float:left}
1547
+ .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}
1548
+ .brz .select2-container--classic.select2-container--open .select2-selection--single{border:1px solid #5897fb}
1549
+ .brz .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow{background:0 0;border:none}
1550
+ .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}
1551
+ .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}
1552
+ .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}
1553
+ .brz .select2-container--classic .select2-selection--multiple{background-color:#fff;border:1px solid #aaa;border-radius:4px;cursor:text;outline:0}
1554
+ .brz .select2-container--classic .select2-selection--multiple:focus{border:1px solid #5897fb}
1555
+ .brz .select2-container--classic .select2-selection--multiple .select2-selection__rendered{list-style:none;margin:0;padding:0 5px}
1556
+ .brz .select2-container--classic .select2-selection--multiple .select2-selection__clear{display:none}
1557
+ .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}
1558
+ .brz .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove{color:#888;cursor:pointer;display:inline-block;font-weight:700;margin-right:2px}
1559
+ .brz .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover{color:#555}
1560
+ .brz .select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice{float:right;margin-left:5px;margin-right:auto}
1561
+ .brz .select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}
1562
+ .brz .select2-container--classic.select2-container--open .select2-selection--multiple{border:1px solid #5897fb}
1563
+ .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}
1564
+ .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}
1565
+ .brz .select2-container--classic .select2-search--dropdown .select2-search__field{border:1px solid #aaa;outline:0}
1566
+ .brz .select2-container--classic .select2-search--inline .select2-search__field{outline:0;-webkit-box-shadow:none;box-shadow:none}
1567
+ .brz .select2-container--classic .select2-dropdown{background-color:#fff;border:1px solid transparent}
1568
+ .brz .select2-container--classic .select2-dropdown--above{border-bottom:none}
1569
+ .brz .select2-container--classic .select2-dropdown--below{border-top:none}
1570
+ .brz .select2-container--classic .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}
1571
+ .brz .select2-container--classic .select2-results__option[role=group]{padding:0}
1572
+ .brz .select2-container--classic .select2-results__option[aria-disabled=true]{color:grey}
1573
+ .brz .select2-container--classic .select2-results__option--highlighted[aria-selected]{background-color:#3875d7;color:#fff}
1574
+ .brz .select2-container--classic .select2-results__group{cursor:default;display:block;padding:6px}
1575
+ .brz .select2-container--classic.select2-container--open .select2-dropdown{border-color:#5897fb}
1576
+ .brz .brz-forms2{width:100%}
1577
+ .brz .brz-forms2__fields,.brz .brz-forms2__wrap{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}
1578
+ .brz .brz-forms2__field{outline:0}
1579
+ .brz .brz-forms2__wrap{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}
1580
+ .brz .brz-forms2__item{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-ms-flex-negative:0;flex-shrink:0}
1581
+ .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}
1582
+ .brz .brz-forms2 .brz-input::-webkit-input-placeholder,.brz .brz-forms2 .brz-textarea::-webkit-input-placeholder{color:inherit;opacity:.5}
1583
+ .brz .brz-forms2 .brz-input::-moz-placeholder,.brz .brz-forms2 .brz-textarea::-moz-placeholder{color:inherit;opacity:.5}
1584
+ .brz .brz-forms2 .brz-input::-ms-input-placeholder,.brz .brz-forms2 .brz-textarea::-ms-input-placeholder{color:inherit;opacity:.5}
1585
+ .brz .brz-forms2 .brz-input::placeholder,.brz .brz-forms2 .brz-textarea::placeholder{color:inherit;opacity:.5}
1586
+ .brz .brz-forms2 .brz-textarea{height:100%;resize:none}
1587
+ .brz .brz-forms2 .brz-label{display:block}
1588
+ .brz .brz-forms2 .brz-forms2__field{text-align:left}
1589
+ .brz .brz-forms2 .brz-forms2__field-label{border:none;cursor:auto}
1590
+ .brz .brz-forms2__radio.brz-forms2__field{padding:0;border:none!important;margin-bottom:-20px}
1591
+ .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}
1592
+ .brz .brz-forms2__radio-option .brz-span{margin-left:10px;margin-right:auto}
1593
+ .brz .brz-forms2__radio-option input.brz-input{cursor:auto}
1594
+ .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}
1595
+ .brz .brz-forms2 .brz-control__check-group-icon,.brz .brz-forms2 .brz-control__radio-check{-ms-flex-preferred-size:1em;flex-basis:1em}
1596
+ .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)}
1597
+ .brz .brz-forms2__checkbox.brz-forms2__field{padding:0;border:none!important;margin-bottom:-20px}
1598
+ .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}
1599
+ .brz .brz-forms2__checkbox-option .brz-forms2__checkbox-option-name{margin-left:10px;margin-right:auto}
1600
+ .brz .brz-forms2__checkbox-option input.brz-input{cursor:auto}
1601
+ .brz .brz-forms2__checkbox-option .brz-control__radio-check{border-radius:0}
1602
+ .brz .brz-forms2__item-button .brz-btn{outline:0;width:100%}
1603
+ .brz .brz-forms2__item-button .brz-icon-svg{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0}
1604
+ .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}
1605
+ .brz .brz-forms2__alert--success{background-color:#15d053}
1606
+ .brz .brz-forms2__alert--error{background-color:red}
1607
+ .brz .brz-forms2__item--error .brz-control__check-group,.brz .brz-forms2__item--error .brz-control__radio{color:red!important}
1608
+ .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}
1609
+ .brz.brz:not(.brz-ed) .brz-control__check-group--check{display:none}
1610
+ .brz.brz:not(.brz-ed) .brz-control__check-group .brz-input{display:none}
1611
+ .brz.brz:not(.brz-ed) .brz-control__check-group .brz-input:checked~.brz-label .brz-control__check-group--check{display:inline-block}
1612
+ .brz.brz:not(.brz-ed) .brz-control__check-group .brz-input:checked~.brz-label .brz-control__check-group--uncheck{display:none}
1613
+ .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}
1614
+ .brz.brz:not(.brz-ed) .brz-control__radio--check{display:none}
1615
+ .brz.brz:not(.brz-ed) .brz-control__radio .brz-input{display:none}
1616
+ .brz.brz:not(.brz-ed) .brz-control__radio .brz-input:checked~.brz-label .brz-control__radio--check{display:inline-block}
1617
+ .brz.brz:not(.brz-ed) .brz-control__radio .brz-input:checked~.brz-label .brz-control__radio--uncheck{display:none}
1618
+ .brz.brz:not(.brz-ed) .brz-forms2__field-select{padding:0}
1619
+ .brz.brz:not(.brz-ed) .brz-select{width:100%;visibility:hidden}
1620
+ .brz.brz:not(.brz-ed) .select2-dropdown{background-color:#fff;border:none;border-radius:0}
1621
+ .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}
1622
+ .brz.brz:not(.brz-ed) .select2-container{height:100%}
1623
+ .brz.brz:not(.brz-ed) .select2-container,.brz.brz:not(.brz-ed) .select2-selection{outline:0}
1624
+ .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}
1625
+ .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}
1626
+ .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}
1627
+ .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}
1628
+ .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}
1629
+ .brz.brz:not(.brz-ed) .select2-selection__arrow{top:50%;right:18px;-webkit-transform:translateY(-50%);transform:translateY(-50%)}
1630
+ .brz.brz:not(.brz-ed) .select2-selection__clear{margin-right:14px}
1631
+ .brz.brz:not(.brz-ed) .select2-search__field{font:inherit;color:inherit;margin:0}
1632
+ .brz.brz:not(.brz-ed) .select2-search__field::-webkit-input-placeholder{color:inherit}
1633
+ .brz.brz:not(.brz-ed) .select2-search__field::-moz-placeholder{color:inherit}
1634
+ .brz.brz:not(.brz-ed) .select2-search__field::-ms-input-placeholder{color:inherit}
1635
+ .brz.brz:not(.brz-ed) .select2-search__field::placeholder{color:inherit}
1636
+ .brz.brz:not(.brz-ed) .select2-container .select2-search--inline{margin:2.5px;-webkit-box-flex:1;-ms-flex:1;flex:1;float:none}
1637
+ .brz.brz:not(.brz-ed) .select2-container--default .select2-results>.select2-results__options{max-height:initial}
1638
+ .brz.brz:not(.brz-ed) .select2-container--default .select2-results__option--highlighted[aria-selected]{background-color:inherit;color:inherit}
1639
+ .brz.brz:not(.brz-ed) .select2-container--default .select2-selection--single .select2-selection__placeholder{color:inherit}
1640
+ .brz.brz:not(.brz-ed) .select2-container--default .select2-selection--single .select2-selection__placeholder:empty:before{content:"Fake content";visibility:hidden}
1641
+ .brz.brz:not(.brz-ed) .select2-container--default .select2-selection--single .select2-selection__arrow b{border-color:currentColor transparent transparent}
1642
+ .brz.brz:not(.brz-ed) .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent currentColor}
1643
+ .brz.brz:not(.brz-ed) .select2-container--open .select2-dropdown{top:1px}
1644
+ .brz.brz:not(.brz-ed) .select2-dropdown--below{background-color:transparent}
1645
+ .brz.brz:not(.brz-ed) .flatpickr-calendar{font-family:Lato,sans-serif;width:306px}
1646
+ .brz.brz:not(.brz-ed) .flatpickr-calendar.hasTime{width:150px}
1647
+ .brz.brz:not(.brz-ed) .flatpickr-calendar.open{max-height:600px}
1648
+ .brz.brz:not(.brz-ed) .flatpickr-calendar .dayContainer{width:286px;min-width:286px;max-width:286px}
1649
+ .brz.brz:not(.brz-ed) .flatpickr-calendar .numInputWrapper:hover{background-color:transparent}
1650
+ .brz.brz:not(.brz-ed) .flatpickr-months{padding:10px 10px 0}
1651
+ .brz.brz:not(.brz-ed) .flatpickr-innerContainer{padding:0 10px 10px}
1652
+ .brz.brz:not(.brz-ed) .flatpickr-next-month,.brz.brz:not(.brz-ed) .flatpickr-prev-month{top:7px}
1653
+ .brz.brz:not(.brz-ed) .flatpickr-next-month{right:10px}
1654
+ .brz.brz:not(.brz-ed) .flatpickr-prev-month{left:10px}
1655
+ .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)}
1656
+ .brz.brz:not(.brz-ed) .flatpickr-months .flatpickr-next-month:hover,.brz.brz:not(.brz-ed) .flatpickr-months .flatpickr-prev-month:hover{color:#000}
1657
+ .brz.brz:not(.brz-ed) .flatpickr-months .flatpickr-next-month svg,.brz.brz:not(.brz-ed) .flatpickr-months .flatpickr-prev-month svg{fill:currentColor}
1658
+ .brz.brz:not(.brz-ed) .flatpickr-current-month input.cur-year{font-size:17px;font-weight:700}
1659
+ .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}
1660
+ .brz.brz:not(.brz-ed) .flatpickr-weekdays{padding:20px 0 15px;height:auto}
1661
+ .brz.brz:not(.brz-ed) .flatpickr-weekday{color:rgba(0,0,0,.8)}
1662
+ .brz.brz:not(.brz-ed) .flatpickr-days{width:286px;font-size:13px;font-weight:700}
1663
+ .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}
1664
+ .brz.brz:not(.brz-ed) .flatpickr-day.today{border-color:#a9a9a9}
1665
+ .brz.brz:not(.brz-ed) .flatpickr-day:focus,.brz.brz:not(.brz-ed) .flatpickr-day:hover{color:#fff;border-color:#a9a9a9;background-color:#a9a9a9}
1666
+ .brz.brz:not(.brz-ed) .flatpickr-day.selected{border-color:rgba(0,0,0,.9);background-color:rgba(0,0,0,.9)}
1667
+ .brz.brz:not(.brz-ed) .flatpickr-time input{font-size:15px;font-weight:700;text-align:left;text-indent:12px}
1668
+ .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}
1669
+ .brz.brz:not(.brz-ed) .flatpickr-am-pm{font-size:14px;font-weight:700;color:rgba(0,0,0,.7);width:32.66%}
1670
+ .brz.brz:not(.brz-ed) .flatpickr-am-pm:focus,.brz.brz:not(.brz-ed) .flatpickr-am-pm:hover{color:#000}
1671
+ .brz.brz:not(.brz-ed) .flatpickr-calendar.hasTime .numInputWrapper{width:32.66%}
1672
+ .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%}
1673
+ .brz.brz:not(.brz-ed) .flatpickr-calendar.hasTime .numInputWrapper span.arrowUp{margin-top:-10px}
1674
+ .brz.brz:not(.brz-ed) .flatpickr-calendar.hasTime .numInputWrapper span.arrowDown{margin-bottom:-10px}
1675
+ .brz .brz-input__upload{position:relative}
1676
+ .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}
1677
+ .brz .brz-input__upload .brz-label .brz-span{max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
1678
+ .brz .brz-input__upload .brz-label .brz-span:empty:before{content:"Hidden Placeholder";visibility:hidden}
1679
+ .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}
1680
+ .brz .brz-input__upload .brz-input:not(.brz-input__upload-placeholder){display:none}
1681
+ .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}
1682
+ @media (max-width:767px){.brz .brz-forms2__select-item__input{font-size:14px;padding:10px 16px}
1683
+ .brz .brz-forms2 .brz-control__select-current{padding:10px 16px}
1684
+ .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}
1685
+ .brz .brz-tabs__nav{display:-webkit-box;display:-ms-flexbox;display:flex;overflow:hidden;margin:0;padding:0}
1686
+ .brz .brz-tabs__nav--item{position:relative;list-style:none;z-index:var(--zIndex)}
1687
+ .brz .brz-tabs__nav--item:not(:last-child){margin-right:3px}
1688
+ .brz .brz-tabs__nav--active:after,.brz .brz-tabs__nav--active:before{content:"";position:absolute;width:100vw;height:2px;bottom:0}
1689
+ .brz .brz-tabs__nav--active:before{left:-100vw}
1690
+ .brz .brz-tabs__nav--active:after{right:-100vw}
1691
+ .brz .brz-tabs__nav--button{padding:10px 15px;cursor:pointer;border-style:solid;background-clip:padding-box}
1692
+ .brz .brz-tabs__nav--mobile{display:none}
1693
+ .brz .brz-tabs__items{display:none;border-style:solid;background-clip:padding-box;width:100%}
1694
+ .brz .brz-tabs__items--active{display:block;border-top:none}
1695
+ .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}
1696
+ .brz .brz-tabs__items--active .brz-bg-content:empty{min-height:50px}
1697
+ @media (max-width:991px){.brz .brz-tabs__nav--mobile{display:block}
1698
+ .brz .brz-tabs__nav--desktop{display:none}
1699
+ .brz .brz-tabs__items{display:block}
1700
+ .brz .brz-tabs__items>.brz-tabs__item--content{display:none}
1701
+ .brz .brz-tabs__items:not(:last-child){margin-bottom:3px}
1702
+ .brz .brz-tabs__items--active{border-top:solid}
1703
+ .brz .brz-tabs__items--active>.brz-tabs__nav--button{border-bottom:solid}
1704
+ .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}
1705
+ .brz .brz-accordion__nav{padding:10px 15px;cursor:pointer;border-style:solid;background-clip:padding-box}
1706
+ .brz .brz-accordion__item{display:block;width:100%}
1707
+ .brz .brz-accordion__item>.brz-accordion__content{display:none;border-style:solid;background-clip:padding-box;border-top-color:transparent!important}
1708
+ .brz .brz-accordion__item:not(:last-child){margin-bottom:3px}
1709
+ .brz .brz-accordion__item--active>.brz-accordion__content{display:block}
1710
+ .brz .brz-accordion__item--active>.brz-accordion__content:empty{min-height:50px}
1711
+ .brz .brz-image__gallery{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}
1712
+ .brz .brz-image__gallery .brz-image{display:block}
1713
+ .brz .brz-image__gallery-item{-webkit-transition:none!important;transition:none!important}
1714
+ .brz .brz-popup{position:fixed;width:100%;height:100%;top:0;left:0;z-index:1070}
1715
+ .brz .brz-popup__close{position:absolute;z-index:2;top:36px;left:50px;color:#fff;font-size:0;cursor:pointer}
1716
+ .brz .brz-popup__close .brz-icon-svg{font-size:26px}
1717
+ .brz .brz-popup__inner>.brz-bg-content{max-height:100%;overflow:auto;padding-top:70px;padding-bottom:70px}
1718
+ .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}
1719
+ .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}
1720
+ .brz .brz-popup2{position:fixed;width:100%;height:100%;top:0;left:0;z-index:1060}
1721
+ .brz .brz-popup2__close{position:absolute;z-index:2;color:#fff;font-size:0;cursor:pointer}
1722
+ .brz .brz-popup2__close .brz-icon-svg{font-size:26px}
1723
+ .brz .brz-popup2 .brz-container__wrap{position:relative}
1724
+ .brz .brz-popup2 .brz-container__wrap .brz-container{height:100%}
1725
+ .brz .brz-popup2__inner{height:100%}
1726
+ .brz .brz-popup2__inner>.brz-bg-content{max-height:100%;display:-webkit-box;display:-ms-flexbox;display:flex;overflow-x:hidden;overflow-y:auto}
1727
+ .brz .brz-popup2__inner>.brz-bg-content>.brz-container__wrap{max-height:100%;margin:0;padding:0;min-width:300px}
1728
+ .brz .brz-popup2__vertical-align{-webkit-transform:rotate(270deg);transform:rotate(270deg)}
1729
+ .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,.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}
1730
+ .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,.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}
1731
+ .brz .brz-carousel{display:block;width:100%}
1732
+ .brz .brz-carousel__slider:not(.slick-initialized){display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}
1733
+ .brz .brz-carousel>.slick-slider{overflow:hidden}
1734
+ .brz .brz-carousel>.slick-slider .slick-slide{height:auto}
1735
+ .brz .brz-carousel>.slick-slider>.slick-list>.slick-track>.slick-slide>div{height:100%}
1736
+ .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%}
1737
+ .brz .brz-carousel>.slick-slider>.brz-slick-slider__arrow{opacity:1}
1738
+ .brz .brz-carousel>.slick-slider>.brz-slick-slider__dots{bottom:10px}
1739
+ .brz .brz-carousel>.slick-slider .slick-slide{outline:0}
1740
+ .brz .brz-carousel>.slick-slider .slick-track{-ms-flex-wrap:nowrap;flex-wrap:nowrap}
1741
+ .brz .brz-carousel .brz-icon-svg,.brz .brz-carousel .brz-rich-text *{-webkit-backface-visibility:hidden;backface-visibility:hidden}
1742
+ @media (max-width:767px){.brz.brz:not(.brz-ed) .slick-slider *{min-width:0;min-height:0}}.brz .brz-posts{width:100%;display:grid}
1743
+ .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}
1744
+ .brz .brz-posts ul.page-numbers>li{position:relative;margin-left:4px;margin-right:4px}
1745
+ .brz .brz-posts ul.page-numbers>li:first-child{margin-left:0}
1746
+ .brz .brz-posts ul.page-numbers>li:last-child{margin-right:0}
1747
+ .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}
1748
+ .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}
1749
+ .brz .brz-posts ul.page-numbers .page-numbers:hover{-webkit-transition:.2s linear color;transition:.2s linear color}
1750
+ .brz .brz-posts ul.page-numbers .page-numbers.current:before{border-color:currentColor;-webkit-transition:.2s linear border-color;transition:.2s linear border-color}
1751
+ .brz .brz-menu__container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:inherit;-ms-flex-pack:inherit;justify-content:inherit}
1752
+ .brz .brz-menu__container .brz-mm-menu__icon:hover{cursor:pointer}
1753
+ .brz .brz-menu:not(.mm-menu){position:relative;width:100%;-webkit-box-pack:inherit;-ms-flex-pack:inherit;justify-content:inherit}
1754
+ .brz .brz-menu:not(.mm-menu) .brz-menu__item{list-style:none;padding-left:5px;padding-right:5px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}
1755
+ .brz .brz-menu:not(.mm-menu) .brz-menu__item>.brz-a{color:inherit;font-weight:inherit;font-family:inherit;letter-spacing:inherit;line-height:inherit;font-size:inherit;display:inherit;-webkit-box-align:inherit;-ms-flex-align:inherit;align-items:inherit;text-decoration:none}
1756
+ .brz .brz-menu:not(.mm-menu) .brz-menu__item>.brz-a:hover{text-decoration:none}
1757
+ .brz .brz-menu:not(.mm-menu) .brz-menu__ul{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:inherit;-ms-flex-pack:inherit;justify-content:inherit;padding:0}
1758
+ .brz .brz-menu:not(.mm-menu) .brz-menu__ul>.brz-menu__item-dropdown>.brz-menu__dropdown-left{left:0;padding-left:0}
1759
+ .brz .brz-menu:not(.mm-menu) .brz-menu__ul>.brz-menu__item-dropdown>.brz-menu__dropdown-left:after{left:15px}
1760
+ .brz .brz-menu:not(.mm-menu) .brz-menu__ul>.brz-menu__item-dropdown>.brz-menu__dropdown-right{right:0;padding-right:0}
1761
+ .brz .brz-menu:not(.mm-menu) .brz-menu__ul>.brz-menu__item-dropdown>.brz-menu__dropdown-right:after{right:15px}
1762
+ .brz .brz-menu:not(.mm-menu) .brz-menu__ul>.brz-menu__item-dropdown>.brz-menu__dropdown{width:300px;top:calc(100% + 5px);-webkit-transform:translateX(0);transform:translateX(0)}
1763
+ .brz .brz-menu:not(.mm-menu) .brz-menu__ul>.brz-menu__item-dropdown>.brz-menu__dropdown:before{top:-5px;left:0;right:0}
1764
+ .brz .brz-menu:not(.mm-menu) .brz-menu__item-dropdown{position:relative}
1765
+ .brz .brz-menu:not(.mm-menu) .brz-menu__item-dropdown .brz-menu__item{padding:0;-webkit-transition:background-color .2s linear,border-bottom-color .2s linear;transition:background-color .2s linear,border-bottom-color .2s linear}
1766
+ .brz .brz-menu:not(.mm-menu) .brz-menu__item-dropdown .brz-menu__item .brz-a{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:100%;padding:15px 35px 15px 15px;overflow-wrap:break-word;word-wrap:break-word;word-break:break-word}
1767
+ .brz .brz-menu:not(.mm-menu) .brz-menu__item-dropdown>.brz-menu__sub-menu{top:5px}
1768
+ .brz .brz-menu:not(.mm-menu) .brz-menu__dropdown{margin:0;width:300px;position:absolute;top:100%;visibility:hidden;opacity:0;z-index:-1}
1769
+ .brz .brz-menu:not(.mm-menu) .brz-menu__dropdown-left,.brz .brz-menu:not(.mm-menu) .brz-menu__dropdown-right{top:0;width:305px}
1770
+ .brz .brz-menu:not(.mm-menu) .brz-menu__dropdown-left:before,.brz .brz-menu:not(.mm-menu) .brz-menu__dropdown-right:before{content:"";position:absolute;top:-5px;right:0;bottom:0;left:0;z-index:-1}
1771
+ .brz .brz-menu:not(.mm-menu) .brz-menu__dropdown-left{left:calc(100% + 5px);-webkit-transform:translateX(-5px);transform:translateX(-5px)}
1772
+ .brz .brz-menu:not(.mm-menu) .brz-menu__dropdown-left:before{left:-5px}
1773
+ .brz .brz-menu:not(.mm-menu) .brz-menu__dropdown-right{right:calc(100% + 5px);-webkit-transform:translateX(5px);transform:translateX(5px)}
1774
+ .brz .brz-menu:not(.mm-menu) .brz-menu__dropdown-right:before{right:-5px}
1775
+ .brz .brz-menu:not(.mm-menu) .brz-menu__dropdown .brz-menu__item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}
1776
+ .brz .brz-menu:not(.mm-menu) .brz-menu__dropdown .brz-menu__item:last-child{border-bottom-left-radius:inherit;border-bottom-right-radius:inherit}
1777
+ .brz .brz-menu:not(.mm-menu) .brz-menu__dropdown .brz-menu__item-dropdown{position:relative}
1778
+ .brz .brz-menu:not(.mm-menu) .brz-menu__dropdown .brz-menu__item-dropdown:after{content:"";display:block;position:absolute;top:0;right:23px;bottom:0;left:auto;width:7px;height:7px;border:2px solid #fff;border-right-style:none;border-bottom-style:none;margin:auto;-webkit-transform:rotate(135deg);transform:rotate(135deg);-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-transition:border-color .2s linear;transition:border-color .2s linear}
1779
+ .brz .brz-menu:not(.mm-menu) .brz-mega-menu{width:100%;position:absolute;top:100%;left:0;visibility:hidden;opacity:0;z-index:-1;-webkit-transition:.2s visibility linear,.2s z-index linear,.2s opacity linear;transition:.2s visibility linear,.2s z-index linear,.2s opacity linear}
1780
+ .brz .brz-menu__editor .mm-panel_has-navbar{padding-top:0}
1781
+ .brz .brz-menu__editor .mm-panel_has-navbar>.mm-navbar{display:none}
1782
+ .brz .brz-menu.brz-menu__mmenu:not(.mm-menu){display:none}
1783
+ .brz .brz-menu.mm-menu{text-transform:initial}
1784
+ .brz .brz-menu.mm-menu.mm-menu_opened{display:block;z-index:1100}
1785
+ .brz .brz-menu.mm-menu .mm-navbar a,.brz .brz-menu.mm-menu .mm-navbar>*{color:inherit}
1786
+ .brz .brz-menu.mm-menu .mm-navbar:not(.mm-listitem){height:44px;background-color:transparent}
1787
+ .brz .brz-menu.mm-menu .brz-menu__ul>.mm-navbar{height:44px;border-bottom:inherit;background-color:transparent}
1788
+ .brz .brz-menu.mm-menu .brz-menu__ul .mm-listitem_opened>.mm-panel{background-color:rgba(255,255,255,.05)}
1789
+ .brz .brz-menu.mm-menu .brz-menu__ul--has-dropdown .mm-listitem_opened>.mm-panel{background-color:transparent}
1790
+ .brz .brz-menu.mm-menu .brz-mm-menu__item{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-transform:none;transform:none;padding:0;position:relative;left:auto;top:auto;visibility:visible;opacity:1;width:auto}
1791
+ .brz .brz-menu.mm-menu .brz-mm-menu__item.mm-listitem_vertical>.mm-panel{padding:0 10px}
1792
+ .brz .brz-menu.mm-menu .brz-mm-menu__item.mm-listitem_opened>.mm-listitem__text{position:relative}
1793
+ .brz .brz-menu.mm-menu .brz-mm-menu__item.mm-listitem_opened>.mm-listitem__text:after{content:"";position:absolute;display:block;left:0;right:0;bottom:0;border-bottom:1px solid}
1794
+ .brz .brz-menu.mm-menu .brz-mm-menu__item .mm-listitem__text{color:inherit;font-weight:inherit;font-family:inherit;letter-spacing:inherit;line-height:inherit;font-size:inherit;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:10px 20px}
1795
+ .brz .brz-menu.mm-menu .brz-mm-menu__item .mm-btn_next{position:absolute;right:0;left:auto;background:0 0;padding:0;width:50px;border:0;color:inherit}
1796
+ .brz .brz-menu.mm-menu .brz-mm-menu__item .mm-btn_next:after{border-color:inherit;width:7px;height:7px}
1797
+ .brz .brz-menu .mm-navbar__title{line-height:20px;font-size:13px;padding:12px 20px}
1798
+ .brz .brz-menu--has-dropdown.mm-menu .mm-navbar{padding:0}
1799
+ .brz .brz-menu--has-dropdown.mm-menu .mm-navbar__title{padding:12px 50px 12px 20px}
1800
+ .brz .brz-menu--has-dropdown.mm-menu .brz-mm-menu__item>.mm-listitem__text{padding-right:50px}
1801
+ .brz .brz-menu .brz-a,.brz .brz-menu .mm-btn_next{-webkit-transition:color .2s linear;transition:color .2s linear}
1802
+ .brz .brz-menu .brz-a:active,.brz .brz-menu .brz-a:focus,.brz .brz-menu .brz-a:hover,.brz .brz-menu .mm-btn_next:active,.brz .brz-menu .mm-btn_next:focus,.brz .brz-menu .mm-btn_next:hover{outline:0}
1803
+ .brz .brz-menu__error{height:50px;line-height:50px;padding:0 20px;border-radius:3px;background-color:#ececec;font-family:pn,"Open Sans",Arial,sans-serif;font-size:15px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}
1804
+ .brz .brz-menu__error .brz-a{font-weight:700;margin-right:5px;cursor:pointer}
1805
+ .brz .brz-menu.mm-menu_opened~.mm-wrapper__blocker{-webkit-transition-delay:0s;transition-delay:0s}
1806
+ .brz:not(.brz-ed) .brz-menu .brz-menu__item:hover>.brz-mega-menu,.brz:not(.brz-ed) .brz-menu .brz-menu__item:hover>.brz-menu__sub-menu{visibility:visible;opacity:1;z-index:1050;-webkit-transition:.2s visibility linear,.2s z-index linear,.2s opacity linear,-webkit-transform .2s linear;transition:.2s visibility linear,.2s z-index linear,.2s opacity linear,-webkit-transform .2s linear;transition:.2s visibility linear,.2s z-index linear,.2s opacity linear,transform .2s linear;transition:.2s visibility linear,.2s z-index linear,.2s opacity linear,transform .2s linear,-webkit-transform .2s linear}
1807
+ .brz:not(.brz-ed) .brz-menu .brz-menu__item:hover>.brz-menu__sub-menu{-webkit-transform:translateX(0);transform:translateX(0)}
1808
+ .brz:not(.brz-ed) .brz-menu:not(.brz-menu--has-dropdown) .mm-navbar__title{padding-left:0;padding-right:0}
1809
+ .brz:not(.brz-ed) .brz-menu .mm-panel_has-navbar{padding-top:44px}
1810
+ .brz .brz-root__container.mm-page{position:relative;background:inherit}
1811
+ .brz .brz-root__container.mm-slideout{-webkit-transition:-webkit-transform .4s ease;transition:-webkit-transform .4s ease;transition:transform .4s ease;transition:transform .4s ease,-webkit-transform .4s ease}
1812
+ .brz .mm-wrapper__blocker.mm-slideout{z-index:1099}
1813
+ .brz .fb_iframe_widget{min-height:20px}
1814
+ .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}
1815
+ .brz .brz-fb-embed,.brz .brz-fb-group,.brz .brz-fb-page{position:relative;width:100%}
1816
+ .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}
1817
+ .brz .brz-fb-comments,.brz .brz-fb-page{width:100%}
1818
+ .brz .brz-wp__breadcrumbs{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:inherit;-ms-flex-pack:inherit;justify-content:inherit}
1819
+ .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}
1820
+ .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}
1821
+ .brz .brz-wp__breadcrumbs .brz-breadcrumbs .brz-li .brz-a{cursor:pointer}
1822
+ .brz .brz-wp__breadcrumbs .brz-breadcrumbs .brz-li .brz-icon-svg{margin-top:1px}
1823
+ .brz .brz-wp__breadcrumbs .brz-breadcrumbs .brz-li:last-child .brz-a{margin-right:0}
1824
+ .brz .brz-wp__breadcrumbs .brz-breadcrumbs .brz-li:not(:last-child) .brz-a{color:inherit}
1825
+ .brz .brz-woosku{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:inherit;-ms-flex-pack:inherit;justify-content:inherit}
1826
+ .brz .brz-woostock{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:inherit;-ms-flex-pack:inherit;justify-content:inherit}
1827
+ .brz .brz-woostock .in-stock{margin:0}
1828
+ .brz .brz-wp__postContent>div>:first-child{margin-top:0}
1829
+ .brz .brz-wp__postContent>div>:last-child{margin-bottom:0}
1830
+ .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}
1831
+ .brz .brz-wp__postinfo>ul{margin:0;padding:0}
1832
+ .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}
1833
+ .brz .brz-wp__postinfo .brz-li:last-child{margin-right:0!important}
1834
+ .brz .brz-wp__postinfo .brz-li .brz-icon-svg{margin-right:.5em}
1835
+ .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}
1836
+ .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}
1837
+ .brz .brz-starrating-color{position:absolute;top:0;left:0;z-index:2;overflow:hidden}
1838
+ .brz .brz-starrating-icon-wrap{position:relative}
1839
+ .brz .brz-starrating .brz-icon-svg{top:.1em}
1840
+ .brz .brz-starrating .brz-icon-svg:last-child{margin-right:0!important}
1841
+ .brz .brz-starrating-color-full{width:100%}
1842
+ .brz .brz-starrating-color-w1{width:10%}
1843
+ .brz .brz-starrating-color-w2{width:20%}
1844
+ .brz .brz-starrating-color-w3{width:30%}
1845
+ .brz .brz-starrating-color-w4{width:40%}
1846
+ .brz .brz-starrating-color-w5{width:50%}
1847
+ .brz .brz-starrating-color-w6{width:60%}
1848
+ .brz .brz-starrating-color-w7{width:70%}
1849
+ .brz .brz-starrating-color-w8{width:80%}
1850
+ .brz .brz-starrating-color-w9{width:90%}
1851
+ .brz .screen-reader-text{display:none}
1852
+ .brz .media-modal *{-webkit-box-sizing:content-box;box-sizing:content-box}
1853
+ .brz .media-modal input,.brz .media-modal select,.brz .media-modal textarea{-webkit-box-sizing:border-box;box-sizing:border-box}
1854
+ .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}
1855
+ .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}
1856
+ .brz .media-modal label,.brz .media-modal legend{font-size:13px;text-transform:capitalize;line-height:1.4em;color:#666;font-weight:400}
1857
+ .brz .media-frame input,.brz .media-frame textarea{padding:6px 8px}
1858
+ .brz .media-frame select,.brz .wp-admin .media-frame select{line-height:28px;margin-top:3px}
1859
+ .brz .media-frame a{border-bottom:none;color:#0073aa}
1860
+ .brz .media-frame a:active,.brz .media-frame a:hover{color:#00a0d2}
1861
+ .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}
1862
+ .brz .media-frame a.button{color:#32373c}
1863
+ .brz .media-frame a.button:hover{color:#23282d}
1864
+ .brz .media-frame a.button-primary,.brz .media-frame a.button-primary:hover{color:#fff}
1865
+ .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}
1866
+ .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}
1867
+ .brz .media-frame select{height:24px;padding:2px}
1868
+ .brz .media-frame input:disabled,.brz .media-frame input[readonly],.brz .media-frame textarea:disabled,.brz .media-frame textarea[readonly]{background-color:#eee}
1869
+ .brz .media-frame input[type=search]{-webkit-appearance:textfield}
1870
+ .brz .media-frame ::-webkit-input-placeholder{color:#72777c}
1871
+ .brz .media-frame ::-moz-placeholder{color:#72777c;opacity:1}
1872
+ .brz .media-frame :-ms-input-placeholder{color:#72777c}
1873
+ .brz .media-frame .hidden{display:none}
1874
+ .brz .media-frame button{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}
1875
+ .brz .media-frame button.delete-attachment{height:auto;font-size:12px;line-height:1}
1876
+ .brz .media-frame button.media-button-select{margin-top:15px;font-size:13px;line-height:26px;height:28px}
1877
+ .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}
1878
+ .brz .media-frame button.browser:hover{background:#fafafa;border-color:#999;color:#23282d!important}
1879
+ .brz .media-modal .media-frame-title h1:before{display:none}
1880
+ .brz .media-modal{position:fixed;top:30px;left:78px;right:30px;bottom:60px;z-index:160000}
1881
+ .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}
1882
+ .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}
1883
+ .brz .media-modal-close:active,.brz .media-modal-close:hover{color:#00a0d2}
1884
+ .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)}
1885
+ .brz .media-modal-close span.media-modal-icon{background-image:none}
1886
+ .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}
1887
+ .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;border-bottom:none;color:#0073aa;text-transform:capitalize;text-align:left;text-shadow:none}
1888
+ .brz .media-router>a:hover{color:#00a0d2}
1889
+ .brz .media-router>a:last-child{border-right:0}
1890
+ .brz .media-router>a:active{outline:0}
1891
+ .brz .media-router .active,.brz .media-router .active:hover{color:#32373c}
1892
+ .brz .media-router .active,.brz .media-router>a.active:last-child{background:#fff;border:1px solid #ddd;border-bottom:none}
1893
+ .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}
1894
+ .brz .media-toolbar-primary .search{max-width:100%}
1895
+ .brz .media-modal-content .media-frame select.attachment-filters{margin-top:11px;margin-right:2%;width:42%;width:calc(48% - 12px);padding:2px;line-height:28px;height:28px}
1896
+ .brz .thumbnail{display:block;padding:0;margin-bottom:0;line-height:normal;background-color:transparent;border:0;border-radius:0}
1897
+ .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}
1898
+ .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}
1899
+ .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}
1900
+ .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}
1901
+ .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}
1902
+ .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}
1903
+ .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}
1904
+ .brz .media-sidebar .setting .name{max-width:80px}
1905
+ .brz .attachment-details .setting select,.brz .media-sidebar .setting select{max-width:65%}
1906
+ .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}
1907
+ .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}
1908
+ .brz .compat-item label span{text-align:right}
1909
+ .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}
1910
+ .brz .attachment-details .setting .value,.brz .media-sidebar .setting .value{margin:0 1px;text-align:left}
1911
+ .brz .attachment-details .setting textarea,.brz .compat-item .field textarea,.brz .media-sidebar .setting textarea{height:62px;resize:vertical}
1912
+ .brz .attachment-details select,.brz .media-sidebar select{margin-top:3px}
1913
+ .brz .media-frame-title .suggested-dimensions{font-size:14px;float:right;margin-right:20px}
1914
+ .brz .media-frame select.attachment-filters{margin-top:11px;margin-right:2%;max-width:42%;max-width:calc(48% - 12px)}
1915
+ .brz .media-frame select.attachment-filters:last-of-type{margin-right:0}
1916
+ .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}
1917
+ .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}
1918
+ .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}
1919
+ .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}
1920
+ .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}
1921
+ .brz .wp-core-ui .attachment-preview:before{content:"";display:block;padding-top:100%}
1922
+ .brz .wp-core-ui .attachment .icon{margin:0 auto;overflow:hidden}
1923
+ .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}
1924
+ .brz .wp-core-ui .attachment .portrait img{max-width:100%}
1925
+ .brz .wp-core-ui .attachment .landscape img{max-height:100%}
1926
+ .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}
1927
+ .brz .wp-core-ui .attachment .thumbnail img{top:0;left:0}
1928
+ .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%)}
1929
+ .brz .wp-core-ui .attachment .thumbnail .centered img{-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}
1930
+ .brz .wp-core-ui .attachments-browser .attachment .thumbnail .centered img.icon{-webkit-transform:translate(-50%,-70%);transform:translate(-50%,-70%)}
1931
+ .brz .ie8 .wp-core-ui .attachment img.icon{top:20%;position:relative}
1932
+ .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)}
1933
+ .brz .wp-core-ui .attachment .filename div{padding:5px 10px}
1934
+ .brz .wp-core-ui .attachment .thumbnail img{position:absolute}
1935
+ .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}
1936
+ .brz .wp-core-ui .attachment-close:focus,.brz .wp-core-ui .attachment-close:hover{background-position:-36px 4px}
1937
+ .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)}
1938
+ .brz .wp-core-ui .attachment .check .media-modal-icon{display:block;background-position:-1px 0;height:15px;width:15px;margin:5px}
1939
+ .brz .wp-core-ui .attachment .check:hover .media-modal-icon{background-position:-40px 0}
1940
+ .brz .wp-core-ui .attachment.selected .check{display:block}
1941
+ .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}
1942
+ .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}
1943
+ .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}
1944
+ .brz .wp-core-ui .media-frame .attachment .describe{position:relative;display:block;width:100%;margin:0;padding:8px;font-size:12px;border-radius:0}
1945
+ .brz .media-frame .attachments-browser{position:relative;width:100%;height:100%;overflow:hidden}
1946
+ .brz .attachments-browser .media-toolbar{right:300px;height:50px}
1947
+ .brz .attachments-browser.hide-sidebar .media-toolbar{right:0}
1948
+ .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}
1949
+ .brz .attachments-browser .attachments{padding:2px 8px 8px}
1950
+ .brz .attachments-browser .attachments,.brz .attachments-browser .uploader-inline{position:absolute;top:50px;left:0;right:300px;bottom:0;overflow:auto;outline:0}
1951
+ .brz .attachments-browser .uploader-inline.hidden{display:none}
1952
+ .brz .attachments-browser .media-toolbar-primary{max-width:33%}
1953
+ .brz .attachments-browser .media-toolbar-secondary{max-width:66%}
1954
+ .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}
1955
+ .brz .uploader-inline .close:before{font:normal 30px/1 dashicons!important;color:#555d66;display:inline-block;content:"\f335";font-weight:300;margin-top:1px}
1956
+ .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)}
1957
+ .brz .attachments-browser.hide-sidebar .attachments,.brz .attachments-browser.hide-sidebar .uploader-inline{right:0;margin-right:0}
1958
+ .brz .attachments-browser .instructions{display:inline-block;margin-top:16px;line-height:18px;font-size:13px;color:#666;margin-right:.5em}
1959
+ .brz .attachments-browser .no-media{padding:2em 0 0 2em}
1960
+ .brz .media-progress-bar{position:relative;height:10px;width:70%;margin:10px auto;border-radius:10px;background:#ddd;background:rgba(0,0,0,.1)}
1961
+ .brz .media-progress-bar div{height:10px;min-width:20px;width:0;background:#0073aa;border-radius:10px;-webkit-transition:width .3s;transition:width .3s}
1962
+ .brz .media-uploader-status .media-progress-bar{display:none;width:100%}
1963
+ .brz .uploading.media-uploader-status .media-progress-bar{display:block}
1964
+ .brz .attachment-preview .media-progress-bar{position:absolute;top:50%;left:15%;width:70%;margin:-5px 0 0 0}
1965
+ .brz .media-uploader-status{position:relative;margin:0 auto;padding-bottom:10px;max-width:400px}
1966
+ .brz .uploader-inline .media-uploader-status h2,.brz .uploader-inline .media-uploader-status h3{display:none}
1967
+ .brz .media-uploader-status .upload-details{display:none;font-size:12px;color:#666}
1968
+ .brz .uploading.media-uploader-status .upload-details{display:block}
1969
+ .brz .media-uploader-status .upload-detail-separator{padding:0 4px}
1970
+ .brz .media-uploader-status .upload-count{color:#444}
1971
+ .brz .media-uploader-status .upload-dismiss-errors,.brz .media-uploader-status .upload-errors{display:none}
1972
+ .brz .errors.media-uploader-status .upload-dismiss-errors,.brz .errors.media-uploader-status .upload-errors{display:block}
1973
+ .brz .media-uploader-status .upload-dismiss-errors{text-decoration:none}
1974
+ .brz .media-sidebar .media-uploader-status .upload-dismiss-errors{position:absolute;top:-10px;right:-10px;padding:10px;-webkit-transition:none;transition:none}
1975
+ .brz .media-sidebar .media-uploader-status .upload-dismiss-errors:before{content:"\f153";display:block;font:normal 16px/1 dashicons;color:#72777c}
1976
+ .brz .media-sidebar .media-uploader-status .upload-dismiss-errors:focus:before,.brz .media-sidebar .media-uploader-status .upload-dismiss-errors:hover:before{color:#c00}
1977
+ .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)}
1978
+ .brz .uploader-inline .upload-errors .upload-error{background-color:#fbeaea;-webkit-box-shadow:none;box-shadow:none}
1979
+ .brz .upload-errors .upload-error-filename{font-weight:600}
1980
+ .brz .upload-errors .upload-error-message{display:block;padding-top:8px;word-wrap:break-word}
1981
+ .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}
1982
+ .brz .uploader-window-content{position:absolute;top:10px;left:10px;right:10px;bottom:10px;border:1px dashed #fff}
1983
+ .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}
1984
+ .brz .uploader-window .media-progress-bar{margin-top:20px;max-width:300px;background:0 0;border-color:#fff;display:none}
1985
+ .brz .uploader-window .media-progress-bar div{background:#fff}
1986
+ .brz .uploading .uploader-window .media-progress-bar{display:block}
1987
+ .brz .media-frame .uploader-inline{margin-bottom:20px;padding:0;text-align:center}
1988
+ .brz .uploader-inline-content{position:absolute;top:30%;left:0;right:0}
1989
+ .brz .uploader-inline-content .upload-ui{margin:2em 0}
1990
+ .brz .uploader-inline-content .post-upload-ui{margin-bottom:2em}
1991
+ .brz .uploader-inline .has-upload-message .upload-ui{margin:0 0 4em}
1992
+ .brz .uploader-inline h2,.brz .uploader-inline h3{font-size:20px;line-height:28px;font-weight:400;margin:0}
1993
+ .brz .uploader-inline .has-upload-message .upload-instructions{font-size:14px;color:#444;font-weight:400}
1994
+ .brz .uploader-inline .drop-instructions{display:none}
1995
+ .brz .supports-drag-drop .uploader-inline .drop-instructions{display:block}
1996
+ .brz .uploader-inline p{font-size:12px;margin:.5em 0}
1997
+ .brz .uploader-inline .media-progress-bar{display:none}
1998
+ .brz .uploading.uploader-inline .media-progress-bar{display:block}
1999
+ .brz .uploader-inline .browser{display:inline-block!important}
2000
+ .brz .media-selection{position:absolute;top:0;left:0;right:350px;height:60px;padding:0 0 0 16px;overflow:hidden;white-space:nowrap}
2001
+ .brz .media-selection .selection-info{display:inline-block;font-size:12px;height:60px;margin-right:10px;vertical-align:top}
2002
+ .brz .media-selection.editing,.brz .media-selection.empty{display:none}
2003
+ .brz .media-selection.one .edit-selection{display:none}
2004
+ .brz .media-selection .count{display:block;padding-top:12px;font-size:14px;line-height:20px;font-weight:600}
2005
+ .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}
2006
+ .brz .media-selection .button-link:focus,.brz .media-selection .button-link:hover{color:#00a0d2}
2007
+ .brz .media-selection .button-link:last-child{border-right:0;margin-right:0}
2008
+ .brz .selection-info .clear-selection{color:#bc0b0b}
2009
+ .brz .selection-info .clear-selection:focus,.brz .selection-info .clear-selection:hover{color:#dc3232}
2010
+ .brz .media-selection .selection-view{display:inline-block;vertical-align:top}
2011
+ .brz .media-selection .attachments{display:inline-block;height:48px;margin:6px;padding:0;overflow:hidden;vertical-align:top}
2012
+ .brz .media-selection .attachment{width:40px;padding:0;margin:4px}
2013
+ .brz .media-selection .attachment .thumbnail{top:0;right:0;bottom:0;left:0}
2014
+ .brz .media-selection .attachment .icon{width:50%}
2015
+ .brz .media-selection .attachment-preview{-webkit-box-shadow:none;box-shadow:none;background:0 0}
2016
+ .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}
2017
+ .brz .wp-core-ui .media-selection .selected.attachment{-webkit-box-shadow:none;box-shadow:none}
2018
+ .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}
2019
+ .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))}
2020
+ .brz .media-selection .attachment .filename{display:none}
2021
+ .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}
2022
+ .brz .media-frame .spinner.is-active{visibility:visible}
2023
+ .brz .media-toolbar .spinner{margin-top:14px}
2024
+ .brz .attachment-details{position:relative;overflow:auto}
2025
+ .brz .attachment-details .settings-save-status{float:right;text-transform:none;z-index:10}
2026
+ .brz .attachment-details .settings-save-status .spinner{margin-left:5px}
2027
+ .brz .attachment-details .settings-save-status .saved{float:right;display:none}
2028
+ .brz .attachment-details.save-waiting .settings-save-status .spinner{visibility:visible}
2029
+ .brz .attachment-details.save-complete .settings-save-status .saved{display:block}
2030
+ .brz .attachment-info{overflow:hidden;min-height:60px;margin-bottom:16px;line-height:18px;color:#666;border-bottom:1px solid #ddd;padding-bottom:11px}
2031
+ .brz .attachment-info .filename{font-weight:600;color:#444;word-wrap:break-word}
2032
+ .brz .attachment-info .thumbnail{position:relative;float:left;max-width:120px;max-height:120px;margin-top:5px;margin-right:10px;margin-bottom:5px}
2033
+ .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)}
2034
+ .brz .uploading .attachment-info .media-progress-bar{margin-top:35px}
2035
+ .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}
2036
+ .brz .attachment-info .thumbnail img{display:block;max-width:120px;max-height:120px;margin:0 auto}
2037
+ .brz .attachment-info .details{float:left;font-size:12px;max-width:100%}
2038
+ .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}
2039
+ .brz .attachment-details.needs-refresh .attachment-info .edit-attachment{display:none}
2040
+ .brz .attachment-info .edit-attachment{display:block}
2041
+ .brz .media-modal .delete-attachment,.brz .media-modal .trash-attachment,.brz .media-modal .untrash-attachment{display:inline;padding:0;color:#bc0b0b}
2042
+ .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}
2043
+ .brz .attachment-display-settings{width:100%;float:left;overflow:hidden}
2044
+ .brz .attachment-display-settings h4{margin:1.4em 0 .4em}
2045
+ .brz .collection-settings{overflow:hidden}
2046
+ .brz .collection-settings .setting input[type=checkbox]{float:left;margin-right:8px}
2047
+ .brz .collection-settings .setting span{min-width:inherit}
2048
+ .brz .media-modal .imgedit-wrap{position:static}
2049
+ .brz .media-modal .imgedit-wrap .imgedit-panel-content{padding:16px;position:absolute;top:0;right:282px;bottom:0;left:0;overflow:auto}
2050
+ .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}
2051
+ .brz .media-modal .imgedit-group{background:0 0;border:none;border-bottom:1px solid #ddd;-webkit-box-shadow:none;box-shadow:none;margin:0;margin-bottom:16px;padding:0;padding-bottom:16px;position:relative}
2052
+ .brz .media-modal .imgedit-group:last-of-type{border:none;margin:0;padding:0}
2053
+ .brz .media-modal .imgedit-group-top{margin:0}
2054
+ .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:0;margin-top:3px}
2055
+ .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}
2056
+ .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}
2057
+ .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)}
2058
+ .brz .wp-core-ui.media-modal .imgedit-group-top .dashicons-arrow-down.imgedit-help-toggle{margin-top:-3px}
2059
+ .brz .wp-core-ui.media-modal .image-editor h3 .imgedit-help-toggle{margin-top:-2px}
2060
+ .brz .media-modal .imgedit-help-toggled span.dashicons:before{content:"\f142"}
2061
+ .brz .media-modal .imgedit-thumbnail-preview{margin:10px 8px 0 0}
2062
+ .brz .imgedit-thumbnail-preview-caption{display:block}
2063
+ .brz .media-modal .imgedit-wrap div.updated{margin:0;margin-bottom:16px}
2064
+ .brz .embed-url{display:block;position:relative;padding:16px;margin:0;z-index:250;background:#fff;font-size:18px}
2065
+ .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)}
2066
+ .brz .media-frame .embed-url .spinner{position:absolute;top:32px;right:26px}
2067
+ .brz .media-frame .embed-loading .embed-url .spinner{visibility:visible}
2068
+ .brz .embed-link-settings,.brz .embed-media-settings{position:absolute;top:70px;left:0;right:0;bottom:0;padding:16px 16px 32px;overflow:auto}
2069
+ .brz .media-embed .embed-link-settings{overflow:visible}
2070
+ .brz .embed-preview embed,.brz .embed-preview iframe,.brz .embed-preview img,.brz .mejs-container video{max-width:100%;vertical-align:middle}
2071
+ .brz .embed-preview a{display:inline-block}
2072
+ .brz .embed-preview img{display:block;height:auto}
2073
+ .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)}
2074
+ .brz .image-details .media-modal{left:140px;right:140px}
2075
+ .brz .image-details .media-frame-content,.brz .image-details .media-frame-router,.brz .image-details .media-frame-title{left:0}
2076
+ .brz .image-details .embed-media-settings{top:0;overflow:visible;padding:0}
2077
+ .brz .image-details .embed-media-settings,.brz .image-details .embed-media-settings div{-webkit-box-sizing:border-box;box-sizing:border-box}
2078
+ .brz .image-details .column-settings{background:#f3f3f3;border-right:1px solid #ddd;min-height:100%;width:55%;position:absolute;top:0;left:0}
2079
+ .brz .image-details .column-settings h2,.brz .image-details .column-settings h3{margin:20px;padding-top:20px;border-top:1px solid #ddd;color:#23282d}
2080
+ .brz .image-details .column-image{width:45%;position:absolute;left:55%;top:0}
2081
+ .brz .image-details .image{margin:20px}
2082
+ .brz .image-details .image img{max-width:100%;max-height:500px}
2083
+ .brz .image-details .advanced-toggle{padding:0;color:#666;text-transform:uppercase;text-decoration:none}
2084
+ .brz .image-details .advanced-toggle:active,.brz .image-details .advanced-toggle:hover{color:#666}
2085
+ .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}
2086
+ .brz .image-details .advanced-visible .advanced-toggle:after{content:"\f142"}
2087
+ .brz .image-details .embed-media-settings .size{margin-bottom:4px}
2088
+ .brz .image-details .custom-size span{display:block}
2089
+ .brz .image-details .custom-size label{display:block;float:left}
2090
+ .brz .image-details .custom-size span small{color:#555d66;font-size:inherit}
2091
+ .brz .image-details .custom-size input{width:5em}
2092
+ .brz .image-details .custom-size .sep{float:left;margin:26px 6px 0 6px}
2093
+ .brz .image-details .custom-size:after{content:"";display:table;clear:both}
2094
+ .brz .media-embed .thumbnail{max-width:100%;max-height:200px;position:relative;float:left}
2095
+ .brz .media-embed .thumbnail img{max-height:200px;display:block}
2096
+ .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}
2097
+ .brz .media-embed .setting{width:100%;margin:10px 0;float:left;display:block;clear:both}
2098
+ .brz .image-details .embed-media-settings .setting{float:none;width:auto}
2099
+ .brz .image-details .actions{margin:10px 0}
2100
+ .brz .image-details .hidden{display:none}
2101
+ .brz .media-embed .setting input[type=text],.brz .media-embed .setting textarea{display:block;width:100%;max-width:400px;margin:1px 0}
2102
+ .brz .image-details .embed-media-settings .setting input[type=text],.brz .image-details .embed-media-settings .setting textarea{max-width:inherit;width:70%}
2103
+ .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%}
2104
+ .brz .image-details .embed-media-settings .link-target{margin-top:24px}
2105
+ .brz .media-embed .setting input.hidden,.brz .media-embed .setting textarea.hidden{display:none}
2106
+ .brz .media-embed .setting span{display:block;width:200px;font-size:13px;line-height:24px;color:#666}
2107
+ .brz .image-details .embed-media-settings .setting span{float:left;width:25%;text-align:right;margin:8px 1% 0 1%;line-height:1.1}
2108
+ .brz .media-embed .setting .button-group{margin:2px 0}
2109
+ .brz .media-embed-sidebar{position:absolute;top:0;left:440px}
2110
+ .brz .advanced-section,.brz .link-settings{margin-top:10px}
2111
+ .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}
2112
+ .brz .wp-editor-wrap .uploader-editor-content{border:1px dashed #fff;position:absolute;top:10px;left:10px;right:10px;bottom:10px}
2113
+ .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}
2114
+ .brz .wp-editor-wrap .uploader-editor.droppable{background:rgba(0,86,132,.9)}
2115
+ .brz .wp-editor-wrap .uploader-editor.droppable .uploader-editor-title{display:block}
2116
+ @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}
2117
+ .brz .media-frame:not(.hide-menu) .media-frame-menu{position:static;width:0}
2118
+ .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}
2119
+ .brz .media-frame:not(.hide-menu) .media-menu.visible{left:0}
2120
+ .brz .media-frame:not(.hide-menu) .media-menu>a{padding:12px 16px;font-size:16px}
2121
+ .brz .media-frame:not(.hide-menu) .media-menu>a.active{display:none}
2122
+ .brz .media-frame:not(.hide-menu) .media-menu .separator{margin:5px 10px}
2123
+ .brz .media-frame:not(.hide-menu) .media-frame-title{left:0}
2124
+ .brz .media-frame:not(.hide-menu) .media-frame-title .dashicons{display:inline-block;line-height:50px}
2125
+ .brz .media-frame:not(.hide-menu) .media-frame-title h1{color:#0073aa;line-height:3;font-size:18px;float:left;cursor:pointer}
2126
+ .brz .media-sidebar{width:230px}
2127
+ .brz .attachments-browser .attachments,.brz .attachments-browser .media-toolbar,.brz .attachments-browser .uploader-inline{right:262px}
2128
+ .brz .attachment-details .setting,.brz .media-sidebar .setting{margin:6px 0}
2129
+ .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}
2130
+ .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}
2131
+ .brz .attachment-details .setting .value,.brz .media-sidebar .setting .value{float:none;width:auto}
2132
+ .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}
2133
+ .brz .attachment-details .setting select.columns,.brz .media-sidebar .setting select.columns{width:auto}
2134
+ .brz .media-frame .search,.brz .media-frame input,.brz .media-frame textarea{padding:3px 6px}
2135
+ .brz .image-details .column-image{width:30%;left:70%}
2136
+ .brz .image-details .column-settings{width:70%}
2137
+ .brz .image-details .media-modal{left:30px;right:30px}
2138
+ .brz .image-details .embed-media-settings .setting{margin:20px}
2139
+ .brz .image-details .embed-media-settings .setting span{float:none;text-align:left;width:100%;margin-bottom:4px}
2140
+ .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}
2141
+ .brz .image-details .embed-media-settings .custom-size{margin-left:20px}
2142
+ .brz .collection-settings .setting input[type=checkbox]{margin-top:0}
2143
+ .brz .media-selection{min-width:120px}
2144
+ .brz .media-selection:after{background:0 0}
2145
+ .brz .media-selection .attachments{display:none}
2146
+ .brz .media-modal .attachments-browser .media-toolbar .search{max-width:100%;height:auto;float:right}
2147
+ .brz .media-modal .attachments-browser .media-toolbar .attachment-filters{height:auto}
2148
+ .brz .media-modal .attachments-browser .media-toolbar .spinner{margin:14px 2px 0}
2149
+ .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}
2150
+ .brz .media-modal-backdrop{position:fixed}
2151
+ .brz .media-sidebar{z-index:1900;max-width:70%;bottom:120%;-webkit-box-sizing:border-box;box-sizing:border-box;padding-bottom:0}
2152
+ .brz .media-sidebar.visible{bottom:0}
2153
+ .brz .attachments-browser .attachments,.brz .attachments-browser .media-toolbar,.brz .attachments-browser .uploader-inline{right:0}
2154
+ .brz .image-details .media-frame-title{display:block;top:0;font-size:14px}
2155
+ .brz .image-details .column-image,.brz .image-details .column-settings{width:100%;position:relative;left:0}
2156
+ .brz .image-details .column-settings{padding:4px 0}
2157
+ .brz .media-frame-content .media-toolbar .instructions{display:none}}@media screen and (max-height:400px){.brz .media-menu{padding:0}
2158
+ .brz .media-frame-router{top:44px}
2159
+ .brz .media-frame-content{top:78px}
2160
+ .brz .attachments-browser .attachments{top:40px}
2161
+ .brz .embed-link-settings{overflow:visible}}@media only screen and (max-width:480px){.brz .media-modal-close{top:-5px}
2162
+ .brz .media-modal .media-frame-title{height:40px}
2163
+ .brz .wp-core-ui.wp-customizer .media-button{margin-top:13px}
2164
+ .brz .media-frame:not(.hide-menu) .media-frame-title h1,.brz .media-modal .media-frame-title h1{font-size:18px;line-height:40px}
2165
+ .brz .media-frame:not(.hide-menu) .media-frame-title .dashicons{line-height:40px}
2166
+ .brz .media-frame-router,.brz .media-frame:not(.hide-menu) .media-menu{top:40px}
2167
+ .brz .media-frame-content{top:74px}
2168
+ .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%}
2169
+ .brz .media-frame-content[data-columns="2"] .attachment{width:50%}
2170
+ .brz .media-frame-content[data-columns="3"] .attachment{width:33.33%}
2171
+ .brz .media-frame-content[data-columns="4"] .attachment{width:25%}
2172
+ .brz .media-frame-content[data-columns="5"] .attachment{width:20%}
2173
+ .brz .media-frame-content[data-columns="6"] .attachment{width:16.66%}
2174
+ .brz .media-frame-content[data-columns="7"] .attachment{width:14.28%}
2175
+ .brz .media-frame-content[data-columns="8"] .attachment{width:12.5%}
2176
+ .brz .media-frame-content[data-columns="9"] .attachment{width:11.11%}
2177
+ .brz .media-frame-content[data-columns="10"] .attachment{width:10%}
2178
+ .brz .media-frame-content[data-columns="11"] .attachment{width:9.09%}
2179
+ .brz .media-frame-content[data-columns="12"] .attachment{width:8.33%}
2180
+ .brz .admin-bar .wp-env .visual-sidebar{top:32px;left:0}
2181
+ .brz .admin-bar .wp-env .visual-wrap-block-wrap{margin-left:0;padding-bottom:0}
2182
+ .brz .brz-wp__sidebar{width:100%}
2183
+ .brz .brz-wp__sidebar .brz-shortcode__placeholder{width:100%;min-height:300px}
2184
+ .brz .brz-wp-shortcode{width:100%;min-height:20px}
2185
+ .brz .brz-wp-shortcode .woocommerce:empty{width:100%;height:15px}
2186
+ .brz .brz-wp-shortcode .woocommerce-product-gallery{opacity:1!important}
2187
+ .brz .brz-wp-shortcode .brz-shortcode__placeholder{width:100%;min-height:300px}
2188
+ .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}
2189
+ .brz .brz-wp-shortcode__menu .menu li[class*=menu-item]{position:relative;text-align:left;list-style:none}
2190
+ .brz .brz-wp-shortcode__menu .menu li[class*=menu-item] a span{display:block}
2191
+ .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}
2192
+ .brz .brz-wp-shortcode__menu .menu .sub-menu li[class*=menu-item]{display:block;margin:0;padding:0}
2193
+ .brz .brz-wp-shortcode__menu .menu .sub-menu .sub-menu{display:none;left:100%;top:0}
2194
+ .brz .brz-wp-shortcode__menu .menu .sub-menu a{display:block;line-height:1.2em;padding:10px 12%;color:#fcfcfc}
2195
+ .brz .brz-wp-shortcode__menu .menu .sub-menu a:hover{background:rgba(36,36,53,.94)}
2196
+ .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}
2197
+ .brz .brz-wp-shortcode__menu .menu>li[class*=menu-item]>.sub-menu{top:100%;padding-top:15px;padding-bottom:15px}
2198
+ .brz .brz-wp-shortcode__menu .menu>li[class*=menu-item]:hover>.sub-menu{display:block}
2199
+ .brz .brz-wp-shortcode__menu .menu>li[class*=menu-item]>.sub-menu>li[class*=menu-item]:hover>.sub-menu{display:block}
2200
+ .brz .brz-wp-shortcode__menu .menu>ul{margin:0!important}
2201
+ .brz .brz-wp-shortcode__menu .menu>ul .page_item:not(:first-child){margin-left:15px}
2202
+ .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}
2203
+ .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}
2204
+ .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}
2205
+ .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%}
2206
+ .brz .brz-wp-shortcode__menu__icon--bars:before{top:5px}
2207
+ .brz .brz-wp-shortcode__menu__icon--bars:after{top:-5px}
2208
+ .brz .brz-wp-shortcode__menu .brz-input{display:none}
2209
+ .brz .brz-wp-shortcode__menu .brz-input:checked~div .menu{display:-webkit-box;display:-ms-flexbox;display:flex;max-height:100%}
2210
+ .brz .brz-wp-shortcode__menu .brz-input:checked~.brz-wp-shortcode__menu__icon .brz-wp-shortcode__menu__icon--bars{background:0 0}
2211
+ .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)}
2212
+ .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)}
2213
+ .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}
2214
+ @media (max-width:767px){.brz:not(.brz-ed) .brz-wp-shortcode__menu{width:auto;text-align:center}
2215
+ .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}
2216
+ .brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--mobile .menu .sub-menu{position:relative;display:block;width:100%;left:15px;background-color:transparent}
2217
+ .brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--mobile .menu .sub-menu li[class*=menu-item] a{padding:5px}
2218
+ .brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--mobile .menu .sub-menu li[class*=menu-item] a:hover{background-color:transparent}
2219
+ .brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--mobile .menu .sub-menu .sub-menu{display:block;left:15px}
2220
+ .brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--mobile .menu>li[class*=menu-item]{padding:0}
2221
+ .brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--mobile .menu>li[class*=menu-item]>.sub-menu{top:100%;padding:5px 0}
2222
+ .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}
2223
+ .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)}
2224
+ .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}
2225
+ .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}
2226
+ .brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--tablet .menu .sub-menu{position:relative;display:block;width:100%;left:15px;background-color:transparent}
2227
+ .brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--tablet .menu .sub-menu li[class*=menu-item] a{padding:5px}
2228
+ .brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--tablet .menu .sub-menu li[class*=menu-item] a:hover{background-color:transparent}
2229
+ .brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--tablet .menu .sub-menu .sub-menu{display:block;left:15px}
2230
+ .brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--tablet .menu>.menu-item{padding:0}
2231
+ .brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle--tablet .menu>.menu-item>.sub-menu{top:100%;padding:5px 0}
2232
+ .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}
2233
+ .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}
2234
+ .brz.brz-ed--mobile .brz-wp-shortcode__menu__toggle--mobile .menu .sub-menu{position:relative;display:block;width:100%;left:15px;background-color:transparent}
2235
+ .brz.brz-ed--mobile .brz-wp-shortcode__menu__toggle--mobile .menu .sub-menu .menu-item a{padding:5px}
2236
+ .brz.brz-ed--mobile .brz-wp-shortcode__menu__toggle--mobile .menu .sub-menu .menu-item a:hover{background-color:transparent}
2237
+ .brz.brz-ed--mobile .brz-wp-shortcode__menu__toggle--mobile .menu .sub-menu .sub-menu{display:block;left:15px}
2238
+ .brz.brz-ed--mobile .brz-wp-shortcode__menu__toggle--mobile .menu>.menu-item{padding:0}
2239
+ .brz.brz-ed--mobile .brz-wp-shortcode__menu__toggle--mobile .menu>.menu-item>.sub-menu{top:100%;padding:5px 0}
2240
+ .brz.brz-ed--mobile .brz-wp-shortcode__menu__toggle--mobile .brz-wp-shortcode__menu__icon{display:inline-block}
2241
+ .brz.brz-ed--tablet .brz-wp-shortcode__menu{width:auto;text-align:center}
2242
+ .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}
2243
+ .brz.brz-ed--tablet .brz-wp-shortcode__menu__toggle--tablet .menu .sub-menu{position:relative;display:block;width:100%;left:15px;background-color:transparent}
2244
+ .brz.brz-ed--tablet .brz-wp-shortcode__menu__toggle--tablet .menu .sub-menu .menu-item a{padding:5px}
2245
+ .brz.brz-ed--tablet .brz-wp-shortcode__menu__toggle--tablet .menu .sub-menu .menu-item a:hover{background-color:transparent}
2246
+ .brz.brz-ed--tablet .brz-wp-shortcode__menu__toggle--tablet .menu .sub-menu .sub-menu{display:block;left:15px}
2247
+ .brz.brz-ed--tablet .brz-wp-shortcode__menu__toggle--tablet .menu>.menu-item{padding:0}
2248
+ .brz.brz-ed--tablet .brz-wp-shortcode__menu__toggle--tablet .menu>.menu-item>.sub-menu{top:100%;padding:5px 0}
2249
+ .brz.brz-ed--tablet .brz-wp-shortcode__menu__toggle--tablet .brz-wp-shortcode__menu__icon{display:inline-block}
2250
+ .brz.brz-ed--tablet .brz-mm-menu--tablet{position:fixed}
2251
+ .brz.brz-ed--desktop .brz-mm-menu--desktop{position:fixed}
2252
+ .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}
2253
+ .brz .brz-menu__editor .brz-menu__item--opened>.brz-menu__sub-menu{-webkit-transform:translateX(0);transform:translateX(0)}
2254
+ @-webkit-keyframes brz-ed-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}
2255
+ 100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes brz-ed-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}
2256
+ 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)}
2257
+ 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)}
2258
+ 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)}
2259
+ 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)}
2260
+ to{opacity:1;-webkit-transform:none;transform:none}}@-webkit-keyframes brz-ed-fadeIn{from{opacity:0}
2261
+ to{opacity:1}}@keyframes brz-ed-fadeIn{from{opacity:0}
2262
+ to{opacity:1}}@-webkit-keyframes brz-ed-fadeInLeft{from{opacity:0;-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}
2263
+ 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)}
2264
+ 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}
2265
+ 50%{opacity:1}
2266
+ 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}
2267
+ 50%{opacity:1}
2268
+ 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)}
2269
+ 50%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes brz-ed-sk-bounce{0%,100%{-webkit-transform:scale(0);transform:scale(0)}
2270
+ 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)}
2271
+ 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)}
2272
+ 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)}
2273
+ 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)}
2274
+ 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}
2275
+ .brz-ed #brz-ed-root>.brz-reset-all{overflow:hidden}
2276
+ .brz-ed #brz-ed-home-page{width:100%;min-height:100vh;position:absolute}
2277
+ .brz-ed .brz-height--100vh,.brz-ed.brz-height--100vh{height:100vh!important}
2278
+ .brz-ed .body-without-scroll{overflow:hidden}
2279
+ .brz-ed .brz-ed-wrap-block-wrap{width:100%}
2280
+ .brz-ed .brz-ed-wrap-block-wrap--first{min-height:400px;height:100vh}
2281
+ .brz-ed .btn .brz-span[contenteditable=true]{cursor:text}
2282
+ .brz-ed .brz-ed-element-placeholder{position:relative}
2283
+ .brz-ed .brz-ed-element-placeholder *{visibility:hidden}
2284
+ .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}
2285
+ .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}
2286
+ .brz-ed .brz-ed-deg90{-webkit-transform:rotate(90deg);transform:rotate(90deg)}
2287
+ .brz-ed .brz-ed-deg180{-webkit-transform:rotate(180deg);transform:rotate(180deg)}
2288
+ .brz-ed .brz-ed-deg270{-webkit-transform:rotate(270deg);transform:rotate(270deg)}
2289
+ html{-webkit-box-sizing:border-box;box-sizing:border-box}
2290
+ *,:after,:before{-webkit-box-sizing:border-box;box-sizing:border-box}
2291
+ @-ms-viewport{width:device-width}
2292
+ .brz-ed .brz-figcaption,.brz-ed .brz-figure,.brz-ed .brz-section{display:block}
2293
+ body{margin:0}
2294
+ body.brz-ed{background-color:#f3f3f3}
2295
+ body.brz::after,body.brz::before{display:none}
2296
+ .brz-iframe{margin:0;padding:0;border:0;font:inherit;font-size:100%;vertical-align:baseline}
2297
+ .brz{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
2298
+ .brz .brz-root__container.brz-reset-all{display:block;overflow:hidden;font-family:inherit}
2299
+ .brz-ed .brz-hr{-webkit-box-sizing:content-box;box-sizing:content-box;height:0;overflow:visible;margin:0}
2300
+ .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}
2301
+ .brz-ed .brz-p{margin-top:0;margin-bottom:0;padding-top:0;padding-bottom:0}
2302
+ .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}
2303
+ .brz-ed .brz-dl,.brz-ed .brz-ol,.brz-ed .brz-ul{margin:0;list-style:none;padding:0}
2304
+ .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}
2305
+ .brz-ed .brz-dt{font-weight:700}
2306
+ .brz-ed .brz-dd{margin-bottom:.5rem;margin-left:0}
2307
+ .brz-ed .brz-blockquote{margin:0 0 1rem}
2308
+ .brz-ed .brz-dfn{font-style:italic}
2309
+ .brz-ed .brz-b,.brz-ed .brz-strong{font-weight:700}
2310
+ .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}
2311
+ .brz-ed .brz-a:not(.brz-btn)[href]:hover{color:#1aabd8;-webkit-box-shadow:none;box-shadow:none;cursor:pointer}
2312
+ .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}
2313
+ .brz-ed .brz-a.brz-btn[href]{text-decoration:none}
2314
+ .brz-ed .brz-figure{margin:0;min-width:auto;min-height:auto}
2315
+ .brz-ed .brz-img{vertical-align:middle;border-style:none}
2316
+ .brz-ed svg:not(:root){overflow:hidden}
2317
+ .brz-ed .brz-button,.brz-ed .brz-input,.brz-ed .brz-label,.brz-ed .brz-textarea{-ms-touch-action:manipulation;touch-action:manipulation}
2318
+ .brz-ed .brz-table{border-collapse:collapse}
2319
+ .brz-ed .brz-caption{padding-top:.75rem;padding-bottom:.75rem;color:#828b92;text-align:left;caption-side:bottom}
2320
+ .brz-ed .brz-th{text-align:left}
2321
+ .brz-ed .brz-form{margin:0}
2322
+ .brz-ed .brz-label{display:inline-block;margin-bottom:0;font-weight:400}
2323
+ .brz-ed .brz-button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}
2324
+ .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}
2325
+ .brz-ed .brz-button,.brz-ed .brz-input{overflow:visible}
2326
+ .brz-ed .brz-button,.brz-ed .brz-select{text-transform:none}
2327
+ .brz-ed .brz-button{-webkit-appearance:button}
2328
+ .brz-ed .brz-button::-moz-focus-inner{padding:0;border-style:none}
2329
+ .brz-ed .brz-input[type=checkbox],.brz-ed .brz-input[type=radio]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}
2330
+ .brz-ed .brz-input[type=number]{-moz-appearance:textfield}
2331
+ .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}
2332
+ .brz-ed .brz-textarea{overflow:auto;resize:vertical}
2333
+ .brz-ed .brz-fieldset{min-width:0;padding:0;margin:0;border:0}
2334
+ .brz-ed .brz-iframe,.brz-ed .brz-object{margin-bottom:0;max-width:100%}
2335
+ .brz-ed .brz-iframe{margin:0;padding:0;border:0;font:inherit;font-size:100%;vertical-align:baseline}
2336
+ .brz-ed [hidden]{display:none!important}
2337
+ .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}
2338
+ .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}
2339
+ .brz-ed .brz-h1{font-size:55px;font-weight:400}
2340
+ .brz-ed .brz-h2{font-size:40px}
2341
+ .brz-ed .brz-h3{font-size:32px}
2342
+ .brz-ed .brz-h4{font-size:26px}
2343
+ .brz-ed .brz-h5{font-size:19px}
2344
+ .brz-ed .brz-h6{font-size:14px}
2345
+ .brz-ed .brz-p{font-size:14px;font-weight:400}
2346
+ .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}
2347
+ .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}
2348
+ .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}
2349
+ .brz-ed .brz-justify-content-xs-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}
2350
+ .brz-ed .brz-justify-content-xs-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}
2351
+ .brz-ed .brz-justify-content-xs-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}
2352
+ .brz-ed .brz-justify-content-xs-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}
2353
+ .brz-ed .brz-justify-content-xs-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}
2354
+ .brz-ed .brz-align-items-xs-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}
2355
+ .brz-ed .brz-align-items-xs-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}
2356
+ .brz-ed .brz-align-items-xs-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}
2357
+ .brz-ed .brz-align-items-xs-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}
2358
+ .brz-ed .brz-align-items-xs-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}
2359
+ .brz-ed .brz-col-first-xs{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}
2360
+ .brz-ed .brz-col-last-xs{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}
2361
+ .brz-ed .brz-align-self-xs-start{-ms-flex-item-align:start!important;align-self:flex-start!important}
2362
+ .brz-ed .brz-align-self-xs-end{-ms-flex-item-align:end!important;align-self:flex-end!important}
2363
+ .brz-ed .brz-align-self-xs-center{-ms-flex-item-align:center!important;align-self:center!important}
2364
+ .brz-ed .brz-align-self-xs-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}
2365
+ .brz-ed .brz-align-self-xs-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}
2366
+ .brz-ed .brz-flex-xs-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}
2367
+ .brz-ed .brz-flex-xs-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}
2368
+ .brz-ed .brz-align-content-xs-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}
2369
+ .brz-ed .brz-align-content-xs-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}
2370
+ .brz-ed .brz-align-content-xs-center{-ms-flex-line-pack:center!important;align-content:center!important}
2371
+ .brz-ed .brz-align-content-xs-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}
2372
+ .brz-ed .brz-align-content-xs-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}
2373
+ .brz-ed .brz-align-content-xs-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}
2374
+ @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}
2375
+ .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}
2376
+ .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}
2377
+ .brz-ed .brz-justify-content-ms-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}
2378
+ .brz-ed .brz-justify-content-ms-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}
2379
+ .brz-ed .brz-justify-content-ms-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}
2380
+ .brz-ed .brz-justify-content-ms-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}
2381
+ .brz-ed .brz-justify-content-ms-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}
2382
+ .brz-ed .brz-align-items-ms-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}
2383
+ .brz-ed .brz-align-items-ms-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}
2384
+ .brz-ed .brz-align-items-ms-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}
2385
+ .brz-ed .brz-align-items-ms-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}
2386
+ .brz-ed .brz-align-items-ms-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}
2387
+ .brz-ed .brz-col-first-ms{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}
2388
+ .brz-ed .brz-col-last-ms{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}
2389
+ .brz-ed .brz-align-self-ms-start{-ms-flex-item-align:start!important;align-self:flex-start!important}
2390
+ .brz-ed .brz-align-self-ms-end{-ms-flex-item-align:end!important;align-self:flex-end!important}
2391
+ .brz-ed .brz-align-self-ms-center{-ms-flex-item-align:center!important;align-self:center!important}
2392
+ .brz-ed .brz-align-self-ms-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}
2393
+ .brz-ed .brz-align-self-ms-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}
2394
+ .brz-ed .brz-flex-ms-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}
2395
+ .brz-ed .brz-flex-ms-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}
2396
+ .brz-ed .brz-align-content-ms-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}
2397
+ .brz-ed .brz-align-content-ms-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}
2398
+ .brz-ed .brz-align-content-ms-center{-ms-flex-line-pack:center!important;align-content:center!important}
2399
+ .brz-ed .brz-align-content-ms-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}
2400
+ .brz-ed .brz-align-content-ms-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}
2401
+ .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}
2402
+ .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}
2403
+ .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}
2404
+ .brz-ed .brz-justify-content-sm-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}
2405
+ .brz-ed .brz-justify-content-sm-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}
2406
+ .brz-ed .brz-justify-content-sm-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}
2407
+ .brz-ed .brz-justify-content-sm-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}
2408
+ .brz-ed .brz-justify-content-sm-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}
2409
+ .brz-ed .brz-align-items-sm-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}
2410
+ .brz-ed .brz-align-items-sm-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}
2411
+ .brz-ed .brz-align-items-sm-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}
2412
+ .brz-ed .brz-align-items-sm-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}
2413
+ .brz-ed .brz-align-items-sm-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}
2414
+ .brz-ed .brz-col-first-sm{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}
2415
+ .brz-ed .brz-col-last-sm{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}
2416
+ .brz-ed .brz-align-self-sm-start{-ms-flex-item-align:start!important;align-self:flex-start!important}
2417
+ .brz-ed .brz-align-self-sm-end{-ms-flex-item-align:end!important;align-self:flex-end!important}
2418
+ .brz-ed .brz-align-self-sm-center{-ms-flex-item-align:center!important;align-self:center!important}
2419
+ .brz-ed .brz-align-self-sm-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}
2420
+ .brz-ed .brz-align-self-sm-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}
2421
+ .brz-ed .brz-flex-sm-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}
2422
+ .brz-ed .brz-flex-sm-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}
2423
+ .brz-ed .brz-align-content-sm-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}
2424
+ .brz-ed .brz-align-content-sm-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}
2425
+ .brz-ed .brz-align-content-sm-center{-ms-flex-line-pack:center!important;align-content:center!important}
2426
+ .brz-ed .brz-align-content-sm-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}
2427
+ .brz-ed .brz-align-content-sm-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}
2428
+ .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}
2429
+ .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}
2430
+ .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}
2431
+ .brz-ed .brz-justify-content-md-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}
2432
+ .brz-ed .brz-justify-content-md-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}
2433
+ .brz-ed .brz-justify-content-md-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}
2434
+ .brz-ed .brz-justify-content-md-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}
2435
+ .brz-ed .brz-justify-content-md-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}
2436
+ .brz-ed .brz-align-items-md-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}
2437
+ .brz-ed .brz-align-items-md-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}
2438
+ .brz-ed .brz-align-items-md-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}
2439
+ .brz-ed .brz-align-items-md-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}
2440
+ .brz-ed .brz-align-items-md-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}
2441
+ .brz-ed .brz-col-first-md{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}
2442
+ .brz-ed .brz-col-last-md{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}
2443
+ .brz-ed .brz-align-self-md-start{-ms-flex-item-align:start!important;align-self:flex-start!important}
2444
+ .brz-ed .brz-align-self-md-end{-ms-flex-item-align:end!important;align-self:flex-end!important}
2445
+ .brz-ed .brz-align-self-md-center{-ms-flex-item-align:center!important;align-self:center!important}
2446
+ .brz-ed .brz-align-self-md-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}
2447
+ .brz-ed .brz-align-self-md-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}
2448
+ .brz-ed .brz-flex-md-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}
2449
+ .brz-ed .brz-flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}
2450
+ .brz-ed .brz-align-content-md-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}
2451
+ .brz-ed .brz-align-content-md-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}
2452
+ .brz-ed .brz-align-content-md-center{-ms-flex-line-pack:center!important;align-content:center!important}
2453
+ .brz-ed .brz-align-content-md-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}
2454
+ .brz-ed .brz-align-content-md-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}
2455
+ .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}
2456
+ .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}
2457
+ .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}
2458
+ .brz-ed .brz-justify-content-lg-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}
2459
+ .brz-ed .brz-justify-content-lg-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}
2460
+ .brz-ed .brz-justify-content-lg-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}
2461
+ .brz-ed .brz-justify-content-lg-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}
2462
+ .brz-ed .brz-justify-content-lg-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}
2463
+ .brz-ed .brz-align-items-lg-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}
2464
+ .brz-ed .brz-align-items-lg-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}
2465
+ .brz-ed .brz-align-items-lg-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}
2466
+ .brz-ed .brz-align-items-lg-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}
2467
+ .brz-ed .brz-align-items-lg-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}
2468
+ .brz-ed .brz-col-first-lg{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}
2469
+ .brz-ed .brz-col-last-lg{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}
2470
+ .brz-ed .brz-align-self-lg-start{-ms-flex-item-align:start!important;align-self:flex-start!important}
2471
+ .brz-ed .brz-align-self-lg-end{-ms-flex-item-align:end!important;align-self:flex-end!important}
2472
+ .brz-ed .brz-align-self-lg-center{-ms-flex-item-align:center!important;align-self:center!important}
2473
+ .brz-ed .brz-align-self-lg-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}
2474
+ .brz-ed .brz-align-self-lg-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}
2475
+ .brz-ed .brz-flex-lg-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}
2476
+ .brz-ed .brz-flex-lg-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}
2477
+ .brz-ed .brz-align-content-lg-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}
2478
+ .brz-ed .brz-align-content-lg-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}
2479
+ .brz-ed .brz-align-content-lg-center{-ms-flex-line-pack:center!important;align-content:center!important}
2480
+ .brz-ed .brz-align-content-lg-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}
2481
+ .brz-ed .brz-align-content-lg-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}
2482
+ .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}
2483
+ .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}
2484
+ .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}
2485
+ .brz-ed .brz-justify-content-xl-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}
2486
+ .brz-ed .brz-justify-content-xl-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}
2487
+ .brz-ed .brz-justify-content-xl-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}
2488
+ .brz-ed .brz-justify-content-xl-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}
2489
+ .brz-ed .brz-justify-content-xl-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}
2490
+ .brz-ed .brz-align-items-xl-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}
2491
+ .brz-ed .brz-align-items-xl-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}
2492
+ .brz-ed .brz-align-items-xl-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}
2493
+ .brz-ed .brz-align-items-xl-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}
2494
+ .brz-ed .brz-align-items-xl-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}
2495
+ .brz-ed .brz-col-first-xl{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}
2496
+ .brz-ed .brz-col-last-xl{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}
2497
+ .brz-ed .brz-align-self-xl-start{-ms-flex-item-align:start!important;align-self:flex-start!important}
2498
+ .brz-ed .brz-align-self-xl-end{-ms-flex-item-align:end!important;align-self:flex-end!important}
2499
+ .brz-ed .brz-align-self-xl-center{-ms-flex-item-align:center!important;align-self:center!important}
2500
+ .brz-ed .brz-align-self-xl-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}
2501
+ .brz-ed .brz-align-self-xl-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}
2502
+ .brz-ed .brz-flex-xl-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}
2503
+ .brz-ed .brz-flex-xl-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}
2504
+ .brz-ed .brz-align-content-xl-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}
2505
+ .brz-ed .brz-align-content-xl-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}
2506
+ .brz-ed .brz-align-content-xl-center{-ms-flex-line-pack:center!important;align-content:center!important}
2507
+ .brz-ed .brz-align-content-xl-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}
2508
+ .brz-ed .brz-align-content-xl-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}
2509
+ .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}
2510
+ .brz-ed .brz-d-inline-block{display:inline-block!important}
2511
+ .brz-ed .brz-d-inline{display:inline!important}
2512
+ .brz-ed .brz-d-none{display:none!important}
2513
+ .brz-ed .brz-d-table{width:100%;display:table;position:relative}
2514
+ .brz-ed .brz-d-table-cell{display:table-cell}
2515
+ .brz-ed .brz-blocked{pointer-events:none}
2516
+ .brz-ed .brz-d-xs-flex{display:-webkit-box;display:-ms-flexbox;display:flex;min-width:0}
2517
+ .brz-ed .brz-d-xs-inline-flex{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}
2518
+ @media (min-width:480px){.brz-ed .brz-d-ms-flex{display:-webkit-box;display:-ms-flexbox;display:flex;min-width:0}
2519
+ .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}
2520
+ .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}
2521
+ .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}
2522
+ .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}
2523
+ .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}
2524
+ .brz-ed .brz-p-absolute{position:absolute!important}
2525
+ .brz-ed .brz-p-fixed{position:fixed!important}
2526
+ .brz-ed .brz-invisible{visibility:hidden!important}
2527
+ .brz-ed .brz-visible{visibility:visible!important}
2528
+ .brz-ed .brz-hidden-xs-up{display:none!important}
2529
+ @media (max-width:479px){.brz-ed .brz-hidden-xs-down{display:none!important}}.brz-ed .brz-invisible-xs-up{visibility:hidden!important}
2530
+ @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}
2531
+ @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}
2532
+ @media (min-width:1400px){.brz-ed .brz-invisible-xl-up{visibility:hidden!important}}.brz-ed .brz-invisible-xl-down{visibility:hidden!important}
2533
+ @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}
2534
+ .brz-ed .brz-hidden{display:none!important}
2535
+ .brz-ed .brz-visible-print-block{display:none!important}
2536
+ @media print{.brz-ed .brz-visible-print-block{display:block!important}}.brz-ed .brz-visible-print-inline{display:none!important}
2537
+ @media print{.brz-ed .brz-visible-print-inline{display:inline!important}}.brz-ed .brz-visible-print-inline-block{display:none!important}
2538
+ @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}
2539
+ .brz-ed .brz-ow-visible{overflow:visible!important}
2540
+ .brz-ed .brz-pointer-events-none{pointer-events:none!important}
2541
+ .brz-ed .brz-pointer-events-auto{pointer-events:auto!important}
2542
+ .brz-ed .brz-fw-100{font-weight:100!important}
2543
+ .brz-ed .brz-fw-200{font-weight:200!important}
2544
+ .brz-ed .brz-fw-300{font-weight:300!important}
2545
+ .brz-ed .brz-fw-400{font-weight:400!important}
2546
+ .brz-ed .brz-fw-500{font-weight:500!important}
2547
+ .brz-ed .brz-fw-600{font-weight:600!important}
2548
+ .brz-ed .brz-fw-700{font-weight:700!important}
2549
+ .brz-ed .brz-fw-800{font-weight:800!important}
2550
+ .brz-ed .brz-fw-900{font-weight:900!important}
2551
+ .brz-ed .brz--required{color:#ff0e0e;padding-left:5px}
2552
+ .brz-ed.disable-select{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}
2553
+ .brz-ed .brz-ed-popup-image-inner{position:relative;color:#fff;display:inline-block;font-size:0}
2554
+ .brz-ed .brz-ed-popup-image-label{margin-bottom:0}
2555
+ .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}
2556
+ .brz-ed .brz-ed-popup-image-remove:hover{background-color:#03080f;-webkit-transition:background .2s linear;transition:background .2s linear}
2557
+ .brz-ed .brz-ed-popup-image-remove i{line-height:2.75}
2558
+ .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}
2559
+ .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}
2560
+ .brz-ed .brz-ed-loading:before{content:'Change Image';font:bold 10px pn,"Open Sans",Arial,sans-serif;color:#fff;line-height:117px;text-transform:uppercase;position:absolute;z-index:1;top:-2px;left:-2px;width:117px;height:117px;background-color:rgba(0,0,0,.8);text-align:center;visibility:hidden;opacity:0;-webkit-transition:opacity .2s linear,visibility .2s linear;transition:opacity .2s linear,visibility .2s linear}
2561
+ .brz-ed .brz-ed-loading:hover{border-color:transparent}
2562
+ .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}
2563
+ .brz-ed .brz-p-events--none{pointer-events:none!important}
2564
+ .brz-ed.brz-ed--desktop .brz-fs-lg-6{font-size:6px!important}
2565
+ .brz-ed.brz-ed--desktop .brz-fs-lg-7{font-size:7px!important}
2566
+ .brz-ed.brz-ed--desktop .brz-fs-lg-8{font-size:8px!important}
2567
+ .brz-ed.brz-ed--desktop .brz-fs-lg-9{font-size:9px!important}
2568
+ .brz-ed.brz-ed--desktop .brz-fs-lg-10{font-size:10px!important}
2569
+ .brz-ed.brz-ed--desktop .brz-fs-lg-11{font-size:11px!important}
2570
+ .brz-ed.brz-ed--desktop .brz-fs-lg-12{font-size:12px!important}
2571
+ .brz-ed.brz-ed--desktop .brz-fs-lg-13{font-size:13px!important}
2572
+ .brz-ed.brz-ed--desktop .brz-fs-lg-14{font-size:14px!important}
2573
+ .brz-ed.brz-ed--desktop .brz-fs-lg-15{font-size:15px!important}
2574
+ .brz-ed.brz-ed--desktop .brz-fs-lg-16{font-size:16px!important}
2575
+ .brz-ed.brz-ed--desktop .brz-fs-lg-17{font-size:17px!important}
2576
+ .brz-ed.brz-ed--desktop .brz-fs-lg-18{font-size:18px!important}
2577
+ .brz-ed.brz-ed--desktop .brz-fs-lg-19{font-size:19px!important}
2578
+ .brz-ed.brz-ed--desktop .brz-fs-lg-20{font-size:20px!important}
2579
+ .brz-ed.brz-ed--desktop .brz-fs-lg-21{font-size:21px!important}
2580
+ .brz-ed.brz-ed--desktop .brz-fs-lg-22{font-size:22px!important}
2581
+ .brz-ed.brz-ed--desktop .brz-fs-lg-23{font-size:23px!important}
2582
+ .brz-ed.brz-ed--desktop .brz-fs-lg-24{font-size:24px!important}
2583
+ .brz-ed.brz-ed--desktop .brz-fs-lg-25{font-size:25px!important}
2584
+ .brz-ed.brz-ed--desktop .brz-fs-lg-26{font-size:26px!important}
2585
+ .brz-ed.brz-ed--desktop .brz-fs-lg-27{font-size:27px!important}
2586
+ .brz-ed.brz-ed--desktop .brz-fs-lg-28{font-size:28px!important}
2587
+ .brz-ed.brz-ed--desktop .brz-fs-lg-29{font-size:29px!important}
2588
+ .brz-ed.brz-ed--desktop .brz-fs-lg-30{font-size:30px!important}
2589
+ .brz-ed.brz-ed--desktop .brz-fs-lg-31{font-size:31px!important}
2590
+ .brz-ed.brz-ed--desktop .brz-fs-lg-32{font-size:32px!important}
2591
+ .brz-ed.brz-ed--desktop .brz-fs-lg-33{font-size:33px!important}
2592
+ .brz-ed.brz-ed--desktop .brz-fs-lg-34{font-size:34px!important}
2593
+ .brz-ed.brz-ed--desktop .brz-fs-lg-35{font-size:35px!important}
2594
+ .brz-ed.brz-ed--desktop .brz-fs-lg-36{font-size:36px!important}
2595
+ .brz-ed.brz-ed--desktop .brz-fs-lg-37{font-size:37px!important}
2596
+ .brz-ed.brz-ed--desktop .brz-fs-lg-38{font-size:38px!important}
2597
+ .brz-ed.brz-ed--desktop .brz-fs-lg-39{font-size:39px!important}
2598
+ .brz-ed.brz-ed--desktop .brz-fs-lg-40{font-size:40px!important}
2599
+ .brz-ed.brz-ed--desktop .brz-fs-lg-41{font-size:41px!important}
2600
+ .brz-ed.brz-ed--desktop .brz-fs-lg-42{font-size:42px!important}
2601
+ .brz-ed.brz-ed--desktop .brz-fs-lg-43{font-size:43px!important}
2602
+ .brz-ed.brz-ed--desktop .brz-fs-lg-44{font-size:44px!important}
2603
+ .brz-ed.brz-ed--desktop .brz-fs-lg-45{font-size:45px!important}
2604
+ .brz-ed.brz-ed--desktop .brz-fs-lg-46{font-size:46px!important}
2605
+ .brz-ed.brz-ed--desktop .brz-fs-lg-47{font-size:47px!important}
2606
+ .brz-ed.brz-ed--desktop .brz-fs-lg-48{font-size:48px!important}
2607
+ .brz-ed.brz-ed--desktop .brz-fs-lg-49{font-size:49px!important}
2608
+ .brz-ed.brz-ed--desktop .brz-fs-lg-50{font-size:50px!important}
2609
+ .brz-ed.brz-ed--desktop .brz-fs-lg-51{font-size:51px!important}
2610
+ .brz-ed.brz-ed--desktop .brz-fs-lg-52{font-size:52px!important}
2611
+ .brz-ed.brz-ed--desktop .brz-fs-lg-53{font-size:53px!important}
2612
+ .brz-ed.brz-ed--desktop .brz-fs-lg-54{font-size:54px!important}
2613
+ .brz-ed.brz-ed--desktop .brz-fs-lg-55{font-size:55px!important}
2614
+ .brz-ed.brz-ed--desktop .brz-fs-lg-56{font-size:56px!important}
2615
+ .brz-ed.brz-ed--desktop .brz-fs-lg-57{font-size:57px!important}
2616
+ .brz-ed.brz-ed--desktop .brz-fs-lg-58{font-size:58px!important}
2617
+ .brz-ed.brz-ed--desktop .brz-fs-lg-59{font-size:59px!important}
2618
+ .brz-ed.brz-ed--desktop .brz-fs-lg-60{font-size:60px!important}
2619
+ .brz-ed.brz-ed--desktop .brz-fs-lg-61{font-size:61px!important}
2620
+ .brz-ed.brz-ed--desktop .brz-fs-lg-62{font-size:62px!important}
2621
+ .brz-ed.brz-ed--desktop .brz-fs-lg-63{font-size:63px!important}
2622
+ .brz-ed.brz-ed--desktop .brz-fs-lg-64{font-size:64px!important}
2623
+ .brz-ed.brz-ed--desktop .brz-fs-lg-65{font-size:65px!important}
2624
+ .brz-ed.brz-ed--desktop .brz-fs-lg-66{font-size:66px!important}
2625
+ .brz-ed.brz-ed--desktop .brz-fs-lg-67{font-size:67px!important}
2626
+ .brz-ed.brz-ed--desktop .brz-fs-lg-68{font-size:68px!important}
2627
+ .brz-ed.brz-ed--desktop .brz-fs-lg-69{font-size:69px!important}
2628
+ .brz-ed.brz-ed--desktop .brz-fs-lg-70{font-size:70px!important}
2629
+ .brz-ed.brz-ed--desktop .brz-fs-lg-71{font-size:71px!important}
2630
+ .brz-ed.brz-ed--desktop .brz-fs-lg-72{font-size:72px!important}
2631
+ .brz-ed.brz-ed--desktop .brz-fs-lg-73{font-size:73px!important}
2632
+ .brz-ed.brz-ed--desktop .brz-fs-lg-74{font-size:74px!important}
2633
+ .brz-ed.brz-ed--desktop .brz-fs-lg-75{font-size:75px!important}
2634
+ .brz-ed.brz-ed--desktop .brz-fs-lg-76{font-size:76px!important}
2635
+ .brz-ed.brz-ed--desktop .brz-fs-lg-77{font-size:77px!important}
2636
+ .brz-ed.brz-ed--desktop .brz-fs-lg-78{font-size:78px!important}
2637
+ .brz-ed.brz-ed--desktop .brz-fs-lg-79{font-size:79px!important}
2638
+ .brz-ed.brz-ed--desktop .brz-fs-lg-80{font-size:80px!important}
2639
+ .brz-ed.brz-ed--desktop .brz-fs-lg-81{font-size:81px!important}
2640
+ .brz-ed.brz-ed--desktop .brz-fs-lg-82{font-size:82px!important}
2641
+ .brz-ed.brz-ed--desktop .brz-fs-lg-83{font-size:83px!important}
2642
+ .brz-ed.brz-ed--desktop .brz-fs-lg-84{font-size:84px!important}
2643
+ .brz-ed.brz-ed--desktop .brz-fs-lg-85{font-size:85px!important}
2644
+ .brz-ed.brz-ed--desktop .brz-fs-lg-86{font-size:86px!important}
2645
+ .brz-ed.brz-ed--desktop .brz-fs-lg-87{font-size:87px!important}
2646
+ .brz-ed.brz-ed--desktop .brz-fs-lg-88{font-size:88px!important}
2647
+ .brz-ed.brz-ed--desktop .brz-fs-lg-89{font-size:89px!important}
2648
+ .brz-ed.brz-ed--desktop .brz-fs-lg-90{font-size:90px!important}
2649
+ .brz-ed.brz-ed--desktop .brz-fs-lg-91{font-size:91px!important}
2650
+ .brz-ed.brz-ed--desktop .brz-fs-lg-92{font-size:92px!important}
2651
+ .brz-ed.brz-ed--desktop .brz-fs-lg-93{font-size:93px!important}
2652
+ .brz-ed.brz-ed--desktop .brz-fs-lg-94{font-size:94px!important}
2653
+ .brz-ed.brz-ed--desktop .brz-fs-lg-95{font-size:95px!important}
2654
+ .brz-ed.brz-ed--desktop .brz-fs-lg-96{font-size:96px!important}
2655
+ .brz-ed.brz-ed--desktop .brz-fs-lg-97{font-size:97px!important}
2656
+ .brz-ed.brz-ed--desktop .brz-fs-lg-98{font-size:98px!important}
2657
+ .brz-ed.brz-ed--desktop .brz-fs-lg-99{font-size:99px!important}
2658
+ .brz-ed.brz-ed--desktop .brz-fs-lg-100{font-size:100px!important}
2659
+ .brz-ed.brz-ed--desktop .brz-fs-lg-101{font-size:101px!important}
2660
+ .brz-ed.brz-ed--desktop .brz-fs-lg-102{font-size:102px!important}
2661
+ .brz-ed.brz-ed--desktop .brz-fs-lg-103{font-size:103px!important}
2662
+ .brz-ed.brz-ed--desktop .brz-fs-lg-104{font-size:104px!important}
2663
+ .brz-ed.brz-ed--desktop .brz-fs-lg-105{font-size:105px!important}
2664
+ .brz-ed.brz-ed--desktop .brz-fs-lg-106{font-size:106px!important}
2665
+ .brz-ed.brz-ed--desktop .brz-fs-lg-107{font-size:107px!important}
2666
+ .brz-ed.brz-ed--desktop .brz-fs-lg-108{font-size:108px!important}
2667
+ .brz-ed.brz-ed--desktop .brz-fs-lg-109{font-size:109px!important}
2668
+ .brz-ed.brz-ed--desktop .brz-fs-lg-110{font-size:110px!important}
2669
+ .brz-ed.brz-ed--desktop .brz-fs-lg-111{font-size:111px!important}
2670
+ .brz-ed.brz-ed--desktop .brz-fs-lg-112{font-size:112px!important}
2671
+ .brz-ed.brz-ed--desktop .brz-fs-lg-113{font-size:113px!important}
2672
+ .brz-ed.brz-ed--desktop .brz-fs-lg-114{font-size:114px!important}
2673
+ .brz-ed.brz-ed--desktop .brz-fs-lg-115{font-size:115px!important}
2674
+ .brz-ed.brz-ed--desktop .brz-fs-lg-116{font-size:116px!important}
2675
+ .brz-ed.brz-ed--desktop .brz-fs-lg-117{font-size:117px!important}
2676
+ .brz-ed.brz-ed--desktop .brz-fs-lg-118{font-size:118px!important}
2677
+ .brz-ed.brz-ed--desktop .brz-fs-lg-119{font-size:119px!important}
2678
+ .brz-ed.brz-ed--desktop .brz-fs-lg-120{font-size:120px!important}
2679
+ .brz-ed.brz-ed--desktop .brz-fs-lg-121{font-size:121px!important}
2680
+ .brz-ed.brz-ed--desktop .brz-fs-lg-122{font-size:122px!important}
2681
+ .brz-ed.brz-ed--desktop .brz-fs-lg-123{font-size:123px!important}
2682
+ .brz-ed.brz-ed--desktop .brz-fs-lg-124{font-size:124px!important}
2683
+ .brz-ed.brz-ed--desktop .brz-fs-lg-125{font-size:125px!important}
2684
+ .brz-ed.brz-ed--desktop .brz-fs-lg-126{font-size:126px!important}
2685
+ .brz-ed.brz-ed--desktop .brz-fs-lg-127{font-size:127px!important}
2686
+ .brz-ed.brz-ed--desktop .brz-fs-lg-128{font-size:128px!important}
2687
+ .brz-ed.brz-ed--desktop .brz-fs-lg-129{font-size:129px!important}
2688
+ .brz-ed.brz-ed--desktop .brz-fs-lg-130{font-size:130px!important}
2689
+ .brz-ed.brz-ed--desktop .brz-fs-lg-131{font-size:131px!important}
2690
+ .brz-ed.brz-ed--desktop .brz-fs-lg-132{font-size:132px!important}
2691
+ .brz-ed.brz-ed--desktop .brz-fs-lg-133{font-size:133px!important}
2692
+ .brz-ed.brz-ed--desktop .brz-fs-lg-134{font-size:134px!important}
2693
+ .brz-ed.brz-ed--desktop .brz-fs-lg-135{font-size:135px!important}
2694
+ .brz-ed.brz-ed--desktop .brz-fs-lg-136{font-size:136px!important}
2695
+ .brz-ed.brz-ed--desktop .brz-fs-lg-137{font-size:137px!important}
2696
+ .brz-ed.brz-ed--desktop .brz-fs-lg-138{font-size:138px!important}
2697
+ .brz-ed.brz-ed--desktop .brz-fs-lg-139{font-size:139px!important}
2698
+ .brz-ed.brz-ed--desktop .brz-fs-lg-140{font-size:140px!important}
2699
+ .brz-ed.brz-ed--desktop .brz-fs-lg-141{font-size:141px!important}
2700
+ .brz-ed.brz-ed--desktop .brz-fs-lg-142{font-size:142px!important}
2701
+ .brz-ed.brz-ed--desktop .brz-fs-lg-143{font-size:143px!important}
2702
+ .brz-ed.brz-ed--desktop .brz-fs-lg-144{font-size:144px!important}
2703
+ .brz-ed.brz-ed--desktop .brz-fs-lg-145{font-size:145px!important}
2704
+ .brz-ed.brz-ed--desktop .brz-fs-lg-146{font-size:146px!important}
2705
+ .brz-ed.brz-ed--desktop .brz-fs-lg-147{font-size:147px!important}
2706
+ .brz-ed.brz-ed--desktop .brz-fs-lg-148{font-size:148px!important}
2707
+ .brz-ed.brz-ed--desktop .brz-fs-lg-149{font-size:149px!important}
2708
+ .brz-ed.brz-ed--desktop .brz-fs-lg-150{font-size:150px!important}
2709
+ .brz-ed.brz-ed--desktop .brz-fs-lg-151{font-size:151px!important}
2710
+ .brz-ed.brz-ed--desktop .brz-fs-lg-152{font-size:152px!important}
2711
+ .brz-ed.brz-ed--desktop .brz-fs-lg-153{font-size:153px!important}
2712
+ .brz-ed.brz-ed--desktop .brz-fs-lg-154{font-size:154px!important}
2713
+ .brz-ed.brz-ed--desktop .brz-fs-lg-155{font-size:155px!important}
2714
+ .brz-ed.brz-ed--desktop .brz-fs-lg-156{font-size:156px!important}
2715
+ .brz-ed.brz-ed--desktop .brz-fs-lg-157{font-size:157px!important}
2716
+ .brz-ed.brz-ed--desktop .brz-fs-lg-158{font-size:158px!important}
2717
+ .brz-ed.brz-ed--desktop .brz-fs-lg-159{font-size:159px!important}
2718
+ .brz-ed.brz-ed--desktop .brz-fs-lg-160{font-size:160px!important}
2719
+ .brz-ed.brz-ed--desktop .brz-fs-lg-161{font-size:161px!important}
2720
+ .brz-ed.brz-ed--desktop .brz-fs-lg-162{font-size:162px!important}
2721
+ .brz-ed.brz-ed--desktop .brz-fs-lg-163{font-size:163px!important}
2722
+ .brz-ed.brz-ed--desktop .brz-fs-lg-164{font-size:164px!important}
2723
+ .brz-ed.brz-ed--desktop .brz-fs-lg-165{font-size:165px!important}
2724
+ .brz-ed.brz-ed--desktop .brz-fs-lg-166{font-size:166px!important}
2725
+ .brz-ed.brz-ed--desktop .brz-fs-lg-167{font-size:167px!important}
2726
+ .brz-ed.brz-ed--desktop .brz-fs-lg-168{font-size:168px!important}
2727
+ .brz-ed.brz-ed--desktop .brz-fs-lg-169{font-size:169px!important}
2728
+ .brz-ed.brz-ed--desktop .brz-fs-lg-170{font-size:170px!important}
2729
+ .brz-ed.brz-ed--desktop .brz-fs-lg-171{font-size:171px!important}
2730
+ .brz-ed.brz-ed--desktop .brz-fs-lg-172{font-size:172px!important}
2731
+ .brz-ed.brz-ed--desktop .brz-fs-lg-173{font-size:173px!important}
2732
+ .brz-ed.brz-ed--desktop .brz-fs-lg-174{font-size:174px!important}
2733
+ .brz-ed.brz-ed--desktop .brz-fs-lg-175{font-size:175px!important}
2734
+ .brz-ed.brz-ed--desktop .brz-fs-lg-176{font-size:176px!important}
2735
+ .brz-ed.brz-ed--desktop .brz-fs-lg-177{font-size:177px!important}
2736
+ .brz-ed.brz-ed--desktop .brz-fs-lg-178{font-size:178px!important}
2737
+ .brz-ed.brz-ed--desktop .brz-fs-lg-179{font-size:179px!important}
2738
+ .brz-ed.brz-ed--desktop .brz-fs-lg-180{font-size:180px!important}
2739
+ .brz-ed.brz-ed--desktop .brz-fs-lg-181{font-size:181px!important}
2740
+ .brz-ed.brz-ed--desktop .brz-fs-lg-182{font-size:182px!important}
2741
+ .brz-ed.brz-ed--desktop .brz-fs-lg-183{font-size:183px!important}
2742
+ .brz-ed.brz-ed--desktop .brz-fs-lg-184{font-size:184px!important}
2743
+ .brz-ed.brz-ed--desktop .brz-fs-lg-185{font-size:185px!important}
2744
+ .brz-ed.brz-ed--desktop .brz-fs-lg-186{font-size:186px!important}
2745
+ .brz-ed.brz-ed--desktop .brz-fs-lg-187{font-size:187px!important}
2746
+ .brz-ed.brz-ed--desktop .brz-fs-lg-188{font-size:188px!important}
2747
+ .brz-ed.brz-ed--desktop .brz-fs-lg-189{font-size:189px!important}
2748
+ .brz-ed.brz-ed--desktop .brz-fs-lg-190{font-size:190px!important}
2749
+ .brz-ed.brz-ed--desktop .brz-fs-lg-191{font-size:191px!important}
2750
+ .brz-ed.brz-ed--desktop .brz-fs-lg-192{font-size:192px!important}
2751
+ .brz-ed.brz-ed--desktop .brz-fs-lg-193{font-size:193px!important}
2752
+ .brz-ed.brz-ed--desktop .brz-fs-lg-194{font-size:194px!important}
2753
+ .brz-ed.brz-ed--desktop .brz-fs-lg-195{font-size:195px!important}
2754
+ .brz-ed.brz-ed--desktop .brz-fs-lg-196{font-size:196px!important}
2755
+ .brz-ed.brz-ed--desktop .brz-fs-lg-197{font-size:197px!important}
2756
+ .brz-ed.brz-ed--desktop .brz-fs-lg-198{font-size:198px!important}
2757
+ .brz-ed.brz-ed--desktop .brz-fs-lg-199{font-size:199px!important}
2758
+ .brz-ed.brz-ed--desktop .brz-fs-lg-200{font-size:200px!important}
2759
+ .brz-ed.brz-ed--desktop .brz-fs-lg-201{font-size:201px!important}
2760
+ .brz-ed.brz-ed--desktop .brz-fs-lg-202{font-size:202px!important}
2761
+ .brz-ed.brz-ed--desktop .brz-fs-lg-203{font-size:203px!important}
2762
+ .brz-ed.brz-ed--desktop .brz-fs-lg-204{font-size:204px!important}
2763
+ .brz-ed.brz-ed--desktop .brz-fs-lg-205{font-size:205px!important}
2764
+ .brz-ed.brz-ed--desktop .brz-fs-lg-206{font-size:206px!important}
2765
+ .brz-ed.brz-ed--desktop .brz-fs-lg-207{font-size:207px!important}
2766
+ .brz-ed.brz-ed--desktop .brz-fs-lg-208{font-size:208px!important}
2767
+ .brz-ed.brz-ed--desktop .brz-fs-lg-209{font-size:209px!important}
2768
+ .brz-ed.brz-ed--desktop .brz-fs-lg-210{font-size:210px!important}
2769
+ .brz-ed.brz-ed--desktop .brz-fs-lg-211{font-size:211px!important}
2770
+ .brz-ed.brz-ed--desktop .brz-fs-lg-212{font-size:212px!important}
2771
+ .brz-ed.brz-ed--desktop .brz-fs-lg-213{font-size:213px!important}
2772
+ .brz-ed.brz-ed--desktop .brz-fs-lg-214{font-size:214px!important}
2773
+ .brz-ed.brz-ed--desktop .brz-fs-lg-215{font-size:215px!important}
2774
+ .brz-ed.brz-ed--desktop .brz-fs-lg-216{font-size:216px!important}
2775
+ .brz-ed.brz-ed--desktop .brz-fs-lg-217{font-size:217px!important}
2776
+ .brz-ed.brz-ed--desktop .brz-fs-lg-218{font-size:218px!important}
2777
+ .brz-ed.brz-ed--desktop .brz-fs-lg-219{font-size:219px!important}
2778
+ .brz-ed.brz-ed--desktop .brz-fs-lg-220{font-size:220px!important}
2779
+ .brz-ed.brz-ed--desktop .brz-fs-lg-221{font-size:221px!important}
2780
+ .brz-ed.brz-ed--desktop .brz-fs-lg-222{font-size:222px!important}
2781
+ .brz-ed.brz-ed--desktop .brz-fs-lg-223{font-size:223px!important}
2782
+ .brz-ed.brz-ed--desktop .brz-fs-lg-224{font-size:224px!important}
2783
+ .brz-ed.brz-ed--desktop .brz-fs-lg-225{font-size:225px!important}
2784
+ .brz-ed.brz-ed--desktop .brz-fs-lg-226{font-size:226px!important}
2785
+ .brz-ed.brz-ed--desktop .brz-fs-lg-227{font-size:227px!important}
2786
+ .brz-ed.brz-ed--desktop .brz-fs-lg-228{font-size:228px!important}
2787
+ .brz-ed.brz-ed--desktop .brz-fs-lg-229{font-size:229px!important}
2788
+ .brz-ed.brz-ed--desktop .brz-fs-lg-230{font-size:230px!important}
2789
+ .brz-ed.brz-ed--desktop .brz-fs-lg-231{font-size:231px!important}
2790
+ .brz-ed.brz-ed--desktop .brz-fs-lg-232{font-size:232px!important}
2791
+ .brz-ed.brz-ed--desktop .brz-fs-lg-233{font-size:233px!important}
2792
+ .brz-ed.brz-ed--desktop .brz-fs-lg-234{font-size:234px!important}
2793
+ .brz-ed.brz-ed--desktop .brz-fs-lg-235{font-size:235px!important}
2794
+ .brz-ed.brz-ed--desktop .brz-fs-lg-236{font-size:236px!important}
2795
+ .brz-ed.brz-ed--desktop .brz-fs-lg-237{font-size:237px!important}
2796
+ .brz-ed.brz-ed--desktop .brz-fs-lg-238{font-size:238px!important}
2797
+ .brz-ed.brz-ed--desktop .brz-fs-lg-239{font-size:239px!important}
2798
+ .brz-ed.brz-ed--desktop .brz-fs-lg-240{font-size:240px!important}
2799
+ .brz-ed.brz-ed--desktop .brz-fs-lg-241{font-size:241px!important}
2800
+ .brz-ed.brz-ed--desktop .brz-fs-lg-242{font-size:242px!important}
2801
+ .brz-ed.brz-ed--desktop .brz-fs-lg-243{font-size:243px!important}
2802
+ .brz-ed.brz-ed--desktop .brz-fs-lg-244{font-size:244px!important}
2803
+ .brz-ed.brz-ed--desktop .brz-fs-lg-245{font-size:245px!important}
2804
+ .brz-ed.brz-ed--desktop .brz-fs-lg-246{font-size:246px!important}
2805
+ .brz-ed.brz-ed--desktop .brz-fs-lg-247{font-size:247px!important}
2806
+ .brz-ed.brz-ed--desktop .brz-fs-lg-248{font-size:248px!important}
2807
+ .brz-ed.brz-ed--desktop .brz-fs-lg-249{font-size:249px!important}
2808
+ .brz-ed.brz-ed--desktop .brz-fs-lg-250{font-size:250px!important}
2809
+ .brz-ed.brz-ed--desktop .brz-fs-lg-251{font-size:251px!important}
2810
+ .brz-ed.brz-ed--desktop .brz-fs-lg-252{font-size:252px!important}
2811
+ .brz-ed.brz-ed--desktop .brz-fs-lg-253{font-size:253px!important}
2812
+ .brz-ed.brz-ed--desktop .brz-fs-lg-254{font-size:254px!important}
2813
+ .brz-ed.brz-ed--desktop .brz-fs-lg-255{font-size:255px!important}
2814
+ .brz-ed.brz-ed--desktop .brz-fs-lg-256{font-size:256px!important}
2815
+ .brz-ed.brz-ed--desktop .brz-fs-lg-257{font-size:257px!important}
2816
+ .brz-ed.brz-ed--desktop .brz-fs-lg-258{font-size:258px!important}
2817
+ .brz-ed.brz-ed--desktop .brz-fs-lg-259{font-size:259px!important}
2818
+ .brz-ed.brz-ed--desktop .brz-fs-lg-260{font-size:260px!important}
2819
+ .brz-ed.brz-ed--desktop .brz-fs-lg-261{font-size:261px!important}
2820
+ .brz-ed.brz-ed--desktop .brz-fs-lg-262{font-size:262px!important}
2821
+ .brz-ed.brz-ed--desktop .brz-fs-lg-263{font-size:263px!important}
2822
+ .brz-ed.brz-ed--desktop .brz-fs-lg-264{font-size:264px!important}
2823
+ .brz-ed.brz-ed--desktop .brz-fs-lg-265{font-size:265px!important}
2824
+ .brz-ed.brz-ed--desktop .brz-fs-lg-266{font-size:266px!important}
2825
+ .brz-ed.brz-ed--desktop .brz-fs-lg-267{font-size:267px!important}
2826
+ .brz-ed.brz-ed--desktop .brz-fs-lg-268{font-size:268px!important}
2827
+ .brz-ed.brz-ed--desktop .brz-fs-lg-269{font-size:269px!important}
2828
+ .brz-ed.brz-ed--desktop .brz-fs-lg-270{font-size:270px!important}
2829
+ .brz-ed.brz-ed--desktop .brz-fs-lg-271{font-size:271px!important}
2830
+ .brz-ed.brz-ed--desktop .brz-fs-lg-272{font-size:272px!important}
2831
+ .brz-ed.brz-ed--desktop .brz-fs-lg-273{font-size:273px!important}
2832
+ .brz-ed.brz-ed--desktop .brz-fs-lg-274{font-size:274px!important}
2833
+ .brz-ed.brz-ed--desktop .brz-fs-lg-275{font-size:275px!important}
2834
+ .brz-ed.brz-ed--desktop .brz-fs-lg-276{font-size:276px!important}
2835
+ .brz-ed.brz-ed--desktop .brz-fs-lg-277{font-size:277px!important}
2836
+ .brz-ed.brz-ed--desktop .brz-fs-lg-278{font-size:278px!important}
2837
+ .brz-ed.brz-ed--desktop .brz-fs-lg-279{font-size:279px!important}
2838
+ .brz-ed.brz-ed--desktop .brz-fs-lg-280{font-size:280px!important}
2839
+ .brz-ed.brz-ed--desktop .brz-fs-lg-281{font-size:281px!important}
2840
+ .brz-ed.brz-ed--desktop .brz-fs-lg-282{font-size:282px!important}
2841
+ .brz-ed.brz-ed--desktop .brz-fs-lg-283{font-size:283px!important}
2842
+ .brz-ed.brz-ed--desktop .brz-fs-lg-284{font-size:284px!important}
2843
+ .brz-ed.brz-ed--desktop .brz-fs-lg-285{font-size:285px!important}
2844
+ .brz-ed.brz-ed--desktop .brz-fs-lg-286{font-size:286px!important}
2845
+ .brz-ed.brz-ed--desktop .brz-fs-lg-287{font-size:287px!important}
2846
+ .brz-ed.brz-ed--desktop .brz-fs-lg-288{font-size:288px!important}
2847
+ .brz-ed.brz-ed--desktop .brz-fs-lg-289{font-size:289px!important}
2848
+ .brz-ed.brz-ed--desktop .brz-fs-lg-290{font-size:290px!important}
2849
+ .brz-ed.brz-ed--desktop .brz-fs-lg-291{font-size:291px!important}
2850
+ .brz-ed.brz-ed--desktop .brz-fs-lg-292{font-size:292px!important}
2851
+ .brz-ed.brz-ed--desktop .brz-fs-lg-293{font-size:293px!important}
2852
+ .brz-ed.brz-ed--desktop .brz-fs-lg-294{font-size:294px!important}
2853
+ .brz-ed.brz-ed--desktop .brz-fs-lg-295{font-size:295px!important}
2854
+ .brz-ed.brz-ed--desktop .brz-fs-lg-296{font-size:296px!important}
2855
+ .brz-ed.brz-ed--desktop .brz-fs-lg-297{font-size:297px!important}
2856
+ .brz-ed.brz-ed--desktop .brz-fs-lg-298{font-size:298px!important}
2857
+ .brz-ed.brz-ed--desktop .brz-fs-lg-299{font-size:299px!important}
2858
+ .brz-ed.brz-ed--desktop .brz-fs-lg-300{font-size:300px!important}
2859
+ .brz-ed.brz-ed--desktop .brz-lh-lg-1{line-height:1em!important}
2860
+ .brz-ed.brz-ed--desktop .brz-lh-lg-1_1{line-height:1.1em!important}
2861
+ .brz-ed.brz-ed--desktop .brz-lh-lg-1_2{line-height:1.2em!important}
2862
+ .brz-ed.brz-ed--desktop .brz-lh-lg-1_3{line-height:1.3em!important}
2863
+ .brz-ed.brz-ed--desktop .brz-lh-lg-1_4{line-height:1.4em!important}
2864
+ .brz-ed.brz-ed--desktop .brz-lh-lg-1_5{line-height:1.5em!important}
2865
+ .brz-ed.brz-ed--desktop .brz-lh-lg-1_6{line-height:1.6em!important}
2866
+ .brz-ed.brz-ed--desktop .brz-lh-lg-1_7{line-height:1.7em!important}
2867
+ .brz-ed.brz-ed--desktop .brz-lh-lg-1_8{line-height:1.8em!important}
2868
+ .brz-ed.brz-ed--desktop .brz-lh-lg-1_9{line-height:1.9em!important}
2869
+ .brz-ed.brz-ed--desktop .brz-lh-lg-2{line-height:2em!important}
2870
+ .brz-ed.brz-ed--desktop .brz-lh-lg-2_1{line-height:2.1em!important}
2871
+ .brz-ed.brz-ed--desktop .brz-lh-lg-2_2{line-height:2.2em!important}
2872
+ .brz-ed.brz-ed--desktop .brz-lh-lg-2_3{line-height:2.3em!important}
2873
+ .brz-ed.brz-ed--desktop .brz-lh-lg-2_4{line-height:2.4em!important}
2874
+ .brz-ed.brz-ed--desktop .brz-lh-lg-2_5{line-height:2.5em!important}
2875
+ .brz-ed.brz-ed--desktop .brz-lh-lg-2_6{line-height:2.6em!important}
2876
+ .brz-ed.brz-ed--desktop .brz-lh-lg-2_7{line-height:2.7em!important}
2877
+ .brz-ed.brz-ed--desktop .brz-lh-lg-2_8{line-height:2.8em!important}
2878
+ .brz-ed.brz-ed--desktop .brz-lh-lg-2_9{line-height:2.9em!important}
2879
+ .brz-ed.brz-ed--desktop .brz-lh-lg-3{line-height:3em!important}
2880
+ .brz-ed.brz-ed--desktop .brz-lh-lg-3_1{line-height:3.1em!important}
2881
+ .brz-ed.brz-ed--desktop .brz-lh-lg-3_2{line-height:3.2em!important}
2882
+ .brz-ed.brz-ed--desktop .brz-lh-lg-3_3{line-height:3.3em!important}
2883
+ .brz-ed.brz-ed--desktop .brz-lh-lg-3_4{line-height:3.4em!important}
2884
+ .brz-ed.brz-ed--desktop .brz-lh-lg-3_5{line-height:3.5em!important}
2885
+ .brz-ed.brz-ed--desktop .brz-lh-lg-3_6{line-height:3.6em!important}
2886
+ .brz-ed.brz-ed--desktop .brz-lh-lg-3_7{line-height:3.7em!important}
2887
+ .brz-ed.brz-ed--desktop .brz-lh-lg-3_8{line-height:3.8em!important}
2888
+ .brz-ed.brz-ed--desktop .brz-lh-lg-3_9{line-height:3.9em!important}
2889
+ .brz-ed.brz-ed--desktop .brz-lh-lg-4{line-height:4em!important}
2890
+ .brz-ed.brz-ed--desktop .brz-lh-lg-4_1{line-height:4.1em!important}
2891
+ .brz-ed.brz-ed--desktop .brz-lh-lg-4_2{line-height:4.2em!important}
2892
+ .brz-ed.brz-ed--desktop .brz-lh-lg-4_3{line-height:4.3em!important}
2893
+ .brz-ed.brz-ed--desktop .brz-lh-lg-4_4{line-height:4.4em!important}
2894
+ .brz-ed.brz-ed--desktop .brz-lh-lg-4_5{line-height:4.5em!important}
2895
+ .brz-ed.brz-ed--desktop .brz-lh-lg-4_6{line-height:4.6em!important}
2896
+ .brz-ed.brz-ed--desktop .brz-lh-lg-4_7{line-height:4.7em!important}
2897
+ .brz-ed.brz-ed--desktop .brz-lh-lg-4_8{line-height:4.8em!important}
2898
+ .brz-ed.brz-ed--desktop .brz-lh-lg-4_9{line-height:4.9em!important}
2899
+ .brz-ed.brz-ed--desktop .brz-lh-lg-5{line-height:5em!important}
2900
+ .brz-ed.brz-ed--desktop .brz-lh-lg-5_1{line-height:5.1em!important}
2901
+ .brz-ed.brz-ed--desktop .brz-lh-lg-5_2{line-height:5.2em!important}
2902
+ .brz-ed.brz-ed--desktop .brz-lh-lg-5_3{line-height:5.3em!important}
2903
+ .brz-ed.brz-ed--desktop .brz-lh-lg-5_4{line-height:5.4em!important}
2904
+ .brz-ed.brz-ed--desktop .brz-lh-lg-5_5{line-height:5.5em!important}
2905
+ .brz-ed.brz-ed--desktop .brz-lh-lg-5_6{line-height:5.6em!important}
2906
+ .brz-ed.brz-ed--desktop .brz-lh-lg-5_7{line-height:5.7em!important}
2907
+ .brz-ed.brz-ed--desktop .brz-lh-lg-5_8{line-height:5.8em!important}
2908
+ .brz-ed.brz-ed--desktop .brz-lh-lg-5_9{line-height:5.9em!important}
2909
+ .brz-ed.brz-ed--desktop .brz-ls-lg-m_20{letter-spacing:-20px!important}
2910
+ .brz-ed.brz-ed--desktop .brz-ls-lg-m_20_5{letter-spacing:-20.5px!important}
2911
+ .brz-ed.brz-ed--desktop .brz-ls-lg-m_19{letter-spacing:-19px!important}
2912
+ .brz-ed.brz-ed--desktop .brz-ls-lg-m_19_5{letter-spacing:-19.5px!important}
2913
+ .brz-ed.brz-ed--desktop .brz-ls-lg-m_18{letter-spacing:-18px!important}
2914
+ .brz-ed.brz-ed--desktop .brz-ls-lg-m_18_5{letter-spacing:-18.5px!important}
2915
+ .brz-ed.brz-ed--desktop .brz-ls-lg-m_17{letter-spacing:-17px!important}
2916
+ .brz-ed.brz-ed--desktop .brz-ls-lg-m_17_5{letter-spacing:-17.5px!important}
2917
+ .brz-ed.brz-ed--desktop .brz-ls-lg-m_16{letter-spacing:-16px!important}
2918
+ .brz-ed.brz-ed--desktop .brz-ls-lg-m_16_5{letter-spacing:-16.5px!important}
2919
+ .brz-ed.brz-ed--desktop .brz-ls-lg-m_15{letter-spacing:-15px!important}
2920
+ .brz-ed.brz-ed--desktop .brz-ls-lg-m_15_5{letter-spacing:-15.5px!important}
2921
+ .brz-ed.brz-ed--desktop .brz-ls-lg-m_14{letter-spacing:-14px!important}
2922
+ .brz-ed.brz-ed--desktop .brz-ls-lg-m_14_5{letter-spacing:-14.5px!important}
2923
+ .brz-ed.brz-ed--desktop .brz-ls-lg-m_13{letter-spacing:-13px!important}
2924
+ .brz-ed.brz-ed--desktop .brz-ls-lg-m_13_5{letter-spacing:-13.5px!important}
2925
+ .brz-ed.brz-ed--desktop .brz-ls-lg-m_12{letter-spacing:-12px!important}
2926
+ .brz-ed.brz-ed--desktop .brz-ls-lg-m_12_5{letter-spacing:-12.5px!important}
2927
+ .brz-ed.brz-ed--desktop .brz-ls-lg-m_11{letter-spacing:-11px!important}
2928
+ .brz-ed.brz-ed--desktop .brz-ls-lg-m_11_5{letter-spacing:-11.5px!important}
2929
+ .brz-ed.brz-ed--desktop .brz-ls-lg-m_10{letter-spacing:-10px!important}
2930
+ .brz-ed.brz-ed--desktop .brz-ls-lg-m_10_5{letter-spacing:-10.5px!important}
2931
+ .brz-ed.brz-ed--desktop .brz-ls-lg-m_9{letter-spacing:-9px!important}
2932
+ .brz-ed.brz-ed--desktop .brz-ls-lg-m_9_5{letter-spacing:-9.5px!important}
2933
+ .brz-ed.brz-ed--desktop .brz-ls-lg-m_8{letter-spacing:-8px!important}
2934
+ .brz-ed.brz-ed--desktop .brz-ls-lg-m_8_5{letter-spacing:-8.5px!important}
2935
+ .brz-ed.brz-ed--desktop .brz-ls-lg-m_7{letter-spacing:-7px!important}
2936
+ .brz-ed.brz-ed--desktop .brz-ls-lg-m_7_5{letter-spacing:-7.5px!important}
2937
+ .brz-ed.brz-ed--desktop .brz-ls-lg-m_6{letter-spacing:-6px!important}
2938
+ .brz-ed.brz-ed--desktop .brz-ls-lg-m_6_5{letter-spacing:-6.5px!important}
2939
+ .brz-ed.brz-ed--desktop .brz-ls-lg-m_5{letter-spacing:-5px!important}
2940
+ .brz-ed.brz-ed--desktop .brz-ls-lg-m_5_5{letter-spacing:-5.5px!important}
2941
+ .brz-ed.brz-ed--desktop .brz-ls-lg-m_4{letter-spacing:-4px!important}
2942
+ .brz-ed.brz-ed--desktop .brz-ls-lg-m_4_5{letter-spacing:-4.5px!important}
2943
+ .brz-ed.brz-ed--desktop .brz-ls-lg-m_3{letter-spacing:-3px!important}
2944
+ .brz-ed.brz-ed--desktop .brz-ls-lg-m_3_5{letter-spacing:-3.5px!important}
2945
+ .brz-ed.brz-ed--desktop .brz-ls-lg-m_2{letter-spacing:-2px!important}
2946
+ .brz-ed.brz-ed--desktop .brz-ls-lg-m_2_5{letter-spacing:-2.5px!important}
2947
+ .brz-ed.brz-ed--desktop .brz-ls-lg-m_1{letter-spacing:-1px!important}
2948
+ .brz-ed.brz-ed--desktop .brz-ls-lg-m_1_5{letter-spacing:-1.5px!important}
2949
+ .brz-ed.brz-ed--desktop .brz-ls-lg-m_0{letter-spacing:0!important}
2950
+ .brz-ed.brz-ed--desktop .brz-ls-lg-m_0_5{letter-spacing:-.5px!important}
2951
+ .brz-ed.brz-ed--desktop .brz-ls-lg-0{letter-spacing:0!important}
2952
+ .brz-ed.brz-ed--desktop .brz-ls-lg-0_5{letter-spacing:.5px!important}
2953
+ .brz-ed.brz-ed--desktop .brz-ls-lg-1{letter-spacing:1px!important}
2954
+ .brz-ed.brz-ed--desktop .brz-ls-lg-1_5{letter-spacing:1.5px!important}
2955
+ .brz-ed.brz-ed--desktop .brz-ls-lg-2{letter-spacing:2px!important}
2956
+ .brz-ed.brz-ed--desktop .brz-ls-lg-2_5{letter-spacing:2.5px!important}
2957
+ .brz-ed.brz-ed--desktop .brz-ls-lg-3{letter-spacing:3px!important}
2958
+ .brz-ed.brz-ed--desktop .brz-ls-lg-3_5{letter-spacing:3.5px!important}
2959
+ .brz-ed.brz-ed--desktop .brz-ls-lg-4{letter-spacing:4px!important}
2960
+ .brz-ed.brz-ed--desktop .brz-ls-lg-4_5{letter-spacing:4.5px!important}
2961
+ .brz-ed.brz-ed--desktop .brz-ls-lg-5{letter-spacing:5px!important}
2962
+ .brz-ed.brz-ed--desktop .brz-ls-lg-5_5{letter-spacing:5.5px!important}
2963
+ .brz-ed.brz-ed--desktop .brz-ls-lg-6{letter-spacing:6px!important}
2964
+ .brz-ed.brz-ed--desktop .brz-ls-lg-6_5{letter-spacing:6.5px!important}
2965
+ .brz-ed.brz-ed--desktop .brz-ls-lg-7{letter-spacing:7px!important}
2966
+ .brz-ed.brz-ed--desktop .brz-ls-lg-7_5{letter-spacing:7.5px!important}
2967
+ .brz-ed.brz-ed--desktop .brz-ls-lg-8{letter-spacing:8px!important}
2968
+ .brz-ed.brz-ed--desktop .brz-ls-lg-8_5{letter-spacing:8.5px!important}
2969
+ .brz-ed.brz-ed--desktop .brz-ls-lg-9{letter-spacing:9px!important}
2970
+ .brz-ed.brz-ed--desktop .brz-ls-lg-9_5{letter-spacing:9.5px!important}
2971
+ .brz-ed.brz-ed--desktop .brz-ls-lg-10{letter-spacing:10px!important}
2972
+ .brz-ed.brz-ed--desktop .brz-ls-lg-10_5{letter-spacing:10.5px!important}
2973
+ .brz-ed.brz-ed--desktop .brz-ls-lg-11{letter-spacing:11px!important}
2974
+ .brz-ed.brz-ed--desktop .brz-ls-lg-11_5{letter-spacing:11.5px!important}
2975
+ .brz-ed.brz-ed--desktop .brz-ls-lg-12{letter-spacing:12px!important}
2976
+ .brz-ed.brz-ed--desktop .brz-ls-lg-12_5{letter-spacing:12.5px!important}
2977
+ .brz-ed.brz-ed--desktop .brz-ls-lg-13{letter-spacing:13px!important}
2978
+ .brz-ed.brz-ed--desktop .brz-ls-lg-13_5{letter-spacing:13.5px!important}
2979
+ .brz-ed.brz-ed--desktop .brz-ls-lg-14{letter-spacing:14px!important}
2980
+ .brz-ed.brz-ed--desktop .brz-ls-lg-14_5{letter-spacing:14.5px!important}
2981
+ .brz-ed.brz-ed--desktop .brz-ls-lg-15{letter-spacing:15px!important}
2982
+ .brz-ed.brz-ed--desktop .brz-ls-lg-15_5{letter-spacing:15.5px!important}
2983
+ .brz-ed.brz-ed--desktop .brz-ls-lg-16{letter-spacing:16px!important}
2984
+ .brz-ed.brz-ed--desktop .brz-ls-lg-16_5{letter-spacing:16.5px!important}
2985
+ .brz-ed.brz-ed--desktop .brz-ls-lg-17{letter-spacing:17px!important}
2986
+ .brz-ed.brz-ed--desktop .brz-ls-lg-17_5{letter-spacing:17.5px!important}
2987
+ .brz-ed.brz-ed--desktop .brz-ls-lg-18{letter-spacing:18px!important}
2988
+ .brz-ed.brz-ed--desktop .brz-ls-lg-18_5{letter-spacing:18.5px!important}
2989
+ .brz-ed.brz-ed--desktop .brz-ls-lg-19{letter-spacing:19px!important}
2990
+ .brz-ed.brz-ed--desktop .brz-ls-lg-19_5{letter-spacing:19.5px!important}
2991
+ .brz-ed.brz-ed--desktop .brz-ls-lg-20{letter-spacing:20px!important}
2992
+ .brz-ed.brz-ed--desktop .brz-ls-lg-20_5{letter-spacing:20.5px!important}
2993
+ .brz-ed.brz-ed--desktop .brz-fw-lg-100{font-weight:100!important}
2994
+ .brz-ed.brz-ed--desktop .brz-fw-lg-200{font-weight:200!important}
2995
+ .brz-ed.brz-ed--desktop .brz-fw-lg-300{font-weight:300!important}
2996
+ .brz-ed.brz-ed--desktop .brz-fw-lg-400{font-weight:400!important}
2997
+ .brz-ed.brz-ed--desktop .brz-fw-lg-500{font-weight:500!important}
2998
+ .brz-ed.brz-ed--desktop .brz-fw-lg-600{font-weight:600!important}
2999
+ .brz-ed.brz-ed--desktop .brz-fw-lg-700{font-weight:700!important}
3000
+ .brz-ed.brz-ed--desktop .brz-fw-lg-800{font-weight:800!important}
3001
+ .brz-ed.brz-ed--desktop .brz-fw-lg-900{font-weight:900!important}
3002
+ .brz-ed.brz-ed--desktop .brz-fw-lg-1000{font-weight:1000!important}
3003
+ .brz-ed.brz-ed--desktop .brz-fw-lg-1100{font-weight:1100!important}
3004
+ .brz-ed.brz-ed--desktop .brz-fw-lg-1200{font-weight:1200!important}
3005
+ .brz-ed.brz-ed--desktop .brz-fw-lg-1300{font-weight:1300!important}
3006
+ .brz-ed.brz-ed--desktop .brz-fw-lg-1400{font-weight:1400!important}
3007
+ .brz-ed.brz-ed--desktop .brz-fw-lg-1500{font-weight:1500!important}
3008
+ .brz-ed.brz-ed--desktop .brz-fw-lg-1600{font-weight:1600!important}
3009
+ .brz-ed.brz-ed--desktop .brz-fw-lg-1700{font-weight:1700!important}
3010
+ .brz-ed.brz-ed--desktop .brz-fw-lg-1800{font-weight:1800!important}
3011
+ .brz-ed.brz-ed--desktop .brz-fw-lg-1900{font-weight:1900!important}
3012
+ .brz-ed.brz-ed--desktop .brz-fw-lg-2000{font-weight:2000!important}
3013
+ .brz-ed.brz-ed--tablet .brz-fs-sm-6{font-size:6px!important}
3014
+ .brz-ed.brz-ed--tablet .brz-fs-sm-7{font-size:7px!important}
3015
+ .brz-ed.brz-ed--tablet .brz-fs-sm-8{font-size:8px!important}
3016
+ .brz-ed.brz-ed--tablet .brz-fs-sm-9{font-size:9px!important}
3017
+ .brz-ed.brz-ed--tablet .brz-fs-sm-10{font-size:10px!important}
3018
+ .brz-ed.brz-ed--tablet .brz-fs-sm-11{font-size:11px!important}
3019
+ .brz-ed.brz-ed--tablet .brz-fs-sm-12{font-size:12px!important}
3020
+ .brz-ed.brz-ed--tablet .brz-fs-sm-13{font-size:13px!important}
3021
+ .brz-ed.brz-ed--tablet .brz-fs-sm-14{font-size:14px!important}
3022
+ .brz-ed.brz-ed--tablet .brz-fs-sm-15{font-size:15px!important}
3023
+ .brz-ed.brz-ed--tablet .brz-fs-sm-16{font-size:16px!important}
3024
+ .brz-ed.brz-ed--tablet .brz-fs-sm-17{font-size:17px!important}
3025
+ .brz-ed.brz-ed--tablet .brz-fs-sm-18{font-size:18px!important}
3026
+ .brz-ed.brz-ed--tablet .brz-fs-sm-19{font-size:19px!important}
3027
+ .brz-ed.brz-ed--tablet .brz-fs-sm-20{font-size:20px!important}
3028
+ .brz-ed.brz-ed--tablet .brz-fs-sm-21{font-size:21px!important}
3029
+ .brz-ed.brz-ed--tablet .brz-fs-sm-22{font-size:22px!important}
3030
+ .brz-ed.brz-ed--tablet .brz-fs-sm-23{font-size:23px!important}
3031
+ .brz-ed.brz-ed--tablet .brz-fs-sm-24{font-size:24px!important}
3032
+ .brz-ed.brz-ed--tablet .brz-fs-sm-25{font-size:25px!important}
3033
+ .brz-ed.brz-ed--tablet .brz-fs-sm-26{font-size:26px!important}
3034
+ .brz-ed.brz-ed--tablet .brz-fs-sm-27{font-size:27px!important}
3035
+ .brz-ed.brz-ed--tablet .brz-fs-sm-28{font-size:28px!important}
3036
+ .brz-ed.brz-ed--tablet .brz-fs-sm-29{font-size:29px!important}
3037
+ .brz-ed.brz-ed--tablet .brz-fs-sm-30{font-size:30px!important}
3038
+ .brz-ed.brz-ed--tablet .brz-fs-sm-31{font-size:31px!important}
3039
+ .brz-ed.brz-ed--tablet .brz-fs-sm-32{font-size:32px!important}
3040
+ .brz-ed.brz-ed--tablet .brz-fs-sm-33{font-size:33px!important}
3041
+ .brz-ed.brz-ed--tablet .brz-fs-sm-34{font-size:34px!important}
3042
+ .brz-ed.brz-ed--tablet .brz-fs-sm-35{font-size:35px!important}
3043
+ .brz-ed.brz-ed--tablet .brz-fs-sm-36{font-size:36px!important}
3044
+ .brz-ed.brz-ed--tablet .brz-fs-sm-37{font-size:37px!important}
3045
+ .brz-ed.brz-ed--tablet .brz-fs-sm-38{font-size:38px!important}
3046
+ .brz-ed.brz-ed--tablet .brz-fs-sm-39{font-size:39px!important}
3047
+ .brz-ed.brz-ed--tablet .brz-fs-sm-40{font-size:40px!important}
3048
+ .brz-ed.brz-ed--tablet .brz-fs-sm-41{font-size:41px!important}
3049
+ .brz-ed.brz-ed--tablet .brz-fs-sm-42{font-size:42px!important}
3050
+ .brz-ed.brz-ed--tablet .brz-fs-sm-43{font-size:43px!important}
3051
+ .brz-ed.brz-ed--tablet .brz-fs-sm-44{font-size:44px!important}
3052
+ .brz-ed.brz-ed--tablet .brz-fs-sm-45{font-size:45px!important}
3053
+ .brz-ed.brz-ed--tablet .brz-fs-sm-46{font-size:46px!important}
3054
+ .brz-ed.brz-ed--tablet .brz-fs-sm-47{font-size:47px!important}
3055
+ .brz-ed.brz-ed--tablet .brz-fs-sm-48{font-size:48px!important}
3056
+ .brz-ed.brz-ed--tablet .brz-fs-sm-49{font-size:49px!important}
3057
+ .brz-ed.brz-ed--tablet .brz-fs-sm-50{font-size:50px!important}
3058
+ .brz-ed.brz-ed--tablet .brz-fs-sm-51{font-size:51px!important}
3059
+ .brz-ed.brz-ed--tablet .brz-fs-sm-52{font-size:52px!important}
3060
+ .brz-ed.brz-ed--tablet .brz-fs-sm-53{font-size:53px!important}
3061
+ .brz-ed.brz-ed--tablet .brz-fs-sm-54{font-size:54px!important}
3062
+ .brz-ed.brz-ed--tablet .brz-fs-sm-55{font-size:55px!important}
3063
+ .brz-ed.brz-ed--tablet .brz-fs-sm-56{font-size:56px!important}
3064
+ .brz-ed.brz-ed--tablet .brz-fs-sm-57{font-size:57px!important}
3065
+ .brz-ed.brz-ed--tablet .brz-fs-sm-58{font-size:58px!important}
3066
+ .brz-ed.brz-ed--tablet .brz-fs-sm-59{font-size:59px!important}
3067
+ .brz-ed.brz-ed--tablet .brz-fs-sm-60{font-size:60px!important}
3068
+ .brz-ed.brz-ed--tablet .brz-fs-sm-61{font-size:61px!important}
3069
+ .brz-ed.brz-ed--tablet .brz-fs-sm-62{font-size:62px!important}
3070
+ .brz-ed.brz-ed--tablet .brz-fs-sm-63{font-size:63px!important}
3071
+ .brz-ed.brz-ed--tablet .brz-fs-sm-64{font-size:64px!important}
3072
+ .brz-ed.brz-ed--tablet .brz-fs-sm-65{font-size:65px!important}
3073
+ .brz-ed.brz-ed--tablet .brz-fs-sm-66{font-size:66px!important}
3074
+ .brz-ed.brz-ed--tablet .brz-fs-sm-67{font-size:67px!important}
3075
+ .brz-ed.brz-ed--tablet .brz-fs-sm-68{font-size:68px!important}
3076
+ .brz-ed.brz-ed--tablet .brz-fs-sm-69{font-size:69px!important}
3077
+ .brz-ed.brz-ed--tablet .brz-fs-sm-70{font-size:70px!important}
3078
+ .brz-ed.brz-ed--tablet .brz-fs-sm-71{font-size:71px!important}
3079
+ .brz-ed.brz-ed--tablet .brz-fs-sm-72{font-size:72px!important}
3080
+ .brz-ed.brz-ed--tablet .brz-fs-sm-73{font-size:73px!important}
3081
+ .brz-ed.brz-ed--tablet .brz-fs-sm-74{font-size:74px!important}
3082
+ .brz-ed.brz-ed--tablet .brz-fs-sm-75{font-size:75px!important}
3083
+ .brz-ed.brz-ed--tablet .brz-fs-sm-76{font-size:76px!important}
3084
+ .brz-ed.brz-ed--tablet .brz-fs-sm-77{font-size:77px!important}
3085
+ .brz-ed.brz-ed--tablet .brz-fs-sm-78{font-size:78px!important}
3086
+ .brz-ed.brz-ed--tablet .brz-fs-sm-79{font-size:79px!important}
3087
+ .brz-ed.brz-ed--tablet .brz-fs-sm-80{font-size:80px!important}
3088
+ .brz-ed.brz-ed--tablet .brz-fs-sm-81{font-size:81px!important}
3089
+ .brz-ed.brz-ed--tablet .brz-fs-sm-82{font-size:82px!important}
3090
+ .brz-ed.brz-ed--tablet .brz-fs-sm-83{font-size:83px!important}
3091
+ .brz-ed.brz-ed--tablet .brz-fs-sm-84{font-size:84px!important}
3092
+ .brz-ed.brz-ed--tablet .brz-fs-sm-85{font-size:85px!important}
3093
+ .brz-ed.brz-ed--tablet .brz-fs-sm-86{font-size:86px!important}
3094
+ .brz-ed.brz-ed--tablet .brz-fs-sm-87{font-size:87px!important}
3095
+ .brz-ed.brz-ed--tablet .brz-fs-sm-88{font-size:88px!important}
3096
+ .brz-ed.brz-ed--tablet .brz-fs-sm-89{font-size:89px!important}
3097
+ .brz-ed.brz-ed--tablet .brz-fs-sm-90{font-size:90px!important}
3098
+ .brz-ed.brz-ed--tablet .brz-fs-sm-91{font-size:91px!important}
3099
+ .brz-ed.brz-ed--tablet .brz-fs-sm-92{font-size:92px!important}
3100
+ .brz-ed.brz-ed--tablet .brz-fs-sm-93{font-size:93px!important}
3101
+ .brz-ed.brz-ed--tablet .brz-fs-sm-94{font-size:94px!important}
3102
+ .brz-ed.brz-ed--tablet .brz-fs-sm-95{font-size:95px!important}
3103
+ .brz-ed.brz-ed--tablet .brz-fs-sm-96{font-size:96px!important}
3104
+ .brz-ed.brz-ed--tablet .brz-fs-sm-97{font-size:97px!important}
3105
+ .brz-ed.brz-ed--tablet .brz-fs-sm-98{font-size:98px!important}
3106
+ .brz-ed.brz-ed--tablet .brz-fs-sm-99{font-size:99px!important}
3107
+ .brz-ed.brz-ed--tablet .brz-fs-sm-100{font-size:100px!important}
3108
+ .brz-ed.brz-ed--tablet .brz-fs-sm-101{font-size:101px!important}
3109
+ .brz-ed.brz-ed--tablet .brz-fs-sm-102{font-size:102px!important}
3110
+ .brz-ed.brz-ed--tablet .brz-fs-sm-103{font-size:103px!important}
3111
+ .brz-ed.brz-ed--tablet .brz-fs-sm-104{font-size:104px!important}
3112
+ .brz-ed.brz-ed--tablet .brz-fs-sm-105{font-size:105px!important}
3113
+ .brz-ed.brz-ed--tablet .brz-fs-sm-106{font-size:106px!important}
3114
+ .brz-ed.brz-ed--tablet .brz-fs-sm-107{font-size:107px!important}
3115
+ .brz-ed.brz-ed--tablet .brz-fs-sm-108{font-size:108px!important}
3116
+ .brz-ed.brz-ed--tablet .brz-fs-sm-109{font-size:109px!important}
3117
+ .brz-ed.brz-ed--tablet .brz-fs-sm-110{font-size:110px!important}
3118
+ .brz-ed.brz-ed--tablet .brz-fs-sm-111{font-size:111px!important}
3119
+ .brz-ed.brz-ed--tablet .brz-fs-sm-112{font-size:112px!important}
3120
+ .brz-ed.brz-ed--tablet .brz-fs-sm-113{font-size:113px!important}
3121
+ .brz-ed.brz-ed--tablet .brz-fs-sm-114{font-size:114px!important}
3122
+ .brz-ed.brz-ed--tablet .brz-fs-sm-115{font-size:115px!important}
3123
+ .brz-ed.brz-ed--tablet .brz-fs-sm-116{font-size:116px!important}
3124
+ .brz-ed.brz-ed--tablet .brz-fs-sm-117{font-size:117px!important}
3125
+ .brz-ed.brz-ed--tablet .brz-fs-sm-118{font-size:118px!important}
3126
+ .brz-ed.brz-ed--tablet .brz-fs-sm-119{font-size:119px!important}
3127
+ .brz-ed.brz-ed--tablet .brz-fs-sm-120{font-size:120px!important}
3128
+ .brz-ed.brz-ed--tablet .brz-fs-sm-121{font-size:121px!important}
3129
+ .brz-ed.brz-ed--tablet .brz-fs-sm-122{font-size:122px!important}
3130
+ .brz-ed.brz-ed--tablet .brz-fs-sm-123{font-size:123px!important}
3131
+ .brz-ed.brz-ed--tablet .brz-fs-sm-124{font-size:124px!important}
3132
+ .brz-ed.brz-ed--tablet .brz-fs-sm-125{font-size:125px!important}
3133
+ .brz-ed.brz-ed--tablet .brz-fs-sm-126{font-size:126px!important}
3134
+ .brz-ed.brz-ed--tablet .brz-fs-sm-127{font-size:127px!important}
3135
+ .brz-ed.brz-ed--tablet .brz-fs-sm-128{font-size:128px!important}
3136
+ .brz-ed.brz-ed--tablet .brz-fs-sm-129{font-size:129px!important}
3137
+ .brz-ed.brz-ed--tablet .brz-fs-sm-130{font-size:130px!important}
3138
+ .brz-ed.brz-ed--tablet .brz-fs-sm-131{font-size:131px!important}
3139
+ .brz-ed.brz-ed--tablet .brz-fs-sm-132{font-size:132px!important}
3140
+ .brz-ed.brz-ed--tablet .brz-fs-sm-133{font-size:133px!important}
3141
+ .brz-ed.brz-ed--tablet .brz-fs-sm-134{font-size:134px!important}
3142
+ .brz-ed.brz-ed--tablet .brz-fs-sm-135{font-size:135px!important}
3143
+ .brz-ed.brz-ed--tablet .brz-fs-sm-136{font-size:136px!important}
3144
+ .brz-ed.brz-ed--tablet .brz-fs-sm-137{font-size:137px!important}
3145
+ .brz-ed.brz-ed--tablet .brz-fs-sm-138{font-size:138px!important}
3146
+ .brz-ed.brz-ed--tablet .brz-fs-sm-139{font-size:139px!important}
3147
+ .brz-ed.brz-ed--tablet .brz-fs-sm-140{font-size:140px!important}
3148
+ .brz-ed.brz-ed--tablet .brz-fs-sm-141{font-size:141px!important}
3149
+ .brz-ed.brz-ed--tablet .brz-fs-sm-142{font-size:142px!important}
3150
+ .brz-ed.brz-ed--tablet .brz-fs-sm-143{font-size:143px!important}
3151
+ .brz-ed.brz-ed--tablet .brz-fs-sm-144{font-size:144px!important}
3152
+ .brz-ed.brz-ed--tablet .brz-fs-sm-145{font-size:145px!important}
3153
+ .brz-ed.brz-ed--tablet .brz-fs-sm-146{font-size:146px!important}
3154
+ .brz-ed.brz-ed--tablet .brz-fs-sm-147{font-size:147px!important}
3155
+ .brz-ed.brz-ed--tablet .brz-fs-sm-148{font-size:148px!important}
3156
+ .brz-ed.brz-ed--tablet .brz-fs-sm-149{font-size:149px!important}
3157
+ .brz-ed.brz-ed--tablet .brz-fs-sm-150{font-size:150px!important}
3158
+ .brz-ed.brz-ed--tablet .brz-fs-sm-151{font-size:151px!important}
3159
+ .brz-ed.brz-ed--tablet .brz-fs-sm-152{font-size:152px!important}
3160
+ .brz-ed.brz-ed--tablet .brz-fs-sm-153{font-size:153px!important}
3161
+ .brz-ed.brz-ed--tablet .brz-fs-sm-154{font-size:154px!important}
3162
+ .brz-ed.brz-ed--tablet .brz-fs-sm-155{font-size:155px!important}
3163
+ .brz-ed.brz-ed--tablet .brz-fs-sm-156{font-size:156px!important}
3164
+ .brz-ed.brz-ed--tablet .brz-fs-sm-157{font-size:157px!important}
3165
+ .brz-ed.brz-ed--tablet .brz-fs-sm-158{font-size:158px!important}
3166
+ .brz-ed.brz-ed--tablet .brz-fs-sm-159{font-size:159px!important}
3167
+ .brz-ed.brz-ed--tablet .brz-fs-sm-160{font-size:160px!important}
3168
+ .brz-ed.brz-ed--tablet .brz-fs-sm-161{font-size:161px!important}
3169
+ .brz-ed.brz-ed--tablet .brz-fs-sm-162{font-size:162px!important}
3170
+ .brz-ed.brz-ed--tablet .brz-fs-sm-163{font-size:163px!important}
3171
+ .brz-ed.brz-ed--tablet .brz-fs-sm-164{font-size:164px!important}
3172
+ .brz-ed.brz-ed--tablet .brz-fs-sm-165{font-size:165px!important}
3173
+ .brz-ed.brz-ed--tablet .brz-fs-sm-166{font-size:166px!important}
3174
+ .brz-ed.brz-ed--tablet .brz-fs-sm-167{font-size:167px!important}
3175
+ .brz-ed.brz-ed--tablet .brz-fs-sm-168{font-size:168px!important}
3176
+ .brz-ed.brz-ed--tablet .brz-fs-sm-169{font-size:169px!important}
3177
+ .brz-ed.brz-ed--tablet .brz-fs-sm-170{font-size:170px!important}
3178
+ .brz-ed.brz-ed--tablet .brz-fs-sm-171{font-size:171px!important}
3179
+ .brz-ed.brz-ed--tablet .brz-fs-sm-172{font-size:172px!important}
3180
+ .brz-ed.brz-ed--tablet .brz-fs-sm-173{font-size:173px!important}
3181
+ .brz-ed.brz-ed--tablet .brz-fs-sm-174{font-size:174px!important}
3182
+ .brz-ed.brz-ed--tablet .brz-fs-sm-175{font-size:175px!important}
3183
+ .brz-ed.brz-ed--tablet .brz-fs-sm-176{font-size:176px!important}
3184
+ .brz-ed.brz-ed--tablet .brz-fs-sm-177{font-size:177px!important}
3185
+ .brz-ed.brz-ed--tablet .brz-fs-sm-178{font-size:178px!important}
3186
+ .brz-ed.brz-ed--tablet .brz-fs-sm-179{font-size:179px!important}
3187
+ .brz-ed.brz-ed--tablet .brz-fs-sm-180{font-size:180px!important}
3188
+ .brz-ed.brz-ed--tablet .brz-fs-sm-181{font-size:181px!important}
3189
+ .brz-ed.brz-ed--tablet .brz-fs-sm-182{font-size:182px!important}
3190
+ .brz-ed.brz-ed--tablet .brz-fs-sm-183{font-size:183px!important}
3191
+ .brz-ed.brz-ed--tablet .brz-fs-sm-184{font-size:184px!important}
3192
+ .brz-ed.brz-ed--tablet .brz-fs-sm-185{font-size:185px!important}
3193
+ .brz-ed.brz-ed--tablet .brz-fs-sm-186{font-size:186px!important}
3194
+ .brz-ed.brz-ed--tablet .brz-fs-sm-187{font-size:187px!important}
3195
+ .brz-ed.brz-ed--tablet .brz-fs-sm-188{font-size:188px!important}
3196
+ .brz-ed.brz-ed--tablet .brz-fs-sm-189{font-size:189px!important}
3197
+ .brz-ed.brz-ed--tablet .brz-fs-sm-190{font-size:190px!important}
3198
+ .brz-ed.brz-ed--tablet .brz-fs-sm-191{font-size:191px!important}
3199
+ .brz-ed.brz-ed--tablet .brz-fs-sm-192{font-size:192px!important}
3200
+ .brz-ed.brz-ed--tablet .brz-fs-sm-193{font-size:193px!important}
3201
+ .brz-ed.brz-ed--tablet .brz-fs-sm-194{font-size:194px!important}
3202
+ .brz-ed.brz-ed--tablet .brz-fs-sm-195{font-size:195px!important}
3203
+ .brz-ed.brz-ed--tablet .brz-fs-sm-196{font-size:196px!important}
3204
+ .brz-ed.brz-ed--tablet .brz-fs-sm-197{font-size:197px!important}
3205
+ .brz-ed.brz-ed--tablet .brz-fs-sm-198{font-size:198px!important}
3206
+ .brz-ed.brz-ed--tablet .brz-fs-sm-199{font-size:199px!important}
3207
+ .brz-ed.brz-ed--tablet .brz-fs-sm-200{font-size:200px!important}
3208
+ .brz-ed.brz-ed--tablet .brz-fs-sm-201{font-size:201px!important}
3209
+ .brz-ed.brz-ed--tablet .brz-fs-sm-202{font-size:202px!important}
3210
+ .brz-ed.brz-ed--tablet .brz-fs-sm-203{font-size:203px!important}
3211
+ .brz-ed.brz-ed--tablet .brz-fs-sm-204{font-size:204px!important}
3212
+ .brz-ed.brz-ed--tablet .brz-fs-sm-205{font-size:205px!important}
3213
+ .brz-ed.brz-ed--tablet .brz-fs-sm-206{font-size:206px!important}
3214
+ .brz-ed.brz-ed--tablet .brz-fs-sm-207{font-size:207px!important}
3215
+ .brz-ed.brz-ed--tablet .brz-fs-sm-208{font-size:208px!important}
3216
+ .brz-ed.brz-ed--tablet .brz-fs-sm-209{font-size:209px!important}
3217
+ .brz-ed.brz-ed--tablet .brz-fs-sm-210{font-size:210px!important}
3218
+ .brz-ed.brz-ed--tablet .brz-fs-sm-211{font-size:211px!important}
3219
+ .brz-ed.brz-ed--tablet .brz-fs-sm-212{font-size:212px!important}
3220
+ .brz-ed.brz-ed--tablet .brz-fs-sm-213{font-size:213px!important}
3221
+ .brz-ed.brz-ed--tablet .brz-fs-sm-214{font-size:214px!important}
3222
+ .brz-ed.brz-ed--tablet .brz-fs-sm-215{font-size:215px!important}
3223
+ .brz-ed.brz-ed--tablet .brz-fs-sm-216{font-size:216px!important}
3224
+ .brz-ed.brz-ed--tablet .brz-fs-sm-217{font-size:217px!important}
3225
+ .brz-ed.brz-ed--tablet .brz-fs-sm-218{font-size:218px!important}
3226
+ .brz-ed.brz-ed--tablet .brz-fs-sm-219{font-size:219px!important}
3227
+ .brz-ed.brz-ed--tablet .brz-fs-sm-220{font-size:220px!important}
3228
+ .brz-ed.brz-ed--tablet .brz-fs-sm-221{font-size:221px!important}
3229
+ .brz-ed.brz-ed--tablet .brz-fs-sm-222{font-size:222px!important}
3230
+ .brz-ed.brz-ed--tablet .brz-fs-sm-223{font-size:223px!important}
3231
+ .brz-ed.brz-ed--tablet .brz-fs-sm-224{font-size:224px!important}
3232
+ .brz-ed.brz-ed--tablet .brz-fs-sm-225{font-size:225px!important}
3233
+ .brz-ed.brz-ed--tablet .brz-fs-sm-226{font-size:226px!important}
3234
+ .brz-ed.brz-ed--tablet .brz-fs-sm-227{font-size:227px!important}
3235
+ .brz-ed.brz-ed--tablet .brz-fs-sm-228{font-size:228px!important}
3236
+ .brz-ed.brz-ed--tablet .brz-fs-sm-229{font-size:229px!important}
3237
+ .brz-ed.brz-ed--tablet .brz-fs-sm-230{font-size:230px!important}
3238
+ .brz-ed.brz-ed--tablet .brz-fs-sm-231{font-size:231px!important}
3239
+ .brz-ed.brz-ed--tablet .brz-fs-sm-232{font-size:232px!important}
3240
+ .brz-ed.brz-ed--tablet .brz-fs-sm-233{font-size:233px!important}
3241
+ .brz-ed.brz-ed--tablet .brz-fs-sm-234{font-size:234px!important}
3242
+ .brz-ed.brz-ed--tablet .brz-fs-sm-235{font-size:235px!important}
3243
+ .brz-ed.brz-ed--tablet .brz-fs-sm-236{font-size:236px!important}
3244
+ .brz-ed.brz-ed--tablet .brz-fs-sm-237{font-size:237px!important}
3245
+ .brz-ed.brz-ed--tablet .brz-fs-sm-238{font-size:238px!important}
3246
+ .brz-ed.brz-ed--tablet .brz-fs-sm-239{font-size:239px!important}
3247
+ .brz-ed.brz-ed--tablet .brz-fs-sm-240{font-size:240px!important}
3248
+ .brz-ed.brz-ed--tablet .brz-fs-sm-241{font-size:241px!important}
3249
+ .brz-ed.brz-ed--tablet .brz-fs-sm-242{font-size:242px!important}
3250
+ .brz-ed.brz-ed--tablet .brz-fs-sm-243{font-size:243px!important}
3251
+ .brz-ed.brz-ed--tablet .brz-fs-sm-244{font-size:244px!important}
3252
+ .brz-ed.brz-ed--tablet .brz-fs-sm-245{font-size:245px!important}
3253
+ .brz-ed.brz-ed--tablet .brz-fs-sm-246{font-size:246px!important}
3254
+ .brz-ed.brz-ed--tablet .brz-fs-sm-247{font-size:247px!important}
3255
+ .brz-ed.brz-ed--tablet .brz-fs-sm-248{font-size:248px!important}
3256
+ .brz-ed.brz-ed--tablet .brz-fs-sm-249{font-size:249px!important}
3257
+ .brz-ed.brz-ed--tablet .brz-fs-sm-250{font-size:250px!important}
3258
+ .brz-ed.brz-ed--tablet .brz-fs-sm-251{font-size:251px!important}
3259
+ .brz-ed.brz-ed--tablet .brz-fs-sm-252{font-size:252px!important}
3260
+ .brz-ed.brz-ed--tablet .brz-fs-sm-253{font-size:253px!important}
3261
+ .brz-ed.brz-ed--tablet .brz-fs-sm-254{font-size:254px!important}
3262
+ .brz-ed.brz-ed--tablet .brz-fs-sm-255{font-size:255px!important}
3263
+ .brz-ed.brz-ed--tablet .brz-fs-sm-256{font-size:256px!important}
3264
+ .brz-ed.brz-ed--tablet .brz-fs-sm-257{font-size:257px!important}
3265
+ .brz-ed.brz-ed--tablet .brz-fs-sm-258{font-size:258px!important}
3266
+ .brz-ed.brz-ed--tablet .brz-fs-sm-259{font-size:259px!important}
3267
+ .brz-ed.brz-ed--tablet .brz-fs-sm-260{font-size:260px!important}
3268
+ .brz-ed.brz-ed--tablet .brz-fs-sm-261{font-size:261px!important}
3269
+ .brz-ed.brz-ed--tablet .brz-fs-sm-262{font-size:262px!important}
3270
+ .brz-ed.brz-ed--tablet .brz-fs-sm-263{font-size:263px!important}
3271
+ .brz-ed.brz-ed--tablet .brz-fs-sm-264{font-size:264px!important}
3272
+ .brz-ed.brz-ed--tablet .brz-fs-sm-265{font-size:265px!important}
3273
+ .brz-ed.brz-ed--tablet .brz-fs-sm-266{font-size:266px!important}
3274
+ .brz-ed.brz-ed--tablet .brz-fs-sm-267{font-size:267px!important}
3275
+ .brz-ed.brz-ed--tablet .brz-fs-sm-268{font-size:268px!important}
3276
+ .brz-ed.brz-ed--tablet .brz-fs-sm-269{font-size:269px!important}
3277
+ .brz-ed.brz-ed--tablet .brz-fs-sm-270{font-size:270px!important}
3278
+ .brz-ed.brz-ed--tablet .brz-fs-sm-271{font-size:271px!important}
3279
+ .brz-ed.brz-ed--tablet .brz-fs-sm-272{font-size:272px!important}
3280
+ .brz-ed.brz-ed--tablet .brz-fs-sm-273{font-size:273px!important}
3281
+ .brz-ed.brz-ed--tablet .brz-fs-sm-274{font-size:274px!important}
3282
+ .brz-ed.brz-ed--tablet .brz-fs-sm-275{font-size:275px!important}
3283
+ .brz-ed.brz-ed--tablet .brz-fs-sm-276{font-size:276px!important}
3284
+ .brz-ed.brz-ed--tablet .brz-fs-sm-277{font-size:277px!important}
3285
+ .brz-ed.brz-ed--tablet .brz-fs-sm-278{font-size:278px!important}
3286
+ .brz-ed.brz-ed--tablet .brz-fs-sm-279{font-size:279px!important}
3287
+ .brz-ed.brz-ed--tablet .brz-fs-sm-280{font-size:280px!important}
3288
+ .brz-ed.brz-ed--tablet .brz-fs-sm-281{font-size:281px!important}
3289
+ .brz-ed.brz-ed--tablet .brz-fs-sm-282{font-size:282px!important}
3290
+ .brz-ed.brz-ed--tablet .brz-fs-sm-283{font-size:283px!important}
3291
+ .brz-ed.brz-ed--tablet .brz-fs-sm-284{font-size:284px!important}
3292
+ .brz-ed.brz-ed--tablet .brz-fs-sm-285{font-size:285px!important}
3293
+ .brz-ed.brz-ed--tablet .brz-fs-sm-286{font-size:286px!important}
3294
+ .brz-ed.brz-ed--tablet .brz-fs-sm-287{font-size:287px!important}
3295
+ .brz-ed.brz-ed--tablet .brz-fs-sm-288{font-size:288px!important}
3296
+ .brz-ed.brz-ed--tablet .brz-fs-sm-289{font-size:289px!important}
3297
+ .brz-ed.brz-ed--tablet .brz-fs-sm-290{font-size:290px!important}
3298
+ .brz-ed.brz-ed--tablet .brz-fs-sm-291{font-size:291px!important}
3299
+ .brz-ed.brz-ed--tablet .brz-fs-sm-292{font-size:292px!important}
3300
+ .brz-ed.brz-ed--tablet .brz-fs-sm-293{font-size:293px!important}
3301
+ .brz-ed.brz-ed--tablet .brz-fs-sm-294{font-size:294px!important}
3302
+ .brz-ed.brz-ed--tablet .brz-fs-sm-295{font-size:295px!important}
3303
+ .brz-ed.brz-ed--tablet .brz-fs-sm-296{font-size:296px!important}
3304
+ .brz-ed.brz-ed--tablet .brz-fs-sm-297{font-size:297px!important}
3305
+ .brz-ed.brz-ed--tablet .brz-fs-sm-298{font-size:298px!important}
3306
+ .brz-ed.brz-ed--tablet .brz-fs-sm-299{font-size:299px!important}
3307
+ .brz-ed.brz-ed--tablet .brz-fs-sm-300{font-size:300px!important}
3308
+ .brz-ed.brz-ed--tablet .brz-lh-sm-1{line-height:1em!important}
3309
+ .brz-ed.brz-ed--tablet .brz-lh-sm-1_1{line-height:1.1em!important}
3310
+ .brz-ed.brz-ed--tablet .brz-lh-sm-1_2{line-height:1.2em!important}
3311
+ .brz-ed.brz-ed--tablet .brz-lh-sm-1_3{line-height:1.3em!important}
3312
+ .brz-ed.brz-ed--tablet .brz-lh-sm-1_4{line-height:1.4em!important}
3313
+ .brz-ed.brz-ed--tablet .brz-lh-sm-1_5{line-height:1.5em!important}
3314
+ .brz-ed.brz-ed--tablet .brz-lh-sm-1_6{line-height:1.6em!important}
3315
+ .brz-ed.brz-ed--tablet .brz-lh-sm-1_7{line-height:1.7em!important}
3316
+ .brz-ed.brz-ed--tablet .brz-lh-sm-1_8{line-height:1.8em!important}
3317
+ .brz-ed.brz-ed--tablet .brz-lh-sm-1_9{line-height:1.9em!important}
3318
+ .brz-ed.brz-ed--tablet .brz-lh-sm-2{line-height:2em!important}
3319
+ .brz-ed.brz-ed--tablet .brz-lh-sm-2_1{line-height:2.1em!important}
3320
+ .brz-ed.brz-ed--tablet .brz-lh-sm-2_2{line-height:2.2em!important}
3321
+ .brz-ed.brz-ed--tablet .brz-lh-sm-2_3{line-height:2.3em!important}
3322
+ .brz-ed.brz-ed--tablet .brz-lh-sm-2_4{line-height:2.4em!important}
3323
+ .brz-ed.brz-ed--tablet .brz-lh-sm-2_5{line-height:2.5em!important}
3324
+ .brz-ed.brz-ed--tablet .brz-lh-sm-2_6{line-height:2.6em!important}
3325
+ .brz-ed.brz-ed--tablet .brz-lh-sm-2_7{line-height:2.7em!important}
3326
+ .brz-ed.brz-ed--tablet .brz-lh-sm-2_8{line-height:2.8em!important}
3327
+ .brz-ed.brz-ed--tablet .brz-lh-sm-2_9{line-height:2.9em!important}
3328
+ .brz-ed.brz-ed--tablet .brz-lh-sm-3{line-height:3em!important}
3329
+ .brz-ed.brz-ed--tablet .brz-lh-sm-3_1{line-height:3.1em!important}
3330
+ .brz-ed.brz-ed--tablet .brz-lh-sm-3_2{line-height:3.2em!important}
3331
+ .brz-ed.brz-ed--tablet .brz-lh-sm-3_3{line-height:3.3em!important}
3332
+ .brz-ed.brz-ed--tablet .brz-lh-sm-3_4{line-height:3.4em!important}
3333
+ .brz-ed.brz-ed--tablet .brz-lh-sm-3_5{line-height:3.5em!important}
3334
+ .brz-ed.brz-ed--tablet .brz-lh-sm-3_6{line-height:3.6em!important}
3335
+ .brz-ed.brz-ed--tablet .brz-lh-sm-3_7{line-height:3.7em!important}
3336
+ .brz-ed.brz-ed--tablet .brz-lh-sm-3_8{line-height:3.8em!important}
3337
+ .brz-ed.brz-ed--tablet .brz-lh-sm-3_9{line-height:3.9em!important}
3338
+ .brz-ed.brz-ed--tablet .brz-lh-sm-4{line-height:4em!important}
3339
+ .brz-ed.brz-ed--tablet .brz-lh-sm-4_1{line-height:4.1em!important}
3340
+ .brz-ed.brz-ed--tablet .brz-lh-sm-4_2{line-height:4.2em!important}
3341
+ .brz-ed.brz-ed--tablet .brz-lh-sm-4_3{line-height:4.3em!important}
3342
+ .brz-ed.brz-ed--tablet .brz-lh-sm-4_4{line-height:4.4em!important}
3343
+ .brz-ed.brz-ed--tablet .brz-lh-sm-4_5{line-height:4.5em!important}
3344
+ .brz-ed.brz-ed--tablet .brz-lh-sm-4_6{line-height:4.6em!important}
3345
+ .brz-ed.brz-ed--tablet .brz-lh-sm-4_7{line-height:4.7em!important}
3346
+ .brz-ed.brz-ed--tablet .brz-lh-sm-4_8{line-height:4.8em!important}
3347
+ .brz-ed.brz-ed--tablet .brz-lh-sm-4_9{line-height:4.9em!important}
3348
+ .brz-ed.brz-ed--tablet .brz-lh-sm-5{line-height:5em!important}
3349
+ .brz-ed.brz-ed--tablet .brz-lh-sm-5_1{line-height:5.1em!important}
3350
+ .brz-ed.brz-ed--tablet .brz-lh-sm-5_2{line-height:5.2em!important}
3351
+ .brz-ed.brz-ed--tablet .brz-lh-sm-5_3{line-height:5.3em!important}
3352
+ .brz-ed.brz-ed--tablet .brz-lh-sm-5_4{line-height:5.4em!important}
3353
+ .brz-ed.brz-ed--tablet .brz-lh-sm-5_5{line-height:5.5em!important}
3354
+ .brz-ed.brz-ed--tablet .brz-lh-sm-5_6{line-height:5.6em!important}
3355
+ .brz-ed.brz-ed--tablet .brz-lh-sm-5_7{line-height:5.7em!important}
3356
+ .brz-ed.brz-ed--tablet .brz-lh-sm-5_8{line-height:5.8em!important}
3357
+ .brz-ed.brz-ed--tablet .brz-lh-sm-5_9{line-height:5.9em!important}
3358
+ .brz-ed.brz-ed--tablet .brz-fw-sm-100{font-weight:100!important}
3359
+ .brz-ed.brz-ed--tablet .brz-fw-sm-200{font-weight:200!important}
3360
+ .brz-ed.brz-ed--tablet .brz-fw-sm-300{font-weight:300!important}
3361
+ .brz-ed.brz-ed--tablet .brz-fw-sm-400{font-weight:400!important}
3362
+ .brz-ed.brz-ed--tablet .brz-fw-sm-500{font-weight:500!important}
3363
+ .brz-ed.brz-ed--tablet .brz-fw-sm-600{font-weight:600!important}
3364
+ .brz-ed.brz-ed--tablet .brz-fw-sm-700{font-weight:700!important}
3365
+ .brz-ed.brz-ed--tablet .brz-fw-sm-800{font-weight:800!important}
3366
+ .brz-ed.brz-ed--tablet .brz-fw-sm-900{font-weight:900!important}
3367
+ .brz-ed.brz-ed--tablet .brz-fw-sm-1000{font-weight:1000!important}
3368
+ .brz-ed.brz-ed--tablet .brz-fw-sm-1100{font-weight:1100!important}
3369
+ .brz-ed.brz-ed--tablet .brz-fw-sm-1200{font-weight:1200!important}
3370
+ .brz-ed.brz-ed--tablet .brz-fw-sm-1300{font-weight:1300!important}
3371
+ .brz-ed.brz-ed--tablet .brz-fw-sm-1400{font-weight:1400!important}
3372
+ .brz-ed.brz-ed--tablet .brz-fw-sm-1500{font-weight:1500!important}
3373
+ .brz-ed.brz-ed--tablet .brz-fw-sm-1600{font-weight:1600!important}
3374
+ .brz-ed.brz-ed--tablet .brz-fw-sm-1700{font-weight:1700!important}
3375
+ .brz-ed.brz-ed--tablet .brz-fw-sm-1800{font-weight:1800!important}
3376
+ .brz-ed.brz-ed--tablet .brz-fw-sm-1900{font-weight:1900!important}
3377
+ .brz-ed.brz-ed--tablet .brz-fw-sm-2000{font-weight:2000!important}
3378
+ .brz-ed.brz-ed--tablet .brz-ls-sm-m_20{letter-spacing:-20px!important}
3379
+ .brz-ed.brz-ed--tablet .brz-ls-sm-m_20_5{letter-spacing:-20.5px!important}
3380
+ .brz-ed.brz-ed--tablet .brz-ls-sm-m_19{letter-spacing:-19px!important}
3381
+ .brz-ed.brz-ed--tablet .brz-ls-sm-m_19_5{letter-spacing:-19.5px!important}
3382
+ .brz-ed.brz-ed--tablet .brz-ls-sm-m_18{letter-spacing:-18px!important}
3383
+ .brz-ed.brz-ed--tablet .brz-ls-sm-m_18_5{letter-spacing:-18.5px!important}
3384
+ .brz-ed.brz-ed--tablet .brz-ls-sm-m_17{letter-spacing:-17px!important}
3385
+ .brz-ed.brz-ed--tablet .brz-ls-sm-m_17_5{letter-spacing:-17.5px!important}
3386
+ .brz-ed.brz-ed--tablet .brz-ls-sm-m_16{letter-spacing:-16px!important}
3387
+ .brz-ed.brz-ed--tablet .brz-ls-sm-m_16_5{letter-spacing:-16.5px!important}
3388
+ .brz-ed.brz-ed--tablet .brz-ls-sm-m_15{letter-spacing:-15px!important}
3389
+ .brz-ed.brz-ed--tablet .brz-ls-sm-m_15_5{letter-spacing:-15.5px!important}
3390
+ .brz-ed.brz-ed--tablet .brz-ls-sm-m_14{letter-spacing:-14px!important}
3391
+ .brz-ed.brz-ed--tablet .brz-ls-sm-m_14_5{letter-spacing:-14.5px!important}
3392
+ .brz-ed.brz-ed--tablet .brz-ls-sm-m_13{letter-spacing:-13px!important}
3393
+ .brz-ed.brz-ed--tablet .brz-ls-sm-m_13_5{letter-spacing:-13.5px!important}
3394
+ .brz-ed.brz-ed--tablet .brz-ls-sm-m_12{letter-spacing:-12px!important}
3395
+ .brz-ed.brz-ed--tablet .brz-ls-sm-m_12_5{letter-spacing:-12.5px!important}
3396
+ .brz-ed.brz-ed--tablet .brz-ls-sm-m_11{letter-spacing:-11px!important}
3397
+ .brz-ed.brz-ed--tablet .brz-ls-sm-m_11_5{letter-spacing:-11.5px!important}
3398
+ .brz-ed.brz-ed--tablet .brz-ls-sm-m_10{letter-spacing:-10px!important}
3399
+ .brz-ed.brz-ed--tablet .brz-ls-sm-m_10_5{letter-spacing:-10.5px!important}
3400
+ .brz-ed.brz-ed--tablet .brz-ls-sm-m_9{letter-spacing:-9px!important}
3401
+ .brz-ed.brz-ed--tablet .brz-ls-sm-m_9_5{letter-spacing:-9.5px!important}
3402
+ .brz-ed.brz-ed--tablet .brz-ls-sm-m_8{letter-spacing:-8px!important}
3403
+ .brz-ed.brz-ed--tablet .brz-ls-sm-m_8_5{letter-spacing:-8.5px!important}
3404
+ .brz-ed.brz-ed--tablet .brz-ls-sm-m_7{letter-spacing:-7px!important}
3405
+ .brz-ed.brz-ed--tablet .brz-ls-sm-m_7_5{letter-spacing:-7.5px!important}
3406
+ .brz-ed.brz-ed--tablet .brz-ls-sm-m_6{letter-spacing:-6px!important}
3407
+ .brz-ed.brz-ed--tablet .brz-ls-sm-m_6_5{letter-spacing:-6.5px!important}
3408
+ .brz-ed.brz-ed--tablet .brz-ls-sm-m_5{letter-spacing:-5px!important}
3409
+ .brz-ed.brz-ed--tablet .brz-ls-sm-m_5_5{letter-spacing:-5.5px!important}
3410
+ .brz-ed.brz-ed--tablet .brz-ls-sm-m_4{letter-spacing:-4px!important}
3411
+ .brz-ed.brz-ed--tablet .brz-ls-sm-m_4_5{letter-spacing:-4.5px!important}
3412
+ .brz-ed.brz-ed--tablet .brz-ls-sm-m_3{letter-spacing:-3px!important}
3413
+ .brz-ed.brz-ed--tablet .brz-ls-sm-m_3_5{letter-spacing:-3.5px!important}
3414
+ .brz-ed.brz-ed--tablet .brz-ls-sm-m_2{letter-spacing:-2px!important}
3415
+ .brz-ed.brz-ed--tablet .brz-ls-sm-m_2_5{letter-spacing:-2.5px!important}
3416
+ .brz-ed.brz-ed--tablet .brz-ls-sm-m_1{letter-spacing:-1px!important}
3417
+ .brz-ed.brz-ed--tablet .brz-ls-sm-m_1_5{letter-spacing:-1.5px!important}
3418
+ .brz-ed.brz-ed--tablet .brz-ls-sm-m_0{letter-spacing:0!important}
3419
+ .brz-ed.brz-ed--tablet .brz-ls-sm-m_0_5{letter-spacing:-.5px!important}
3420
+ .brz-ed.brz-ed--tablet .brz-ls-sm-0{letter-spacing:0!important}
3421
+ .brz-ed.brz-ed--tablet .brz-ls-sm-0_5{letter-spacing:.5px!important}
3422
+ .brz-ed.brz-ed--tablet .brz-ls-sm-1{letter-spacing:1px!important}
3423
+ .brz-ed.brz-ed--tablet .brz-ls-sm-1_5{letter-spacing:1.5px!important}
3424
+ .brz-ed.brz-ed--tablet .brz-ls-sm-2{letter-spacing:2px!important}
3425
+ .brz-ed.brz-ed--tablet .brz-ls-sm-2_5{letter-spacing:2.5px!important}
3426
+ .brz-ed.brz-ed--tablet .brz-ls-sm-3{letter-spacing:3px!important}
3427
+ .brz-ed.brz-ed--tablet .brz-ls-sm-3_5{letter-spacing:3.5px!important}
3428
+ .brz-ed.brz-ed--tablet .brz-ls-sm-4{letter-spacing:4px!important}
3429
+ .brz-ed.brz-ed--tablet .brz-ls-sm-4_5{letter-spacing:4.5px!important}
3430
+ .brz-ed.brz-ed--tablet .brz-ls-sm-5{letter-spacing:5px!important}
3431
+ .brz-ed.brz-ed--tablet .brz-ls-sm-5_5{letter-spacing:5.5px!important}
3432
+ .brz-ed.brz-ed--tablet .brz-ls-sm-6{letter-spacing:6px!important}
3433
+ .brz-ed.brz-ed--tablet .brz-ls-sm-6_5{letter-spacing:6.5px!important}
3434
+ .brz-ed.brz-ed--tablet .brz-ls-sm-7{letter-spacing:7px!important}
3435
+ .brz-ed.brz-ed--tablet .brz-ls-sm-7_5{letter-spacing:7.5px!important}
3436
+ .brz-ed.brz-ed--tablet .brz-ls-sm-8{letter-spacing:8px!important}
3437
+ .brz-ed.brz-ed--tablet .brz-ls-sm-8_5{letter-spacing:8.5px!important}
3438
+ .brz-ed.brz-ed--tablet .brz-ls-sm-9{letter-spacing:9px!important}
3439
+ .brz-ed.brz-ed--tablet .brz-ls-sm-9_5{letter-spacing:9.5px!important}
3440
+ .brz-ed.brz-ed--tablet .brz-ls-sm-10{letter-spacing:10px!important}
3441
+ .brz-ed.brz-ed--tablet .brz-ls-sm-10_5{letter-spacing:10.5px!important}
3442
+ .brz-ed.brz-ed--tablet .brz-ls-sm-11{letter-spacing:11px!important}
3443
+ .brz-ed.brz-ed--tablet .brz-ls-sm-11_5{letter-spacing:11.5px!important}
3444
+ .brz-ed.brz-ed--tablet .brz-ls-sm-12{letter-spacing:12px!important}
3445
+ .brz-ed.brz-ed--tablet .brz-ls-sm-12_5{letter-spacing:12.5px!important}
3446
+ .brz-ed.brz-ed--tablet .brz-ls-sm-13{letter-spacing:13px!important}
3447
+ .brz-ed.brz-ed--tablet .brz-ls-sm-13_5{letter-spacing:13.5px!important}
3448
+ .brz-ed.brz-ed--tablet .brz-ls-sm-14{letter-spacing:14px!important}
3449
+ .brz-ed.brz-ed--tablet .brz-ls-sm-14_5{letter-spacing:14.5px!important}
3450
+ .brz-ed.brz-ed--tablet .brz-ls-sm-15{letter-spacing:15px!important}
3451
+ .brz-ed.brz-ed--tablet .brz-ls-sm-15_5{letter-spacing:15.5px!important}
3452
+ .brz-ed.brz-ed--tablet .brz-ls-sm-16{letter-spacing:16px!important}
3453
+ .brz-ed.brz-ed--tablet .brz-ls-sm-16_5{letter-spacing:16.5px!important}
3454
+ .brz-ed.brz-ed--tablet .brz-ls-sm-17{letter-spacing:17px!important}
3455
+ .brz-ed.brz-ed--tablet .brz-ls-sm-17_5{letter-spacing:17.5px!important}
3456
+ .brz-ed.brz-ed--tablet .brz-ls-sm-18{letter-spacing:18px!important}
3457
+ .brz-ed.brz-ed--tablet .brz-ls-sm-18_5{letter-spacing:18.5px!important}
3458
+ .brz-ed.brz-ed--tablet .brz-ls-sm-19{letter-spacing:19px!important}
3459
+ .brz-ed.brz-ed--tablet .brz-ls-sm-19_5{letter-spacing:19.5px!important}
3460
+ .brz-ed.brz-ed--tablet .brz-ls-sm-20{letter-spacing:20px!important}
3461
+ .brz-ed.brz-ed--tablet .brz-ls-sm-20_5{letter-spacing:20.5px!important}
3462
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-6{font-size:6px!important}
3463
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-7{font-size:7px!important}
3464
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-8{font-size:8px!important}
3465
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-9{font-size:9px!important}
3466
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-10{font-size:10px!important}
3467
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-11{font-size:11px!important}
3468
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-12{font-size:12px!important}
3469
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-13{font-size:13px!important}
3470
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-14{font-size:14px!important}
3471
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-15{font-size:15px!important}
3472
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-16{font-size:16px!important}
3473
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-17{font-size:17px!important}
3474
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-18{font-size:18px!important}
3475
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-19{font-size:19px!important}
3476
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-20{font-size:20px!important}
3477
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-21{font-size:21px!important}
3478
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-22{font-size:22px!important}
3479
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-23{font-size:23px!important}
3480
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-24{font-size:24px!important}
3481
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-25{font-size:25px!important}
3482
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-26{font-size:26px!important}
3483
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-27{font-size:27px!important}
3484
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-28{font-size:28px!important}
3485
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-29{font-size:29px!important}
3486
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-30{font-size:30px!important}
3487
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-31{font-size:31px!important}
3488
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-32{font-size:32px!important}
3489
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-33{font-size:33px!important}
3490
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-34{font-size:34px!important}
3491
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-35{font-size:35px!important}
3492
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-36{font-size:36px!important}
3493
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-37{font-size:37px!important}
3494
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-38{font-size:38px!important}
3495
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-39{font-size:39px!important}
3496
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-40{font-size:40px!important}
3497
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-41{font-size:41px!important}
3498
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-42{font-size:42px!important}
3499
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-43{font-size:43px!important}
3500
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-44{font-size:44px!important}
3501
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-45{font-size:45px!important}
3502
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-46{font-size:46px!important}
3503
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-47{font-size:47px!important}
3504
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-48{font-size:48px!important}
3505
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-49{font-size:49px!important}
3506
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-50{font-size:50px!important}
3507
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-51{font-size:51px!important}
3508
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-52{font-size:52px!important}
3509
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-53{font-size:53px!important}
3510
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-54{font-size:54px!important}
3511
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-55{font-size:55px!important}
3512
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-56{font-size:56px!important}
3513
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-57{font-size:57px!important}
3514
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-58{font-size:58px!important}
3515
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-59{font-size:59px!important}
3516
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-60{font-size:60px!important}
3517
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-61{font-size:61px!important}
3518
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-62{font-size:62px!important}
3519
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-63{font-size:63px!important}
3520
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-64{font-size:64px!important}
3521
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-65{font-size:65px!important}
3522
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-66{font-size:66px!important}
3523
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-67{font-size:67px!important}
3524
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-68{font-size:68px!important}
3525
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-69{font-size:69px!important}
3526
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-70{font-size:70px!important}
3527
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-71{font-size:71px!important}
3528
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-72{font-size:72px!important}
3529
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-73{font-size:73px!important}
3530
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-74{font-size:74px!important}
3531
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-75{font-size:75px!important}
3532
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-76{font-size:76px!important}
3533
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-77{font-size:77px!important}
3534
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-78{font-size:78px!important}
3535
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-79{font-size:79px!important}
3536
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-80{font-size:80px!important}
3537
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-81{font-size:81px!important}
3538
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-82{font-size:82px!important}
3539
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-83{font-size:83px!important}
3540
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-84{font-size:84px!important}
3541
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-85{font-size:85px!important}
3542
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-86{font-size:86px!important}
3543
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-87{font-size:87px!important}
3544
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-88{font-size:88px!important}
3545
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-89{font-size:89px!important}
3546
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-90{font-size:90px!important}
3547
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-91{font-size:91px!important}
3548
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-92{font-size:92px!important}
3549
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-93{font-size:93px!important}
3550
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-94{font-size:94px!important}
3551
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-95{font-size:95px!important}
3552
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-96{font-size:96px!important}
3553
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-97{font-size:97px!important}
3554
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-98{font-size:98px!important}
3555
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-99{font-size:99px!important}
3556
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-100{font-size:100px!important}
3557
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-101{font-size:101px!important}
3558
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-102{font-size:102px!important}
3559
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-103{font-size:103px!important}
3560
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-104{font-size:104px!important}
3561
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-105{font-size:105px!important}
3562
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-106{font-size:106px!important}
3563
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-107{font-size:107px!important}
3564
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-108{font-size:108px!important}
3565
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-109{font-size:109px!important}
3566
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-110{font-size:110px!important}
3567
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-111{font-size:111px!important}
3568
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-112{font-size:112px!important}
3569
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-113{font-size:113px!important}
3570
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-114{font-size:114px!important}
3571
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-115{font-size:115px!important}
3572
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-116{font-size:116px!important}
3573
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-117{font-size:117px!important}
3574
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-118{font-size:118px!important}
3575
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-119{font-size:119px!important}
3576
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-120{font-size:120px!important}
3577
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-121{font-size:121px!important}
3578
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-122{font-size:122px!important}
3579
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-123{font-size:123px!important}
3580
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-124{font-size:124px!important}
3581
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-125{font-size:125px!important}
3582
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-126{font-size:126px!important}
3583
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-127{font-size:127px!important}
3584
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-128{font-size:128px!important}
3585
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-129{font-size:129px!important}
3586
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-130{font-size:130px!important}
3587
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-131{font-size:131px!important}
3588
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-132{font-size:132px!important}
3589
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-133{font-size:133px!important}
3590
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-134{font-size:134px!important}
3591
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-135{font-size:135px!important}
3592
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-136{font-size:136px!important}
3593
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-137{font-size:137px!important}
3594
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-138{font-size:138px!important}
3595
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-139{font-size:139px!important}
3596
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-140{font-size:140px!important}
3597
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-141{font-size:141px!important}
3598
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-142{font-size:142px!important}
3599
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-143{font-size:143px!important}
3600
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-144{font-size:144px!important}
3601
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-145{font-size:145px!important}
3602
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-146{font-size:146px!important}
3603
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-147{font-size:147px!important}
3604
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-148{font-size:148px!important}
3605
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-149{font-size:149px!important}
3606
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-150{font-size:150px!important}
3607
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-151{font-size:151px!important}
3608
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-152{font-size:152px!important}
3609
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-153{font-size:153px!important}
3610
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-154{font-size:154px!important}
3611
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-155{font-size:155px!important}
3612
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-156{font-size:156px!important}
3613
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-157{font-size:157px!important}
3614
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-158{font-size:158px!important}
3615
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-159{font-size:159px!important}
3616
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-160{font-size:160px!important}
3617
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-161{font-size:161px!important}
3618
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-162{font-size:162px!important}
3619
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-163{font-size:163px!important}
3620
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-164{font-size:164px!important}
3621
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-165{font-size:165px!important}
3622
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-166{font-size:166px!important}
3623
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-167{font-size:167px!important}
3624
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-168{font-size:168px!important}
3625
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-169{font-size:169px!important}
3626
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-170{font-size:170px!important}
3627
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-171{font-size:171px!important}
3628
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-172{font-size:172px!important}
3629
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-173{font-size:173px!important}
3630
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-174{font-size:174px!important}
3631
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-175{font-size:175px!important}
3632
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-176{font-size:176px!important}
3633
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-177{font-size:177px!important}
3634
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-178{font-size:178px!important}
3635
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-179{font-size:179px!important}
3636
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-180{font-size:180px!important}
3637
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-181{font-size:181px!important}
3638
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-182{font-size:182px!important}
3639
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-183{font-size:183px!important}
3640
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-184{font-size:184px!important}
3641
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-185{font-size:185px!important}
3642
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-186{font-size:186px!important}
3643
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-187{font-size:187px!important}
3644
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-188{font-size:188px!important}
3645
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-189{font-size:189px!important}
3646
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-190{font-size:190px!important}
3647
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-191{font-size:191px!important}
3648
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-192{font-size:192px!important}
3649
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-193{font-size:193px!important}
3650
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-194{font-size:194px!important}
3651
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-195{font-size:195px!important}
3652
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-196{font-size:196px!important}
3653
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-197{font-size:197px!important}
3654
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-198{font-size:198px!important}
3655
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-199{font-size:199px!important}
3656
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-200{font-size:200px!important}
3657
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-201{font-size:201px!important}
3658
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-202{font-size:202px!important}
3659
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-203{font-size:203px!important}
3660
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-204{font-size:204px!important}
3661
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-205{font-size:205px!important}
3662
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-206{font-size:206px!important}
3663
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-207{font-size:207px!important}
3664
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-208{font-size:208px!important}
3665
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-209{font-size:209px!important}
3666
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-210{font-size:210px!important}
3667
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-211{font-size:211px!important}
3668
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-212{font-size:212px!important}
3669
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-213{font-size:213px!important}
3670
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-214{font-size:214px!important}
3671
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-215{font-size:215px!important}
3672
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-216{font-size:216px!important}
3673
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-217{font-size:217px!important}
3674
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-218{font-size:218px!important}
3675
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-219{font-size:219px!important}
3676
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-220{font-size:220px!important}
3677
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-221{font-size:221px!important}
3678
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-222{font-size:222px!important}
3679
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-223{font-size:223px!important}
3680
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-224{font-size:224px!important}
3681
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-225{font-size:225px!important}
3682
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-226{font-size:226px!important}
3683
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-227{font-size:227px!important}
3684
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-228{font-size:228px!important}
3685
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-229{font-size:229px!important}
3686
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-230{font-size:230px!important}
3687
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-231{font-size:231px!important}
3688
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-232{font-size:232px!important}
3689
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-233{font-size:233px!important}
3690
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-234{font-size:234px!important}
3691
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-235{font-size:235px!important}
3692
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-236{font-size:236px!important}
3693
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-237{font-size:237px!important}
3694
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-238{font-size:238px!important}
3695
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-239{font-size:239px!important}
3696
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-240{font-size:240px!important}
3697
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-241{font-size:241px!important}
3698
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-242{font-size:242px!important}
3699
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-243{font-size:243px!important}
3700
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-244{font-size:244px!important}
3701
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-245{font-size:245px!important}
3702
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-246{font-size:246px!important}
3703
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-247{font-size:247px!important}
3704
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-248{font-size:248px!important}
3705
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-249{font-size:249px!important}
3706
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-250{font-size:250px!important}
3707
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-251{font-size:251px!important}
3708
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-252{font-size:252px!important}
3709
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-253{font-size:253px!important}
3710
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-254{font-size:254px!important}
3711
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-255{font-size:255px!important}
3712
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-256{font-size:256px!important}
3713
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-257{font-size:257px!important}
3714
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-258{font-size:258px!important}
3715
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-259{font-size:259px!important}
3716
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-260{font-size:260px!important}
3717
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-261{font-size:261px!important}
3718
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-262{font-size:262px!important}
3719
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-263{font-size:263px!important}
3720
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-264{font-size:264px!important}
3721
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-265{font-size:265px!important}
3722
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-266{font-size:266px!important}
3723
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-267{font-size:267px!important}
3724
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-268{font-size:268px!important}
3725
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-269{font-size:269px!important}
3726
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-270{font-size:270px!important}
3727
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-271{font-size:271px!important}
3728
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-272{font-size:272px!important}
3729
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-273{font-size:273px!important}
3730
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-274{font-size:274px!important}
3731
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-275{font-size:275px!important}
3732
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-276{font-size:276px!important}
3733
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-277{font-size:277px!important}
3734
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-278{font-size:278px!important}
3735
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-279{font-size:279px!important}
3736
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-280{font-size:280px!important}
3737
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-281{font-size:281px!important}
3738
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-282{font-size:282px!important}
3739
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-283{font-size:283px!important}
3740
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-284{font-size:284px!important}
3741
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-285{font-size:285px!important}
3742
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-286{font-size:286px!important}
3743
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-287{font-size:287px!important}
3744
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-288{font-size:288px!important}
3745
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-289{font-size:289px!important}
3746
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-290{font-size:290px!important}
3747
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-291{font-size:291px!important}
3748
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-292{font-size:292px!important}
3749
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-293{font-size:293px!important}
3750
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-294{font-size:294px!important}
3751
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-295{font-size:295px!important}
3752
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-296{font-size:296px!important}
3753
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-297{font-size:297px!important}
3754
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-298{font-size:298px!important}
3755
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-299{font-size:299px!important}
3756
+ .brz-ed.brz-ed--tablet .brz-fs-sm-im-300{font-size:300px!important}
3757
+ .brz-ed.brz-ed--tablet .brz-lh-sm-im-1{line-height:1em!important}
3758
+ .brz-ed.brz-ed--tablet .brz-lh-sm-im-1_1{line-height:1.1em!important}
3759
+ .brz-ed.brz-ed--tablet .brz-lh-sm-im-1_2{line-height:1.2em!important}
3760
+ .brz-ed.brz-ed--tablet .brz-lh-sm-im-1_3{line-height:1.3em!important}
3761
+ .brz-ed.brz-ed--tablet .brz-lh-sm-im-1_4{line-height:1.4em!important}
3762
+ .brz-ed.brz-ed--tablet .brz-lh-sm-im-1_5{line-height:1.5em!important}
3763
+ .brz-ed.brz-ed--tablet .brz-lh-sm-im-1_6{line-height:1.6em!important}
3764
+ .brz-ed.brz-ed--tablet .brz-lh-sm-im-1_7{line-height:1.7em!important}
3765
+ .brz-ed.brz-ed--tablet .brz-lh-sm-im-1_8{line-height:1.8em!important}
3766
+ .brz-ed.brz-ed--tablet .brz-lh-sm-im-1_9{line-height:1.9em!important}
3767
+ .brz-ed.brz-ed--tablet .brz-lh-sm-im-2{line-height:2em!important}
3768
+ .brz-ed.brz-ed--tablet .brz-lh-sm-im-2_1{line-height:2.1em!important}
3769
+ .brz-ed.brz-ed--tablet .brz-lh-sm-im-2_2{line-height:2.2em!important}
3770
+ .brz-ed.brz-ed--tablet .brz-lh-sm-im-2_3{line-height:2.3em!important}
3771
+ .brz-ed.brz-ed--tablet .brz-lh-sm-im-2_4{line-height:2.4em!important}
3772
+ .brz-ed.brz-ed--tablet .brz-lh-sm-im-2_5{line-height:2.5em!important}
3773
+ .brz-ed.brz-ed--tablet .brz-lh-sm-im-2_6{line-height:2.6em!important}
3774
+ .brz-ed.brz-ed--tablet .brz-lh-sm-im-2_7{line-height:2.7em!important}
3775
+ .brz-ed.brz-ed--tablet .brz-lh-sm-im-2_8{line-height:2.8em!important}
3776
+ .brz-ed.brz-ed--tablet .brz-lh-sm-im-2_9{line-height:2.9em!important}
3777
+ .brz-ed.brz-ed--tablet .brz-lh-sm-im-3{line-height:3em!important}
3778
+ .brz-ed.brz-ed--tablet .brz-lh-sm-im-3_1{line-height:3.1em!important}
3779
+ .brz-ed.brz-ed--tablet .brz-lh-sm-im-3_2{line-height:3.2em!important}
3780
+ .brz-ed.brz-ed--tablet .brz-lh-sm-im-3_3{line-height:3.3em!important}
3781
+ .brz-ed.brz-ed--tablet .brz-lh-sm-im-3_4{line-height:3.4em!important}
3782
+ .brz-ed.brz-ed--tablet .brz-lh-sm-im-3_5{line-height:3.5em!important}
3783
+ .brz-ed.brz-ed--tablet .brz-lh-sm-im-3_6{line-height:3.6em!important}
3784
+ .brz-ed.brz-ed--tablet .brz-lh-sm-im-3_7{line-height:3.7em!important}
3785
+ .brz-ed.brz-ed--tablet .brz-lh-sm-im-3_8{line-height:3.8em!important}
3786
+ .brz-ed.brz-ed--tablet .brz-lh-sm-im-3_9{line-height:3.9em!important}
3787
+ .brz-ed.brz-ed--tablet .brz-lh-sm-im-4{line-height:4em!important}
3788
+ .brz-ed.brz-ed--tablet .brz-lh-sm-im-4_1{line-height:4.1em!important}
3789
+ .brz-ed.brz-ed--tablet .brz-lh-sm-im-4_2{line-height:4.2em!important}
3790
+ .brz-ed.brz-ed--tablet .brz-lh-sm-im-4_3{line-height:4.3em!important}
3791
+ .brz-ed.brz-ed--tablet .brz-lh-sm-im-4_4{line-height:4.4em!important}
3792
+ .brz-ed.brz-ed--tablet .brz-lh-sm-im-4_5{line-height:4.5em!important}
3793
+ .brz-ed.brz-ed--tablet .brz-lh-sm-im-4_6{line-height:4.6em!important}
3794
+ .brz-ed.brz-ed--tablet .brz-lh-sm-im-4_7{line-height:4.7em!important}
3795
+ .brz-ed.brz-ed--tablet .brz-lh-sm-im-4_8{line-height:4.8em!important}
3796
+ .brz-ed.brz-ed--tablet .brz-lh-sm-im-4_9{line-height:4.9em!important}
3797
+ .brz-ed.brz-ed--tablet .brz-lh-sm-im-5{line-height:5em!important}
3798
+ .brz-ed.brz-ed--tablet .brz-lh-sm-im-5_1{line-height:5.1em!important}
3799
+ .brz-ed.brz-ed--tablet .brz-lh-sm-im-5_2{line-height:5.2em!important}
3800
+ .brz-ed.brz-ed--tablet .brz-lh-sm-im-5_3{line-height:5.3em!important}
3801
+ .brz-ed.brz-ed--tablet .brz-lh-sm-im-5_4{line-height:5.4em!important}
3802
+ .brz-ed.brz-ed--tablet .brz-lh-sm-im-5_5{line-height:5.5em!important}
3803
+ .brz-ed.brz-ed--tablet .brz-lh-sm-im-5_6{line-height:5.6em!important}
3804
+ .brz-ed.brz-ed--tablet .brz-lh-sm-im-5_7{line-height:5.7em!important}
3805
+ .brz-ed.brz-ed--tablet .brz-lh-sm-im-5_8{line-height:5.8em!important}
3806
+ .brz-ed.brz-ed--tablet .brz-lh-sm-im-5_9{line-height:5.9em!important}
3807
+ .brz-ed.brz-ed--tablet .brz-fw-sm-im-100{font-weight:100!important}
3808
+ .brz-ed.brz-ed--tablet .brz-fw-sm-im-200{font-weight:200!important}
3809
+ .brz-ed.brz-ed--tablet .brz-fw-sm-im-300{font-weight:300!important}
3810
+ .brz-ed.brz-ed--tablet .brz-fw-sm-im-400{font-weight:400!important}
3811
+ .brz-ed.brz-ed--tablet .brz-fw-sm-im-500{font-weight:500!important}
3812
+ .brz-ed.brz-ed--tablet .brz-fw-sm-im-600{font-weight:600!important}
3813
+ .brz-ed.brz-ed--tablet .brz-fw-sm-im-700{font-weight:700!important}
3814
+ .brz-ed.brz-ed--tablet .brz-fw-sm-im-800{font-weight:800!important}
3815
+ .brz-ed.brz-ed--tablet .brz-fw-sm-im-900{font-weight:900!important}
3816
+ .brz-ed.brz-ed--tablet .brz-fw-sm-im-1000{font-weight:1000!important}
3817
+ .brz-ed.brz-ed--tablet .brz-fw-sm-im-1100{font-weight:1100!important}
3818
+ .brz-ed.brz-ed--tablet .brz-fw-sm-im-1200{font-weight:1200!important}
3819
+ .brz-ed.brz-ed--tablet .brz-fw-sm-im-1300{font-weight:1300!important}
3820
+ .brz-ed.brz-ed--tablet .brz-fw-sm-im-1400{font-weight:1400!important}
3821
+ .brz-ed.brz-ed--tablet .brz-fw-sm-im-1500{font-weight:1500!important}
3822
+ .brz-ed.brz-ed--tablet .brz-fw-sm-im-1600{font-weight:1600!important}
3823
+ .brz-ed.brz-ed--tablet .brz-fw-sm-im-1700{font-weight:1700!important}
3824
+ .brz-ed.brz-ed--tablet .brz-fw-sm-im-1800{font-weight:1800!important}
3825
+ .brz-ed.brz-ed--tablet .brz-fw-sm-im-1900{font-weight:1900!important}
3826
+ .brz-ed.brz-ed--tablet .brz-fw-sm-im-2000{font-weight:2000!important}
3827
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_20{letter-spacing:-20px!important}
3828
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_20_5{letter-spacing:-20.5px!important}
3829
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_19{letter-spacing:-19px!important}
3830
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_19_5{letter-spacing:-19.5px!important}
3831
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_18{letter-spacing:-18px!important}
3832
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_18_5{letter-spacing:-18.5px!important}
3833
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_17{letter-spacing:-17px!important}
3834
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_17_5{letter-spacing:-17.5px!important}
3835
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_16{letter-spacing:-16px!important}
3836
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_16_5{letter-spacing:-16.5px!important}
3837
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_15{letter-spacing:-15px!important}
3838
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_15_5{letter-spacing:-15.5px!important}
3839
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_14{letter-spacing:-14px!important}
3840
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_14_5{letter-spacing:-14.5px!important}
3841
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_13{letter-spacing:-13px!important}
3842
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_13_5{letter-spacing:-13.5px!important}
3843
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_12{letter-spacing:-12px!important}
3844
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_12_5{letter-spacing:-12.5px!important}
3845
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_11{letter-spacing:-11px!important}
3846
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_11_5{letter-spacing:-11.5px!important}
3847
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_10{letter-spacing:-10px!important}
3848
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_10_5{letter-spacing:-10.5px!important}
3849
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_9{letter-spacing:-9px!important}
3850
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_9_5{letter-spacing:-9.5px!important}
3851
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_8{letter-spacing:-8px!important}
3852
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_8_5{letter-spacing:-8.5px!important}
3853
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_7{letter-spacing:-7px!important}
3854
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_7_5{letter-spacing:-7.5px!important}
3855
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_6{letter-spacing:-6px!important}
3856
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_6_5{letter-spacing:-6.5px!important}
3857
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_5{letter-spacing:-5px!important}
3858
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_5_5{letter-spacing:-5.5px!important}
3859
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_4{letter-spacing:-4px!important}
3860
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_4_5{letter-spacing:-4.5px!important}
3861
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_3{letter-spacing:-3px!important}
3862
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_3_5{letter-spacing:-3.5px!important}
3863
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_2{letter-spacing:-2px!important}
3864
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_2_5{letter-spacing:-2.5px!important}
3865
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_1{letter-spacing:-1px!important}
3866
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_1_5{letter-spacing:-1.5px!important}
3867
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_0{letter-spacing:0!important}
3868
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-m_0_5{letter-spacing:-.5px!important}
3869
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-0{letter-spacing:0!important}
3870
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-0_5{letter-spacing:.5px!important}
3871
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-1{letter-spacing:1px!important}
3872
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-1_5{letter-spacing:1.5px!important}
3873
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-2{letter-spacing:2px!important}
3874
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-2_5{letter-spacing:2.5px!important}
3875
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-3{letter-spacing:3px!important}
3876
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-3_5{letter-spacing:3.5px!important}
3877
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-4{letter-spacing:4px!important}
3878
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-4_5{letter-spacing:4.5px!important}
3879
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-5{letter-spacing:5px!important}
3880
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-5_5{letter-spacing:5.5px!important}
3881
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-6{letter-spacing:6px!important}
3882
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-6_5{letter-spacing:6.5px!important}
3883
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-7{letter-spacing:7px!important}
3884
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-7_5{letter-spacing:7.5px!important}
3885
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-8{letter-spacing:8px!important}
3886
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-8_5{letter-spacing:8.5px!important}
3887
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-9{letter-spacing:9px!important}
3888
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-9_5{letter-spacing:9.5px!important}
3889
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-10{letter-spacing:10px!important}
3890
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-10_5{letter-spacing:10.5px!important}
3891
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-11{letter-spacing:11px!important}
3892
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-11_5{letter-spacing:11.5px!important}
3893
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-12{letter-spacing:12px!important}
3894
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-12_5{letter-spacing:12.5px!important}
3895
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-13{letter-spacing:13px!important}
3896
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-13_5{letter-spacing:13.5px!important}
3897
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-14{letter-spacing:14px!important}
3898
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-14_5{letter-spacing:14.5px!important}
3899
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-15{letter-spacing:15px!important}
3900
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-15_5{letter-spacing:15.5px!important}
3901
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-16{letter-spacing:16px!important}
3902
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-16_5{letter-spacing:16.5px!important}
3903
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-17{letter-spacing:17px!important}
3904
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-17_5{letter-spacing:17.5px!important}
3905
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-18{letter-spacing:18px!important}
3906
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-18_5{letter-spacing:18.5px!important}
3907
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-19{letter-spacing:19px!important}
3908
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-19_5{letter-spacing:19.5px!important}
3909
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-20{letter-spacing:20px!important}
3910
+ .brz-ed.brz-ed--tablet .brz-ls-sm-im-20_5{letter-spacing:20.5px!important}
3911
+ .brz-ed.brz-ed--mobile .brz-fs-xs-6{font-size:6px!important}
3912
+ .brz-ed.brz-ed--mobile .brz-fs-xs-7{font-size:7px!important}
3913
+ .brz-ed.brz-ed--mobile .brz-fs-xs-8{font-size:8px!important}
3914
+ .brz-ed.brz-ed--mobile .brz-fs-xs-9{font-size:9px!important}
3915
+ .brz-ed.brz-ed--mobile .brz-fs-xs-10{font-size:10px!important}
3916
+ .brz-ed.brz-ed--mobile .brz-fs-xs-11{font-size:11px!important}
3917
+ .brz-ed.brz-ed--mobile .brz-fs-xs-12{font-size:12px!important}
3918
+ .brz-ed.brz-ed--mobile .brz-fs-xs-13{font-size:13px!important}
3919
+ .brz-ed.brz-ed--mobile .brz-fs-xs-14{font-size:14px!important}
3920
+ .brz-ed.brz-ed--mobile .brz-fs-xs-15{font-size:15px!important}
3921
+ .brz-ed.brz-ed--mobile .brz-fs-xs-16{font-size:16px!important}
3922
+ .brz-ed.brz-ed--mobile .brz-fs-xs-17{font-size:17px!important}
3923
+ .brz-ed.brz-ed--mobile .brz-fs-xs-18{font-size:18px!important}
3924
+ .brz-ed.brz-ed--mobile .brz-fs-xs-19{font-size:19px!important}
3925
+ .brz-ed.brz-ed--mobile .brz-fs-xs-20{font-size:20px!important}
3926
+ .brz-ed.brz-ed--mobile .brz-fs-xs-21{font-size:21px!important}
3927
+ .brz-ed.brz-ed--mobile .brz-fs-xs-22{font-size:22px!important}
3928
+ .brz-ed.brz-ed--mobile .brz-fs-xs-23{font-size:23px!important}
3929
+ .brz-ed.brz-ed--mobile .brz-fs-xs-24{font-size:24px!important}
3930
+ .brz-ed.brz-ed--mobile .brz-fs-xs-25{font-size:25px!important}
3931
+ .brz-ed.brz-ed--mobile .brz-fs-xs-26{font-size:26px!important}
3932
+ .brz-ed.brz-ed--mobile .brz-fs-xs-27{font-size:27px!important}
3933
+ .brz-ed.brz-ed--mobile .brz-fs-xs-28{font-size:28px!important}
3934
+ .brz-ed.brz-ed--mobile .brz-fs-xs-29{font-size:29px!important}
3935
+ .brz-ed.brz-ed--mobile .brz-fs-xs-30{font-size:30px!important}
3936
+ .brz-ed.brz-ed--mobile .brz-fs-xs-31{font-size:31px!important}
3937
+ .brz-ed.brz-ed--mobile .brz-fs-xs-32{font-size:32px!important}
3938
+ .brz-ed.brz-ed--mobile .brz-fs-xs-33{font-size:33px!important}
3939
+ .brz-ed.brz-ed--mobile .brz-fs-xs-34{font-size:34px!important}
3940
+ .brz-ed.brz-ed--mobile .brz-fs-xs-35{font-size:35px!important}
3941
+ .brz-ed.brz-ed--mobile .brz-fs-xs-36{font-size:36px!important}
3942
+ .brz-ed.brz-ed--mobile .brz-fs-xs-37{font-size:37px!important}
3943
+ .brz-ed.brz-ed--mobile .brz-fs-xs-38{font-size:38px!important}
3944
+ .brz-ed.brz-ed--mobile .brz-fs-xs-39{font-size:39px!important}
3945
+ .brz-ed.brz-ed--mobile .brz-fs-xs-40{font-size:40px!important}
3946
+ .brz-ed.brz-ed--mobile .brz-fs-xs-41{font-size:41px!important}
3947
+ .brz-ed.brz-ed--mobile .brz-fs-xs-42{font-size:42px!important}
3948
+ .brz-ed.brz-ed--mobile .brz-fs-xs-43{font-size:43px!important}
3949
+ .brz-ed.brz-ed--mobile .brz-fs-xs-44{font-size:44px!important}
3950
+ .brz-ed.brz-ed--mobile .brz-fs-xs-45{font-size:45px!important}
3951
+ .brz-ed.brz-ed--mobile .brz-fs-xs-46{font-size:46px!important}
3952
+ .brz-ed.brz-ed--mobile .brz-fs-xs-47{font-size:47px!important}
3953
+ .brz-ed.brz-ed--mobile .brz-fs-xs-48{font-size:48px!important}
3954
+ .brz-ed.brz-ed--mobile .brz-fs-xs-49{font-size:49px!important}
3955
+ .brz-ed.brz-ed--mobile .brz-fs-xs-50{font-size:50px!important}
3956
+ .brz-ed.brz-ed--mobile .brz-fs-xs-51{font-size:51px!important}
3957
+ .brz-ed.brz-ed--mobile .brz-fs-xs-52{font-size:52px!important}
3958
+ .brz-ed.brz-ed--mobile .brz-fs-xs-53{font-size:53px!important}
3959
+ .brz-ed.brz-ed--mobile .brz-fs-xs-54{font-size:54px!important}
3960
+ .brz-ed.brz-ed--mobile .brz-fs-xs-55{font-size:55px!important}
3961
+ .brz-ed.brz-ed--mobile .brz-fs-xs-56{font-size:56px!important}
3962
+ .brz-ed.brz-ed--mobile .brz-fs-xs-57{font-size:57px!important}
3963
+ .brz-ed.brz-ed--mobile .brz-fs-xs-58{font-size:58px!important}
3964
+ .brz-ed.brz-ed--mobile .brz-fs-xs-59{font-size:59px!important}
3965
+ .brz-ed.brz-ed--mobile .brz-fs-xs-60{font-size:60px!important}
3966
+ .brz-ed.brz-ed--mobile .brz-fs-xs-61{font-size:61px!important}
3967
+ .brz-ed.brz-ed--mobile .brz-fs-xs-62{font-size:62px!important}
3968
+ .brz-ed.brz-ed--mobile .brz-fs-xs-63{font-size:63px!important}
3969
+ .brz-ed.brz-ed--mobile .brz-fs-xs-64{font-size:64px!important}
3970
+ .brz-ed.brz-ed--mobile .brz-fs-xs-65{font-size:65px!important}
3971
+ .brz-ed.brz-ed--mobile .brz-fs-xs-66{font-size:66px!important}
3972
+ .brz-ed.brz-ed--mobile .brz-fs-xs-67{font-size:67px!important}
3973
+ .brz-ed.brz-ed--mobile .brz-fs-xs-68{font-size:68px!important}
3974
+ .brz-ed.brz-ed--mobile .brz-fs-xs-69{font-size:69px!important}
3975
+ .brz-ed.brz-ed--mobile .brz-fs-xs-70{font-size:70px!important}
3976
+ .brz-ed.brz-ed--mobile .brz-fs-xs-71{font-size:71px!important}
3977
+ .brz-ed.brz-ed--mobile .brz-fs-xs-72{font-size:72px!important}
3978
+ .brz-ed.brz-ed--mobile .brz-fs-xs-73{font-size:73px!important}
3979
+ .brz-ed.brz-ed--mobile .brz-fs-xs-74{font-size:74px!important}
3980
+ .brz-ed.brz-ed--mobile .brz-fs-xs-75{font-size:75px!important}
3981
+ .brz-ed.brz-ed--mobile .brz-fs-xs-76{font-size:76px!important}
3982
+ .brz-ed.brz-ed--mobile .brz-fs-xs-77{font-size:77px!important}
3983
+ .brz-ed.brz-ed--mobile .brz-fs-xs-78{font-size:78px!important}
3984
+ .brz-ed.brz-ed--mobile .brz-fs-xs-79{font-size:79px!important}
3985
+ .brz-ed.brz-ed--mobile .brz-fs-xs-80{font-size:80px!important}
3986
+ .brz-ed.brz-ed--mobile .brz-fs-xs-81{font-size:81px!important}
3987
+ .brz-ed.brz-ed--mobile .brz-fs-xs-82{font-size:82px!important}
3988
+ .brz-ed.brz-ed--mobile .brz-fs-xs-83{font-size:83px!important}
3989
+ .brz-ed.brz-ed--mobile .brz-fs-xs-84{font-size:84px!important}
3990
+ .brz-ed.brz-ed--mobile .brz-fs-xs-85{font-size:85px!important}
3991
+ .brz-ed.brz-ed--mobile .brz-fs-xs-86{font-size:86px!important}
3992
+ .brz-ed.brz-ed--mobile .brz-fs-xs-87{font-size:87px!important}
3993
+ .brz-ed.brz-ed--mobile .brz-fs-xs-88{font-size:88px!important}
3994
+ .brz-ed.brz-ed--mobile .brz-fs-xs-89{font-size:89px!important}
3995
+ .brz-ed.brz-ed--mobile .brz-fs-xs-90{font-size:90px!important}
3996
+ .brz-ed.brz-ed--mobile .brz-fs-xs-91{font-size:91px!important}
3997
+ .brz-ed.brz-ed--mobile .brz-fs-xs-92{font-size:92px!important}
3998
+ .brz-ed.brz-ed--mobile .brz-fs-xs-93{font-size:93px!important}
3999
+ .brz-ed.brz-ed--mobile .brz-fs-xs-94{font-size:94px!important}
4000
+ .brz-ed.brz-ed--mobile .brz-fs-xs-95{font-size:95px!important}
4001
+ .brz-ed.brz-ed--mobile .brz-fs-xs-96{font-size:96px!important}
4002
+ .brz-ed.brz-ed--mobile .brz-fs-xs-97{font-size:97px!important}
4003
+ .brz-ed.brz-ed--mobile .brz-fs-xs-98{font-size:98px!important}
4004
+ .brz-ed.brz-ed--mobile .brz-fs-xs-99{font-size:99px!important}
4005
+ .brz-ed.brz-ed--mobile .brz-fs-xs-100{font-size:100px!important}
4006
+ .brz-ed.brz-ed--mobile .brz-fs-xs-101{font-size:101px!important}
4007
+ .brz-ed.brz-ed--mobile .brz-fs-xs-102{font-size:102px!important}
4008
+ .brz-ed.brz-ed--mobile .brz-fs-xs-103{font-size:103px!important}
4009
+ .brz-ed.brz-ed--mobile .brz-fs-xs-104{font-size:104px!important}
4010
+ .brz-ed.brz-ed--mobile .brz-fs-xs-105{font-size:105px!important}
4011
+ .brz-ed.brz-ed--mobile .brz-fs-xs-106{font-size:106px!important}
4012
+ .brz-ed.brz-ed--mobile .brz-fs-xs-107{font-size:107px!important}
4013
+ .brz-ed.brz-ed--mobile .brz-fs-xs-108{font-size:108px!important}
4014
+ .brz-ed.brz-ed--mobile .brz-fs-xs-109{font-size:109px!important}
4015
+ .brz-ed.brz-ed--mobile .brz-fs-xs-110{font-size:110px!important}
4016
+ .brz-ed.brz-ed--mobile .brz-fs-xs-111{font-size:111px!important}
4017
+ .brz-ed.brz-ed--mobile .brz-fs-xs-112{font-size:112px!important}
4018
+ .brz-ed.brz-ed--mobile .brz-fs-xs-113{font-size:113px!important}
4019
+ .brz-ed.brz-ed--mobile .brz-fs-xs-114{font-size:114px!important}
4020
+ .brz-ed.brz-ed--mobile .brz-fs-xs-115{font-size:115px!important}
4021
+ .brz-ed.brz-ed--mobile .brz-fs-xs-116{font-size:116px!important}
4022
+ .brz-ed.brz-ed--mobile .brz-fs-xs-117{font-size:117px!important}
4023
+ .brz-ed.brz-ed--mobile .brz-fs-xs-118{font-size:118px!important}
4024
+ .brz-ed.brz-ed--mobile .brz-fs-xs-119{font-size:119px!important}
4025
+ .brz-ed.brz-ed--mobile .brz-fs-xs-120{font-size:120px!important}
4026
+ .brz-ed.brz-ed--mobile .brz-fs-xs-121{font-size:121px!important}
4027
+ .brz-ed.brz-ed--mobile .brz-fs-xs-122{font-size:122px!important}
4028
+ .brz-ed.brz-ed--mobile .brz-fs-xs-123{font-size:123px!important}
4029
+ .brz-ed.brz-ed--mobile .brz-fs-xs-124{font-size:124px!important}
4030
+ .brz-ed.brz-ed--mobile .brz-fs-xs-125{font-size:125px!important}
4031
+ .brz-ed.brz-ed--mobile .brz-fs-xs-126{font-size:126px!important}
4032
+ .brz-ed.brz-ed--mobile .brz-fs-xs-127{font-size:127px!important}
4033
+ .brz-ed.brz-ed--mobile .brz-fs-xs-128{font-size:128px!important}
4034
+ .brz-ed.brz-ed--mobile .brz-fs-xs-129{font-size:129px!important}
4035
+ .brz-ed.brz-ed--mobile .brz-fs-xs-130{font-size:130px!important}
4036
+ .brz-ed.brz-ed--mobile .brz-fs-xs-131{font-size:131px!important}
4037
+ .brz-ed.brz-ed--mobile .brz-fs-xs-132{font-size:132px!important}
4038
+ .brz-ed.brz-ed--mobile .brz-fs-xs-133{font-size:133px!important}
4039
+ .brz-ed.brz-ed--mobile .brz-fs-xs-134{font-size:134px!important}
4040
+ .brz-ed.brz-ed--mobile .brz-fs-xs-135{font-size:135px!important}
4041
+ .brz-ed.brz-ed--mobile .brz-fs-xs-136{font-size:136px!important}
4042
+ .brz-ed.brz-ed--mobile .brz-fs-xs-137{font-size:137px!important}
4043
+ .brz-ed.brz-ed--mobile .brz-fs-xs-138{font-size:138px!important}
4044
+ .brz-ed.brz-ed--mobile .brz-fs-xs-139{font-size:139px!important}
4045
+ .brz-ed.brz-ed--mobile .brz-fs-xs-140{font-size:140px!important}
4046
+ .brz-ed.brz-ed--mobile .brz-fs-xs-141{font-size:141px!important}
4047
+ .brz-ed.brz-ed--mobile .brz-fs-xs-142{font-size:142px!important}
4048
+ .brz-ed.brz-ed--mobile .brz-fs-xs-143{font-size:143px!important}
4049
+ .brz-ed.brz-ed--mobile .brz-fs-xs-144{font-size:144px!important}
4050
+ .brz-ed.brz-ed--mobile .brz-fs-xs-145{font-size:145px!important}
4051
+ .brz-ed.brz-ed--mobile .brz-fs-xs-146{font-size:146px!important}
4052
+ .brz-ed.brz-ed--mobile .brz-fs-xs-147{font-size:147px!important}
4053
+ .brz-ed.brz-ed--mobile .brz-fs-xs-148{font-size:148px!important}
4054
+ .brz-ed.brz-ed--mobile .brz-fs-xs-149{font-size:149px!important}
4055
+ .brz-ed.brz-ed--mobile .brz-fs-xs-150{font-size:150px!important}
4056
+ .brz-ed.brz-ed--mobile .brz-fs-xs-151{font-size:151px!important}
4057
+ .brz-ed.brz-ed--mobile .brz-fs-xs-152{font-size:152px!important}
4058
+ .brz-ed.brz-ed--mobile .brz-fs-xs-153{font-size:153px!important}
4059
+ .brz-ed.brz-ed--mobile .brz-fs-xs-154{font-size:154px!important}
4060
+ .brz-ed.brz-ed--mobile .brz-fs-xs-155{font-size:155px!important}
4061
+ .brz-ed.brz-ed--mobile .brz-fs-xs-156{font-size:156px!important}
4062
+ .brz-ed.brz-ed--mobile .brz-fs-xs-157{font-size:157px!important}
4063
+ .brz-ed.brz-ed--mobile .brz-fs-xs-158{font-size:158px!important}
4064
+ .brz-ed.brz-ed--mobile .brz-fs-xs-159{font-size:159px!important}
4065
+ .brz-ed.brz-ed--mobile .brz-fs-xs-160{font-size:160px!important}
4066
+ .brz-ed.brz-ed--mobile .brz-fs-xs-161{font-size:161px!important}
4067
+ .brz-ed.brz-ed--mobile .brz-fs-xs-162{font-size:162px!important}
4068
+ .brz-ed.brz-ed--mobile .brz-fs-xs-163{font-size:163px!important}
4069
+ .brz-ed.brz-ed--mobile .brz-fs-xs-164{font-size:164px!important}
4070
+ .brz-ed.brz-ed--mobile .brz-fs-xs-165{font-size:165px!important}
4071
+ .brz-ed.brz-ed--mobile .brz-fs-xs-166{font-size:166px!important}
4072
+ .brz-ed.brz-ed--mobile .brz-fs-xs-167{font-size:167px!important}
4073
+ .brz-ed.brz-ed--mobile .brz-fs-xs-168{font-size:168px!important}
4074
+ .brz-ed.brz-ed--mobile .brz-fs-xs-169{font-size:169px!important}
4075
+ .brz-ed.brz-ed--mobile .brz-fs-xs-170{font-size:170px!important}
4076
+ .brz-ed.brz-ed--mobile .brz-fs-xs-171{font-size:171px!important}
4077
+ .brz-ed.brz-ed--mobile .brz-fs-xs-172{font-size:172px!important}
4078
+ .brz-ed.brz-ed--mobile .brz-fs-xs-173{font-size:173px!important}
4079
+ .brz-ed.brz-ed--mobile .brz-fs-xs-174{font-size:174px!important}
4080
+ .brz-ed.brz-ed--mobile .brz-fs-xs-175{font-size:175px!important}
4081
+ .brz-ed.brz-ed--mobile .brz-fs-xs-176{font-size:176px!important}
4082
+ .brz-ed.brz-ed--mobile .brz-fs-xs-177{font-size:177px!important}
4083
+ .brz-ed.brz-ed--mobile .brz-fs-xs-178{font-size:178px!important}
4084
+ .brz-ed.brz-ed--mobile .brz-fs-xs-179{font-size:179px!important}
4085
+ .brz-ed.brz-ed--mobile .brz-fs-xs-180{font-size:180px!important}
4086
+ .brz-ed.brz-ed--mobile .brz-fs-xs-181{font-size:181px!important}
4087
+ .brz-ed.brz-ed--mobile .brz-fs-xs-182{font-size:182px!important}
4088
+ .brz-ed.brz-ed--mobile .brz-fs-xs-183{font-size:183px!important}
4089
+ .brz-ed.brz-ed--mobile .brz-fs-xs-184{font-size:184px!important}
4090
+ .brz-ed.brz-ed--mobile .brz-fs-xs-185{font-size:185px!important}
4091
+ .brz-ed.brz-ed--mobile .brz-fs-xs-186{font-size:186px!important}
4092
+ .brz-ed.brz-ed--mobile .brz-fs-xs-187{font-size:187px!important}
4093
+ .brz-ed.brz-ed--mobile .brz-fs-xs-188{font-size:188px!important}
4094
+ .brz-ed.brz-ed--mobile .brz-fs-xs-189{font-size:189px!important}
4095
+ .brz-ed.brz-ed--mobile .brz-fs-xs-190{font-size:190px!important}
4096
+ .brz-ed.brz-ed--mobile .brz-fs-xs-191{font-size:191px!important}
4097
+ .brz-ed.brz-ed--mobile .brz-fs-xs-192{font-size:192px!important}
4098
+ .brz-ed.brz-ed--mobile .brz-fs-xs-193{font-size:193px!important}
4099
+ .brz-ed.brz-ed--mobile .brz-fs-xs-194{font-size:194px!important}
4100
+ .brz-ed.brz-ed--mobile .brz-fs-xs-195{font-size:195px!important}
4101
+ .brz-ed.brz-ed--mobile .brz-fs-xs-196{font-size:196px!important}
4102
+ .brz-ed.brz-ed--mobile .brz-fs-xs-197{font-size:197px!important}
4103
+ .brz-ed.brz-ed--mobile .brz-fs-xs-198{font-size:198px!important}
4104
+ .brz-ed.brz-ed--mobile .brz-fs-xs-199{font-size:199px!important}
4105
+ .brz-ed.brz-ed--mobile .brz-fs-xs-200{font-size:200px!important}
4106
+ .brz-ed.brz-ed--mobile .brz-fs-xs-201{font-size:201px!important}
4107
+ .brz-ed.brz-ed--mobile .brz-fs-xs-202{font-size:202px!important}
4108
+ .brz-ed.brz-ed--mobile .brz-fs-xs-203{font-size:203px!important}
4109
+ .brz-ed.brz-ed--mobile .brz-fs-xs-204{font-size:204px!important}
4110
+ .brz-ed.brz-ed--mobile .brz-fs-xs-205{font-size:205px!important}
4111
+ .brz-ed.brz-ed--mobile .brz-fs-xs-206{font-size:206px!important}
4112
+ .brz-ed.brz-ed--mobile .brz-fs-xs-207{font-size:207px!important}
4113
+ .brz-ed.brz-ed--mobile .brz-fs-xs-208{font-size:208px!important}
4114
+ .brz-ed.brz-ed--mobile .brz-fs-xs-209{font-size:209px!important}
4115
+ .brz-ed.brz-ed--mobile .brz-fs-xs-210{font-size:210px!important}
4116
+ .brz-ed.brz-ed--mobile .brz-fs-xs-211{font-size:211px!important}
4117
+ .brz-ed.brz-ed--mobile .brz-fs-xs-212{font-size:212px!important}
4118
+ .brz-ed.brz-ed--mobile .brz-fs-xs-213{font-size:213px!important}
4119
+ .brz-ed.brz-ed--mobile .brz-fs-xs-214{font-size:214px!important}
4120
+ .brz-ed.brz-ed--mobile .brz-fs-xs-215{font-size:215px!important}
4121
+ .brz-ed.brz-ed--mobile .brz-fs-xs-216{font-size:216px!important}
4122
+ .brz-ed.brz-ed--mobile .brz-fs-xs-217{font-size:217px!important}
4123
+ .brz-ed.brz-ed--mobile .brz-fs-xs-218{font-size:218px!important}
4124
+ .brz-ed.brz-ed--mobile .brz-fs-xs-219{font-size:219px!important}
4125
+ .brz-ed.brz-ed--mobile .brz-fs-xs-220{font-size:220px!important}
4126
+ .brz-ed.brz-ed--mobile .brz-fs-xs-221{font-size:221px!important}
4127
+ .brz-ed.brz-ed--mobile .brz-fs-xs-222{font-size:222px!important}
4128
+ .brz-ed.brz-ed--mobile .brz-fs-xs-223{font-size:223px!important}
4129
+ .brz-ed.brz-ed--mobile .brz-fs-xs-224{font-size:224px!important}
4130
+ .brz-ed.brz-ed--mobile .brz-fs-xs-225{font-size:225px!important}
4131
+ .brz-ed.brz-ed--mobile .brz-fs-xs-226{font-size:226px!important}
4132
+ .brz-ed.brz-ed--mobile .brz-fs-xs-227{font-size:227px!important}
4133
+ .brz-ed.brz-ed--mobile .brz-fs-xs-228{font-size:228px!important}
4134
+ .brz-ed.brz-ed--mobile .brz-fs-xs-229{font-size:229px!important}
4135
+ .brz-ed.brz-ed--mobile .brz-fs-xs-230{font-size:230px!important}
4136
+ .brz-ed.brz-ed--mobile .brz-fs-xs-231{font-size:231px!important}
4137
+ .brz-ed.brz-ed--mobile .brz-fs-xs-232{font-size:232px!important}
4138
+ .brz-ed.brz-ed--mobile .brz-fs-xs-233{font-size:233px!important}
4139
+ .brz-ed.brz-ed--mobile .brz-fs-xs-234{font-size:234px!important}
4140
+ .brz-ed.brz-ed--mobile .brz-fs-xs-235{font-size:235px!important}
4141
+ .brz-ed.brz-ed--mobile .brz-fs-xs-236{font-size:236px!important}
4142
+ .brz-ed.brz-ed--mobile .brz-fs-xs-237{font-size:237px!important}
4143
+ .brz-ed.brz-ed--mobile .brz-fs-xs-238{font-size:238px!important}
4144
+ .brz-ed.brz-ed--mobile .brz-fs-xs-239{font-size:239px!important}
4145
+ .brz-ed.brz-ed--mobile .brz-fs-xs-240{font-size:240px!important}
4146
+ .brz-ed.brz-ed--mobile .brz-fs-xs-241{font-size:241px!important}
4147
+ .brz-ed.brz-ed--mobile .brz-fs-xs-242{font-size:242px!important}
4148
+ .brz-ed.brz-ed--mobile .brz-fs-xs-243{font-size:243px!important}
4149
+ .brz-ed.brz-ed--mobile .brz-fs-xs-244{font-size:244px!important}
4150
+ .brz-ed.brz-ed--mobile .brz-fs-xs-245{font-size:245px!important}
4151
+ .brz-ed.brz-ed--mobile .brz-fs-xs-246{font-size:246px!important}
4152
+ .brz-ed.brz-ed--mobile .brz-fs-xs-247{font-size:247px!important}
4153
+ .brz-ed.brz-ed--mobile .brz-fs-xs-248{font-size:248px!important}
4154
+ .brz-ed.brz-ed--mobile .brz-fs-xs-249{font-size:249px!important}
4155
+ .brz-ed.brz-ed--mobile .brz-fs-xs-250{font-size:250px!important}
4156
+ .brz-ed.brz-ed--mobile .brz-fs-xs-251{font-size:251px!important}
4157
+ .brz-ed.brz-ed--mobile .brz-fs-xs-252{font-size:252px!important}
4158
+ .brz-ed.brz-ed--mobile .brz-fs-xs-253{font-size:253px!important}
4159
+ .brz-ed.brz-ed--mobile .brz-fs-xs-254{font-size:254px!important}
4160
+ .brz-ed.brz-ed--mobile .brz-fs-xs-255{font-size:255px!important}
4161
+ .brz-ed.brz-ed--mobile .brz-fs-xs-256{font-size:256px!important}
4162
+ .brz-ed.brz-ed--mobile .brz-fs-xs-257{font-size:257px!important}
4163
+ .brz-ed.brz-ed--mobile .brz-fs-xs-258{font-size:258px!important}
4164
+ .brz-ed.brz-ed--mobile .brz-fs-xs-259{font-size:259px!important}
4165
+ .brz-ed.brz-ed--mobile .brz-fs-xs-260{font-size:260px!important}
4166
+ .brz-ed.brz-ed--mobile .brz-fs-xs-261{font-size:261px!important}
4167
+ .brz-ed.brz-ed--mobile .brz-fs-xs-262{font-size:262px!important}
4168
+ .brz-ed.brz-ed--mobile .brz-fs-xs-263{font-size:263px!important}
4169
+ .brz-ed.brz-ed--mobile .brz-fs-xs-264{font-size:264px!important}
4170
+ .brz-ed.brz-ed--mobile .brz-fs-xs-265{font-size:265px!important}
4171
+ .brz-ed.brz-ed--mobile .brz-fs-xs-266{font-size:266px!important}
4172
+ .brz-ed.brz-ed--mobile .brz-fs-xs-267{font-size:267px!important}
4173
+ .brz-ed.brz-ed--mobile .brz-fs-xs-268{font-size:268px!important}
4174
+ .brz-ed.brz-ed--mobile .brz-fs-xs-269{font-size:269px!important}
4175
+ .brz-ed.brz-ed--mobile .brz-fs-xs-270{font-size:270px!important}
4176
+ .brz-ed.brz-ed--mobile .brz-fs-xs-271{font-size:271px!important}
4177
+ .brz-ed.brz-ed--mobile .brz-fs-xs-272{font-size:272px!important}
4178
+ .brz-ed.brz-ed--mobile .brz-fs-xs-273{font-size:273px!important}
4179
+ .brz-ed.brz-ed--mobile .brz-fs-xs-274{font-size:274px!important}
4180
+ .brz-ed.brz-ed--mobile .brz-fs-xs-275{font-size:275px!important}
4181
+ .brz-ed.brz-ed--mobile .brz-fs-xs-276{font-size:276px!important}
4182
+ .brz-ed.brz-ed--mobile .brz-fs-xs-277{font-size:277px!important}
4183
+ .brz-ed.brz-ed--mobile .brz-fs-xs-278{font-size:278px!important}
4184
+ .brz-ed.brz-ed--mobile .brz-fs-xs-279{font-size:279px!important}
4185
+ .brz-ed.brz-ed--mobile .brz-fs-xs-280{font-size:280px!important}
4186
+ .brz-ed.brz-ed--mobile .brz-fs-xs-281{font-size:281px!important}
4187
+ .brz-ed.brz-ed--mobile .brz-fs-xs-282{font-size:282px!important}
4188
+ .brz-ed.brz-ed--mobile .brz-fs-xs-283{font-size:283px!important}
4189
+ .brz-ed.brz-ed--mobile .brz-fs-xs-284{font-size:284px!important}
4190
+ .brz-ed.brz-ed--mobile .brz-fs-xs-285{font-size:285px!important}
4191
+ .brz-ed.brz-ed--mobile .brz-fs-xs-286{font-size:286px!important}
4192
+ .brz-ed.brz-ed--mobile .brz-fs-xs-287{font-size:287px!important}
4193
+ .brz-ed.brz-ed--mobile .brz-fs-xs-288{font-size:288px!important}
4194
+ .brz-ed.brz-ed--mobile .brz-fs-xs-289{font-size:289px!important}
4195
+ .brz-ed.brz-ed--mobile .brz-fs-xs-290{font-size:290px!important}
4196
+ .brz-ed.brz-ed--mobile .brz-fs-xs-291{font-size:291px!important}
4197
+ .brz-ed.brz-ed--mobile .brz-fs-xs-292{font-size:292px!important}
4198
+ .brz-ed.brz-ed--mobile .brz-fs-xs-293{font-size:293px!important}
4199
+ .brz-ed.brz-ed--mobile .brz-fs-xs-294{font-size:294px!important}
4200
+ .brz-ed.brz-ed--mobile .brz-fs-xs-295{font-size:295px!important}
4201
+ .brz-ed.brz-ed--mobile .brz-fs-xs-296{font-size:296px!important}
4202
+ .brz-ed.brz-ed--mobile .brz-fs-xs-297{font-size:297px!important}
4203
+ .brz-ed.brz-ed--mobile .brz-fs-xs-298{font-size:298px!important}
4204
+ .brz-ed.brz-ed--mobile .brz-fs-xs-299{font-size:299px!important}
4205
+ .brz-ed.brz-ed--mobile .brz-fs-xs-300{font-size:300px!important}
4206
+ .brz-ed.brz-ed--mobile .brz-lh-xs-1{line-height:1em!important}
4207
+ .brz-ed.brz-ed--mobile .brz-lh-xs-1_1{line-height:1.1em!important}
4208
+ .brz-ed.brz-ed--mobile .brz-lh-xs-1_2{line-height:1.2em!important}
4209
+ .brz-ed.brz-ed--mobile .brz-lh-xs-1_3{line-height:1.3em!important}
4210
+ .brz-ed.brz-ed--mobile .brz-lh-xs-1_4{line-height:1.4em!important}
4211
+ .brz-ed.brz-ed--mobile .brz-lh-xs-1_5{line-height:1.5em!important}
4212
+ .brz-ed.brz-ed--mobile .brz-lh-xs-1_6{line-height:1.6em!important}
4213
+ .brz-ed.brz-ed--mobile .brz-lh-xs-1_7{line-height:1.7em!important}
4214
+ .brz-ed.brz-ed--mobile .brz-lh-xs-1_8{line-height:1.8em!important}
4215
+ .brz-ed.brz-ed--mobile .brz-lh-xs-1_9{line-height:1.9em!important}
4216
+ .brz-ed.brz-ed--mobile .brz-lh-xs-2{line-height:2em!important}
4217
+ .brz-ed.brz-ed--mobile .brz-lh-xs-2_1{line-height:2.1em!important}
4218
+ .brz-ed.brz-ed--mobile .brz-lh-xs-2_2{line-height:2.2em!important}
4219
+ .brz-ed.brz-ed--mobile .brz-lh-xs-2_3{line-height:2.3em!important}
4220
+ .brz-ed.brz-ed--mobile .brz-lh-xs-2_4{line-height:2.4em!important}
4221
+ .brz-ed.brz-ed--mobile .brz-lh-xs-2_5{line-height:2.5em!important}
4222
+ .brz-ed.brz-ed--mobile .brz-lh-xs-2_6{line-height:2.6em!important}
4223
+ .brz-ed.brz-ed--mobile .brz-lh-xs-2_7{line-height:2.7em!important}
4224
+ .brz-ed.brz-ed--mobile .brz-lh-xs-2_8{line-height:2.8em!important}
4225
+ .brz-ed.brz-ed--mobile .brz-lh-xs-2_9{line-height:2.9em!important}
4226
+ .brz-ed.brz-ed--mobile .brz-lh-xs-3{line-height:3em!important}
4227
+ .brz-ed.brz-ed--mobile .brz-lh-xs-3_1{line-height:3.1em!important}
4228
+ .brz-ed.brz-ed--mobile .brz-lh-xs-3_2{line-height:3.2em!important}
4229
+ .brz-ed.brz-ed--mobile .brz-lh-xs-3_3{line-height:3.3em!important}
4230
+ .brz-ed.brz-ed--mobile .brz-lh-xs-3_4{line-height:3.4em!important}
4231
+ .brz-ed.brz-ed--mobile .brz-lh-xs-3_5{line-height:3.5em!important}
4232
+ .brz-ed.brz-ed--mobile .brz-lh-xs-3_6{line-height:3.6em!important}
4233
+ .brz-ed.brz-ed--mobile .brz-lh-xs-3_7{line-height:3.7em!important}
4234
+ .brz-ed.brz-ed--mobile .brz-lh-xs-3_8{line-height:3.8em!important}
4235
+ .brz-ed.brz-ed--mobile .brz-lh-xs-3_9{line-height:3.9em!important}
4236
+ .brz-ed.brz-ed--mobile .brz-lh-xs-4{line-height:4em!important}
4237
+ .brz-ed.brz-ed--mobile .brz-lh-xs-4_1{line-height:4.1em!important}
4238
+ .brz-ed.brz-ed--mobile .brz-lh-xs-4_2{line-height:4.2em!important}
4239
+ .brz-ed.brz-ed--mobile .brz-lh-xs-4_3{line-height:4.3em!important}
4240
+ .brz-ed.brz-ed--mobile .brz-lh-xs-4_4{line-height:4.4em!important}
4241
+ .brz-ed.brz-ed--mobile .brz-lh-xs-4_5{line-height:4.5em!important}
4242
+ .brz-ed.brz-ed--mobile .brz-lh-xs-4_6{line-height:4.6em!important}
4243
+ .brz-ed.brz-ed--mobile .brz-lh-xs-4_7{line-height:4.7em!important}
4244
+ .brz-ed.brz-ed--mobile .brz-lh-xs-4_8{line-height:4.8em!important}
4245
+ .brz-ed.brz-ed--mobile .brz-lh-xs-4_9{line-height:4.9em!important}
4246
+ .brz-ed.brz-ed--mobile .brz-lh-xs-5{line-height:5em!important}
4247
+ .brz-ed.brz-ed--mobile .brz-lh-xs-5_1{line-height:5.1em!important}
4248
+ .brz-ed.brz-ed--mobile .brz-lh-xs-5_2{line-height:5.2em!important}
4249
+ .brz-ed.brz-ed--mobile .brz-lh-xs-5_3{line-height:5.3em!important}
4250
+ .brz-ed.brz-ed--mobile .brz-lh-xs-5_4{line-height:5.4em!important}
4251
+ .brz-ed.brz-ed--mobile .brz-lh-xs-5_5{line-height:5.5em!important}
4252
+ .brz-ed.brz-ed--mobile .brz-lh-xs-5_6{line-height:5.6em!important}
4253
+ .brz-ed.brz-ed--mobile .brz-lh-xs-5_7{line-height:5.7em!important}
4254
+ .brz-ed.brz-ed--mobile .brz-lh-xs-5_8{line-height:5.8em!important}
4255
+ .brz-ed.brz-ed--mobile .brz-lh-xs-5_9{line-height:5.9em!important}
4256
+ .brz-ed.brz-ed--mobile .brz-fw-xs-100{font-weight:100!important}
4257
+ .brz-ed.brz-ed--mobile .brz-fw-xs-200{font-weight:200!important}
4258
+ .brz-ed.brz-ed--mobile .brz-fw-xs-300{font-weight:300!important}
4259
+ .brz-ed.brz-ed--mobile .brz-fw-xs-400{font-weight:400!important}
4260
+ .brz-ed.brz-ed--mobile .brz-fw-xs-500{font-weight:500!important}
4261
+ .brz-ed.brz-ed--mobile .brz-fw-xs-600{font-weight:600!important}
4262
+ .brz-ed.brz-ed--mobile .brz-fw-xs-700{font-weight:700!important}
4263
+ .brz-ed.brz-ed--mobile .brz-fw-xs-800{font-weight:800!important}
4264
+ .brz-ed.brz-ed--mobile .brz-fw-xs-900{font-weight:900!important}
4265
+ .brz-ed.brz-ed--mobile .brz-fw-xs-1000{font-weight:1000!important}
4266
+ .brz-ed.brz-ed--mobile .brz-fw-xs-1100{font-weight:1100!important}
4267
+ .brz-ed.brz-ed--mobile .brz-fw-xs-1200{font-weight:1200!important}
4268
+ .brz-ed.brz-ed--mobile .brz-fw-xs-1300{font-weight:1300!important}
4269
+ .brz-ed.brz-ed--mobile .brz-fw-xs-1400{font-weight:1400!important}
4270
+ .brz-ed.brz-ed--mobile .brz-fw-xs-1500{font-weight:1500!important}
4271
+ .brz-ed.brz-ed--mobile .brz-fw-xs-1600{font-weight:1600!important}
4272
+ .brz-ed.brz-ed--mobile .brz-fw-xs-1700{font-weight:1700!important}
4273
+ .brz-ed.brz-ed--mobile .brz-fw-xs-1800{font-weight:1800!important}
4274
+ .brz-ed.brz-ed--mobile .brz-fw-xs-1900{font-weight:1900!important}
4275
+ .brz-ed.brz-ed--mobile .brz-fw-xs-2000{font-weight:2000!important}
4276
+ .brz-ed.brz-ed--mobile .brz-ls-xs-m_20{letter-spacing:-20px!important}
4277
+ .brz-ed.brz-ed--mobile .brz-ls-xs-m_20_5{letter-spacing:-20.5px!important}
4278
+ .brz-ed.brz-ed--mobile .brz-ls-xs-m_19{letter-spacing:-19px!important}
4279
+ .brz-ed.brz-ed--mobile .brz-ls-xs-m_19_5{letter-spacing:-19.5px!important}
4280
+ .brz-ed.brz-ed--mobile .brz-ls-xs-m_18{letter-spacing:-18px!important}
4281
+ .brz-ed.brz-ed--mobile .brz-ls-xs-m_18_5{letter-spacing:-18.5px!important}
4282
+ .brz-ed.brz-ed--mobile .brz-ls-xs-m_17{letter-spacing:-17px!important}
4283
+ .brz-ed.brz-ed--mobile .brz-ls-xs-m_17_5{letter-spacing:-17.5px!important}
4284
+ .brz-ed.brz-ed--mobile .brz-ls-xs-m_16{letter-spacing:-16px!important}
4285
+ .brz-ed.brz-ed--mobile .brz-ls-xs-m_16_5{letter-spacing:-16.5px!important}
4286
+ .brz-ed.brz-ed--mobile .brz-ls-xs-m_15{letter-spacing:-15px!important}
4287
+ .brz-ed.brz-ed--mobile .brz-ls-xs-m_15_5{letter-spacing:-15.5px!important}
4288
+ .brz-ed.brz-ed--mobile .brz-ls-xs-m_14{letter-spacing:-14px!important}
4289
+ .brz-ed.brz-ed--mobile .brz-ls-xs-m_14_5{letter-spacing:-14.5px!important}
4290
+ .brz-ed.brz-ed--mobile .brz-ls-xs-m_13{letter-spacing:-13px!important}
4291
+ .brz-ed.brz-ed--mobile .brz-ls-xs-m_13_5{letter-spacing:-13.5px!important}
4292
+ .brz-ed.brz-ed--mobile .brz-ls-xs-m_12{letter-spacing:-12px!important}
4293
+ .brz-ed.brz-ed--mobile .brz-ls-xs-m_12_5{letter-spacing:-12.5px!important}
4294
+ .brz-ed.brz-ed--mobile .brz-ls-xs-m_11{letter-spacing:-11px!important}
4295
+ .brz-ed.brz-ed--mobile .brz-ls-xs-m_11_5{letter-spacing:-11.5px!important}
4296
+ .brz-ed.brz-ed--mobile .brz-ls-xs-m_10{letter-spacing:-10px!important}
4297
+ .brz-ed.brz-ed--mobile .brz-ls-xs-m_10_5{letter-spacing:-10.5px!important}
4298
+ .brz-ed.brz-ed--mobile .brz-ls-xs-m_9{letter-spacing:-9px!important}
4299
+ .brz-ed.brz-ed--mobile .brz-ls-xs-m_9_5{letter-spacing:-9.5px!important}
4300
+ .brz-ed.brz-ed--mobile .brz-ls-xs-m_8{letter-spacing:-8px!important}
4301
+ .brz-ed.brz-ed--mobile .brz-ls-xs-m_8_5{letter-spacing:-8.5px!important}
4302
+ .brz-ed.brz-ed--mobile .brz-ls-xs-m_7{letter-spacing:-7px!important}
4303
+ .brz-ed.brz-ed--mobile .brz-ls-xs-m_7_5{letter-spacing:-7.5px!important}
4304
+ .brz-ed.brz-ed--mobile .brz-ls-xs-m_6{letter-spacing:-6px!important}
4305
+ .brz-ed.brz-ed--mobile .brz-ls-xs-m_6_5{letter-spacing:-6.5px!important}
4306
+ .brz-ed.brz-ed--mobile .brz-ls-xs-m_5{letter-spacing:-5px!important}
4307
+ .brz-ed.brz-ed--mobile .brz-ls-xs-m_5_5{letter-spacing:-5.5px!important}
4308
+ .brz-ed.brz-ed--mobile .brz-ls-xs-m_4{letter-spacing:-4px!important}
4309
+ .brz-ed.brz-ed--mobile .brz-ls-xs-m_4_5{letter-spacing:-4.5px!important}
4310
+ .brz-ed.brz-ed--mobile .brz-ls-xs-m_3{letter-spacing:-3px!important}
4311
+ .brz-ed.brz-ed--mobile .brz-ls-xs-m_3_5{letter-spacing:-3.5px!important}
4312
+ .brz-ed.brz-ed--mobile .brz-ls-xs-m_2{letter-spacing:-2px!important}
4313
+ .brz-ed.brz-ed--mobile .brz-ls-xs-m_2_5{letter-spacing:-2.5px!important}
4314
+ .brz-ed.brz-ed--mobile .brz-ls-xs-m_1{letter-spacing:-1px!important}
4315
+ .brz-ed.brz-ed--mobile .brz-ls-xs-m_1_5{letter-spacing:-1.5px!important}
4316
+ .brz-ed.brz-ed--mobile .brz-ls-xs-m_0{letter-spacing:0!important}
4317
+ .brz-ed.brz-ed--mobile .brz-ls-xs-m_0_5{letter-spacing:-.5px!important}
4318
+ .brz-ed.brz-ed--mobile .brz-ls-xs-0{letter-spacing:0!important}
4319
+ .brz-ed.brz-ed--mobile .brz-ls-xs-0_5{letter-spacing:.5px!important}
4320
+ .brz-ed.brz-ed--mobile .brz-ls-xs-1{letter-spacing:1px!important}
4321
+ .brz-ed.brz-ed--mobile .brz-ls-xs-1_5{letter-spacing:1.5px!important}
4322
+ .brz-ed.brz-ed--mobile .brz-ls-xs-2{letter-spacing:2px!important}
4323
+ .brz-ed.brz-ed--mobile .brz-ls-xs-2_5{letter-spacing:2.5px!important}
4324
+ .brz-ed.brz-ed--mobile .brz-ls-xs-3{letter-spacing:3px!important}
4325
+ .brz-ed.brz-ed--mobile .brz-ls-xs-3_5{letter-spacing:3.5px!important}
4326
+ .brz-ed.brz-ed--mobile .brz-ls-xs-4{letter-spacing:4px!important}
4327
+ .brz-ed.brz-ed--mobile .brz-ls-xs-4_5{letter-spacing:4.5px!important}
4328
+ .brz-ed.brz-ed--mobile .brz-ls-xs-5{letter-spacing:5px!important}
4329
+ .brz-ed.brz-ed--mobile .brz-ls-xs-5_5{letter-spacing:5.5px!important}
4330
+ .brz-ed.brz-ed--mobile .brz-ls-xs-6{letter-spacing:6px!important}
4331
+ .brz-ed.brz-ed--mobile .brz-ls-xs-6_5{letter-spacing:6.5px!important}
4332
+ .brz-ed.brz-ed--mobile .brz-ls-xs-7{letter-spacing:7px!important}
4333
+ .brz-ed.brz-ed--mobile .brz-ls-xs-7_5{letter-spacing:7.5px!important}
4334
+ .brz-ed.brz-ed--mobile .brz-ls-xs-8{letter-spacing:8px!important}
4335
+ .brz-ed.brz-ed--mobile .brz-ls-xs-8_5{letter-spacing:8.5px!important}
4336
+ .brz-ed.brz-ed--mobile .brz-ls-xs-9{letter-spacing:9px!important}
4337
+ .brz-ed.brz-ed--mobile .brz-ls-xs-9_5{letter-spacing:9.5px!important}
4338
+ .brz-ed.brz-ed--mobile .brz-ls-xs-10{letter-spacing:10px!important}
4339
+ .brz-ed.brz-ed--mobile .brz-ls-xs-10_5{letter-spacing:10.5px!important}
4340
+ .brz-ed.brz-ed--mobile .brz-ls-xs-11{letter-spacing:11px!important}
4341
+ .brz-ed.brz-ed--mobile .brz-ls-xs-11_5{letter-spacing:11.5px!important}
4342
+ .brz-ed.brz-ed--mobile .brz-ls-xs-12{letter-spacing:12px!important}
4343
+ .brz-ed.brz-ed--mobile .brz-ls-xs-12_5{letter-spacing:12.5px!important}
4344
+ .brz-ed.brz-ed--mobile .brz-ls-xs-13{letter-spacing:13px!important}
4345
+ .brz-ed.brz-ed--mobile .brz-ls-xs-13_5{letter-spacing:13.5px!important}
4346
+ .brz-ed.brz-ed--mobile .brz-ls-xs-14{letter-spacing:14px!important}
4347
+ .brz-ed.brz-ed--mobile .brz-ls-xs-14_5{letter-spacing:14.5px!important}
4348
+ .brz-ed.brz-ed--mobile .brz-ls-xs-15{letter-spacing:15px!important}
4349
+ .brz-ed.brz-ed--mobile .brz-ls-xs-15_5{letter-spacing:15.5px!important}
4350
+ .brz-ed.brz-ed--mobile .brz-ls-xs-16{letter-spacing:16px!important}
4351
+ .brz-ed.brz-ed--mobile .brz-ls-xs-16_5{letter-spacing:16.5px!important}
4352
+ .brz-ed.brz-ed--mobile .brz-ls-xs-17{letter-spacing:17px!important}
4353
+ .brz-ed.brz-ed--mobile .brz-ls-xs-17_5{letter-spacing:17.5px!important}
4354
+ .brz-ed.brz-ed--mobile .brz-ls-xs-18{letter-spacing:18px!important}
4355
+ .brz-ed.brz-ed--mobile .brz-ls-xs-18_5{letter-spacing:18.5px!important}
4356
+ .brz-ed.brz-ed--mobile .brz-ls-xs-19{letter-spacing:19px!important}
4357
+ .brz-ed.brz-ed--mobile .brz-ls-xs-19_5{letter-spacing:19.5px!important}
4358
+ .brz-ed.brz-ed--mobile .brz-ls-xs-20{letter-spacing:20px!important}
4359
+ .brz-ed.brz-ed--mobile .brz-ls-xs-20_5{letter-spacing:20.5px!important}
4360
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-6{font-size:6px!important}
4361
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-7{font-size:7px!important}
4362
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-8{font-size:8px!important}
4363
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-9{font-size:9px!important}
4364
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-10{font-size:10px!important}
4365
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-11{font-size:11px!important}
4366
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-12{font-size:12px!important}
4367
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-13{font-size:13px!important}
4368
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-14{font-size:14px!important}
4369
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-15{font-size:15px!important}
4370
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-16{font-size:16px!important}
4371
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-17{font-size:17px!important}
4372
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-18{font-size:18px!important}
4373
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-19{font-size:19px!important}
4374
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-20{font-size:20px!important}
4375
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-21{font-size:21px!important}
4376
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-22{font-size:22px!important}
4377
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-23{font-size:23px!important}
4378
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-24{font-size:24px!important}
4379
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-25{font-size:25px!important}
4380
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-26{font-size:26px!important}
4381
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-27{font-size:27px!important}
4382
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-28{font-size:28px!important}
4383
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-29{font-size:29px!important}
4384
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-30{font-size:30px!important}
4385
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-31{font-size:31px!important}
4386
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-32{font-size:32px!important}
4387
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-33{font-size:33px!important}
4388
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-34{font-size:34px!important}
4389
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-35{font-size:35px!important}
4390
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-36{font-size:36px!important}
4391
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-37{font-size:37px!important}
4392
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-38{font-size:38px!important}
4393
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-39{font-size:39px!important}
4394
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-40{font-size:40px!important}
4395
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-41{font-size:41px!important}
4396
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-42{font-size:42px!important}
4397
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-43{font-size:43px!important}
4398
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-44{font-size:44px!important}
4399
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-45{font-size:45px!important}
4400
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-46{font-size:46px!important}
4401
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-47{font-size:47px!important}
4402
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-48{font-size:48px!important}
4403
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-49{font-size:49px!important}
4404
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-50{font-size:50px!important}
4405
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-51{font-size:51px!important}
4406
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-52{font-size:52px!important}
4407
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-53{font-size:53px!important}
4408
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-54{font-size:54px!important}
4409
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-55{font-size:55px!important}
4410
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-56{font-size:56px!important}
4411
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-57{font-size:57px!important}
4412
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-58{font-size:58px!important}
4413
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-59{font-size:59px!important}
4414
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-60{font-size:60px!important}
4415
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-61{font-size:61px!important}
4416
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-62{font-size:62px!important}
4417
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-63{font-size:63px!important}
4418
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-64{font-size:64px!important}
4419
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-65{font-size:65px!important}
4420
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-66{font-size:66px!important}
4421
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-67{font-size:67px!important}
4422
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-68{font-size:68px!important}
4423
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-69{font-size:69px!important}
4424
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-70{font-size:70px!important}
4425
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-71{font-size:71px!important}
4426
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-72{font-size:72px!important}
4427
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-73{font-size:73px!important}
4428
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-74{font-size:74px!important}
4429
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-75{font-size:75px!important}
4430
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-76{font-size:76px!important}
4431
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-77{font-size:77px!important}
4432
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-78{font-size:78px!important}
4433
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-79{font-size:79px!important}
4434
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-80{font-size:80px!important}
4435
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-81{font-size:81px!important}
4436
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-82{font-size:82px!important}
4437
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-83{font-size:83px!important}
4438
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-84{font-size:84px!important}
4439
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-85{font-size:85px!important}
4440
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-86{font-size:86px!important}
4441
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-87{font-size:87px!important}
4442
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-88{font-size:88px!important}
4443
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-89{font-size:89px!important}
4444
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-90{font-size:90px!important}
4445
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-91{font-size:91px!important}
4446
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-92{font-size:92px!important}
4447
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-93{font-size:93px!important}
4448
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-94{font-size:94px!important}
4449
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-95{font-size:95px!important}
4450
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-96{font-size:96px!important}
4451
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-97{font-size:97px!important}
4452
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-98{font-size:98px!important}
4453
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-99{font-size:99px!important}
4454
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-100{font-size:100px!important}
4455
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-101{font-size:101px!important}
4456
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-102{font-size:102px!important}
4457
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-103{font-size:103px!important}
4458
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-104{font-size:104px!important}
4459
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-105{font-size:105px!important}
4460
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-106{font-size:106px!important}
4461
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-107{font-size:107px!important}
4462
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-108{font-size:108px!important}
4463
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-109{font-size:109px!important}
4464
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-110{font-size:110px!important}
4465
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-111{font-size:111px!important}
4466
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-112{font-size:112px!important}
4467
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-113{font-size:113px!important}
4468
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-114{font-size:114px!important}
4469
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-115{font-size:115px!important}
4470
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-116{font-size:116px!important}
4471
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-117{font-size:117px!important}
4472
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-118{font-size:118px!important}
4473
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-119{font-size:119px!important}
4474
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-120{font-size:120px!important}
4475
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-121{font-size:121px!important}
4476
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-122{font-size:122px!important}
4477
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-123{font-size:123px!important}
4478
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-124{font-size:124px!important}
4479
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-125{font-size:125px!important}
4480
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-126{font-size:126px!important}
4481
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-127{font-size:127px!important}
4482
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-128{font-size:128px!important}
4483
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-129{font-size:129px!important}
4484
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-130{font-size:130px!important}
4485
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-131{font-size:131px!important}
4486
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-132{font-size:132px!important}
4487
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-133{font-size:133px!important}
4488
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-134{font-size:134px!important}
4489
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-135{font-size:135px!important}
4490
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-136{font-size:136px!important}
4491
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-137{font-size:137px!important}
4492
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-138{font-size:138px!important}
4493
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-139{font-size:139px!important}
4494
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-140{font-size:140px!important}
4495
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-141{font-size:141px!important}
4496
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-142{font-size:142px!important}
4497
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-143{font-size:143px!important}
4498
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-144{font-size:144px!important}
4499
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-145{font-size:145px!important}
4500
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-146{font-size:146px!important}
4501
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-147{font-size:147px!important}
4502
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-148{font-size:148px!important}
4503
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-149{font-size:149px!important}
4504
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-150{font-size:150px!important}
4505
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-151{font-size:151px!important}
4506
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-152{font-size:152px!important}
4507
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-153{font-size:153px!important}
4508
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-154{font-size:154px!important}
4509
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-155{font-size:155px!important}
4510
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-156{font-size:156px!important}
4511
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-157{font-size:157px!important}
4512
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-158{font-size:158px!important}
4513
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-159{font-size:159px!important}
4514
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-160{font-size:160px!important}
4515
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-161{font-size:161px!important}
4516
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-162{font-size:162px!important}
4517
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-163{font-size:163px!important}
4518
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-164{font-size:164px!important}
4519
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-165{font-size:165px!important}
4520
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-166{font-size:166px!important}
4521
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-167{font-size:167px!important}
4522
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-168{font-size:168px!important}
4523
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-169{font-size:169px!important}
4524
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-170{font-size:170px!important}
4525
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-171{font-size:171px!important}
4526
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-172{font-size:172px!important}
4527
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-173{font-size:173px!important}
4528
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-174{font-size:174px!important}
4529
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-175{font-size:175px!important}
4530
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-176{font-size:176px!important}
4531
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-177{font-size:177px!important}
4532
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-178{font-size:178px!important}
4533
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-179{font-size:179px!important}
4534
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-180{font-size:180px!important}
4535
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-181{font-size:181px!important}
4536
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-182{font-size:182px!important}
4537
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-183{font-size:183px!important}
4538
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-184{font-size:184px!important}
4539
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-185{font-size:185px!important}
4540
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-186{font-size:186px!important}
4541
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-187{font-size:187px!important}
4542
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-188{font-size:188px!important}
4543
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-189{font-size:189px!important}
4544
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-190{font-size:190px!important}
4545
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-191{font-size:191px!important}
4546
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-192{font-size:192px!important}
4547
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-193{font-size:193px!important}
4548
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-194{font-size:194px!important}
4549
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-195{font-size:195px!important}
4550
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-196{font-size:196px!important}
4551
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-197{font-size:197px!important}
4552
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-198{font-size:198px!important}
4553
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-199{font-size:199px!important}
4554
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-200{font-size:200px!important}
4555
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-201{font-size:201px!important}
4556
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-202{font-size:202px!important}
4557
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-203{font-size:203px!important}
4558
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-204{font-size:204px!important}
4559
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-205{font-size:205px!important}
4560
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-206{font-size:206px!important}
4561
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-207{font-size:207px!important}
4562
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-208{font-size:208px!important}
4563
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-209{font-size:209px!important}
4564
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-210{font-size:210px!important}
4565
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-211{font-size:211px!important}
4566
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-212{font-size:212px!important}
4567
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-213{font-size:213px!important}
4568
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-214{font-size:214px!important}
4569
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-215{font-size:215px!important}
4570
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-216{font-size:216px!important}
4571
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-217{font-size:217px!important}
4572
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-218{font-size:218px!important}
4573
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-219{font-size:219px!important}
4574
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-220{font-size:220px!important}
4575
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-221{font-size:221px!important}
4576
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-222{font-size:222px!important}
4577
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-223{font-size:223px!important}
4578
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-224{font-size:224px!important}
4579
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-225{font-size:225px!important}
4580
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-226{font-size:226px!important}
4581
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-227{font-size:227px!important}
4582
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-228{font-size:228px!important}
4583
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-229{font-size:229px!important}
4584
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-230{font-size:230px!important}
4585
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-231{font-size:231px!important}
4586
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-232{font-size:232px!important}
4587
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-233{font-size:233px!important}
4588
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-234{font-size:234px!important}
4589
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-235{font-size:235px!important}
4590
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-236{font-size:236px!important}
4591
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-237{font-size:237px!important}
4592
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-238{font-size:238px!important}
4593
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-239{font-size:239px!important}
4594
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-240{font-size:240px!important}
4595
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-241{font-size:241px!important}
4596
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-242{font-size:242px!important}
4597
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-243{font-size:243px!important}
4598
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-244{font-size:244px!important}
4599
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-245{font-size:245px!important}
4600
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-246{font-size:246px!important}
4601
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-247{font-size:247px!important}
4602
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-248{font-size:248px!important}
4603
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-249{font-size:249px!important}
4604
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-250{font-size:250px!important}
4605
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-251{font-size:251px!important}
4606
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-252{font-size:252px!important}
4607
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-253{font-size:253px!important}
4608
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-254{font-size:254px!important}
4609
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-255{font-size:255px!important}
4610
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-256{font-size:256px!important}
4611
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-257{font-size:257px!important}
4612
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-258{font-size:258px!important}
4613
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-259{font-size:259px!important}
4614
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-260{font-size:260px!important}
4615
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-261{font-size:261px!important}
4616
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-262{font-size:262px!important}
4617
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-263{font-size:263px!important}
4618
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-264{font-size:264px!important}
4619
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-265{font-size:265px!important}
4620
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-266{font-size:266px!important}
4621
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-267{font-size:267px!important}
4622
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-268{font-size:268px!important}
4623
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-269{font-size:269px!important}
4624
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-270{font-size:270px!important}
4625
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-271{font-size:271px!important}
4626
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-272{font-size:272px!important}
4627
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-273{font-size:273px!important}
4628
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-274{font-size:274px!important}
4629
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-275{font-size:275px!important}
4630
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-276{font-size:276px!important}
4631
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-277{font-size:277px!important}
4632
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-278{font-size:278px!important}
4633
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-279{font-size:279px!important}
4634
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-280{font-size:280px!important}
4635
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-281{font-size:281px!important}
4636
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-282{font-size:282px!important}
4637
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-283{font-size:283px!important}
4638
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-284{font-size:284px!important}
4639
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-285{font-size:285px!important}
4640
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-286{font-size:286px!important}
4641
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-287{font-size:287px!important}
4642
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-288{font-size:288px!important}
4643
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-289{font-size:289px!important}
4644
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-290{font-size:290px!important}
4645
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-291{font-size:291px!important}
4646
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-292{font-size:292px!important}
4647
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-293{font-size:293px!important}
4648
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-294{font-size:294px!important}
4649
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-295{font-size:295px!important}
4650
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-296{font-size:296px!important}
4651
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-297{font-size:297px!important}
4652
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-298{font-size:298px!important}
4653
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-299{font-size:299px!important}
4654
+ .brz-ed.brz-ed--mobile .brz-fs-xs-im-300{font-size:300px!important}
4655
+ .brz-ed.brz-ed--mobile .brz-lh-xs-im-1{line-height:1em!important}
4656
+ .brz-ed.brz-ed--mobile .brz-lh-xs-im-1_1{line-height:1.1em!important}
4657
+ .brz-ed.brz-ed--mobile .brz-lh-xs-im-1_2{line-height:1.2em!important}
4658
+ .brz-ed.brz-ed--mobile .brz-lh-xs-im-1_3{line-height:1.3em!important}
4659
+ .brz-ed.brz-ed--mobile .brz-lh-xs-im-1_4{line-height:1.4em!important}
4660
+ .brz-ed.brz-ed--mobile .brz-lh-xs-im-1_5{line-height:1.5em!important}
4661
+ .brz-ed.brz-ed--mobile .brz-lh-xs-im-1_6{line-height:1.6em!important}
4662
+ .brz-ed.brz-ed--mobile .brz-lh-xs-im-1_7{line-height:1.7em!important}
4663
+ .brz-ed.brz-ed--mobile .brz-lh-xs-im-1_8{line-height:1.8em!important}
4664
+ .brz-ed.brz-ed--mobile .brz-lh-xs-im-1_9{line-height:1.9em!important}
4665
+ .brz-ed.brz-ed--mobile .brz-lh-xs-im-2{line-height:2em!important}
4666
+ .brz-ed.brz-ed--mobile .brz-lh-xs-im-2_1{line-height:2.1em!important}
4667
+ .brz-ed.brz-ed--mobile .brz-lh-xs-im-2_2{line-height:2.2em!important}
4668
+ .brz-ed.brz-ed--mobile .brz-lh-xs-im-2_3{line-height:2.3em!important}
4669
+ .brz-ed.brz-ed--mobile .brz-lh-xs-im-2_4{line-height:2.4em!important}
4670
+ .brz-ed.brz-ed--mobile .brz-lh-xs-im-2_5{line-height:2.5em!important}
4671
+ .brz-ed.brz-ed--mobile .brz-lh-xs-im-2_6{line-height:2.6em!important}
4672
+ .brz-ed.brz-ed--mobile .brz-lh-xs-im-2_7{line-height:2.7em!important}
4673
+ .brz-ed.brz-ed--mobile .brz-lh-xs-im-2_8{line-height:2.8em!important}
4674
+ .brz-ed.brz-ed--mobile .brz-lh-xs-im-2_9{line-height:2.9em!important}
4675
+ .brz-ed.brz-ed--mobile .brz-lh-xs-im-3{line-height:3em!important}
4676
+ .brz-ed.brz-ed--mobile .brz-lh-xs-im-3_1{line-height:3.1em!important}
4677
+ .brz-ed.brz-ed--mobile .brz-lh-xs-im-3_2{line-height:3.2em!important}
4678
+ .brz-ed.brz-ed--mobile .brz-lh-xs-im-3_3{line-height:3.3em!important}
4679
+ .brz-ed.brz-ed--mobile .brz-lh-xs-im-3_4{line-height:3.4em!important}
4680
+ .brz-ed.brz-ed--mobile .brz-lh-xs-im-3_5{line-height:3.5em!important}
4681
+ .brz-ed.brz-ed--mobile .brz-lh-xs-im-3_6{line-height:3.6em!important}
4682
+ .brz-ed.brz-ed--mobile .brz-lh-xs-im-3_7{line-height:3.7em!important}
4683
+ .brz-ed.brz-ed--mobile .brz-lh-xs-im-3_8{line-height:3.8em!important}
4684
+ .brz-ed.brz-ed--mobile .brz-lh-xs-im-3_9{line-height:3.9em!important}
4685
+ .brz-ed.brz-ed--mobile .brz-lh-xs-im-4{line-height:4em!important}
4686
+ .brz-ed.brz-ed--mobile .brz-lh-xs-im-4_1{line-height:4.1em!important}
4687
+ .brz-ed.brz-ed--mobile .brz-lh-xs-im-4_2{line-height:4.2em!important}
4688
+ .brz-ed.brz-ed--mobile .brz-lh-xs-im-4_3{line-height:4.3em!important}
4689
+ .brz-ed.brz-ed--mobile .brz-lh-xs-im-4_4{line-height:4.4em!important}
4690
+ .brz-ed.brz-ed--mobile .brz-lh-xs-im-4_5{line-height:4.5em!important}
4691
+ .brz-ed.brz-ed--mobile .brz-lh-xs-im-4_6{line-height:4.6em!important}
4692
+ .brz-ed.brz-ed--mobile .brz-lh-xs-im-4_7{line-height:4.7em!important}
4693
+ .brz-ed.brz-ed--mobile .brz-lh-xs-im-4_8{line-height:4.8em!important}
4694
+ .brz-ed.brz-ed--mobile .brz-lh-xs-im-4_9{line-height:4.9em!important}
4695
+ .brz-ed.brz-ed--mobile .brz-lh-xs-im-5{line-height:5em!important}
4696
+ .brz-ed.brz-ed--mobile .brz-lh-xs-im-5_1{line-height:5.1em!important}
4697
+ .brz-ed.brz-ed--mobile .brz-lh-xs-im-5_2{line-height:5.2em!important}
4698
+ .brz-ed.brz-ed--mobile .brz-lh-xs-im-5_3{line-height:5.3em!important}
4699
+ .brz-ed.brz-ed--mobile .brz-lh-xs-im-5_4{line-height:5.4em!important}
4700
+ .brz-ed.brz-ed--mobile .brz-lh-xs-im-5_5{line-height:5.5em!important}
4701
+ .brz-ed.brz-ed--mobile .brz-lh-xs-im-5_6{line-height:5.6em!important}
4702
+ .brz-ed.brz-ed--mobile .brz-lh-xs-im-5_7{line-height:5.7em!important}
4703
+ .brz-ed.brz-ed--mobile .brz-lh-xs-im-5_8{line-height:5.8em!important}
4704
+ .brz-ed.brz-ed--mobile .brz-lh-xs-im-5_9{line-height:5.9em!important}
4705
+ .brz-ed.brz-ed--mobile .brz-fw-xs-im-100{font-weight:100!important}
4706
+ .brz-ed.brz-ed--mobile .brz-fw-xs-im-200{font-weight:200!important}
4707
+ .brz-ed.brz-ed--mobile .brz-fw-xs-im-300{font-weight:300!important}
4708
+ .brz-ed.brz-ed--mobile .brz-fw-xs-im-400{font-weight:400!important}
4709
+ .brz-ed.brz-ed--mobile .brz-fw-xs-im-500{font-weight:500!important}
4710
+ .brz-ed.brz-ed--mobile .brz-fw-xs-im-600{font-weight:600!important}
4711
+ .brz-ed.brz-ed--mobile .brz-fw-xs-im-700{font-weight:700!important}
4712
+ .brz-ed.brz-ed--mobile .brz-fw-xs-im-800{font-weight:800!important}
4713
+ .brz-ed.brz-ed--mobile .brz-fw-xs-im-900{font-weight:900!important}
4714
+ .brz-ed.brz-ed--mobile .brz-fw-xs-im-1000{font-weight:1000!important}
4715
+ .brz-ed.brz-ed--mobile .brz-fw-xs-im-1100{font-weight:1100!important}
4716
+ .brz-ed.brz-ed--mobile .brz-fw-xs-im-1200{font-weight:1200!important}
4717
+ .brz-ed.brz-ed--mobile .brz-fw-xs-im-1300{font-weight:1300!important}
4718
+ .brz-ed.brz-ed--mobile .brz-fw-xs-im-1400{font-weight:1400!important}
4719
+ .brz-ed.brz-ed--mobile .brz-fw-xs-im-1500{font-weight:1500!important}
4720
+ .brz-ed.brz-ed--mobile .brz-fw-xs-im-1600{font-weight:1600!important}
4721
+ .brz-ed.brz-ed--mobile .brz-fw-xs-im-1700{font-weight:1700!important}
4722
+ .brz-ed.brz-ed--mobile .brz-fw-xs-im-1800{font-weight:1800!important}
4723
+ .brz-ed.brz-ed--mobile .brz-fw-xs-im-1900{font-weight:1900!important}
4724
+ .brz-ed.brz-ed--mobile .brz-fw-xs-im-2000{font-weight:2000!important}
4725
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_20{letter-spacing:-20px!important}
4726
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_20_5{letter-spacing:-20.5px!important}
4727
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_19{letter-spacing:-19px!important}
4728
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_19_5{letter-spacing:-19.5px!important}
4729
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_18{letter-spacing:-18px!important}
4730
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_18_5{letter-spacing:-18.5px!important}
4731
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_17{letter-spacing:-17px!important}
4732
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_17_5{letter-spacing:-17.5px!important}
4733
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_16{letter-spacing:-16px!important}
4734
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_16_5{letter-spacing:-16.5px!important}
4735
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_15{letter-spacing:-15px!important}
4736
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_15_5{letter-spacing:-15.5px!important}
4737
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_14{letter-spacing:-14px!important}
4738
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_14_5{letter-spacing:-14.5px!important}
4739
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_13{letter-spacing:-13px!important}
4740
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_13_5{letter-spacing:-13.5px!important}
4741
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_12{letter-spacing:-12px!important}
4742
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_12_5{letter-spacing:-12.5px!important}
4743
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_11{letter-spacing:-11px!important}
4744
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_11_5{letter-spacing:-11.5px!important}
4745
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_10{letter-spacing:-10px!important}
4746
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_10_5{letter-spacing:-10.5px!important}
4747
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_9{letter-spacing:-9px!important}
4748
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_9_5{letter-spacing:-9.5px!important}
4749
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_8{letter-spacing:-8px!important}
4750
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_8_5{letter-spacing:-8.5px!important}
4751
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_7{letter-spacing:-7px!important}
4752
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_7_5{letter-spacing:-7.5px!important}
4753
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_6{letter-spacing:-6px!important}
4754
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_6_5{letter-spacing:-6.5px!important}
4755
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_5{letter-spacing:-5px!important}
4756
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_5_5{letter-spacing:-5.5px!important}
4757
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_4{letter-spacing:-4px!important}
4758
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_4_5{letter-spacing:-4.5px!important}
4759
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_3{letter-spacing:-3px!important}
4760
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_3_5{letter-spacing:-3.5px!important}
4761
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_2{letter-spacing:-2px!important}
4762
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_2_5{letter-spacing:-2.5px!important}
4763
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_1{letter-spacing:-1px!important}
4764
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_1_5{letter-spacing:-1.5px!important}
4765
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_0{letter-spacing:0!important}
4766
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-m_0_5{letter-spacing:-.5px!important}
4767
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-0{letter-spacing:0!important}
4768
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-0_5{letter-spacing:.5px!important}
4769
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-1{letter-spacing:1px!important}
4770
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-1_5{letter-spacing:1.5px!important}
4771
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-2{letter-spacing:2px!important}
4772
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-2_5{letter-spacing:2.5px!important}
4773
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-3{letter-spacing:3px!important}
4774
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-3_5{letter-spacing:3.5px!important}
4775
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-4{letter-spacing:4px!important}
4776
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-4_5{letter-spacing:4.5px!important}
4777
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-5{letter-spacing:5px!important}
4778
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-5_5{letter-spacing:5.5px!important}
4779
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-6{letter-spacing:6px!important}
4780
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-6_5{letter-spacing:6.5px!important}
4781
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-7{letter-spacing:7px!important}
4782
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-7_5{letter-spacing:7.5px!important}
4783
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-8{letter-spacing:8px!important}
4784
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-8_5{letter-spacing:8.5px!important}
4785
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-9{letter-spacing:9px!important}
4786
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-9_5{letter-spacing:9.5px!important}
4787
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-10{letter-spacing:10px!important}
4788
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-10_5{letter-spacing:10.5px!important}
4789
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-11{letter-spacing:11px!important}
4790
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-11_5{letter-spacing:11.5px!important}
4791
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-12{letter-spacing:12px!important}
4792
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-12_5{letter-spacing:12.5px!important}
4793
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-13{letter-spacing:13px!important}
4794
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-13_5{letter-spacing:13.5px!important}
4795
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-14{letter-spacing:14px!important}
4796
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-14_5{letter-spacing:14.5px!important}
4797
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-15{letter-spacing:15px!important}
4798
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-15_5{letter-spacing:15.5px!important}
4799
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-16{letter-spacing:16px!important}
4800
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-16_5{letter-spacing:16.5px!important}
4801
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-17{letter-spacing:17px!important}
4802
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-17_5{letter-spacing:17.5px!important}
4803
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-18{letter-spacing:18px!important}
4804
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-18_5{letter-spacing:18.5px!important}
4805
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-19{letter-spacing:19px!important}
4806
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-19_5{letter-spacing:19.5px!important}
4807
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-20{letter-spacing:20px!important}
4808
+ .brz-ed.brz-ed--mobile .brz-ls-xs-im-20_5{letter-spacing:20.5px!important}
4809
+ .brz-ed .brz-mt-lg-0{margin-top:0!important}
4810
+ .brz-ed .brz-mt-lg-1{margin-top:1px!important}
4811
+ .brz-ed .brz-mt-lg-2{margin-top:2px!important}
4812
+ .brz-ed .brz-mt-lg-3{margin-top:3px!important}
4813
+ .brz-ed .brz-mt-lg-4{margin-top:4px!important}
4814
+ .brz-ed .brz-mt-lg-5{margin-top:5px!important}
4815
+ .brz-ed .brz-mt-lg-6{margin-top:6px!important}
4816
+ .brz-ed .brz-mt-lg-7{margin-top:7px!important}
4817
+ .brz-ed .brz-mt-lg-8{margin-top:8px!important}
4818
+ .brz-ed .brz-mt-lg-9{margin-top:9px!important}
4819
+ .brz-ed .brz-mt-lg-10{margin-top:10px!important}
4820
+ .brz-ed .brz-mt-lg-11{margin-top:11px!important}
4821
+ .brz-ed .brz-mt-lg-12{margin-top:12px!important}
4822
+ .brz-ed .brz-mt-lg-13{margin-top:13px!important}
4823
+ .brz-ed .brz-mt-lg-14{margin-top:14px!important}
4824
+ .brz-ed .brz-mt-lg-15{margin-top:15px!important}
4825
+ .brz-ed .brz-mt-lg-16{margin-top:16px!important}
4826
+ .brz-ed .brz-mt-lg-17{margin-top:17px!important}
4827
+ .brz-ed .brz-mt-lg-18{margin-top:18px!important}
4828
+ .brz-ed .brz-mt-lg-19{margin-top:19px!important}
4829
+ .brz-ed .brz-mt-lg-20{margin-top:20px!important}
4830
+ .brz-ed .brz-mt-lg-21{margin-top:21px!important}
4831
+ .brz-ed .brz-mt-lg-22{margin-top:22px!important}
4832
+ .brz-ed .brz-mt-lg-23{margin-top:23px!important}
4833
+ .brz-ed .brz-mt-lg-24{margin-top:24px!important}
4834
+ .brz-ed .brz-mt-lg-25{margin-top:25px!important}
4835
+ .brz-ed .brz-mt-lg-26{margin-top:26px!important}
4836
+ .brz-ed .brz-mt-lg-27{margin-top:27px!important}
4837
+ .brz-ed .brz-mt-lg-28{margin-top:28px!important}
4838
+ .brz-ed .brz-mt-lg-29{margin-top:29px!important}
4839
+ .brz-ed .brz-mt-lg-30{margin-top:30px!important}
4840
+ .brz-ed .brz-mt-lg-31{margin-top:31px!important}
4841
+ .brz-ed .brz-mt-lg-32{margin-top:32px!important}
4842
+ .brz-ed .brz-mt-lg-33{margin-top:33px!important}
4843
+ .brz-ed .brz-mt-lg-34{margin-top:34px!important}
4844
+ .brz-ed .brz-mt-lg-35{margin-top:35px!important}
4845
+ .brz-ed .brz-mt-lg-36{margin-top:36px!important}
4846
+ .brz-ed .brz-mt-lg-37{margin-top:37px!important}
4847
+ .brz-ed .brz-mt-lg-38{margin-top:38px!important}
4848
+ .brz-ed .brz-mt-lg-39{margin-top:39px!important}
4849
+ .brz-ed .brz-mt-lg-40{margin-top:40px!important}
4850
+ .brz-ed .brz-mt-lg-41{margin-top:41px!important}
4851
+ .brz-ed .brz-mt-lg-42{margin-top:42px!important}
4852
+ .brz-ed .brz-mt-lg-43{margin-top:43px!important}
4853
+ .brz-ed .brz-mt-lg-44{margin-top:44px!important}
4854
+ .brz-ed .brz-mt-lg-45{margin-top:45px!important}
4855
+ .brz-ed .brz-mt-lg-46{margin-top:46px!important}
4856
+ .brz-ed .brz-mt-lg-47{margin-top:47px!important}
4857
+ .brz-ed .brz-mt-lg-48{margin-top:48px!important}
4858
+ .brz-ed .brz-mt-lg-49{margin-top:49px!important}
4859
+ .brz-ed .brz-mt-lg-50{margin-top:50px!important}
4860
+ .brz-ed .brz-mt-lg-51{margin-top:51px!important}
4861
+ .brz-ed .brz-mt-lg-52{margin-top:52px!important}
4862
+ .brz-ed .brz-mt-lg-53{margin-top:53px!important}
4863
+ .brz-ed .brz-mt-lg-54{margin-top:54px!important}
4864
+ .brz-ed .brz-mt-lg-55{margin-top:55px!important}
4865
+ .brz-ed .brz-mt-lg-56{margin-top:56px!important}
4866
+ .brz-ed .brz-mt-lg-57{margin-top:57px!important}
4867
+ .brz-ed .brz-mt-lg-58{margin-top:58px!important}
4868
+ .brz-ed .brz-mt-lg-59{margin-top:59px!important}
4869
+ .brz-ed .brz-mt-lg-60{margin-top:60px!important}
4870
+ .brz-ed .brz-mt-lg-61{margin-top:61px!important}
4871
+ .brz-ed .brz-mt-lg-62{margin-top:62px!important}
4872
+ .brz-ed .brz-mt-lg-63{margin-top:63px!important}
4873
+ .brz-ed .brz-mt-lg-64{margin-top:64px!important}
4874
+ .brz-ed .brz-mt-lg-65{margin-top:65px!important}
4875
+ .brz-ed .brz-mt-lg-66{margin-top:66px!important}
4876
+ .brz-ed .brz-mt-lg-67{margin-top:67px!important}
4877
+ .brz-ed .brz-mt-lg-68{margin-top:68px!important}
4878
+ .brz-ed .brz-mt-lg-69{margin-top:69px!important}
4879
+ .brz-ed .brz-mt-lg-70{margin-top:70px!important}
4880
+ .brz-ed .brz-mt-lg-71{margin-top:71px!important}
4881
+ .brz-ed .brz-mt-lg-72{margin-top:72px!important}
4882
+ .brz-ed .brz-mt-lg-73{margin-top:73px!important}
4883
+ .brz-ed .brz-mt-lg-74{margin-top:74px!important}
4884
+ .brz-ed .brz-mt-lg-75{margin-top:75px!important}
4885
+ .brz-ed .brz-mt-lg-76{margin-top:76px!important}
4886
+ .brz-ed .brz-mt-lg-77{margin-top:77px!important}
4887
+ .brz-ed .brz-mt-lg-78{margin-top:78px!important}
4888
+ .brz-ed .brz-mt-lg-79{margin-top:79px!important}
4889
+ .brz-ed .brz-mt-lg-80{margin-top:80px!important}
4890
+ .brz-ed .brz-mt-lg-81{margin-top:81px!important}
4891
+ .brz-ed .brz-mt-lg-82{margin-top:82px!important}
4892
+ .brz-ed .brz-mt-lg-83{margin-top:83px!important}
4893
+ .brz-ed .brz-mt-lg-84{margin-top:84px!important}
4894
+ .brz-ed .brz-mt-lg-85{margin-top:85px!important}
4895
+ .brz-ed .brz-mt-lg-86{margin-top:86px!important}
4896
+ .brz-ed .brz-mt-lg-87{margin-top:87px!important}
4897
+ .brz-ed .brz-mt-lg-88{margin-top:88px!important}
4898
+ .brz-ed .brz-mt-lg-89{margin-top:89px!important}
4899
+ .brz-ed .brz-mt-lg-90{margin-top:90px!important}
4900
+ .brz-ed .brz-mt-lg-91{margin-top:91px!important}
4901
+ .brz-ed .brz-mt-lg-92{margin-top:92px!important}
4902
+ .brz-ed .brz-mt-lg-93{margin-top:93px!important}
4903
+ .brz-ed .brz-mt-lg-94{margin-top:94px!important}
4904
+ .brz-ed .brz-mt-lg-95{margin-top:95px!important}
4905
+ .brz-ed .brz-mt-lg-96{margin-top:96px!important}
4906
+ .brz-ed .brz-mt-lg-97{margin-top:97px!important}
4907
+ .brz-ed .brz-mt-lg-98{margin-top:98px!important}
4908
+ .brz-ed .brz-mt-lg-99{margin-top:99px!important}
4909
+ .brz-ed .brz-mt-lg-100{margin-top:100px!important}
4910
+ .brz-ed .brz-mb-lg-0{margin-bottom:0!important}
4911
+ .brz-ed .brz-mb-lg-1{margin-bottom:1px!important}
4912
+ .brz-ed .brz-mb-lg-2{margin-bottom:2px!important}
4913
+ .brz-ed .brz-mb-lg-3{margin-bottom:3px!important}
4914
+ .brz-ed .brz-mb-lg-4{margin-bottom:4px!important}
4915
+ .brz-ed .brz-mb-lg-5{margin-bottom:5px!important}
4916
+ .brz-ed .brz-mb-lg-6{margin-bottom:6px!important}
4917
+ .brz-ed .brz-mb-lg-7{margin-bottom:7px!important}
4918
+ .brz-ed .brz-mb-lg-8{margin-bottom:8px!important}
4919
+ .brz-ed .brz-mb-lg-9{margin-bottom:9px!important}
4920
+ .brz-ed .brz-mb-lg-10{margin-bottom:10px!important}
4921
+ .brz-ed .brz-mb-lg-11{margin-bottom:11px!important}
4922
+ .brz-ed .brz-mb-lg-12{margin-bottom:12px!important}
4923
+ .brz-ed .brz-mb-lg-13{margin-bottom:13px!important}
4924
+ .brz-ed .brz-mb-lg-14{margin-bottom:14px!important}
4925
+ .brz-ed .brz-mb-lg-15{margin-bottom:15px!important}
4926
+ .brz-ed .brz-mb-lg-16{margin-bottom:16px!important}
4927
+ .brz-ed .brz-mb-lg-17{margin-bottom:17px!important}
4928
+ .brz-ed .brz-mb-lg-18{margin-bottom:18px!important}
4929
+ .brz-ed .brz-mb-lg-19{margin-bottom:19px!important}
4930
+ .brz-ed .brz-mb-lg-20{margin-bottom:20px!important}
4931
+ .brz-ed .brz-mb-lg-21{margin-bottom:21px!important}
4932
+ .brz-ed .brz-mb-lg-22{margin-bottom:22px!important}
4933
+ .brz-ed .brz-mb-lg-23{margin-bottom:23px!important}
4934
+ .brz-ed .brz-mb-lg-24{margin-bottom:24px!important}
4935
+ .brz-ed .brz-mb-lg-25{margin-bottom:25px!important}
4936
+ .brz-ed .brz-mb-lg-26{margin-bottom:26px!important}
4937
+ .brz-ed .brz-mb-lg-27{margin-bottom:27px!important}
4938
+ .brz-ed .brz-mb-lg-28{margin-bottom:28px!important}
4939
+ .brz-ed .brz-mb-lg-29{margin-bottom:29px!important}
4940
+ .brz-ed .brz-mb-lg-30{margin-bottom:30px!important}
4941
+ .brz-ed .brz-mb-lg-31{margin-bottom:31px!important}
4942
+ .brz-ed .brz-mb-lg-32{margin-bottom:32px!important}
4943
+ .brz-ed .brz-mb-lg-33{margin-bottom:33px!important}
4944
+ .brz-ed .brz-mb-lg-34{margin-bottom:34px!important}
4945
+ .brz-ed .brz-mb-lg-35{margin-bottom:35px!important}
4946
+ .brz-ed .brz-mb-lg-36{margin-bottom:36px!important}
4947
+ .brz-ed .brz-mb-lg-37{margin-bottom:37px!important}
4948
+ .brz-ed .brz-mb-lg-38{margin-bottom:38px!important}
4949
+ .brz-ed .brz-mb-lg-39{margin-bottom:39px!important}
4950
+ .brz-ed .brz-mb-lg-40{margin-bottom:40px!important}
4951
+ .brz-ed .brz-mb-lg-41{margin-bottom:41px!important}
4952
+ .brz-ed .brz-mb-lg-42{margin-bottom:42px!important}
4953
+ .brz-ed .brz-mb-lg-43{margin-bottom:43px!important}
4954
+ .brz-ed .brz-mb-lg-44{margin-bottom:44px!important}
4955
+ .brz-ed .brz-mb-lg-45{margin-bottom:45px!important}
4956
+ .brz-ed .brz-mb-lg-46{margin-bottom:46px!important}
4957
+ .brz-ed .brz-mb-lg-47{margin-bottom:47px!important}
4958
+ .brz-ed .brz-mb-lg-48{margin-bottom:48px!important}
4959
+ .brz-ed .brz-mb-lg-49{margin-bottom:49px!important}
4960
+ .brz-ed .brz-mb-lg-50{margin-bottom:50px!important}
4961
+ .brz-ed .brz-mb-lg-51{margin-bottom:51px!important}
4962
+ .brz-ed .brz-mb-lg-52{margin-bottom:52px!important}
4963
+ .brz-ed .brz-mb-lg-53{margin-bottom:53px!important}
4964
+ .brz-ed .brz-mb-lg-54{margin-bottom:54px!important}
4965
+ .brz-ed .brz-mb-lg-55{margin-bottom:55px!important}
4966
+ .brz-ed .brz-mb-lg-56{margin-bottom:56px!important}
4967
+ .brz-ed .brz-mb-lg-57{margin-bottom:57px!important}
4968
+ .brz-ed .brz-mb-lg-58{margin-bottom:58px!important}
4969
+ .brz-ed .brz-mb-lg-59{margin-bottom:59px!important}
4970
+ .brz-ed .brz-mb-lg-60{margin-bottom:60px!important}
4971
+ .brz-ed .brz-mb-lg-61{margin-bottom:61px!important}
4972
+ .brz-ed .brz-mb-lg-62{margin-bottom:62px!important}
4973
+ .brz-ed .brz-mb-lg-63{margin-bottom:63px!important}
4974
+ .brz-ed .brz-mb-lg-64{margin-bottom:64px!important}
4975
+ .brz-ed .brz-mb-lg-65{margin-bottom:65px!important}
4976
+ .brz-ed .brz-mb-lg-66{margin-bottom:66px!important}
4977
+ .brz-ed .brz-mb-lg-67{margin-bottom:67px!important}
4978
+ .brz-ed .brz-mb-lg-68{margin-bottom:68px!important}
4979
+ .brz-ed .brz-mb-lg-69{margin-bottom:69px!important}
4980
+ .brz-ed .brz-mb-lg-70{margin-bottom:70px!important}
4981
+ .brz-ed .brz-mb-lg-71{margin-bottom:71px!important}
4982
+ .brz-ed .brz-mb-lg-72{margin-bottom:72px!important}
4983
+ .brz-ed .brz-mb-lg-73{margin-bottom:73px!important}
4984
+ .brz-ed .brz-mb-lg-74{margin-bottom:74px!important}
4985
+ .brz-ed .brz-mb-lg-75{margin-bottom:75px!important}
4986
+ .brz-ed .brz-mb-lg-76{margin-bottom:76px!important}
4987
+ .brz-ed .brz-mb-lg-77{margin-bottom:77px!important}
4988
+ .brz-ed .brz-mb-lg-78{margin-bottom:78px!important}
4989
+ .brz-ed .brz-mb-lg-79{margin-bottom:79px!important}
4990
+ .brz-ed .brz-mb-lg-80{margin-bottom:80px!important}
4991
+ .brz-ed .brz-mb-lg-81{margin-bottom:81px!important}
4992
+ .brz-ed .brz-mb-lg-82{margin-bottom:82px!important}
4993
+ .brz-ed .brz-mb-lg-83{margin-bottom:83px!important}
4994
+ .brz-ed .brz-mb-lg-84{margin-bottom:84px!important}
4995
+ .brz-ed .brz-mb-lg-85{margin-bottom:85px!important}
4996
+ .brz-ed .brz-mb-lg-86{margin-bottom:86px!important}
4997
+ .brz-ed .brz-mb-lg-87{margin-bottom:87px!important}
4998
+ .brz-ed .brz-mb-lg-88{margin-bottom:88px!important}
4999
+ .brz-ed .brz-mb-lg-89{margin-bottom:89px!important}
5000
+ .brz-ed .brz-mb-lg-90{margin-bottom:90px!important}
5001
+ .brz-ed .brz-mb-lg-91{margin-bottom:91px!important}
5002
+ .brz-ed .brz-mb-lg-92{margin-bottom:92px!important}
5003
+ .brz-ed .brz-mb-lg-93{margin-bottom:93px!important}
5004
+ .brz-ed .brz-mb-lg-94{margin-bottom:94px!important}
5005
+ .brz-ed .brz-mb-lg-95{margin-bottom:95px!important}
5006
+ .brz-ed .brz-mb-lg-96{margin-bottom:96px!important}
5007
+ .brz-ed .brz-mb-lg-97{margin-bottom:97px!important}
5008
+ .brz-ed .brz-mb-lg-98{margin-bottom:98px!important}
5009
+ .brz-ed .brz-mb-lg-99{margin-bottom:99px!important}
5010
+ .brz-ed .brz-mb-lg-100{margin-bottom:100px!important}
5011
+ .brz-ed.brz-ed--desktop .brz-mt-lg-0{margin-top:0!important}
5012
+ .brz-ed.brz-ed--desktop .brz-mt-lg-1{margin-top:1px!important}
5013
+ .brz-ed.brz-ed--desktop .brz-mt-lg-2{margin-top:2px!important}
5014
+ .brz-ed.brz-ed--desktop .brz-mt-lg-3{margin-top:3px!important}
5015
+ .brz-ed.brz-ed--desktop .brz-mt-lg-4{margin-top:4px!important}
5016
+ .brz-ed.brz-ed--desktop .brz-mt-lg-5{margin-top:5px!important}
5017
+ .brz-ed.brz-ed--desktop .brz-mt-lg-6{margin-top:6px!important}
5018
+ .brz-ed.brz-ed--desktop .brz-mt-lg-7{margin-top:7px!important}
5019
+ .brz-ed.brz-ed--desktop .brz-mt-lg-8{margin-top:8px!important}
5020
+ .brz-ed.brz-ed--desktop .brz-mt-lg-9{margin-top:9px!important}
5021
+ .brz-ed.brz-ed--desktop .brz-mt-lg-10{margin-top:10px!important}
5022
+ .brz-ed.brz-ed--desktop .brz-mt-lg-11{margin-top:11px!important}
5023
+ .brz-ed.brz-ed--desktop .brz-mt-lg-12{margin-top:12px!important}
5024
+ .brz-ed.brz-ed--desktop .brz-mt-lg-13{margin-top:13px!important}
5025
+ .brz-ed.brz-ed--desktop .brz-mt-lg-14{margin-top:14px!important}
5026
+ .brz-ed.brz-ed--desktop .brz-mt-lg-15{margin-top:15px!important}
5027
+ .brz-ed.brz-ed--desktop .brz-mt-lg-16{margin-top:16px!important}
5028
+ .brz-ed.brz-ed--desktop .brz-mt-lg-17{margin-top:17px!important}
5029
+ .brz-ed.brz-ed--desktop .brz-mt-lg-18{margin-top:18px!important}
5030
+ .brz-ed.brz-ed--desktop .brz-mt-lg-19{margin-top:19px!important}
5031
+ .brz-ed.brz-ed--desktop .brz-mt-lg-20{margin-top:20px!important}
5032
+ .brz-ed.brz-ed--desktop .brz-mt-lg-21{margin-top:21px!important}
5033
+ .brz-ed.brz-ed--desktop .brz-mt-lg-22{margin-top:22px!important}
5034
+ .brz-ed.brz-ed--desktop .brz-mt-lg-23{margin-top:23px!important}
5035
+ .brz-ed.brz-ed--desktop .brz-mt-lg-24{margin-top:24px!important}
5036
+ .brz-ed.brz-ed--desktop .brz-mt-lg-25{margin-top:25px!important}
5037
+ .brz-ed.brz-ed--desktop .brz-mt-lg-26{margin-top:26px!important}
5038
+ .brz-ed.brz-ed--desktop .brz-mt-lg-27{margin-top:27px!important}
5039
+ .brz-ed.brz-ed--desktop .brz-mt-lg-28{margin-top:28px!important}
5040
+ .brz-ed.brz-ed--desktop .brz-mt-lg-29{margin-top:29px!important}
5041
+ .brz-ed.brz-ed--desktop .brz-mt-lg-30{margin-top:30px!important}
5042
+ .brz-ed.brz-ed--desktop .brz-mt-lg-31{margin-top:31px!important}
5043
+ .brz-ed.brz-ed--desktop .brz-mt-lg-32{margin-top:32px!important}
5044
+ .brz-ed.brz-ed--desktop .brz-mt-lg-33{margin-top:33px!important}
5045
+ .brz-ed.brz-ed--desktop .brz-mt-lg-34{margin-top:34px!important}
5046
+ .brz-ed.brz-ed--desktop .brz-mt-lg-35{margin-top:35px!important}
5047
+ .brz-ed.brz-ed--desktop .brz-mt-lg-36{margin-top:36px!important}
5048
+ .brz-ed.brz-ed--desktop .brz-mt-lg-37{margin-top:37px!important}
5049
+ .brz-ed.brz-ed--desktop .brz-mt-lg-38{margin-top:38px!important}
5050
+ .brz-ed.brz-ed--desktop .brz-mt-lg-39{margin-top:39px!important}
5051
+ .brz-ed.brz-ed--desktop .brz-mt-lg-40{margin-top:40px!important}
5052
+ .brz-ed.brz-ed--desktop .brz-mt-lg-41{margin-top:41px!important}
5053
+ .brz-ed.brz-ed--desktop .brz-mt-lg-42{margin-top:42px!important}
5054
+ .brz-ed.brz-ed--desktop .brz-mt-lg-43{margin-top:43px!important}
5055
+ .brz-ed.brz-ed--desktop .brz-mt-lg-44{margin-top:44px!important}
5056
+ .brz-ed.brz-ed--desktop .brz-mt-lg-45{margin-top:45px!important}
5057
+ .brz-ed.brz-ed--desktop .brz-mt-lg-46{margin-top:46px!important}
5058
+ .brz-ed.brz-ed--desktop .brz-mt-lg-47{margin-top:47px!important}
5059
+ .brz-ed.brz-ed--desktop .brz-mt-lg-48{margin-top:48px!important}
5060
+ .brz-ed.brz-ed--desktop .brz-mt-lg-49{margin-top:49px!important}
5061
+ .brz-ed.brz-ed--desktop .brz-mt-lg-50{margin-top:50px!important}
5062
+ .brz-ed.brz-ed--desktop .brz-mt-lg-51{margin-top:51px!important}
5063
+ .brz-ed.brz-ed--desktop .brz-mt-lg-52{margin-top:52px!important}
5064
+ .brz-ed.brz-ed--desktop .brz-mt-lg-53{margin-top:53px!important}
5065
+ .brz-ed.brz-ed--desktop .brz-mt-lg-54{margin-top:54px!important}
5066
+ .brz-ed.brz-ed--desktop .brz-mt-lg-55{margin-top:55px!important}
5067
+ .brz-ed.brz-ed--desktop .brz-mt-lg-56{margin-top:56px!important}
5068
+ .brz-ed.brz-ed--desktop .brz-mt-lg-57{margin-top:57px!important}
5069
+ .brz-ed.brz-ed--desktop .brz-mt-lg-58{margin-top:58px!important}
5070
+ .brz-ed.brz-ed--desktop .brz-mt-lg-59{margin-top:59px!important}
5071
+ .brz-ed.brz-ed--desktop .brz-mt-lg-60{margin-top:60px!important}
5072
+ .brz-ed.brz-ed--desktop .brz-mt-lg-61{margin-top:61px!important}
5073
+ .brz-ed.brz-ed--desktop .brz-mt-lg-62{margin-top:62px!important}
5074
+ .brz-ed.brz-ed--desktop .brz-mt-lg-63{margin-top:63px!important}
5075
+ .brz-ed.brz-ed--desktop .brz-mt-lg-64{margin-top:64px!important}
5076
+ .brz-ed.brz-ed--desktop .brz-mt-lg-65{margin-top:65px!important}
5077
+ .brz-ed.brz-ed--desktop .brz-mt-lg-66{margin-top:66px!important}
5078
+ .brz-ed.brz-ed--desktop .brz-mt-lg-67{margin-top:67px!important}
5079
+ .brz-ed.brz-ed--desktop .brz-mt-lg-68{margin-top:68px!important}
5080
+ .brz-ed.brz-ed--desktop .brz-mt-lg-69{margin-top:69px!important}
5081
+ .brz-ed.brz-ed--desktop .brz-mt-lg-70{margin-top:70px!important}
5082
+ .brz-ed.brz-ed--desktop .brz-mt-lg-71{margin-top:71px!important}
5083
+ .brz-ed.brz-ed--desktop .brz-mt-lg-72{margin-top:72px!important}
5084
+ .brz-ed.brz-ed--desktop .brz-mt-lg-73{margin-top:73px!important}
5085
+ .brz-ed.brz-ed--desktop .brz-mt-lg-74{margin-top:74px!important}
5086
+ .brz-ed.brz-ed--desktop .brz-mt-lg-75{margin-top:75px!important}
5087
+ .brz-ed.brz-ed--desktop .brz-mt-lg-76{margin-top:76px!important}
5088
+ .brz-ed.brz-ed--desktop .brz-mt-lg-77{margin-top:77px!important}
5089
+ .brz-ed.brz-ed--desktop .brz-mt-lg-78{margin-top:78px!important}
5090
+ .brz-ed.brz-ed--desktop .brz-mt-lg-79{margin-top:79px!important}
5091
+ .brz-ed.brz-ed--desktop .brz-mt-lg-80{margin-top:80px!important}
5092
+ .brz-ed.brz-ed--desktop .brz-mt-lg-81{margin-top:81px!important}
5093
+ .brz-ed.brz-ed--desktop .brz-mt-lg-82{margin-top:82px!important}
5094
+ .brz-ed.brz-ed--desktop .brz-mt-lg-83{margin-top:83px!important}
5095
+ .brz-ed.brz-ed--desktop .brz-mt-lg-84{margin-top:84px!important}
5096
+ .brz-ed.brz-ed--desktop .brz-mt-lg-85{margin-top:85px!important}
5097
+ .brz-ed.brz-ed--desktop .brz-mt-lg-86{margin-top:86px!important}
5098
+ .brz-ed.brz-ed--desktop .brz-mt-lg-87{margin-top:87px!important}
5099
+ .brz-ed.brz-ed--desktop .brz-mt-lg-88{margin-top:88px!important}
5100
+ .brz-ed.brz-ed--desktop .brz-mt-lg-89{margin-top:89px!important}
5101
+ .brz-ed.brz-ed--desktop .brz-mt-lg-90{margin-top:90px!important}
5102
+ .brz-ed.brz-ed--desktop .brz-mt-lg-91{margin-top:91px!important}
5103
+ .brz-ed.brz-ed--desktop .brz-mt-lg-92{margin-top:92px!important}
5104
+ .brz-ed.brz-ed--desktop .brz-mt-lg-93{margin-top:93px!important}
5105
+ .brz-ed.brz-ed--desktop .brz-mt-lg-94{margin-top:94px!important}
5106
+ .brz-ed.brz-ed--desktop .brz-mt-lg-95{margin-top:95px!important}
5107
+ .brz-ed.brz-ed--desktop .brz-mt-lg-96{margin-top:96px!important}
5108
+ .brz-ed.brz-ed--desktop .brz-mt-lg-97{margin-top:97px!important}
5109
+ .brz-ed.brz-ed--desktop .brz-mt-lg-98{margin-top:98px!important}
5110
+ .brz-ed.brz-ed--desktop .brz-mt-lg-99{margin-top:99px!important}
5111
+ .brz-ed.brz-ed--desktop .brz-mt-lg-100{margin-top:100px!important}
5112
+ .brz-ed.brz-ed--desktop .brz-mb-lg-0{margin-bottom:0!important}
5113
+ .brz-ed.brz-ed--desktop .brz-mb-lg-1{margin-bottom:1px!important}
5114
+ .brz-ed.brz-ed--desktop .brz-mb-lg-2{margin-bottom:2px!important}
5115
+ .brz-ed.brz-ed--desktop .brz-mb-lg-3{margin-bottom:3px!important}
5116
+ .brz-ed.brz-ed--desktop .brz-mb-lg-4{margin-bottom:4px!important}
5117
+ .brz-ed.brz-ed--desktop .brz-mb-lg-5{margin-bottom:5px!important}
5118
+ .brz-ed.brz-ed--desktop .brz-mb-lg-6{margin-bottom:6px!important}
5119
+ .brz-ed.brz-ed--desktop .brz-mb-lg-7{margin-bottom:7px!important}
5120
+ .brz-ed.brz-ed--desktop .brz-mb-lg-8{margin-bottom:8px!important}
5121
+ .brz-ed.brz-ed--desktop .brz-mb-lg-9{margin-bottom:9px!important}
5122
+ .brz-ed.brz-ed--desktop .brz-mb-lg-10{margin-bottom:10px!important}
5123
+ .brz-ed.brz-ed--desktop .brz-mb-lg-11{margin-bottom:11px!important}
5124
+ .brz-ed.brz-ed--desktop .brz-mb-lg-12{margin-bottom:12px!important}
5125
+ .brz-ed.brz-ed--desktop .brz-mb-lg-13{margin-bottom:13px!important}
5126
+ .brz-ed.brz-ed--desktop .brz-mb-lg-14{margin-bottom:14px!important}
5127
+ .brz-ed.brz-ed--desktop .brz-mb-lg-15{margin-bottom:15px!important}
5128
+ .brz-ed.brz-ed--desktop .brz-mb-lg-16{margin-bottom:16px!important}
5129
+ .brz-ed.brz-ed--desktop .brz-mb-lg-17{margin-bottom:17px!important}
5130
+ .brz-ed.brz-ed--desktop .brz-mb-lg-18{margin-bottom:18px!important}
5131
+ .brz-ed.brz-ed--desktop .brz-mb-lg-19{margin-bottom:19px!important}
5132
+ .brz-ed.brz-ed--desktop .brz-mb-lg-20{margin-bottom:20px!important}
5133
+ .brz-ed.brz-ed--desktop .brz-mb-lg-21{margin-bottom:21px!important}
5134
+ .brz-ed.brz-ed--desktop .brz-mb-lg-22{margin-bottom:22px!important}
5135
+ .brz-ed.brz-ed--desktop .brz-mb-lg-23{margin-bottom:23px!important}
5136
+ .brz-ed.brz-ed--desktop .brz-mb-lg-24{margin-bottom:24px!important}
5137
+ .brz-ed.brz-ed--desktop .brz-mb-lg-25{margin-bottom:25px!important}
5138
+ .brz-ed.brz-ed--desktop .brz-mb-lg-26{margin-bottom:26px!important}
5139
+ .brz-ed.brz-ed--desktop .brz-mb-lg-27{margin-bottom:27px!important}
5140
+ .brz-ed.brz-ed--desktop .brz-mb-lg-28{margin-bottom:28px!important}
5141
+ .brz-ed.brz-ed--desktop .brz-mb-lg-29{margin-bottom:29px!important}
5142
+ .brz-ed.brz-ed--desktop .brz-mb-lg-30{margin-bottom:30px!important}
5143
+ .brz-ed.brz-ed--desktop .brz-mb-lg-31{margin-bottom:31px!important}
5144
+ .brz-ed.brz-ed--desktop .brz-mb-lg-32{margin-bottom:32px!important}
5145
+ .brz-ed.brz-ed--desktop .brz-mb-lg-33{margin-bottom:33px!important}
5146
+ .brz-ed.brz-ed--desktop .brz-mb-lg-34{margin-bottom:34px!important}
5147
+ .brz-ed.brz-ed--desktop .brz-mb-lg-35{margin-bottom:35px!important}
5148
+ .brz-ed.brz-ed--desktop .brz-mb-lg-36{margin-bottom:36px!important}
5149
+ .brz-ed.brz-ed--desktop .brz-mb-lg-37{margin-bottom:37px!important}
5150
+ .brz-ed.brz-ed--desktop .brz-mb-lg-38{margin-bottom:38px!important}
5151
+ .brz-ed.brz-ed--desktop .brz-mb-lg-39{margin-bottom:39px!important}
5152
+ .brz-ed.brz-ed--desktop .brz-mb-lg-40{margin-bottom:40px!important}
5153
+ .brz-ed.brz-ed--desktop .brz-mb-lg-41{margin-bottom:41px!important}
5154
+ .brz-ed.brz-ed--desktop .brz-mb-lg-42{margin-bottom:42px!important}
5155
+ .brz-ed.brz-ed--desktop .brz-mb-lg-43{margin-bottom:43px!important}
5156
+ .brz-ed.brz-ed--desktop .brz-mb-lg-44{margin-bottom:44px!important}
5157
+ .brz-ed.brz-ed--desktop .brz-mb-lg-45{margin-bottom:45px!important}
5158
+ .brz-ed.brz-ed--desktop .brz-mb-lg-46{margin-bottom:46px!important}
5159
+ .brz-ed.brz-ed--desktop .brz-mb-lg-47{margin-bottom:47px!important}
5160
+ .brz-ed.brz-ed--desktop .brz-mb-lg-48{margin-bottom:48px!important}
5161
+ .brz-ed.brz-ed--desktop .brz-mb-lg-49{margin-bottom:49px!important}
5162
+ .brz-ed.brz-ed--desktop .brz-mb-lg-50{margin-bottom:50px!important}
5163
+ .brz-ed.brz-ed--desktop .brz-mb-lg-51{margin-bottom:51px!important}
5164
+ .brz-ed.brz-ed--desktop .brz-mb-lg-52{margin-bottom:52px!important}
5165
+ .brz-ed.brz-ed--desktop .brz-mb-lg-53{margin-bottom:53px!important}
5166
+ .brz-ed.brz-ed--desktop .brz-mb-lg-54{margin-bottom:54px!important}
5167
+ .brz-ed.brz-ed--desktop .brz-mb-lg-55{margin-bottom:55px!important}
5168
+ .brz-ed.brz-ed--desktop .brz-mb-lg-56{margin-bottom:56px!important}
5169
+ .brz-ed.brz-ed--desktop .brz-mb-lg-57{margin-bottom:57px!important}
5170
+ .brz-ed.brz-ed--desktop .brz-mb-lg-58{margin-bottom:58px!important}
5171
+ .brz-ed.brz-ed--desktop .brz-mb-lg-59{margin-bottom:59px!important}
5172
+ .brz-ed.brz-ed--desktop .brz-mb-lg-60{margin-bottom:60px!important}
5173
+ .brz-ed.brz-ed--desktop .brz-mb-lg-61{margin-bottom:61px!important}
5174
+ .brz-ed.brz-ed--desktop .brz-mb-lg-62{margin-bottom:62px!important}
5175
+ .brz-ed.brz-ed--desktop .brz-mb-lg-63{margin-bottom:63px!important}
5176
+ .brz-ed.brz-ed--desktop .brz-mb-lg-64{margin-bottom:64px!important}
5177
+ .brz-ed.brz-ed--desktop .brz-mb-lg-65{margin-bottom:65px!important}
5178
+ .brz-ed.brz-ed--desktop .brz-mb-lg-66{margin-bottom:66px!important}
5179
+ .brz-ed.brz-ed--desktop .brz-mb-lg-67{margin-bottom:67px!important}
5180
+ .brz-ed.brz-ed--desktop .brz-mb-lg-68{margin-bottom:68px!important}
5181
+ .brz-ed.brz-ed--desktop .brz-mb-lg-69{margin-bottom:69px!important}
5182
+ .brz-ed.brz-ed--desktop .brz-mb-lg-70{margin-bottom:70px!important}
5183
+ .brz-ed.brz-ed--desktop .brz-mb-lg-71{margin-bottom:71px!important}
5184
+ .brz-ed.brz-ed--desktop .brz-mb-lg-72{margin-bottom:72px!important}
5185
+ .brz-ed.brz-ed--desktop .brz-mb-lg-73{margin-bottom:73px!important}
5186
+ .brz-ed.brz-ed--desktop .brz-mb-lg-74{margin-bottom:74px!important}
5187
+ .brz-ed.brz-ed--desktop .brz-mb-lg-75{margin-bottom:75px!important}
5188
+ .brz-ed.brz-ed--desktop .brz-mb-lg-76{margin-bottom:76px!important}
5189
+ .brz-ed.brz-ed--desktop .brz-mb-lg-77{margin-bottom:77px!important}
5190
+ .brz-ed.brz-ed--desktop .brz-mb-lg-78{margin-bottom:78px!important}
5191
+ .brz-ed.brz-ed--desktop .brz-mb-lg-79{margin-bottom:79px!important}
5192
+ .brz-ed.brz-ed--desktop .brz-mb-lg-80{margin-bottom:80px!important}
5193
+ .brz-ed.brz-ed--desktop .brz-mb-lg-81{margin-bottom:81px!important}
5194
+ .brz-ed.brz-ed--desktop .brz-mb-lg-82{margin-bottom:82px!important}
5195
+ .brz-ed.brz-ed--desktop .brz-mb-lg-83{margin-bottom:83px!important}
5196
+ .brz-ed.brz-ed--desktop .brz-mb-lg-84{margin-bottom:84px!important}
5197
+ .brz-ed.brz-ed--desktop .brz-mb-lg-85{margin-bottom:85px!important}
5198
+ .brz-ed.brz-ed--desktop .brz-mb-lg-86{margin-bottom:86px!important}
5199
+ .brz-ed.brz-ed--desktop .brz-mb-lg-87{margin-bottom:87px!important}
5200
+ .brz-ed.brz-ed--desktop .brz-mb-lg-88{margin-bottom:88px!important}
5201
+ .brz-ed.brz-ed--desktop .brz-mb-lg-89{margin-bottom:89px!important}
5202
+ .brz-ed.brz-ed--desktop .brz-mb-lg-90{margin-bottom:90px!important}
5203
+ .brz-ed.brz-ed--desktop .brz-mb-lg-91{margin-bottom:91px!important}
5204
+ .brz-ed.brz-ed--desktop .brz-mb-lg-92{margin-bottom:92px!important}
5205
+ .brz-ed.brz-ed--desktop .brz-mb-lg-93{margin-bottom:93px!important}
5206
+ .brz-ed.brz-ed--desktop .brz-mb-lg-94{margin-bottom:94px!important}
5207
+ .brz-ed.brz-ed--desktop .brz-mb-lg-95{margin-bottom:95px!important}
5208
+ .brz-ed.brz-ed--desktop .brz-mb-lg-96{margin-bottom:96px!important}
5209
+ .brz-ed.brz-ed--desktop .brz-mb-lg-97{margin-bottom:97px!important}
5210
+ .brz-ed.brz-ed--desktop .brz-mb-lg-98{margin-bottom:98px!important}
5211
+ .brz-ed.brz-ed--desktop .brz-mb-lg-99{margin-bottom:99px!important}
5212
+ .brz-ed.brz-ed--desktop .brz-mb-lg-100{margin-bottom:100px!important}
5213
+ .brz-ed.brz-ed--tablet .brz-mt-sm-0{margin-top:0!important}
5214
+ .brz-ed.brz-ed--tablet .brz-mt-sm-1{margin-top:1px!important}
5215
+ .brz-ed.brz-ed--tablet .brz-mt-sm-2{margin-top:2px!important}
5216
+ .brz-ed.brz-ed--tablet .brz-mt-sm-3{margin-top:3px!important}
5217
+ .brz-ed.brz-ed--tablet .brz-mt-sm-4{margin-top:4px!important}
5218
+ .brz-ed.brz-ed--tablet .brz-mt-sm-5{margin-top:5px!important}
5219
+ .brz-ed.brz-ed--tablet .brz-mt-sm-6{margin-top:6px!important}
5220
+ .brz-ed.brz-ed--tablet .brz-mt-sm-7{margin-top:7px!important}
5221
+ .brz-ed.brz-ed--tablet .brz-mt-sm-8{margin-top:8px!important}
5222
+ .brz-ed.brz-ed--tablet .brz-mt-sm-9{margin-top:9px!important}
5223
+ .brz-ed.brz-ed--tablet .brz-mt-sm-10{margin-top:10px!important}
5224
+ .brz-ed.brz-ed--tablet .brz-mt-sm-11{margin-top:11px!important}
5225
+ .brz-ed.brz-ed--tablet .brz-mt-sm-12{margin-top:12px!important}
5226
+ .brz-ed.brz-ed--tablet .brz-mt-sm-13{margin-top:13px!important}
5227
+ .brz-ed.brz-ed--tablet .brz-mt-sm-14{margin-top:14px!important}
5228
+ .brz-ed.brz-ed--tablet .brz-mt-sm-15{margin-top:15px!important}
5229
+ .brz-ed.brz-ed--tablet .brz-mt-sm-16{margin-top:16px!important}
5230
+ .brz-ed.brz-ed--tablet .brz-mt-sm-17{margin-top:17px!important}
5231
+ .brz-ed.brz-ed--tablet .brz-mt-sm-18{margin-top:18px!important}
5232
+ .brz-ed.brz-ed--tablet .brz-mt-sm-19{margin-top:19px!important}
5233
+ .brz-ed.brz-ed--tablet .brz-mt-sm-20{margin-top:20px!important}
5234
+ .brz-ed.brz-ed--tablet .brz-mt-sm-21{margin-top:21px!important}
5235
+ .brz-ed.brz-ed--tablet .brz-mt-sm-22{margin-top:22px!important}
5236
+ .brz-ed.brz-ed--tablet .brz-mt-sm-23{margin-top:23px!important}
5237
+ .brz-ed.brz-ed--tablet .brz-mt-sm-24{margin-top:24px!important}
5238
+ .brz-ed.brz-ed--tablet .brz-mt-sm-25{margin-top:25px!important}
5239
+ .brz-ed.brz-ed--tablet .brz-mt-sm-26{margin-top:26px!important}
5240
+ .brz-ed.brz-ed--tablet .brz-mt-sm-27{margin-top:27px!important}
5241
+ .brz-ed.brz-ed--tablet .brz-mt-sm-28{margin-top:28px!important}
5242
+ .brz-ed.brz-ed--tablet .brz-mt-sm-29{margin-top:29px!important}
5243
+ .brz-ed.brz-ed--tablet .brz-mt-sm-30{margin-top:30px!important}
5244
+ .brz-ed.brz-ed--tablet .brz-mt-sm-31{margin-top:31px!important}
5245
+ .brz-ed.brz-ed--tablet .brz-mt-sm-32{margin-top:32px!important}
5246
+ .brz-ed.brz-ed--tablet .brz-mt-sm-33{margin-top:33px!important}
5247
+ .brz-ed.brz-ed--tablet .brz-mt-sm-34{margin-top:34px!important}
5248
+ .brz-ed.brz-ed--tablet .brz-mt-sm-35{margin-top:35px!important}
5249
+ .brz-ed.brz-ed--tablet .brz-mt-sm-36{margin-top:36px!important}
5250
+ .brz-ed.brz-ed--tablet .brz-mt-sm-37{margin-top:37px!important}
5251
+ .brz-ed.brz-ed--tablet .brz-mt-sm-38{margin-top:38px!important}
5252
+ .brz-ed.brz-ed--tablet .brz-mt-sm-39{margin-top:39px!important}
5253
+ .brz-ed.brz-ed--tablet .brz-mt-sm-40{margin-top:40px!important}
5254
+ .brz-ed.brz-ed--tablet .brz-mt-sm-41{margin-top:41px!important}
5255
+ .brz-ed.brz-ed--tablet .brz-mt-sm-42{margin-top:42px!important}
5256
+ .brz-ed.brz-ed--tablet .brz-mt-sm-43{margin-top:43px!important}
5257
+ .brz-ed.brz-ed--tablet .brz-mt-sm-44{margin-top:44px!important}
5258
+ .brz-ed.brz-ed--tablet .brz-mt-sm-45{margin-top:45px!important}
5259
+ .brz-ed.brz-ed--tablet .brz-mt-sm-46{margin-top:46px!important}
5260
+ .brz-ed.brz-ed--tablet .brz-mt-sm-47{margin-top:47px!important}
5261
+ .brz-ed.brz-ed--tablet .brz-mt-sm-48{margin-top:48px!important}
5262
+ .brz-ed.brz-ed--tablet .brz-mt-sm-49{margin-top:49px!important}
5263
+ .brz-ed.brz-ed--tablet .brz-mt-sm-50{margin-top:50px!important}
5264
+ .brz-ed.brz-ed--tablet .brz-mt-sm-51{margin-top:51px!important}
5265
+ .brz-ed.brz-ed--tablet .brz-mt-sm-52{margin-top:52px!important}
5266
+ .brz-ed.brz-ed--tablet .brz-mt-sm-53{margin-top:53px!important}
5267
+ .brz-ed.brz-ed--tablet .brz-mt-sm-54{margin-top:54px!important}
5268
+ .brz-ed.brz-ed--tablet .brz-mt-sm-55{margin-top:55px!important}
5269
+ .brz-ed.brz-ed--tablet .brz-mt-sm-56{margin-top:56px!important}
5270
+ .brz-ed.brz-ed--tablet .brz-mt-sm-57{margin-top:57px!important}
5271
+ .brz-ed.brz-ed--tablet .brz-mt-sm-58{margin-top:58px!important}
5272
+ .brz-ed.brz-ed--tablet .brz-mt-sm-59{margin-top:59px!important}
5273
+ .brz-ed.brz-ed--tablet .brz-mt-sm-60{margin-top:60px!important}
5274
+ .brz-ed.brz-ed--tablet .brz-mt-sm-61{margin-top:61px!important}
5275
+ .brz-ed.brz-ed--tablet .brz-mt-sm-62{margin-top:62px!important}
5276
+ .brz-ed.brz-ed--tablet .brz-mt-sm-63{margin-top:63px!important}
5277
+ .brz-ed.brz-ed--tablet .brz-mt-sm-64{margin-top:64px!important}
5278
+ .brz-ed.brz-ed--tablet .brz-mt-sm-65{margin-top:65px!important}
5279
+ .brz-ed.brz-ed--tablet .brz-mt-sm-66{margin-top:66px!important}
5280
+ .brz-ed.brz-ed--tablet .brz-mt-sm-67{margin-top:67px!important}
5281
+ .brz-ed.brz-ed--tablet .brz-mt-sm-68{margin-top:68px!important}
5282
+ .brz-ed.brz-ed--tablet .brz-mt-sm-69{margin-top:69px!important}
5283
+ .brz-ed.brz-ed--tablet .brz-mt-sm-70{margin-top:70px!important}
5284
+ .brz-ed.brz-ed--tablet .brz-mt-sm-71{margin-top:71px!important}
5285
+ .brz-ed.brz-ed--tablet .brz-mt-sm-72{margin-top:72px!important}
5286
+ .brz-ed.brz-ed--tablet .brz-mt-sm-73{margin-top:73px!important}
5287
+ .brz-ed.brz-ed--tablet .brz-mt-sm-74{margin-top:74px!important}
5288
+ .brz-ed.brz-ed--tablet .brz-mt-sm-75{margin-top:75px!important}
5289
+ .brz-ed.brz-ed--tablet .brz-mt-sm-76{margin-top:76px!important}
5290
+ .brz-ed.brz-ed--tablet .brz-mt-sm-77{margin-top:77px!important}
5291
+ .brz-ed.brz-ed--tablet .brz-mt-sm-78{margin-top:78px!important}
5292
+ .brz-ed.brz-ed--tablet .brz-mt-sm-79{margin-top:79px!important}
5293
+ .brz-ed.brz-ed--tablet .brz-mt-sm-80{margin-top:80px!important}
5294
+ .brz-ed.brz-ed--tablet .brz-mt-sm-81{margin-top:81px!important}
5295
+ .brz-ed.brz-ed--tablet .brz-mt-sm-82{margin-top:82px!important}
5296
+ .brz-ed.brz-ed--tablet .brz-mt-sm-83{margin-top:83px!important}
5297
+ .brz-ed.brz-ed--tablet .brz-mt-sm-84{margin-top:84px!important}
5298
+ .brz-ed.brz-ed--tablet .brz-mt-sm-85{margin-top:85px!important}
5299
+ .brz-ed.brz-ed--tablet .brz-mt-sm-86{margin-top:86px!important}
5300
+ .brz-ed.brz-ed--tablet .brz-mt-sm-87{margin-top:87px!important}
5301
+ .brz-ed.brz-ed--tablet .brz-mt-sm-88{margin-top:88px!important}
5302
+ .brz-ed.brz-ed--tablet .brz-mt-sm-89{margin-top:89px!important}
5303
+ .brz-ed.brz-ed--tablet .brz-mt-sm-90{margin-top:90px!important}
5304
+ .brz-ed.brz-ed--tablet .brz-mt-sm-91{margin-top:91px!important}
5305
+ .brz-ed.brz-ed--tablet .brz-mt-sm-92{margin-top:92px!important}
5306
+ .brz-ed.brz-ed--tablet .brz-mt-sm-93{margin-top:93px!important}
5307
+ .brz-ed.brz-ed--tablet .brz-mt-sm-94{margin-top:94px!important}
5308
+ .brz-ed.brz-ed--tablet .brz-mt-sm-95{margin-top:95px!important}
5309
+ .brz-ed.brz-ed--tablet .brz-mt-sm-96{margin-top:96px!important}
5310
+ .brz-ed.brz-ed--tablet .brz-mt-sm-97{margin-top:97px!important}
5311
+ .brz-ed.brz-ed--tablet .brz-mt-sm-98{margin-top:98px!important}
5312
+ .brz-ed.brz-ed--tablet .brz-mt-sm-99{margin-top:99px!important}
5313
+ .brz-ed.brz-ed--tablet .brz-mt-sm-100{margin-top:100px!important}
5314
+ .brz-ed.brz-ed--tablet .brz-mb-sm-0{margin-bottom:0!important}
5315
+ .brz-ed.brz-ed--tablet .brz-mb-sm-1{margin-bottom:1px!important}
5316
+ .brz-ed.brz-ed--tablet .brz-mb-sm-2{margin-bottom:2px!important}
5317
+ .brz-ed.brz-ed--tablet .brz-mb-sm-3{margin-bottom:3px!important}
5318
+ .brz-ed.brz-ed--tablet .brz-mb-sm-4{margin-bottom:4px!important}
5319
+ .brz-ed.brz-ed--tablet .brz-mb-sm-5{margin-bottom:5px!important}
5320
+ .brz-ed.brz-ed--tablet .brz-mb-sm-6{margin-bottom:6px!important}
5321
+ .brz-ed.brz-ed--tablet .brz-mb-sm-7{margin-bottom:7px!important}
5322
+ .brz-ed.brz-ed--tablet .brz-mb-sm-8{margin-bottom:8px!important}
5323
+ .brz-ed.brz-ed--tablet .brz-mb-sm-9{margin-bottom:9px!important}
5324
+ .brz-ed.brz-ed--tablet .brz-mb-sm-10{margin-bottom:10px!important}
5325
+ .brz-ed.brz-ed--tablet .brz-mb-sm-11{margin-bottom:11px!important}
5326
+ .brz-ed.brz-ed--tablet .brz-mb-sm-12{margin-bottom:12px!important}
5327
+ .brz-ed.brz-ed--tablet .brz-mb-sm-13{margin-bottom:13px!important}
5328
+ .brz-ed.brz-ed--tablet .brz-mb-sm-14{margin-bottom:14px!important}
5329
+ .brz-ed.brz-ed--tablet .brz-mb-sm-15{margin-bottom:15px!important}
5330
+ .brz-ed.brz-ed--tablet .brz-mb-sm-16{margin-bottom:16px!important}
5331
+ .brz-ed.brz-ed--tablet .brz-mb-sm-17{margin-bottom:17px!important}
5332
+ .brz-ed.brz-ed--tablet .brz-mb-sm-18{margin-bottom:18px!important}
5333
+ .brz-ed.brz-ed--tablet .brz-mb-sm-19{margin-bottom:19px!important}
5334
+ .brz-ed.brz-ed--tablet .brz-mb-sm-20{margin-bottom:20px!important}
5335
+ .brz-ed.brz-ed--tablet .brz-mb-sm-21{margin-bottom:21px!important}
5336
+ .brz-ed.brz-ed--tablet .brz-mb-sm-22{margin-bottom:22px!important}
5337
+ .brz-ed.brz-ed--tablet .brz-mb-sm-23{margin-bottom:23px!important}
5338
+ .brz-ed.brz-ed--tablet .brz-mb-sm-24{margin-bottom:24px!important}
5339
+ .brz-ed.brz-ed--tablet .brz-mb-sm-25{margin-bottom:25px!important}
5340
+ .brz-ed.brz-ed--tablet .brz-mb-sm-26{margin-bottom:26px!important}
5341
+ .brz-ed.brz-ed--tablet .brz-mb-sm-27{margin-bottom:27px!important}
5342
+ .brz-ed.brz-ed--tablet .brz-mb-sm-28{margin-bottom:28px!important}
5343
+ .brz-ed.brz-ed--tablet .brz-mb-sm-29{margin-bottom:29px!important}
5344
+ .brz-ed.brz-ed--tablet .brz-mb-sm-30{margin-bottom:30px!important}
5345
+ .brz-ed.brz-ed--tablet .brz-mb-sm-31{margin-bottom:31px!important}
5346
+ .brz-ed.brz-ed--tablet .brz-mb-sm-32{margin-bottom:32px!important}
5347
+ .brz-ed.brz-ed--tablet .brz-mb-sm-33{margin-bottom:33px!important}
5348
+ .brz-ed.brz-ed--tablet .brz-mb-sm-34{margin-bottom:34px!important}
5349
+ .brz-ed.brz-ed--tablet .brz-mb-sm-35{margin-bottom:35px!important}
5350
+ .brz-ed.brz-ed--tablet .brz-mb-sm-36{margin-bottom:36px!important}
5351
+ .brz-ed.brz-ed--tablet .brz-mb-sm-37{margin-bottom:37px!important}
5352
+ .brz-ed.brz-ed--tablet .brz-mb-sm-38{margin-bottom:38px!important}
5353
+ .brz-ed.brz-ed--tablet .brz-mb-sm-39{margin-bottom:39px!important}
5354
+ .brz-ed.brz-ed--tablet .brz-mb-sm-40{margin-bottom:40px!important}
5355
+ .brz-ed.brz-ed--tablet .brz-mb-sm-41{margin-bottom:41px!important}
5356
+ .brz-ed.brz-ed--tablet .brz-mb-sm-42{margin-bottom:42px!important}
5357
+ .brz-ed.brz-ed--tablet .brz-mb-sm-43{margin-bottom:43px!important}
5358
+ .brz-ed.brz-ed--tablet .brz-mb-sm-44{margin-bottom:44px!important}
5359
+ .brz-ed.brz-ed--tablet .brz-mb-sm-45{margin-bottom:45px!important}
5360
+ .brz-ed.brz-ed--tablet .brz-mb-sm-46{margin-bottom:46px!important}
5361
+ .brz-ed.brz-ed--tablet .brz-mb-sm-47{margin-bottom:47px!important}
5362
+ .brz-ed.brz-ed--tablet .brz-mb-sm-48{margin-bottom:48px!important}
5363
+ .brz-ed.brz-ed--tablet .brz-mb-sm-49{margin-bottom:49px!important}
5364
+ .brz-ed.brz-ed--tablet .brz-mb-sm-50{margin-bottom:50px!important}
5365
+ .brz-ed.brz-ed--tablet .brz-mb-sm-51{margin-bottom:51px!important}
5366
+ .brz-ed.brz-ed--tablet .brz-mb-sm-52{margin-bottom:52px!important}
5367
+ .brz-ed.brz-ed--tablet .brz-mb-sm-53{margin-bottom:53px!important}
5368
+ .brz-ed.brz-ed--tablet .brz-mb-sm-54{margin-bottom:54px!important}
5369
+ .brz-ed.brz-ed--tablet .brz-mb-sm-55{margin-bottom:55px!important}
5370
+ .brz-ed.brz-ed--tablet .brz-mb-sm-56{margin-bottom:56px!important}
5371
+ .brz-ed.brz-ed--tablet .brz-mb-sm-57{margin-bottom:57px!important}
5372
+ .brz-ed.brz-ed--tablet .brz-mb-sm-58{margin-bottom:58px!important}
5373
+ .brz-ed.brz-ed--tablet .brz-mb-sm-59{margin-bottom:59px!important}
5374
+ .brz-ed.brz-ed--tablet .brz-mb-sm-60{margin-bottom:60px!important}
5375
+ .brz-ed.brz-ed--tablet .brz-mb-sm-61{margin-bottom:61px!important}
5376
+ .brz-ed.brz-ed--tablet .brz-mb-sm-62{margin-bottom:62px!important}
5377
+ .brz-ed.brz-ed--tablet .brz-mb-sm-63{margin-bottom:63px!important}
5378
+ .brz-ed.brz-ed--tablet .brz-mb-sm-64{margin-bottom:64px!important}
5379
+ .brz-ed.brz-ed--tablet .brz-mb-sm-65{margin-bottom:65px!important}
5380
+ .brz-ed.brz-ed--tablet .brz-mb-sm-66{margin-bottom:66px!important}
5381
+ .brz-ed.brz-ed--tablet .brz-mb-sm-67{margin-bottom:67px!important}
5382
+ .brz-ed.brz-ed--tablet .brz-mb-sm-68{margin-bottom:68px!important}
5383
+ .brz-ed.brz-ed--tablet .brz-mb-sm-69{margin-bottom:69px!important}
5384
+ .brz-ed.brz-ed--tablet .brz-mb-sm-70{margin-bottom:70px!important}
5385
+ .brz-ed.brz-ed--tablet .brz-mb-sm-71{margin-bottom:71px!important}
5386
+ .brz-ed.brz-ed--tablet .brz-mb-sm-72{margin-bottom:72px!important}
5387
+ .brz-ed.brz-ed--tablet .brz-mb-sm-73{margin-bottom:73px!important}
5388
+ .brz-ed.brz-ed--tablet .brz-mb-sm-74{margin-bottom:74px!important}
5389
+ .brz-ed.brz-ed--tablet .brz-mb-sm-75{margin-bottom:75px!important}
5390
+ .brz-ed.brz-ed--tablet .brz-mb-sm-76{margin-bottom:76px!important}
5391
+ .brz-ed.brz-ed--tablet .brz-mb-sm-77{margin-bottom:77px!important}
5392
+ .brz-ed.brz-ed--tablet .brz-mb-sm-78{margin-bottom:78px!important}
5393
+ .brz-ed.brz-ed--tablet .brz-mb-sm-79{margin-bottom:79px!important}
5394
+ .brz-ed.brz-ed--tablet .brz-mb-sm-80{margin-bottom:80px!important}
5395
+ .brz-ed.brz-ed--tablet .brz-mb-sm-81{margin-bottom:81px!important}
5396
+ .brz-ed.brz-ed--tablet .brz-mb-sm-82{margin-bottom:82px!important}
5397
+ .brz-ed.brz-ed--tablet .brz-mb-sm-83{margin-bottom:83px!important}
5398
+ .brz-ed.brz-ed--tablet .brz-mb-sm-84{margin-bottom:84px!important}
5399
+ .brz-ed.brz-ed--tablet .brz-mb-sm-85{margin-bottom:85px!important}
5400
+ .brz-ed.brz-ed--tablet .brz-mb-sm-86{margin-bottom:86px!important}
5401
+ .brz-ed.brz-ed--tablet .brz-mb-sm-87{margin-bottom:87px!important}
5402
+ .brz-ed.brz-ed--tablet .brz-mb-sm-88{margin-bottom:88px!important}
5403
+ .brz-ed.brz-ed--tablet .brz-mb-sm-89{margin-bottom:89px!important}
5404
+ .brz-ed.brz-ed--tablet .brz-mb-sm-90{margin-bottom:90px!important}
5405
+ .brz-ed.brz-ed--tablet .brz-mb-sm-91{margin-bottom:91px!important}
5406
+ .brz-ed.brz-ed--tablet .brz-mb-sm-92{margin-bottom:92px!important}
5407
+ .brz-ed.brz-ed--tablet .brz-mb-sm-93{margin-bottom:93px!important}
5408
+ .brz-ed.brz-ed--tablet .brz-mb-sm-94{margin-bottom:94px!important}
5409
+ .brz-ed.brz-ed--tablet .brz-mb-sm-95{margin-bottom:95px!important}
5410
+ .brz-ed.brz-ed--tablet .brz-mb-sm-96{margin-bottom:96px!important}
5411
+ .brz-ed.brz-ed--tablet .brz-mb-sm-97{margin-bottom:97px!important}
5412
+ .brz-ed.brz-ed--tablet .brz-mb-sm-98{margin-bottom:98px!important}
5413
+ .brz-ed.brz-ed--tablet .brz-mb-sm-99{margin-bottom:99px!important}
5414
+ .brz-ed.brz-ed--tablet .brz-mb-sm-100{margin-bottom:100px!important}
5415
+ .brz-ed.brz-ed--mobile .brz-mt-xs-0{margin-top:0!important}
5416
+ .brz-ed.brz-ed--mobile .brz-mt-xs-1{margin-top:1px!important}
5417
+ .brz-ed.brz-ed--mobile .brz-mt-xs-2{margin-top:2px!important}
5418
+ .brz-ed.brz-ed--mobile .brz-mt-xs-3{margin-top:3px!important}
5419
+ .brz-ed.brz-ed--mobile .brz-mt-xs-4{margin-top:4px!important}
5420
+ .brz-ed.brz-ed--mobile .brz-mt-xs-5{margin-top:5px!important}
5421
+ .brz-ed.brz-ed--mobile .brz-mt-xs-6{margin-top:6px!important}
5422
+ .brz-ed.brz-ed--mobile .brz-mt-xs-7{margin-top:7px!important}
5423
+ .brz-ed.brz-ed--mobile .brz-mt-xs-8{margin-top:8px!important}
5424
+ .brz-ed.brz-ed--mobile .brz-mt-xs-9{margin-top:9px!important}
5425
+ .brz-ed.brz-ed--mobile .brz-mt-xs-10{margin-top:10px!important}
5426
+ .brz-ed.brz-ed--mobile .brz-mt-xs-11{margin-top:11px!important}
5427
+ .brz-ed.brz-ed--mobile .brz-mt-xs-12{margin-top:12px!important}
5428
+ .brz-ed.brz-ed--mobile .brz-mt-xs-13{margin-top:13px!important}
5429
+ .brz-ed.brz-ed--mobile .brz-mt-xs-14{margin-top:14px!important}
5430
+ .brz-ed.brz-ed--mobile .brz-mt-xs-15{margin-top:15px!important}
5431
+ .brz-ed.brz-ed--mobile .brz-mt-xs-16{margin-top:16px!important}
5432
+ .brz-ed.brz-ed--mobile .brz-mt-xs-17{margin-top:17px!important}
5433
+ .brz-ed.brz-ed--mobile .brz-mt-xs-18{margin-top:18px!important}
5434
+ .brz-ed.brz-ed--mobile .brz-mt-xs-19{margin-top:19px!important}
5435
+ .brz-ed.brz-ed--mobile .brz-mt-xs-20{margin-top:20px!important}
5436
+ .brz-ed.brz-ed--mobile .brz-mt-xs-21{margin-top:21px!important}
5437
+ .brz-ed.brz-ed--mobile .brz-mt-xs-22{margin-top:22px!important}
5438
+ .brz-ed.brz-ed--mobile .brz-mt-xs-23{margin-top:23px!important}
5439
+ .brz-ed.brz-ed--mobile .brz-mt-xs-24{margin-top:24px!important}
5440
+ .brz-ed.brz-ed--mobile .brz-mt-xs-25{margin-top:25px!important}
5441
+ .brz-ed.brz-ed--mobile .brz-mt-xs-26{margin-top:26px!important}
5442
+ .brz-ed.brz-ed--mobile .brz-mt-xs-27{margin-top:27px!important}
5443
+ .brz-ed.brz-ed--mobile .brz-mt-xs-28{margin-top:28px!important}
5444
+ .brz-ed.brz-ed--mobile .brz-mt-xs-29{margin-top:29px!important}
5445
+ .brz-ed.brz-ed--mobile .brz-mt-xs-30{margin-top:30px!important}
5446
+ .brz-ed.brz-ed--mobile .brz-mt-xs-31{margin-top:31px!important}
5447
+ .brz-ed.brz-ed--mobile .brz-mt-xs-32{margin-top:32px!important}
5448
+ .brz-ed.brz-ed--mobile .brz-mt-xs-33{margin-top:33px!important}
5449
+ .brz-ed.brz-ed--mobile .brz-mt-xs-34{margin-top:34px!important}
5450
+ .brz-ed.brz-ed--mobile .brz-mt-xs-35{margin-top:35px!important}
5451
+ .brz-ed.brz-ed--mobile .brz-mt-xs-36{margin-top:36px!important}
5452
+ .brz-ed.brz-ed--mobile .brz-mt-xs-37{margin-top:37px!important}
5453
+ .brz-ed.brz-ed--mobile .brz-mt-xs-38{margin-top:38px!important}
5454
+ .brz-ed.brz-ed--mobile .brz-mt-xs-39{margin-top:39px!important}
5455
+ .brz-ed.brz-ed--mobile .brz-mt-xs-40{margin-top:40px!important}
5456
+ .brz-ed.brz-ed--mobile .brz-mt-xs-41{margin-top:41px!important}
5457
+ .brz-ed.brz-ed--mobile .brz-mt-xs-42{margin-top:42px!important}
5458
+ .brz-ed.brz-ed--mobile .brz-mt-xs-43{margin-top:43px!important}
5459
+ .brz-ed.brz-ed--mobile .brz-mt-xs-44{margin-top:44px!important}
5460
+ .brz-ed.brz-ed--mobile .brz-mt-xs-45{margin-top:45px!important}
5461
+ .brz-ed.brz-ed--mobile .brz-mt-xs-46{margin-top:46px!important}
5462
+ .brz-ed.brz-ed--mobile .brz-mt-xs-47{margin-top:47px!important}
5463
+ .brz-ed.brz-ed--mobile .brz-mt-xs-48{margin-top:48px!important}
5464
+ .brz-ed.brz-ed--mobile .brz-mt-xs-49{margin-top:49px!important}
5465
+ .brz-ed.brz-ed--mobile .brz-mt-xs-50{margin-top:50px!important}
5466
+ .brz-ed.brz-ed--mobile .brz-mt-xs-51{margin-top:51px!important}
5467
+ .brz-ed.brz-ed--mobile .brz-mt-xs-52{margin-top:52px!important}
5468
+ .brz-ed.brz-ed--mobile .brz-mt-xs-53{margin-top:53px!important}
5469
+ .brz-ed.brz-ed--mobile .brz-mt-xs-54{margin-top:54px!important}
5470
+ .brz-ed.brz-ed--mobile .brz-mt-xs-55{margin-top:55px!important}
5471
+ .brz-ed.brz-ed--mobile .brz-mt-xs-56{margin-top:56px!important}
5472
+ .brz-ed.brz-ed--mobile .brz-mt-xs-57{margin-top:57px!important}
5473
+ .brz-ed.brz-ed--mobile .brz-mt-xs-58{margin-top:58px!important}
5474
+ .brz-ed.brz-ed--mobile .brz-mt-xs-59{margin-top:59px!important}
5475
+ .brz-ed.brz-ed--mobile .brz-mt-xs-60{margin-top:60px!important}
5476
+ .brz-ed.brz-ed--mobile .brz-mt-xs-61{margin-top:61px!important}
5477
+ .brz-ed.brz-ed--mobile .brz-mt-xs-62{margin-top:62px!important}
5478
+ .brz-ed.brz-ed--mobile .brz-mt-xs-63{margin-top:63px!important}
5479
+ .brz-ed.brz-ed--mobile .brz-mt-xs-64{margin-top:64px!important}
5480
+ .brz-ed.brz-ed--mobile .brz-mt-xs-65{margin-top:65px!important}
5481
+ .brz-ed.brz-ed--mobile .brz-mt-xs-66{margin-top:66px!important}
5482
+ .brz-ed.brz-ed--mobile .brz-mt-xs-67{margin-top:67px!important}
5483
+ .brz-ed.brz-ed--mobile .brz-mt-xs-68{margin-top:68px!important}
5484
+ .brz-ed.brz-ed--mobile .brz-mt-xs-69{margin-top:69px!important}
5485
+ .brz-ed.brz-ed--mobile .brz-mt-xs-70{margin-top:70px!important}
5486
+ .brz-ed.brz-ed--mobile .brz-mt-xs-71{margin-top:71px!important}
5487
+ .brz-ed.brz-ed--mobile .brz-mt-xs-72{margin-top:72px!important}
5488
+ .brz-ed.brz-ed--mobile .brz-mt-xs-73{margin-top:73px!important}
5489
+ .brz-ed.brz-ed--mobile .brz-mt-xs-74{margin-top:74px!important}
5490
+ .brz-ed.brz-ed--mobile .brz-mt-xs-75{margin-top:75px!important}
5491
+ .brz-ed.brz-ed--mobile .brz-mt-xs-76{margin-top:76px!important}
5492
+ .brz-ed.brz-ed--mobile .brz-mt-xs-77{margin-top:77px!important}
5493
+ .brz-ed.brz-ed--mobile .brz-mt-xs-78{margin-top:78px!important}
5494
+ .brz-ed.brz-ed--mobile .brz-mt-xs-79{margin-top:79px!important}
5495
+ .brz-ed.brz-ed--mobile .brz-mt-xs-80{margin-top:80px!important}
5496
+ .brz-ed.brz-ed--mobile .brz-mt-xs-81{margin-top:81px!important}
5497
+ .brz-ed.brz-ed--mobile .brz-mt-xs-82{margin-top:82px!important}
5498
+ .brz-ed.brz-ed--mobile .brz-mt-xs-83{margin-top:83px!important}
5499
+ .brz-ed.brz-ed--mobile .brz-mt-xs-84{margin-top:84px!important}
5500
+ .brz-ed.brz-ed--mobile .brz-mt-xs-85{margin-top:85px!important}
5501
+ .brz-ed.brz-ed--mobile .brz-mt-xs-86{margin-top:86px!important}
5502
+ .brz-ed.brz-ed--mobile .brz-mt-xs-87{margin-top:87px!important}
5503
+ .brz-ed.brz-ed--mobile .brz-mt-xs-88{margin-top:88px!important}
5504
+ .brz-ed.brz-ed--mobile .brz-mt-xs-89{margin-top:89px!important}
5505
+ .brz-ed.brz-ed--mobile .brz-mt-xs-90{margin-top:90px!important}
5506
+ .brz-ed.brz-ed--mobile .brz-mt-xs-91{margin-top:91px!important}
5507
+ .brz-ed.brz-ed--mobile .brz-mt-xs-92{margin-top:92px!important}
5508
+ .brz-ed.brz-ed--mobile .brz-mt-xs-93{margin-top:93px!important}
5509
+ .brz-ed.brz-ed--mobile .brz-mt-xs-94{margin-top:94px!important}
5510
+ .brz-ed.brz-ed--mobile .brz-mt-xs-95{margin-top:95px!important}
5511
+ .brz-ed.brz-ed--mobile .brz-mt-xs-96{margin-top:96px!important}
5512
+ .brz-ed.brz-ed--mobile .brz-mt-xs-97{margin-top:97px!important}
5513
+ .brz-ed.brz-ed--mobile .brz-mt-xs-98{margin-top:98px!important}
5514
+ .brz-ed.brz-ed--mobile .brz-mt-xs-99{margin-top:99px!important}
5515
+ .brz-ed.brz-ed--mobile .brz-mt-xs-100{margin-top:100px!important}
5516
+ .brz-ed.brz-ed--mobile .brz-mb-xs-0{margin-bottom:0!important}
5517
+ .brz-ed.brz-ed--mobile .brz-mb-xs-1{margin-bottom:1px!important}
5518
+ .brz-ed.brz-ed--mobile .brz-mb-xs-2{margin-bottom:2px!important}
5519
+ .brz-ed.brz-ed--mobile .brz-mb-xs-3{margin-bottom:3px!important}
5520
+ .brz-ed.brz-ed--mobile .brz-mb-xs-4{margin-bottom:4px!important}
5521
+ .brz-ed.brz-ed--mobile .brz-mb-xs-5{margin-bottom:5px!important}
5522
+ .brz-ed.brz-ed--mobile .brz-mb-xs-6{margin-bottom:6px!important}
5523
+ .brz-ed.brz-ed--mobile .brz-mb-xs-7{margin-bottom:7px!important}
5524
+ .brz-ed.brz-ed--mobile .brz-mb-xs-8{margin-bottom:8px!important}
5525
+ .brz-ed.brz-ed--mobile .brz-mb-xs-9{margin-bottom:9px!important}
5526
+ .brz-ed.brz-ed--mobile .brz-mb-xs-10{margin-bottom:10px!important}
5527
+ .brz-ed.brz-ed--mobile .brz-mb-xs-11{margin-bottom:11px!important}
5528
+ .brz-ed.brz-ed--mobile .brz-mb-xs-12{margin-bottom:12px!important}
5529
+ .brz-ed.brz-ed--mobile .brz-mb-xs-13{margin-bottom:13px!important}
5530
+ .brz-ed.brz-ed--mobile .brz-mb-xs-14{margin-bottom:14px!important}
5531
+ .brz-ed.brz-ed--mobile .brz-mb-xs-15{margin-bottom:15px!important}
5532
+ .brz-ed.brz-ed--mobile .brz-mb-xs-16{margin-bottom:16px!important}
5533
+ .brz-ed.brz-ed--mobile .brz-mb-xs-17{margin-bottom:17px!important}
5534
+ .brz-ed.brz-ed--mobile .brz-mb-xs-18{margin-bottom:18px!important}
5535
+ .brz-ed.brz-ed--mobile .brz-mb-xs-19{margin-bottom:19px!important}
5536
+ .brz-ed.brz-ed--mobile .brz-mb-xs-20{margin-bottom:20px!important}
5537
+ .brz-ed.brz-ed--mobile .brz-mb-xs-21{margin-bottom:21px!important}
5538
+ .brz-ed.brz-ed--mobile .brz-mb-xs-22{margin-bottom:22px!important}
5539
+ .brz-ed.brz-ed--mobile .brz-mb-xs-23{margin-bottom:23px!important}
5540
+ .brz-ed.brz-ed--mobile .brz-mb-xs-24{margin-bottom:24px!important}
5541
+ .brz-ed.brz-ed--mobile .brz-mb-xs-25{margin-bottom:25px!important}
5542
+ .brz-ed.brz-ed--mobile .brz-mb-xs-26{margin-bottom:26px!important}
5543
+ .brz-ed.brz-ed--mobile .brz-mb-xs-27{margin-bottom:27px!important}
5544
+ .brz-ed.brz-ed--mobile .brz-mb-xs-28{margin-bottom:28px!important}
5545
+ .brz-ed.brz-ed--mobile .brz-mb-xs-29{margin-bottom:29px!important}
5546
+ .brz-ed.brz-ed--mobile .brz-mb-xs-30{margin-bottom:30px!important}
5547
+ .brz-ed.brz-ed--mobile .brz-mb-xs-31{margin-bottom:31px!important}
5548
+ .brz-ed.brz-ed--mobile .brz-mb-xs-32{margin-bottom:32px!important}
5549
+ .brz-ed.brz-ed--mobile .brz-mb-xs-33{margin-bottom:33px!important}
5550
+ .brz-ed.brz-ed--mobile .brz-mb-xs-34{margin-bottom:34px!important}
5551
+ .brz-ed.brz-ed--mobile .brz-mb-xs-35{margin-bottom:35px!important}
5552
+ .brz-ed.brz-ed--mobile .brz-mb-xs-36{margin-bottom:36px!important}
5553
+ .brz-ed.brz-ed--mobile .brz-mb-xs-37{margin-bottom:37px!important}
5554
+ .brz-ed.brz-ed--mobile .brz-mb-xs-38{margin-bottom:38px!important}
5555
+ .brz-ed.brz-ed--mobile .brz-mb-xs-39{margin-bottom:39px!important}
5556
+ .brz-ed.brz-ed--mobile .brz-mb-xs-40{margin-bottom:40px!important}
5557
+ .brz-ed.brz-ed--mobile .brz-mb-xs-41{margin-bottom:41px!important}
5558
+ .brz-ed.brz-ed--mobile .brz-mb-xs-42{margin-bottom:42px!important}
5559
+ .brz-ed.brz-ed--mobile .brz-mb-xs-43{margin-bottom:43px!important}
5560
+ .brz-ed.brz-ed--mobile .brz-mb-xs-44{margin-bottom:44px!important}
5561
+ .brz-ed.brz-ed--mobile .brz-mb-xs-45{margin-bottom:45px!important}
5562
+ .brz-ed.brz-ed--mobile .brz-mb-xs-46{margin-bottom:46px!important}
5563
+ .brz-ed.brz-ed--mobile .brz-mb-xs-47{margin-bottom:47px!important}
5564
+ .brz-ed.brz-ed--mobile .brz-mb-xs-48{margin-bottom:48px!important}
5565
+ .brz-ed.brz-ed--mobile .brz-mb-xs-49{margin-bottom:49px!important}
5566
+ .brz-ed.brz-ed--mobile .brz-mb-xs-50{margin-bottom:50px!important}
5567
+ .brz-ed.brz-ed--mobile .brz-mb-xs-51{margin-bottom:51px!important}
5568
+ .brz-ed.brz-ed--mobile .brz-mb-xs-52{margin-bottom:52px!important}
5569
+ .brz-ed.brz-ed--mobile .brz-mb-xs-53{margin-bottom:53px!important}
5570
+ .brz-ed.brz-ed--mobile .brz-mb-xs-54{margin-bottom:54px!important}
5571
+ .brz-ed.brz-ed--mobile .brz-mb-xs-55{margin-bottom:55px!important}
5572
+ .brz-ed.brz-ed--mobile .brz-mb-xs-56{margin-bottom:56px!important}
5573
+ .brz-ed.brz-ed--mobile .brz-mb-xs-57{margin-bottom:57px!important}
5574
+ .brz-ed.brz-ed--mobile .brz-mb-xs-58{margin-bottom:58px!important}
5575
+ .brz-ed.brz-ed--mobile .brz-mb-xs-59{margin-bottom:59px!important}
5576
+ .brz-ed.brz-ed--mobile .brz-mb-xs-60{margin-bottom:60px!important}
5577
+ .brz-ed.brz-ed--mobile .brz-mb-xs-61{margin-bottom:61px!important}
5578
+ .brz-ed.brz-ed--mobile .brz-mb-xs-62{margin-bottom:62px!important}
5579
+ .brz-ed.brz-ed--mobile .brz-mb-xs-63{margin-bottom:63px!important}
5580
+ .brz-ed.brz-ed--mobile .brz-mb-xs-64{margin-bottom:64px!important}
5581
+ .brz-ed.brz-ed--mobile .brz-mb-xs-65{margin-bottom:65px!important}
5582
+ .brz-ed.brz-ed--mobile .brz-mb-xs-66{margin-bottom:66px!important}
5583
+ .brz-ed.brz-ed--mobile .brz-mb-xs-67{margin-bottom:67px!important}
5584
+ .brz-ed.brz-ed--mobile .brz-mb-xs-68{margin-bottom:68px!important}
5585
+ .brz-ed.brz-ed--mobile .brz-mb-xs-69{margin-bottom:69px!important}
5586
+ .brz-ed.brz-ed--mobile .brz-mb-xs-70{margin-bottom:70px!important}
5587
+ .brz-ed.brz-ed--mobile .brz-mb-xs-71{margin-bottom:71px!important}
5588
+ .brz-ed.brz-ed--mobile .brz-mb-xs-72{margin-bottom:72px!important}
5589
+ .brz-ed.brz-ed--mobile .brz-mb-xs-73{margin-bottom:73px!important}
5590
+ .brz-ed.brz-ed--mobile .brz-mb-xs-74{margin-bottom:74px!important}
5591
+ .brz-ed.brz-ed--mobile .brz-mb-xs-75{margin-bottom:75px!important}
5592
+ .brz-ed.brz-ed--mobile .brz-mb-xs-76{margin-bottom:76px!important}
5593
+ .brz-ed.brz-ed--mobile .brz-mb-xs-77{margin-bottom:77px!important}
5594
+ .brz-ed.brz-ed--mobile .brz-mb-xs-78{margin-bottom:78px!important}
5595
+ .brz-ed.brz-ed--mobile .brz-mb-xs-79{margin-bottom:79px!important}
5596
+ .brz-ed.brz-ed--mobile .brz-mb-xs-80{margin-bottom:80px!important}
5597
+ .brz-ed.brz-ed--mobile .brz-mb-xs-81{margin-bottom:81px!important}
5598
+ .brz-ed.brz-ed--mobile .brz-mb-xs-82{margin-bottom:82px!important}
5599
+ .brz-ed.brz-ed--mobile .brz-mb-xs-83{margin-bottom:83px!important}
5600
+ .brz-ed.brz-ed--mobile .brz-mb-xs-84{margin-bottom:84px!important}
5601
+ .brz-ed.brz-ed--mobile .brz-mb-xs-85{margin-bottom:85px!important}
5602
+ .brz-ed.brz-ed--mobile .brz-mb-xs-86{margin-bottom:86px!important}
5603
+ .brz-ed.brz-ed--mobile .brz-mb-xs-87{margin-bottom:87px!important}
5604
+ .brz-ed.brz-ed--mobile .brz-mb-xs-88{margin-bottom:88px!important}
5605
+ .brz-ed.brz-ed--mobile .brz-mb-xs-89{margin-bottom:89px!important}
5606
+ .brz-ed.brz-ed--mobile .brz-mb-xs-90{margin-bottom:90px!important}
5607
+ .brz-ed.brz-ed--mobile .brz-mb-xs-91{margin-bottom:91px!important}
5608
+ .brz-ed.brz-ed--mobile .brz-mb-xs-92{margin-bottom:92px!important}
5609
+ .brz-ed.brz-ed--mobile .brz-mb-xs-93{margin-bottom:93px!important}
5610
+ .brz-ed.brz-ed--mobile .brz-mb-xs-94{margin-bottom:94px!important}
5611
+ .brz-ed.brz-ed--mobile .brz-mb-xs-95{margin-bottom:95px!important}
5612
+ .brz-ed.brz-ed--mobile .brz-mb-xs-96{margin-bottom:96px!important}
5613
+ .brz-ed.brz-ed--mobile .brz-mb-xs-97{margin-bottom:97px!important}
5614
+ .brz-ed.brz-ed--mobile .brz-mb-xs-98{margin-bottom:98px!important}
5615
+ .brz-ed.brz-ed--mobile .brz-mb-xs-99{margin-bottom:99px!important}
5616
+ .brz-ed.brz-ed--mobile .brz-mb-xs-100{margin-bottom:100px!important}
5617
+ .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}
5618
+ .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}
5619
+ .brz-ed .brz-text-lg-center{text-align:center!important;-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}
5620
+ .brz-ed .brz-text-lg-justify{text-align:justify!important}
5621
+ .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}
5622
+ .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}
5623
+ .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}
5624
+ .brz-ed.brz-ed--desktop .brz-text-lg-justify{text-align:justify!important}
5625
+ .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}
5626
+ .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}
5627
+ .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}
5628
+ .brz-ed.brz-ed--tablet .brz-text-sm-justify{text-align:justify!important}
5629
+ .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}
5630
+ .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}
5631
+ .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}
5632
+ .brz-ed.brz-ed--mobile .brz-text-xs-justify{text-align:justify!important}
5633
+ .brz-ed .brz-ed-arrow{position:absolute;top:-6px;height:12px;left:50%;margin-left:-6px}
5634
+ .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}
5635
+ .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}
5636
+ .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}
5637
+ .brz-ed .brz-ed-animated{-webkit-animation-duration:.15s;animation-duration:.15s;-webkit-animation-fill-mode:both;animation-fill-mode:both}
5638
+ .brz-ed .brz-ed-animated--fadeInDown{-webkit-animation-name:brz-ed-fadeInDown;animation-name:brz-ed-fadeInDown}
5639
+ .brz-ed .brz-ed-animated--fadeInUp{-webkit-animation-name:brz-ed-fadeInUp;animation-name:brz-ed-fadeInUp}
5640
+ .brz-ed .brz-ed-animated--fadeIn{-webkit-animation-name:brz-ed-fadeIn;animation-name:brz-ed-fadeIn}
5641
+ .brz-ed .brz-ed-animated--fadeInLeft{-webkit-animation-name:brz-ed-fadeInLeft;animation-name:brz-ed-fadeInLeft}
5642
+ .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}
5643
+ .brz-ed .brz-ed-fade-enter{opacity:.01}
5644
+ .brz-ed .brz-ed-fade-enter.brz-ed-fade-enter-active{opacity:1;-webkit-transition:opacity 150ms ease-in;transition:opacity 150ms ease-in}
5645
+ .brz-ed .brz-ed-fade-exit{opacity:1}
5646
+ .brz-ed .brz-ed-fade-exit.brz-ed-fade-exit-active{opacity:.01;-webkit-transition:opacity 150ms ease-in;transition:opacity 150ms ease-in}
5647
+ .brz-ed .brz-animated{-webkit-animation-fill-mode:none;animation-fill-mode:none}
5648
+ .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:pn,"Open Sans",Arial,sans-serif;font-size:14px;padding:12px 18px;line-height:1;outline:0}
5649
+ .brz-ed .brz-ed-btn:active{outline:0;background-image:none}
5650
+ .brz-ed .brz-ed-btn:focus{outline:0}
5651
+ .brz-ed .brz-ed-btn-icon .brz-icon-svg{margin-left:10px;vertical-align:middle}
5652
+ .brz-ed .brz-ed-btn-icon span{display:inline-block;vertical-align:middle}
5653
+ .brz-ed .brz-ed-btn-icon--left .brz-icon-svg{margin-left:0;margin-right:10px}
5654
+ .brz-ed .brz-ed-btn--loading{pointer-events:none!important;-webkit-transition:none;transition:none}
5655
+ .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}
5656
+ .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}
5657
+ .brz-ed .brz-ed-btn-rounded{border-radius:3px}
5658
+ .brz-ed .brz-ed-btn-sm{padding:11px 17px;font-size:14px}
5659
+ .brz-ed .brz-ed-btn-sm.brz-ed-btn-icon .brz-icon-svg{font-size:12px}
5660
+ .brz-ed .brz-ed-btn-sm.brz-ed-btn--loading{font-size:16px;padding-top:10px;padding-bottom:10px}
5661
+ .brz-ed .brz-ed-btn-xs{font-size:10px;padding:9px 18px}
5662
+ .brz-ed .brz-ed-btn-full{width:100%}
5663
+ .brz-ed .brz-ed-btn-width-1{min-width:130px}
5664
+ .brz-ed .brz-ed-btn-width-2{min-width:176px}
5665
+ .brz-ed .brz-ed-btn-width-3{min-width:102px}
5666
+ .brz-ed .brz-ed-btn-default{border-color:transparent;background-color:transparent;color:#626b70}
5667
+ .brz-ed .brz-ed-btn-default:hover{border-color:transparent;background-color:transparent}
5668
+ .brz-ed .brz-ed-btn-dark{border-color:#3b474b;background-color:#3b474b;color:#fff}
5669
+ .brz-ed .brz-ed-btn-dark:hover{border-color:#283337;background-color:#283337}
5670
+ .brz-ed .brz-ed-btn-dark-outline{color:#3b474b;border-color:#3b474b;background-color:#fff}
5671
+ .brz-ed .brz-ed-btn-dark-outline:hover{background-color:#3b474b;color:#fff!important}
5672
+ .brz-ed .brz-ed-btn-teal{border-color:#3dbfe8;background-color:#3dbfe8;color:#fff!important}
5673
+ .brz-ed .brz-ed-btn-teal:hover{border-color:#35a9d6;background-color:#35a9d6}
5674
+ .brz-ed .brz-ed-btn-teal-outline{color:#34beea;border-color:#34beea;background-color:transparent}
5675
+ .brz-ed .brz-ed-btn-teal-outline:focus,.brz-ed .brz-ed-btn-teal-outline:hover{background-color:#34beea;color:#fff!important}
5676
+ .brz-ed .brz-ed-btn-green{border-color:#8dc63f;background-color:#8dc63f;color:#fff!important}
5677
+ .brz-ed .brz-ed-btn-green:focus,.brz-ed .brz-ed-btn-green:hover{border-color:#8dc63f;background-color:#8dc63f}
5678
+ .brz-ed .brz-ed-btn-green-outline{color:#8dc63f;border-color:#8dc63f;background-color:transparent}
5679
+ .brz-ed .brz-ed-btn-green-outline:hover{background-color:#8dc63f;color:#fff!important}
5680
+ .brz-ed .brz-ed-btn-gray{border-color:transparent;background-color:rgba(41,46,55,.5);color:#fff!important}
5681
+ .brz-ed .brz-ed-btn-gray:focus,.brz-ed .brz-ed-btn-gray:hover{border-color:transparent;background-color:rgba(41,46,55,.5)}
5682
+ .brz-ed .brz-ed-btn-gray-outline{color:rgba(41,46,55,.5);border-color:rgba(41,46,55,.5);background-color:transparent}
5683
+ .brz-ed .brz-ed-btn-gray-outline:hover{background-color:rgba(41,46,55,.5);color:#fff!important}
5684
+ .brz-ed .brz-ed-btn-red{border-color:#ed2164;background-color:#ed2164;color:#fff!important}
5685
+ .brz-ed .brz-ed-btn-red:focus,.brz-ed .brz-ed-btn-red:hover{border-color:transparent;background-color:#df3c3c}
5686
+ .brz-ed .brz-ed-btn-red-outline{color:#df3c3c;border-color:#df3c3c;background-color:transparent}
5687
+ .brz-ed .brz-ed-btn-red-outline:hover{background-color:#df3c3c;color:#fff!important}
5688
+ .brz-ed .brz-ed-btn-pro{border-color:transparent;background-color:#d62c64;color:#fff;font-size:14px;font-weight:600}
5689
+ .brz-ed .brz-ed-btn-pro:focus,.brz-ed .brz-ed-btn-pro:hover{border-color:transparent;background-color:rgba(214,44,100,.8)}
5690
+ .brz-ed .brz-ed-btn-teal--hover:hover{border-color:#3dbfe8!important;background-color:#3dbfe8!important}
5691
+ .brz-ed .brz-ed-btn-red--hover:hover{border-color:#ed2164!important;background-color:#ed2164!important}
5692
+ .brz-ed .brz-ed-alert{font:600 14px/18px pn,"Open Sans",Arial,sans-serif;background-color:#f2f2f2;padding:12px 15px;margin:0 0 20px}
5693
+ .brz-ed .brz-ed-alert-error{border-left:4px solid #df3c3c;color:#df3c3c;background-color:rgba(223,60,60,.1)}
5694
+ .brz-ed .brz-ed-alert-error .brz-span{color:#df3c3c!important}
5695
+ .brz-ed .brz-ed-alert-success{border-left:4px solid #6ab504;color:#6ab504;background-color:#eff5e8}
5696
+ .brz-ed .brz-ed-alert-success .brz-span{color:#6ab504!important}
5697
+ .brz-ed .brz-ed-alert-info{border-left:4px solid #47a9c8;color:#656b6f;background-color:#eff9fd}
5698
+ .brz-ed .brz-ed-alert-info .popup-icon-info{float:left;margin:0 15px 5px 0;color:#47a9c8;border-color:#47a9c8}
5699
+ .brz-ed .brz-ed-alert-info .brz-span{color:#47a9c8!important}
5700
+ .brz-ed .popup-icon-info{font-family:pn,"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}
5701
+ .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}
5702
+ .brz-ed .brz-ed-rotate--180{-webkit-transform:rotate(-180deg);transform:rotate(-180deg)}
5703
+ .brz-ed .brz-ed-rotate--90{-webkit-transform:rotate(-90deg);transform:rotate(-90deg)}
5704
+ .brz-ed .brz-ed-badge{font-family:pn,"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}
5705
+ .brz-ed .brz-ed-badge--pro{background-color:#d62c64}
5706
+ .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}
5707
+ .brz-ed .brz-ed-badge__delete:hover{color:#ed2164;-webkit-transition:.2s linear color;transition:.2s linear color}
5708
+ .brz-ed .nc-outline-2x-drag-down:before{content:"\ea01"}
5709
+ .brz-ed .nc-outline-2x-drag-up:before{content:"\ea02"}
5710
+ .brz-ed .nc-outline-2x-swipe-down:before{content:"\ea03"}
5711
+ .brz-ed .nc-outline-2x-swipe-left:before{content:"\ea04"}
5712
+ .brz-ed .nc-outline-2x-swipe-right:before{content:"\ea05"}
5713
+ .brz-ed .nc-outline-2x-swipe-up:before{content:"\ea06"}
5714
+ .brz-ed .nc-outline-2x-tap:before{content:"\ea07"}
5715
+ .brz-ed .nc-outline-3d-29:before{content:"\ea08"}
5716
+ .brz-ed .nc-outline-3d-model:before{content:"\ea09"}
5717
+ .brz-ed .nc-outline-3d:before{content:"\ea0a"}
5718
+ .brz-ed .nc-outline-3x-swipe-left:before{content:"\ea0b"}
5719
+ .brz-ed .nc-outline-3x-swipe-right:before{content:"\ea0c"}
5720
+ .brz-ed .nc-outline-3x-swipe-up:before{content:"\ea0e"}
5721
+ .brz-ed .nc-outline-3x-tap:before{content:"\ea0d"}
5722
+ .brz-ed .nc-outline-4x-swipe-left:before{content:"\ea0f"}
5723
+ .brz-ed .nc-outline-4x-swipe-right:before{content:"\ea10"}
5724
+ .brz-ed .nc-outline-4x-swipe-up:before{content:"\ea11"}
5725
+ .brz-ed .nc-outline-a-add:before{content:"\ea12"}
5726
+ .brz-ed .nc-outline-a-check:before{content:"\ea13"}
5727
+ .brz-ed .nc-outline-a-delete:before{content:"\ea14"}
5728
+ .brz-ed .nc-outline-a-edit:before{content:"\ea15"}
5729
+ .brz-ed .nc-outline-a-heart:before{content:"\ea16"}
5730
+ .brz-ed .nc-outline-a-location:before{content:"\ea17"}
5731
+ .brz-ed .nc-outline-a-remove:before{content:"\ea18"}
5732
+ .brz-ed .nc-outline-a-search:before{content:"\ea19"}
5733
+ .brz-ed .nc-outline-a-security:before{content:"\ea1a"}
5734
+ .brz-ed .nc-outline-a-share:before{content:"\ea1b"}
5735
+ .brz-ed .nc-outline-a-star:before{content:"\ea1c"}
5736
+ .brz-ed .nc-outline-a-sync:before{content:"\ea1d"}
5737
+ .brz-ed .nc-outline-a-time:before{content:"\ea1e"}
5738
+ .brz-ed .nc-outline-abc:before{content:"\ea1f"}
5739
+ .brz-ed .nc-outline-accessibility:before{content:"\ea20"}
5740
+ .brz-ed .nc-outline-action-73:before{content:"\ea22"}
5741
+ .brz-ed .nc-outline-action-74:before{content:"\ea21"}
5742
+ .brz-ed .nc-outline-active-38:before{content:"\ea23"}
5743
+ .brz-ed .nc-outline-active-40:before{content:"\ea24"}
5744
+ .brz-ed .nc-outline-add-27:before{content:"\ea26"}
5745
+ .brz-ed .nc-outline-add-29:before{content:"\ea25"}
5746
+ .brz-ed .nc-outline-add:before{content:"\ea28"}
5747
+ .brz-ed .nc-outline-agenda-bookmark:before{content:"\ea27"}
5748
+ .brz-ed .nc-outline-agenda:before{content:"\ea29"}
5749
+ .brz-ed .nc-outline-air-baloon:before{content:"\ea2a"}
5750
+ .brz-ed .nc-outline-air-conditioner:before{content:"\ea2b"}
5751
+ .brz-ed .nc-outline-airbag:before{content:"\ea2c"}
5752
+ .brz-ed .nc-outline-alarm-add:before{content:"\ea2d"}
5753
+ .brz-ed .nc-outline-alarm-delete:before{content:"\ea2e"}
5754
+ .brz-ed .nc-outline-album-2:before{content:"\ea2f"}
5755
+ .brz-ed .nc-outline-album:before{content:"\ea30"}
5756
+ .brz-ed .nc-outline-alcohol:before{content:"\ea31"}
5757
+ .brz-ed .nc-outline-alert-circle-exc:before{content:"\ea32"}
5758
+ .brz-ed .nc-outline-alert-circle-i:before{content:"\ea33"}
5759
+ .brz-ed .nc-outline-alert-circle-que:before{content:"\ea34"}
5760
+ .brz-ed .nc-outline-alert-exc:before{content:"\ea35"}
5761
+ .brz-ed .nc-outline-alert-i:before{content:"\ea36"}
5762
+ .brz-ed .nc-outline-alert-que:before{content:"\ea37"}
5763
+ .brz-ed .nc-outline-alert-square-exc:before{content:"\ea38"}
5764
+ .brz-ed .nc-outline-alert-square-i:before{content:"\ea39"}
5765
+ .brz-ed .nc-outline-alert-square-que:before{content:"\ea3a"}
5766
+ .brz-ed .nc-outline-alert:before{content:"\ea3b"}
5767
+ .brz-ed .nc-outline-alien-29:before{content:"\ea3c"}
5768
+ .brz-ed .nc-outline-alien-33:before{content:"\ea3d"}
5769
+ .brz-ed .nc-outline-align-bottom:before{content:"\ea3e"}
5770
+ .brz-ed .nc-outline-align-center-horizontal:before{content:"\ea3f"}
5771
+ .brz-ed .nc-outline-align-center-vertical:before{content:"\ea40"}
5772
+ .brz-ed .nc-outline-align-center:before{content:"\ea41"}
5773
+ .brz-ed .nc-outline-align-justify:before{content:"\ea42"}
5774
+ .brz-ed .nc-outline-align-left-2:before{content:"\ea43"}
5775
+ .brz-ed .nc-outline-align-left:before{content:"\ea44"}
5776
+ .brz-ed .nc-outline-align-right-2:before{content:"\ea45"}
5777
+ .brz-ed .nc-outline-align-right:before{content:"\ea46"}
5778
+ .brz-ed .nc-outline-align-top:before{content:"\ea47"}
5779
+ .brz-ed .nc-outline-ambulance:before{content:"\ea48"}
5780
+ .brz-ed .nc-outline-analytics-88:before{content:"\ea49"}
5781
+ .brz-ed .nc-outline-analytics-89:before{content:"\ea4a"}
5782
+ .brz-ed .nc-outline-anchor:before{content:"\ea4c"}
5783
+ .brz-ed .nc-outline-android:before{content:"\ea4b"}
5784
+ .brz-ed .nc-outline-angle:before{content:"\ea4d"}
5785
+ .brz-ed .nc-outline-angry-10:before{content:"\ea4e"}
5786
+ .brz-ed .nc-outline-angry-44:before{content:"\ea50"}
5787
+ .brz-ed .nc-outline-animation-14:before{content:"\ea4f"}
5788
+ .brz-ed .nc-outline-animation-31:before{content:"\ea51"}
5789
+ .brz-ed .nc-outline-animation-32:before{content:"\ea52"}
5790
+ .brz-ed .nc-outline-app:before{content:"\ea53"}
5791
+ .brz-ed .nc-outline-apple-2:before{content:"\ea54"}
5792
+ .brz-ed .nc-outline-apple:before{content:"\ea55"}
5793
+ .brz-ed .nc-outline-appointment:before{content:"\ea56"}
5794
+ .brz-ed .nc-outline-archive-2:before{content:"\ea57"}
5795
+ .brz-ed .nc-outline-archive-3d-check:before{content:"\ea58"}
5796
+ .brz-ed .nc-outline-archive-3d-content:before{content:"\ea59"}
5797
+ .brz-ed .nc-outline-archive-check:before{content:"\ea5a"}
5798
+ .brz-ed .nc-outline-archive-content:before{content:"\ea5b"}
5799
+ .brz-ed .nc-outline-archive-paper-check:before{content:"\ea5c"}
5800
+ .brz-ed .nc-outline-archive-paper:before{content:"\ea5d"}
5801
+ .brz-ed .nc-outline-archive:before{content:"\ea5e"}
5802
+ .brz-ed .nc-outline-armchair:before{content:"\ea5f"}
5803
+ .brz-ed .nc-outline-artboard:before{content:"\ea60"}
5804
+ .brz-ed .nc-outline-astronaut:before{content:"\ea62"}
5805
+ .brz-ed .nc-outline-at-sign:before{content:"\ea61"}
5806
+ .brz-ed .nc-outline-atm:before{content:"\ea63"}
5807
+ .brz-ed .nc-outline-atom:before{content:"\ea64"}
5808
+ .brz-ed .nc-outline-attach-86:before{content:"\ea65"}
5809
+ .brz-ed .nc-outline-attach-87:before{content:"\ea66"}
5810
+ .brz-ed .nc-outline-aubergine:before{content:"\ea67"}
5811
+ .brz-ed .nc-outline-audio-91:before{content:"\ea68"}
5812
+ .brz-ed .nc-outline-audio-92:before{content:"\ea69"}
5813
+ .brz-ed .nc-outline-audio:before{content:"\ea6a"}
5814
+ .brz-ed .nc-outline-avocado:before{content:"\ea6c"}
5815
+ .brz-ed .nc-outline-award-48:before{content:"\ea6b"}
5816
+ .brz-ed .nc-outline-award-49:before{content:"\ea6d"}
5817
+ .brz-ed .nc-outline-award-55:before{content:"\ea6e"}
5818
+ .brz-ed .nc-outline-award-74:before{content:"\ea6f"}
5819
+ .brz-ed .nc-outline-award:before{content:"\ea70"}
5820
+ .brz-ed .nc-outline-axe:before{content:"\ea71"}
5821
+ .brz-ed .nc-outline-b-add:before{content:"\ea72"}
5822
+ .brz-ed .nc-outline-b-check:before{content:"\ea74"}
5823
+ .brz-ed .nc-outline-b-location:before{content:"\ea73"}
5824
+ .brz-ed .nc-outline-b-love:before{content:"\ea75"}
5825
+ .brz-ed .nc-outline-b-meeting:before{content:"\ea76"}
5826
+ .brz-ed .nc-outline-b-remove:before{content:"\ea78"}
5827
+ .brz-ed .nc-outline-b-security:before{content:"\ea77"}
5828
+ .brz-ed .nc-outline-baby-2:before{content:"\ea79"}
5829
+ .brz-ed .nc-outline-baby-3:before{content:"\ea7a"}
5830
+ .brz-ed .nc-outline-baby-bottle:before{content:"\ea7b"}
5831
+ .brz-ed .nc-outline-baby:before{content:"\ea7c"}
5832
+ .brz-ed .nc-outline-back-78:before{content:"\ea7d"}
5833
+ .brz-ed .nc-outline-back-80:before{content:"\ea7e"}
5834
+ .brz-ed .nc-outline-background:before{content:"\ea7f"}
5835
+ .brz-ed .nc-outline-backpack-2:before{content:"\ea80"}
5836
+ .brz-ed .nc-outline-backpack-57:before{content:"\ea81"}
5837
+ .brz-ed .nc-outline-backpack-58:before{content:"\ea82"}
5838
+ .brz-ed .nc-outline-backpack:before{content:"\ea83"}
5839
+ .brz-ed .nc-outline-backward:before{content:"\ea84"}
5840
+ .brz-ed .nc-outline-bacon:before{content:"\ea85"}
5841
+ .brz-ed .nc-outline-badge-13:before{content:"\ea86"}
5842
+ .brz-ed .nc-outline-badge-14:before{content:"\ea87"}
5843
+ .brz-ed .nc-outline-badge-15:before{content:"\ea88"}
5844
+ .brz-ed .nc-outline-badge:before{content:"\ea89"}
5845
+ .brz-ed .nc-outline-badminton:before{content:"\ea8a"}
5846
+ .brz-ed .nc-outline-bag-09:before{content:"\ea8b"}
5847
+ .brz-ed .nc-outline-bag-16:before{content:"\ea8c"}
5848
+ .brz-ed .nc-outline-bag-17:before{content:"\ea8d"}
5849
+ .brz-ed .nc-outline-bag-20:before{content:"\ea8e"}
5850
+ .brz-ed .nc-outline-bag-21:before{content:"\ea8f"}
5851
+ .brz-ed .nc-outline-bag-22:before{content:"\ea90"}
5852
+ .brz-ed .nc-outline-bag-49:before{content:"\ea91"}
5853
+ .brz-ed .nc-outline-bag-50:before{content:"\ea92"}
5854
+ .brz-ed .nc-outline-bag-add-18:before{content:"\ea93"}
5855
+ .brz-ed .nc-outline-bag-add-21:before{content:"\ea94"}
5856
+ .brz-ed .nc-outline-bag-delivery:before{content:"\ea95"}
5857
+ .brz-ed .nc-outline-bag-edit:before{content:"\ea96"}
5858
+ .brz-ed .nc-outline-bag-remove-19:before{content:"\ea97"}
5859
+ .brz-ed .nc-outline-bag-remove-22:before{content:"\ea98"}
5860
+ .brz-ed .nc-outline-bag-time:before{content:"\ea99"}
5861
+ .brz-ed .nc-outline-bag:before{content:"\ea9a"}
5862
+ .brz-ed .nc-outline-baguette:before{content:"\ea9b"}
5863
+ .brz-ed .nc-outline-balance:before{content:"\ea9c"}
5864
+ .brz-ed .nc-outline-ball-basket:before{content:"\ea9d"}
5865
+ .brz-ed .nc-outline-ball-soccer:before{content:"\ea9e"}
5866
+ .brz-ed .nc-outline-baloon:before{content:"\eaa0"}
5867
+ .brz-ed .nc-outline-ban-bold:before{content:"\ea9f"}
5868
+ .brz-ed .nc-outline-ban:before{content:"\eaa1"}
5869
+ .brz-ed .nc-outline-banana:before{content:"\eaa2"}
5870
+ .brz-ed .nc-outline-bank:before{content:"\eaa3"}
5871
+ .brz-ed .nc-outline-barbecue-15:before{content:"\eaa4"}
5872
+ .brz-ed .nc-outline-barbecue-tools:before{content:"\eaa5"}
5873
+ .brz-ed .nc-outline-barbecue:before{content:"\eaa6"}
5874
+ .brz-ed .nc-outline-barcode-qr:before{content:"\eaa7"}
5875
+ .brz-ed .nc-outline-barcode-scan:before{content:"\eaa8"}
5876
+ .brz-ed .nc-outline-barcode:before{content:"\eaa9"}
5877
+ .brz-ed .nc-outline-bars-2:before{content:"\eaaa"}
5878
+ .brz-ed .nc-outline-bars-rotate:before{content:"\eaac"}
5879
+ .brz-ed .nc-outline-bars:before{content:"\eaab"}
5880
+ .brz-ed .nc-outline-baseball-ball:before{content:"\eaad"}
5881
+ .brz-ed .nc-outline-baseball-bat:before{content:"\eaae"}
5882
+ .brz-ed .nc-outline-baseball:before{content:"\eaaf"}
5883
+ .brz-ed .nc-outline-basket-add:before{content:"\eab0"}
5884
+ .brz-ed .nc-outline-basket-edit:before{content:"\eab1"}
5885
+ .brz-ed .nc-outline-basket-favorite:before{content:"\eab2"}
5886
+ .brz-ed .nc-outline-basket-remove:before{content:"\eab3"}
5887
+ .brz-ed .nc-outline-basket-search:before{content:"\eab4"}
5888
+ .brz-ed .nc-outline-basket-share:before{content:"\eab5"}
5889
+ .brz-ed .nc-outline-basket-simple-add:before{content:"\eab6"}
5890
+ .brz-ed .nc-outline-basket-simple-remove:before{content:"\eab7"}
5891
+ .brz-ed .nc-outline-basket-simple:before{content:"\eab8"}
5892
+ .brz-ed .nc-outline-basket-update:before{content:"\eab9"}
5893
+ .brz-ed .nc-outline-basket:before{content:"\eaba"}
5894
+ .brz-ed .nc-outline-basketball-12:before{content:"\eabb"}
5895
+ .brz-ed .nc-outline-basketball-13:before{content:"\eabc"}
5896
+ .brz-ed .nc-outline-bat:before{content:"\eabd"}
5897
+ .brz-ed .nc-outline-bath-tub:before{content:"\eabe"}
5898
+ .brz-ed .nc-outline-battery-81:before{content:"\eabf"}
5899
+ .brz-ed .nc-outline-battery-83:before{content:"\eac0"}
5900
+ .brz-ed .nc-outline-battery-half:before{content:"\eac1"}
5901
+ .brz-ed .nc-outline-battery-level:before{content:"\eac2"}
5902
+ .brz-ed .nc-outline-battery-low:before{content:"\eac3"}
5903
+ .brz-ed .nc-outline-battery:before{content:"\eac4"}
5904
+ .brz-ed .nc-outline-bear-2:before{content:"\eac5"}
5905
+ .brz-ed .nc-outline-bear:before{content:"\eac6"}
5906
+ .brz-ed .nc-outline-bed-09:before{content:"\eac8"}
5907
+ .brz-ed .nc-outline-bed-23:before{content:"\eac9"}
5908
+ .brz-ed .nc-outline-bed-side:before{content:"\eac7"}
5909
+ .brz-ed .nc-outline-bee:before{content:"\eaca"}
5910
+ .brz-ed .nc-outline-beer-95:before{content:"\eacb"}
5911
+ .brz-ed .nc-outline-beer-96:before{content:"\eacc"}
5912
+ .brz-ed .nc-outline-bell-53:before{content:"\eacd"}
5913
+ .brz-ed .nc-outline-bell-54:before{content:"\eace"}
5914
+ .brz-ed .nc-outline-bell-55:before{content:"\eacf"}
5915
+ .brz-ed .nc-outline-belt:before{content:"\ead0"}
5916
+ .brz-ed .nc-outline-berlin:before{content:"\ead1"}
5917
+ .brz-ed .nc-outline-beverage:before{content:"\ead2"}
5918
+ .brz-ed .nc-outline-big-eyes:before{content:"\ead4"}
5919
+ .brz-ed .nc-outline-big-smile:before{content:"\ead3"}
5920
+ .brz-ed .nc-outline-bigmouth:before{content:"\ead5"}
5921
+ .brz-ed .nc-outline-bike-2:before{content:"\ead6"}
5922
+ .brz-ed .nc-outline-bike:before{content:"\ead7"}
5923
+ .brz-ed .nc-outline-bill:before{content:"\ead9"}
5924
+ .brz-ed .nc-outline-billiard:before{content:"\ead8"}
5925
+ .brz-ed .nc-outline-binocular:before{content:"\eada"}
5926
+ .brz-ed .nc-outline-biscuit:before{content:"\eadb"}
5927
+ .brz-ed .nc-outline-bitcoin:before{content:"\eadc"}
5928
+ .brz-ed .nc-outline-bleah:before{content:"\eadd"}
5929
+ .brz-ed .nc-outline-blend:before{content:"\eade"}
5930
+ .brz-ed .nc-outline-blind:before{content:"\eae0"}
5931
+ .brz-ed .nc-outline-block-bottom-left:before{content:"\eadf"}
5932
+ .brz-ed .nc-outline-block-bottom-right:before{content:"\eae1"}
5933
+ .brz-ed .nc-outline-block-down:before{content:"\eae2"}
5934
+ .brz-ed .nc-outline-block-left:before{content:"\eae3"}
5935
+ .brz-ed .nc-outline-block-right:before{content:"\eae4"}
5936
+ .brz-ed .nc-outline-block-top-left:before{content:"\eae5"}
5937
+ .brz-ed .nc-outline-block-top-right:before{content:"\eae6"}
5938
+ .brz-ed .nc-outline-block-up:before{content:"\eae8"}
5939
+ .brz-ed .nc-outline-blog:before{content:"\eae7"}
5940
+ .brz-ed .nc-outline-blueberries:before{content:"\eae9"}
5941
+ .brz-ed .nc-outline-bluetooth:before{content:"\eaea"}
5942
+ .brz-ed .nc-outline-board-2:before{content:"\eaeb"}
5943
+ .brz-ed .nc-outline-board-27:before{content:"\eaec"}
5944
+ .brz-ed .nc-outline-board-28:before{content:"\eaed"}
5945
+ .brz-ed .nc-outline-board-29:before{content:"\eaee"}
5946
+ .brz-ed .nc-outline-board-30:before{content:"\eaef"}
5947
+ .brz-ed .nc-outline-board-51:before{content:"\eaf0"}
5948
+ .brz-ed .nc-outline-board:before{content:"\eaf1"}
5949
+ .brz-ed .nc-outline-boat-front:before{content:"\eaf2"}
5950
+ .brz-ed .nc-outline-boat-small-02:before{content:"\eaf3"}
5951
+ .brz-ed .nc-outline-boat-small-03:before{content:"\eaf4"}
5952
+ .brz-ed .nc-outline-boat:before{content:"\eaf5"}
5953
+ .brz-ed .nc-outline-bold-add:before{content:"\eaf6"}
5954
+ .brz-ed .nc-outline-bold-delete:before{content:"\eaf7"}
5955
+ .brz-ed .nc-outline-bold-direction:before{content:"\eaf8"}
5956
+ .brz-ed .nc-outline-bold-down:before{content:"\eaf9"}
5957
+ .brz-ed .nc-outline-bold-left:before{content:"\eafa"}
5958
+ .brz-ed .nc-outline-bold-remove:before{content:"\eafc"}
5959
+ .brz-ed .nc-outline-bold-right:before{content:"\eafb"}
5960
+ .brz-ed .nc-outline-bold-up:before{content:"\eafd"}
5961
+ .brz-ed .nc-outline-bold:before{content:"\eafe"}
5962
+ .brz-ed .nc-outline-bolt:before{content:"\eaff"}
5963
+ .brz-ed .nc-outline-bomb:before{content:"\eb00"}
5964
+ .brz-ed .nc-outline-bones:before{content:"\eb01"}
5965
+ .brz-ed .nc-outline-book-07:before{content:"\eb02"}
5966
+ .brz-ed .nc-outline-book-08:before{content:"\eb03"}
5967
+ .brz-ed .nc-outline-book-39:before{content:"\eb04"}
5968
+ .brz-ed .nc-outline-book-bookmark-2:before{content:"\eb05"}
5969
+ .brz-ed .nc-outline-book-bookmark:before{content:"\eb06"}
5970
+ .brz-ed .nc-outline-book-open-2:before{content:"\eb07"}
5971
+ .brz-ed .nc-outline-book-open:before{content:"\eb08"}
5972
+ .brz-ed .nc-outline-book:before{content:"\eb09"}
5973
+ .brz-ed .nc-outline-bookmark-2:before{content:"\eb0a"}
5974
+ .brz-ed .nc-outline-bookmark-add-2:before{content:"\eb0b"}
5975
+ .brz-ed .nc-outline-bookmark-add:before{content:"\eb0c"}
5976
+ .brz-ed .nc-outline-bookmark-remove-2:before{content:"\eb0d"}
5977
+ .brz-ed .nc-outline-bookmark-remove:before{content:"\eb0e"}
5978
+ .brz-ed .nc-outline-bookmark:before{content:"\eb0f"}
5979
+ .brz-ed .nc-outline-books-46:before{content:"\eb10"}
5980
+ .brz-ed .nc-outline-books:before{content:"\eb11"}
5981
+ .brz-ed .nc-outline-boot-2:before{content:"\eb12"}
5982
+ .brz-ed .nc-outline-boot-woman:before{content:"\eb14"}
5983
+ .brz-ed .nc-outline-boot:before{content:"\eb15"}
5984
+ .brz-ed .nc-outline-border-radius:before{content:"\eb13"}
5985
+ .brz-ed .nc-outline-border:before{content:"\eb16"}
5986
+ .brz-ed .nc-outline-bored:before{content:"\eb17"}
5987
+ .brz-ed .nc-outline-bottle-wine:before{content:"\eb18"}
5988
+ .brz-ed .nc-outline-bottle:before{content:"\eb19"}
5989
+ .brz-ed .nc-outline-bow:before{content:"\eb1a"}
5990
+ .brz-ed .nc-outline-bowl:before{content:"\eb1b"}
5991
+ .brz-ed .nc-outline-bowling:before{content:"\eb1d"}
5992
+ .brz-ed .nc-outline-box-2:before{content:"\eb1c"}
5993
+ .brz-ed .nc-outline-box-3d-50:before{content:"\eb1e"}
5994
+ .brz-ed .nc-outline-box-ribbon:before{content:"\eb1f"}
5995
+ .brz-ed .nc-outline-box:before{content:"\eb20"}
5996
+ .brz-ed .nc-outline-boxing:before{content:"\eb21"}
5997
+ .brz-ed .nc-outline-bra:before{content:"\eb22"}
5998
+ .brz-ed .nc-outline-brain:before{content:"\eb23"}
5999
+ .brz-ed .nc-outline-brakes:before{content:"\eb24"}
6000
+ .brz-ed .nc-outline-bread:before{content:"\eb25"}
6001
+ .brz-ed .nc-outline-briefcase-24:before{content:"\eb26"}
6002
+ .brz-ed .nc-outline-briefcase-25:before{content:"\eb28"}
6003
+ .brz-ed .nc-outline-briefcase-26:before{content:"\eb27"}
6004
+ .brz-ed .nc-outline-brightness-46:before{content:"\eb29"}
6005
+ .brz-ed .nc-outline-brightness-47:before{content:"\eb2a"}
6006
+ .brz-ed .nc-outline-brioche:before{content:"\eb2d"}
6007
+ .brz-ed .nc-outline-broccoli:before{content:"\eb2b"}
6008
+ .brz-ed .nc-outline-broom:before{content:"\eb2c"}
6009
+ .brz-ed .nc-outline-browser-chrome:before{content:"\eb2e"}
6010
+ .brz-ed .nc-outline-browser-edge:before{content:"\eb2f"}
6011
+ .brz-ed .nc-outline-browser-firefox:before{content:"\eb30"}
6012
+ .brz-ed .nc-outline-browser-ie:before{content:"\eb31"}
6013
+ .brz-ed .nc-outline-browser-opera:before{content:"\eb32"}
6014
+ .brz-ed .nc-outline-browser-safari:before{content:"\eb35"}
6015
+ .brz-ed .nc-outline-brush:before{content:"\eb34"}
6016
+ .brz-ed .nc-outline-bucket:before{content:"\eb33"}
6017
+ .brz-ed .nc-outline-bug:before{content:"\eb36"}
6018
+ .brz-ed .nc-outline-building:before{content:"\eb37"}
6019
+ .brz-ed .nc-outline-bulb-61:before{content:"\eb39"}
6020
+ .brz-ed .nc-outline-bulb-62:before{content:"\eb38"}
6021
+ .brz-ed .nc-outline-bulb-63:before{content:"\eb3a"}
6022
+ .brz-ed .nc-outline-bulb-saver:before{content:"\eb3b"}
6023
+ .brz-ed .nc-outline-bulb:before{content:"\eb3d"}
6024
+ .brz-ed .nc-outline-bullet-list-67:before{content:"\eb3c"}
6025
+ .brz-ed .nc-outline-bullet-list-68:before{content:"\eb3e"}
6026
+ .brz-ed .nc-outline-bullet-list-69:before{content:"\eb41"}
6027
+ .brz-ed .nc-outline-bullet-list-70:before{content:"\eb3f"}
6028
+ .brz-ed .nc-outline-bullet-list:before{content:"\eb40"}
6029
+ .brz-ed .nc-outline-bus-front-10:before{content:"\eb42"}
6030
+ .brz-ed .nc-outline-bus-front-12:before{content:"\eb44"}
6031
+ .brz-ed .nc-outline-bus:before{content:"\eb45"}
6032
+ .brz-ed .nc-outline-business-contact-85:before{content:"\eb43"}
6033
+ .brz-ed .nc-outline-business-contact-89:before{content:"\eb46"}
6034
+ .brz-ed .nc-outline-businessman-03:before{content:"\eb47"}
6035
+ .brz-ed .nc-outline-businessman-04:before{content:"\eb48"}
6036
+ .brz-ed .nc-outline-butterfly:before{content:"\eb49"}
6037
+ .brz-ed .nc-outline-button-2:before{content:"\eb4a"}
6038
+ .brz-ed .nc-outline-button-circle-pause:before{content:"\eb4c"}
6039
+ .brz-ed .nc-outline-button-circle-play:before{content:"\eb4b"}
6040
+ .brz-ed .nc-outline-button-circle-stop:before{content:"\eb4d"}
6041
+ .brz-ed .nc-outline-button-eject:before{content:"\eb4e"}
6042
+ .brz-ed .nc-outline-button-next:before{content:"\eb50"}
6043
+ .brz-ed .nc-outline-button-pause:before{content:"\eb4f"}
6044
+ .brz-ed .nc-outline-button-play:before{content:"\eb51"}
6045
+ .brz-ed .nc-outline-button-power:before{content:"\eb52"}
6046
+ .brz-ed .nc-outline-button-previous:before{content:"\eb54"}
6047
+ .brz-ed .nc-outline-button-record:before{content:"\eb53"}
6048
+ .brz-ed .nc-outline-button-rewind:before{content:"\eb55"}
6049
+ .brz-ed .nc-outline-button-skip:before{content:"\eb56"}
6050
+ .brz-ed .nc-outline-button-stop:before{content:"\eb57"}
6051
+ .brz-ed .nc-outline-button:before{content:"\eb58"}
6052
+ .brz-ed .nc-outline-cabinet:before{content:"\eb59"}
6053
+ .brz-ed .nc-outline-cable-49:before{content:"\eb5a"}
6054
+ .brz-ed .nc-outline-cable-50:before{content:"\eb5b"}
6055
+ .brz-ed .nc-outline-cactus:before{content:"\eb5c"}
6056
+ .brz-ed .nc-outline-cake-100:before{content:"\eb5d"}
6057
+ .brz-ed .nc-outline-cake-13:before{content:"\eb5e"}
6058
+ .brz-ed .nc-outline-cake-slice:before{content:"\eb5f"}
6059
+ .brz-ed .nc-outline-cake:before{content:"\eb60"}
6060
+ .brz-ed .nc-outline-calculator:before{content:"\eb61"}
6061
+ .brz-ed .nc-outline-calendar-57:before{content:"\eb62"}
6062
+ .brz-ed .nc-outline-calendar-60:before{content:"\eb64"}
6063
+ .brz-ed .nc-outline-calendar-add:before{content:"\eb65"}
6064
+ .brz-ed .nc-outline-calendar-check-59:before{content:"\eb63"}
6065
+ .brz-ed .nc-outline-calendar-check-62:before{content:"\eb66"}
6066
+ .brz-ed .nc-outline-calendar-grid-58:before{content:"\eb67"}
6067
+ .brz-ed .nc-outline-calendar-grid-61:before{content:"\eb68"}
6068
+ .brz-ed .nc-outline-camera-18:before{content:"\eb69"}
6069
+ .brz-ed .nc-outline-camera-19:before{content:"\eb6a"}
6070
+ .brz-ed .nc-outline-camera-20:before{content:"\eb6b"}
6071
+ .brz-ed .nc-outline-camera-ban-36:before{content:"\eb6c"}
6072
+ .brz-ed .nc-outline-camera-ban-37:before{content:"\eb6d"}
6073
+ .brz-ed .nc-outline-camera-compact:before{content:"\eb6e"}
6074
+ .brz-ed .nc-outline-camera-screen:before{content:"\eb6f"}
6075
+ .brz-ed .nc-outline-camera-square-57:before{content:"\eb70"}
6076
+ .brz-ed .nc-outline-camera-square-58:before{content:"\eb71"}
6077
+ .brz-ed .nc-outline-camera-time:before{content:"\eb72"}
6078
+ .brz-ed .nc-outline-camera:before{content:"\eb73"}
6079
+ .brz-ed .nc-outline-camper:before{content:"\eb75"}
6080
+ .brz-ed .nc-outline-camping:before{content:"\eb74"}
6081
+ .brz-ed .nc-outline-candle:before{content:"\eb76"}
6082
+ .brz-ed .nc-outline-candy-2:before{content:"\eb77"}
6083
+ .brz-ed .nc-outline-candy:before{content:"\eb78"}
6084
+ .brz-ed .nc-outline-canvas:before{content:"\eb79"}
6085
+ .brz-ed .nc-outline-cap:before{content:"\eb7a"}
6086
+ .brz-ed .nc-outline-capitalize:before{content:"\eb7b"}
6087
+ .brz-ed .nc-outline-caps-all:before{content:"\eb7c"}
6088
+ .brz-ed .nc-outline-caps-small:before{content:"\eb7d"}
6089
+ .brz-ed .nc-outline-car-2:before{content:"\eb7e"}
6090
+ .brz-ed .nc-outline-car-accident:before{content:"\eb7f"}
6091
+ .brz-ed .nc-outline-car-connect:before{content:"\eb80"}
6092
+ .brz-ed .nc-outline-car-door:before{content:"\eb81"}
6093
+ .brz-ed .nc-outline-car-front:before{content:"\eb82"}
6094
+ .brz-ed .nc-outline-car-lights:before{content:"\eb83"}
6095
+ .brz-ed .nc-outline-car-parking:before{content:"\eb84"}
6096
+ .brz-ed .nc-outline-car-simple:before{content:"\eb85"}
6097
+ .brz-ed .nc-outline-car-sport:before{content:"\eb86"}
6098
+ .brz-ed .nc-outline-car-taxi:before{content:"\eb87"}
6099
+ .brz-ed .nc-outline-car-ventilation:before{content:"\eb88"}
6100
+ .brz-ed .nc-outline-car-wash:before{content:"\eb89"}
6101
+ .brz-ed .nc-outline-car:before{content:"\eb8a"}
6102
+ .brz-ed .nc-outline-card-add-2:before{content:"\eb8b"}
6103
+ .brz-ed .nc-outline-card-add:before{content:"\eb8c"}
6104
+ .brz-ed .nc-outline-card-alert:before{content:"\eb8d"}
6105
+ .brz-ed .nc-outline-card-edit:before{content:"\eb8e"}
6106
+ .brz-ed .nc-outline-card-favorite:before{content:"\eb8f"}
6107
+ .brz-ed .nc-outline-card-remove:before{content:"\eb90"}
6108
+ .brz-ed .nc-outline-card-update:before{content:"\eb91"}
6109
+ .brz-ed .nc-outline-cardio:before{content:"\eb92"}
6110
+ .brz-ed .nc-outline-cards:before{content:"\eb94"}
6111
+ .brz-ed .nc-outline-carrot:before{content:"\eb95"}
6112
+ .brz-ed .nc-outline-cart-9:before{content:"\eb93"}
6113
+ .brz-ed .nc-outline-cart-add-9:before{content:"\eb96"}
6114
+ .brz-ed .nc-outline-cart-add:before{content:"\eb97"}
6115
+ .brz-ed .nc-outline-cart-favorite:before{content:"\eb98"}
6116
+ .brz-ed .nc-outline-cart-full:before{content:"\eb99"}
6117
+ .brz-ed .nc-outline-cart-in-9:before{content:"\eb9a"}
6118
+ .brz-ed .nc-outline-cart-refresh:before{content:"\eb9c"}
6119
+ .brz-ed .nc-outline-cart-remove-9:before{content:"\eb9b"}
6120
+ .brz-ed .nc-outline-cart-remove:before{content:"\eb9d"}
6121
+ .brz-ed .nc-outline-cart-return:before{content:"\eb9e"}
6122
+ .brz-ed .nc-outline-cart-simple-add:before{content:"\eb9f"}
6123
+ .brz-ed .nc-outline-cart-simple-in:before{content:"\eba1"}
6124
+ .brz-ed .nc-outline-cart-simple-remove:before{content:"\eba0"}
6125
+ .brz-ed .nc-outline-cart-simple:before{content:"\eba2"}
6126
+ .brz-ed .nc-outline-cart-speed:before{content:"\eba3"}
6127
+ .brz-ed .nc-outline-cart:before{content:"\eba4"}
6128
+ .brz-ed .nc-outline-cash-register:before{content:"\eba5"}
6129
+ .brz-ed .nc-outline-castle:before{content:"\eba6"}
6130
+ .brz-ed .nc-outline-cat:before{content:"\eba7"}
6131
+ .brz-ed .nc-outline-cauldron:before{content:"\eba8"}
6132
+ .brz-ed .nc-outline-cctv:before{content:"\eba9"}
6133
+ .brz-ed .nc-outline-cd-reader:before{content:"\ebaa"}
6134
+ .brz-ed .nc-outline-celsius:before{content:"\ebab"}
6135
+ .brz-ed .nc-outline-centralize:before{content:"\ebac"}
6136
+ .brz-ed .nc-outline-chair-2:before{content:"\ebad"}
6137
+ .brz-ed .nc-outline-chair:before{content:"\ebae"}
6138
+ .brz-ed .nc-outline-chalkboard:before{content:"\ebaf"}
6139
+ .brz-ed .nc-outline-champagne:before{content:"\ebb0"}
6140
+ .brz-ed .nc-outline-chart-2:before{content:"\ebb1"}
6141
+ .brz-ed .nc-outline-chart-3:before{content:"\ebb2"}
6142
+ .brz-ed .nc-outline-chart-bar-32:before{content:"\ebb3"}
6143
+ .brz-ed .nc-outline-chart-bar-33:before{content:"\ebb4"}
6144
+ .brz-ed .nc-outline-chart-bar-52:before{content:"\ebb5"}
6145
+ .brz-ed .nc-outline-chart-bar-53:before{content:"\ebb6"}
6146
+ .brz-ed .nc-outline-chart-bar:before{content:"\ebb7"}
6147
+ .brz-ed .nc-outline-chart-bars:before{content:"\ebb8"}
6148
+ .brz-ed .nc-outline-chart-growth:before{content:"\ebb9"}
6149
+ .brz-ed .nc-outline-chart-pie-35:before{content:"\ebba"}
6150
+ .brz-ed .nc-outline-chart-pie-36:before{content:"\ebbb"}
6151
+ .brz-ed .nc-outline-chart-pie:before{content:"\ebbc"}
6152
+ .brz-ed .nc-outline-chart:before{content:"\ebbd"}
6153
+ .brz-ed .nc-outline-chat-33:before{content:"\ebbe"}
6154
+ .brz-ed .nc-outline-chat-45:before{content:"\ebbf"}
6155
+ .brz-ed .nc-outline-chat-46:before{content:"\ebc0"}
6156
+ .brz-ed .nc-outline-chat-content:before{content:"\ebc1"}
6157
+ .brz-ed .nc-outline-chat-reply:before{content:"\ebc2"}
6158
+ .brz-ed .nc-outline-chat-round-content:before{content:"\ebc3"}
6159
+ .brz-ed .nc-outline-chat-round:before{content:"\ebc4"}
6160
+ .brz-ed .nc-outline-chat:before{content:"\ebc5"}
6161
+ .brz-ed .nc-outline-check-2:before{content:"\ebc6"}
6162
+ .brz-ed .nc-outline-check-bold:before{content:"\ebc7"}
6163
+ .brz-ed .nc-outline-check-circle-07:before{content:"\ebc8"}
6164
+ .brz-ed .nc-outline-check-circle-08:before{content:"\ebc9"}
6165
+ .brz-ed .nc-outline-check-curve:before{content:"\ebca"}
6166
+ .brz-ed .nc-outline-check-in:before{content:"\ebcb"}
6167
+ .brz-ed .nc-outline-check-out:before{content:"\ebcc"}
6168
+ .brz-ed .nc-outline-check-simple:before{content:"\ebcd"}
6169
+ .brz-ed .nc-outline-check-small:before{content:"\ebce"}
6170
+ .brz-ed .nc-outline-check-square-09:before{content:"\ebcf"}
6171
+ .brz-ed .nc-outline-check-square-11:before{content:"\ebd0"}
6172
+ .brz-ed .nc-outline-check:before{content:"\ebd1"}
6173
+ .brz-ed .nc-outline-cheese-24:before{content:"\ebd2"}
6174
+ .brz-ed .nc-outline-cheese-87:before{content:"\ebd3"}
6175
+ .brz-ed .nc-outline-cheeseburger:before{content:"\ebd4"}
6176
+ .brz-ed .nc-outline-chef-hat:before{content:"\ebd6"}
6177
+ .brz-ed .nc-outline-chef:before{content:"\ebd5"}
6178
+ .brz-ed .nc-outline-cheque-2:before{content:"\ebd7"}
6179
+ .brz-ed .nc-outline-cheque-3:before{content:"\ebd8"}
6180
+ .brz-ed .nc-outline-cheque:before{content:"\ebda"}
6181
+ .brz-ed .nc-outline-cherry:before{content:"\ebd9"}
6182
+ .brz-ed .nc-outline-chicken-2:before{content:"\ebdb"}
6183
+ .brz-ed .nc-outline-chicken:before{content:"\ebdc"}
6184
+ .brz-ed .nc-outline-child:before{content:"\ebdd"}
6185
+ .brz-ed .nc-outline-chili:before{content:"\ebde"}
6186
+ .brz-ed .nc-outline-chimney:before{content:"\ebdf"}
6187
+ .brz-ed .nc-outline-china:before{content:"\ebe0"}
6188
+ .brz-ed .nc-outline-chinese:before{content:"\ebe1"}
6189
+ .brz-ed .nc-outline-chips:before{content:"\ebe2"}
6190
+ .brz-ed .nc-outline-choco-cream:before{content:"\ebe3"}
6191
+ .brz-ed .nc-outline-chocolate-mousse:before{content:"\ebe4"}
6192
+ .brz-ed .nc-outline-chocolate:before{content:"\ebe5"}
6193
+ .brz-ed .nc-outline-church:before{content:"\ebe6"}
6194
+ .brz-ed .nc-outline-churros:before{content:"\ebe7"}
6195
+ .brz-ed .nc-outline-circle-02:before{content:"\ebe8"}
6196
+ .brz-ed .nc-outline-circle-03:before{content:"\ebe9"}
6197
+ .brz-ed .nc-outline-circle-04:before{content:"\ebea"}
6198
+ .brz-ed .nc-outline-circle-08:before{content:"\ebec"}
6199
+ .brz-ed .nc-outline-circle-09:before{content:"\ebeb"}
6200
+ .brz-ed .nc-outline-circle-10:before{content:"\ebed"}
6201
+ .brz-ed .nc-outline-circle-add:before{content:"\ebee"}
6202
+ .brz-ed .nc-outline-circle-bold-add:before{content:"\ebef"}
6203
+ .brz-ed .nc-outline-circle-bold-delete:before{content:"\ebf0"}
6204
+ .brz-ed .nc-outline-circle-bold-remove:before{content:"\ebf1"}
6205
+ .brz-ed .nc-outline-circle-delete:before{content:"\ebf2"}
6206
+ .brz-ed .nc-outline-circle-down-12:before{content:"\ebf3"}
6207
+ .brz-ed .nc-outline-circle-down-40:before{content:"\ebf4"}
6208
+ .brz-ed .nc-outline-circle-in:before{content:"\ebf5"}
6209
+ .brz-ed .nc-outline-circle-left-10:before{content:"\ebf6"}
6210
+ .brz-ed .nc-outline-circle-left-38:before{content:"\ebf7"}
6211
+ .brz-ed .nc-outline-circle-out:before{content:"\ebf8"}
6212
+ .brz-ed .nc-outline-circle-remove:before{content:"\ebf9"}
6213
+ .brz-ed .nc-outline-circle-right-09:before{content:"\ebfa"}
6214
+ .brz-ed .nc-outline-circle-right-37:before{content:"\ebfc"}
6215
+ .brz-ed .nc-outline-circle-simple-down:before{content:"\ebfb"}
6216
+ .brz-ed .nc-outline-circle-simple-left:before{content:"\ebfe"}
6217
+ .brz-ed .nc-outline-circle-simple-right:before{content:"\ebfd"}
6218
+ .brz-ed .nc-outline-circle-simple-up:before{content:"\ebff"}
6219
+ .brz-ed .nc-outline-circle-up-11:before{content:"\ec00"}
6220
+ .brz-ed .nc-outline-circle-up-39:before{content:"\ec02"}
6221
+ .brz-ed .nc-outline-circle:before{content:"\ec01"}
6222
+ .brz-ed .nc-outline-circuit-round:before{content:"\ec03"}
6223
+ .brz-ed .nc-outline-circuit:before{content:"\ec04"}
6224
+ .brz-ed .nc-outline-clone:before{content:"\ec05"}
6225
+ .brz-ed .nc-outline-cloud-25:before{content:"\ec06"}
6226
+ .brz-ed .nc-outline-cloud-26:before{content:"\ec08"}
6227
+ .brz-ed .nc-outline-cloud-download-93:before{content:"\ec07"}
6228
+ .brz-ed .nc-outline-cloud-download-95:before{content:"\ec09"}
6229
+ .brz-ed .nc-outline-cloud-drop:before{content:"\ec0a"}
6230
+ .brz-ed .nc-outline-cloud-fog-31:before{content:"\ec0c"}
6231
+ .brz-ed .nc-outline-cloud-fog-32:before{content:"\ec0b"}
6232
+ .brz-ed .nc-outline-cloud-hail:before{content:"\ec0d"}
6233
+ .brz-ed .nc-outline-cloud-light:before{content:"\ec0e"}
6234
+ .brz-ed .nc-outline-cloud-moon:before{content:"\ec10"}
6235
+ .brz-ed .nc-outline-cloud-rain:before{content:"\ec0f"}
6236
+ .brz-ed .nc-outline-cloud-rainbow:before{content:"\ec11"}
6237
+ .brz-ed .nc-outline-cloud-snow-34:before{content:"\ec12"}
6238
+ .brz-ed .nc-outline-cloud-snow-42:before{content:"\ec14"}
6239
+ .brz-ed .nc-outline-cloud-sun-17:before{content:"\ec13"}
6240
+ .brz-ed .nc-outline-cloud-sun-19:before{content:"\ec15"}
6241
+ .brz-ed .nc-outline-cloud-upload-94:before{content:"\ec16"}
6242
+ .brz-ed .nc-outline-cloud-upload-96:before{content:"\ec17"}
6243
+ .brz-ed .nc-outline-cloud:before{content:"\ec18"}
6244
+ .brz-ed .nc-outline-clover:before{content:"\ec19"}
6245
+ .brz-ed .nc-outline-coat-hanger:before{content:"\ec1a"}
6246
+ .brz-ed .nc-outline-coat:before{content:"\ec1c"}
6247
+ .brz-ed .nc-outline-cockade:before{content:"\ec1b"}
6248
+ .brz-ed .nc-outline-cocktail:before{content:"\ec1d"}
6249
+ .brz-ed .nc-outline-code-editor:before{content:"\ec1e"}
6250
+ .brz-ed .nc-outline-code:before{content:"\ec1f"}
6251
+ .brz-ed .nc-outline-coffe-long:before{content:"\ec20"}
6252
+ .brz-ed .nc-outline-coffee-2:before{content:"\ec21"}
6253
+ .brz-ed .nc-outline-coffee-bean:before{content:"\ec22"}
6254
+ .brz-ed .nc-outline-coffee-long:before{content:"\ec23"}
6255
+ .brz-ed .nc-outline-coffee:before{content:"\ec24"}
6256
+ .brz-ed .nc-outline-coffin:before{content:"\ec26"}
6257
+ .brz-ed .nc-outline-coins:before{content:"\ec25"}
6258
+ .brz-ed .nc-outline-collar:before{content:"\ec28"}
6259
+ .brz-ed .nc-outline-collection:before{content:"\ec27"}
6260
+ .brz-ed .nc-outline-color:before{content:"\ec2a"}
6261
+ .brz-ed .nc-outline-command:before{content:"\ec29"}
6262
+ .brz-ed .nc-outline-comment-add:before{content:"\ec2b"}
6263
+ .brz-ed .nc-outline-compare:before{content:"\ec2c"}
6264
+ .brz-ed .nc-outline-compass-04:before{content:"\ec2e"}
6265
+ .brz-ed .nc-outline-compass-05:before{content:"\ec2d"}
6266
+ .brz-ed .nc-outline-compass-06:before{content:"\ec2f"}
6267
+ .brz-ed .nc-outline-compass-2:before{content:"\ec30"}
6268
+ .brz-ed .nc-outline-compass-3:before{content:"\ec31"}
6269
+ .brz-ed .nc-outline-compass:before{content:"\ec32"}
6270
+ .brz-ed .nc-outline-components:before{content:"\ec33"}
6271
+ .brz-ed .nc-outline-computer-monitor:before{content:"\ec34"}
6272
+ .brz-ed .nc-outline-computer-old:before{content:"\ec35"}
6273
+ .brz-ed .nc-outline-computer-upload:before{content:"\ec36"}
6274
+ .brz-ed .nc-outline-computer:before{content:"\ec37"}
6275
+ .brz-ed .nc-outline-cone:before{content:"\ec38"}
6276
+ .brz-ed .nc-outline-connect:before{content:"\ec39"}
6277
+ .brz-ed .nc-outline-connection:before{content:"\ec3a"}
6278
+ .brz-ed .nc-outline-contact-86:before{content:"\ec3b"}
6279
+ .brz-ed .nc-outline-contact-87:before{content:"\ec3c"}
6280
+ .brz-ed .nc-outline-contact-88:before{content:"\ec3d"}
6281
+ .brz-ed .nc-outline-contacts-2:before{content:"\ec3e"}
6282
+ .brz-ed .nc-outline-contacts-44:before{content:"\ec3f"}
6283
+ .brz-ed .nc-outline-contacts-45:before{content:"\ec40"}
6284
+ .brz-ed .nc-outline-contacts:before{content:"\ec41"}
6285
+ .brz-ed .nc-outline-contrast-2:before{content:"\ec42"}
6286
+ .brz-ed .nc-outline-contrast:before{content:"\ec43"}
6287
+ .brz-ed .nc-outline-controller-2:before{content:"\ec44"}
6288
+ .brz-ed .nc-outline-controller-3:before{content:"\ec45"}
6289
+ .brz-ed .nc-outline-controller:before{content:"\ec46"}
6290
+ .brz-ed .nc-outline-conversion:before{content:"\ec47"}
6291
+ .brz-ed .nc-outline-cookies:before{content:"\ec48"}
6292
+ .brz-ed .nc-outline-copy-2:before{content:"\ec4a"}
6293
+ .brz-ed .nc-outline-copy:before{content:"\ec49"}
6294
+ .brz-ed .nc-outline-corn:before{content:"\ec4b"}
6295
+ .brz-ed .nc-outline-corner-down-round:before{content:"\ec4c"}
6296
+ .brz-ed .nc-outline-corner-down:before{content:"\ec4d"}
6297
+ .brz-ed .nc-outline-corner-left-down:before{content:"\ec4e"}
6298
+ .brz-ed .nc-outline-corner-left-round:before{content:"\ec50"}
6299
+ .brz-ed .nc-outline-corner-left:before{content:"\ec4f"}
6300
+ .brz-ed .nc-outline-corner-right-down:before{content:"\ec51"}
6301
+ .brz-ed .nc-outline-corner-right-round:before{content:"\ec52"}
6302
+ .brz-ed .nc-outline-corner-right:before{content:"\ec54"}
6303
+ .brz-ed .nc-outline-corner-up-left:before{content:"\ec53"}
6304
+ .brz-ed .nc-outline-corner-up-right:before{content:"\ec55"}
6305
+ .brz-ed .nc-outline-corner-up-round:before{content:"\ec56"}
6306
+ .brz-ed .nc-outline-corner-up:before{content:"\ec57"}
6307
+ .brz-ed .nc-outline-corset:before{content:"\ec58"}
6308
+ .brz-ed .nc-outline-countdown-34:before{content:"\ec59"}
6309
+ .brz-ed .nc-outline-countdown-35:before{content:"\ec5a"}
6310
+ .brz-ed .nc-outline-couple-gay:before{content:"\ec5b"}
6311
+ .brz-ed .nc-outline-couple-lesbian:before{content:"\ec5c"}
6312
+ .brz-ed .nc-outline-coupon:before{content:"\ec5d"}
6313
+ .brz-ed .nc-outline-course:before{content:"\ec5e"}
6314
+ .brz-ed .nc-outline-cow:before{content:"\ec5f"}
6315
+ .brz-ed .nc-outline-crab:before{content:"\ec60"}
6316
+ .brz-ed .nc-outline-cradle:before{content:"\ec62"}
6317
+ .brz-ed .nc-outline-credit-card-in:before{content:"\ec61"}
6318
+ .brz-ed .nc-outline-credit-card:before{content:"\ec64"}
6319
+ .brz-ed .nc-outline-credit-locked:before{content:"\ec63"}
6320
+ .brz-ed .nc-outline-crepe:before{content:"\ec66"}
6321
+ .brz-ed .nc-outline-cricket:before{content:"\ec65"}
6322
+ .brz-ed .nc-outline-croissant:before{content:"\ec67"}
6323
+ .brz-ed .nc-outline-crop:before{content:"\ec68"}
6324
+ .brz-ed .nc-outline-cross-down:before{content:"\ec69"}
6325
+ .brz-ed .nc-outline-cross-horizontal:before{content:"\ec6a"}
6326
+ .brz-ed .nc-outline-cross-left:before{content:"\ec6b"}
6327
+ .brz-ed .nc-outline-cross-right:before{content:"\ec6c"}
6328
+ .brz-ed .nc-outline-cross-up:before{content:"\ec6e"}
6329
+ .brz-ed .nc-outline-cross-vertical:before{content:"\ec6d"}
6330
+ .brz-ed .nc-outline-cross:before{content:"\ec6f"}
6331
+ .brz-ed .nc-outline-crosshair:before{content:"\ec70"}
6332
+ .brz-ed .nc-outline-crown:before{content:"\ec71"}
6333
+ .brz-ed .nc-outline-crumpet:before{content:"\ec72"}
6334
+ .brz-ed .nc-outline-cry-15:before{content:"\ec73"}
6335
+ .brz-ed .nc-outline-cry-57:before{content:"\ec74"}
6336
+ .brz-ed .nc-outline-css3:before{content:"\ec75"}
6337
+ .brz-ed .nc-outline-cupcake:before{content:"\ec76"}
6338
+ .brz-ed .nc-outline-currency-dollar:before{content:"\ec77"}
6339
+ .brz-ed .nc-outline-currency-euro:before{content:"\ec78"}
6340
+ .brz-ed .nc-outline-currency-exchange:before{content:"\ec79"}
6341
+ .brz-ed .nc-outline-currency-pound:before{content:"\ec7a"}
6342
+ .brz-ed .nc-outline-currency-yen:before{content:"\ec7b"}
6343
+ .brz-ed .nc-outline-cursor-48:before{content:"\ec7c"}
6344
+ .brz-ed .nc-outline-cursor-49:before{content:"\ec7e"}
6345
+ .brz-ed .nc-outline-cursor-add:before{content:"\ec7d"}
6346
+ .brz-ed .nc-outline-cursor-grab:before{content:"\ec7f"}
6347
+ .brz-ed .nc-outline-cursor-load:before{content:"\ec80"}
6348
+ .brz-ed .nc-outline-cursor-menu:before{content:"\ec81"}
6349
+ .brz-ed .nc-outline-cursor-not-allowed:before{content:"\ec82"}
6350
+ .brz-ed .nc-outline-cursor-pointer:before{content:"\ec83"}
6351
+ .brz-ed .nc-outline-cursor-text:before{content:"\ec84"}
6352
+ .brz-ed .nc-outline-curtain:before{content:"\ec85"}
6353
+ .brz-ed .nc-outline-curve-circuit:before{content:"\ec86"}
6354
+ .brz-ed .nc-outline-curve-directions:before{content:"\ec88"}
6355
+ .brz-ed .nc-outline-curve-split:before{content:"\ec87"}
6356
+ .brz-ed .nc-outline-curved-next:before{content:"\ec89"}
6357
+ .brz-ed .nc-outline-curved-previous:before{content:"\ec8a"}
6358
+ .brz-ed .nc-outline-customer-support:before{content:"\ec8b"}
6359
+ .brz-ed .nc-outline-cut:before{content:"\ec8c"}
6360
+ .brz-ed .nc-outline-cute:before{content:"\ec8d"}
6361
+ .brz-ed .nc-outline-cutlery-75:before{content:"\ec8e"}
6362
+ .brz-ed .nc-outline-cutlery-76:before{content:"\ec8f"}
6363
+ .brz-ed .nc-outline-cutlery-77:before{content:"\ec90"}
6364
+ .brz-ed .nc-outline-cutlery:before{content:"\ec91"}
6365
+ .brz-ed .nc-outline-cyclist:before{content:"\ec92"}
6366
+ .brz-ed .nc-outline-dart:before{content:"\ec93"}
6367
+ .brz-ed .nc-outline-dashboard-29:before{content:"\ec94"}
6368
+ .brz-ed .nc-outline-dashboard-30:before{content:"\ec95"}
6369
+ .brz-ed .nc-outline-dashboard-half:before{content:"\ec96"}
6370
+ .brz-ed .nc-outline-dashboard-level:before{content:"\ec97"}
6371
+ .brz-ed .nc-outline-database:before{content:"\ec98"}
6372
+ .brz-ed .nc-outline-dead-hand:before{content:"\ec9a"}
6373
+ .brz-ed .nc-outline-decoration:before{content:"\ec99"}
6374
+ .brz-ed .nc-outline-deer:before{content:"\ec9c"}
6375
+ .brz-ed .nc-outline-delete-28:before{content:"\ec9b"}
6376
+ .brz-ed .nc-outline-delete-30:before{content:"\ec9d"}
6377
+ .brz-ed .nc-outline-delete-49:before{content:"\ec9e"}
6378
+ .brz-ed .nc-outline-delete-50:before{content:"\ec9f"}
6379
+ .brz-ed .nc-outline-delivery-2:before{content:"\eca0"}
6380
+ .brz-ed .nc-outline-delivery-3:before{content:"\eca1"}
6381
+ .brz-ed .nc-outline-delivery-fast:before{content:"\eca2"}
6382
+ .brz-ed .nc-outline-delivery-time:before{content:"\eca3"}
6383
+ .brz-ed .nc-outline-delivery-track:before{content:"\eca4"}
6384
+ .brz-ed .nc-outline-delivery:before{content:"\eca5"}
6385
+ .brz-ed .nc-outline-design-system:before{content:"\eca6"}
6386
+ .brz-ed .nc-outline-design:before{content:"\eca7"}
6387
+ .brz-ed .nc-outline-desk-drawer:before{content:"\eca8"}
6388
+ .brz-ed .nc-outline-desk:before{content:"\eca9"}
6389
+ .brz-ed .nc-outline-desktop-screen:before{content:"\ecaa"}
6390
+ .brz-ed .nc-outline-desktop:before{content:"\ecab"}
6391
+ .brz-ed .nc-outline-detox:before{content:"\ecac"}
6392
+ .brz-ed .nc-outline-dev:before{content:"\ecad"}
6393
+ .brz-ed .nc-outline-device-connection:before{content:"\ecae"}
6394
+ .brz-ed .nc-outline-devil:before{content:"\ecaf"}
6395
+ .brz-ed .nc-outline-diag-bottom-left:before{content:"\ecb0"}
6396
+ .brz-ed .nc-outline-diag-bottom-right:before{content:"\ecb1"}
6397
+ .brz-ed .nc-outline-diag-top-left:before{content:"\ecb2"}
6398
+ .brz-ed .nc-outline-diag-top-right:before{content:"\ecb3"}
6399
+ .brz-ed .nc-outline-diamond:before{content:"\ecb4"}
6400
+ .brz-ed .nc-outline-dice:before{content:"\ecb6"}
6401
+ .brz-ed .nc-outline-diet-plan:before{content:"\ecb5"}
6402
+ .brz-ed .nc-outline-diet:before{content:"\ecb7"}
6403
+ .brz-ed .nc-outline-direction-53:before{content:"\ecb8"}
6404
+ .brz-ed .nc-outline-direction-56:before{content:"\ecb9"}
6405
+ .brz-ed .nc-outline-direction:before{content:"\ecba"}
6406
+ .brz-ed .nc-outline-directions:before{content:"\ecbb"}
6407
+ .brz-ed .nc-outline-disabled:before{content:"\ecbc"}
6408
+ .brz-ed .nc-outline-discount-2:before{content:"\ecbd"}
6409
+ .brz-ed .nc-outline-discount:before{content:"\ecbe"}
6410
+ .brz-ed .nc-outline-disgusted:before{content:"\ecc0"}
6411
+ .brz-ed .nc-outline-dish:before{content:"\ecbf"}
6412
+ .brz-ed .nc-outline-dishwasher:before{content:"\ecc1"}
6413
+ .brz-ed .nc-outline-disk-2:before{content:"\ecc2"}
6414
+ .brz-ed .nc-outline-disk-reader:before{content:"\ecc3"}
6415
+ .brz-ed .nc-outline-disk:before{content:"\ecc4"}
6416
+ .brz-ed .nc-outline-disperse:before{content:"\ecc6"}
6417
+ .brz-ed .nc-outline-distribute-horizontal:before{content:"\ecc5"}
6418
+ .brz-ed .nc-outline-distribute-vertical:before{content:"\ecc7"}
6419
+ .brz-ed .nc-outline-divider:before{content:"\ecc8"}
6420
+ .brz-ed .nc-outline-dna-27:before{content:"\ecc9"}
6421
+ .brz-ed .nc-outline-dna-38:before{content:"\ecca"}
6422
+ .brz-ed .nc-outline-dock-bottom:before{content:"\eccb"}
6423
+ .brz-ed .nc-outline-dock-left:before{content:"\eccc"}
6424
+ .brz-ed .nc-outline-dock-right:before{content:"\eccd"}
6425
+ .brz-ed .nc-outline-dock-top:before{content:"\ecce"}
6426
+ .brz-ed .nc-outline-dock:before{content:"\eccf"}
6427
+ .brz-ed .nc-outline-doctor:before{content:"\ecd0"}
6428
+ .brz-ed .nc-outline-dog-house:before{content:"\ecd1"}
6429
+ .brz-ed .nc-outline-dog:before{content:"\ecd2"}
6430
+ .brz-ed .nc-outline-donut:before{content:"\ecd3"}
6431
+ .brz-ed .nc-outline-door:before{content:"\ecd4"}
6432
+ .brz-ed .nc-outline-dots-05:before{content:"\ecd5"}
6433
+ .brz-ed .nc-outline-dots-06:before{content:"\ecd6"}
6434
+ .brz-ed .nc-outline-dots-07:before{content:"\ecd7"}
6435
+ .brz-ed .nc-outline-dots-download:before{content:"\ecd8"}
6436
+ .brz-ed .nc-outline-dots-upload:before{content:"\ecda"}
6437
+ .brz-ed .nc-outline-dots:before{content:"\ecd9"}
6438
+ .brz-ed .nc-outline-double-left:before{content:"\ecdb"}
6439
+ .brz-ed .nc-outline-double-right:before{content:"\ecdc"}
6440
+ .brz-ed .nc-outline-double-tap:before{content:"\ecdd"}
6441
+ .brz-ed .nc-outline-download-2:before{content:"\ecde"}
6442
+ .brz-ed .nc-outline-download-3:before{content:"\ecdf"}
6443
+ .brz-ed .nc-outline-download:before{content:"\ece0"}
6444
+ .brz-ed .nc-outline-drag-21:before{content:"\ece1"}
6445
+ .brz-ed .nc-outline-drag-31:before{content:"\ece2"}
6446
+ .brz-ed .nc-outline-drag-down:before{content:"\ece3"}
6447
+ .brz-ed .nc-outline-drag-left:before{content:"\ece4"}
6448
+ .brz-ed .nc-outline-drag-right:before{content:"\ece5"}
6449
+ .brz-ed .nc-outline-drag-up:before{content:"\ece6"}
6450
+ .brz-ed .nc-outline-drag:before{content:"\ece7"}
6451
+ .brz-ed .nc-outline-drawer-2:before{content:"\ece8"}
6452
+ .brz-ed .nc-outline-drawer:before{content:"\ece9"}
6453
+ .brz-ed .nc-outline-dress-man:before{content:"\ecea"}
6454
+ .brz-ed .nc-outline-dress-woman:before{content:"\eceb"}
6455
+ .brz-ed .nc-outline-drink-2:before{content:"\ecec"}
6456
+ .brz-ed .nc-outline-drink-list:before{content:"\eced"}
6457
+ .brz-ed .nc-outline-drink:before{content:"\ecee"}
6458
+ .brz-ed .nc-outline-drop-15:before{content:"\ecef"}
6459
+ .brz-ed .nc-outline-drop:before{content:"\ecf0"}
6460
+ .brz-ed .nc-outline-drops:before{content:"\ecf1"}
6461
+ .brz-ed .nc-outline-dumbbells:before{content:"\ecf2"}
6462
+ .brz-ed .nc-outline-eclipse:before{content:"\ecf3"}
6463
+ .brz-ed .nc-outline-edit-2:before{content:"\ecf4"}
6464
+ .brz-ed .nc-outline-edit-71:before{content:"\ecf5"}
6465
+ .brz-ed .nc-outline-edit-72:before{content:"\ecf6"}
6466
+ .brz-ed .nc-outline-edit-73:before{content:"\ecf7"}
6467
+ .brz-ed .nc-outline-edit-74:before{content:"\ecf8"}
6468
+ .brz-ed .nc-outline-edit-75:before{content:"\ecf9"}
6469
+ .brz-ed .nc-outline-edit-76:before{content:"\ecfa"}
6470
+ .brz-ed .nc-outline-edit-77:before{content:"\ecfb"}
6471
+ .brz-ed .nc-outline-edit-78:before{content:"\ecfc"}
6472
+ .brz-ed .nc-outline-edit-color:before{content:"\ecfd"}
6473
+ .brz-ed .nc-outline-edit-contrast-42:before{content:"\ecfe"}
6474
+ .brz-ed .nc-outline-edit-contrast-43:before{content:"\ecff"}
6475
+ .brz-ed .nc-outline-edit-saturation:before{content:"\ed00"}
6476
+ .brz-ed .nc-outline-edit:before{content:"\ed01"}
6477
+ .brz-ed .nc-outline-egg-38:before{content:"\ed02"}
6478
+ .brz-ed .nc-outline-egg-39:before{content:"\ed03"}
6479
+ .brz-ed .nc-outline-egg:before{content:"\ed04"}
6480
+ .brz-ed .nc-outline-eject:before{content:"\ed05"}
6481
+ .brz-ed .nc-outline-email-83:before{content:"\ed06"}
6482
+ .brz-ed .nc-outline-email-84:before{content:"\ed07"}
6483
+ .brz-ed .nc-outline-email-85:before{content:"\ed08"}
6484
+ .brz-ed .nc-outline-energy-drink-2:before{content:"\ed0a"}
6485
+ .brz-ed .nc-outline-energy-drink:before{content:"\ed09"}
6486
+ .brz-ed .nc-outline-energy-supplement:before{content:"\ed0b"}
6487
+ .brz-ed .nc-outline-energy:before{content:"\ed0c"}
6488
+ .brz-ed .nc-outline-engine-start:before{content:"\ed0d"}
6489
+ .brz-ed .nc-outline-engine:before{content:"\ed0e"}
6490
+ .brz-ed .nc-outline-enlarge-45:before{content:"\ed0f"}
6491
+ .brz-ed .nc-outline-enlarge-46:before{content:"\ed10"}
6492
+ .brz-ed .nc-outline-enlarge-57:before{content:"\ed12"}
6493
+ .brz-ed .nc-outline-enlarge-58:before{content:"\ed11"}
6494
+ .brz-ed .nc-outline-enlarge-59:before{content:"\ed13"}
6495
+ .brz-ed .nc-outline-enlarge-circle:before{content:"\ed14"}
6496
+ .brz-ed .nc-outline-enlarge-diagonal-43:before{content:"\ed15"}
6497
+ .brz-ed .nc-outline-enlarge-diagonal-44:before{content:"\ed16"}
6498
+ .brz-ed .nc-outline-enlarge-horizontal:before{content:"\ed17"}
6499
+ .brz-ed .nc-outline-enlarge-vertical:before{content:"\ed18"}
6500
+ .brz-ed .nc-outline-eraser-32:before{content:"\ed19"}
6501
+ .brz-ed .nc-outline-eraser-33:before{content:"\ed1a"}
6502
+ .brz-ed .nc-outline-eraser-46:before{content:"\ed1b"}
6503
+ .brz-ed .nc-outline-event-confirm:before{content:"\ed1c"}
6504
+ .brz-ed .nc-outline-event-create:before{content:"\ed1d"}
6505
+ .brz-ed .nc-outline-exchange:before{content:"\ed1e"}
6506
+ .brz-ed .nc-outline-exclamation:before{content:"\ed1f"}
6507
+ .brz-ed .nc-outline-explore-2:before{content:"\ed20"}
6508
+ .brz-ed .nc-outline-explore-user:before{content:"\ed21"}
6509
+ .brz-ed .nc-outline-explore:before{content:"\ed22"}
6510
+ .brz-ed .nc-outline-export:before{content:"\ed23"}
6511
+ .brz-ed .nc-outline-eye-17:before{content:"\ed24"}
6512
+ .brz-ed .nc-outline-eye-19:before{content:"\ed25"}
6513
+ .brz-ed .nc-outline-eye-ban-18:before{content:"\ed26"}
6514
+ .brz-ed .nc-outline-eye-ban-20:before{content:"\ed27"}
6515
+ .brz-ed .nc-outline-factory:before{content:"\ed28"}
6516
+ .brz-ed .nc-outline-fahrenheit:before{content:"\ed2a"}
6517
+ .brz-ed .nc-outline-family:before{content:"\ed29"}
6518
+ .brz-ed .nc-outline-fat-add:before{content:"\ed2b"}
6519
+ .brz-ed .nc-outline-fat-delete:before{content:"\ed2c"}
6520
+ .brz-ed .nc-outline-fat-remove:before{content:"\ed2e"}
6521
+ .brz-ed .nc-outline-fav-remove:before{content:"\ed2d"}
6522
+ .brz-ed .nc-outline-favourite-28:before{content:"\ed2f"}
6523
+ .brz-ed .nc-outline-favourite-31:before{content:"\ed30"}
6524
+ .brz-ed .nc-outline-favourite-add-29:before{content:"\ed31"}
6525
+ .brz-ed .nc-outline-favourite-add-32:before{content:"\ed32"}
6526
+ .brz-ed .nc-outline-favourite-remove-30:before{content:"\ed33"}
6527
+ .brz-ed .nc-outline-favourite-remove-33:before{content:"\ed34"}
6528
+ .brz-ed .nc-outline-fencing:before{content:"\ed36"}
6529
+ .brz-ed .nc-outline-file-add:before{content:"\ed35"}
6530
+ .brz-ed .nc-outline-file-delete:before{content:"\ed37"}
6531
+ .brz-ed .nc-outline-file-download-87:before{content:"\ed38"}
6532
+ .brz-ed .nc-outline-file-download-89:before{content:"\ed39"}
6533
+ .brz-ed .nc-outline-file-download-94:before{content:"\ed3a"}
6534
+ .brz-ed .nc-outline-file-upload-86:before{content:"\ed3b"}
6535
+ .brz-ed .nc-outline-file-upload-88:before{content:"\ed3c"}
6536
+ .brz-ed .nc-outline-file-upload-93:before{content:"\ed3d"}
6537
+ .brz-ed .nc-outline-filter-check:before{content:"\ed3e"}
6538
+ .brz-ed .nc-outline-filter-organization:before{content:"\ed3f"}
6539
+ .brz-ed .nc-outline-filter-remove:before{content:"\ed40"}
6540
+ .brz-ed .nc-outline-filter:before{content:"\ed41"}
6541
+ .brz-ed .nc-outline-fire:before{content:"\ed42"}
6542
+ .brz-ed .nc-outline-firewall:before{content:"\ed43"}
6543
+ .brz-ed .nc-outline-fish:before{content:"\ed44"}
6544
+ .brz-ed .nc-outline-fishbone:before{content:"\ed46"}
6545
+ .brz-ed .nc-outline-fishing:before{content:"\ed45"}
6546
+ .brz-ed .nc-outline-fist:before{content:"\ed47"}
6547
+ .brz-ed .nc-outline-fit-horizontal:before{content:"\ed48"}
6548
+ .brz-ed .nc-outline-fit-vertical:before{content:"\ed49"}
6549
+ .brz-ed .nc-outline-flag-complex:before{content:"\ed4a"}
6550
+ .brz-ed .nc-outline-flag-diagonal-33:before{content:"\ed4b"}
6551
+ .brz-ed .nc-outline-flag-diagonal-34:before{content:"\ed4c"}
6552
+ .brz-ed .nc-outline-flag-finish:before{content:"\ed4d"}
6553
+ .brz-ed .nc-outline-flag-points-31:before{content:"\ed4e"}
6554
+ .brz-ed .nc-outline-flag-points-32:before{content:"\ed50"}
6555
+ .brz-ed .nc-outline-flag-simple:before{content:"\ed4f"}
6556
+ .brz-ed .nc-outline-flag-triangle:before{content:"\ed51"}
6557
+ .brz-ed .nc-outline-flag:before{content:"\ed52"}
6558
+ .brz-ed .nc-outline-flame:before{content:"\ed53"}
6559
+ .brz-ed .nc-outline-flash-21:before{content:"\ed54"}
6560
+ .brz-ed .nc-outline-flash-24:before{content:"\ed55"}
6561
+ .brz-ed .nc-outline-flash-29:before{content:"\ed56"}
6562
+ .brz-ed .nc-outline-flash-auto-22:before{content:"\ed58"}
6563
+ .brz-ed .nc-outline-flash-auto-25:before{content:"\ed57"}
6564
+ .brz-ed .nc-outline-flash-off-23:before{content:"\ed59"}
6565
+ .brz-ed .nc-outline-flash-off-26:before{content:"\ed5a"}
6566
+ .brz-ed .nc-outline-flask-2:before{content:"\ed5b"}
6567
+ .brz-ed .nc-outline-flask:before{content:"\ed5c"}
6568
+ .brz-ed .nc-outline-flick-down:before{content:"\ed5d"}
6569
+ .brz-ed .nc-outline-flick-left:before{content:"\ed5e"}
6570
+ .brz-ed .nc-outline-flick-right:before{content:"\ed5f"}
6571
+ .brz-ed .nc-outline-flick-up:before{content:"\ed60"}
6572
+ .brz-ed .nc-outline-flip-horizontal:before{content:"\ed61"}
6573
+ .brz-ed .nc-outline-flip-vertical:before{content:"\ed62"}
6574
+ .brz-ed .nc-outline-flip:before{content:"\ed63"}
6575
+ .brz-ed .nc-outline-flower-05:before{content:"\ed64"}
6576
+ .brz-ed .nc-outline-flower-06:before{content:"\ed65"}
6577
+ .brz-ed .nc-outline-flower-07:before{content:"\ed66"}
6578
+ .brz-ed .nc-outline-focus-32:before{content:"\ed67"}
6579
+ .brz-ed .nc-outline-focus-38:before{content:"\ed68"}
6580
+ .brz-ed .nc-outline-focus-40:before{content:"\ed69"}
6581
+ .brz-ed .nc-outline-focus-circle:before{content:"\ed6a"}
6582
+ .brz-ed .nc-outline-focus:before{content:"\ed6c"}
6583
+ .brz-ed .nc-outline-fog:before{content:"\ed6b"}
6584
+ .brz-ed .nc-outline-folder-13:before{content:"\ed6d"}
6585
+ .brz-ed .nc-outline-folder-14:before{content:"\ed6e"}
6586
+ .brz-ed .nc-outline-folder-15:before{content:"\ed70"}
6587
+ .brz-ed .nc-outline-folder-16:before{content:"\ed6f"}
6588
+ .brz-ed .nc-outline-folder-17:before{content:"\ed71"}
6589
+ .brz-ed .nc-outline-folder-18:before{content:"\ed72"}
6590
+ .brz-ed .nc-outline-folder-19:before{content:"\ed73"}
6591
+ .brz-ed .nc-outline-folder-add:before{content:"\ed74"}
6592
+ .brz-ed .nc-outline-folder-audio:before{content:"\ed75"}
6593
+ .brz-ed .nc-outline-folder-bookmark:before{content:"\ed76"}
6594
+ .brz-ed .nc-outline-folder-chart-bar:before{content:"\ed78"}
6595
+ .brz-ed .nc-outline-folder-chart-pie:before{content:"\ed77"}
6596
+ .brz-ed .nc-outline-folder-check:before{content:"\ed79"}
6597
+ .brz-ed .nc-outline-folder-cloud:before{content:"\ed7a"}
6598
+ .brz-ed .nc-outline-folder-dev:before{content:"\ed7c"}
6599
+ .brz-ed .nc-outline-folder-download:before{content:"\ed7b"}
6600
+ .brz-ed .nc-outline-folder-edit:before{content:"\ed7d"}
6601
+ .brz-ed .nc-outline-folder-exclamation:before{content:"\ed7e"}
6602
+ .brz-ed .nc-outline-folder-gallery:before{content:"\ed7f"}
6603
+ .brz-ed .nc-outline-folder-heart:before{content:"\ed80"}
6604
+ .brz-ed .nc-outline-folder-image:before{content:"\ed81"}
6605
+ .brz-ed .nc-outline-folder-info:before{content:"\ed82"}
6606
+ .brz-ed .nc-outline-folder-link:before{content:"\ed83"}
6607
+ .brz-ed .nc-outline-folder-locked:before{content:"\ed84"}
6608
+ .brz-ed .nc-outline-folder-money:before{content:"\ed85"}
6609
+ .brz-ed .nc-outline-folder-music:before{content:"\ed86"}
6610
+ .brz-ed .nc-outline-folder-no-access:before{content:"\ed87"}
6611
+ .brz-ed .nc-outline-folder-play:before{content:"\ed88"}
6612
+ .brz-ed .nc-outline-folder-question:before{content:"\ed89"}
6613
+ .brz-ed .nc-outline-folder-refresh:before{content:"\ed8a"}
6614
+ .brz-ed .nc-outline-folder-remove:before{content:"\ed8b"}
6615
+ .brz-ed .nc-outline-folder-search:before{content:"\ed8c"}
6616
+ .brz-ed .nc-outline-folder-settings-81:before{content:"\ed8d"}
6617
+ .brz-ed .nc-outline-folder-settings-97:before{content:"\ed8e"}
6618
+ .brz-ed .nc-outline-folder-shared:before{content:"\ed8f"}
6619
+ .brz-ed .nc-outline-folder-star:before{content:"\ed90"}
6620
+ .brz-ed .nc-outline-folder-time:before{content:"\ed91"}
6621
+ .brz-ed .nc-outline-folder-upload:before{content:"\ed92"}
6622
+ .brz-ed .nc-outline-folder-user:before{content:"\ed93"}
6623
+ .brz-ed .nc-outline-folder-vector:before{content:"\ed94"}
6624
+ .brz-ed .nc-outline-food-dog:before{content:"\ed95"}
6625
+ .brz-ed .nc-outline-food-scale:before{content:"\ed96"}
6626
+ .brz-ed .nc-outline-food:before{content:"\ed97"}
6627
+ .brz-ed .nc-outline-football-headguard:before{content:"\ed98"}
6628
+ .brz-ed .nc-outline-forecast:before{content:"\ed99"}
6629
+ .brz-ed .nc-outline-forest:before{content:"\ed9a"}
6630
+ .brz-ed .nc-outline-fork-round:before{content:"\ed9c"}
6631
+ .brz-ed .nc-outline-fork:before{content:"\ed9b"}
6632
+ .brz-ed .nc-outline-form:before{content:"\ed9e"}
6633
+ .brz-ed .nc-outline-format-left:before{content:"\ed9d"}
6634
+ .brz-ed .nc-outline-format-right:before{content:"\ed9f"}
6635
+ .brz-ed .nc-outline-forward:before{content:"\eda0"}
6636
+ .brz-ed .nc-outline-frame-12:before{content:"\eda1"}
6637
+ .brz-ed .nc-outline-frame-41:before{content:"\eda2"}
6638
+ .brz-ed .nc-outline-frame:before{content:"\eda3"}
6639
+ .brz-ed .nc-outline-frankenstein:before{content:"\eda4"}
6640
+ .brz-ed .nc-outline-fridge:before{content:"\eda6"}
6641
+ .brz-ed .nc-outline-fuel-2:before{content:"\eda5"}
6642
+ .brz-ed .nc-outline-fuel-electric:before{content:"\eda7"}
6643
+ .brz-ed .nc-outline-fuel:before{content:"\eda8"}
6644
+ .brz-ed .nc-outline-full-screen:before{content:"\eda9"}
6645
+ .brz-ed .nc-outline-fullscreen-70:before{content:"\edaa"}
6646
+ .brz-ed .nc-outline-fullscreen-71:before{content:"\edab"}
6647
+ .brz-ed .nc-outline-fullscreen-76:before{content:"\edac"}
6648
+ .brz-ed .nc-outline-fullscreen-77:before{content:"\edae"}
6649
+ .brz-ed .nc-outline-fullscreen-double-74:before{content:"\edad"}
6650
+ .brz-ed .nc-outline-fullscreen-double-75:before{content:"\edaf"}
6651
+ .brz-ed .nc-outline-fullscreen-split-72:before{content:"\edb0"}
6652
+ .brz-ed .nc-outline-fullscreen-split-73:before{content:"\edb1"}
6653
+ .brz-ed .nc-outline-fullsize:before{content:"\edb2"}
6654
+ .brz-ed .nc-outline-funnel-39:before{content:"\edb3"}
6655
+ .brz-ed .nc-outline-funnel-40:before{content:"\edb4"}
6656
+ .brz-ed .nc-outline-funnel-41:before{content:"\edb5"}
6657
+ .brz-ed .nc-outline-gallery:before{content:"\edb6"}
6658
+ .brz-ed .nc-outline-gantt:before{content:"\edb7"}
6659
+ .brz-ed .nc-outline-garlic:before{content:"\edb8"}
6660
+ .brz-ed .nc-outline-ghost-2:before{content:"\edb9"}
6661
+ .brz-ed .nc-outline-ghost:before{content:"\edba"}
6662
+ .brz-ed .nc-outline-gift-2:before{content:"\edbb"}
6663
+ .brz-ed .nc-outline-gift-exchange:before{content:"\edbc"}
6664
+ .brz-ed .nc-outline-gift:before{content:"\edbd"}
6665
+ .brz-ed .nc-outline-git-commit:before{content:"\edbe"}
6666
+ .brz-ed .nc-outline-glass-water:before{content:"\edbf"}
6667
+ .brz-ed .nc-outline-glass:before{content:"\edc0"}
6668
+ .brz-ed .nc-outline-glasses-2:before{content:"\edc2"}
6669
+ .brz-ed .nc-outline-glasses:before{content:"\edc1"}
6670
+ .brz-ed .nc-outline-globe-2:before{content:"\edc3"}
6671
+ .brz-ed .nc-outline-globe:before{content:"\edc4"}
6672
+ .brz-ed .nc-outline-glove:before{content:"\edc5"}
6673
+ .brz-ed .nc-outline-gloves:before{content:"\edc6"}
6674
+ .brz-ed .nc-outline-goal-64:before{content:"\edc7"}
6675
+ .brz-ed .nc-outline-goal-65:before{content:"\edc8"}
6676
+ .brz-ed .nc-outline-gold:before{content:"\edc9"}
6677
+ .brz-ed .nc-outline-golf:before{content:"\edca"}
6678
+ .brz-ed .nc-outline-gps:before{content:"\edcb"}
6679
+ .brz-ed .nc-outline-grab:before{content:"\edcc"}
6680
+ .brz-ed .nc-outline-gradient:before{content:"\edcd"}
6681
+ .brz-ed .nc-outline-grammar-check:before{content:"\edce"}
6682
+ .brz-ed .nc-outline-grape:before{content:"\edcf"}
6683
+ .brz-ed .nc-outline-grave:before{content:"\edd0"}
6684
+ .brz-ed .nc-outline-grid-45:before{content:"\edd1"}
6685
+ .brz-ed .nc-outline-grid-46:before{content:"\edd2"}
6686
+ .brz-ed .nc-outline-grid-48:before{content:"\edd3"}
6687
+ .brz-ed .nc-outline-grid-49:before{content:"\edd4"}
6688
+ .brz-ed .nc-outline-grid-50:before{content:"\edd5"}
6689
+ .brz-ed .nc-outline-grid-square:before{content:"\edd6"}
6690
+ .brz-ed .nc-outline-grid-system:before{content:"\edd8"}
6691
+ .brz-ed .nc-outline-grid:before{content:"\edd7"}
6692
+ .brz-ed .nc-outline-group:before{content:"\edd9"}
6693
+ .brz-ed .nc-outline-guitar:before{content:"\edda"}
6694
+ .brz-ed .nc-outline-hammer:before{content:"\eddb"}
6695
+ .brz-ed .nc-outline-hand-card:before{content:"\eddc"}
6696
+ .brz-ed .nc-outline-handout:before{content:"\edde"}
6697
+ .brz-ed .nc-outline-handshake:before{content:"\eddd"}
6698
+ .brz-ed .nc-outline-hanger-clothes:before{content:"\eddf"}
6699
+ .brz-ed .nc-outline-hanger:before{content:"\ede0"}
6700
+ .brz-ed .nc-outline-hannibal:before{content:"\ede2"}
6701
+ .brz-ed .nc-outline-happy-sun:before{content:"\ede1"}
6702
+ .brz-ed .nc-outline-hat-2:before{content:"\ede3"}
6703
+ .brz-ed .nc-outline-hat-3:before{content:"\ede4"}
6704
+ .brz-ed .nc-outline-hat-top:before{content:"\ede5"}
6705
+ .brz-ed .nc-outline-hat:before{content:"\ede6"}
6706
+ .brz-ed .nc-outline-hazelnut:before{content:"\ede7"}
6707
+ .brz-ed .nc-outline-hdmi:before{content:"\ede8"}
6708
+ .brz-ed .nc-outline-headphone:before{content:"\ede9"}
6709
+ .brz-ed .nc-outline-headphones-2:before{content:"\edea"}
6710
+ .brz-ed .nc-outline-headphones-mic:before{content:"\edec"}
6711
+ .brz-ed .nc-outline-headphones:before{content:"\edeb"}
6712
+ .brz-ed .nc-outline-headset:before{content:"\eded"}
6713
+ .brz-ed .nc-outline-heart-2:before{content:"\edee"}
6714
+ .brz-ed .nc-outline-heart-add:before{content:"\edef"}
6715
+ .brz-ed .nc-outline-heart-remove:before{content:"\edf0"}
6716
+ .brz-ed .nc-outline-heart:before{content:"\edf2"}
6717
+ .brz-ed .nc-outline-heartbeat:before{content:"\edf1"}
6718
+ .brz-ed .nc-outline-heater:before{content:"\edf3"}
6719
+ .brz-ed .nc-outline-height:before{content:"\edf4"}
6720
+ .brz-ed .nc-outline-helicopter:before{content:"\edf5"}
6721
+ .brz-ed .nc-outline-helmet-2:before{content:"\edf6"}
6722
+ .brz-ed .nc-outline-helmet:before{content:"\edf7"}
6723
+ .brz-ed .nc-outline-hierarchy-53:before{content:"\edf8"}
6724
+ .brz-ed .nc-outline-hierarchy-54:before{content:"\edfa"}
6725
+ .brz-ed .nc-outline-hierarchy-55:before{content:"\edf9"}
6726
+ .brz-ed .nc-outline-hierarchy-56:before{content:"\edfb"}
6727
+ .brz-ed .nc-outline-hit-down:before{content:"\edfc"}
6728
+ .brz-ed .nc-outline-hit-left:before{content:"\edfd"}
6729
+ .brz-ed .nc-outline-hit-right:before{content:"\edfe"}
6730
+ .brz-ed .nc-outline-hit-up:before{content:"\edff"}
6731
+ .brz-ed .nc-outline-hob:before{content:"\ee00"}
6732
+ .brz-ed .nc-outline-hockey:before{content:"\ee01"}
6733
+ .brz-ed .nc-outline-hold:before{content:"\ee02"}
6734
+ .brz-ed .nc-outline-home-2:before{content:"\ee03"}
6735
+ .brz-ed .nc-outline-home-51:before{content:"\ee04"}
6736
+ .brz-ed .nc-outline-home-52:before{content:"\ee05"}
6737
+ .brz-ed .nc-outline-home-minimal:before{content:"\ee06"}
6738
+ .brz-ed .nc-outline-home-search:before{content:"\ee07"}
6739
+ .brz-ed .nc-outline-home-simple:before{content:"\ee08"}
6740
+ .brz-ed .nc-outline-home:before{content:"\ee09"}
6741
+ .brz-ed .nc-outline-honey:before{content:"\ee0a"}
6742
+ .brz-ed .nc-outline-hoodie:before{content:"\ee0b"}
6743
+ .brz-ed .nc-outline-hospital-32:before{content:"\ee0c"}
6744
+ .brz-ed .nc-outline-hospital-33:before{content:"\ee0d"}
6745
+ .brz-ed .nc-outline-hospital-34:before{content:"\ee0e"}
6746
+ .brz-ed .nc-outline-hot-dog:before{content:"\ee0f"}
6747
+ .brz-ed .nc-outline-hotel-bell:before{content:"\ee10"}
6748
+ .brz-ed .nc-outline-hotel-symbol:before{content:"\ee11"}
6749
+ .brz-ed .nc-outline-hotel:before{content:"\ee12"}
6750
+ .brz-ed .nc-outline-hourglass:before{content:"\ee13"}
6751
+ .brz-ed .nc-outline-html5:before{content:"\ee14"}
6752
+ .brz-ed .nc-outline-humidity-26:before{content:"\ee15"}
6753
+ .brz-ed .nc-outline-humidity-52:before{content:"\ee16"}
6754
+ .brz-ed .nc-outline-hurricane-44:before{content:"\ee17"}
6755
+ .brz-ed .nc-outline-hurricane-45:before{content:"\ee18"}
6756
+ .brz-ed .nc-outline-hut:before{content:"\ee19"}
6757
+ .brz-ed .nc-outline-hybrid:before{content:"\ee1a"}
6758
+ .brz-ed .nc-outline-ice-cream-22:before{content:"\ee1b"}
6759
+ .brz-ed .nc-outline-ice-cream-72:before{content:"\ee1c"}
6760
+ .brz-ed .nc-outline-ice-cream:before{content:"\ee1d"}
6761
+ .brz-ed .nc-outline-igloo:before{content:"\ee1e"}
6762
+ .brz-ed .nc-outline-image-01:before{content:"\ee1f"}
6763
+ .brz-ed .nc-outline-image-02:before{content:"\ee20"}
6764
+ .brz-ed .nc-outline-image-05:before{content:"\ee21"}
6765
+ .brz-ed .nc-outline-image-2:before{content:"\ee22"}
6766
+ .brz-ed .nc-outline-image-3:before{content:"\ee23"}
6767
+ .brz-ed .nc-outline-image-add:before{content:"\ee24"}
6768
+ .brz-ed .nc-outline-image-delete:before{content:"\ee25"}
6769
+ .brz-ed .nc-outline-image-location:before{content:"\ee26"}
6770
+ .brz-ed .nc-outline-image:before{content:"\ee27"}
6771
+ .brz-ed .nc-outline-infinite:before{content:"\ee28"}
6772
+ .brz-ed .nc-outline-info:before{content:"\ee29"}
6773
+ .brz-ed .nc-outline-input-12:before{content:"\ee2a"}
6774
+ .brz-ed .nc-outline-input-21:before{content:"\ee2c"}
6775
+ .brz-ed .nc-outline-intestine:before{content:"\ee2b"}
6776
+ .brz-ed .nc-outline-invert:before{content:"\ee2d"}
6777
+ .brz-ed .nc-outline-iron-2:before{content:"\ee2e"}
6778
+ .brz-ed .nc-outline-iron-dont:before{content:"\ee2f"}
6779
+ .brz-ed .nc-outline-iron:before{content:"\ee30"}
6780
+ .brz-ed .nc-outline-istanbul:before{content:"\ee31"}
6781
+ .brz-ed .nc-outline-italic:before{content:"\ee32"}
6782
+ .brz-ed .nc-outline-jam:before{content:"\ee34"}
6783
+ .brz-ed .nc-outline-jeans-41:before{content:"\ee33"}
6784
+ .brz-ed .nc-outline-jeans-43:before{content:"\ee35"}
6785
+ .brz-ed .nc-outline-jeans-pocket:before{content:"\ee36"}
6786
+ .brz-ed .nc-outline-jelly:before{content:"\ee37"}
6787
+ .brz-ed .nc-outline-jellyfish:before{content:"\ee38"}
6788
+ .brz-ed .nc-outline-journey-04:before{content:"\ee39"}
6789
+ .brz-ed .nc-outline-journey-05:before{content:"\ee3a"}
6790
+ .brz-ed .nc-outline-journey-06:before{content:"\ee3b"}
6791
+ .brz-ed .nc-outline-journey-07:before{content:"\ee3c"}
6792
+ .brz-ed .nc-outline-journey-08:before{content:"\ee3d"}
6793
+ .brz-ed .nc-outline-juice:before{content:"\ee3e"}
6794
+ .brz-ed .nc-outline-kettle:before{content:"\ee3f"}
6795
+ .brz-ed .nc-outline-kettlebell:before{content:"\ee40"}
6796
+ .brz-ed .nc-outline-key-25:before{content:"\ee41"}
6797
+ .brz-ed .nc-outline-key-26:before{content:"\ee42"}
6798
+ .brz-ed .nc-outline-keyboard-hide:before{content:"\ee43"}
6799
+ .brz-ed .nc-outline-keyboard-mouse:before{content:"\ee44"}
6800
+ .brz-ed .nc-outline-keyboard-wifi:before{content:"\ee45"}
6801
+ .brz-ed .nc-outline-keyboard-wireless:before{content:"\ee46"}
6802
+ .brz-ed .nc-outline-keyboard:before{content:"\ee47"}
6803
+ .brz-ed .nc-outline-kid-2:before{content:"\ee48"}
6804
+ .brz-ed .nc-outline-kid:before{content:"\ee49"}
6805
+ .brz-ed .nc-outline-kiss:before{content:"\ee4a"}
6806
+ .brz-ed .nc-outline-kitchen-fan:before{content:"\ee4b"}
6807
+ .brz-ed .nc-outline-kitchen:before{content:"\ee4c"}
6808
+ .brz-ed .nc-outline-kiwi:before{content:"\ee4d"}
6809
+ .brz-ed .nc-outline-knife:before{content:"\ee4e"}
6810
+ .brz-ed .nc-outline-knob:before{content:"\ee4f"}
6811
+ .brz-ed .nc-outline-l-add:before{content:"\ee50"}
6812
+ .brz-ed .nc-outline-l-check:before{content:"\ee51"}
6813
+ .brz-ed .nc-outline-l-circle:before{content:"\ee52"}
6814
+ .brz-ed .nc-outline-l-circles:before{content:"\ee53"}
6815
+ .brz-ed .nc-outline-l-location:before{content:"\ee54"}
6816
+ .brz-ed .nc-outline-l-remove:before{content:"\ee56"}
6817
+ .brz-ed .nc-outline-l-search:before{content:"\ee55"}
6818
+ .brz-ed .nc-outline-l-security:before{content:"\ee57"}
6819
+ .brz-ed .nc-outline-l-settings:before{content:"\ee58"}
6820
+ .brz-ed .nc-outline-l-sync:before{content:"\ee59"}
6821
+ .brz-ed .nc-outline-l-system-update:before{content:"\ee5a"}
6822
+ .brz-ed .nc-outline-lab:before{content:"\ee5b"}
6823
+ .brz-ed .nc-outline-lamp-2:before{content:"\ee5c"}
6824
+ .brz-ed .nc-outline-lamp-3:before{content:"\ee5d"}
6825
+ .brz-ed .nc-outline-lamp-floor:before{content:"\ee5e"}
6826
+ .brz-ed .nc-outline-lamp:before{content:"\ee60"}
6827
+ .brz-ed .nc-outline-language:before{content:"\ee5f"}
6828
+ .brz-ed .nc-outline-laptop-1:before{content:"\ee62"}
6829
+ .brz-ed .nc-outline-laptop-2:before{content:"\ee61"}
6830
+ .brz-ed .nc-outline-laptop-71:before{content:"\ee64"}
6831
+ .brz-ed .nc-outline-laptop-72:before{content:"\ee63"}
6832
+ .brz-ed .nc-outline-laptop:before{content:"\ee65"}
6833
+ .brz-ed .nc-outline-laugh-17:before{content:"\ee66"}
6834
+ .brz-ed .nc-outline-laugh-35:before{content:"\ee68"}
6835
+ .brz-ed .nc-outline-launch-11:before{content:"\ee67"}
6836
+ .brz-ed .nc-outline-launch-47:before{content:"\ee69"}
6837
+ .brz-ed .nc-outline-law:before{content:"\ee6a"}
6838
+ .brz-ed .nc-outline-layers-2:before{content:"\ee6b"}
6839
+ .brz-ed .nc-outline-layers-3:before{content:"\ee6c"}
6840
+ .brz-ed .nc-outline-layers:before{content:"\ee6d"}
6841
+ .brz-ed .nc-outline-layout-11:before{content:"\ee6e"}
6842
+ .brz-ed .nc-outline-layout-25:before{content:"\ee6f"}
6843
+ .brz-ed .nc-outline-leaf-36:before{content:"\ee70"}
6844
+ .brz-ed .nc-outline-leaf-38:before{content:"\ee71"}
6845
+ .brz-ed .nc-outline-leaf-80:before{content:"\ee72"}
6846
+ .brz-ed .nc-outline-leaf-81:before{content:"\ee73"}
6847
+ .brz-ed .nc-outline-leaf-edit:before{content:"\ee74"}
6848
+ .brz-ed .nc-outline-lemon-slice:before{content:"\ee76"}
6849
+ .brz-ed .nc-outline-lemon:before{content:"\ee75"}
6850
+ .brz-ed .nc-outline-lens-31:before{content:"\ee77"}
6851
+ .brz-ed .nc-outline-lens-56:before{content:"\ee78"}
6852
+ .brz-ed .nc-outline-library:before{content:"\ee79"}
6853
+ .brz-ed .nc-outline-light-2:before{content:"\ee7a"}
6854
+ .brz-ed .nc-outline-light-3:before{content:"\ee7b"}
6855
+ .brz-ed .nc-outline-light-traffic:before{content:"\ee7c"}
6856
+ .brz-ed .nc-outline-light:before{content:"\ee7e"}
6857
+ .brz-ed .nc-outline-lighter:before{content:"\ee7d"}
6858
+ .brz-ed .nc-outline-lighthouse:before{content:"\ee7f"}
6859
+ .brz-ed .nc-outline-like-2:before{content:"\ee80"}
6860
+ .brz-ed .nc-outline-like-no:before{content:"\ee81"}
6861
+ .brz-ed .nc-outline-like:before{content:"\ee82"}
6862
+ .brz-ed .nc-outline-line-height:before{content:"\ee83"}
6863
+ .brz-ed .nc-outline-lines:before{content:"\ee84"}
6864
+ .brz-ed .nc-outline-link-2:before{content:"\ee85"}
6865
+ .brz-ed .nc-outline-link-66:before{content:"\ee86"}
6866
+ .brz-ed .nc-outline-link-67:before{content:"\ee87"}
6867
+ .brz-ed .nc-outline-link-68:before{content:"\ee88"}
6868
+ .brz-ed .nc-outline-link-69:before{content:"\ee89"}
6869
+ .brz-ed .nc-outline-link-71:before{content:"\ee8a"}
6870
+ .brz-ed .nc-outline-link-72:before{content:"\ee8b"}
6871
+ .brz-ed .nc-outline-link-broken-70:before{content:"\ee8c"}
6872
+ .brz-ed .nc-outline-link-broken-73:before{content:"\ee8d"}
6873
+ .brz-ed .nc-outline-link:before{content:"\ee8e"}
6874
+ .brz-ed .nc-outline-list-bullet:before{content:"\ee8f"}
6875
+ .brz-ed .nc-outline-list-numbers:before{content:"\ee90"}
6876
+ .brz-ed .nc-outline-list:before{content:"\ee91"}
6877
+ .brz-ed .nc-outline-lobster:before{content:"\ee92"}
6878
+ .brz-ed .nc-outline-lock-circle-open:before{content:"\ee93"}
6879
+ .brz-ed .nc-outline-lock-circle:before{content:"\ee94"}
6880
+ .brz-ed .nc-outline-lock-landscape:before{content:"\ee95"}
6881
+ .brz-ed .nc-outline-lock-open:before{content:"\ee96"}
6882
+ .brz-ed .nc-outline-lock-portrait:before{content:"\ee97"}
6883
+ .brz-ed .nc-outline-lock:before{content:"\ee98"}
6884
+ .brz-ed .nc-outline-locked:before{content:"\ee99"}
6885
+ .brz-ed .nc-outline-log-in:before{content:"\ee9a"}
6886
+ .brz-ed .nc-outline-log-out-2:before{content:"\ee9b"}
6887
+ .brz-ed .nc-outline-log-out:before{content:"\ee9c"}
6888
+ .brz-ed .nc-outline-logout:before{content:"\ee9d"}
6889
+ .brz-ed .nc-outline-lollipop:before{content:"\ee9e"}
6890
+ .brz-ed .nc-outline-london:before{content:"\ee9f"}
6891
+ .brz-ed .nc-outline-long-sleeve:before{content:"\eea0"}
6892
+ .brz-ed .nc-outline-loop-30:before{content:"\eea1"}
6893
+ .brz-ed .nc-outline-loop-34:before{content:"\eea2"}
6894
+ .brz-ed .nc-outline-loop-82:before{content:"\eea3"}
6895
+ .brz-ed .nc-outline-loop-83:before{content:"\eea4"}
6896
+ .brz-ed .nc-outline-loop:before{content:"\eea5"}
6897
+ .brz-ed .nc-outline-luggage:before{content:"\eea6"}
6898
+ .brz-ed .nc-outline-lungs:before{content:"\eea8"}
6899
+ .brz-ed .nc-outline-m-add:before{content:"\eea7"}
6900
+ .brz-ed .nc-outline-m-check:before{content:"\eea9"}
6901
+ .brz-ed .nc-outline-m-delete:before{content:"\eeaa"}
6902
+ .brz-ed .nc-outline-m-edit:before{content:"\eeab"}
6903
+ .brz-ed .nc-outline-m-heart:before{content:"\eeac"}
6904
+ .brz-ed .nc-outline-m-location:before{content:"\eeae"}
6905
+ .brz-ed .nc-outline-m-remove:before{content:"\eead"}
6906
+ .brz-ed .nc-outline-m-search:before{content:"\eeaf"}
6907
+ .brz-ed .nc-outline-m-security:before{content:"\eeb0"}
6908
+ .brz-ed .nc-outline-m-settings:before{content:"\eeb2"}
6909
+ .brz-ed .nc-outline-m-share:before{content:"\eeb1"}
6910
+ .brz-ed .nc-outline-m-star:before{content:"\eeb3"}
6911
+ .brz-ed .nc-outline-m-sync:before{content:"\eeb4"}
6912
+ .brz-ed .nc-outline-m-time:before{content:"\eeb6"}
6913
+ .brz-ed .nc-outline-m-update:before{content:"\eeb5"}
6914
+ .brz-ed .nc-outline-macro:before{content:"\eeb7"}
6915
+ .brz-ed .nc-outline-mad-12:before{content:"\eeb8"}
6916
+ .brz-ed .nc-outline-mad-58:before{content:"\eeb9"}
6917
+ .brz-ed .nc-outline-magnet:before{content:"\eeba"}
6918
+ .brz-ed .nc-outline-makeup:before{content:"\eebb"}
6919
+ .brz-ed .nc-outline-malicious:before{content:"\eebc"}
6920
+ .brz-ed .nc-outline-man-20:before{content:"\eebd"}
6921
+ .brz-ed .nc-outline-man-23:before{content:"\eebe"}
6922
+ .brz-ed .nc-outline-man-down:before{content:"\eebf"}
6923
+ .brz-ed .nc-outline-man-glasses:before{content:"\eec0"}
6924
+ .brz-ed .nc-outline-man-up:before{content:"\eec1"}
6925
+ .brz-ed .nc-outline-man:before{content:"\eec2"}
6926
+ .brz-ed .nc-outline-manga-62:before{content:"\eec3"}
6927
+ .brz-ed .nc-outline-manga-63:before{content:"\eec4"}
6928
+ .brz-ed .nc-outline-map-big:before{content:"\eec5"}
6929
+ .brz-ed .nc-outline-map-compass:before{content:"\eec6"}
6930
+ .brz-ed .nc-outline-map-gps:before{content:"\eec7"}
6931
+ .brz-ed .nc-outline-map-marker:before{content:"\eec8"}
6932
+ .brz-ed .nc-outline-map-pin:before{content:"\eec9"}
6933
+ .brz-ed .nc-outline-map:before{content:"\eeca"}
6934
+ .brz-ed .nc-outline-margin-left:before{content:"\eecb"}
6935
+ .brz-ed .nc-outline-margin-right:before{content:"\eecc"}
6936
+ .brz-ed .nc-outline-marker-2:before{content:"\eecd"}
6937
+ .brz-ed .nc-outline-marker-3:before{content:"\eece"}
6938
+ .brz-ed .nc-outline-marker:before{content:"\eecf"}
6939
+ .brz-ed .nc-outline-market-music:before{content:"\eed0"}
6940
+ .brz-ed .nc-outline-market-play:before{content:"\eed1"}
6941
+ .brz-ed .nc-outline-mask-oval:before{content:"\eed2"}
6942
+ .brz-ed .nc-outline-mask-rect:before{content:"\eed3"}
6943
+ .brz-ed .nc-outline-matches:before{content:"\eed4"}
6944
+ .brz-ed .nc-outline-math:before{content:"\eed5"}
6945
+ .brz-ed .nc-outline-measure-02:before{content:"\eed6"}
6946
+ .brz-ed .nc-outline-measure-17:before{content:"\eed7"}
6947
+ .brz-ed .nc-outline-measure-big:before{content:"\eed8"}
6948
+ .brz-ed .nc-outline-measuring-cup:before{content:"\eed9"}
6949
+ .brz-ed .nc-outline-meat-spit:before{content:"\eeda"}
6950
+ .brz-ed .nc-outline-meeting:before{content:"\eedb"}
6951
+ .brz-ed .nc-outline-menu-34:before{content:"\eedc"}
6952
+ .brz-ed .nc-outline-menu-35:before{content:"\eedd"}
6953
+ .brz-ed .nc-outline-menu-bold:before{content:"\eede"}
6954
+ .brz-ed .nc-outline-menu-dots:before{content:"\eedf"}
6955
+ .brz-ed .nc-outline-menu-left:before{content:"\eee0"}
6956
+ .brz-ed .nc-outline-menu-right:before{content:"\eee1"}
6957
+ .brz-ed .nc-outline-menu-square:before{content:"\eee2"}
6958
+ .brz-ed .nc-outline-menu:before{content:"\eee3"}
6959
+ .brz-ed .nc-outline-merge-2:before{content:"\eee4"}
6960
+ .brz-ed .nc-outline-merge-round:before{content:"\eee5"}
6961
+ .brz-ed .nc-outline-merge:before{content:"\eee6"}
6962
+ .brz-ed .nc-outline-message:before{content:"\eee7"}
6963
+ .brz-ed .nc-outline-metrics:before{content:"\eee8"}
6964
+ .brz-ed .nc-outline-mic-2:before{content:"\eee9"}
6965
+ .brz-ed .nc-outline-mic:before{content:"\eeea"}
6966
+ .brz-ed .nc-outline-mickey-mouse:before{content:"\eeeb"}
6967
+ .brz-ed .nc-outline-microscope:before{content:"\eeec"}
6968
+ .brz-ed .nc-outline-microsoft:before{content:"\eeed"}
6969
+ .brz-ed .nc-outline-microwave:before{content:"\eeee"}
6970
+ .brz-ed .nc-outline-milk:before{content:"\eeef"}
6971
+ .brz-ed .nc-outline-minimal-down:before{content:"\eef0"}
6972
+ .brz-ed .nc-outline-minimal-left:before{content:"\eef1"}
6973
+ .brz-ed .nc-outline-minimal-right:before{content:"\eef2"}
6974
+ .brz-ed .nc-outline-minimal-up:before{content:"\eef4"}
6975
+ .brz-ed .nc-outline-mirror-2:before{content:"\eef3"}
6976
+ .brz-ed .nc-outline-mirror:before{content:"\eef5"}
6977
+ .brz-ed .nc-outline-mistletoe:before{content:"\eef6"}
6978
+ .brz-ed .nc-outline-mixer:before{content:"\eef7"}
6979
+ .brz-ed .nc-outline-mobile-button:before{content:"\eef8"}
6980
+ .brz-ed .nc-outline-mobile-camera:before{content:"\eef9"}
6981
+ .brz-ed .nc-outline-mobile-card:before{content:"\eefa"}
6982
+ .brz-ed .nc-outline-mobile-contact:before{content:"\eefb"}
6983
+ .brz-ed .nc-outline-mobile-design:before{content:"\eefc"}
6984
+ .brz-ed .nc-outline-mobile-dev:before{content:"\eefd"}
6985
+ .brz-ed .nc-outline-mobile-landscape:before{content:"\eefe"}
6986
+ .brz-ed .nc-outline-mobile-recharger-08:before{content:"\eeff"}
6987
+ .brz-ed .nc-outline-mobile-recharger-09:before{content:"\ef00"}
6988
+ .brz-ed .nc-outline-mobile-toolbar:before{content:"\ef01"}
6989
+ .brz-ed .nc-outline-mobile:before{content:"\ef02"}
6990
+ .brz-ed .nc-outline-moka:before{content:"\ef03"}
6991
+ .brz-ed .nc-outline-molecule-39:before{content:"\ef04"}
6992
+ .brz-ed .nc-outline-molecule-40:before{content:"\ef05"}
6993
+ .brz-ed .nc-outline-molecule:before{content:"\ef06"}
6994
+ .brz-ed .nc-outline-money-11:before{content:"\ef08"}
6995
+ .brz-ed .nc-outline-money-12:before{content:"\ef07"}
6996
+ .brz-ed .nc-outline-money-13:before{content:"\ef0a"}
6997
+ .brz-ed .nc-outline-money-bag:before{content:"\ef09"}
6998
+ .brz-ed .nc-outline-money-coins:before{content:"\ef0b"}
6999
+ .brz-ed .nc-outline-money-growth:before{content:"\ef0c"}
7000
+ .brz-ed .nc-outline-money-time:before{content:"\ef0d"}
7001
+ .brz-ed .nc-outline-money:before{content:"\ef0e"}
7002
+ .brz-ed .nc-outline-monster:before{content:"\ef0f"}
7003
+ .brz-ed .nc-outline-moon-cloud-drop:before{content:"\ef10"}
7004
+ .brz-ed .nc-outline-moon-cloud-fog:before{content:"\ef11"}
7005
+ .brz-ed .nc-outline-moon-cloud-hail:before{content:"\ef12"}
7006
+ .brz-ed .nc-outline-moon-cloud-light:before{content:"\ef13"}
7007
+ .brz-ed .nc-outline-moon-cloud-rain:before{content:"\ef14"}
7008
+ .brz-ed .nc-outline-moon-cloud-snow-61:before{content:"\ef15"}
7009
+ .brz-ed .nc-outline-moon-cloud-snow-62:before{content:"\ef16"}
7010
+ .brz-ed .nc-outline-moon-fog:before{content:"\ef17"}
7011
+ .brz-ed .nc-outline-moon-full:before{content:"\ef18"}
7012
+ .brz-ed .nc-outline-moon-stars:before{content:"\ef19"}
7013
+ .brz-ed .nc-outline-moon:before{content:"\ef1a"}
7014
+ .brz-ed .nc-outline-mosque:before{content:"\ef1b"}
7015
+ .brz-ed .nc-outline-moto:before{content:"\ef1c"}
7016
+ .brz-ed .nc-outline-mountain:before{content:"\ef1d"}
7017
+ .brz-ed .nc-outline-mouse-08:before{content:"\ef1e"}
7018
+ .brz-ed .nc-outline-mouse-09:before{content:"\ef1f"}
7019
+ .brz-ed .nc-outline-mouse-10:before{content:"\ef20"}
7020
+ .brz-ed .nc-outline-mouse:before{content:"\ef21"}
7021
+ .brz-ed .nc-outline-move-05:before{content:"\ef22"}
7022
+ .brz-ed .nc-outline-move-06:before{content:"\ef23"}
7023
+ .brz-ed .nc-outline-move-92:before{content:"\ef24"}
7024
+ .brz-ed .nc-outline-move-down-2:before{content:"\ef26"}
7025
+ .brz-ed .nc-outline-move-down-right:before{content:"\ef25"}
7026
+ .brz-ed .nc-outline-move-down:before{content:"\ef27"}
7027
+ .brz-ed .nc-outline-move-left:before{content:"\ef28"}
7028
+ .brz-ed .nc-outline-move-right:before{content:"\ef29"}
7029
+ .brz-ed .nc-outline-move-up-2:before{content:"\ef2a"}
7030
+ .brz-ed .nc-outline-move-up-left:before{content:"\ef2b"}
7031
+ .brz-ed .nc-outline-move-up:before{content:"\ef2c"}
7032
+ .brz-ed .nc-outline-movie-61:before{content:"\ef2d"}
7033
+ .brz-ed .nc-outline-movie-62:before{content:"\ef2e"}
7034
+ .brz-ed .nc-outline-muffin:before{content:"\ef2f"}
7035
+ .brz-ed .nc-outline-mug:before{content:"\ef30"}
7036
+ .brz-ed .nc-outline-multiple-11:before{content:"\ef31"}
7037
+ .brz-ed .nc-outline-multiple-19:before{content:"\ef32"}
7038
+ .brz-ed .nc-outline-multiple:before{content:"\ef33"}
7039
+ .brz-ed .nc-outline-mushroom:before{content:"\ef34"}
7040
+ .brz-ed .nc-outline-music-2:before{content:"\ef35"}
7041
+ .brz-ed .nc-outline-music-album:before{content:"\ef36"}
7042
+ .brz-ed .nc-outline-music-cloud:before{content:"\ef38"}
7043
+ .brz-ed .nc-outline-music:before{content:"\ef37"}
7044
+ .brz-ed .nc-outline-navigation:before{content:"\ef39"}
7045
+ .brz-ed .nc-outline-needle:before{content:"\ef3a"}
7046
+ .brz-ed .nc-outline-nerd-22:before{content:"\ef3b"}
7047
+ .brz-ed .nc-outline-nerd-23:before{content:"\ef3c"}
7048
+ .brz-ed .nc-outline-net:before{content:"\ef3d"}
7049
+ .brz-ed .nc-outline-network:before{content:"\ef3e"}
7050
+ .brz-ed .nc-outline-new:before{content:"\ef3f"}
7051
+ .brz-ed .nc-outline-newsletter-dev:before{content:"\ef40"}
7052
+ .brz-ed .nc-outline-newsletter:before{content:"\ef41"}
7053
+ .brz-ed .nc-outline-night:before{content:"\ef42"}
7054
+ .brz-ed .nc-outline-ninja:before{content:"\ef43"}
7055
+ .brz-ed .nc-outline-no-access:before{content:"\ef44"}
7056
+ .brz-ed .nc-outline-no-words:before{content:"\ef45"}
7057
+ .brz-ed .nc-outline-node:before{content:"\ef46"}
7058
+ .brz-ed .nc-outline-note-03:before{content:"\ef47"}
7059
+ .brz-ed .nc-outline-note-04:before{content:"\ef48"}
7060
+ .brz-ed .nc-outline-note-code:before{content:"\ef49"}
7061
+ .brz-ed .nc-outline-notebook-2:before{content:"\ef4a"}
7062
+ .brz-ed .nc-outline-notebook:before{content:"\ef4b"}
7063
+ .brz-ed .nc-outline-notepad:before{content:"\ef4c"}
7064
+ .brz-ed .nc-outline-notes:before{content:"\ef4d"}
7065
+ .brz-ed .nc-outline-notification-69:before{content:"\ef4e"}
7066
+ .brz-ed .nc-outline-notification-70:before{content:"\ef4f"}
7067
+ .brz-ed .nc-outline-nurse:before{content:"\ef50"}
7068
+ .brz-ed .nc-outline-nutrition:before{content:"\ef51"}
7069
+ .brz-ed .nc-outline-ny:before{content:"\ef52"}
7070
+ .brz-ed .nc-outline-octopus:before{content:"\ef53"}
7071
+ .brz-ed .nc-outline-oil:before{content:"\ef54"}
7072
+ .brz-ed .nc-outline-onion:before{content:"\ef55"}
7073
+ .brz-ed .nc-outline-open-in-browser:before{content:"\ef56"}
7074
+ .brz-ed .nc-outline-opening-times:before{content:"\ef57"}
7075
+ .brz-ed .nc-outline-orange:before{content:"\ef58"}
7076
+ .brz-ed .nc-outline-organic-2:before{content:"\ef59"}
7077
+ .brz-ed .nc-outline-organic:before{content:"\ef5a"}
7078
+ .brz-ed .nc-outline-oven:before{content:"\ef5b"}
7079
+ .brz-ed .nc-outline-owl:before{content:"\ef5c"}
7080
+ .brz-ed .nc-outline-p-add:before{content:"\ef5d"}
7081
+ .brz-ed .nc-outline-p-check:before{content:"\ef5e"}
7082
+ .brz-ed .nc-outline-p-edit:before{content:"\ef5f"}
7083
+ .brz-ed .nc-outline-p-heart:before{content:"\ef60"}
7084
+ .brz-ed .nc-outline-p-location:before{content:"\ef61"}
7085
+ .brz-ed .nc-outline-p-remove:before{content:"\ef62"}
7086
+ .brz-ed .nc-outline-p-search:before{content:"\ef63"}
7087
+ .brz-ed .nc-outline-p-settings:before{content:"\ef64"}
7088
+ .brz-ed .nc-outline-p-share:before{content:"\ef65"}
7089
+ .brz-ed .nc-outline-p-sync:before{content:"\ef66"}
7090
+ .brz-ed .nc-outline-p-system-update:before{content:"\ef67"}
7091
+ .brz-ed .nc-outline-p-time:before{content:"\ef68"}
7092
+ .brz-ed .nc-outline-paint-16:before{content:"\ef69"}
7093
+ .brz-ed .nc-outline-paint-37:before{content:"\ef6a"}
7094
+ .brz-ed .nc-outline-paint-38:before{content:"\ef6b"}
7095
+ .brz-ed .nc-outline-paint-brush:before{content:"\ef6c"}
7096
+ .brz-ed .nc-outline-paint-bucket-39:before{content:"\ef6d"}
7097
+ .brz-ed .nc-outline-paint-bucket-40:before{content:"\ef6e"}
7098
+ .brz-ed .nc-outline-pajamas:before{content:"\ef70"}
7099
+ .brz-ed .nc-outline-palette:before{content:"\ef6f"}
7100
+ .brz-ed .nc-outline-pan:before{content:"\ef71"}
7101
+ .brz-ed .nc-outline-pancake:before{content:"\ef72"}
7102
+ .brz-ed .nc-outline-panda:before{content:"\ef73"}
7103
+ .brz-ed .nc-outline-panel:before{content:"\ef74"}
7104
+ .brz-ed .nc-outline-pantone:before{content:"\ef75"}
7105
+ .brz-ed .nc-outline-paper-2:before{content:"\ef76"}
7106
+ .brz-ed .nc-outline-paper-design:before{content:"\ef77"}
7107
+ .brz-ed .nc-outline-paper-dev:before{content:"\ef78"}
7108
+ .brz-ed .nc-outline-paper-diploma:before{content:"\ef79"}
7109
+ .brz-ed .nc-outline-paper:before{content:"\ef7a"}
7110
+ .brz-ed .nc-outline-paragraph:before{content:"\ef7b"}
7111
+ .brz-ed .nc-outline-parent:before{content:"\ef7c"}
7112
+ .brz-ed .nc-outline-paris-tower:before{content:"\ef7e"}
7113
+ .brz-ed .nc-outline-parking-sensors:before{content:"\ef7d"}
7114
+ .brz-ed .nc-outline-parking:before{content:"\ef80"}
7115
+ .brz-ed .nc-outline-parrot:before{content:"\ef7f"}
7116
+ .brz-ed .nc-outline-passport:before{content:"\ef81"}
7117
+ .brz-ed .nc-outline-pasta:before{content:"\ef82"}
7118
+ .brz-ed .nc-outline-patch-19:before{content:"\ef83"}
7119
+ .brz-ed .nc-outline-patch-34:before{content:"\ef84"}
7120
+ .brz-ed .nc-outline-patch:before{content:"\ef85"}
7121
+ .brz-ed .nc-outline-path-exclude:before{content:"\ef86"}
7122
+ .brz-ed .nc-outline-path-intersect:before{content:"\ef87"}
7123
+ .brz-ed .nc-outline-path-minus:before{content:"\ef88"}
7124
+ .brz-ed .nc-outline-path-unite:before{content:"\ef8a"}
7125
+ .brz-ed .nc-outline-paw:before{content:"\ef89"}
7126
+ .brz-ed .nc-outline-payment:before{content:"\ef8b"}
7127
+ .brz-ed .nc-outline-pci-card:before{content:"\ef8c"}
7128
+ .brz-ed .nc-outline-peanut:before{content:"\ef8d"}
7129
+ .brz-ed .nc-outline-pear:before{content:"\ef8e"}
7130
+ .brz-ed .nc-outline-pen-01:before{content:"\ef8f"}
7131
+ .brz-ed .nc-outline-pen-23:before{content:"\ef90"}
7132
+ .brz-ed .nc-outline-pen-tool:before{content:"\ef92"}
7133
+ .brz-ed .nc-outline-pencil-47:before{content:"\ef91"}
7134
+ .brz-ed .nc-outline-pencil:before{content:"\ef93"}
7135
+ .brz-ed .nc-outline-penguin:before{content:"\ef94"}
7136
+ .brz-ed .nc-outline-pepper:before{content:"\ef96"}
7137
+ .brz-ed .nc-outline-percentage-38:before{content:"\ef95"}
7138
+ .brz-ed .nc-outline-percentage-39:before{content:"\ef97"}
7139
+ .brz-ed .nc-outline-phone-2:before{content:"\ef98"}
7140
+ .brz-ed .nc-outline-phone-3:before{content:"\ef99"}
7141
+ .brz-ed .nc-outline-phone-call-end:before{content:"\ef9a"}
7142
+ .brz-ed .nc-outline-phone-call:before{content:"\ef9b"}
7143
+ .brz-ed .nc-outline-phone:before{content:"\ef9c"}
7144
+ .brz-ed .nc-outline-photo-editor:before{content:"\ef9d"}
7145
+ .brz-ed .nc-outline-piano:before{content:"\ef9e"}
7146
+ .brz-ed .nc-outline-pickaxe:before{content:"\ef9f"}
7147
+ .brz-ed .nc-outline-pickle:before{content:"\efa0"}
7148
+ .brz-ed .nc-outline-picnic-basket:before{content:"\efa1"}
7149
+ .brz-ed .nc-outline-picture:before{content:"\efa2"}
7150
+ .brz-ed .nc-outline-pig-2:before{content:"\efa3"}
7151
+ .brz-ed .nc-outline-pig:before{content:"\efa4"}
7152
+ .brz-ed .nc-outline-pill-42:before{content:"\efa5"}
7153
+ .brz-ed .nc-outline-pill-43:before{content:"\efa6"}
7154
+ .brz-ed .nc-outline-pill-container-44:before{content:"\efa7"}
7155
+ .brz-ed .nc-outline-pill-container-47:before{content:"\efa8"}
7156
+ .brz-ed .nc-outline-pin-2:before{content:"\efa9"}
7157
+ .brz-ed .nc-outline-pin-3:before{content:"\efaa"}
7158
+ .brz-ed .nc-outline-pin-4:before{content:"\efab"}
7159
+ .brz-ed .nc-outline-pin-add-2:before{content:"\efac"}
7160
+ .brz-ed .nc-outline-pin-add:before{content:"\efad"}
7161
+ .brz-ed .nc-outline-pin-check:before{content:"\efae"}
7162
+ .brz-ed .nc-outline-pin-copy:before{content:"\efaf"}
7163
+ .brz-ed .nc-outline-pin-delete:before{content:"\efb0"}
7164
+ .brz-ed .nc-outline-pin-edit:before{content:"\efb2"}
7165
+ .brz-ed .nc-outline-pin-heart:before{content:"\efb1"}
7166
+ .brz-ed .nc-outline-pin-remove-2:before{content:"\efb3"}
7167
+ .brz-ed .nc-outline-pin-remove:before{content:"\efb4"}
7168
+ .brz-ed .nc-outline-pin-search:before{content:"\efb5"}
7169
+ .brz-ed .nc-outline-pin-security:before{content:"\efb6"}
7170
+ .brz-ed .nc-outline-pin-settings:before{content:"\efb7"}
7171
+ .brz-ed .nc-outline-pin-share:before{content:"\efb8"}
7172
+ .brz-ed .nc-outline-pin-star:before{content:"\efb9"}
7173
+ .brz-ed .nc-outline-pin-sync:before{content:"\efba"}
7174
+ .brz-ed .nc-outline-pin-time:before{content:"\efbb"}
7175
+ .brz-ed .nc-outline-pin-user:before{content:"\efbc"}
7176
+ .brz-ed .nc-outline-pin:before{content:"\efbd"}
7177
+ .brz-ed .nc-outline-pinch:before{content:"\efbe"}
7178
+ .brz-ed .nc-outline-pineapple:before{content:"\efbf"}
7179
+ .brz-ed .nc-outline-ping-pong:before{content:"\efc0"}
7180
+ .brz-ed .nc-outline-pins:before{content:"\efc2"}
7181
+ .brz-ed .nc-outline-pipe:before{content:"\efc1"}
7182
+ .brz-ed .nc-outline-pirate:before{content:"\efc3"}
7183
+ .brz-ed .nc-outline-pizza-slice:before{content:"\efc4"}
7184
+ .brz-ed .nc-outline-pizza:before{content:"\efc5"}
7185
+ .brz-ed .nc-outline-plane-17:before{content:"\efc6"}
7186
+ .brz-ed .nc-outline-plane-18:before{content:"\efc8"}
7187
+ .brz-ed .nc-outline-planet:before{content:"\efc7"}
7188
+ .brz-ed .nc-outline-plant-ground:before{content:"\efc9"}
7189
+ .brz-ed .nc-outline-plant-vase:before{content:"\efca"}
7190
+ .brz-ed .nc-outline-plate:before{content:"\efcc"}
7191
+ .brz-ed .nc-outline-play-68:before{content:"\efcb"}
7192
+ .brz-ed .nc-outline-play-69:before{content:"\efcd"}
7193
+ .brz-ed .nc-outline-play:before{content:"\efce"}
7194
+ .brz-ed .nc-outline-player-19:before{content:"\efcf"}
7195
+ .brz-ed .nc-outline-player-48:before{content:"\efd0"}
7196
+ .brz-ed .nc-outline-player:before{content:"\efd1"}
7197
+ .brz-ed .nc-outline-playlist:before{content:"\efd2"}
7198
+ .brz-ed .nc-outline-plug:before{content:"\efd4"}
7199
+ .brz-ed .nc-outline-podium-trophy:before{content:"\efd3"}
7200
+ .brz-ed .nc-outline-podium:before{content:"\efd5"}
7201
+ .brz-ed .nc-outline-point-a:before{content:"\efd6"}
7202
+ .brz-ed .nc-outline-point-b:before{content:"\efd7"}
7203
+ .brz-ed .nc-outline-polaroid-add:before{content:"\efd8"}
7204
+ .brz-ed .nc-outline-polaroid-delete:before{content:"\efd9"}
7205
+ .brz-ed .nc-outline-polaroid-multiple:before{content:"\efda"}
7206
+ .brz-ed .nc-outline-polaroid-user:before{content:"\efdb"}
7207
+ .brz-ed .nc-outline-polaroid:before{content:"\efdc"}
7208
+ .brz-ed .nc-outline-police:before{content:"\efdd"}
7209
+ .brz-ed .nc-outline-pool:before{content:"\efde"}
7210
+ .brz-ed .nc-outline-poop:before{content:"\efdf"}
7211
+ .brz-ed .nc-outline-popcorn:before{content:"\efe0"}
7212
+ .brz-ed .nc-outline-pos:before{content:"\efe1"}
7213
+ .brz-ed .nc-outline-position-marker:before{content:"\efe2"}
7214
+ .brz-ed .nc-outline-position-pin:before{content:"\efe3"}
7215
+ .brz-ed .nc-outline-position-user:before{content:"\efe4"}
7216
+ .brz-ed .nc-outline-position:before{content:"\efe5"}
7217
+ .brz-ed .nc-outline-pot:before{content:"\efe6"}
7218
+ .brz-ed .nc-outline-potato:before{content:"\efe7"}
7219
+ .brz-ed .nc-outline-power-level:before{content:"\efe8"}
7220
+ .brz-ed .nc-outline-preferences-circle-rotate:before{content:"\efea"}
7221
+ .brz-ed .nc-outline-preferences-circle:before{content:"\efe9"}
7222
+ .brz-ed .nc-outline-preferences-container-circle-rotate:before{content:"\efeb"}
7223
+ .brz-ed .nc-outline-preferences-container-circle:before{content:"\efec"}
7224
+ .brz-ed .nc-outline-preferences-container-rotate:before{content:"\efed"}
7225
+ .brz-ed .nc-outline-preferences-container:before{content:"\efee"}
7226
+ .brz-ed .nc-outline-preferences-rotate:before{content:"\efef"}
7227
+ .brz-ed .nc-outline-preferences:before{content:"\eff0"}
7228
+ .brz-ed .nc-outline-print:before{content:"\eff1"}
7229
+ .brz-ed .nc-outline-printer:before{content:"\eff2"}
7230
+ .brz-ed .nc-outline-priority-high:before{content:"\eff4"}
7231
+ .brz-ed .nc-outline-priority-low:before{content:"\eff3"}
7232
+ .brz-ed .nc-outline-progress:before{content:"\eff5"}
7233
+ .brz-ed .nc-outline-prosciutto:before{content:"\eff6"}
7234
+ .brz-ed .nc-outline-prototype:before{content:"\eff7"}
7235
+ .brz-ed .nc-outline-pulse-chart:before{content:"\eff8"}
7236
+ .brz-ed .nc-outline-pulse-phone:before{content:"\eff9"}
7237
+ .brz-ed .nc-outline-pulse-sleep:before{content:"\effa"}
7238
+ .brz-ed .nc-outline-pulse-watch:before{content:"\effb"}
7239
+ .brz-ed .nc-outline-pulse:before{content:"\effc"}
7240
+ .brz-ed .nc-outline-pumpkin:before{content:"\effd"}
7241
+ .brz-ed .nc-outline-push-next:before{content:"\effe"}
7242
+ .brz-ed .nc-outline-push-previous:before{content:"\efff"}
7243
+ .brz-ed .nc-outline-puzzle-09:before{content:"\f000"}
7244
+ .brz-ed .nc-outline-puzzle-10:before{content:"\f001"}
7245
+ .brz-ed .nc-outline-puzzled:before{content:"\f002"}
7246
+ .brz-ed .nc-outline-pyramid:before{content:"\f003"}
7247
+ .brz-ed .nc-outline-question:before{content:"\f004"}
7248
+ .brz-ed .nc-outline-quite-happy:before{content:"\f005"}
7249
+ .brz-ed .nc-outline-quote:before{content:"\f006"}
7250
+ .brz-ed .nc-outline-rabbit:before{content:"\f007"}
7251
+ .brz-ed .nc-outline-rackets:before{content:"\f008"}
7252
+ .brz-ed .nc-outline-radar:before{content:"\f009"}
7253
+ .brz-ed .nc-outline-radiation:before{content:"\f00a"}
7254
+ .brz-ed .nc-outline-radio:before{content:"\f00b"}
7255
+ .brz-ed .nc-outline-rain-hail:before{content:"\f00c"}
7256
+ .brz-ed .nc-outline-rain:before{content:"\f00d"}
7257
+ .brz-ed .nc-outline-rainbow:before{content:"\f00e"}
7258
+ .brz-ed .nc-outline-ram:before{content:"\f00f"}
7259
+ .brz-ed .nc-outline-rat:before{content:"\f010"}
7260
+ .brz-ed .nc-outline-receipt-list-42:before{content:"\f011"}
7261
+ .brz-ed .nc-outline-receipt-list-43:before{content:"\f012"}
7262
+ .brz-ed .nc-outline-receipt:before{content:"\f014"}
7263
+ .brz-ed .nc-outline-recipe-book-46:before{content:"\f013"}
7264
+ .brz-ed .nc-outline-recipe-book-47:before{content:"\f015"}
7265
+ .brz-ed .nc-outline-recipe-create:before{content:"\f016"}
7266
+ .brz-ed .nc-outline-recipe:before{content:"\f018"}
7267
+ .brz-ed .nc-outline-recycling:before{content:"\f017"}
7268
+ .brz-ed .nc-outline-redo-10:before{content:"\f019"}
7269
+ .brz-ed .nc-outline-redo-26:before{content:"\f01a"}
7270
+ .brz-ed .nc-outline-redo-79:before{content:"\f01b"}
7271
+ .brz-ed .nc-outline-redo-81:before{content:"\f01c"}
7272
+ .brz-ed .nc-outline-refresh-01:before{content:"\f01d"}
7273
+ .brz-ed .nc-outline-refresh-02:before{content:"\f01e"}
7274
+ .brz-ed .nc-outline-refresh-68:before{content:"\f01f"}
7275
+ .brz-ed .nc-outline-refresh-69:before{content:"\f020"}
7276
+ .brz-ed .nc-outline-refresh:before{content:"\f021"}
7277
+ .brz-ed .nc-outline-reload:before{content:"\f022"}
7278
+ .brz-ed .nc-outline-remix:before{content:"\f024"}
7279
+ .brz-ed .nc-outline-remote:before{content:"\f023"}
7280
+ .brz-ed .nc-outline-remove:before{content:"\f025"}
7281
+ .brz-ed .nc-outline-replace-folder:before{content:"\f026"}
7282
+ .brz-ed .nc-outline-replace:before{content:"\f027"}
7283
+ .brz-ed .nc-outline-replay:before{content:"\f028"}
7284
+ .brz-ed .nc-outline-reply-all:before{content:"\f02a"}
7285
+ .brz-ed .nc-outline-reply:before{content:"\f029"}
7286
+ .brz-ed .nc-outline-reservation:before{content:"\f02b"}
7287
+ .brz-ed .nc-outline-resize-h:before{content:"\f02c"}
7288
+ .brz-ed .nc-outline-resize-v:before{content:"\f02d"}
7289
+ .brz-ed .nc-outline-restaurant-menu:before{content:"\f02e"}
7290
+ .brz-ed .nc-outline-restore:before{content:"\f030"}
7291
+ .brz-ed .nc-outline-rice:before{content:"\f02f"}
7292
+ .brz-ed .nc-outline-rim:before{content:"\f032"}
7293
+ .brz-ed .nc-outline-ring:before{content:"\f031"}
7294
+ .brz-ed .nc-outline-rio:before{content:"\f034"}
7295
+ .brz-ed .nc-outline-ripples:before{content:"\f033"}
7296
+ .brz-ed .nc-outline-road-2:before{content:"\f035"}
7297
+ .brz-ed .nc-outline-road-sign-left:before{content:"\f036"}
7298
+ .brz-ed .nc-outline-road-sign-right:before{content:"\f038"}
7299
+ .brz-ed .nc-outline-road:before{content:"\f037"}
7300
+ .brz-ed .nc-outline-roast-chicken:before{content:"\f03a"}
7301
+ .brz-ed .nc-outline-robot:before{content:"\f039"}
7302
+ .brz-ed .nc-outline-rock:before{content:"\f03b"}
7303
+ .brz-ed .nc-outline-roll:before{content:"\f03c"}
7304
+ .brz-ed .nc-outline-rolling-pin:before{content:"\f03e"}
7305
+ .brz-ed .nc-outline-rome:before{content:"\f03d"}
7306
+ .brz-ed .nc-outline-rope:before{content:"\f03f"}
7307
+ .brz-ed .nc-outline-rotate-22:before{content:"\f040"}
7308
+ .brz-ed .nc-outline-rotate-23:before{content:"\f041"}
7309
+ .brz-ed .nc-outline-rotate-left-2:before{content:"\f042"}
7310
+ .brz-ed .nc-outline-rotate-left:before{content:"\f043"}
7311
+ .brz-ed .nc-outline-rotate-lock:before{content:"\f044"}
7312
+ .brz-ed .nc-outline-rotate-right-2:before{content:"\f045"}
7313
+ .brz-ed .nc-outline-rotate-right:before{content:"\f046"}
7314
+ .brz-ed .nc-outline-rotate:before{content:"\f047"}
7315
+ .brz-ed .nc-outline-round-dollar:before{content:"\f048"}
7316
+ .brz-ed .nc-outline-round-down:before{content:"\f049"}
7317
+ .brz-ed .nc-outline-round-euro:before{content:"\f04a"}
7318
+ .brz-ed .nc-outline-round-left-down:before{content:"\f04b"}
7319
+ .brz-ed .nc-outline-round-left:before{content:"\f04c"}
7320
+ .brz-ed .nc-outline-round-pound:before{content:"\f04d"}
7321
+ .brz-ed .nc-outline-round-right-down:before{content:"\f04e"}
7322
+ .brz-ed .nc-outline-round-right:before{content:"\f04f"}
7323
+ .brz-ed .nc-outline-round-up-left:before{content:"\f050"}
7324
+ .brz-ed .nc-outline-round-up-right:before{content:"\f051"}
7325
+ .brz-ed .nc-outline-round-up:before{content:"\f052"}
7326
+ .brz-ed .nc-outline-round-yen:before{content:"\f053"}
7327
+ .brz-ed .nc-outline-route-alert:before{content:"\f054"}
7328
+ .brz-ed .nc-outline-route-close:before{content:"\f055"}
7329
+ .brz-ed .nc-outline-route-open:before{content:"\f056"}
7330
+ .brz-ed .nc-outline-rowing:before{content:"\f057"}
7331
+ .brz-ed .nc-outline-rugby:before{content:"\f058"}
7332
+ .brz-ed .nc-outline-ruler-pencil:before{content:"\f059"}
7333
+ .brz-ed .nc-outline-sad:before{content:"\f05a"}
7334
+ .brz-ed .nc-outline-safe:before{content:"\f05b"}
7335
+ .brz-ed .nc-outline-salad:before{content:"\f05c"}
7336
+ .brz-ed .nc-outline-sale:before{content:"\f05d"}
7337
+ .brz-ed .nc-outline-salt:before{content:"\f05e"}
7338
+ .brz-ed .nc-outline-santa-hat:before{content:"\f05f"}
7339
+ .brz-ed .nc-outline-satisfied:before{content:"\f060"}
7340
+ .brz-ed .nc-outline-sausage:before{content:"\f061"}
7341
+ .brz-ed .nc-outline-save-planet:before{content:"\f062"}
7342
+ .brz-ed .nc-outline-scale-2:before{content:"\f063"}
7343
+ .brz-ed .nc-outline-scale-3:before{content:"\f064"}
7344
+ .brz-ed .nc-outline-scale-4:before{content:"\f065"}
7345
+ .brz-ed .nc-outline-scale-down:before{content:"\f066"}
7346
+ .brz-ed .nc-outline-scale-horizontal:before{content:"\f067"}
7347
+ .brz-ed .nc-outline-scale-up:before{content:"\f068"}
7348
+ .brz-ed .nc-outline-scale-vertical:before{content:"\f069"}
7349
+ .brz-ed .nc-outline-scale:before{content:"\f06a"}
7350
+ .brz-ed .nc-outline-scan:before{content:"\f06c"}
7351
+ .brz-ed .nc-outline-scarf:before{content:"\f06b"}
7352
+ .brz-ed .nc-outline-school:before{content:"\f06d"}
7353
+ .brz-ed .nc-outline-scissors-dashed:before{content:"\f06e"}
7354
+ .brz-ed .nc-outline-scissors:before{content:"\f06f"}
7355
+ .brz-ed .nc-outline-scotch:before{content:"\f070"}
7356
+ .brz-ed .nc-outline-scroll-horitontal:before{content:"\f071"}
7357
+ .brz-ed .nc-outline-scroll-vertical:before{content:"\f072"}
7358
+ .brz-ed .nc-outline-sd:before{content:"\f074"}
7359
+ .brz-ed .nc-outline-sea-mask:before{content:"\f073"}
7360
+ .brz-ed .nc-outline-search-2:before{content:"\f075"}
7361
+ .brz-ed .nc-outline-search-3:before{content:"\f076"}
7362
+ .brz-ed .nc-outline-search:before{content:"\f077"}
7363
+ .brz-ed .nc-outline-seat:before{content:"\f078"}
7364
+ .brz-ed .nc-outline-seatbelt:before{content:"\f07a"}
7365
+ .brz-ed .nc-outline-security:before{content:"\f079"}
7366
+ .brz-ed .nc-outline-segmentation:before{content:"\f07c"}
7367
+ .brz-ed .nc-outline-select-83:before{content:"\f07b"}
7368
+ .brz-ed .nc-outline-select-84:before{content:"\f07e"}
7369
+ .brz-ed .nc-outline-select:before{content:"\f07d"}
7370
+ .brz-ed .nc-outline-selection:before{content:"\f080"}
7371
+ .brz-ed .nc-outline-selfie:before{content:"\f07f"}
7372
+ .brz-ed .nc-outline-send-2:before{content:"\f081"}
7373
+ .brz-ed .nc-outline-send:before{content:"\f082"}
7374
+ .brz-ed .nc-outline-sensor:before{content:"\f083"}
7375
+ .brz-ed .nc-outline-separate-round:before{content:"\f084"}
7376
+ .brz-ed .nc-outline-separate:before{content:"\f085"}
7377
+ .brz-ed .nc-outline-settings-46:before{content:"\f086"}
7378
+ .brz-ed .nc-outline-settings-99:before{content:"\f087"}
7379
+ .brz-ed .nc-outline-settings-gear-63:before{content:"\f088"}
7380
+ .brz-ed .nc-outline-settings-gear-64:before{content:"\f089"}
7381
+ .brz-ed .nc-outline-settings-gear-65:before{content:"\f08a"}
7382
+ .brz-ed .nc-outline-settings-tool-66:before{content:"\f08c"}
7383
+ .brz-ed .nc-outline-settings-tool-67:before{content:"\f08b"}
7384
+ .brz-ed .nc-outline-settings:before{content:"\f08d"}
7385
+ .brz-ed .nc-outline-sf-bridge:before{content:"\f08e"}
7386
+ .brz-ed .nc-outline-shake:before{content:"\f08f"}
7387
+ .brz-ed .nc-outline-shaker:before{content:"\f090"}
7388
+ .brz-ed .nc-outline-shape-adjust:before{content:"\f091"}
7389
+ .brz-ed .nc-outline-shape-arrow:before{content:"\f092"}
7390
+ .brz-ed .nc-outline-shape-circle:before{content:"\f093"}
7391
+ .brz-ed .nc-outline-shape-custom:before{content:"\f094"}
7392
+ .brz-ed .nc-outline-shape-line:before{content:"\f095"}
7393
+ .brz-ed .nc-outline-shape-oval:before{content:"\f096"}
7394
+ .brz-ed .nc-outline-shape-polygon-2:before{content:"\f097"}
7395
+ .brz-ed .nc-outline-shape-polygon:before{content:"\f098"}
7396
+ .brz-ed .nc-outline-shape-rectangle:before{content:"\f099"}
7397
+ .brz-ed .nc-outline-shape-square:before{content:"\f09a"}
7398
+ .brz-ed .nc-outline-shape-star:before{content:"\f09b"}
7399
+ .brz-ed .nc-outline-shape-triangle-2:before{content:"\f09c"}
7400
+ .brz-ed .nc-outline-shape-triangle:before{content:"\f09e"}
7401
+ .brz-ed .nc-outline-shapes:before{content:"\f09d"}
7402
+ .brz-ed .nc-outline-share-2:before{content:"\f09f"}
7403
+ .brz-ed .nc-outline-share-66:before{content:"\f0a0"}
7404
+ .brz-ed .nc-outline-share-91:before{content:"\f0a1"}
7405
+ .brz-ed .nc-outline-share-92:before{content:"\f0a2"}
7406
+ .brz-ed .nc-outline-share-bold:before{content:"\f0a3"}
7407
+ .brz-ed .nc-outline-share-left:before{content:"\f0a4"}
7408
+ .brz-ed .nc-outline-share-right:before{content:"\f0a5"}
7409
+ .brz-ed .nc-outline-share:before{content:"\f0a6"}
7410
+ .brz-ed .nc-outline-shared:before{content:"\f0a7"}
7411
+ .brz-ed .nc-outline-shark-2:before{content:"\f0a8"}
7412
+ .brz-ed .nc-outline-shark:before{content:"\f0a9"}
7413
+ .brz-ed .nc-outline-sharpener:before{content:"\f0aa"}
7414
+ .brz-ed .nc-outline-sheep:before{content:"\f0ab"}
7415
+ .brz-ed .nc-outline-shirt-business:before{content:"\f0ac"}
7416
+ .brz-ed .nc-outline-shirt-buttons:before{content:"\f0ad"}
7417
+ .brz-ed .nc-outline-shirt-neck:before{content:"\f0ae"}
7418
+ .brz-ed .nc-outline-shirt:before{content:"\f0af"}
7419
+ .brz-ed .nc-outline-shoe-man:before{content:"\f0b0"}
7420
+ .brz-ed .nc-outline-shoe-run:before{content:"\f0b1"}
7421
+ .brz-ed .nc-outline-shoe-sport:before{content:"\f0b2"}
7422
+ .brz-ed .nc-outline-shoe-woman:before{content:"\f0b3"}
7423
+ .brz-ed .nc-outline-shop-location:before{content:"\f0b4"}
7424
+ .brz-ed .nc-outline-shop:before{content:"\f0b5"}
7425
+ .brz-ed .nc-outline-shovel:before{content:"\f0b6"}
7426
+ .brz-ed .nc-outline-shower:before{content:"\f0b7"}
7427
+ .brz-ed .nc-outline-shrimp:before{content:"\f0b8"}
7428
+ .brz-ed .nc-outline-shuffle-01:before{content:"\f0b9"}
7429
+ .brz-ed .nc-outline-shuffle-35:before{content:"\f0ba"}
7430
+ .brz-ed .nc-outline-shuffle-97:before{content:"\f0bb"}
7431
+ .brz-ed .nc-outline-shuffle-98:before{content:"\f0bc"}
7432
+ .brz-ed .nc-outline-shy:before{content:"\f0bd"}
7433
+ .brz-ed .nc-outline-sick:before{content:"\f0be"}
7434
+ .brz-ed .nc-outline-sickle:before{content:"\f0c0"}
7435
+ .brz-ed .nc-outline-sidebar:before{content:"\f0bf"}
7436
+ .brz-ed .nc-outline-sign-board:before{content:"\f0c1"}
7437
+ .brz-ed .nc-outline-sign:before{content:"\f0c2"}
7438
+ .brz-ed .nc-outline-signal-2:before{content:"\f0c3"}
7439
+ .brz-ed .nc-outline-signal:before{content:"\f0c4"}
7440
+ .brz-ed .nc-outline-signature:before{content:"\f0c6"}
7441
+ .brz-ed .nc-outline-silly:before{content:"\f0c5"}
7442
+ .brz-ed .nc-outline-sim-card:before{content:"\f0c8"}
7443
+ .brz-ed .nc-outline-simple-add:before{content:"\f0c7"}
7444
+ .brz-ed .nc-outline-simple-delete:before{content:"\f0c9"}
7445
+ .brz-ed .nc-outline-simple-down:before{content:"\f0ca"}
7446
+ .brz-ed .nc-outline-simple-left:before{content:"\f0cb"}
7447
+ .brz-ed .nc-outline-simple-remove:before{content:"\f0cc"}
7448
+ .brz-ed .nc-outline-simple-right:before{content:"\f0cd"}
7449
+ .brz-ed .nc-outline-simple-up:before{content:"\f0ce"}
7450
+ .brz-ed .nc-outline-single-01:before{content:"\f0cf"}
7451
+ .brz-ed .nc-outline-single-02:before{content:"\f0d0"}
7452
+ .brz-ed .nc-outline-single-03:before{content:"\f0d1"}
7453
+ .brz-ed .nc-outline-single-04:before{content:"\f0d2"}
7454
+ .brz-ed .nc-outline-single-05:before{content:"\f0d3"}
7455
+ .brz-ed .nc-outline-single-body:before{content:"\f0d4"}
7456
+ .brz-ed .nc-outline-single-content-02:before{content:"\f0d5"}
7457
+ .brz-ed .nc-outline-single-content-03:before{content:"\f0d6"}
7458
+ .brz-ed .nc-outline-single-copies:before{content:"\f0d8"}
7459
+ .brz-ed .nc-outline-single-copy-04:before{content:"\f0d7"}
7460
+ .brz-ed .nc-outline-single-copy-06:before{content:"\f0d9"}
7461
+ .brz-ed .nc-outline-single-folded-content:before{content:"\f0da"}
7462
+ .brz-ed .nc-outline-single-folded:before{content:"\f0db"}
7463
+ .brz-ed .nc-outline-single-paragraph:before{content:"\f0dc"}
7464
+ .brz-ed .nc-outline-single-position:before{content:"\f0dd"}
7465
+ .brz-ed .nc-outline-single:before{content:"\f0de"}
7466
+ .brz-ed .nc-outline-sink-wash:before{content:"\f0df"}
7467
+ .brz-ed .nc-outline-sink:before{content:"\f0e0"}
7468
+ .brz-ed .nc-outline-size-large:before{content:"\f0e1"}
7469
+ .brz-ed .nc-outline-size-medium:before{content:"\f0e2"}
7470
+ .brz-ed .nc-outline-size-small:before{content:"\f0e3"}
7471
+ .brz-ed .nc-outline-size:before{content:"\f0e4"}
7472
+ .brz-ed .nc-outline-skateboard-2:before{content:"\f0e5"}
7473
+ .brz-ed .nc-outline-skateboard:before{content:"\f0e6"}
7474
+ .brz-ed .nc-outline-skew-down:before{content:"\f0e7"}
7475
+ .brz-ed .nc-outline-skew-left:before{content:"\f0e8"}
7476
+ .brz-ed .nc-outline-skew-right:before{content:"\f0e9"}
7477
+ .brz-ed .nc-outline-skew-up:before{content:"\f0ea"}
7478
+ .brz-ed .nc-outline-skirt:before{content:"\f0ec"}
7479
+ .brz-ed .nc-outline-skull-2:before{content:"\f0eb"}
7480
+ .brz-ed .nc-outline-skull:before{content:"\f0ed"}
7481
+ .brz-ed .nc-outline-slacks-12:before{content:"\f0ee"}
7482
+ .brz-ed .nc-outline-slacks-13:before{content:"\f0f0"}
7483
+ .brz-ed .nc-outline-sleep-2:before{content:"\f0ef"}
7484
+ .brz-ed .nc-outline-sleep:before{content:"\f0f1"}
7485
+ .brz-ed .nc-outline-slice:before{content:"\f0f2"}
7486
+ .brz-ed .nc-outline-slide-left:before{content:"\f0f3"}
7487
+ .brz-ed .nc-outline-slide-right:before{content:"\f0f4"}
7488
+ .brz-ed .nc-outline-slider:before{content:"\f0f5"}
7489
+ .brz-ed .nc-outline-sloth:before{content:"\f0f6"}
7490
+ .brz-ed .nc-outline-small-add:before{content:"\f0f7"}
7491
+ .brz-ed .nc-outline-small-delete:before{content:"\f0f8"}
7492
+ .brz-ed .nc-outline-small-down:before{content:"\f0f9"}
7493
+ .brz-ed .nc-outline-small-left:before{content:"\f0fa"}
7494
+ .brz-ed .nc-outline-small-remove:before{content:"\f0fb"}
7495
+ .brz-ed .nc-outline-small-right:before{content:"\f0fc"}
7496
+ .brz-ed .nc-outline-small-triangle-down:before{content:"\f0fd"}
7497
+ .brz-ed .nc-outline-small-triangle-left:before{content:"\f0fe"}
7498
+ .brz-ed .nc-outline-small-triangle-right:before{content:"\f0ff"}
7499
+ .brz-ed .nc-outline-small-triangle-up:before{content:"\f100"}
7500
+ .brz-ed .nc-outline-small-up:before{content:"\f101"}
7501
+ .brz-ed .nc-outline-smart:before{content:"\f102"}
7502
+ .brz-ed .nc-outline-smile:before{content:"\f103"}
7503
+ .brz-ed .nc-outline-smoothie:before{content:"\f104"}
7504
+ .brz-ed .nc-outline-snack:before{content:"\f105"}
7505
+ .brz-ed .nc-outline-snake:before{content:"\f106"}
7506
+ .brz-ed .nc-outline-snow-ball:before{content:"\f107"}
7507
+ .brz-ed .nc-outline-snow:before{content:"\f108"}
7508
+ .brz-ed .nc-outline-snowboard:before{content:"\f10a"}
7509
+ .brz-ed .nc-outline-snowman-head:before{content:"\f109"}
7510
+ .brz-ed .nc-outline-snowman:before{content:"\f10b"}
7511
+ .brz-ed .nc-outline-soak:before{content:"\f10c"}
7512
+ .brz-ed .nc-outline-soccer-field:before{content:"\f10d"}
7513
+ .brz-ed .nc-outline-sock:before{content:"\f10e"}
7514
+ .brz-ed .nc-outline-socket-europe-1:before{content:"\f10f"}
7515
+ .brz-ed .nc-outline-socket-europe-2:before{content:"\f110"}
7516
+ .brz-ed .nc-outline-socket-uk:before{content:"\f111"}
7517
+ .brz-ed .nc-outline-socket:before{content:"\f112"}
7518
+ .brz-ed .nc-outline-sofa:before{content:"\f114"}
7519
+ .brz-ed .nc-outline-soldier:before{content:"\f113"}
7520
+ .brz-ed .nc-outline-sound-wave:before{content:"\f115"}
7521
+ .brz-ed .nc-outline-soup:before{content:"\f116"}
7522
+ .brz-ed .nc-outline-soy-sauce:before{content:"\f117"}
7523
+ .brz-ed .nc-outline-spa:before{content:"\f118"}
7524
+ .brz-ed .nc-outline-spaceship:before{content:"\f119"}
7525
+ .brz-ed .nc-outline-speaker-01:before{content:"\f11a"}
7526
+ .brz-ed .nc-outline-speaker-05:before{content:"\f11b"}
7527
+ .brz-ed .nc-outline-speaker:before{content:"\f11c"}
7528
+ .brz-ed .nc-outline-speechless:before{content:"\f11d"}
7529
+ .brz-ed .nc-outline-spider:before{content:"\f11e"}
7530
+ .brz-ed .nc-outline-spiteful:before{content:"\f11f"}
7531
+ .brz-ed .nc-outline-split-33:before{content:"\f120"}
7532
+ .brz-ed .nc-outline-split-37:before{content:"\f121"}
7533
+ .brz-ed .nc-outline-split-horizontal:before{content:"\f122"}
7534
+ .brz-ed .nc-outline-split-round:before{content:"\f123"}
7535
+ .brz-ed .nc-outline-split-vertical:before{content:"\f124"}
7536
+ .brz-ed .nc-outline-split:before{content:"\f125"}
7537
+ .brz-ed .nc-outline-sport:before{content:"\f126"}
7538
+ .brz-ed .nc-outline-spray-2:before{content:"\f127"}
7539
+ .brz-ed .nc-outline-spray:before{content:"\f128"}
7540
+ .brz-ed .nc-outline-square-add-08:before{content:"\f12a"}
7541
+ .brz-ed .nc-outline-square-add-11:before{content:"\f129"}
7542
+ .brz-ed .nc-outline-square-corner-down-left:before{content:"\f12b"}
7543
+ .brz-ed .nc-outline-square-corner-down-right:before{content:"\f12c"}
7544
+ .brz-ed .nc-outline-square-corner-up-left:before{content:"\f12d"}
7545
+ .brz-ed .nc-outline-square-corner-up-right:before{content:"\f12e"}
7546
+ .brz-ed .nc-outline-square-delete-10:before{content:"\f12f"}
7547
+ .brz-ed .nc-outline-square-delete-13:before{content:"\f130"}
7548
+ .brz-ed .nc-outline-square-down-06:before{content:"\f131"}
7549
+ .brz-ed .nc-outline-square-down:before{content:"\f132"}
7550
+ .brz-ed .nc-outline-square-download:before{content:"\f133"}
7551
+ .brz-ed .nc-outline-square-left-04:before{content:"\f134"}
7552
+ .brz-ed .nc-outline-square-left:before{content:"\f136"}
7553
+ .brz-ed .nc-outline-square-marker:before{content:"\f135"}
7554
+ .brz-ed .nc-outline-square-pin:before{content:"\f137"}
7555
+ .brz-ed .nc-outline-square-remove-09:before{content:"\f138"}
7556
+ .brz-ed .nc-outline-square-remove-12:before{content:"\f139"}
7557
+ .brz-ed .nc-outline-square-right-03:before{content:"\f13a"}
7558
+ .brz-ed .nc-outline-square-right:before{content:"\f13b"}
7559
+ .brz-ed .nc-outline-square-simple-down:before{content:"\f13c"}
7560
+ .brz-ed .nc-outline-square-simple-left:before{content:"\f13d"}
7561
+ .brz-ed .nc-outline-square-simple-right:before{content:"\f13e"}
7562
+ .brz-ed .nc-outline-square-simple-up:before{content:"\f13f"}
7563
+ .brz-ed .nc-outline-square-up-05:before{content:"\f140"}
7564
+ .brz-ed .nc-outline-square-up:before{content:"\f141"}
7565
+ .brz-ed .nc-outline-square-upload:before{content:"\f142"}
7566
+ .brz-ed .nc-outline-squares:before{content:"\f143"}
7567
+ .brz-ed .nc-outline-stamp:before{content:"\f144"}
7568
+ .brz-ed .nc-outline-standing-man:before{content:"\f145"}
7569
+ .brz-ed .nc-outline-standing-woman:before{content:"\f146"}
7570
+ .brz-ed .nc-outline-star:before{content:"\f148"}
7571
+ .brz-ed .nc-outline-steak-2:before{content:"\f147"}
7572
+ .brz-ed .nc-outline-steak:before{content:"\f149"}
7573
+ .brz-ed .nc-outline-steering-wheel:before{content:"\f14a"}
7574
+ .brz-ed .nc-outline-steps:before{content:"\f14b"}
7575
+ .brz-ed .nc-outline-stock-2:before{content:"\f14c"}
7576
+ .brz-ed .nc-outline-stock:before{content:"\f14d"}
7577
+ .brz-ed .nc-outline-storage-hanger:before{content:"\f14e"}
7578
+ .brz-ed .nc-outline-storage:before{content:"\f14f"}
7579
+ .brz-ed .nc-outline-store:before{content:"\f150"}
7580
+ .brz-ed .nc-outline-strategy:before{content:"\f151"}
7581
+ .brz-ed .nc-outline-strawberry:before{content:"\f152"}
7582
+ .brz-ed .nc-outline-stre-down:before{content:"\f153"}
7583
+ .brz-ed .nc-outline-stre-left:before{content:"\f154"}
7584
+ .brz-ed .nc-outline-stre-right:before{content:"\f156"}
7585
+ .brz-ed .nc-outline-stre-up:before{content:"\f155"}
7586
+ .brz-ed .nc-outline-stretch:before{content:"\f157"}
7587
+ .brz-ed .nc-outline-strikethrough:before{content:"\f158"}
7588
+ .brz-ed .nc-outline-strong-down:before{content:"\f15a"}
7589
+ .brz-ed .nc-outline-strong-left:before{content:"\f159"}
7590
+ .brz-ed .nc-outline-strong-right:before{content:"\f15b"}
7591
+ .brz-ed .nc-outline-strong-up:before{content:"\f15c"}
7592
+ .brz-ed .nc-outline-subscript:before{content:"\f15d"}
7593
+ .brz-ed .nc-outline-subtitles:before{content:"\f15f"}
7594
+ .brz-ed .nc-outline-sugar:before{content:"\f15e"}
7595
+ .brz-ed .nc-outline-sun-cloud-drop:before{content:"\f160"}
7596
+ .brz-ed .nc-outline-sun-cloud-fog:before{content:"\f161"}
7597
+ .brz-ed .nc-outline-sun-cloud-hail:before{content:"\f162"}
7598
+ .brz-ed .nc-outline-sun-cloud-light:before{content:"\f163"}
7599
+ .brz-ed .nc-outline-sun-cloud-rain:before{content:"\f164"}
7600
+ .brz-ed .nc-outline-sun-cloud-snow-54:before{content:"\f165"}
7601
+ .brz-ed .nc-outline-sun-cloud-snow-55:before{content:"\f166"}
7602
+ .brz-ed .nc-outline-sun-cloud:before{content:"\f167"}
7603
+ .brz-ed .nc-outline-sun-fog-29:before{content:"\f168"}
7604
+ .brz-ed .nc-outline-sun-fog-30:before{content:"\f169"}
7605
+ .brz-ed .nc-outline-sun-fog-43:before{content:"\f16a"}
7606
+ .brz-ed .nc-outline-sunglasses-48:before{content:"\f16b"}
7607
+ .brz-ed .nc-outline-sunglasses-49:before{content:"\f16c"}
7608
+ .brz-ed .nc-outline-sunglasses:before{content:"\f16d"}
7609
+ .brz-ed .nc-outline-superscript:before{content:"\f16e"}
7610
+ .brz-ed .nc-outline-supplement:before{content:"\f16f"}
7611
+ .brz-ed .nc-outline-support-16:before{content:"\f170"}
7612
+ .brz-ed .nc-outline-support-17:before{content:"\f171"}
7613
+ .brz-ed .nc-outline-surf-2:before{content:"\f172"}
7614
+ .brz-ed .nc-outline-surf:before{content:"\f173"}
7615
+ .brz-ed .nc-outline-surprise:before{content:"\f174"}
7616
+ .brz-ed .nc-outline-sushi:before{content:"\f175"}
7617
+ .brz-ed .nc-outline-swap-horizontal:before{content:"\f176"}
7618
+ .brz-ed .nc-outline-swap-vertical:before{content:"\f177"}
7619
+ .brz-ed .nc-outline-swimsuit:before{content:"\f178"}
7620
+ .brz-ed .nc-outline-swimwear:before{content:"\f179"}
7621
+ .brz-ed .nc-outline-swipe-bottom:before{content:"\f17a"}
7622
+ .brz-ed .nc-outline-swipe-left:before{content:"\f17b"}
7623
+ .brz-ed .nc-outline-swipe-right:before{content:"\f17c"}
7624
+ .brz-ed .nc-outline-swipe-up:before{content:"\f17d"}
7625
+ .brz-ed .nc-outline-swiss-knife:before{content:"\f17e"}
7626
+ .brz-ed .nc-outline-sync:before{content:"\f17f"}
7627
+ .brz-ed .nc-outline-syringe:before{content:"\f180"}
7628
+ .brz-ed .nc-outline-system-update:before{content:"\f181"}
7629
+ .brz-ed .nc-outline-table-left:before{content:"\f182"}
7630
+ .brz-ed .nc-outline-table-right:before{content:"\f183"}
7631
+ .brz-ed .nc-outline-table:before{content:"\f184"}
7632
+ .brz-ed .nc-outline-tablet-2:before{content:"\f185"}
7633
+ .brz-ed .nc-outline-tablet-button:before{content:"\f186"}
7634
+ .brz-ed .nc-outline-tablet-mobile:before{content:"\f187"}
7635
+ .brz-ed .nc-outline-tablet-reader-31:before{content:"\f188"}
7636
+ .brz-ed .nc-outline-tablet-reader-42:before{content:"\f189"}
7637
+ .brz-ed .nc-outline-tablet-toolbar:before{content:"\f18a"}
7638
+ .brz-ed .nc-outline-tablet:before{content:"\f18b"}
7639
+ .brz-ed .nc-outline-tacos:before{content:"\f18c"}
7640
+ .brz-ed .nc-outline-tactic:before{content:"\f18d"}
7641
+ .brz-ed .nc-outline-tag-2:before{content:"\f18f"}
7642
+ .brz-ed .nc-outline-tag-add:before{content:"\f18e"}
7643
+ .brz-ed .nc-outline-tag-check:before{content:"\f190"}
7644
+ .brz-ed .nc-outline-tag-content:before{content:"\f191"}
7645
+ .brz-ed .nc-outline-tag-cut:before{content:"\f192"}
7646
+ .brz-ed .nc-outline-tag-line:before{content:"\f193"}
7647
+ .brz-ed .nc-outline-tag-loyalty:before{content:"\f194"}
7648
+ .brz-ed .nc-outline-tag-remove:before{content:"\f195"}
7649
+ .brz-ed .nc-outline-tag-sale:before{content:"\f197"}
7650
+ .brz-ed .nc-outline-tag:before{content:"\f196"}
7651
+ .brz-ed .nc-outline-tail-down:before{content:"\f198"}
7652
+ .brz-ed .nc-outline-tail-left:before{content:"\f199"}
7653
+ .brz-ed .nc-outline-tail-right:before{content:"\f19a"}
7654
+ .brz-ed .nc-outline-tail-triangle-down:before{content:"\f19b"}
7655
+ .brz-ed .nc-outline-tail-triangle-left:before{content:"\f19c"}
7656
+ .brz-ed .nc-outline-tail-triangle-right:before{content:"\f19d"}
7657
+ .brz-ed .nc-outline-tail-triangle-up:before{content:"\f19f"}
7658
+ .brz-ed .nc-outline-tail-up:before{content:"\f19e"}
7659
+ .brz-ed .nc-outline-tap-01:before{content:"\f1a0"}
7660
+ .brz-ed .nc-outline-tap-02:before{content:"\f1a1"}
7661
+ .brz-ed .nc-outline-tape:before{content:"\f1a2"}
7662
+ .brz-ed .nc-outline-target:before{content:"\f1a3"}
7663
+ .brz-ed .nc-outline-tea-bag:before{content:"\f1a4"}
7664
+ .brz-ed .nc-outline-tea:before{content:"\f1a5"}
7665
+ .brz-ed .nc-outline-temperature-23:before{content:"\f1a6"}
7666
+ .brz-ed .nc-outline-temperature-24:before{content:"\f1a7"}
7667
+ .brz-ed .nc-outline-temple-25:before{content:"\f1a8"}
7668
+ .brz-ed .nc-outline-tennis-ball:before{content:"\f1a9"}
7669
+ .brz-ed .nc-outline-tennis:before{content:"\f1aa"}
7670
+ .brz-ed .nc-outline-terrace:before{content:"\f1ab"}
7671
+ .brz-ed .nc-outline-text-2:before{content:"\f1ac"}
7672
+ .brz-ed .nc-outline-text:before{content:"\f1ad"}
7673
+ .brz-ed .nc-outline-texture:before{content:"\f1ae"}
7674
+ .brz-ed .nc-outline-ticket-75:before{content:"\f1af"}
7675
+ .brz-ed .nc-outline-ticket-76:before{content:"\f1b0"}
7676
+ .brz-ed .nc-outline-tie-01:before{content:"\f1b1"}
7677
+ .brz-ed .nc-outline-tie-02:before{content:"\f1b2"}
7678
+ .brz-ed .nc-outline-tie-bow:before{content:"\f1b3"}
7679
+ .brz-ed .nc-outline-tile-55:before{content:"\f1b4"}
7680
+ .brz-ed .nc-outline-tile-56:before{content:"\f1b5"}
7681
+ .brz-ed .nc-outline-time-2:before{content:"\f1b6"}
7682
+ .brz-ed .nc-outline-time-3:before{content:"\f1b7"}
7683
+ .brz-ed .nc-outline-time-alarm:before{content:"\f1b8"}
7684
+ .brz-ed .nc-outline-time-clock:before{content:"\f1b9"}
7685
+ .brz-ed .nc-outline-time-countdown:before{content:"\f1ba"}
7686
+ .brz-ed .nc-outline-time:before{content:"\f1bb"}
7687
+ .brz-ed .nc-outline-timeline:before{content:"\f1bc"}
7688
+ .brz-ed .nc-outline-timer:before{content:"\f1bd"}
7689
+ .brz-ed .nc-outline-todo:before{content:"\f1be"}
7690
+ .brz-ed .nc-outline-toilet-paper:before{content:"\f1bf"}
7691
+ .brz-ed .nc-outline-toilet:before{content:"\f1c0"}
7692
+ .brz-ed .nc-outline-tomato:before{content:"\f1c1"}
7693
+ .brz-ed .nc-outline-tool-blur:before{content:"\f1c2"}
7694
+ .brz-ed .nc-outline-tool-hand:before{content:"\f1c3"}
7695
+ .brz-ed .nc-outline-tool-select:before{content:"\f1c4"}
7696
+ .brz-ed .nc-outline-tooth:before{content:"\f1c5"}
7697
+ .brz-ed .nc-outline-touch:before{content:"\f1c7"}
7698
+ .brz-ed .nc-outline-track-delivery:before{content:"\f1c6"}
7699
+ .brz-ed .nc-outline-tracking:before{content:"\f1c8"}
7700
+ .brz-ed .nc-outline-tractor:before{content:"\f1c9"}
7701
+ .brz-ed .nc-outline-train-speed:before{content:"\f1ca"}
7702
+ .brz-ed .nc-outline-train:before{content:"\f1cb"}
7703
+ .brz-ed .nc-outline-tram:before{content:"\f1cc"}
7704
+ .brz-ed .nc-outline-transform-2d:before{content:"\f1cd"}
7705
+ .brz-ed .nc-outline-transform-origin:before{content:"\f1ce"}
7706
+ .brz-ed .nc-outline-transform:before{content:"\f1cf"}
7707
+ .brz-ed .nc-outline-transparent:before{content:"\f1d1"}
7708
+ .brz-ed .nc-outline-trash-round:before{content:"\f1d0"}
7709
+ .brz-ed .nc-outline-trash-simple:before{content:"\f1d2"}
7710
+ .brz-ed .nc-outline-trash:before{content:"\f1d3"}
7711
+ .brz-ed .nc-outline-treasure-map-21:before{content:"\f1d4"}
7712
+ .brz-ed .nc-outline-treasure-map-40:before{content:"\f1d5"}
7713
+ .brz-ed .nc-outline-tree-01:before{content:"\f1d6"}
7714
+ .brz-ed .nc-outline-tree-02:before{content:"\f1d7"}
7715
+ .brz-ed .nc-outline-tree-03:before{content:"\f1d8"}
7716
+ .brz-ed .nc-outline-tree-ball:before{content:"\f1d9"}
7717
+ .brz-ed .nc-outline-tree:before{content:"\f1da"}
7718
+ .brz-ed .nc-outline-trend-down:before{content:"\f1db"}
7719
+ .brz-ed .nc-outline-trend-up:before{content:"\f1dc"}
7720
+ .brz-ed .nc-outline-triangle-down-20:before{content:"\f1dd"}
7721
+ .brz-ed .nc-outline-triangle-down-65:before{content:"\f1de"}
7722
+ .brz-ed .nc-outline-triangle-down:before{content:"\f1df"}
7723
+ .brz-ed .nc-outline-triangle-left-18:before{content:"\f1e0"}
7724
+ .brz-ed .nc-outline-triangle-left-63:before{content:"\f1e1"}
7725
+ .brz-ed .nc-outline-triangle-left:before{content:"\f1e2"}
7726
+ .brz-ed .nc-outline-triangle-right-17:before{content:"\f1e3"}
7727
+ .brz-ed .nc-outline-triangle-right-62:before{content:"\f1e4"}
7728
+ .brz-ed .nc-outline-triangle-right:before{content:"\f1e5"}
7729
+ .brz-ed .nc-outline-triangle-up-19:before{content:"\f1e6"}
7730
+ .brz-ed .nc-outline-triangle-up-64:before{content:"\f1e7"}
7731
+ .brz-ed .nc-outline-triangle-up:before{content:"\f1e8"}
7732
+ .brz-ed .nc-outline-tripod:before{content:"\f1e9"}
7733
+ .brz-ed .nc-outline-trolley:before{content:"\f1ea"}
7734
+ .brz-ed .nc-outline-trophy:before{content:"\f1eb"}
7735
+ .brz-ed .nc-outline-truck-front:before{content:"\f1ec"}
7736
+ .brz-ed .nc-outline-trunk:before{content:"\f1ed"}
7737
+ .brz-ed .nc-outline-tshirt-53:before{content:"\f1ee"}
7738
+ .brz-ed .nc-outline-tshirt-54:before{content:"\f1ef"}
7739
+ .brz-ed .nc-outline-tshirt-sport:before{content:"\f1f0"}
7740
+ .brz-ed .nc-outline-turtle:before{content:"\f1f1"}
7741
+ .brz-ed .nc-outline-tv-2:before{content:"\f1f2"}
7742
+ .brz-ed .nc-outline-tv-old:before{content:"\f1f3"}
7743
+ .brz-ed .nc-outline-tv:before{content:"\f1f4"}
7744
+ .brz-ed .nc-outline-ui-03:before{content:"\f1f5"}
7745
+ .brz-ed .nc-outline-ui-04:before{content:"\f1f6"}
7746
+ .brz-ed .nc-outline-umbrella-13:before{content:"\f1f7"}
7747
+ .brz-ed .nc-outline-umbrella-14:before{content:"\f1f8"}
7748
+ .brz-ed .nc-outline-underline:before{content:"\f1f9"}
7749
+ .brz-ed .nc-outline-underwear-man:before{content:"\f1fa"}
7750
+ .brz-ed .nc-outline-underwear:before{content:"\f1fb"}
7751
+ .brz-ed .nc-outline-undo-25:before{content:"\f1fc"}
7752
+ .brz-ed .nc-outline-undo-29:before{content:"\f1fd"}
7753
+ .brz-ed .nc-outline-ungroup:before{content:"\f1fe"}
7754
+ .brz-ed .nc-outline-unite-round:before{content:"\f1ff"}
7755
+ .brz-ed .nc-outline-unite:before{content:"\f200"}
7756
+ .brz-ed .nc-outline-upload-2:before{content:"\f201"}
7757
+ .brz-ed .nc-outline-upload:before{content:"\f202"}
7758
+ .brz-ed .nc-outline-upset-13:before{content:"\f203"}
7759
+ .brz-ed .nc-outline-upset-14:before{content:"\f204"}
7760
+ .brz-ed .nc-outline-usb:before{content:"\f205"}
7761
+ .brz-ed .nc-outline-user-balance:before{content:"\f206"}
7762
+ .brz-ed .nc-outline-user-climb:before{content:"\f207"}
7763
+ .brz-ed .nc-outline-user-frame-31:before{content:"\f209"}
7764
+ .brz-ed .nc-outline-user-frame-32:before{content:"\f208"}
7765
+ .brz-ed .nc-outline-user-frame-33:before{content:"\f20a"}
7766
+ .brz-ed .nc-outline-user-meditation:before{content:"\f20b"}
7767
+ .brz-ed .nc-outline-user-run:before{content:"\f20c"}
7768
+ .brz-ed .nc-outline-user-snowboard:before{content:"\f20d"}
7769
+ .brz-ed .nc-outline-user-swim:before{content:"\f20e"}
7770
+ .brz-ed .nc-outline-user:before{content:"\f20f"}
7771
+ .brz-ed .nc-outline-vampire:before{content:"\f210"}
7772
+ .brz-ed .nc-outline-vector-2:before{content:"\f211"}
7773
+ .brz-ed .nc-outline-vector:before{content:"\f212"}
7774
+ .brz-ed .nc-outline-vegan:before{content:"\f213"}
7775
+ .brz-ed .nc-outline-ventilation:before{content:"\f215"}
7776
+ .brz-ed .nc-outline-vespa-front:before{content:"\f214"}
7777
+ .brz-ed .nc-outline-vespa:before{content:"\f216"}
7778
+ .brz-ed .nc-outline-vest-31:before{content:"\f217"}
7779
+ .brz-ed .nc-outline-vest-sport:before{content:"\f218"}
7780
+ .brz-ed .nc-outline-vest:before{content:"\f219"}
7781
+ .brz-ed .nc-outline-video-64:before{content:"\f21a"}
7782
+ .brz-ed .nc-outline-video-65:before{content:"\f21b"}
7783
+ .brz-ed .nc-outline-video-66:before{content:"\f21c"}
7784
+ .brz-ed .nc-outline-video-67:before{content:"\f21d"}
7785
+ .brz-ed .nc-outline-videocamera-71:before{content:"\f21e"}
7786
+ .brz-ed .nc-outline-videocamera-72:before{content:"\f21f"}
7787
+ .brz-ed .nc-outline-virus:before{content:"\f220"}
7788
+ .brz-ed .nc-outline-voice-record:before{content:"\f221"}
7789
+ .brz-ed .nc-outline-volleyball:before{content:"\f222"}
7790
+ .brz-ed .nc-outline-volume-93:before{content:"\f223"}
7791
+ .brz-ed .nc-outline-volume-97:before{content:"\f224"}
7792
+ .brz-ed .nc-outline-volume-98:before{content:"\f225"}
7793
+ .brz-ed .nc-outline-volume-ban:before{content:"\f226"}
7794
+ .brz-ed .nc-outline-volume-down:before{content:"\f227"}
7795
+ .brz-ed .nc-outline-volume-off:before{content:"\f228"}
7796
+ .brz-ed .nc-outline-volume-up:before{content:"\f229"}
7797
+ .brz-ed .nc-outline-vpn:before{content:"\f22a"}
7798
+ .brz-ed .nc-outline-waffle:before{content:"\f22b"}
7799
+ .brz-ed .nc-outline-walk:before{content:"\f22d"}
7800
+ .brz-ed .nc-outline-wallet-43:before{content:"\f22c"}
7801
+ .brz-ed .nc-outline-wallet-44:before{content:"\f22e"}
7802
+ .brz-ed .nc-outline-wallet-90:before{content:"\f22f"}
7803
+ .brz-ed .nc-outline-wallet:before{content:"\f230"}
7804
+ .brz-ed .nc-outline-wand-11:before{content:"\f231"}
7805
+ .brz-ed .nc-outline-wardrobe:before{content:"\f232"}
7806
+ .brz-ed .nc-outline-wash-2:before{content:"\f233"}
7807
+ .brz-ed .nc-outline-wash-30:before{content:"\f234"}
7808
+ .brz-ed .nc-outline-wash-60:before{content:"\f235"}
7809
+ .brz-ed .nc-outline-wash-90:before{content:"\f236"}
7810
+ .brz-ed .nc-outline-wash-hand:before{content:"\f237"}
7811
+ .brz-ed .nc-outline-wash:before{content:"\f238"}
7812
+ .brz-ed .nc-outline-washing-fluid:before{content:"\f239"}
7813
+ .brz-ed .nc-outline-waste-danger:before{content:"\f23a"}
7814
+ .brz-ed .nc-outline-waste-recycling:before{content:"\f23b"}
7815
+ .brz-ed .nc-outline-waste:before{content:"\f23c"}
7816
+ .brz-ed .nc-outline-watch-circle:before{content:"\f23d"}
7817
+ .brz-ed .nc-outline-watch-dev:before{content:"\f23e"}
7818
+ .brz-ed .nc-outline-watch-time:before{content:"\f23f"}
7819
+ .brz-ed .nc-outline-watch:before{content:"\f240"}
7820
+ .brz-ed .nc-outline-water-hand:before{content:"\f241"}
7821
+ .brz-ed .nc-outline-water-sink:before{content:"\f242"}
7822
+ .brz-ed .nc-outline-water:before{content:"\f243"}
7823
+ .brz-ed .nc-outline-watermelon:before{content:"\f244"}
7824
+ .brz-ed .nc-outline-wc:before{content:"\f245"}
7825
+ .brz-ed .nc-outline-web-design:before{content:"\f246"}
7826
+ .brz-ed .nc-outline-webcam-38:before{content:"\f247"}
7827
+ .brz-ed .nc-outline-webcam-39:before{content:"\f248"}
7828
+ .brz-ed .nc-outline-webpage-2:before{content:"\f249"}
7829
+ .brz-ed .nc-outline-webpage:before{content:"\f24a"}
7830
+ .brz-ed .nc-outline-weed:before{content:"\f24b"}
7831
+ .brz-ed .nc-outline-weight:before{content:"\f24c"}
7832
+ .brz-ed .nc-outline-what:before{content:"\f24d"}
7833
+ .brz-ed .nc-outline-wheel-2:before{content:"\f24e"}
7834
+ .brz-ed .nc-outline-wheel:before{content:"\f251"}
7835
+ .brz-ed .nc-outline-wheelchair:before{content:"\f24f"}
7836
+ .brz-ed .nc-outline-whisk:before{content:"\f250"}
7837
+ .brz-ed .nc-outline-whiskers:before{content:"\f252"}
7838
+ .brz-ed .nc-outline-whistle:before{content:"\f253"}
7839
+ .brz-ed .nc-outline-white-house:before{content:"\f254"}
7840
+ .brz-ed .nc-outline-widget:before{content:"\f255"}
7841
+ .brz-ed .nc-outline-wifi-2:before{content:"\f256"}
7842
+ .brz-ed .nc-outline-wifi-off:before{content:"\f257"}
7843
+ .brz-ed .nc-outline-wifi-protected:before{content:"\f258"}
7844
+ .brz-ed .nc-outline-wifi-router:before{content:"\f259"}
7845
+ .brz-ed .nc-outline-wifi:before{content:"\f25a"}
7846
+ .brz-ed .nc-outline-wind-2:before{content:"\f25b"}
7847
+ .brz-ed .nc-outline-wind:before{content:"\f25c"}
7848
+ .brz-ed .nc-outline-window-add:before{content:"\f25d"}
7849
+ .brz-ed .nc-outline-window-code:before{content:"\f25e"}
7850
+ .brz-ed .nc-outline-window-delete:before{content:"\f25f"}
7851
+ .brz-ed .nc-outline-window-dev:before{content:"\f260"}
7852
+ .brz-ed .nc-outline-window-paragraph:before{content:"\f261"}
7853
+ .brz-ed .nc-outline-window-responsive:before{content:"\f262"}
7854
+ .brz-ed .nc-outline-window-zoom-in:before{content:"\f263"}
7855
+ .brz-ed .nc-outline-window-zoom-out:before{content:"\f264"}
7856
+ .brz-ed .nc-outline-wine-list:before{content:"\f265"}
7857
+ .brz-ed .nc-outline-wink-06:before{content:"\f266"}
7858
+ .brz-ed .nc-outline-wink-11:before{content:"\f267"}
7859
+ .brz-ed .nc-outline-wink-69:before{content:"\f268"}
7860
+ .brz-ed .nc-outline-witch-hat:before{content:"\f269"}
7861
+ .brz-ed .nc-outline-wolf:before{content:"\f26a"}
7862
+ .brz-ed .nc-outline-woman-2:before{content:"\f26b"}
7863
+ .brz-ed .nc-outline-woman-21:before{content:"\f26c"}
7864
+ .brz-ed .nc-outline-woman-24:before{content:"\f26d"}
7865
+ .brz-ed .nc-outline-woman-25:before{content:"\f26e"}
7866
+ .brz-ed .nc-outline-woman-down:before{content:"\f26f"}
7867
+ .brz-ed .nc-outline-woman-man:before{content:"\f270"}
7868
+ .brz-ed .nc-outline-woman-up:before{content:"\f271"}
7869
+ .brz-ed .nc-outline-woman:before{content:"\f272"}
7870
+ .brz-ed .nc-outline-wood:before{content:"\f273"}
7871
+ .brz-ed .nc-outline-wool-ball:before{content:"\f274"}
7872
+ .brz-ed .nc-outline-worl-marker:before{content:"\f275"}
7873
+ .brz-ed .nc-outline-world-2:before{content:"\f276"}
7874
+ .brz-ed .nc-outline-world-pin:before{content:"\f277"}
7875
+ .brz-ed .nc-outline-world:before{content:"\f278"}
7876
+ .brz-ed .nc-outline-yogurt:before{content:"\f279"}
7877
+ .brz-ed .nc-outline-zip-54:before{content:"\f27a"}
7878
+ .brz-ed .nc-outline-zip-55:before{content:"\f27b"}
7879
+ .brz-ed .nc-outline-zombie:before{content:"\f27c"}
7880
+ .brz-ed .nc-outline-zoom-100:before{content:"\f27d"}
7881
+ .brz-ed .nc-outline-zoom-2:before{content:"\f27e"}
7882
+ .brz-ed .nc-outline-zoom-88:before{content:"\f27f"}
7883
+ .brz-ed .nc-outline-zoom-99:before{content:"\f281"}
7884
+ .brz-ed .nc-outline-zoom-bold-in:before{content:"\f280"}
7885
+ .brz-ed .nc-outline-zoom-bold-out:before{content:"\f282"}
7886
+ .brz-ed .nc-outline-zoom-bold:before{content:"\f283"}
7887
+ .brz-ed .nc-outline-zoom-e:before{content:"\f285"}
7888
+ .brz-ed .nc-outline-zoom-in:before{content:"\f284"}
7889
+ .brz-ed .nc-outline-zoom-out:before{content:"\f286"}
7890
+ .brz-ed .nc-outline-zoom-split-in:before{content:"\f287"}
7891
+ .brz-ed .nc-outline-zoom-split-out:before{content:"\f288"}
7892
+ .brz-ed .nc-outline-zoom-split:before{content:"\f289"}
7893
+ .brz-ed .nc-outline-zoom-triangles:before{content:"\f28a"}
7894
+ .brz-ed .nc-outline-zoom:before{content:"\f28b"}
7895
+ .brz-ed .nc-glyph-2x-drag-down:before{content:"\ea01"}
7896
+ .brz-ed .nc-glyph-2x-drag-up:before{content:"\ea02"}
7897
+ .brz-ed .nc-glyph-2x-swipe-down:before{content:"\ea03"}
7898
+ .brz-ed .nc-glyph-2x-swipe-left:before{content:"\ea04"}
7899
+ .brz-ed .nc-glyph-2x-swipe-right:before{content:"\ea05"}
7900
+ .brz-ed .nc-glyph-2x-swipe-up:before{content:"\ea06"}
7901
+ .brz-ed .nc-glyph-2x-tap:before{content:"\ea07"}
7902
+ .brz-ed .nc-glyph-3d-29:before{content:"\ea08"}
7903
+ .brz-ed .nc-glyph-3d-model:before{content:"\ea09"}
7904
+ .brz-ed .nc-glyph-3d:before{content:"\ea0a"}
7905
+ .brz-ed .nc-glyph-3x-swipe-left:before{content:"\ea0b"}
7906
+ .brz-ed .nc-glyph-3x-swipe-right:before{content:"\ea0c"}
7907
+ .brz-ed .nc-glyph-3x-swipe-up:before{content:"\ea0d"}
7908
+ .brz-ed .nc-glyph-3x-tap:before{content:"\ea0e"}
7909
+ .brz-ed .nc-glyph-4x-swipe-left:before{content:"\ea0f"}
7910
+ .brz-ed .nc-glyph-4x-swipe-right:before{content:"\ea10"}
7911
+ .brz-ed .nc-glyph-4x-swipe-up:before{content:"\ea11"}
7912
+ .brz-ed .nc-glyph-a-add:before{content:"\ea12"}
7913
+ .brz-ed .nc-glyph-a-check:before{content:"\ea13"}
7914
+ .brz-ed .nc-glyph-a-delete:before{content:"\ea14"}
7915
+ .brz-ed .nc-glyph-a-edit:before{content:"\ea15"}
7916
+ .brz-ed .nc-glyph-a-heart:before{content:"\ea16"}
7917
+ .brz-ed .nc-glyph-a-location:before{content:"\ea17"}
7918
+ .brz-ed .nc-glyph-a-remove:before{content:"\ea18"}
7919
+ .brz-ed .nc-glyph-a-search:before{content:"\ea19"}
7920
+ .brz-ed .nc-glyph-a-security:before{content:"\ea1a"}
7921
+ .brz-ed .nc-glyph-a-share:before{content:"\ea1b"}
7922
+ .brz-ed .nc-glyph-a-star:before{content:"\ea1c"}
7923
+ .brz-ed .nc-glyph-a-sync:before{content:"\ea1d"}
7924
+ .brz-ed .nc-glyph-a-time:before{content:"\ea1e"}
7925
+ .brz-ed .nc-glyph-abc:before{content:"\ea1f"}
7926
+ .brz-ed .nc-glyph-accessibility:before{content:"\ea20"}
7927
+ .brz-ed .nc-glyph-action-73:before{content:"\ea21"}
7928
+ .brz-ed .nc-glyph-action-74:before{content:"\ea22"}
7929
+ .brz-ed .nc-glyph-active-38:before{content:"\ea23"}
7930
+ .brz-ed .nc-glyph-active-40:before{content:"\ea24"}
7931
+ .brz-ed .nc-glyph-add-27:before{content:"\ea25"}
7932
+ .brz-ed .nc-glyph-add-29:before{content:"\ea26"}
7933
+ .brz-ed .nc-glyph-add:before{content:"\ea27"}
7934
+ .brz-ed .nc-glyph-agenda-bookmark:before{content:"\ea28"}
7935
+ .brz-ed .nc-glyph-agenda:before{content:"\ea29"}
7936
+ .brz-ed .nc-glyph-air-baloon:before{content:"\ea2a"}
7937
+ .brz-ed .nc-glyph-air-conditioner:before{content:"\ea2b"}
7938
+ .brz-ed .nc-glyph-airbag:before{content:"\ea2c"}
7939
+ .brz-ed .nc-glyph-alarm-add:before{content:"\ea2d"}
7940
+ .brz-ed .nc-glyph-alarm-delete:before{content:"\ea2e"}
7941
+ .brz-ed .nc-glyph-album-2:before{content:"\ea2f"}
7942
+ .brz-ed .nc-glyph-album:before{content:"\ea30"}
7943
+ .brz-ed .nc-glyph-alcohol:before{content:"\ea31"}
7944
+ .brz-ed .nc-glyph-alert-circle-exc:before{content:"\ea32"}
7945
+ .brz-ed .nc-glyph-alert-circle-i:before{content:"\ea33"}
7946
+ .brz-ed .nc-glyph-alert-circle-que:before{content:"\ea34"}
7947
+ .brz-ed .nc-glyph-alert-exc:before{content:"\ea35"}
7948
+ .brz-ed .nc-glyph-alert-i:before{content:"\ea36"}
7949
+ .brz-ed .nc-glyph-alert-que:before{content:"\ea37"}
7950
+ .brz-ed .nc-glyph-alert-square-exc:before{content:"\ea38"}
7951
+ .brz-ed .nc-glyph-alert-square-i:before{content:"\ea39"}
7952
+ .brz-ed .nc-glyph-alert-square-que:before{content:"\ea3a"}
7953
+ .brz-ed .nc-glyph-alert:before{content:"\ea3b"}
7954
+ .brz-ed .nc-glyph-alien-29:before{content:"\ea3c"}
7955
+ .brz-ed .nc-glyph-alien-33:before{content:"\ea3d"}
7956
+ .brz-ed .nc-glyph-align-bottom:before{content:"\ea3e"}
7957
+ .brz-ed .nc-glyph-align-center-horizontal:before{content:"\ea3f"}
7958
+ .brz-ed .nc-glyph-align-center-vertical:before{content:"\ea40"}
7959
+ .brz-ed .nc-glyph-align-center:before{content:"\ea41"}
7960
+ .brz-ed .nc-glyph-align-justify:before{content:"\ea42"}
7961
+ .brz-ed .nc-glyph-align-left-2:before{content:"\ea43"}
7962
+ .brz-ed .nc-glyph-align-left:before{content:"\ea44"}
7963
+ .brz-ed .nc-glyph-align-right-2:before{content:"\ea45"}
7964
+ .brz-ed .nc-glyph-align-right:before{content:"\ea46"}
7965
+ .brz-ed .nc-glyph-align-top:before{content:"\ea47"}
7966
+ .brz-ed .nc-glyph-ambulance:before{content:"\ea48"}
7967
+ .brz-ed .nc-glyph-analytics-88:before{content:"\ea49"}
7968
+ .brz-ed .nc-glyph-analytics-89:before{content:"\ea4a"}
7969
+ .brz-ed .nc-glyph-anchor:before{content:"\ea4b"}
7970
+ .brz-ed .nc-glyph-android:before{content:"\ea4c"}
7971
+ .brz-ed .nc-glyph-angle:before{content:"\ea4d"}
7972
+ .brz-ed .nc-glyph-angry-10:before{content:"\ea4e"}
7973
+ .brz-ed .nc-glyph-angry-44:before{content:"\ea4f"}
7974
+ .brz-ed .nc-glyph-animation-14:before{content:"\ea50"}
7975
+ .brz-ed .nc-glyph-animation-31:before{content:"\ea51"}
7976
+ .brz-ed .nc-glyph-animation-32:before{content:"\ea52"}
7977
+ .brz-ed .nc-glyph-app:before{content:"\ea53"}
7978
+ .brz-ed .nc-glyph-apple-2:before{content:"\ea54"}
7979
+ .brz-ed .nc-glyph-apple:before{content:"\ea55"}
7980
+ .brz-ed .nc-glyph-appointment:before{content:"\ea56"}
7981
+ .brz-ed .nc-glyph-archive-2:before{content:"\ea57"}
7982
+ .brz-ed .nc-glyph-archive-3d-check:before{content:"\ea58"}
7983
+ .brz-ed .nc-glyph-archive-3d-content:before{content:"\ea59"}
7984
+ .brz-ed .nc-glyph-archive-check:before{content:"\ea5a"}
7985
+ .brz-ed .nc-glyph-archive-content:before{content:"\ea5b"}
7986
+ .brz-ed .nc-glyph-archive-paper-check:before{content:"\ea5c"}
7987
+ .brz-ed .nc-glyph-archive-paper:before{content:"\ea5d"}
7988
+ .brz-ed .nc-glyph-archive:before{content:"\ea5e"}
7989
+ .brz-ed .nc-glyph-armchair:before{content:"\ea5f"}
7990
+ .brz-ed .nc-glyph-artboard:before{content:"\ea60"}
7991
+ .brz-ed .nc-glyph-astronaut:before{content:"\ea61"}
7992
+ .brz-ed .nc-glyph-at-sign:before{content:"\ea62"}
7993
+ .brz-ed .nc-glyph-atm:before{content:"\ea63"}
7994
+ .brz-ed .nc-glyph-atom:before{content:"\ea64"}
7995
+ .brz-ed .nc-glyph-attach-86:before{content:"\ea65"}
7996
+ .brz-ed .nc-glyph-attach-87:before{content:"\ea66"}
7997
+ .brz-ed .nc-glyph-aubergine:before{content:"\ea67"}
7998
+ .brz-ed .nc-glyph-audio-91:before{content:"\ea68"}
7999
+ .brz-ed .nc-glyph-audio-92:before{content:"\ea69"}
8000
+ .brz-ed .nc-glyph-audio:before{content:"\ea6a"}
8001
+ .brz-ed .nc-glyph-avocado:before{content:"\ea6b"}
8002
+ .brz-ed .nc-glyph-award-48:before{content:"\ea6c"}
8003
+ .brz-ed .nc-glyph-award-49:before{content:"\ea6d"}
8004
+ .brz-ed .nc-glyph-award-55:before{content:"\ea6e"}
8005
+ .brz-ed .nc-glyph-award-74:before{content:"\ea6f"}
8006
+ .brz-ed .nc-glyph-award:before{content:"\ea70"}
8007
+ .brz-ed .nc-glyph-axe:before{content:"\ea71"}
8008
+ .brz-ed .nc-glyph-b-add:before{content:"\ea72"}
8009
+ .brz-ed .nc-glyph-b-check:before{content:"\ea73"}
8010
+ .brz-ed .nc-glyph-b-location:before{content:"\ea74"}
8011
+ .brz-ed .nc-glyph-b-love:before{content:"\ea75"}
8012
+ .brz-ed .nc-glyph-b-meeting:before{content:"\ea76"}
8013
+ .brz-ed .nc-glyph-b-remove:before{content:"\ea77"}
8014
+ .brz-ed .nc-glyph-b-security:before{content:"\ea78"}
8015
+ .brz-ed .nc-glyph-baby-2:before{content:"\ea79"}
8016
+ .brz-ed .nc-glyph-baby-3:before{content:"\ea7a"}
8017
+ .brz-ed .nc-glyph-baby-bottle:before{content:"\ea7b"}
8018
+ .brz-ed .nc-glyph-baby:before{content:"\ea7c"}
8019
+ .brz-ed .nc-glyph-back-78:before{content:"\ea7d"}
8020
+ .brz-ed .nc-glyph-back-80:before{content:"\ea7e"}
8021
+ .brz-ed .nc-glyph-background:before{content:"\ea7f"}
8022
+ .brz-ed .nc-glyph-backpack-2:before{content:"\ea80"}
8023
+ .brz-ed .nc-glyph-backpack-57:before{content:"\ea81"}
8024
+ .brz-ed .nc-glyph-backpack-58:before{content:"\ea82"}
8025
+ .brz-ed .nc-glyph-backpack:before{content:"\ea83"}
8026
+ .brz-ed .nc-glyph-backward:before{content:"\ea84"}
8027
+ .brz-ed .nc-glyph-bacon:before{content:"\ea85"}
8028
+ .brz-ed .nc-glyph-badge-13:before{content:"\ea86"}
8029
+ .brz-ed .nc-glyph-badge-14:before{content:"\ea87"}
8030
+ .brz-ed .nc-glyph-badge-15:before{content:"\ea88"}
8031
+ .brz-ed .nc-glyph-badge:before{content:"\ea89"}
8032
+ .brz-ed .nc-glyph-badminton:before{content:"\ea8a"}
8033
+ .brz-ed .nc-glyph-bag-09:before{content:"\ea8b"}
8034
+ .brz-ed .nc-glyph-bag-16:before{content:"\ea8c"}
8035
+ .brz-ed .nc-glyph-bag-17:before{content:"\ea8d"}
8036
+ .brz-ed .nc-glyph-bag-20:before{content:"\ea8e"}
8037
+ .brz-ed .nc-glyph-bag-21:before{content:"\ea8f"}
8038
+ .brz-ed .nc-glyph-bag-22:before{content:"\ea90"}
8039
+ .brz-ed .nc-glyph-bag-49:before{content:"\ea91"}
8040
+ .brz-ed .nc-glyph-bag-50:before{content:"\ea92"}
8041
+ .brz-ed .nc-glyph-bag-add-18:before{content:"\ea93"}
8042
+ .brz-ed .nc-glyph-bag-add-21:before{content:"\ea94"}
8043
+ .brz-ed .nc-glyph-bag-delivery:before{content:"\ea95"}
8044
+ .brz-ed .nc-glyph-bag-edit:before{content:"\ea96"}
8045
+ .brz-ed .nc-glyph-bag-remove-19:before{content:"\ea97"}
8046
+ .brz-ed .nc-glyph-bag-remove-22:before{content:"\ea98"}
8047
+ .brz-ed .nc-glyph-bag-time:before{content:"\ea99"}
8048
+ .brz-ed .nc-glyph-bag:before{content:"\ea9a"}
8049
+ .brz-ed .nc-glyph-baguette:before{content:"\ea9b"}
8050
+ .brz-ed .nc-glyph-balance:before{content:"\ea9c"}
8051
+ .brz-ed .nc-glyph-ball-basket:before{content:"\ea9d"}
8052
+ .brz-ed .nc-glyph-ball-soccer:before{content:"\ea9e"}
8053
+ .brz-ed .nc-glyph-baloon:before{content:"\ea9f"}
8054
+ .brz-ed .nc-glyph-ban-bold:before{content:"\eaa0"}
8055
+ .brz-ed .nc-glyph-ban:before{content:"\eaa1"}
8056
+ .brz-ed .nc-glyph-banana:before{content:"\eaa2"}
8057
+ .brz-ed .nc-glyph-bank:before{content:"\eaa3"}
8058
+ .brz-ed .nc-glyph-barbecue-15:before{content:"\eaa4"}
8059
+ .brz-ed .nc-glyph-barbecue-tools:before{content:"\eaa5"}
8060
+ .brz-ed .nc-glyph-barbecue:before{content:"\eaa6"}
8061
+ .brz-ed .nc-glyph-barcode-qr:before{content:"\eaa7"}
8062
+ .brz-ed .nc-glyph-barcode-scan:before{content:"\eaa8"}
8063
+ .brz-ed .nc-glyph-barcode:before{content:"\eaa9"}
8064
+ .brz-ed .nc-glyph-bars-2:before{content:"\eaaa"}
8065
+ .brz-ed .nc-glyph-bars-rotate:before{content:"\eaab"}
8066
+ .brz-ed .nc-glyph-bars:before{content:"\eaac"}
8067
+ .brz-ed .nc-glyph-baseball-ball:before{content:"\eaad"}
8068
+ .brz-ed .nc-glyph-baseball-bat:before{content:"\eaae"}
8069
+ .brz-ed .nc-glyph-baseball:before{content:"\eaaf"}
8070
+ .brz-ed .nc-glyph-basket-add:before{content:"\eab0"}
8071
+ .brz-ed .nc-glyph-basket-edit:before{content:"\eab1"}
8072
+ .brz-ed .nc-glyph-basket-favorite:before{content:"\eab2"}
8073
+ .brz-ed .nc-glyph-basket-remove:before{content:"\eab3"}
8074
+ .brz-ed .nc-glyph-basket-search:before{content:"\eab4"}
8075
+ .brz-ed .nc-glyph-basket-share:before{content:"\eab5"}
8076
+ .brz-ed .nc-glyph-basket-simple-add:before{content:"\eab6"}
8077
+ .brz-ed .nc-glyph-basket-simple-remove:before{content:"\eab7"}
8078
+ .brz-ed .nc-glyph-basket-simple:before{content:"\eab8"}
8079
+ .brz-ed .nc-glyph-basket-update:before{content:"\eab9"}
8080
+ .brz-ed .nc-glyph-basket:before{content:"\eaba"}
8081
+ .brz-ed .nc-glyph-basketball-12:before{content:"\eabb"}
8082
+ .brz-ed .nc-glyph-basketball-13:before{content:"\eabc"}
8083
+ .brz-ed .nc-glyph-bat:before{content:"\eabd"}
8084
+ .brz-ed .nc-glyph-bath-tub:before{content:"\eabe"}
8085
+ .brz-ed .nc-glyph-battery-81:before{content:"\eabf"}
8086
+ .brz-ed .nc-glyph-battery-83:before{content:"\eac0"}
8087
+ .brz-ed .nc-glyph-battery-half:before{content:"\eac1"}
8088
+ .brz-ed .nc-glyph-battery-level:before{content:"\eac2"}
8089
+ .brz-ed .nc-glyph-battery-low:before{content:"\eac3"}
8090
+ .brz-ed .nc-glyph-battery:before{content:"\eac4"}
8091
+ .brz-ed .nc-glyph-bear-2:before{content:"\eac5"}
8092
+ .brz-ed .nc-glyph-bear:before{content:"\eac6"}
8093
+ .brz-ed .nc-glyph-bed-09:before{content:"\eac7"}
8094
+ .brz-ed .nc-glyph-bed-23:before{content:"\eac8"}
8095
+ .brz-ed .nc-glyph-bed-side:before{content:"\eac9"}
8096
+ .brz-ed .nc-glyph-bee:before{content:"\eaca"}
8097
+ .brz-ed .nc-glyph-beer-95:before{content:"\eacb"}
8098
+ .brz-ed .nc-glyph-beer-96:before{content:"\eacc"}
8099
+ .brz-ed .nc-glyph-bell-53:before{content:"\eacd"}
8100
+ .brz-ed .nc-glyph-bell-54:before{content:"\eace"}
8101
+ .brz-ed .nc-glyph-bell-55:before{content:"\eacf"}
8102
+ .brz-ed .nc-glyph-belt:before{content:"\ead0"}
8103
+ .brz-ed .nc-glyph-berlin:before{content:"\ead1"}
8104
+ .brz-ed .nc-glyph-beverage:before{content:"\ead2"}
8105
+ .brz-ed .nc-glyph-big-eyes:before{content:"\ead3"}
8106
+ .brz-ed .nc-glyph-big-smile:before{content:"\ead4"}
8107
+ .brz-ed .nc-glyph-bigmouth:before{content:"\ead5"}
8108
+ .brz-ed .nc-glyph-bike-2:before{content:"\ead6"}
8109
+ .brz-ed .nc-glyph-bike:before{content:"\ead7"}
8110
+ .brz-ed .nc-glyph-bill:before{content:"\ead8"}
8111
+ .brz-ed .nc-glyph-billiard:before{content:"\ead9"}
8112
+ .brz-ed .nc-glyph-binocular:before{content:"\eada"}
8113
+ .brz-ed .nc-glyph-biscuit:before{content:"\eadb"}
8114
+ .brz-ed .nc-glyph-bitcoin:before{content:"\eadc"}
8115
+ .brz-ed .nc-glyph-bleah:before{content:"\eadd"}
8116
+ .brz-ed .nc-glyph-blend:before{content:"\eade"}
8117
+ .brz-ed .nc-glyph-blind:before{content:"\eadf"}
8118
+ .brz-ed .nc-glyph-block-bottom-left:before{content:"\eae0"}
8119
+ .brz-ed .nc-glyph-block-bottom-right:before{content:"\eae1"}
8120
+ .brz-ed .nc-glyph-block-down:before{content:"\eae2"}
8121
+ .brz-ed .nc-glyph-block-left:before{content:"\eae3"}
8122
+ .brz-ed .nc-glyph-block-right:before{content:"\eae4"}
8123
+ .brz-ed .nc-glyph-block-top-left:before{content:"\eae5"}
8124
+ .brz-ed .nc-glyph-block-top-right:before{content:"\eae6"}
8125
+ .brz-ed .nc-glyph-block-up:before{content:"\eae7"}
8126
+ .brz-ed .nc-glyph-blog:before{content:"\eae8"}
8127
+ .brz-ed .nc-glyph-blueberries:before{content:"\eae9"}
8128
+ .brz-ed .nc-glyph-bluetooth:before{content:"\eaea"}
8129
+ .brz-ed .nc-glyph-board-2:before{content:"\eaeb"}
8130
+ .brz-ed .nc-glyph-board-27:before{content:"\eaec"}
8131
+ .brz-ed .nc-glyph-board-28:before{content:"\eaed"}
8132
+ .brz-ed .nc-glyph-board-29:before{content:"\eaee"}
8133
+ .brz-ed .nc-glyph-board-30:before{content:"\eaef"}
8134
+ .brz-ed .nc-glyph-board-51:before{content:"\eaf0"}
8135
+ .brz-ed .nc-glyph-board:before{content:"\eaf1"}
8136
+ .brz-ed .nc-glyph-boat-front:before{content:"\eaf2"}
8137
+ .brz-ed .nc-glyph-boat-small-02:before{content:"\eaf3"}
8138
+ .brz-ed .nc-glyph-boat-small-03:before{content:"\eaf4"}
8139
+ .brz-ed .nc-glyph-boat:before{content:"\eaf5"}
8140
+ .brz-ed .nc-glyph-bold-add:before{content:"\eaf6"}
8141
+ .brz-ed .nc-glyph-bold-delete:before{content:"\eaf7"}
8142
+ .brz-ed .nc-glyph-bold-direction:before{content:"\eaf8"}
8143
+ .brz-ed .nc-glyph-bold-down:before{content:"\eaf9"}
8144
+ .brz-ed .nc-glyph-bold-left:before{content:"\eafa"}
8145
+ .brz-ed .nc-glyph-bold-remove:before{content:"\eafb"}
8146
+ .brz-ed .nc-glyph-bold-right:before{content:"\eafc"}
8147
+ .brz-ed .nc-glyph-bold-up:before{content:"\eafd"}
8148
+ .brz-ed .nc-glyph-bold:before{content:"\eafe"}
8149
+ .brz-ed .nc-glyph-bolt:before{content:"\eaff"}
8150
+ .brz-ed .nc-glyph-bomb:before{content:"\eb00"}
8151
+ .brz-ed .nc-glyph-bones:before{content:"\eb01"}
8152
+ .brz-ed .nc-glyph-book-07:before{content:"\eb02"}
8153
+ .brz-ed .nc-glyph-book-08:before{content:"\eb03"}
8154
+ .brz-ed .nc-glyph-book-39:before{content:"\eb04"}
8155
+ .brz-ed .nc-glyph-book-bookmark-2:before{content:"\eb05"}
8156
+ .brz-ed .nc-glyph-book-bookmark:before{content:"\eb06"}
8157
+ .brz-ed .nc-glyph-book-open-2:before{content:"\eb07"}
8158
+ .brz-ed .nc-glyph-book-open:before{content:"\eb08"}
8159
+ .brz-ed .nc-glyph-book:before{content:"\eb09"}
8160
+ .brz-ed .nc-glyph-bookmark-2:before{content:"\eb0a"}
8161
+ .brz-ed .nc-glyph-bookmark-add-2:before{content:"\eb0b"}
8162
+ .brz-ed .nc-glyph-bookmark-add:before{content:"\eb0c"}
8163
+ .brz-ed .nc-glyph-bookmark-remove-2:before{content:"\eb0d"}
8164
+ .brz-ed .nc-glyph-bookmark-remove:before{content:"\eb0e"}
8165
+ .brz-ed .nc-glyph-bookmark:before{content:"\eb0f"}
8166
+ .brz-ed .nc-glyph-books-46:before{content:"\eb10"}
8167
+ .brz-ed .nc-glyph-books:before{content:"\eb11"}
8168
+ .brz-ed .nc-glyph-boot-2:before{content:"\eb12"}
8169
+ .brz-ed .nc-glyph-boot-woman:before{content:"\eb13"}
8170
+ .brz-ed .nc-glyph-boot:before{content:"\eb14"}
8171
+ .brz-ed .nc-glyph-border-radius:before{content:"\eb15"}
8172
+ .brz-ed .nc-glyph-border:before{content:"\eb16"}
8173
+ .brz-ed .nc-glyph-bored:before{content:"\eb17"}
8174
+ .brz-ed .nc-glyph-bottle-wine:before{content:"\eb18"}
8175
+ .brz-ed .nc-glyph-bottle:before{content:"\eb19"}
8176
+ .brz-ed .nc-glyph-bow:before{content:"\eb1a"}
8177
+ .brz-ed .nc-glyph-bowl:before{content:"\eb1b"}
8178
+ .brz-ed .nc-glyph-bowling:before{content:"\eb1c"}
8179
+ .brz-ed .nc-glyph-box-2:before{content:"\eb1d"}
8180
+ .brz-ed .nc-glyph-box-3d-50:before{content:"\eb1e"}
8181
+ .brz-ed .nc-glyph-box-ribbon:before{content:"\eb1f"}
8182
+ .brz-ed .nc-glyph-box:before{content:"\eb20"}
8183
+ .brz-ed .nc-glyph-boxing:before{content:"\eb21"}
8184
+ .brz-ed .nc-glyph-bra:before{content:"\eb22"}
8185
+ .brz-ed .nc-glyph-brain:before{content:"\eb23"}
8186
+ .brz-ed .nc-glyph-brakes:before{content:"\eb24"}
8187
+ .brz-ed .nc-glyph-bread:before{content:"\eb25"}
8188
+ .brz-ed .nc-glyph-briefcase-24:before{content:"\eb26"}
8189
+ .brz-ed .nc-glyph-briefcase-25:before{content:"\eb27"}
8190
+ .brz-ed .nc-glyph-briefcase-26:before{content:"\eb28"}
8191
+ .brz-ed .nc-glyph-brightness-46:before{content:"\eb29"}
8192
+ .brz-ed .nc-glyph-brightness-47:before{content:"\eb2a"}
8193
+ .brz-ed .nc-glyph-brioche:before{content:"\eb2b"}
8194
+ .brz-ed .nc-glyph-broccoli:before{content:"\eb2c"}
8195
+ .brz-ed .nc-glyph-broom:before{content:"\eb2d"}
8196
+ .brz-ed .nc-glyph-browser-chrome:before{content:"\eb2e"}
8197
+ .brz-ed .nc-glyph-browser-edge:before{content:"\eb2f"}
8198
+ .brz-ed .nc-glyph-browser-firefox:before{content:"\eb30"}
8199
+ .brz-ed .nc-glyph-browser-ie:before{content:"\eb31"}
8200
+ .brz-ed .nc-glyph-browser-opera:before{content:"\eb32"}
8201
+ .brz-ed .nc-glyph-browser-safari:before{content:"\eb33"}
8202
+ .brz-ed .nc-glyph-brush:before{content:"\eb34"}
8203
+ .brz-ed .nc-glyph-bucket:before{content:"\eb35"}
8204
+ .brz-ed .nc-glyph-bug:before{content:"\eb36"}
8205
+ .brz-ed .nc-glyph-building:before{content:"\eb37"}
8206
+ .brz-ed .nc-glyph-bulb-61:before{content:"\eb38"}
8207
+ .brz-ed .nc-glyph-bulb-62:before{content:"\eb39"}
8208
+ .brz-ed .nc-glyph-bulb-63:before{content:"\eb3a"}
8209
+ .brz-ed .nc-glyph-bulb-saver:before{content:"\eb3b"}
8210
+ .brz-ed .nc-glyph-bulb:before{content:"\eb3c"}
8211
+ .brz-ed .nc-glyph-bullet-list-67:before{content:"\eb3d"}
8212
+ .brz-ed .nc-glyph-bullet-list-68:before{content:"\eb3e"}
8213
+ .brz-ed .nc-glyph-bullet-list-69:before{content:"\eb3f"}
8214
+ .brz-ed .nc-glyph-bullet-list-70:before{content:"\eb40"}
8215
+ .brz-ed .nc-glyph-bullet-list:before{content:"\eb41"}
8216
+ .brz-ed .nc-glyph-bus-front-10:before{content:"\eb42"}
8217
+ .brz-ed .nc-glyph-bus-front-12:before{content:"\eb43"}
8218
+ .brz-ed .nc-glyph-bus:before{content:"\eb44"}
8219
+ .brz-ed .nc-glyph-business-contact-85:before{content:"\eb45"}
8220
+ .brz-ed .nc-glyph-business-contact-86:before{content:"\eb46"}
8221
+ .brz-ed .nc-glyph-business-contact-87:before{content:"\eb47"}
8222
+ .brz-ed .nc-glyph-business-contact-88:before{content:"\eb48"}
8223
+ .brz-ed .nc-glyph-business-contact-89:before{content:"\eb49"}
8224
+ .brz-ed .nc-glyph-businessman-03:before{content:"\eb4a"}
8225
+ .brz-ed .nc-glyph-businessman-04:before{content:"\eb4b"}
8226
+ .brz-ed .nc-glyph-butterfly:before{content:"\eb4c"}
8227
+ .brz-ed .nc-glyph-button-2:before{content:"\eb4d"}
8228
+ .brz-ed .nc-glyph-button-circle-pause:before{content:"\eb4e"}
8229
+ .brz-ed .nc-glyph-button-circle-play:before{content:"\eb4f"}
8230
+ .brz-ed .nc-glyph-button-circle-stop:before{content:"\eb50"}
8231
+ .brz-ed .nc-glyph-button-eject:before{content:"\eb51"}
8232
+ .brz-ed .nc-glyph-button-next:before{content:"\eb52"}
8233
+ .brz-ed .nc-glyph-button-pause:before{content:"\eb53"}
8234
+ .brz-ed .nc-glyph-button-play:before{content:"\eb54"}
8235
+ .brz-ed .nc-glyph-button-power:before{content:"\eb55"}
8236
+ .brz-ed .nc-glyph-button-previous:before{content:"\eb56"}
8237
+ .brz-ed .nc-glyph-button-record:before{content:"\eb57"}
8238
+ .brz-ed .nc-glyph-button-rewind:before{content:"\eb58"}
8239
+ .brz-ed .nc-glyph-button-skip:before{content:"\eb5b"}
8240
+ .brz-ed .nc-glyph-button-stop:before{content:"\eb59"}
8241
+ .brz-ed .nc-glyph-button:before{content:"\eb5a"}
8242
+ .brz-ed .nc-glyph-cabinet:before{content:"\eb5c"}
8243
+ .brz-ed .nc-glyph-cable-49:before{content:"\eb5d"}
8244
+ .brz-ed .nc-glyph-cable-50:before{content:"\eb5e"}
8245
+ .brz-ed .nc-glyph-cactus:before{content:"\eb5f"}
8246
+ .brz-ed .nc-glyph-cake-100:before{content:"\eb60"}
8247
+ .brz-ed .nc-glyph-cake-13:before{content:"\eb61"}
8248
+ .brz-ed .nc-glyph-cake-slice:before{content:"\eb62"}
8249
+ .brz-ed .nc-glyph-cake:before{content:"\eb63"}
8250
+ .brz-ed .nc-glyph-calculator:before{content:"\eb64"}
8251
+ .brz-ed .nc-glyph-calendar-57:before{content:"\eb65"}
8252
+ .brz-ed .nc-glyph-calendar-60:before{content:"\eb66"}
8253
+ .brz-ed .nc-glyph-calendar-add:before{content:"\eb67"}
8254
+ .brz-ed .nc-glyph-calendar-check-59:before{content:"\eb68"}
8255
+ .brz-ed .nc-glyph-calendar-check-62:before{content:"\eb69"}
8256
+ .brz-ed .nc-glyph-calendar-grid-58:before{content:"\eb6a"}
8257
+ .brz-ed .nc-glyph-calendar-grid-61:before{content:"\eb6b"}
8258
+ .brz-ed .nc-glyph-camera-18:before{content:"\eb6c"}
8259
+ .brz-ed .nc-glyph-camera-19:before{content:"\eb6d"}
8260
+ .brz-ed .nc-glyph-camera-20:before{content:"\eb6e"}
8261
+ .brz-ed .nc-glyph-camera-ban-36:before{content:"\eb6f"}
8262
+ .brz-ed .nc-glyph-camera-ban-37:before{content:"\eb70"}
8263
+ .brz-ed .nc-glyph-camera-compact:before{content:"\eb71"}
8264
+ .brz-ed .nc-glyph-camera-screen:before{content:"\eb72"}
8265
+ .brz-ed .nc-glyph-camera-square-57:before{content:"\eb73"}
8266
+ .brz-ed .nc-glyph-camera-square-58:before{content:"\eb74"}
8267
+ .brz-ed .nc-glyph-camera-time:before{content:"\eb75"}
8268
+ .brz-ed .nc-glyph-camera:before{content:"\eb76"}
8269
+ .brz-ed .nc-glyph-camper:before{content:"\eb77"}
8270
+ .brz-ed .nc-glyph-camping:before{content:"\eb78"}
8271
+ .brz-ed .nc-glyph-candle:before{content:"\eb79"}
8272
+ .brz-ed .nc-glyph-candy-2:before{content:"\eb7a"}
8273
+ .brz-ed .nc-glyph-candy:before{content:"\eb7b"}
8274
+ .brz-ed .nc-glyph-canvas:before{content:"\eb7c"}
8275
+ .brz-ed .nc-glyph-cap:before{content:"\eb7d"}
8276
+ .brz-ed .nc-glyph-capitalize:before{content:"\eb7e"}
8277
+ .brz-ed .nc-glyph-caps-all:before{content:"\eb7f"}
8278
+ .brz-ed .nc-glyph-caps-small:before{content:"\eb80"}
8279
+ .brz-ed .nc-glyph-car-2:before{content:"\eb81"}
8280
+ .brz-ed .nc-glyph-car-accident:before{content:"\eb82"}
8281
+ .brz-ed .nc-glyph-car-connect:before{content:"\eb83"}
8282
+ .brz-ed .nc-glyph-car-door:before{content:"\eb84"}
8283
+ .brz-ed .nc-glyph-car-front:before{content:"\eb85"}
8284
+ .brz-ed .nc-glyph-car-lights:before{content:"\eb86"}
8285
+ .brz-ed .nc-glyph-car-parking:before{content:"\eb87"}
8286
+ .brz-ed .nc-glyph-car-simple:before{content:"\eb88"}
8287
+ .brz-ed .nc-glyph-car-sport:before{content:"\eb89"}
8288
+ .brz-ed .nc-glyph-car-taxi:before{content:"\eb8a"}
8289
+ .brz-ed .nc-glyph-car-ventilation:before{content:"\eb8b"}
8290
+ .brz-ed .nc-glyph-car-wash:before{content:"\eb8c"}
8291
+ .brz-ed .nc-glyph-car:before{content:"\eb8d"}
8292
+ .brz-ed .nc-glyph-card-add-2:before{content:"\eb8e"}
8293
+ .brz-ed .nc-glyph-card-add:before{content:"\eb8f"}
8294
+ .brz-ed .nc-glyph-card-alert:before{content:"\eb90"}
8295
+ .brz-ed .nc-glyph-card-edit:before{content:"\eb91"}
8296
+ .brz-ed .nc-glyph-card-favorite:before{content:"\eb92"}
8297
+ .brz-ed .nc-glyph-card-remove:before{content:"\eb93"}
8298
+ .brz-ed .nc-glyph-card-update:before{content:"\eb94"}
8299
+ .brz-ed .nc-glyph-cardio:before{content:"\eb95"}
8300
+ .brz-ed .nc-glyph-cards:before{content:"\eb96"}
8301
+ .brz-ed .nc-glyph-carrot:before{content:"\eb97"}
8302
+ .brz-ed .nc-glyph-cart-9:before{content:"\eb98"}
8303
+ .brz-ed .nc-glyph-cart-add-9:before{content:"\eb99"}
8304
+ .brz-ed .nc-glyph-cart-add:before{content:"\eb9a"}
8305
+ .brz-ed .nc-glyph-cart-favorite:before{content:"\eb9b"}
8306
+ .brz-ed .nc-glyph-cart-full:before{content:"\eb9c"}
8307
+ .brz-ed .nc-glyph-cart-in-9:before{content:"\eb9d"}
8308
+ .brz-ed .nc-glyph-cart-refresh:before{content:"\eb9e"}
8309
+ .brz-ed .nc-glyph-cart-remove-9:before{content:"\eb9f"}
8310
+ .brz-ed .nc-glyph-cart-remove:before{content:"\eba0"}
8311
+ .brz-ed .nc-glyph-cart-return:before{content:"\eba1"}
8312
+ .brz-ed .nc-glyph-cart-simple-add:before{content:"\eba2"}
8313
+ .brz-ed .nc-glyph-cart-simple-in:before{content:"\eba3"}
8314
+ .brz-ed .nc-glyph-cart-simple-remove:before{content:"\eba4"}
8315
+ .brz-ed .nc-glyph-cart-simple:before{content:"\eba5"}
8316
+ .brz-ed .nc-glyph-cart-speed:before{content:"\eba6"}
8317
+ .brz-ed .nc-glyph-cart:before{content:"\eba7"}
8318
+ .brz-ed .nc-glyph-cash-register:before{content:"\eba8"}
8319
+ .brz-ed .nc-glyph-castle:before{content:"\eba9"}
8320
+ .brz-ed .nc-glyph-cat:before{content:"\ebaa"}
8321
+ .brz-ed .nc-glyph-cauldron:before{content:"\ebab"}
8322
+ .brz-ed .nc-glyph-cctv:before{content:"\ebac"}
8323
+ .brz-ed .nc-glyph-cd-reader:before{content:"\ebad"}
8324
+ .brz-ed .nc-glyph-celsius:before{content:"\ebae"}
8325
+ .brz-ed .nc-glyph-centralize:before{content:"\ebaf"}
8326
+ .brz-ed .nc-glyph-chair-2:before{content:"\ebb0"}
8327
+ .brz-ed .nc-glyph-chair:before{content:"\ebb1"}
8328
+ .brz-ed .nc-glyph-chalkboard:before{content:"\ebb2"}
8329
+ .brz-ed .nc-glyph-champagne:before{content:"\ebb3"}
8330
+ .brz-ed .nc-glyph-chart-2:before{content:"\ebb4"}
8331
+ .brz-ed .nc-glyph-chart-3:before{content:"\ebb5"}
8332
+ .brz-ed .nc-glyph-chart-bar-32:before{content:"\ebb6"}
8333
+ .brz-ed .nc-glyph-chart-bar-33:before{content:"\ebb7"}
8334
+ .brz-ed .nc-glyph-chart-bar-52:before{content:"\ebb8"}
8335
+ .brz-ed .nc-glyph-chart-bar-53:before{content:"\ebb9"}
8336
+ .brz-ed .nc-glyph-chart-bar:before{content:"\ebba"}
8337
+ .brz-ed .nc-glyph-chart-bars:before{content:"\ebbb"}
8338
+ .brz-ed .nc-glyph-chart-growth:before{content:"\ebbc"}
8339
+ .brz-ed .nc-glyph-chart-pie-35:before{content:"\ebbd"}
8340
+ .brz-ed .nc-glyph-chart-pie-36:before{content:"\ebbe"}
8341
+ .brz-ed .nc-glyph-chart-pie:before{content:"\ebbf"}
8342
+ .brz-ed .nc-glyph-chart:before{content:"\ebc0"}
8343
+ .brz-ed .nc-glyph-chat-33:before{content:"\ebc1"}
8344
+ .brz-ed .nc-glyph-chat-45:before{content:"\ebc2"}
8345
+ .brz-ed .nc-glyph-chat-46:before{content:"\ebc3"}
8346
+ .brz-ed .nc-glyph-chat-content:before{content:"\ebc4"}
8347
+ .brz-ed .nc-glyph-chat-reply:before{content:"\ebc5"}
8348
+ .brz-ed .nc-glyph-chat-round-content:before{content:"\ebc6"}
8349
+ .brz-ed .nc-glyph-chat-round:before{content:"\ebc7"}
8350
+ .brz-ed .nc-glyph-chat:before{content:"\ebc8"}
8351
+ .brz-ed .nc-glyph-check-2:before{content:"\ebc9"}
8352
+ .brz-ed .nc-glyph-check-bold:before{content:"\ebca"}
8353
+ .brz-ed .nc-glyph-check-circle-07:before{content:"\ebcb"}
8354
+ .brz-ed .nc-glyph-check-circle-08:before{content:"\ebcc"}
8355
+ .brz-ed .nc-glyph-check-curve:before{content:"\ebcd"}
8356
+ .brz-ed .nc-glyph-check-in:before{content:"\ebce"}
8357
+ .brz-ed .nc-glyph-check-out:before{content:"\ebcf"}
8358
+ .brz-ed .nc-glyph-check-simple:before{content:"\ebd0"}
8359
+ .brz-ed .nc-glyph-check-small:before{content:"\ebd1"}
8360
+ .brz-ed .nc-glyph-check-square-09:before{content:"\ebd2"}
8361
+ .brz-ed .nc-glyph-check-square-11:before{content:"\ebd3"}
8362
+ .brz-ed .nc-glyph-check:before{content:"\ebd4"}
8363
+ .brz-ed .nc-glyph-cheese-24:before{content:"\ebd5"}
8364
+ .brz-ed .nc-glyph-cheese-87:before{content:"\ebd6"}
8365
+ .brz-ed .nc-glyph-cheeseburger:before{content:"\ebd7"}
8366
+ .brz-ed .nc-glyph-chef-hat:before{content:"\ebd8"}
8367
+ .brz-ed .nc-glyph-chef:before{content:"\ebd9"}
8368
+ .brz-ed .nc-glyph-cheque-2:before{content:"\ebda"}
8369
+ .brz-ed .nc-glyph-cheque-3:before{content:"\ebdb"}
8370
+ .brz-ed .nc-glyph-cheque:before{content:"\ebdc"}
8371
+ .brz-ed .nc-glyph-cherry:before{content:"\ebdd"}
8372
+ .brz-ed .nc-glyph-chicken-2:before{content:"\ebde"}
8373
+ .brz-ed .nc-glyph-chicken:before{content:"\ebdf"}
8374
+ .brz-ed .nc-glyph-child:before{content:"\ebe0"}
8375
+ .brz-ed .nc-glyph-chili:before{content:"\ebe1"}
8376
+ .brz-ed .nc-glyph-chimney:before{content:"\ebe2"}
8377
+ .brz-ed .nc-glyph-china:before{content:"\ebe3"}
8378
+ .brz-ed .nc-glyph-chinese:before{content:"\ebe4"}
8379
+ .brz-ed .nc-glyph-chips:before{content:"\ebe5"}
8380
+ .brz-ed .nc-glyph-choco-cream:before{content:"\ebe7"}
8381
+ .brz-ed .nc-glyph-chocolate-mousse:before{content:"\ebe6"}
8382
+ .brz-ed .nc-glyph-chocolate:before{content:"\ebe8"}
8383
+ .brz-ed .nc-glyph-church:before{content:"\ebe9"}
8384
+ .brz-ed .nc-glyph-churros:before{content:"\ebea"}
8385
+ .brz-ed .nc-glyph-circle-02:before{content:"\ebeb"}
8386
+ .brz-ed .nc-glyph-circle-03:before{content:"\ebec"}
8387
+ .brz-ed .nc-glyph-circle-04:before{content:"\ebed"}
8388
+ .brz-ed .nc-glyph-circle-08:before{content:"\ebee"}
8389
+ .brz-ed .nc-glyph-circle-09:before{content:"\ebef"}
8390
+ .brz-ed .nc-glyph-circle-10:before{content:"\ebf0"}
8391
+ .brz-ed .nc-glyph-circle-add:before{content:"\ebf1"}
8392
+ .brz-ed .nc-glyph-circle-bold-add:before{content:"\ebf2"}
8393
+ .brz-ed .nc-glyph-circle-bold-delete:before{content:"\ebf3"}
8394
+ .brz-ed .nc-glyph-circle-bold-remove:before{content:"\ebf4"}
8395
+ .brz-ed .nc-glyph-circle-delete:before{content:"\ebf5"}
8396
+ .brz-ed .nc-glyph-circle-down-12:before{content:"\ebf6"}
8397
+ .brz-ed .nc-glyph-circle-down-40:before{content:"\ebf7"}
8398
+ .brz-ed .nc-glyph-circle-in:before{content:"\ebf8"}
8399
+ .brz-ed .nc-glyph-circle-left-10:before{content:"\ebf9"}
8400
+ .brz-ed .nc-glyph-circle-left-38:before{content:"\ebfa"}
8401
+ .brz-ed .nc-glyph-circle-out:before{content:"\ebfb"}
8402
+ .brz-ed .nc-glyph-circle-remove:before{content:"\ebfc"}
8403
+ .brz-ed .nc-glyph-circle-right-09:before{content:"\ebfd"}
8404
+ .brz-ed .nc-glyph-circle-right-37:before{content:"\ebfe"}
8405
+ .brz-ed .nc-glyph-circle-simple-down:before{content:"\ebff"}
8406
+ .brz-ed .nc-glyph-circle-simple-left:before{content:"\ec00"}
8407
+ .brz-ed .nc-glyph-circle-simple-right:before{content:"\ec01"}
8408
+ .brz-ed .nc-glyph-circle-simple-up:before{content:"\ec02"}
8409
+ .brz-ed .nc-glyph-circle-up-11:before{content:"\ec03"}
8410
+ .brz-ed .nc-glyph-circle-up-39:before{content:"\ec04"}
8411
+ .brz-ed .nc-glyph-circle:before{content:"\ec05"}
8412
+ .brz-ed .nc-glyph-circuit-round:before{content:"\ec06"}
8413
+ .brz-ed .nc-glyph-circuit:before{content:"\ec07"}
8414
+ .brz-ed .nc-glyph-clone:before{content:"\ec08"}
8415
+ .brz-ed .nc-glyph-cloud-25:before{content:"\ec09"}
8416
+ .brz-ed .nc-glyph-cloud-26:before{content:"\ec0a"}
8417
+ .brz-ed .nc-glyph-cloud-download-93:before{content:"\ec0b"}
8418
+ .brz-ed .nc-glyph-cloud-download-95:before{content:"\ec0c"}
8419
+ .brz-ed .nc-glyph-cloud-drop:before{content:"\ec0d"}
8420
+ .brz-ed .nc-glyph-cloud-fog-31:before{content:"\ec0e"}
8421
+ .brz-ed .nc-glyph-cloud-fog-32:before{content:"\ec0f"}
8422
+ .brz-ed .nc-glyph-cloud-hail:before{content:"\ec10"}
8423
+ .brz-ed .nc-glyph-cloud-light:before{content:"\ec11"}
8424
+ .brz-ed .nc-glyph-cloud-moon:before{content:"\ec12"}
8425
+ .brz-ed .nc-glyph-cloud-rain:before{content:"\ec13"}
8426
+ .brz-ed .nc-glyph-cloud-rainbow:before{content:"\ec14"}
8427
+ .brz-ed .nc-glyph-cloud-snow-34:before{content:"\ec15"}
8428
+ .brz-ed .nc-glyph-cloud-snow-42:before{content:"\ec16"}
8429
+ .brz-ed .nc-glyph-cloud-sun-17:before{content:"\ec17"}
8430
+ .brz-ed .nc-glyph-cloud-sun-19:before{content:"\ec18"}
8431
+ .brz-ed .nc-glyph-cloud-upload-94:before{content:"\ec19"}
8432
+ .brz-ed .nc-glyph-cloud-upload-96:before{content:"\ec1a"}
8433
+ .brz-ed .nc-glyph-cloud:before{content:"\ec1b"}
8434
+ .brz-ed .nc-glyph-clover:before{content:"\ec1c"}
8435
+ .brz-ed .nc-glyph-coat-hanger:before{content:"\ec1d"}
8436
+ .brz-ed .nc-glyph-coat:before{content:"\ec1e"}
8437
+ .brz-ed .nc-glyph-cockade:before{content:"\ec1f"}
8438
+ .brz-ed .nc-glyph-cocktail:before{content:"\ec20"}
8439
+ .brz-ed .nc-glyph-code-editor:before{content:"\ec21"}
8440
+ .brz-ed .nc-glyph-code:before{content:"\ec22"}
8441
+ .brz-ed .nc-glyph-coffe-long:before{content:"\ec23"}
8442
+ .brz-ed .nc-glyph-coffee-2:before{content:"\ec24"}
8443
+ .brz-ed .nc-glyph-coffee-bean:before{content:"\ec25"}
8444
+ .brz-ed .nc-glyph-coffee-long:before{content:"\ec26"}
8445
+ .brz-ed .nc-glyph-coffee:before{content:"\ec27"}
8446
+ .brz-ed .nc-glyph-coffin:before{content:"\ec28"}
8447
+ .brz-ed .nc-glyph-coins:before{content:"\ec29"}
8448
+ .brz-ed .nc-glyph-collar:before{content:"\ec2a"}
8449
+ .brz-ed .nc-glyph-collection:before{content:"\ec2b"}
8450
+ .brz-ed .nc-glyph-color:before{content:"\ec2c"}
8451
+ .brz-ed .nc-glyph-command:before{content:"\ec2d"}
8452
+ .brz-ed .nc-glyph-comment-add:before{content:"\ec2e"}
8453
+ .brz-ed .nc-glyph-compare:before{content:"\ec2f"}
8454
+ .brz-ed .nc-glyph-compass-04:before{content:"\ec30"}
8455
+ .brz-ed .nc-glyph-compass-05:before{content:"\ec31"}
8456
+ .brz-ed .nc-glyph-compass-06:before{content:"\ec32"}
8457
+ .brz-ed .nc-glyph-compass-2:before{content:"\ec33"}
8458
+ .brz-ed .nc-glyph-compass-3:before{content:"\ec34"}
8459
+ .brz-ed .nc-glyph-compass:before{content:"\ec35"}
8460
+ .brz-ed .nc-glyph-components:before{content:"\ec36"}
8461
+ .brz-ed .nc-glyph-computer-monitor:before{content:"\ec37"}
8462
+ .brz-ed .nc-glyph-computer-old:before{content:"\ec38"}
8463
+ .brz-ed .nc-glyph-computer-upload:before{content:"\ec39"}
8464
+ .brz-ed .nc-glyph-computer:before{content:"\ec3a"}
8465
+ .brz-ed .nc-glyph-cone:before{content:"\ec3b"}
8466
+ .brz-ed .nc-glyph-connect:before{content:"\ec3c"}
8467
+ .brz-ed .nc-glyph-connection:before{content:"\ec3d"}
8468
+ .brz-ed .nc-glyph-contacts-2:before{content:"\ec3e"}
8469
+ .brz-ed .nc-glyph-contacts-44:before{content:"\ec3f"}
8470
+ .brz-ed .nc-glyph-contacts-45:before{content:"\ec40"}
8471
+ .brz-ed .nc-glyph-contacts:before{content:"\ec41"}
8472
+ .brz-ed .nc-glyph-contrast-2:before{content:"\ec42"}
8473
+ .brz-ed .nc-glyph-contrast:before{content:"\ec43"}
8474
+ .brz-ed .nc-glyph-controller-2:before{content:"\ec44"}
8475
+ .brz-ed .nc-glyph-controller-3:before{content:"\ec45"}
8476
+ .brz-ed .nc-glyph-controller:before{content:"\ec46"}
8477
+ .brz-ed .nc-glyph-conversion:before{content:"\ec47"}
8478
+ .brz-ed .nc-glyph-cookies:before{content:"\ec48"}
8479
+ .brz-ed .nc-glyph-copy-2:before{content:"\ec49"}
8480
+ .brz-ed .nc-glyph-copy:before{content:"\ec4a"}
8481
+ .brz-ed .nc-glyph-corn:before{content:"\ec4b"}
8482
+ .brz-ed .nc-glyph-corner-down-round:before{content:"\ec4c"}
8483
+ .brz-ed .nc-glyph-corner-down:before{content:"\ec4d"}
8484
+ .brz-ed .nc-glyph-corner-left-down:before{content:"\ec4e"}
8485
+ .brz-ed .nc-glyph-corner-left-round:before{content:"\ec4f"}
8486
+ .brz-ed .nc-glyph-corner-left:before{content:"\ec50"}
8487
+ .brz-ed .nc-glyph-corner-right-down:before{content:"\ec51"}
8488
+ .brz-ed .nc-glyph-corner-right-round:before{content:"\ec52"}
8489
+ .brz-ed .nc-glyph-corner-right:before{content:"\ec53"}
8490
+ .brz-ed .nc-glyph-corner-up-left:before{content:"\ec54"}
8491
+ .brz-ed .nc-glyph-corner-up-right:before{content:"\ec55"}
8492
+ .brz-ed .nc-glyph-corner-up-round:before{content:"\ec56"}
8493
+ .brz-ed .nc-glyph-corner-up:before{content:"\ec57"}
8494
+ .brz-ed .nc-glyph-corset:before{content:"\ec58"}
8495
+ .brz-ed .nc-glyph-countdown-34:before{content:"\ec59"}
8496
+ .brz-ed .nc-glyph-countdown-35:before{content:"\ec5a"}
8497
+ .brz-ed .nc-glyph-couple-gay:before{content:"\ec5b"}
8498
+ .brz-ed .nc-glyph-couple-lesbian:before{content:"\ec5c"}
8499
+ .brz-ed .nc-glyph-coupon:before{content:"\ec5d"}
8500
+ .brz-ed .nc-glyph-course:before{content:"\ec5e"}
8501
+ .brz-ed .nc-glyph-cow:before{content:"\ec5f"}
8502
+ .brz-ed .nc-glyph-crab:before{content:"\ec60"}
8503
+ .brz-ed .nc-glyph-cradle:before{content:"\ec61"}
8504
+ .brz-ed .nc-glyph-credit-card-in:before{content:"\ec62"}
8505
+ .brz-ed .nc-glyph-credit-card:before{content:"\ec63"}
8506
+ .brz-ed .nc-glyph-credit-locked:before{content:"\ec64"}
8507
+ .brz-ed .nc-glyph-crepe:before{content:"\ec65"}
8508
+ .brz-ed .nc-glyph-cricket:before{content:"\ec66"}
8509
+ .brz-ed .nc-glyph-croissant:before{content:"\ec67"}
8510
+ .brz-ed .nc-glyph-crop:before{content:"\ec68"}
8511
+ .brz-ed .nc-glyph-cross-down:before{content:"\ec69"}
8512
+ .brz-ed .nc-glyph-cross-horizontal:before{content:"\ec6a"}
8513
+ .brz-ed .nc-glyph-cross-left:before{content:"\ec6b"}
8514
+ .brz-ed .nc-glyph-cross-right:before{content:"\ec6c"}
8515
+ .brz-ed .nc-glyph-cross-up:before{content:"\ec6d"}
8516
+ .brz-ed .nc-glyph-cross-vertical:before{content:"\ec6e"}
8517
+ .brz-ed .nc-glyph-cross:before{content:"\ec6f"}
8518
+ .brz-ed .nc-glyph-crosshair:before{content:"\ec70"}
8519
+ .brz-ed .nc-glyph-crown:before{content:"\ec71"}
8520
+ .brz-ed .nc-glyph-crumpet:before{content:"\ec72"}
8521
+ .brz-ed .nc-glyph-cry-15:before{content:"\ec73"}
8522
+ .brz-ed .nc-glyph-cry-57:before{content:"\ec74"}
8523
+ .brz-ed .nc-glyph-css3:before{content:"\ec75"}
8524
+ .brz-ed .nc-glyph-cupcake:before{content:"\ec76"}
8525
+ .brz-ed .nc-glyph-currency-dollar:before{content:"\ec77"}
8526
+ .brz-ed .nc-glyph-currency-euro:before{content:"\ec78"}
8527
+ .brz-ed .nc-glyph-currency-exchange:before{content:"\ec79"}
8528
+ .brz-ed .nc-glyph-currency-pound:before{content:"\ec7a"}
8529
+ .brz-ed .nc-glyph-currency-yen:before{content:"\ec7b"}
8530
+ .brz-ed .nc-glyph-cursor-48:before{content:"\ec7c"}
8531
+ .brz-ed .nc-glyph-cursor-49:before{content:"\ec7d"}
8532
+ .brz-ed .nc-glyph-cursor-add:before{content:"\ec7e"}
8533
+ .brz-ed .nc-glyph-cursor-grab:before{content:"\ec7f"}
8534
+ .brz-ed .nc-glyph-cursor-load:before{content:"\ec80"}
8535
+ .brz-ed .nc-glyph-cursor-menu:before{content:"\ec81"}
8536
+ .brz-ed .nc-glyph-cursor-not-allowed:before{content:"\ec82"}
8537
+ .brz-ed .nc-glyph-cursor-pointer:before{content:"\ec83"}
8538
+ .brz-ed .nc-glyph-cursor-text:before{content:"\ec84"}
8539
+ .brz-ed .nc-glyph-curtain:before{content:"\ec85"}
8540
+ .brz-ed .nc-glyph-curve-circuit:before{content:"\ec86"}
8541
+ .brz-ed .nc-glyph-curve-directions:before{content:"\ec87"}
8542
+ .brz-ed .nc-glyph-curve-split:before{content:"\ec88"}
8543
+ .brz-ed .nc-glyph-curved-next:before{content:"\ec89"}
8544
+ .brz-ed .nc-glyph-curved-previous:before{content:"\ec8a"}
8545
+ .brz-ed .nc-glyph-customer-support:before{content:"\ec8b"}
8546
+ .brz-ed .nc-glyph-cut:before{content:"\ec8c"}
8547
+ .brz-ed .nc-glyph-cute:before{content:"\ec8d"}
8548
+ .brz-ed .nc-glyph-cutlery-75:before{content:"\ec8e"}
8549
+ .brz-ed .nc-glyph-cutlery-76:before{content:"\ec8f"}
8550
+ .brz-ed .nc-glyph-cutlery-77:before{content:"\ec90"}
8551
+ .brz-ed .nc-glyph-cutlery:before{content:"\ec91"}
8552
+ .brz-ed .nc-glyph-cyclist:before{content:"\ec92"}
8553
+ .brz-ed .nc-glyph-dart:before{content:"\ec93"}
8554
+ .brz-ed .nc-glyph-dashboard-29:before{content:"\ec94"}
8555
+ .brz-ed .nc-glyph-dashboard-30:before{content:"\ec95"}
8556
+ .brz-ed .nc-glyph-dashboard-half:before{content:"\ec96"}
8557
+ .brz-ed .nc-glyph-dashboard-level:before{content:"\ec97"}
8558
+ .brz-ed .nc-glyph-database:before{content:"\ec98"}
8559
+ .brz-ed .nc-glyph-dead-hand:before{content:"\ec99"}
8560
+ .brz-ed .nc-glyph-decoration:before{content:"\ec9a"}
8561
+ .brz-ed .nc-glyph-deer:before{content:"\ec9b"}
8562
+ .brz-ed .nc-glyph-delete-28:before{content:"\ec9c"}
8563
+ .brz-ed .nc-glyph-delete-30:before{content:"\ec9d"}
8564
+ .brz-ed .nc-glyph-delete-49:before{content:"\ec9e"}
8565
+ .brz-ed .nc-glyph-delete-50:before{content:"\ec9f"}
8566
+ .brz-ed .nc-glyph-delivery-2:before{content:"\eca0"}
8567
+ .brz-ed .nc-glyph-delivery-3:before{content:"\eca1"}
8568
+ .brz-ed .nc-glyph-delivery-fast:before{content:"\eca2"}
8569
+ .brz-ed .nc-glyph-delivery-time:before{content:"\eca3"}
8570
+ .brz-ed .nc-glyph-delivery-track:before{content:"\eca4"}
8571
+ .brz-ed .nc-glyph-delivery:before{content:"\eca5"}
8572
+ .brz-ed .nc-glyph-design-system:before{content:"\eca6"}
8573
+ .brz-ed .nc-glyph-design:before{content:"\eca7"}
8574
+ .brz-ed .nc-glyph-desk-drawer:before{content:"\eca8"}
8575
+ .brz-ed .nc-glyph-desk:before{content:"\eca9"}
8576
+ .brz-ed .nc-glyph-desktop-screen:before{content:"\ecaa"}
8577
+ .brz-ed .nc-glyph-desktop:before{content:"\ecab"}
8578
+ .brz-ed .nc-glyph-detox:before{content:"\ecac"}
8579
+ .brz-ed .nc-glyph-dev:before{content:"\ecad"}
8580
+ .brz-ed .nc-glyph-device-connection:before{content:"\ecae"}
8581
+ .brz-ed .nc-glyph-devil:before{content:"\ecaf"}
8582
+ .brz-ed .nc-glyph-diag-bottom-left:before{content:"\ecb0"}
8583
+ .brz-ed .nc-glyph-diag-bottom-right:before{content:"\ecb1"}
8584
+ .brz-ed .nc-glyph-diag-top-left:before{content:"\ecb2"}
8585
+ .brz-ed .nc-glyph-diag-top-right:before{content:"\ecb3"}
8586
+ .brz-ed .nc-glyph-diamond:before{content:"\ecb4"}
8587
+ .brz-ed .nc-glyph-dice:before{content:"\ecb5"}
8588
+ .brz-ed .nc-glyph-diet-plan:before{content:"\ecb6"}
8589
+ .brz-ed .nc-glyph-diet:before{content:"\ecb7"}
8590
+ .brz-ed .nc-glyph-direction-53:before{content:"\ecb8"}
8591
+ .brz-ed .nc-glyph-direction-56:before{content:"\ecb9"}
8592
+ .brz-ed .nc-glyph-direction:before{content:"\ecba"}
8593
+ .brz-ed .nc-glyph-directions:before{content:"\ecbb"}
8594
+ .brz-ed .nc-glyph-disabled:before{content:"\ecbc"}
8595
+ .brz-ed .nc-glyph-discord:before{content:"\ecbd"}
8596
+ .brz-ed .nc-glyph-discount-2:before{content:"\ecbe"}
8597
+ .brz-ed .nc-glyph-discount:before{content:"\ecbf"}
8598
+ .brz-ed .nc-glyph-disgusted:before{content:"\ecc0"}
8599
+ .brz-ed .nc-glyph-dish:before{content:"\ecc1"}
8600
+ .brz-ed .nc-glyph-dishwasher:before{content:"\ecc2"}
8601
+ .brz-ed .nc-glyph-disk-2:before{content:"\ecc3"}
8602
+ .brz-ed .nc-glyph-disk-reader:before{content:"\ecc4"}
8603
+ .brz-ed .nc-glyph-disk:before{content:"\ecc5"}
8604
+ .brz-ed .nc-glyph-disperse:before{content:"\ecc6"}
8605
+ .brz-ed .nc-glyph-distribute-horizontal:before{content:"\ecc7"}
8606
+ .brz-ed .nc-glyph-distribute-vertical:before{content:"\ecc8"}
8607
+ .brz-ed .nc-glyph-divider:before{content:"\ecc9"}
8608
+ .brz-ed .nc-glyph-dna-27:before{content:"\ecca"}
8609
+ .brz-ed .nc-glyph-dna-38:before{content:"\eccb"}
8610
+ .brz-ed .nc-glyph-dock-bottom:before{content:"\eccc"}
8611
+ .brz-ed .nc-glyph-dock-left:before{content:"\eccd"}
8612
+ .brz-ed .nc-glyph-dock-right:before{content:"\ecce"}
8613
+ .brz-ed .nc-glyph-dock-top:before{content:"\eccf"}
8614
+ .brz-ed .nc-glyph-dock:before{content:"\ecd0"}
8615
+ .brz-ed .nc-glyph-doctor:before{content:"\ecd1"}
8616
+ .brz-ed .nc-glyph-dog-house:before{content:"\ecd2"}
8617
+ .brz-ed .nc-glyph-dog:before{content:"\ecd3"}
8618
+ .brz-ed .nc-glyph-donut:before{content:"\ecd4"}
8619
+ .brz-ed .nc-glyph-door:before{content:"\ecd5"}
8620
+ .brz-ed .nc-glyph-dots-05:before{content:"\ecd6"}
8621
+ .brz-ed .nc-glyph-dots-06:before{content:"\ecd7"}
8622
+ .brz-ed .nc-glyph-dots-07:before{content:"\ecd8"}
8623
+ .brz-ed .nc-glyph-dots-download:before{content:"\ecd9"}
8624
+ .brz-ed .nc-glyph-dots-upload:before{content:"\ecda"}
8625
+ .brz-ed .nc-glyph-dots:before{content:"\ecdb"}
8626
+ .brz-ed .nc-glyph-double-left:before{content:"\ecdc"}
8627
+ .brz-ed .nc-glyph-double-right:before{content:"\ecdd"}
8628
+ .brz-ed .nc-glyph-double-tap:before{content:"\ecde"}
8629
+ .brz-ed .nc-glyph-download-2:before{content:"\ecdf"}
8630
+ .brz-ed .nc-glyph-download-3:before{content:"\ece0"}
8631
+ .brz-ed .nc-glyph-download:before{content:"\ece1"}
8632
+ .brz-ed .nc-glyph-drag-21:before{content:"\ece2"}
8633
+ .brz-ed .nc-glyph-drag-31:before{content:"\ece3"}
8634
+ .brz-ed .nc-glyph-drag-down:before{content:"\ece4"}
8635
+ .brz-ed .nc-glyph-drag-left:before{content:"\ece5"}
8636
+ .brz-ed .nc-glyph-drag-right:before{content:"\ece6"}
8637
+ .brz-ed .nc-glyph-drag-up:before{content:"\ece7"}
8638
+ .brz-ed .nc-glyph-drag:before{content:"\ece8"}
8639
+ .brz-ed .nc-glyph-drawer-2:before{content:"\ece9"}
8640
+ .brz-ed .nc-glyph-drawer:before{content:"\ecea"}
8641
+ .brz-ed .nc-glyph-dress-man:before{content:"\eceb"}
8642
+ .brz-ed .nc-glyph-dress-woman:before{content:"\ecec"}
8643
+ .brz-ed .nc-glyph-drink-2:before{content:"\ecee"}
8644
+ .brz-ed .nc-glyph-drink-list:before{content:"\eced"}
8645
+ .brz-ed .nc-glyph-drink:before{content:"\ecef"}
8646
+ .brz-ed .nc-glyph-drop-15:before{content:"\ecf0"}
8647
+ .brz-ed .nc-glyph-drop:before{content:"\ecf1"}
8648
+ .brz-ed .nc-glyph-drops:before{content:"\ecf3"}
8649
+ .brz-ed .nc-glyph-dumbbells:before{content:"\ecf2"}
8650
+ .brz-ed .nc-glyph-eclipse:before{content:"\ecf4"}
8651
+ .brz-ed .nc-glyph-edit-2:before{content:"\ecf5"}
8652
+ .brz-ed .nc-glyph-edit-71:before{content:"\ecf6"}
8653
+ .brz-ed .nc-glyph-edit-72:before{content:"\ecf7"}
8654
+ .brz-ed .nc-glyph-edit-73:before{content:"\ecf8"}
8655
+ .brz-ed .nc-glyph-edit-74:before{content:"\ecf9"}
8656
+ .brz-ed .nc-glyph-edit-75:before{content:"\ecfa"}
8657
+ .brz-ed .nc-glyph-edit-76:before{content:"\ecfb"}
8658
+ .brz-ed .nc-glyph-edit-77:before{content:"\ecfc"}
8659
+ .brz-ed .nc-glyph-edit-78:before{content:"\ecfd"}
8660
+ .brz-ed .nc-glyph-edit-color:before{content:"\ecfe"}
8661
+ .brz-ed .nc-glyph-edit-contrast-42:before{content:"\ecff"}
8662
+ .brz-ed .nc-glyph-edit-contrast-43:before{content:"\ed00"}
8663
+ .brz-ed .nc-glyph-edit-saturation:before{content:"\ed01"}
8664
+ .brz-ed .nc-glyph-edit:before{content:"\ed02"}
8665
+ .brz-ed .nc-glyph-egg-38:before{content:"\ed03"}
8666
+ .brz-ed .nc-glyph-egg-39:before{content:"\ed04"}
8667
+ .brz-ed .nc-glyph-egg:before{content:"\ed05"}
8668
+ .brz-ed .nc-glyph-eject:before{content:"\ed06"}
8669
+ .brz-ed .nc-glyph-email-83:before{content:"\ed07"}
8670
+ .brz-ed .nc-glyph-email-84:before{content:"\ed08"}
8671
+ .brz-ed .nc-glyph-email-85:before{content:"\ed09"}
8672
+ .brz-ed .nc-glyph-energy-drink-2:before{content:"\ed0a"}
8673
+ .brz-ed .nc-glyph-energy-drink:before{content:"\ed0b"}
8674
+ .brz-ed .nc-glyph-energy-supplement:before{content:"\ed0c"}
8675
+ .brz-ed .nc-glyph-energy:before{content:"\ed0d"}
8676
+ .brz-ed .nc-glyph-engine-start:before{content:"\ed0e"}
8677
+ .brz-ed .nc-glyph-engine:before{content:"\ed0f"}
8678
+ .brz-ed .nc-glyph-enlarge-45:before{content:"\ed10"}
8679
+ .brz-ed .nc-glyph-enlarge-46:before{content:"\ed11"}
8680
+ .brz-ed .nc-glyph-enlarge-57:before{content:"\ed12"}
8681
+ .brz-ed .nc-glyph-enlarge-58:before{content:"\ed13"}
8682
+ .brz-ed .nc-glyph-enlarge-59:before{content:"\ed14"}
8683
+ .brz-ed .nc-glyph-enlarge-circle:before{content:"\ed15"}
8684
+ .brz-ed .nc-glyph-enlarge-diagonal-43:before{content:"\ed16"}
8685
+ .brz-ed .nc-glyph-enlarge-diagonal-44:before{content:"\ed17"}
8686
+ .brz-ed .nc-glyph-enlarge-horizontal:before{content:"\ed18"}
8687
+ .brz-ed .nc-glyph-enlarge-vertical:before{content:"\ed19"}
8688
+ .brz-ed .nc-glyph-eraser-32:before{content:"\ed1a"}
8689
+ .brz-ed .nc-glyph-eraser-33:before{content:"\ed1b"}
8690
+ .brz-ed .nc-glyph-eraser-46:before{content:"\ed1c"}
8691
+ .brz-ed .nc-glyph-event-confirm:before{content:"\ed1d"}
8692
+ .brz-ed .nc-glyph-event-create:before{content:"\ed1e"}
8693
+ .brz-ed .nc-glyph-exchange:before{content:"\ed1f"}
8694
+ .brz-ed .nc-glyph-exclamation:before{content:"\ed20"}
8695
+ .brz-ed .nc-glyph-explore-2:before{content:"\ed21"}
8696
+ .brz-ed .nc-glyph-explore-user:before{content:"\ed22"}
8697
+ .brz-ed .nc-glyph-explore:before{content:"\ed23"}
8698
+ .brz-ed .nc-glyph-export:before{content:"\ed24"}
8699
+ .brz-ed .nc-glyph-eye-17:before{content:"\ed25"}
8700
+ .brz-ed .nc-glyph-eye-19:before{content:"\ed26"}
8701
+ .brz-ed .nc-glyph-eye-ban-18:before{content:"\ed27"}
8702
+ .brz-ed .nc-glyph-eye-ban-20:before{content:"\ed28"}
8703
+ .brz-ed .nc-glyph-factory:before{content:"\ed29"}
8704
+ .brz-ed .nc-glyph-fahrenheit:before{content:"\ed2a"}
8705
+ .brz-ed .nc-glyph-family:before{content:"\ed2b"}
8706
+ .brz-ed .nc-glyph-fat-add:before{content:"\ed2c"}
8707
+ .brz-ed .nc-glyph-fat-delete:before{content:"\ed2d"}
8708
+ .brz-ed .nc-glyph-fat-remove:before{content:"\ed2e"}
8709
+ .brz-ed .nc-glyph-fav-remove:before{content:"\ed2f"}
8710
+ .brz-ed .nc-glyph-favourite-28:before{content:"\ed30"}
8711
+ .brz-ed .nc-glyph-favourite-31:before{content:"\ed31"}
8712
+ .brz-ed .nc-glyph-favourite-add-29:before{content:"\ed32"}
8713
+ .brz-ed .nc-glyph-favourite-add-32:before{content:"\ed33"}
8714
+ .brz-ed .nc-glyph-favourite-remove-30:before{content:"\ed34"}
8715
+ .brz-ed .nc-glyph-favourite-remove-33:before{content:"\ed35"}
8716
+ .brz-ed .nc-glyph-fencing:before{content:"\ed36"}
8717
+ .brz-ed .nc-glyph-file-add:before{content:"\ed37"}
8718
+ .brz-ed .nc-glyph-file-delete:before{content:"\ed38"}
8719
+ .brz-ed .nc-glyph-file-download-87:before{content:"\ed39"}
8720
+ .brz-ed .nc-glyph-file-download-89:before{content:"\ed3a"}
8721
+ .brz-ed .nc-glyph-file-download-94:before{content:"\ed3b"}
8722
+ .brz-ed .nc-glyph-file-upload-86:before{content:"\ed3c"}
8723
+ .brz-ed .nc-glyph-file-upload-88:before{content:"\ed3d"}
8724
+ .brz-ed .nc-glyph-file-upload-93:before{content:"\ed3e"}
8725
+ .brz-ed .nc-glyph-filter-check:before{content:"\ed3f"}
8726
+ .brz-ed .nc-glyph-filter-organization:before{content:"\ed40"}
8727
+ .brz-ed .nc-glyph-filter-remove:before{content:"\ed41"}
8728
+ .brz-ed .nc-glyph-filter:before{content:"\ed42"}
8729
+ .brz-ed .nc-glyph-fire:before{content:"\ed43"}
8730
+ .brz-ed .nc-glyph-firewall:before{content:"\ed44"}
8731
+ .brz-ed .nc-glyph-fish:before{content:"\ed45"}
8732
+ .brz-ed .nc-glyph-fishbone:before{content:"\ed46"}
8733
+ .brz-ed .nc-glyph-fishing:before{content:"\ed47"}
8734
+ .brz-ed .nc-glyph-fist:before{content:"\ed48"}
8735
+ .brz-ed .nc-glyph-fit-horizontal:before{content:"\ed49"}
8736
+ .brz-ed .nc-glyph-fit-vertical:before{content:"\ed4a"}
8737
+ .brz-ed .nc-glyph-flag-complex:before{content:"\ed4b"}
8738
+ .brz-ed .nc-glyph-flag-diagonal-33:before{content:"\ed4c"}
8739
+ .brz-ed .nc-glyph-flag-diagonal-34:before{content:"\ed4d"}
8740
+ .brz-ed .nc-glyph-flag-finish:before{content:"\ed4e"}
8741
+ .brz-ed .nc-glyph-flag-points-31:before{content:"\ed4f"}
8742
+ .brz-ed .nc-glyph-flag-points-32:before{content:"\ed50"}
8743
+ .brz-ed .nc-glyph-flag-simple:before{content:"\ed51"}
8744
+ .brz-ed .nc-glyph-flag-triangle:before{content:"\ed52"}
8745
+ .brz-ed .nc-glyph-flag:before{content:"\ed53"}
8746
+ .brz-ed .nc-glyph-flame:before{content:"\ed54"}
8747
+ .brz-ed .nc-glyph-flash-21:before{content:"\ed55"}
8748
+ .brz-ed .nc-glyph-flash-24:before{content:"\ed56"}
8749
+ .brz-ed .nc-glyph-flash-29:before{content:"\ed57"}
8750
+ .brz-ed .nc-glyph-flash-auto-22:before{content:"\ed58"}
8751
+ .brz-ed .nc-glyph-flash-auto-25:before{content:"\ed59"}
8752
+ .brz-ed .nc-glyph-flash-off-23:before{content:"\ed5a"}
8753
+ .brz-ed .nc-glyph-flash-off-26:before{content:"\ed5b"}
8754
+ .brz-ed .nc-glyph-flask-2:before{content:"\ed5c"}
8755
+ .brz-ed .nc-glyph-flask:before{content:"\ed5d"}
8756
+ .brz-ed .nc-glyph-flick-down:before{content:"\ed5e"}
8757
+ .brz-ed .nc-glyph-flick-left:before{content:"\ed5f"}
8758
+ .brz-ed .nc-glyph-flick-right:before{content:"\ed60"}
8759
+ .brz-ed .nc-glyph-flick-up:before{content:"\ed61"}
8760
+ .brz-ed .nc-glyph-flip-horizontal:before{content:"\ed63"}
8761
+ .brz-ed .nc-glyph-flip-vertical:before{content:"\ed62"}
8762
+ .brz-ed .nc-glyph-flip:before{content:"\ed64"}
8763
+ .brz-ed .nc-glyph-flower-05:before{content:"\ed66"}
8764
+ .brz-ed .nc-glyph-flower-06:before{content:"\ed65"}
8765
+ .brz-ed .nc-glyph-flower-07:before{content:"\ed67"}
8766
+ .brz-ed .nc-glyph-focus-32:before{content:"\ed68"}
8767
+ .brz-ed .nc-glyph-focus-38:before{content:"\ed69"}
8768
+ .brz-ed .nc-glyph-focus-40:before{content:"\ed6a"}
8769
+ .brz-ed .nc-glyph-focus-circle:before{content:"\ed6b"}
8770
+ .brz-ed .nc-glyph-focus:before{content:"\ed6c"}
8771
+ .brz-ed .nc-glyph-fog:before{content:"\ed6d"}
8772
+ .brz-ed .nc-glyph-folder-13:before{content:"\ed6e"}
8773
+ .brz-ed .nc-glyph-folder-14:before{content:"\ed6f"}
8774
+ .brz-ed .nc-glyph-folder-15:before{content:"\ed70"}
8775
+ .brz-ed .nc-glyph-folder-16:before{content:"\ed73"}
8776
+ .brz-ed .nc-glyph-folder-17:before{content:"\ed71"}
8777
+ .brz-ed .nc-glyph-folder-18:before{content:"\ed72"}
8778
+ .brz-ed .nc-glyph-folder-19:before{content:"\ed74"}
8779
+ .brz-ed .nc-glyph-folder-add:before{content:"\ed75"}
8780
+ .brz-ed .nc-glyph-folder-audio:before{content:"\ed76"}
8781
+ .brz-ed .nc-glyph-folder-bookmark:before{content:"\ed77"}
8782
+ .brz-ed .nc-glyph-folder-chart-bar:before{content:"\ed78"}
8783
+ .brz-ed .nc-glyph-folder-chart-pie:before{content:"\ed79"}
8784
+ .brz-ed .nc-glyph-folder-check:before{content:"\ed7a"}
8785
+ .brz-ed .nc-glyph-folder-cloud:before{content:"\ed7b"}
8786
+ .brz-ed .nc-glyph-folder-dev:before{content:"\ed7c"}
8787
+ .brz-ed .nc-glyph-folder-download:before{content:"\ed7d"}
8788
+ .brz-ed .nc-glyph-folder-edit:before{content:"\ed7e"}
8789
+ .brz-ed .nc-glyph-folder-exclamation:before{content:"\ed7f"}
8790
+ .brz-ed .nc-glyph-folder-gallery:before{content:"\ed80"}
8791
+ .brz-ed .nc-glyph-folder-heart:before{content:"\ed81"}
8792
+ .brz-ed .nc-glyph-folder-image:before{content:"\ed82"}
8793
+ .brz-ed .nc-glyph-folder-info:before{content:"\ed83"}
8794
+ .brz-ed .nc-glyph-folder-link:before{content:"\ed84"}
8795
+ .brz-ed .nc-glyph-folder-locked:before{content:"\ed85"}
8796
+ .brz-ed .nc-glyph-folder-money:before{content:"\ed86"}
8797
+ .brz-ed .nc-glyph-folder-music:before{content:"\ed87"}
8798
+ .brz-ed .nc-glyph-folder-no-access:before{content:"\ed88"}
8799
+ .brz-ed .nc-glyph-folder-play:before{content:"\ed89"}
8800
+ .brz-ed .nc-glyph-folder-question:before{content:"\ed8a"}
8801
+ .brz-ed .nc-glyph-folder-refresh:before{content:"\ed8b"}
8802
+ .brz-ed .nc-glyph-folder-remove:before{content:"\ed8c"}
8803
+ .brz-ed .nc-glyph-folder-search:before{content:"\ed8d"}
8804
+ .brz-ed .nc-glyph-folder-settings-81:before{content:"\ed8e"}
8805
+ .brz-ed .nc-glyph-folder-settings-97:before{content:"\ed8f"}
8806
+ .brz-ed .nc-glyph-folder-shared:before{content:"\ed90"}
8807
+ .brz-ed .nc-glyph-folder-star:before{content:"\ed91"}
8808
+ .brz-ed .nc-glyph-folder-time:before{content:"\ed92"}
8809
+ .brz-ed .nc-glyph-folder-upload:before{content:"\ed93"}
8810
+ .brz-ed .nc-glyph-folder-user:before{content:"\ed94"}
8811
+ .brz-ed .nc-glyph-folder-vector:before{content:"\ed95"}
8812
+ .brz-ed .nc-glyph-food-dog:before{content:"\ed96"}
8813
+ .brz-ed .nc-glyph-food-scale:before{content:"\ed97"}
8814
+ .brz-ed .nc-glyph-food:before{content:"\ed98"}
8815
+ .brz-ed .nc-glyph-football-headguard:before{content:"\ed99"}
8816
+ .brz-ed .nc-glyph-forecast:before{content:"\ed9a"}
8817
+ .brz-ed .nc-glyph-forest:before{content:"\ed9b"}
8818
+ .brz-ed .nc-glyph-fork-round:before{content:"\ed9c"}
8819
+ .brz-ed .nc-glyph-fork:before{content:"\ed9d"}
8820
+ .brz-ed .nc-glyph-form:before{content:"\ed9e"}
8821
+ .brz-ed .nc-glyph-format-left:before{content:"\ed9f"}
8822
+ .brz-ed .nc-glyph-format-right:before{content:"\eda0"}
8823
+ .brz-ed .nc-glyph-forward:before{content:"\eda1"}
8824
+ .brz-ed .nc-glyph-frame-12:before{content:"\eda2"}
8825
+ .brz-ed .nc-glyph-frame-41:before{content:"\eda3"}
8826
+ .brz-ed .nc-glyph-frame:before{content:"\eda4"}
8827
+ .brz-ed .nc-glyph-frankenstein:before{content:"\eda5"}
8828
+ .brz-ed .nc-glyph-fridge:before{content:"\eda6"}
8829
+ .brz-ed .nc-glyph-fuel-2:before{content:"\eda7"}
8830
+ .brz-ed .nc-glyph-fuel-electric:before{content:"\eda8"}
8831
+ .brz-ed .nc-glyph-fuel:before{content:"\eda9"}
8832
+ .brz-ed .nc-glyph-full-screen:before{content:"\edaa"}
8833
+ .brz-ed .nc-glyph-fullscreen-70:before{content:"\edab"}
8834
+ .brz-ed .nc-glyph-fullscreen-71:before{content:"\edac"}
8835
+ .brz-ed .nc-glyph-fullscreen-76:before{content:"\edad"}
8836
+ .brz-ed .nc-glyph-fullscreen-77:before{content:"\edae"}
8837
+ .brz-ed .nc-glyph-fullscreen-double-74:before{content:"\edaf"}
8838
+ .brz-ed .nc-glyph-fullscreen-double-75:before{content:"\edb0"}
8839
+ .brz-ed .nc-glyph-fullscreen-split-72:before{content:"\edb1"}
8840
+ .brz-ed .nc-glyph-fullscreen-split-73:before{content:"\edb2"}
8841
+ .brz-ed .nc-glyph-fullsize:before{content:"\edb3"}
8842
+ .brz-ed .nc-glyph-funnel-39:before{content:"\edb4"}
8843
+ .brz-ed .nc-glyph-funnel-40:before{content:"\edb5"}
8844
+ .brz-ed .nc-glyph-funnel-41:before{content:"\edb6"}
8845
+ .brz-ed .nc-glyph-gallery:before{content:"\edb7"}
8846
+ .brz-ed .nc-glyph-gantt:before{content:"\edb8"}
8847
+ .brz-ed .nc-glyph-garlic:before{content:"\edb9"}
8848
+ .brz-ed .nc-glyph-ghost-2:before{content:"\edba"}
8849
+ .brz-ed .nc-glyph-ghost:before{content:"\edbb"}
8850
+ .brz-ed .nc-glyph-gift-2:before{content:"\edbc"}
8851
+ .brz-ed .nc-glyph-gift-exchange:before{content:"\edbd"}
8852
+ .brz-ed .nc-glyph-gift:before{content:"\edbe"}
8853
+ .brz-ed .nc-glyph-git-commit:before{content:"\edbf"}
8854
+ .brz-ed .nc-glyph-glass-water:before{content:"\edc0"}
8855
+ .brz-ed .nc-glyph-glass:before{content:"\edc1"}
8856
+ .brz-ed .nc-glyph-glasses-2:before{content:"\edc2"}
8857
+ .brz-ed .nc-glyph-glasses:before{content:"\edc3"}
8858
+ .brz-ed .nc-glyph-globe-2:before{content:"\edc4"}
8859
+ .brz-ed .nc-glyph-globe:before{content:"\edc5"}
8860
+ .brz-ed .nc-glyph-glove:before{content:"\edc6"}
8861
+ .brz-ed .nc-glyph-gloves:before{content:"\edc7"}
8862
+ .brz-ed .nc-glyph-goal-64:before{content:"\edc8"}
8863
+ .brz-ed .nc-glyph-goal-65:before{content:"\edc9"}
8864
+ .brz-ed .nc-glyph-gold:before{content:"\edca"}
8865
+ .brz-ed .nc-glyph-golf:before{content:"\edcb"}
8866
+ .brz-ed .nc-glyph-gps:before{content:"\edcc"}
8867
+ .brz-ed .nc-glyph-grab:before{content:"\edcd"}
8868
+ .brz-ed .nc-glyph-gradient:before{content:"\edce"}
8869
+ .brz-ed .nc-glyph-grammar-check:before{content:"\edcf"}
8870
+ .brz-ed .nc-glyph-grape:before{content:"\edd0"}
8871
+ .brz-ed .nc-glyph-grave:before{content:"\edd1"}
8872
+ .brz-ed .nc-glyph-grid-45:before{content:"\edd2"}
8873
+ .brz-ed .nc-glyph-grid-46:before{content:"\edd3"}
8874
+ .brz-ed .nc-glyph-grid-48:before{content:"\edd4"}
8875
+ .brz-ed .nc-glyph-grid-49:before{content:"\edd5"}
8876
+ .brz-ed .nc-glyph-grid-50:before{content:"\edd6"}
8877
+ .brz-ed .nc-glyph-grid-square:before{content:"\edd7"}
8878
+ .brz-ed .nc-glyph-grid-system:before{content:"\edd8"}
8879
+ .brz-ed .nc-glyph-grid:before{content:"\edd9"}
8880
+ .brz-ed .nc-glyph-group:before{content:"\edda"}
8881
+ .brz-ed .nc-glyph-guitar:before{content:"\eddb"}
8882
+ .brz-ed .nc-glyph-hammer:before{content:"\eddc"}
8883
+ .brz-ed .nc-glyph-hand-card:before{content:"\eddd"}
8884
+ .brz-ed .nc-glyph-handout:before{content:"\edde"}
8885
+ .brz-ed .nc-glyph-handshake:before{content:"\eddf"}
8886
+ .brz-ed .nc-glyph-hanger-clothes:before{content:"\ede0"}
8887
+ .brz-ed .nc-glyph-hanger:before{content:"\ede1"}
8888
+ .brz-ed .nc-glyph-hannibal:before{content:"\ede2"}
8889
+ .brz-ed .nc-glyph-happy-sun:before{content:"\ede3"}
8890
+ .brz-ed .nc-glyph-hat-2:before{content:"\ede4"}
8891
+ .brz-ed .nc-glyph-hat-3:before{content:"\ede5"}
8892
+ .brz-ed .nc-glyph-hat-top:before{content:"\ede6"}
8893
+ .brz-ed .nc-glyph-hat:before{content:"\ede7"}
8894
+ .brz-ed .nc-glyph-hazelnut:before{content:"\ede8"}
8895
+ .brz-ed .nc-glyph-hdmi:before{content:"\ede9"}
8896
+ .brz-ed .nc-glyph-headphone:before{content:"\edea"}
8897
+ .brz-ed .nc-glyph-headphones-2:before{content:"\edeb"}
8898
+ .brz-ed .nc-glyph-headphones-mic:before{content:"\edec"}
8899
+ .brz-ed .nc-glyph-headphones:before{content:"\eded"}
8900
+ .brz-ed .nc-glyph-headset:before{content:"\edee"}
8901
+ .brz-ed .nc-glyph-heart-2:before{content:"\edef"}
8902
+ .brz-ed .nc-glyph-heart-add:before{content:"\edf0"}
8903
+ .brz-ed .nc-glyph-heart-remove:before{content:"\edf1"}
8904
+ .brz-ed .nc-glyph-heart:before{content:"\edf2"}
8905
+ .brz-ed .nc-glyph-heartbeat:before{content:"\edf3"}
8906
+ .brz-ed .nc-glyph-heater:before{content:"\edf4"}
8907
+ .brz-ed .nc-glyph-height:before{content:"\edf5"}
8908
+ .brz-ed .nc-glyph-helicopter:before{content:"\edf6"}
8909
+ .brz-ed .nc-glyph-helmet-2:before{content:"\edf7"}
8910
+ .brz-ed .nc-glyph-helmet:before{content:"\edf8"}
8911
+ .brz-ed .nc-glyph-hierarchy-53:before{content:"\edf9"}
8912
+ .brz-ed .nc-glyph-hierarchy-54:before{content:"\edfa"}
8913
+ .brz-ed .nc-glyph-hierarchy-55:before{content:"\edfb"}
8914
+ .brz-ed .nc-glyph-hierarchy-56:before{content:"\edfc"}
8915
+ .brz-ed .nc-glyph-hit-down:before{content:"\edfd"}
8916
+ .brz-ed .nc-glyph-hit-left:before{content:"\edfe"}
8917
+ .brz-ed .nc-glyph-hit-right:before{content:"\edff"}
8918
+ .brz-ed .nc-glyph-hit-up:before{content:"\ee00"}
8919
+ .brz-ed .nc-glyph-hob:before{content:"\ee01"}
8920
+ .brz-ed .nc-glyph-hockey:before{content:"\ee02"}
8921
+ .brz-ed .nc-glyph-hold:before{content:"\ee03"}
8922
+ .brz-ed .nc-glyph-home-2:before{content:"\ee04"}
8923
+ .brz-ed .nc-glyph-home-51:before{content:"\ee05"}
8924
+ .brz-ed .nc-glyph-home-52:before{content:"\ee06"}
8925
+ .brz-ed .nc-glyph-home-minimal:before{content:"\ee07"}
8926
+ .brz-ed .nc-glyph-home-search:before{content:"\ee08"}
8927
+ .brz-ed .nc-glyph-home-simple:before{content:"\ee09"}
8928
+ .brz-ed .nc-glyph-home:before{content:"\ee0a"}
8929
+ .brz-ed .nc-glyph-honey:before{content:"\ee0b"}
8930
+ .brz-ed .nc-glyph-hoodie:before{content:"\ee0c"}
8931
+ .brz-ed .nc-glyph-hospital-32:before{content:"\ee0d"}
8932
+ .brz-ed .nc-glyph-hospital-33:before{content:"\ee0e"}
8933
+ .brz-ed .nc-glyph-hospital-34:before{content:"\ee0f"}
8934
+ .brz-ed .nc-glyph-hot-dog:before{content:"\ee10"}
8935
+ .brz-ed .nc-glyph-hotel-bell:before{content:"\ee11"}
8936
+ .brz-ed .nc-glyph-hotel-symbol:before{content:"\ee12"}
8937
+ .brz-ed .nc-glyph-hotel:before{content:"\ee13"}
8938
+ .brz-ed .nc-glyph-hourglass:before{content:"\ee14"}
8939
+ .brz-ed .nc-glyph-html5:before{content:"\ee15"}
8940
+ .brz-ed .nc-glyph-humidity-26:before{content:"\ee16"}
8941
+ .brz-ed .nc-glyph-humidity-52:before{content:"\ee17"}
8942
+ .brz-ed .nc-glyph-hurricane-44:before{content:"\ee18"}
8943
+ .brz-ed .nc-glyph-hurricane-45:before{content:"\ee19"}
8944
+ .brz-ed .nc-glyph-hut:before{content:"\ee1a"}
8945
+ .brz-ed .nc-glyph-hybrid:before{content:"\ee1b"}
8946
+ .brz-ed .nc-glyph-ice-cream-22:before{content:"\ee1c"}
8947
+ .brz-ed .nc-glyph-ice-cream-72:before{content:"\ee1d"}
8948
+ .brz-ed .nc-glyph-ice-cream:before{content:"\ee1e"}
8949
+ .brz-ed .nc-glyph-igloo:before{content:"\ee1f"}
8950
+ .brz-ed .nc-glyph-image-01:before{content:"\ee20"}
8951
+ .brz-ed .nc-glyph-image-02:before{content:"\ee21"}
8952
+ .brz-ed .nc-glyph-image-05:before{content:"\ee22"}
8953
+ .brz-ed .nc-glyph-image-2:before{content:"\ee23"}
8954
+ .brz-ed .nc-glyph-image-3:before{content:"\ee24"}
8955
+ .brz-ed .nc-glyph-image-add:before{content:"\ee25"}
8956
+ .brz-ed .nc-glyph-image-delete:before{content:"\ee26"}
8957
+ .brz-ed .nc-glyph-image-location:before{content:"\ee27"}
8958
+ .brz-ed .nc-glyph-image:before{content:"\ee28"}
8959
+ .brz-ed .nc-glyph-infinite:before{content:"\ee29"}
8960
+ .brz-ed .nc-glyph-info:before{content:"\ee2a"}
8961
+ .brz-ed .nc-glyph-input-12:before{content:"\ee2b"}
8962
+ .brz-ed .nc-glyph-input-21:before{content:"\ee2c"}
8963
+ .brz-ed .nc-glyph-intestine:before{content:"\ee2d"}
8964
+ .brz-ed .nc-glyph-invert:before{content:"\ee2e"}
8965
+ .brz-ed .nc-glyph-iron-2:before{content:"\ee2f"}
8966
+ .brz-ed .nc-glyph-iron-dont:before{content:"\ee30"}
8967
+ .brz-ed .nc-glyph-iron:before{content:"\ee31"}
8968
+ .brz-ed .nc-glyph-istanbul:before{content:"\ee32"}
8969
+ .brz-ed .nc-glyph-italic:before{content:"\ee33"}
8970
+ .brz-ed .nc-glyph-jam:before{content:"\ee34"}
8971
+ .brz-ed .nc-glyph-jeans-41:before{content:"\ee35"}
8972
+ .brz-ed .nc-glyph-jeans-43:before{content:"\ee36"}
8973
+ .brz-ed .nc-glyph-jeans-pocket:before{content:"\ee37"}
8974
+ .brz-ed .nc-glyph-jelly:before{content:"\ee38"}
8975
+ .brz-ed .nc-glyph-jellyfish:before{content:"\ee39"}
8976
+ .brz-ed .nc-glyph-journey-04:before{content:"\ee3a"}
8977
+ .brz-ed .nc-glyph-journey-05:before{content:"\ee3b"}
8978
+ .brz-ed .nc-glyph-journey-06:before{content:"\ee3c"}
8979
+ .brz-ed .nc-glyph-journey-07:before{content:"\ee3d"}
8980
+ .brz-ed .nc-glyph-journey-08:before{content:"\ee3e"}
8981
+ .brz-ed .nc-glyph-juice:before{content:"\ee3f"}
8982
+ .brz-ed .nc-glyph-kettle:before{content:"\ee40"}
8983
+ .brz-ed .nc-glyph-kettlebell:before{content:"\ee41"}
8984
+ .brz-ed .nc-glyph-key-25:before{content:"\ee42"}
8985
+ .brz-ed .nc-glyph-key-26:before{content:"\ee43"}
8986
+ .brz-ed .nc-glyph-keyboard-hide:before{content:"\ee44"}
8987
+ .brz-ed .nc-glyph-keyboard-mouse:before{content:"\ee45"}
8988
+ .brz-ed .nc-glyph-keyboard-wifi:before{content:"\ee46"}
8989
+ .brz-ed .nc-glyph-keyboard-wireless:before{content:"\ee47"}
8990
+ .brz-ed .nc-glyph-keyboard:before{content:"\ee48"}
8991
+ .brz-ed .nc-glyph-kid-2:before{content:"\ee49"}
8992
+ .brz-ed .nc-glyph-kid:before{content:"\ee4a"}
8993
+ .brz-ed .nc-glyph-kiss:before{content:"\ee4b"}
8994
+ .brz-ed .nc-glyph-kitchen-fan:before{content:"\ee4c"}
8995
+ .brz-ed .nc-glyph-kitchen:before{content:"\ee4d"}
8996
+ .brz-ed .nc-glyph-kiwi:before{content:"\ee4e"}
8997
+ .brz-ed .nc-glyph-knife:before{content:"\ee4f"}
8998
+ .brz-ed .nc-glyph-knob:before{content:"\ee50"}
8999
+ .brz-ed .nc-glyph-l-add:before{content:"\ee51"}
9000
+ .brz-ed .nc-glyph-l-check:before{content:"\ee52"}
9001
+ .brz-ed .nc-glyph-l-circle:before{content:"\ee53"}
9002
+ .brz-ed .nc-glyph-l-circles:before{content:"\ee54"}
9003
+ .brz-ed .nc-glyph-l-location:before{content:"\ee55"}
9004
+ .brz-ed .nc-glyph-l-remove:before{content:"\ee56"}
9005
+ .brz-ed .nc-glyph-l-search:before{content:"\ee57"}
9006
+ .brz-ed .nc-glyph-l-security:before{content:"\ee58"}
9007
+ .brz-ed .nc-glyph-l-settings:before{content:"\ee59"}
9008
+ .brz-ed .nc-glyph-l-sync:before{content:"\ee5a"}
9009
+ .brz-ed .nc-glyph-l-system-update:before{content:"\ee5b"}
9010
+ .brz-ed .nc-glyph-lab:before{content:"\ee5c"}
9011
+ .brz-ed .nc-glyph-lamp-2:before{content:"\ee5d"}
9012
+ .brz-ed .nc-glyph-lamp-3:before{content:"\ee5e"}
9013
+ .brz-ed .nc-glyph-lamp-floor:before{content:"\ee5f"}
9014
+ .brz-ed .nc-glyph-lamp:before{content:"\ee60"}
9015
+ .brz-ed .nc-glyph-language:before{content:"\ee61"}
9016
+ .brz-ed .nc-glyph-laptop-1:before{content:"\ee62"}
9017
+ .brz-ed .nc-glyph-laptop-2:before{content:"\ee63"}
9018
+ .brz-ed .nc-glyph-laptop-71:before{content:"\ee64"}
9019
+ .brz-ed .nc-glyph-laptop-72:before{content:"\ee65"}
9020
+ .brz-ed .nc-glyph-laptop:before{content:"\ee66"}
9021
+ .brz-ed .nc-glyph-laugh-17:before{content:"\ee67"}
9022
+ .brz-ed .nc-glyph-laugh-35:before{content:"\ee68"}
9023
+ .brz-ed .nc-glyph-launch-11:before{content:"\ee69"}
9024
+ .brz-ed .nc-glyph-launch-47:before{content:"\ee6a"}
9025
+ .brz-ed .nc-glyph-law:before{content:"\ee6b"}
9026
+ .brz-ed .nc-glyph-layers-2:before{content:"\ee6c"}
9027
+ .brz-ed .nc-glyph-layers-3:before{content:"\ee6d"}
9028
+ .brz-ed .nc-glyph-layers:before{content:"\ee6e"}
9029
+ .brz-ed .nc-glyph-layout-11:before{content:"\ee6f"}
9030
+ .brz-ed .nc-glyph-layout-25:before{content:"\ee70"}
9031
+ .brz-ed .nc-glyph-leaf-36:before{content:"\ee71"}
9032
+ .brz-ed .nc-glyph-leaf-38:before{content:"\ee72"}
9033
+ .brz-ed .nc-glyph-leaf-80:before{content:"\ee73"}
9034
+ .brz-ed .nc-glyph-leaf-81:before{content:"\ee74"}
9035
+ .brz-ed .nc-glyph-leaf-edit:before{content:"\ee75"}
9036
+ .brz-ed .nc-glyph-lemon-slice:before{content:"\ee76"}
9037
+ .brz-ed .nc-glyph-lemon:before{content:"\ee77"}
9038
+ .brz-ed .nc-glyph-lens-31:before{content:"\ee78"}
9039
+ .brz-ed .nc-glyph-lens-56:before{content:"\ee79"}
9040
+ .brz-ed .nc-glyph-library:before{content:"\ee7a"}
9041
+ .brz-ed .nc-glyph-light-2:before{content:"\ee7b"}
9042
+ .brz-ed .nc-glyph-light-3:before{content:"\ee7c"}
9043
+ .brz-ed .nc-glyph-light-traffic:before{content:"\ee7d"}
9044
+ .brz-ed .nc-glyph-light:before{content:"\ee7e"}
9045
+ .brz-ed .nc-glyph-lighter:before{content:"\ee7f"}
9046
+ .brz-ed .nc-glyph-lighthouse:before{content:"\ee80"}
9047
+ .brz-ed .nc-glyph-like-2:before{content:"\ee81"}
9048
+ .brz-ed .nc-glyph-like-no:before{content:"\ee82"}
9049
+ .brz-ed .nc-glyph-like:before{content:"\ee83"}
9050
+ .brz-ed .nc-glyph-line-height:before{content:"\ee84"}
9051
+ .brz-ed .nc-glyph-lines:before{content:"\ee85"}
9052
+ .brz-ed .nc-glyph-link-2:before{content:"\ee86"}
9053
+ .brz-ed .nc-glyph-link-66:before{content:"\ee87"}
9054
+ .brz-ed .nc-glyph-link-67:before{content:"\ee88"}
9055
+ .brz-ed .nc-glyph-link-68:before{content:"\ee89"}
9056
+ .brz-ed .nc-glyph-link-69:before{content:"\ee8a"}
9057
+ .brz-ed .nc-glyph-link-71:before{content:"\ee8b"}
9058
+ .brz-ed .nc-glyph-link-72:before{content:"\ee8c"}
9059
+ .brz-ed .nc-glyph-link-broken-70:before{content:"\ee8d"}
9060
+ .brz-ed .nc-glyph-link-broken-73:before{content:"\ee8e"}
9061
+ .brz-ed .nc-glyph-link:before{content:"\ee8f"}
9062
+ .brz-ed .nc-glyph-list-bullet:before{content:"\ee90"}
9063
+ .brz-ed .nc-glyph-list-numbers:before{content:"\ee91"}
9064
+ .brz-ed .nc-glyph-list:before{content:"\ee92"}
9065
+ .brz-ed .nc-glyph-lobster:before{content:"\ee93"}
9066
+ .brz-ed .nc-glyph-lock-circle-open:before{content:"\ee94"}
9067
+ .brz-ed .nc-glyph-lock-circle:before{content:"\ee95"}
9068
+ .brz-ed .nc-glyph-lock-landscape:before{content:"\ee96"}
9069
+ .brz-ed .nc-glyph-lock-open:before{content:"\ee97"}
9070
+ .brz-ed .nc-glyph-lock-portrait:before{content:"\ee98"}
9071
+ .brz-ed .nc-glyph-lock:before{content:"\ee99"}
9072
+ .brz-ed .nc-glyph-locked:before{content:"\ee9a"}
9073
+ .brz-ed .nc-glyph-log-in:before{content:"\ee9b"}
9074
+ .brz-ed .nc-glyph-log-out-2:before{content:"\ee9c"}
9075
+ .brz-ed .nc-glyph-log-out:before{content:"\ee9d"}
9076
+ .brz-ed .nc-glyph-logo-500px:before{content:"\ee9e"}
9077
+ .brz-ed .nc-glyph-logo-angellist:before{content:"\ee9f"}
9078
+ .brz-ed .nc-glyph-logo-behance:before{content:"\eea0"}
9079
+ .brz-ed .nc-glyph-logo-blogger:before{content:"\eea1"}
9080
+ .brz-ed .nc-glyph-logo-buffer:before{content:"\eea2"}
9081
+ .brz-ed .nc-glyph-logo-buysellads:before{content:"\eea3"}
9082
+ .brz-ed .nc-glyph-logo-codepen:before{content:"\eea4"}
9083
+ .brz-ed .nc-glyph-logo-creative-market:before{content:"\eea5"}
9084
+ .brz-ed .nc-glyph-logo-crunchbase:before{content:"\eea6"}
9085
+ .brz-ed .nc-glyph-logo-deviantart:before{content:"\eea7"}
9086
+ .brz-ed .nc-glyph-logo-dribbble:before{content:"\eea8"}
9087
+ .brz-ed .nc-glyph-logo-dropbox:before{content:"\eea9"}
9088
+ .brz-ed .nc-glyph-logo-envato:before{content:"\eeaa"}
9089
+ .brz-ed .nc-glyph-logo-evernote:before{content:"\eeab"}
9090
+ .brz-ed .nc-glyph-logo-facebook:before{content:"\eeac"}
9091
+ .brz-ed .nc-glyph-logo-fb-simple:before{content:"\eead"}
9092
+ .brz-ed .nc-glyph-logo-feedly:before{content:"\eeae"}
9093
+ .brz-ed .nc-glyph-logo-flickr:before{content:"\eeaf"}
9094
+ .brz-ed .nc-glyph-logo-github:before{content:"\eeb0"}
9095
+ .brz-ed .nc-glyph-logo-google-plus:before{content:"\eeb1"}
9096
+ .brz-ed .nc-glyph-logo-instagram:before{content:"\eeb2"}
9097
+ .brz-ed .nc-glyph-logo-lastfm:before{content:"\eeb3"}
9098
+ .brz-ed .nc-glyph-logo-linkedin:before{content:"\eeb4"}
9099
+ .brz-ed .nc-glyph-logo-medium:before{content:"\eeb5"}
9100
+ .brz-ed .nc-glyph-logo-meetup:before{content:"\eeb6"}
9101
+ .brz-ed .nc-glyph-logo-messenger:before{content:"\eeb7"}
9102
+ .brz-ed .nc-glyph-logo-myspace:before{content:"\eeb8"}
9103
+ .brz-ed .nc-glyph-logo-paypal:before{content:"\eeb9"}
9104
+ .brz-ed .nc-glyph-logo-pinterest:before{content:"\eeba"}
9105
+ .brz-ed .nc-glyph-logo-product-hunt:before{content:"\eebb"}
9106
+ .brz-ed .nc-glyph-logo-qq:before{content:"\eebc"}
9107
+ .brz-ed .nc-glyph-logo-reddit:before{content:"\eebd"}
9108
+ .brz-ed .nc-glyph-logo-rss:before{content:"\eebe"}
9109
+ .brz-ed .nc-glyph-logo-shopify:before{content:"\eebf"}
9110
+ .brz-ed .nc-glyph-logo-skype:before{content:"\eec0"}
9111
+ .brz-ed .nc-glyph-logo-slack:before{content:"\eec1"}
9112
+ .brz-ed .nc-glyph-logo-soundcloud:before{content:"\eec2"}
9113
+ .brz-ed .nc-glyph-logo-spotify:before{content:"\eec3"}
9114
+ .brz-ed .nc-glyph-logo-squarespace:before{content:"\eec4"}
9115
+ .brz-ed .nc-glyph-logo-trello:before{content:"\eec5"}
9116
+ .brz-ed .nc-glyph-logo-tumblr:before{content:"\eec6"}
9117
+ .brz-ed .nc-glyph-logo-twitter:before{content:"\eec7"}
9118
+ .brz-ed .nc-glyph-logo-vimeo:before{content:"\eec8"}
9119
+ .brz-ed .nc-glyph-logo-vine:before{content:"\eec9"}
9120
+ .brz-ed .nc-glyph-logo-vk:before{content:"\eeca"}
9121
+ .brz-ed .nc-glyph-logo-wechat:before{content:"\eecb"}
9122
+ .brz-ed .nc-glyph-logo-weibo:before{content:"\eecc"}
9123
+ .brz-ed .nc-glyph-logo-whatsapp:before{content:"\eecd"}
9124
+ .brz-ed .nc-glyph-logo-wikipedia:before{content:"\eece"}
9125
+ .brz-ed .nc-glyph-logo-wordpress:before{content:"\eecf"}
9126
+ .brz-ed .nc-glyph-logo-yelp:before{content:"\eed0"}
9127
+ .brz-ed .nc-glyph-logo-youtube:before{content:"\eed1"}
9128
+ .brz-ed .nc-glyph-logout:before{content:"\eed2"}
9129
+ .brz-ed .nc-glyph-lollipop:before{content:"\eed3"}
9130
+ .brz-ed .nc-glyph-london:before{content:"\eed4"}
9131
+ .brz-ed .nc-glyph-long-sleeve:before{content:"\eed5"}
9132
+ .brz-ed .nc-glyph-loop-30:before{content:"\eed6"}
9133
+ .brz-ed .nc-glyph-loop-34:before{content:"\eed7"}
9134
+ .brz-ed .nc-glyph-loop-82:before{content:"\eed8"}
9135
+ .brz-ed .nc-glyph-loop-83:before{content:"\eed9"}
9136
+ .brz-ed .nc-glyph-loop:before{content:"\eeda"}
9137
+ .brz-ed .nc-glyph-luggage:before{content:"\eedb"}
9138
+ .brz-ed .nc-glyph-lungs:before{content:"\eedc"}
9139
+ .brz-ed .nc-glyph-m-add:before{content:"\eedd"}
9140
+ .brz-ed .nc-glyph-m-check:before{content:"\eede"}
9141
+ .brz-ed .nc-glyph-m-delete:before{content:"\eedf"}
9142
+ .brz-ed .nc-glyph-m-edit:before{content:"\eee0"}
9143
+ .brz-ed .nc-glyph-m-heart:before{content:"\eee1"}
9144
+ .brz-ed .nc-glyph-m-location:before{content:"\eee2"}
9145
+ .brz-ed .nc-glyph-m-remove:before{content:"\eee3"}
9146
+ .brz-ed .nc-glyph-m-search:before{content:"\eee4"}
9147
+ .brz-ed .nc-glyph-m-security:before{content:"\eee5"}
9148
+ .brz-ed .nc-glyph-m-settings:before{content:"\eee6"}
9149
+ .brz-ed .nc-glyph-m-share:before{content:"\eee7"}
9150
+ .brz-ed .nc-glyph-m-star:before{content:"\eee8"}
9151
+ .brz-ed .nc-glyph-m-sync:before{content:"\eee9"}
9152
+ .brz-ed .nc-glyph-m-time:before{content:"\eeea"}
9153
+ .brz-ed .nc-glyph-m-update:before{content:"\eeeb"}
9154
+ .brz-ed .nc-glyph-macro:before{content:"\eeec"}
9155
+ .brz-ed .nc-glyph-mad-12:before{content:"\eeed"}
9156
+ .brz-ed .nc-glyph-mad-58:before{content:"\eeee"}
9157
+ .brz-ed .nc-glyph-magnet:before{content:"\eeef"}
9158
+ .brz-ed .nc-glyph-makeup:before{content:"\eef0"}
9159
+ .brz-ed .nc-glyph-malicious:before{content:"\eef1"}
9160
+ .brz-ed .nc-glyph-man-20:before{content:"\eef2"}
9161
+ .brz-ed .nc-glyph-man-23:before{content:"\eef3"}
9162
+ .brz-ed .nc-glyph-man-down:before{content:"\eef4"}
9163
+ .brz-ed .nc-glyph-man-glasses:before{content:"\eef5"}
9164
+ .brz-ed .nc-glyph-man-up:before{content:"\eef6"}
9165
+ .brz-ed .nc-glyph-man:before{content:"\eef7"}
9166
+ .brz-ed .nc-glyph-manga-62:before{content:"\eef8"}
9167
+ .brz-ed .nc-glyph-manga-63:before{content:"\eef9"}
9168
+ .brz-ed .nc-glyph-map-big:before{content:"\eefa"}
9169
+ .brz-ed .nc-glyph-map-compass:before{content:"\eefb"}
9170
+ .brz-ed .nc-glyph-map-gps:before{content:"\eefc"}
9171
+ .brz-ed .nc-glyph-map-marker:before{content:"\eefd"}
9172
+ .brz-ed .nc-glyph-map-pin:before{content:"\eefe"}
9173
+ .brz-ed .nc-glyph-map:before{content:"\eeff"}
9174
+ .brz-ed .nc-glyph-margin-left:before{content:"\ef00"}
9175
+ .brz-ed .nc-glyph-margin-right:before{content:"\ef01"}
9176
+ .brz-ed .nc-glyph-marker-2:before{content:"\ef02"}
9177
+ .brz-ed .nc-glyph-marker-3:before{content:"\ef03"}
9178
+ .brz-ed .nc-glyph-marker:before{content:"\ef04"}
9179
+ .brz-ed .nc-glyph-market-music:before{content:"\ef05"}
9180
+ .brz-ed .nc-glyph-market-play:before{content:"\ef06"}
9181
+ .brz-ed .nc-glyph-mask-oval:before{content:"\ef07"}
9182
+ .brz-ed .nc-glyph-mask-rect:before{content:"\ef08"}
9183
+ .brz-ed .nc-glyph-matches:before{content:"\ef09"}
9184
+ .brz-ed .nc-glyph-math:before{content:"\ef0a"}
9185
+ .brz-ed .nc-glyph-measure-02:before{content:"\ef0b"}
9186
+ .brz-ed .nc-glyph-measure-17:before{content:"\ef0c"}
9187
+ .brz-ed .nc-glyph-measure-big:before{content:"\ef0d"}
9188
+ .brz-ed .nc-glyph-measuring-cup:before{content:"\ef0e"}
9189
+ .brz-ed .nc-glyph-meat-spit:before{content:"\ef0f"}
9190
+ .brz-ed .nc-glyph-meeting:before{content:"\ef10"}
9191
+ .brz-ed .nc-glyph-menu-34:before{content:"\ef11"}
9192
+ .brz-ed .nc-glyph-menu-35:before{content:"\ef12"}
9193
+ .brz-ed .nc-glyph-menu-bold:before{content:"\ef13"}
9194
+ .brz-ed .nc-glyph-menu-dots:before{content:"\ef14"}
9195
+ .brz-ed .nc-glyph-menu-left:before{content:"\ef15"}
9196
+ .brz-ed .nc-glyph-menu-right:before{content:"\ef16"}
9197
+ .brz-ed .nc-glyph-menu-square:before{content:"\ef17"}
9198
+ .brz-ed .nc-glyph-menu:before{content:"\ef18"}
9199
+ .brz-ed .nc-glyph-merge-2:before{content:"\ef19"}
9200
+ .brz-ed .nc-glyph-merge-round:before{content:"\ef1a"}
9201
+ .brz-ed .nc-glyph-merge:before{content:"\ef1b"}
9202
+ .brz-ed .nc-glyph-message:before{content:"\ef1c"}
9203
+ .brz-ed .nc-glyph-metrics:before{content:"\ef1d"}
9204
+ .brz-ed .nc-glyph-mic-2:before{content:"\ef1e"}
9205
+ .brz-ed .nc-glyph-mic:before{content:"\ef1f"}
9206
+ .brz-ed .nc-glyph-mickey-mouse:before{content:"\ef20"}
9207
+ .brz-ed .nc-glyph-microscope:before{content:"\ef21"}
9208
+ .brz-ed .nc-glyph-microsoft:before{content:"\ef22"}
9209
+ .brz-ed .nc-glyph-microwave:before{content:"\ef23"}
9210
+ .brz-ed .nc-glyph-milk:before{content:"\ef24"}
9211
+ .brz-ed .nc-glyph-minimal-down:before{content:"\ef25"}
9212
+ .brz-ed .nc-glyph-minimal-left:before{content:"\ef26"}
9213
+ .brz-ed .nc-glyph-minimal-right:before{content:"\ef27"}
9214
+ .brz-ed .nc-glyph-minimal-up:before{content:"\ef28"}
9215
+ .brz-ed .nc-glyph-mirror-2:before{content:"\ef29"}
9216
+ .brz-ed .nc-glyph-mirror:before{content:"\ef2a"}
9217
+ .brz-ed .nc-glyph-mistletoe:before{content:"\ef2b"}
9218
+ .brz-ed .nc-glyph-mixer:before{content:"\ef2c"}
9219
+ .brz-ed .nc-glyph-mobile-button:before{content:"\ef2d"}
9220
+ .brz-ed .nc-glyph-mobile-camera:before{content:"\ef2e"}
9221
+ .brz-ed .nc-glyph-mobile-card:before{content:"\ef2f"}
9222
+ .brz-ed .nc-glyph-mobile-contact:before{content:"\ef30"}
9223
+ .brz-ed .nc-glyph-mobile-design:before{content:"\ef31"}
9224
+ .brz-ed .nc-glyph-mobile-dev:before{content:"\ef32"}
9225
+ .brz-ed .nc-glyph-mobile-landscape:before{content:"\ef33"}
9226
+ .brz-ed .nc-glyph-mobile-recharger-08:before{content:"\ef34"}
9227
+ .brz-ed .nc-glyph-mobile-recharger-09:before{content:"\ef35"}
9228
+ .brz-ed .nc-glyph-mobile-toolbar:before{content:"\ef36"}
9229
+ .brz-ed .nc-glyph-mobile:before{content:"\ef37"}
9230
+ .brz-ed .nc-glyph-moka:before{content:"\ef38"}
9231
+ .brz-ed .nc-glyph-molecule-39:before{content:"\ef39"}
9232
+ .brz-ed .nc-glyph-molecule-40:before{content:"\ef3a"}
9233
+ .brz-ed .nc-glyph-molecule:before{content:"\ef3b"}
9234
+ .brz-ed .nc-glyph-money-11:before{content:"\ef3c"}
9235
+ .brz-ed .nc-glyph-money-12:before{content:"\ef3d"}
9236
+ .brz-ed .nc-glyph-money-13:before{content:"\ef3e"}
9237
+ .brz-ed .nc-glyph-money-bag:before{content:"\ef3f"}
9238
+ .brz-ed .nc-glyph-money-coins:before{content:"\ef40"}
9239
+ .brz-ed .nc-glyph-money-growth:before{content:"\ef41"}
9240
+ .brz-ed .nc-glyph-money-time:before{content:"\ef42"}
9241
+ .brz-ed .nc-glyph-money:before{content:"\ef43"}
9242
+ .brz-ed .nc-glyph-monster:before{content:"\ef44"}
9243
+ .brz-ed .nc-glyph-moon-cloud-drop:before{content:"\ef45"}
9244
+ .brz-ed .nc-glyph-moon-cloud-fog:before{content:"\ef46"}
9245
+ .brz-ed .nc-glyph-moon-cloud-hail:before{content:"\ef47"}
9246
+ .brz-ed .nc-glyph-moon-cloud-light:before{content:"\ef48"}
9247
+ .brz-ed .nc-glyph-moon-cloud-rain:before{content:"\ef49"}
9248
+ .brz-ed .nc-glyph-moon-cloud-snow-61:before{content:"\ef4a"}
9249
+ .brz-ed .nc-glyph-moon-cloud-snow-62:before{content:"\ef4b"}
9250
+ .brz-ed .nc-glyph-moon-fog:before{content:"\ef4c"}
9251
+ .brz-ed .nc-glyph-moon-full:before{content:"\ef4d"}
9252
+ .brz-ed .nc-glyph-moon-stars:before{content:"\ef4e"}
9253
+ .brz-ed .nc-glyph-moon:before{content:"\ef4f"}
9254
+ .brz-ed .nc-glyph-mosque:before{content:"\ef50"}
9255
+ .brz-ed .nc-glyph-moto:before{content:"\ef51"}
9256
+ .brz-ed .nc-glyph-mountain:before{content:"\ef52"}
9257
+ .brz-ed .nc-glyph-mouse-08:before{content:"\ef53"}
9258
+ .brz-ed .nc-glyph-mouse-09:before{content:"\ef54"}
9259
+ .brz-ed .nc-glyph-mouse-10:before{content:"\ef55"}
9260
+ .brz-ed .nc-glyph-mouse:before{content:"\ef56"}
9261
+ .brz-ed .nc-glyph-move-05:before{content:"\ef57"}
9262
+ .brz-ed .nc-glyph-move-06:before{content:"\ef58"}
9263
+ .brz-ed .nc-glyph-move-92:before{content:"\ef59"}
9264
+ .brz-ed .nc-glyph-move-down-2:before{content:"\ef5a"}
9265
+ .brz-ed .nc-glyph-move-down-right:before{content:"\ef5b"}
9266
+ .brz-ed .nc-glyph-move-down:before{content:"\ef5c"}
9267
+ .brz-ed .nc-glyph-move-left:before{content:"\ef5d"}
9268
+ .brz-ed .nc-glyph-move-right:before{content:"\ef5e"}
9269
+ .brz-ed .nc-glyph-move-up-2:before{content:"\ef5f"}
9270
+ .brz-ed .nc-glyph-move-up-left:before{content:"\ef60"}
9271
+ .brz-ed .nc-glyph-move-up:before{content:"\ef61"}
9272
+ .brz-ed .nc-glyph-movie-61:before{content:"\ef62"}
9273
+ .brz-ed .nc-glyph-movie-62:before{content:"\ef63"}
9274
+ .brz-ed .nc-glyph-muffin:before{content:"\ef64"}
9275
+ .brz-ed .nc-glyph-mug:before{content:"\ef65"}
9276
+ .brz-ed .nc-glyph-multiple-11:before{content:"\ef66"}
9277
+ .brz-ed .nc-glyph-multiple-19:before{content:"\ef67"}
9278
+ .brz-ed .nc-glyph-multiple:before{content:"\ef68"}
9279
+ .brz-ed .nc-glyph-mushroom:before{content:"\ef69"}
9280
+ .brz-ed .nc-glyph-music-2:before{content:"\ef6a"}
9281
+ .brz-ed .nc-glyph-music-album:before{content:"\ef6b"}
9282
+ .brz-ed .nc-glyph-music-cloud:before{content:"\ef6c"}
9283
+ .brz-ed .nc-glyph-music:before{content:"\ef6d"}
9284
+ .brz-ed .nc-glyph-navigation:before{content:"\ef6e"}
9285
+ .brz-ed .nc-glyph-needle:before{content:"\ef6f"}
9286
+ .brz-ed .nc-glyph-nerd-22:before{content:"\ef70"}
9287
+ .brz-ed .nc-glyph-nerd-23:before{content:"\ef71"}
9288
+ .brz-ed .nc-glyph-net:before{content:"\ef72"}
9289
+ .brz-ed .nc-glyph-network:before{content:"\ef73"}
9290
+ .brz-ed .nc-glyph-new:before{content:"\ef74"}
9291
+ .brz-ed .nc-glyph-newsletter-dev:before{content:"\ef75"}
9292
+ .brz-ed .nc-glyph-newsletter:before{content:"\ef76"}
9293
+ .brz-ed .nc-glyph-night:before{content:"\ef77"}
9294
+ .brz-ed .nc-glyph-ninja:before{content:"\ef78"}
9295
+ .brz-ed .nc-glyph-no-access:before{content:"\ef79"}
9296
+ .brz-ed .nc-glyph-no-words:before{content:"\ef7a"}
9297
+ .brz-ed .nc-glyph-node:before{content:"\ef7b"}
9298
+ .brz-ed .nc-glyph-note-03:before{content:"\ef7c"}
9299
+ .brz-ed .nc-glyph-note-04:before{content:"\ef7d"}
9300
+ .brz-ed .nc-glyph-note-code:before{content:"\ef7e"}
9301
+ .brz-ed .nc-glyph-notebook-2:before{content:"\ef7f"}
9302
+ .brz-ed .nc-glyph-notebook:before{content:"\ef80"}
9303
+ .brz-ed .nc-glyph-notepad:before{content:"\ef81"}
9304
+ .brz-ed .nc-glyph-notes:before{content:"\ef82"}
9305
+ .brz-ed .nc-glyph-notification-69:before{content:"\ef83"}
9306
+ .brz-ed .nc-glyph-notification-70:before{content:"\ef84"}
9307
+ .brz-ed .nc-glyph-nurse:before{content:"\ef85"}
9308
+ .brz-ed .nc-glyph-nutrition:before{content:"\ef86"}
9309
+ .brz-ed .nc-glyph-ny:before{content:"\ef87"}
9310
+ .brz-ed .nc-glyph-octopus:before{content:"\ef88"}
9311
+ .brz-ed .nc-glyph-oil:before{content:"\ef89"}
9312
+ .brz-ed .nc-glyph-onenote:before{content:"\ef8a"}
9313
+ .brz-ed .nc-glyph-onion:before{content:"\ef8b"}
9314
+ .brz-ed .nc-glyph-open-in-browser:before{content:"\ef8c"}
9315
+ .brz-ed .nc-glyph-opening-times:before{content:"\ef8d"}
9316
+ .brz-ed .nc-glyph-orange:before{content:"\ef8e"}
9317
+ .brz-ed .nc-glyph-organic-2:before{content:"\ef8f"}
9318
+ .brz-ed .nc-glyph-organic:before{content:"\ef90"}
9319
+ .brz-ed .nc-glyph-oven:before{content:"\ef91"}
9320
+ .brz-ed .nc-glyph-owl:before{content:"\ef93"}
9321
+ .brz-ed .nc-glyph-p-add:before{content:"\ef92"}
9322
+ .brz-ed .nc-glyph-p-check:before{content:"\ef94"}
9323
+ .brz-ed .nc-glyph-p-edit:before{content:"\ef95"}
9324
+ .brz-ed .nc-glyph-p-heart:before{content:"\ef96"}
9325
+ .brz-ed .nc-glyph-p-location:before{content:"\ef97"}
9326
+ .brz-ed .nc-glyph-p-remove:before{content:"\ef98"}
9327
+ .brz-ed .nc-glyph-p-search:before{content:"\ef99"}
9328
+ .brz-ed .nc-glyph-p-settings:before{content:"\ef9a"}
9329
+ .brz-ed .nc-glyph-p-share:before{content:"\ef9b"}
9330
+ .brz-ed .nc-glyph-p-sync:before{content:"\ef9c"}
9331
+ .brz-ed .nc-glyph-p-system-update:before{content:"\ef9d"}
9332
+ .brz-ed .nc-glyph-p-time:before{content:"\ef9e"}
9333
+ .brz-ed .nc-glyph-paint-16:before{content:"\ef9f"}
9334
+ .brz-ed .nc-glyph-paint-37:before{content:"\efa0"}
9335
+ .brz-ed .nc-glyph-paint-38:before{content:"\efa1"}
9336
+ .brz-ed .nc-glyph-paint-brush:before{content:"\efa2"}
9337
+ .brz-ed .nc-glyph-paint-bucket-39:before{content:"\efa3"}
9338
+ .brz-ed .nc-glyph-paint-bucket-40:before{content:"\efa4"}
9339
+ .brz-ed .nc-glyph-pajamas:before{content:"\efa5"}
9340
+ .brz-ed .nc-glyph-palette:before{content:"\efa6"}
9341
+ .brz-ed .nc-glyph-pan:before{content:"\efa7"}
9342
+ .brz-ed .nc-glyph-pancake:before{content:"\efa8"}
9343
+ .brz-ed .nc-glyph-panda:before{content:"\efa9"}
9344
+ .brz-ed .nc-glyph-panel:before{content:"\efaa"}
9345
+ .brz-ed .nc-glyph-pantone:before{content:"\efab"}
9346
+ .brz-ed .nc-glyph-paper-2:before{content:"\efac"}
9347
+ .brz-ed .nc-glyph-paper-design:before{content:"\efad"}
9348
+ .brz-ed .nc-glyph-paper-dev:before{content:"\efae"}
9349
+ .brz-ed .nc-glyph-paper-diploma:before{content:"\efaf"}
9350
+ .brz-ed .nc-glyph-paper:before{content:"\efb0"}
9351
+ .brz-ed .nc-glyph-paragraph:before{content:"\efb1"}
9352
+ .brz-ed .nc-glyph-parent:before{content:"\efb2"}
9353
+ .brz-ed .nc-glyph-paris-tower:before{content:"\efb3"}
9354
+ .brz-ed .nc-glyph-parking-sensors:before{content:"\efb4"}
9355
+ .brz-ed .nc-glyph-parking:before{content:"\efb5"}
9356
+ .brz-ed .nc-glyph-parrot:before{content:"\efb6"}
9357
+ .brz-ed .nc-glyph-passport:before{content:"\efb7"}
9358
+ .brz-ed .nc-glyph-pasta:before{content:"\efb8"}
9359
+ .brz-ed .nc-glyph-patch-19:before{content:"\efb9"}
9360
+ .brz-ed .nc-glyph-patch-34:before{content:"\efba"}
9361
+ .brz-ed .nc-glyph-patch:before{content:"\efbb"}
9362
+ .brz-ed .nc-glyph-path-exclude:before{content:"\efbc"}
9363
+ .brz-ed .nc-glyph-path-intersect:before{content:"\efbd"}
9364
+ .brz-ed .nc-glyph-path-minus:before{content:"\efbe"}
9365
+ .brz-ed .nc-glyph-path-unite:before{content:"\efbf"}
9366
+ .brz-ed .nc-glyph-paw:before{content:"\efc0"}
9367
+ .brz-ed .nc-glyph-payment:before{content:"\efc1"}
9368
+ .brz-ed .nc-glyph-pci-card:before{content:"\efc2"}
9369
+ .brz-ed .nc-glyph-peanut:before{content:"\efc3"}
9370
+ .brz-ed .nc-glyph-pear:before{content:"\efc4"}
9371
+ .brz-ed .nc-glyph-pen-01:before{content:"\efc5"}
9372
+ .brz-ed .nc-glyph-pen-23:before{content:"\efc6"}
9373
+ .brz-ed .nc-glyph-pen-tool:before{content:"\efc7"}
9374
+ .brz-ed .nc-glyph-pencil-47:before{content:"\efc8"}
9375
+ .brz-ed .nc-glyph-pencil:before{content:"\efc9"}
9376
+ .brz-ed .nc-glyph-penguin:before{content:"\efca"}
9377
+ .brz-ed .nc-glyph-pepper:before{content:"\efcb"}
9378
+ .brz-ed .nc-glyph-percentage-38:before{content:"\efcc"}
9379
+ .brz-ed .nc-glyph-percentage-39:before{content:"\efcd"}
9380
+ .brz-ed .nc-glyph-phone-2:before{content:"\efce"}
9381
+ .brz-ed .nc-glyph-phone-3:before{content:"\efcf"}
9382
+ .brz-ed .nc-glyph-phone-call-end:before{content:"\efd0"}
9383
+ .brz-ed .nc-glyph-phone-call:before{content:"\efd1"}
9384
+ .brz-ed .nc-glyph-phone:before{content:"\efd2"}
9385
+ .brz-ed .nc-glyph-photo-editor:before{content:"\efd3"}
9386
+ .brz-ed .nc-glyph-piano:before{content:"\efd4"}
9387
+ .brz-ed .nc-glyph-pickaxe:before{content:"\efd5"}
9388
+ .brz-ed .nc-glyph-pickle:before{content:"\efd6"}
9389
+ .brz-ed .nc-glyph-picnic-basket:before{content:"\efd7"}
9390
+ .brz-ed .nc-glyph-picture:before{content:"\efd8"}
9391
+ .brz-ed .nc-glyph-pig-2:before{content:"\efd9"}
9392
+ .brz-ed .nc-glyph-pig:before{content:"\efda"}
9393
+ .brz-ed .nc-glyph-pill-42:before{content:"\efdb"}
9394
+ .brz-ed .nc-glyph-pill-43:before{content:"\efdc"}
9395
+ .brz-ed .nc-glyph-pill-container-44:before{content:"\efdd"}
9396
+ .brz-ed .nc-glyph-pill-container-47:before{content:"\efde"}
9397
+ .brz-ed .nc-glyph-pin-2:before{content:"\efdf"}
9398
+ .brz-ed .nc-glyph-pin-3:before{content:"\efe0"}
9399
+ .brz-ed .nc-glyph-pin-4:before{content:"\efe1"}
9400
+ .brz-ed .nc-glyph-pin-add-2:before{content:"\efe2"}
9401
+ .brz-ed .nc-glyph-pin-add:before{content:"\efe3"}
9402
+ .brz-ed .nc-glyph-pin-check:before{content:"\efe4"}
9403
+ .brz-ed .nc-glyph-pin-copy:before{content:"\efe5"}
9404
+ .brz-ed .nc-glyph-pin-delete:before{content:"\efe6"}
9405
+ .brz-ed .nc-glyph-pin-edit:before{content:"\efe7"}
9406
+ .brz-ed .nc-glyph-pin-heart:before{content:"\efe8"}
9407
+ .brz-ed .nc-glyph-pin-remove-2:before{content:"\efe9"}
9408
+ .brz-ed .nc-glyph-pin-remove:before{content:"\efea"}
9409
+ .brz-ed .nc-glyph-pin-search:before{content:"\efeb"}
9410
+ .brz-ed .nc-glyph-pin-security:before{content:"\efec"}
9411
+ .brz-ed .nc-glyph-pin-settings:before{content:"\efed"}
9412
+ .brz-ed .nc-glyph-pin-share:before{content:"\efee"}
9413
+ .brz-ed .nc-glyph-pin-star:before{content:"\efef"}
9414
+ .brz-ed .nc-glyph-pin-sync:before{content:"\eff0"}
9415
+ .brz-ed .nc-glyph-pin-time:before{content:"\eff1"}
9416
+ .brz-ed .nc-glyph-pin-user:before{content:"\eff2"}
9417
+ .brz-ed .nc-glyph-pin:before{content:"\eff3"}
9418
+ .brz-ed .nc-glyph-pinch:before{content:"\eff4"}
9419
+ .brz-ed .nc-glyph-pineapple:before{content:"\eff5"}
9420
+ .brz-ed .nc-glyph-ping-pong:before{content:"\eff6"}
9421
+ .brz-ed .nc-glyph-pins:before{content:"\eff7"}
9422
+ .brz-ed .nc-glyph-pipe:before{content:"\eff8"}
9423
+ .brz-ed .nc-glyph-pirate:before{content:"\eff9"}
9424
+ .brz-ed .nc-glyph-pizza-slice:before{content:"\effa"}
9425
+ .brz-ed .nc-glyph-pizza:before{content:"\effb"}
9426
+ .brz-ed .nc-glyph-plane-17:before{content:"\effc"}
9427
+ .brz-ed .nc-glyph-plane-18:before{content:"\effd"}
9428
+ .brz-ed .nc-glyph-planet:before{content:"\effe"}
9429
+ .brz-ed .nc-glyph-plant-ground:before{content:"\efff"}
9430
+ .brz-ed .nc-glyph-plant-vase:before{content:"\f000"}
9431
+ .brz-ed .nc-glyph-plate:before{content:"\f001"}
9432
+ .brz-ed .nc-glyph-play-68:before{content:"\f002"}
9433
+ .brz-ed .nc-glyph-play-69:before{content:"\f003"}
9434
+ .brz-ed .nc-glyph-play:before{content:"\f004"}
9435
+ .brz-ed .nc-glyph-player-19:before{content:"\f005"}
9436
+ .brz-ed .nc-glyph-player-48:before{content:"\f006"}
9437
+ .brz-ed .nc-glyph-player:before{content:"\f007"}
9438
+ .brz-ed .nc-glyph-playlist:before{content:"\f008"}
9439
+ .brz-ed .nc-glyph-plug:before{content:"\f009"}
9440
+ .brz-ed .nc-glyph-podium-trophy:before{content:"\f00a"}
9441
+ .brz-ed .nc-glyph-podium:before{content:"\f00b"}
9442
+ .brz-ed .nc-glyph-point-a:before{content:"\f00c"}
9443
+ .brz-ed .nc-glyph-point-b:before{content:"\f00d"}
9444
+ .brz-ed .nc-glyph-polaroid-add:before{content:"\f00e"}
9445
+ .brz-ed .nc-glyph-polaroid-delete:before{content:"\f00f"}
9446
+ .brz-ed .nc-glyph-polaroid-multiple:before{content:"\f010"}
9447
+ .brz-ed .nc-glyph-polaroid-user:before{content:"\f011"}
9448
+ .brz-ed .nc-glyph-polaroid:before{content:"\f012"}
9449
+ .brz-ed .nc-glyph-police:before{content:"\f013"}
9450
+ .brz-ed .nc-glyph-pool:before{content:"\f014"}
9451
+ .brz-ed .nc-glyph-poop:before{content:"\f015"}
9452
+ .brz-ed .nc-glyph-popcorn:before{content:"\f016"}
9453
+ .brz-ed .nc-glyph-pos:before{content:"\f017"}
9454
+ .brz-ed .nc-glyph-position-marker:before{content:"\f018"}
9455
+ .brz-ed .nc-glyph-position-pin:before{content:"\f019"}
9456
+ .brz-ed .nc-glyph-position-user:before{content:"\f01a"}
9457
+ .brz-ed .nc-glyph-position:before{content:"\f01b"}
9458
+ .brz-ed .nc-glyph-pot:before{content:"\f01c"}
9459
+ .brz-ed .nc-glyph-potato:before{content:"\f01d"}
9460
+ .brz-ed .nc-glyph-power-level:before{content:"\f01e"}
9461
+ .brz-ed .nc-glyph-preferences-circle-rotate:before{content:"\f01f"}
9462
+ .brz-ed .nc-glyph-preferences-circle:before{content:"\f020"}
9463
+ .brz-ed .nc-glyph-preferences-container-circle-rotate:before{content:"\f021"}
9464
+ .brz-ed .nc-glyph-preferences-container-circle:before{content:"\f022"}
9465
+ .brz-ed .nc-glyph-preferences-container-rotate:before{content:"\f023"}
9466
+ .brz-ed .nc-glyph-preferences-container:before{content:"\f024"}
9467
+ .brz-ed .nc-glyph-preferences-rotate:before{content:"\f025"}
9468
+ .brz-ed .nc-glyph-preferences:before{content:"\f026"}
9469
+ .brz-ed .nc-glyph-print:before{content:"\f027"}
9470
+ .brz-ed .nc-glyph-printer:before{content:"\f028"}
9471
+ .brz-ed .nc-glyph-priority-high:before{content:"\f029"}
9472
+ .brz-ed .nc-glyph-priority-low:before{content:"\f02a"}
9473
+ .brz-ed .nc-glyph-progress:before{content:"\f02b"}
9474
+ .brz-ed .nc-glyph-prosciutto:before{content:"\f02c"}
9475
+ .brz-ed .nc-glyph-prototype:before{content:"\f02d"}
9476
+ .brz-ed .nc-glyph-pulse-chart:before{content:"\f02e"}
9477
+ .brz-ed .nc-glyph-pulse-phone:before{content:"\f02f"}
9478
+ .brz-ed .nc-glyph-pulse-sleep:before{content:"\f030"}
9479
+ .brz-ed .nc-glyph-pulse-watch:before{content:"\f031"}
9480
+ .brz-ed .nc-glyph-pulse:before{content:"\f032"}
9481
+ .brz-ed .nc-glyph-pumpkin:before{content:"\f033"}
9482
+ .brz-ed .nc-glyph-push-next:before{content:"\f034"}
9483
+ .brz-ed .nc-glyph-push-previous:before{content:"\f035"}
9484
+ .brz-ed .nc-glyph-puzzle-09:before{content:"\f036"}
9485
+ .brz-ed .nc-glyph-puzzle-10:before{content:"\f037"}
9486
+ .brz-ed .nc-glyph-puzzled:before{content:"\f038"}
9487
+ .brz-ed .nc-glyph-pyramid:before{content:"\f039"}
9488
+ .brz-ed .nc-glyph-question:before{content:"\f03a"}
9489
+ .brz-ed .nc-glyph-quite-happy:before{content:"\f03b"}
9490
+ .brz-ed .nc-glyph-quote:before{content:"\f03c"}
9491
+ .brz-ed .nc-glyph-rabbit:before{content:"\f03d"}
9492
+ .brz-ed .nc-glyph-rackets:before{content:"\f03e"}
9493
+ .brz-ed .nc-glyph-radar:before{content:"\f03f"}
9494
+ .brz-ed .nc-glyph-radiation:before{content:"\f040"}
9495
+ .brz-ed .nc-glyph-radio:before{content:"\f041"}
9496
+ .brz-ed .nc-glyph-rain-hail:before{content:"\f042"}
9497
+ .brz-ed .nc-glyph-rain:before{content:"\f043"}
9498
+ .brz-ed .nc-glyph-rainbow:before{content:"\f044"}
9499
+ .brz-ed .nc-glyph-ram:before{content:"\f045"}
9500
+ .brz-ed .nc-glyph-rat:before{content:"\f046"}
9501
+ .brz-ed .nc-glyph-receipt-list-42:before{content:"\f047"}
9502
+ .brz-ed .nc-glyph-receipt-list-43:before{content:"\f048"}
9503
+ .brz-ed .nc-glyph-receipt:before{content:"\f049"}
9504
+ .brz-ed .nc-glyph-recipe-book-46:before{content:"\f04a"}
9505
+ .brz-ed .nc-glyph-recipe-book-47:before{content:"\f04b"}
9506
+ .brz-ed .nc-glyph-recipe-create:before{content:"\f04c"}
9507
+ .brz-ed .nc-glyph-recipe:before{content:"\f04d"}
9508
+ .brz-ed .nc-glyph-recycling:before{content:"\f04e"}
9509
+ .brz-ed .nc-glyph-redo-10:before{content:"\f04f"}
9510
+ .brz-ed .nc-glyph-redo-26:before{content:"\f050"}
9511
+ .brz-ed .nc-glyph-redo-79:before{content:"\f051"}
9512
+ .brz-ed .nc-glyph-redo-81:before{content:"\f052"}
9513
+ .brz-ed .nc-glyph-refresh-01:before{content:"\f053"}
9514
+ .brz-ed .nc-glyph-refresh-02:before{content:"\f054"}
9515
+ .brz-ed .nc-glyph-refresh-68:before{content:"\f055"}
9516
+ .brz-ed .nc-glyph-refresh-69:before{content:"\f056"}
9517
+ .brz-ed .nc-glyph-refresh:before{content:"\f057"}
9518
+ .brz-ed .nc-glyph-reload:before{content:"\f058"}
9519
+ .brz-ed .nc-glyph-remix:before{content:"\f059"}
9520
+ .brz-ed .nc-glyph-remote:before{content:"\f05a"}
9521
+ .brz-ed .nc-glyph-remove:before{content:"\f05b"}
9522
+ .brz-ed .nc-glyph-replace-folder:before{content:"\f05c"}
9523
+ .brz-ed .nc-glyph-replace:before{content:"\f05d"}
9524
+ .brz-ed .nc-glyph-replay:before{content:"\f05e"}
9525
+ .brz-ed .nc-glyph-reply-all:before{content:"\f05f"}
9526
+ .brz-ed .nc-glyph-reply:before{content:"\f060"}
9527
+ .brz-ed .nc-glyph-reservation:before{content:"\f061"}
9528
+ .brz-ed .nc-glyph-resize-h:before{content:"\f062"}
9529
+ .brz-ed .nc-glyph-resize-v:before{content:"\f063"}
9530
+ .brz-ed .nc-glyph-restaurant-menu:before{content:"\f064"}
9531
+ .brz-ed .nc-glyph-restore:before{content:"\f065"}
9532
+ .brz-ed .nc-glyph-rice:before{content:"\f066"}
9533
+ .brz-ed .nc-glyph-rim:before{content:"\f067"}
9534
+ .brz-ed .nc-glyph-ring:before{content:"\f068"}
9535
+ .brz-ed .nc-glyph-rio:before{content:"\f069"}
9536
+ .brz-ed .nc-glyph-ripples:before{content:"\f06a"}
9537
+ .brz-ed .nc-glyph-road-2:before{content:"\f06b"}
9538
+ .brz-ed .nc-glyph-road-sign-left:before{content:"\f06c"}
9539
+ .brz-ed .nc-glyph-road-sign-right:before{content:"\f06d"}
9540
+ .brz-ed .nc-glyph-road:before{content:"\f06e"}
9541
+ .brz-ed .nc-glyph-roast-chicken:before{content:"\f06f"}
9542
+ .brz-ed .nc-glyph-robot:before{content:"\f070"}
9543
+ .brz-ed .nc-glyph-rock:before{content:"\f071"}
9544
+ .brz-ed .nc-glyph-roll:before{content:"\f072"}
9545
+ .brz-ed .nc-glyph-rolling-pin:before{content:"\f073"}
9546
+ .brz-ed .nc-glyph-rome:before{content:"\f074"}
9547
+ .brz-ed .nc-glyph-rope:before{content:"\f075"}
9548
+ .brz-ed .nc-glyph-rotate-22:before{content:"\f076"}
9549
+ .brz-ed .nc-glyph-rotate-23:before{content:"\f077"}
9550
+ .brz-ed .nc-glyph-rotate-left-2:before{content:"\f078"}
9551
+ .brz-ed .nc-glyph-rotate-left:before{content:"\f079"}
9552
+ .brz-ed .nc-glyph-rotate-lock:before{content:"\f07a"}
9553
+ .brz-ed .nc-glyph-rotate-right-2:before{content:"\f07b"}
9554
+ .brz-ed .nc-glyph-rotate-right:before{content:"\f07c"}
9555
+ .brz-ed .nc-glyph-rotate:before{content:"\f07d"}
9556
+ .brz-ed .nc-glyph-round-dollar:before{content:"\f07e"}
9557
+ .brz-ed .nc-glyph-round-down:before{content:"\f07f"}
9558
+ .brz-ed .nc-glyph-round-euro:before{content:"\f080"}
9559
+ .brz-ed .nc-glyph-round-left-down:before{content:"\f081"}
9560
+ .brz-ed .nc-glyph-round-left:before{content:"\f082"}
9561
+ .brz-ed .nc-glyph-round-pound:before{content:"\f083"}
9562
+ .brz-ed .nc-glyph-round-right-down:before{content:"\f084"}
9563
+ .brz-ed .nc-glyph-round-right:before{content:"\f085"}
9564
+ .brz-ed .nc-glyph-round-up-left:before{content:"\f086"}
9565
+ .brz-ed .nc-glyph-round-up-right:before{content:"\f087"}
9566
+ .brz-ed .nc-glyph-round-up:before{content:"\f088"}
9567
+ .brz-ed .nc-glyph-round-yen:before{content:"\f089"}
9568
+ .brz-ed .nc-glyph-route-alert:before{content:"\f08a"}
9569
+ .brz-ed .nc-glyph-route-close:before{content:"\f08b"}
9570
+ .brz-ed .nc-glyph-route-open:before{content:"\f08c"}
9571
+ .brz-ed .nc-glyph-rowing:before{content:"\f08d"}
9572
+ .brz-ed .nc-glyph-rugby:before{content:"\f08e"}
9573
+ .brz-ed .nc-glyph-ruler-pencil:before{content:"\f08f"}
9574
+ .brz-ed .nc-glyph-sad:before{content:"\f090"}
9575
+ .brz-ed .nc-glyph-safe:before{content:"\f091"}
9576
+ .brz-ed .nc-glyph-salad:before{content:"\f092"}
9577
+ .brz-ed .nc-glyph-sale:before{content:"\f093"}
9578
+ .brz-ed .nc-glyph-salt:before{content:"\f094"}
9579
+ .brz-ed .nc-glyph-santa-hat:before{content:"\f095"}
9580
+ .brz-ed .nc-glyph-satisfied:before{content:"\f096"}
9581
+ .brz-ed .nc-glyph-sausage:before{content:"\f097"}
9582
+ .brz-ed .nc-glyph-save-planet:before{content:"\f098"}
9583
+ .brz-ed .nc-glyph-scale-2:before{content:"\f099"}
9584
+ .brz-ed .nc-glyph-scale-3:before{content:"\f09a"}
9585
+ .brz-ed .nc-glyph-scale-4:before{content:"\f09b"}
9586
+ .brz-ed .nc-glyph-scale-down:before{content:"\f09c"}
9587
+ .brz-ed .nc-glyph-scale-horizontal:before{content:"\f09d"}
9588
+ .brz-ed .nc-glyph-scale-up:before{content:"\f09e"}
9589
+ .brz-ed .nc-glyph-scale-vertical:before{content:"\f09f"}
9590
+ .brz-ed .nc-glyph-scale:before{content:"\f0a0"}
9591
+ .brz-ed .nc-glyph-scan:before{content:"\f0a1"}
9592
+ .brz-ed .nc-glyph-scarf:before{content:"\f0a2"}
9593
+ .brz-ed .nc-glyph-school:before{content:"\f0a3"}
9594
+ .brz-ed .nc-glyph-scissors-dashed:before{content:"\f0a4"}
9595
+ .brz-ed .nc-glyph-scissors:before{content:"\f0a5"}
9596
+ .brz-ed .nc-glyph-scotch:before{content:"\f0a6"}
9597
+ .brz-ed .nc-glyph-scroll-horitontal:before{content:"\f0a7"}
9598
+ .brz-ed .nc-glyph-scroll-vertical:before{content:"\f0a8"}
9599
+ .brz-ed .nc-glyph-sd:before{content:"\f0a9"}
9600
+ .brz-ed .nc-glyph-sea-mask:before{content:"\f0aa"}
9601
+ .brz-ed .nc-glyph-search-2:before{content:"\f0ab"}
9602
+ .brz-ed .nc-glyph-search-3:before{content:"\f0ac"}
9603
+ .brz-ed .nc-glyph-search:before{content:"\f0ad"}
9604
+ .brz-ed .nc-glyph-seat:before{content:"\f0ae"}
9605
+ .brz-ed .nc-glyph-seatbelt:before{content:"\f0af"}
9606
+ .brz-ed .nc-glyph-security:before{content:"\f0b0"}
9607
+ .brz-ed .nc-glyph-segmentation:before{content:"\f0b1"}
9608
+ .brz-ed .nc-glyph-select-83:before{content:"\f0b2"}
9609
+ .brz-ed .nc-glyph-select-84:before{content:"\f0b3"}
9610
+ .brz-ed .nc-glyph-select:before{content:"\f0b4"}
9611
+ .brz-ed .nc-glyph-selection:before{content:"\f0b5"}
9612
+ .brz-ed .nc-glyph-selfie:before{content:"\f0b6"}
9613
+ .brz-ed .nc-glyph-send-2:before{content:"\f0b7"}
9614
+ .brz-ed .nc-glyph-send:before{content:"\f0b8"}
9615
+ .brz-ed .nc-glyph-sensor:before{content:"\f0b9"}
9616
+ .brz-ed .nc-glyph-separate-round:before{content:"\f0ba"}
9617
+ .brz-ed .nc-glyph-separate:before{content:"\f0bb"}
9618
+ .brz-ed .nc-glyph-settings-46:before{content:"\f0bc"}
9619
+ .brz-ed .nc-glyph-settings-99:before{content:"\f0bd"}
9620
+ .brz-ed .nc-glyph-settings-gear-63:before{content:"\f0be"}
9621
+ .brz-ed .nc-glyph-settings-gear-64:before{content:"\f0bf"}
9622
+ .brz-ed .nc-glyph-settings-gear-65:before{content:"\f0c0"}
9623
+ .brz-ed .nc-glyph-settings-tool-66:before{content:"\f0c1"}
9624
+ .brz-ed .nc-glyph-settings-tool-67:before{content:"\f0c2"}
9625
+ .brz-ed .nc-glyph-settings:before{content:"\f0c3"}
9626
+ .brz-ed .nc-glyph-sf-bridge:before{content:"\f0c4"}
9627
+ .brz-ed .nc-glyph-shake:before{content:"\f0c5"}
9628
+ .brz-ed .nc-glyph-shaker:before{content:"\f0c6"}
9629
+ .brz-ed .nc-glyph-shape-adjust:before{content:"\f0c7"}
9630
+ .brz-ed .nc-glyph-shape-arrow:before{content:"\f0c8"}
9631
+ .brz-ed .nc-glyph-shape-circle:before{content:"\f0c9"}
9632
+ .brz-ed .nc-glyph-shape-custom:before{content:"\f0ca"}
9633
+ .brz-ed .nc-glyph-shape-line:before{content:"\f0cb"}
9634
+ .brz-ed .nc-glyph-shape-oval:before{content:"\f0cc"}
9635
+ .brz-ed .nc-glyph-shape-polygon-2:before{content:"\f0cd"}
9636
+ .brz-ed .nc-glyph-shape-polygon:before{content:"\f0ce"}
9637
+ .brz-ed .nc-glyph-shape-rectangle:before{content:"\f0cf"}
9638
+ .brz-ed .nc-glyph-shape-square:before{content:"\f0d0"}
9639
+ .brz-ed .nc-glyph-shape-star:before{content:"\f0d1"}
9640
+ .brz-ed .nc-glyph-shape-triangle-2:before{content:"\f0d2"}
9641
+ .brz-ed .nc-glyph-shape-triangle:before{content:"\f0d3"}
9642
+ .brz-ed .nc-glyph-shapes:before{content:"\f0d4"}
9643
+ .brz-ed .nc-glyph-share-2:before{content:"\f0d5"}
9644
+ .brz-ed .nc-glyph-share-66:before{content:"\f0d6"}
9645
+ .brz-ed .nc-glyph-share-91:before{content:"\f0d7"}
9646
+ .brz-ed .nc-glyph-share-92:before{content:"\f0d8"}
9647
+ .brz-ed .nc-glyph-share-bold:before{content:"\f0d9"}
9648
+ .brz-ed .nc-glyph-share-left:before{content:"\f0da"}
9649
+ .brz-ed .nc-glyph-share-right:before{content:"\f0db"}
9650
+ .brz-ed .nc-glyph-share:before{content:"\f0dc"}
9651
+ .brz-ed .nc-glyph-shared:before{content:"\f0dd"}
9652
+ .brz-ed .nc-glyph-shark-2:before{content:"\f0de"}
9653
+ .brz-ed .nc-glyph-shark:before{content:"\f0df"}
9654
+ .brz-ed .nc-glyph-sharpener:before{content:"\f0e0"}
9655
+ .brz-ed .nc-glyph-sheep:before{content:"\f0e1"}
9656
+ .brz-ed .nc-glyph-shirt-business:before{content:"\f0e2"}
9657
+ .brz-ed .nc-glyph-shirt-buttons:before{content:"\f0e3"}
9658
+ .brz-ed .nc-glyph-shirt-neck:before{content:"\f0e4"}
9659
+ .brz-ed .nc-glyph-shirt:before{content:"\f0e5"}
9660
+ .brz-ed .nc-glyph-shoe-man:before{content:"\f0e6"}
9661
+ .brz-ed .nc-glyph-shoe-run:before{content:"\f0e7"}
9662
+ .brz-ed .nc-glyph-shoe-sport:before{content:"\f0e8"}
9663
+ .brz-ed .nc-glyph-shoe-woman:before{content:"\f0e9"}
9664
+ .brz-ed .nc-glyph-shop-location:before{content:"\f0ea"}
9665
+ .brz-ed .nc-glyph-shop:before{content:"\f0eb"}
9666
+ .brz-ed .nc-glyph-shovel:before{content:"\f0ec"}
9667
+ .brz-ed .nc-glyph-shower:before{content:"\f0ed"}
9668
+ .brz-ed .nc-glyph-shrimp:before{content:"\f0ee"}
9669
+ .brz-ed .nc-glyph-shuffle-01:before{content:"\f0ef"}
9670
+ .brz-ed .nc-glyph-shuffle-35:before{content:"\f0f0"}
9671
+ .brz-ed .nc-glyph-shuffle-97:before{content:"\f0f1"}
9672
+ .brz-ed .nc-glyph-shuffle-98:before{content:"\f0f2"}
9673
+ .brz-ed .nc-glyph-shy:before{content:"\f0f3"}
9674
+ .brz-ed .nc-glyph-sick:before{content:"\f0f4"}
9675
+ .brz-ed .nc-glyph-sickle:before{content:"\f0f5"}
9676
+ .brz-ed .nc-glyph-sidebar:before{content:"\f0f6"}
9677
+ .brz-ed .nc-glyph-sign-board:before{content:"\f0f7"}
9678
+ .brz-ed .nc-glyph-sign:before{content:"\f0f8"}
9679
+ .brz-ed .nc-glyph-signal-2:before{content:"\f0f9"}
9680
+ .brz-ed .nc-glyph-signal:before{content:"\f0fa"}
9681
+ .brz-ed .nc-glyph-signature:before{content:"\f0fb"}
9682
+ .brz-ed .nc-glyph-silly:before{content:"\f0fc"}
9683
+ .brz-ed .nc-glyph-sim-card:before{content:"\f0fd"}
9684
+ .brz-ed .nc-glyph-simple-add:before{content:"\f0fe"}
9685
+ .brz-ed .nc-glyph-simple-delete:before{content:"\f0ff"}
9686
+ .brz-ed .nc-glyph-simple-down:before{content:"\f100"}
9687
+ .brz-ed .nc-glyph-simple-left:before{content:"\f101"}
9688
+ .brz-ed .nc-glyph-simple-remove:before{content:"\f102"}
9689
+ .brz-ed .nc-glyph-simple-right:before{content:"\f103"}
9690
+ .brz-ed .nc-glyph-simple-up:before{content:"\f104"}
9691
+ .brz-ed .nc-glyph-single-01:before{content:"\f105"}
9692
+ .brz-ed .nc-glyph-single-02:before{content:"\f106"}
9693
+ .brz-ed .nc-glyph-single-03:before{content:"\f107"}
9694
+ .brz-ed .nc-glyph-single-04:before{content:"\f108"}
9695
+ .brz-ed .nc-glyph-single-05:before{content:"\f109"}
9696
+ .brz-ed .nc-glyph-single-body:before{content:"\f10a"}
9697
+ .brz-ed .nc-glyph-single-content-02:before{content:"\f10b"}
9698
+ .brz-ed .nc-glyph-single-content-03:before{content:"\f10c"}
9699
+ .brz-ed .nc-glyph-single-copies:before{content:"\f10d"}
9700
+ .brz-ed .nc-glyph-single-copy-04:before{content:"\f10e"}
9701
+ .brz-ed .nc-glyph-single-copy-06:before{content:"\f10f"}
9702
+ .brz-ed .nc-glyph-single-folded-content:before{content:"\f110"}
9703
+ .brz-ed .nc-glyph-single-folded:before{content:"\f111"}
9704
+ .brz-ed .nc-glyph-single-paragraph:before{content:"\f112"}
9705
+ .brz-ed .nc-glyph-single-position:before{content:"\f113"}
9706
+ .brz-ed .nc-glyph-single:before{content:"\f114"}
9707
+ .brz-ed .nc-glyph-sink-wash:before{content:"\f115"}
9708
+ .brz-ed .nc-glyph-sink:before{content:"\f116"}
9709
+ .brz-ed .nc-glyph-size-large:before{content:"\f117"}
9710
+ .brz-ed .nc-glyph-size-medium:before{content:"\f118"}
9711
+ .brz-ed .nc-glyph-size-small:before{content:"\f119"}
9712
+ .brz-ed .nc-glyph-size:before{content:"\f11a"}
9713
+ .brz-ed .nc-glyph-skateboard-2:before{content:"\f11b"}
9714
+ .brz-ed .nc-glyph-skateboard:before{content:"\f11c"}
9715
+ .brz-ed .nc-glyph-skew-down:before{content:"\f11d"}
9716
+ .brz-ed .nc-glyph-skew-left:before{content:"\f11e"}
9717
+ .brz-ed .nc-glyph-skew-right:before{content:"\f11f"}
9718
+ .brz-ed .nc-glyph-skew-up:before{content:"\f120"}
9719
+ .brz-ed .nc-glyph-skirt:before{content:"\f121"}
9720
+ .brz-ed .nc-glyph-skull-2:before{content:"\f122"}
9721
+ .brz-ed .nc-glyph-skull:before{content:"\f123"}
9722
+ .brz-ed .nc-glyph-slacks-12:before{content:"\f124"}
9723
+ .brz-ed .nc-glyph-slacks-13:before{content:"\f125"}
9724
+ .brz-ed .nc-glyph-sleep-2:before{content:"\f126"}
9725
+ .brz-ed .nc-glyph-sleep:before{content:"\f127"}
9726
+ .brz-ed .nc-glyph-slice:before{content:"\f128"}
9727
+ .brz-ed .nc-glyph-slide-left:before{content:"\f129"}
9728
+ .brz-ed .nc-glyph-slide-right:before{content:"\f12a"}
9729
+ .brz-ed .nc-glyph-slider:before{content:"\f12b"}
9730
+ .brz-ed .nc-glyph-sloth:before{content:"\f12c"}
9731
+ .brz-ed .nc-glyph-small-add:before{content:"\f12d"}
9732
+ .brz-ed .nc-glyph-small-delete:before{content:"\f12e"}
9733
+ .brz-ed .nc-glyph-small-down:before{content:"\f12f"}
9734
+ .brz-ed .nc-glyph-small-left:before{content:"\f130"}
9735
+ .brz-ed .nc-glyph-small-remove:before{content:"\f131"}
9736
+ .brz-ed .nc-glyph-small-right:before{content:"\f132"}
9737
+ .brz-ed .nc-glyph-small-triangle-down:before{content:"\f133"}
9738
+ .brz-ed .nc-glyph-small-triangle-left:before{content:"\f134"}
9739
+ .brz-ed .nc-glyph-small-triangle-right:before{content:"\f135"}
9740
+ .brz-ed .nc-glyph-small-triangle-up:before{content:"\f136"}
9741
+ .brz-ed .nc-glyph-small-up:before{content:"\f137"}
9742
+ .brz-ed .nc-glyph-smart:before{content:"\f138"}
9743
+ .brz-ed .nc-glyph-smile:before{content:"\f139"}
9744
+ .brz-ed .nc-glyph-smoothie:before{content:"\f13a"}
9745
+ .brz-ed .nc-glyph-snack:before{content:"\f13b"}
9746
+ .brz-ed .nc-glyph-snake:before{content:"\f13c"}
9747
+ .brz-ed .nc-glyph-snow-ball:before{content:"\f13d"}
9748
+ .brz-ed .nc-glyph-snow:before{content:"\f13e"}
9749
+ .brz-ed .nc-glyph-snowboard:before{content:"\f13f"}
9750
+ .brz-ed .nc-glyph-snowman-head:before{content:"\f140"}
9751
+ .brz-ed .nc-glyph-snowman:before{content:"\f141"}
9752
+ .brz-ed .nc-glyph-soak:before{content:"\f142"}
9753
+ .brz-ed .nc-glyph-soccer-field:before{content:"\f143"}
9754
+ .brz-ed .nc-glyph-sock:before{content:"\f144"}
9755
+ .brz-ed .nc-glyph-socket-europe-1:before{content:"\f145"}
9756
+ .brz-ed .nc-glyph-socket-europe-2:before{content:"\f146"}
9757
+ .brz-ed .nc-glyph-socket-uk:before{content:"\f147"}
9758
+ .brz-ed .nc-glyph-socket:before{content:"\f148"}
9759
+ .brz-ed .nc-glyph-sofa:before{content:"\f149"}
9760
+ .brz-ed .nc-glyph-soldier:before{content:"\f14a"}
9761
+ .brz-ed .nc-glyph-sound-wave:before{content:"\f14b"}
9762
+ .brz-ed .nc-glyph-soup:before{content:"\f14c"}
9763
+ .brz-ed .nc-glyph-soy-sauce:before{content:"\f14d"}
9764
+ .brz-ed .nc-glyph-spa:before{content:"\f14e"}
9765
+ .brz-ed .nc-glyph-spaceship:before{content:"\f14f"}
9766
+ .brz-ed .nc-glyph-speaker-01:before{content:"\f150"}
9767
+ .brz-ed .nc-glyph-speaker-05:before{content:"\f151"}
9768
+ .brz-ed .nc-glyph-speaker:before{content:"\f152"}
9769
+ .brz-ed .nc-glyph-speechless:before{content:"\f153"}
9770
+ .brz-ed .nc-glyph-spider:before{content:"\f154"}
9771
+ .brz-ed .nc-glyph-spiteful:before{content:"\f155"}
9772
+ .brz-ed .nc-glyph-split-33:before{content:"\f156"}
9773
+ .brz-ed .nc-glyph-split-37:before{content:"\f157"}
9774
+ .brz-ed .nc-glyph-split-horizontal:before{content:"\f158"}
9775
+ .brz-ed .nc-glyph-split-round:before{content:"\f159"}
9776
+ .brz-ed .nc-glyph-split-vertical:before{content:"\f15a"}
9777
+ .brz-ed .nc-glyph-split:before{content:"\f15b"}
9778
+ .brz-ed .nc-glyph-sport:before{content:"\f15c"}
9779
+ .brz-ed .nc-glyph-spray-2:before{content:"\f15d"}
9780
+ .brz-ed .nc-glyph-spray:before{content:"\f15e"}
9781
+ .brz-ed .nc-glyph-square-add-08:before{content:"\f15f"}
9782
+ .brz-ed .nc-glyph-square-add-11:before{content:"\f160"}
9783
+ .brz-ed .nc-glyph-square-corner-down-left:before{content:"\f161"}
9784
+ .brz-ed .nc-glyph-square-corner-down-right:before{content:"\f162"}
9785
+ .brz-ed .nc-glyph-square-corner-up-left:before{content:"\f163"}
9786
+ .brz-ed .nc-glyph-square-corner-up-right:before{content:"\f164"}
9787
+ .brz-ed .nc-glyph-square-delete-10:before{content:"\f165"}
9788
+ .brz-ed .nc-glyph-square-delete-13:before{content:"\f166"}
9789
+ .brz-ed .nc-glyph-square-down-06:before{content:"\f167"}
9790
+ .brz-ed .nc-glyph-square-down:before{content:"\f168"}
9791
+ .brz-ed .nc-glyph-square-download:before{content:"\f169"}
9792
+ .brz-ed .nc-glyph-square-left-04:before{content:"\f16a"}
9793
+ .brz-ed .nc-glyph-square-left:before{content:"\f16b"}
9794
+ .brz-ed .nc-glyph-square-marker:before{content:"\f16c"}
9795
+ .brz-ed .nc-glyph-square-pin:before{content:"\f16d"}
9796
+ .brz-ed .nc-glyph-square-remove-09:before{content:"\f16e"}
9797
+ .brz-ed .nc-glyph-square-remove-12:before{content:"\f16f"}
9798
+ .brz-ed .nc-glyph-square-right-03:before{content:"\f170"}
9799
+ .brz-ed .nc-glyph-square-right:before{content:"\f171"}
9800
+ .brz-ed .nc-glyph-square-simple-down:before{content:"\f172"}
9801
+ .brz-ed .nc-glyph-square-simple-left:before{content:"\f173"}
9802
+ .brz-ed .nc-glyph-square-simple-right:before{content:"\f174"}
9803
+ .brz-ed .nc-glyph-square-simple-up:before{content:"\f175"}
9804
+ .brz-ed .nc-glyph-square-up-05:before{content:"\f176"}
9805
+ .brz-ed .nc-glyph-square-up:before{content:"\f177"}
9806
+ .brz-ed .nc-glyph-square-upload:before{content:"\f178"}
9807
+ .brz-ed .nc-glyph-squares:before{content:"\f179"}
9808
+ .brz-ed .nc-glyph-stamp:before{content:"\f17a"}
9809
+ .brz-ed .nc-glyph-standing-man:before{content:"\f17b"}
9810
+ .brz-ed .nc-glyph-standing-woman:before{content:"\f17c"}
9811
+ .brz-ed .nc-glyph-star:before{content:"\f17d"}
9812
+ .brz-ed .nc-glyph-steak-2:before{content:"\f17e"}
9813
+ .brz-ed .nc-glyph-steak:before{content:"\f17f"}
9814
+ .brz-ed .nc-glyph-steering-wheel:before{content:"\f180"}
9815
+ .brz-ed .nc-glyph-steps:before{content:"\f181"}
9816
+ .brz-ed .nc-glyph-stock-2:before{content:"\f182"}
9817
+ .brz-ed .nc-glyph-stock:before{content:"\f183"}
9818
+ .brz-ed .nc-glyph-storage-hanger:before{content:"\f184"}
9819
+ .brz-ed .nc-glyph-storage:before{content:"\f185"}
9820
+ .brz-ed .nc-glyph-store:before{content:"\f186"}
9821
+ .brz-ed .nc-glyph-strategy:before{content:"\f187"}
9822
+ .brz-ed .nc-glyph-strawberry:before{content:"\f188"}
9823
+ .brz-ed .nc-glyph-stre-down:before{content:"\f189"}
9824
+ .brz-ed .nc-glyph-stre-left:before{content:"\f18a"}
9825
+ .brz-ed .nc-glyph-stre-right:before{content:"\f18b"}
9826
+ .brz-ed .nc-glyph-stre-up:before{content:"\f18c"}
9827
+ .brz-ed .nc-glyph-stretch:before{content:"\f18d"}
9828
+ .brz-ed .nc-glyph-strikethrough:before{content:"\f18e"}
9829
+ .brz-ed .nc-glyph-strong-down:before{content:"\f18f"}
9830
+ .brz-ed .nc-glyph-strong-left:before{content:"\f190"}
9831
+ .brz-ed .nc-glyph-strong-right:before{content:"\f191"}
9832
+ .brz-ed .nc-glyph-strong-up:before{content:"\f192"}
9833
+ .brz-ed .nc-glyph-subscript:before{content:"\f193"}
9834
+ .brz-ed .nc-glyph-subtitles:before{content:"\f194"}
9835
+ .brz-ed .nc-glyph-sugar:before{content:"\f195"}
9836
+ .brz-ed .nc-glyph-sun-cloud-drop:before{content:"\f196"}
9837
+ .brz-ed .nc-glyph-sun-cloud-fog:before{content:"\f197"}
9838
+ .brz-ed .nc-glyph-sun-cloud-hail:before{content:"\f198"}
9839
+ .brz-ed .nc-glyph-sun-cloud-light:before{content:"\f199"}
9840
+ .brz-ed .nc-glyph-sun-cloud-rain:before{content:"\f19a"}
9841
+ .brz-ed .nc-glyph-sun-cloud-snow-54:before{content:"\f19b"}
9842
+ .brz-ed .nc-glyph-sun-cloud-snow-55:before{content:"\f19c"}
9843
+ .brz-ed .nc-glyph-sun-cloud:before{content:"\f19d"}
9844
+ .brz-ed .nc-glyph-sun-fog-29:before{content:"\f19e"}
9845
+ .brz-ed .nc-glyph-sun-fog-30:before{content:"\f19f"}
9846
+ .brz-ed .nc-glyph-sun-fog-43:before{content:"\f1a0"}
9847
+ .brz-ed .nc-glyph-sunglasses-48:before{content:"\f1a1"}
9848
+ .brz-ed .nc-glyph-sunglasses-49:before{content:"\f1a2"}
9849
+ .brz-ed .nc-glyph-sunglasses:before{content:"\f1a3"}
9850
+ .brz-ed .nc-glyph-superscript:before{content:"\f1a4"}
9851
+ .brz-ed .nc-glyph-supplement:before{content:"\f1a5"}
9852
+ .brz-ed .nc-glyph-support-16:before{content:"\f1a6"}
9853
+ .brz-ed .nc-glyph-support-17:before{content:"\f1a7"}
9854
+ .brz-ed .nc-glyph-surf-2:before{content:"\f1a8"}
9855
+ .brz-ed .nc-glyph-surf:before{content:"\f1a9"}
9856
+ .brz-ed .nc-glyph-surprise:before{content:"\f1aa"}
9857
+ .brz-ed .nc-glyph-sushi:before{content:"\f1ab"}
9858
+ .brz-ed .nc-glyph-swap-horizontal:before{content:"\f1ac"}
9859
+ .brz-ed .nc-glyph-swap-vertical:before{content:"\f1ad"}
9860
+ .brz-ed .nc-glyph-swimsuit:before{content:"\f1ae"}
9861
+ .brz-ed .nc-glyph-swimwear:before{content:"\f1af"}
9862
+ .brz-ed .nc-glyph-swipe-bottom:before{content:"\f1b0"}
9863
+ .brz-ed .nc-glyph-swipe-left:before{content:"\f1b1"}
9864
+ .brz-ed .nc-glyph-swipe-right:before{content:"\f1b2"}
9865
+ .brz-ed .nc-glyph-swipe-up:before{content:"\f1b3"}
9866
+ .brz-ed .nc-glyph-swiss-knife:before{content:"\f1b4"}
9867
+ .brz-ed .nc-glyph-sync:before{content:"\f1b5"}
9868
+ .brz-ed .nc-glyph-syringe:before{content:"\f1b6"}
9869
+ .brz-ed .nc-glyph-system-update:before{content:"\f1b7"}
9870
+ .brz-ed .nc-glyph-table-left:before{content:"\f1b8"}
9871
+ .brz-ed .nc-glyph-table-right:before{content:"\f1b9"}
9872
+ .brz-ed .nc-glyph-table:before{content:"\f1ba"}
9873
+ .brz-ed .nc-glyph-tablet-2:before{content:"\f1bb"}
9874
+ .brz-ed .nc-glyph-tablet-button:before{content:"\f1bc"}
9875
+ .brz-ed .nc-glyph-tablet-mobile:before{content:"\f1bd"}
9876
+ .brz-ed .nc-glyph-tablet-reader-31:before{content:"\f1be"}
9877
+ .brz-ed .nc-glyph-tablet-reader-42:before{content:"\f1bf"}
9878
+ .brz-ed .nc-glyph-tablet-toolbar:before{content:"\f1c0"}
9879
+ .brz-ed .nc-glyph-tablet:before{content:"\f1c1"}
9880
+ .brz-ed .nc-glyph-tacos:before{content:"\f1c2"}
9881
+ .brz-ed .nc-glyph-tactic:before{content:"\f1c3"}
9882
+ .brz-ed .nc-glyph-tag-2:before{content:"\f1c4"}
9883
+ .brz-ed .nc-glyph-tag-add:before{content:"\f1c5"}
9884
+ .brz-ed .nc-glyph-tag-check:before{content:"\f1c6"}
9885
+ .brz-ed .nc-glyph-tag-content:before{content:"\f1c7"}
9886
+ .brz-ed .nc-glyph-tag-cut:before{content:"\f1c8"}
9887
+ .brz-ed .nc-glyph-tag-line:before{content:"\f1c9"}
9888
+ .brz-ed .nc-glyph-tag-loyalty:before{content:"\f1ca"}
9889
+ .brz-ed .nc-glyph-tag-remove:before{content:"\f1cb"}
9890
+ .brz-ed .nc-glyph-tag-sale:before{content:"\f1cc"}
9891
+ .brz-ed .nc-glyph-tag:before{content:"\f1cd"}
9892
+ .brz-ed .nc-glyph-tail-down:before{content:"\f1ce"}
9893
+ .brz-ed .nc-glyph-tail-left:before{content:"\f1cf"}
9894
+ .brz-ed .nc-glyph-tail-right:before{content:"\f1d0"}
9895
+ .brz-ed .nc-glyph-tail-triangle-down:before{content:"\f1d1"}
9896
+ .brz-ed .nc-glyph-tail-triangle-left:before{content:"\f1d2"}
9897
+ .brz-ed .nc-glyph-tail-triangle-right:before{content:"\f1d3"}
9898
+ .brz-ed .nc-glyph-tail-triangle-up:before{content:"\f1d4"}
9899
+ .brz-ed .nc-glyph-tail-up:before{content:"\f1d5"}
9900
+ .brz-ed .nc-glyph-tap-01:before{content:"\f1d6"}
9901
+ .brz-ed .nc-glyph-tap-02:before{content:"\f1d7"}
9902
+ .brz-ed .nc-glyph-tape:before{content:"\f1d8"}
9903
+ .brz-ed .nc-glyph-target:before{content:"\f1d9"}
9904
+ .brz-ed .nc-glyph-tea-bag:before{content:"\f1da"}
9905
+ .brz-ed .nc-glyph-tea:before{content:"\f1db"}
9906
+ .brz-ed .nc-glyph-temperature-23:before{content:"\f1dc"}
9907
+ .brz-ed .nc-glyph-temperature-24:before{content:"\f1dd"}
9908
+ .brz-ed .nc-glyph-temple-25:before{content:"\f1de"}
9909
+ .brz-ed .nc-glyph-tennis-ball:before{content:"\f1df"}
9910
+ .brz-ed .nc-glyph-tennis:before{content:"\f1e0"}
9911
+ .brz-ed .nc-glyph-terrace:before{content:"\f1e1"}
9912
+ .brz-ed .nc-glyph-text-2:before{content:"\f1e2"}
9913
+ .brz-ed .nc-glyph-text:before{content:"\f1e3"}
9914
+ .brz-ed .nc-glyph-texture:before{content:"\f1e4"}
9915
+ .brz-ed .nc-glyph-ticket-75:before{content:"\f1e5"}
9916
+ .brz-ed .nc-glyph-ticket-76:before{content:"\f1e6"}
9917
+ .brz-ed .nc-glyph-tie-01:before{content:"\f1e7"}
9918
+ .brz-ed .nc-glyph-tie-02:before{content:"\f1e8"}
9919
+ .brz-ed .nc-glyph-tie-bow:before{content:"\f1e9"}
9920
+ .brz-ed .nc-glyph-tile-55:before{content:"\f1ea"}
9921
+ .brz-ed .nc-glyph-time-2:before{content:"\f1eb"}
9922
+ .brz-ed .nc-glyph-time-3:before{content:"\f1ec"}
9923
+ .brz-ed .nc-glyph-time-alarm:before{content:"\f1ed"}
9924
+ .brz-ed .nc-glyph-time-clock:before{content:"\f1ee"}
9925
+ .brz-ed .nc-glyph-time-countdown:before{content:"\f1ef"}
9926
+ .brz-ed .nc-glyph-time:before{content:"\f1f0"}
9927
+ .brz-ed .nc-glyph-timeline:before{content:"\f1f1"}
9928
+ .brz-ed .nc-glyph-timer:before{content:"\f1f2"}
9929
+ .brz-ed .nc-glyph-todo:before{content:"\f1f3"}
9930
+ .brz-ed .nc-glyph-toilet-paper:before{content:"\f1f4"}
9931
+ .brz-ed .nc-glyph-toilet:before{content:"\f1f5"}
9932
+ .brz-ed .nc-glyph-tomato:before{content:"\f1f6"}
9933
+ .brz-ed .nc-glyph-tool-blur:before{content:"\f1f7"}
9934
+ .brz-ed .nc-glyph-tool-hand:before{content:"\f1f8"}
9935
+ .brz-ed .nc-glyph-tool-select:before{content:"\f1f9"}
9936
+ .brz-ed .nc-glyph-tooth:before{content:"\f1fa"}
9937
+ .brz-ed .nc-glyph-touch:before{content:"\f1fb"}
9938
+ .brz-ed .nc-glyph-track-delivery:before{content:"\f1fc"}
9939
+ .brz-ed .nc-glyph-tracking:before{content:"\f1fd"}
9940
+ .brz-ed .nc-glyph-tractor:before{content:"\f1fe"}
9941
+ .brz-ed .nc-glyph-train-speed:before{content:"\f1ff"}
9942
+ .brz-ed .nc-glyph-train:before{content:"\f200"}
9943
+ .brz-ed .nc-glyph-tram:before{content:"\f201"}
9944
+ .brz-ed .nc-glyph-transform-2d:before{content:"\f202"}
9945
+ .brz-ed .nc-glyph-transform-origin:before{content:"\f203"}
9946
+ .brz-ed .nc-glyph-transform:before{content:"\f204"}
9947
+ .brz-ed .nc-glyph-transparent:before{content:"\f205"}
9948
+ .brz-ed .nc-glyph-trash-round:before{content:"\f206"}
9949
+ .brz-ed .nc-glyph-trash-simple:before{content:"\f207"}
9950
+ .brz-ed .nc-glyph-trash:before{content:"\f208"}
9951
+ .brz-ed .nc-glyph-treasure-map-21:before{content:"\f209"}
9952
+ .brz-ed .nc-glyph-treasure-map-40:before{content:"\f20a"}
9953
+ .brz-ed .nc-glyph-tree-01:before{content:"\f20b"}
9954
+ .brz-ed .nc-glyph-tree-02:before{content:"\f20c"}
9955
+ .brz-ed .nc-glyph-tree-03:before{content:"\f20d"}
9956
+ .brz-ed .nc-glyph-tree-ball:before{content:"\f20e"}
9957
+ .brz-ed .nc-glyph-tree:before{content:"\f20f"}
9958
+ .brz-ed .nc-glyph-trend-down:before{content:"\f210"}
9959
+ .brz-ed .nc-glyph-trend-up:before{content:"\f211"}
9960
+ .brz-ed .nc-glyph-triangle-down-20:before{content:"\f212"}
9961
+ .brz-ed .nc-glyph-triangle-down-65:before{content:"\f213"}
9962
+ .brz-ed .nc-glyph-triangle-down:before{content:"\f214"}
9963
+ .brz-ed .nc-glyph-triangle-left-18:before{content:"\f215"}
9964
+ .brz-ed .nc-glyph-triangle-left-63:before{content:"\f216"}
9965
+ .brz-ed .nc-glyph-triangle-left:before{content:"\f217"}
9966
+ .brz-ed .nc-glyph-triangle-right-17:before{content:"\f218"}
9967
+ .brz-ed .nc-glyph-triangle-right-62:before{content:"\f219"}
9968
+ .brz-ed .nc-glyph-triangle-right:before{content:"\f21a"}
9969
+ .brz-ed .nc-glyph-triangle-up-19:before{content:"\f21b"}
9970
+ .brz-ed .nc-glyph-triangle-up-64:before{content:"\f21c"}
9971
+ .brz-ed .nc-glyph-triangle-up:before{content:"\f21d"}
9972
+ .brz-ed .nc-glyph-tripod:before{content:"\f21e"}
9973
+ .brz-ed .nc-glyph-trolley:before{content:"\f21f"}
9974
+ .brz-ed .nc-glyph-trophy:before{content:"\f220"}
9975
+ .brz-ed .nc-glyph-truck-front:before{content:"\f221"}
9976
+ .brz-ed .nc-glyph-trunk:before{content:"\f222"}
9977
+ .brz-ed .nc-glyph-tshirt-53:before{content:"\f223"}
9978
+ .brz-ed .nc-glyph-tshirt-54:before{content:"\f224"}
9979
+ .brz-ed .nc-glyph-tshirt-sport:before{content:"\f225"}
9980
+ .brz-ed .nc-glyph-turtle:before{content:"\f226"}
9981
+ .brz-ed .nc-glyph-tv-2:before{content:"\f227"}
9982
+ .brz-ed .nc-glyph-tv-old:before{content:"\f228"}
9983
+ .brz-ed .nc-glyph-tv:before{content:"\f229"}
9984
+ .brz-ed .nc-glyph-twitch:before{content:"\f22a"}
9985
+ .brz-ed .nc-glyph-ui-03:before{content:"\f22b"}
9986
+ .brz-ed .nc-glyph-ui-04:before{content:"\f22c"}
9987
+ .brz-ed .nc-glyph-umbrella-13:before{content:"\f22d"}
9988
+ .brz-ed .nc-glyph-umbrella-14:before{content:"\f22e"}
9989
+ .brz-ed .nc-glyph-underline:before{content:"\f22f"}
9990
+ .brz-ed .nc-glyph-underwear-man:before{content:"\f230"}
9991
+ .brz-ed .nc-glyph-underwear:before{content:"\f231"}
9992
+ .brz-ed .nc-glyph-undo-25:before{content:"\f233"}
9993
+ .brz-ed .nc-glyph-undo-29:before{content:"\f232"}
9994
+ .brz-ed .nc-glyph-ungroup:before{content:"\f234"}
9995
+ .brz-ed .nc-glyph-unite-round:before{content:"\f235"}
9996
+ .brz-ed .nc-glyph-unite:before{content:"\f236"}
9997
+ .brz-ed .nc-glyph-upload-2:before{content:"\f237"}
9998
+ .brz-ed .nc-glyph-upload:before{content:"\f238"}
9999
+ .brz-ed .nc-glyph-upset-13:before{content:"\f239"}
10000
+ .brz-ed .nc-glyph-upset-14:before{content:"\f23a"}
10001
+ .brz-ed .nc-glyph-usb:before{content:"\f23b"}
10002
+ .brz-ed .nc-glyph-user-balance:before{content:"\f23c"}
10003
+ .brz-ed .nc-glyph-user-climb:before{content:"\f23d"}
10004
+ .brz-ed .nc-glyph-user-frame-31:before{content:"\f23e"}
10005
+ .brz-ed .nc-glyph-user-frame-32:before{content:"\f23f"}
10006
+ .brz-ed .nc-glyph-user-frame-33:before{content:"\f240"}
10007
+ .brz-ed .nc-glyph-user-meditation:before{content:"\f241"}
10008
+ .brz-ed .nc-glyph-user-run:before{content:"\f242"}
10009
+ .brz-ed .nc-glyph-user-snowboard:before{content:"\f243"}
10010
+ .brz-ed .nc-glyph-user-swim:before{content:"\f244"}
10011
+ .brz-ed .nc-glyph-user:before{content:"\f245"}
10012
+ .brz-ed .nc-glyph-vampire:before{content:"\f246"}
10013
+ .brz-ed .nc-glyph-vector-2:before{content:"\f247"}
10014
+ .brz-ed .nc-glyph-vector:before{content:"\f248"}
10015
+ .brz-ed .nc-glyph-vegan:before{content:"\f249"}
10016
+ .brz-ed .nc-glyph-ventilation:before{content:"\f24a"}
10017
+ .brz-ed .nc-glyph-vespa-front:before{content:"\f24b"}
10018
+ .brz-ed .nc-glyph-vespa:before{content:"\f24c"}
10019
+ .brz-ed .nc-glyph-vest-31:before{content:"\f24d"}
10020
+ .brz-ed .nc-glyph-vest-sport:before{content:"\f24e"}
10021
+ .brz-ed .nc-glyph-vest:before{content:"\f24f"}
10022
+ .brz-ed .nc-glyph-video-64:before{content:"\f250"}
10023
+ .brz-ed .nc-glyph-video-65:before{content:"\f251"}
10024
+ .brz-ed .nc-glyph-video-66:before{content:"\f252"}
10025
+ .brz-ed .nc-glyph-video-67:before{content:"\f253"}
10026
+ .brz-ed .nc-glyph-videocamera-71:before{content:"\f254"}
10027
+ .brz-ed .nc-glyph-videocamera-72:before{content:"\f255"}
10028
+ .brz-ed .nc-glyph-virus:before{content:"\f256"}
10029
+ .brz-ed .nc-glyph-voice-record:before{content:"\f257"}
10030
+ .brz-ed .nc-glyph-volleyball:before{content:"\f258"}
10031
+ .brz-ed .nc-glyph-volume-93:before{content:"\f259"}
10032
+ .brz-ed .nc-glyph-volume-97:before{content:"\f25a"}
10033
+ .brz-ed .nc-glyph-volume-98:before{content:"\f25b"}
10034
+ .brz-ed .nc-glyph-volume-ban:before{content:"\f25c"}
10035
+ .brz-ed .nc-glyph-volume-down:before{content:"\f25d"}
10036
+ .brz-ed .nc-glyph-volume-off:before{content:"\f25e"}
10037
+ .brz-ed .nc-glyph-volume-up:before{content:"\f25f"}
10038
+ .brz-ed .nc-glyph-vpn:before{content:"\f260"}
10039
+ .brz-ed .nc-glyph-waffle:before{content:"\f261"}
10040
+ .brz-ed .nc-glyph-walk:before{content:"\f262"}
10041
+ .brz-ed .nc-glyph-wallet-43:before{content:"\f263"}
10042
+ .brz-ed .nc-glyph-wallet-44:before{content:"\f264"}
10043
+ .brz-ed .nc-glyph-wallet-90:before{content:"\f265"}
10044
+ .brz-ed .nc-glyph-wallet:before{content:"\f266"}
10045
+ .brz-ed .nc-glyph-wand-11:before{content:"\f267"}
10046
+ .brz-ed .nc-glyph-wardrobe:before{content:"\f268"}
10047
+ .brz-ed .nc-glyph-wash-2:before{content:"\f269"}
10048
+ .brz-ed .nc-glyph-wash-30:before{content:"\f26a"}
10049
+ .brz-ed .nc-glyph-wash-60:before{content:"\f26b"}
10050
+ .brz-ed .nc-glyph-wash-90:before{content:"\f26c"}
10051
+ .brz-ed .nc-glyph-wash-hand:before{content:"\f26d"}
10052
+ .brz-ed .nc-glyph-wash:before{content:"\f26e"}
10053
+ .brz-ed .nc-glyph-washing-fluid:before{content:"\f26f"}
10054
+ .brz-ed .nc-glyph-waste-danger:before{content:"\f270"}
10055
+ .brz-ed .nc-glyph-waste-recycling:before{content:"\f272"}
10056
+ .brz-ed .nc-glyph-waste:before{content:"\f271"}
10057
+ .brz-ed .nc-glyph-watch-circle:before{content:"\f273"}
10058
+ .brz-ed .nc-glyph-watch-dev:before{content:"\f274"}
10059
+ .brz-ed .nc-glyph-watch-time:before{content:"\f275"}
10060
+ .brz-ed .nc-glyph-watch:before{content:"\f276"}
10061
+ .brz-ed .nc-glyph-water-hand:before{content:"\f277"}
10062
+ .brz-ed .nc-glyph-water-sink:before{content:"\f278"}
10063
+ .brz-ed .nc-glyph-water:before{content:"\f279"}
10064
+ .brz-ed .nc-glyph-watermelon:before{content:"\f27a"}
10065
+ .brz-ed .nc-glyph-wc:before{content:"\f27b"}
10066
+ .brz-ed .nc-glyph-web-design:before{content:"\f27c"}
10067
+ .brz-ed .nc-glyph-webcam-38:before{content:"\f27d"}
10068
+ .brz-ed .nc-glyph-webcam-39:before{content:"\f27e"}
10069
+ .brz-ed .nc-glyph-webpage-2:before{content:"\f27f"}
10070
+ .brz-ed .nc-glyph-webpage:before{content:"\f280"}
10071
+ .brz-ed .nc-glyph-weed:before{content:"\f281"}
10072
+ .brz-ed .nc-glyph-weight:before{content:"\f282"}
10073
+ .brz-ed .nc-glyph-what:before{content:"\f283"}
10074
+ .brz-ed .nc-glyph-wheel-2:before{content:"\f284"}
10075
+ .brz-ed .nc-glyph-wheel:before{content:"\f285"}
10076
+ .brz-ed .nc-glyph-wheelchair:before{content:"\f286"}
10077
+ .brz-ed .nc-glyph-whisk:before{content:"\f287"}
10078
+ .brz-ed .nc-glyph-whiskers:before{content:"\f288"}
10079
+ .brz-ed .nc-glyph-whistle:before{content:"\f289"}
10080
+ .brz-ed .nc-glyph-white-house:before{content:"\f28a"}
10081
+ .brz-ed .nc-glyph-widget:before{content:"\f28b"}
10082
+ .brz-ed .nc-glyph-wifi-2:before{content:"\f28c"}
10083
+ .brz-ed .nc-glyph-wifi-off:before{content:"\f28d"}
10084
+ .brz-ed .nc-glyph-wifi-protected:before{content:"\f28e"}
10085
+ .brz-ed .nc-glyph-wifi-router:before{content:"\f28f"}
10086
+ .brz-ed .nc-glyph-wifi:before{content:"\f290"}
10087
+ .brz-ed .nc-glyph-wind-2:before{content:"\f291"}
10088
+ .brz-ed .nc-glyph-wind:before{content:"\f292"}
10089
+ .brz-ed .nc-glyph-window-add:before{content:"\f293"}
10090
+ .brz-ed .nc-glyph-window-code:before{content:"\f294"}
10091
+ .brz-ed .nc-glyph-window-delete:before{content:"\f295"}
10092
+ .brz-ed .nc-glyph-window-dev:before{content:"\f296"}
10093
+ .brz-ed .nc-glyph-window-paragraph:before{content:"\f297"}
10094
+ .brz-ed .nc-glyph-window-responsive:before{content:"\f298"}
10095
+ .brz-ed .nc-glyph-window-zoom-in:before{content:"\f299"}
10096
+ .brz-ed .nc-glyph-window-zoom-out:before{content:"\f29a"}
10097
+ .brz-ed .nc-glyph-wine-list:before{content:"\f29b"}
10098
+ .brz-ed .nc-glyph-wink-06:before{content:"\f29c"}
10099
+ .brz-ed .nc-glyph-wink-11:before{content:"\f29d"}
10100
+ .brz-ed .nc-glyph-wink-69:before{content:"\f29e"}
10101
+ .brz-ed .nc-glyph-witch-hat:before{content:"\f29f"}
10102
+ .brz-ed .nc-glyph-wolf:before{content:"\f2a0"}
10103
+ .brz-ed .nc-glyph-woman-2:before{content:"\f2a1"}
10104
+ .brz-ed .nc-glyph-woman-21:before{content:"\f2a2"}
10105
+ .brz-ed .nc-glyph-woman-24:before{content:"\f2a3"}
10106
+ .brz-ed .nc-glyph-woman-25:before{content:"\f2a4"}
10107
+ .brz-ed .nc-glyph-woman-down:before{content:"\f2a5"}
10108
+ .brz-ed .nc-glyph-woman-man:before{content:"\f2a6"}
10109
+ .brz-ed .nc-glyph-woman-up:before{content:"\f2a7"}
10110
+ .brz-ed .nc-glyph-woman:before{content:"\f2a8"}
10111
+ .brz-ed .nc-glyph-wood:before{content:"\f2a9"}
10112
+ .brz-ed .nc-glyph-wool-ball:before{content:"\f2aa"}
10113
+ .brz-ed .nc-glyph-worl-marker:before{content:"\f2ab"}
10114
+ .brz-ed .nc-glyph-world-2:before{content:"\f2ac"}
10115
+ .brz-ed .nc-glyph-world-pin:before{content:"\f2ad"}
10116
+ .brz-ed .nc-glyph-world:before{content:"\f2ae"}
10117
+ .brz-ed .nc-glyph-yogurt:before{content:"\f2af"}
10118
+ .brz-ed .nc-glyph-zip-54:before{content:"\f2b0"}
10119
+ .brz-ed .nc-glyph-zip-55:before{content:"\f2b1"}
10120
+ .brz-ed .nc-glyph-zombie:before{content:"\f2b2"}
10121
+ .brz-ed .nc-glyph-zoom-100:before{content:"\f2b3"}
10122
+ .brz-ed .nc-glyph-zoom-2:before{content:"\f2b4"}
10123
+ .brz-ed .nc-glyph-zoom-88:before{content:"\f2b5"}
10124
+ .brz-ed .nc-glyph-zoom-99:before{content:"\f2b6"}
10125
+ .brz-ed .nc-glyph-zoom-bold-in:before{content:"\f2b7"}
10126
+ .brz-ed .nc-glyph-zoom-bold-out:before{content:"\f2b8"}
10127
+ .brz-ed .nc-glyph-zoom-bold:before{content:"\f2b9"}
10128
+ .brz-ed .nc-glyph-zoom-e:before{content:"\f2ba"}
10129
+ .brz-ed .nc-glyph-zoom-in:before{content:"\f2bb"}
10130
+ .brz-ed .nc-glyph-zoom-out:before{content:"\f2bc"}
10131
+ .brz-ed .nc-glyph-zoom-split-in:before{content:"\f2bd"}
10132
+ .brz-ed .nc-glyph-zoom-split-out:before{content:"\f2be"}
10133
+ .brz-ed .nc-glyph-zoom-split:before{content:"\f2bf"}
10134
+ .brz-ed .nc-glyph-zoom-triangles:before{content:"\f2c0"}
10135
+ .brz-ed .nc-glyph-zoom:before{content:"\f2c1"}
10136
+ .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}
10137
+ .brz-ed .nc-outline{font-family:"Nucleo Outline"}
10138
+ .brz-ed .nc-glyph{font-family:"Nucleo Glyph"}
10139
+ .brz-ed .nc-icon.rotate-90{-webkit-transform:rotate(90deg);transform:rotate(90deg)}
10140
+ .brz-ed .nc-icon.rotate-180{-webkit-transform:rotate(180deg);transform:rotate(180deg)}
10141
+ .brz-ed .nc-icon.rotate-270{-webkit-transform:rotate(270deg);transform:rotate(270deg)}
10142
+ .brz-ed .nc-icon.flip-y{-webkit-transform:scale(-1,1);transform:scale(-1,1)}
10143
+ .brz-ed .nc-icon.flip-x{-webkit-transform:scale(1,-1);transform:scale(1,-1)}
10144
+ .brz-ed .brz-icon-svg{display:inline-block;width:1em;height:1em;stroke:none;max-width:none;position:relative;fill:currentColor;color:currentColor}
10145
+ .brz-ed .brz-icon-svg use{fill:inherit}
10146
+ .brz-ed .brz-icon-svg.grid-16{height:16px;width:16px}
10147
+ .brz-ed .brz-icon-svg.grid-24{height:24px;width:24px}
10148
+ .brz-ed .brz-icon-svg.glyph{fill:currentColor;stroke:none}
10149
+ .brz-ed .brz-icon-svg.outline{stroke:currentColor;fill:none}
10150
+ .brz-ed .brz-icon-svg.outline.stroke-2{stroke-width:2px}
10151
+ .brz-ed .brz-control__select{font-family:pn,"Open Sans",Arial,sans-serif;position:relative;width:112px}
10152
+ .brz-ed .brz-control__select .brz-ed-scroll-pane .brz-ed-tall-thumb{width:8px;background-color:transparent;border-radius:4px}
10153
+ .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}
10154
+ .brz-ed .brz-control__select .brz-ed-scroll-pane .brz-ed-wide-thumb{height:3px;background-color:#7b7b7b;border-radius:2px;top:3px}
10155
+ .brz-ed .brz-control__select .brz-ed-scroll-pane .brz-ed-tall-track{border-radius:0 4px 4px 0}
10156
+ .brz-ed .brz-control__select.opened .brz-control__select-options{visibility:visible;opacity:1}
10157
+ .brz-ed .brz-control__select .brz-ed-scroll-pane-content{border-right:none!important}
10158
+ .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}
10159
+ .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}
10160
+ .brz-ed .brz-control__select--bottom-left .brz-control__select-options,.brz-ed .brz-control__select--top-left .brz-control__select-options{left:0}
10161
+ .brz-ed .brz-control__select--bottom-right .brz-control__select-options,.brz-ed .brz-control__select--top-right .brz-control__select-options{right:0}
10162
+ .brz-ed .brz-control__select--active .brz-control__select-current{color:#3dbfe8}
10163
+ .brz-ed .brz-control__select__auto{width:auto}
10164
+ .brz-ed .brz-control__select-current{line-height:30px;height:30px;border-radius:4px;overflow:hidden}
10165
+ .brz-ed .brz-control__select-current .brz-control__select-option{border-bottom-color:transparent!important;padding-right:20px;text-overflow:ellipsis;overflow:hidden}
10166
+ .brz-ed .brz-icon-svg.brz-control__select--arrow{position:absolute;top:50%;right:12px;margin-top:-.5em;font-size:8px}
10167
+ .brz-ed .brz-control__select-current__icon{width:auto;height:auto;font-size:0;line-height:1;cursor:pointer}
10168
+ .brz-ed .brz-control__select-current__icon .brz-icon-svg{font-size:14px}
10169
+ .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}
10170
+ .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}
10171
+ .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}
10172
+ .brz-ed .brz-control__select-optgroup-label:last-child,.brz-ed .brz-control__select-option:last-child{border-bottom-color:transparent!important}
10173
+ .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%}
10174
+ .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)}
10175
+ .brz-ed .brz-control__select-optgroup-label{cursor:auto}
10176
+ .brz-ed .brz-control__select-optgroup .brz-control__select-option{padding-left:20px;border-bottom-color:rgba(255,255,255,.07)!important}
10177
+ .brz-ed .brz-control__select-optgroup:last-child .brz-control__select-option:last-child{border-bottom-color:transparent!important}
10178
+ .brz-ed .brz-control__select--dark .brz-control__select-current,.brz-ed .brz-control__select--dark .brz-control__select-options{background-color:#383e48}
10179
+ .brz-ed .brz-control__select--dark .brz-control__select-current{color:rgba(255,255,255,.85)}
10180
+ .brz-ed .brz-control__select--dark .brz-control__select-current:hover{background-color:#383e48}
10181
+ .brz-ed .brz-control__select--dark.brz-control__select--active .brz-control__select-current{color:#3dbfe8}
10182
+ .brz-ed .brz-control__select--dark .brz-control__select-option{color:rgba(255,255,255,.85)}
10183
+ .brz-ed .brz-control__select--dark .brz-control__select-current__icon{background-color:transparent}
10184
+ .brz-ed .brz-control__select--dark .brz-control__select-current__icon:hover{background-color:transparent}
10185
+ .brz-ed .brz-control__select--dark .brz-control__select-optgroup-label{color:#828b92}
10186
+ .brz-ed .brz-control__select--light .brz-control__select-current,.brz-ed .brz-control__select--light .brz-control__select-options{background-color:#f2f2f2}
10187
+ .brz-ed .brz-control__select--light .brz-control__select-current__icon{background-color:transparent}
10188
+ .brz-ed .brz-control__select--light .brz-control__select-current__icon:hover{background-color:transparent}
10189
+ .brz-ed .brz-control__select--light .brz-control__select-current{color:#656b6f}
10190
+ .brz-ed .brz-control__select--light .brz-control__select-current:hover{background-color:#f2f2f2}
10191
+ .brz-ed .brz-control__select--light .brz-control__select-option{color:#656b6f;border-bottom-color:#e6e6e6}
10192
+ .brz-ed .brz-control__select--white .brz-control__select-current,.brz-ed .brz-control__select--white .brz-control__select-options{background-color:#fff}
10193
+ .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)}
10194
+ .brz-ed .brz-control__select--white .brz-control__select-current__icon{background-color:transparent}
10195
+ .brz-ed .brz-control__select--white .brz-control__select-current__icon:hover{background-color:transparent}
10196
+ .brz-ed .brz-control__select--white .brz-control__select-current{color:#383e48}
10197
+ .brz-ed .brz-control__select--white .brz-control__select-current:hover{background-color:#fff}
10198
+ .brz-ed .brz-control__select--white .brz-control__select-option{color:#383e48;border-bottom-color:rgba(71,76,84,.07)}
10199
+ .brz-ed .brz-control__select--small .brz-control__select{width:62px}
10200
+ .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}
10201
+ .brz-ed .brz-control__select--medium .brz-control__select-option{font-size:14px;padding-left:15px;padding-right:15px}
10202
+ .brz-ed .brz-control__select--medium .brz-control__select--arrow{font-size:10px;right:14px}
10203
+ .brz-ed .brz-control__select--full-width{width:100%}
10204
+ .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}
10205
+ .brz-ed .brz-ed-popup-control__select--light .brz-control__select-current{color:#3dbfe8}
10206
+ .brz-ed .brz-ed-popup-control__select--light .brz-control__select-current:hover{background-color:#fff}
10207
+ .brz-ed .brz-ed-popup-control__select--light .brz-control__select-current .brz-control__select-option{color:#3dbfe8}
10208
+ .brz-ed .brz-ed-popup-control__select--light .brz-control__select-option{color:#292e37}
10209
+ .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}
10210
+ .brz-ed .brz-ed-popup-control-select-light.opened .brz-control__select-current{border-bottom-left-radius:0;border-bottom-right-radius:0}
10211
+ .brz-ed .brz-ed-popup-control-select-light.opened .brz-control__select-current .brz-control__select-option{border-bottom:1px solid #f4f4f4!important}
10212
+ .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}
10213
+ .brz-ed .brz-ed-popup-control-select-light.brz-control__select{width:300px}
10214
+ .brz-ed .brz-ed-popup-control-select-light .brz-control__select-current{background-color:#fff;height:40px;color:#3dbfe8;font-size:14px;font-family:pn,"Open Sans",Arial,sans-serif;font-weight:400}
10215
+ .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}
10216
+ .brz-ed .brz-ed-popup-control-select-light .brz-control__select-current .brz-control__select-option{border-bottom:0;color:#3dbfe8}
10217
+ .brz-ed .brz-ed-popup-control-select-light .brz-control__select-current .brz-control__select-option:hover{background-color:#fff;color:#3dbfe8}
10218
+ .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}
10219
+ .brz-ed .brz-ed-popup-control-select-light .brz-control__select-option{font-size:14px;height:40px;line-height:41px;font-family:pn,"Open Sans",Arial,sans-serif;padding-left:15px;padding-right:15px;letter-spacing:.1px;color:rgba(41,46,55,.8);border-bottom:0}
10220
+ .brz-ed .brz-ed-popup-control-select-light .brz-control__select-option:not(:first-child){border-top:1px solid #f4f4f4}
10221
+ .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}
10222
+ .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}
10223
+ .brz-ed .brz-ed-popup-control-select-light .brz-ed-scroll-pane .brz-ed-tall-thumb:after{opacity:0}
10224
+ .brz-ed .brz-ed-popup-control-select-light .brz-ed-scroll-pane .brz-ed-tall-track{width:5px;right:4px}
10225
+ .brz-ed .brz-control__select-population .brz-control__select-current{color:#fff;font-size:0;-webkit-transition:.2s linear color;transition:.2s linear color}
10226
+ .brz-ed .brz-control__select-population .brz-control__select-current:hover{color:#3dbfe8!important;-webkit-transition:.2s linear color;transition:.2s linear color}
10227
+ .brz-ed .brz-control__select-population.brz-control__select--active .brz-control__select-current{color:#fff}
10228
+ .brz-ed .brz-control__select-population.opened .brz-control__select-current{color:#3dbfe8}
10229
+ .brz-ed .brz-control__select-population .brz-control__select-options{width:120px}
10230
+ .brz-ed .brz-control__portal-select{position:static}
10231
+ .brz-ed .brz-control__portal-select .brz-control__select-options{z-index:1110;opacity:1;visibility:visible;min-width:auto}
10232
+ .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}
10233
+ .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}
10234
+ .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)}
10235
+ .brz-ed .brz-ed-control__switch--check{left:5px;opacity:0}
10236
+ .brz-ed .brz-ed-control__switch--un-check{right:5px}
10237
+ .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}
10238
+ .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%)}
10239
+ .brz-ed .brz-ed-control__switch--handle:before{top:10px}
10240
+ .brz-ed .brz-ed-control__switch--handle:after{height:7px;border-bottom:1px solid #34beea}
10241
+ .brz-ed .brz-ed-control__switch-input{position:absolute;top:0;left:0;opacity:0}
10242
+ .brz-ed .brz-ed-control__switch-input:checked~.brz-ed-control__switch-arrows{background:#3dbfe8}
10243
+ .brz-ed .brz-ed-control__switch-input:checked~.brz-ed-control__switch-arrows .brz-ed-control__switch--check{opacity:1}
10244
+ .brz-ed .brz-ed-control__switch-input:checked~.brz-ed-control__switch-arrows .brz-ed-control__switch--un-check{opacity:0}
10245
+ .brz-ed .brz-ed-control__switch-input:checked~.brz-ed-control__switch--handle{left:25px}
10246
+ .brz-ed .brz-ed-control__switch--light .brz-ed-control__switch-arrows{background:#c7c9cd}
10247
+ .brz-ed .brz-ed-control__switch--light .brz-ed-control__switch--handle:after{border-top-color:#bfbfbf;border-bottom-color:#bfbfbf}
10248
+ .brz-ed .brz-ed-control__switch--light .brz-ed-control__switch--handle:before{border-top-color:#bfbfbf}
10249
+ .brz-ed .brz-ed-control__slider .brz-ed-control__slider--value{position:relative;cursor:pointer}
10250
+ .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}
10251
+ .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}
10252
+ .brz-ed .brz-ed-control__slider .ui-slider-vertical:before{bottom:-8px}
10253
+ .brz-ed .brz-ed-control__slider .ui-slider-vertical:after{top:-8px}
10254
+ .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}
10255
+ .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}
10256
+ .brz-ed .brz-ed-control__slider .ui-slider-horizontal:before{left:-9px}
10257
+ .brz-ed .brz-ed-control__slider .ui-slider-horizontal:after{right:-9px}
10258
+ .brz-ed .brz-ed-control__slider .ui-slider-horizontal .ui-slider-handle{top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);margin-left:-9px}
10259
+ .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%)}
10260
+ .brz-ed .brz-ed-control__slider .ui-slider-horizontal .ui-slider-handle:after{top:6px}
10261
+ .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}
10262
+ .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%)}
10263
+ .brz-ed .brz-ed-control__slider .ui-slider-handle:after{height:7px;border-bottom:1px solid #3dbfe8}
10264
+ .brz-ed .brz-ed-control__slider .ui-state-default,.brz-ed .brz-ed-control__slider .ui-widget-content{border:0}
10265
+ .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}
10266
+ .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%)}
10267
+ .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%)}
10268
+ .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%)}
10269
+ .brz-ed .brz-ed-option__slider--contrast .rc-slider-rail{background-color:#454a50}
10270
+ .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}
10271
+ .brz-ed .rc-slider *{-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-tap-highlight-color:transparent}
10272
+ .brz-ed .rc-slider-rail{position:relative;display:block;width:calc(100% + 18px);height:4px;background-color:#3dbfe8;border-radius:4px;left:-9px}
10273
+ .brz-ed .rc-slider-track{display:none}
10274
+ .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}
10275
+ .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%)}
10276
+ .brz-ed .rc-slider-handle:before{top:6px}
10277
+ .brz-ed .rc-slider-handle:after{height:4px;border-bottom:1px solid #3dbfe8;top:9px}
10278
+ .brz-ed .rc-slider-handle:hover{border-color:#57c5f7}
10279
+ .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}
10280
+ .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}
10281
+ .brz-ed .rc-slider-mark{position:absolute;top:18px;left:0;width:100%;font-size:12px}
10282
+ .brz-ed .rc-slider-mark-text{position:absolute;display:inline-block;vertical-align:middle;text-align:center;cursor:pointer;color:#999}
10283
+ .brz-ed .rc-slider-mark-text-active{color:#666}
10284
+ .brz-ed .rc-slider-step{position:absolute;width:100%;height:4px;background:0 0}
10285
+ .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}
10286
+ .brz-ed .rc-slider-dot-active{border-color:#96dbfa}
10287
+ .brz-ed .rc-slider-disabled{background-color:#e9e9e9}
10288
+ .brz-ed .rc-slider-disabled .rc-slider-track{background-color:#ccc}
10289
+ .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}
10290
+ .brz-ed .rc-slider-disabled .rc-slider-dot,.brz-ed .rc-slider-disabled .rc-slider-mark-text{cursor:not-allowed!important}
10291
+ .brz-ed .rc-slider-vertical{width:14px;height:100px;padding:0 5px}
10292
+ .brz-ed .rc-slider-vertical .rc-slider-rail{height:100%;width:4px}
10293
+ .brz-ed .rc-slider-vertical .rc-slider-track{left:5px;bottom:0;width:4px}
10294
+ .brz-ed .rc-slider-vertical .rc-slider-handle{margin-left:-5px;margin-bottom:-7px;-ms-touch-action:pan-y;touch-action:pan-y}
10295
+ .brz-ed .rc-slider-vertical .rc-slider-mark{top:0;left:18px;height:100%}
10296
+ .brz-ed .rc-slider-vertical .rc-slider-step{height:100%;width:4px}
10297
+ .brz-ed .rc-slider-vertical .rc-slider-dot{left:2px;margin-bottom:-4px}
10298
+ .brz-ed .rc-slider-vertical .rc-slider-dot:first-child{margin-bottom:-4px}
10299
+ .brz-ed .rc-slider-vertical .rc-slider-dot:last-child{margin-bottom:-4px}
10300
+ .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}
10301
+ .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}
10302
+ .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}
10303
+ .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}
10304
+ .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)}
10305
+ .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)}
10306
+ .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}
10307
+ .brz-ed .rc-slider-tooltip *{-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-tap-highlight-color:transparent}
10308
+ .brz-ed .rc-slider-tooltip-hidden{display:none}
10309
+ .brz-ed .rc-slider-tooltip-placement-top{padding:4px 0 8px}
10310
+ .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}
10311
+ .brz-ed .rc-slider-tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}
10312
+ .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}
10313
+ .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}
10314
+ .brz-ed .brz-ed-control__stepper--arrows,.brz-ed .brz-ed-control__stepper--value{position:relative;min-width:0}
10315
+ .brz-ed .brz-ed-control__stepper--value{font-family:pn,"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%}
10316
+ .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}
10317
+ .brz-ed .brz-ed-control__stepper--arrows{width:35%;-ms-flex-preferred-size:35%;flex-basis:35%;height:30px}
10318
+ .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}
10319
+ .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}
10320
+ .brz-ed .brz-ed-control__stepper--down:hover,.brz-ed .brz-ed-control__stepper--up:hover{color:#3dbfe8}
10321
+ .brz-ed .brz-ed-control__stepper--up{top:0}
10322
+ .brz-ed .brz-ed-control__stepper--up .brz-icon-svg{bottom:1px}
10323
+ .brz-ed .brz-ed-control__stepper--down{bottom:0}
10324
+ .brz-ed .brz-ed-control__stepper--down .brz-icon-svg{top:1px}
10325
+ .brz-ed .brz-ed-control-radio-option{color:#626b70;-webkit-transition:.2s linear color;transition:.2s linear color}
10326
+ .brz-ed .brz-ed-control-radio-option--active{color:#3dbfe8;-webkit-transition:.2s linear color;transition:.2s linear color}
10327
+ .brz-ed .brz-ed-control-radio-option:hover{color:#3dbfe8;-webkit-transition:.2s linear color;transition:.2s linear color}
10328
+ .brz-ed .brz-ed-control__tabs .brz-ed-control__tab{margin:0}
10329
+ .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:pn,"Open Sans",Arial,sans-serif;font-size:13px;float:none}
10330
+ .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}
10331
+ .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}
10332
+ .brz-ed .brz-ed-control__tabs:not(.brz-ed-control__tabs__left) .brz-ed-control__tab.active{border-bottom-color:#3dbfe8}
10333
+ .brz-ed .brz-ed-control__tabs:not(.brz-ed-control__tabs__left) .brz-ed-control__tab:not(:last-child){margin-right:15px}
10334
+ .brz-ed .brz-ed-control__tabs:not(.brz-ed-control__tabs__left) .brz-ed-control__tab__icon{height:42px}
10335
+ .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}
10336
+ .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}
10337
+ .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}
10338
+ .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}
10339
+ .brz-ed .brz-ed-control__tabs__left .brz-ed-control__tab.active{color:#3dbfe8;background-color:rgba(3,8,15,.92)}
10340
+ .brz-ed .brz-ed-control__tabs__editor.brz-ed-control__tabs__editor{width:144px;margin-left:10px;margin-right:10px;padding:0}
10341
+ .brz-ed .brz-ed-control__tabs__editor.brz-ed-control__tabs__editor+.brz-ed-control__tab__content{margin-bottom:-9px}
10342
+ .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%}
10343
+ .brz-ed .brz-ed-input__search:active,.brz-ed .brz-ed-input__search:focus{background:0 0;color:rgba(255,255,255,.6)}
10344
+ .brz-ed .brz-ed-input__search::-webkit-input-placeholder{color:rgba(234,241,255,.2);font-style:italic;font-size:1em;letter-spacing:.25px}
10345
+ .brz-ed .brz-ed-input__search--auto-complete{color:#fff}
10346
+ .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}
10347
+ .brz-ed .brz-ed-input__search__icon.active{color:#3dbfe8}
10348
+ .brz-ed .brz-ed-control-multiPicker--body{margin-top:20px}
10349
+ .brz-ed .brz-ed-sidebar-row .brz-ed-options--multi-picker{display:block}
10350
+ .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}
10351
+ .brz-ed .brz-ed-control__radio-group--active{color:#3dbfe8}
10352
+ .brz-ed .brz-ed-tooltip__content{position:relative;z-index:1}
10353
+ .brz-ed .brz-ed-tooltip__overlay{position:absolute;top:0;left:0;z-index:1100}
10354
+ .brz-ed .brz-ed-tooltip--auto{width:auto}
10355
+ .brz-ed .brz-ed-tooltip--small{width:171px}
10356
+ .brz-ed .brz-ed-tooltip--medium{width:255px}
10357
+ .brz-ed .brz-ed-tooltip--big{width:305px}
10358
+ .brz-ed .brz-ed-popover__inner.brz-ed-tooltip--large,.brz-ed .brz-ed-tooltip--large{width:385px}
10359
+ .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}
10360
+ .brz-ed .brz-ed-tooltip__static .brz-ed-tooltip--top-center{top:auto;bottom:calc(100% + 9px);left:auto}
10361
+ .brz-ed .brz-ed-tooltip__static .brz-ed-tooltip--bottom-center{top:calc(100% + 9px);left:auto}
10362
+ .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}
10363
+ .brz-ed .brz-ed-tooltip__static .brz-ed-tooltip--bottom-left,.brz-ed .brz-ed-tooltip__static .brz-ed-tooltip--top-left{left:-15px}
10364
+ .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)}
10365
+ .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)}
10366
+ .brz-ed .brz-ed-tooltip--delay-1{-webkit-animation-delay:.6s;animation-delay:.6s}
10367
+ .brz-ed .brz-ed-tooltip--delay-2{-webkit-animation-delay:1s;animation-delay:1s}
10368
+ .brz-ed .brz-ed-tooltip-content__pro{font-family:pn,"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}
10369
+ .brz-ed .brz-ed-tooltip-content__pro-title{margin-bottom:17px}
10370
+ .brz-ed .brz-ed-tooltip-content__pro-body .brz-icon-svg{font-size:10px;margin-right:8px}
10371
+ .brz-ed .brz-ed-tooltip-content__pro .brz-p{font-size:inherit;font-weight:600}
10372
+ .brz-ed .brz-ed-control__focal-point{position:relative;text-align:center}
10373
+ .brz-ed .brz-ed-control__focal-point:after{display:inline-block;height:100%;vertical-align:middle;content:""}
10374
+ .brz-ed .brz-ed-control__focal-point__setter{text-align:center;display:inline-block;vertical-align:middle;position:relative;width:100%}
10375
+ .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)}
10376
+ .brz-ed .brz-ed-control__focal-point__setter .brz-img{max-width:140px;max-height:140px;height:100%}
10377
+ .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}
10378
+ .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}
10379
+ .brz-ed .brz-ed-control__focal-point__upload:hover{border-color:#5e6470;color:#5e646f}
10380
+ .brz-ed .brz-ed-control__focal-point__upload .brz-icon-svg{font-size:inherit!important}
10381
+ .brz-ed .brz-ed-control__focal-point__upload--loading{cursor:progress}
10382
+ .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}
10383
+ .brz-ed .brz-ed-control__focal-point__delete .brz-icon-svg{font-size:inherit!important}
10384
+ .brz-ed .brz-ed-control__focal-point__label--disable .brz-ed-control__focal-point__upload{cursor:no-drop}
10385
+ .brz-ed .brz-ed-control__icon-setter{position:relative}
10386
+ .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}
10387
+ .brz-ed .brz-ed-control__icon-setter__box:hover{border-color:#5e6470;color:#5e646f}
10388
+ .brz-ed .brz-ed-control__icon-setter--active{color:#fff;display:inline-block;font-size:0}
10389
+ .brz-ed .brz-ed-control__input,.brz-ed .brz-ed-option__input__population{font-family:pn,"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}
10390
+ .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}
10391
+ .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}
10392
+ .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}
10393
+ .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}
10394
+ .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}
10395
+ .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}
10396
+ .brz-ed .brz-ed-control__input--large{max-width:136px}
10397
+ .brz-ed .brz-ed-control__input--medium{max-width:112px}
10398
+ .brz-ed .brz-ed-control__input--small{max-width:62px}
10399
+ .brz-ed .brz-ed-control__input--auto{max-width:100%}
10400
+ .brz-ed .brz-ed-control__textarea{font-family:pn,"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}
10401
+ .brz-ed .brz-ed-control__textarea::-webkit-input-placeholder{color:rgba(234,241,255,.2);font-style:italic;font-size:1em}
10402
+ .brz-ed .brz-ed-control__textarea:-moz-placeholder{color:rgba(234,241,255,.2);font-style:italic;font-size:1em}
10403
+ .brz-ed .brz-ed-control__textarea::-moz-placeholder{color:rgba(234,241,255,.2);font-style:italic;font-size:1em}
10404
+ .brz-ed .brz-ed-control__textarea:-ms-input-placeholder{color:rgba(234,241,255,.2);font-style:italic;font-size:1em}
10405
+ .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}
10406
+ .brz-ed .brz-ed-control__color-palette__item{width:18px;height:18px;border-radius:2px;margin-left:2px;cursor:pointer;border:1px solid #3a3d43}
10407
+ .brz-ed .brz-ed-control__color-palette__item:first-child{margin-left:0}
10408
+ .brz-ed .brz-ed-control__color-palette__item.active{border:2px solid #fff}
10409
+ .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}
10410
+ .brz-ed .brz-ed-control__color-palette__icon:hover{color:#3dbfe8}
10411
+ .brz-ed .brz-ed-control__color-palette-editor{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}
10412
+ .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}
10413
+ .brz-ed .brz-ed-control__color-palette-editor__item.active,.brz-ed .brz-ed-control__color-palette-editor__item:hover{border:2px solid #3dbfe8}
10414
+ .brz-ed .brz-ed-control__color-palette-editor__item:first-child{margin-left:0}
10415
+ .brz-ed .brz-ed-sidebar-control__color-palette2-editor{margin-bottom:32px!important}
10416
+ .brz-ed .color-picker-body{margin-bottom:2px;display:-webkit-box;display:-ms-flexbox;display:flex}
10417
+ .brz-ed .color-picker-body .color-picker-saturation{width:153px;height:153px;position:relative;cursor:move}
10418
+ .brz-ed .color-picker-body .color-picker-saturation>div{border-radius:3px 3px 4px 4px}
10419
+ .brz-ed .color-picker-body .color-picker-saturation .color-picker-saturation-body{position:absolute;top:0;right:0;bottom:0;left:0}
10420
+ .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))}
10421
+ .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))}
10422
+ .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}
10423
+ .brz-ed .color-picker-body .color-picker-saturation .color-picker-saturation-body .saturation-pointer{position:absolute;cursor:move}
10424
+ .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)}
10425
+ .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}
10426
+ .brz-ed .color-picker-body .color-picker-alpha .hue-vertical,.brz-ed .color-picker-body .color-picker-hue .hue-vertical{border-radius:3px}
10427
+ .brz-ed .color-picker-body .color-picker-hue .hue{position:absolute;top:0;right:0;bottom:0;left:0}
10428
+ .brz-ed .color-picker-body .color-picker-hue .hue-container{padding:0 2px;position:relative;height:100%}
10429
+ .brz-ed .color-picker-body .color-picker-hue .hue-pointer{position:absolute}
10430
+ .brz-ed .color-picker-body .color-picker-hue .color-picker-pointer{-webkit-transform:translate(-1px,-7px);transform:translate(-1px,-7px)}
10431
+ .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)}
10432
+ .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%)}
10433
+ .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%)}
10434
+ .brz-ed .color-picker-body .color-picker-alpha{background-color:#fff;border-radius:3px 3px 4px 4px}
10435
+ .brz-ed .color-picker-body .color-picker-alpha div:not(.color-picker-pointer){border-radius:3px}
10436
+ .brz-ed .color-picker-body .color-picker-alpha div>div>div:not(.color-picker-pointer){background-size:8px!important}
10437
+ .brz-ed .color-picker-body .color-picker-alpha .color-picker-pointer{-webkit-transform:translate(-4px,-7px);transform:translate(-4px,-7px);position:relative}
10438
+ .brz-ed .color-picker-body .color-picker-alpha .color-picker-pointer .color-picker-pointer-tooltip{position:absolute;left:18px;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);width:42px;height:27px;font-size:12px;line-height:2.2;border-radius:2px;background-color:rgba(3,8,15,.92);-webkit-box-shadow:0 0 5px 0 rgba(0,0,0,.5);box-shadow:0 0 5px 0 rgba(0,0,0,.5);text-align:center;font-family:pn,"Open Sans",Arial,sans-serif;color:rgba(255,255,255,.85)}
10439
+ .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)}
10440
+ .brz-ed .color-picker-body .color-picker-alpha .color-picker-alpha-body{position:absolute;top:0;left:0;bottom:0;right:0}
10441
+ .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}
10442
+ .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}
10443
+ .brz-ed .color-picker-body .color-picker-alpha .color-picker-alpha-body .color-picker-alpha-container{position:relative;height:100%;margin:0 3px}
10444
+ .brz-ed .color-picker-body .color-picker-alpha .color-picker-alpha-body .color-picker-alpha-container .color-picker-alpha-pointer{position:absolute}
10445
+ .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)}
10446
+ .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}
10447
+ .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}
10448
+ .brz-ed .color-picker-preset-colors .color-picker-swatch-wrap{width:20px;height:20px;margin-left:2px}
10449
+ .brz-ed .brz-ed-control__colorPicker2{position:relative}
10450
+ .brz-ed .color-picker2-body{margin-bottom:2px;display:-webkit-box;display:-ms-flexbox;display:flex}
10451
+ .brz-ed .color-picker2-body .color-picker2-saturation{width:153px;height:153px;position:relative;cursor:move}
10452
+ .brz-ed .color-picker2-body .color-picker2-saturation>div{border-radius:3px 3px 4px 4px}
10453
+ .brz-ed .color-picker2-body .color-picker2-saturation .color-picker2-saturation-body{position:absolute;top:0;right:0;bottom:0;left:0}
10454
+ .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))}
10455
+ .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))}
10456
+ .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}
10457
+ .brz-ed .color-picker2-body .color-picker2-saturation .color-picker2-saturation-body .saturation-pointer{position:absolute;cursor:move}
10458
+ .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)}
10459
+ .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}
10460
+ .brz-ed .color-picker2-body .color-picker2-alpha .hue-vertical,.brz-ed .color-picker2-body .color-picker2-hue .hue-vertical{border-radius:3px}
10461
+ .brz-ed .color-picker2-body .color-picker2-hue .hue{position:absolute;top:0;right:0;bottom:0;left:0}
10462
+ .brz-ed .color-picker2-body .color-picker2-hue .hue-container{padding:0 2px;position:relative;height:100%}
10463
+ .brz-ed .color-picker2-body .color-picker2-hue .hue-pointer{position:absolute}
10464
+ .brz-ed .color-picker2-body .color-picker2-hue .color-picker2-pointer{-webkit-transform:translate(-1px,-7px);transform:translate(-1px,-7px)}
10465
+ .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)}
10466
+ .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%)}
10467
+ .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%)}
10468
+ .brz-ed .color-picker2-body .color-picker2-alpha{background-color:#fff;border-radius:3px 3px 4px 4px}
10469
+ .brz-ed .color-picker2-body .color-picker2-alpha div:not(.color-picker2-pointer){border-radius:3px}
10470
+ .brz-ed .color-picker2-body .color-picker2-alpha div>div>div:not(.color-picker2-pointer){background-size:8px!important}
10471
+ .brz-ed .color-picker2-body .color-picker2-alpha .color-picker2-pointer{-webkit-transform:translate(-4px,-7px);transform:translate(-4px,-7px);position:relative}
10472
+ .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:pn,"Open Sans",Arial,sans-serif;color:rgba(255,255,255,.85)}
10473
+ .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)}
10474
+ .brz-ed .color-picker2-body .color-picker2-alpha .color-picker2-alpha-body{position:absolute;top:0;left:0;bottom:0;right:0}
10475
+ .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}
10476
+ .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}
10477
+ .brz-ed .color-picker2-body .color-picker2-alpha .color-picker2-alpha-body .color-picker2-alpha-container{position:relative;height:100%;margin:0 3px}
10478
+ .brz-ed .color-picker2-body .color-picker2-alpha .color-picker2-alpha-body .color-picker2-alpha-container .color-picker2-alpha-pointer{position:absolute}
10479
+ .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)}
10480
+ .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}
10481
+ .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}
10482
+ .brz-ed .color-picker2-preset-colors .color-picker2-swatch-wrap{width:20px;height:20px;margin-left:2px}
10483
+ .brz-ed .brz-ed-control__colorPicker3 .brz-ed-control__color-palette{margin-top:10px}
10484
+ .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}
10485
+ .brz-ed .brz-ed-control__colorPickerSelect .brz-control__select{position:absolute;z-index:2;font-size:12px;margin-top:6px;margin-left:4px}
10486
+ .brz-ed .brz-ed-control__colorPickerSelect .brz-control__select .brz-control__select-current{height:24px}
10487
+ .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}
10488
+ .brz-ed .brz-ed-control__boxShadow{position:relative}
10489
+ .brz-ed .brz-ed-control__boxShadow .brz-ed-option__multi-input{width:50%;position:absolute;bottom:10px;right:17px}
10490
+ .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}
10491
+ .brz-ed .brz-ed-listbox .brz-ed-scroll-pane .brz-ed-tall-thumb{width:8px;background-color:transparent;border-radius:4px}
10492
+ .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}
10493
+ .brz-ed .brz-ed-listbox .brz-ed-scroll-pane .brz-ed-wide-thumb{height:3px;background-color:#7b7b7b;border-radius:2px;top:3px}
10494
+ .brz-ed .brz-ed-listbox .brz-ed-scroll-pane .brz-ed-tall-track{border-radius:0 4px 4px 0}
10495
+ .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}
10496
+ .brz-ed .brz-ed-listbox__item:last-child{border-bottom-color:transparent!important}
10497
+ .brz-ed .brz-ed-listbox__item--active{color:#3dbfe8;-webkit-transition:color .15s linear;transition:color .15s linear}
10498
+ .brz-ed .brz-ed-listbox__item--disable{cursor:default}
10499
+ .brz-ed .brz-control__select2{font-family:pn,"Open Sans",Arial,sans-serif}
10500
+ .brz-ed .brz-control__select2-value-container{line-height:30px;height:30px;border-radius:4px;font-size:13px;letter-spacing:.25px}
10501
+ .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}
10502
+ .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}
10503
+ .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}
10504
+ .brz-ed .brz-control__select2-tag{height:20px;padding:5px;line-height:1;color:#fff;margin:0 2px 5px}
10505
+ .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}
10506
+ .brz-ed .brz-control__select2-tag .brz-icon-svg:hover{color:#3dbfe8;-webkit-transition:.2s color linear;transition:.2s color linear}
10507
+ .brz-ed .brz-control__select2-menu{font-family:pn,"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}
10508
+ .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}
10509
+ .brz-ed .brz-control__select2-option:last-child{border-bottom-color:transparent}
10510
+ .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}
10511
+ .brz-ed .brz-control__select2-scroll-pane .brz-ed-scroll-inner{height:120px;overflow:hidden}
10512
+ .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}
10513
+ .brz-ed .brz-control__select2--light .brz-control__select2-tag{background-color:#383e48;color:#fff}
10514
+ .brz-ed .brz-control__select2--light .brz-control__select2-menu{background-color:#fff}
10515
+ .brz-ed .brz-control__select2--light .brz-control__select2-option{border-bottom:1px solid #e6e6e6}
10516
+ .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}
10517
+ .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:pn,"Open Sans",Arial,sans-serif;font-size:13px;line-height:normal;min-height:51px;border-bottom:1px solid rgba(255,255,255,.1);margin-bottom:-1px}
10518
+ .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}
10519
+ .brz-ed .brz-ed-popover__inner--icon{-webkit-transition:color .2s linear;transition:color .2s linear}
10520
+ .brz-ed .brz-ed-popover__inner--icon:hover{color:#3dbfe8;-webkit-transition:color .2s linear;transition:color .2s linear}
10521
+ .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}
10522
+ .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}
10523
+ .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}
10524
+ .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}
10525
+ .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}
10526
+ .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}
10527
+ .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}
10528
+ .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}
10529
+ .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}
10530
+ .brz-ed .brz-ed-control__tabs__content__left{min-height:89px}
10531
+ .brz-ed .brz-ed-tabs__option--inline+.brz-ed-option__advanced{border-top:1px solid rgba(255,255,255,.1)}
10532
+ .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}
10533
+ .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}
10534
+ .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}
10535
+ .brz-ed .brz-ed-option__block.brz-ed-option__slider{padding-top:15px!important}
10536
+ .brz-ed .brz-ed-option__block .brz-ed-option__input-container,.brz-ed .brz-ed-option__block .brz-input{width:100%;max-width:100%}
10537
+ .brz-ed .brz-ed-option__block .brz-ed-option__input-number-wrap{position:relative}
10538
+ .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}
10539
+ .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}
10540
+ .brz-ed .brz-ed-option__advanced:hover{color:#fff}
10541
+ .brz-ed .brz-ed-option__font-style-editor__title,.brz-ed .brz-ed-option__label{font-family:pn,"Open Sans",Arial,sans-serif;font-size:13px;color:#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}
10542
+ .brz-ed .brz-ed-option__slider__label{-ms-flex-preferred-size:65px;flex-basis:65px}
10543
+ .brz-ed .brz-ed-grid__options,.brz-ed .brz-ed-popover__options{height:100%;width:100%;-ms-flex-preferred-size:100%;flex-basis:100%}
10544
+ .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}
10545
+ .brz-ed .brz-ed-toolbar__item>.brz-ed-option__advanced{border:none;color:inherit;-webkit-transition:color .2s linear;transition:color .2s linear}
10546
+ .brz-ed .brz-ed-toolbar__item>.brz-ed-option__advanced:hover{color:#3dbfe8;-webkit-transition:color .2s linear;transition:color .2s linear}
10547
+ .brz-ed .brz-ed-toolbar__item>.brz-ed-option__advanced .brz-icon-svg{font-size:16px}
10548
+ .brz-ed .brz-ed-option__button{-webkit-transition:color .2s linear;transition:color .2s linear}
10549
+ .brz-ed .brz-ed-option__button:hover{-webkit-transition:color .2s linear;transition:color .2s linear;color:#3dbfe8}
10550
+ .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}
10551
+ .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}
10552
+ .brz-ed .floating-action-button:before{width:16px;height:2px}
10553
+ .brz-ed .floating-action-button:after{width:2px;height:16px}
10554
+ .brz-ed .floating-action-button:hover{background:#03080f}
10555
+ .brz-ed .floating-action-button--icon{color:#fff;font-size:16px}
10556
+ .brz-ed .floating-action-button--icon .brz-icon-svg{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}
10557
+ .brz-ed .floating-action-button--icon:after,.brz-ed .floating-action-button--icon:before{display:none}
10558
+ .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}
10559
+ .brz-ed .brz-ed-option-tools:after,.brz-ed .brz-ed-option-tools:before{content:'';position:absolute}
10560
+ .brz-ed .brz-ed-option-tools:after{top:15px;width:22px;height:1px}
10561
+ .brz-ed .brz-ed-option-tools:before{top:32px;width:1px;height:22px}
10562
+ .brz-ed .brz-ed-option-tools i{position:absolute;top:8px;left:7px}
10563
+ .brz-ed .brz-ed-control-tabs-options{position:relative}
10564
+ .brz-ed .brz-ed-control-tabs-options>.brz-ed-options-tabs--label{position:absolute;top:7px}
10565
+ .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}
10566
+ .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}
10567
+ .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%)}
10568
+ .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}
10569
+ .brz-ed .brz-ed-control-tabs-options>.brz-ed-control__tabs>.brz-ed-control__tab.active{background-color:#3dbfe8}
10570
+ .brz-ed .brz-ed-control-tabs-options>.brz-ed-control__tabs>.brz-ed-control__tab:first-child{border-radius:3px 0 0 3px}
10571
+ .brz-ed .brz-ed-control-tabs-options>.brz-ed-control__tabs>.brz-ed-control__tab:last-child{border-radius:0 3px 3px 0}
10572
+ .brz-ed .brz-ed-tabs__option--inline{position:relative}
10573
+ .brz-ed .brz-ed-tabs__option--inline .brz-ed-control__tabs{margin-bottom:0}
10574
+ .brz-ed .brz-ed-tabs__option--inline .brz-ed-control__tab .brz-span{font-weight:600}
10575
+ .brz-ed .brz-ed-grid__typography--sidebar .brz-ed-control__tabs{margin-bottom:5px}
10576
+ .brz-ed .brz-ed-grid__option__gradient{height:22px}
10577
+ .brz-ed .brz-ed-grid__option__gradient .brz-ed-control__range{padding:6px 14px 0}
10578
+ .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}
10579
+ .brz-ed .brz-ed-option__range .rc-slider{width:calc(100% - 16px);margin-left:8px;height:22px}
10580
+ .brz-ed .brz-ed-option__range .rc-slider-rail{height:12px;width:calc(100% + 16px);left:-8px}
10581
+ .brz-ed .brz-ed-option__range .rc-slider-track{display:none}
10582
+ .brz-ed .brz-ed-option__range .rc-slider-step{display:none}
10583
+ .brz-ed .brz-ed-option__range .rc-slider-mark{display:none}
10584
+ .brz-ed .brz-ed-option__range .rc-slider-handle{width:16px;height:16px;background:0 0;border:3px solid #fff;margin-left:-8px}
10585
+ .brz-ed .brz-ed-option__range .rc-slider-handle::after{display:none}
10586
+ .brz-ed .brz-ed-option__range .rc-slider-handle::before{opacity:0}
10587
+ .brz-ed .brz-ed-option__range .rc-slider-handle:focus{-webkit-box-shadow:none;box-shadow:none}
10588
+ .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}
10589
+ .brz-ed .brz-ed-grid__option__gradient .rc-slider-rail{background:0 0}
10590
+ .brz-ed .brz-ed-option__slider__icon{font-size:16px;line-height:1;margin-right:18px;display:-webkit-box;display:-ms-flexbox;display:flex}
10591
+ .brz-ed .brz-ed-option__slider .brz-ed-option-field__text-box{min-height:initial}
10592
+ .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}
10593
+ .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}
10594
+ .brz-ed .brz-ed-option__slider-suffix .brz-ed-option__text-box{width:65px;border-color:transparent}
10595
+ .brz-ed .brz-ed-option__slider-suffix .brz-ed-option__text-box__input{position:relative}
10596
+ .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)}
10597
+ .brz-ed .brz-ed-option__slider__suffix{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}
10598
+ .brz-ed .brz-ed-option__slider__suffix-item{padding-left:5px;cursor:pointer}
10599
+ .brz-ed .brz-ed-option__slider__suffix-item--active{color:#3dbfe8}
10600
+ .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}
10601
+ .brz-ed .brz-ed-option__text-box .brz-label{display:-webkit-box;display:-ms-flexbox;display:flex;line-height:1;color:#828b92;font-family:pn,"Open Sans",Arial,sans-serif;font-size:13px;font-weight:400;font-style:normal;letter-spacing:0;text-transform:lowercase;padding:0;margin:0}
10602
+ .brz-ed .brz-ed-option__text-box__helper,.brz-ed .brz-ed-option__text-box__input{position:relative;font-weight:400;max-width:90%}
10603
+ .brz-ed .brz-ed-option__text-box__helper{font-family:inherit;font-size:inherit;margin-left:3px}
10604
+ .brz-ed .brz-ed-option__text-box__helper--active{color:#3dbfe8}
10605
+ .brz-ed .brz-ed-option__text-box--fixed-width{width:65px;margin-left:13px;border-bottom-color:transparent}
10606
+ .brz-ed .brz-ed-option__text-box--fixed-width .brz-label{-webkit-box-align:center;-ms-flex-align:center;align-items:center}
10607
+ .brz-ed .brz-ed-option__text-box--fixed-width .brz-ed-option__text-box__input{margin-right:2px}
10608
+ .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}
10609
+ .brz-ed .brz-ed-option__text-box--fixed-width .brz-ed-option__text-box__helper{cursor:pointer;margin-left:5px}
10610
+ .brz-ed .brz-ed-option__text-box--fixed-width .brz-ed-control__text-box--resizer{position:relative}
10611
+ .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}
10612
+ .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}
10613
+ .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}
10614
+ .brz-ed .brz-ed-sidebar-row .brz-ed-options__switch--tab{display:block}
10615
+ .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}
10616
+ .brz-ed .brz-ed-option__select__after:hover{color:#3dbfe8}
10617
+ .brz-ed .brz-ed-option__select .brz-control__select-current .brz-control__select-option{border-bottom:none}
10618
+ .brz-ed .brz-ed-option__select .brz-control__select-current .brz-control__select-option span{top:1px}
10619
+ .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}
10620
+ .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}
10621
+ .brz-ed .brz-ed-option__select .brz-control__select-option span{position:relative;top:.5px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}
10622
+ .brz-ed .brz-ed-option__select .brz-control__select-option .brz-icon-svg{font-size:12px;margin-left:5px;margin-right:5px}
10623
+ .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%)}
10624
+ .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}
10625
+ .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%)}
10626
+ .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%)}
10627
+ .brz-ed .brz-ed-option__select-taxonomy .brz-control__select-options{width:140px}
10628
+ .brz-ed .brz-ed__select--transparent{padding:0!important;height:13px!important;min-height:13px!important;border-bottom:0;margin-bottom:0}
10629
+ .brz-ed .brz-ed__select--transparent .brz-control__select{width:110px}
10630
+ .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}
10631
+ .brz-ed .brz-ed__select--transparent .brz-control__select-current{display:-webkit-box;display:-ms-flexbox;display:flex}
10632
+ .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}
10633
+ .brz-ed .brz-ed__select--transparent .brz-control__select-current .brz-control__select--arrow{margin-top:-.4em;position:relative;right:auto}
10634
+ .brz-ed .brz-ed__select--transparent .brz-control__select-options{width:112px;margin-top:10px;margin-left:-10px}
10635
+ .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}
10636
+ .brz-ed .brz-ed-option__radio-group-option{margin-left:5px;margin-right:5px}
10637
+ .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}
10638
+ .brz-ed .brz-ed-option__radio-group--boxed:first-child{border-top-left-radius:4px;border-bottom-left-radius:4px}
10639
+ .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}
10640
+ .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}
10641
+ .brz-ed .brz-ed-option__radio-group--boxed.active .brz-ed-option__radio-group__icon{background-color:#3dbfe8}
10642
+ .brz-ed .brz-ed-option__check-group-option{margin-left:5px;margin-right:5px}
10643
+ .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}
10644
+ .brz-ed .brz-ed-option__check-group--boxed:first-child{border-top-left-radius:4px;border-bottom-left-radius:4px}
10645
+ .brz-ed .brz-ed-option__check-group--boxed:last-child{border-right:transparent;border-top-right-radius:4px;border-bottom-right-radius:4px}
10646
+ .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}
10647
+ .brz-ed .brz-ed-option__check-group--boxed.active .brz-ed-option__check-group__icon{background-color:#3dbfe8}
10648
+ .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}
10649
+ .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}
10650
+ .brz-ed .brz-ed-tooltip__anchor .brz-ed-tooltip__content{padding-left:17px}
10651
+ .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}
10652
+ .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}
10653
+ .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}
10654
+ .brz-ed .brz-ed-multiPicker__option:first-child{margin-top:10px}
10655
+ .brz-ed .brz-ed-multiPicker__option:not(:last-child){margin-bottom:10px}
10656
+ .brz-ed .brz-ed-sidebar__right .brz-ed-multiPicker__option.brz-ed-option__slider:not(:last-child){margin-bottom:15px}
10657
+ .brz-ed .brz-ed-sidebar__right .brz-ed-multiPicker__option:first-child{margin-top:20px}
10658
+ .brz-ed .brz-ed-sidebar__right .brz-ed-multiPicker__option:not(:last-child){margin-bottom:20px}
10659
+ .brz-ed .brz-ed-popover__typography{padding:11px 7px 14px}
10660
+ .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}
10661
+ .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}
10662
+ .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}
10663
+ .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}
10664
+ .brz-ed .brz-ed-popover__typography .brz-control__select-options,.brz-ed .brz-ed-popover__typography--small .brz-control__select-options{width:95px}
10665
+ .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}
10666
+ .brz-ed .brz-ed-grid__typography{padding:0}
10667
+ .brz-ed .brz-ed-grid__typography:first-child{padding-top:0}
10668
+ .brz-ed .brz-ed-grid__typography:last-child{padding-bottom:0}
10669
+ .brz-ed .brz-ed-grid__typography .brz-ed-grid__typography{padding:0}
10670
+ .brz-ed .brz-ed-grid__typography .brz-ed-grid__typography:first-child{padding-top:0}
10671
+ .brz-ed .brz-ed-grid__typography .brz-ed-grid__typography:last-child{padding-bottom:0}
10672
+ .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}
10673
+ .brz-ed .brz-ed-option__helper:hover{color:rgba(130,139,146,.6)}
10674
+ .brz-ed .brz-ed-option__helper svg{overflow:visible}
10675
+ .brz-ed .brz-ed-option__helper__content{font-size:13px;font-family:pn,"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}
10676
+ .brz-ed .brz-ed-option__helper__content .brz-p{font-weight:inherit;font-size:inherit}
10677
+ .brz-ed .brz-ed-option__helper__content .brz-p:first-child{margin-bottom:13px}
10678
+ .brz-ed .brz-ed-option__prompt-icon{-webkit-transition:color .2s linear;transition:color .2s linear}
10679
+ .brz-ed .brz-ed-option__prompt-icon:hover{-webkit-transition:color .2s linear;transition:color .2s linear;color:#3dbfe8}
10680
+ .brz-ed .brz-ed-option__prompt-popup__image{position:relative;cursor:pointer}
10681
+ .brz-ed .brz-ed-option__prompt-popup__image .brz-img{max-width:100%}
10682
+ .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}
10683
+ .brz-ed .brz-ed-option__prompt-popup .brz-ed-control__focal-point__upload{font-size:16px}
10684
+ .brz-ed .brz-ed-option__toggle{-webkit-transition:color .2s linear;transition:color .2s linear}
10685
+ .brz-ed .brz-ed-option__toggle:hover{-webkit-transition:color .2s linear;transition:color .2s linear;color:#3dbfe8}
10686
+ .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}
10687
+ .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}
10688
+ .brz-ed .brz-ed-grid__gradient__size .brz-ed-option__input-number-wrap{position:relative}
10689
+ .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}
10690
+ .brz-ed .brz-ed-option__colorPicker{padding-top:0;border-bottom:0}
10691
+ .brz-ed .brz-ed-option__colorPicker__fields{padding-top:0}
10692
+ .brz-ed .brz-ed-option__colorPicker__fields:last-child{min-height:100%}
10693
+ .brz-ed .brz-ed-option__colorPicker2{position:relative;padding-top:0;border-bottom:0}
10694
+ .brz-ed .brz-ed-option__colorPicker2 .brz-control__select{position:absolute;z-index:2;font-size:12px;margin-top:6px;margin-left:4px}
10695
+ .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}
10696
+ .brz-ed .brz-ed-option__colorPicker2 .brz-control__select-option{padding-right:30px}
10697
+ .brz-ed .brz-ed-option__colorPicker2 .brz-ed-option__range{max-width:100%;margin-bottom:5px}
10698
+ .brz-ed .brz-ed-option__colorPicker2 .brz-ed-option__color-palette2{margin-top:10px}
10699
+ .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%}
10700
+ .brz-ed .brz-ed-option__color-palette__item{width:18px;height:18px;border-radius:2px;margin-left:2px;cursor:pointer;border:1px solid #3a3d43}
10701
+ .brz-ed .brz-ed-option__color-palette__item:first-child{margin-left:0}
10702
+ .brz-ed .brz-ed-option__color-palette__item.active{border:2px solid #fff}
10703
+ .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}
10704
+ .brz-ed .brz-ed-option__color-palette__icon:hover{color:#3dbfe8}
10705
+ .brz-ed .brz-ed-option__color-palette-editor{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}
10706
+ .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}
10707
+ .brz-ed .brz-ed-option__color-palette-editor__item.active,.brz-ed .brz-ed-option__color-palette-editor__item:hover{border:2px solid #3dbfe8}
10708
+ .brz-ed .brz-ed-option__color-palette-editor__item:first-child{margin-left:0}
10709
+ .brz-ed .brz-ed-sidebar-option__color-palette-editor{margin-bottom:32px!important}
10710
+ .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}
10711
+ .brz-ed .brz-ed-option__color-palette2__item{width:18px;height:18px;border-radius:2px;margin-left:2px;cursor:pointer;border:1px solid #3a3d43}
10712
+ .brz-ed .brz-ed-option__color-palette2__item:first-child{margin-left:0}
10713
+ .brz-ed .brz-ed-option__color-palette2__item.active{border:2px solid #fff}
10714
+ .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}
10715
+ .brz-ed .brz-ed-option__color-palette2__icon:hover{color:#3dbfe8}
10716
+ .brz-ed .brz-ed-option__color-palette2-editor{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}
10717
+ .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}
10718
+ .brz-ed .brz-ed-option__color-palette2-editor__item.active,.brz-ed .brz-ed-option__color-palette2-editor__item:hover{border:2px solid #3dbfe8}
10719
+ .brz-ed .brz-ed-option__color-palette2-editor__item:first-child{margin-left:0}
10720
+ .brz-ed .brz-ed-sidebar-option__color-palette2-editor{margin-bottom:32px!important}
10721
+ .brz-ed .brz-ed-grid__color-fileds{padding-top:0;-webkit-box-align:center;-ms-flex-align:center;align-items:center}
10722
+ .brz-ed .brz-ed-grid__color-fileds:last-child{min-height:21px}
10723
+ .brz-ed .brz-ed-grid__color-fileds .brz-ed-grid__option{padding:0;min-height:21px}
10724
+ .brz-ed .brz-ed-option__color-picker__hex .brz-input{width:58px}
10725
+ .brz-ed .brz-ed-option__input-number-wrap .brz-input{width:22px}
10726
+ .brz-ed .brz-ed-option__font-style-editor{position:relative;cursor:pointer;margin:0 30px 16px}
10727
+ .brz-ed .brz-ed-option__font-style-editor:last-child{margin-bottom:0}
10728
+ .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}
10729
+ .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}
10730
+ .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}
10731
+ .brz-ed .brz-ed-option__font-style-editor__title{line-height:1;margin-bottom:3px;margin-right:0}
10732
+ .brz-ed .brz-ed-option__font-style-editor__title .brz-span{display:block;line-height:1.5}
10733
+ .brz-ed .brz-ed-option__font-style-editor__sample{color:#fff;line-height:1;font-size:21px}
10734
+ .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}
10735
+ .brz-ed .brz-ed-option__font-style-editor--delete .brz-icon-svg{background-color:#fff;color:#15191f;border-radius:16px}
10736
+ .brz-ed .brz-ed-option__font-styles{position:relative;height:calc(100% - 270px);margin-right:-30px;margin-left:-30px}
10737
+ .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%)}
10738
+ .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}
10739
+ .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}
10740
+ .brz-ed .brz-ed-option__font-styles--add .brz-icon-svg{font-size:16px}
10741
+ .brz-ed .brz-ed-option__font-styles--add .brz-span{margin-left:10px}
10742
+ .brz-ed .brz-ed-option__font-styles--scroll-pane{position:absolute;top:-10px;bottom:0;left:0;right:0}
10743
+ .brz-ed .brz-ed-option__font-styles--scroll-pane .brz-ed-scroll-inner{padding-top:10px}
10744
+ .brz-ed .brz-ed-option__font-adder .brz-control__select{width:100%}
10745
+ .brz-ed .brz-ed-option__font-adder__label{margin-bottom:7px;margin-right:0}
10746
+ .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}
10747
+ .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}
10748
+ .brz-ed .brz-ed-fixed-bottom-panel__item{color:#828b92;font-size:12px;letter-spacing:.25px;font-family:pn,"Open Sans",Arial,sans-serif;font-weight:400;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;cursor:default;-webkit-transition:color 150ms linear;transition:color 150ms linear;padding:14px;border-right:1px solid rgba(255,255,255,.15)}
10749
+ .brz-ed .brz-ed-fixed-bottom-panel__item.active{color:#fff;cursor:pointer}
10750
+ .brz-ed .brz-ed-fixed-bottom-panel__item.active:hover{color:#3dbfe8}
10751
+ .brz-ed .brz-ed-fixed-bottom-panel__item:first-child{padding-left:18px}
10752
+ .brz-ed .brz-ed-fixed-bottom-panel__item:last-child{border-right:none}
10753
+ .brz-ed .brz-ed-fixed-bottom-panel__item .brz-icon-svg{font-size:14px}
10754
+ .brz-ed .brz-ed-fixed-bottom-panel__preview{cursor:pointer;padding:0}
10755
+ .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}
10756
+ .brz-ed .brz-ed-fixed-bottom-panel__preview:hover .brz-a{color:#3dbfe8}
10757
+ .brz-ed .brz-ed-fixed-bottom-panel__hidden_elements{cursor:pointer;color:#fff}
10758
+ .brz-ed .brz-ed-fixed-bottom-panel__btn{padding:8px 13px;cursor:pointer}
10759
+ .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}
10760
+ .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}
10761
+ .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}
10762
+ .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}
10763
+ .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}
10764
+ .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}
10765
+ .brz-ed .brz-ed-grid__inline-options .brz-ed-grid__option:hover{color:#3dbfe8;-webkit-transition:color .2s linear;transition:color .2s linear}
10766
+ .brz-ed .brz-ed-option__block-thumbnail .brz-ed-scroll-pane .brz-ed-scroll-inner{max-height:240px;border-right-style:none!important}
10767
+ .brz-ed .brz-ed-option__block-thumbnail .brz-ed-scroll-pane .brz-ed-tall-track{right:-10px}
10768
+ .brz-ed .brz-ed-option__block-thumbnail-item{margin-bottom:0;max-width:140px;position:relative;cursor:pointer;padding:4px;margin:2px 0}
10769
+ .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}
10770
+ .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}
10771
+ .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}
10772
+ .brz-ed .brz-ed-option__block-thumbnail-item:last-child{margin-bottom:0}
10773
+ .brz-ed .brz-ed-option__block-thumbnail-image{position:relative}
10774
+ .brz-ed .brz-ed-option__block-thumbnail-image .brz-img{position:absolute;top:0;left:0;max-width:100%}
10775
+ .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}
10776
+ .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}
10777
+ .brz-ed .brz-ed-option__block-thumbnail-anchor .brz-span{font-size:12px;opacity:.9;font-style:italic;margin-left:5px}
10778
+ .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:pn,"Open Sans",Arial,sans-serif;font-size:13px;font-weight:600}
10779
+ .brz-ed .brz-ed-option__block-thumbnail-anchor .brz-input:focus{outline:0}
10780
+ .brz-ed .brz-ed-option__block-thumbnail-anchor .brz-input::-webkit-input-placeholder{color:#fff;opacity:.6;font-family:pn,"Open Sans",Arial,sans-serif;font-size:13px;font-weight:600;font-style:italic}
10781
+ .brz-ed .brz-ed-option__block-thumbnail-anchor .brz-input::-moz-placeholder{color:#fff;opacity:.6;font-family:pn,"Open Sans",Arial,sans-serif;font-size:13px;font-weight:600;font-style:italic}
10782
+ .brz-ed .brz-ed-option__block-thumbnail-anchor .brz-input::-ms-input-placeholder{color:#fff;opacity:.6;font-family:pn,"Open Sans",Arial,sans-serif;font-size:13px;font-weight:600;font-style:italic}
10783
+ .brz-ed .brz-ed-option__block-thumbnail-anchor .brz-input::placeholder{color:#fff;opacity:.6;font-family:pn,"Open Sans",Arial,sans-serif;font-size:13px;font-weight:600;font-style:italic}
10784
+ .brz-ed .brz-ed-option__block-thumbnail-anchor .brz-label{color:#fff;cursor:pointer;margin:3px 0 0 0}
10785
+ .brz-ed .brz-ed-option__block-thumbnail-anchor .brz-icon-svg{width:18px;height:18px;padding:5px}
10786
+ .brz-ed .brz-ed-option__block-thumbnail-anchor .brz-icon-svg:hover{color:#03080f;opacity:.92}
10787
+ .brz-ed .brz-portal__form-apps{position:absolute;top:0;right:0;left:0;bottom:0;width:100%;height:100%;z-index:1080}
10788
+ .brz-ed .brz-portal__form-apps .brz-iframe{width:100%;height:100%;position:relative;z-index:2}
10789
+ .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}
10790
+ .brz-ed .brz-ed-option__input .brz-control__select{margin-left:10px}
10791
+ .brz-ed .brz-ed-option__input-number-wrap{position:relative}
10792
+ .brz-ed .brz-ed-option__input-container{position:relative}
10793
+ .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}
10794
+ .brz-ed .brz-ed-option__input-container .brz-icon-svg:hover{color:#3dbfe8;-webkit-transition:.2s linear color;transition:.2s linear color}
10795
+ .brz-ed .brz-ed-option__input__population{width:136px;line-height:30px;padding-right:30px;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}
10796
+ .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}
10797
+ .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}
10798
+ .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}
10799
+ .brz-ed .brz-ed-option__multi-input .brz-input{width:17px;outline:0;margin-right:8px}
10800
+ .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}
10801
+ .brz-ed .brz-ed-option__multi-input .brz-icon{color:#828b92;margin-right:11px;font-size:13px}
10802
+ .brz-ed .brz-ed-option__multi-input .brz-input:last-child{margin-right:0}
10803
+ .brz-ed .brz-ed-option__multi-input .brz-ed-option__multi-input-container{padding:0 4px}
10804
+ .brz-ed .brz-ed-option__multi-input .brz-ed-option__multi-input-container:first-of-type{padding:0 4px 0 0}
10805
+ .brz-ed .brz-ed-option__multi-input .brz-ed-option__multi-input-container:last-child{padding:0 0 0 4px}
10806
+ .brz-ed .brz-ed-option__multi-input:focus-within>.brz-icon{color:#33beea}
10807
+ .brz-ed .brz-ed-option__multi-border{position:relative;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}
10808
+ .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}
10809
+ .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}
10810
+ .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}
10811
+ .brz-ed .brz-ed-option__multi-border .brz-input:last-of-type{margin-right:3px}
10812
+ .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}
10813
+ .brz-ed .brz-ed-option__multi-border .brz-icon{position:absolute;color:#818a91;font-size:10px;margin-left:5px;top:5px}
10814
+ .brz-ed .brz-ed-option__multi-border .brz-input:last-child{margin-right:0}
10815
+ .brz-ed .brz-ed-option__multi-border .brz-ed-option__multi-input-container{padding:0 4px}
10816
+ .brz-ed .brz-ed-option__multi-border .brz-ed-option__multi-input-container:first-of-type{padding:0 4px 0 0}
10817
+ .brz-ed .brz-ed-option__multi-border .brz-ed-option__multi-input-container:last-child{padding:0 0 0 4px}
10818
+ .brz-ed .brz-ed-option__multi-border .brz-label{height:16px;width:25px;color:#818a91;font-family:pn,"Open Sans",Arial,sans-serif;font-size:13px;font-weight:600;line-height:16px;margin-right:12px}
10819
+ .brz-ed .brz-ed-option__multi-border .brz-button{background:0 0;border:none;outline:0;cursor:pointer}
10820
+ .brz-ed .brz-ed-option__multi-border--active .brz-icon{color:#33beea}
10821
+ .brz-ed .brz-ed-option__input-number{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}
10822
+ .brz-ed .brz-ed-option__input-number .brz-ed-option__input-number__label{margin-right:10px}
10823
+ .brz-ed .brz-ed-option__input-number .brz-input{outline:0;line-height:1;-moz-appearance:textfield}
10824
+ .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}
10825
+ .brz-ed .brz-ed-option__focal-point .brz-ed-control__focal-point+.brz-control__select{margin-left:8px}
10826
+ .brz-ed .brz-ed-option__focal-point .brz-control__select{margin-left:4px}
10827
+ .brz-ed .brz-ed-shape--1{background-image:url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTkyMCAyMDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+PHBhdGggZD0iTTE5MjAgLjAyM0wwIDIwMFYwaDE5MjB6IiBmaWxsPSJyZ2JhKDAsIDAsIDAsIDEpIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48L3N2Zz4=)}
10828
+ .brz-ed .brz-ed-shape--2{background-image:url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTkyMCAyNDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+PGcgZmlsbD0icmdiYSgwLCAwLCAwLCAxKSIgZmlsbC1ydWxlPSJub256ZXJvIj48cGF0aCBkPSJNMCAyMDBWMGgxOTIweiIvPjxwYXRoIG9wYWNpdHk9Ii4yNTEiIGQ9Ik0wIDI0MFYwaDE5MjBMMTM3LjE5NSAyMjIuODV6Ii8+PC9nPjwvc3ZnPg==)}
10829
+ .brz-ed .brz-ed-shape--3{background-image:url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTkyMCAyMDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+PHBhdGggZD0iTTE5MjAgMjAwTDEzNzQuMjU2IDExLjUxOCAwIDIwMFYwaDE5MjB6IiBmaWxsPSJyZ2JhKDAsIDAsIDAsIDEpIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48L3N2Zz4=)}
10830
+ .brz-ed .brz-ed-shape--4{background-image:url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTkyMCAyNTAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+PGcgZmlsbD0icmdiYSgwLCAwLCAwLCAxKSIgZmlsbC1ydWxlPSJub256ZXJvIj48cGF0aCBvcGFjaXR5PSIuMjUiIGQ9Ik0xOTIwIDI0MEwxMzc0LjI1NiAxMS41MTggMCAyNTBWMGgxOTIweiIvPjxwYXRoIGQ9Ik0xOTIwIDIwMEwxMzc0LjI1NiAxMS41MTggMCAyMDBWMGgxOTIweiIvPjwvZz48L3N2Zz4=)}
10831
+ .brz-ed .brz-ed-shape--5{background-image:url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTkyMCA2OSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48cGF0aCBkPSJNMTkyMCAzMi4zMzJMMTg3Mi4wMDMgNjlsLTQ3Ljk5OS0zNi42NjhMMTc3Ni4wMDggNjlsLTQ3Ljk5Ny0zNi42NjgtNDggMzYuNjY4LTQ3Ljk5OC0zNi42NjhMMTU4NC4wMTYgNjlsLTQ3Ljk5Ny0zNi42NjhMMTQ4OC4wMiA2OWwtNDcuOTk5LTM2LjY2OEwxMzkyLjAyMiA2OWwtNDgtMzYuNjY4LTQ4IDM2LjY2OC00OC0zNi42NjhMMTIwMC4wMjUgNjlsLTQ3Ljk5OS0zNi42NjgtNDggMzYuNjY4LTQ4LTM2LjY2OC00OCAzNi42NjgtNDgtMzYuNjY4TDkxMi4wMjcgNjlsLTQ4LTM2LjY2OEw4MTYuMDMyIDY5bC00Ny45OTctMzYuNjY4TDcyMC4wMzMgNjlsLTQ3Ljk5OC0zNi42NjgtNDggMzYuNjY4LTQ3Ljk5OC0zNi42NjhMNTI4LjA0IDY5bC00OC0zNi42NjhMNDMyLjAzNiA2OWwtNDguMDA0LTM2LjY2OC00OCAzNi42NjgtNDguMDA1LTM2LjY2OC00OCAzNi42NjgtNDguMDAzLTM2LjY2OEwxNDQuMDIgNjkgOTYuMDE4IDMyLjMzMiA0OC4wMSA2OSAwIDMyLjMzMlYwaDE5MjB6IiBmaWxsPSJyZ2JhKDAsIDAsIDAsIDEpIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48L3N2Zz4=)}
10832
+ .brz-ed .brz-ed-shape--6{background-image:url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTkxOSAxMDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+PHBhdGggZD0iTTE4NjUuNjg3IDEwMGMtMjYuNjU3IDAtMjYuNjU3LTMzLjMxNC01My4zMTUtMzMuMzE0LTI2LjY1NCAwLTI2LjY1NCAzMy4zMTQtNTMuMzA4IDMzLjMxNHMtMjYuNjU0LTMzLjMxNC01My4zMS0zMy4zMTRjLTI2LjY1MyAwLTI2LjY1MyAzMy4zMTQtNTMuMzA2IDMzLjMxNHMtMjYuNjUzLTMzLjMxNC01My4zMDYtMzMuMzE0Yy0yNi42NTUgMC0yNi42NTUgMzMuMzE0LTUzLjMxIDMzLjMxNC0yNi42NTIgMC0yNi42NTItMzMuMzE0LTUzLjMwNS0zMy4zMTQtMjYuNjU0IDAtMjYuNjU0IDMzLjMxNC01My4zMSAzMy4zMTQtMjYuNjUzIDAtMjYuNjUzLTMzLjMxNC01My4zMDctMzMuMzE0LTI2LjY1MiAwLTI2LjY1MiAzMy4zMTQtNTMuMzA1IDMzLjMxNC0yNi42NTIgMC0yNi42NTItMzMuMzE0LTUzLjMwNC0zMy4zMTQtMjYuNjUxIDAtMjYuNjUxIDMzLjMxNC01My4zMDMgMzMuMzE0LTI2LjY1MyAwLTI2LjY1My0zMy4zMTQtNTMuMzA1LTMzLjMxNC0yNi42NSAwLTI2LjY1IDMzLjMxNC01My4zMDEgMzMuMzE0LTI2LjY1MyAwLTI2LjY1My0zMy4zMTQtNTMuMzA3LTMzLjMxNC0yNi42NSAwLTI2LjY1IDMzLjMxNC01My4zMDEgMzMuMzE0LTI2LjY1NCAwLTI2LjY1NC0zMy4zMTQtNTMuMzA2LTMzLjMxNC0yNi42NTIgMC0yNi42NTMgMzMuMzE0LTUzLjMwNSAzMy4zMTRzLTI2LjY1My0zMy4zMTQtNTMuMzA1LTMzLjMxNFM4MjYuMjE2IDEwMCA3OTkuNTY0IDEwMGMtMjYuNjU0IDAtMjYuNjU0LTMzLjMxNC01My4zMDYtMzMuMzE0LTI2LjY1MiAwLTI2LjY1MiAzMy4zMTQtNTMuMzA0IDMzLjMxNC0yNi42NTMgMC0yNi42NTMtMzMuMzE0LTUzLjMwNi0zMy4zMTQtMjYuNjUyIDAtMjYuNjUyIDMzLjMxNC01My4zMDQgMzMuMzE0LTI2LjY1MyAwLTI2LjY1My0zMy4zMTQtNTMuMzA0LTMzLjMxNC0yNi42NSAwLTI2LjY1MiAzMy4zMTQtNTMuMzA0IDMzLjMxNHMtMjYuNjUyLTMzLjMxNC01My4zMDUtMzMuMzE0UzM5OS43NzggMTAwIDM3My4xMjYgMTAwYy0yNi42NTMgMC0yNi42NTMtMzMuMzE0LTUzLjMwNi0zMy4zMTQtMjYuNjUyIDAtMjYuNjUyIDMzLjMxNC01My4zMDQgMzMuMzE0cy0yNi42NTItMzMuMzE0LTUzLjMwNC0zMy4zMTRjLTI2LjY1MSAwLTI2LjY1MSAzMy4zMTQtNTMuMzAyIDMzLjMxNHMtMjYuNjUxLTMzLjMxNC01My4zMDMtMzMuMzE0Yy0yNi42NSAwLTI2LjY1IDMzLjMxNC01My4zMDIgMzMuMzE0QzI2LjY1MiAxMDAgMjYuNjUyIDY2LjY4NiAwIDY2LjY4NlYwaDE5MTkuMDAzTDE5MTkgNjYuNjg2Yy0yNi42NTcgMC0yNi42NTcgMzMuMzE0LTUzLjMxNCAzMy4zMTR6IiBmaWxsPSJyZ2JhKDAsIDAsIDAsIDEpIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48L3N2Zz4=)}
10833
+ .brz-ed .brz-ed-shape--7{background-image:url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTkyMCAyMDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+PHBhdGggZD0iTTAgMTExLjIyYzM5LjkyNCA1Ny44NjMgNDMuNjM1LTgxLjEyIDg2LjA1Ny00OS4zNzcgMjIuOTYgMTcuMTggMjguNDIzIDEzOS43OTUgNjMuNjcgMTMxLjU3NyAyOS42OS02LjkyIDQ2LjkyMy00NC42ODMgNjIuMTI4LTcxLjc1NiAzMS44Ny01MC4wMzkgODAuMzM0IDI0LjY4NiAxMzQuNzIgNC40NzcgNDMuNjg3LTE2LjIzMiAzNS40Mi0zNi4yNjYgNzAuODQyLS4zOTggMzguMDg1IDM4LjU2MyA2NS4zNDMtNTkuMzgxIDkyLjYzLTUxLjI2NSA1Mi41MzUgMTUuNjI2IDY2LjUyMyAxNzUuOTEyIDEwNy4zODYgODMuNDQyIDIxLjM5NS00OC40MTQgNjguODc0LTEyMS44MSAxMDMuNDI0LTQ1Ljg3NSA0NS4xNDggOTkuMjMgNTQuMzM3IDE1LjAxIDczLjkzNS0zNi45OTIgMjcuMjg2LTcyLjQwMiA0Ny41NTkgNTAuODI4IDkwLjk5NiA2MS40MDIgMjUuNTIgNi4yMTIgNDMuNzQtMjQuNDQyIDU2LjM5Ni00Ny4yNzUgNTAuMTktNjcuNjQ3IDcyLjIyMyAzOC41MTcgMTA1LjgwNCA0Mi45MTMgMzMuNTgyIDQuMzk1IDQzLjk1Mi00MC45MzMgNzguMTctMzEuMjU3IDM4LjY1NyAxMC45MzIgNDQuNzI5IDk5LjYyNSA3NS43MDUgOTguNTg1IDMyLjA2Ni0xLjA3NyAxMC40NzUtMTEzLjI5MiA1OC4yNjMtMTMxLjk4NCAzNy4wNTQtMTQuNDkyIDQ0Ljk5NiA0Ni41MDQgODcuMjggNDUuNzE1IDQyLjI4NS0uNzg5IDUzLjE0LTEzNy43MjUgOTUuMDgyLTQ0Ljg4NiA5LjM3MyAyMC43NSAxNi4zMjIgMTAzLjYyMSA0My40MzMgMTA5LjQwNiAzNS4wNjMgNy40OCA0My44Ni04MS4zNjQgOTAuOTIzLTgxLjcxNCA2OC4zMjcgNS4wNzcgNjEuOTMzIDgyLjEwMSA5Ni43MSA3MC4zMzUgMjkuODctMTAuMTA2IDQ5LjE4Ny0xMzEuNTQ2IDcyLjc3OS0xMjIuODAyIDI2LjQzIDkuNzk3IDI5LjIxNCAxMTkuODgzIDc3LjkxNiA3MC42MjQgMjMuMTIyLTIzLjM4NSAzNC4zNy04Mi4xODQgNjkuMzUtMzYuMzU2IDIxLjE2MyAyNy43MjYgNC4wMDMgNy43OTkgMjYuNDAxIDM1LjIwMlYwSDB2MTExLjIyeiIgZmlsbD0icmdiYSgwLCAwLCAwLCAxKSIgZmlsbC1ydWxlPSJub256ZXJvIi8+PC9zdmc+)}
10834
+ .brz-ed .brz-ed-shape--8{background-image:url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTkyMCAyMDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+PGcgZmlsbD0icmdiYSgwLCAwLCAwLCAxKSIgZmlsbC1ydWxlPSJub256ZXJvIj48cGF0aCBkPSJNMCAxMTEuMjJjMzkuOTI0IDU3Ljg2MyA0My42MzUtODEuMTIgODYuMDU3LTQ5LjM3NyAyMi45NiAxNy4xOCAyOC40MjMgMTM5Ljc5NSA2My42NyAxMzEuNTc3IDI5LjY5LTYuOTIgNDYuOTIzLTQ0LjY4MyA2Mi4xMjgtNzEuNzU2IDMxLjg3LTUwLjAzOSA4MC4zMzQgMjQuNjg2IDEzNC43MiA0LjQ3NyA0My42ODctMTYuMjMyIDM1LjQyLTM2LjI2NiA3MC44NDItLjM5OCAzOC4wODUgMzguNTYzIDY1LjM0My01OS4zODEgOTIuNjMtNTEuMjY1IDUyLjUzNSAxNS42MjYgNjYuNTIzIDE3NS45MTIgMTA3LjM4NiA4My40NDIgMjEuMzk1LTQ4LjQxNCA2OC44NzQtMTIxLjgxIDEwMy40MjQtNDUuODc1IDQ1LjE0OCA5OS4yMyA1NC4zMzcgMTUuMDEgNzMuOTM1LTM2Ljk5MiAyNy4yODYtNzIuNDAyIDQ3LjU1OSA1MC44MjggOTAuOTk2IDYxLjQwMiAyNS41MiA2LjIxMiA0My43NC0yNC40NDIgNTYuMzk2LTQ3LjI3NSA1MC4xOS02Ny42NDcgNzIuMjIzIDM4LjUxNyAxMDUuODA0IDQyLjkxMyAzMy41ODIgNC4zOTUgNDMuOTUyLTQwLjkzMyA3OC