Brizy – Page Builder - Version 2.3.0

Version Description

  • 2021-07-19 =
  • New: All PRO elements are now visible but locked
  • New: Added an API action to obtain the post taxonomies
  • Improved: Preview assets JS, CSS
  • Improved: RichText element
  • Improved: Global Block Conditions
  • Fixed: Compile page in the back-end when Rank Math plugin is installed
  • Fixed: Save user roles when adding new user
  • Fixed: Do not include JS on the profile if the user has no rights of changing roles
  • Fixed: Removed the 3 character constraint from search field
  • Fixed: Date format of leads by settings format of WP
  • Fixed: Disabled start_excerpt and end_excerpt
  • Fixed: Warning when no block provided on upload blocks
  • Fixed: Return empty content when there are no sample posts for dynamic content placeholders
  • Fixed: Do not throw error on get sample post data
  • Fixed: The asset insertion for templates for single posts
  • Fixed: Method that searches the placeholders that supports a placeholder name
  • Fixed: Template rule match for product archive matches all archives
  • Fixed: Refactored Brizy_Editor_Compiled HTML
  • Fixed: Search placeholder in all placeholder providers
  • Fixed: Block to custom post migration trigger check
  • Fixed: Removed taxonomy filter from post taxonomies
  • Fixed: Show Products post type in global block rules
  • Fixed: Product include in rule group list
  • Fixed: Added specific template rule match
Download this release

Release Info

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

Code changes from version 2.2.20 to 2.3.0

README.md CHANGED
@@ -3,7 +3,7 @@ Contributors: themefuse<br>
3
  Requires at least: 4.5<br>
4
  Tested up to: 5.7<br>
5
  Requires PHP: 5.6<br>
6
- Stable tag: 2.2.20<br>
7
  License: GPLv3<br>
8
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
9
 
@@ -118,6 +118,32 @@ $bodyHtml = apply_filters( 'brizy_content', $html->get_body(), Brizy_Editor_Proj
118
 
119
  ## Changelog
120
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
121
  ### 2.2.20 - 2021-07-13
122
  * New: error messages in Form element for Number and File input
123
  * Fixed: change Row background for Section slider
3
  Requires at least: 4.5<br>
4
  Tested up to: 5.7<br>
5
  Requires PHP: 5.6<br>
6
+ Stable tag: 2.3.0<br>
7
  License: GPLv3<br>
8
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
9
 
118
 
119
  ## Changelog
120
 
121
+ ### 2.3.0 - 2021-07-19
122
+ * New: All PRO elements are now visible but locked
123
+ * New: Added an API action to obtain the post taxonomies
124
+ * Improved: Preview assets JS, CSS
125
+ * Improved: RichText element
126
+ * Improved: Global Block Conditions
127
+ * Fixed: Compile page in the back-end when Rank Math plugin is installed
128
+ * Fixed: Save user roles when adding new user
129
+ * Fixed: Do not include JS on the profile if the user has no rights of changing roles
130
+ * Fixed: Removed the 3 character constraint from search field
131
+ * Fixed: Date format of leads by settings format of WP
132
+ * Fixed: Disabled start_excerpt and end_excerpt
133
+ * Fixed: Warning when no block provided on upload blocks
134
+ * Fixed: Return empty content when there are no sample posts for dynamic content placeholders
135
+ * Fixed: Do not throw error on get sample post data
136
+ * Fixed: The asset insertion for templates for single posts
137
+ * Fixed: Method that searches the placeholders that supports a placeholder name
138
+ * Fixed: Template rule match for product archive matches all archives
139
+ * Fixed: Refactored Brizy_Editor_Compiled HTML
140
+ * Fixed: Search placeholder in all placeholder providers
141
+ * Fixed: Block to custom post migration trigger check
142
+ * Fixed: Removed taxonomy filter from post taxonomies
143
+ * Fixed: Show Products post type in global block rules
144
+ * Fixed: Product include in rule group list
145
+ * Fixed: Added specific template rule match
146
+
147
  ### 2.2.20 - 2021-07-13
148
  * New: error messages in Form element for Number and File input
149
  * Fixed: change Row background for Section slider
admin/form-entries.php CHANGED
@@ -86,7 +86,7 @@ class Brizy_Admin_FormEntries {
86
 
87
  if ( $column_name == 'created_date' ) {
88
  $post = get_post( $post_ID );
89
- echo $post->post_date;
90
  }
91
 
92
  }
86
 
87
  if ( $column_name == 'created_date' ) {
88
  $post = get_post( $post_ID );
89
+ echo get_the_date( '', $post );
90
  }
91
 
92
  }
admin/migrations/global-blocks-to-custom-post-migration.php CHANGED
@@ -36,9 +36,9 @@ class Brizy_Admin_Migrations_GlobalBlocksToCustomPostMigration implements Brizy_
36
  $postMigrationStorage = new Brizy_Admin_Migrations_PostStorage( $projectPost->ID );
37
  $globals = json_decode( base64_decode( $projectStorage->get( 'globals', false ) ) );
38
 
39
- if ( $globals && ! isset( $globals->project ) ) {
40
- return;
41
- }
42
 
43
  if ( ! $globals || ( isset( $globals->project ) && empty( $globals->project ) ) ) {
44
  $projectStorage->set( 'globals', base64_encode( json_encode( (object) array() ) ) );
36
  $postMigrationStorage = new Brizy_Admin_Migrations_PostStorage( $projectPost->ID );
37
  $globals = json_decode( base64_decode( $projectStorage->get( 'globals', false ) ) );
38
 
39
+ if ( is_null($globals) || ! isset( $globals->project ) ) {
40
+ return;
41
+ }
42
 
43
  if ( ! $globals || ( isset( $globals->project ) && empty( $globals->project ) ) ) {
44
  $projectStorage->set( 'globals', base64_encode( json_encode( (object) array() ) ) );
admin/migrations/posts-trait.php CHANGED
@@ -2,6 +2,7 @@
2
 
3
  trait Brizy_Admin_Migrations_PostsTrait {
4
 
 
5
 
6
  /**
7
  * @return |null
@@ -9,6 +10,10 @@ trait Brizy_Admin_Migrations_PostsTrait {
9
  public function getProjectPost() {
10
  global $wpdb;
11
 
 
 
 
 
12
  $row = $wpdb->get_results(
13
  $wpdb->prepare( "SELECT * FROM {$wpdb->posts} p
14
  WHERE p.post_type = %s and p.post_status='publish'
@@ -16,8 +21,10 @@ trait Brizy_Admin_Migrations_PostsTrait {
16
  OBJECT
17
  );
18
 
 
 
19
  if ( isset( $row[0] ) ) {
20
- return $row[0];
21
  }
22
 
23
  return null;
2
 
3
  trait Brizy_Admin_Migrations_PostsTrait {
4
 
5
+ private static $project;
6
 
7
  /**
8
  * @return |null
10
  public function getProjectPost() {
11
  global $wpdb;
12
 
13
+ if ( self::$project ) {
14
+ return self::$project;
15
+ }
16
+
17
  $row = $wpdb->get_results(
18
  $wpdb->prepare( "SELECT * FROM {$wpdb->posts} p
19
  WHERE p.post_type = %s and p.post_status='publish'
21
  OBJECT
22
  );
23
 
24
+ $projectPost = null;
25
+
26
  if ( isset( $row[0] ) ) {
27
+ return self::$project = $row[0];
28
  }
29
 
30
  return null;
admin/popups/main.php CHANGED
@@ -26,8 +26,6 @@ class Brizy_Admin_Popups_Main {
26
  }
27
 
28
  public function initialize() {
29
-
30
- add_filter( 'brizy_content', array( $this, 'insertPopupsHtml' ), - 999999, 4 );
31
  add_action( 'brizy_after_enabled_for_post', array( $this, 'afterBrizyEnabledForPopup' ) );
32
 
33
  if ( is_admin() ) {
@@ -56,10 +54,11 @@ class Brizy_Admin_Popups_Main {
56
  'parent_item_colon' => __( 'Parent Popups:', 'brizy' ),
57
  'not_found' => __( 'No Popups found.', 'brizy' ),
58
  'not_found_in_trash' => __( 'No Popups found in Trash.', 'brizy' ),
59
- 'attributes' => __( 'Popup attributes:', 'brizy' )
60
  );
61
 
62
- register_post_type( self::CP_POPUP,
 
63
  array(
64
  'labels' => $labels,
65
  'public' => false,
@@ -75,17 +74,21 @@ class Brizy_Admin_Popups_Main {
75
  'show_in_rest' => false,
76
  'exclude_from_search' => true,
77
  'can_export' => true,
78
- 'supports' => array( 'title', 'post_content', 'revisions' )
79
  )
80
  );
81
 
82
  remove_post_type_support( self::CP_POPUP, 'page-attributes' );
83
 
84
 
85
- add_filter( 'brizy_supported_post_types', function ( $posts ) {
86
- $posts[] = self::CP_POPUP;
87
- return $posts;
88
- } );
 
 
 
 
89
  }
90
 
91
  /**
@@ -97,9 +100,12 @@ class Brizy_Admin_Popups_Main {
97
  if ( $post->post_type === Brizy_Admin_Popups_Main::CP_POPUP ) {
98
  $manager = new Brizy_Admin_Rules_Manager();
99
  if ( count( $manager->getRules( $post->ID ) ) == 0 ) {
100
- $manager->saveRules( $post->ID, array(
101
- new Brizy_Admin_Rule( null, Brizy_Admin_Rule::TYPE_INCLUDE, '', '', array() )
102
- ) );
 
 
 
103
  }
104
  }
105
  }
@@ -114,7 +120,9 @@ class Brizy_Admin_Popups_Main {
114
  * @throws Brizy_Editor_Exceptions_NotFound
115
  * @throws Brizy_Editor_Exceptions_ServiceUnavailable
116
  */
117
- public function insertPopupsHtml( $content, $project, $wpPost, $context = 'document' ) {
 
 
118
  $popups = $this->getMatchingBrizyPopups();
119
 
120
  foreach ( $popups as $brizyPopup ) {
@@ -130,11 +138,6 @@ class Brizy_Admin_Popups_Main {
130
 
131
  $compiledPage = $brizyPopup->get_compiled_page();
132
 
133
- if ( $context == 'document' ) {
134
- $content = $this->insertInDocumentHead( $content, $compiledPage->get_head() );
135
- $content = $this->insertInDocumentBody( $content, $compiledPage->get_body() );
136
- }
137
-
138
  if ( $context == 'head' ) {
139
  $content = $this->insertHead( $content, $compiledPage->get_head() );
140
  }
@@ -147,6 +150,53 @@ class Brizy_Admin_Popups_Main {
147
  return $content;
148
  }
149
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
150
  private function insertHead( $target, $headContent ) {
151
 
152
  return $target . "\n\n<!-- POPUP INSERT START-->\n{$headContent}\n<!-- POPUP INSERT END-->\n\n";
@@ -159,14 +209,22 @@ class Brizy_Admin_Popups_Main {
159
 
160
  private function insertInDocumentHead( $target, $headContent ) {
161
 
162
- $target = preg_replace( "/(<head[^>]*>)/ium", "$1" . "\n\n<!-- POPUP INSERT START-->\n{$headContent}\n<!-- POPUP INSERT END-->\n\n", $target );
 
 
 
 
163
 
164
  return $target;
165
  }
166
 
167
  private function insertInDocumentBody( $target, $bodyContent ) {
168
 
169
- $target = preg_replace( "/(<body[^>]*>)/ium", "$1" . "\n\n<!-- POPUP INSERT START-->\n{$bodyContent}\n<!-- POPUP INSERT END-->\n\n", $target );
 
 
 
 
170
 
171
  return $target;
172
  }
@@ -192,17 +250,22 @@ class Brizy_Admin_Popups_Main {
192
  private function findMatchingPopups( $applyFor, $entityType, $entityValues ) {
193
 
194
  $resultPopups = array();
195
- $allPopups = get_posts( array(
196
- 'post_type' => self::CP_POPUP,
197
- 'numberposts' => - 1,
198
- 'post_status' => 'publish'
199
- ) );
200
-
201
- $allPopups = Brizy_Admin_Rules_Manager::sortEntitiesByRuleWeight( $allPopups, [
202
- 'type' => $applyFor,
203
- 'entityType' => $entityType,
204
- 'entityValues' => $entityValues
205
- ] );
 
 
 
 
 
206
 
207
  $ruleManager = new Brizy_Admin_Rules_Manager();
208
  foreach ( $allPopups as $aPopup ) {
26
  }
27
 
28
  public function initialize() {
 
 
29
  add_action( 'brizy_after_enabled_for_post', array( $this, 'afterBrizyEnabledForPopup' ) );
30
 
31
  if ( is_admin() ) {
54
  'parent_item_colon' => __( 'Parent Popups:', 'brizy' ),
55
  'not_found' => __( 'No Popups found.', 'brizy' ),
56
  'not_found_in_trash' => __( 'No Popups found in Trash.', 'brizy' ),
57
+ 'attributes' => __( 'Popup attributes:', 'brizy' ),
58
  );
59
 
60
+ register_post_type(
61
+ self::CP_POPUP,
62
  array(
63
  'labels' => $labels,
64
  'public' => false,
74
  'show_in_rest' => false,
75
  'exclude_from_search' => true,
76
  'can_export' => true,
77
+ 'supports' => array( 'title', 'post_content', 'revisions' ),
78
  )
79
  );
80
 
81
  remove_post_type_support( self::CP_POPUP, 'page-attributes' );
82
 
83
 
84
+ add_filter(
85
+ 'brizy_supported_post_types',
86
+ function ( $posts ) {
87
+ $posts[] = self::CP_POPUP;
88
+
89
+ return $posts;
90
+ }
91
+ );
92
  }
93
 
94
  /**
100
  if ( $post->post_type === Brizy_Admin_Popups_Main::CP_POPUP ) {
101
  $manager = new Brizy_Admin_Rules_Manager();
102
  if ( count( $manager->getRules( $post->ID ) ) == 0 ) {
103
+ $manager->saveRules(
104
+ $post->ID,
105
+ array(
106
+ new Brizy_Admin_Rule( null, Brizy_Admin_Rule::TYPE_INCLUDE, '', '', array() ),
107
+ )
108
+ );
109
  }
110
  }
111
  }
120
  * @throws Brizy_Editor_Exceptions_NotFound
121
  * @throws Brizy_Editor_Exceptions_ServiceUnavailable
122
  */
123
+ public function getPopupsHtml( $project, $wpPost, $context ) {
124
+ $content = "";
125
+
126
  $popups = $this->getMatchingBrizyPopups();
127
 
128
  foreach ( $popups as $brizyPopup ) {
138
 
139
  $compiledPage = $brizyPopup->get_compiled_page();
140
 
 
 
 
 
 
141
  if ( $context == 'head' ) {
142
  $content = $this->insertHead( $content, $compiledPage->get_head() );
143
  }
150
  return $content;
151
  }
152
 
153
+ /**
154
+ * @param $content
155
+ * @param $project
156
+ * @param $wpPost
157
+ * @param string $context
158
+ *
159
+ * @return string|string[]|null
160
+ * @throws Brizy_Editor_Exceptions_NotFound
161
+ * @throws Brizy_Editor_Exceptions_ServiceUnavailable
162
+ */
163
+ public function getPopupsAssets( $project, $wpPost, $context ) {
164
+ $assetGroups = [];
165
+
166
+ $popups = $this->getMatchingBrizyPopups();
167
+
168
+ foreach ( $popups as $brizyPopup ) {
169
+ /**
170
+ * @var Brizy_Editor_Post $brizyPopup ;
171
+ */
172
+
173
+ if ( $brizyPopup->get_needs_compile() ) {
174
+ $brizyPopup->compile_page();
175
+ $brizyPopup->saveStorage();
176
+ $brizyPopup->savePost();
177
+ }
178
+
179
+ if ( $context == 'head' ) {
180
+ $styles = $brizyPopup->getCompiledStyles();
181
+
182
+ $assetGroups[] = \BrizyMerge\Assets\AssetGroup::instanceFromJsonData($styles['free']);
183
+ $assetGroups = apply_filters('brizy_pro_head_assets', $assetGroups, $brizyPopup);
184
+
185
+ }
186
+
187
+ if ( $context == 'body' ) {
188
+
189
+ $assets = $brizyPopup->getCompiledScripts();
190
+
191
+ $assetGroups[] = \BrizyMerge\Assets\AssetGroup::instanceFromJsonData($assets['free']);
192
+ $assetGroups = apply_filters('brizy_pro_body_assets', $assetGroups, $brizyPopup);
193
+
194
+ }
195
+ }
196
+
197
+ return $assetGroups;
198
+ }
199
+
200
  private function insertHead( $target, $headContent ) {
201
 
202
  return $target . "\n\n<!-- POPUP INSERT START-->\n{$headContent}\n<!-- POPUP INSERT END-->\n\n";
209
 
210
  private function insertInDocumentHead( $target, $headContent ) {
211
 
212
+ $target = preg_replace(
213
+ "/(<head[^>]*>)/ium",
214
+ "$1" . "\n\n<!-- POPUP INSERT START-->\n{$headContent}\n<!-- POPUP INSERT END-->\n\n",
215
+ $target
216
+ );
217
 
218
  return $target;
219
  }
220
 
221
  private function insertInDocumentBody( $target, $bodyContent ) {
222
 
223
+ $target = preg_replace(
224
+ "/(<body[^>]*>)/ium",
225
+ "$1" . "\n\n<!-- POPUP INSERT START-->\n{$bodyContent}\n<!-- POPUP INSERT END-->\n\n",
226
+ $target
227
+ );
228
 
229
  return $target;
230
  }
250
  private function findMatchingPopups( $applyFor, $entityType, $entityValues ) {
251
 
252
  $resultPopups = array();
253
+ $allPopups = get_posts(
254
+ array(
255
+ 'post_type' => self::CP_POPUP,
256
+ 'numberposts' => - 1,
257
+ 'post_status' => 'publish',
258
+ )
259
+ );
260
+
261
+ $allPopups = Brizy_Admin_Rules_Manager::sortEntitiesByRuleWeight(
262
+ $allPopups,
263
+ [
264
+ 'type' => $applyFor,
265
+ 'entityType' => $entityType,
266
+ 'entityValues' => $entityValues,
267
+ ]
268
+ );
269
 
270
  $ruleManager = new Brizy_Admin_Rules_Manager();
271
  foreach ( $allPopups as $aPopup ) {
admin/rule.php CHANGED
@@ -9,8 +9,8 @@ class Brizy_Admin_Rule extends Brizy_Admin_Serializable implements Brizy_Admin_R
9
  const POSTS = 1;
10
  const TAXONOMY = 2;
11
  const ARCHIVE = 4;
12
- const TEMPLATE = 8;
13
- const BRIZY_TEMPLATE = 16;
14
  const ANY_CHILD_TAXONOMY = 128;
15
  const WOO_SHOP_PAGE = 256;
16
  const DATE_ARCHIVE = self::ARCHIVE | 512;
9
  const POSTS = 1;
10
  const TAXONOMY = 2;
11
  const ARCHIVE = 4;
12
+ const TEMPLATE = 8; // author/search/home_page...
13
+ const BRIZY_TEMPLATE = 16; // brizy template
14
  const ANY_CHILD_TAXONOMY = 128;
15
  const WOO_SHOP_PAGE = 256;
16
  const DATE_ARCHIVE = self::ARCHIVE | 512;
admin/rules/api.php CHANGED
@@ -605,13 +605,13 @@ class Brizy_Admin_Rules_Api extends Brizy_Admin_AbstractApi
605
  $postTypes = array_diff_key($postTypes, array_flip(['attachment', 'elementor_library', Brizy_Admin_Stories_Main::CP_STORY]));
606
 
607
  if ($context == 'template-rules') {
608
- $postTypes = array_filter($postTypes, function ($type) use ($groupValue, $templateType, $context) {
609
- if ($templateType == 'single_product') {
610
- return $type->name == 'product' && $type->public && $type->show_ui;
611
- } else {
612
- return $type->name != 'product' && $type->public && $type->show_ui;
613
- }
614
- });
615
  }
616
 
617
  return array_map(function ($t) use ($groupValue) {
605
  $postTypes = array_diff_key($postTypes, array_flip(['attachment', 'elementor_library', Brizy_Admin_Stories_Main::CP_STORY]));
606
 
607
  if ($context == 'template-rules') {
608
+ $postTypes =array_filter($postTypes, function ($type) use ($groupValue, $templateType, $context) {
609
+
610
+ if ($type->name == 'product' && ($templateType == 'single_product')) {
611
+ return true;
612
+ }
613
+ return $type->public && $type->show_ui;
614
+ });
615
  }
616
 
617
  return array_map(function ($t) use ($groupValue) {
admin/templates.php CHANGED
@@ -473,9 +473,9 @@ class Brizy_Admin_Templates
473
  remove_filter('the_content', 'wpautop');
474
 
475
  // insert the compiled head and content
476
- add_filter('body_class', array($this, 'bodyClassFrontend'));
477
  add_action('wp_head', array($this, 'insertTemplateHead'));
478
- add_action('brizy_template_content', array($this, 'insertTemplateContent'), -12000);
479
  add_action('wp_enqueue_scripts', array($this, 'enqueue_preview_assets'), 9999);
480
  $this->addTheContentFilters();
481
  }
@@ -494,7 +494,6 @@ class Brizy_Admin_Templates
494
  remove_filter('the_content', array($this, 'filterPageContent'), -12000);
495
  }
496
 
497
-
498
  /**
499
  * @internal
500
  */
@@ -531,9 +530,7 @@ class Brizy_Admin_Templates
531
  do_action('brizy_preview_enqueue_scripts');
532
  }
533
 
534
-
535
- public function bodyClassFrontend($classes)
536
- {
537
 
538
  $classes[] = 'brz';
539
 
@@ -546,20 +543,44 @@ class Brizy_Admin_Templates
546
  public function insertTemplateHead()
547
  {
548
 
549
- if ( ! self::getTemplate()) {
550
- return;
551
- }
 
 
 
 
552
 
553
- $pid = Brizy_Editor::get()->currentPostId();
 
 
554
 
555
- $post = null;
556
- if ($pid) {
557
- $post = get_post($pid);
558
- }
 
 
 
 
559
 
560
- $compiled_page = self::getTemplate()->get_compiled_page();
 
 
561
 
562
- $head = apply_filters('brizy_content', $compiled_page->get_head(), Brizy_Editor_Project::get(), $post, 'head');
 
 
 
 
 
 
 
 
 
 
 
 
563
  ?>
564
  <!-- BRIZY HEAD -->
565
  <?php echo $head; ?>
@@ -567,38 +588,68 @@ class Brizy_Admin_Templates
567
  <?php
568
  }
569
 
 
 
 
570
 
571
- /**
572
- * @param $content
573
- *
574
- * @return null|string|string[]
575
- * @throws Exception
576
- */
577
- public function insertTemplateContent()
578
- {
 
 
579
 
580
- if ( ! self::getTemplate()) {
581
- return;
582
- }
583
 
584
- $pid = Brizy_Editor::get()->currentPostId();
 
 
 
585
 
586
- $post = null;
587
- if ($pid) {
588
- $post = get_post($pid);
589
- }
590
 
591
- $compiled_page = self::getTemplate()->get_compiled_page();
 
 
592
 
593
- $content = apply_filters(
594
- 'brizy_content',
595
- $compiled_page->get_body(),
596
- Brizy_Editor_Project::get(),
597
- $post,
598
- 'body'
599
- );
600
 
601
- echo apply_filters('the_content',$content);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
602
  }
603
 
604
  /**
@@ -620,11 +671,11 @@ class Brizy_Admin_Templates
620
  $brizyPost = get_post( $pid );
621
  }
622
 
623
- $compiled_page = self::getTemplate()->get_compiled_page();
624
 
625
  return apply_filters(
626
  'brizy_content',
627
- $compiled_page->get_body(),
628
  Brizy_Editor_Project::get(),
629
  $brizyPost,
630
  'body'
473
  remove_filter('the_content', 'wpautop');
474
 
475
  // insert the compiled head and content
476
+ add_filter( 'body_class', array($this, 'bodyClassFrontend'));
477
  add_action('wp_head', array($this, 'insertTemplateHead'));
478
+ add_action('brizy_template_content', array($this, 'showTemplateContent'), -12000);
479
  add_action('wp_enqueue_scripts', array($this, 'enqueue_preview_assets'), 9999);
480
  $this->addTheContentFilters();
481
  }
494
  remove_filter('the_content', array($this, 'filterPageContent'), -12000);
495
  }
496
 
 
497
  /**
498
  * @internal
499
  */
530
  do_action('brizy_preview_enqueue_scripts');
531
  }
532
 
533
+ public function bodyClassFrontend( $classes ) {
 
 
534
 
535
  $classes[] = 'brz';
536
 
543
  public function insertTemplateHead()
544
  {
545
 
546
+ if ( ! self::getTemplate() ) {
547
+ return;
548
+ }
549
+ $pid = Brizy_Editor::get()->currentPostId();
550
+ $project = Brizy_Editor_Project::get();
551
+ $template = self::getTemplate();
552
+ $post = $template->getWpPost();
553
 
554
+ if ( $pid ) {
555
+ $post = get_post( $pid );
556
+ }
557
 
558
+ $compiled_page = self::getTemplate()->get_compiled_page();
559
+ $templateHead = $compiled_page->get_head();
560
+
561
+
562
+ $styles = $template->getCompiledStyles();
563
+ $assetGroups = [];
564
+ $assetGroups[] = \BrizyMerge\Assets\AssetGroup::instanceFromJsonData($styles['free']);
565
+ $assetGroups = apply_filters('brizy_pro_head_assets', $assetGroups, $template);
566
 
567
+ // add popups and popup assets
568
+ $popupMain = Brizy_Admin_Popups_Main::_init();
569
+ $templateHead .= $popupMain->getPopupsHtml($project, $template, 'head');
570
 
571
+ $assetGroups = array_merge($assetGroups, $popupMain->getPopupsAssets($project, $template, 'head'));
572
+
573
+ $assetAggregator = new \BrizyMerge\AssetAggregator($assetGroups);
574
+
575
+
576
+ // include content
577
+ $templateHead .= "<!-- BRIZY ASSETS -->\n\n";
578
+ foreach ($assetAggregator->getAssetList() as $asset) {
579
+ $templateHead .= $asset->getContent()."\n";
580
+ }
581
+ $templateHead .= "\n\n<!-- END BRIZY ASSETS -->";
582
+
583
+ $head = apply_filters('brizy_content', $templateHead, Brizy_Editor_Project::get(), $post, 'head');
584
  ?>
585
  <!-- BRIZY HEAD -->
586
  <?php echo $head; ?>
588
  <?php
589
  }
590
 
591
+ public function insertTemplateContent($content) {
592
+ return $this->getTemplateContent();
593
+ }
594
 
595
+ /**
596
+ * @param $content
597
+ *
598
+ * @return null|string|string[]
599
+ * @throws Exception
600
+ */
601
+ public function showTemplateContent() {
602
+ $content = $this->getTemplateContent();
603
+ echo apply_filters('the_content',$content);
604
+ }
605
 
 
 
 
606
 
607
+ private function getTemplateContent() {
608
+ if ( ! self::getTemplate()) {
609
+ return;
610
+ }
611
 
612
+ $pid = Brizy_Editor::get()->currentPostId();
 
 
 
613
 
614
+ $project = Brizy_Editor_Project::get();
615
+ $template = self::getTemplate();
616
+ $post = $template->getWpPost();
617
 
618
+ if ( $pid ) {
619
+ $post = get_post( $pid );
620
+ }
 
 
 
 
621
 
622
+ $compiled_page = self::getTemplate()->get_compiled_page();
623
+
624
+ $content = $compiled_page->get_body();
625
+
626
+ // // get all assets needed for this page
627
+ $scripts = $template->getCompiledScripts();
628
+ $assetGroups = [];
629
+ $assetGroups[] = \BrizyMerge\Assets\AssetGroup::instanceFromJsonData($scripts['free']);
630
+ $assetGroups = apply_filters('brizy_pro_body_assets', $assetGroups, $template);
631
+
632
+ // add popups and popup assets
633
+ $popupMain = Brizy_Admin_Popups_Main::_init();
634
+ $content .= $popupMain->getPopupsHtml($project, $template, 'body');
635
+
636
+ $assetGroups = array_merge($assetGroups, $popupMain->getPopupsAssets($project, $template, 'body'));
637
+ $assetAggregator = new \BrizyMerge\AssetAggregator($assetGroups);
638
+
639
+ // include content
640
+ $content .= "<!-- BRIZY ASSETS -->\n\n";
641
+ foreach ($assetAggregator->getAssetList() as $script) {
642
+ $content .= $script->getContent()."\n";
643
+ }
644
+ $content .= "\n\n<!-- END BRIZY ASSETS -->";
645
+
646
+ return apply_filters(
647
+ 'brizy_content',
648
+ $content,
649
+ Brizy_Editor_Project::get(),
650
+ $post,
651
+ 'body'
652
+ );
653
  }
654
 
655
  /**
671
  $brizyPost = get_post( $pid );
672
  }
673
 
674
+ $content = $this->getTemplateContent();
675
 
676
  return apply_filters(
677
  'brizy_content',
678
+ $content,
679
  Brizy_Editor_Project::get(),
680
  $brizyPost,
681
  'body'
admin/views/membership/checklist.php ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Output the roles checklist.
4
+ *
5
+ * @var $roles array All WordPress roles in name => label pairs.
6
+ * @var $user_roles array An array of role names belonging to the current user.
7
+ */
8
+ $creating = isset( $_POST['createuser'] );
9
+ $selected_roles = $creating && isset( $_POST['editor_multiple_roles'] ) ? wp_unslash( $_POST['editor_multiple_roles'] ) : '';
10
+ ?>
11
+
12
+ <div class="editor-checklist-roles" style="display:none;" data-label-text="<?php echo esc_attr( __( 'Roles' ) ); ?>">
13
+ <?php foreach( $roles as $name => $label ) : ?>
14
+ <label >
15
+ <input
16
+ type="checkbox"
17
+ name="editor_multiple_roles[]"
18
+ style="width:auto;"
19
+ value="<?php echo esc_attr( $name ); ?>"
20
+ <?php if ( ! is_null( $user_roles ) ) : // Edit user page
21
+ checked( in_array( $name, $user_roles ) );
22
+ elseif ( ! empty( $selected_roles ) ) : // Add new user page
23
+ checked( in_array( $name, $selected_roles ) );
24
+ endif; ?>
25
+ />
26
+ <?php echo esc_html( translate_user_role( $label ) ); ?>
27
+ </label>
28
+ <br />
29
+ <?php endforeach; ?>
30
+ </div>
admin/views/optimizer/optimizer-general.html.twig DELETED
@@ -1,133 +0,0 @@
1
- {% extends "optimizer-base.html.twig" %}
2
-
3
- {% block tab_content %}
4
- <script>
5
- (function ($) {
6
-
7
- var requestQueue = [];
8
- var maxRequestCount = 3;
9
- var count = {{ count }} ;
10
- var currentIndex = 0;
11
- var failCount = 0;
12
- var links = [
13
- {% for url in urls %}
14
- "{{ url | raw }}",
15
- {% endfor %}
16
- ];
17
-
18
- window.startOptimize = function () {
19
- currentIndex = 0;
20
- updateUI();
21
- if (links.length > 0) {
22
- const handle = setInterval(function () {
23
- if (requestQueue.length < maxRequestCount && links[currentIndex]) {
24
- // add request
25
- console.log('Add new request');
26
- requestQueue.push($.ajax({
27
- url: links[currentIndex].replace( /\&amp;/gi, '&' ),
28
- success: function (data) {
29
- updateUI();
30
- },
31
- error: function () {
32
- failCount++;
33
- updateUI();
34
- }
35
- }));
36
-
37
- currentIndex++;
38
-
39
- } else {
40
- console.log('Clear done requests');
41
- // check and remove done requests
42
- for (var i = 0; i < maxRequestCount; i++) {
43
- if (requestQueue[i] && requestQueue[i].readyState == 4) {
44
- requestQueue.splice(i, 1);
45
- }
46
- }
47
- }
48
-
49
- if (!links[currentIndex]) {
50
- console.log('Clear Interval');
51
- updateUI();
52
- clearInterval(handle);
53
- }
54
-
55
- }, 500);
56
- }
57
- };
58
-
59
- function updateUI() {
60
-
61
- var progress = (currentIndex) + "/" + count;
62
-
63
- if (currentIndex < links.length) {
64
- $('#optimize-results').html('<p>Process: ' + progress + '' +
65
- '<svg class="brz-spinner"><use xlink:href="{{ svg }}"></svg>' +
66
- '</p>' +
67
- '<p>Failed: ' + failCount + '</p>');
68
-
69
- $('#optimize-donotclose').show();
70
- window.onbeforeunload = function (e) {
71
- return '';
72
- };
73
- } else {
74
- $('#optimize-results').html('<p>Process: ' + progress + '' +
75
- '</p>' +
76
- '<p>Failed: ' + failCount + '</p>');
77
- $('#optimize-donotclose').hide();
78
- jQuery('#optimize-submit').prop('disabled', false);
79
- window.onbeforeunload = undefined;
80
- }
81
- }
82
- })(jQuery);
83
- </script>
84
- <div id="optimize-results">
85
- <p>{{ sprintf(__('There are <b>%d</b> images that can be optimized.','brizy') ,count) |raw }}</p>
86
- </div>
87
-
88
- {% if enabled %}
89
- {% if count>0 %}
90
- <button type="submit" id="optimize-submit" class="button button-primary"
91
- onclick="startOptimize(); jQuery(this).prop('disabled',true);">
92
- {{ submit_label }}
93
- </button>
94
- {% endif %}
95
- {% else %}
96
- <div class="notice notice-error is-dismissible">
97
- <p>
98
- {{ __('Please provide an API KEY in the Settings tab.') }}
99
- </p>
100
- </div>
101
- {% endif %}
102
-
103
- <div id="optimize-donotclose" style="display:none;color:red;">
104
- <p><i> {{ __("Don't leave this page until the optimisation process is completed.") }}</i></p>
105
- </div>
106
-
107
- <style>
108
- .brz-spinner {
109
- margin-left: 10px;
110
- display: inline-block;
111
- vertical-align: text-top;
112
- width: 16px;
113
- height: 16px;
114
- -webkit-animation-name: brz-pin;
115
- animation-name: brz-spin;
116
- -webkit-animation-duration: 1s;
117
- animation-duration: 1s;
118
- -webkit-animation-iteration-count: infinite;
119
- animation-iteration-count: infinite;
120
- -webkit-animation-timing-function: linear;
121
- animation-timing-function: linear;
122
- }
123
-
124
- @keyframes brz-spin {
125
- 0% {
126
- transform: rotate(0deg);
127
- }
128
- 100% {
129
- transform: rotate(360deg);
130
- }
131
- }
132
- </style>
133
- {% endblock %}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
brizy.php CHANGED
@@ -5,7 +5,7 @@
5
  * Plugin URI: https://brizy.io/
6
  * Author: Brizy.io
7
  * Author URI: https://brizy.io/
8
- * Version: 2.2.20
9
  * Text Domain: brizy
10
  * License: GPLv3
11
  * Domain Path: /languages
@@ -19,9 +19,9 @@ if ( isset( $_SERVER['HTTP_X_FORWARDED_PROTO'] ) && stripos( $_SERVER['HTTP_X_FO
19
 
20
  define( 'BRIZY_DEVELOPMENT', false );
21
  define( 'BRIZY_LOG', false );
22
- define( 'BRIZY_VERSION', '2.2.20' );
23
- define( 'BRIZY_EDITOR_VERSION', BRIZY_DEVELOPMENT ? 'dev' : '190-wp' );
24
- define( 'BRIZY_SYNC_VERSION', '190' );
25
  define( 'BRIZY_FILE', __FILE__ );
26
  define( 'BRIZY_PLUGIN_BASE', plugin_basename( BRIZY_FILE ) );
27
  define( 'BRIZY_PLUGIN_PATH', dirname( BRIZY_FILE ) );
5
  * Plugin URI: https://brizy.io/
6
  * Author: Brizy.io
7
  * Author URI: https://brizy.io/
8
+ * Version: 2.3.0
9
  * Text Domain: brizy
10
  * License: GPLv3
11
  * Domain Path: /languages
19
 
20
  define( 'BRIZY_DEVELOPMENT', false );
21
  define( 'BRIZY_LOG', false );
22
+ define( 'BRIZY_VERSION', '2.3.0' );
23
+ define( 'BRIZY_EDITOR_VERSION', BRIZY_DEVELOPMENT ? 'dev' : '193-wp' );
24
+ define( 'BRIZY_SYNC_VERSION', '193' );
25
  define( 'BRIZY_FILE', __FILE__ );
26
  define( 'BRIZY_PLUGIN_BASE', plugin_basename( BRIZY_FILE ) );
27
  define( 'BRIZY_PLUGIN_PATH', dirname( BRIZY_FILE ) );
content/content-placeholder.php DELETED
@@ -1,143 +0,0 @@
1
- <?php
2
-
3
-
4
-
5
- /**
6
- * Class BrizyPro_Content_Placeholder
7
- */
8
- class Brizy_Content_ContentPlaceholder {
9
-
10
- /**
11
- * @var string
12
- */
13
- protected $uid;
14
-
15
- /**
16
- * @var string
17
- */
18
- protected $placeholder;
19
-
20
- /**
21
- * @var string
22
- */
23
- protected $name;
24
-
25
- /**
26
- * @var []
27
- */
28
- protected $attributes;
29
-
30
- /**
31
- * @var string
32
- */
33
- protected $content;
34
-
35
- /**
36
- * BrizyPro_Content_ContentPlaceholder constructor.
37
- *
38
- * @param $name
39
- * @param $placeholder
40
- * @param null $attributes
41
- * @param null $content
42
- */
43
- public function __construct( $name, $placeholder, $attributes = null, $content = null ) {
44
-
45
- $this->setUid( md5( microtime() . rand( 0, PHP_INT_MAX ).$placeholder ) );
46
- $this->setPlaceholder( $placeholder );
47
- $this->setName( $name );
48
- $this->setAttributes( $attributes );
49
- $this->setContent( $content );
50
- }
51
-
52
- /**
53
- * @return string
54
- */
55
- public function getUid() {
56
- return $this->uid;
57
- }
58
-
59
- /**
60
- * @param $uid
61
- *
62
- * @return $this
63
- */
64
- public function setUid( $uid ) {
65
- $this->uid = $uid;
66
-
67
- return $this;
68
- }
69
-
70
- /**
71
- * @return string
72
- */
73
- public function getPlaceholder() {
74
- return $this->placeholder;
75
- }
76
-
77
- /**
78
- * @param $placeholder
79
- *
80
- * @return $this
81
- */
82
- public function setPlaceholder( $placeholder ) {
83
- $this->placeholder = $placeholder;
84
-
85
- return $this;
86
- }
87
-
88
- /**
89
- * @return string
90
- */
91
- public function getName() {
92
- return $this->name;
93
- }
94
-
95
- /**
96
- * @param $name
97
- *
98
- * @return $this
99
- */
100
- public function setName( $name ) {
101
- $this->name = $name;
102
-
103
- return $this;
104
- }
105
-
106
- /**
107
- * @return mixed
108
- */
109
- public function getAttributes() {
110
- return $this->attributes;
111
- }
112
-
113
- /**
114
- * @param $attributes
115
- *
116
- * @return $this
117
- */
118
- public function setAttributes( $attributes ) {
119
- $this->attributes = $attributes;
120
-
121
- return $this;
122
- }
123
-
124
- /**
125
- * @return string
126
- */
127
- public function getContent() {
128
- return $this->content;
129
- }
130
-
131
- /**
132
- * @param $content
133
- *
134
- * @return $this
135
- */
136
- public function setContent( $content ) {
137
- $this->content = $content;
138
-
139
- return $this;
140
- }
141
-
142
-
143
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
content/context.php CHANGED
@@ -1,6 +1,8 @@
1
  <?php
2
 
3
- class Brizy_Content_Context {
 
 
4
 
5
  private $data = array();
6
 
1
  <?php
2
 
3
+ use BrizyPlaceholders\ContextInterface;
4
+
5
+ class Brizy_Content_Context implements ContextInterface {
6
 
7
  private $data = array();
8
 
content/dynamic-content-processor.php CHANGED
@@ -1,5 +1,8 @@
1
  <?php
2
 
 
 
 
3
  class Brizy_Content_DynamicContentProcessor implements Brizy_Editor_Content_ProcessorInterface {
4
 
5
  /**
@@ -11,15 +14,15 @@ class Brizy_Content_DynamicContentProcessor implements Brizy_Editor_Content_Proc
11
  public function process( $content, Brizy_Content_Context $context ) {
12
 
13
  $placeholderProvider = new Brizy_Content_PlaceholderProvider( $context );
14
- $extractor = new Brizy_Content_PlaceholderExtractor( $placeholderProvider );
15
 
16
  $context->setProvider( $placeholderProvider );
17
 
18
- list( $placeholders, $content ) = $extractor->extract( $content );
19
 
20
- $replacer = new Brizy_Content_PlaceholderReplacer( $context, $placeholderProvider );
21
 
22
- $content = $replacer->getContent( $placeholders, $content ,$context);
23
 
24
  return $content;
25
  }
1
  <?php
2
 
3
+ use BrizyPlaceholders\Extractor;
4
+ use BrizyPlaceholders\Replacer;
5
+
6
  class Brizy_Content_DynamicContentProcessor implements Brizy_Editor_Content_ProcessorInterface {
7
 
8
  /**
14
  public function process( $content, Brizy_Content_Context $context ) {
15
 
16
  $placeholderProvider = new Brizy_Content_PlaceholderProvider( $context );
17
+ $extractor = new Extractor( $placeholderProvider );
18
 
19
  $context->setProvider( $placeholderProvider );
20
 
21
+ list( $contentPlaceholders, $placeholderInstances, $content ) = $extractor->extract( $content );
22
 
23
+ $replacer = new Replacer( $placeholderProvider );
24
 
25
+ $content = $replacer->replaceWithExtractedData( $contentPlaceholders, $placeholderInstances, $content ,$context);
26
 
27
  return $content;
28
  }
content/placeholder-extractor.php CHANGED
@@ -1,6 +1,11 @@
1
  <?php
2
 
3
 
 
 
 
 
 
4
  class Brizy_Content_PlaceholderExtractor
5
  {
6
 
@@ -59,7 +64,7 @@ class Brizy_Content_PlaceholderExtractor
59
  continue;
60
  }
61
 
62
- $placeholder = new Brizy_Content_ContentPlaceholder(
63
  $matches['placeholderName'][$i],
64
  $matches['placeholder'][$i],
65
  $this->getPlaceholderAttributes($matches['attributes'][$i]),
1
  <?php
2
 
3
 
4
+ /**
5
+ * @deprecated
6
+ *
7
+ * Class Brizy_Content_PlaceholderExtractor
8
+ */
9
  class Brizy_Content_PlaceholderExtractor
10
  {
11
 
64
  continue;
65
  }
66
 
67
+ $placeholder = new \BrizyPlaceholders\ContentPlaceholder(
68
  $matches['placeholderName'][$i],
69
  $matches['placeholder'][$i],
70
  $this->getPlaceholderAttributes($matches['attributes'][$i]),
content/placeholder-provider.php CHANGED
@@ -1,97 +1,134 @@
1
  <?php
2
 
3
- class Brizy_Content_PlaceholderProvider extends Brizy_Content_Providers_AbstractProvider {
4
-
5
- /**
6
- * @var array of implements Brizy_Editor_Content_PlaceholdersProviderInterface
7
- */
8
- protected $providers = array();
9
-
10
- /**
11
- * @var array
12
- */
13
- static private $cache_grouped_placeholders = null;
14
- static private $cache_all_placeholders = null;
15
-
16
- /**
17
- * BrizyPro_Content_ProviderPlaceholders constructor.
18
- *
19
- * $context: for back compatibility
20
- *
21
- * @param Brizy_Content_Context $context
22
- */
23
- public function __construct( $context = null ) {
24
- $this->providers[] = new Brizy_Content_Providers_FreeProvider( );
25
- $this->providers = apply_filters( 'brizy_providers', $this->providers, null );
26
- }
27
-
28
- /**
29
- * @return array
30
- */
31
- public function getGroupedPlaceholders() {
32
-
33
- if ( self::$cache_grouped_placeholders ) {
34
- return self::$cache_grouped_placeholders;
35
- }
36
-
37
- $placeholders = array();
38
- $keys = array();
39
-
40
- foreach ( $this->providers as $provider ) {
41
-
42
- foreach ( $provider->getGroupedPlaceholders() as $provider_name => $provider_placeholders ) {
43
- /*$placeholders[ $provider_name ] = $provider_placeholders; - better way; to clean wp provider*/
44
-
45
- foreach ( $provider_placeholders as $type => $holders ) {
46
-
47
- if ( ! isset( $placeholders[ $type ][ $provider_name ] ) ) {
48
- $placeholders[ $type ][ $provider_name ] = array();
49
- }
50
-
51
- if ( 'wp' === $provider_name ) {
52
- $keys = array_filter( $keys, 'is_string' );
53
- $placeholders[ $type ]['wp'] = array_values( array_diff_key( $holders, array_fill_keys( $keys, '' ) ) );
54
- continue;
55
- }
56
-
57
- $placeholders[ $type ][ $provider_name ] = array_merge( $placeholders[ $type ][ $provider_name ], array_values( $holders ) );
58
- $keys = array_merge( $keys, array_keys( $holders ) );
59
- }
60
- }
61
- }
62
-
63
- return apply_filters( 'brizy_placeholders', self::$cache_grouped_placeholders = $placeholders );
64
- }
65
-
66
- /**
67
- * @return array
68
- */
69
- public function getAllPlaceholders() {
70
- $out = array();
71
-
72
- if ( self::$cache_all_placeholders ) {
73
- return self::$cache_all_placeholders;
74
- }
75
-
76
- foreach ( $this->providers as $provider ) {
77
- $out = array_merge( $out, $provider->getAllPlaceholders() );
78
- }
79
-
80
- self::$cache_all_placeholders = $out;
81
-
82
- return $out;
83
- }
84
-
85
- /**
86
- * @param $name
87
- *
88
- * @return Brizy_Content_Placeholders_Abstract
89
- */
90
- public function getPlaceholder( $name ) {
91
- foreach ( $this->getAllPlaceholders() as $placeholder ) {
92
- if ( $placeholder->getPlaceholder() === $name ) {
93
- return $placeholder;
94
- }
95
- }
96
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
97
  }
1
  <?php
2
 
3
+ use BrizyPlaceholders\PlaceholderInterface;
4
+ use BrizyPlaceholders\RegistryInterface;
5
+
6
+ class Brizy_Content_PlaceholderProvider implements RegistryInterface
7
+ {
8
+
9
+ /**
10
+ * @var array of implements Brizy_Editor_Content_PlaceholdersProviderInterface
11
+ */
12
+ protected $providers = array();
13
+
14
+ /**
15
+ * @var array
16
+ */
17
+ static private $cache_grouped_placeholders = null;
18
+ static private $cache_all_placeholders = null;
19
+
20
+ /**
21
+ * BrizyPro_Content_ProviderPlaceholders constructor.
22
+ *
23
+ * $context: for back compatibility
24
+ *
25
+ * @param Brizy_Content_Context $context
26
+ */
27
+ public function __construct($context = null)
28
+ {
29
+ $this->providers[] = new Brizy_Content_Providers_FreeProvider();
30
+ $this->providers = apply_filters('brizy_providers', $this->providers, null);
31
+ }
32
+
33
+ /**
34
+ * @return array
35
+ */
36
+ public function getPlaceholders()
37
+ {
38
+ $out = array();
39
+
40
+ if (self::$cache_all_placeholders) {
41
+ return self::$cache_all_placeholders;
42
+ }
43
+
44
+ foreach ($this->providers as $provider) {
45
+ $out = array_merge($out, $provider->getPlaceholders());
46
+ }
47
+
48
+ self::$cache_all_placeholders = $out;
49
+
50
+ return $out;
51
+ }
52
+
53
+
54
+ /**
55
+ * @return array
56
+ */
57
+ public function getGroupedPlaceholders()
58
+ {
59
+ if (self::$cache_grouped_placeholders) {
60
+ return self::$cache_grouped_placeholders;
61
+ }
62
+
63
+ $result = array();
64
+
65
+ foreach ($this->providers as $provider) {
66
+
67
+ foreach ($provider->getPlaceholders() as $placeholder) {
68
+
69
+ if($placeholder->getGroup())
70
+ {
71
+ $result[ $placeholder->getGroup() ][] = $placeholder;
72
+ }
73
+ }
74
+ }
75
+
76
+ return apply_filters('brizy_placeholders', self::$cache_grouped_placeholders = $result);
77
+ }
78
+
79
+ public function getGroupedPlaceholdersForApiResponse()
80
+ {
81
+ $groups = $this->getGroupedPlaceholders();
82
+ $result = [];
83
+ foreach ($groups as $group => $entries) {
84
+
85
+ $result[$group] = array_map(function ($entry) {
86
+ return [
87
+ 'placeholder'=>'{{'.$entry->getPlaceholder().'}}',
88
+ 'label'=>$entry->getLabel(),
89
+ 'display'=>$entry->getDisplay()
90
+ ];
91
+ }, $entries);
92
+ }
93
+
94
+ return $result;
95
+ }
96
+
97
+ /**
98
+ * @param $name
99
+ * @return \BrizyPlaceholders\PlaceholderInterface
100
+ */
101
+ // public function getPlaceholder($name)
102
+ // {
103
+ // return $this->getPlaceholderSupportingName($name);
104
+ // }
105
+
106
+ /**
107
+ * @inheritDoc
108
+ */
109
+ // public function getPlaceholdersByGroup($groupName)
110
+ // {
111
+ // $getGroupedPlaceholders = $this->getGroupedPlaceholders();
112
+ //
113
+ // if (isset($getGroupedPlaceholders[$groupName])) {
114
+ // return $getGroupedPlaceholders[$groupName];
115
+ // }
116
+ // }
117
+
118
+ /**
119
+ * @inheritDoc
120
+ */
121
+ public function getPlaceholderSupportingName($name)
122
+ {
123
+ foreach ($this->providers as $provider) {
124
+ if($instance = $provider->getPlaceholderSupportingName($name)) {
125
+ return $instance;
126
+ }
127
+ }
128
+ }
129
+
130
+ public function registerPlaceholder(PlaceholderInterface $instance)
131
+ {
132
+ throw new Exception('Try to use a specific registry to register the placeholder');
133
+ }
134
  }
content/placeholder-replacer.php CHANGED
@@ -1,6 +1,11 @@
1
  <?php
2
 
3
 
 
 
 
 
 
4
  class Brizy_Content_PlaceholderReplacer {
5
 
6
  /**
1
  <?php
2
 
3
 
4
+ /**
5
+ * @deprecated
6
+ *
7
+ * Class Brizy_Content_PlaceholderReplacer
8
+ */
9
  class Brizy_Content_PlaceholderReplacer {
10
 
11
  /**
content/placeholders/abstract.php CHANGED
@@ -1,7 +1,11 @@
1
  <?php
2
 
3
- abstract class Brizy_Content_Placeholders_Abstract extends Brizy_Admin_Serializable {
 
 
4
 
 
 
5
 
6
  const DISPLAY_INLINE = 'inline';
7
  const DISPLAY_BLOCK = 'block';
@@ -21,24 +25,34 @@ abstract class Brizy_Content_Placeholders_Abstract extends Brizy_Admin_Serializa
21
  */
22
  protected $display = self::DISPLAY_INLINE;
23
 
24
- /**
25
- * @param Brizy_Content_Context $context
26
- * @param Brizy_Content_ContentPlaceholder $contentPlaceholder
27
- * @param null $display
28
- *
29
- * @return mixed
30
- */
31
- abstract public function getValue( Brizy_Content_Context $context, Brizy_Content_ContentPlaceholder $contentPlaceholder );
32
-
33
- /**
34
- * This must return the option value that will be passed to the editor
35
- *
36
- *
37
- * @return mixed
38
- */
39
- abstract protected function getOptionValue();
40
-
41
- /**
 
 
 
 
 
 
 
 
 
 
42
  * @return mixed
43
  */
44
  public function getLabel() {
@@ -74,6 +88,24 @@ abstract class Brizy_Content_Placeholders_Abstract extends Brizy_Admin_Serializa
74
  return $this;
75
  }
76
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
77
  /**
78
  * @return mixed
79
  */
@@ -100,7 +132,6 @@ abstract class Brizy_Content_Placeholders_Abstract extends Brizy_Admin_Serializa
100
  'label' => $this->getLabel(),
101
  'placeholder' => $this->getPlaceholder(),
102
  'display' => $this->getDisplay(),
103
- 'data' => $this->getOptionValue(),
104
  );
105
  }
106
 
@@ -109,7 +140,6 @@ abstract class Brizy_Content_Placeholders_Abstract extends Brizy_Admin_Serializa
109
  'label' => $this->getLabel(),
110
  'placeholder' => $this->getReplacePlaceholder(),
111
  'display' => $this->getDisplay(),
112
- 'data' => $this->getOptionValue(),
113
  );
114
  }
115
 
@@ -126,15 +156,4 @@ abstract class Brizy_Content_Placeholders_Abstract extends Brizy_Admin_Serializa
126
  return "";
127
  }
128
 
129
- /**
130
- * @return string
131
- */
132
- public function getData() {
133
- $value = $this->getValue( null );
134
- if ( is_callable( $value ) ) {
135
- return $this->getReplacePlaceholder();
136
- }
137
-
138
- return $value;
139
- }
140
  }
1
  <?php
2
 
3
+ use \BrizyPlaceholders\ContentPlaceholder;
4
+ use BrizyPlaceholders\ContextInterface;
5
+ use \BrizyPlaceholders\PlaceholderInterface;
6
 
7
+ abstract class Brizy_Content_Placeholders_Abstract extends Brizy_Admin_Serializable implements PlaceholderInterface
8
+ {
9
 
10
  const DISPLAY_INLINE = 'inline';
11
  const DISPLAY_BLOCK = 'block';
25
  */
26
  protected $display = self::DISPLAY_INLINE;
27
 
28
+ protected $group = '';
29
+
30
+ /**
31
+ * It should return an unique identifier of the placeholder
32
+ *
33
+ * @return mixed
34
+ */
35
+ public function getUid()
36
+ {
37
+ return md5(microtime());
38
+ }
39
+
40
+ public function support($placeholderName) {
41
+ return $this->getPlaceholder()==$placeholderName;
42
+ }
43
+
44
+ public function shouldFallbackValue($value, ContextInterface $context, ContentPlaceholder $placeholder)
45
+ {
46
+ return empty($value);
47
+ }
48
+
49
+ public function getFallbackValue(ContextInterface $context, ContentPlaceholder $placeholder)
50
+ {
51
+ $attributes = $placeholder->getAttributes();
52
+ return isset($attributes[PlaceholderInterface::FALLBACK_KEY]) ? $attributes[PlaceholderInterface::FALLBACK_KEY] : '';
53
+ }
54
+
55
+ /**
56
  * @return mixed
57
  */
58
  public function getLabel() {
88
  return $this;
89
  }
90
 
91
+ /**
92
+ * @return string
93
+ */
94
+ public function getGroup()
95
+ {
96
+ return $this->group;
97
+ }
98
+
99
+ /**
100
+ * @param string $group
101
+ * @return Brizy_Content_Placeholders_Abstract
102
+ */
103
+ public function setGroup($group)
104
+ {
105
+ $this->group = $group;
106
+ return $this;
107
+ }
108
+
109
  /**
110
  * @return mixed
111
  */
132
  'label' => $this->getLabel(),
133
  'placeholder' => $this->getPlaceholder(),
134
  'display' => $this->getDisplay(),
 
135
  );
136
  }
137
 
140
  'label' => $this->getLabel(),
141
  'placeholder' => $this->getReplacePlaceholder(),
142
  'display' => $this->getDisplay(),
 
143
  );
144
  }
145
 
156
  return "";
157
  }
158
 
 
 
 
 
 
 
 
 
 
 
 
159
  }
content/placeholders/image-attribute.php CHANGED
@@ -22,7 +22,7 @@ abstract class Brizy_Content_Placeholders_ImageAttribute extends Brizy_Content_P
22
  * @param string|array $value
23
  */
24
  public function __construct( $label, $placeholder ) {
25
- parent::__construct( $label, $placeholder, function ( Brizy_Content_Context $context, Brizy_Content_ContentPlaceholder $contentPlaceholder ) {
26
  $attributes = $contentPlaceholder->getAttributes();
27
 
28
  $attachmentId = null;
@@ -44,11 +44,11 @@ abstract class Brizy_Content_Placeholders_ImageAttribute extends Brizy_Content_P
44
  /**
45
  * @param $placeholderName
46
  * @param Brizy_Content_Context $context
47
- * @param Brizy_Content_ContentPlaceholder $contentPlaceholder
48
  *
49
  * @return int|mixed|null|string
50
  */
51
- protected function getAttachmentIdByPlaceholderName( $placeholderName, Brizy_Content_Context $context, Brizy_Content_ContentPlaceholder $contentPlaceholder ) {
52
  $attachmentId = null;
53
 
54
  $provider = $context->getProvider();
@@ -56,7 +56,7 @@ abstract class Brizy_Content_Placeholders_ImageAttribute extends Brizy_Content_P
56
  if(!$provider)
57
  return;
58
 
59
- $placeholder = $provider->getPlaceholder( $placeholderName );
60
 
61
  if ( $placeholder instanceof BrizyPro_Content_Placeholders_Image ) {
62
  $attachmentId = $placeholder->getAttachmentId( $context, $contentPlaceholder );
22
  * @param string|array $value
23
  */
24
  public function __construct( $label, $placeholder ) {
25
+ parent::__construct( $label, $placeholder, function ( Brizy_Content_Context $context, \BrizyPlaceholders\ContentPlaceholder $contentPlaceholder ) {
26
  $attributes = $contentPlaceholder->getAttributes();
27
 
28
  $attachmentId = null;
44
  /**
45
  * @param $placeholderName
46
  * @param Brizy_Content_Context $context
47
+ * @param \BrizyPlaceholders\ContentPlaceholder $contentPlaceholder
48
  *
49
  * @return int|mixed|null|string
50
  */
51
+ protected function getAttachmentIdByPlaceholderName( $placeholderName, Brizy_Content_Context $context, \BrizyPlaceholders\ContentPlaceholder $contentPlaceholder ) {
52
  $attachmentId = null;
53
 
54
  $provider = $context->getProvider();
56
  if(!$provider)
57
  return;
58
 
59
+ $placeholder = $provider->getPlaceholderSupportingName( $placeholderName );
60
 
61
  if ( $placeholder instanceof BrizyPro_Content_Placeholders_Image ) {
62
  $attachmentId = $placeholder->getAttachmentId( $context, $contentPlaceholder );
content/placeholders/image-attributes-aware.php CHANGED
@@ -1,5 +1,6 @@
1
  <?php
2
 
 
3
 
4
  trait Brizy_Content_Placeholders_ImageAttributesAware {
5
 
@@ -8,9 +9,9 @@ trait Brizy_Content_Placeholders_ImageAttributesAware {
8
  * Ex: alt="image alt attribute" title="Image title"
9
  *
10
  * @param Brizy_Content_Context $context
11
- * @param Brizy_Content_ContentPlaceholder $contentPlaceholder
12
  *
13
  * @return
14
  */
15
- abstract public function getAttachmentId( Brizy_Content_Context $context, Brizy_Content_ContentPlaceholder $contentPlaceholder );
16
  }
1
  <?php
2
 
3
+ use \BrizyPlaceholders\ContentPlaceholder;
4
 
5
  trait Brizy_Content_Placeholders_ImageAttributesAware {
6
 
9
  * Ex: alt="image alt attribute" title="Image title"
10
  *
11
  * @param Brizy_Content_Context $context
12
+ * @param ContentPlaceholder $contentPlaceholder
13
  *
14
  * @return
15
  */
16
+ abstract public function getAttachmentId( Brizy_Content_Context $context, ContentPlaceholder $contentPlaceholder );
17
  }
content/placeholders/permalink.php CHANGED
@@ -1,5 +1,7 @@
1
  <?php
2
 
 
 
3
  class Brizy_Content_Placeholders_Permalink extends Brizy_Content_Placeholders_Simple {
4
 
5
 
@@ -16,12 +18,12 @@ class Brizy_Content_Placeholders_Permalink extends Brizy_Content_Placeholders_Si
16
  }
17
 
18
  /**
19
- * @param Brizy_Content_ContentPlaceholder $contentPlaceholder
20
  * @param Brizy_Content_Context $context
21
  *
22
  * @return mixed|string
23
  */
24
- public function getValue( Brizy_Content_Context $context, Brizy_Content_ContentPlaceholder $contentPlaceholder ) {
25
  $attributes = $contentPlaceholder->getAttributes();
26
  if ( isset( $attributes['post_id'] ) && (int) $attributes['post_id'] > 0 ) {
27
  return get_permalink( (int) $attributes['post_id'] );
1
  <?php
2
 
3
+ use BrizyPlaceholders\ContentPlaceholder;
4
+
5
  class Brizy_Content_Placeholders_Permalink extends Brizy_Content_Placeholders_Simple {
6
 
7
 
18
  }
19
 
20
  /**
21
+ * @param ContentPlaceholder $contentPlaceholder
22
  * @param Brizy_Content_Context $context
23
  *
24
  * @return mixed|string
25
  */
26
+ public function getValue(\BrizyPlaceholders\ContextInterface $context, ContentPlaceholder $contentPlaceholder) {
27
  $attributes = $contentPlaceholder->getAttributes();
28
  if ( isset( $attributes['post_id'] ) && (int) $attributes['post_id'] > 0 ) {
29
  return get_permalink( (int) $attributes['post_id'] );
content/placeholders/simple.php CHANGED
@@ -1,56 +1,48 @@
1
  <?php
2
 
3
- class Brizy_Content_Placeholders_Simple extends Brizy_Content_Placeholders_Abstract {
4
-
5
- /**
6
- * @return string|callable
7
- */
8
- protected $value;
9
-
10
- /**
11
- * Brizy_Content_Placeholders_Simple constructor.
12
- *
13
- * @param $label
14
- * @param $placeholder
15
- * @param $value
16
- * @param string $display
17
- */
18
- public function __construct( $label, $placeholder, $value, $display = Brizy_Content_Placeholders_Abstract::DISPLAY_INLINE ) {
19
- $this->setLabel( $label );
20
- $this->setPlaceholder( $placeholder );
21
- $this->setDisplay( $display );
22
-
23
- $this->value = $value;
24
- }
25
-
26
- /**
27
- * @param Brizy_Content_ContentPlaceholder $contentPlaceholder
28
- * @param Brizy_Content_Context $context
29
- *
30
- * @return mixed|string
31
- */
32
- public function getValue( Brizy_Content_Context $context, Brizy_Content_ContentPlaceholder $contentPlaceholder ) {
33
-
34
- $method = $this->value;
35
-
36
- if ( is_object( $method ) && ( $method instanceof Closure ) ) {
37
- return call_user_func( $method, $context, $contentPlaceholder );
38
- }
39
-
40
- return $this->value;
41
- }
42
-
43
- /**
44
- * @return mixed|string
45
- */
46
- protected function getOptionValue() {
47
-
48
- $method = $this->value;
49
-
50
- if ( is_callable( $method ) ) {
51
- return $this->getReplacePlaceholder();
52
- }
53
-
54
- return $this->value;
55
- }
56
  }
1
  <?php
2
 
3
+ use BrizyPlaceholders\ContentPlaceholder;
4
+ use BrizyPlaceholders\ContextInterface;
5
+
6
+ class Brizy_Content_Placeholders_Simple extends Brizy_Content_Placeholders_Abstract
7
+ {
8
+
9
+ /**
10
+ * @return string|callable
11
+ */
12
+ protected $value;
13
+
14
+ /**
15
+ * Brizy_Content_Placeholders_Simple constructor.
16
+ *
17
+ * @param $label
18
+ * @param $placeholder
19
+ * @param $value
20
+ * @param string $display
21
+ */
22
+ public function __construct($label, $placeholder, $value, $group = null, $display = Brizy_Content_Placeholders_Abstract::DISPLAY_INLINE)
23
+ {
24
+ $this->setLabel($label);
25
+ $this->setPlaceholder($placeholder);
26
+ $this->setDisplay($display);
27
+ $this->setGroup($group);
28
+
29
+ $this->value = $value;
30
+ }
31
+
32
+ /**
33
+ * @param ContextInterface $context
34
+ * @param ContentPlaceholder $placeholder
35
+ *
36
+ * @return mixed
37
+ */
38
+ public function getValue(ContextInterface $context, ContentPlaceholder $placeholder)
39
+ {
40
+ $method = $this->value;
41
+
42
+ if (is_object($method) && ($method instanceof Closure)) {
43
+ return call_user_func($method, $context, $placeholder);
44
+ }
45
+
46
+ return $this->value;
47
+ }
 
 
 
 
 
 
 
 
48
  }
content/placeholders/unique-page-url.php CHANGED
@@ -1,5 +1,7 @@
1
  <?php
2
 
 
 
3
  class Brizy_Content_Placeholders_UniquePageUrl extends Brizy_Content_Placeholders_Simple {
4
 
5
 
@@ -20,12 +22,12 @@ class Brizy_Content_Placeholders_UniquePageUrl extends Brizy_Content_Placeholder
20
  }
21
 
22
  /**
23
- * @param Brizy_Content_ContentPlaceholder $contentPlaceholder
24
  * @param Brizy_Content_Context $context
25
  *
26
  * @return mixed|string
27
  */
28
- public function getValue( Brizy_Content_Context $context, Brizy_Content_ContentPlaceholder $contentPlaceholder ) {
29
 
30
  global $wp;
31
 
1
  <?php
2
 
3
+ use BrizyPlaceholders\ContentPlaceholder;
4
+
5
  class Brizy_Content_Placeholders_UniquePageUrl extends Brizy_Content_Placeholders_Simple {
6
 
7
 
22
  }
23
 
24
  /**
25
+ * @param ContentPlaceholder $contentPlaceholder
26
  * @param Brizy_Content_Context $context
27
  *
28
  * @return mixed|string
29
  */
30
+ public function getValue(\BrizyPlaceholders\ContextInterface $context, ContentPlaceholder $contentPlaceholder) {
31
 
32
  global $wp;
33
 
content/providers/abstract-provider.php CHANGED
@@ -1,6 +1,7 @@
1
  <?php
 
2
 
3
- abstract class Brizy_Content_Providers_AbstractProvider implements Brizy_Content_Providers_Interface {
4
 
5
  /**
6
  * @return array
@@ -17,17 +18,6 @@ abstract class Brizy_Content_Providers_AbstractProvider implements Brizy_Content
17
  );
18
  }
19
 
20
- /**
21
- * @return array
22
- */
23
- public function getAllPlaceholders() {
24
- $out = array();
25
- foreach ( $this->getGroupedPlaceholders() as $placeholders ) {
26
- $out = array_merge( $out, call_user_func_array( 'array_merge', array_values($placeholders) ) );
27
- }
28
- return $out;
29
- }
30
-
31
  /**
32
  * @param $handle string
33
  * @param $deps array
1
  <?php
2
+ use \BrizyPlaceholders\Registry;
3
 
4
+ abstract class Brizy_Content_Providers_AbstractProvider extends Registry implements Brizy_Content_Providers_Interface {
5
 
6
  /**
7
  * @return array
18
  );
19
  }
20
 
 
 
 
 
 
 
 
 
 
 
 
21
  /**
22
  * @param $handle string
23
  * @param $deps array
content/providers/free-provider.php CHANGED
@@ -1,31 +1,21 @@
1
  <?php
2
 
 
 
3
 
4
- class Brizy_Content_Providers_FreeProvider extends Brizy_Content_Providers_AbstractProvider {
 
 
5
 
6
- /**
7
- * @return array|mixed
8
- */
9
- public function getGroupedPlaceholders() {
10
- return array();
11
- }
12
 
13
- /**
14
- * @return array|int
15
- * @throws Exception
16
- */
17
- public function getAllPlaceholders() {
18
-
19
- return array(
20
- new Brizy_Content_Placeholders_Simple( 'Internal Display Block By User Role', 'display_by_roles', function( Brizy_Content_Context $context, Brizy_Content_ContentPlaceholder $contentPlaceholder ) {
21
-
22
- $attrs = $contentPlaceholder->getAttributes();
23
 
24
- if ( ! empty( $attrs['roles'] ) ) {
25
- $roles = explode( ',', $attrs['roles'] );
26
- $user = wp_get_current_user();
27
 
28
- if ( Brizy_Editor::is_user_allowed() && isset( $user->roles ) ) {
29
 
30
  if ( ! empty( $_GET['role'] ) && $_GET['role'] != 'default' ) {
31
 
@@ -44,79 +34,67 @@ class Brizy_Content_Providers_FreeProvider extends Brizy_Content_Providers_Abstr
44
  $roles[] = 'default';
45
  $user->roles[] = 'default';
46
  }
47
- }
48
-
49
- if ( in_array( 'not_logged', $roles ) ) {
50
 
51
- $roles = array_diff( $roles, [ 'not_logged' ] );
52
 
53
- if ( is_user_logged_in() ) {
54
- if ( ! array_intersect( $roles, (array) $user->roles ) ) {
55
- return '';
56
- }
57
  }
58
- } else {
59
- if ( ! array_intersect( $roles, (array) $user->roles ) ) {
60
- return '';
61
- }
62
- }
63
- }
64
-
65
- $placeholderProvider = new Brizy_Content_PlaceholderProvider();
66
- $extractor = new Brizy_Content_PlaceholderExtractor( $placeholderProvider );
67
-
68
- list( $placeholders, $content ) = $extractor->extract( $contentPlaceholder->getContent() );
69
-
70
- $replacer = new Brizy_Content_PlaceholderReplacer( $context, $placeholderProvider );
71
-
72
- return $replacer->getContent( $placeholders, $content, $context );
73
- } ),
74
- new Brizy_Content_Placeholders_ImageTitleAttribute( 'Internal Title Attributes', 'brizy_dc_image_title' ),
75
- new Brizy_Content_Placeholders_ImageAltAttribute( 'Internal Alt Attributes', 'brizy_dc_image_alt' ),
76
- new Brizy_Content_Placeholders_UniquePageUrl( 'Uniquer page url', 'brizy_dc_current_page_unique_url' ),
77
- new Brizy_Content_Placeholders_Simple( 'WP Language', 'brizy_dc_page_language', get_locale() ),
78
- new Brizy_Content_Placeholders_Simple( 'Ajax Url', 'brizy_dc_ajax_url', admin_url( 'admin-ajax.php' ) ),
79
- new Brizy_Content_Placeholders_Permalink(),
80
- new Brizy_Content_Placeholders_Simple( '', 'editor_sidebar', function( $context, $contentPlaceholder ) {
81
-
82
- $attrs = $contentPlaceholder->getAttributes();
83
-
84
- $id = isset( $attrs['id'] ) ? $attrs['id'] : null;
85
 
86
- if ( $id ) {
87
- ob_start();
 
 
 
 
 
 
 
 
88
 
89
- dynamic_sidebar( $id );
90
 
91
- return ob_get_clean();
92
- }
93
 
94
- return '';
95
- } ),
96
 
97
- new Brizy_Content_Placeholders_Simple( '', 'editor_navigation', function( $context, $contentPlaceholder ) {
98
 
99
- $attrs = $contentPlaceholder->getAttributes();
 
100
 
101
- return $attrs['name'] ? wp_nav_menu( array( 'menu' => $attrs['name'], 'echo' => false ) ) : '';
102
- } ),
 
103
 
104
- new Brizy_Content_Placeholders_Simple( '', 'editor_post_field', function( $context, $contentPlaceholder ) {
105
 
106
- $attrs = $contentPlaceholder->getAttributes();
 
 
107
 
108
- $post = ( $context = Brizy_Content_ContextFactory::getGlobalContext() ) ? $context->getWpPost() : get_post();
109
 
110
- if ( ! $post || ! isset( $attrs['property'] ) ) {
111
- return '';
112
- }
113
 
114
- return $this->filterData( $attrs['property'], $post );
115
- } ),
 
116
 
117
- new Brizy_Content_Placeholders_Simple( '', 'editor_post_info', function() {
 
 
118
 
119
- $post = ( $context = Brizy_Content_ContextFactory::getGlobalContext() ) ? $context->getWpPost() : get_post();
120
 
121
  if ( $post ) {
122
  $twig = Brizy_TwigEngine::instance( BRIZY_PLUGIN_PATH . '/public/views' );
@@ -128,110 +106,103 @@ class Brizy_Content_Providers_FreeProvider extends Brizy_Content_Providers_Abstr
128
  $params['time'] = get_the_time( '', $post );
129
  $params['comments'] = sprintf( _n( '%s comment', '%s comments', $commentsCount, 'brizy' ), number_format_i18n( $commentsCount ) );
130
 
131
- return $twig->render( 'post-info.html.twig', $params );
132
- }
133
-
134
- return '';
135
- } ),
136
 
137
- new Brizy_Content_Placeholders_Simple( '', 'editor_posts', function( $context, $contentPlaceholder ) {
 
 
138
 
139
- $atts = $contentPlaceholder->getAttributes();
140
 
141
- // shortcode to use in page: {{editor_posts posts_per_page="5" category="1,2" orderby="date" order="DESC" columns="1" display_date="1" display_author="1"}}
142
 
143
- // this array is used as default values for displayPosts
144
- $extra_atts = array(
145
- "columns" => 1,
146
- "display_date" => 1,
147
- "display_author" => 1,
148
- );
149
 
150
- $extra_atts = array_merge( $extra_atts, $atts );
151
 
152
- $posts = $this->getPosts( $atts );
153
 
154
- return $this->displayPosts( $posts, $extra_atts );
155
- } ),
 
156
 
157
- new Brizy_Content_Placeholders_Simple( 'Product Page', 'editor_product_page', function( $context, $contentPlaceholder ) {
158
-
159
- $atts = $contentPlaceholder->getAttributes();
160
 
161
  // if ( ! empty( $atts['id'] ) ) {
162
  // $product_data = get_post( $atts['id'] );
163
  // $product = ! empty( $product_data ) && in_array( $product_data->post_type, [ 'product', 'product_variation' ] ) ? wc_setup_product_data( $product_data ) : false;
164
  // }
165
 
166
- if ( empty( $atts['id'] ) && current_user_can( 'manage_options' ) ) {
167
- return __( 'Please set a valid product', 'brizy' );
168
- }
169
-
170
- $this->setScriptDependency( 'brizy-preview', [ 'zoom', 'photoswipe', 'flexslider', 'wc-single-product' ] );
171
-
172
- // Avoid infinite loop. There's a call of the function the_content() in the woocommerce/single-product/tabs/description.php
173
- remove_filter( 'the_content', [ Brizy_Admin_Templates::instance(), 'filterPageContent' ], -12000 );
174
-
175
- $html = do_shortcode( '[product_page id="' . $atts['id'] . '"]' );
176
-
177
- add_filter( 'the_content', [ Brizy_Admin_Templates::instance(), 'filterPageContent' ], -12000 );
178
-
179
- return $html;
180
- } ),
181
-
182
- new Brizy_Content_Placeholders_Simple( 'Products Page', 'editor_product_products', function ( $context, $contentPlaceholder ) {
183
-
184
- $atts = $contentPlaceholder->getAttributes();
185
-
186
- $shortcodeAttributes = [];
187
-
188
- if(isset($atts['limit'])) {
189
- $shortcodeAttributes[] = sprintf("limit=\"%d\"",(int)$atts['limit']);
190
- }
191
- if(isset($atts['columns'])) {
192
- $shortcodeAttributes[] = sprintf("columns=\"%d\"",(int)$atts['columns']);
193
- }
194
- if(isset($atts['category'])) {
195
- $shortcodeAttributes[] = sprintf("category=\"%s\"",$atts['category']);
196
- }
197
- if(isset($atts['orderby'])) {
198
- $shortcodeAttributes[]= sprintf("orderby=\"%s\"",$atts['orderby']);
199
- }
200
- if(isset($atts['order'])) {
201
- $shortcodeAttributes[] = sprintf("order=\"%s\"",$atts['order']);
202
- }
203
-
204
- $shortcodeAttributes = implode(' ', $shortcodeAttributes);
205
-
206
- return do_shortcode( '[products '.$shortcodeAttributes.' ]' );
207
- } ),
208
-
209
- new Brizy_Content_Placeholders_Simple( '', 'editor_product_default_cart', function () {
210
- return do_shortcode( '[woocommerce_cart]' );
211
- } ),
212
-
213
- new Brizy_Content_Placeholders_Simple( '', 'editor_product_checkout', function () {
214
- return do_shortcode( '[woocommerce_checkout]' );
215
- } ),
216
-
217
- new Brizy_Content_Placeholders_Simple( '', 'editor_product_my_account', function () {
218
- return do_shortcode( '[woocommerce_my_account]' );
219
- } ),
220
-
221
- new Brizy_Content_Placeholders_Simple( '', 'editor_product_order_tracking', function () {
222
- return do_shortcode( '[woocommerce_order_tracking]' );
223
- } )
224
- );
225
- }
226
 
227
- private function filterData( $property, $post ) {
228
- switch ( $property ) {
 
229
  case 'post_title':
230
- return get_the_title( $post );
231
  case 'post_excerpt':
232
  return get_the_excerpt($post);
233
  case 'post_content':
234
- return get_the_content($post);
235
  case 'post_password':
236
  return '';
237
  default:
@@ -249,29 +220,28 @@ class Brizy_Content_Providers_FreeProvider extends Brizy_Content_Providers_Abstr
249
  *
250
  * @return string
251
  */
252
- public static function wp_trim_excerpt( $text = '', $post = null ) {
 
253
  global $pages;
254
 
255
  // not sure why this is null (this happens on author pages.. maybe there are more)
256
  //
257
- if(is_null($pages))
258
  $pages = [];
259
 
260
  $raw_excerpt = $text;
261
- if ( '' == $text ) {
262
 
263
- $post = get_post( $post );
264
- $text = get_the_content( '', false, $post );
265
 
266
 
267
-
268
- $text = strip_shortcodes( $text );
269
- $text = excerpt_remove_blocks( $text );
270
 
271
  /** This filter is documented in wp-includes/post-template.php */
272
- $text = apply_filters( 'the_content', $text );
273
- $text = str_replace( ']]>', ']]&gt;', $text );
274
-
275
 
276
 
277
  /**
@@ -282,7 +252,7 @@ class Brizy_Content_Providers_FreeProvider extends Brizy_Content_Providers_Abstr
282
  * @since 2.7.0
283
  *
284
  */
285
- $excerpt_length = apply_filters( 'excerpt_length', 55 );
286
 
287
  /**
288
  * Filters the string in the "more" link displayed after a trimmed excerpt.
@@ -292,8 +262,8 @@ class Brizy_Content_Providers_FreeProvider extends Brizy_Content_Providers_Abstr
292
  * @since 2.9.0
293
  *
294
  */
295
- $excerpt_more = apply_filters( 'excerpt_more', ' ' . '[&hellip;]' );
296
- $text = wp_trim_words( $text, $excerpt_length, $excerpt_more );
297
  }
298
 
299
  /**
@@ -305,46 +275,49 @@ class Brizy_Content_Providers_FreeProvider extends Brizy_Content_Providers_Abstr
305
  * @since 2.8.0
306
  *
307
  */
308
- return apply_filters( 'wp_trim_excerpt', $text, $raw_excerpt );
309
  }
310
 
311
- private function getPosts( $atts ) {
 
312
  // here are default posts arguments: https://codex.wordpress.org/Template_Tags/get_posts
313
  // maybe here we need to change some attributes, unset or add something before make query
314
- $posts = get_posts( $atts );
315
 
316
  return $posts;
317
  }
318
 
319
- private function displayPosts( $posts, $extra_atts ) {
 
320
  ob_start();
321
 
322
  $thumbnail_size = ''; // possible sizes: thumbnail, medium, medium_large, large
323
- if ( (int) $extra_atts['columns'] > 1 ) {
324
  $thumbnail_size = 'large';
325
  }
326
 
327
- foreach ( $posts as $post ) { ?>
328
  <article class="brz-article">
329
- <h2><a href="<?php echo get_permalink( $post->ID ); ?>"><?php echo get_the_title( $post ); ?></a></h2>
330
 
331
  <div class="brz-post-thumbnail">
332
- <?php echo get_the_post_thumbnail( $post, $thumbnail_size ); ?>
333
  </div>
334
 
335
  <div class="brz-post-description">
336
- <?php echo $this->getPostExcerpt( $post ); ?>
337
  </div>
338
 
339
- <?php if ( $extra_atts['display_date'] ) { ?>
340
  <div class="brz-post-date">
341
- <?php echo get_the_date( "", $post ); ?>
342
  </div>
343
  <?php } ?>
344
 
345
- <?php if ( $extra_atts['display_author'] ) { ?>
346
  <div class="brz-post-author">
347
- <a rel="author" href="<?php echo get_author_posts_url( $post->post_author ); ?>"><span itemprop="name"><?php echo get_the_author_meta( 'display_name', $post->post_author ); ?></span></a>
 
348
  </div>
349
  <?php } ?>
350
  </article>
@@ -354,19 +327,20 @@ class Brizy_Content_Providers_FreeProvider extends Brizy_Content_Providers_Abstr
354
  return ob_get_clean();
355
  }
356
 
357
- private function getPostExcerpt( $post ) {
358
- if ( ! empty( $post->post_excerpt ) ) {
 
359
  // if !empty excerpt
360
  return $post->post_excerpt;
361
  }
362
 
363
- $the_excerpt = strip_tags( strip_shortcodes( $post->post_content ) ); // Strips tags and shortcodes
364
  $excerpt_length = 50; // Sets excerpt length by word count, default in WP is 55
365
- $words = explode( ' ', $the_excerpt, $excerpt_length + 1 );
366
 
367
- if ( count( $words ) > $excerpt_length ) {
368
- array_pop( $words );
369
- $the_excerpt = implode( ' ', $words ); // put in excerpt only the number of word that is set in $excerpt_length
370
  }
371
 
372
  return $the_excerpt;
1
  <?php
2
 
3
+ use BrizyPlaceholders\ContentPlaceholder;
4
+ use \BrizyPlaceholders\Registry;
5
 
6
+ class Brizy_Content_Providers_FreeProvider extends Brizy_Content_Providers_AbstractProvider
7
+ {
8
+ public function __construct() {
9
 
10
+ $this->registerPlaceholder( new Brizy_Content_Placeholders_Simple('Internal Display Block By User Role', 'display_by_roles', function (Brizy_Content_Context $context, ContentPlaceholder $contentPlaceholder) {
 
 
 
 
 
11
 
12
+ $attrs = $contentPlaceholder->getAttributes();
 
 
 
 
 
 
 
 
 
13
 
14
+ if (!empty($attrs['roles'])) {
15
+ $roles = explode(',', $attrs['roles']);
16
+ $user = wp_get_current_user();
17
 
18
+ if ( Brizy_Editor::is_user_allowed() && isset( $user->roles ) ) {
19
 
20
  if ( ! empty( $_GET['role'] ) && $_GET['role'] != 'default' ) {
21
 
34
  $roles[] = 'default';
35
  $user->roles[] = 'default';
36
  }
37
+ }if (in_array('not_logged', $roles)) {
 
 
38
 
39
+ $roles = array_diff($roles, ['not_logged']);
40
 
41
+ if (is_user_logged_in() ) {
42
+ if ( !array_intersect($roles, (array)$user->roles)) {
43
+ return '';}
 
44
  }
45
+ } else {
46
+ if (!array_intersect($roles, (array)$user->roles)) {
47
+ return '';
48
+ }
49
+ }
50
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
51
 
52
+ $replacer = new \BrizyPlaceholders\Replacer($context->getProvider());
53
+ return $replacer->replacePlaceholders($contentPlaceholder->getContent(), $context);
54
+ }) );
55
+ $this->registerPlaceholder( new Brizy_Content_Placeholders_ImageTitleAttribute('Internal Title Attributes', 'brizy_dc_image_title') );
56
+ $this->registerPlaceholder( new Brizy_Content_Placeholders_ImageAltAttribute('Internal Alt Attributes', 'brizy_dc_image_alt') );
57
+ $this->registerPlaceholder( new Brizy_Content_Placeholders_UniquePageUrl('Uniquer page url', 'brizy_dc_current_page_unique_url') );
58
+ $this->registerPlaceholder( new Brizy_Content_Placeholders_Simple('WP Language', 'brizy_dc_page_language', get_locale()) );
59
+ $this->registerPlaceholder( new Brizy_Content_Placeholders_Simple('Ajax Url', 'brizy_dc_ajax_url', admin_url('admin-ajax.php')) );
60
+ $this->registerPlaceholder( new Brizy_Content_Placeholders_Permalink() );
61
+ $this->registerPlaceholder( new Brizy_Content_Placeholders_Simple('', 'post_*', function ($context, $contentPlaceholder) {
62
 
63
+ $attrs = $contentPlaceholder->getAttributes();
64
 
65
+ $id = isset($attrs['id']) ? $attrs['id'] : null;
 
66
 
67
+ if ($id) {
68
+ ob_start();
69
 
70
+ dynamic_sidebar($id);
71
 
72
+ return ob_get_clean();
73
+ }
74
 
75
+ return '';
76
+ }) );
77
+ $this->registerPlaceholder( new Brizy_Content_Placeholders_Simple('', 'editor_navigation', function ($context, $contentPlaceholder) {
78
 
79
+ $attrs = $contentPlaceholder->getAttributes();
80
 
81
+ return $attrs['name'] ? wp_nav_menu(array('menu' => $attrs['name'], 'echo' => false)) : '';
82
+ }) );
83
+ $this->registerPlaceholder( new Brizy_Content_Placeholders_Simple('', 'editor_post_field', function ($context, $contentPlaceholder) {
84
 
85
+ $attrs = $contentPlaceholder->getAttributes();
86
 
87
+ $post = ($context = Brizy_Content_ContextFactory::getGlobalContext()) ? $context->getWpPost() : get_post();
 
 
88
 
89
+ if (!$post || !isset($attrs['property'])) {
90
+ return '';
91
+ }
92
 
93
+ return $this->filterData($attrs['property'], $post);
94
+ }) );
95
+ $this->registerPlaceholder( new Brizy_Content_Placeholders_Simple('', 'editor_post_info', function () {
96
 
97
+ $post = ($context = Brizy_Content_ContextFactory::getGlobalContext()) ? $context->getWpPost() : get_post();
98
 
99
  if ( $post ) {
100
  $twig = Brizy_TwigEngine::instance( BRIZY_PLUGIN_PATH . '/public/views' );
106
  $params['time'] = get_the_time( '', $post );
107
  $params['comments'] = sprintf( _n( '%s comment', '%s comments', $commentsCount, 'brizy' ), number_format_i18n( $commentsCount ) );
108
 
109
+ return $twig->render('post-info.html.twig', $params);
110
+ }
 
 
 
111
 
112
+ return '';
113
+ }) );
114
+ $this->registerPlaceholder( new Brizy_Content_Placeholders_Simple('', 'editor_posts', function ($context, $contentPlaceholder) {
115
 
116
+ $atts = $contentPlaceholder->getAttributes();
117
 
118
+ // shortcode to use in page: {{editor_posts posts_per_page="5" category="1,2" orderby="date" order="DESC" columns="1" display_date="1" display_author="1"}}
119
 
120
+ // this array is used as default values for displayPosts
121
+ $extra_atts = array(
122
+ "columns" => 1,
123
+ "display_date" => 1,
124
+ "display_author" => 1,
125
+ );
126
 
127
+ $extra_atts = array_merge($extra_atts, $atts);
128
 
129
+ $posts = $this->getPosts($atts);
130
 
131
+ return $this->displayPosts($posts, $extra_atts);
132
+ }) );
133
+ $this->registerPlaceholder( new Brizy_Content_Placeholders_Simple('Product Page', 'editor_product_page', function ($context, $contentPlaceholder) {
134
 
135
+ $atts = $contentPlaceholder->getAttributes();
 
 
136
 
137
  // if ( ! empty( $atts['id'] ) ) {
138
  // $product_data = get_post( $atts['id'] );
139
  // $product = ! empty( $product_data ) && in_array( $product_data->post_type, [ 'product', 'product_variation' ] ) ? wc_setup_product_data( $product_data ) : false;
140
  // }
141
 
142
+ if (empty($atts['id']) && current_user_can('manage_options')) {
143
+ return __('Please set a valid product', 'brizy');
144
+ }
145
+
146
+ $this->setScriptDependency('brizy-preview', ['zoom', 'photoswipe', 'flexslider', 'wc-single-product']);
147
+
148
+ // Avoid infinite loop. There's a call of the function the_content() in the woocommerce/single-product/tabs/description.php
149
+ remove_filter('the_content', [Brizy_Admin_Templates::instance(), 'filterPageContent'], -12000);
150
+
151
+ $html = do_shortcode('[product_page id="' . $atts['id'] . '"]');
152
+
153
+ add_filter('the_content', [Brizy_Admin_Templates::instance(), 'filterPageContent'], -12000);
154
+
155
+ return $html;
156
+ }) );
157
+ $this->registerPlaceholder( new Brizy_Content_Placeholders_Simple('Products Page', 'editor_product_products', function ($context, $contentPlaceholder) {
158
+
159
+ $atts = $contentPlaceholder->getAttributes();
160
+
161
+ $shortcodeAttributes = [];
162
+
163
+ if (isset($atts['limit'])) {
164
+ $shortcodeAttributes[] = sprintf("limit=\"%d\"", (int)$atts['limit']);
165
+ }
166
+ if (isset($atts['columns'])) {
167
+ $shortcodeAttributes[] = sprintf("columns=\"%d\"", (int)$atts['columns']);
168
+ }
169
+ if (isset($atts['category'])) {
170
+ $shortcodeAttributes[] = sprintf("category=\"%s\"", $atts['category']);
171
+ }
172
+ if (isset($atts['orderby'])) {
173
+ $shortcodeAttributes[] = sprintf("orderby=\"%s\"", $atts['orderby']);
174
+ }
175
+ if (isset($atts['order'])) {
176
+ $shortcodeAttributes[] = sprintf("order=\"%s\"", $atts['order']);
177
+ }
178
+
179
+ $shortcodeAttributes = implode(' ', $shortcodeAttributes);
180
+
181
+ return do_shortcode('[products ' . $shortcodeAttributes . ' ]');
182
+ }) );
183
+ $this->registerPlaceholder( new Brizy_Content_Placeholders_Simple('', 'editor_product_default_cart', function () {
184
+ return do_shortcode('[woocommerce_cart]');
185
+ }) );
186
+ $this->registerPlaceholder( new Brizy_Content_Placeholders_Simple('', 'editor_product_checkout', function () {
187
+ return do_shortcode('[woocommerce_checkout]');
188
+ }) );
189
+ $this->registerPlaceholder( new Brizy_Content_Placeholders_Simple('', 'editor_product_my_account', function () {
190
+ return do_shortcode('[woocommerce_my_account]');
191
+ }) );
192
+ $this->registerPlaceholder( new Brizy_Content_Placeholders_Simple('', 'editor_product_order_tracking', function () {
193
+ return do_shortcode('[woocommerce_order_tracking]');
194
+ }) );
195
+ }
 
 
 
 
 
 
196
 
197
+ private function filterData($property, $post)
198
+ {
199
+ switch ($property) {
200
  case 'post_title':
201
+ return get_the_title($post);
202
  case 'post_excerpt':
203
  return get_the_excerpt($post);
204
  case 'post_content':
205
+ return get_the_content($post);
206
  case 'post_password':
207
  return '';
208
  default:
220
  *
221
  * @return string
222
  */
223
+ public static function wp_trim_excerpt($text = '', $post = null)
224
+ {
225
  global $pages;
226
 
227
  // not sure why this is null (this happens on author pages.. maybe there are more)
228
  //
229
+ if (is_null($pages))
230
  $pages = [];
231
 
232
  $raw_excerpt = $text;
233
+ if ('' == $text) {
234
 
235
+ $post = get_post($post);
236
+ $text = get_the_content('', false, $post);
237
 
238
 
239
+ $text = strip_shortcodes($text);
240
+ $text = excerpt_remove_blocks($text);
 
241
 
242
  /** This filter is documented in wp-includes/post-template.php */
243
+ $text = apply_filters('the_content', $text);
244
+ $text = str_replace(']]>', ']]&gt;', $text);
 
245
 
246
 
247
  /**
252
  * @since 2.7.0
253
  *
254
  */
255
+ $excerpt_length = apply_filters('excerpt_length', 55);
256
 
257
  /**
258
  * Filters the string in the "more" link displayed after a trimmed excerpt.
262
  * @since 2.9.0
263
  *
264
  */
265
+ $excerpt_more = apply_filters('excerpt_more', ' ' . '[&hellip;]');
266
+ $text = wp_trim_words($text, $excerpt_length, $excerpt_more);
267
  }
268
 
269
  /**
275
  * @since 2.8.0
276
  *
277
  */
278
+ return apply_filters('wp_trim_excerpt', $text, $raw_excerpt);
279
  }
280
 
281
+ private function getPosts($atts)
282
+ {
283
  // here are default posts arguments: https://codex.wordpress.org/Template_Tags/get_posts
284
  // maybe here we need to change some attributes, unset or add something before make query
285
+ $posts = get_posts($atts);
286
 
287
  return $posts;
288
  }
289
 
290
+ private function displayPosts($posts, $extra_atts)
291
+ {
292
  ob_start();
293
 
294
  $thumbnail_size = ''; // possible sizes: thumbnail, medium, medium_large, large
295
+ if ((int)$extra_atts['columns'] > 1) {
296
  $thumbnail_size = 'large';
297
  }
298
 
299
+ foreach ($posts as $post) { ?>
300
  <article class="brz-article">
301
+ <h2><a href="<?php echo get_permalink($post->ID); ?>"><?php echo get_the_title($post); ?></a></h2>
302
 
303
  <div class="brz-post-thumbnail">
304
+ <?php echo get_the_post_thumbnail($post, $thumbnail_size); ?>
305
  </div>
306
 
307
  <div class="brz-post-description">
308
+ <?php echo $this->getPostExcerpt($post); ?>
309
  </div>
310
 
311
+ <?php if ($extra_atts['display_date']) { ?>
312
  <div class="brz-post-date">
313
+ <?php echo get_the_date("", $post); ?>
314
  </div>
315
  <?php } ?>
316
 
317
+ <?php if ($extra_atts['display_author']) { ?>
318
  <div class="brz-post-author">
319
+ <a rel="author" href="<?php echo get_author_posts_url($post->post_author); ?>"><span
320
+ itemprop="name"><?php echo get_the_author_meta('display_name', $post->post_author); ?></span></a>
321
  </div>
322
  <?php } ?>
323
  </article>
327
  return ob_get_clean();
328
  }
329
 
330
+ private function getPostExcerpt($post)
331
+ {
332
+ if (!empty($post->post_excerpt)) {
333
  // if !empty excerpt
334
  return $post->post_excerpt;
335
  }
336
 
337
+ $the_excerpt = strip_tags(strip_shortcodes($post->post_content)); // Strips tags and shortcodes
338
  $excerpt_length = 50; // Sets excerpt length by word count, default in WP is 55
339
+ $words = explode(' ', $the_excerpt, $excerpt_length + 1);
340
 
341
+ if (count($words) > $excerpt_length) {
342
+ array_pop($words);
343
+ $the_excerpt = implode(' ', $words); // put in excerpt only the number of word that is set in $excerpt_length
344
  }
345
 
346
  return $the_excerpt;
content/providers/interface.php CHANGED
@@ -8,11 +8,4 @@ interface Brizy_Content_Providers_Interface {
8
  const CONFIG_KEY_OEMBED = 'oembed';
9
  const CONFIG_KEY_VIDEO = 'video';
10
  const CONFIG_KEY_SNDCLOUD = 'sndcloud';
11
-
12
- /**
13
- * @return mixed
14
- */
15
- public function getGroupedPlaceholders();
16
-
17
- public function getAllPlaceholders();
18
  }
8
  const CONFIG_KEY_OEMBED = 'oembed';
9
  const CONFIG_KEY_VIDEO = 'video';
10
  const CONFIG_KEY_SNDCLOUD = 'sndcloud';
 
 
 
 
 
 
 
11
  }
editor.php CHANGED
@@ -141,7 +141,8 @@ class Brizy_Editor {
141
  Brizy_Admin_FormEntries::_init();
142
  Brizy_Admin_Fonts_Main::_init();
143
  Brizy_Admin_Blocks_Main::_init();
144
- //Brizy_Admin_Stories_Main::_init();
 
145
 
146
  if ( Brizy_Editor::is_user_allowed() ) {
147
  Brizy_Admin_Svg_Main::_init();
@@ -287,7 +288,7 @@ class Brizy_Editor {
287
  Brizy_Admin_Layouts_Main::registerCustomPosts();
288
  Brizy_Admin_Fonts_Main::registerCustomPosts();
289
  Brizy_Admin_FormEntries::registerCustomPost();
290
- //Brizy_Admin_Stories_Main::registerCustomPosts();
291
  Brizy_Admin_Popups_Main::registerCustomPosts();
292
  Brizy_Admin_Blocks_Main::registerCustomPosts();
293
  Brizy_Admin_Templates::registerCustomPostTemplate();
141
  Brizy_Admin_FormEntries::_init();
142
  Brizy_Admin_Fonts_Main::_init();
143
  Brizy_Admin_Blocks_Main::_init();
144
+ Brizy_Admin_Membership_Membership::_init();
145
+ Brizy_Admin_Stories_Main::_init();
146
 
147
  if ( Brizy_Editor::is_user_allowed() ) {
148
  Brizy_Admin_Svg_Main::_init();
288
  Brizy_Admin_Layouts_Main::registerCustomPosts();
289
  Brizy_Admin_Fonts_Main::registerCustomPosts();
290
  Brizy_Admin_FormEntries::registerCustomPost();
291
+ Brizy_Admin_Stories_Main::registerCustomPosts();
292
  Brizy_Admin_Popups_Main::registerCustomPosts();
293
  Brizy_Admin_Blocks_Main::registerCustomPosts();
294
  Brizy_Admin_Templates::registerCustomPostTemplate();
editor/api.php CHANGED
@@ -1,195 +1,244 @@
1
  <?php
2
 
3
- class Brizy_Editor_API extends Brizy_Admin_AbstractApi {
4
-
5
- const nonce = 'brizy-api';
6
- const AJAX_GET_POST_INFO = '_get_post_info';
7
- const AJAX_GET = '_editor_get_items';
8
- const AJAX_UPDATE = '_update_item';
9
- const AJAX_GET_PROJECT = '_get_project';
10
- const AJAX_SET_PROJECT = '_set_project';
11
- const AJAX_LOCK_PROJECT = '_lock_project';
12
- const AJAX_MEDIA = '_media';
13
- const AJAX_SIDEBARS = '_sidebars';
14
- const AJAX_SIDEBAR_CONTENT = '_sidebar_content';
15
- const AJAX_SHORTCODE_CONTENT = '_shortcode_content';
16
- const AJAX_PLACEHOLDER_CONTENT = '_placeholder_content';
17
- const AJAX_GET_POST_OBJECTS = '_get_posts';
18
- const AJAX_GET_MENU_LIST = '_get_menu_list';
19
- const AJAX_GET_TERMS = '_get_terms';
20
- const AJAX_REMOVE_LOCK = '_remove_lock';
21
- const AJAX_HEARTBEAT = '_heartbeat';
22
- const AJAX_TAKE_OVER = '_take_over';
23
- const AJAX_JWT_TOKEN = '_multipass_create';
24
- const AJAX_UPDATE_MENU_DATA = '_update_menu_data';
25
- const AJAX_UPDATE_EDITOR_META_DATA = '_update_editor_meta_data';
26
- const AJAX_UPDATE_MENU_ITEM_DATA = '_update_menu_item_data';
27
- const AJAX_DOWNLOAD_MEDIA = '_download_media';
28
- const AJAX_MEDIA_METAKEY = '_get_media_key';
29
- const AJAX_CREATE_ATTACHMENT_UID = '_create_attachment_uid';
30
- const AJAX_SET_FEATURED_IMAGE = '_set_featured_image';
31
- const AJAX_SET_IMAGE_FOCAL_PT = '_set_featured_image_focal_point';
32
- const AJAX_REMOVE_FEATURED_IMAGE = '_remove_featured_image';
33
- const AJAX_TIMESTAMP = '_timestamp';
34
- const AJAX_SET_TEMPLATE_TYPE = '_set_template_type';
35
-
36
-
37
- /**
38
- * @var Brizy_Editor_Post
39
- */
40
- private $post;
41
-
42
- /**
43
- * @return Brizy_Editor_Post
44
- */
45
- public function get_post() {
46
- return $this->post;
47
- }
48
-
49
- /**
50
- * Brizy_Editor_API constructor.
51
- *
52
- * @param Brizy_Editor_Project $project
53
- * @param Brizy_Editor_Post $post
54
- */
55
- public function __construct( $post ) {
56
-
57
- $this->post = $post;
58
-
59
- parent::__construct();
60
- }
61
-
62
- protected function initializeApiActions() {
63
- if ( ! Brizy_Editor_User::is_user_allowed() ) {
64
- return;
65
- }
66
-
67
- $p = 'wp_ajax_' . Brizy_Editor::prefix();
68
- add_action( $p . self::AJAX_REMOVE_LOCK, array( $this, 'removeProjectLock' ) );
69
- add_action( $p . self::AJAX_HEARTBEAT, array( $this, 'heartbeat' ) );
70
- add_action( $p . self::AJAX_TAKE_OVER, array( $this, 'takeOver' ) );
71
- add_action( $p . self::AJAX_GET, array( $this, 'get_item' ) );
72
- add_action( $p . self::AJAX_GET_POST_INFO, array( $this, 'get_post_info' ) );
73
- add_action( $p . self::AJAX_UPDATE, array( $this, 'update_item' ) );
74
- add_action( $p . self::AJAX_GET_PROJECT, array( $this, 'get_project' ) );
75
- add_action( $p . self::AJAX_SET_PROJECT, array( $this, 'set_project' ) );
76
- add_action( $p . self::AJAX_LOCK_PROJECT, array( $this, 'lock_project' ) );
77
- add_action( $p . self::AJAX_SIDEBARS, array( $this, 'get_sidebars' ) );
78
- add_action( $p . self::AJAX_SHORTCODE_CONTENT, array( $this, 'shortcode_content' ) );
79
- add_action( $p . self::AJAX_PLACEHOLDER_CONTENT, array( $this, 'placeholder_content' ) );
80
- add_action( $p . self::AJAX_GET_POST_OBJECTS, array( $this, 'get_post_objects' ) );
81
- add_action( $p . self::AJAX_GET_MENU_LIST, array( $this, 'get_menu_list' ) );
82
- add_action( $p . self::AJAX_GET_TERMS, array( $this, 'get_terms' ) );
83
- add_action( $p . self::AJAX_DOWNLOAD_MEDIA, array( $this, 'download_media' ) );
84
- add_action( $p . self::AJAX_MEDIA_METAKEY, array( $this, 'get_media_key' ) );
85
- add_action( $p . self::AJAX_CREATE_ATTACHMENT_UID, array( $this, 'get_attachment_key' ) );
86
- add_action( $p . self::AJAX_SET_FEATURED_IMAGE, array( $this, 'set_featured_image' ) );
87
- add_action( $p . self::AJAX_SET_IMAGE_FOCAL_PT, array( $this, 'set_featured_image_focal_point' ) );
88
- add_action( $p . self::AJAX_TIMESTAMP, array( $this, 'timestamp' ) );
89
- add_action( $p . self::AJAX_SET_TEMPLATE_TYPE, array( $this, 'setTemplateType' ) );
90
- add_action( $p . 'nopriv_' . Brizy_Editor::prefix( self::AJAX_TIMESTAMP ), array( $this, 'timestamp' ) );
91
-
92
- }
93
-
94
- protected function getRequestNonce() {
95
- return $this->param( 'hash' );
96
- }
97
-
98
- public function lock_project() {
99
- $this->verifyNonce( self::nonce );
100
-
101
- if ( Brizy_Editor::get()->checkIfProjectIsLocked() === false ) {
102
- Brizy_Editor::get()->lockProject();
103
- }
104
-
105
- $editor = new Brizy_Editor_Editor_Editor( Brizy_Editor_Project::get(), null );
106
- $this->success( $editor->getProjectStatus() );
107
- }
108
-
109
- public function removeProjectLock() {
110
- $this->verifyNonce( self::nonce );
111
-
112
- if ( Brizy_Editor::get()->checkIfProjectIsLocked() === false ) {
113
- Brizy_Editor::get()->removeProjectLock();
114
- }
115
-
116
- $editor = new Brizy_Editor_Editor_Editor( Brizy_Editor_Project::get(), null );
117
- $this->success( $editor->getProjectStatus() );
118
- }
119
-
120
- public function heartbeat() {
121
- $this->verifyNonce( self::nonce );
122
-
123
- if ( Brizy_Editor::get()->checkIfProjectIsLocked() === false ) {
124
- Brizy_Editor::get()->lockProject();
125
- }
126
- $editor = new Brizy_Editor_Editor_Editor( Brizy_Editor_Project::get(), null );
127
- $this->success( $editor->getProjectStatus() );
128
- }
129
-
130
- public function takeOver() {
131
- $this->verifyNonce( self::nonce );
132
-
133
- Brizy_Editor::get()->lockProject();
134
-
135
- $editor = new Brizy_Editor_Editor_Editor( Brizy_Editor_Project::get(), null );
136
- $this->success( $editor->getProjectStatus() );
137
- }
138
-
139
- public function timestamp() {
140
- $this->success( array( 'timestamp' => time() ) );
141
- }
142
-
143
-
144
- public function set_featured_image() {
145
- $this->verifyNonce( self::nonce );
146
-
147
- if ( ! isset( $_REQUEST['attachmentId'] ) ) {
148
- $this->error( 400, 'Bad request' );
149
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
150
 
151
- if ( $this->post && $this->post->uses_editor() ) {
152
- set_post_thumbnail( $this->post->getWpPostId(), (int) $_REQUEST['attachmentId'] );
153
 
154
- $uid = $this->createMediaKey( $this->post->getWpPostId(), (int) $_REQUEST['attachmentId'] );
155
 
156
- $this->success( array( 'uid' => $uid ) );
157
- }
158
 
159
- $this->error( 400, 'Invalid post' );
160
- }
161
 
162
- public function set_featured_image_focal_point() {
163
- $this->verifyNonce( self::nonce );
 
164
 
165
- if ( ! isset( $_REQUEST['attachmentId'] ) || ! isset( $_REQUEST['pointX'] ) || ! isset( $_REQUEST['pointY'] ) ) {
166
- $this->error( 400, 'Bad request' );
167
- }
168
 
169
- if ( $this->post && $this->post->uses_editor() ) {
170
 
171
- update_post_meta( $this->post->getWpPostId(), 'brizy_attachment_focal_point', array(
172
- 'x' => $_REQUEST['pointX'],
173
- 'y' => $_REQUEST['pointY']
174
- ) );
 
 
 
 
175
 
176
- $this->success( array() );
177
- }
178
 
179
- $this->error( 400, 'Invalid post' );
180
- }
181
 
182
- public function remove_featured_image() {
183
- $this->verifyNonce( self::nonce );
 
184
 
185
- if ( $this->post && $this->post->uses_editor() ) {
186
- delete_post_thumbnail( $this->post->getWpPostId() );
187
- delete_post_meta( $this->post->getWpPostId(), 'brizy_attachment_focal_point' );
188
- $this->success( null );
189
- }
190
 
191
- $this->error( 400, 'Invalid post' );
192
- }
193
 
194
 
195
  // public function multipass_create() {
@@ -245,222 +294,270 @@ class Brizy_Editor_API extends Brizy_Admin_AbstractApi {
245
  // }
246
 
247
 
248
- /**
249
- * @internal
250
- **/
251
- public function get_project() {
252
- try {
253
- $this->verifyNonce( self::nonce );
254
- $data = Brizy_Editor_Project::get()->createResponse();
255
- $this->success( $data );
256
- } catch ( Exception $exception ) {
257
- Brizy_Logger::instance()->exception( $exception );
258
- $this->error( $exception->getCode(), $exception->getMessage() );
259
- }
260
- }
261
-
262
- /**
263
- * @internal
264
- */
265
- public function set_project() {
266
- try {
267
- $this->verifyNonce( self::nonce );
268
-
269
- // update project globas
270
- $meta = stripslashes( $this->param( 'data' ) );
271
- $dataVersion = (int) stripslashes( $this->param( 'dataVersion' ) );
272
-
273
- if ( ! $meta ) {
274
- Brizy_Logger::instance()->error( 'Invalid project meta provided', [ 'data' => $meta ] );
275
- throw new Exception( '', 400 );
276
- }
277
-
278
- if ( ! $dataVersion ) {
279
- Brizy_Logger::instance()->error( 'No data version provided', [ 'data' => $dataVersion ] );
280
- throw new Exception( '', 400 );
281
- }
282
-
283
- $project = Brizy_Editor_Project::get();
284
- $project->setDataAsJson( $meta );
285
- $project->setDataVersion( $dataVersion );
286
-
287
-
288
- if ( (int) $this->param( 'is_autosave' ) === 1 ) {
289
- $project->save( 1 );
290
- } else {
291
- $project->save();
292
- $project->savePost();
293
- Brizy_Editor::get()->lockProject();
294
- do_action( 'brizy_global_data_updated' );
295
- }
296
-
297
- $this->success( $project->createResponse() );
298
- } catch ( Exception $exception ) {
299
- Brizy_Logger::instance()->exception( $exception );
300
- $this->error( 400, $exception->getMessage() );
301
- exit;
302
- }
303
- }
304
-
305
- /**
306
- * @internal
307
- **/
308
- public function get_item() {
309
- try {
310
- $this->verifyNonce( self::nonce );
311
-
312
- if ( ! $this->post ) {
313
- throw new Exception( 'Invalid post provided' );
314
- }
315
-
316
- $data = $this->post->createResponse();
317
- $data['is_index'] = true;
318
-
319
- $this->success( array( $data ) );
320
- } catch ( Exception $exception ) {
321
- Brizy_Logger::instance()->exception( $exception );
322
- $this->error( 500, $exception->getMessage() );
323
- exit;
324
- }
325
- }
326
-
327
- /**
328
- * @internal
329
- **/
330
- public function get_post_info() {
331
- try {
332
- $this->verifyNonce( self::nonce );
333
-
334
- $postId = (int) $this->param( 'post_id' );
335
- $defaultFields = [ 'ID', 'post_title', 'post_content' ];
336
- $post_fields = array_intersect( (array) $this->param( 'fields' ), $defaultFields );
337
-
338
- if ( count( $post_fields ) == 0 ) {
339
- $post_fields = $defaultFields;
340
- }
341
-
342
- if ( ! $postId ) {
343
- $this->error( 400, 'Invalid post id' );
344
- }
345
-
346
- $post = get_post( $postId, ARRAY_A );
347
-
348
- if ( ! $post ) {
349
- $this->error( 404, 'Invalid post id' );
350
- }
351
-
352
- $data = array_intersect_key( $post, array_flip( $defaultFields ) );
353
-
354
- $this->success( $data );
355
- } catch ( Exception $exception ) {
356
- Brizy_Logger::instance()->exception( $exception );
357
- $this->error( 500, $exception->getMessage() );
358
- exit;
359
- }
360
- }
361
-
362
- /**
363
- * @internal
364
- **/
365
- public function update_item() {
366
- try {
367
- $this->verifyNonce( self::nonce );
368
-
369
- $data = stripslashes( $this->param( 'data' ) );
370
- $atemplate = $this->param( 'template' );
371
- $dataVersion = (int) stripslashes( $this->param( 'dataVersion' ) );
372
- $status = stripslashes( $this->param( 'status' ) );
373
-
374
- if ( ! in_array( $status, [ 'publish', 'draft', 'pending', 'private', 'future' ] ) ) {
375
- $this->error( 400, "Invalid post type" );
376
- }
377
-
378
- if ( $atemplate ) {
379
- $this->post->set_template( $atemplate );
380
- }
381
-
382
- if ( $data ) {
383
- $this->post->set_editor_data( $data );
384
- $this->post->set_editor_version( BRIZY_EDITOR_VERSION );
385
- $this->post->set_needs_compile( true );
386
- }
387
-
388
- $this->post->getWpPost()->post_status = $status;
389
-
390
- if ( (int) $this->param( 'is_autosave' ) == 1 ) {
391
- $this->post->save( 1 );
392
- } else {
393
- $this->post->setDataVersion( $dataVersion );
394
- $this->post->save( 0 );
395
- $this->post->savePost( true );
396
- }
397
-
398
- $this->success( $this->post->createResponse() );
399
- } catch ( Exception $exception ) {
400
- Brizy_Logger::instance()->exception( $exception );
401
- $this->error( 500, $exception->getMessage() );
402
- }
403
- }
404
-
405
- /*
406
- * Used for elements like Woocommerce pages.
407
- */
408
- public function shortcode_content() {
409
- try {
410
-
411
- $this->verifyNonce( self::nonce );
412
-
413
- if ( isset( $_REQUEST['shortcode'] ) ) {
414
- $shortcode = stripslashes( $_REQUEST['shortcode'] );
415
- } else {
416
- throw new Exception( 'Shortcode string not provided.', 500 );
417
- }
418
-
419
- $shortcode_content = do_shortcode( $shortcode );
420
-
421
- $this->success( array(
422
- 'shortcode' => $shortcode_content
423
- ) );
424
-
425
- } catch ( Exception $exception ) {
426
- Brizy_Logger::instance()->exception( $exception );
427
- $this->error( $exception->getCode(), $exception->getMessage() );
428
- }
429
- }
430
-
431
- public function placeholder_content() {
432
- try {
433
- $this->verifyNonce( self::nonce );
434
- $postId = $this->param( 'post_id' );
435
- $placeholders = $this->param( 'placeholders' );
436
-
437
- if ( ! $placeholders ) {
438
- throw new Exception( 'Placeholder string not provided.', 400 );
439
- }
440
-
441
- global $post, $wp_query;
442
-
443
- $post = $this->getPostSample( $postId );
444
-
445
- if ( $post instanceof WP_Post ) {
446
- setup_postdata( $post );
447
- $wp_query->is_single = true;
448
- }
449
-
450
- $contents = [];
451
- foreach ( $placeholders as $placeholder ) {
452
- $placeholder = stripslashes( $placeholder );
453
- $contents[] = apply_filters( 'brizy_content', $placeholder, Brizy_Editor_Project::get(), $post );
454
- }
455
-
456
- $this->success( array(
457
- 'placeholders' => $contents
458
- ) );
459
- } catch ( Exception $exception ) {
460
- Brizy_Logger::instance()->exception( $exception );
461
- $this->error( $exception->getCode(), $exception->getMessage() );
462
- }
463
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
464
 
465
  private function getPostSample( $templateId ) {
466
  global $wp_query;
@@ -470,35 +567,36 @@ class Brizy_Editor_API extends Brizy_Admin_AbstractApi {
470
  return $wp_post;
471
  }
472
 
473
- $ruleManager = new Brizy_Admin_Rules_Manager();
474
- $rules = $ruleManager->getRules( $wp_post->ID );
475
- $rule = null;
476
-
477
- // find first include rule
478
- foreach ( $rules as $rule ) {
479
- /**
480
- * @var Brizy_Admin_Rule $rule ;
481
- */
482
- if ( $rule->getType() == Brizy_Admin_Rule::TYPE_INCLUDE ) {
483
- break;
484
- }
485
- }
486
 
487
- if ( $rule ) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
488
 
489
- switch ( $rule->getAppliedFor() ) {
490
- case Brizy_Admin_Rule::POSTS :
491
- $args = [
492
- 'post_type' => $rule->getEntityType(),
493
- 'posts_per_page' => 1
494
- ];
495
 
496
- $values = $rule->getEntityValues();
497
 
498
- if ( empty( $values[0] ) ) {
499
- // For All condition
500
- $posts = get_posts( $args );
501
- $post = isset( $posts[0] ) ? $posts[0] : null;
502
 
503
  if ( $post && !Brizy_Editor_Entity::isBrizyEnabled($post->ID) ) {
504
  return $post;
@@ -507,47 +605,51 @@ class Brizy_Editor_API extends Brizy_Admin_AbstractApi {
507
  }
508
  }
509
 
510
- $filter = $values[0];
511
-
512
- if ( is_numeric( $filter ) ) {
513
- $args['post__in'] = [ $filter ];
514
- } else {
515
- // $filter = in|category|12 OR in|genre|48 OR in|category|45 OR author|2
516
- $explode = explode( '|', $filter );
517
-
518
- if ( $explode[0] === 'in' ) {
519
- $args['tax_query'] = [
520
- [
521
- 'taxonomy' => $explode[1],
522
- 'terms' => $explode[2],
523
- ]
524
- ];
525
- } else {
526
- $args['author'] = $explode[1];
527
- }
528
- }
529
-
530
- $posts = get_posts( $args );
531
-
532
- $post = isset( $posts[0] ) ? $posts[0] : null;
533
-
534
- if ( $post && !Brizy_Editor_Entity::isBrizyEnabled($post->ID) ) {
535
- return $post;
536
- } else {
537
- return null;
538
- }
539
-
540
- case Brizy_Admin_Rule::TAXONOMY :
541
- $args = array(
542
- 'taxonomy' => $rule->getEntityType(),
543
- 'hide_empty' => false,
544
- );
545
-
546
- if ( count( $rule->getEntityValues() ) ) {
547
- $args['term_taxonomy_id'] = $rule->getEntityValues();
548
- }
549
-
550
- $terms = get_terms( $args );
 
 
 
 
551
  $term = array_pop( $terms );
552
 
553
  if ( $term ) {
@@ -563,53 +665,47 @@ class Brizy_Editor_API extends Brizy_Admin_AbstractApi {
563
  ]
564
  );
565
 
566
- $wp_query->is_tax = true;
567
- }
568
-
569
- return array_pop( $terms );
570
 
571
- case Brizy_Admin_Rule::ARCHIVE :
572
- return null;
573
 
574
- case Brizy_Admin_Rule::TEMPLATE :
575
 
576
- switch ( $rule->getEntityType() ) {
577
- case 'author':
578
- $authors = get_users();
579
  $wp_query = new WP_Query( [ 'author_name' => get_userdata( get_current_user_id() )->data->user_nicename ] );
580
  $wp_query->is_author = true;
581
 
582
- return array_pop( $authors );
583
 
584
- case '404':
585
- $wp_query->is_404 = true;
586
 
587
- return null;
 
588
 
589
- case 'search':
 
590
 
591
- $wp_query->is_search = true;
 
592
 
593
- return null;
 
 
 
 
 
594
 
595
- case 'home_page':
596
- $get_option = get_option( 'page_for_posts' );
 
 
 
597
 
598
- if ( $get_option ) {
599
- return get_post( $get_option );
600
- }
601
- break;
602
- case 'front_page':
603
- $get_option = get_option( 'page_on_front' );
604
-
605
- if ( $get_option ) {
606
- return get_post( $get_option );
607
- }
608
- break;
609
- }
610
-
611
- break;
612
- case Brizy_Admin_Rule::YEAR_ARCHIVE:
613
 
614
  $wp_query = new WP_Query( 'year=' . date( 'Y' ) );
615
  $wp_query->is_year = true;
@@ -629,212 +725,359 @@ class Brizy_Editor_API extends Brizy_Admin_AbstractApi {
629
  return null;
630
  }
631
 
632
- }
633
- }
634
-
635
- public function get_post_objects() {
636
 
637
- global $wp_post_types;
638
- $this->verifyNonce( self::nonce );
639
 
640
- $searchTerm = $this->param( 'filterTerm' );
641
- $postType = $this->param( 'postType' ) ? $this->param( 'postType' ) : null;
642
- $excludePostType = $this->param( 'excludePostTypes' ) ? $this->param( 'excludePostTypes' ) : array();
643
 
644
- if ( ! $postType ) {
645
- $postType = array_keys( array_filter( $wp_post_types, function ( $type ) {
646
- return ! in_array( $type->name, array( 'brizy_template' ) ) && $type->show_ui;
647
- } ) );
648
- }
649
-
650
- add_filter( 'posts_where', array( $this, 'brizy_post_title_filter' ), 10, 2 );
651
- $posts = Brizy_Editor_Post::get_post_list( $searchTerm, $postType, $excludePostType,0,100 );
652
- remove_filter( 'posts_where', array( $this, 'brizy_post_title_filter' ), 10 );
653
-
654
- $this->success( array( 'filter_term' => $searchTerm, 'posts' => $posts ) );
655
- }
656
-
657
- public function get_sidebars() {
658
- global $wp_registered_sidebars;
659
-
660
- $this->verifyNonce( self::nonce );
661
-
662
- $items = array();
663
-
664
- foreach ( $wp_registered_sidebars as $sidebar ) {
665
- $item = array(
666
- 'id' => $sidebar['id'],
667
- 'title' => $sidebar['name'],
668
- );
669
- $items[] = $item;
670
- }
671
-
672
- $this->success( $items );
673
- }
674
-
675
- public function brizy_post_title_filter( $where, $wp_query = null ) {
676
-
677
- global $wpdb;
678
-
679
-
680
- if ( $wp_query instanceof WP_Query && $term = $wp_query->get( 'post_title_term' ) ) {
681
- $search_term = $wpdb->esc_like( $term );
682
- $search_term = ' \'%' . $search_term . '%\'';
683
-
684
- $where .= ' AND ' . $wpdb->posts . '.post_title LIKE ' . $search_term;
685
- }
686
-
687
- return $where;
688
- }
689
-
690
-
691
- public function get_menu_list() {
692
- $this->success( wp_get_nav_menus( array( 'hide_empty' => true ) ), 200 );
693
- }
694
 
695
- /**
696
- * Used in woocomerce producs shortcode in editor
697
- */
698
- public function get_terms() {
 
 
 
 
 
 
699
 
700
- try {
701
- $this->verifyNonce( self::nonce );
 
702
 
703
- $taxonomy = $this->param( 'taxonomy' );
 
704
 
705
- $terms = (array) get_terms( array( 'taxonomy' => $taxonomy, 'hide_empty' => false ) );
 
 
706
 
707
- $this->success( array_values( $terms ) );
708
 
709
- } catch ( Exception $e ) {
710
- Brizy_Logger::instance()->error( $e->getMessage(), [ $e ] );
711
- $this->error( 500, $e->getMessage() );
712
- }
713
- }
714
-
715
- public function download_media() {
716
- try {
717
- $this->verifyNonce( self::nonce );
718
 
719
- $project = Brizy_Editor_Project::get();
720
- $apost = (int) $_REQUEST['post_id'];
 
 
 
 
 
721
 
722
- $media_cacher = new Brizy_Editor_CropCacheMedia( $project, $apost );
723
- $media_cacher->download_original_image( $_REQUEST['media'] );
724
 
725
- $this->success( array(), 200 );
726
- } catch ( Exception $e ) {
727
- $this->error( 500, $e->getMessage() );
728
- }
729
- }
730
 
731
- public function get_media_key() {
732
- try {
733
- session_write_close();
734
- $this->verifyNonce( self::nonce );
735
- $apost = (int) $_REQUEST['post_id'];
736
- $attachment_id = (int) $_REQUEST['attachment_id'];
737
-
738
- if ( ! $attachment_id || get_post_status( $attachment_id ) === false ) {
739
- $this->error( 400, 'Invalid attachment id' );
740
- }
741
- $uid = $this->createMediaKey( $apost, $attachment_id );
742
-
743
- $this->success( array( 'uid' => $uid ) );
744
-
745
- } catch ( Exception $e ) {
746
- Brizy_Logger::instance()->error( $e->getMessage(), [ $e ] );
747
-
748
- return;
749
- }
750
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
751
 
752
- public function get_attachment_key() {
753
- try {
754
- session_write_close();
755
 
756
- $this->verifyNonce( self::nonce );
757
- $attachmentId = isset( $_REQUEST['attachment_id'] ) ? (int) $_REQUEST['attachment_id'] : null;
 
 
758
 
759
- if ( ! $attachmentId || get_post_status( $attachmentId ) === false ) {
760
- $this->error( 400, 'Invalid attachment id' );
761
- }
762
 
763
- $uid = get_post_meta( $attachmentId, 'brizy_post_uid', true );
 
 
764
 
765
- if ( ! $uid ) {
766
- $file = get_attached_file( $attachmentId );
767
- $path_parts = pathinfo( $file );
768
- $uid = "wp-" . md5( $attachmentId . time() ) . '.' . $path_parts['extension'];
769
- update_post_meta( $attachmentId, 'brizy_post_uid', $uid );
770
- }
771
 
772
- $this->success( array( 'uid' => $uid ) );
 
 
 
 
 
773
 
774
- } catch ( Exception $e ) {
775
- Brizy_Logger::instance()->error( $e->getMessage(), [ $e ] );
776
 
777
- return;
778
- }
779
- }
780
 
 
 
 
781
 
782
- public function setTemplateType() {
783
- try {
 
784
 
785
- $this->verifyNonce( self::nonce );
786
- $templateId = $this->param( 'template_id' );
787
- $templateType = $this->param( 'template_type' );
788
 
789
- if ( get_post_type( $templateId ) != Brizy_Admin_Templates::CP_TEMPLATE ) {
790
- $this->error( 400, 'Invalid template' );
791
- }
792
 
793
- $allowedTypes = [
794
- Brizy_Admin_Templates::TYPE_SINGLE,
795
- Brizy_Admin_Templates::TYPE_ARCHIVE,
796
- Brizy_Admin_Templates::TYPE_SINGLE_PRODUCT,
797
- Brizy_Admin_Templates::TYPE_PRODUCT_ARCHIVE
798
- ];
799
 
800
- if ( ! in_array( $templateType, $allowedTypes, true ) ) {
801
- $this->error( 400, 'Invalid template type' );
802
- }
803
 
804
- update_post_meta( $templateId, Brizy_Admin_Templates::TEMPLATE_TYPE_KEY, $templateType );
805
 
806
- $this->success( [] );
807
 
808
- } catch ( Exception $e ) {
809
- Brizy_Logger::instance()->error( $e->getMessage(), [ $e ] );
810
- $this->error( 500, $e->getMessage() );
811
 
812
- return;
813
- }
814
- }
815
 
816
 
817
- private function createMediaKey( $postId, $attachmentId ) {
818
- $uid = get_post_meta( $attachmentId, 'brizy_attachment_uid', true );
 
819
 
820
- if ( ! $uid ) {
821
- $file = get_attached_file( $attachmentId );
822
- $path_parts = pathinfo( $file );
823
- $uid = "wp-" . md5( $attachmentId . time() ) . '.' . $path_parts['extension'];
824
- update_post_meta( $attachmentId, 'brizy_attachment_uid', $uid );
825
- }
826
 
827
- if ( $postId ) {
828
- $post = Brizy_Editor_Post::get( $postId );
829
- $post_ui = $post->getUid();
830
 
831
- $post_uids = get_post_meta( $attachmentId, 'brizy_post_uid' );
832
 
833
- if ( ! in_array( $post_ui, $post_uids ) ) {
834
- add_post_meta( $attachmentId, 'brizy_post_uid', $post_ui );
835
- }
836
- }
837
 
838
- return $uid;
839
- }
840
  }
1
  <?php
2
 
3
+ class Brizy_Editor_API extends Brizy_Admin_AbstractApi
4
+ {
5
+
6
+ const nonce = 'brizy-api';
7
+ const AJAX_GET_POST_INFO = '_get_post_info';
8
+ const AJAX_GET = '_editor_get_items';
9
+ const AJAX_UPDATE = '_update_item';
10
+ const AJAX_GET_PROJECT = '_get_project';
11
+ const AJAX_SET_PROJECT = '_set_project';
12
+ const AJAX_LOCK_PROJECT = '_lock_project';
13
+ const AJAX_MEDIA = '_media';
14
+ const AJAX_SIDEBARS = '_sidebars';
15
+ const AJAX_SIDEBAR_CONTENT = '_sidebar_content';
16
+ const AJAX_SHORTCODE_CONTENT = '_shortcode_content';
17
+ const AJAX_PLACEHOLDER_CONTENT = '_placeholder_content';
18
+ const AJAX_PLACEHOLDERS_CONTENT = '_placeholders_content';
19
+ const AJAX_GET_POST_OBJECTS = '_get_posts';
20
+ const AJAX_SEARCH_POST = '_search_posts';
21
+ const AJAX_GET_MENU_LIST = '_get_menu_list';
22
+ const AJAX_REMOVE_LOCK = '_remove_lock';
23
+ const AJAX_HEARTBEAT = '_heartbeat';
24
+ const AJAX_TAKE_OVER = '_take_over';
25
+ const AJAX_JWT_TOKEN = '_multipass_create';
26
+ const AJAX_UPDATE_MENU_DATA = '_update_menu_data';
27
+ const AJAX_UPDATE_EDITOR_META_DATA = '_update_editor_meta_data';
28
+ const AJAX_UPDATE_MENU_ITEM_DATA = '_update_menu_item_data';
29
+ const AJAX_DOWNLOAD_MEDIA = '_download_media';
30
+ const AJAX_MEDIA_METAKEY = '_get_media_key';
31
+ const AJAX_CREATE_ATTACHMENT_UID = '_create_attachment_uid';
32
+ const AJAX_SET_FEATURED_IMAGE = '_set_featured_image';
33
+ const AJAX_SET_IMAGE_FOCAL_PT = '_set_featured_image_focal_point';
34
+ const AJAX_REMOVE_FEATURED_IMAGE = '_remove_featured_image';
35
+ const AJAX_TIMESTAMP = '_timestamp';
36
+ const AJAX_SET_TEMPLATE_TYPE = '_set_template_type';
37
+ const AJAX_GET_USERS = '_get_users';
38
+ const AJAX_GET_TERMS = '_get_terms';
39
+ const AJAX_GET_TERMS_BY = '_get_terms_by';
40
+ const AJAX_GET_POST_TAXONOMIES = '_get_post_taxonomies';
41
+
42
+
43
+ /**
44
+ * @var Brizy_Editor_Post
45
+ */
46
+ private $post;
47
+
48
+ /**
49
+ * @return Brizy_Editor_Post
50
+ */
51
+ public function get_post()
52
+ {
53
+ return $this->post;
54
+ }
55
+
56
+ /**
57
+ * Brizy_Editor_API constructor.
58
+ *
59
+ * @param Brizy_Editor_Project $project
60
+ * @param Brizy_Editor_Post $post
61
+ */
62
+ public function __construct($post)
63
+ {
64
+
65
+ $this->post = $post;
66
+
67
+ parent::__construct();
68
+ }
69
+
70
+ protected function initializeApiActions()
71
+ {
72
+ if (!Brizy_Editor_User::is_user_allowed()) {
73
+ return;
74
+ }
75
+
76
+ $p = 'wp_ajax_' . Brizy_Editor::prefix();
77
+ add_action($p . self::AJAX_REMOVE_LOCK, array($this, 'removeProjectLock'));
78
+ add_action($p . self::AJAX_HEARTBEAT, array($this, 'heartbeat'));
79
+ add_action($p . self::AJAX_TAKE_OVER, array($this, 'takeOver'));
80
+ add_action($p . self::AJAX_GET, array($this, 'get_item'));
81
+ add_action($p . self::AJAX_GET_POST_INFO, array($this, 'get_post_info'));
82
+ add_action($p . self::AJAX_UPDATE, array($this, 'update_item'));
83
+ add_action($p . self::AJAX_GET_PROJECT, array($this, 'get_project'));
84
+ add_action($p . self::AJAX_SET_PROJECT, array($this, 'set_project'));
85
+ add_action($p . self::AJAX_LOCK_PROJECT, array($this, 'lock_project'));
86
+ add_action($p . self::AJAX_SIDEBARS, array($this, 'get_sidebars'));
87
+ add_action($p . self::AJAX_SHORTCODE_CONTENT, array($this, 'shortcode_content'));
88
+ add_action($p . self::AJAX_PLACEHOLDER_CONTENT, array($this, 'placeholder_content'));
89
+ add_action($p . self::AJAX_PLACEHOLDERS_CONTENT, array($this, 'placeholders_content'));
90
+ add_action($p . self::AJAX_GET_POST_OBJECTS, array($this, 'get_post_objects'));
91
+ add_action($p . self::AJAX_SEARCH_POST, array($this, 'search_post'));
92
+ add_action($p . self::AJAX_GET_MENU_LIST, array($this, 'get_menu_list'));
93
+ add_action($p . self::AJAX_GET_TERMS, array($this, 'get_terms'));
94
+ add_action($p . self::AJAX_GET_USERS, array($this, 'get_users'));
95
+ add_action($p . self::AJAX_GET_TERMS_BY, array($this, 'get_terms_by'));
96
+ add_action($p . self::AJAX_DOWNLOAD_MEDIA, array($this, 'download_media'));
97
+ add_action($p . self::AJAX_MEDIA_METAKEY, array($this, 'get_media_key'));
98
+ add_action($p . self::AJAX_CREATE_ATTACHMENT_UID, array($this, 'get_attachment_key'));
99
+ add_action($p . self::AJAX_SET_FEATURED_IMAGE, array($this, 'set_featured_image'));
100
+ add_action($p . self::AJAX_SET_IMAGE_FOCAL_PT, array($this, 'set_featured_image_focal_point'));
101
+ add_action($p . self::AJAX_TIMESTAMP, array($this, 'timestamp'));
102
+ add_action($p . self::AJAX_SET_TEMPLATE_TYPE, array($this, 'setTemplateType'));
103
+ add_action($p . self::AJAX_GET_POST_TAXONOMIES, array($this, 'addPostTaxonomies'));
104
+ add_action($p . 'nopriv_' . Brizy_Editor::prefix(self::AJAX_TIMESTAMP), array($this, 'timestamp'));
105
+
106
+ }
107
+
108
+ protected function getRequestNonce()
109
+ {
110
+ return $this->param('hash');
111
+ }
112
+
113
+ public function addPostTaxonomies() {
114
+
115
+ $this->verifyNonce(self::nonce);
116
+
117
+ if(empty($postType = $this->param('post_type'))) {
118
+ $this->error(400, 'Bad request');
119
+ }
120
+
121
+ $taxonomies =get_object_taxonomies($postType,'objects');
122
+ $post_taxonomies = array_map(function (WP_Taxonomy $taxonomy) {
123
+ return [
124
+ 'name' => $taxonomy->name,
125
+ 'label' => $taxonomy->label,
126
+ 'labels' => $taxonomy->labels,
127
+ 'public' => $taxonomy->public,
128
+ 'hierarchical' => $taxonomy->hierarchical,
129
+ ];
130
+ }, array_values($taxonomies));
131
+
132
+ $this->success($post_taxonomies);
133
+ }
134
+
135
+ public function lock_project()
136
+ {
137
+ $this->verifyNonce(self::nonce);
138
+
139
+ if (Brizy_Editor::get()->checkIfProjectIsLocked() === false) {
140
+ Brizy_Editor::get()->lockProject();
141
+ }
142
+
143
+ $editor = new Brizy_Editor_Editor_Editor(Brizy_Editor_Project::get(), null);
144
+ $this->success($editor->getProjectStatus());
145
+ }
146
+
147
+ public function removeProjectLock()
148
+ {
149
+ $this->verifyNonce(self::nonce);
150
+
151
+ if (Brizy_Editor::get()->checkIfProjectIsLocked() === false) {
152
+ Brizy_Editor::get()->removeProjectLock();
153
+ }
154
+
155
+ $editor = new Brizy_Editor_Editor_Editor(Brizy_Editor_Project::get(), null);
156
+ $this->success($editor->getProjectStatus());
157
+ }
158
+
159
+ public function heartbeat()
160
+ {
161
+ $this->verifyNonce(self::nonce);
162
+
163
+ if (Brizy_Editor::get()->checkIfProjectIsLocked() === false) {
164
+ Brizy_Editor::get()->lockProject();
165
+ }
166
+ $editor = new Brizy_Editor_Editor_Editor(Brizy_Editor_Project::get(), null);
167
+ $this->success($editor->getProjectStatus());
168
+ }
169
+
170
+ public function takeOver()
171
+ {
172
+ $this->verifyNonce(self::nonce);
173
+
174
+ Brizy_Editor::get()->lockProject();
175
+
176
+ $editor = new Brizy_Editor_Editor_Editor(Brizy_Editor_Project::get(), null);
177
+ $this->success($editor->getProjectStatus());
178
+ }
179
+
180
+ public function timestamp()
181
+ {
182
+ $this->success(array('timestamp' => time()));
183
+ }
184
+
185
+
186
+ public function set_featured_image()
187
+ {
188
+ $this->verifyNonce(self::nonce);
189
+
190
+ if (!isset($_REQUEST['attachmentId'])) {
191
+ $this->error(400, 'Bad request');
192
+ }
193
 
194
+ if ($this->post && $this->post->uses_editor()) {
195
+ set_post_thumbnail($this->post->getWpPostId(), (int)$_REQUEST['attachmentId']);
196
 
197
+ $uid = $this->createMediaKey($this->post->getWpPostId(), (int)$_REQUEST['attachmentId']);
198
 
199
+ $this->success(array('uid' => $uid));
200
+ }
201
 
202
+ $this->error(400, 'Invalid post');
203
+ }
204
 
205
+ public function set_featured_image_focal_point()
206
+ {
207
+ $this->verifyNonce(self::nonce);
208
 
209
+ if (!isset($_REQUEST['attachmentId']) || !isset($_REQUEST['pointX']) || !isset($_REQUEST['pointY'])) {
210
+ $this->error(400, 'Bad request');
211
+ }
212
 
213
+ if ($this->post && $this->post->uses_editor()) {
214
 
215
+ update_post_meta(
216
+ $this->post->getWpPostId(),
217
+ 'brizy_attachment_focal_point',
218
+ array(
219
+ 'x' => $_REQUEST['pointX'],
220
+ 'y' => $_REQUEST['pointY'],
221
+ )
222
+ );
223
 
224
+ $this->success(array());
225
+ }
226
 
227
+ $this->error(400, 'Invalid post');
228
+ }
229
 
230
+ public function remove_featured_image()
231
+ {
232
+ $this->verifyNonce(self::nonce);
233
 
234
+ if ($this->post && $this->post->uses_editor()) {
235
+ delete_post_thumbnail($this->post->getWpPostId());
236
+ delete_post_meta($this->post->getWpPostId(), 'brizy_attachment_focal_point');
237
+ $this->success(null);
238
+ }
239
 
240
+ $this->error(400, 'Invalid post');
241
+ }
242
 
243
 
244
  // public function multipass_create() {
294
  // }
295
 
296
 
297
+ /**
298
+ * @internal
299
+ **/
300
+ public function get_project()
301
+ {
302
+ try {
303
+ $this->verifyNonce(self::nonce);
304
+ $data = Brizy_Editor_Project::get()->createResponse();
305
+ $this->success($data);
306
+ } catch (Exception $exception) {
307
+ Brizy_Logger::instance()->exception($exception);
308
+ $this->error($exception->getCode(), $exception->getMessage());
309
+ }
310
+ }
311
+
312
+ /**
313
+ * @internal
314
+ */
315
+ public function set_project()
316
+ {
317
+ try {
318
+ $this->verifyNonce(self::nonce);
319
+
320
+ // update project globas
321
+ $meta = stripslashes($this->param('data'));
322
+ $dataVersion = (int)stripslashes($this->param('dataVersion'));
323
+
324
+ if (!$meta) {
325
+ Brizy_Logger::instance()->error('Invalid project meta provided', ['data' => $meta]);
326
+ throw new Exception('', 400);
327
+ }
328
+
329
+ if (!$dataVersion) {
330
+ Brizy_Logger::instance()->error('No data version provided', ['data' => $dataVersion]);
331
+ throw new Exception('', 400);
332
+ }
333
+
334
+ $project = Brizy_Editor_Project::get();
335
+ $project->setDataAsJson($meta);
336
+ $project->setDataVersion($dataVersion);
337
+
338
+
339
+ if ((int)$this->param('is_autosave') === 1) {
340
+ $project->save(1);
341
+ } else {
342
+ $project->save();
343
+ $project->savePost();
344
+ Brizy_Editor::get()->lockProject();
345
+ do_action('brizy_global_data_updated');
346
+ }
347
+
348
+ $this->success($project->createResponse());
349
+ } catch (Exception $exception) {
350
+ Brizy_Logger::instance()->exception($exception);
351
+ $this->error(400, $exception->getMessage());
352
+ exit;
353
+ }
354
+ }
355
+
356
+ /**
357
+ * @internal
358
+ **/
359
+ public function get_item()
360
+ {
361
+ try {
362
+ $this->verifyNonce(self::nonce);
363
+
364
+ if (!$this->post) {
365
+ throw new Exception('Invalid post provided');
366
+ }
367
+
368
+ $data = $this->post->createResponse();
369
+ $data['is_index'] = true;
370
+
371
+ $this->success(array($data));
372
+ } catch (Exception $exception) {
373
+ Brizy_Logger::instance()->exception($exception);
374
+ $this->error(500, $exception->getMessage());
375
+ exit;
376
+ }
377
+ }
378
+
379
+ /**
380
+ * @internal
381
+ **/
382
+ public function get_post_info()
383
+ {
384
+ try {
385
+ $this->verifyNonce(self::nonce);
386
+
387
+ $postId = (int)$this->param('post_id');
388
+ $defaultFields = ['ID', 'post_title', 'post_content'];
389
+ $post_fields = array_intersect((array)$this->param('fields'), $defaultFields);
390
+
391
+ if (count($post_fields) == 0) {
392
+ $post_fields = $defaultFields;
393
+ }
394
+
395
+ if (!$postId) {
396
+ $this->error(400, 'Invalid post id');
397
+ }
398
+
399
+ $post = get_post($postId, ARRAY_A);
400
+
401
+ if (!$post) {
402
+ $this->error(404, 'Invalid post id');
403
+ }
404
+
405
+ $data = array_intersect_key($post, array_flip($defaultFields));
406
+
407
+ $this->success($data);
408
+ } catch (Exception $exception) {
409
+ Brizy_Logger::instance()->exception($exception);
410
+ $this->error(500, $exception->getMessage());
411
+ exit;
412
+ }
413
+ }
414
+
415
+ /**
416
+ * @internal
417
+ **/
418
+ public function update_item()
419
+ {
420
+ try {
421
+ $this->verifyNonce(self::nonce);
422
+
423
+ $data = stripslashes($this->param('data'));
424
+ $atemplate = $this->param('template');
425
+ $dataVersion = (int)stripslashes($this->param('dataVersion'));
426
+ $status = stripslashes($this->param('status'));
427
+
428
+ if (!in_array($status, ['publish', 'draft', 'pending', 'private', 'future'])) {
429
+ $this->error(400, "Invalid post type");
430
+ }
431
+
432
+ if ($atemplate) {
433
+ $this->post->set_template($atemplate);
434
+ }
435
+
436
+ if ($data) {
437
+ $this->post->set_editor_data($data);
438
+ $this->post->set_editor_version(BRIZY_EDITOR_VERSION);
439
+ $this->post->set_needs_compile(true);
440
+ }
441
+
442
+ $this->post->getWpPost()->post_status = $status;
443
+
444
+ if ((int)$this->param('is_autosave') == 1) {
445
+ $this->post->save(1);
446
+ } else {
447
+ $this->post->setDataVersion($dataVersion);
448
+ $this->post->save(0);
449
+ $this->post->savePost(true);
450
+ }
451
+
452
+ $this->success($this->post->createResponse());
453
+ } catch (Exception $exception) {
454
+ Brizy_Logger::instance()->exception($exception);
455
+ $this->error(500, $exception->getMessage());
456
+ }
457
+ }
458
+
459
+ /*
460
+ * Used for elements like Woocommerce pages.
461
+ */
462
+ public function shortcode_content()
463
+ {
464
+ try {
465
+
466
+ $this->verifyNonce(self::nonce);
467
+
468
+ if (isset($_REQUEST['shortcode'])) {
469
+ $shortcode = stripslashes($_REQUEST['shortcode']);
470
+ } else {
471
+ throw new Exception('Shortcode string not provided.', 500);
472
+ }
473
+
474
+ $shortcode_content = do_shortcode($shortcode);
475
+
476
+ $this->success(
477
+ array(
478
+ 'shortcode' => $shortcode_content,
479
+ )
480
+ );
481
+
482
+ } catch (Exception $exception) {
483
+ Brizy_Logger::instance()->exception($exception);
484
+ $this->error($exception->getCode(), $exception->getMessage());
485
+ }
486
+ }
487
+
488
+ public function placeholder_content()
489
+ {
490
+ try {
491
+ $this->verifyNonce(self::nonce);
492
+ $postId = $this->param('post_id');
493
+ $placeholders = $this->param('placeholders');
494
+
495
+ if (!$placeholders) {
496
+ throw new Exception('Placeholder string not provided.', 400);
497
+ }
498
+
499
+ global $post, $wp_query;
500
+
501
+ $post = $this->getPostSample($postId);
502
+
503
+ if ($post instanceof WP_Post) {
504
+ setup_postdata($post);
505
+ $wp_query->is_single = true;
506
+
507
+ if ( function_exists( 'wc_get_product' ) ) {
508
+ global $product;
509
+
510
+ $product = wc_get_product( $post->ID );
511
+ }
512
+ }
513
+
514
+ $contents = [];
515
+ foreach ($placeholders as $placeholder) {
516
+ $placeholder = stripslashes($placeholder);
517
+ $contents[] = apply_filters('brizy_content', $placeholder, Brizy_Editor_Project::get(), $post);
518
+ }
519
+
520
+ $this->success(
521
+ array(
522
+ 'placeholders' => $contents,
523
+ )
524
+ );
525
+ } catch (Exception $exception) {
526
+ Brizy_Logger::instance()->exception($exception);
527
+ $this->error($exception->getCode(), $exception->getMessage());
528
+ }
529
+ }
530
+
531
+ public function placeholders_content()
532
+ {
533
+ global $post, $wp_query;
534
+ try {
535
+ $this->verifyNonce(self::nonce);
536
+ $posts = $this->param('p');
537
+ $contents = [];
538
+ foreach ($posts as $postId => $placeholders) {
539
+ $post = $this->getPostSample($postId);
540
+ $contents[$postId] = [];
541
+
542
+ if ($post instanceof WP_Post) {
543
+ setup_postdata($post);
544
+ $wp_query->is_single = true;
545
+ }
546
+ foreach ($placeholders as $placeholder) {
547
+ $placeholder = stripslashes($placeholder);
548
+ $contents[$postId][] = apply_filters('brizy_content', $placeholder, Brizy_Editor_Project::get(), $post);
549
+ }
550
+ }
551
+ $this->success(
552
+ array(
553
+ 'placeholders' => $contents,
554
+ )
555
+ );
556
+ } catch (Exception $exception) {
557
+ Brizy_Logger::instance()->exception($exception);
558
+ $this->error($exception->getCode(), $exception->getMessage());
559
+ }
560
+ }
561
 
562
  private function getPostSample( $templateId ) {
563
  global $wp_query;
567
  return $wp_post;
568
  }
569
 
 
 
 
 
 
 
 
 
 
 
 
 
 
570
 
571
+ $ruleManager = new Brizy_Admin_Rules_Manager();
572
+ $rules = $ruleManager->getRules($wp_post->ID);
573
+ $rule = null;
574
+
575
+ // find first include rule
576
+ foreach ($rules as $rule) {
577
+ /**
578
+ * @var Brizy_Admin_Rule $rule ;
579
+ */
580
+ if ($rule->getType() == Brizy_Admin_Rule::TYPE_INCLUDE) {
581
+ break;
582
+ }
583
+ }
584
+
585
+ if ($rule) {
586
 
587
+ switch ($rule->getAppliedFor()) {
588
+ case Brizy_Admin_Rule::POSTS :
589
+ $args = [
590
+ 'post_type' => $rule->getEntityType(),
591
+ 'posts_per_page' => 1,
592
+ ];
593
 
594
+ $values = $rule->getEntityValues();
595
 
596
+ if (empty($values[0])) {
597
+ // For All condition
598
+ $posts = get_posts($args);
599
+ $post = isset($posts[0]) ? $posts[0] : null;
600
 
601
  if ( $post && !Brizy_Editor_Entity::isBrizyEnabled($post->ID) ) {
602
  return $post;
605
  }
606
  }
607
 
608
+ $filter = $values[0];
609
+
610
+ if (is_numeric($filter)) {
611
+ $args['post__in'] = [$filter];
612
+ } else {
613
+ // $filter = in|category|12 OR in|genre|48 OR in|category|45 OR author|2
614
+ $explode = explode('|', $filter);
615
+
616
+ if ($explode[0] === 'in') {
617
+ $args['tax_query'] = [
618
+ [
619
+ 'taxonomy' => $explode[1],
620
+ 'terms' => $explode[2],
621
+ ],
622
+ ];
623
+ } else {
624
+ $args['author'] = $explode[1];
625
+ }
626
+ }
627
+
628
+ $posts = get_posts($args);
629
+
630
+ $post = isset($posts[0]) ? $posts[0] : null;
631
+
632
+ try {
633
+ if ($post && !Brizy_Editor_Entity::isBrizyEnabled($post->ID)) {
634
+ return $post;
635
+ } else {
636
+ return null;
637
+ }
638
+ } catch (Exception $e) {
639
+ return $post;
640
+ }
641
+
642
+
643
+ case Brizy_Admin_Rule::TAXONOMY :
644
+ $args = array(
645
+ 'taxonomy' => $rule->getEntityType(),
646
+ 'hide_empty' => false,);
647
+
648
+ if (count($rule->getEntityValues())) {
649
+ $args['term_taxonomy_id'] = $rule->getEntityValues();
650
+ }
651
+
652
+ $terms = get_terms($args);
653
  $term = array_pop( $terms );
654
 
655
  if ( $term ) {
665
  ]
666
  );
667
 
668
+ $wp_query->is_tax = true;
669
+ }return array_pop($terms);
 
 
670
 
671
+ case Brizy_Admin_Rule::ARCHIVE :
672
+ return null;
673
 
674
+ case Brizy_Admin_Rule::TEMPLATE :
675
 
676
+ switch ($rule->getEntityType()) {
677
+ case 'author':
678
+ $authors = get_users();
679
  $wp_query = new WP_Query( [ 'author_name' => get_userdata( get_current_user_id() )->data->user_nicename ] );
680
  $wp_query->is_author = true;
681
 
682
+ return array_pop($authors);
683
 
 
 
684
 
685
+ case '404':
686
+ $wp_query->is_404 = true;
687
 
688
+ return null;case 'search':
689
+ $wp_query->is_search = true;return null;
690
 
691
+ case 'home_page':
692
+ $get_option = get_option('page_for_posts');
693
 
694
+ if ($get_option) {
695
+ return get_post($get_option);
696
+ }
697
+ break;
698
+ case 'front_page':
699
+ $get_option = get_option('page_on_front');
700
 
701
+ if ($get_option) {
702
+ return get_post($get_option);
703
+ }
704
+ break;
705
+ }
706
 
707
+ break;
708
+ case Brizy_Admin_Rule::YEAR_ARCHIVE:
 
 
 
 
 
 
 
 
 
 
 
 
 
709
 
710
  $wp_query = new WP_Query( 'year=' . date( 'Y' ) );
711
  $wp_query->is_year = true;
725
  return null;
726
  }
727
 
728
+ }
729
+ }
 
 
730
 
731
+ public function get_post_objects()
732
+ {
733
 
734
+ global $wp_post_types;
735
+ $this->verifyNonce(self::nonce);
 
736
 
737
+ $searchTerm = $this->param('filterTerm');
738
+ $postType = $this->param('postType') ? $this->param('postType') : null;
739
+ $excludePostType = $this->param('excludePostTypes') ? $this->param('excludePostTypes') : array();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
740
 
741
+ if (!$postType) {
742
+ $postType = array_keys(
743
+ array_filter(
744
+ $wp_post_types,
745
+ function ($type) {
746
+ return !in_array($type->name, array('brizy_template')) && $type->show_ui;
747
+ }
748
+ )
749
+ );
750
+ }
751
 
752
+ add_filter('posts_where', array($this, 'brizy_post_title_filter'), 10, 2);
753
+ $posts = Brizy_Editor_Post::get_post_list($searchTerm, $postType, $excludePostType, 0, 100);
754
+ remove_filter('posts_where', array($this, 'brizy_post_title_filter'), 10);
755
 
756
+ $this->success(array('filter_term' => $searchTerm, 'posts' => $posts));
757
+ }
758
 
759
+ public function get_sidebars()
760
+ {
761
+ global $wp_registered_sidebars;
762
 
763
+ $this->verifyNonce(self::nonce);
764
 
765
+ $items = array();
 
 
 
 
 
 
 
 
766
 
767
+ foreach ($wp_registered_sidebars as $sidebar) {
768
+ $item = array(
769
+ 'id' => $sidebar['id'],
770
+ 'title' => $sidebar['name'],
771
+ );
772
+ $items[] = $item;
773
+ }
774
 
775
+ $this->success($items);
776
+ }
777
 
778
+ public function brizy_post_title_filter($where, $wp_query = null)
779
+ {
 
 
 
780
 
781
+ global $wpdb;
782
+
783
+
784
+ if ($wp_query instanceof WP_Query && $term = $wp_query->get('post_title_term')) {
785
+ $search_term = $wpdb->esc_like($term);
786
+ $search_term = ' \'%' . $search_term . '%\'';
787
+
788
+ $where .= ' AND ' . $wpdb->posts . '.post_title LIKE ' . $search_term;
789
+ }
790
+
791
+ return $where;
792
+ }
793
+
794
+ public function get_menu_list()
795
+ {
796
+ $this->success(wp_get_nav_menus(array('hide_empty' => true)), 200);
797
+ }
798
+
799
+ /**
800
+ * Used in woocomerce producs, block conditions
801
+ */
802
+ public function get_terms()
803
+ {
804
+
805
+ try {
806
+ $this->verifyNonce(self::nonce);
807
+
808
+ $taxonomy = $this->param('taxonomy');
809
+
810
+ $terms = (array)get_terms(array('taxonomy' => $taxonomy, 'hide_empty' => false));
811
+
812
+ $this->success(array_values($terms));
813
+
814
+ } catch (Exception $e) {
815
+ Brizy_Logger::instance()->error($e->getMessage(), [$e]);
816
+ $this->error(500, $e->getMessage());
817
+ }
818
+ }
819
+
820
+ /**
821
+ * Used in posts filter element
822
+ */
823
+ public function get_terms_by()
824
+ {
825
+
826
+ $this->verifyNonce(self::nonce);
827
+
828
+ $args = [];
829
+
830
+ foreach (['taxonomy', 'search', 'include'] as $field) {
831
+ $value = $this->param($field);
832
+ if (!empty($value)) {
833
+ $args[$field] = $value;
834
+ }
835
+ }
836
+
837
+ $terms = get_terms($args);
838
+
839
+ if (is_wp_error($terms)) {
840
+ $this->error(200, $terms);
841
+ }
842
+
843
+
844
+ $out = [];
845
+ foreach ($terms as $term) {
846
+ $out[] = [
847
+ 'term_id' => $term->term_id,
848
+ 'name' => $term->name,
849
+ 'taxonomy' => $term->taxonomy,
850
+ 'taxonomy_name' => get_taxonomy($term->taxonomy)->labels->singular_name,
851
+ ];
852
+ }
853
+
854
+ $this->success($out);
855
+ }
856
+
857
+ /**
858
+ * Used in posts filter element
859
+ */
860
+ public function search_post()
861
+ {
862
+ $this->verifyNonce(self::nonce);
863
+ $args = ['numberposts' => -1];
864
+ $args['post_type'] = array_values(get_post_types(['public' => true]));
865
+
866
+ // exclude attachments
867
+ if (($key = array_search('attachment', $args['post_type'])) !== false) {
868
+ unset($args['post_type'][$key]);
869
+ }
870
+
871
+ // se post types
872
+ if ($requiredTypes = $this->param('post_type')) {
873
+ if (is_string($requiredTypes)) {
874
+ $args['post_type'] = [$requiredTypes];
875
+ } else {
876
+ $args['post_type'] = $requiredTypes;
877
+ }
878
+ }
879
+
880
+ // exclude post types
881
+ if ($excludeTypes = $this->param('exclude_post_type')) {
882
+ if (is_string($excludeTypes)) {
883
+ if (($key = array_search($excludeTypes, $args['post_type'])) !== false) {
884
+ unset($args['post_type'][$key]);
885
+ }
886
+ } else {
887
+ $args['post_type'] = array_diff($args['post_type'], $excludeTypes);
888
+ }
889
+ }
890
+
891
+ // include posts by id
892
+ if ($this->param('include')) {
893
+ $args['post__in'] = $this->param('include');
894
+ } elseif ($this->param('search') /*&& strlen($this->param('search')) >= 3*/) {
895
+ $args['s'] = $this->param('search');
896
+ } else {
897
+ $this->success([]);
898
+ }
899
+
900
+ $posts = get_posts($args);
901
+
902
+ if (is_wp_error($posts)) {
903
+ $this->error(200, $posts);
904
+ }
905
+
906
+ $out = [];
907
+ foreach ($posts as $post) {
908
+ $out[] = [
909
+ 'ID' => $post->ID,
910
+ 'title' => $post->post_title,
911
+ ];
912
+ }
913
+
914
+ $this->success($out);
915
+ }
916
+
917
+ public function get_users()
918
+ {
919
+ $this->verifyNonce(self::nonce);
920
+
921
+ $args = [];
922
+ $search = $this->param('search');
923
+ $include = $this->param('include');
924
+
925
+ $args['fields'] = $this->param('fields') ? $this->param('fields') : ['ID', 'display_name'];
926
+
927
+ if ($this->param('roles') && is_array($this->param('roles'))) {
928
+ $args['role__in'] = $this->param('roles');
929
+ }
930
+
931
+ if (!empty($search)) {
932
+ $args['search'] = '*' . $search . '*';
933
+ $args['search_columns'] = ['display_name'];
934
+ }
935
+
936
+ if (is_array($include) && !empty($include)) {
937
+ $args['include'] = $include;
938
+ }
939
+
940
+ $users = get_users($args);
941
+
942
+ $users = array_map(
943
+ function ($user) {
944
+ $user->ID = (int)$user->ID;
945
+
946
+ return $user;
947
+ },
948
+ $users
949
+ );
950
+
951
+ $this->success($users);
952
+ }
953
+
954
+ public function download_media()
955
+ {
956
+ try {
957
+ $this->verifyNonce(self::nonce);
958
+
959
+ $project = Brizy_Editor_Project::get();
960
+ $apost = (int)$_REQUEST['post_id'];
961
+
962
+ $media_cacher = new Brizy_Editor_CropCacheMedia($project, $apost);
963
+ $media_cacher->download_original_image($_REQUEST['media']);
964
+
965
+ $this->success(array(), 200);
966
+ } catch (Exception $e) {
967
+ $this->error(500, $e->getMessage());
968
+ }
969
+ }
970
+
971
+ public function get_media_key()
972
+ {
973
+ try {
974
+ session_write_close();
975
+ $this->verifyNonce(self::nonce);
976
+ $apost = (int)$_REQUEST['post_id'];
977
+ $attachment_id = (int)$_REQUEST['attachment_id'];
978
+
979
+ if (!$attachment_id || get_post_status($attachment_id) === false) {
980
+ $this->error(400, 'Invalid attachment id');
981
+ }
982
+ $uid = $this->createMediaKey($apost, $attachment_id);
983
+
984
+ $this->success(array('uid' => $uid));
985
+
986
+ } catch (Exception $e) {
987
+ Brizy_Logger::instance()->error($e->getMessage(), [$e]);
988
 
989
+ return;
990
+ }
991
+ }
992
 
993
+ public function get_attachment_key()
994
+ {
995
+ try {
996
+ session_write_close();
997
 
998
+ $this->verifyNonce(self::nonce);
999
+ $attachmentId = isset($_REQUEST['attachment_id']) ? (int)$_REQUEST['attachment_id'] : null;
 
1000
 
1001
+ if (!$attachmentId || get_post_status($attachmentId) === false) {
1002
+ $this->error(400, 'Invalid attachment id');
1003
+ }
1004
 
1005
+ $uid = get_post_meta($attachmentId, 'brizy_post_uid', true);
 
 
 
 
 
1006
 
1007
+ if (!$uid) {
1008
+ $file = get_attached_file($attachmentId);
1009
+ $path_parts = pathinfo($file);
1010
+ $uid = "wp-" . md5($attachmentId . time()) . '.' . $path_parts['extension'];
1011
+ update_post_meta($attachmentId, 'brizy_post_uid', $uid);
1012
+ }
1013
 
1014
+ $this->success(array('uid' => $uid));
 
1015
 
1016
+ } catch (Exception $e) {
1017
+ Brizy_Logger::instance()->error($e->getMessage(), [$e]);
 
1018
 
1019
+ return;
1020
+ }
1021
+ }
1022
 
1023
+ public function setTemplateType()
1024
+ {
1025
+ try {
1026
 
1027
+ $this->verifyNonce(self::nonce);
1028
+ $templateId = $this->param('template_id');
1029
+ $templateType = $this->param('template_type');
1030
 
1031
+ if (get_post_type($templateId) != Brizy_Admin_Templates::CP_TEMPLATE) {
1032
+ $this->error(400, 'Invalid template');
1033
+ }
1034
 
1035
+ $allowedTypes = [
1036
+ Brizy_Admin_Templates::TYPE_SINGLE,
1037
+ Brizy_Admin_Templates::TYPE_ARCHIVE,
1038
+ Brizy_Admin_Templates::TYPE_SINGLE_PRODUCT,
1039
+ Brizy_Admin_Templates::TYPE_PRODUCT_ARCHIVE,
1040
+ ];
1041
 
1042
+ if (!in_array($templateType, $allowedTypes, true)) {
1043
+ $this->error(400, 'Invalid template type');
1044
+ }
1045
 
1046
+ update_post_meta($templateId, Brizy_Admin_Templates::TEMPLATE_TYPE_KEY, $templateType);
1047
 
1048
+ $this->success([]);
1049
 
1050
+ } catch (Exception $e) {
1051
+ Brizy_Logger::instance()->error($e->getMessage(), [$e]);
1052
+ $this->error(500, $e->getMessage());
1053
 
1054
+ return;
1055
+ }
1056
+ }
1057
 
1058
 
1059
+ private function createMediaKey($postId, $attachmentId)
1060
+ {
1061
+ $uid = get_post_meta($attachmentId, 'brizy_attachment_uid', true);
1062
 
1063
+ if (!$uid) {
1064
+ $file = get_attached_file($attachmentId);
1065
+ $path_parts = pathinfo($file);
1066
+ $uid = "wp-" . md5($attachmentId . time()) . '.' . $path_parts['extension'];
1067
+ update_post_meta($attachmentId, 'brizy_attachment_uid', $uid);
1068
+ }
1069
 
1070
+ if ($postId) {
1071
+ $post = Brizy_Editor_Post::get($postId);
1072
+ $post_ui = $post->getUid();
1073
 
1074
+ $post_uids = get_post_meta($attachmentId, 'brizy_post_uid');
1075
 
1076
+ if (!in_array($post_ui, $post_uids)) {
1077
+ add_post_meta($attachmentId, 'brizy_post_uid', $post_ui);
1078
+ }
1079
+ }
1080
 
1081
+ return $uid;
1082
+ }
1083
  }
editor/api/client.php CHANGED
@@ -1,59 +1,63 @@
1
  <?php
2
 
3
- class Brizy_Editor_API_Client extends Brizy_Editor_Http_Client {
4
-
5
- /**
6
- * @var Brizy_Editor_API_AccessToken
7
- */
8
- private $access_token;
9
-
10
- /**
11
- * Brizy_Editor_API_Client constructor.
12
- *
13
- * @param $token
14
- */
15
- public function __construct( $token ) {
16
- parent::__construct();
17
- $this->access_token = $token;
18
- }
19
-
20
- public function getUser() {
21
- return $this->post( 'users/me', array() )->get_response_body();
22
- }
23
-
24
- /**
25
- * @param null $clone_from_id
26
- *
27
- * @return array|mixed|object
28
- * @throws Brizy_Editor_API_Exceptions_Exception
29
- * @throws Brizy_Editor_Http_Exceptions_BadRequest
30
- * @throws Brizy_Editor_Http_Exceptions_ResponseException
31
- * @throws Brizy_Editor_Http_Exceptions_ResponseNotFound
32
- * @throws Brizy_Editor_Http_Exceptions_ResponseUnauthorized
33
- */
34
- public function create_project( $clone_from_id = null ) {
35
-
36
- $project = new Brizy_Editor_API_Project( array() );
37
- $save_data = $project->getSaveData();
38
-
39
- if ( $clone_from_id ) {
40
- $save_data['resource_id_clonable'] = $clone_from_id;
41
- }
42
-
43
- return $this->post( 'projects', array( 'body' => $save_data ) )->get_response_body();
44
- }
45
-
46
- /**
47
- * @param $page_ids
48
- * @param $project_target
49
- *
50
- * @return array|mixed|object
51
- * @throws Brizy_Editor_API_Exceptions_Exception
52
- * @throws Brizy_Editor_Http_Exceptions_BadRequest
53
- * @throws Brizy_Editor_Http_Exceptions_ResponseException
54
- * @throws Brizy_Editor_Http_Exceptions_ResponseNotFound
55
- * @throws Brizy_Editor_Http_Exceptions_ResponseUnauthorized
56
- */
 
 
 
 
57
  // public function clone_pages( $page_ids, $project_target ) {
58
  //
59
  // return $this->post( 'pages/clones', array(
@@ -64,258 +68,296 @@ class Brizy_Editor_API_Client extends Brizy_Editor_Http_Client {
64
  // ) )->get_response_body();
65
  // }
66
 
67
- /**
68
- * @param Brizy_Editor_API_Project $project
69
- *
70
- * @return array|mixed|object
71
- * @throws Brizy_Editor_API_Exceptions_Exception
72
- * @throws Brizy_Editor_Http_Exceptions_BadRequest
73
- * @throws Brizy_Editor_Http_Exceptions_ResponseException
74
- * @throws Brizy_Editor_Http_Exceptions_ResponseNotFound
75
- * @throws Brizy_Editor_Http_Exceptions_ResponseUnauthorized
76
- */
77
- public function get_project( Brizy_Editor_API_Project $project ) {
78
-
79
- return $this->get( "projects/{$project->get_id()}" )->get_response_body();
80
- }
81
-
82
- /**
83
- * @param Brizy_Editor_API_Project $project
84
- *
85
- * @return array|mixed|object
86
- * @throws Brizy_Editor_API_Exceptions_Exception
87
- * @throws Brizy_Editor_Http_Exceptions_BadRequest
88
- * @throws Brizy_Editor_Http_Exceptions_ResponseException
89
- * @throws Brizy_Editor_Http_Exceptions_ResponseNotFound
90
- * @throws Brizy_Editor_Http_Exceptions_ResponseUnauthorized
91
- */
92
- public function update_project( Brizy_Editor_API_Project $project ) {
93
- return $this->put( "projects/{$project->get_id()}", array( 'body' => $project->getSaveData( 'PUT' ) ) )->get_response_body();
94
- }
95
-
96
- /**
97
- * @param $id
98
- *
99
- * @return array|mixed|object
100
- * @throws Brizy_Editor_API_Exceptions_Exception
101
- * @throws Brizy_Editor_Http_Exceptions_BadRequest
102
- * @throws Brizy_Editor_Http_Exceptions_ResponseException
103
- * @throws Brizy_Editor_Http_Exceptions_ResponseNotFound
104
- * @throws Brizy_Editor_Http_Exceptions_ResponseUnauthorized
105
- */
106
- public function delete_project( $id ) {
107
- return $this->delete( "projects/$id" )->get_response_body();
108
- }
109
-
110
- /**
111
- * @param $project_id
112
- *
113
- * @return array|mixed|object
114
- * @throws Brizy_Editor_API_Exceptions_Exception
115
- * @throws Brizy_Editor_Http_Exceptions_BadRequest
116
- * @throws Brizy_Editor_Http_Exceptions_ResponseException
117
- * @throws Brizy_Editor_Http_Exceptions_ResponseNotFound
118
- * @throws Brizy_Editor_Http_Exceptions_ResponseUnauthorized
119
- */
 
 
 
 
 
 
120
  // public function get_pages( $project_id ) {
121
  // return $this->get( "projects/$project_id/pages?=signature=" . Brizy_Editor_Signature::get() )->get_response_body();
122
  // }
123
 
124
- /**
125
- * @param $project_id
126
- * @param $page_id
127
- *
128
- * @return array|mixed|object
129
- * @throws Brizy_Editor_API_Exceptions_Exception
130
- * @throws Brizy_Editor_Http_Exceptions_BadRequest
131
- * @throws Brizy_Editor_Http_Exceptions_ResponseException
132
- * @throws Brizy_Editor_Http_Exceptions_ResponseNotFound
133
- * @throws Brizy_Editor_Http_Exceptions_ResponseUnauthorized
134
- */
135
  // public function get_page( $project_id, $page_id ) {
136
  // return $this->get( "projects/$project_id/pages/$page_id" )->get_response_body();
137
  // }
138
 
139
- /**
140
- * @param $project_id
141
- * @param Brizy_Editor_API_Page $page
142
- *
143
- * @return array|mixed|object
144
- * @throws Brizy_Editor_API_Exceptions_Exception
145
- * @throws Brizy_Editor_Http_Exceptions_BadRequest
146
- * @throws Brizy_Editor_Http_Exceptions_ResponseException
147
- * @throws Brizy_Editor_Http_Exceptions_ResponseNotFound
148
- * @throws Brizy_Editor_Http_Exceptions_ResponseUnauthorized
149
- */
150
  // public function create_page( $project_id, Brizy_Editor_API_Page $page ) {
151
  // return $this->post( "projects/$project_id/pages", array( 'body' => $page->getSaveData() ) )->get_response_body();
152
  // }
153
 
154
- /**
155
- * @param $project_id
156
- * @param $page_id
157
- * @param Brizy_Editor_API_Page $page
158
- *
159
- * @return array|mixed|object
160
- * @throws Brizy_Editor_API_Exceptions_Exception
161
- * @throws Brizy_Editor_Http_Exceptions_BadRequest
162
- * @throws Brizy_Editor_Http_Exceptions_ResponseException
163
- * @throws Brizy_Editor_Http_Exceptions_ResponseNotFound
164
- * @throws Brizy_Editor_Http_Exceptions_ResponseUnauthorized
165
- */
166
  // public function update_page( $project_id, $page_id, Brizy_Editor_API_Page $page ) {
167
  // return $this->put( "projects/$project_id/pages/$page_id", array( 'body' => $page->getSaveData( 'PUT' ) ) )->get_response_body();
168
  // }
169
 
170
- /**
171
- * @param Brizy_Editor_Project $project
172
- * @param $page_data
173
- * @param $config
174
- * @param $compiler_url
175
- *
176
- * @return string
177
- * @throws Brizy_Editor_API_Exceptions_Exception
178
- * @throws Brizy_Editor_Exceptions_NotFound
179
- * @throws Brizy_Editor_Http_Exceptions_BadRequest
180
- * @throws Brizy_Editor_Http_Exceptions_ResponseException
181
- * @throws Brizy_Editor_Http_Exceptions_ResponseNotFound
182
- * @throws Brizy_Editor_Http_Exceptions_ResponseUnauthorized
183
- * @throws Twig_Error_Loader
184
- * @throws Twig_Error_Runtime
185
- * @throws Twig_Error_Syntax
186
- */
187
- public function compile_page( Brizy_Editor_Project $project, $page_data, $config, $compiler_url ) {
188
-
189
- $blockManager = new Brizy_Admin_Blocks_Manager( Brizy_Admin_Blocks_Main::CP_GLOBAL );
190
-
191
- $body = apply_filters( 'brizy_compiler_params', array(
192
- 'page_id' => (int)$config['wp']['page'],
193
- 'free_version' => BRIZY_EDITOR_VERSION,
194
- 'free_url' => Brizy_Config::getCompilerDownloadUrl(),
195
- 'config_json' => json_encode( $config ),
196
- 'pages_json' => json_encode( array(
197
- array(
198
- 'id' => (int)$config['wp']['page'],
199
- 'data' => $page_data,
200
- 'is_index' => true
201
- )
202
- ) ),
203
- 'project_json' => json_encode( $project->createResponse() ),
204
- 'global_blocks_json' => json_encode( $blockManager->createResponseForEntities( $blockManager->getEntities( [] ) ) )
205
- ) );
206
-
207
-
208
- $page = parent::request( $compiler_url, array( 'body' => $body ), 'POST' )->get_response_body();
209
-
210
- $template_context = array(
211
-
212
- 'editorData' => array(
213
- 'urls' => array(
214
- 'assets' => $config['urls']['assets'],
215
- 'apiEndpoint' => set_url_scheme( admin_url( 'admin-ajax.php' ) )
216
- ),
217
- 'api' => array(
218
- 'getTimestamp' => Brizy_Editor_API::AJAX_TIMESTAMP,
219
- ),
220
- 'serverTimestamp' => time()
221
- ),
222
- 'page' => $page
223
- );
224
-
225
- return Brizy_TwigEngine::instance( Brizy_Editor_UrlBuilder::editor_build_path( 'editor/views/' ) )
226
- ->render( 'static.html.twig', $template_context );
227
- }
228
-
229
- /**
230
- * @param $project_id
231
- * @param $page_id
232
- *
233
- * @return array|mixed|object
234
- * @throws Brizy_Editor_API_Exceptions_Exception
235
- * @throws Brizy_Editor_Http_Exceptions_BadRequest
236
- * @throws Brizy_Editor_Http_Exceptions_ResponseException
237
- * @throws Brizy_Editor_Http_Exceptions_ResponseNotFound
238
- * @throws Brizy_Editor_Http_Exceptions_ResponseUnauthorized
239
- */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
240
  // public function delete_page( $project_id, $page_id ) {
241
  // return $this->delete( "projects/$project_id/pages/$page_id" )->get_response_body();
242
  // }
243
 
244
- /**
245
- * @param $project_id
246
- * @param $base64
247
- *
248
- * @return array|mixed|object
249
- * @throws Brizy_Editor_API_Exceptions_Exception
250
- * @throws Brizy_Editor_Http_Exceptions_BadRequest
251
- * @throws Brizy_Editor_Http_Exceptions_ResponseException
252
- * @throws Brizy_Editor_Http_Exceptions_ResponseNotFound
253
- * @throws Brizy_Editor_Http_Exceptions_ResponseUnauthorized
254
- */
255
- public function add_media( $project_id, $base64 ) {
256
- return $this->post( "projects/$project_id/media", array(
257
- 'timeout' => 30,
258
- 'body' => array( 'attachment' => $base64 )
259
- ) )->get_response_body();
260
- }
261
-
262
- /**
263
- * @return array
264
- */
265
- protected function get_headers() {
266
- return array(//'Authorization' => 'Bearer ' . $this->access_token->access_token()
267
- );
268
- }
269
-
270
- /**
271
- * @param $suffix
272
- *
273
- * @return string
274
- */
275
- protected function url( $suffix ) {
276
- $implode = rtrim( implode( "/", array( Brizy_Config::GATEWAY_URI, 'v1', $suffix ) ), "/" );
277
-
278
- return $implode;
279
- }
280
-
281
- /**
282
- * @param $url
283
- * @param array $options
284
- * @param string $method
285
- *
286
- * @return Brizy_Editor_Http_Response
287
- * @throws Brizy_Editor_API_Exceptions_Exception
288
- * @throws Brizy_Editor_Http_Exceptions_BadRequest
289
- * @throws Brizy_Editor_Http_Exceptions_ResponseException
290
- * @throws Brizy_Editor_Http_Exceptions_ResponseNotFound
291
- * @throws Brizy_Editor_Http_Exceptions_ResponseUnauthorized
292
- */
293
- public function request( $url, $options = array(), $method = 'GET' ) {
294
- return parent::request(
295
- $this->url( $url ),
296
- $options,
297
- $method
298
- );
299
- }
300
-
301
- /**
302
- * @param $options
303
- *
304
- * @return array
305
- */
306
- protected function prepare_options( $options ) {
307
-
308
- $options = parent::prepare_options( $options );
309
-
310
- $options['headers'] = array_merge( $options['headers'], $this->get_headers() );
311
-
312
- return $options;
313
- }
314
-
315
- protected function get_project_json( Brizy_Editor_Project $project ) {
316
- return json_encode( array(
317
- 'id' => $project->getId(),
318
- 'data' => $project->getDataAsJson()
319
- ) );
320
- }
 
 
 
 
 
 
 
 
 
 
 
321
  }
1
  <?php
2
 
3
+ class Brizy_Editor_API_Client extends Brizy_Editor_Http_Client
4
+ {
5
+
6
+ /**
7
+ * @var Brizy_Editor_API_AccessToken
8
+ */
9
+ private $access_token;
10
+
11
+ /**
12
+ * Brizy_Editor_API_Client constructor.
13
+ *
14
+ * @param $token
15
+ */
16
+ public function __construct($token)
17
+ {
18
+ parent::__construct();
19
+ $this->access_token = $token;
20
+ }
21
+
22
+ public function getUser()
23
+ {
24
+ return $this->post('users/me', array())->get_response_body();
25
+ }
26
+
27
+ /**
28
+ * @param null $clone_from_id
29
+ *
30
+ * @return array|mixed|object
31
+ * @throws Brizy_Editor_API_Exceptions_Exception
32
+ * @throws Brizy_Editor_Http_Exceptions_BadRequest
33
+ * @throws Brizy_Editor_Http_Exceptions_ResponseException
34
+ * @throws Brizy_Editor_Http_Exceptions_ResponseNotFound
35
+ * @throws Brizy_Editor_Http_Exceptions_ResponseUnauthorized
36
+ */
37
+ public function create_project($clone_from_id = null)
38
+ {
39
+
40
+ $project = new Brizy_Editor_API_Project(array());
41
+ $save_data = $project->getSaveData();
42
+
43
+ if ($clone_from_id) {
44
+ $save_data['resource_id_clonable'] = $clone_from_id;
45
+ }
46
+
47
+ return $this->post('projects', array('body' => $save_data))->get_response_body();
48
+ }
49
+
50
+ /**
51
+ * @param $page_ids
52
+ * @param $project_target
53
+ *
54
+ * @return array|mixed|object
55
+ * @throws Brizy_Editor_API_Exceptions_Exception
56
+ * @throws Brizy_Editor_Http_Exceptions_BadRequest
57
+ * @throws Brizy_Editor_Http_Exceptions_ResponseException
58
+ * @throws Brizy_Editor_Http_Exceptions_ResponseNotFound
59
+ * @throws Brizy_Editor_Http_Exceptions_ResponseUnauthorized
60
+ */
61
  // public function clone_pages( $page_ids, $project_target ) {
62
  //
63
  // return $this->post( 'pages/clones', array(
68
  // ) )->get_response_body();
69
  // }
70
 
71
+ /**
72
+ * @param Brizy_Editor_API_Project $project
73
+ *
74
+ * @return array|mixed|object
75
+ * @throws Brizy_Editor_API_Exceptions_Exception
76
+ * @throws Brizy_Editor_Http_Exceptions_BadRequest
77
+ * @throws Brizy_Editor_Http_Exceptions_ResponseException
78
+ * @throws Brizy_Editor_Http_Exceptions_ResponseNotFound
79
+ * @throws Brizy_Editor_Http_Exceptions_ResponseUnauthorized
80
+ */
81
+ public function get_project(Brizy_Editor_API_Project $project)
82
+ {
83
+
84
+ return $this->get("projects/{$project->get_id()}")->get_response_body();
85
+ }
86
+
87
+ /**
88
+ * @param Brizy_Editor_API_Project $project
89
+ *
90
+ * @return array|mixed|object
91
+ * @throws Brizy_Editor_API_Exceptions_Exception
92
+ * @throws Brizy_Editor_Http_Exceptions_BadRequest
93
+ * @throws Brizy_Editor_Http_Exceptions_ResponseException
94
+ * @throws Brizy_Editor_Http_Exceptions_ResponseNotFound
95
+ * @throws Brizy_Editor_Http_Exceptions_ResponseUnauthorized
96
+ */
97
+ public function update_project(Brizy_Editor_API_Project $project)
98
+ {
99
+ return $this->put(
100
+ "projects/{$project->get_id()}",
101
+ array('body' => $project->getSaveData('PUT'))
102
+ )->get_response_body();
103
+ }
104
+
105
+ /**
106
+ * @param $id
107
+ *
108
+ * @return array|mixed|object
109
+ * @throws Brizy_Editor_API_Exceptions_Exception
110
+ * @throws Brizy_Editor_Http_Exceptions_BadRequest
111
+ * @throws Brizy_Editor_Http_Exceptions_ResponseException
112
+ * @throws Brizy_Editor_Http_Exceptions_ResponseNotFound
113
+ * @throws Brizy_Editor_Http_Exceptions_ResponseUnauthorized
114
+ */
115
+ public function delete_project($id)
116
+ {
117
+ return $this->delete("projects/$id")->get_response_body();
118
+ }
119
+
120
+ /**
121
+ * @param $project_id
122
+ *
123
+ * @return array|mixed|object
124
+ * @throws Brizy_Editor_API_Exceptions_Exception
125
+ * @throws Brizy_Editor_Http_Exceptions_BadRequest
126
+ * @throws Brizy_Editor_Http_Exceptions_ResponseException
127
+ * @throws Brizy_Editor_Http_Exceptions_ResponseNotFound
128
+ * @throws Brizy_Editor_Http_Exceptions_ResponseUnauthorized
129
+ */
130
  // public function get_pages( $project_id ) {
131
  // return $this->get( "projects/$project_id/pages?=signature=" . Brizy_Editor_Signature::get() )->get_response_body();
132
  // }
133
 
134
+ /**
135
+ * @param $project_id
136
+ * @param $page_id
137
+ *
138
+ * @return array|mixed|object
139
+ * @throws Brizy_Editor_API_Exceptions_Exception
140
+ * @throws Brizy_Editor_Http_Exceptions_BadRequest
141
+ * @throws Brizy_Editor_Http_Exceptions_ResponseException
142
+ * @throws Brizy_Editor_Http_Exceptions_ResponseNotFound
143
+ * @throws Brizy_Editor_Http_Exceptions_ResponseUnauthorized
144
+ */
145
  // public function get_page( $project_id, $page_id ) {
146
  // return $this->get( "projects/$project_id/pages/$page_id" )->get_response_body();
147
  // }
148
 
149
+ /**
150
+ * @param $project_id
151
+ * @param Brizy_Editor_API_Page $page
152
+ *
153
+ * @return array|mixed|object
154
+ * @throws Brizy_Editor_API_Exceptions_Exception
155
+ * @throws Brizy_Editor_Http_Exceptions_BadRequest
156
+ * @throws Brizy_Editor_Http_Exceptions_ResponseException
157
+ * @throws Brizy_Editor_Http_Exceptions_ResponseNotFound
158
+ * @throws Brizy_Editor_Http_Exceptions_ResponseUnauthorized
159
+ */
160
  // public function create_page( $project_id, Brizy_Editor_API_Page $page ) {
161
  // return $this->post( "projects/$project_id/pages", array( 'body' => $page->getSaveData() ) )->get_response_body();
162
  // }
163
 
164
+ /**
165
+ * @param $project_id
166
+ * @param $page_id
167
+ * @param Brizy_Editor_API_Page $page
168
+ *
169
+ * @return array|mixed|object
170
+ * @throws Brizy_Editor_API_Exceptions_Exception
171
+ * @throws Brizy_Editor_Http_Exceptions_BadRequest
172
+ * @throws Brizy_Editor_Http_Exceptions_ResponseException
173
+ * @throws Brizy_Editor_Http_Exceptions_ResponseNotFound
174
+ * @throws Brizy_Editor_Http_Exceptions_ResponseUnauthorized
175
+ */
176
  // public function update_page( $project_id, $page_id, Brizy_Editor_API_Page $page ) {
177
  // return $this->put( "projects/$project_id/pages/$page_id", array( 'body' => $page->getSaveData( 'PUT' ) ) )->get_response_body();
178
  // }
179
 
180
+ /**
181
+ * @param Brizy_Editor_Project $project
182
+ * @param $page_data
183
+ * @param $config
184
+ * @param $compiler_url
185
+ *
186
+ * @return string
187
+ * @throws Brizy_Editor_API_Exceptions_Exception
188
+ * @throws Brizy_Editor_Exceptions_NotFound
189
+ * @throws Brizy_Editor_Http_Exceptions_BadRequest
190
+ * @throws Brizy_Editor_Http_Exceptions_ResponseException
191
+ * @throws Brizy_Editor_Http_Exceptions_ResponseNotFound
192
+ * @throws Brizy_Editor_Http_Exceptions_ResponseUnauthorized
193
+ * @throws Twig_Error_Loader
194
+ * @throws Twig_Error_Runtime
195
+ * @throws Twig_Error_Syntax
196
+ */
197
+ public function compile_page(Brizy_Editor_Project $project, $page_data, $config, $compiler_url)
198
+ {
199
+
200
+ $blockManager = new Brizy_Admin_Blocks_Manager(Brizy_Admin_Blocks_Main::CP_GLOBAL);
201
+
202
+ $body = apply_filters(
203
+ 'brizy_compiler_params',
204
+ array(
205
+ 'page_id' => (int)$config['wp']['page'],
206
+ 'free_version' => BRIZY_EDITOR_VERSION,
207
+ 'free_url' => Brizy_Config::getCompilerDownloadUrl(),
208
+ 'config_json' => json_encode($config),
209
+ 'pages_json' => json_encode(
210
+ array(
211
+ array(
212
+ 'id' => (int)$config['wp']['page'],
213
+ 'data' => $page_data,
214
+ 'is_index' => true,
215
+ ),
216
+ )
217
+ ),
218
+ 'project_json' => json_encode($project->createResponse()),
219
+ 'global_blocks_json' => json_encode(
220
+ $blockManager->createResponseForEntities($blockManager->getEntities([]))
221
+ ),
222
+ )
223
+ );
224
+
225
+
226
+ $page = parent::request($compiler_url, array('body' => $body), 'POST')->get_response_body();
227
+
228
+ $template_context = array(
229
+
230
+ 'editorData' => array(
231
+ 'urls' => array(
232
+ 'assets' => $config['urls']['assets'],
233
+ 'apiEndpoint' => set_url_scheme(admin_url('admin-ajax.php')),
234
+ ),
235
+ 'api' => array(
236
+ 'getTimestamp' => Brizy_Editor_API::AJAX_TIMESTAMP,
237
+ ),
238
+ 'serverTimestamp' => time(),
239
+ ),
240
+ 'page' => $page,
241
+ );
242
+
243
+ $blocks = $page['blocks'];
244
+
245
+ return [
246
+ 'pageHtml' => Brizy_TwigEngine::instance(Brizy_Editor_UrlBuilder::editor_build_path('editor/views/'))
247
+ ->render('static.html.twig', $template_context),
248
+ 'pageScripts' => [
249
+ 'free' => $blocks['freeScripts'],
250
+ 'pro' => (isset($blocks['proScripts']) ? $blocks['proScripts'] : []),
251
+ ],
252
+ 'pageStyles' => [
253
+ 'free' => $blocks['freeStyles'],
254
+ 'pro' => (isset($blocks['proStyles']) ? $blocks['proStyles'] : []),
255
+ ],
256
+ ];
257
+
258
+ }
259
+
260
+ /**
261
+ * @param $project_id
262
+ * @param $page_id
263
+ *
264
+ * @return array|mixed|object
265
+ * @throws Brizy_Editor_API_Exceptions_Exception
266
+ * @throws Brizy_Editor_Http_Exceptions_BadRequest
267
+ * @throws Brizy_Editor_Http_Exceptions_ResponseException
268
+ * @throws Brizy_Editor_Http_Exceptions_ResponseNotFound
269
+ * @throws Brizy_Editor_Http_Exceptions_ResponseUnauthorized
270
+ */
271
  // public function delete_page( $project_id, $page_id ) {
272
  // return $this->delete( "projects/$project_id/pages/$page_id" )->get_response_body();
273
  // }
274
 
275
+ /**
276
+ * @param $project_id
277
+ * @param $base64
278
+ *
279
+ * @return array|mixed|object
280
+ * @throws Brizy_Editor_API_Exceptions_Exception
281
+ * @throws Brizy_Editor_Http_Exceptions_BadRequest
282
+ * @throws Brizy_Editor_Http_Exceptions_ResponseException
283
+ * @throws Brizy_Editor_Http_Exceptions_ResponseNotFound
284
+ * @throws Brizy_Editor_Http_Exceptions_ResponseUnauthorized
285
+ */
286
+ public function add_media($project_id, $base64)
287
+ {
288
+ return $this->post(
289
+ "projects/$project_id/media",
290
+ array(
291
+ 'timeout' => 30,
292
+ 'body' => array('attachment' => $base64),
293
+ )
294
+ )->get_response_body();
295
+ }
296
+
297
+ /**
298
+ * @return array
299
+ */
300
+ protected function get_headers()
301
+ {
302
+ return array(//'Authorization' => 'Bearer ' . $this->access_token->access_token()
303
+ );
304
+ }
305
+
306
+ /**
307
+ * @param $suffix
308
+ *
309
+ * @return string
310
+ */
311
+ protected function url($suffix)
312
+ {
313
+ $implode = rtrim(implode("/", array(Brizy_Config::GATEWAY_URI, 'v1', $suffix)), "/");
314
+
315
+ return $implode;
316
+ }
317
+
318
+ /**
319
+ * @param $url
320
+ * @param array $options
321
+ * @param string $method
322
+ *
323
+ * @return Brizy_Editor_Http_Response
324
+ * @throws Brizy_Editor_API_Exceptions_Exception
325
+ * @throws Brizy_Editor_Http_Exceptions_BadRequest
326
+ * @throws Brizy_Editor_Http_Exceptions_ResponseException
327
+ * @throws Brizy_Editor_Http_Exceptions_ResponseNotFound
328
+ * @throws Brizy_Editor_Http_Exceptions_ResponseUnauthorized
329
+ */
330
+ public function request($url, $options = array(), $method = 'GET')
331
+ {
332
+ return parent::request(
333
+ $this->url($url),
334
+ $options,
335
+ $method
336
+ );
337
+ }
338
+
339
+ /**
340
+ * @param $options
341
+ *
342
+ * @return array
343
+ */
344
+ protected function prepare_options($options)
345
+ {
346
+
347
+ $options = parent::prepare_options($options);
348
+
349
+ $options['headers'] = array_merge($options['headers'], $this->get_headers());
350
+
351
+ return $options;
352
+ }
353
+
354
+ protected function get_project_json(Brizy_Editor_Project $project)
355
+ {
356
+ return json_encode(
357
+ array(
358
+ 'id' => $project->getId(),
359
+ 'data' => $project->getDataAsJson(),
360
+ )
361
+ );
362
+ }
363
  }
editor/compiled-html.php CHANGED
@@ -1,22 +1,24 @@
1
- <?php if (!defined( 'ABSPATH' ) ) {
2
- die( 'Direct access forbidden.' );
3
  }
4
 
5
- class Brizy_Editor_CompiledHtml {
 
6
 
7
- /**
8
- * @var Brizy_Editor_Helper_Dom
9
- */
10
- private $dom;
11
 
12
  /**
13
  * Brizy_Editor_CompiledHtml constructor.
14
  *
15
- * @param $html
16
  */
17
- public function __construct( $html ) {
18
- $this->dom = new Brizy_Editor_Helper_Dom( $html );
19
- }
 
20
 
21
  /**
22
  * @return string
1
+ <?php if (!defined('ABSPATH')) {
2
+ die('Direct access forbidden.');
3
  }
4
 
5
+ class Brizy_Editor_CompiledHtml
6
+ {
7
 
8
+ /**
9
+ * @var Brizy_Editor_Helper_Dom
10
+ */
11
+ private $dom;
12
 
13
  /**
14
  * Brizy_Editor_CompiledHtml constructor.
15
  *
16
+ * @param $content
17
  */
18
+ public function __construct($content)
19
+ {
20
+ $this->dom = new Brizy_Editor_Helper_Dom($content);
21
+ }
22
 
23
  /**
24
  * @return string
editor/editor/editor.php CHANGED
@@ -3,10 +3,13 @@
3
  class Brizy_Editor_Editor_Editor
4
  {
5
 
6
- /**
7
- * @var self
8
- */
9
- static private $insance;
 
 
 
10
 
11
  /**
12
  * @var array
@@ -78,20 +81,16 @@ class Brizy_Editor_Editor_Editor
78
  /**
79
  * @throws Exception
80
  */
81
- public function config()
82
  {
83
 
84
- $cachePostId = $this->post ? $this->post->getWpPostId() : 0;
85
  if (isset(self::$config[$cachePostId])) {
86
  return self::$config[$cachePostId];
87
  }
88
 
89
  global $wp_registered_sidebars;
90
 
91
- $wp_post_id = null;
92
- $preview_post_link = null;
93
- $change_template_url = null;
94
-
95
  $parent_post_type = get_post_type($this->post->getWpPostId());
96
  $wp_post_id = $this->post->getWpPostId();
97
  $preview_post_link = $this->getPreviewUrl($this->post->getWpPost());
@@ -133,7 +132,9 @@ class Brizy_Editor_Editor_Editor
133
  apply_filters('brizy_upgrade_to_pro_url', Brizy_Config::UPGRADE_TO_PRO_URL),
134
 
135
  'support' =>
136
- __bt( 'support-url', apply_filters( 'brizy_support_url', Brizy_Config::SUPPORT_URL )
 
 
137
  ),
138
  'pluginSettings' => admin_url( 'admin.php?page=' . Brizy_Admin_Settings::menu_slug() ),
139
  'dashboardNavMenu' => admin_url( 'nav-menus.php' ),
@@ -147,51 +148,75 @@ class Brizy_Editor_Editor_Editor
147
  'serverTimestamp' => time(),
148
  'menuData' => $this->get_menu_data(),
149
  'wp' => array(
150
- 'pluginPrefix' => Brizy_Editor::prefix(),
151
- 'permalink' => get_permalink( $wp_post_id ),
152
- 'page' => $wp_post_id,
153
- 'post_type' => get_post_type( $wp_post_id ),
154
- 'featuredImage' => $this->getThumbnailData( $wp_post_id ),
155
- 'pageAttachments' => array( 'images' => $this->get_page_attachments() ),
156
- 'templates' => $this->post->get_templates(),
157
- 'api' => $this->getApiActions(),
158
- 'plugins' => array(
159
  'dummy' => true,
160
  'woocommerce' => self::get_woocomerce_plugin_info(),
161
  ),
162
  'hasSidebars' => count( $wp_registered_sidebars ) > 0,
163
  'l10n' => $this->getTexts(),
164
  'pageData' => apply_filters( 'brizy_page_data', array() ),
165
- 'availableRoles' => Brizy_Admin_Membership_Membership::roleList()
166
- ),
167
- 'mode' => $mode,
168
- 'applications' => array(
169
- 'form' => array(
170
- 'submitUrl' => '{{brizy_dc_ajax_url}}?action=' . Brizy_Editor::prefix(
171
- Brizy_Editor_Forms_Api::AJAX_SUBMIT_FORM
172
- ),
173
- ),
174
- ),
175
- 'server' => array(
176
- 'maxUploadSize' => $this->fileUploadMaxSize(),
177
- ),
178
- 'branding' => array('brizy' => __bt('brizy', 'Brizy')),
179
- 'prefix' => Brizy_Editor::prefix(),
180
- 'cloud' => $this->getCloudInfo(),
181
- 'editorVersion' => BRIZY_EDITOR_VERSION,
182
- );
 
 
183
 
184
  $manager = new Brizy_Editor_Accounts_ServiceAccountManager(Brizy_Editor_Project::get());
185
 
186
- $config = $this->addRecaptchaAccounts($manager, $config);
187
- $config = $this->addSocialAccounts($manager, $config);
 
 
 
188
  $config = $this->addGlobalBlocksData($config);
189
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
190
 
191
- $config = $this->addTemplateFields($config, $mode === 'template', $wp_post_id);
192
 
193
- return self::$config[$cachePostId] = apply_filters('brizy_editor_config', $config);
194
- }
195
 
196
  private function addGlobalBlocksData($config) {
197
 
@@ -535,10 +560,15 @@ class Brizy_Editor_Editor_Editor
535
  'description' => $item->post_content,
536
  'position' => $item->menu_order,
537
  'attrTitle' => $item->post_excerpt,
538
- 'current' => count( array_intersect( [
539
- 'current-menu-parent',
540
- 'current-menu-item'
541
- ], $item->classes ) ) > 0,
 
 
 
 
 
542
  'target' => get_post_meta( $item->ID, '_menu_item_target', true ),
543
  'classes' => array_values( array_filter( $item->classes ) ),
544
  'xfn' => get_post_meta( $item->ID, '_menu_item_xfn', true ),
@@ -581,13 +611,13 @@ class Brizy_Editor_Editor_Editor
581
  );
582
  }
583
 
584
- /**
585
- * @param Brizy_Editor_Accounts_ServiceAccountManager $manager
586
- * @param array $config
587
- *
588
- * @return array
589
- */
590
- private function addRecaptchaAccounts(Brizy_Editor_Accounts_ServiceAccountManager $manager, array $config)
591
  {
592
  $accounts = $manager->getAccountsByGroup(Brizy_Editor_Accounts_AbstractAccount::RECAPTCHA_GROUP);
593
 
@@ -598,13 +628,13 @@ class Brizy_Editor_Editor_Editor
598
  return $config;
599
  }
600
 
601
- /**
602
- * @param Brizy_Editor_Accounts_ServiceAccountManager $manager
603
- * @param array $config
604
- *
605
- * @return array
606
- */
607
- private function addSocialAccounts(Brizy_Editor_Accounts_ServiceAccountManager $manager, array $config)
608
  {
609
  $accounts = $manager->getAccountsByGroup(Brizy_Editor_Accounts_AbstractAccount::SOCIAL_GROUP);
610
 
@@ -617,8 +647,7 @@ class Brizy_Editor_Editor_Editor
617
  return $config;
618
  }
619
 
620
-
621
- private function fileUploadMaxSize()
622
  {
623
  static $max_size = -1;
624
 
@@ -770,8 +799,7 @@ class Brizy_Editor_Editor_Editor
770
  return (object)$brizy_public_editor_build_texts::get_editor_texts();
771
  }
772
 
773
- private function addTemplateFields($config, $is_template, $wp_post_id)
774
- {
775
 
776
  $template_rules = [];
777
  if ($is_template) {
@@ -810,6 +838,14 @@ class Brizy_Editor_Editor_Editor
810
  'values' => $rule->getEntityValues(),
811
  );
812
  }
 
 
 
 
 
 
 
 
813
  } else {
814
  $ruleMatches[] = array(
815
  'type' => Brizy_Admin_Rule::TYPE_INCLUDE,
@@ -908,16 +944,16 @@ class Brizy_Editor_Editor_Editor
908
  ];
909
  }
910
 
911
- /**
912
- * @return array
913
- */
914
- public function getApiActions()
915
- {
916
- $pref = Brizy_Editor::prefix();
917
 
918
- return array(
919
- 'hash' => wp_create_nonce(Brizy_Editor_API::nonce),
920
- 'url' => set_url_scheme(admin_url('admin-ajax.php')),
 
 
921
 
922
  'heartBeat' => $pref . Brizy_Editor_API::AJAX_HEARTBEAT,
923
  'takeOver' => $pref . Brizy_Editor_API::AJAX_TAKE_OVER,
@@ -967,34 +1003,41 @@ class Brizy_Editor_Editor_Editor
967
  'getSidebars' => $pref . Brizy_Editor_API::AJAX_SIDEBARS,
968
  'shortcodeContent' => $pref . Brizy_Editor_API::AJAX_SHORTCODE_CONTENT,
969
  'placeholderContent' => $pref . Brizy_Editor_API::AJAX_PLACEHOLDER_CONTENT,
970
- 'getMenus' => $pref . Brizy_Editor_API::AJAX_GET_MENU_LIST,
 
 
971
  'getTerms' => $pref . Brizy_Editor_API::AJAX_GET_TERMS,
 
 
972
  'getPostObjects' => $pref . Brizy_Editor_API::AJAX_GET_POST_OBJECTS, // ???
973
- 'setFeaturedImage' => $pref . Brizy_Editor_API::AJAX_SET_FEATURED_IMAGE,
974
- 'setFeaturedImageFocalPoint' => $pref . Brizy_Editor_API::AJAX_SET_IMAGE_FOCAL_PT,
975
- 'removeFeaturedImage' => $pref . Brizy_Editor_API::AJAX_REMOVE_FEATURED_IMAGE,
976
- 'getForm' => $pref . Brizy_Editor_Forms_Api::AJAX_GET_FORM,
977
- 'createForm' => $pref . Brizy_Editor_Forms_Api::AJAX_CREATE_FORM,
978
- 'updateForm' => $pref . Brizy_Editor_Forms_Api::AJAX_UPDATE_FORM,
979
- 'deleteForm' => $pref . Brizy_Editor_Forms_Api::AJAX_DELETE_FORM,
980
- 'getIntegration' => $pref . Brizy_Editor_Forms_Api::AJAX_GET_INTEGRATION,
981
- 'createIntegration' => $pref . Brizy_Editor_Forms_Api::AJAX_CREATE_INTEGRATION,
982
- 'updateIntegration' => $pref . Brizy_Editor_Forms_Api::AJAX_UPDATE_INTEGRATION,
983
- 'deleteIntegration' => $pref . Brizy_Editor_Forms_Api::AJAX_DELETE_INTEGRATION,
984
- 'createFont' => $pref . Brizy_Admin_Fonts_Api::AJAX_CREATE_FONT_ACTION,
985
- 'deleteFont' => $pref . Brizy_Admin_Fonts_Api::AJAX_DELETE_FONT_ACTION,
986
- 'getFonts' => $pref . Brizy_Admin_Fonts_Api::AJAX_GET_FONTS_ACTION,
987
- 'getAccount' => $pref . Brizy_Editor_Accounts_Api::BRIZY_GET_ACCOUNT,
988
- 'getAccounts' => $pref . Brizy_Editor_Accounts_Api::BRIZY_GET_ACCOUNTS,
989
- 'addAccount' => $pref . Brizy_Editor_Accounts_Api::BRIZY_ADD_ACCOUNT,
990
- 'updateAccount' => $pref . Brizy_Editor_Accounts_Api::BRIZY_UPDATE_ACCOUNT,
991
- 'deleteAccount' => $pref . Brizy_Editor_Accounts_Api::BRIZY_DELETE_ACCOUNT,
992
- 'validateRecaptchaAccount' => $pref . Brizy_Editor_Forms_Api::AJAX_VALIDATE_RECAPTCHA_ACCOUNT,
993
- 'rulePostsGroupList' => $pref . Brizy_Admin_Rules_Api::RULE_POSTS_GROUP_LIST,
994
- 'ruleArchiveGroupList' => $pref . Brizy_Admin_Rules_Api::RULE_ARCHIVE_GROUP_LIST,
995
- 'ruleTemplateGroupList' => $pref . Brizy_Admin_Rules_Api::RULE_TEMPLATE_GROUP_LIST,
996
- );
997
- }
 
 
 
998
 
999
  /**
1000
  * @return array
@@ -1010,7 +1053,6 @@ class Brizy_Editor_Editor_Editor
1010
  );
1011
  }
1012
 
1013
-
1014
  $response = array(
1015
  'isSyncAllowed' => true,
1016
  );
3
  class Brizy_Editor_Editor_Editor
4
  {
5
 
6
+ const COMPILE_CONTEXT = 'compile';
7
+ const EDITOR_CONTEXT = 'editor';
8
+
9
+ /**
10
+ * @var self
11
+ */
12
+ static private $insance;
13
 
14
  /**
15
  * @var array
81
  /**
82
  * @throws Exception
83
  */
84
+ public function config($context = self::COMPILE_CONTEXT)
85
  {
86
 
87
+ $cachePostId = ($this->post ? $this->post->getWpPostId() : 0).'_'.$context;
88
  if (isset(self::$config[$cachePostId])) {
89
  return self::$config[$cachePostId];
90
  }
91
 
92
  global $wp_registered_sidebars;
93
 
 
 
 
 
94
  $parent_post_type = get_post_type($this->post->getWpPostId());
95
  $wp_post_id = $this->post->getWpPostId();
96
  $preview_post_link = $this->getPreviewUrl($this->post->getWpPost());
132
  apply_filters('brizy_upgrade_to_pro_url', Brizy_Config::UPGRADE_TO_PRO_URL),
133
 
134
  'support' =>
135
+ __bt(
136
+ 'support-url',
137
+ apply_filters( 'brizy_support_url', Brizy_Config::SUPPORT_URL )
138
  ),
139
  'pluginSettings' => admin_url( 'admin.php?page=' . Brizy_Admin_Settings::menu_slug() ),
140
  'dashboardNavMenu' => admin_url( 'nav-menus.php' ),
148
  'serverTimestamp' => time(),
149
  'menuData' => $this->get_menu_data(),
150
  'wp' => array(
151
+ 'pluginPrefix' => Brizy_Editor::prefix(),
152
+ 'permalink' => get_permalink( $wp_post_id ),
153
+ 'page' => $wp_post_id,
154
+ 'postType' => get_post_type( $wp_post_id ),
155
+ 'featuredImage' => $this->getThumbnailData( $wp_post_id ),
156
+ 'pageAttachments' => array( 'images' => $this->get_page_attachments() ),
157
+ 'templates' => $this->post->get_templates(),
158
+ 'plugins' => array(
 
159
  'dummy' => true,
160
  'woocommerce' => self::get_woocomerce_plugin_info(),
161
  ),
162
  'hasSidebars' => count( $wp_registered_sidebars ) > 0,
163
  'l10n' => $this->getTexts(),
164
  'pageData' => apply_filters( 'brizy_page_data', array() ),
165
+ 'availableRoles' => Brizy_Admin_Membership_Membership::roleList(),
166
+ 'usersCanRegister' => get_option( 'users_can_register' ),
167
+ ),
168
+ 'mode' => $mode,
169
+ 'applications' => array(
170
+ 'form' => array(
171
+ 'submitUrl' => '{{brizy_dc_ajax_url}}?action=' . Brizy_Editor::prefix(
172
+ Brizy_Editor_Forms_Api::AJAX_SUBMIT_FORM
173
+ ),
174
+ ),
175
+ ),
176
+ 'server' => array(
177
+ 'maxUploadSize' => $this->fileUploadMaxSize(),
178
+ ),
179
+ 'branding' => array( 'brizy' => __bt( 'brizy', 'Brizy' ) ),
180
+ 'prefix' => Brizy_Editor::prefix(),
181
+ 'cloud' => $this->getCloudInfo(),
182
+ 'editorVersion' => BRIZY_EDITOR_VERSION,
183
+ );
184
+
185
 
186
  $manager = new Brizy_Editor_Accounts_ServiceAccountManager(Brizy_Editor_Project::get());
187
 
188
+ $config = $this->addRecaptchaAccounts( $manager, $config, $context );
189
+ $config = $this->addSocialAccounts( $manager, $config, $context );
190
+ $config = $this->addWpPostTypes( $config, $context );
191
+ $config = $this->addTemplateFields( $config, $mode === 'template', $wp_post_id, $context );
192
+ $config = $this->getApiActions($config,$context);
193
  $config = $this->addGlobalBlocksData($config);
194
 
195
+ return self::$config[ $cachePostId ] = apply_filters( 'brizy_editor_config', $config, $context );
196
+ }
197
+
198
+ /**
199
+ * @param $config
200
+ *
201
+ * @return string[]|WP_Post_Type[]
202
+ */
203
+ private function addWpPostTypes($config, $context ) {
204
+ $types = get_post_types( [ 'public' => true ] );
205
+ $result = [];
206
+ foreach ( $types as $type ) {
207
+ $typeObj = get_post_type_object( $type );
208
+ $typeDto = [
209
+ 'name'=>$typeObj->name,
210
+ 'label'=>$typeObj->label,
211
+ ];
212
+ $result[] = $typeDto;
213
+
214
+ }
215
 
216
+ $config['wp']['postTypes'] = $result;
217
 
218
+ return $config;
219
+ }
220
 
221
  private function addGlobalBlocksData($config) {
222
 
560
  'description' => $item->post_content,
561
  'position' => $item->menu_order,
562
  'attrTitle' => $item->post_excerpt,
563
+ 'current' => count(
564
+ array_intersect(
565
+ [
566
+ 'current-menu-parent',
567
+ 'current-menu-item',
568
+ ],
569
+ $item->classes
570
+ )
571
+ ) > 0,
572
  'target' => get_post_meta( $item->ID, '_menu_item_target', true ),
573
  'classes' => array_values( array_filter( $item->classes ) ),
574
  'xfn' => get_post_meta( $item->ID, '_menu_item_xfn', true ),
611
  );
612
  }
613
 
614
+ /**
615
+ * @param Brizy_Editor_Accounts_ServiceAccountManager $manager
616
+ * @param array $config
617
+ *
618
+ * @return array
619
+ */
620
+ private function addRecaptchaAccounts( Brizy_Editor_Accounts_ServiceAccountManager $manager, array $config, $context )
621
  {
622
  $accounts = $manager->getAccountsByGroup(Brizy_Editor_Accounts_AbstractAccount::RECAPTCHA_GROUP);
623
 
628
  return $config;
629
  }
630
 
631
+ /**
632
+ * @param Brizy_Editor_Accounts_ServiceAccountManager $manager
633
+ * @param array $config
634
+ *
635
+ * @return array
636
+ */
637
+ private function addSocialAccounts( Brizy_Editor_Accounts_ServiceAccountManager $manager, array $config, $context )
638
  {
639
  $accounts = $manager->getAccountsByGroup(Brizy_Editor_Accounts_AbstractAccount::SOCIAL_GROUP);
640
 
647
  return $config;
648
  }
649
 
650
+ private function fileUploadMaxSize()
 
651
  {
652
  static $max_size = -1;
653
 
799
  return (object)$brizy_public_editor_build_texts::get_editor_texts();
800
  }
801
 
802
+ private function addTemplateFields( $config, $is_template, $wp_post_id, $context ) {
 
803
 
804
  $template_rules = [];
805
  if ($is_template) {
838
  'values' => $rule->getEntityValues(),
839
  );
840
  }
841
+
842
+ $ruleMatches[] = array(
843
+ 'type' => Brizy_Admin_Rule::TYPE_INCLUDE,
844
+ 'group' => Brizy_Admin_Rule::BRIZY_TEMPLATE,
845
+ 'entityType' => $this->post->getWpPost()->post_type,
846
+ 'values' => array($wpPostId),
847
+ );
848
+
849
  } else {
850
  $ruleMatches[] = array(
851
  'type' => Brizy_Admin_Rule::TYPE_INCLUDE,
944
  ];
945
  }
946
 
947
+ /**
948
+ * @return array
949
+ */
950
+ public function getApiActions($config, $context) {
 
 
951
 
952
+ $pref = Brizy_Editor::prefix();
953
+
954
+ $config['wp']['api'] = array(
955
+ 'hash' => wp_create_nonce( Brizy_Editor_API::nonce ),
956
+ 'url' => set_url_scheme( admin_url( 'admin-ajax.php' ) ),
957
 
958
  'heartBeat' => $pref . Brizy_Editor_API::AJAX_HEARTBEAT,
959
  'takeOver' => $pref . Brizy_Editor_API::AJAX_TAKE_OVER,
1003
  'getSidebars' => $pref . Brizy_Editor_API::AJAX_SIDEBARS,
1004
  'shortcodeContent' => $pref . Brizy_Editor_API::AJAX_SHORTCODE_CONTENT,
1005
  'placeholderContent' => $pref . Brizy_Editor_API::AJAX_PLACEHOLDER_CONTENT,
1006
+ 'placeholdersContent' => $pref . Brizy_Editor_API::AJAX_PLACEHOLDERS_CONTENT,
1007
+ 'getPostTaxonomies' => $pref . Brizy_Editor_API::AJAX_GET_POST_TAXONOMIES,
1008
+ 'getMenus' => $pref . Brizy_Editor_API::AJAX_GET_MENU_LIST,
1009
  'getTerms' => $pref . Brizy_Editor_API::AJAX_GET_TERMS,
1010
+ 'getTermsBy' => $pref . Brizy_Editor_API::AJAX_GET_TERMS_BY,
1011
+ 'getUsers' => $pref . Brizy_Editor_API::AJAX_GET_USERS,
1012
  'getPostObjects' => $pref . Brizy_Editor_API::AJAX_GET_POST_OBJECTS, // ???
1013
+ 'searchPosts' => $pref . Brizy_Editor_API::AJAX_SEARCH_POST,
1014
+ 'setFeaturedImage' => $pref . Brizy_Editor_API::AJAX_SET_FEATURED_IMAGE,
1015
+ 'setFeaturedImageFocalPoint' => $pref . Brizy_Editor_API::AJAX_SET_IMAGE_FOCAL_PT,
1016
+ 'removeFeaturedImage' => $pref . Brizy_Editor_API::AJAX_REMOVE_FEATURED_IMAGE,
1017
+ 'getForm' => $pref . Brizy_Editor_Forms_Api::AJAX_GET_FORM,
1018
+ 'createForm' => $pref . Brizy_Editor_Forms_Api::AJAX_CREATE_FORM,
1019
+ 'updateForm' => $pref . Brizy_Editor_Forms_Api::AJAX_UPDATE_FORM,
1020
+ 'deleteForm' => $pref . Brizy_Editor_Forms_Api::AJAX_DELETE_FORM,
1021
+ 'getIntegration' => $pref . Brizy_Editor_Forms_Api::AJAX_GET_INTEGRATION,
1022
+ 'createIntegration' => $pref . Brizy_Editor_Forms_Api::AJAX_CREATE_INTEGRATION,
1023
+ 'updateIntegration' => $pref . Brizy_Editor_Forms_Api::AJAX_UPDATE_INTEGRATION,
1024
+ 'deleteIntegration' => $pref . Brizy_Editor_Forms_Api::AJAX_DELETE_INTEGRATION,
1025
+ 'createFont' => $pref . Brizy_Admin_Fonts_Api::AJAX_CREATE_FONT_ACTION,
1026
+ 'deleteFont' => $pref . Brizy_Admin_Fonts_Api::AJAX_DELETE_FONT_ACTION,
1027
+ 'getFonts' => $pref . Brizy_Admin_Fonts_Api::AJAX_GET_FONTS_ACTION,
1028
+ 'getAccount' => $pref . Brizy_Editor_Accounts_Api::BRIZY_GET_ACCOUNT,
1029
+ 'getAccounts' => $pref . Brizy_Editor_Accounts_Api::BRIZY_GET_ACCOUNTS,
1030
+ 'addAccount' => $pref . Brizy_Editor_Accounts_Api::BRIZY_ADD_ACCOUNT,
1031
+ 'updateAccount' => $pref . Brizy_Editor_Accounts_Api::BRIZY_UPDATE_ACCOUNT,
1032
+ 'deleteAccount' => $pref . Brizy_Editor_Accounts_Api::BRIZY_DELETE_ACCOUNT,
1033
+ 'validateRecaptchaAccount' => $pref . Brizy_Editor_Forms_Api::AJAX_VALIDATE_RECAPTCHA_ACCOUNT,
1034
+ 'rulePostsGroupList' => $pref . Brizy_Admin_Rules_Api::RULE_POSTS_GROUP_LIST,
1035
+ 'ruleArchiveGroupList' => $pref . Brizy_Admin_Rules_Api::RULE_ARCHIVE_GROUP_LIST,
1036
+ 'ruleTemplateGroupList' => $pref . Brizy_Admin_Rules_Api::RULE_TEMPLATE_GROUP_LIST,
1037
+ );
1038
+
1039
+ return $config;
1040
+ }
1041
 
1042
  /**
1043
  * @return array
1053
  );
1054
  }
1055
 
 
1056
  $response = array(
1057
  'isSyncAllowed' => true,
1058
  );
editor/post.php CHANGED
@@ -15,12 +15,23 @@ class Brizy_Editor_Post extends Brizy_Editor_Entity {
15
  const BRIZY_POST_PLUGIN_VERSION = 'brizy-post-plugin-version';
16
 
17
  static protected $instance = null;
 
18
 
19
  /**
20
  * @var string
21
  */
22
  protected $compiled_html;
23
 
 
 
 
 
 
 
 
 
 
 
24
  /**
25
  * @var string
26
  */
@@ -63,12 +74,6 @@ class Brizy_Editor_Post extends Brizy_Editor_Entity {
63
  */
64
  protected $plugin_version;
65
 
66
- /**
67
- * @var Brizy_Editor_CompiledHtml
68
- */
69
- static private $compiled_page;
70
-
71
-
72
  /**
73
  * Brizy_Editor_Post2 constructor.
74
  *
@@ -184,6 +189,8 @@ class Brizy_Editor_Post extends Brizy_Editor_Entity {
184
 
185
  return array(
186
  'compiled_html' => $this->get_encoded_compiled_html(),
 
 
187
  'compiled_html_body' => $this->get_compiled_html_body(),
188
  'compiled_html_head' => $this->get_compiled_html_head(),
189
  'editor_version' => $this->editor_version,
@@ -234,13 +241,15 @@ class Brizy_Editor_Post extends Brizy_Editor_Entity {
234
 
235
  $context = new Brizy_Content_Context( Brizy_Editor_Project::get(), null, $this->getWpPost(), null );
236
  $placeholderProvider = new Brizy_Content_PlaceholderWpProvider( $context );
237
- $extractor = new Brizy_Content_PlaceholderExtractor( $placeholderProvider );
 
 
 
238
 
239
- list( $placeholders, $content ) = $extractor->extract( $content );
 
240
 
241
- $replacer = new Brizy_Content_PlaceholderReplacer( $context, $placeholderProvider );
242
- $content = $replacer->getContent( $placeholders, $content, $context );
243
- $content = Brizy_Content_PlaceholderExtractor::stripPlaceholders( $content );
244
  $content = apply_filters( 'brizy_content', $content, Brizy_Editor_Project::get(), $this->getWpPost() );
245
 
246
  $wpdb->update(
@@ -283,17 +292,49 @@ class Brizy_Editor_Post extends Brizy_Editor_Entity {
283
  public function compile_page() {
284
 
285
  Brizy_Logger::instance()->notice( 'Compile page', array( $this ) );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
286
 
287
- $compiled_html = Brizy_Editor_User::get()->compile_page( Brizy_Editor_Project::get(), $this );
288
- $compiled_html = Brizy_SiteUrlReplacer::hideSiteUrl( $compiled_html );
289
-
290
- $this->set_compiled_html( $compiled_html );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
291
 
 
292
  $this->set_compiled_html_head( null );
293
  $this->set_compiled_html_body( null );
294
-
295
  $this->set_needs_compile( false );
296
  $this->set_compiler_version( BRIZY_EDITOR_VERSION );
 
 
297
 
298
  return true;
299
  }
@@ -317,6 +358,43 @@ class Brizy_Editor_Post extends Brizy_Editor_Entity {
317
  return $this;
318
  }
319
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
320
  /**
321
  * @param $compiled_html
322
  *
@@ -595,9 +673,16 @@ class Brizy_Editor_Post extends Brizy_Editor_Entity {
595
  $this->set_needs_compile( true );
596
  $this->save();
597
  } else if ( is_array( $storage_post ) ) {
 
598
  if ( isset( $storage_post['compiled_html'] ) ) {
599
  $this->set_encoded_compiled_html( $storage_post['compiled_html'] );
600
  }
 
 
 
 
 
 
601
 
602
  $data_needs_compile = isset( $storage_post['needs_compile'] ) ? $storage_post['needs_compile'] : true;
603
  $this->set_editor_data( $storage_post['editor_data'] );
15
  const BRIZY_POST_PLUGIN_VERSION = 'brizy-post-plugin-version';
16
 
17
  static protected $instance = null;
18
+ static protected $compiled_page = [];
19
 
20
  /**
21
  * @var string
22
  */
23
  protected $compiled_html;
24
 
25
+ /**
26
+ * @var array
27
+ */
28
+ protected $compiled_scripts;
29
+
30
+ /**
31
+ * @var array
32
+ */
33
+ protected $compiled_styles;
34
+
35
  /**
36
  * @var string
37
  */
74
  */
75
  protected $plugin_version;
76
 
 
 
 
 
 
 
77
  /**
78
  * Brizy_Editor_Post2 constructor.
79
  *
189
 
190
  return array(
191
  'compiled_html' => $this->get_encoded_compiled_html(),
192
+ 'compiled_scripts' => $this->getCompiledScripts(),
193
+ 'compiled_styles' => $this->getCompiledStyles(),
194
  'compiled_html_body' => $this->get_compiled_html_body(),
195
  'compiled_html_head' => $this->get_compiled_html_head(),
196
  'editor_version' => $this->editor_version,
241
 
242
  $context = new Brizy_Content_Context( Brizy_Editor_Project::get(), null, $this->getWpPost(), null );
243
  $placeholderProvider = new Brizy_Content_PlaceholderWpProvider( $context );
244
+ $context->setProvider( $placeholderProvider );
245
+ $extractor = new \BrizyPlaceholders\Extractor( $placeholderProvider );
246
+
247
+ list( $placeholders, $placeholderInstances, $content ) = $extractor->extract( $content );
248
 
249
+ $replacer = new \BrizyPlaceholders\Replacer( $placeholderProvider );
250
+ $content = $replacer->replaceWithExtractedData( $placeholders, $placeholderInstances, $content ,$context);
251
 
252
+ $content = $extractor->stripPlaceholders( $content );
 
 
253
  $content = apply_filters( 'brizy_content', $content, Brizy_Editor_Project::get(), $this->getWpPost() );
254
 
255
  $wpdb->update(
292
  public function compile_page() {
293
 
294
  Brizy_Logger::instance()->notice( 'Compile page', array( $this ) );
295
+ $compiledData = Brizy_Editor_User::get()->compile_page( Brizy_Editor_Project::get(), $this );
296
+ $compiledData['pageHtml'] = Brizy_SiteUrlReplacer::hideSiteUrl( $compiledData['pageHtml'] );
297
+
298
+ foreach ( $compiledData['pageScripts'] as $i => $set ) { //pro || free
299
+ foreach ( $set as $k => $scripts ) { // groups
300
+ if ( $k == 'libsSelectors' ) {
301
+ continue;
302
+ }
303
+ if ( $k == 'main' ) {
304
+ $compiledData['pageScripts'][ $i ][ $k ]['content'] = Brizy_SiteUrlReplacer::hideSiteUrl( $compiledData['pageScripts'][ $i ][ $k ]['content'] );
305
+ continue;
306
+ }
307
+
308
+ foreach ( $scripts as $l => $script ) {
309
+ $compiledData['pageScripts'][ $i ][ $k ][ $l ]['content'] = Brizy_SiteUrlReplacer::hideSiteUrl( $script['content'] );
310
+ }
311
 
312
+ }
313
+ }
314
+ foreach ( $compiledData['pageStyles'] as $i => $set ) {
315
+ foreach ( $set as $k => $styles ) {
316
+ if ( $k == 'libsSelectors' ) {
317
+ continue;
318
+ }
319
+ if ( $k == 'main' ) {
320
+ $compiledData['pageStyles'][ $i ][ $k ]['content'] = Brizy_SiteUrlReplacer::hideSiteUrl( $compiledData['pageStyles'][ $i ][ $k ]['content'] );
321
+ continue;
322
+ }
323
+ foreach ( $styles as $l => $style ) {
324
+ $compiledData['pageStyles'][ $i ][ $k ][ $l ]['content'] = Brizy_SiteUrlReplacer::hideSiteUrl(
325
+ $style['content']
326
+ );
327
+ }
328
+ }
329
+ }
330
 
331
+ $this->set_compiled_html( $compiledData['pageHtml'] );
332
  $this->set_compiled_html_head( null );
333
  $this->set_compiled_html_body( null );
 
334
  $this->set_needs_compile( false );
335
  $this->set_compiler_version( BRIZY_EDITOR_VERSION );
336
+ $this->setCompiledScripts( $compiledData['pageScripts'] );
337
+ $this->setCompiledStyles( $compiledData['pageStyles'] );
338
 
339
  return true;
340
  }
358
  return $this;
359
  }
360
 
361
+ /**
362
+ * @return array
363
+ */
364
+ public function getCompiledScripts() {
365
+ return $this->compiled_scripts;
366
+ }
367
+
368
+ /**
369
+ * @param array $compiled_scripts
370
+ *
371
+ * @return Brizy_Editor_Post
372
+ */
373
+ public function setCompiledScripts( $compiled_scripts ) {
374
+ $this->compiled_scripts = $compiled_scripts;
375
+
376
+ return $this;
377
+ }
378
+
379
+ /**
380
+ * @return array
381
+ */
382
+ public function getCompiledStyles() {
383
+ return $this->compiled_styles;
384
+ }
385
+
386
+ /**
387
+ * @param array $compiled_styles
388
+ *
389
+ * @return Brizy_Editor_Post
390
+ */
391
+ public function setCompiledStyles( $compiled_styles ) {
392
+ $this->compiled_styles = $compiled_styles;
393
+
394
+ return $this;
395
+ }
396
+
397
+
398
  /**
399
  * @param $compiled_html
400
  *
673
  $this->set_needs_compile( true );
674
  $this->save();
675
  } else if ( is_array( $storage_post ) ) {
676
+
677
  if ( isset( $storage_post['compiled_html'] ) ) {
678
  $this->set_encoded_compiled_html( $storage_post['compiled_html'] );
679
  }
680
+ if ( isset( $storage_post['compiled_scripts'] ) ) {
681
+ $this->setCompiledScripts( $storage_post['compiled_scripts'] );
682
+ }
683
+ if ( isset( $storage_post['compiled_styles'] ) ) {
684
+ $this->setCompiledStyles( $storage_post['compiled_styles'] );
685
+ }
686
 
687
  $data_needs_compile = isset( $storage_post['needs_compile'] ) ? $storage_post['needs_compile'] : true;
688
  $this->set_editor_data( $storage_post['editor_data'] );
editor/user.php CHANGED
@@ -116,14 +116,10 @@ class Brizy_Editor_User {
116
 
117
  $editor_data = $post->get_editor_data();
118
 
119
- $config = Brizy_Editor_Editor_Editor::get( $project, $post )->config();
120
  $urlBuilder = new Brizy_Editor_UrlBuilder( $project, $post->getWpPostId() );
121
 
122
-
123
- $page_html = $this->get_client()->compile_page( $project, $editor_data, $config, $urlBuilder->compiler_url() );
124
-
125
- return $page_html;
126
-
127
  }
128
 
129
  public static function is_administrator() {
116
 
117
  $editor_data = $post->get_editor_data();
118
 
119
+ $config = Brizy_Editor_Editor_Editor::get( $project, $post )->config(Brizy_Editor_Editor_Editor::COMPILE_CONTEXT);
120
  $urlBuilder = new Brizy_Editor_UrlBuilder( $project, $post->getWpPostId() );
121
 
122
+ return $this->get_client()->compile_page( $project, $editor_data, $config, $urlBuilder->compiler_url() );
 
 
 
 
123
  }
124
 
125
  public static function is_administrator() {
public/editor-build/190-wp/editor/css/preview.css DELETED
@@ -1,21618 +0,0 @@
1
- .brz-ow-hidden {
2
- overflow: hidden !important; }
3
-
4
- .brz-ow-visible {
5
- overflow: visible !important; }
6
-
7
- /* Magnific Popup CSS */
8
- .mfp-bg {
9
- top: 0;
10
- left: 0;
11
- width: 100%;
12
- height: 100%;
13
- z-index: 1042;
14
- overflow: hidden;
15
- position: fixed;
16
- background: #0b0b0b;
17
- opacity: 0.8; }
18
-
19
- .mfp-wrap {
20
- top: 0;
21
- left: 0;
22
- width: 100%;
23
- height: 100%;
24
- z-index: 1043;
25
- position: fixed;
26
- outline: none !important;
27
- -webkit-backface-visibility: hidden; }
28
-
29
- .mfp-container {
30
- text-align: center;
31
- position: absolute;
32
- width: 100%;
33
- height: 100%;
34
- left: 0;
35
- top: 0;
36
- padding: 0 8px;
37
- -webkit-box-sizing: border-box;
38
- box-sizing: border-box; }
39
-
40
- .mfp-container:before {
41
- content: '';
42
- display: inline-block;
43
- height: 100%;
44
- vertical-align: middle; }
45
-
46
- .mfp-align-top .mfp-container:before {
47
- display: none; }
48
-
49
- .mfp-content {
50
- position: relative;
51
- display: inline-block;
52
- vertical-align: middle;
53
- margin: 0 auto;
54
- text-align: left;
55
- z-index: 1045; }
56
-
57
- .mfp-inline-holder .mfp-content,
58
- .mfp-ajax-holder .mfp-content {
59
- width: 100%;
60
- cursor: auto; }
61
-
62
- .mfp-ajax-cur {
63
- cursor: progress; }
64
-
65
- .mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
66
- cursor: -webkit-zoom-out;
67
- cursor: zoom-out; }
68
-
69
- .mfp-zoom {
70
- cursor: pointer;
71
- cursor: -webkit-zoom-in;
72
- cursor: zoom-in; }
73
-
74
- .mfp-auto-cursor .mfp-content {
75
- cursor: auto; }
76
-
77
- .mfp-close,
78
- .mfp-arrow,
79
- .mfp-preloader,
80
- .mfp-counter {
81
- -webkit-user-select: none;
82
- -moz-user-select: none;
83
- -ms-user-select: none;
84
- user-select: none; }
85
-
86
- .mfp-loading.mfp-figure {
87
- display: none; }
88
-
89
- .mfp-hide {
90
- display: none !important; }
91
-
92
- .mfp-preloader {
93
- color: #CCC;
94
- position: absolute;
95
- top: 50%;
96
- width: auto;
97
- text-align: center;
98
- margin-top: -0.8em;
99
- left: 8px;
100
- right: 8px;
101
- z-index: 1044; }
102
-
103
- .mfp-preloader a {
104
- color: #CCC; }
105
-
106
- .mfp-preloader a:hover {
107
- color: #FFF; }
108
-
109
- .mfp-s-ready .mfp-preloader {
110
- display: none; }
111
-
112
- .mfp-s-error .mfp-content {
113
- display: none; }
114
-
115
- button.mfp-close,
116
- button.mfp-arrow {
117
- overflow: visible;
118
- cursor: pointer;
119
- background: transparent;
120
- border: 0;
121
- -webkit-appearance: none;
122
- display: block;
123
- outline: none;
124
- padding: 0;
125
- z-index: 1046;
126
- -webkit-box-shadow: none;
127
- box-shadow: none;
128
- -ms-touch-action: manipulation;
129
- touch-action: manipulation; }
130
-
131
- button::-moz-focus-inner {
132
- padding: 0;
133
- border: 0; }
134
-
135
- .mfp-close {
136
- width: 44px;
137
- height: 44px;
138
- line-height: 44px;
139
- position: absolute;
140
- right: 0;
141
- top: 0;
142
- text-decoration: none;
143
- text-align: center;
144
- opacity: 0.65;
145
- padding: 0 0 18px 10px;
146
- color: #FFF;
147
- font-style: normal;
148
- font-size: 28px;
149
- font-family: Arial, Baskerville, monospace; }
150
-
151
- .mfp-close:hover,
152
- .mfp-close:focus {
153
- opacity: 1; }
154
-
155
- .mfp-close:active {
156
- top: 1px; }
157
-
158
- .mfp-close-btn-in .mfp-close {
159
- color: #333; }
160
-
161
- .mfp-image-holder .mfp-close,
162
- .mfp-iframe-holder .mfp-close {
163
- color: #FFF;
164
- right: -6px;
165
- text-align: right;
166
- padding-right: 6px;
167
- width: 100%; }
168
-
169
- .mfp-counter {
170
- position: absolute;
171
- top: 0;
172
- right: 0;
173
- color: #CCC;
174
- font-size: 12px;
175
- line-height: 18px;
176
- white-space: nowrap; }
177
-
178
- .mfp-arrow {
179
- position: absolute;
180
- opacity: 0.65;
181
- margin: 0;
182
- top: 50%;
183
- margin-top: -55px;
184
- padding: 0;
185
- width: 90px;
186
- height: 110px;
187
- -webkit-tap-highlight-color: transparent; }
188
-
189
- .mfp-arrow:active {
190
- margin-top: -54px; }
191
-
192
- .mfp-arrow:hover,
193
- .mfp-arrow:focus {
194
- opacity: 1; }
195
-
196
- .mfp-arrow:before,
197
- .mfp-arrow:after {
198
- content: '';
199
- display: block;
200
- width: 0;
201
- height: 0;
202
- position: absolute;
203
- left: 0;
204
- top: 0;
205
- margin-top: 35px;
206
- margin-left: 35px;
207
- border: medium inset transparent; }
208
-
209
- .mfp-arrow:after {
210
- border-top-width: 13px;
211
- border-bottom-width: 13px;
212
- top: 8px; }
213
-
214
- .mfp-arrow:before {
215
- border-top-width: 21px;
216
- border-bottom-width: 21px;
217
- opacity: 0.7; }
218
-
219
- .mfp-arrow-left {
220
- left: 0; }
221
-
222
- .mfp-arrow-left:after {
223
- border-right: 17px solid #FFF;
224
- margin-left: 31px; }
225
-
226
- .mfp-arrow-left:before {
227
- margin-left: 25px;
228
- border-right: 27px solid #3F3F3F; }
229
-
230
- .mfp-arrow-right {
231
- right: 0; }
232
-
233
- .mfp-arrow-right:after {
234
- border-left: 17px solid #FFF;
235
- margin-left: 39px; }
236
-
237
- .mfp-arrow-right:before {
238
- border-left: 27px solid #3F3F3F; }
239
-
240
- .mfp-iframe-holder {
241
- padding-top: 40px;
242
- padding-bottom: 40px; }
243
-
244
- .mfp-iframe-holder .mfp-content {
245
- line-height: 0;
246
- width: 100%;
247
- max-width: 900px; }
248
-
249
- .mfp-iframe-holder .mfp-close {
250
- top: -40px; }
251
-
252
- .mfp-iframe-scaler {
253
- width: 100%;
254
- height: 0;
255
- overflow: hidden;
256
- padding-top: 56.25%; }
257
-
258
- .mfp-iframe-scaler iframe {
259
- position: absolute;
260
- display: block;
261
- top: 0;
262
- left: 0;
263
- width: 100%;
264
- height: 100%;
265
- -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
266
- box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
267
- background: #000; }
268
-
269
- /* Main image in popup */
270
- img.mfp-img {
271
- width: auto;
272
- max-width: 100%;
273
- height: auto;
274
- display: block;
275
- line-height: 0;
276
- -webkit-box-sizing: border-box;
277
- box-sizing: border-box;
278
- padding: 40px 0 40px;
279
- margin: 0 auto; }
280
-
281
- /* The shadow behind the image */
282
- .mfp-figure {
283
- line-height: 0; }
284
-
285
- .mfp-figure:after {
286
- content: '';
287
- position: absolute;
288
- left: 0;
289
- top: 40px;
290
- bottom: 40px;
291
- display: block;
292
- right: 0;
293
- width: auto;
294
- height: auto;
295
- z-index: -1;
296
- -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
297
- box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
298
- background: #444; }
299
-
300
- .mfp-figure small {
301
- color: #BDBDBD;
302
- display: block;
303
- font-size: 12px;
304
- line-height: 14px; }
305
-
306
- .mfp-figure figure {
307
- margin: 0; }
308
-
309
- .mfp-bottom-bar {
310
- margin-top: -36px;
311
- position: absolute;
312
- top: 100%;
313
- left: 0;
314
- width: 100%;
315
- cursor: auto; }
316
-
317
- .mfp-title {
318
- text-align: left;
319
- line-height: 18px;
320
- color: #F3F3F3;
321
- word-wrap: break-word;
322
- padding-right: 36px; }
323
-
324
- .mfp-image-holder .mfp-content {
325
- max-width: 100%; }
326
-
327
- .mfp-gallery .mfp-image-holder .mfp-figure {
328
- cursor: pointer; }
329
-
330
- @media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
331
- /**
332
- * Remove all paddings around the image on small screen
333
- */
334
- .mfp-img-mobile .mfp-image-holder {
335
- padding-left: 0;
336
- padding-right: 0; }
337
- .mfp-img-mobile img.mfp-img {
338
- padding: 0; }
339
- .mfp-img-mobile .mfp-figure:after {
340
- top: 0;
341
- bottom: 0; }
342
- .mfp-img-mobile .mfp-figure small {
343
- display: inline;
344
- margin-left: 5px; }
345
- .mfp-img-mobile .mfp-bottom-bar {
346
- background: rgba(0, 0, 0, 0.6);
347
- bottom: 0;
348
- margin: 0;
349
- top: auto;
350
- padding: 3px 5px;
351
- position: fixed;
352
- -webkit-box-sizing: border-box;
353
- box-sizing: border-box; }
354
- .mfp-img-mobile .mfp-bottom-bar:empty {
355
- padding: 0; }
356
- .mfp-img-mobile .mfp-counter {
357
- right: 5px;
358
- top: 3px; }
359
- .mfp-img-mobile .mfp-close {
360
- top: 0;
361
- right: 0;
362
- width: 35px;
363
- height: 35px;
364
- line-height: 35px;
365
- background: rgba(0, 0, 0, 0.6);
366
- position: fixed;
367
- text-align: center;
368
- padding: 0; } }
369
-
370
- @media all and (max-width: 900px) {
371
- .mfp-arrow {
372
- -webkit-transform: scale(0.75);
373
- transform: scale(0.75); }
374
- .mfp-arrow-left {
375
- -webkit-transform-origin: 0;
376
- transform-origin: 0; }
377
- .mfp-arrow-right {
378
- -webkit-transform-origin: 100%;
379
- transform-origin: 100%; }
380
- .mfp-container {
381
- padding-left: 6px;
382
- padding-right: 6px; } }
383
-
384
- .brz {
385
- /*!
386
- * animate.css -https://daneden.github.io/animate.css/
387
- * Version - 3.7.2
388
- * Licensed under the MIT license - http://opensource.org/licenses/MIT
389
- *
390
- * Copyright (c) 2019 Daniel Eden
391
- */
392
- /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
393
- /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
394
- /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
395
- /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
396
- /*
397
- /*rtl:begin:ignore*/
398
- /*
399
- /*rtl:end:ignore*/
400
- /*
401
- /*rtl:begin:ignore*/
402
- /*
403
- /*rtl:end:ignore*/
404
- /*
405
- * Container style
406
- */
407
- /*
408
- * Scrollbar rail styles
409
- */
410
- /*
411
- * Scrollbar thumb styles
412
- */
413
- /* MS supports */
414
- /*!
415
- * animate.css -https://daneden.github.io/animate.css/
416
- * Version - 3.7.2
417
- * Licensed under the MIT license - http://opensource.org/licenses/MIT
418
- *
419
- * Copyright (c) 2019 Daniel Eden
420
- */
421
- /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
422
- /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
423
- /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
424
- /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ }
425
- html {
426
- -webkit-box-sizing: border-box;
427
- box-sizing: border-box;
428
- scroll-behavior: auto; }
429
- *,
430
- *:before,
431
- *:after {
432
- -webkit-box-sizing: border-box;
433
- box-sizing: border-box; }
434
-
435
- @-ms-viewport {
436
- width: device-width; }
437
- .brz .brz-figcaption,
438
- .brz .brz-figure,
439
- .brz .brz-section {
440
- display: block; }
441
- body {
442
- margin: 0; }
443
- body.brz-ed {
444
- background-color: #f3f3f3; }
445
- body.brz::before, body.brz::after {
446
- display: none; }
447
- .brz-iframe {
448
- margin: 0;
449
- padding: 0;
450
- border: 0;
451
- font: inherit;
452
- font-size: 100%;
453
- vertical-align: baseline; }
454
- .brz {
455
- -webkit-font-smoothing: antialiased;
456
- -moz-osx-font-smoothing: grayscale; }
457
- .brz .brz-root__container.brz-reset-all {
458
- display: block;
459
- overflow: hidden;
460
- font-family: inherit; }
461
- .brz .brz-hr {
462
- -webkit-box-sizing: content-box;
463
- box-sizing: content-box;
464
- height: 0;
465
- overflow: visible;
466
- margin: 0; }
467
- .brz .brz-h1,
468
- .brz .brz-h2,
469
- .brz .brz-h3,
470
- .brz .brz-h4,
471
- .brz .brz-h5,
472
- .brz .brz-h6 {
473
- margin-top: 0;
474
- margin-bottom: 0;
475
- padding: 0; }
476
- .brz .brz-p {
477
- margin-top: 0;
478
- margin-bottom: 0;
479
- padding-top: 0;
480
- padding-bottom: 0; }
481
- .brz .brz-span {
482
- float: none;
483
- margin: 0;
484
- padding: 0;
485
- font-family: inherit;
486
- font-size: inherit;
487
- font-weight: inherit;
488
- line-height: inherit;
489
- letter-spacing: inherit;
490
- color: inherit; }
491
- .brz .brz-ol,
492
- .brz .brz-ul,
493
- .brz .brz-dl {
494
- margin: 0;
495
- list-style: none;
496
- padding: 0; }
497
- .brz .brz-ol .brz-ol,
498
- .brz .brz-ul .brz-ul,
499
- .brz .brz-ol .brz-ul,
500
- .brz .brz-ul .brz-ol {
501
- margin: 0; }
502
- .brz .brz-dt {
503
- font-weight: bold; }
504
- .brz .brz-dd {
505
- margin-bottom: 0.5rem;
506
- margin-left: 0; }
507
- .brz .brz-blockquote {
508
- margin: 0 0 1rem; }
509
- .brz .brz-dfn {
510
- font-style: italic; }
511
- .brz .brz-b,
512
- .brz .brz-strong {
513
- font-weight: 700; }
514
- .brz .brz-a:not(.brz-btn) {
515
- color: #3dbfe8;
516
- text-decoration: none;
517
- background-color: transparent;
518
- -webkit-text-decoration-skip: objects;
519
- -webkit-box-shadow: none;
520
- box-shadow: none; }
521
- .brz .brz-a:not(.brz-btn)[href]:hover {
522
- color: #1aabd8;
523
- -webkit-box-shadow: none;
524
- box-shadow: none;
525
- cursor: pointer; }
526
- .brz .brz-a:not(.brz-btn):focus, .brz .brz-a:not(.brz-btn):active, .brz .brz-a:not(.brz-btn):hover {
527
- outline: none; }
528
- .brz .brz-a.brz-btn[href] {
529
- text-decoration: none; }
530
- .brz .brz-figure {
531
- margin: 0;
532
- min-width: auto;
533
- min-height: auto; }
534
- .brz .brz-img {
535
- vertical-align: middle;
536
- border-style: none; }
537
- .brz svg:not(:root) {
538
- overflow: hidden; }
539
- .brz .brz-button,
540
- .brz .brz-input,
541
- .brz .brz-label,
542
- .brz .brz-textarea {
543
- -ms-touch-action: manipulation;
544
- touch-action: manipulation; }
545
- .brz .brz-table {
546
- border-collapse: collapse; }
547
- .brz .brz-caption {
548
- padding-top: 0.75rem;
549
- padding-bottom: 0.75rem;
550
- color: #828b92;
551
- text-align: left;
552
- caption-side: bottom; }
553
- .brz .brz-th {
554
- text-align: left; }
555
- .brz .brz-form {
556
- margin: 0; }
557
- .brz .brz-label {
558
- display: inline-block;
559
- margin-bottom: 0;
560
- font-weight: normal; }
561
- .brz .brz-button:focus {
562
- outline: 1px dotted;
563
- outline: 5px auto -webkit-focus-ring-color; }
564
- .brz .brz-input,
565
- .brz .brz-button,
566
- .brz .brz-select,
567
- .brz .brz-optgroup,
568
- .brz .brz-textarea {
569
- padding: 0;
570
- margin: 0;
571
- font-family: inherit;
572
- font-size: inherit;
573
- line-height: inherit;
574
- height: initial;
575
- min-height: initial; }
576
- .brz .brz-button,
577
- .brz .brz-input {
578
- overflow: visible; }
579
- .brz .brz-button,
580
- .brz .brz-select {
581
- text-transform: none; }
582
- .brz .brz-button {
583
- -webkit-appearance: button; }
584
- .brz .brz-button::-moz-focus-inner {
585
- padding: 0;
586
- border-style: none; }
587
- .brz .brz-input[type="radio"],
588
- .brz .brz-input[type="checkbox"] {
589
- -webkit-box-sizing: border-box;
590
- box-sizing: border-box;
591
- padding: 0; }
592
- .brz .brz-input[type="number"] {
593
- -moz-appearance: textfield; }
594
- .brz .brz-input[type="date"],
595
- .brz .brz-input[type="time"],
596
- .brz .brz-input[type="datetime-local"],
597
- .brz .brz-input[type="month"] {
598
- -webkit-appearance: listbox; }
599
- .brz .brz-textarea {
600
- overflow: auto;
601
- resize: vertical; }
602
- .brz .brz-fieldset {
603
- min-width: 0;
604
- padding: 0;
605
- margin: 0;
606
- border: 0; }
607
- .brz .brz-iframe,
608
- .brz .brz-object {
609
- margin-bottom: 0;
610
- max-width: 100%; }
611
- .brz .brz-iframe {
612
- margin: 0;
613
- padding: 0;
614
- border: 0;
615
- font: inherit;
616
- font-size: 100%;
617
- vertical-align: baseline; }
618
- .brz [hidden] {
619
- display: none !important; }
620
- .brz .brz-reset-all {
621
- -ms-flex-line-pack: stretch;
622
- align-content: stretch;
623
- -webkit-box-align: stretch;
624
- -ms-flex-align: stretch;
625
- align-items: stretch;
626
- -ms-flex-item-align: auto;
627
- align-self: auto;
628
- -webkit-animation-delay: 0s;
629
- animation-delay: 0s;
630
- -webkit-animation-direction: normal;
631
- animation-direction: normal;
632
- -webkit-animation-duration: 0s;
633
- animation-duration: 0s;
634
- -webkit-animation-fill-mode: none;
635
- animation-fill-mode: none;
636
- -webkit-animation-iteration-count: 1;
637
- animation-iteration-count: 1;
638
- -webkit-animation-name: none;
639
- animation-name: none;
640
- -webkit-animation-play-state: running;
641
- animation-play-state: running;
642
- -webkit-animation-timing-function: ease;
643
- animation-timing-function: ease;
644
- azimuth: center;
645
- -webkit-backface-visibility: visible;
646
- backface-visibility: visible;
647
- background-attachment: scroll;
648
- background-blend-mode: normal;
649
- background-clip: border-box;
650
- background-color: transparent;
651
- background-image: none;
652
- background-origin: padding-box;
653
- background-position: 0% 0%;
654
- background-repeat: repeat;
655
- background-size: auto auto;
656
- block-size: auto;
657
- border-block-end-color: currentcolor;
658
- border-block-end-style: none;
659
- border-block-end-width: medium;
660
- border-block-start-color: currentcolor;
661
- border-block-start-style: none;
662
- border-block-start-width: medium;
663
- border-bottom-color: currentcolor;
664
- border-bottom-left-radius: 0;
665
- border-bottom-right-radius: 0;
666
- border-bottom-style: none;
667
- border-bottom-width: medium;
668
- border-collapse: separate;
669
- border-image-outset: 0s;
670
- border-image-repeat: stretch;
671
- border-image-slice: 100%;
672
- border-image-source: none;
673
- border-image-width: 1;
674
- border-inline-end-color: currentcolor;
675
- border-inline-end-style: none;
676
- border-inline-end-width: medium;
677
- border-inline-start-color: currentcolor;
678
- border-inline-start-style: none;
679
- border-inline-start-width: medium;
680
- border-left-color: currentcolor;
681
- border-left-style: none;
682
- border-left-width: medium;
683
- border-right-color: currentcolor;
684
- border-right-style: none;
685
- border-right-width: medium;
686
- border-spacing: 0;
687
- border-top-color: currentcolor;
688
- border-top-left-radius: 0;
689
- border-top-right-radius: 0;
690
- border-top-style: none;
691
- border-top-width: medium;
692
- bottom: auto;
693
- -webkit-box-decoration-break: slice;
694
- box-decoration-break: slice;
695
- -webkit-box-shadow: none;
696
- box-shadow: none;
697
- -webkit-box-sizing: content-box;
698
- box-sizing: content-box;
699
- -webkit-column-break-after: auto;
700
- break-after: auto;
701
- -webkit-column-break-before: auto;
702
- break-before: auto;
703
- -webkit-column-break-inside: auto;
704
- break-inside: auto;
705
- caption-side: top;
706
- caret-color: auto;
707
- clear: none;
708
- clip: auto;
709
- -webkit-clip-path: none;
710
- clip-path: none;
711
- color: initial;
712
- -webkit-column-count: auto;
713
- -moz-column-count: auto;
714
- column-count: auto;
715
- -webkit-column-fill: balance;
716
- -moz-column-fill: balance;
717
- column-fill: balance;
718
- -webkit-column-gap: normal;
719
- -moz-column-gap: normal;
720
- column-gap: normal;
721
- -webkit-column-rule-color: currentcolor;
722
- -moz-column-rule-color: currentcolor;
723
- column-rule-color: currentcolor;
724
- -webkit-column-rule-style: none;
725
- -moz-column-rule-style: none;
726
- column-rule-style: none;
727
- -webkit-column-rule-width: medium;
728
- -moz-column-rule-width: medium;
729
- column-rule-width: medium;
730
- -webkit-column-span: none;
731
- -moz-column-span: none;
732
- column-span: none;
733
- -webkit-column-width: auto;
734
- -moz-column-width: auto;
735
- column-width: auto;
736
- content: normal;
737
- counter-increment: none;
738
- counter-reset: none;
739
- cursor: auto;
740
- display: inline;
741
- empty-cells: show;
742
- -webkit-filter: none;
743
- filter: none;
744
- -ms-flex-preferred-size: auto;
745
- flex-basis: auto;
746
- -webkit-box-orient: horizontal;
747
- -webkit-box-direction: normal;
748
- -ms-flex-direction: row;
749
- flex-direction: row;
750
- -webkit-box-flex: 0;
751
- -ms-flex-positive: 0;
752
- flex-grow: 0;
753
- -ms-flex-negative: 1;
754
- flex-shrink: 1;
755
- -ms-flex-wrap: nowrap;
756
- flex-wrap: nowrap;
757
- float: none;
758
- font-family: initial;
759
- -webkit-font-feature-settings: normal;
760
- font-feature-settings: normal;
761
- -webkit-font-kerning: auto;
762
- font-kerning: auto;
763
- -webkit-font-language-override: normal;
764
- font-language-override: normal;
765
- font-size: medium;
766
- font-size-adjust: none;
767
- font-stretch: normal;
768
- font-style: normal;
769
- font-synthesis: weight style;
770
- font-variant: normal;
771
- font-variant-alternates: normal;
772
- font-variant-caps: normal;
773
- font-variant-east-asian: normal;
774
- -webkit-font-variant-ligatures: normal;
775
- font-variant-ligatures: normal;
776
- font-variant-numeric: normal;
777
- font-variant-position: normal;
778
- font-weight: normal;
779
- grid-auto-columns: auto;
780
- grid-auto-flow: row;
781
- grid-auto-rows: auto;
782
- grid-column-end: auto;
783
- grid-column-gap: 0;
784
- grid-column-start: auto;
785
- grid-row-end: auto;
786
- grid-row-gap: 0;
787
- grid-row-start: auto;
788
- grid-template-areas: none;
789
- grid-template-columns: none;
790
- grid-template-rows: none;
791
- height: auto;
792
- -webkit-hyphens: manual;
793
- -ms-hyphens: manual;
794
- hyphens: manual;
795
- image-orientation: 0deg;
796
- image-rendering: auto;
797
- image-resolution: 1dppx;
798
- ime-mode: auto;
799
- inline-size: auto;
800
- isolation: auto;
801
- -webkit-box-pack: start;
802
- -ms-flex-pack: start;
803
- justify-content: flex-start;
804
- left: auto;
805
- letter-spacing: normal;
806
- line-break: auto;
807
- line-height: normal;
808
- list-style-image: none;
809
- list-style-position: outside;
810
- list-style-type: disc;
811
- -webkit-margin-after: 0;
812
- margin-block-end: 0;
813
- -webkit-margin-before: 0;
814
- margin-block-start: 0;
815
- margin-bottom: 0;
816
- -webkit-margin-end: 0;
817
- margin-inline-end: 0;
818
- -webkit-margin-start: 0;
819
- margin-inline-start: 0;
820
- margin-left: 0;
821
- margin-right: 0;
822
- margin-top: 0;
823
- -webkit-mask-clip: border-box;
824
- mask-clip: border-box;
825
- -webkit-mask-composite: add;
826
- mask-composite: add;
827
- -webkit-mask-image: none;
828
- mask-image: none;
829
- mask-mode: match-source;
830
- -webkit-mask-origin: border-box;
831
- mask-origin: border-box;
832
- -webkit-mask-position: 0% 0%;
833
- mask-position: 0% 0%;
834
- -webkit-mask-repeat: repeat;
835
- mask-repeat: repeat;
836
- -webkit-mask-size: auto;
837
- mask-size: auto;
838
- mask-type: luminance;
839
- max-height: none;
840
- max-width: none;
841
- min-block-size: 0;
842
- min-height: 0;
843
- min-inline-size: 0;
844
- min-width: 0;
845
- mix-blend-mode: normal;
846
- -o-object-fit: fill;
847
- object-fit: fill;
848
- -o-object-position: 50% 50%;
849
- object-position: 50% 50%;
850
- offset-block-end: auto;
851
- offset-block-start: auto;
852
- offset-inline-end: auto;
853
- offset-inline-start: auto;
854
- opacity: 1;
855
- -webkit-box-ordinal-group: 1;
856
- -ms-flex-order: 0;
857
- order: 0;
858
- orphans: 2;
859
- outline-color: initial;
860
- outline-offset: 0;
861
- outline-style: none;
862
- outline-width: medium;
863
- overflow: visible;
864
- overflow-wrap: normal;
865
- overflow-x: visible;
866
- overflow-y: visible;
867
- -webkit-padding-after: 0;
868
- padding-block-end: 0;
869
- -webkit-padding-before: 0;
870
- padding-block-start: 0;
871
- padding-bottom: 0;
872
- -webkit-padding-end: 0;
873
- padding-inline-end: 0;
874
- -webkit-padding-start: 0;
875
- padding-inline-start: 0;
876
- padding-left: 0;
877
- padding-right: 0;
878
- padding-top: 0;
879
- page-break-after: auto;
880
- page-break-before: auto;
881
- page-break-inside: auto;
882
- -webkit-perspective: none;
883
- perspective: none;
884
- -webkit-perspective-origin: 50% 50%;
885
- perspective-origin: 50% 50%;
886
- pointer-events: auto;
887
- position: static;
888
- quotes: initial;
889
- resize: none;
890
- right: auto;
891
- ruby-align: space-around;
892
- ruby-merge: separate;
893
- ruby-position: over;
894
- scroll-behavior: auto;
895
- -ms-scroll-snap-coordinate: none;
896
- scroll-snap-coordinate: none;
897
- -ms-scroll-snap-destination: 0 0;
898
- scroll-snap-destination: 0 0;
899
- -ms-scroll-snap-points-x: none;
900
- scroll-snap-points-x: none;
901
- -ms-scroll-snap-points-y: none;
902
- scroll-snap-points-y: none;
903
- -ms-scroll-snap-type: none;
904
- scroll-snap-type: none;
905
- shape-image-threshold: 0;
906
- shape-margin: 0;
907
- shape-outside: none;
908
- -moz-tab-size: 8;
909
- -o-tab-size: 8;
910
- tab-size: 8;
911
- table-layout: auto;
912
- text-align: initial;
913
- -moz-text-align-last: auto;
914
- text-align-last: auto;
915
- text-combine-upright: none;
916
- -webkit-text-decoration-color: currentcolor;
917
- text-decoration-color: currentcolor;
918
- -webkit-text-decoration-line: none;
919
- text-decoration-line: none;
920
- -webkit-text-decoration-style: solid;
921
- text-decoration-style: solid;
922
- -webkit-text-emphasis-color: currentcolor;
923
- text-emphasis-color: currentcolor;
924
- -webkit-text-emphasis-position: over;
925
- text-emphasis-position: over right;
926
- -webkit-text-emphasis-style: none;
927
- text-emphasis-style: none;
928
- text-indent: 0;
929
- text-justify: auto;
930
- text-orientation: mixed;
931
- text-overflow: clip;
932
- text-rendering: auto;
933
- text-shadow: none;
934
- text-transform: none;
935
- text-underline-position: auto;
936
- top: auto;
937
- -ms-touch-action: auto;
938
- touch-action: auto;
939
- -webkit-transform: none;
940
- transform: none;
941
- transform-box: border-box;
942
- -webkit-transform-origin: 50% 50% 0;
943
- transform-origin: 50% 50% 0;
944
- -webkit-transform-style: flat;
945
- transform-style: flat;
946
- -webkit-transition-delay: 0s;
947
- transition-delay: 0s;
948
- -webkit-transition-duration: 0s;
949
- transition-duration: 0s;
950
- -webkit-transition-property: all;
951
- transition-property: all;
952
- -webkit-transition-timing-function: ease;
953
- transition-timing-function: ease;
954
- vertical-align: baseline;
955
- visibility: visible;
956
- white-space: normal;
957
- widows: 2;
958
- width: auto;
959
- will-change: auto;
960
- word-break: normal;
961
- word-spacing: normal;
962
- word-wrap: normal;
963
- -webkit-writing-mode: horizontal-tb;
964
- -ms-writing-mode: lr-tb;
965
- writing-mode: horizontal-tb;
966
- z-index: auto;
967
- -webkit-appearance: none;
968
- -moz-appearance: none;
969
- -ms-appearance: none;
970
- appearance: none; }
971
- .brz .brz-h1,
972
- .brz .brz-h2,
973
- .brz .brz-h3,
974
- .brz .brz-h4,
975
- .brz .brz-h5,
976
- .brz .brz-h6 {
977
- font-family: inherit;
978
- font-weight: 700;
979
- line-height: 1.2;
980
- color: inherit; }
981
- .brz .brz-h1 {
982
- font-size: 55px;
983
- font-weight: 400; }
984
- .brz .brz-h2 {
985
- font-size: 40px; }
986
- .brz .brz-h3 {
987
- font-size: 32px; }
988
- .brz .brz-h4 {
989
- font-size: 26px; }
990
- .brz .brz-h5 {
991
- font-size: 19px; }
992
- .brz .brz-h6 {
993
- font-size: 14px; }
994
- .brz .brz-p {
995
- font-size: 14px;
996
- font-weight: normal; }
997
- .brz .brz-flex-xs-row-reverse {
998
- -webkit-box-orient: horizontal !important;
999
- -webkit-box-direction: reverse !important;
1000
- -ms-flex-direction: row-reverse !important;
1001
- flex-direction: row-reverse !important; }
1002
- .brz .brz-flex-xs-column {
1003
- -webkit-box-orient: vertical !important;
1004
- -webkit-box-direction: normal !important;
1005
- -ms-flex-direction: column !important;
1006
- flex-direction: column !important; }
1007
- .brz .brz-flex-xs-column-reverse {
1008
- -webkit-box-orient: vertical !important;
1009
- -webkit-box-direction: reverse !important;
1010
- -ms-flex-direction: column-reverse !important;
1011
- flex-direction: column-reverse !important; }
1012
- .brz .brz-justify-content-xs-start {
1013
- -webkit-box-pack: start !important;
1014
- -ms-flex-pack: start !important;
1015
- justify-content: flex-start !important; }
1016
- .brz .brz-justify-content-xs-end {
1017
- -webkit-box-pack: end !important;
1018
- -ms-flex-pack: end !important;
1019
- justify-content: flex-end !important; }
1020
- .brz .brz-justify-content-xs-center {
1021
- -webkit-box-pack: center !important;
1022
- -ms-flex-pack: center !important;
1023
- justify-content: center !important; }
1024
- .brz .brz-justify-content-xs-between {
1025
- -webkit-box-pack: justify !important;
1026
- -ms-flex-pack: justify !important;
1027
- justify-content: space-between !important; }
1028
- .brz .brz-justify-content-xs-around {
1029
- -ms-flex-pack: distribute !important;
1030
- justify-content: space-around !important; }
1031
- .brz .brz-align-items-xs-start {
1032
- -webkit-box-align: start !important;
1033
- -ms-flex-align: start !important;
1034
- align-items: flex-start !important; }
1035
- .brz .brz-align-items-xs-end {
1036
- -webkit-box-align: end !important;
1037
- -ms-flex-align: end !important;
1038
- align-items: flex-end !important; }
1039
- .brz .brz-align-items-xs-center {
1040
- -webkit-box-align: center !important;
1041
- -ms-flex-align: center !important;
1042
- align-items: center !important; }
1043
- .brz .brz-align-items-xs-baseline {
1044
- -webkit-box-align: baseline !important;
1045
- -ms-flex-align: baseline !important;
1046
- align-items: baseline !important; }
1047
- .brz .brz-align-items-xs-stretch {
1048
- -webkit-box-align: stretch !important;
1049
- -ms-flex-align: stretch !important;
1050
- align-items: stretch !important; }
1051
- .brz .brz-col-first-xs {
1052
- -webkit-box-ordinal-group: 0;
1053
- -ms-flex-order: -1;
1054
- order: -1; }
1055
- .brz .brz-col-last-xs {
1056
- -webkit-box-ordinal-group: 2;
1057
- -ms-flex-order: 1;
1058
- order: 1; }
1059
- .brz .brz-align-self-xs-start {
1060
- -ms-flex-item-align: start !important;
1061
- align-self: flex-start !important; }
1062
- .brz .brz-align-self-xs-end {
1063
- -ms-flex-item-align: end !important;
1064
- align-self: flex-end !important; }
1065
- .brz .brz-align-self-xs-center {
1066
- -ms-flex-item-align: center !important;
1067
- align-self: center !important; }
1068
- .brz .brz-align-self-xs-baseline {
1069
- -ms-flex-item-align: baseline !important;
1070
- align-self: baseline !important; }
1071
- .brz .brz-align-self-xs-stretch {
1072
- -ms-flex-item-align: stretch !important;
1073
- align-self: stretch !important; }
1074
- .brz .brz-flex-xs-wrap {
1075
- -ms-flex-wrap: wrap !important;
1076
- flex-wrap: wrap !important; }
1077
- .brz .brz-flex-xs-wrap-reverse {
1078
- -ms-flex-wrap: wrap-reverse !important;
1079
- flex-wrap: wrap-reverse !important; }
1080
- .brz .brz-align-content-xs-start {
1081
- -ms-flex-line-pack: start !important;
1082
- align-content: flex-start !important; }
1083
- .brz .brz-align-content-xs-end {
1084
- -ms-flex-line-pack: end !important;
1085
- align-content: flex-end !important; }
1086
- .brz .brz-align-content-xs-center {
1087
- -ms-flex-line-pack: center !important;
1088
- align-content: center !important; }
1089
- .brz .brz-align-content-xs-around {
1090
- -ms-flex-line-pack: distribute !important;
1091
- align-content: space-around !important; }
1092
- .brz .brz-align-content-xs-stretch {
1093
- -ms-flex-line-pack: stretch !important;
1094
- align-content: stretch !important; }
1095
- .brz .brz-align-content-xs-between {
1096
- -ms-flex-line-pack: justify !important;
1097
- align-content: space-between !important; }
1098
- @media (min-width: 480px) {
1099
- .brz .brz-flex-ms-row-reverse {
1100
- -webkit-box-orient: horizontal !important;
1101
- -webkit-box-direction: reverse !important;
1102
- -ms-flex-direction: row-reverse !important;
1103
- flex-direction: row-reverse !important; }
1104
- .brz .brz-flex-ms-column {
1105
- -webkit-box-orient: vertical !important;
1106
- -webkit-box-direction: normal !important;
1107
- -ms-flex-direction: column !important;
1108
- flex-direction: column !important; }
1109
- .brz .brz-flex-ms-column-reverse {
1110
- -webkit-box-orient: vertical !important;
1111
- -webkit-box-direction: reverse !important;
1112
- -ms-flex-direction: column-reverse !important;
1113
- flex-direction: column-reverse !important; }
1114
- .brz .brz-justify-content-ms-start {
1115
- -webkit-box-pack: start !important;
1116
- -ms-flex-pack: start !important;
1117
- justify-content: flex-start !important; }
1118
- .brz .brz-justify-content-ms-end {
1119
- -webkit-box-pack: end !important;
1120
- -ms-flex-pack: end !important;
1121
- justify-content: flex-end !important; }
1122
- .brz .brz-justify-content-ms-center {
1123
- -webkit-box-pack: center !important;
1124
- -ms-flex-pack: center !important;
1125
- justify-content: center !important; }
1126
- .brz .brz-justify-content-ms-between {
1127
- -webkit-box-pack: justify !important;
1128
- -ms-flex-pack: justify !important;
1129
- justify-content: space-between !important; }
1130
- .brz .brz-justify-content-ms-around {
1131
- -ms-flex-pack: distribute !important;
1132
- justify-content: space-around !important; }
1133
- .brz .brz-align-items-ms-start {
1134
- -webkit-box-align: start !important;
1135
- -ms-flex-align: start !important;
1136
- align-items: flex-start !important; }
1137
- .brz .brz-align-items-ms-end {
1138
- -webkit-box-align: end !important;
1139
- -ms-flex-align: end !important;
1140
- align-items: flex-end !important; }
1141
- .brz .brz-align-items-ms-center {
1142
- -webkit-box-align: center !important;
1143
- -ms-flex-align: center !important;
1144
- align-items: center !important; }
1145
- .brz .brz-align-items-ms-baseline {
1146
- -webkit-box-align: baseline !important;
1147
- -ms-flex-align: baseline !important;
1148
- align-items: baseline !important; }
1149
- .brz .brz-align-items-ms-stretch {
1150
- -webkit-box-align: stretch !important;
1151
- -ms-flex-align: stretch !important;
1152
- align-items: stretch !important; }
1153
- .brz .brz-col-first-ms {
1154
- -webkit-box-ordinal-group: 0;
1155
- -ms-flex-order: -1;
1156
- order: -1; }
1157
- .brz .brz-col-last-ms {
1158
- -webkit-box-ordinal-group: 2;
1159
- -ms-flex-order: 1;
1160
- order: 1; }
1161
- .brz .brz-align-self-ms-start {
1162
- -ms-flex-item-align: start !important;
1163
- align-self: flex-start !important; }
1164
- .brz .brz-align-self-ms-end {
1165
- -ms-flex-item-align: end !important;
1166
- align-self: flex-end !important; }
1167
- .brz .brz-align-self-ms-center {
1168
- -ms-flex-item-align: center !important;
1169
- align-self: center !important; }
1170
- .brz .brz-align-self-ms-baseline {
1171
- -ms-flex-item-align: baseline !important;
1172
- align-self: baseline !important; }
1173
- .brz .brz-align-self-ms-stretch {
1174
- -ms-flex-item-align: stretch !important;
1175
- align-self: stretch !important; }
1176
- .brz .brz-flex-ms-wrap {
1177
- -ms-flex-wrap: wrap !important;
1178
- flex-wrap: wrap !important; }
1179
- .brz .brz-flex-ms-wrap-reverse {
1180
- -ms-flex-wrap: wrap-reverse !important;
1181
- flex-wrap: wrap-reverse !important; }
1182
- .brz .brz-align-content-ms-start {
1183
- -ms-flex-line-pack: start !important;
1184
- align-content: flex-start !important; }
1185
- .brz .brz-align-content-ms-end {
1186
- -ms-flex-line-pack: end !important;
1187
- align-content: flex-end !important; }
1188
- .brz .brz-align-content-ms-center {
1189
- -ms-flex-line-pack: center !important;
1190
- align-content: center !important; }
1191
- .brz .brz-align-content-ms-around {
1192
- -ms-flex-line-pack: distribute !important;
1193
- align-content: space-around !important; }
1194
- .brz .brz-align-content-ms-stretch {
1195
- -ms-flex-line-pack: stretch !important;
1196
- align-content: stretch !important; }
1197
- .brz .brz-align-content-ms-between {
1198
- -ms-flex-line-pack: justify !important;
1199
- align-content: space-between !important; } }
1200
- @media (min-width: 768px) {
1201
- .brz .brz-flex-sm-row-reverse {
1202
- -webkit-box-orient: horizontal !important;
1203
- -webkit-box-direction: reverse !important;
1204
- -ms-flex-direction: row-reverse !important;
1205
- flex-direction: row-reverse !important; }
1206
- .brz .brz-flex-sm-column {
1207
- -webkit-box-orient: vertical !important;
1208
- -webkit-box-direction: normal !important;
1209
- -ms-flex-direction: column !important;
1210
- flex-direction: column !important; }
1211
- .brz .brz-flex-sm-column-reverse {
1212
- -webkit-box-orient: vertical !important;
1213
- -webkit-box-direction: reverse !important;
1214
- -ms-flex-direction: column-reverse !important;
1215
- flex-direction: column-reverse !important; }
1216
- .brz .brz-justify-content-sm-start {
1217
- -webkit-box-pack: start !important;
1218
- -ms-flex-pack: start !important;
1219
- justify-content: flex-start !important; }
1220
- .brz .brz-justify-content-sm-end {
1221
- -webkit-box-pack: end !important;
1222
- -ms-flex-pack: end !important;
1223
- justify-content: flex-end !important; }
1224
- .brz .brz-justify-content-sm-center {
1225
- -webkit-box-pack: center !important;
1226
- -ms-flex-pack: center !important;
1227
- justify-content: center !important; }
1228
- .brz .brz-justify-content-sm-between {
1229
- -webkit-box-pack: justify !important;
1230
- -ms-flex-pack: justify !important;
1231
- justify-content: space-between !important; }
1232
- .brz .brz-justify-content-sm-around {
1233
- -ms-flex-pack: distribute !important;
1234
- justify-content: space-around !important; }
1235
- .brz .brz-align-items-sm-start {
1236
- -webkit-box-align: start !important;
1237
- -ms-flex-align: start !important;
1238
- align-items: flex-start !important; }
1239
- .brz .brz-align-items-sm-end {
1240
- -webkit-box-align: end !important;
1241
- -ms-flex-align: end !important;
1242
- align-items: flex-end !important; }
1243
- .brz .brz-align-items-sm-center {
1244
- -webkit-box-align: center !important;
1245
- -ms-flex-align: center !important;
1246
- align-items: center !important; }
1247
- .brz .brz-align-items-sm-baseline {
1248
- -webkit-box-align: baseline !important;
1249
- -ms-flex-align: baseline !important;
1250
- align-items: baseline !important; }
1251
- .brz .brz-align-items-sm-stretch {
1252
- -webkit-box-align: stretch !important;
1253
- -ms-flex-align: stretch !important;
1254
- align-items: stretch !important; }
1255
- .brz .brz-col-first-sm {
1256
- -webkit-box-ordinal-group: 0;
1257
- -ms-flex-order: -1;
1258
- order: -1; }
1259
- .brz .brz-col-last-sm {
1260
- -webkit-box-ordinal-group: 2;
1261
- -ms-flex-order: 1;
1262
- order: 1; }
1263
- .brz .brz-align-self-sm-start {
1264
- -ms-flex-item-align: start !important;
1265
- align-self: flex-start !important; }
1266
- .brz .brz-align-self-sm-end {
1267
- -ms-flex-item-align: end !important;
1268
- align-self: flex-end !important; }
1269
- .brz .brz-align-self-sm-center {
1270
- -ms-flex-item-align: center !important;
1271
- align-self: center !important; }
1272
- .brz .brz-align-self-sm-baseline {
1273
- -ms-flex-item-align: baseline !important;
1274
- align-self: baseline !important; }
1275
- .brz .brz-align-self-sm-stretch {
1276
- -ms-flex-item-align: stretch !important;
1277
- align-self: stretch !important; }
1278
- .brz .brz-flex-sm-wrap {
1279
- -ms-flex-wrap: wrap !important;
1280
- flex-wrap: wrap !important; }
1281
- .brz .brz-flex-sm-wrap-reverse {
1282
- -ms-flex-wrap: wrap-reverse !important;
1283
- flex-wrap: wrap-reverse !important; }
1284
- .brz .brz-align-content-sm-start {
1285
- -ms-flex-line-pack: start !important;
1286
- align-content: flex-start !important; }
1287
- .brz .brz-align-content-sm-end {
1288
- -ms-flex-line-pack: end !important;
1289
- align-content: flex-end !important; }
1290
- .brz .brz-align-content-sm-center {
1291
- -ms-flex-line-pack: center !important;
1292
- align-content: center !important; }
1293
- .brz .brz-align-content-sm-around {
1294
- -ms-flex-line-pack: distribute !important;
1295
- align-content: space-around !important; }
1296
- .brz .brz-align-content-sm-stretch {
1297
- -ms-flex-line-pack: stretch !important;
1298
- align-content: stretch !important; }
1299
- .brz .brz-align-content-sm-between {
1300
- -ms-flex-line-pack: justify !important;
1301
- align-content: space-between !important; } }
1302
- @media (min-width: 992px) {
1303
- .brz .brz-flex-md-row-reverse {
1304
- -webkit-box-orient: horizontal !important;
1305
- -webkit-box-direction: reverse !important;
1306
- -ms-flex-direction: row-reverse !important;
1307
- flex-direction: row-reverse !important; }
1308
- .brz .brz-flex-md-column {
1309
- -webkit-box-orient: vertical !important;
1310
- -webkit-box-direction: normal !important;
1311
- -ms-flex-direction: column !important;
1312
- flex-direction: column !important; }
1313
- .brz .brz-flex-md-column-reverse {
1314
- -webkit-box-orient: vertical !important;
1315
- -webkit-box-direction: reverse !important;
1316
- -ms-flex-direction: column-reverse !important;
1317
- flex-direction: column-reverse !important; }
1318
- .brz .brz-justify-content-md-start {
1319
- -webkit-box-pack: start !important;
1320
- -ms-flex-pack: start !important;
1321
- justify-content: flex-start !important; }
1322
- .brz .brz-justify-content-md-end {
1323
- -webkit-box-pack: end !important;
1324
- -ms-flex-pack: end !important;
1325
- justify-content: flex-end !important; }
1326
- .brz .brz-justify-content-md-center {
1327
- -webkit-box-pack: center !important;
1328
- -ms-flex-pack: center !important;
1329
- justify-content: center !important; }
1330
- .brz .brz-justify-content-md-between {
1331
- -webkit-box-pack: justify !important;
1332
- -ms-flex-pack: justify !important;
1333
- justify-content: space-between !important; }
1334
- .brz .brz-justify-content-md-around {
1335
- -ms-flex-pack: distribute !important;
1336
- justify-content: space-around !important; }
1337
- .brz .brz-align-items-md-start {
1338
- -webkit-box-align: start !important;
1339
- -ms-flex-align: start !important;
1340
- align-items: flex-start !important; }
1341
- .brz .brz-align-items-md-end {
1342
- -webkit-box-align: end !important;
1343
- -ms-flex-align: end !important;
1344
- align-items: flex-end !important; }
1345
- .brz .brz-align-items-md-center {
1346
- -webkit-box-align: center !important;
1347
- -ms-flex-align: center !important;
1348
- align-items: center !important; }
1349
- .brz .brz-align-items-md-baseline {
1350
- -webkit-box-align: baseline !important;
1351
- -ms-flex-align: baseline !important;
1352
- align-items: baseline !important; }
1353
- .brz .brz-align-items-md-stretch {
1354
- -webkit-box-align: stretch !important;
1355
- -ms-flex-align: stretch !important;
1356
- align-items: stretch !important; }
1357
- .brz .brz-col-first-md {
1358
- -webkit-box-ordinal-group: 0;
1359
- -ms-flex-order: -1;
1360
- order: -1; }
1361
- .brz .brz-col-last-md {
1362
- -webkit-box-ordinal-group: 2;
1363
- -ms-flex-order: 1;
1364
- order: 1; }
1365
- .brz .brz-align-self-md-start {
1366
- -ms-flex-item-align: start !important;
1367
- align-self: flex-start !important; }
1368
- .brz .brz-align-self-md-end {
1369
- -ms-flex-item-align: end !important;
1370
- align-self: flex-end !important; }
1371
- .brz .brz-align-self-md-center {
1372
- -ms-flex-item-align: center !important;
1373
- align-self: center !important; }
1374
- .brz .brz-align-self-md-baseline {
1375
- -ms-flex-item-align: baseline !important;
1376
- align-self: baseline !important; }
1377
- .brz .brz-align-self-md-stretch {
1378
- -ms-flex-item-align: stretch !important;
1379
- align-self: stretch !important; }
1380
- .brz .brz-flex-md-wrap {
1381
- -ms-flex-wrap: wrap !important;
1382
- flex-wrap: wrap !important; }
1383
- .brz .brz-flex-md-wrap-reverse {
1384
- -ms-flex-wrap: wrap-reverse !important;
1385
- flex-wrap: wrap-reverse !important; }
1386
- .brz .brz-align-content-md-start {
1387
- -ms-flex-line-pack: start !important;
1388
- align-content: flex-start !important; }
1389
- .brz .brz-align-content-md-end {
1390
- -ms-flex-line-pack: end !important;
1391
- align-content: flex-end !important; }
1392
- .brz .brz-align-content-md-center {
1393
- -ms-flex-line-pack: center !important;
1394
- align-content: center !important; }
1395
- .brz .brz-align-content-md-around {
1396
- -ms-flex-line-pack: distribute !important;
1397
- align-content: space-around !important; }
1398
- .brz .brz-align-content-md-stretch {
1399
- -ms-flex-line-pack: stretch !important;
1400
- align-content: stretch !important; }
1401
- .brz .brz-align-content-md-between {
1402
- -ms-flex-line-pack: justify !important;
1403
- align-content: space-between !important; } }
1404
- @media (min-width: 1200px) {
1405
- .brz .brz-flex-lg-row-reverse {
1406
- -webkit-box-orient: horizontal !important;
1407
- -webkit-box-direction: reverse !important;
1408
- -ms-flex-direction: row-reverse !important;
1409
- flex-direction: row-reverse !important; }
1410
- .brz .brz-flex-lg-column {
1411
- -webkit-box-orient: vertical !important;
1412
- -webkit-box-direction: normal !important;
1413
- -ms-flex-direction: column !important;
1414
- flex-direction: column !important; }
1415
- .brz .brz-flex-lg-column-reverse {
1416
- -webkit-box-orient: vertical !important;
1417
- -webkit-box-direction: reverse !important;
1418
- -ms-flex-direction: column-reverse !important;
1419
- flex-direction: column-reverse !important; }
1420
- .brz .brz-justify-content-lg-start {
1421
- -webkit-box-pack: start !important;
1422
- -ms-flex-pack: start !important;
1423
- justify-content: flex-start !important; }
1424
- .brz .brz-justify-content-lg-end {
1425
- -webkit-box-pack: end !important;
1426
- -ms-flex-pack: end !important;
1427
- justify-content: flex-end !important; }
1428
- .brz .brz-justify-content-lg-center {
1429
- -webkit-box-pack: center !important;
1430
- -ms-flex-pack: center !important;
1431
- justify-content: center !important; }
1432
- .brz .brz-justify-content-lg-between {
1433
- -webkit-box-pack: justify !important;
1434
- -ms-flex-pack: justify !important;
1435
- justify-content: space-between !important; }
1436
- .brz .brz-justify-content-lg-around {
1437
- -ms-flex-pack: distribute !important;
1438
- justify-content: space-around !important; }
1439
- .brz .brz-align-items-lg-start {
1440
- -webkit-box-align: start !important;
1441
- -ms-flex-align: start !important;
1442
- align-items: flex-start !important; }
1443
- .brz .brz-align-items-lg-end {
1444
- -webkit-box-align: end !important;
1445
- -ms-flex-align: end !important;
1446
- align-items: flex-end !important; }
1447
- .brz .brz-align-items-lg-center {
1448
- -webkit-box-align: center !important;
1449
- -ms-flex-align: center !important;
1450
- align-items: center !important; }
1451
- .brz .brz-align-items-lg-baseline {
1452
- -webkit-box-align: baseline !important;
1453
- -ms-flex-align: baseline !important;
1454
- align-items: baseline !important; }
1455
- .brz .brz-align-items-lg-stretch {
1456
- -webkit-box-align: stretch !important;
1457
- -ms-flex-align: stretch !important;
1458
- align-items: stretch !important; }
1459
- .brz .brz-col-first-lg {
1460
- -webkit-box-ordinal-group: 0;
1461
- -ms-flex-order: -1;
1462
- order: -1; }
1463
- .brz .brz-col-last-lg {
1464
- -webkit-box-ordinal-group: 2;
1465
- -ms-flex-order: 1;
1466
- order: 1; }
1467
- .brz .brz-align-self-lg-start {
1468
- -ms-flex-item-align: start !important;
1469
- align-self: flex-start !important; }
1470
- .brz .brz-align-self-lg-end {
1471
- -ms-flex-item-align: end !important;
1472
- align-self: flex-end !important; }
1473
- .brz .brz-align-self-lg-center {
1474
- -ms-flex-item-align: center !important;
1475
- align-self: center !important; }
1476
- .brz .brz-align-self-lg-baseline {
1477
- -ms-flex-item-align: baseline !important;
1478
- align-self: baseline !important; }
1479
- .brz .brz-align-self-lg-stretch {
1480
- -ms-flex-item-align: stretch !important;
1481
- align-self: stretch !important; }
1482
- .brz .brz-flex-lg-wrap {
1483
- -ms-flex-wrap: wrap !important;
1484
- flex-wrap: wrap !important; }
1485
- .brz .brz-flex-lg-wrap-reverse {
1486
- -ms-flex-wrap: wrap-reverse !important;
1487
- flex-wrap: wrap-reverse !important; }
1488
- .brz .brz-align-content-lg-start {
1489
- -ms-flex-line-pack: start !important;
1490
- align-content: flex-start !important; }
1491
- .brz .brz-align-content-lg-end {
1492
- -ms-flex-line-pack: end !important;
1493
- align-content: flex-end !important; }
1494
- .brz .brz-align-content-lg-center {
1495
- -ms-flex-line-pack: center !important;
1496
- align-content: center !important; }
1497
- .brz .brz-align-content-lg-around {
1498
- -ms-flex-line-pack: distribute !important;
1499
- align-content: space-around !important; }
1500
- .brz .brz-align-content-lg-stretch {
1501
- -ms-flex-line-pack: stretch !important;
1502
- align-content: stretch !important; }
1503
- .brz .brz-align-content-lg-between {
1504
- -ms-flex-line-pack: justify !important;
1505
- align-content: space-between !important; } }
1506
- @media (min-width: 1400px) {
1507
- .brz .brz-flex-xl-row-reverse {
1508
- -webkit-box-orient: horizontal !important;
1509
- -webkit-box-direction: reverse !important;
1510
- -ms-flex-direction: row-reverse !important;
1511
- flex-direction: row-reverse !important; }
1512
- .brz .brz-flex-xl-column {
1513
- -webkit-box-orient: vertical !important;
1514
- -webkit-box-direction: normal !important;
1515
- -ms-flex-direction: column !important;
1516
- flex-direction: column !important; }
1517
- .brz .brz-flex-xl-column-reverse {
1518
- -webkit-box-orient: vertical !important;
1519
- -webkit-box-direction: reverse !important;
1520
- -ms-flex-direction: column-reverse !important;
1521
- flex-direction: column-reverse !important; }
1522
- .brz .brz-justify-content-xl-start {
1523
- -webkit-box-pack: start !important;
1524
- -ms-flex-pack: start !important;
1525
- justify-content: flex-start !important; }
1526
- .brz .brz-justify-content-xl-end {
1527
- -webkit-box-pack: end !important;
1528
- -ms-flex-pack: end !important;
1529
- justify-content: flex-end !important; }
1530
- .brz .brz-justify-content-xl-center {
1531
- -webkit-box-pack: center !important;
1532
- -ms-flex-pack: center !important;
1533
- justify-content: center !important; }
1534
- .brz .brz-justify-content-xl-between {
1535
- -webkit-box-pack: justify !important;
1536
- -ms-flex-pack: justify !important;
1537
- justify-content: space-between !important; }
1538
- .brz .brz-justify-content-xl-around {
1539
- -ms-flex-pack: distribute !important;
1540
- justify-content: space-around !important; }
1541
- .brz .brz-align-items-xl-start {
1542
- -webkit-box-align: start !important;
1543
- -ms-flex-align: start !important;
1544
- align-items: flex-start !important; }
1545
- .brz .brz-align-items-xl-end {
1546
- -webkit-box-align: end !important;
1547
- -ms-flex-align: end !important;
1548
- align-items: flex-end !important; }
1549
- .brz .brz-align-items-xl-center {
1550
- -webkit-box-align: center !important;
1551
- -ms-flex-align: center !important;
1552
- align-items: center !important; }
1553
- .brz .brz-align-items-xl-baseline {
1554
- -webkit-box-align: baseline !important;
1555
- -ms-flex-align: baseline !important;
1556
- align-items: baseline !important; }
1557
- .brz .brz-align-items-xl-stretch {
1558
- -webkit-box-align: stretch !important;
1559
- -ms-flex-align: stretch !important;
1560
- align-items: stretch !important; }
1561
- .brz .brz-col-first-xl {
1562
- -webkit-box-ordinal-group: 0;
1563
- -ms-flex-order: -1;
1564
- order: -1; }
1565
- .brz .brz-col-last-xl {
1566
- -webkit-box-ordinal-group: 2;
1567
- -ms-flex-order: 1;
1568
- order: 1; }
1569
- .brz .brz-align-self-xl-start {
1570
- -ms-flex-item-align: start !important;
1571
- align-self: flex-start !important; }
1572
- .brz .brz-align-self-xl-end {
1573
- -ms-flex-item-align: end !important;
1574
- align-self: flex-end !important; }
1575
- .brz .brz-align-self-xl-center {
1576
- -ms-flex-item-align: center !important;
1577
- align-self: center !important; }
1578
- .brz .brz-align-self-xl-baseline {
1579
- -ms-flex-item-align: baseline !important;
1580
- align-self: baseline !important; }
1581
- .brz .brz-align-self-xl-stretch {
1582
- -ms-flex-item-align: stretch !important;
1583
- align-self: stretch !important; }
1584
- .brz .brz-flex-xl-wrap {
1585
- -ms-flex-wrap: wrap !important;
1586
- flex-wrap: wrap !important; }
1587
- .brz .brz-flex-xl-wrap-reverse {
1588
- -ms-flex-wrap: wrap-reverse !important;
1589
- flex-wrap: wrap-reverse !important; }
1590
- .brz .brz-align-content-xl-start {
1591
- -ms-flex-line-pack: start !important;
1592
- align-content: flex-start !important; }
1593
- .brz .brz-align-content-xl-end {
1594
- -ms-flex-line-pack: end !important;
1595
- align-content: flex-end !important; }
1596
- .brz .brz-align-content-xl-center {
1597
- -ms-flex-line-pack: center !important;
1598
- align-content: center !important; }
1599
- .brz .brz-align-content-xl-around {
1600
- -ms-flex-line-pack: distribute !important;
1601
- align-content: space-around !important; }
1602
- .brz .brz-align-content-xl-stretch {
1603
- -ms-flex-line-pack: stretch !important;
1604
- align-content: stretch !important; }
1605
- .brz .brz-align-content-xl-between {
1606
- -ms-flex-line-pack: justify !important;
1607
- align-content: space-between !important; } }
1608
- .brz .brz-d-block {
1609
- display: block !important; }
1610
- .brz .brz-d-inline-block {
1611
- display: inline-block !important; }
1612
- .brz .brz-d-inline {
1613
- display: inline !important; }
1614
- .brz .brz-d-none {
1615
- display: none !important; }
1616
- .brz .brz-d-table {
1617
- width: 100%;
1618
- display: table;
1619
- position: relative; }
1620
- .brz .brz-d-table-cell {
1621
- display: table-cell; }
1622
- .brz .brz-blocked {
1623
- pointer-events: none; }
1624
- .brz .brz-d-xs-flex {
1625
- display: -webkit-box;
1626
- display: -ms-flexbox;
1627
- display: flex;
1628
- min-width: 0; }
1629
- .brz .brz-d-xs-inline-flex {
1630
- display: -webkit-inline-box;
1631
- display: -ms-inline-flexbox;
1632
- display: inline-flex; }
1633
- @media (min-width: 480px) {
1634
- .brz .brz-d-ms-flex {
1635
- display: -webkit-box;
1636
- display: -ms-flexbox;
1637
- display: flex;
1638
- min-width: 0; }
1639
- .brz .brz-d-ms-inline-flex {
1640
- display: -webkit-inline-box;
1641
- display: -ms-inline-flexbox;
1642
- display: inline-flex; } }
1643
- @media (min-width: 768px) {
1644
- .brz .brz-d-sm-flex {
1645
- display: -webkit-box;
1646
- display: -ms-flexbox;
1647
- display: flex;
1648
- min-width: 0; }
1649
- .brz .brz-d-sm-inline-flex {
1650
- display: -webkit-inline-box;
1651
- display: -ms-inline-flexbox;
1652
- display: inline-flex; } }
1653
- @media (min-width: 992px) {
1654
- .brz .brz-d-md-flex {
1655
- display: -webkit-box;
1656
- display: -ms-flexbox;
1657
- display: flex;
1658
- min-width: 0; }
1659
- .brz .brz-d-md-inline-flex {
1660
- display: -webkit-inline-box;
1661
- display: -ms-inline-flexbox;
1662
- display: inline-flex; } }
1663
- @media (min-width: 1200px) {
1664
- .brz .brz-d-lg-flex {
1665
- display: -webkit-box;
1666
- display: -ms-flexbox;
1667
- display: flex;
1668
- min-width: 0; }
1669
- .brz .brz-d-lg-inline-flex {
1670
- display: -webkit-inline-box;
1671
- display: -ms-inline-flexbox;
1672
- display: inline-flex; } }
1673
- @media (min-width: 1400px) {
1674
- .brz .brz-d-xl-flex {
1675
- display: -webkit-box;
1676
- display: -ms-flexbox;
1677
- display: flex;
1678
- min-width: 0; }
1679
- .brz .brz-d-xl-inline-flex {
1680
- display: -webkit-inline-box;
1681
- display: -ms-inline-flexbox;
1682
- display: inline-flex; } }
1683
- .brz .brz-p-relative {
1684
- position: relative !important; }
1685
- .brz .brz-p-absolute {
1686
- position: absolute !important; }
1687
- .brz .brz-p-fixed {
1688
- position: fixed !important; }
1689
- .brz .brz-invisible {
1690
- visibility: hidden !important; }
1691
- .brz .brz-visible {
1692
- visibility: visible !important; }
1693
- .brz .brz-hidden-xs-up {
1694
- display: none !important; }
1695
- @media (max-width: 479px) {
1696
- .brz .brz-hidden-xs-down {
1697
- display: none !important; } }
1698
- .brz .brz-invisible-xs-up {
1699
- visibility: hidden !important; }
1700
- @media (max-width: 479px) {
1701
- .brz .brz-invisible-xs-down {
1702
- visibility: hidden !important; } }
1703
- .brz .brz-invisible-blur-xs-up .brz-bg-content {
1704
- -webkit-filter: blur(3px);
1705
- filter: blur(3px);
1706
- opacity: 0.9; }
1707
- @media (max-width: 479px) {
1708
- .brz .brz-invisible-blur-xs-down .brz-bg-content {
1709
- -webkit-filter: blur(3px);
1710
- filter: blur(3px);
1711
- opacity: 0.9; } }
1712
- @media (min-width: 480px) {
1713
- .brz .brz-hidden-ms-up {
1714
- display: none !important; } }
1715
- @media (max-width: 767px) {
1716
- .brz .brz-hidden-ms-down {
1717
- display: none !important; } }
1718
- @media (min-width: 480px) {
1719
- .brz .brz-invisible-ms-up {
1720
- visibility: hidden !important; } }
1721
- @media (max-width: 767px) {
1722
- .brz .brz-invisible-ms-down {
1723
- visibility: hidden !important; } }
1724
- @media (min-width: 480px) {
1725
- .brz .brz-invisible-blur-ms-up .brz-bg-content {
1726
- -webkit-filter: blur(3px);
1727
- filter: blur(3px);
1728
- opacity: 0.9; } }
1729
- @media (max-width: 767px) {
1730
- .brz .brz-invisible-blur-ms-down .brz-bg-content {
1731
- -webkit-filter: blur(3px);
1732
- filter: blur(3px);
1733
- opacity: 0.9; } }
1734
- @media (min-width: 768px) {
1735
- .brz .brz-hidden-sm-up {
1736
- display: none !important; } }
1737
- @media (max-width: 991px) {
1738
- .brz .brz-hidden-sm-down {
1739
- display: none !important; } }
1740
- @media (min-width: 768px) {
1741
- .brz .brz-invisible-sm-up {
1742
- visibility: hidden !important; } }
1743
- @media (max-width: 991px) {
1744
- .brz .brz-invisible-sm-down {
1745
- visibility: hidden !important; } }
1746
- @media (min-width: 768px) {
1747
- .brz .brz-invisible-blur-sm-up .brz-bg-content {
1748
- -webkit-filter: blur(3px);
1749
- filter: blur(3px);
1750
- opacity: 0.9; } }
1751
- @media (max-width: 991px) {
1752
- .brz .brz-invisible-blur-sm-down .brz-bg-content {
1753
- -webkit-filter: blur(3px);
1754
- filter: blur(3px);
1755
- opacity: 0.9; } }
1756
- @media (min-width: 992px) {
1757
- .brz .brz-hidden-md-up {
1758
- display: none !important; } }
1759
- @media (max-width: 1199px) {
1760
- .brz .brz-hidden-md-down {
1761
- display: none !important; } }
1762
- @media (min-width: 992px) {
1763
- .brz .brz-invisible-md-up {
1764
- visibility: hidden !important; } }
1765
- @media (max-width: 1199px) {
1766
- .brz .brz-invisible-md-down {
1767
- visibility: hidden !important; } }
1768
- @media (min-width: 992px) {
1769
- .brz .brz-invisible-blur-md-up .brz-bg-content {
1770
- -webkit-filter: blur(3px);
1771
- filter: blur(3px);
1772
- opacity: 0.9; } }
1773
- @media (max-width: 1199px) {
1774
- .brz .brz-invisible-blur-md-down .brz-bg-content {
1775
- -webkit-filter: blur(3px);
1776
- filter: blur(3px);
1777
- opacity: 0.9; } }
1778
- @media (min-width: 1200px) {
1779
- .brz .brz-hidden-lg-up {
1780
- display: none !important; } }
1781
- @media (max-width: 1399px) {
1782
- .brz .brz-hidden-lg-down {
1783
- display: none !important; } }
1784
- @media (min-width: 1200px) {
1785
- .brz .brz-invisible-lg-up {
1786
- visibility: hidden !important; } }
1787
- @media (max-width: 1399px) {
1788
- .brz .brz-invisible-lg-down {
1789
- visibility: hidden !important; } }
1790
- @media (min-width: 1200px) {
1791
- .brz .brz-invisible-blur-lg-up .brz-bg-content {
1792
- -webkit-filter: blur(3px);
1793
- filter: blur(3px);
1794
- opacity: 0.9; } }
1795
- @media (max-width: 1399px) {
1796
- .brz .brz-invisible-blur-lg-down .brz-bg-content {
1797
- -webkit-filter: blur(3px);
1798
- filter: blur(3px);
1799
- opacity: 0.9; } }
1800
- @media (min-width: 1400px) {
1801
- .brz .brz-hidden-xl-up {
1802
- display: none !important; } }
1803
- .brz .brz-hidden-xl-down {
1804
- display: none !important; }
1805
- @media (min-width: 1400px) {
1806
- .brz .brz-invisible-xl-up {
1807
- visibility: hidden !important; } }
1808
- .brz .brz-invisible-xl-down {
1809
- visibility: hidden !important; }
1810
- @media (min-width: 1400px) {
1811
- .brz .brz-invisible-blur-xl-up .brz-bg-content {
1812
- -webkit-filter: blur(3px);
1813
- filter: blur(3px);
1814
- opacity: 0.9; } }
1815
- .brz .brz-invisible-blur-xl-down .brz-bg-content {
1816
- -webkit-filter: blur(3px);
1817
- filter: blur(3px);
1818
- opacity: 0.9; }
1819
- .brz .brz-hidden {
1820
- display: none !important; }
1821
- .brz .brz-visible-print-block {
1822
- display: none !important; }
1823
- @media print {
1824
- .brz .brz-visible-print-block {
1825
- display: block !important; } }
1826
- .brz .brz-visible-print-inline {
1827
- display: none !important; }
1828
- @media print {
1829
- .brz .brz-visible-print-inline {
1830
- display: inline !important; } }
1831
- .brz .brz-visible-print-inline-block {
1832
- display: none !important; }
1833
- @media print {
1834
- .brz .brz-visible-print-inline-block {
1835
- display: inline-block !important; } }
1836
- @media print {
1837
- .brz .brz-hidden-print {
1838
- display: none !important; } }
1839
- .brz .brz-ow-hidden {
1840
- overflow: hidden !important; }
1841
- .brz .brz-ow-visible {
1842
- overflow: visible !important; }
1843
- .brz .brz-pointer-events-none {
1844
- pointer-events: none !important; }
1845
- .brz .brz-pointer-events-auto {
1846
- pointer-events: auto !important; }
1847
- .brz .brz-fw-100 {
1848
- font-weight: 100 !important; }
1849
- .brz .brz-fw-200 {
1850
- font-weight: 200 !important; }
1851
- .brz .brz-fw-300 {
1852
- font-weight: 300 !important; }
1853
- .brz .brz-fw-400 {
1854
- font-weight: 400 !important; }
1855
- .brz .brz-fw-500 {
1856
- font-weight: 500 !important; }
1857
- .brz .brz-fw-600 {
1858
- font-weight: 600 !important; }
1859
- .brz .brz-fw-700 {
1860
- font-weight: 700 !important; }
1861
- .brz .brz-fw-800 {
1862
- font-weight: 800 !important; }
1863
- .brz .brz-fw-900 {
1864
- font-weight: 900 !important; }
1865
- .brz .brz-typography-inherit {
1866
- font-family: inherit;
1867
- font-size: inherit;
1868
- font-weight: inherit;
1869
- line-height: inherit; }
1870
- .brz .brz--required {
1871
- color: #ff0e0e;
1872
- padding-left: 5px; }
1873
-
1874
- @-webkit-keyframes bounce {
1875
- from,
1876
- 20%,
1877
- 53%,
1878
- 80%,
1879
- to {
1880
- -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
1881
- animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
1882
- -webkit-transform: translate3d(0, 0, 0);
1883
- transform: translate3d(0, 0, 0); }
1884
- 40%,
1885
- 43% {
1886
- -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
1887
- animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
1888
- -webkit-transform: translate3d(0, -30px, 0);
1889
- transform: translate3d(0, -30px, 0); }
1890
- 70% {
1891
- -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
1892
- animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
1893
- -webkit-transform: translate3d(0, -15px, 0);
1894
- transform: translate3d(0, -15px, 0); }
1895
- 90% {
1896
- -webkit-transform: translate3d(0, -4px, 0);
1897
- transform: translate3d(0, -4px, 0); } }
1898
-
1899
- @keyframes bounce {
1900
- from,
1901
- 20%,
1902
- 53%,
1903
- 80%,
1904
- to {
1905
- -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
1906
- animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
1907
- -webkit-transform: translate3d(0, 0, 0);
1908
- transform: translate3d(0, 0, 0); }
1909
- 40%,
1910
- 43% {
1911
- -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
1912
- animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
1913
- -webkit-transform: translate3d(0, -30px, 0);
1914
- transform: translate3d(0, -30px, 0); }
1915
- 70% {
1916
- -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
1917
- animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
1918
- -webkit-transform: translate3d(0, -15px, 0);
1919
- transform: translate3d(0, -15px, 0); }
1920
- 90% {
1921
- -webkit-transform: translate3d(0, -4px, 0);
1922
- transform: translate3d(0, -4px, 0); } }
1923
- .brz .bounce {
1924
- -webkit-animation-name: bounce;
1925
- animation-name: bounce;
1926
- -webkit-transform-origin: center bottom;
1927
- transform-origin: center bottom; }
1928
-
1929
- @-webkit-keyframes flash {
1930
- from,
1931
- 50%,
1932
- to {
1933
- opacity: 1; }
1934
- 25%,
1935
- 75% {
1936
- opacity: 0; } }
1937
-
1938
- @keyframes flash {
1939
- from,
1940
- 50%,
1941
- to {
1942
- opacity: 1; }
1943
- 25%,
1944
- 75% {
1945
- opacity: 0; } }
1946
- .brz .flash {
1947
- -webkit-animation-name: flash;
1948
- animation-name: flash; }
1949
-
1950
- @-webkit-keyframes pulse {
1951
- from {
1952
- -webkit-transform: scale3d(1, 1, 1);
1953
- transform: scale3d(1, 1, 1); }
1954
- 50% {
1955
- -webkit-transform: scale3d(1.05, 1.05, 1.05);
1956
- transform: scale3d(1.05, 1.05, 1.05); }
1957
- to {
1958
- -webkit-transform: scale3d(1, 1, 1);
1959
- transform: scale3d(1, 1, 1); } }
1960
-
1961
- @keyframes pulse {
1962
- from {
1963
- -webkit-transform: scale3d(1, 1, 1);
1964
- transform: scale3d(1, 1, 1); }
1965
- 50% {
1966
- -webkit-transform: scale3d(1.05, 1.05, 1.05);
1967
- transform: scale3d(1.05, 1.05, 1.05); }
1968
- to {
1969
- -webkit-transform: scale3d(1, 1, 1);
1970
- transform: scale3d(1, 1, 1); } }
1971
- .brz .pulse {
1972
- -webkit-animation-name: pulse;
1973
- animation-name: pulse; }
1974
-
1975
- @-webkit-keyframes rubberBand {
1976
- from {
1977
- -webkit-transform: scale3d(1, 1, 1);
1978
- transform: scale3d(1, 1, 1); }
1979
- 30% {
1980
- -webkit-transform: scale3d(1.25, 0.75, 1);
1981
- transform: scale3d(1.25, 0.75, 1); }
1982
- 40% {
1983
- -webkit-transform: scale3d(0.75, 1.25, 1);
1984
- transform: scale3d(0.75, 1.25, 1); }
1985
- 50% {
1986
- -webkit-transform: scale3d(1.15, 0.85, 1);
1987
- transform: scale3d(1.15, 0.85, 1); }
1988
- 65% {
1989
- -webkit-transform: scale3d(0.95, 1.05, 1);
1990
- transform: scale3d(0.95, 1.05, 1); }
1991
- 75% {
1992
- -webkit-transform: scale3d(1.05, 0.95, 1);
1993
- transform: scale3d(1.05, 0.95, 1); }
1994
- to {
1995
- -webkit-transform: scale3d(1, 1, 1);
1996
- transform: scale3d(1, 1, 1); } }
1997
-
1998
- @keyframes rubberBand {
1999
- from {
2000
- -webkit-transform: scale3d(1, 1, 1);
2001
- transform: scale3d(1, 1, 1); }
2002
- 30% {
2003
- -webkit-transform: scale3d(1.25, 0.75, 1);
2004
- transform: scale3d(1.25, 0.75, 1); }
2005
- 40% {
2006
- -webkit-transform: scale3d(0.75, 1.25, 1);
2007
- transform: scale3d(0.75, 1.25, 1); }
2008
- 50% {
2009
- -webkit-transform: scale3d(1.15, 0.85, 1);
2010
- transform: scale3d(1.15, 0.85, 1); }
2011
- 65% {
2012
- -webkit-transform: scale3d(0.95, 1.05, 1);
2013
- transform: scale3d(0.95, 1.05, 1); }
2014
- 75% {
2015
- -webkit-transform: scale3d(1.05, 0.95, 1);
2016
- transform: scale3d(1.05, 0.95, 1); }
2017
- to {
2018
- -webkit-transform: scale3d(1, 1, 1);
2019
- transform: scale3d(1, 1, 1); } }
2020
- .brz .rubberBand {
2021
- -webkit-animation-name: rubberBand;
2022
- animation-name: rubberBand; }
2023
-
2024
- @-webkit-keyframes shake {
2025
- from,
2026
- to {
2027
- -webkit-transform: translate3d(0, 0, 0);
2028
- transform: translate3d(0, 0, 0); }
2029
- 10%,
2030
- 30%,
2031
- 50%,
2032
- 70%,
2033
- 90% {
2034
- -webkit-transform: translate3d(-10px, 0, 0);
2035
- transform: translate3d(-10px, 0, 0); }
2036
- 20%,
2037
- 40%,
2038
- 60%,
2039
- 80% {
2040
- -webkit-transform: translate3d(10px, 0, 0);
2041
- transform: translate3d(10px, 0, 0); } }
2042
-
2043
- @keyframes shake {
2044
- from,
2045
- to {
2046
- -webkit-transform: translate3d(0, 0, 0);
2047
- transform: translate3d(0, 0, 0); }
2048
- 10%,
2049
- 30%,
2050
- 50%,
2051
- 70%,
2052
- 90% {
2053
- -webkit-transform: translate3d(-10px, 0, 0);
2054
- transform: translate3d(-10px, 0, 0); }
2055
- 20%,
2056
- 40%,
2057
- 60%,
2058
- 80% {
2059
- -webkit-transform: translate3d(10px, 0, 0);
2060
- transform: translate3d(10px, 0, 0); } }
2061
- .brz .shake {
2062
- -webkit-animation-name: shake;
2063
- animation-name: shake; }
2064
-
2065
- @-webkit-keyframes headShake {
2066
- 0% {
2067
- -webkit-transform: translateX(0);
2068
- transform: translateX(0); }
2069
- 6.5% {
2070
- -webkit-transform: translateX(-6px) rotateY(-9deg);
2071
- transform: translateX(-6px) rotateY(-9deg); }
2072
- 18.5% {
2073
- -webkit-transform: translateX(5px) rotateY(7deg);
2074
- transform: translateX(5px) rotateY(7deg); }
2075
- 31.5% {
2076
- -webkit-transform: translateX(-3px) rotateY(-5deg);
2077
- transform: translateX(-3px) rotateY(-5deg); }
2078
- 43.5% {
2079
- -webkit-transform: translateX(2px) rotateY(3deg);
2080
- transform: translateX(2px) rotateY(3deg); }
2081
- 50% {
2082
- -webkit-transform: translateX(0);
2083
- transform: translateX(0); } }
2084
-
2085
- @keyframes headShake {
2086
- 0% {
2087
- -webkit-transform: translateX(0);
2088
- transform: translateX(0); }
2089
- 6.5% {
2090
- -webkit-transform: translateX(-6px) rotateY(-9deg);
2091
- transform: translateX(-6px) rotateY(-9deg); }
2092
- 18.5% {
2093
- -webkit-transform: translateX(5px) rotateY(7deg);
2094
- transform: translateX(5px) rotateY(7deg); }
2095
- 31.5% {
2096
- -webkit-transform: translateX(-3px) rotateY(-5deg);
2097
- transform: translateX(-3px) rotateY(-5deg); }
2098
- 43.5% {
2099
- -webkit-transform: translateX(2px) rotateY(3deg);
2100
- transform: translateX(2px) rotateY(3deg); }
2101
- 50% {
2102
- -webkit-transform: translateX(0);
2103
- transform: translateX(0); } }
2104
- .brz .headShake {
2105
- -webkit-animation-timing-function: ease-in-out;
2106
- animation-timing-function: ease-in-out;
2107
- -webkit-animation-name: headShake;
2108
- animation-name: headShake; }
2109
-
2110
- @-webkit-keyframes swing {
2111
- 20% {
2112
- -webkit-transform: rotate3d(0, 0, 1, 15deg);
2113
- transform: rotate3d(0, 0, 1, 15deg); }
2114
- 40% {
2115
- -webkit-transform: rotate3d(0, 0, 1, -10deg);
2116
- transform: rotate3d(0, 0, 1, -10deg); }
2117
- 60% {
2118
- -webkit-transform: rotate3d(0, 0, 1, 5deg);
2119
- transform: rotate3d(0, 0, 1, 5deg); }
2120
- 80% {
2121
- -webkit-transform: rotate3d(0, 0, 1, -5deg);
2122
- transform: rotate3d(0, 0, 1, -5deg); }
2123
- to {
2124
- -webkit-transform: rotate3d(0, 0, 1, 0deg);
2125
- transform: rotate3d(0, 0, 1, 0deg); } }
2126
-
2127
- @keyframes swing {
2128
- 20% {
2129
- -webkit-transform: rotate3d(0, 0, 1, 15deg);
2130
- transform: rotate3d(0, 0, 1, 15deg); }
2131
- 40% {
2132
- -webkit-transform: rotate3d(0, 0, 1, -10deg);
2133
- transform: rotate3d(0, 0, 1, -10deg); }
2134
- 60% {
2135
- -webkit-transform: rotate3d(0, 0, 1, 5deg);
2136
- transform: rotate3d(0, 0, 1, 5deg); }
2137
- 80% {
2138
- -webkit-transform: rotate3d(0, 0, 1, -5deg);
2139
- transform: rotate3d(0, 0, 1, -5deg); }
2140
- to {
2141
- -webkit-transform: rotate3d(0, 0, 1, 0deg);
2142
- transform: rotate3d(0, 0, 1, 0deg); } }
2143
- .brz .swing {
2144
- -webkit-transform-origin: top center;
2145
- transform-origin: top center;
2146
- -webkit-animation-name: swing;
2147
- animation-name: swing; }
2148
-
2149
- @-webkit-keyframes tada {
2150
- from {
2151
- -webkit-transform: scale3d(1, 1, 1);
2152
- transform: scale3d(1, 1, 1); }
2153
- 10%,
2154
- 20% {
2155
- -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
2156
- transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
2157
- 30%,
2158
- 50%,
2159
- 70%,
2160
- 90% {
2161
- -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
2162
- transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
2163
- 40%,
2164
- 60%,
2165
- 80% {
2166
- -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
2167
- transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
2168
- to {
2169
- -webkit-transform: scale3d(1, 1, 1);
2170
- transform: scale3d(1, 1, 1); } }
2171
-
2172
- @keyframes tada {
2173
- from {
2174
- -webkit-transform: scale3d(1, 1, 1);
2175
- transform: scale3d(1, 1, 1); }
2176
- 10%,
2177
- 20% {
2178
- -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
2179
- transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
2180
- 30%,
2181
- 50%,
2182
- 70%,
2183
- 90% {
2184
- -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
2185
- transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
2186
- 40%,
2187
- 60%,
2188
- 80% {
2189
- -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
2190
- transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
2191
- to {
2192
- -webkit-transform: scale3d(1, 1, 1);
2193
- transform: scale3d(1, 1, 1); } }
2194
- .brz .tada {
2195
- -webkit-animation-name: tada;
2196
- animation-name: tada; }
2197
-
2198
- @-webkit-keyframes wobble {
2199
- from {
2200
- -webkit-transform: translate3d(0, 0, 0);
2201
- transform: translate3d(0, 0, 0); }
2202
- 15% {
2203
- -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
2204
- transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
2205
- 30% {
2206
- -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
2207
- transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
2208
- 45% {
2209
- -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
2210
- transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
2211
- 60% {
2212
- -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
2213
- transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
2214
- 75% {
2215
- -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
2216
- transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
2217
- to {
2218
- -webkit-transform: translate3d(0, 0, 0);
2219
- transform: translate3d(0, 0, 0); } }
2220
-
2221
- @keyframes wobble {
2222
- from {
2223
- -webkit-transform: translate3d(0, 0, 0);
2224
- transform: translate3d(0, 0, 0); }
2225
- 15% {
2226
- -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
2227
- transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
2228
- 30% {
2229
- -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
2230
- transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
2231
- 45% {
2232
- -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
2233
- transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
2234
- 60% {
2235
- -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
2236
- transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
2237
- 75% {
2238
- -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
2239
- transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
2240
- to {
2241
- -webkit-transform: translate3d(0, 0, 0);
2242
- transform: translate3d(0, 0, 0); } }
2243
- .brz .wobble {
2244
- -webkit-animation-name: wobble;
2245
- animation-name: wobble; }
2246
-
2247
- @-webkit-keyframes jello {
2248
- from,
2249
- 11.1%,
2250
- to {
2251
- -webkit-transform: translate3d(0, 0, 0);
2252
- transform: translate3d(0, 0, 0); }
2253
- 22.2% {
2254
- -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
2255
- transform: skewX(-12.5deg) skewY(-12.5deg); }
2256
- 33.3% {
2257
- -webkit-transform: skewX(6.25deg) skewY(6.25deg);
2258
- transform: skewX(6.25deg) skewY(6.25deg); }
2259
- 44.4% {
2260
- -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
2261
- transform: skewX(-3.125deg) skewY(-3.125deg); }
2262
- 55.5% {
2263
- -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
2264
- transform: skewX(1.5625deg) skewY(1.5625deg); }
2265
- 66.6% {
2266
- -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
2267
- transform: skewX(-0.78125deg) skewY(-0.78125deg); }
2268
- 77.7% {
2269
- -webkit-transform: skewX(0.39062deg) skewY(0.39062deg);
2270
- transform: skewX(0.39062deg) skewY(0.39062deg); }
2271
- 88.8% {
2272
- -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
2273
- transform: skewX(-0.19531deg) skewY(-0.19531deg); } }
2274
-
2275
- @keyframes jello {
2276
- from,
2277
- 11.1%,
2278
- to {
2279
- -webkit-transform: translate3d(0, 0, 0);
2280
- transform: translate3d(0, 0, 0); }
2281
- 22.2% {
2282
- -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
2283
- transform: skewX(-12.5deg) skewY(-12.5deg); }
2284
- 33.3% {
2285
- -webkit-transform: skewX(6.25deg) skewY(6.25deg);
2286
- transform: skewX(6.25deg) skewY(6.25deg); }
2287
- 44.4% {
2288
- -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
2289
- transform: skewX(-3.125deg) skewY(-3.125deg); }
2290
- 55.5% {
2291
- -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
2292
- transform: skewX(1.5625deg) skewY(1.5625deg); }
2293
- 66.6% {
2294
- -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
2295
- transform: skewX(-0.78125deg) skewY(-0.78125deg); }
2296
- 77.7% {
2297
- -webkit-transform: skewX(0.39062deg) skewY(0.39062deg);
2298
- transform: skewX(0.39062deg) skewY(0.39062deg); }
2299
- 88.8% {
2300
- -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
2301
- transform: skewX(-0.19531deg) skewY(-0.19531deg); } }
2302
- .brz .jello {
2303
- -webkit-animation-name: jello;
2304
- animation-name: jello;
2305
- -webkit-transform-origin: center;
2306
- transform-origin: center; }
2307
-
2308
- @-webkit-keyframes heartBeat {
2309
- 0% {
2310
- -webkit-transform: scale(1);
2311
- transform: scale(1); }
2312
- 14% {
2313
- -webkit-transform: scale(1.3);
2314
- transform: scale(1.3); }
2315
- 28% {
2316
- -webkit-transform: scale(1);
2317
- transform: scale(1); }
2318
- 42% {
2319
- -webkit-transform: scale(1.3);
2320
- transform: scale(1.3); }
2321
- 70% {
2322
- -webkit-transform: scale(1);
2323
- transform: scale(1); } }
2324
-
2325
- @keyframes heartBeat {
2326
- 0% {
2327
- -webkit-transform: scale(1);
2328
- transform: scale(1); }
2329
- 14% {
2330
- -webkit-transform: scale(1.3);
2331
- transform: scale(1.3); }
2332
- 28% {
2333
- -webkit-transform: scale(1);
2334
- transform: scale(1); }
2335
- 42% {
2336
- -webkit-transform: scale(1.3);
2337
- transform: scale(1.3); }
2338
- 70% {
2339
- -webkit-transform: scale(1);
2340
- transform: scale(1); } }
2341
- .brz .heartBeat {
2342
- -webkit-animation-name: heartBeat;
2343
- animation-name: heartBeat;
2344
- -webkit-animation-duration: 1.3s;
2345
- animation-duration: 1.3s;
2346
- -webkit-animation-timing-function: ease-in-out;
2347
- animation-timing-function: ease-in-out; }
2348
-
2349
- @-webkit-keyframes bounceIn {
2350
- from,
2351
- 20%,
2352
- 40%,
2353
- 60%,
2354
- 80%,
2355
- to {
2356
- -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
2357
- animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
2358
- 0% {
2359
- opacity: 0;
2360
- -webkit-transform: scale3d(0.3, 0.3, 0.3);
2361
- transform: scale3d(0.3, 0.3, 0.3); }
2362
- 20% {
2363
- -webkit-transform: scale3d(1.1, 1.1, 1.1);
2364
- transform: scale3d(1.1, 1.1, 1.1); }
2365
- 40% {
2366
- -webkit-transform: scale3d(0.9, 0.9, 0.9);
2367
- transform: scale3d(0.9, 0.9, 0.9); }
2368
- 60% {
2369
- opacity: 1;
2370
- -webkit-transform: scale3d(1.03, 1.03, 1.03);
2371
- transform: scale3d(1.03, 1.03, 1.03); }
2372
- 80% {
2373
- -webkit-transform: scale3d(0.97, 0.97, 0.97);
2374
- transform: scale3d(0.97, 0.97, 0.97); }
2375
- to {
2376
- opacity: 1;
2377
- -webkit-transform: scale3d(1, 1, 1);
2378
- transform: scale3d(1, 1, 1); } }
2379
-
2380
- @keyframes bounceIn {
2381
- from,
2382
- 20%,
2383
- 40%,
2384
- 60%,
2385
- 80%,
2386
- to {
2387
- -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
2388
- animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
2389
- 0% {
2390
- opacity: 0;
2391
- -webkit-transform: scale3d(0.3, 0.3, 0.3);
2392
- transform: scale3d(0.3, 0.3, 0.3); }
2393
- 20% {
2394
- -webkit-transform: scale3d(1.1, 1.1, 1.1);
2395
- transform: scale3d(1.1, 1.1, 1.1); }
2396
- 40% {
2397
- -webkit-transform: scale3d(0.9, 0.9, 0.9);
2398
- transform: scale3d(0.9, 0.9, 0.9); }
2399
- 60% {
2400
- opacity: 1;
2401
- -webkit-transform: scale3d(1.03, 1.03, 1.03);
2402
- transform: scale3d(1.03, 1.03, 1.03); }
2403
- 80% {
2404
- -webkit-transform: scale3d(0.97, 0.97, 0.97);
2405
- transform: scale3d(0.97, 0.97, 0.97); }
2406
- to {
2407
- opacity: 1;
2408
- -webkit-transform: scale3d(1, 1, 1);
2409
- transform: scale3d(1, 1, 1); } }
2410
- .brz .bounceIn {
2411
- -webkit-animation-duration: 0.75s;
2412
- animation-duration: 0.75s;
2413
- -webkit-animation-name: bounceIn;
2414
- animation-name: bounceIn; }
2415
-
2416
- @-webkit-keyframes bounceInDown {
2417
- from,
2418
- 60%,
2419
- 75%,
2420
- 90%,
2421
- to {
2422
- -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
2423
- animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
2424
- 0% {
2425
- opacity: 0;
2426
- -webkit-transform: translate3d(0, -3000px, 0);
2427
- transform: translate3d(0, -3000px, 0); }
2428
- 60% {
2429
- opacity: 1;
2430
- -webkit-transform: translate3d(0, 25px, 0);
2431
- transform: translate3d(0, 25px, 0); }
2432
- 75% {
2433
- -webkit-transform: translate3d(0, -10px, 0);
2434
- transform: translate3d(0, -10px, 0); }
2435
- 90% {
2436
- -webkit-transform: translate3d(0, 5px, 0);
2437
- transform: translate3d(0, 5px, 0); }
2438
- to {
2439
- -webkit-transform: translate3d(0, 0, 0);
2440
- transform: translate3d(0, 0, 0); } }
2441
-
2442
- @keyframes bounceInDown {
2443
- from,
2444
- 60%,
2445
- 75%,
2446
- 90%,
2447
- to {
2448
- -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
2449
- animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
2450
- 0% {
2451
- opacity: 0;
2452
- -webkit-transform: translate3d(0, -3000px, 0);
2453
- transform: translate3d(0, -3000px, 0); }
2454
- 60% {
2455
- opacity: 1;
2456
- -webkit-transform: translate3d(0, 25px, 0);
2457
- transform: translate3d(0, 25px, 0); }
2458
- 75% {
2459
- -webkit-transform: translate3d(0, -10px, 0);
2460
- transform: translate3d(0, -10px, 0); }
2461
- 90% {
2462
- -webkit-transform: translate3d(0, 5px, 0);
2463
- transform: translate3d(0, 5px, 0); }
2464
- to {
2465
- -webkit-transform: translate3d(0, 0, 0);
2466
- transform: translate3d(0, 0, 0); } }
2467
- .brz .bounceInDown {
2468
- -webkit-animation-name: bounceInDown;
2469
- animation-name: bounceInDown; }
2470
-
2471
- @-webkit-keyframes bounceInLeft {
2472
- from,
2473
- 60%,
2474
- 75%,
2475
- 90%,
2476
- to {
2477
- -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
2478
- animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
2479
- 0% {
2480
- opacity: 0;
2481
- -webkit-transform: translate3d(-3000px, 0, 0);
2482
- transform: translate3d(-3000px, 0, 0); }
2483
- 60% {
2484
- opacity: 1;
2485
- -webkit-transform: translate3d(25px, 0, 0);
2486
- transform: translate3d(25px, 0, 0); }
2487
- 75% {
2488
- -webkit-transform: translate3d(-10px, 0, 0);
2489
- transform: translate3d(-10px, 0, 0); }
2490
- 90% {
2491
- -webkit-transform: translate3d(5px, 0, 0);
2492
- transform: translate3d(5px, 0, 0); }
2493
- to {
2494
- -webkit-transform: translate3d(0, 0, 0);
2495
- transform: translate3d(0, 0, 0); } }
2496
-
2497
- @keyframes bounceInLeft {
2498
- from,
2499
- 60%,
2500
- 75%,
2501
- 90%,
2502
- to {
2503
- -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
2504
- animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
2505
- 0% {
2506
- opacity: 0;
2507
- -webkit-transform: translate3d(-3000px, 0, 0);
2508
- transform: translate3d(-3000px, 0, 0); }
2509
- 60% {
2510
- opacity: 1;
2511
- -webkit-transform: translate3d(25px, 0, 0);
2512
- transform: translate3d(25px, 0, 0); }
2513
- 75% {
2514
- -webkit-transform: translate3d(-10px, 0, 0);
2515
- transform: translate3d(-10px, 0, 0); }
2516
- 90% {
2517
- -webkit-transform: translate3d(5px, 0, 0);
2518
- transform: translate3d(5px, 0, 0); }
2519
- to {
2520
- -webkit-transform: translate3d(0, 0, 0);
2521
- transform: translate3d(0, 0, 0); } }
2522
- .brz .bounceInLeft {
2523
- -webkit-animation-name: bounceInLeft;
2524
- animation-name: bounceInLeft; }
2525
-
2526
- @-webkit-keyframes bounceInRight {
2527
- from,
2528
- 60%,
2529
- 75%,
2530
- 90%,
2531
- to {
2532
- -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
2533
- animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
2534
- from {
2535
- opacity: 0;
2536
- -webkit-transform: translate3d(3000px, 0, 0);
2537
- transform: translate3d(3000px, 0, 0); }
2538
- 60% {
2539
- opacity: 1;
2540
- -webkit-transform: translate3d(-25px, 0, 0);
2541
- transform: translate3d(-25px, 0, 0); }
2542
- 75% {
2543
- -webkit-transform: translate3d(10px, 0, 0);
2544
- transform: translate3d(10px, 0, 0); }
2545
- 90% {
2546
- -webkit-transform: translate3d(-5px, 0, 0);
2547
- transform: translate3d(-5px, 0, 0); }
2548
- to {
2549
- -webkit-transform: translate3d(0, 0, 0);
2550
- transform: translate3d(0, 0, 0); } }
2551
-
2552
- @keyframes bounceInRight {
2553
- from,
2554
- 60%,
2555
- 75%,
2556
- 90%,
2557
- to {
2558
- -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
2559
- animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
2560
- from {
2561
- opacity: 0;
2562
- -webkit-transform: translate3d(3000px, 0, 0);
2563
- transform: translate3d(3000px, 0, 0); }
2564
- 60% {
2565
- opacity: 1;
2566
- -webkit-transform: translate3d(-25px, 0, 0);
2567
- transform: translate3d(-25px, 0, 0); }
2568
- 75% {
2569
- -webkit-transform: translate3d(10px, 0, 0);
2570
- transform: translate3d(10px, 0, 0); }
2571
- 90% {
2572
- -webkit-transform: translate3d(-5px, 0, 0);
2573
- transform: translate3d(-5px, 0, 0); }
2574
- to {
2575
- -webkit-transform: translate3d(0, 0, 0);
2576
- transform: translate3d(0, 0, 0); } }
2577
- .brz .bounceInRight {
2578
- -webkit-animation-name: bounceInRight;
2579
- animation-name: bounceInRight; }
2580
-
2581
- @-webkit-keyframes bounceInUp {
2582
- from,
2583
- 60%,
2584
- 75%,
2585
- 90%,
2586
- to {
2587
- -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
2588
- animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
2589
- from {
2590
- opacity: 0;
2591
- -webkit-transform: translate3d(0, 3000px, 0);
2592
- transform: translate3d(0, 3000px, 0); }
2593
- 60% {
2594
- opacity: 1;
2595
- -webkit-transform: translate3d(0, -20px, 0);
2596
- transform: translate3d(0, -20px, 0); }
2597
- 75% {
2598
- -webkit-transform: translate3d(0, 10px, 0);
2599
- transform: translate3d(0, 10px, 0); }
2600
- 90% {
2601
- -webkit-transform: translate3d(0, -5px, 0);
2602
- transform: translate3d(0, -5px, 0); }
2603
- to {
2604
- -webkit-transform: translate3d(0, 0, 0);
2605
- transform: translate3d(0, 0, 0); } }
2606
-
2607
- @keyframes bounceInUp {
2608
- from,
2609
- 60%,
2610
- 75%,
2611
- 90%,
2612
- to {
2613
- -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
2614
- animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
2615
- from {
2616
- opacity: 0;
2617
- -webkit-transform: translate3d(0, 3000px, 0);
2618
- transform: translate3d(0, 3000px, 0); }
2619
- 60% {
2620
- opacity: 1;
2621
- -webkit-transform: translate3d(0, -20px, 0);
2622
- transform: translate3d(0, -20px, 0); }
2623
- 75% {
2624
- -webkit-transform: translate3d(0, 10px, 0);
2625
- transform: translate3d(0, 10px, 0); }
2626
- 90% {
2627
- -webkit-transform: translate3d(0, -5px, 0);
2628
- transform: translate3d(0, -5px, 0); }
2629
- to {
2630
- -webkit-transform: translate3d(0, 0, 0);
2631
- transform: translate3d(0, 0, 0); } }
2632
- .brz .bounceInUp {
2633
- -webkit-animation-name: bounceInUp;
2634
- animation-name: bounceInUp; }
2635
-
2636
- @-webkit-keyframes bounceOut {
2637
- 20% {
2638
- -webkit-transform: scale3d(0.9, 0.9, 0.9);
2639
- transform: scale3d(0.9, 0.9, 0.9); }
2640
- 50%,
2641
- 55% {
2642
- opacity: 1;
2643
- -webkit-transform: scale3d(1.1, 1.1, 1.1);
2644
- transform: scale3d(1.1, 1.1, 1.1); }
2645
- to {
2646
- opacity: 0;
2647
- -webkit-transform: scale3d(0.3, 0.3, 0.3);
2648
- transform: scale3d(0.3, 0.3, 0.3); } }
2649
-
2650
- @keyframes bounceOut {
2651
- 20% {
2652
- -webkit-transform: scale3d(0.9, 0.9, 0.9);
2653
- transform: scale3d(0.9, 0.9, 0.9); }
2654
- 50%,
2655
- 55% {
2656
- opacity: 1;
2657
- -webkit-transform: scale3d(1.1, 1.1, 1.1);
2658
- transform: scale3d(1.1, 1.1, 1.1); }
2659
- to {
2660
- opacity: 0;
2661
- -webkit-transform: scale3d(0.3, 0.3, 0.3);
2662
- transform: scale3d(0.3, 0.3, 0.3); } }
2663
- .brz .bounceOut {
2664
- -webkit-animation-duration: 0.75s;
2665
- animation-duration: 0.75s;
2666
- -webkit-animation-name: bounceOut;
2667
- animation-name: bounceOut; }
2668
-
2669
- @-webkit-keyframes bounceOutDown {
2670
- 20% {
2671
- -webkit-transform: translate3d(0, 10px, 0);
2672
- transform: translate3d(0, 10px, 0); }
2673
- 40%,
2674
- 45% {
2675
- opacity: 1;
2676
- -webkit-transform: translate3d(0, -20px, 0);
2677
- transform: translate3d(0, -20px, 0); }
2678
- to {
2679
- opacity: 0;
2680
- -webkit-transform: translate3d(0, 2000px, 0);
2681
- transform: translate3d(0, 2000px, 0); } }
2682
-
2683
- @keyframes bounceOutDown {
2684
- 20% {
2685
- -webkit-transform: translate3d(0, 10px, 0);
2686
- transform: translate3d(0, 10px, 0); }
2687
- 40%,
2688
- 45% {
2689
- opacity: 1;
2690
- -webkit-transform: translate3d(0, -20px, 0);
2691
- transform: translate3d(0, -20px, 0); }
2692
- to {
2693
- opacity: 0;
2694
- -webkit-transform: translate3d(0, 2000px, 0);
2695
- transform: translate3d(0, 2000px, 0); } }
2696
- .brz .bounceOutDown {
2697
- -webkit-animation-name: bounceOutDown;
2698
- animation-name: bounceOutDown; }
2699
-
2700
- @-webkit-keyframes bounceOutLeft {
2701
- 20% {
2702
- opacity: 1;
2703
- -webkit-transform: translate3d(20px, 0, 0);
2704
- transform: translate3d(20px, 0, 0); }
2705
- to {
2706
- opacity: 0;
2707
- -webkit-transform: translate3d(-2000px, 0, 0);
2708
- transform: translate3d(-2000px, 0, 0); } }
2709
-
2710
- @keyframes bounceOutLeft {
2711
- 20% {
2712
- opacity: 1;
2713
- -webkit-transform: translate3d(20px, 0, 0);
2714
- transform: translate3d(20px, 0, 0); }
2715
- to {
2716
- opacity: 0;
2717
- -webkit-transform: translate3d(-2000px, 0, 0);
2718
- transform: translate3d(-2000px, 0, 0); } }
2719
- .brz .bounceOutLeft {
2720
- -webkit-animation-name: bounceOutLeft;
2721
- animation-name: bounceOutLeft; }
2722
-
2723
- @-webkit-keyframes bounceOutRight {
2724
- 20% {
2725
- opacity: 1;
2726
- -webkit-transform: translate3d(-20px, 0, 0);
2727
- transform: translate3d(-20px, 0, 0); }
2728
- to {
2729
- opacity: 0;
2730
- -webkit-transform: translate3d(2000px, 0, 0);
2731
- transform: translate3d(2000px, 0, 0); } }
2732
-
2733
- @keyframes bounceOutRight {
2734
- 20% {
2735
- opacity: 1;
2736
- -webkit-transform: translate3d(-20px, 0, 0);
2737
- transform: translate3d(-20px, 0, 0); }
2738
- to {
2739
- opacity: 0;
2740
- -webkit-transform: translate3d(2000px, 0, 0);
2741
- transform: translate3d(2000px, 0, 0); } }
2742
- .brz .bounceOutRight {
2743
- -webkit-animation-name: bounceOutRight;
2744
- animation-name: bounceOutRight; }
2745
-
2746
- @-webkit-keyframes bounceOutUp {
2747
- 20% {
2748
- -webkit-transform: translate3d(0, -10px, 0);
2749
- transform: translate3d(0, -10px, 0); }
2750
- 40%,
2751
- 45% {
2752
- opacity: 1;
2753
- -webkit-transform: translate3d(0, 20px, 0);
2754
- transform: translate3d(0, 20px, 0); }
2755
- to {
2756
- opacity: 0;
2757
- -webkit-transform: translate3d(0, -2000px, 0);
2758
- transform: translate3d(0, -2000px, 0); } }
2759
-
2760
- @keyframes bounceOutUp {
2761
- 20% {
2762
- -webkit-transform: translate3d(0, -10px, 0);
2763
- transform: translate3d(0, -10px, 0); }
2764
- 40%,
2765
- 45% {
2766
- opacity: 1;
2767
- -webkit-transform: translate3d(0, 20px, 0);
2768
- transform: translate3d(0, 20px, 0); }
2769
- to {
2770
- opacity: 0;
2771
- -webkit-transform: translate3d(0, -2000px, 0);
2772
- transform: translate3d(0, -2000px, 0); } }
2773
- .brz .bounceOutUp {
2774
- -webkit-animation-name: bounceOutUp;
2775
- animation-name: bounceOutUp; }
2776
-
2777
- @-webkit-keyframes fadeIn {
2778
- from {
2779
- opacity: 0; }
2780
- to {
2781
- opacity: 1; } }
2782
-
2783
- @keyframes fadeIn {
2784
- from {
2785
- opacity: 0; }
2786
- to {
2787
- opacity: 1; } }
2788
- .brz .fadeIn {
2789
- -webkit-animation-name: fadeIn;
2790
- animation-name: fadeIn; }
2791
-
2792
- @-webkit-keyframes fadeInDown {
2793
- from {
2794
- opacity: 0;
2795
- -webkit-transform: translate3d(0, -100%, 0);
2796
- transform: translate3d(0, -100%, 0); }
2797
- to {
2798
- opacity: 1;
2799
- -webkit-transform: translate3d(0, 0, 0);
2800
- transform: translate3d(0, 0, 0); } }
2801
-
2802
- @keyframes fadeInDown {
2803
- from {
2804
- opacity: 0;
2805
- -webkit-transform: translate3d(0, -100%, 0);
2806
- transform: translate3d(0, -100%, 0); }
2807
- to {
2808
- opacity: 1;
2809
- -webkit-transform: translate3d(0, 0, 0);
2810
- transform: translate3d(0, 0, 0); } }
2811
- .brz .fadeInDown {
2812
- -webkit-animation-name: fadeInDown;
2813
- animation-name: fadeInDown; }
2814
-
2815
- @-webkit-keyframes fadeInDownBig {
2816
- from {
2817
- opacity: 0;
2818
- -webkit-transform: translate3d(0, -2000px, 0);
2819
- transform: translate3d(0, -2000px, 0); }
2820
- to {
2821
- opacity: 1;
2822
- -webkit-transform: translate3d(0, 0, 0);
2823
- transform: translate3d(0, 0, 0); } }
2824
-
2825
- @keyframes fadeInDownBig {
2826
- from {
2827
- opacity: 0;
2828
- -webkit-transform: translate3d(0, -2000px, 0);
2829
- transform: translate3d(0, -2000px, 0); }
2830
- to {
2831
- opacity: 1;
2832
- -webkit-transform: translate3d(0, 0, 0);
2833
- transform: translate3d(0, 0, 0); } }
2834
- .brz .fadeInDownBig {
2835
- -webkit-animation-name: fadeInDownBig;
2836
- animation-name: fadeInDownBig; }
2837
-
2838
- @-webkit-keyframes fadeInLeft {
2839
- from {
2840
- opacity: 0;
2841
- -webkit-transform: translate3d(-100%, 0, 0);
2842
- transform: translate3d(-100%, 0, 0); }
2843
- to {
2844
- opacity: 1;
2845
- -webkit-transform: translate3d(0, 0, 0);
2846
- transform: translate3d(0, 0, 0); } }
2847
-
2848
- @keyframes fadeInLeft {
2849
- from {
2850
- opacity: 0;
2851
- -webkit-transform: translate3d(-100%, 0, 0);
2852
- transform: translate3d(-100%, 0, 0); }
2853
- to {
2854
- opacity: 1;
2855
- -webkit-transform: translate3d(0, 0, 0);
2856
- transform: translate3d(0, 0, 0); } }
2857
- .brz .fadeInLeft {
2858
- -webkit-animation-name: fadeInLeft;
2859
- animation-name: fadeInLeft; }
2860
-
2861
- @-webkit-keyframes fadeInLeftBig {
2862
- from {
2863
- opacity: 0;
2864
- -webkit-transform: translate3d(-2000px, 0, 0);
2865
- transform: translate3d(-2000px, 0, 0); }
2866
- to {
2867
- opacity: 1;
2868
- -webkit-transform: translate3d(0, 0, 0);
2869
- transform: translate3d(0, 0, 0); } }
2870
-
2871
- @keyframes fadeInLeftBig {
2872
- from {
2873
- opacity: 0;
2874
- -webkit-transform: translate3d(-2000px, 0, 0);
2875
- transform: translate3d(-2000px, 0, 0); }
2876
- to {
2877
- opacity: 1;
2878
- -webkit-transform: translate3d(0, 0, 0);
2879
- transform: translate3d(0, 0, 0); } }
2880
- .brz .fadeInLeftBig {
2881
- -webkit-animation-name: fadeInLeftBig;
2882
- animation-name: fadeInLeftBig; }
2883
-
2884
- @-webkit-keyframes fadeInRight {
2885
- from {
2886
- opacity: 0;
2887
- -webkit-transform: translate3d(100%, 0, 0);
2888
- transform: translate3d(100%, 0, 0); }
2889
- to {
2890
- opacity: 1;
2891
- -webkit-transform: translate3d(0, 0, 0);
2892
- transform: translate3d(0, 0, 0); } }
2893
-
2894
- @keyframes fadeInRight {
2895
- from {
2896
- opacity: 0;
2897
- -webkit-transform: translate3d(100%, 0, 0);
2898
- transform: translate3d(100%, 0, 0); }
2899
- to {
2900
- opacity: 1;
2901
- -webkit-transform: translate3d(0, 0, 0);
2902
- transform: translate3d(0, 0, 0); } }
2903
- .brz .fadeInRight {
2904
- -webkit-animation-name: fadeInRight;
2905
- animation-name: fadeInRight; }
2906
-
2907
- @-webkit-keyframes fadeInRightBig {
2908
- from {
2909
- opacity: 0;
2910
- -webkit-transform: translate3d(2000px, 0, 0);
2911
- transform: translate3d(2000px, 0, 0); }
2912
- to {
2913
- opacity: 1;
2914
- -webkit-transform: translate3d(0, 0, 0);
2915
- transform: translate3d(0, 0, 0); } }
2916
-
2917
- @keyframes fadeInRightBig {
2918
- from {
2919
- opacity: 0;
2920
- -webkit-transform: translate3d(2000px, 0, 0);
2921
- transform: translate3d(2000px, 0, 0); }
2922
- to {
2923
- opacity: 1;
2924
- -webkit-transform: translate3d(0, 0, 0);
2925
- transform: translate3d(0, 0, 0); } }
2926
- .brz .fadeInRightBig {
2927
- -webkit-animation-name: fadeInRightBig;
2928
- animation-name: fadeInRightBig; }
2929
-
2930
- @-webkit-keyframes fadeInUp {
2931
- from {
2932
- opacity: 0;
2933
- -webkit-transform: translate3d(0, 100%, 0);
2934
- transform: translate3d(0, 100%, 0); }
2935
- to {
2936
- opacity: 1;
2937
- -webkit-transform: translate3d(0, 0, 0);
2938
- transform: translate3d(0, 0, 0); } }
2939
-
2940
- @keyframes fadeInUp {
2941
- from {
2942
- opacity: 0;
2943
- -webkit-transform: translate3d(0, 100%, 0);
2944
- transform: translate3d(0, 100%, 0); }
2945
- to {
2946
- opacity: 1;
2947
- -webkit-transform: translate3d(0, 0, 0);
2948
- transform: translate3d(0, 0, 0); } }
2949
- .brz .fadeInUp {
2950
- -webkit-animation-name: fadeInUp;
2951
- animation-name: fadeInUp; }
2952
-
2953
- @-webkit-keyframes fadeInUpBig {
2954
- from {
2955
- opacity: 0;
2956
- -webkit-transform: translate3d(0, 2000px, 0);
2957
- transform: translate3d(0, 2000px, 0); }
2958
- to {
2959
- opacity: 1;
2960
- -webkit-transform: translate3d(0, 0, 0);
2961
- transform: translate3d(0, 0, 0); } }
2962
-
2963
- @keyframes fadeInUpBig {
2964
- from {
2965
- opacity: 0;
2966
- -webkit-transform: translate3d(0, 2000px, 0);
2967
- transform: translate3d(0, 2000px, 0); }
2968
- to {
2969
- opacity: 1;
2970
- -webkit-transform: translate3d(0, 0, 0);
2971
- transform: translate3d(0, 0, 0); } }
2972
- .brz .fadeInUpBig {
2973
- -webkit-animation-name: fadeInUpBig;
2974
- animation-name: fadeInUpBig; }
2975
-
2976
- @-webkit-keyframes fadeOut {
2977
- from {
2978
- opacity: 1; }
2979
- to {
2980
- opacity: 0; } }
2981
-
2982
- @keyframes fadeOut {
2983
- from {
2984
- opacity: 1; }
2985
- to {
2986
- opacity: 0; } }
2987
- .brz .fadeOut {
2988
- -webkit-animation-name: fadeOut;
2989
- animation-name: fadeOut; }
2990
-
2991
- @-webkit-keyframes fadeOutDown {
2992
- from {
2993
- opacity: 1; }
2994
- to {
2995
- opacity: 0;
2996
- -webkit-transform: translate3d(0, 100%, 0);
2997
- transform: translate3d(0, 100%, 0); } }
2998
-
2999
- @keyframes fadeOutDown {
3000
- from {
3001
- opacity: 1; }
3002
- to {
3003
- opacity: 0;
3004
- -webkit-transform: translate3d(0, 100%, 0);
3005
- transform: translate3d(0, 100%, 0); } }
3006
- .brz .fadeOutDown {
3007
- -webkit-animation-name: fadeOutDown;
3008
- animation-name: fadeOutDown; }
3009
-
3010
- @-webkit-keyframes fadeOutDownBig {
3011
- from {
3012
- opacity: 1; }
3013
- to {
3014
- opacity: 0;
3015
- -webkit-transform: translate3d(0, 2000px, 0);
3016
- transform: translate3d(0, 2000px, 0); } }
3017
-
3018
- @keyframes fadeOutDownBig {
3019
- from {
3020
- opacity: 1; }
3021
- to {
3022
- opacity: 0;
3023
- -webkit-transform: translate3d(0, 2000px, 0);
3024
- transform: translate3d(0, 2000px, 0); } }
3025
- .brz .fadeOutDownBig {
3026
- -webkit-animation-name: fadeOutDownBig;
3027
- animation-name: fadeOutDownBig; }
3028
-
3029
- @-webkit-keyframes fadeOutLeft {
3030
- from {
3031
- opacity: 1; }
3032
- to {
3033
- opacity: 0;
3034
- -webkit-transform: translate3d(-100%, 0, 0);
3035
- transform: translate3d(-100%, 0, 0); } }
3036
-
3037
- @keyframes fadeOutLeft {
3038
- from {
3039
- opacity: 1; }
3040
- to {
3041
- opacity: 0;
3042
- -webkit-transform: translate3d(-100%, 0, 0);
3043
- transform: translate3d(-100%, 0, 0); } }
3044
- .brz .fadeOutLeft {
3045
- -webkit-animation-name: fadeOutLeft;
3046
- animation-name: fadeOutLeft; }
3047
-
3048
- @-webkit-keyframes fadeOutLeftBig {
3049
- from {
3050
- opacity: 1; }
3051
- to {
3052
- opacity: 0;
3053
- -webkit-transform: translate3d(-2000px, 0, 0);
3054
- transform: translate3d(-2000px, 0, 0); } }
3055
-
3056
- @keyframes fadeOutLeftBig {
3057
- from {
3058
- opacity: 1; }
3059
- to {
3060
- opacity: 0;
3061
- -webkit-transform: translate3d(-2000px, 0, 0);
3062
- transform: translate3d(-2000px, 0, 0); } }
3063
- .brz .fadeOutLeftBig {
3064
- -webkit-animation-name: fadeOutLeftBig;
3065
- animation-name: fadeOutLeftBig; }
3066
-
3067
- @-webkit-keyframes fadeOutRight {
3068
- from {
3069
- opacity: 1; }
3070
- to {
3071
- opacity: 0;
3072
- -webkit-transform: translate3d(100%, 0, 0);
3073
- transform: translate3d(100%, 0, 0); } }
3074
-
3075
- @keyframes fadeOutRight {
3076
- from {
3077
- opacity: 1; }
3078
- to {
3079
- opacity: 0;
3080
- -webkit-transform: translate3d(100%, 0, 0);
3081
- transform: translate3d(100%, 0, 0); } }
3082
- .brz .fadeOutRight {
3083
- -webkit-animation-name: fadeOutRight;
3084
- animation-name: fadeOutRight; }
3085
-
3086
- @-webkit-keyframes fadeOutRightBig {
3087
- from {
3088
- opacity: 1; }
3089
- to {
3090
- opacity: 0;
3091
- -webkit-transform: translate3d(2000px, 0, 0);
3092
- transform: translate3d(2000px, 0, 0); } }
3093
-
3094
- @keyframes fadeOutRightBig {
3095
- from {
3096
- opacity: 1; }
3097
- to {
3098
- opacity: 0;
3099
- -webkit-transform: translate3d(2000px, 0, 0);
3100
- transform: translate3d(2000px, 0, 0); } }
3101
- .brz .fadeOutRightBig {
3102
- -webkit-animation-name: fadeOutRightBig;
3103
- animation-name: fadeOutRightBig; }
3104
-
3105
- @-webkit-keyframes fadeOutUp {
3106
- from {
3107
- opacity: 1; }
3108
- to {
3109
- opacity: 0;
3110
- -webkit-transform: translate3d(0, -100%, 0);
3111
- transform: translate3d(0, -100%, 0); } }
3112
-
3113
- @keyframes fadeOutUp {
3114
- from {
3115
- opacity: 1; }
3116
- to {
3117
- opacity: 0;
3118
- -webkit-transform: translate3d(0, -100%, 0);
3119
- transform: translate3d(0, -100%, 0); } }
3120
- .brz .fadeOutUp {
3121
- -webkit-animation-name: fadeOutUp;
3122
- animation-name: fadeOutUp; }
3123
-
3124
- @-webkit-keyframes fadeOutUpBig {
3125
- from {
3126
- opacity: 1; }
3127
- to {
3128
- opacity: 0;
3129
- -webkit-transform: translate3d(0, -2000px, 0);
3130
- transform: translate3d(0, -2000px, 0); } }
3131
-
3132
- @keyframes fadeOutUpBig {
3133
- from {
3134
- opacity: 1; }
3135
- to {
3136
- opacity: 0;
3137
- -webkit-transform: translate3d(0, -2000px, 0);
3138
- transform: translate3d(0, -2000px, 0); } }
3139
- .brz .fadeOutUpBig {
3140
- -webkit-animation-name: fadeOutUpBig;
3141
- animation-name: fadeOutUpBig; }
3142
-
3143
- @-webkit-keyframes flip {
3144
- from {
3145
- -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
3146
- transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
3147
- -webkit-animation-timing-function: ease-out;
3148
- animation-timing-function: ease-out; }
3149
- 40% {
3150
- -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
3151
- transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
3152
- -webkit-animation-timing-function: ease-out;
3153
- animation-timing-function: ease-out; }
3154
- 50% {
3155
- -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
3156
- transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
3157
- -webkit-animation-timing-function: ease-in;
3158
- animation-timing-function: ease-in; }
3159
- 80% {
3160
- -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
3161
- transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
3162
- -webkit-animation-timing-function: ease-in;
3163
- animation-timing-function: ease-in; }
3164
- to {
3165
- -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
3166
- transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
3167
- -webkit-animation-timing-function: ease-in;
3168
- animation-timing-function: ease-in; } }
3169
-
3170
- @keyframes flip {
3171
- from {
3172
- -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
3173
- transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
3174
- -webkit-animation-timing-function: ease-out;
3175
- animation-timing-function: ease-out; }
3176
- 40% {
3177
- -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
3178
- transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
3179
- -webkit-animation-timing-function: ease-out;
3180
- animation-timing-function: ease-out; }
3181
- 50% {
3182
- -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
3183
- transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
3184
- -webkit-animation-timing-function: ease-in;
3185
- animation-timing-function: ease-in; }
3186
- 80% {
3187
- -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
3188
- transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
3189
- -webkit-animation-timing-function: ease-in;
3190
- animation-timing-function: ease-in; }
3191
- to {
3192
- -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
3193
- transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
3194
- -webkit-animation-timing-function: ease-in;
3195
- animation-timing-function: ease-in; } }
3196
- .brz .animated.flip {
3197
- -webkit-backface-visibility: visible;
3198
- backface-visibility: visible;
3199
- -webkit-animation-name: flip;
3200
- animation-name: flip; }
3201
-
3202
- @-webkit-keyframes flipInX {
3203
- from {
3204
- -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
3205
- transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
3206
- -webkit-animation-timing-function: ease-in;
3207
- animation-timing-function: ease-in;
3208
- opacity: 0; }
3209
- 40% {
3210
- -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
3211
- transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
3212
- -webkit-animation-timing-function: ease-in;
3213
- animation-timing-function: ease-in; }
3214
- 60% {
3215
- -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
3216
- transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
3217
- opacity: 1; }
3218
- 80% {
3219
- -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
3220
- transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
3221
- to {
3222
- -webkit-transform: perspective(400px);
3223
- transform: perspective(400px); } }
3224
-
3225
- @keyframes flipInX {
3226
- from {
3227
- -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
3228
- transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
3229
- -webkit-animation-timing-function: ease-in;
3230
- animation-timing-function: ease-in;
3231
- opacity: 0; }
3232
- 40% {
3233
- -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
3234
- transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
3235
- -webkit-animation-timing-function: ease-in;
3236
- animation-timing-function: ease-in; }
3237
- 60% {
3238
- -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
3239
- transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
3240
- opacity: 1; }
3241
- 80% {
3242
- -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
3243
- transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
3244
- to {
3245
- -webkit-transform: perspective(400px);
3246
- transform: perspective(400px); } }
3247
- .brz .flipInX {
3248
- -webkit-backface-visibility: visible !important;
3249
- backface-visibility: visible !important;
3250
- -webkit-animation-name: flipInX;
3251
- animation-name: flipInX; }
3252
-
3253
- @-webkit-keyframes flipInY {
3254
- from {
3255
- -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
3256
- transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
3257
- -webkit-animation-timing-function: ease-in;
3258
- animation-timing-function: ease-in;
3259
- opacity: 0; }
3260
- 40% {
3261
- -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
3262
- transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
3263
- -webkit-animation-timing-function: ease-in;
3264
- animation-timing-function: ease-in; }
3265
- 60% {
3266
- -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
3267
- transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
3268
- opacity: 1; }
3269
- 80% {
3270
- -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
3271
- transform: perspective(400px) rotate3d(0, 1, 0, -5deg); }
3272
- to {
3273
- -webkit-transform: perspective(400px);
3274
- transform: perspective(400px); } }
3275
-
3276
- @keyframes flipInY {
3277
- from {
3278
- -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
3279
- transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
3280
- -webkit-animation-timing-function: ease-in;
3281
- animation-timing-function: ease-in;
3282
- opacity: 0; }
3283
- 40% {
3284
- -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
3285
- transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
3286
- -webkit-animation-timing-function: ease-in;
3287
- animation-timing-function: ease-in; }
3288
- 60% {
3289
- -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
3290
- transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
3291
- opacity: 1; }
3292
- 80% {
3293
- -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
3294
- transform: perspective(400px) rotate3d(0, 1, 0, -5deg); }
3295
- to {
3296
- -webkit-transform: perspective(400px);
3297
- transform: perspective(400px); } }
3298
- .brz .flipInY {
3299
- -webkit-backface-visibility: visible !important;
3300
- backface-visibility: visible !important;
3301
- -webkit-animation-name: flipInY;
3302
- animation-name: flipInY; }
3303
-
3304
- @-webkit-keyframes flipOutX {
3305
- from {
3306
- -webkit-transform: perspective(400px);
3307
- transform: perspective(400px); }
3308
- 30% {
3309
- -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
3310
- transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
3311
- opacity: 1; }
3312
- to {
3313
- -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
3314
- transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
3315
- opacity: 0; } }
3316
-
3317
- @keyframes flipOutX {
3318
- from {
3319
- -webkit-transform: perspective(400px);
3320
- transform: perspective(400px); }
3321
- 30% {
3322
- -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
3323
- transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
3324
- opacity: 1; }
3325
- to {
3326
- -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
3327
- transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
3328
- opacity: 0; } }
3329
- .brz .flipOutX {
3330
- -webkit-animation-duration: 0.75s;
3331
- animation-duration: 0.75s;
3332
- -webkit-animation-name: flipOutX;
3333
- animation-name: flipOutX;
3334
- -webkit-backface-visibility: visible !important;
3335
- backface-visibility: visible !important; }
3336
-
3337
- @-webkit-keyframes flipOutY {
3338
- from {
3339
- -webkit-transform: perspective(400px);
3340
- transform: perspective(400px); }
3341
- 30% {
3342
- -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
3343
- transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
3344
- opacity: 1; }
3345
- to {
3346
- -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
3347
- transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
3348
- opacity: 0; } }
3349
-
3350
- @keyframes flipOutY {
3351
- from {
3352
- -webkit-transform: perspective(400px);
3353
- transform: perspective(400px); }
3354
- 30% {
3355
- -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
3356
- transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
3357
- opacity: 1; }
3358
- to {
3359
- -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
3360
- transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
3361
- opacity: 0; } }
3362
- .brz .flipOutY {
3363
- -webkit-animation-duration: 0.75s;
3364
- animation-duration: 0.75s;
3365
- -webkit-backface-visibility: visible !important;
3366
- backface-visibility: visible !important;
3367
- -webkit-animation-name: flipOutY;
3368
- animation-name: flipOutY; }
3369
-
3370
- @-webkit-keyframes lightSpeedIn {
3371
- from {
3372
- -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
3373
- transform: translate3d(100%, 0, 0) skewX(-30deg);
3374
- opacity: 0; }
3375
- 60% {
3376
- -webkit-transform: skewX(20deg);
3377
- transform: skewX(20deg);
3378
- opacity: 1; }
3379
- 80% {
3380
- -webkit-transform: skewX(-5deg);
3381
- transform: skewX(-5deg); }
3382
- to {
3383
- -webkit-transform: translate3d(0, 0, 0);
3384
- transform: translate3d(0, 0, 0); } }
3385
-
3386
- @keyframes lightSpeedIn {
3387
- from {
3388
- -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
3389
- transform: translate3d(100%, 0, 0) skewX(-30deg);
3390
- opacity: 0; }
3391
- 60% {
3392
- -webkit-transform: skewX(20deg);
3393
- transform: skewX(20deg);
3394
- opacity: 1; }
3395
- 80% {
3396
- -webkit-transform: skewX(-5deg);
3397
- transform: skewX(-5deg); }
3398
- to {
3399
- -webkit-transform: translate3d(0, 0, 0);
3400
- transform: translate3d(0, 0, 0); } }
3401
- .brz .lightSpeedIn {
3402
- -webkit-animation-name: lightSpeedIn;
3403
- animation-name: lightSpeedIn;
3404
- -webkit-animation-timing-function: ease-out;
3405
- animation-timing-function: ease-out; }
3406
-
3407
- @-webkit-keyframes lightSpeedOut {
3408
- from {
3409
- opacity: 1; }
3410
- to {
3411
- -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
3412
- transform: translate3d(100%, 0, 0) skewX(30deg);
3413
- opacity: 0; } }
3414
-
3415
- @keyframes lightSpeedOut {
3416
- from {
3417
- opacity: 1; }
3418
- to {
3419
- -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
3420
- transform: translate3d(100%, 0, 0) skewX(30deg);
3421
- opacity: 0; } }
3422
- .brz .lightSpeedOut {
3423
- -webkit-animation-name: lightSpeedOut;
3424
- animation-name: lightSpeedOut;
3425
- -webkit-animation-timing-function: ease-in;
3426
- animation-timing-function: ease-in; }
3427
-
3428
- @-webkit-keyframes rotateIn {
3429
- from {
3430
- -webkit-transform-origin: center;
3431
- transform-origin: center;
3432
- -webkit-transform: rotate3d(0, 0, 1, -200deg);
3433
- transform: rotate3d(0, 0, 1, -200deg);
3434
- opacity: 0; }
3435
- to {
3436
- -webkit-transform-origin: center;
3437
- transform-origin: center;
3438
- -webkit-transform: translate3d(0, 0, 0);
3439
- transform: translate3d(0, 0, 0);
3440
- opacity: 1; } }
3441
-
3442
- @keyframes rotateIn {
3443
- from {
3444
- -webkit-transform-origin: center;
3445
- transform-origin: center;
3446
- -webkit-transform: rotate3d(0, 0, 1, -200deg);
3447
- transform: rotate3d(0, 0, 1, -200deg);
3448
- opacity: 0; }
3449
- to {
3450
- -webkit-transform-origin: center;
3451
- transform-origin: center;
3452
- -webkit-transform: translate3d(0, 0, 0);
3453
- transform: translate3d(0, 0, 0);
3454
- opacity: 1; } }
3455
- .brz .rotateIn {
3456
- -webkit-animation-name: rotateIn;
3457
- animation-name: rotateIn; }
3458
-
3459
- @-webkit-keyframes rotateInDownLeft {
3460
- from {
3461
- -webkit-transform-origin: left bottom;
3462
- transform-origin: left bottom;
3463
- -webkit-transform: rotate3d(0, 0, 1, -45deg);
3464
- transform: rotate3d(0, 0, 1, -45deg);
3465
- opacity: 0; }
3466
- to {
3467
- -webkit-transform-origin: left bottom;
3468
- transform-origin: left bottom;
3469
- -webkit-transform: translate3d(0, 0, 0);
3470
- transform: translate3d(0, 0, 0);
3471
- opacity: 1; } }
3472
-
3473
- @keyframes rotateInDownLeft {
3474
- from {
3475
- -webkit-transform-origin: left bottom;
3476
- transform-origin: left bottom;
3477
- -webkit-transform: rotate3d(0, 0, 1, -45deg);
3478
- transform: rotate3d(0, 0, 1, -45deg);
3479
- opacity: 0; }
3480
- to {
3481
- -webkit-transform-origin: left bottom;
3482
- transform-origin: left bottom;
3483
- -webkit-transform: translate3d(0, 0, 0);
3484
- transform: translate3d(0, 0, 0);
3485
- opacity: 1; } }
3486
- .brz .rotateInDownLeft {
3487
- -webkit-animation-name: rotateInDownLeft;
3488
- animation-name: rotateInDownLeft; }
3489
-
3490
- @-webkit-keyframes rotateInDownRight {
3491
- from {
3492
- -webkit-transform-origin: right bottom;
3493
- transform-origin: right bottom;
3494
- -webkit-transform: rotate3d(0, 0, 1, 45deg);
3495
- transform: rotate3d(0, 0, 1, 45deg);
3496
- opacity: 0; }
3497
- to {
3498
- -webkit-transform-origin: right bottom;
3499
- transform-origin: right bottom;
3500
- -webkit-transform: translate3d(0, 0, 0);
3501
- transform: translate3d(0, 0, 0);
3502
- opacity: 1; } }
3503
-
3504
- @keyframes rotateInDownRight {
3505
- from {
3506
- -webkit-transform-origin: right bottom;
3507
- transform-origin: right bottom;
3508
- -webkit-transform: rotate3d(0, 0, 1, 45deg);
3509
- transform: rotate3d(0, 0, 1, 45deg);
3510
- opacity: 0; }
3511
- to {
3512
- -webkit-transform-origin: right bottom;
3513
- transform-origin: right bottom;
3514
- -webkit-transform: translate3d(0, 0, 0);
3515
- transform: translate3d(0, 0, 0);
3516
- opacity: 1; } }
3517
- .brz .rotateInDownRight {
3518
- -webkit-animation-name: rotateInDownRight;
3519
- animation-name: rotateInDownRight; }
3520
-
3521
- @-webkit-keyframes rotateInUpLeft {
3522
- from {
3523
- -webkit-transform-origin: left bottom;
3524
- transform-origin: left bottom;
3525
- -webkit-transform: rotate3d(0, 0, 1, 45deg);
3526
- transform: rotate3d(0, 0, 1, 45deg);
3527
- opacity: 0; }
3528
- to {
3529
- -webkit-transform-origin: left bottom;
3530
- transform-origin: left bottom;
3531
- -webkit-transform: translate3d(0, 0, 0);
3532
- transform: translate3d(0, 0, 0);
3533
- opacity: 1; } }
3534
-
3535
- @keyframes rotateInUpLeft {
3536
- from {
3537
- -webkit-transform-origin: left bottom;
3538
- transform-origin: left bottom;
3539
- -webkit-transform: rotate3d(0, 0, 1, 45deg);
3540
- transform: rotate3d(0, 0, 1, 45deg);
3541
- opacity: 0; }
3542
- to {
3543
- -webkit-transform-origin: left bottom;
3544
- transform-origin: left bottom;
3545
- -webkit-transform: translate3d(0, 0, 0);
3546
- transform: translate3d(0, 0, 0);
3547
- opacity: 1; } }
3548
- .brz .rotateInUpLeft {
3549
- -webkit-animation-name: rotateInUpLeft;
3550
- animation-name: rotateInUpLeft; }
3551
-
3552
- @-webkit-keyframes rotateInUpRight {
3553
- from {
3554
- -webkit-transform-origin: right bottom;
3555
- transform-origin: right bottom;
3556
- -webkit-transform: rotate3d(0, 0, 1, -90deg);
3557
- transform: rotate3d(0, 0, 1, -90deg);
3558
- opacity: 0; }
3559
- to {
3560
- -webkit-transform-origin: right bottom;
3561
- transform-origin: right bottom;
3562
- -webkit-transform: translate3d(0, 0, 0);
3563
- transform: translate3d(0, 0, 0);
3564
- opacity: 1; } }
3565
-
3566
- @keyframes rotateInUpRight {
3567
- from {
3568
- -webkit-transform-origin: right bottom;
3569
- transform-origin: right bottom;
3570
- -webkit-transform: rotate3d(0, 0, 1, -90deg);
3571
- transform: rotate3d(0, 0, 1, -90deg);
3572
- opacity: 0; }
3573
- to {
3574
- -webkit-transform-origin: right bottom;
3575
- transform-origin: right bottom;
3576
- -webkit-transform: translate3d(0, 0, 0);
3577
- transform: translate3d(0, 0, 0);
3578
- opacity: 1; } }
3579
- .brz .rotateInUpRight {
3580
- -webkit-animation-name: rotateInUpRight;
3581
- animation-name: rotateInUpRight; }
3582
-
3583
- @-webkit-keyframes rotateOut {
3584
- from {
3585
- -webkit-transform-origin: center;
3586
- transform-origin: center;
3587
- opacity: 1; }
3588
- to {
3589
- -webkit-transform-origin: center;
3590
- transform-origin: center;
3591
- -webkit-transform: rotate3d(0, 0, 1, 200deg);
3592
- transform: rotate3d(0, 0, 1, 200deg);
3593
- opacity: 0; } }
3594
-
3595
- @keyframes rotateOut {
3596
- from {
3597
- -webkit-transform-origin: center;
3598
- transform-origin: center;
3599
- opacity: 1; }
3600
- to {
3601
- -webkit-transform-origin: center;
3602
- transform-origin: center;
3603
- -webkit-transform: rotate3d(0, 0, 1, 200deg);
3604
- transform: rotate3d(0, 0, 1, 200deg);
3605
- opacity: 0; } }
3606
- .brz .rotateOut {
3607
- -webkit-animation-name: rotateOut;
3608
- animation-name: rotateOut; }
3609
-
3610
- @-webkit-keyframes rotateOutDownLeft {
3611
- from {
3612
- -webkit-transform-origin: left bottom;
3613
- transform-origin: left bottom;
3614
- opacity: 1; }
3615
- to {
3616
- -webkit-transform-origin: left bottom;
3617
- transform-origin: left bottom;
3618
- -webkit-transform: rotate3d(0, 0, 1, 45deg);
3619
- transform: rotate3d(0, 0, 1, 45deg);
3620
- opacity: 0; } }
3621
-
3622
- @keyframes rotateOutDownLeft {
3623
- from {
3624
- -webkit-transform-origin: left bottom;
3625
- transform-origin: left bottom;
3626
- opacity: 1; }
3627
- to {
3628
- -webkit-transform-origin: left bottom;
3629
- transform-origin: left bottom;
3630
- -webkit-transform: rotate3d(0, 0, 1, 45deg);
3631
- transform: rotate3d(0, 0, 1, 45deg);
3632
- opacity: 0; } }
3633
- .brz .rotateOutDownLeft {
3634
- -webkit-animation-name: rotateOutDownLeft;
3635
- animation-name: rotateOutDownLeft; }
3636
-
3637
- @-webkit-keyframes rotateOutDownRight {
3638
- from {
3639
- -webkit-transform-origin: right bottom;
3640
- transform-origin: right bottom;
3641
- opacity: 1; }
3642
- to {
3643
- -webkit-transform-origin: right bottom;
3644
- transform-origin: right bottom;
3645
- -webkit-transform: rotate3d(0, 0, 1, -45deg);
3646
- transform: rotate3d(0, 0, 1, -45deg);
3647
- opacity: 0; } }
3648
-
3649
- @keyframes rotateOutDownRight {
3650
- from {
3651
- -webkit-transform-origin: right bottom;
3652
- transform-origin: right bottom;
3653
- opacity: 1; }
3654
- to {
3655
- -webkit-transform-origin: right bottom;
3656
- transform-origin: right bottom;
3657
- -webkit-transform: rotate3d(0, 0, 1, -45deg);
3658
- transform: rotate3d(0, 0, 1, -45deg);
3659
- opacity: 0; } }
3660
- .brz .rotateOutDownRight {
3661
- -webkit-animation-name: rotateOutDownRight;
3662
- animation-name: rotateOutDownRight; }
3663
-
3664
- @-webkit-keyframes rotateOutUpLeft {
3665
- from {
3666
- -webkit-transform-origin: left bottom;
3667
- transform-origin: left bottom;
3668
- opacity: 1; }
3669
- to {
3670
- -webkit-transform-origin: left bottom;
3671
- transform-origin: left bottom;
3672
- -webkit-transform: rotate3d(0, 0, 1, -45deg);
3673
- transform: rotate3d(0, 0, 1, -45deg);
3674
- opacity: 0; } }
3675
-
3676
- @keyframes rotateOutUpLeft {
3677
- from {
3678
- -webkit-transform-origin: left bottom;
3679
- transform-origin: left bottom;
3680
- opacity: 1; }
3681
- to {
3682
- -webkit-transform-origin: left bottom;
3683
- transform-origin: left bottom;
3684
- -webkit-transform: rotate3d(0, 0, 1, -45deg);
3685
- transform: rotate3d(0, 0, 1, -45deg);
3686
- opacity: 0; } }
3687
- .brz .rotateOutUpLeft {
3688
- -webkit-animation-name: rotateOutUpLeft;
3689
- animation-name: rotateOutUpLeft; }
3690
-
3691
- @-webkit-keyframes rotateOutUpRight {
3692
- from {
3693
- -webkit-transform-origin: right bottom;
3694
- transform-origin: right bottom;
3695
- opacity: 1; }
3696
- to {
3697
- -webkit-transform-origin: right bottom;
3698
- transform-origin: right bottom;
3699
- -webkit-transform: rotate3d(0, 0, 1, 90deg);
3700
- transform: rotate3d(0, 0, 1, 90deg);
3701
- opacity: 0; } }
3702
-
3703
- @keyframes rotateOutUpRight {
3704
- from {
3705
- -webkit-transform-origin: right bottom;
3706
- transform-origin: right bottom;
3707
- opacity: 1; }
3708
- to {
3709
- -webkit-transform-origin: right bottom;
3710
- transform-origin: right bottom;
3711
- -webkit-transform: rotate3d(0, 0, 1, 90deg);
3712
- transform: rotate3d(0, 0, 1, 90deg);
3713
- opacity: 0; } }
3714
- .brz .rotateOutUpRight {
3715
- -webkit-animation-name: rotateOutUpRight;
3716
- animation-name: rotateOutUpRight; }
3717
-
3718
- @-webkit-keyframes hinge {
3719
- 0% {
3720
- -webkit-transform-origin: top left;
3721
- transform-origin: top left;
3722
- -webkit-animation-timing-function: ease-in-out;
3723
- animation-timing-function: ease-in-out; }
3724
- 20%,
3725
- 60% {
3726
- -webkit-transform: rotate3d(0, 0, 1, 80deg);
3727
- transform: rotate3d(0, 0, 1, 80deg);
3728
- -webkit-transform-origin: top left;
3729
- transform-origin: top left;
3730
- -webkit-animation-timing-function: ease-in-out;
3731
- animation-timing-function: ease-in-out; }
3732
- 40%,
3733
- 80% {
3734
- -webkit-transform: rotate3d(0, 0, 1, 60deg);
3735
- transform: rotate3d(0, 0, 1, 60deg);
3736
- -webkit-transform-origin: top left;
3737
- transform-origin: top left;
3738
- -webkit-animation-timing-function: ease-in-out;
3739
- animation-timing-function: ease-in-out;
3740
- opacity: 1; }
3741
- to {
3742
- -webkit-transform: translate3d(0, 700px, 0);
3743
- transform: translate3d(0, 700px, 0);
3744
- opacity: 0; } }
3745
-
3746
- @keyframes hinge {
3747
- 0% {
3748
- -webkit-transform-origin: top left;
3749
- transform-origin: top left;
3750
- -webkit-animation-timing-function: ease-in-out;
3751
- animation-timing-function: ease-in-out; }
3752
- 20%,
3753
- 60% {
3754
- -webkit-transform: rotate3d(0, 0, 1, 80deg);
3755
- transform: rotate3d(0, 0, 1, 80deg);
3756
- -webkit-transform-origin: top left;
3757
- transform-origin: top left;
3758
- -webkit-animation-timing-function: ease-in-out;
3759
- animation-timing-function: ease-in-out; }
3760
- 40%,
3761
- 80% {
3762
- -webkit-transform: rotate3d(0, 0, 1, 60deg);
3763
- transform: rotate3d(0, 0, 1, 60deg);
3764
- -webkit-transform-origin: top left;
3765
- transform-origin: top left;
3766
- -webkit-animation-timing-function: ease-in-out;
3767
- animation-timing-function: ease-in-out;
3768
- opacity: 1; }
3769
- to {
3770
- -webkit-transform: translate3d(0, 700px, 0);
3771
- transform: translate3d(0, 700px, 0);
3772
- opacity: 0; } }
3773
- .brz .hinge {
3774
- -webkit-animation-duration: 2s;
3775
- animation-duration: 2s;
3776
- -webkit-animation-name: hinge;
3777
- animation-name: hinge; }
3778
-
3779
- @-webkit-keyframes jackInTheBox {
3780
- from {
3781
- opacity: 0;
3782
- -webkit-transform: scale(0.1) rotate(30deg);
3783
- transform: scale(0.1) rotate(30deg);
3784
- -webkit-transform-origin: center bottom;
3785
- transform-origin: center bottom; }
3786
- 50% {
3787
- -webkit-transform: rotate(-10deg);
3788
- transform: rotate(-10deg); }
3789
- 70% {
3790
- -webkit-transform: rotate(3deg);
3791
- transform: rotate(3deg); }
3792
- to {
3793
- opacity: 1;
3794
- -webkit-transform: scale(1);
3795
- transform: scale(1); } }
3796
-
3797
- @keyframes jackInTheBox {
3798
- from {
3799
- opacity: 0;
3800
- -webkit-transform: scale(0.1) rotate(30deg);
3801
- transform: scale(0.1) rotate(30deg);
3802
- -webkit-transform-origin: center bottom;
3803
- transform-origin: center bottom; }
3804
- 50% {
3805
- -webkit-transform: rotate(-10deg);
3806
- transform: rotate(-10deg); }
3807
- 70% {
3808
- -webkit-transform: rotate(3deg);
3809
- transform: rotate(3deg); }
3810
- to {
3811
- opacity: 1;
3812
- -webkit-transform: scale(1);
3813
- transform: scale(1); } }
3814
- .brz .jackInTheBox {
3815
- -webkit-animation-name: jackInTheBox;
3816
- animation-name: jackInTheBox; }
3817
-
3818
- @-webkit-keyframes rollIn {
3819
- from {
3820
- opacity: 0;
3821
- -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
3822
- transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }
3823
- to {
3824
- opacity: 1;
3825
- -webkit-transform: translate3d(0, 0, 0);
3826
- transform: translate3d(0, 0, 0); } }
3827
-
3828
- @keyframes rollIn {
3829
- from {
3830
- opacity: 0;
3831
- -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
3832
- transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }
3833
- to {
3834
- opacity: 1;
3835
- -webkit-transform: translate3d(0, 0, 0);
3836
- transform: translate3d(0, 0, 0); } }
3837
- .brz .rollIn {
3838
- -webkit-animation-name: rollIn;
3839
- animation-name: rollIn; }
3840
-
3841
- @-webkit-keyframes rollOut {
3842
- from {
3843
- opacity: 1; }
3844
- to {
3845
- opacity: 0;
3846
- -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
3847
- transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } }
3848
-
3849
- @keyframes rollOut {
3850
- from {
3851
- opacity: 1; }
3852
- to {
3853
- opacity: 0;
3854
- -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
3855
- transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } }
3856
- .brz .rollOut {
3857
- -webkit-animation-name: rollOut;
3858
- animation-name: rollOut; }
3859
-
3860
- @-webkit-keyframes zoomIn {
3861
- from {
3862
- opacity: 0;
3863
- -webkit-transform: scale3d(0.3, 0.3, 0.3);
3864
- transform: scale3d(0.3, 0.3, 0.3); }
3865
- 50% {
3866
- opacity: 1; } }
3867
-
3868
- @keyframes zoomIn {
3869
- from {
3870
- opacity: 0;
3871
- -webkit-transform: scale3d(0.3, 0.3, 0.3);
3872
- transform: scale3d(0.3, 0.3, 0.3); }
3873
- 50% {
3874
- opacity: 1; } }
3875
- .brz .zoomIn {
3876
- -webkit-animation-name: zoomIn;
3877
- animation-name: zoomIn; }
3878
-
3879
- @-webkit-keyframes zoomInDown {
3880
- from {
3881
- opacity: 0;
3882
- -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
3883
- transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
3884
- -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
3885
- animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
3886
- 60% {
3887
- opacity: 1;
3888
- -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
3889
- transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
3890
- -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
3891
- animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
3892
-
3893
- @keyframes zoomInDown {
3894
- from {
3895
- opacity: 0;
3896
- -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
3897
- transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
3898
- -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
3899
- animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
3900
- 60% {
3901
- opacity: 1;
3902
- -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
3903
- transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
3904
- -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
3905
- animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
3906
- .brz .zoomInDown {
3907
- -webkit-animation-name: zoomInDown;
3908
- animation-name: zoomInDown; }
3909
-
3910
- @-webkit-keyframes zoomInLeft {
3911
- from {
3912
- opacity: 0;
3913
- -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
3914
- transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
3915
- -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
3916
- animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
3917
- 60% {
3918
- opacity: 1;
3919
- -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
3920
- transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
3921
- -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
3922
- animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
3923
-
3924
- @keyframes zoomInLeft {
3925
- from {
3926
- opacity: 0;
3927
- -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
3928
- transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
3929
- -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
3930
- animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
3931
- 60% {
3932
- opacity: 1;
3933
- -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
3934
- transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
3935
- -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
3936
- animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
3937
- .brz .zoomInLeft {
3938
- -webkit-animation-name: zoomInLeft;
3939
- animation-name: zoomInLeft; }
3940
-
3941
- @-webkit-keyframes zoomInRight {
3942
- from {
3943
- opacity: 0;
3944
- -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
3945
- transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
3946
- -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
3947
- animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
3948
- 60% {
3949
- opacity: 1;
3950
- -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
3951
- transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
3952
- -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
3953
- animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
3954
-
3955
- @keyframes zoomInRight {
3956
- from {
3957
- opacity: 0;
3958
- -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
3959
- transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
3960
- -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
3961
- animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
3962
- 60% {
3963
- opacity: 1;
3964
- -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
3965
- transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
3966
- -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
3967
- animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
3968
- .brz .zoomInRight {
3969
- -webkit-animation-name: zoomInRight;
3970
- animation-name: zoomInRight; }
3971
-
3972
- @-webkit-keyframes zoomInUp {
3973
- from {
3974
- opacity: 0;
3975
- -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
3976
- transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
3977
- -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
3978
- animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
3979
- 60% {
3980
- opacity: 1;
3981
- -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
3982
- transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
3983
- -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
3984
- animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
3985
-
3986
- @keyframes zoomInUp {
3987
- from {
3988
- opacity: 0;
3989
- -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
3990
- transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
3991
- -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
3992
- animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
3993
- 60% {
3994
- opacity: 1;
3995
- -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
3996
- transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
3997
- -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
3998
- animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
3999
- .brz .zoomInUp {
4000
- -webkit-animation-name: zoomInUp;
4001
- animation-name: zoomInUp; }
4002
-
4003
- @-webkit-keyframes zoomOut {
4004
- from {
4005
- opacity: 1; }
4006
- 50% {
4007
- opacity: 0;
4008
- -webkit-transform: scale3d(0.3, 0.3, 0.3);
4009
- transform: scale3d(0.3, 0.3, 0.3); }
4010
- to {
4011
- opacity: 0; } }
4012
-
4013
- @keyframes zoomOut {
4014
- from {
4015
- opacity: 1; }
4016
- 50% {
4017
- opacity: 0;
4018
- -webkit-transform: scale3d(0.3, 0.3, 0.3);
4019
- transform: scale3d(0.3, 0.3, 0.3); }
4020
- to {
4021
- opacity: 0; } }
4022
- .brz .zoomOut {
4023
- -webkit-animation-name: zoomOut;
4024
- animation-name: zoomOut; }
4025
-
4026
- @-webkit-keyframes zoomOutDown {
4027
- 40% {
4028
- opacity: 1;
4029
- -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
4030
- transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
4031
- -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
4032
- animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
4033
- to {
4034
- opacity: 0;
4035
- -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
4036
- transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
4037
- -webkit-transform-origin: center bottom;
4038
- transform-origin: center bottom;
4039
- -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
4040
- animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
4041
-
4042
- @keyframes zoomOutDown {
4043
- 40% {
4044
- opacity: 1;
4045
- -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
4046
- transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
4047
- -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
4048
- animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
4049
- to {
4050
- opacity: 0;
4051
- -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
4052
- transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
4053
- -webkit-transform-origin: center bottom;
4054
- transform-origin: center bottom;
4055
- -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
4056
- animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
4057
- .brz .zoomOutDown {
4058
- -webkit-animation-name: zoomOutDown;
4059
- animation-name: zoomOutDown; }
4060
-
4061
- @-webkit-keyframes zoomOutLeft {
4062
- 40% {
4063
- opacity: 1;
4064
- -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
4065
- transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
4066
- to {
4067
- opacity: 0;
4068
- -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
4069
- transform: scale(0.1) translate3d(-2000px, 0, 0);
4070
- -webkit-transform-origin: left center;
4071
- transform-origin: left center; } }
4072
-
4073
- @keyframes zoomOutLeft {
4074
- 40% {
4075
- opacity: 1;
4076
- -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
4077
- transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
4078
- to {
4079
- opacity: 0;
4080
- -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
4081
- transform: scale(0.1) translate3d(-2000px, 0, 0);
4082
- -webkit-transform-origin: left center;
4083
- transform-origin: left center; } }
4084
- .brz .zoomOutLeft {
4085
- -webkit-animation-name: zoomOutLeft;
4086
- animation-name: zoomOutLeft; }
4087
-
4088
- @-webkit-keyframes zoomOutRight {
4089
- 40% {
4090
- opacity: 1;
4091
- -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
4092
- transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
4093
- to {
4094
- opacity: 0;
4095
- -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
4096
- transform: scale(0.1) translate3d(2000px, 0, 0);
4097
- -webkit-transform-origin: right center;
4098
- transform-origin: right center; } }
4099
-
4100
- @keyframes zoomOutRight {
4101
- 40% {
4102
- opacity: 1;
4103
- -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
4104
- transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
4105
- to {
4106
- opacity: 0;
4107
- -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
4108
- transform: scale(0.1) translate3d(2000px, 0, 0);
4109
- -webkit-transform-origin: right center;
4110
- transform-origin: right center; } }
4111
- .brz .zoomOutRight {
4112
- -webkit-animation-name: zoomOutRight;
4113
- animation-name: zoomOutRight; }
4114
-
4115
- @-webkit-keyframes zoomOutUp {
4116
- 40% {
4117
- opacity: 1;
4118
- -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
4119
- transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
4120
- -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
4121
- animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
4122
- to {
4123
- opacity: 0;
4124
- -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
4125
- transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
4126
- -webkit-transform-origin: center bottom;
4127
- transform-origin: center bottom;
4128
- -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
4129
- animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
4130
-
4131
- @keyframes zoomOutUp {
4132
- 40% {
4133
- opacity: 1;
4134
- -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
4135
- transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
4136
- -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
4137
- animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
4138
- to {
4139
- opacity: 0;
4140
- -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
4141
- transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
4142
- -webkit-transform-origin: center bottom;
4143
- transform-origin: center bottom;
4144
- -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
4145
- animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
4146
- .brz .zoomOutUp {
4147
- -webkit-animation-name: zoomOutUp;
4148
- animation-name: zoomOutUp; }
4149
-
4150
- @-webkit-keyframes slideInDown {
4151
- from {
4152
- -webkit-transform: translate3d(0, -100%, 0);
4153
- transform: translate3d(0, -100%, 0);
4154
- visibility: visible; }
4155
- to {
4156
- -webkit-transform: translate3d(0, 0, 0);
4157
- transform: translate3d(0, 0, 0); } }
4158
-
4159
- @keyframes slideInDown {
4160
- from {
4161
- -webkit-transform: translate3d(0, -100%, 0);
4162
- transform: translate3d(0, -100%, 0);
4163
- visibility: visible; }
4164
- to {
4165
- -webkit-transform: translate3d(0, 0, 0);
4166
- transform: translate3d(0, 0, 0); } }
4167
- .brz .slideInDown {
4168
- -webkit-animation-name: slideInDown;
4169
- animation-name: slideInDown; }
4170
-
4171
- @-webkit-keyframes slideInLeft {
4172
- from {
4173
- -webkit-transform: translate3d(-100%, 0, 0);
4174
- transform: translate3d(-100%, 0, 0);
4175
- visibility: visible; }
4176
- to {
4177
- -webkit-transform: translate3d(0, 0, 0);
4178
- transform: translate3d(0, 0, 0); } }
4179
-
4180
- @keyframes slideInLeft {
4181
- from {
4182
- -webkit-transform: translate3d(-100%, 0, 0);
4183
- transform: translate3d(-100%, 0, 0);
4184
- visibility: visible; }
4185
- to {
4186
- -webkit-transform: translate3d(0, 0, 0);
4187
- transform: translate3d(0, 0, 0); } }
4188
- .brz .slideInLeft {
4189
- -webkit-animation-name: slideInLeft;
4190
- animation-name: slideInLeft; }
4191
-
4192
- @-webkit-keyframes slideInRight {
4193
- from {
4194
- -webkit-transform: translate3d(100%, 0, 0);
4195
- transform: translate3d(100%, 0, 0);
4196
- visibility: visible; }
4197
- to {
4198
- -webkit-transform: translate3d(0, 0, 0);
4199
- transform: translate3d(0, 0, 0); } }
4200
-
4201
- @keyframes slideInRight {
4202
- from {
4203
- -webkit-transform: translate3d(100%, 0, 0);
4204
- transform: translate3d(100%, 0, 0);
4205
- visibility: visible; }
4206
- to {
4207
- -webkit-transform: translate3d(0, 0, 0);
4208
- transform: translate3d(0, 0, 0); } }
4209
- .brz .slideInRight {
4210
- -webkit-animation-name: slideInRight;
4211
- animation-name: slideInRight; }
4212
-
4213
- @-webkit-keyframes slideInUp {
4214
- from {
4215
- -webkit-transform: translate3d(0, 100%, 0);
4216
- transform: translate3d(0, 100%, 0);
4217
- visibility: visible; }
4218
- to {
4219
- -webkit-transform: translate3d(0, 0, 0);
4220
- transform: translate3d(0, 0, 0); } }
4221
-
4222
- @keyframes slideInUp {
4223
- from {
4224
- -webkit-transform: translate3d(0, 100%, 0);
4225
- transform: translate3d(0, 100%, 0);
4226
- visibility: visible; }
4227
- to {
4228
- -webkit-transform: translate3d(0, 0, 0);
4229
- transform: translate3d(0, 0, 0); } }
4230
- .brz .slideInUp {
4231
- -webkit-animation-name: slideInUp;
4232
- animation-name: slideInUp; }
4233
-
4234
- @-webkit-keyframes slideOutDown {
4235
- from {
4236
- -webkit-transform: translate3d(0, 0, 0);
4237
- transform: translate3d(0, 0, 0); }
4238
- to {
4239
- visibility: hidden;
4240
- -webkit-transform: translate3d(0, 100%, 0);
4241
- transform: translate3d(0, 100%, 0); } }
4242
-
4243
- @keyframes slideOutDown {
4244
- from {
4245
- -webkit-transform: translate3d(0, 0, 0);
4246
- transform: translate3d(0, 0, 0); }
4247
- to {
4248
- visibility: hidden;
4249
- -webkit-transform: translate3d(0, 100%, 0);
4250
- transform: translate3d(0, 100%, 0); } }
4251
- .brz .slideOutDown {
4252
- -webkit-animation-name: slideOutDown;
4253
- animation-name: slideOutDown; }
4254
-
4255
- @-webkit-keyframes slideOutLeft {
4256
- from {
4257
- -webkit-transform: translate3d(0, 0, 0);
4258
- transform: translate3d(0, 0, 0); }
4259
- to {
4260
- visibility: hidden;
4261
- -webkit-transform: translate3d(-100%, 0, 0);
4262
- transform: translate3d(-100%, 0, 0); } }
4263
-
4264
- @keyframes slideOutLeft {
4265
- from {
4266
- -webkit-transform: translate3d(0, 0, 0);
4267
- transform: translate3d(0, 0, 0); }
4268
- to {
4269
- visibility: hidden;
4270
- -webkit-transform: translate3d(-100%, 0, 0);
4271
- transform: translate3d(-100%, 0, 0); } }
4272
- .brz .slideOutLeft {
4273
- -webkit-animation-name: slideOutLeft;
4274
- animation-name: slideOutLeft; }
4275
-
4276
- @-webkit-keyframes slideOutRight {
4277
- from {
4278
- -webkit-transform: translate3d(0, 0, 0);
4279
- transform: translate3d(0, 0, 0); }
4280
- to {
4281
- visibility: hidden;
4282
- -webkit-transform: translate3d(100%, 0, 0);
4283
- transform: translate3d(100%, 0, 0); } }
4284
-
4285
- @keyframes slideOutRight {
4286
- from {
4287
- -webkit-transform: translate3d(0, 0, 0);
4288
- transform: translate3d(0, 0, 0); }
4289
- to {
4290
- visibility: hidden;
4291
- -webkit-transform: translate3d(100%, 0, 0);
4292
- transform: translate3d(100%, 0, 0); } }
4293
- .brz .slideOutRight {
4294
- -webkit-animation-name: slideOutRight;
4295
- animation-name: slideOutRight; }
4296
-
4297
- @-webkit-keyframes slideOutUp {
4298
- from {
4299
- -webkit-transform: translate3d(0, 0, 0);
4300
- transform: translate3d(0, 0, 0); }
4301
- to {
4302
- visibility: hidden;
4303
- -webkit-transform: translate3d(0, -100%, 0);
4304
- transform: translate3d(0, -100%, 0); } }
4305
-
4306
- @keyframes slideOutUp {
4307
- from {
4308
- -webkit-transform: translate3d(0, 0, 0);
4309
- transform: translate3d(0, 0, 0); }
4310
- to {
4311
- visibility: hidden;
4312
- -webkit-transform: translate3d(0, -100%, 0);
4313
- transform: translate3d(0, -100%, 0); } }
4314
- .brz .slideOutUp {
4315
- -webkit-animation-name: slideOutUp;
4316
- animation-name: slideOutUp; }
4317
- .brz .animated {
4318
- -webkit-animation-duration: 1s;
4319
- animation-duration: 1s;
4320
- -webkit-animation-fill-mode: both;
4321
- animation-fill-mode: both; }
4322
- .brz .animated.infinite {
4323
- -webkit-animation-iteration-count: infinite;
4324
- animation-iteration-count: infinite; }
4325
- .brz .animated.delay-1s {
4326
- -webkit-animation-delay: 1s;
4327
- animation-delay: 1s; }
4328
- .brz .animated.delay-2s {
4329
- -webkit-animation-delay: 2s;
4330
- animation-delay: 2s; }
4331
- .brz .animated.delay-3s {
4332
- -webkit-animation-delay: 3s;
4333
- animation-delay: 3s; }
4334
- .brz .animated.delay-4s {
4335
- -webkit-animation-delay: 4s;
4336
- animation-delay: 4s; }
4337
- .brz .animated.delay-5s {
4338
- -webkit-animation-delay: 5s;
4339
- animation-delay: 5s; }
4340
- .brz .animated.fast {
4341
- -webkit-animation-duration: 800ms;
4342
- animation-duration: 800ms; }
4343
- .brz .animated.faster {
4344
- -webkit-animation-duration: 500ms;
4345
- animation-duration: 500ms; }
4346
- .brz .animated.slow {
4347
- -webkit-animation-duration: 2s;
4348
- animation-duration: 2s; }
4349
- .brz .animated.slower {
4350
- -webkit-animation-duration: 3s;
4351
- animation-duration: 3s; }
4352
- @media (print), (prefers-reduced-motion: reduce) {
4353
- .brz .animated {
4354
- -webkit-animation-duration: 1ms !important;
4355
- animation-duration: 1ms !important;
4356
- -webkit-transition-duration: 1ms !important;
4357
- transition-duration: 1ms !important;
4358
- -webkit-animation-iteration-count: 1 !important;
4359
- animation-iteration-count: 1 !important; } }
4360
- .brz .brz-animated {
4361
- opacity: 0;
4362
- -webkit-animation-fill-mode: backwards;
4363
- animation-fill-mode: backwards; }
4364
- .brz .brz-animated:not(.brz-animate) {
4365
- -webkit-animation-name: none;
4366
- animation-name: none; }
4367
- .brz .brz-animated.brz-animate-opacity {
4368
- opacity: 1; }
4369
- .brz .brz-icon-svg {
4370
- display: inline-block;
4371
- width: 1em;
4372
- height: 1em;
4373
- stroke: none;
4374
- max-width: none;
4375
- position: relative;
4376
- fill: currentColor;
4377
- color: currentColor; }
4378
- .brz .brz-icon-svg use {
4379
- /* change 'inherit' to a color value if you want to add a secondary color to Nucleo icons */
4380
- fill: inherit; }
4381
- .brz .brz-icon-svg path {
4382
- -webkit-transition: none;
4383
- transition: none; }
4384
- .brz .brz-icon-svg.grid-16 {
4385
- height: 16px;
4386
- width: 16px; }
4387
- .brz .brz-icon-svg.grid-24 {
4388
- height: 24px;
4389
- width: 24px; }
4390
- .brz .brz-icon-svg.glyph {
4391
- fill: currentColor;
4392
- stroke: none; }
4393
- .brz .brz-icon-svg.outline {
4394
- stroke: currentColor;
4395
- fill: none; }
4396
- .brz .brz-icon-svg.outline.stroke-2 {
4397
- stroke-width: 2px; }
4398
- .brz .brz-section {
4399
- position: relative;
4400
- margin: 0;
4401
- padding: 0;
4402
- overflow: visible; }
4403
- .brz .brz-section__content {
4404
- position: relative;
4405
- -webkit-box-orient: vertical;
4406
- -webkit-box-direction: normal;
4407
- -ms-flex-direction: column;
4408
- flex-direction: column;
4409
- width: 100%; }
4410
- .brz .brz-section__content > .brz-bg {
4411
- -ms-flex-wrap: wrap;
4412
- flex-wrap: wrap;
4413
- -webkit-box-align: inherit;
4414
- -ms-flex-align: inherit;
4415
- align-items: inherit;
4416
- width: 100%;
4417
- height: 100%; }
4418
- .brz .brz-section__content > .brz-bg > .brz-bg-content {
4419
- height: 100%;
4420
- -webkit-box-orient: vertical;
4421
- -webkit-box-direction: normal;
4422
- -ms-flex-direction: column;
4423
- flex-direction: column;
4424
- -ms-flex-wrap: wrap;
4425
- flex-wrap: wrap;
4426
- -webkit-box-pack: justify;
4427
- -ms-flex-pack: justify;
4428
- justify-content: space-between; }
4429
- .brz .brz-section__content .brz-container__wrap {
4430
- -webkit-box-flex: 1;
4431
- -ms-flex: 1;
4432
- flex: 1; }
4433
- .brz .brz-section__content > .brz-container {
4434
- position: relative;
4435
- -webkit-box-flex: 1;
4436
- -ms-flex: 1;
4437
- flex: 1; }
4438
- .brz .brz-section > .brz-slick-slider > .slick-list > .slick-track > .slick-slide {
4439
- -webkit-box-flex: 1;
4440
- -ms-flex: 1;
4441
- flex: 1; }
4442
- .brz .brz-section > .brz-slick-slider .brz-section__content {
4443
- height: 100%; }
4444
- .brz .brz-section > .brz-slick-slider:not(.slick-initialized) {
4445
- overflow: hidden; }
4446
- .brz .brz-section > .brz-slick-slider:not(.slick-initialized) > .brz-section__content:not(:first-child) {
4447
- display: none; }
4448
- .brz .brz-section__header > .brz-section__menu-item {
4449
- position: relative;
4450
- z-index: 1055; }
4451
- .brz .brz-section__header--animated {
4452
- position: fixed;
4453
- z-index: 1056;
4454
- top: 0;
4455
- left: 0;
4456
- width: 100%;
4457
- -webkit-transform: translate3d(0, -100%, 0);
4458
- transform: translate3d(0, -100%, 0);
4459
- opacity: 0;
4460
- -webkit-transition: none;
4461
- transition: none; }
4462
- .brz .brz-section__header--animated-opened {
4463
- -webkit-transform: translate3d(0, 0, 0);
4464
- transform: translate3d(0, 0, 0);
4465
- opacity: 1;
4466
- -webkit-transition: opacity 0.2s linear, -webkit-transform 0.2s linear;
4467
- transition: opacity 0.2s linear, -webkit-transform 0.2s linear;
4468
- transition: transform 0.2s linear, opacity 0.2s linear;
4469
- transition: transform 0.2s linear, opacity 0.2s linear, -webkit-transform 0.2s linear; }
4470
- .brz .brz-section__header--animated-closed {
4471
- -webkit-transition: opacity 0.2s linear, -webkit-transform 0.2s linear;
4472
- transition: opacity 0.2s linear, -webkit-transform 0.2s linear;
4473
- transition: transform 0.2s linear, opacity 0.2s linear;
4474
- transition: transform 0.2s linear, opacity 0.2s linear, -webkit-transform 0.2s linear; }
4475
- .brz .brz-section__header--fixed {
4476
- position: relative;
4477
- z-index: 1055; }
4478
- .brz .brz-section__header--fixed-opened {
4479
- position: fixed;
4480
- z-index: 1056;
4481
- top: 0;
4482
- left: 0;
4483
- width: 100%; }
4484
- .brz .brz-section__header--fixed > .brz-section__menu-item, .brz .brz-section__header-sticky-item {
4485
- position: relative; }
4486
- .brz .brz-section__menu-item > .brz-bg:after,
4487
- .brz .brz-section__header-sticky-item > .brz-bg:after,
4488
- .brz .brz-footer > .brz-bg:after {
4489
- content: "";
4490
- display: none;
4491
- position: absolute;
4492
- top: 0;
4493
- left: 0;
4494
- right: 0;
4495
- bottom: 0; }
4496
- .brz .brz-footer {
4497
- position: relative;
4498
- -webkit-box-orient: vertical;
4499
- -webkit-box-direction: normal;
4500
- -ms-flex-direction: column;
4501
- flex-direction: column; }
4502
- .brz .brz-footer > .brz-container {
4503
- position: relative;
4504
- -webkit-box-pack: center;
4505
- -ms-flex-pack: center;
4506
- justify-content: center;
4507
- -webkit-box-flex: 1;
4508
- -ms-flex: 1;
4509
- flex: 1; }
4510
- .brz .brz-popup__inner {
4511
- height: 100%; }
4512
- .brz .brz-footer {
4513
- position: relative; }
4514
- .brz .brz-footer__bg {
4515
- display: -webkit-box;
4516
- display: -ms-flexbox;
4517
- display: flex;
4518
- -ms-flex-wrap: wrap;
4519
- flex-wrap: wrap;
4520
- -webkit-box-orient: vertical;
4521
- -webkit-box-direction: normal;
4522
- -ms-flex-direction: column;
4523
- flex-direction: column; }
4524
- .brz .brz-footer__bg > .brz-bg-content {
4525
- display: -webkit-box;
4526
- display: -ms-flexbox;
4527
- display: flex;
4528
- -webkit-box-orient: vertical;
4529
- -webkit-box-direction: normal;
4530
- -ms-flex-direction: column;
4531
- flex-direction: column;
4532
- -webkit-box-align: center;
4533
- -ms-flex-align: center;
4534
- align-items: center;
4535
- -webkit-box-pack: justify;
4536
- -ms-flex-pack: justify;
4537
- justify-content: space-between;
4538
- height: 100%;
4539
- width: 100%; }
4540
- .brz .brz-footer .brz-container__wrap {
4541
- -webkit-box-flex: 1;
4542
- -ms-flex: 1;
4543
- flex: 1; }
4544
- .brz .brz-story {
4545
- background-color: #222;
4546
- min-height: 100vh; }
4547
- .brz .brz-story .brz-container {
4548
- font-size: 436px; }
4549
- .brz .brz-story .brz-ed-box__resizer {
4550
- font-size: initial; }
4551
- .brz .brz-story > .brz-slick-slider .brz-slick-slider__arrow {
4552
- padding: 20px;
4553
- border-radius: 50%;
4554
- position: absolute;
4555
- background-color: #c9c9c9;
4556
- top: 50%;
4557
- opacity: 0.4;
4558
- z-index: 3;
4559
- -webkit-transition: all 0.2s;
4560
- transition: all 0.2s; }
4561
- .brz .brz-story > .brz-slick-slider .brz-slick-slider__arrow .brz-icon-svg {
4562
- width: 20px;
4563
- height: 20px; }
4564
- .brz .brz-story > .brz-slick-slider .brz-slick-slider__arrow-prev {
4565
- left: 20px; }
4566
- .brz .brz-story > .brz-slick-slider .brz-slick-slider__arrow-next,
4567
- .brz .brz-story > .brz-slick-slider .brz-slick-slider__arrow-replay {
4568
- right: 20px; }
4569
- .brz .brz-story > .brz-slick-slider .brz-slick-slider__arrow-next.slick-disabled,
4570
- .brz .brz-story > .brz-slick-slider .brz-slick-slider__arrow-prev.slick-disabled,
4571
- .brz .brz-story > .brz-slick-slider .brz-slick-slider__arrow-replay {
4572
- display: none !important;
4573
- opacity: 0; }
4574
- .brz .brz-story > .brz-slick-slider .brz-slick-slider__arrow-replay.slick-disabled {
4575
- display: block !important;
4576
- opacity: 0.4; }
4577
- .brz .brz-story > .brz-slick-slider .brz-slick-slider__arrow:hover {
4578
- opacity: 1; }
4579
- .brz .brz-story > .brz-slick-slider > .slick-list > .slick-track > .slick-slide {
4580
- -webkit-transition: all 0.2s;
4581
- transition: all 0.2s;
4582
- -webkit-transform: scale(0.9);
4583
- transform: scale(0.9);
4584
- opacity: 0.4;
4585
- overflow: hidden;
4586
- -webkit-box-flex: 1;
4587
- -ms-flex: 1;
4588
- flex: 1; }
4589
- .brz .brz-story > .brz-slick-slider > .slick-list > .slick-track > .slick-slide .brz-slick-slider__inner-arrow {
4590
- display: none; }
4591
- .brz .brz-story > .brz-slick-slider > .slick-list > .slick-track > .slick-slide > div:not(.brz-container) {
4592
- font-size: 0; }
4593
- .brz .brz-story > .brz-slick-slider > .slick-list > .slick-track > .slick-current {
4594
- opacity: 1;
4595
- -webkit-transition: all 0.2s;
4596
- transition: all 0.2s;
4597
- -webkit-transform: scale(1);
4598
- transform: scale(1); }
4599
- .brz:not(.brz-ed) .brz-story .brz-container {
4600
- font-size: 45vh; }
4601
- .brz:not(.brz-ed) .brz-story .brz-wrapper {
4602
- pointer-events: none; }
4603
- .brz:not(.brz-ed) .brz-story a.brz-a,
4604
- .brz:not(.brz-ed) .brz-story .brz-map,
4605
- .brz:not(.brz-ed) .brz-story .brz-video,
4606
- .brz:not(.brz-ed) .brz-story .brz-story-linked,
4607
- .brz:not(.brz-ed) .brz-story .brz-forms2 {
4608
- pointer-events: initial; }
4609
- .brz:not(.brz-ed) .brz-story > .brz-slick-slider:not(.slick-initialized) {
4610
- display: -webkit-box;
4611
- display: -ms-flexbox;
4612
- display: flex;
4613
- -ms-flex-wrap: wrap;
4614
- flex-wrap: wrap;
4615
- -webkit-box-align: center;
4616
- -ms-flex-align: center;
4617
- align-items: center;
4618
- -webkit-box-pack: center;
4619
- -ms-flex-pack: center;
4620
- justify-content: center; }
4621
- .brz:not(.brz-ed) .brz-story > .brz-slick-slider:not(.slick-initialized) > .brz-section__content {
4622
- height: 75vh;
4623
- max-width: 45vh;
4624
- min-width: 320px;
4625
- min-height: 533px;
4626
- max-height: 100%;
4627
- -webkit-transform: translateZ(0);
4628
- transform: translateZ(0); }
4629
- .brz:not(.brz-ed) .brz-story > .brz-slick-slider {
4630
- padding-top: 80px; }
4631
- .brz:not(.brz-ed) .brz-story > .slick-slider > .slick-list > .slick-track > .slick-slide {
4632
- height: 75vh;
4633
- max-width: 45vh;
4634
- min-width: 320px;
4635
- min-height: 533px;
4636
- max-height: 100%; }
4637
- .brz:not(.brz-ed) .brz-story > .slick-slider > .brz-slick-slider__dots {
4638
- display: -webkit-box;
4639
- display: -ms-flexbox;
4640
- display: flex;
4641
- width: 100%;
4642
- max-width: 740px;
4643
- bottom: -70px;
4644
- margin: 15px auto 0; }
4645
- .brz:not(.brz-ed) .brz-story > .slick-slider > .brz-slick-slider__dots > li {
4646
- padding: 15px 0;
4647
- display: block;
4648
- width: 30%;
4649
- cursor: pointer;
4650
- margin-right: 4px;
4651
- float: left;
4652
- color: rgba(255, 255, 255, 0.4); }
4653
- .brz:not(.brz-ed) .brz-story > .slick-slider > .brz-slick-slider__dots > li > button {
4654
- width: 100%;
4655
- height: 4px;
4656
- display: block;
4657
- border-radius: 100px;
4658
- -webkit-transition: all 0.2s;
4659
- transition: all 0.2s; }
4660
- .brz:not(.brz-ed) .brz-story > .slick-slider > .brz-slick-slider__dots > li.slick-active > button {
4661
- background-color: #fff; }
4662
- .brz:not(.brz-ed) .brz-story > .slick-slider > .brz-slick-slider__dots > li:last-child {
4663
- margin-right: 0; }
4664
- @media (max-width: 767px) {
4665
- .brz:not(.brz-ed) .brz-story {
4666
- min-height: auto; }
4667
- .brz:not(.brz-ed) .brz-story .brz-container {
4668
- font-size: 100vw; }
4669
- .brz:not(.brz-ed) .brz-story > .brz-slick-slider:not(.slick-initialized) {
4670
- display: -webkit-box;
4671
- display: -ms-flexbox;
4672
- display: flex;
4673
- -ms-flex-wrap: wrap;
4674
- flex-wrap: wrap;
4675
- -webkit-box-align: center;
4676
- -ms-flex-align: center;
4677
- align-items: center;
4678
- -webkit-box-pack: center;
4679
- -ms-flex-pack: center;
4680
- justify-content: center; }
4681
- .brz:not(.brz-ed) .brz-story > .brz-slick-slider:not(.slick-initialized) > .brz-section__content {
4682
- height: 100vh;
4683
- min-width: 320px;
4684
- min-height: 533px;
4685
- max-width: 100vw;
4686
- max-height: 100%; }
4687
- .brz:not(.brz-ed) .brz-story > .brz-slick-slider {
4688
- padding-top: 0; }
4689
- .brz:not(.brz-ed) .brz-story .slick-slider .brz-slick-slider__arrow {
4690
- display: none !important; }
4691
- .brz:not(.brz-ed) .brz-story .slick-slider > .slick-list > .slick-track > .slick-slide {
4692
- height: 100vh;
4693
- min-width: 320px;
4694
- min-height: 533px;
4695
- max-width: 100vw;
4696
- max-height: 100%;
4697
- opacity: 1;
4698
- display: -webkit-box;
4699
- display: -ms-flexbox;
4700
- display: flex;
4701
- -webkit-box-pack: center;
4702
- -ms-flex-pack: center;
4703
- justify-content: center;
4704
- -webkit-transform: translateZ(0);
4705
- transform: translateZ(0); }
4706
- .brz:not(.brz-ed) .brz-story .slick-slider > .slick-list > .slick-track > .slick-slide > div {
4707
- width: 100%; }
4708
- .brz:not(.brz-ed) .brz-story .slick-slider > .slick-list > .slick-track > .slick-slide .brz-slick-slider__inner-arrow {
4709
- background-color: transparent;
4710
- height: 100%;
4711
- max-height: 100vh;
4712
- top: 0;
4713
- width: 50%;
4714
- display: block;
4715
- position: absolute; }
4716
- .brz:not(.brz-ed) .brz-story .slick-slider > .slick-list > .slick-track > .slick-slide .brz-slick-slider__inner-arrow-next {
4717
- right: 0; }
4718
- .brz:not(.brz-ed) .brz-story .slick-slider > .slick-list > .slick-track > .slick-slide .brz-slick-slider__inner-arrow-prev {
4719
- left: 0; }
4720
- .brz:not(.brz-ed) .brz-story .slick-slider > .brz-slick-slider__dots {
4721
- margin-top: 0;
4722
- position: absolute;
4723
- padding: 0 15px;
4724
- -webkit-box-pack: center;
4725
- -ms-flex-pack: center;
4726
- justify-content: center;
4727
- top: 0;
4728
- height: 30px; } }
4729
- @media (max-height: 711px) and (min-width: 767px) {
4730
- .brz:not(.brz-ed) .brz-story .brz-container {
4731
- font-size: 320px; } }
4732
- .brz _:-ms-lang(x)::-ms-backdrop,
4733
- .brz .brz-container,
4734
- .brz .brz-section__content .brz-container__wrap {
4735
- -ms-flex: auto !important;
4736
- flex: auto !important; }
4737
- .brz .brz-container,
4738
- .brz .brz-container__wrap {
4739
- margin-left: auto;
4740
- margin-right: auto;
4741
- width: 100%; }
4742
- .brz .brz-container {
4743
- display: -webkit-box;
4744
- display: -ms-flexbox;
4745
- display: flex;
4746
- -webkit-box-orient: vertical;
4747
- -webkit-box-direction: normal;
4748
- -ms-flex-direction: column;
4749
- flex-direction: column;
4750
- width: var(--brz-section-container-width, 100%); }
4751
- .brz .brz-container__wrap {
4752
- display: -webkit-box;
4753
- display: -ms-flexbox;
4754
- display: flex;
4755
- -ms-flex-wrap: wrap;
4756
- flex-wrap: wrap; }
4757
- .brz .brz-row {
4758
- position: relative;
4759
- display: -webkit-box;
4760
- display: -ms-flexbox;
4761
- display: flex;
4762
- -ms-flex-wrap: wrap;
4763
- flex-wrap: wrap;
4764
- text-align: left;
4765
- -ms-flex-preferred-size: 100%;
4766
- flex-basis: 100%;
4767
- max-width: 100%;
4768
- width: 100%; }
4769
- .brz .brz-row__container {
4770
- position: relative;
4771
- text-align: center;
4772
- -webkit-box-pack: center;
4773
- -ms-flex-pack: center;
4774
- justify-content: center; }
4775
- .brz .brz-row__container .brz-link-container {
4776
- position: absolute;
4777
- height: 100%;
4778
- width: 100%;
4779
- top: 0;
4780
- left: 0; }
4781
- .brz .brz-row__container > .brz-bg {
4782
- left: auto; }
4783
- .brz .brz-columns {
4784
- display: -webkit-box;
4785
- display: -ms-flexbox;
4786
- display: flex;
4787
- position: relative;
4788
- -webkit-box-orient: vertical;
4789
- -webkit-box-direction: normal;
4790
- -ms-flex-direction: column;
4791
- flex-direction: column;
4792
- min-height: 1px;
4793
- -ms-flex-preferred-size: 100%;
4794
- flex-basis: 100%;
4795
- will-change: flex, max-width; }
4796
- .brz .brz-columns .brz-container-link {
4797
- position: absolute;
4798
- height: 100%;
4799
- width: 100%;
4800
- top: 0;
4801
- left: 0; }
4802
- .brz .brz-columns > .brz-bg {
4803
- width: auto;
4804
- height: auto;
4805
- top: 0;
4806
- right: 0;
4807
- bottom: 0;
4808
- left: 0; }
4809
- .brz .brz-column__items {
4810
- -webkit-box-orient: vertical;
4811
- -webkit-box-direction: normal;
4812
- -ms-flex-direction: column;
4813
- flex-direction: column;
4814
- -webkit-box-flex: 0;
4815
- -ms-flex: 0 1 auto;
4816
- flex: 0 1 auto; }
4817
- .brz .brz-column__items > div:not(.brz-ed-sortable--empty) {
4818
- -webkit-box-flex: 0;
4819
- -ms-flex: 0 1 auto;
4820
- flex: 0 1 auto;
4821
- min-width: 0; }
4822
- .brz .brz-wrapper {
4823
- -ms-flex-wrap: wrap;
4824
- flex-wrap: wrap;
4825
- min-width: 0;
4826
- min-height: 1px; }
4827
- .brz .brz-wrapper-clone > div {
4828
- -webkit-box-flex: 1;
4829
- -ms-flex: 1 0 100%;
4830
- flex: 1 0 100%;
4831
- min-width: 0;
4832
- -webkit-box-align: center;
4833
- -ms-flex-align: center;
4834
- align-items: center; }
4835
- .brz .brz-wrapper-clone__item {
4836
- position: relative;
4837
- min-height: 1px;
4838
- -ms-flex-preferred-size: auto;
4839
- flex-basis: auto; }
4840
- .brz .brz-bg {
4841
- overflow: hidden; }
4842
- .brz .brz-bg,
4843
- .brz .brz-bg-color,
4844
- .brz .brz-bg-image,
4845
- .brz .brz-bg-video,
4846
- .brz .brz-bg-map {
4847
- position: absolute;
4848
- top: 0;
4849
- left: 0;
4850
- width: 100%;
4851
- height: 100%; }
4852
- .brz .brz-bg-image {
4853
- background-repeat: no-repeat;
4854
- background-size: cover; }
4855
- .brz .brz-bg-shape {
4856
- width: 100%;
4857
- height: 100px;
4858
- position: absolute;
4859
- left: 0;
4860
- right: 0;
4861
- background-repeat: no-repeat;
4862
- pointer-events: none; }
4863
- .brz .brz-bg-shape__top {
4864
- top: 0; }
4865
- .brz .brz-bg-shape__bottom {
4866
- bottom: 0;
4867
- -webkit-transform: rotateX(180deg);
4868
- transform: rotateX(180deg); }
4869
- .brz .brz-bg-image-parallax {
4870
- width: 100%;
4871
- background-size: cover !important;
4872
- background-position: 50% 50%;
4873
- left: 0;
4874
- top: -50vh;
4875
- height: 100vh;
4876
- -webkit-transition: all 0s ease !important;
4877
- transition: all 0s ease !important;
4878
- -webkit-transform-origin: center center 0;
4879
- transform-origin: center center 0;
4880
- -webkit-transform-style: preserve-3d;
4881
- transform-style: preserve-3d; }
4882
- .brz .brz-iframe.brz-bg-video__cover,
4883
- .brz .brz-iframe.brz-bg-map__cover {
4884
- position: absolute;
4885
- top: 0;
4886
- left: 0;
4887
- width: 100%;
4888
- height: 100%;
4889
- border: none;
4890
- max-width: none;
4891
- background-repeat: no-repeat;
4892
- background-size: cover; }
4893
- .brz .brz-btn {
4894
- display: -webkit-inline-box;
4895
- display: -ms-inline-flexbox;
4896
- display: inline-flex;
4897
- -webkit-box-pack: center;
4898
- -ms-flex-pack: center;
4899
- justify-content: center;
4900
- -webkit-box-align: center;
4901
- -ms-flex-align: center;
4902
- align-items: center;
4903
- border: 1px solid #ccc;
4904
- -webkit-transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
4905
- transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
4906
- text-align: center;
4907
- vertical-align: middle;
4908
- -ms-touch-action: manipulation;
4909
- touch-action: manipulation;
4910
- color: #fff;
4911
- cursor: pointer;
4912
- -webkit-user-select: none;
4913
- -moz-user-select: none;
4914
- -ms-user-select: none;
4915
- user-select: none;
4916
- -webkit-user-drag: none;
4917
- background-image: none;
4918
- white-space: nowrap;
4919
- font-weight: 400;
4920
- -webkit-backface-visibility: hidden;
4921
- backface-visibility: hidden;
4922
- text-decoration: none;
4923
- outline: none; }
4924
- .brz .brz-btn .brz-ed-box__resizer {
4925
- height: auto;
4926
- font-size: inherit; }
4927
- .brz .brz-btn:hover, .brz .brz-btn:focus, .brz .brz-btn.focus {
4928
- text-decoration: none; }
4929
- .brz .brz-btn:focus {
4930
- text-decoration: none; }
4931
- .brz .brz-btn .brz-span {
4932
- display: block; }
4933
- .brz .brz-btn .brz-btn--story-container {
4934
- width: 100%;
4935
- display: -webkit-box;
4936
- display: -ms-flexbox;
4937
- display: flex;
4938
- -webkit-box-pack: center;
4939
- -ms-flex-pack: center;
4940
- justify-content: center;
4941
- -webkit-box-align: center;
4942
- -ms-flex-align: center;
4943
- align-items: center; }
4944
- .brz .buttons {
4945
- margin: -10px;
4946
- -webkit-box-align: center;
4947
- -ms-flex-align: center;
4948
- align-items: center; }
4949
- .brz .buttons .brz-wrapper-clone__item {
4950
- padding: 10px; }
4951
- .brz .brz-icon {
4952
- display: -webkit-inline-box;
4953
- display: -ms-inline-flexbox;
4954
- display: inline-flex;
4955
- -webkit-box-pack: center;
4956
- -ms-flex-pack: center;
4957
- justify-content: center;
4958
- -webkit-box-align: center;
4959
- -ms-flex-align: center;
4960
- align-items: center;
4961
- vertical-align: middle;
4962
- max-width: 100%;
4963
- -webkit-transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
4964
- transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease; }
4965
- .brz .brz-story .brz-icon .brz-icon-svg {
4966
- width: 100%;
4967
- height: 100%; }
4968
- .brz .brz-list {
4969
- margin: -6px;
4970
- -webkit-box-align: center;
4971
- -ms-flex-align: center;
4972
- align-items: center; }
4973
- .brz .brz-list .brz-list__item {
4974
- padding: 6px; }
4975
- .brz .brz-countdown {
4976
- display: -webkit-box;
4977
- display: -ms-flexbox;
4978
- display: flex; }
4979
- .brz .brz-countdown__item {
4980
- -webkit-box-flex: 1;
4981
- -ms-flex: 1 0 25%;
4982
- flex: 1 0 25%;
4983
- text-align: center;
4984
- padding-left: 15px;
4985
- padding-right: 15px;
4986
- word-break: break-word;
4987
- word-wrap: break-word; }
4988
- .brz .brz-countdown__number {
4989
- font-size: 1em;
4990
- margin-bottom: 15px; }
4991
- .brz .brz-countdown .brz-ed-box__resizer {
4992
- display: -webkit-inline-box;
4993
- display: -ms-inline-flexbox;
4994
- display: inline-flex;
4995
- width: 100%; }
4996
- .brz .brz-countdown2 {
4997
- display: -webkit-box;
4998
- display: -ms-flexbox;
4999
- display: flex;
5000
- -webkit-box-orient: vertical;
5001
- -webkit-box-direction: normal;
5002
- -ms-flex-direction: column;
5003
- flex-direction: column; }
5004
- .brz .brz-countdown2__item {
5005
- display: -webkit-box;
5006
- display: -ms-flexbox;
5007
- display: flex;
5008
- width: 100%;
5009
- text-align: center;
5010
- word-break: break-word;
5011
- word-wrap: break-word;
5012
- -ms-flex-wrap: wrap;
5013
- flex-wrap: wrap;
5014
- -webkit-box-align: center;
5015
- -ms-flex-align: center;
5016
- align-items: center;
5017
- -webkit-box-pack: center;
5018
- -ms-flex-pack: center;
5019
- justify-content: center;
5020
- -webkit-box-orient: vertical;
5021
- -webkit-box-direction: normal;
5022
- -ms-flex-direction: column;
5023
- flex-direction: column; }
5024
- .brz .brz-countdown2__item:first-child {
5025
- margin-left: 0 !important; }
5026
- .brz .brz-countdown2__item:last-child {
5027
- margin-right: 0 !important; }
5028
- .brz .brz-countdown2__number {
5029
- font-size: 1em; }
5030
- .brz .brz-countdown2__label {
5031
- text-transform: capitalize; }
5032
- .brz .brz-countdown2 .brz-countdown2-parts {
5033
- display: -webkit-inline-box;
5034
- display: -ms-inline-flexbox;
5035
- display: inline-flex;
5036
- width: 100%; }
5037
- .brz .brz-countdown2 .brz-countdown2-message {
5038
- display: none;
5039
- min-height: 55px;
5040
- width: 100%;
5041
- margin-top: 15px;
5042
- padding: 17px 30px;
5043
- padding-bottom: 0;
5044
- text-align: center; }
5045
- .brz .brz-countdown2-style1 {
5046
- -webkit-box-orient: vertical;
5047
- -webkit-box-direction: normal;
5048
- -ms-flex-direction: column;
5049
- flex-direction: column; }
5050
- .brz .brz-countdown2-style2 .brz-countdown2__item {
5051
- -webkit-box-orient: horizontal;
5052
- -webkit-box-direction: normal;
5053
- -ms-flex-direction: row;
5054
- flex-direction: row; }
5055
- .brz .brz-countdown2-style2 .brz-countdown2__label {
5056
- margin-left: 5px; }
5057
- .brz .brz-countdown2-style3 .brz-countdown2-parts {
5058
- -webkit-box-align: center;
5059
- -ms-flex-align: center;
5060
- align-items: center; }
5061
- .brz .brz-countdown2-style3 .brz-countdown2__item .brz-countdown2__label {
5062
- display: none; }
5063
- .brz .brz-countdown2_custom {
5064
- height: auto !important;
5065
- margin: 0 !important; }
5066
- .brz .brz-spacer {
5067
- width: 100%; }
5068
- .brz .brz-icon-text {
5069
- display: -webkit-box;
5070
- display: -ms-flexbox;
5071
- display: flex;
5072
- width: 100%;
5073
- text-align: left;
5074
- -webkit-box-align: stretch;
5075
- -ms-flex-align: stretch;
5076
- align-items: stretch;
5077
- -ms-flex-wrap: nowrap;
5078
- flex-wrap: nowrap; }
5079
- .brz .brz-icon-text .brz-text__editor,
5080
- .brz .brz-icon-text .brz-text-btn {
5081
- width: 100%; }
5082
- .brz .brz-icon-text .brz-text__editor {
5083
- white-space: pre-wrap; }
5084
- .brz .brz-icon-text .brz-wrapper-clone {
5085
- overflow-wrap: break-word;
5086
- word-wrap: break-word;
5087
- word-break: break-word; }
5088
- .brz .brz-icon-text .brz-icon__container {
5089
- min-width: auto; }
5090
- .brz .brz-icon-text .brz-icon__container .brz-ed-box__resizer {
5091
- height: -webkit-fit-content;
5092
- height: -moz-fit-content;
5093
- height: fit-content; }
5094
- .brz .brz-line {
5095
- position: relative;
5096
- line-height: 1;
5097
- font-size: 0;
5098
- padding-top: 7px;
5099
- padding-bottom: 7px;
5100
- display: inline-block; }
5101
- .brz .brz-line .brz-hr {
5102
- border-right-width: 0;
5103
- border-bottom-width: 0;
5104
- border-left-width: 0;
5105
- background: none;
5106
- width: 100%; }
5107
- .brz .brz-map {
5108
- position: relative;
5109
- width: 100%;
5110
- display: inline-block;
5111
- vertical-align: middle; }
5112
- .brz .brz-map::before {
5113
- content: "";
5114
- width: 100%;
5115
- height: 100%;
5116
- position: absolute;
5117
- top: 0;
5118
- left: 0;
5119
- z-index: 2;
5120
- display: block;
5121
- pointer-events: none; }
5122
- .brz .brz-map .brz-map-content {
5123
- overflow: hidden;
5124
- position: relative;
5125
- height: 100%;
5126
- width: 100%; }
5127
- .brz .brz-map .brz-iframe {
5128
- position: absolute;
5129
- top: 0;
5130
- left: 0;
5131
- width: 100%;
5132
- height: 100%;
5133
- border: none; }
5134
- .brz .brz-video {
5135
- position: relative;
5136
- width: 100%;
5137
- display: inline-block;
5138
- vertical-align: middle; }
5139
- .brz .brz-video:before {
5140
- content: "";
5141
- width: 100%;
5142
- height: 100%;
5143
- position: absolute;
5144
- top: 0;
5145
- left: 0;
5146
- z-index: 2;
5147
- display: block;
5148
- pointer-events: none; }
5149
- .brz .brz-video .brz-video-content {
5150
- overflow: hidden;
5151
- position: relative;
5152
- width: 100%;
5153
- height: 100%; }
5154
- .brz .brz-video .brz-iframe,
5155
- .brz .brz-video .brz-video__cover {
5156
- position: absolute;
5157
- top: 0;
5158
- left: 0;
5159
- width: 100%;
5160
- height: 100%;
5161
- border: none; }
5162
- .brz .brz-video .brz-iframe {
5163
- height: 100%;
5164
- width: 100%; }
5165
- .brz .brz-video .brz-video__cover {
5166
- display: -webkit-box;
5167
- display: -ms-flexbox;
5168
- display: flex;
5169
- -webkit-box-align: center;
5170
- -ms-flex-align: center;
5171
- align-items: center;
5172
- -webkit-box-pack: center;
5173
- -ms-flex-pack: center;
5174
- justify-content: center; }
5175
- .brz .brz-video .brz-video__cover:before {
5176
- content: "";
5177
- display: block;
5178
- position: absolute;
5179
- top: 0;
5180
- left: 0;
5181
- right: 0;
5182
- bottom: 0;
5183
- margin: 0 auto;
5184
- background-repeat: no-repeat; }
5185
- .brz .brz-video .brz-video__cover .brz-video__cover-icon {
5186
- position: relative;
5187
- z-index: 1;
5188
- color: #fff;
5189
- display: -webkit-box;
5190
- display: -ms-flexbox;
5191
- display: flex;
5192
- -webkit-box-align: center;
5193
- -ms-flex-align: center;
5194
- align-items: center;
5195
- -webkit-box-pack: center;
5196
- -ms-flex-pack: center;
5197
- justify-content: center;
5198
- border-radius: 50%; }
5199
- .brz .brz-video .brz-video__cover .brz-video__cover-icon .brz-icon-svg {
5200
- width: 100%;
5201
- left: 2px; }
5202
- .brz .brz-video .brz-video__cover .brz-video__cover-icon a {
5203
- line-height: 0; }
5204
- .brz .brz-video .brz-video__cover:hover {
5205
- cursor: pointer; }
5206
- .brz .brz-video .brz-video__cover:hover .brz-video__cover-icon {
5207
- -webkit-transform: scale(1.1);
5208
- transform: scale(1.1); }
5209
- .brz .brz-video .brz-shortcode__placeholder {
5210
- position: absolute;
5211
- top: 0; }
5212
- .brz .brz-video .brz-video-elem {
5213
- display: -webkit-box;
5214
- display: -ms-flexbox;
5215
- display: flex;
5216
- -webkit-box-pack: center;
5217
- -ms-flex-pack: center;
5218
- justify-content: center;
5219
- -webkit-box-align: center;
5220
- -ms-flex-align: center;
5221
- align-items: center;
5222
- width: 100%;
5223
- z-index: 999;
5224
- min-width: 150px; }
5225
- .brz .brz-video .brz-video-elem video {
5226
- position: absolute;
5227
- left: 0;
5228
- right: 0;
5229
- bottom: 0;
5230
- top: 0;
5231
- width: 100%;
5232
- height: 100%;
5233
- background: #000;
5234
- z-index: 99; }
5235
- .brz .brz-video .brz-video-elem .brz-video-custom-video-controls {
5236
- display: -webkit-box;
5237
- display: -ms-flexbox;
5238
- display: flex;
5239
- -webkit-box-pack: center;
5240
- -ms-flex-pack: center;
5241
- justify-content: center;
5242
- -webkit-box-align: center;
5243
- -ms-flex-align: center;
5244
- align-items: center;
5245
- padding-left: 20px;
5246
- padding-right: 20px;
5247
- width: 100%;
5248
- height: 50px;
5249
- z-index: 999; }
5250
- .brz .brz-video .brz-video-elem .brz-video-custom-play-pause-btn {
5251
- display: -webkit-box;
5252
- display: -ms-flexbox;
5253
- display: flex;
5254
- cursor: pointer;
5255
- z-index: 3; }
5256
- .brz .brz-video .brz-video-elem .brz-video-custom-current-time {
5257
- margin-left: 25px; }
5258
- .brz .brz-video .brz-video-elem .brz-video-custom-total-time {
5259
- margin-left: 15px; }
5260
- .brz .brz-video .brz-video-elem .brz-video-custom-slider {
5261
- position: relative;
5262
- -webkit-box-flex: 1;
5263
- -ms-flex-positive: 1;
5264
- flex-grow: 1;
5265
- cursor: pointer; }
5266
- .brz .brz-video .brz-video-elem .brz-video-custom-slider .brz-video-custom-progress {
5267
- border-radius: inherit;
5268
- position: absolute;
5269
- pointer-events: none; }
5270
- .brz .brz-video .brz-video-elem .brz-video-custom-slider:before {
5271
- content: "";
5272
- display: block;
5273
- position: absolute;
5274
- top: 0;
5275
- left: 0;
5276
- right: 0;
5277
- bottom: 0;
5278
- margin: 0 auto;
5279
- background-repeat: no-repeat;
5280
- opacity: 0.35; }
5281
- .brz .brz-video .brz-video-elem .brz-video-custom-controls {
5282
- display: -webkit-box;
5283
- display: -ms-flexbox;
5284
- display: flex;
5285
- -webkit-box-flex: 1;
5286
- -ms-flex-positive: 1;
5287
- flex-grow: 1;
5288
- -webkit-box-pack: justify;
5289
- -ms-flex-pack: justify;
5290
- justify-content: space-between;
5291
- -webkit-box-align: center;
5292
- -ms-flex-align: center;
5293
- align-items: center;
5294
- z-index: 3; }
5295
- .brz .brz-video .brz-video-elem .brz-video-custom-controls .brz-video-custom-slider {
5296
- margin-left: 16px;
5297
- margin-right: 16px;
5298
- border-radius: 5px;
5299
- height: 8px;
5300
- overflow: hidden; }
5301
- .brz .brz-video .brz-video-elem .brz-video-custom-controls .brz-video-custom-slider .brz-video-custom-progress {
5302
- height: 100%; }
5303
- .brz .brz-video .brz-video-elem .brz-video-custom-controls span {
5304
- cursor: default; }
5305
- .brz .brz-video .brz-video-elem .brz-video-custom-controls:empty {
5306
- display: none; }
5307
- .brz .brz-video .brz-video-elem .brz-video-custom-volume {
5308
- position: relative;
5309
- display: -webkit-box;
5310
- display: -ms-flexbox;
5311
- display: flex;
5312
- margin-left: 15px;
5313
- -webkit-box-pack: center;
5314
- -ms-flex-pack: center;
5315
- justify-content: center;
5316
- -webkit-box-align: center;
5317
- -ms-flex-align: center;
5318
- align-items: center;
5319
- z-index: 3; }
5320
- .brz .brz-video .brz-video-elem .brz-video-custom-volume .brz-video-custom-fullscreen-btn {
5321
- display: -webkit-box;
5322
- display: -ms-flexbox;
5323
- display: flex; }
5324
- .brz .brz-video .brz-video-elem .brz-video-custom-volume .brz-video-custom-fullscreen-icon {
5325
- margin-right: 15px;
5326
- cursor: pointer; }
5327
- .brz .brz-video .brz-video-elem .brz-video-custom-volume .brz-video-custom-volume-btn {
5328
- display: -webkit-box;
5329
- display: -ms-flexbox;
5330
- display: flex;
5331
- cursor: pointer; }
5332
- .brz .brz-video .brz-video-elem .brz-video-custom-volume .brz-video-custom-volume-controls {
5333
- display: -webkit-box;
5334
- display: -ms-flexbox;
5335
- display: flex;
5336
- width: 60px;
5337
- height: 8px;
5338
- margin-left: 10px;
5339
- border-radius: 5px;
5340
- -webkit-box-orient: vertical;
5341
- -webkit-box-direction: normal;
5342
- -ms-flex-direction: column;
5343
- flex-direction: column;
5344
- overflow: hidden; }
5345
- .brz .brz-video .brz-video-elem .brz-video-custom-volume .brz-video-custom-volume-controls .brz-video-custom-progress {
5346
- bottom: 0;
5347
- height: 100%;
5348
- width: 100%; }
5349
- .brz .brz-video .brz-video-custom-fullScreen-window-show video {
5350
- padding-bottom: 50px; }
5351
- .brz .brz-video .brz-video-custom-fullScreen-window-show .brz-video-custom-video-controls {
5352
- position: absolute;
5353
- left: 0;
5354
- right: 0;
5355
- bottom: 0; }
5356
- .brz .brz-custom-video {
5357
- min-width: 150px; }
5358
- .brz .brz-custom-video .brz-video-content {
5359
- overflow: hidden; }
5360
- .brz .brz-custom-video .brz-video-content .brz-shortcode__placeholder {
5361
- border-radius: 0 !important; }
5362
- .brz .brz-custom-video .brz-video-content:hover .brz-shortcode__placeholder .brz-icon-svg {
5363
- cursor: pointer; }
5364
- .brz .brz-custom-video.brz-video-on-controls-hidden .brz-video__cover,
5365
- .brz .brz-custom-video.brz-video-on-controls-hidden .brz-shortcode__placeholder,
5366
- .brz .brz-custom-video.brz-video-on-controls-hidden video {
5367
- padding-bottom: 50px; }
5368
- .brz .brz-custom-video.brz-video-off-controls-hidden {
5369
- background: inherit;
5370
- padding-bottom: 0; }
5371
- .brz .brz-custom-video.brz-video-off-controls-hidden video {
5372
- padding-bottom: 0;
5373
- background: inherit; }
5374
- .brz .brz-custom-video.brz-video-off-controls-hidden .brz-shortcode__placeholder {
5375
- top: 0;
5376
- padding-top: 0; }
5377
- .brz .brz-custom-video.brz-video-off-controls-hidden .brz-video__cover {
5378
- padding-bottom: 0; }
5379
- .brz .brz-image-fix-1-1 {
5380
- padding-top: 100%; }
5381
- .brz .brz-image-fix-2-1 {
5382
- padding-top: 50%; }
5383
- .brz .brz-image-fix-2-3 {
5384
- padding-top: 150%; }
5385
- .brz .brz-image-fix-3-4 {
5386
- padding-top: 125%; }
5387
- .brz .brz-image-fix-4-3 {
5388
- padding-top: 75%; }
5389
- .brz .brz-image-fix-9-16 {
5390
- padding-top: 177.8%; }
5391
- .brz .brz-image-fix-16-9 {
5392
- padding-top: 56.25%; }
5393
- .brz .brz-video-playlist {
5394
- position: relative;
5395
- width: 100%;
5396
- display: inline-block;
5397
- vertical-align: middle; }
5398
- .brz .brz-video-playlist .brz-play-button {
5399
- line-height: 0; }
5400
- .brz .brz-video-playlist:before {
5401
- content: "";
5402
- width: 100%;
5403
- height: 100%;
5404
- position: absolute;
5405
- top: 0;
5406
- left: 0;
5407
- z-index: 2;
5408
- display: block;
5409
- pointer-events: none; }
5410
- .brz .brz-video-playlist .brz-iframe,
5411
- .brz .brz-video-playlist .brz-video-playlist__cover {
5412
- position: absolute;
5413
- top: 0;
5414
- left: 0;
5415
- width: 100%;
5416
- height: 100%;
5417
- border: none; }
5418
- .brz .brz-video-playlist .brz-video-playlist__cover {
5419
- -webkit-box-align: center;
5420
- -ms-flex-align: center;
5421
- align-items: center;
5422
- -webkit-box-pack: center;
5423
- -ms-flex-pack: center;
5424
- justify-content: center; }
5425
- .brz .brz-video-playlist .brz-video-playlist__cover:before {
5426
- content: "";
5427
- display: block;
5428
- position: absolute;
5429
- top: 0;
5430
- left: 0;
5431
- right: 0;
5432
- bottom: 0;
5433
- margin: 0 auto;
5434
- background-size: cover;
5435
- background-repeat: no-repeat; }
5436
- .brz .brz-video-playlist .brz-video-playlist__cover .brz-video-playlist__cover-icon {
5437
- position: relative;
5438
- width: 80px;
5439
- height: 80px;
5440
- font-size: 28px;
5441
- -webkit-box-align: center;
5442
- -ms-flex-align: center;
5443
- align-items: center;
5444
- -webkit-box-pack: center;
5445
- -ms-flex-pack: center;
5446
- justify-content: center;
5447
- border-radius: 50%;
5448
- z-index: 1;
5449
- color: #fff;
5450
- -webkit-transition: -webkit-transform 0.3s ease;
5451
- transition: -webkit-transform 0.3s ease;
5452
- transition: transform 0.3s ease;
5453
- transition: transform 0.3s ease, -webkit-transform 0.3s ease; }
5454
- .brz .brz-video-playlist .brz-video-playlist__cover .brz-video-playlist__cover-icon .brz-icon-svg {
5455
- width: 100%;
5456
- left: 2px; }
5457
- .brz .brz-video-playlist .brz-video-playlist__cover .brz-video-playlist__cover-icon a {
5458
- line-height: 0; }
5459
- .brz .brz-video-playlist .brz-video-playlist__cover:hover {
5460
- cursor: pointer; }
5461
- .brz .brz-video-playlist .brz-video-playlist__cover:hover .brz-video-playlist__cover-icon {
5462
- -webkit-transform: scale(1.1);
5463
- transform: scale(1.1); }
5464
- .brz .brz-video-playlist .brz-video-playlist-main,
5465
- .brz .brz-video-playlist .brz-video-playlist-video-elem {
5466
- position: relative; }
5467
- .brz .brz-video-playlist .brz-video-playlist-main .brz-shortcode__placeholder,
5468
- .brz .brz-video-playlist .brz-video-playlist-main .brz-img,
5469
- .brz .brz-video-playlist .brz-video-playlist-video-elem .brz-shortcode__placeholder,
5470
- .brz .brz-video-playlist .brz-video-playlist-video-elem .brz-img {
5471
- position: absolute;
5472
- left: 0;
5473
- right: 0;
5474
- top: 0;
5475
- bottom: 0;
5476
- width: 100%;
5477
- height: 100%; }
5478
- .brz .brz-video-playlist .brz-video-playlist-main__cover:after,
5479
- .brz .brz-video-playlist .brz-video-playlist-video-elem:after {
5480
- content: "";
5481
- display: block;
5482
- width: 100%;
5483
- padding-top: 56.25%; }
5484
- .brz .brz-video-playlist .brz-video-playlist-main__content {
5485
- padding-top: 56.25%; }
5486
- .brz .brz-video-playlist .brz-video-playlist-video-item {
5487
- cursor: pointer; }
5488
- .brz .brz-video-playlist .brz-video-playlist-title-video {
5489
- word-break: break-word; }
5490
- .brz .brz-video-playlist .brz-video-playlist-title-video .brz-span {
5491
- display: block; }
5492
- .brz .brz-video-playlist .brz-video-playlist-title-video .brz-span:last-child {
5493
- margin-bottom: 0; }
5494
- .brz .brz-video-playlist-horizontal .brz-video-playlist-sidebar {
5495
- position: absolute;
5496
- top: 0;
5497
- bottom: 0;
5498
- right: 0;
5499
- -webkit-box-orient: vertical;
5500
- -webkit-box-direction: normal;
5501
- -ms-flex-direction: column;
5502
- flex-direction: column;
5503
- max-height: 100%;
5504
- overflow: auto; }
5505
- .brz .brz-video-playlist-horizontal .brz-video-playlist-video-item {
5506
- cursor: pointer;
5507
- -webkit-box-align: start;
5508
- -ms-flex-align: start;
5509
- align-items: flex-start;
5510
- -ms-flex-wrap: wrap;
5511
- flex-wrap: wrap; }
5512
- .brz .brz-video-playlist-horizontal .brz-video-playlist-video-item .brz-video-playlist-title-video {
5513
- margin-left: 10px; }
5514
- .brz .brz-video-playlist-horizontal .brz-video-playlist-video-item .brz-img {
5515
- -o-object-fit: cover;
5516
- object-fit: cover; }
5517
- .brz .brz-video-playlist-horizontal ::-webkit-scrollbar {
5518
- width: 8px;
5519
- height: 95px;
5520
- cursor: pointer; }
5521
- .brz .brz-video-playlist-horizontal ::-webkit-scrollbar-track {
5522
- background-color: rgba(0, 0, 0, 0); }
5523
- .brz .brz-video-playlist-horizontal ::-webkit-scrollbar-thumb {
5524
- background-color: rgba(0, 0, 0, 0.3);
5525
- border-radius: 8px; }
5526
- .brz .brz-video-playlist-vertical .brz-video-playlist-sidebar {
5527
- white-space: nowrap;
5528
- overflow: auto; }
5529
- .brz .brz-video-playlist-vertical .brz-video-playlist-video-item {
5530
- text-align: center; }
5531
- .brz .brz-video-playlist-vertical .brz-video-playlist-video-elem {
5532
- margin-left: auto;
5533
- margin-right: auto; }
5534
- .brz .brz-video-playlist-vertical ::-webkit-scrollbar {
5535
- width: 6px;
5536
- height: 8px;
5537
- cursor: pointer; }
5538
- .brz .brz-video-playlist-vertical ::-webkit-scrollbar-track {
5539
- background-color: rgba(0, 0, 0, 0); }
5540
- .brz .brz-video-playlist-vertical ::-webkit-scrollbar-thumb {
5541
- background-color: rgba(0, 0, 0, 0.3); }
5542
- .brz .brz-video-playlist-vertical.brz-video-playlist-under {
5543
- display: -webkit-box;
5544
- display: -ms-flexbox;
5545
- display: flex;
5546
- -webkit-box-orient: vertical;
5547
- -webkit-box-direction: reverse;
5548
- -ms-flex-direction: column-reverse;
5549
- flex-direction: column-reverse; }
5550
- .brz .brz-video-playlist-vertical.brz-video-playlist-under .brz-video-playlist__container {
5551
- display: -webkit-box;
5552
- display: -ms-flexbox;
5553
- display: flex;
5554
- -webkit-box-orient: vertical;
5555
- -webkit-box-direction: reverse;
5556
- -ms-flex-direction: column-reverse;
5557
- flex-direction: column-reverse; }
5558
- @media (max-width: 767px) {
5559
- .brz .brz-video-playlist .brz-video-playlist-main {
5560
- position: fixed;
5561
- z-index: 99999;
5562
- left: 0;
5563
- right: 0;
5564
- top: 0;
5565
- bottom: 0;
5566
- display: none;
5567
- width: 100% !important;
5568
- height: 100%;
5569
- background-color: rgba(0, 0, 0, 0.3); }
5570
- .brz .brz-video-playlist .brz-video-playlist-main__placeholder .brz-video-playlist-main__content,
5571
- .brz .brz-video-playlist .brz-video-playlist-main__video .brz-video-playlist-main__content {
5572
- width: 100%; }
5573
- .brz .brz-video-playlist .brz-video-playlist-sidebar {
5574
- position: static;
5575
- height: auto !important;
5576
- width: 100% !important; }
5577
- .brz .brz-video-playlist .brz-video-playlist-modal {
5578
- display: -webkit-box;
5579
- display: -ms-flexbox;
5580
- display: flex;
5581
- -webkit-box-align: center;
5582
- -ms-flex-align: center;
5583
- align-items: center;
5584
- -webkit-box-pack: center;
5585
- -ms-flex-pack: center;
5586
- justify-content: center;
5587
- -ms-flex-wrap: wrap;
5588
- flex-wrap: wrap;
5589
- -webkit-box-orient: vertical;
5590
- -webkit-box-direction: normal;
5591
- -ms-flex-direction: column;
5592
- flex-direction: column; } }
5593
- .brz .brz-audio {
5594
- pointer-events: auto;
5595
- min-width: -webkit-fit-content;
5596
- min-width: -moz-fit-content;
5597
- min-width: fit-content; }
5598
- .brz .brz-audio .brz-custom-audio {
5599
- position: relative;
5600
- width: 100%;
5601
- height: 100%;
5602
- -webkit-box-pack: center;
5603
- -ms-flex-pack: center;
5604
- justify-content: center;
5605
- -webkit-box-align: center;
5606
- -ms-flex-align: center;
5607
- align-items: center;
5608
- padding-left: 20px;
5609
- padding-right: 20px;
5610
- z-index: 3; }
5611
- .brz .brz-audio .brz-custom-audio .brz-audio-play-pause-btn {
5612
- cursor: pointer;
5613
- z-index: 3; }
5614
- .brz .brz-audio .brz-custom-audio .brz-audio-current-time {
5615
- margin-left: 25px; }
5616
- .brz .brz-audio .brz-custom-audio .brz-audio-total-time {
5617
- margin-left: 15px; }
5618
- .brz .brz-audio .brz-custom-audio .brz-audio-slider {
5619
- position: relative;
5620
- -webkit-box-flex: 1;
5621
- -ms-flex-positive: 1;
5622
- flex-grow: 1;
5623
- cursor: pointer; }
5624
- .brz .brz-audio .brz-custom-audio .brz-audio-slider .brz-audio-progress {
5625
- border-radius: inherit;
5626
- position: absolute;
5627
- pointer-events: none; }
5628
- .brz .brz-audio .brz-custom-audio .brz-audio-slider:before {
5629
- content: "";
5630
- display: block;
5631
- position: absolute;
5632
- top: 0;
5633
- left: 0;
5634
- right: 0;
5635
- bottom: 0;
5636
- margin: 0 auto;
5637
- background-repeat: no-repeat;
5638
- opacity: 0.35; }
5639
- .brz .brz-audio .brz-custom-audio .brz-audio-controls {
5640
- -webkit-box-flex: 1;
5641
- -ms-flex-positive: 1;
5642
- flex-grow: 1;
5643
- -webkit-box-pack: justify;
5644
- -ms-flex-pack: justify;
5645
- justify-content: space-between;
5646
- -webkit-box-align: center;
5647
- -ms-flex-align: center;
5648
- align-items: center;
5649
- z-index: 3; }
5650
- .brz .brz-audio .brz-custom-audio .brz-audio-controls .brz-audio-slider {
5651
- margin-left: 16px;
5652
- margin-right: 16px;
5653
- border-radius: 5px;
5654
- height: 8px; }
5655
- .brz .brz-audio .brz-custom-audio .brz-audio-controls .brz-audio-slider .brz-audio-progress {
5656
- height: 100%; }
5657
- .brz .brz-audio .brz-custom-audio .brz-audio-controls span {
5658
- cursor: default; }
5659
- .brz .brz-audio .brz-custom-audio .brz-audio-controls:empty {
5660
- display: none; }
5661
- .brz .brz-audio .brz-custom-audio .brz-audio-volume {
5662
- position: relative;
5663
- margin-left: 15px;
5664
- -webkit-box-pack: center;
5665
- -ms-flex-pack: center;
5666
- justify-content: center;
5667
- -webkit-box-align: center;
5668
- -ms-flex-align: center;
5669
- align-items: center;
5670
- z-index: 3; }
5671
- .brz .brz-audio .brz-custom-audio .brz-audio-volume .brz-audio-volume-btn {
5672
- cursor: pointer; }
5673
- .brz .brz-audio .brz-custom-audio .brz-audio-volume .brz-audio-volume-controls {
5674
- width: 60px;
5675
- height: 8px;
5676
- margin-left: 10px;
5677
- border-radius: 5px;
5678
- -webkit-box-orient: vertical;
5679
- -webkit-box-direction: normal;
5680
- -ms-flex-direction: column;
5681
- flex-direction: column; }
5682
- .brz .brz-audio .brz-custom-audio .brz-audio-volume .brz-audio-volume-controls .brz-audio-slider {
5683
- border-radius: 3px; }
5684
- .brz .brz-audio .brz-custom-audio .brz-audio-volume .brz-audio-volume-controls .brz-audio-slider .brz-audio-progress {
5685
- bottom: 0;
5686
- height: 100%;
5687
- width: 100%; }
5688
- .brz .brz-audio .brz-audio__cover {
5689
- position: absolute;
5690
- top: 0;
5691
- left: 0;
5692
- width: 100%;
5693
- height: 100%;
5694
- -webkit-box-align: center;
5695
- -ms-flex-align: center;
5696
- align-items: center;
5697
- -webkit-box-pack: center;
5698
- -ms-flex-pack: center;
5699
- justify-content: center;
5700
- border: none; }
5701
- .brz .brz-audio .brz-audio__cover:before {
5702
- content: "";
5703
- display: block;
5704
- position: absolute;
5705
- top: 0;
5706
- left: 0;
5707
- right: 0;
5708
- bottom: 0;
5709
- margin: 0 auto;
5710
- background-repeat: no-repeat; }
5711
- .brz .brz-audio .brz-audio__cover .brz-audio__cover-icon {
5712
- position: relative;
5713
- z-index: 1;
5714
- color: #fff;
5715
- -webkit-box-align: center;
5716
- -ms-flex-align: center;
5717
- align-items: center;
5718
- -webkit-box-pack: center;
5719
- -ms-flex-pack: center;
5720
- justify-content: center;
5721
- border-radius: 50%;
5722
- -webkit-transition: -webkit-transform 0.3s ease;
5723
- transition: -webkit-transform 0.3s ease;
5724
- transition: transform 0.3s ease;
5725
- transition: transform 0.3s ease, -webkit-transform 0.3s ease; }
5726
- .brz .brz-soundcloud {
5727
- position: relative;
5728
- font-size: 0; }
5729
- .brz .brz-soundcloud:before {
5730
- content: " ";
5731
- position: absolute;
5732
- width: 100%;
5733
- height: 100%;
5734
- z-index: 3;
5735
- pointer-events: none; }
5736
- .brz .brz-soundcloud .brz-soundCloud-content {
5737
- overflow: hidden;
5738
- position: relative;
5739
- height: 100%;
5740
- width: 100%; }
5741
- .brz .brz-soundcloud .brz-soundCloud-content iframe {
5742
- width: 100%; }
5743
- .brz .brz-soundcloud .brz-soundCloud-content:before {
5744
- content: "";
5745
- width: 100%;
5746
- height: 100%;
5747
- position: absolute;
5748
- top: 0;
5749
- left: 0;
5750
- z-index: 2;
5751
- display: block;
5752
- pointer-events: none; }
5753
- .brz .brz-embed-code {
5754
- position: relative;
5755
- display: inline-block;
5756
- width: 100%;
5757
- min-height: 20px;
5758
- height: auto; }
5759
- .brz .brz-embed-code:before {
5760
- content: "";
5761
- width: 100%;
5762
- height: 100%;
5763
- position: absolute;
5764
- top: 0;
5765
- left: 0;
5766
- z-index: 2;
5767
- display: block;
5768
- pointer-events: none;
5769
- overflow: hidden; }
5770
- .brz .brz-embed-code .brz-shortcode__placeholder {
5771
- height: 250px; }
5772
- .brz .brz-embed-code img {
5773
- max-width: 100%; }
5774
- .brz .brz-embed-code .brz-embed-content {
5775
- width: 100%; }
5776
- .brz .brz-rich-text {
5777
- -webkit-font-smoothing: antialiased;
5778
- -webkit-box-flex: 1;
5779
- -ms-flex: 1 1 auto;
5780
- flex: 1 1 auto;
5781
- min-width: 0;
5782
- overflow-wrap: break-word;
5783
- word-wrap: break-word;
5784
- word-break: break-word; }
5785
- .brz .brz-rich-text .brz-ed-box__resizer {
5786
- max-width: 100%; }
5787
- .brz .brz-rich-text > * {
5788
- white-space: pre-wrap; }
5789
- .brz .brz-rich-text i,
5790
- .brz .brz-rich-text em {
5791
- font-style: italic; }
5792
- .brz .brz-rich-text ul li,
5793
- .brz .brz-rich-text ol li {
5794
- list-style: none;
5795
- padding-left: 1em; }
5796
- .brz .brz-rich-text ul li:before,
5797
- .brz .brz-rich-text ol li:before {
5798
- margin-left: -1em; }
5799
- .brz .brz-rich-text ul li:before {
5800
- position: relative;
5801
- top: -0.1em;
5802
- line-height: 1;
5803
- content: "\2022";
5804
- padding-right: 0.5em; }
5805
- .brz .brz-rich-text ol {
5806
- counter-reset: number; }
5807
- .brz .brz-rich-text ol li {
5808
- counter-increment: number; }
5809
- .brz .brz-rich-text ol li:before {
5810
- content: counter(number);
5811
- line-height: 1;
5812
- padding-right: 0.5em; }
5813
- .brz .brz-rich-text .ql-editor {
5814
- white-space: pre-wrap; }
5815
- .brz .brz-rich-text .brz-text-mask,
5816
- .brz .brz-rich-text .brz-image-gradient {
5817
- caret-color: #000;
5818
- color: transparent !important;
5819
- -webkit-background-clip: text;
5820
- background-clip: text; }
5821
- .brz .brz-rich-text > h1,
5822
- .brz .brz-rich-text > h2,
5823
- .brz .brz-rich-text > h3,
5824
- .brz .brz-rich-text > h4,
5825
- .brz .brz-rich-text > h5,
5826
- .brz .brz-rich-text > h6 {
5827
- margin-top: 0;
5828
- margin-bottom: 0;
5829
- padding: 0;
5830
- text-transform: initial;
5831
- text-decoration: initial; }
5832
- .brz .brz-rich-text > h1:before,
5833
- .brz .brz-rich-text > h2:before,
5834
- .brz .brz-rich-text > h3:before,
5835
- .brz .brz-rich-text > h4:before,
5836
- .brz .brz-rich-text > h5:before,
5837
- .brz .brz-rich-text > h6:before {
5838
- display: none; }
5839
- .brz .brz-rich-text > p,
5840
- .brz .brz-rich-text span {
5841
- margin-top: 0;
5842
- margin-bottom: 0;
5843
- padding-top: 0;
5844
- padding-bottom: 0;
5845
- text-transform: initial;
5846
- text-decoration: initial; }
5847
- .brz .brz-rich-text span {
5848
- font-family: inherit;
5849
- font-size: inherit;
5850
- font-weight: inherit;
5851
- line-height: inherit;
5852
- letter-spacing: inherit; }
5853
- .brz .brz-rich-text p {
5854
- display: block; }
5855
- .brz .brz-rich-text a,
5856
- .brz .brz-rich-text em,
5857
- .brz .brz-rich-text span {
5858
- display: inline; }
5859
- .brz .brz-rich-text ol,
5860
- .brz .brz-rich-text ul,
5861
- .brz .brz-rich-text dl {
5862
- margin: 0;
5863
- list-style: none;
5864
- padding: 0; }
5865
- .brz .brz-rich-text ol ol,
5866
- .brz .brz-rich-text ul ul,
5867
- .brz .brz-rich-text ol ul,
5868
- .brz .brz-rich-text ul ol {
5869
- margin: 0; }
5870
- .brz .brz-rich-text a {
5871
- text-decoration: none;
5872
- background-color: transparent;
5873
- -webkit-text-decoration-skip: objects; }
5874
- .brz .brz-rich-text a[href]:hover {
5875
- text-decoration: underline; }
5876
- .brz .brz-rich-text strong {
5877
- font-weight: bold; }
5878
- .brz .brz-rich-text .link--anchor,
5879
- .brz .brz-rich-text .link--external,
5880
- .brz .brz-rich-text .link--popup {
5881
- text-decoration: none; }
5882
- .brz .brz-rich-text .link--anchor:hover,
5883
- .brz .brz-rich-text .link--external:hover,
5884
- .brz .brz-rich-text .link--popup:hover {
5885
- text-decoration: underline; }
5886
- .brz .brz-rich-text .brz-tp__dc-block:after {
5887
- content: "";
5888
- display: table;
5889
- clear: both; }
5890
- .brz .brz-rich-text .brz-tp__dc-block iframe,
5891
- .brz .brz-rich-text .brz-tp__dc-block object,
5892
- .brz .brz-rich-text .brz-tp__dc-block video,
5893
- .brz .brz-rich-text .brz-tp__dc-block img {
5894
- max-width: 100%; }
5895
- .brz .brz-text__editor {
5896
- min-width: 10px; }
5897
- .brz .brz-text__editor:empty:before {
5898
- content: "\00a0\00a0"; }
5899
- .brz:not(.brz-ed) .brz-population-mask {
5900
- background-clip: text;
5901
- color: transparent !important; }
5902
- .brz .brz-story .brz-rich-text p {
5903
- width: 100%;
5904
- font-size: calc(16% * 0.23); }
5905
- .brz .brz-story .brz-rich-text .brz-ed-box__resizer {
5906
- font-size: inherit; }
5907
- .brz .brz-story .brz-rich-text .brz-ed-box__resizer {
5908
- font-size: inherit; }
5909
- .brz .brz-counter {
5910
- position: relative; }
5911
- .brz .brz-counter .brz-counter-figures {
5912
- text-align: center;
5913
- display: -webkit-box;
5914
- display: -ms-flexbox;
5915
- display: flex; }
5916
- .brz .brz-counter .brz-counter-figures span {
5917
- word-break: normal;
5918
- white-space: pre; }
5919
- .brz .brz-counter-simple {
5920
- width: auto !important; }
5921
- .brz .brz-counter-radial .brz-counter-figures {
5922
- position: absolute;
5923
- top: 50%;
5924
- left: 50%;
5925
- -webkit-transform: translate(-50%, -50%);
5926
- transform: translate(-50%, -50%); }
5927
- .brz .brz-counter-empty .brz-counter-figures {
5928
- display: none; }
5929
- .brz .brz-counter-pie .brz-counter-figures {
5930
- display: none; }
5931
- .brz .brz-counter .brz-ed-box__resizer {
5932
- height: auto; }
5933
- .brz .brz-counter .brz-counter-chart {
5934
- text-align: center;
5935
- margin: 0 auto; }
5936
- .brz .brz-counter .brz-counter-chart svg {
5937
- width: 100%;
5938
- height: 100%;
5939
- -webkit-transform: rotate(-90deg);
5940
- transform: rotate(-90deg);
5941
- background: yellowgreen;
5942
- border-radius: 50%; }
5943
- .brz .brz-counter .brz-counter-chart.brz-counter-chart-radial svg {
5944
- background: transparent; }
5945
- .brz .brz-counter .brz-counter-chart.brz-counter-chart-radial .brz-counter-pie-chart {
5946
- fill: transparent; }
5947
- .brz .brz-counter .brz-counter-chart.brz-counter-chart-empty svg {
5948
- background: transparent; }
5949
- .brz .brz-counter .brz-counter-chart.brz-counter-chart-empty .brz-counter-pie-chart {
5950
- fill: transparent; }
5951
- .brz .brz-counter .brz-counter-chart.brz-counter-chart-empty .brz-counter-pie-chart {
5952
- stroke-width: 32; }
5953
- .brz .brz-counter .brz-counter-chart.brz-counter-chart-pie svg {
5954
- background: transparent; }
5955
- .brz .brz-counter .brz-counter-chart.brz-counter-chart-pie .brz-counter-pie-chart {
5956
- stroke-width: 32; }
5957
- .brz .brz-progress-bar__wrapper {
5958
- overflow: hidden; }
5959
- .brz .brz-progress-bar .brz-d-xs-flex {
5960
- width: 100%; }
5961
- .brz .brz-progress-bar .brz-text__editor {
5962
- -webkit-box-flex: 1;
5963
- -ms-flex-positive: 1;
5964
- flex-grow: 1;
5965
- white-space: nowrap;
5966
- overflow: hidden;
5967
- text-overflow: ellipsis; }
5968
- .brz .brz-progress-bar.brz-without-text .brz-progress-bar__percent {
5969
- width: 100%;
5970
- text-align: right; }
5971
- .brz .brz-progress-bar-style1::after,
5972
- .brz .brz-progress-bar-style2 .brz-progress-bar-overlay::after {
5973
- content: "";
5974
- position: absolute;
5975
- top: 0;
5976
- left: 0;
5977
- width: 100%;
5978
- height: 100%;
5979
- pointer-events: none; }
5980
- .brz .brz-progress-bar-style1,
5981
- .brz .brz-progress-bar-style2 .brz-progress-bar-overlay {
5982
- position: relative;
5983
- width: 100%; }
5984
- .brz .brz-progress-bar-style2 .brz-progress-bar__percent {
5985
- position: relative;
5986
- display: inline-block;
5987
- padding: 4px 7px;
5988
- margin-bottom: 10px;
5989
- text-align: center; }
5990
- .brz .brz-shortcode__placeholder {
5991
- display: -webkit-box;
5992
- display: -ms-flexbox;
5993
- display: flex;
5994
- -webkit-box-align: center;
5995
- -ms-flex-align: center;
5996
- align-items: center;
5997
- -webkit-box-pack: center;
5998
- -ms-flex-pack: center;
5999
- justify-content: center;
6000
- height: 100%;
6001
- width: 100%;
6002
- background-color: #ececec; }
6003
- .brz .brz-shortcode__placeholder * {
6004
- color: #c7c8ca !important; }
6005
- .brz .brz-shortcode__placeholder .brz-icon-svg {
6006
- width: calc(16px + (0.075 * 100%));
6007
- height: calc(16px + (0.075 * 100%)); }
6008
- .brz .brz-soundcloud {
6009
- position: relative;
6010
- font-size: 0; }
6011
- .brz .brz-soundcloud::before {
6012
- content: " ";
6013
- position: absolute;
6014
- width: 100%;
6015
- height: 100%;
6016
- z-index: 3;
6017
- pointer-events: none; }
6018
- .brz .brz-soundcloud .brz-soundCloud-content {
6019
- overflow: hidden;
6020
- position: relative;
6021
- height: 100%;
6022
- width: 100%; }
6023
- .brz .brz-soundcloud .brz-soundCloud-content iframe {
6024
- width: 100%; }
6025
- .brz .brz-soundcloud .brz-soundCloud-content::before {
6026
- content: "";
6027
- width: 100%;
6028
- height: 100%;
6029
- position: absolute;
6030
- top: 0;
6031
- left: 0;
6032
- z-index: 2;
6033
- display: block;
6034
- pointer-events: none; }
6035
- .brz .slick-slider {
6036
- position: relative;
6037
- display: block;
6038
- -webkit-box-sizing: border-box;
6039
- box-sizing: border-box;
6040
- -ms-touch-action: pan-y;
6041
- touch-action: pan-y;
6042
- -webkit-tap-highlight-color: transparent;
6043
- width: 0;
6044
- min-width: 100%; }
6045
- .brz .slick-slider.slick-dotted {
6046
- margin: 0; }
6047
- .brz .slick-list {
6048
- position: relative;
6049
- overflow: hidden;
6050
- display: block;
6051
- margin: 0;
6052
- padding: 0; }
6053
- .brz .slick-list:focus {
6054
- outline: none; }
6055
- .brz .slick-list.dragging {
6056
- cursor: pointer;
6057
- cursor: hand; }
6058
- .brz .slick-slider .slick-track,
6059
- .brz .slick-slider .slick-list {
6060
- -webkit-transform: translate3d(0, 0, 0);
6061
- transform: translate3d(0, 0, 0); }
6062
- .brz .slick-track {
6063
- position: relative;
6064
- left: 0;
6065
- top: 0;
6066
- display: block;
6067
- margin-left: auto;
6068
- margin-right: auto; }
6069
- .slick-loading .brz .slick-track {
6070
- visibility: hidden; }
6071
- .brz .slick-track:before, .brz .slick-track:after {
6072
- content: none; }
6073
- .brz .slick-slide {
6074
- min-height: 1px;
6075
- display: none;
6076
- float: none; }
6077
- .brz .slick-slide img {
6078
- display: block; }
6079
- .brz .slick-slide.slick-loading img {
6080
- display: none; }
6081
- .brz .slick-slide.dragging img {
6082
- pointer-events: none; }
6083
- .slick-initialized .brz .slick-slide {
6084
- display: block; }
6085
- .slick-loading .brz .slick-slide {
6086
- visibility: hidden; }
6087
- .slick-vertical .brz .slick-slide {
6088
- display: block;
6089
- height: auto;
6090
- border: 1px solid transparent; }
6091
- .brz .slick-arrow.slick-hidden {
6092
- display: none; }
6093
- .brz .brz-slick-slider .brz-rich-text *,
6094
- .brz .brz-slick-slider .brz-icon-svg {
6095
- -webkit-backface-visibility: hidden;
6096
- backface-visibility: hidden; }
6097
- .brz .brz-slick-slider .brz-bg-color {
6098
- -webkit-transform: translateZ(0);
6099
- transform: translateZ(0); }
6100
- .brz .brz-slick-slider .slick-slide > div,
6101
- .brz .brz-slick-slider .brz-section__content {
6102
- outline: none; }
6103
- .brz .brz-slick-slider--fade .slick-slide {
6104
- height: auto;
6105
- visibility: hidden; }
6106
- .brz .brz-slick-slider--fade .slick-slide.slick-active {
6107
- visibility: visible; }
6108
- .brz .slick-initialized .slick-slide {
6109
- display: block; }
6110
- .brz .slick-track {
6111
- display: -webkit-box;
6112
- display: -ms-flexbox;
6113
- display: flex;
6114
- -ms-flex-wrap: wrap;
6115
- flex-wrap: wrap;
6116
- will-change: left; }
6117
- .brz .brz-slick-slider__dots {
6118
- position: absolute;
6119
- bottom: 50px;
6120
- left: 50%;
6121
- -webkit-transform: translateX(-50%);
6122
- transform: translateX(-50%);
6123
- padding: 0;
6124
- list-style: none;
6125
- margin: 0;
6126
- font-size: 0; }
6127
- .brz .brz-slick-slider__dots li {
6128
- display: inline-block;
6129
- vertical-align: middle;
6130
- padding-left: 5px;
6131
- padding-right: 5px; }
6132
- .brz .brz-slick-slider__dots li:first-child {
6133
- padding-left: 0; }
6134
- .brz .brz-slick-slider__dots li:last-child {
6135
- padding-right: 0; }
6136
- .brz .brz-slick-slider__dots button {
6137
- cursor: pointer;
6138
- color: inherit;
6139
- outline: none;
6140
- overflow: hidden;
6141
- padding: 0;
6142
- text-indent: -9999px;
6143
- border: 2px solid currentColor;
6144
- border-radius: 0;
6145
- background-color: transparent;
6146
- -webkit-transition: background-color linear 0.2s, -webkit-transform linear 0.2s;
6147
- transition: background-color linear 0.2s, -webkit-transform linear 0.2s;
6148
- transition: transform linear 0.2s, background-color linear 0.2s;
6149
- transition: transform linear 0.2s, background-color linear 0.2s, -webkit-transform linear 0.2s; }
6150
- .brz .brz-slick-slider__dots .slick-active button {
6151
- background-color: currentColor;
6152
- -webkit-transition: background-color linear 0.2s, -webkit-transform linear 0.2s;
6153
- transition: background-color linear 0.2s, -webkit-transform linear 0.2s;
6154
- transition: transform linear 0.2s, background-color linear 0.2s;
6155
- transition: transform linear 0.2s, background-color linear 0.2s, -webkit-transform linear 0.2s; }
6156
- .brz .brz-slick-slider__dots--circle button {
6157
- width: 10px;
6158
- height: 10px;
6159
- border-radius: 10px; }
6160
- .brz .brz-slick-slider__dots--diamond button {
6161
- width: 10px;
6162
- height: 10px;
6163
- -webkit-transform: rotate(-45deg);
6164
- transform: rotate(-45deg); }
6165
- .brz .brz-slick-slider__dots--square button {
6166
- width: 10px;
6167
- height: 10px; }
6168
- .brz .brz-slick-slider__arrow {
6169
- position: absolute;
6170
- top: 50%;
6171
- -webkit-transform: translateY(-50%);
6172
- transform: translateY(-50%);
6173
- z-index: 2;
6174
- font-size: 30px;
6175
- cursor: pointer;
6176
- -webkit-transition: opacity linear 0.2s;
6177
- transition: opacity linear 0.2s;
6178
- color: #000;
6179
- background-color: transparent;
6180
- border: none;
6181
- overflow: auto; }
6182
- .brz .brz-slick-slider__arrow:hover {
6183
- -webkit-transition: opacity linear 0.2s;
6184
- transition: opacity linear 0.2s; }
6185
- .brz .brz-slick-slider__arrow .brz-icon-svg {
6186
- display: block; }
6187
- .brz .brz-slick-slider__arrow-prev {
6188
- -webkit-transform: translateY(-50%) rotate(-180deg);
6189
- transform: translateY(-50%) rotate(-180deg);
6190
- left: 30px; }
6191
- .brz .brz-slick-slider__arrow-next {
6192
- right: 30px; }
6193
- .brz .brz-forms {
6194
- width: 100%; }
6195
- .brz .brz-forms__wrap, .brz .brz-forms__fields {
6196
- display: -webkit-box;
6197
- display: -ms-flexbox;
6198
- display: flex;
6199
- -ms-flex-wrap: wrap;
6200
- flex-wrap: wrap; }
6201
- .brz .brz-forms__wrap {
6202
- -webkit-box-align: end;
6203
- -ms-flex-align: end;
6204
- align-items: flex-end; }
6205
- .brz .brz-forms__item {
6206
- -webkit-box-flex: 1;
6207
- -ms-flex-positive: 1;
6208
- flex-grow: 1;
6209
- -ms-flex-negative: 0;
6210
- flex-shrink: 0; }
6211
- .brz .brz-forms .brz-input,
6212
- .brz .brz-forms .brz-textarea {
6213
- display: block;
6214
- width: 100%;
6215
- height: auto;
6216
- background-color: transparent;
6217
- border: none;
6218
- outline: none;
6219
- color: inherit;
6220
- font-size: inherit;
6221
- font-family: inherit;
6222
- letter-spacing: inherit;
6223
- font-weight: inherit;
6224
- line-height: inherit;
6225
- -webkit-box-shadow: none;
6226
- box-shadow: none; }
6227
- .brz .brz-forms .brz-input::-webkit-input-placeholder,
6228
- .brz .brz-forms .brz-textarea::-webkit-input-placeholder {
6229
- color: inherit; }
6230
- .brz .brz-forms .brz-input::-moz-placeholder,
6231
- .brz .brz-forms .brz-textarea::-moz-placeholder {
6232
- color: inherit; }
6233
- .brz .brz-forms .brz-input::-ms-input-placeholder,
6234
- .brz .brz-forms .brz-textarea::-ms-input-placeholder {
6235
- color: inherit; }
6236
- .brz .brz-forms .brz-input::placeholder,
6237
- .brz .brz-forms .brz-textarea::placeholder {
6238
- color: inherit; }
6239
- .brz .brz-forms .brz-textarea {
6240
- height: 100%;
6241
- resize: none; }
6242
- .brz .brz-forms .brz-label {
6243
- display: block; }
6244
- .brz .brz-forms .brz-forms__field {
6245
- padding: 14px 24px;
6246
- text-align: left; }
6247
- .brz .brz-forms .brz-forms__field-label {
6248
- border: none;
6249
- cursor: auto; }
6250
- .brz .brz-forms__select {
6251
- position: relative; }
6252
- .brz .brz-forms__select-current {
6253
- display: -webkit-box;
6254
- display: -ms-flexbox;
6255
- display: flex;
6256
- -webkit-box-align: center;
6257
- -ms-flex-align: center;
6258
- align-items: center;
6259
- -webkit-box-pack: justify;
6260
- -ms-flex-pack: justify;
6261
- justify-content: space-between; }
6262
- .brz .brz-forms__select-current .brz-span {
6263
- width: 100%;
6264
- cursor: pointer; }
6265
- .brz .brz-forms__select-list {
6266
- border: 1px solid #dcdee1;
6267
- border-top-width: 0;
6268
- overflow: hidden;
6269
- position: absolute;
6270
- z-index: 1041;
6271
- top: 100%;
6272
- left: 0;
6273
- width: 100%;
6274
- background-color: #fff; }
6275
- .brz .brz-forms__select-item {
6276
- display: -webkit-box;
6277
- display: -ms-flexbox;
6278
- display: flex;
6279
- -ms-flex-wrap: nowrap;
6280
- flex-wrap: nowrap;
6281
- border: 0;
6282
- height: 52px; }
6283
- .brz .brz-forms__select-item:not(:last-child) {
6284
- border-bottom: 1px solid #f1f1f2; }
6285
- .brz .brz-forms__select-item__input {
6286
- -webkit-box-flex: 1;
6287
- -ms-flex: 1 1 auto;
6288
- flex: 1 1 auto;
6289
- font-size: 16px;
6290
- color: rgba(115, 119, 127, 0.7);
6291
- line-height: 1;
6292
- font-family: inherit;
6293
- font-weight: inherit;
6294
- padding: 14px 24px; }
6295
- .brz .brz-forms__select-item__input .brz-input {
6296
- border-width: 0;
6297
- height: 100%;
6298
- width: 100%;
6299
- color: inherit; }
6300
- .brz .brz-forms__select-item__input .brz-input::-webkit-input-placeholder {
6301
- color: rgba(115, 119, 127, 0.7);
6302
- font-style: italic; }
6303
- .brz .brz-forms__select-item__input .brz-input:-moz-placeholder {
6304
- color: rgba(115, 119, 127, 0.7);
6305
- font-style: italic; }
6306
- .brz .brz-forms__select-item__input .brz-input::-moz-placeholder {
6307
- color: rgba(115, 119, 127, 0.7);
6308
- font-style: italic; }
6309
- .brz .brz-forms__select-item__input .brz-input:-ms-input-placeholder {
6310
- color: rgba(115, 119, 127, 0.7);
6311
- font-style: italic; }
6312
- .brz .brz-forms__select-item__input .brz-input.brz-input {
6313
- cursor: text; }
6314
- .brz .brz-forms__select-item__icon {
6315
- color: rgba(115, 119, 127, 0.7);
6316
- -ms-flex-preferred-size: 52px;
6317
- flex-basis: 52px;
6318
- text-align: center;
6319
- font-size: 13px;
6320
- display: -webkit-box;
6321
- display: -ms-flexbox;
6322
- display: flex;
6323
- -webkit-box-align: center;
6324
- -ms-flex-align: center;
6325
- align-items: center;
6326
- -webkit-box-pack: center;
6327
- -ms-flex-pack: center;
6328
- justify-content: center;
6329
- cursor: pointer; }
6330
- .brz .brz-forms__select--arrow {
6331
- font-size: 14px; }
6332
- .brz .brz-forms .brz-control__select {
6333
- position: relative; }
6334
- .brz .brz-forms .brz-control__select-current,
6335
- .brz .brz-forms .brz-control__select-option {
6336
- display: -webkit-box;
6337
- display: -ms-flexbox;
6338
- display: flex;
6339
- -webkit-box-align: center;
6340
- -ms-flex-align: center;
6341
- align-items: center;
6342
- -webkit-box-pack: justify;
6343
- -ms-flex-pack: justify;
6344
- justify-content: space-between;
6345
- font-size: inherit;
6346
- color: inherit; }
6347
- .brz .brz-forms .brz-control__select-current {
6348
- padding: 14px 24px;
6349
- cursor: pointer; }
6350
- .brz .brz-forms .brz-control__select-current .brz-control__select-option {
6351
- border: 0;
6352
- -ms-flex-preferred-size: 100%;
6353
- flex-basis: 100%;
6354
- height: 100%; }
6355
- .brz .brz-forms .brz-control__select-current .brz-control__select--arrow {
6356
- font-size: 14px; }
6357
- .brz .brz-forms .brz-control__select-options {
6358
- border: 1px solid #dcdee1;
6359
- border-top-width: 0;
6360
- overflow: hidden;
6361
- position: absolute;
6362
- z-index: 1030;
6363
- top: 100%;
6364
- left: 0;
6365
- width: 100%;
6366
- background-color: #fff;
6367
- display: none; }
6368
- .brz .brz-forms .brz-control__select-options .brz-control__select-option {
6369
- padding: 14px 24px;
6370
- font-size: 16px;
6371
- height: 52px;
6372
- line-height: 1.5;
6373
- cursor: pointer; }
6374
- .brz .brz-forms .brz-control__select-options .brz-control__select-option:not(:last-child) {
6375
- border-bottom: 1px solid #f1f1f2; }
6376
- .brz .brz-forms__alert {
6377
- min-height: 55px;
6378
- width: 100%;
6379
- font-size: 12px;
6380
- line-height: 2;
6381
- letter-spacing: 2.5px;
6382
- font-weight: 600;
6383
- text-transform: uppercase;
6384
- padding: 17px 30px;
6385
- color: #fff;
6386
- margin-top: 15px; }
6387
- .brz .brz-forms__alert--success {
6388
- background-color: #15d053; }
6389
- .brz .brz-forms__alert--error {
6390
- background-color: #f00; }
6391
- .brz .brz-forms__item--error .brz-forms__field,
6392
- .brz .brz-forms__item--error .brz-control__select-current {
6393
- border-color: #f00 !important;
6394
- border-style: solid !important; }
6395
- @media (max-width: 767px) {
6396
- .brz .brz-forms__select-item__input {
6397
- font-size: 14px;
6398
- padding: 10px 16px; }
6399
- .brz .brz-forms .brz-forms__field {
6400
- padding: 10px 16px; }
6401
- .brz .brz-forms .brz-control__select-current {
6402
- padding: 10px 16px; }
6403
- .brz .brz-forms .brz-control__select-options .brz-control__select-option {
6404
- padding: 10px 16px;
6405
- font-size: 14px; } }
6406
- .brz .flatpickr-calendar {
6407
- background: transparent;
6408
- opacity: 0;
6409
- display: none;
6410
- text-align: center;
6411
- visibility: hidden;
6412
- padding: 0;
6413
- -webkit-animation: none;
6414
- animation: none;
6415
- direction: ltr;
6416
- border: 0;
6417
- font-size: 14px;
6418
- line-height: 24px;
6419
- border-radius: 5px;
6420
- position: absolute;
6421
- width: 307.875px;
6422
- -webkit-box-sizing: border-box;
6423
- box-sizing: border-box;
6424
- -ms-touch-action: manipulation;
6425
- touch-action: manipulation;
6426
- background: #fff;
6427
- -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, 0.08);
6428
- 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, 0.08); }
6429
- .brz .flatpickr-calendar.open, .brz .flatpickr-calendar.inline {
6430
- opacity: 1;
6431
- max-height: 640px;
6432
- visibility: visible; }
6433
- .brz .flatpickr-calendar.open {
6434
- display: inline-block;
6435
- z-index: 99999; }
6436
- .brz .flatpickr-calendar.animate.open {
6437
- -webkit-animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
6438
- animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1); }
6439
- .brz .flatpickr-calendar.inline {
6440
- display: block;
6441
- position: relative;
6442
- top: 2px; }
6443
- .brz .flatpickr-calendar.static {
6444
- position: absolute;
6445
- top: calc(100% + 2px); }
6446
- .brz .flatpickr-calendar.static.open {
6447
- z-index: 999;
6448
- display: block; }
6449
- .brz .flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7) {
6450
- -webkit-box-shadow: none !important;
6451
- box-shadow: none !important; }
6452
- .brz .flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1) {
6453
- -webkit-box-shadow: -2px 0 0 #e6e6e6,5px 0 0 #e6e6e6;
6454
- box-shadow: -2px 0 0 #e6e6e6,5px 0 0 #e6e6e6; }
6455
- .brz .flatpickr-calendar .hasWeeks .dayContainer, .brz .flatpickr-calendar .hasTime .dayContainer {
6456
- border-bottom: 0;
6457
- border-bottom-right-radius: 0;
6458
- border-bottom-left-radius: 0; }
6459
- .brz .flatpickr-calendar .hasWeeks .dayContainer {
6460
- border-left: 0; }
6461
- .brz .flatpickr-calendar.showTimeInput.hasTime .flatpickr-time {
6462
- height: 40px;
6463
- border-top: 1px solid #e6e6e6; }
6464
- .brz .flatpickr-calendar.noCalendar.hasTime .flatpickr-time {
6465
- height: auto; }
6466
- .brz .flatpickr-calendar:before, .brz .flatpickr-calendar:after {
6467
- position: absolute;
6468
- display: block;
6469
- pointer-events: none;
6470
- border: solid transparent;
6471
- content: '';
6472
- height: 0;
6473
- width: 0;
6474
- left: 22px; }
6475
- .brz .flatpickr-calendar.rightMost:before, .brz .flatpickr-calendar.rightMost:after {
6476
- left: auto;
6477
- right: 22px; }
6478
- .brz .flatpickr-calendar:before {
6479
- border-width: 5px;
6480
- margin: 0 -5px; }
6481
- .brz .flatpickr-calendar:after {
6482
- border-width: 4px;
6483
- margin: 0 -4px; }
6484
- .brz .flatpickr-calendar.arrowTop:before, .brz .flatpickr-calendar.arrowTop:after {
6485
- bottom: 100%; }
6486
- .brz .flatpickr-calendar.arrowTop:before {
6487
- border-bottom-color: #e6e6e6; }
6488
- .brz .flatpickr-calendar.arrowTop:after {
6489
- border-bottom-color: #fff; }
6490
- .brz .flatpickr-calendar.arrowBottom:before, .brz .flatpickr-calendar.arrowBottom:after {
6491
- top: 100%; }
6492
- .brz .flatpickr-calendar.arrowBottom:before {
6493
- border-top-color: #e6e6e6; }
6494
- .brz .flatpickr-calendar.arrowBottom:after {
6495
- border-top-color: #fff; }
6496
- .brz .flatpickr-calendar:focus {
6497
- outline: 0; }
6498
- .brz .flatpickr-wrapper {
6499
- position: relative;
6500
- display: inline-block; }
6501
- .brz .flatpickr-months {
6502
- display: -webkit-box;
6503
- display: -ms-flexbox;
6504
- display: flex; }
6505
- .brz .flatpickr-months .flatpickr-month {
6506
- background: transparent;
6507
- color: rgba(0, 0, 0, 0.9);
6508
- fill: rgba(0, 0, 0, 0.9);
6509
- height: 34px;
6510
- line-height: 1;
6511
- text-align: center;
6512
- position: relative;
6513
- -webkit-user-select: none;
6514
- -moz-user-select: none;
6515
- -ms-user-select: none;
6516
- user-select: none;
6517
- overflow: hidden;
6518
- -webkit-box-flex: 1;
6519
- -ms-flex: 1;
6520
- flex: 1; }
6521
- .brz .flatpickr-months .flatpickr-prev-month, .brz .flatpickr-months .flatpickr-next-month {
6522
- text-decoration: none;
6523
- cursor: pointer;
6524
- position: absolute;
6525
- top: 0;
6526
- height: 34px;
6527
- padding: 10px;
6528
- z-index: 3;
6529
- color: rgba(0, 0, 0, 0.9);
6530
- fill: rgba(0, 0, 0, 0.9); }
6531
- .brz .flatpickr-months .flatpickr-prev-month.flatpickr-disabled, .brz .flatpickr-months .flatpickr-next-month.flatpickr-disabled {
6532
- display: none; }
6533
- .brz .flatpickr-months .flatpickr-prev-month i, .brz .flatpickr-months .flatpickr-next-month i {
6534
- position: relative; }
6535
- .brz .flatpickr-months .flatpickr-prev-month.flatpickr-prev-month, .brz .flatpickr-months .flatpickr-next-month.flatpickr-prev-month {
6536
- /*
6537
- /*rtl:begin:ignore*/
6538
- left: 0;
6539
- /*
6540
- /*rtl:end:ignore*/ }
6541
- .brz .flatpickr-months .flatpickr-prev-month.flatpickr-next-month, .brz .flatpickr-months .flatpickr-next-month.flatpickr-next-month {
6542
- /*
6543
- /*rtl:begin:ignore*/
6544
- right: 0;
6545
- /*
6546
- /*rtl:end:ignore*/ }
6547
- .brz .flatpickr-months .flatpickr-prev-month:hover, .brz .flatpickr-months .flatpickr-next-month:hover {
6548
- color: #959ea9; }
6549
- .brz .flatpickr-months .flatpickr-prev-month:hover svg, .brz .flatpickr-months .flatpickr-next-month:hover svg {
6550
- fill: #f64747; }
6551
- .brz .flatpickr-months .flatpickr-prev-month svg, .brz .flatpickr-months .flatpickr-next-month svg {
6552
- width: 14px;
6553
- height: 14px; }
6554
- .brz .flatpickr-months .flatpickr-prev-month svg path, .brz .flatpickr-months .flatpickr-next-month svg path {
6555
- -webkit-transition: fill .1s;
6556
- transition: fill .1s;
6557
- fill: inherit; }
6558
- .brz .numInputWrapper {
6559
- position: relative;
6560
- height: auto; }
6561
- .brz .numInputWrapper input, .brz .numInputWrapper span {
6562
- display: inline-block; }
6563
- .brz .numInputWrapper input {
6564
- width: 100%; }
6565
- .brz .numInputWrapper input::-ms-clear {
6566
- display: none; }
6567
- .brz .numInputWrapper input::-webkit-outer-spin-button, .brz .numInputWrapper input::-webkit-inner-spin-button {
6568
- margin: 0;
6569
- -webkit-appearance: none; }
6570
- .brz .numInputWrapper span {
6571
- position: absolute;
6572
- right: 0;
6573
- width: 14px;
6574
- padding: 0 4px 0 2px;
6575
- height: 50%;
6576
- line-height: 50%;
6577
- opacity: 0;
6578
- cursor: pointer;
6579
- border: 1px solid rgba(57, 57, 57, 0.15);
6580
- -webkit-box-sizing: border-box;
6581
- box-sizing: border-box; }
6582
- .brz .numInputWrapper span:hover {
6583
- background: rgba(0, 0, 0, 0.1); }
6584
- .brz .numInputWrapper span:active {
6585
- background: rgba(0, 0, 0, 0.2); }
6586
- .brz .numInputWrapper span:after {
6587
- display: block;
6588
- content: "";
6589
- position: absolute; }
6590
- .brz .numInputWrapper span.arrowUp {
6591
- top: 0;
6592
- border-bottom: 0; }
6593
- .brz .numInputWrapper span.arrowUp:after {
6594
- border-left: 4px solid transparent;
6595
- border-right: 4px solid transparent;
6596
- border-bottom: 4px solid rgba(57, 57, 57, 0.6);
6597
- top: 26%; }
6598
- .brz .numInputWrapper span.arrowDown {
6599
- top: 50%; }
6600
- .brz .numInputWrapper span.arrowDown:after {
6601
- border-left: 4px solid transparent;
6602
- border-right: 4px solid transparent;
6603
- border-top: 4px solid rgba(57, 57, 57, 0.6);
6604
- top: 40%; }
6605
- .brz .numInputWrapper span svg {
6606
- width: inherit;
6607
- height: auto; }
6608
- .brz .numInputWrapper span svg path {
6609
- fill: rgba(0, 0, 0, 0.5); }
6610
- .brz .numInputWrapper:hover {
6611
- background: rgba(0, 0, 0, 0.05); }
6612
- .brz .numInputWrapper:hover span {
6613
- opacity: 1; }
6614
- .brz .flatpickr-current-month {
6615
- font-size: 135%;
6616
- line-height: inherit;
6617
- font-weight: 300;
6618
- color: inherit;
6619
- position: absolute;
6620
- width: 75%;
6621
- left: 12.5%;
6622
- padding: 7.48px 0 0 0;
6623
- line-height: 1;
6624
- height: 34px;
6625
- display: inline-block;
6626
- text-align: center;
6627
- -webkit-transform: translate3d(0, 0, 0);
6628
- transform: translate3d(0, 0, 0); }
6629
- .brz .flatpickr-current-month span.cur-month {
6630
- font-family: inherit;
6631
- font-weight: 700;
6632
- color: inherit;
6633
- display: inline-block;
6634
- margin-left: .5ch;
6635
- padding: 0; }
6636
- .brz .flatpickr-current-month span.cur-month:hover {
6637
- background: rgba(0, 0, 0, 0.05); }
6638
- .brz .flatpickr-current-month .numInputWrapper {
6639
- width: 6ch;
6640
- width: 7ch\0;
6641
- display: inline-block; }
6642
- .brz .flatpickr-current-month .numInputWrapper span.arrowUp:after {
6643
- border-bottom-color: rgba(0, 0, 0, 0.9); }
6644
- .brz .flatpickr-current-month .numInputWrapper span.arrowDown:after {
6645
- border-top-color: rgba(0, 0, 0, 0.9); }
6646
- .brz .flatpickr-current-month input.cur-year {
6647
- background: transparent;
6648
- -webkit-box-sizing: border-box;
6649
- box-sizing: border-box;
6650
- color: inherit;
6651
- cursor: text;
6652
- padding: 0 0 0 .5ch;
6653
- margin: 0;
6654
- display: inline-block;
6655
- font-size: inherit;
6656
- font-family: inherit;
6657
- font-weight: 300;
6658
- line-height: inherit;
6659
- height: auto;
6660
- border: 0;
6661
- border-radius: 0;
6662
- vertical-align: initial;
6663
- -webkit-appearance: textfield;
6664
- -moz-appearance: textfield;
6665
- appearance: textfield; }
6666
- .brz .flatpickr-current-month input.cur-year:focus {
6667
- outline: 0; }
6668
- .brz .flatpickr-current-month input.cur-year[disabled], .brz .flatpickr-current-month input.cur-year[disabled]:hover {
6669
- font-size: 100%;
6670
- color: rgba(0, 0, 0, 0.5);
6671
- background: transparent;
6672
- pointer-events: none; }
6673
- .brz .flatpickr-current-month .flatpickr-monthDropdown-months {
6674
- appearance: menulist;
6675
- background: transparent;
6676
- border: none;
6677
- border-radius: 0;
6678
- box-sizing: border-box;
6679
- color: inherit;
6680
- cursor: pointer;
6681
- font-size: inherit;
6682
- font-family: inherit;
6683
- font-weight: 300;
6684
- height: auto;
6685
- line-height: inherit;
6686
- margin: -1px 0 0 0;
6687
- outline: none;
6688
- padding: 0 0 0 .5ch;
6689
- position: relative;
6690
- vertical-align: initial;
6691
- -webkit-box-sizing: border-box;
6692
- -webkit-appearance: menulist;
6693
- -moz-appearance: menulist;
6694
- width: auto; }
6695
- .brz .flatpickr-current-month .flatpickr-monthDropdown-months:focus, .brz .flatpickr-current-month .flatpickr-monthDropdown-months:active {
6696
- outline: none; }
6697
- .brz .flatpickr-current-month .flatpickr-monthDropdown-months:hover {
6698
- background: rgba(0, 0, 0, 0.05); }
6699
- .brz .flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {
6700
- background-color: transparent;
6701
- outline: none;
6702
- padding: 0; }
6703
- .brz .flatpickr-weekdays {
6704
- background: transparent;
6705
- text-align: center;
6706
- overflow: hidden;
6707
- width: 100%;
6708
- display: -webkit-box;
6709
- display: -ms-flexbox;
6710
- display: flex;
6711
- -webkit-box-align: center;
6712
- -ms-flex-align: center;
6713
- align-items: center;
6714
- height: 28px; }
6715
- .brz .flatpickr-weekdays .flatpickr-weekdaycontainer {
6716
- display: -webkit-box;
6717
- display: -ms-flexbox;
6718
- display: flex;
6719
- -webkit-box-flex: 1;
6720
- -ms-flex: 1;
6721
- flex: 1; }
6722
- .brz span.flatpickr-weekday {
6723
- cursor: default;
6724
- font-size: 90%;
6725
- background: transparent;
6726
- color: rgba(0, 0, 0, 0.54);
6727
- line-height: 1;
6728
- margin: 0;
6729
- text-align: center;
6730
- display: block;
6731
- -webkit-box-flex: 1;
6732
- -ms-flex: 1;
6733
- flex: 1;
6734
- font-weight: bolder; }
6735
- .brz .dayContainer, .brz .flatpickr-weeks {
6736
- padding: 1px 0 0 0; }
6737
- .brz .flatpickr-days {
6738
- position: relative;
6739
- overflow: hidden;
6740
- display: -webkit-box;
6741
- display: -ms-flexbox;
6742
- display: flex;
6743
- -webkit-box-align: start;
6744
- -ms-flex-align: start;
6745
- align-items: flex-start;
6746
- width: 307.875px; }
6747
- .brz .flatpickr-days:focus {
6748
- outline: 0; }
6749
- .brz .dayContainer {
6750
- padding: 0;
6751
- outline: 0;
6752
- text-align: left;
6753
- width: 307.875px;
6754
- min-width: 307.875px;
6755
- max-width: 307.875px;
6756
- -webkit-box-sizing: border-box;
6757
- box-sizing: border-box;
6758
- display: inline-block;
6759
- display: -ms-flexbox;
6760
- display: -webkit-box;
6761
- display: flex;
6762
- flex-wrap: wrap;
6763
- -ms-flex-wrap: wrap;
6764
- -ms-flex-pack: justify;
6765
- justify-content: space-around;
6766
- -webkit-transform: translate3d(0, 0, 0);
6767
- transform: translate3d(0, 0, 0);
6768
- opacity: 1; }
6769
- .brz .dayContainer + .dayContainer {
6770
- -webkit-box-shadow: -1px 0 0 #e6e6e6;
6771
- box-shadow: -1px 0 0 #e6e6e6; }
6772
- .brz .flatpickr-day {
6773
- background: none;
6774
- border: 1px solid transparent;
6775
- border-radius: 150px;
6776
- -webkit-box-sizing: border-box;
6777
- box-sizing: border-box;
6778
- color: #393939;
6779
- cursor: pointer;
6780
- font-weight: 400;
6781
- width: 14.2857143%;
6782
- -ms-flex-preferred-size: 14.2857143%;
6783
- flex-basis: 14.2857143%;
6784
- max-width: 39px;
6785
- height: 39px;
6786
- line-height: 39px;
6787
- margin: 0;
6788
- display: inline-block;
6789
- position: relative;
6790
- -webkit-box-pack: center;
6791
- -ms-flex-pack: center;
6792
- justify-content: center;
6793
- text-align: center; }
6794
- .brz .flatpickr-day.inRange, .brz .flatpickr-day.prevMonthDay.inRange, .brz .flatpickr-day.nextMonthDay.inRange, .brz .flatpickr-day.today.inRange, .brz .flatpickr-day.prevMonthDay.today.inRange, .brz .flatpickr-day.nextMonthDay.today.inRange, .brz .flatpickr-day:hover, .brz .flatpickr-day.prevMonthDay:hover, .brz .flatpickr-day.nextMonthDay:hover, .brz .flatpickr-day:focus, .brz .flatpickr-day.prevMonthDay:focus, .brz .flatpickr-day.nextMonthDay:focus {
6795
- cursor: pointer;
6796
- outline: 0;
6797
- background: #e6e6e6;
6798
- border-color: #e6e6e6; }
6799
- .brz .flatpickr-day.today {
6800
- border-color: #959ea9; }
6801
- .brz .flatpickr-day.today:hover, .brz .flatpickr-day.today:focus {
6802
- border-color: #959ea9;
6803
- background: #959ea9;
6804
- color: #fff; }
6805
- .brz .flatpickr-day.selected, .brz .flatpickr-day.startRange, .brz .flatpickr-day.endRange, .brz .flatpickr-day.selected.inRange, .brz .flatpickr-day.startRange.inRange, .brz .flatpickr-day.endRange.inRange, .brz .flatpickr-day.selected:focus, .brz .flatpickr-day.startRange:focus, .brz .flatpickr-day.endRange:focus, .brz .flatpickr-day.selected:hover, .brz .flatpickr-day.startRange:hover, .brz .flatpickr-day.endRange:hover, .brz .flatpickr-day.selected.prevMonthDay, .brz .flatpickr-day.startRange.prevMonthDay, .brz .flatpickr-day.endRange.prevMonthDay, .brz .flatpickr-day.selected.nextMonthDay, .brz .flatpickr-day.startRange.nextMonthDay, .brz .flatpickr-day.endRange.nextMonthDay {
6806
- background: #569ff7;
6807
- -webkit-box-shadow: none;
6808
- box-shadow: none;
6809
- color: #fff;
6810
- border-color: #569ff7; }
6811
- .brz .flatpickr-day.selected.startRange, .brz .flatpickr-day.startRange.startRange, .brz .flatpickr-day.endRange.startRange {
6812
- border-radius: 50px 0 0 50px; }
6813
- .brz .flatpickr-day.selected.endRange, .brz .flatpickr-day.startRange.endRange, .brz .flatpickr-day.endRange.endRange {
6814
- border-radius: 0 50px 50px 0; }
6815
- .brz .flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)), .brz .flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)), .brz .flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {
6816
- -webkit-box-shadow: -10px 0 0 #569ff7;
6817
- box-shadow: -10px 0 0 #569ff7; }
6818
- .brz .flatpickr-day.selected.startRange.endRange, .brz .flatpickr-day.startRange.startRange.endRange, .brz .flatpickr-day.endRange.startRange.endRange {
6819
- border-radius: 50px; }
6820
- .brz .flatpickr-day.inRange {
6821
- border-radius: 0;
6822
- -webkit-box-shadow: -5px 0 0 #e6e6e6,5px 0 0 #e6e6e6;
6823
- box-shadow: -5px 0 0 #e6e6e6,5px 0 0 #e6e6e6; }
6824
- .brz .flatpickr-day.flatpickr-disabled, .brz .flatpickr-day.flatpickr-disabled:hover, .brz .flatpickr-day.prevMonthDay, .brz .flatpickr-day.nextMonthDay, .brz .flatpickr-day.notAllowed, .brz .flatpickr-day.notAllowed.prevMonthDay, .brz .flatpickr-day.notAllowed.nextMonthDay {
6825
- color: rgba(57, 57, 57, 0.3);
6826
- background: transparent;
6827
- border-color: transparent;
6828
- cursor: default; }
6829
- .brz .flatpickr-day.flatpickr-disabled, .brz .flatpickr-day.flatpickr-disabled:hover {
6830
- cursor: not-allowed;
6831
- color: rgba(57, 57, 57, 0.1); }
6832
- .brz .flatpickr-day.week.selected {
6833
- border-radius: 0;
6834
- -webkit-box-shadow: -5px 0 0 #569ff7,5px 0 0 #569ff7;
6835
- box-shadow: -5px 0 0 #569ff7,5px 0 0 #569ff7; }
6836
- .brz .flatpickr-day.hidden {
6837
- visibility: hidden; }
6838
- .brz .rangeMode .flatpickr-day {
6839
- margin-top: 1px; }
6840
- .brz .flatpickr-weekwrapper {
6841
- float: left; }
6842
- .brz .flatpickr-weekwrapper .flatpickr-weeks {
6843
- padding: 0 12px;
6844
- -webkit-box-shadow: 1px 0 0 #e6e6e6;
6845
- box-shadow: 1px 0 0 #e6e6e6; }
6846
- .brz .flatpickr-weekwrapper .flatpickr-weekday {
6847
- float: none;
6848
- width: 100%;
6849
- line-height: 28px; }
6850
- .brz .flatpickr-weekwrapper span.flatpickr-day, .brz .flatpickr-weekwrapper span.flatpickr-day:hover {
6851
- display: block;
6852
- width: 100%;
6853
- max-width: none;
6854
- color: rgba(57, 57, 57, 0.3);
6855
- background: transparent;
6856
- cursor: default;
6857
- border: none; }
6858
- .brz .flatpickr-innerContainer {
6859
- display: block;
6860
- display: -webkit-box;
6861
- display: -ms-flexbox;
6862
- display: flex;
6863
- -webkit-box-sizing: border-box;
6864
- box-sizing: border-box;
6865
- overflow: hidden; }
6866
- .brz .flatpickr-rContainer {
6867
- display: inline-block;
6868
- padding: 0;
6869
- -webkit-box-sizing: border-box;
6870
- box-sizing: border-box; }
6871
- .brz .flatpickr-time {
6872
- text-align: center;
6873
- outline: 0;
6874
- display: block;
6875
- height: 0;
6876
- line-height: 40px;
6877
- max-height: 40px;
6878
- -webkit-box-sizing: border-box;
6879
- box-sizing: border-box;
6880
- overflow: hidden;
6881
- display: -webkit-box;
6882
- display: -ms-flexbox;
6883
- display: flex; }
6884
- .brz .flatpickr-time:after {
6885
- content: "";
6886
- display: table;
6887
- clear: both; }
6888
- .brz .flatpickr-time .numInputWrapper {
6889
- -webkit-box-flex: 1;
6890
- -ms-flex: 1;
6891
- flex: 1;
6892
- width: 40%;
6893
- height: 40px;
6894
- float: left; }
6895
- .brz .flatpickr-time .numInputWrapper span.arrowUp:after {
6896
- border-bottom-color: #393939; }
6897
- .brz .flatpickr-time .numInputWrapper span.arrowDown:after {
6898
- border-top-color: #393939; }
6899
- .brz .flatpickr-time.hasSeconds .numInputWrapper {
6900
- width: 26%; }
6901
- .brz .flatpickr-time.time24hr .numInputWrapper {
6902
- width: 49%; }
6903
- .brz .flatpickr-time input {
6904
- background: transparent;
6905
- -webkit-box-shadow: none;
6906
- box-shadow: none;
6907
- border: 0;
6908
- border-radius: 0;
6909
- text-align: center;
6910
- margin: 0;
6911
- padding: 0;
6912
- height: inherit;
6913
- line-height: inherit;
6914
- color: #393939;
6915
- font-size: 14px;
6916
- position: relative;
6917
- -webkit-box-sizing: border-box;
6918
- box-sizing: border-box;
6919
- -webkit-appearance: textfield;
6920
- -moz-appearance: textfield;
6921
- appearance: textfield; }
6922
- .brz .flatpickr-time input.flatpickr-hour {
6923
- font-weight: bold; }
6924
- .brz .flatpickr-time input.flatpickr-minute, .brz .flatpickr-time input.flatpickr-second {
6925
- font-weight: 400; }
6926
- .brz .flatpickr-time input:focus {
6927
- outline: 0;
6928
- border: 0; }
6929
- .brz .flatpickr-time .flatpickr-time-separator, .brz .flatpickr-time .flatpickr-am-pm {
6930
- height: inherit;
6931
- float: left;
6932
- line-height: inherit;
6933
- color: #393939;
6934
- font-weight: bold;
6935
- width: 2%;
6936
- -webkit-user-select: none;
6937
- -moz-user-select: none;
6938
- -ms-user-select: none;
6939
- user-select: none;
6940
- -webkit-align-self: center;
6941
- -ms-flex-item-align: center;
6942
- align-self: center; }
6943
- .brz .flatpickr-time .flatpickr-am-pm {
6944
- outline: 0;
6945
- width: 18%;
6946
- cursor: pointer;
6947
- text-align: center;
6948
- font-weight: 400; }
6949
- .brz .flatpickr-time input:hover, .brz .flatpickr-time .flatpickr-am-pm:hover, .brz .flatpickr-time input:focus, .brz .flatpickr-time .flatpickr-am-pm:focus {
6950
- background: #eee; }
6951
- .brz .flatpickr-input[readonly] {
6952
- cursor: pointer; }
6953
-
6954
- @-webkit-keyframes fpFadeInDown {
6955
- from {
6956
- opacity: 0;
6957
- -webkit-transform: translate3d(0, -20px, 0);
6958
- transform: translate3d(0, -20px, 0); }
6959
- to {
6960
- opacity: 1;
6961
- -webkit-transform: translate3d(0, 0, 0);
6962
- transform: translate3d(0, 0, 0); } }
6963
-
6964
- @keyframes fpFadeInDown {
6965
- from {
6966
- opacity: 0;
6967
- -webkit-transform: translate3d(0, -20px, 0);
6968
- transform: translate3d(0, -20px, 0); }
6969
- to {
6970
- opacity: 1;
6971
- -webkit-transform: translate3d(0, 0, 0);
6972
- transform: translate3d(0, 0, 0); } }
6973
- .brz .select2-container {
6974
- -webkit-box-sizing: border-box;
6975
- box-sizing: border-box;
6976
- display: inline-block;
6977
- margin: 0;
6978
- position: relative;
6979
- vertical-align: middle; }
6980
- .brz .select2-container .select2-selection--single {
6981
- -webkit-box-sizing: border-box;
6982
- box-sizing: border-box;
6983
- cursor: pointer;
6984
- display: block;
6985
- height: 28px;
6986
- -moz-user-select: none;
6987
- -ms-user-select: none;
6988
- user-select: none;
6989
- -webkit-user-select: none; }
6990
- .brz .select2-container .select2-selection--single .select2-selection__rendered {
6991
- display: block;
6992
- padding-left: 8px;
6993
- padding-right: 20px;
6994
- overflow: hidden;
6995
- text-overflow: ellipsis;
6996
- white-space: nowrap; }
6997
- .brz .select2-container .select2-selection--single .select2-selection__clear {
6998
- position: relative; }
6999
- .brz .select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
7000
- padding-right: 8px;
7001
- padding-left: 20px; }
7002
- .brz .select2-container .select2-selection--multiple {
7003
- -webkit-box-sizing: border-box;
7004
- box-sizing: border-box;
7005
- cursor: pointer;
7006
- display: block;
7007
- min-height: 32px;
7008
- -moz-user-select: none;
7009
- -ms-user-select: none;
7010
- user-select: none;
7011
- -webkit-user-select: none; }
7012
- .brz .select2-container .select2-selection--multiple .select2-selection__rendered {
7013
- display: inline-block;
7014
- overflow: hidden;
7015
- padding-left: 8px;
7016
- text-overflow: ellipsis;
7017
- white-space: nowrap; }
7018
- .brz .select2-container .select2-search--inline {
7019
- float: left; }
7020
- .brz .select2-container .select2-search--inline .select2-search__field {
7021
- -webkit-box-sizing: border-box;
7022
- box-sizing: border-box;
7023
- border: none;
7024
- font-size: 100%;
7025
- margin-top: 5px;
7026
- padding: 0; }
7027
- .brz .select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
7028
- -webkit-appearance: none; }
7029
- .brz .select2-dropdown {
7030
- background-color: white;
7031
- border: 1px solid #aaa;
7032
- border-radius: 4px;
7033
- -webkit-box-sizing: border-box;
7034
- box-sizing: border-box;
7035
- display: block;
7036
- position: absolute;
7037
- left: -100000px;
7038
- width: 100%;
7039
- z-index: 1051; }
7040
- .brz .select2-results {
7041
- display: block; }
7042
- .brz .select2-results__options {
7043
- list-style: none;
7044
- margin: 0;
7045
- padding: 0; }
7046
- .brz .select2-results__option {
7047
- padding: 6px;
7048
- -moz-user-select: none;
7049
- -ms-user-select: none;
7050
- user-select: none;
7051
- -webkit-user-select: none; }
7052
- .brz .select2-results__option[aria-selected] {
7053
- cursor: pointer; }
7054
- .brz .select2-container--open .select2-dropdown {
7055
- left: 0; }
7056
- .brz .select2-container--open .select2-dropdown--above {
7057
- border-bottom: none;
7058
- border-bottom-left-radius: 0;
7059
- border-bottom-right-radius: 0; }
7060
- .brz .select2-container--open .select2-dropdown--below {
7061
- border-top: none;
7062
- border-top-left-radius: 0;
7063
- border-top-right-radius: 0; }
7064
- .brz .select2-search--dropdown {
7065
- display: block;
7066
- padding: 4px; }
7067
- .brz .select2-search--dropdown .select2-search__field {
7068
- padding: 4px;
7069
- width: 100%;
7070
- -webkit-box-sizing: border-box;
7071
- box-sizing: border-box; }
7072
- .brz .select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
7073
- -webkit-appearance: none; }
7074
- .brz .select2-search--dropdown.select2-search--hide {
7075
- display: none; }
7076
- .brz .select2-close-mask {
7077
- border: 0;
7078
- margin: 0;
7079
- padding: 0;
7080
- display: block;
7081
- position: fixed;
7082
- left: 0;
7083
- top: 0;
7084
- min-height: 100%;
7085
- min-width: 100%;
7086
- height: auto;
7087
- width: auto;
7088
- opacity: 0;
7089
- z-index: 99;
7090
- background-color: #fff;
7091
- filter: alpha(opacity=0); }
7092
- .brz .select2-hidden-accessible {
7093
- border: 0 !important;
7094
- clip: rect(0 0 0 0) !important;
7095
- -webkit-clip-path: inset(50%) !important;
7096
- clip-path: inset(50%) !important;
7097
- height: 1px !important;
7098
- overflow: hidden !important;
7099
- padding: 0 !important;
7100
- position: absolute !important;
7101
- width: 1px !important;
7102
- white-space: nowrap !important; }
7103
- .brz .select2-container--default .select2-selection--single {
7104
- background-color: #fff;
7105
- border: 1px solid #aaa;
7106
- border-radius: 4px; }
7107
- .brz .select2-container--default .select2-selection--single .select2-selection__rendered {
7108
- color: #444;
7109
- line-height: 28px; }
7110
- .brz .select2-container--default .select2-selection--single .select2-selection__clear {
7111
- cursor: pointer;
7112
- float: right;
7113
- font-weight: bold; }
7114
- .brz .select2-container--default .select2-selection--single .select2-selection__placeholder {
7115
- color: #999; }
7116
- .brz .select2-container--default .select2-selection--single .select2-selection__arrow {
7117
- height: 26px;
7118
- position: absolute;
7119
- top: 1px;
7120
- right: 1px;
7121
- width: 20px; }
7122
- .brz .select2-container--default .select2-selection--single .select2-selection__arrow b {
7123
- border-color: #888 transparent transparent transparent;
7124
- border-style: solid;
7125
- border-width: 5px 4px 0 4px;
7126
- height: 0;
7127
- left: 50%;
7128
- margin-left: -4px;
7129
- margin-top: -2px;
7130
- position: absolute;
7131
- top: 50%;
7132
- width: 0; }
7133
- .brz .select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
7134
- float: left; }
7135
- .brz .select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
7136
- left: 1px;
7137
- right: auto; }
7138
- .brz .select2-container--default.select2-container--disabled .select2-selection--single {
7139
- background-color: #eee;
7140
- cursor: default; }
7141
- .brz .select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
7142
- display: none; }
7143
- .brz .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
7144
- border-color: transparent transparent #888 transparent;
7145
- border-width: 0 4px 5px 4px; }
7146
- .brz .select2-container--default .select2-selection--multiple {
7147
- background-color: white;
7148
- border: 1px solid #aaa;
7149
- border-radius: 4px;
7150
- cursor: text; }
7151
- .brz .select2-container--default .select2-selection--multiple .select2-selection__rendered {
7152
- -webkit-box-sizing: border-box;
7153
- box-sizing: border-box;
7154
- list-style: none;
7155
- margin: 0;
7156
- padding: 0 5px;
7157
- width: 100%; }
7158
- .brz .select2-container--default .select2-selection--multiple .select2-selection__rendered li {
7159
- list-style: none; }
7160
- .brz .select2-container--default .select2-selection--multiple .select2-selection__clear {
7161
- cursor: pointer;
7162
- float: right;
7163
- font-weight: bold;
7164
- margin-top: 5px;
7165
- margin-right: 10px;
7166
- padding: 1px; }
7167
- .brz .select2-container--default .select2-selection--multiple .select2-selection__choice {
7168
- background-color: #e4e4e4;
7169
- border: 1px solid #aaa;
7170
- border-radius: 4px;
7171
- cursor: default;
7172
- float: left;
7173
- margin-right: 5px;
7174
- margin-top: 5px;
7175
- padding: 0 5px; }
7176
- .brz .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
7177
- color: #999;
7178
- cursor: pointer;
7179
- display: inline-block;
7180
- font-weight: bold;
7181
- margin-right: 2px; }
7182
- .brz .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
7183
- color: #333; }
7184
- .brz .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice, .brz .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
7185
- float: right; }
7186
- .brz .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
7187
- margin-left: 5px;
7188
- margin-right: auto; }
7189
- .brz .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
7190
- margin-left: 2px;
7191
- margin-right: auto; }
7192
- .brz .select2-container--default.select2-container--focus .select2-selection--multiple {
7193
- border: solid black 1px;
7194
- outline: 0; }
7195
- .brz .select2-container--default.select2-container--disabled .select2-selection--multiple {
7196
- background-color: #eee;
7197
- cursor: default; }
7198
- .brz .select2-container--default.select2-container--disabled .select2-selection__choice__remove {
7199
- display: none; }
7200
- .brz .select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .brz .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
7201
- border-top-left-radius: 0;
7202
- border-top-right-radius: 0; }
7203
- .brz .select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .brz .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
7204
- border-bottom-left-radius: 0;
7205
- border-bottom-right-radius: 0; }
7206
- .brz .select2-container--default .select2-search--dropdown .select2-search__field {
7207
- border: 1px solid #aaa; }
7208
- .brz .select2-container--default .select2-search--inline .select2-search__field {
7209
- background: transparent;
7210
- border: none;
7211
- outline: 0;
7212
- -webkit-box-shadow: none;
7213
- box-shadow: none;
7214
- -webkit-appearance: textfield; }
7215
- .brz .select2-container--default .select2-results > .select2-results__options {
7216
- max-height: 200px;
7217
- overflow-y: auto; }
7218
- .brz .select2-container--default .select2-results__option[role=group] {
7219
- padding: 0; }
7220
- .brz .select2-container--default .select2-results__option[aria-disabled=true] {
7221
- color: #999; }
7222
- .brz .select2-container--default .select2-results__option[aria-selected=true] {
7223
- background-color: #ddd; }
7224
- .brz .select2-container--default .select2-results__option .select2-results__option {
7225
- padding-left: 1em; }
7226
- .brz .select2-container--default .select2-results__option .select2-results__option .select2-results__group {
7227
- padding-left: 0; }
7228
- .brz .select2-container--default .select2-results__option .select2-results__option .select2-results__option {
7229
- margin-left: -1em;
7230
- padding-left: 2em; }
7231
- .brz .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
7232
- margin-left: -2em;
7233
- padding-left: 3em; }
7234
- .brz .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
7235
- margin-left: -3em;
7236
- padding-left: 4em; }
7237
- .brz .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
7238
- margin-left: -4em;
7239
- padding-left: 5em; }
7240
- .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 {
7241
- margin-left: -5em;
7242
- padding-left: 6em; }
7243
- .brz .select2-container--default .select2-results__option--highlighted[aria-selected] {
7244
- background-color: #5897fb;
7245
- color: white; }
7246
- .brz .select2-container--default .select2-results__group {
7247
- cursor: default;
7248
- display: block;
7249
- padding: 6px; }
7250
- .brz .select2-container--classic .select2-selection--single {
7251
- background-color: #f7f7f7;
7252
- border: 1px solid #aaa;
7253
- border-radius: 4px;
7254
- outline: 0;
7255
- background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #fff), to(#eee));
7256
- background-image: linear-gradient(to bottom, #fff 50%, #eee 100%);
7257
- background-repeat: repeat-x;
7258
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }
7259
- .brz .select2-container--classic .select2-selection--single:focus {
7260
- border: 1px solid #5897fb; }
7261
- .brz .select2-container--classic .select2-selection--single .select2-selection__rendered {
7262
- color: #444;
7263
- line-height: 28px; }
7264
- .brz .select2-container--classic .select2-selection--single .select2-selection__clear {
7265
- cursor: pointer;
7266
- float: right;
7267
- font-weight: bold;
7268
- margin-right: 10px; }
7269
- .brz .select2-container--classic .select2-selection--single .select2-selection__placeholder {
7270
- color: #999; }
7271
- .brz .select2-container--classic .select2-selection--single .select2-selection__arrow {
7272
- background-color: #ddd;
7273
- border: none;
7274
- border-left: 1px solid #aaa;
7275
- border-top-right-radius: 4px;
7276
- border-bottom-right-radius: 4px;
7277
- height: 26px;
7278
- position: absolute;
7279
- top: 1px;
7280
- right: 1px;
7281
- width: 20px;
7282
- background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #eee), to(#ccc));
7283
- background-image: linear-gradient(to bottom, #eee 50%, #ccc 100%);
7284
- background-repeat: repeat-x;
7285
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0); }
7286
- .brz .select2-container--classic .select2-selection--single .select2-selection__arrow b {
7287
- border-color: #888 transparent transparent transparent;
7288
- border-style: solid;
7289
- border-width: 5px 4px 0 4px;
7290
- height: 0;
7291
- left: 50%;
7292
- margin-left: -4px;
7293
- margin-top: -2px;
7294
- position: absolute;
7295
- top: 50%;
7296
- width: 0; }
7297
- .brz .select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
7298
- float: left; }
7299
- .brz .select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
7300
- border: none;
7301
- border-right: 1px solid #aaa;
7302
- border-radius: 0;
7303
- border-top-left-radius: 4px;
7304
- border-bottom-left-radius: 4px;
7305
- left: 1px;
7306
- right: auto; }
7307
- .brz .select2-container--classic.select2-container--open .select2-selection--single {
7308
- border: 1px solid #5897fb; }
7309
- .brz .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
7310
- background: transparent;
7311
- border: none; }
7312
- .brz .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
7313
- border-color: transparent transparent #888 transparent;
7314
- border-width: 0 4px 5px 4px; }
7315
- .brz .select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
7316
- border-top: none;
7317
- border-top-left-radius: 0;
7318
- border-top-right-radius: 0;
7319
- background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(50%, #eee));
7320
- background-image: linear-gradient(to bottom, #fff 0%, #eee 50%);
7321
- background-repeat: repeat-x;
7322
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }
7323
- .brz .select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
7324
- border-bottom: none;
7325
- border-bottom-left-radius: 0;
7326
- border-bottom-right-radius: 0;
7327
- background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #eee), to(#fff));
7328
- background-image: linear-gradient(to bottom, #eee 50%, #fff 100%);
7329
- background-repeat: repeat-x;
7330
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0); }
7331
- .brz .select2-container--classic .select2-selection--multiple {
7332
- background-color: white;
7333
- border: 1px solid #aaa;
7334
- border-radius: 4px;
7335
- cursor: text;
7336
- outline: 0; }
7337
- .brz .select2-container--classic .select2-selection--multiple:focus {
7338
- border: 1px solid #5897fb; }
7339
- .brz .select2-container--classic .select2-selection--multiple .select2-selection__rendered {
7340
- list-style: none;
7341
- margin: 0;
7342
- padding: 0 5px; }
7343
- .brz .select2-container--classic .select2-selection--multiple .select2-selection__clear {
7344
- display: none; }
7345
- .brz .select2-container--classic .select2-selection--multiple .select2-selection__choice {
7346
- background-color: #e4e4e4;
7347
- border: 1px solid #aaa;
7348
- border-radius: 4px;
7349
- cursor: default;
7350
- float: left;
7351
- margin-right: 5px;
7352
- margin-top: 5px;
7353
- padding: 0 5px; }
7354
- .brz .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
7355
- color: #888;
7356
- cursor: pointer;
7357
- display: inline-block;
7358
- font-weight: bold;
7359
- margin-right: 2px; }
7360
- .brz .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
7361
- color: #555; }
7362
- .brz .select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
7363
- float: right;
7364
- margin-left: 5px;
7365
- margin-right: auto; }
7366
- .brz .select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
7367
- margin-left: 2px;
7368
- margin-right: auto; }
7369
- .brz .select2-container--classic.select2-container--open .select2-selection--multiple {
7370
- border: 1px solid #5897fb; }
7371
- .brz .select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
7372
- border-top: none;
7373
- border-top-left-radius: 0;
7374
- border-top-right-radius: 0; }
7375
- .brz .select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
7376
- border-bottom: none;
7377
- border-bottom-left-radius: 0;
7378
- border-bottom-right-radius: 0; }
7379
- .brz .select2-container--classic .select2-search--dropdown .select2-search__field {
7380
- border: 1px solid #aaa;
7381
- outline: 0; }
7382
- .brz .select2-container--classic .select2-search--inline .select2-search__field {
7383
- outline: 0;
7384
- -webkit-box-shadow: none;
7385
- box-shadow: none; }
7386
- .brz .select2-container--classic .select2-dropdown {
7387
- background-color: #fff;
7388
- border: 1px solid transparent; }
7389
- .brz .select2-container--classic .select2-dropdown--above {
7390
- border-bottom: none; }
7391
- .brz .select2-container--classic .select2-dropdown--below {
7392
- border-top: none; }
7393
- .brz .select2-container--classic .select2-results > .select2-results__options {
7394
- max-height: 200px;
7395
- overflow-y: auto; }
7396
- .brz .select2-container--classic .select2-results__option[role=group] {
7397
- padding: 0; }
7398
- .brz .select2-container--classic .select2-results__option[aria-disabled=true] {
7399
- color: grey; }
7400
- .brz .select2-container--classic .select2-results__option--highlighted[aria-selected] {
7401
- background-color: #3875d7;
7402
- color: #fff; }
7403
- .brz .select2-container--classic .select2-results__group {
7404
- cursor: default;
7405
- display: block;
7406
- padding: 6px; }
7407
- .brz .select2-container--classic.select2-container--open .select2-dropdown {
7408
- border-color: #5897fb; }
7409
- .brz .ps {
7410
- overflow: hidden !important;
7411
- overflow-anchor: none;
7412
- -ms-overflow-style: none;
7413
- touch-action: auto;
7414
- -ms-touch-action: auto; }
7415
- .brz .ps__rail-x {
7416
- display: none;
7417
- opacity: 0;
7418
- transition: background-color .2s linear, opacity .2s linear;
7419
- -webkit-transition: background-color .2s linear, opacity .2s linear;
7420
- height: 15px;
7421
- /* there must be 'bottom' or 'top' for ps__rail-x */
7422
- bottom: 0px;
7423
- /* please don't change 'position' */
7424
- position: absolute; }
7425
- .brz .ps__rail-y {
7426
- display: none;
7427
- opacity: 0;
7428
- transition: background-color .2s linear, opacity .2s linear;
7429
- -webkit-transition: background-color .2s linear, opacity .2s linear;
7430
- width: 15px;
7431
- /* there must be 'right' or 'left' for ps__rail-y */
7432
- right: 0;
7433
- /* please don't change 'position' */
7434
- position: absolute; }
7435
- .brz .ps--active-x > .ps__rail-x,
7436
- .brz .ps--active-y > .ps__rail-y {
7437
- display: block;
7438
- background-color: transparent; }
7439
- .brz .ps:hover > .ps__rail-x,
7440
- .brz .ps:hover > .ps__rail-y,
7441
- .brz .ps--focus > .ps__rail-x,
7442
- .brz .ps--focus > .ps__rail-y,
7443
- .brz .ps--scrolling-x > .ps__rail-x,
7444
- .brz .ps--scrolling-y > .ps__rail-y {
7445
- opacity: 0.6; }
7446
- .brz .ps .ps__rail-x:hover,
7447
- .brz .ps .ps__rail-y:hover,
7448
- .brz .ps .ps__rail-x:focus,
7449
- .brz .ps .ps__rail-y:focus,
7450
- .brz .ps .ps__rail-x.ps--clicking,
7451
- .brz .ps .ps__rail-y.ps--clicking {
7452
- background-color: #eee;
7453
- opacity: 0.9; }
7454
- .brz .ps__thumb-x {
7455
- background-color: #aaa;
7456
- border-radius: 6px;
7457
- transition: background-color .2s linear, height .2s ease-in-out;
7458
- -webkit-transition: background-color .2s linear, height .2s ease-in-out;
7459
- height: 6px;
7460
- /* there must be 'bottom' for ps__thumb-x */
7461
- bottom: 2px;
7462
- /* please don't change 'position' */
7463
- position: absolute; }
7464
- .brz .ps__thumb-y {
7465
- background-color: #aaa;
7466
- border-radius: 6px;
7467
- transition: background-color .2s linear, width .2s ease-in-out;
7468
- -webkit-transition: background-color .2s linear, width .2s ease-in-out;
7469
- width: 6px;
7470
- /* there must be 'right' for ps__thumb-y */
7471
- right: 2px;
7472
- /* please don't change 'position' */
7473
- position: absolute; }
7474
- .brz .ps__rail-x:hover > .ps__thumb-x,
7475
- .brz .ps__rail-x:focus > .ps__thumb-x,
7476
- .brz .ps__rail-x.ps--clicking .ps__thumb-x {
7477
- background-color: #999;
7478
- height: 11px; }
7479
- .brz .ps__rail-y:hover > .ps__thumb-y,
7480
- .brz .ps__rail-y:focus > .ps__thumb-y,
7481
- .brz .ps__rail-y.ps--clicking .ps__thumb-y {
7482
- background-color: #999;
7483
- width: 11px; }
7484
- @supports (-ms-overflow-style: none) {
7485
- .brz .ps {
7486
- overflow: auto !important; } }
7487
- @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
7488
- .brz .ps {
7489
- overflow: auto !important; } }
7490
- .brz .brz-forms2 {
7491
- width: 100%; }
7492
- .brz .brz-forms2 .brz-form {
7493
- display: -webkit-box;
7494
- display: -ms-flexbox;
7495
- display: flex;
7496
- -ms-flex-wrap: wrap;
7497
- flex-wrap: wrap;
7498
- -webkit-box-align: center;
7499
- -ms-flex-align: center;
7500
- align-items: center; }
7501
- .brz .brz-forms2__wrap, .brz .brz-forms2__fields {
7502
- display: -webkit-box;
7503
- display: -ms-flexbox;
7504
- display: flex;
7505
- -ms-flex-wrap: wrap;
7506
- flex-wrap: wrap; }
7507
- .brz .brz-forms2__field {
7508
- outline: none; }
7509
- .brz .brz-forms2__wrap {
7510
- -webkit-box-align: end;
7511
- -ms-flex-align: end;
7512
- align-items: flex-end; }
7513
- .brz .brz-forms2__item {
7514
- -webkit-box-flex: 1;
7515
- -ms-flex-positive: 1;
7516
- flex-grow: 1;
7517
- -ms-flex-negative: 0;
7518
- flex-shrink: 0; }
7519
- .brz .brz-forms2 .brz-input,
7520
- .brz .brz-forms2 .brz-textarea {
7521
- display: block;
7522
- width: 100%;
7523
- height: auto;
7524
- max-width: 100%;
7525
- min-height: auto;
7526
- background-color: transparent;
7527
- border: none;
7528
- outline: none;
7529
- color: inherit;
7530
- font-size: inherit;
7531
- font-family: inherit;
7532
- letter-spacing: inherit;
7533
- font-weight: inherit;
7534
- line-height: inherit;
7535
- -webkit-box-shadow: none;
7536
- box-shadow: none; }
7537
- .brz .brz-forms2 .brz-input::-webkit-input-placeholder,
7538
- .brz .brz-forms2 .brz-textarea::-webkit-input-placeholder {
7539
- color: inherit;
7540
- opacity: 0.5; }
7541
- .brz .brz-forms2 .brz-input::-moz-placeholder,
7542
- .brz .brz-forms2 .brz-textarea::-moz-placeholder {
7543
- color: inherit;
7544
- opacity: 0.5; }
7545
- .brz .brz-forms2 .brz-input::-ms-input-placeholder,
7546
- .brz .brz-forms2 .brz-textarea::-ms-input-placeholder {
7547
- color: inherit;
7548
- opacity: 0.5; }
7549
- .brz .brz-forms2 .brz-input::placeholder,
7550
- .brz .brz-forms2 .brz-textarea::placeholder {
7551
- color: inherit;
7552
- opacity: 0.5; }
7553
- .brz .brz-forms2 .brz-textarea {
7554
- height: 100%;
7555
- resize: none; }
7556
- .brz .brz-forms2 .brz-label {
7557
- display: block; }
7558
- .brz .brz-forms2 .brz-forms2__field {
7559
- text-align: left; }
7560
- .brz .brz-forms2 .brz-forms2__field-label {
7561
- border: none;
7562
- cursor: auto; }
7563
- .brz .brz-forms2__radio.brz-forms2__field {
7564
- padding: 0;
7565
- border: none !important;
7566
- margin-bottom: -20px; }
7567
- .brz .brz-forms2__radio-option {
7568
- display: -webkit-box;
7569
- display: -ms-flexbox;
7570
- display: flex;
7571
- -webkit-box-align: center;
7572
- -ms-flex-align: center;
7573
- align-items: center;
7574
- -ms-flex-wrap: wrap;
7575
- flex-wrap: wrap;
7576
- -webkit-box-pack: justify;
7577
- -ms-flex-pack: justify;
7578
- justify-content: space-between;
7579
- padding-bottom: 1.2em; }
7580
- .brz .brz-forms2__radio-option .brz-span {
7581
- margin-left: 10px;
7582
- margin-right: auto; }
7583
- .brz .brz-forms2__radio-option input.brz-input {
7584
- cursor: auto; }
7585
- .brz .brz-forms2__checkbox-options, .brz .brz-forms2__radio-options {
7586
- display: -webkit-box;
7587
- display: -ms-flexbox;
7588
- display: flex;
7589
- -webkit-box-align: center;
7590
- -ms-flex-align: center;
7591
- align-items: center;
7592
- -ms-flex-wrap: wrap;
7593
- flex-wrap: wrap; }
7594
- .brz .brz-forms2 .brz-control__check-group-icon,
7595
- .brz .brz-forms2 .brz-control__radio-check {
7596
- -ms-flex-preferred-size: 1em;
7597
- flex-basis: 1em; }
7598
- .brz .brz-forms2 .brz-forms2__checkbox-option-name,
7599
- .brz .brz-forms2 .brz-forms2__radio-option-name {
7600
- -ms-flex-preferred-size: calc(100% - 1em - 10px);
7601
- flex-basis: calc(100% - 1em - 10px); }
7602
- .brz .brz-forms2__checkbox.brz-forms2__field {
7603
- padding: 0;
7604
- border: none !important;
7605
- margin-bottom: -20px; }
7606
- .brz .brz-forms2__checkbox-option {
7607
- display: -webkit-box;
7608
- display: -ms-flexbox;
7609
- display: flex;
7610
- -webkit-box-align: center;
7611
- -ms-flex-align: center;
7612
- align-items: center;
7613
- -ms-flex-wrap: wrap;
7614
- flex-wrap: wrap;
7615
- -webkit-box-pack: justify;
7616
- -ms-flex-pack: justify;
7617
- justify-content: space-between;
7618
- padding-bottom: 1.2em; }
7619
- .brz .brz-forms2__checkbox-option .brz-forms2__checkbox-option-name {
7620
- margin-left: 10px;
7621
- margin-right: auto; }
7622
- .brz .brz-forms2__checkbox-option input.brz-input {
7623
- cursor: auto; }
7624
- .brz .brz-forms2__checkbox-option .brz-control__radio-check {
7625
- border-radius: 0; }
7626
- .brz .brz-forms2__field-select,
7627
- .brz .brz-forms2 .brz-forms2__field-fileUpload {
7628
- display: -webkit-box;
7629
- display: -ms-flexbox;
7630
- display: flex;
7631
- -ms-flex-wrap: wrap;
7632
- flex-wrap: wrap;
7633
- -webkit-box-orient: vertical;
7634
- -webkit-box-direction: normal;
7635
- -ms-flex-direction: column;
7636
- flex-direction: column;
7637
- -webkit-box-pack: stretch;
7638
- -ms-flex-pack: stretch;
7639
- justify-content: stretch; }
7640
- .brz .brz-forms2__select-current,
7641
- .brz .brz-forms2 .brz-forms2__field-fileUpload .brz-label {
7642
- -webkit-box-flex: 1;
7643
- -ms-flex: 1;
7644
- flex: 1; }
7645
- .brz .brz-forms2__item-button .brz-btn {
7646
- outline: none;
7647
- width: 100%; }
7648
- .brz .brz-forms2__item-button .brz-icon-svg {
7649
- -webkit-box-flex: 0;
7650
- -ms-flex-positive: 0;
7651
- flex-grow: 0; }
7652
- .brz .brz-forms2__alert {
7653
- min-height: 55px;
7654
- width: 100%;
7655
- font-size: 12px;
7656
- line-height: 2;
7657
- letter-spacing: 2.5px;
7658
- font-weight: 600;
7659
- text-transform: uppercase;
7660
- padding: 17px 30px;
7661
- color: #fff;
7662
- margin-top: 15px; }
7663
- .brz .brz-forms2__alert--success {
7664
- background-color: #15d053; }
7665
- .brz .brz-forms2__alert--error {
7666
- background-color: #f00; }
7667
- .brz .brz-forms2__item--error .brz-control__check-group,
7668
- .brz .brz-forms2__item--error .brz-control__radio {
7669
- color: #f00 !important; }
7670
- .brz.brz:not(.brz-ed) .brz-control__check-group .brz-label {
7671
- font: inherit;
7672
- display: inherit;
7673
- -webkit-box-align: inherit;
7674
- -ms-flex-align: inherit;
7675
- align-items: inherit;
7676
- width: 100%;
7677
- cursor: pointer; }
7678
- .brz.brz:not(.brz-ed) .brz-control__check-group--check {
7679
- display: none; }
7680
- .brz.brz:not(.brz-ed) .brz-control__check-group .brz-input {
7681
- display: none; }
7682
- .brz.brz:not(.brz-ed) .brz-control__check-group .brz-input:checked ~ .brz-label .brz-control__check-group--check {
7683
- display: inline-block; }
7684
- .brz.brz:not(.brz-ed) .brz-control__check-group .brz-input:checked ~ .brz-label .brz-control__check-group--uncheck {
7685
- display: none; }
7686
- .brz.brz:not(.brz-ed) .brz-control__radio .brz-label {
7687
- font: inherit;
7688
- display: inherit;
7689
- -webkit-box-align: inherit;
7690
- -ms-flex-align: inherit;
7691
- align-items: inherit;
7692
- width: 100%;
7693
- cursor: pointer; }
7694
- .brz.brz:not(.brz-ed) .brz-control__radio--check {
7695
- display: none; }
7696
- .brz.brz:not(.brz-ed) .brz-control__radio .brz-input {
7697
- display: none; }
7698
- .brz.brz:not(.brz-ed) .brz-control__radio .brz-input:checked ~ .brz-label .brz-control__radio--check {
7699
- display: inline-block; }
7700
- .brz.brz:not(.brz-ed) .brz-control__radio .brz-input:checked ~ .brz-label .brz-control__radio--uncheck {
7701
- display: none; }
7702
- .brz.brz:not(.brz-ed) .brz-forms2__field-select {
7703
- padding: 0; }
7704
- .brz.brz:not(.brz-ed) .brz-select {
7705
- width: 100%;
7706
- visibility: hidden; }
7707
- .brz.brz:not(.brz-ed) .brz-forms2__field-select .select2-dropdown {
7708
- background-color: #fff;
7709
- border: none;
7710
- border-radius: 0; }
7711
- .brz.brz:not(.brz-ed) .brz-forms2__field-select .select2-results__option {
7712
- margin: 0;
7713
- padding: 12px 24px;
7714
- font-size: 16px;
7715
- height: 48px;
7716
- line-height: 1.5;
7717
- cursor: pointer;
7718
- background-color: inherit; }
7719
- .brz.brz:not(.brz-ed) .brz-forms2__field-select .select2 .selection, .brz.brz:not(.brz-ed) .brz-forms2__field-select .select2-container {
7720
- display: -webkit-box;
7721
- display: -ms-flexbox;
7722
- display: flex;
7723
- -webkit-box-orient: vertical;
7724
- -webkit-box-direction: normal;
7725
- -ms-flex-direction: column;
7726
- flex-direction: column;
7727
- -webkit-box-align: stretch;
7728
- -ms-flex-align: stretch;
7729
- align-items: stretch;
7730
- -webkit-box-pack: stretch;
7731
- -ms-flex-pack: stretch;
7732
- justify-content: stretch;
7733
- -webkit-box-flex: 1;
7734
- -ms-flex: 1;
7735
- flex: 1; }
7736
- .brz.brz:not(.brz-ed) .brz-forms2__field-select .select2-container, .brz.brz:not(.brz-ed) .brz-forms2__field-select .select2-selection {
7737
- outline: none; }
7738
- .brz.brz:not(.brz-ed) .brz-forms2__field-select .select2-selection--multiple, .brz.brz:not(.brz-ed) .brz-forms2__field-select .select2-selection--single {
7739
- border: none;
7740
- background-color: transparent;
7741
- display: -webkit-box;
7742
- display: -ms-flexbox;
7743
- display: flex;
7744
- -webkit-box-align: center;
7745
- -ms-flex-align: center;
7746
- align-items: center;
7747
- -ms-flex-wrap: wrap;
7748
- flex-wrap: wrap;
7749
- -webkit-box-flex: 1;
7750
- -ms-flex: 1;
7751
- flex: 1; }
7752
- .brz.brz:not(.brz-ed) .brz-forms2__field-select .select2-selection--multiple .select2-selection__rendered, .brz.brz:not(.brz-ed) .brz-forms2__field-select .select2-selection--single .select2-selection__rendered {
7753
- color: inherit;
7754
- line-height: 1;
7755
- padding: 0;
7756
- -webkit-box-flex: 1;
7757
- -ms-flex: 1;
7758
- flex: 1; }
7759
- .brz.brz:not(.brz-ed) .brz-forms2__field-select .select2-selection--multiple .select2-selection__rendered {
7760
- display: -webkit-box;
7761
- display: -ms-flexbox;
7762
- display: flex;
7763
- -ms-flex-wrap: wrap;
7764
- flex-wrap: wrap;
7765
- margin: -2.5px; }
7766
- .brz.brz:not(.brz-ed) .brz-forms2__field-select .select2-selection--multiple .select2-selection__choice {
7767
- margin: 2.5px;
7768
- float: none;
7769
- display: -webkit-box;
7770
- display: -ms-flexbox;
7771
- display: flex;
7772
- -webkit-box-orient: horizontal;
7773
- -webkit-box-direction: reverse;
7774
- -ms-flex-direction: row-reverse;
7775
- flex-direction: row-reverse;
7776
- -ms-flex-wrap: wrap;
7777
- flex-wrap: wrap;
7778
- -webkit-box-align: center;
7779
- -ms-flex-align: center;
7780
- align-items: center;
7781
- border: none;
7782
- padding: 0 11px; }
7783
- .brz.brz:not(.brz-ed) .brz-forms2__field-select .select2-selection--multiple .select2-selection__choice__remove {
7784
- display: block;
7785
- font-size: inherit;
7786
- font-weight: normal;
7787
- color: inherit;
7788
- margin-right: 0;
7789
- margin-left: 8px; }
7790
- .brz.brz:not(.brz-ed) .brz-forms2__field-select .select2-selection__arrow {
7791
- top: 50%;
7792
- right: 18px;
7793
- -webkit-transform: translateY(-50%);
7794
- transform: translateY(-50%); }
7795
- .brz.brz:not(.brz-ed) .brz-forms2__field-select .select2-selection__clear {
7796
- margin-right: 14px; }
7797
- .brz.brz:not(.brz-ed) .brz-forms2__field-select .select2-search__field {
7798
- font: inherit;
7799
- color: inherit;
7800
- margin: 0; }
7801
- .brz.brz:not(.brz-ed) .brz-forms2__field-select .select2-search__field::-webkit-input-placeholder {
7802
- color: inherit; }
7803
- .brz.brz:not(.brz-ed) .brz-forms2__field-select .select2-search__field::-moz-placeholder {
7804
- color: inherit; }
7805
- .brz.brz:not(.brz-ed) .brz-forms2__field-select .select2-search__field::-ms-input-placeholder {
7806
- color: inherit; }
7807
- .brz.brz:not(.brz-ed) .brz-forms2__field-select .select2-search__field::placeholder {
7808
- color: inherit; }
7809
- .brz.brz:not(.brz-ed) .brz-forms2__field-select .select2-container .select2-search--inline {
7810
- margin: 2.5px;
7811
- -webkit-box-flex: 1;
7812
- -ms-flex: 1;
7813
- flex: 1;
7814
- float: none; }
7815
- .brz.brz:not(.brz-ed) .brz-forms2__field-select .select2-container--default .select2-results > .select2-results__options {
7816
- max-height: initial; }
7817
- .brz.brz:not(.brz-ed) .brz-forms2__field-select .select2-container--default .select2-results__option--highlighted[aria-selected] {
7818
- background-color: inherit;
7819
- color: inherit; }
7820
- .brz.brz:not(.brz-ed) .brz-forms2__field-select .select2-container--default .select2-selection--single .select2-selection__placeholder {
7821
- color: inherit; }
7822
- .brz.brz:not(.brz-ed) .brz-forms2__field-select .select2-container--default .select2-selection--single .select2-selection__placeholder:empty:before {
7823
- content: "Fake content";
7824
- visibility: hidden; }
7825
- .brz.brz:not(.brz-ed) .brz-forms2__field-select .select2-container--default .select2-selection--single .select2-selection__arrow b {
7826
- border-color: currentColor transparent transparent; }
7827
- .brz.brz:not(.brz-ed) .brz-forms2__field-select .select2-container--default.select2-container--open .select2-selection--single
7828
- .select2-selection__arrow
7829
- b {
7830
- border-color: transparent transparent currentColor; }
7831
- .brz.brz:not(.brz-ed) .brz-forms2__field-select .select2-container--open .select2-dropdown {
7832
- top: 1px;
7833
- max-height: 200px;
7834
- overflow: hidden; }
7835
- .brz.brz:not(.brz-ed) .brz-forms2__field-select .select2-dropdown--below {
7836
- background-color: transparent; }
7837
- .brz.brz:not(.brz-ed) .brz-forms2__field-select .ps__thumb-y {
7838
- background-color: rgba(0, 0, 0, 0.2); }
7839
- .brz.brz:not(.brz-ed) .brz-forms2__field-select .ps .ps__rail-x:hover,
7840
- .brz.brz:not(.brz-ed) .brz-forms2__field-select .ps .ps__rail-y:hover,
7841
- .brz.brz:not(.brz-ed) .brz-forms2__field-select .ps .ps__rail-x:focus,
7842
- .brz.brz:not(.brz-ed) .brz-forms2__field-select .ps .ps__rail-y:focus,
7843
- .brz.brz:not(.brz-ed) .brz-forms2__field-select .ps .ps__rail-x.ps--clicking,
7844
- .brz.brz:not(.brz-ed) .brz-forms2__field-select .ps .ps__rail-y.ps--clicking {
7845
- background-color: transparent; }
7846
- .brz.brz:not(.brz-ed) .brz-forms2__field-select .ps__rail-y:hover > .ps__thumb-y,
7847
- .brz.brz:not(.brz-ed) .brz-forms2__field-select .ps__rail-y:focus > .ps__thumb-y,
7848
- .brz.brz:not(.brz-ed) .brz-forms2__field-select .ps__rail-y.ps--clicking .ps__thumb-y {
7849
- width: 6px; }
7850
- .brz.brz:not(.brz-ed) .brz-forms2__field-select .ps__rail-x,
7851
- .brz.brz:not(.brz-ed) .brz-forms2__field-select .ps__rail-y,
7852
- .brz.brz:not(.brz-ed) .brz-forms2__field-select .ps:hover > .ps__rail-x,
7853
- .brz.brz:not(.brz-ed) .brz-forms2__field-select .ps:hover > .ps__rail-y,
7854
- .brz.brz:not(.brz-ed) .brz-forms2__field-select .ps--focus > .ps__rail-x,
7855
- .brz.brz:not(.brz-ed) .brz-forms2__field-select .ps--focus > .ps__rail-y,
7856
- .brz.brz:not(.brz-ed) .brz-forms2__field-select .ps--scrolling-x > .ps__rail-x,
7857
- .brz.brz:not(.brz-ed) .brz-forms2__field-select .ps--scrolling-y > .ps__rail-y {
7858
- opacity: 1; }
7859
- .brz.brz:not(.brz-ed) .flatpickr-calendar {
7860
- font-family: "Lato", sans-serif;
7861
- width: 306px; }
7862
- .brz.brz:not(.brz-ed) .flatpickr-calendar.hasTime {
7863
- width: 150px; }
7864
- .brz.brz:not(.brz-ed) .flatpickr-calendar.open {
7865
- max-height: 600px; }
7866
- .brz.brz:not(.brz-ed) .flatpickr-calendar .dayContainer {
7867
- width: 286px;
7868
- min-width: 286px;
7869
- max-width: 286px; }
7870
- .brz.brz:not(.brz-ed) .flatpickr-calendar .numInputWrapper:hover {
7871
- background-color: transparent; }
7872
- .brz.brz:not(.brz-ed) .flatpickr-months {
7873
- padding: 10px 10px 0; }
7874
- .brz.brz:not(.brz-ed) .flatpickr-innerContainer {
7875
- padding: 0 10px 10px; }
7876
- .brz.brz:not(.brz-ed) .flatpickr-next-month, .brz.brz:not(.brz-ed) .flatpickr-prev-month {
7877
- top: 7px; }
7878
- .brz.brz:not(.brz-ed) .flatpickr-next-month {
7879
- right: 10px; }
7880
- .brz.brz:not(.brz-ed) .flatpickr-prev-month {
7881
- left: 10px; }
7882
- .brz.brz:not(.brz-ed) .flatpickr-months .flatpickr-prev-month,
7883
- .brz.brz:not(.brz-ed) .flatpickr-months .flatpickr-next-month {
7884
- color: rgba(0, 0, 0, 0.5); }
7885
- .brz.brz:not(.brz-ed) .flatpickr-months .flatpickr-prev-month:hover,
7886
- .brz.brz:not(.brz-ed) .flatpickr-months .flatpickr-next-month:hover {
7887
- color: black; }
7888
- .brz.brz:not(.brz-ed) .flatpickr-months .flatpickr-prev-month svg,
7889
- .brz.brz:not(.brz-ed) .flatpickr-months .flatpickr-next-month svg {
7890
- fill: currentColor; }
7891
- .brz.brz:not(.brz-ed) .flatpickr-current-month input.cur-year {
7892
- font-size: 17px;
7893
- font-weight: 700; }
7894
- .brz.brz:not(.brz-ed) .flatpickr-current-month .numInputWrapper:hover,
7895
- .brz.brz:not(.brz-ed) .flatpickr-current-month span.cur-month:hover {
7896
- background-color: transparent; }
7897
- .brz.brz:not(.brz-ed) .flatpickr-weekdays {
7898
- padding: 20px 0 15px;
7899
- height: auto; }
7900
- .brz.brz:not(.brz-ed) .flatpickr-weekday {
7901
- color: rgba(0, 0, 0, 0.8); }
7902
- .brz.brz:not(.brz-ed) .flatpickr-days {
7903
- width: 286px;
7904
- font-size: 13px;
7905
- font-weight: 700; }
7906
- .brz.brz:not(.brz-ed) .flatpickr-day {
7907
- height: 36px;
7908
- max-width: 36px;
7909
- line-height: 1;
7910
- display: -webkit-box;
7911
- display: -ms-flexbox;
7912
- display: flex;
7913
- -webkit-box-align: center;
7914
- -ms-flex-align: center;
7915
- align-items: center;
7916
- -webkit-box-pack: center;
7917
- -ms-flex-pack: center;
7918
- justify-content: center; }
7919
- .brz.brz:not(.brz-ed) .flatpickr-day.today {
7920
- border-color: #a9a9a9; }
7921
- .brz.brz:not(.brz-ed) .flatpickr-day:hover, .brz.brz:not(.brz-ed) .flatpickr-day:focus {
7922
- color: #fff;
7923
- border-color: #a9a9a9;
7924
- background-color: #a9a9a9; }
7925
- .brz.brz:not(.brz-ed) .flatpickr-day.selected {
7926
- border-color: rgba(0, 0, 0, 0.9);
7927
- background-color: rgba(0, 0, 0, 0.9); }
7928
- .brz.brz:not(.brz-ed) .flatpickr-time input {
7929
- font-size: 15px;
7930
- font-weight: 700;
7931
- text-align: left;
7932
- text-indent: 12px; }
7933
- .brz.brz:not(.brz-ed) .flatpickr-time input:hover,
7934
- .brz.brz:not(.brz-ed) .flatpickr-time input:focus,
7935
- .brz.brz:not(.brz-ed) .flatpickr-time .flatpickr-am-pm:hover,
7936
- .brz.brz:not(.brz-ed) .flatpickr-time .flatpickr-am-pm:focus {
7937
- background-color: transparent; }
7938
- .brz.brz:not(.brz-ed) .flatpickr-am-pm {
7939
- font-size: 14px;
7940
- font-weight: 700;
7941
- color: rgba(0, 0, 0, 0.7);
7942
- width: 32.66%; }
7943
- .brz.brz:not(.brz-ed) .flatpickr-am-pm:hover, .brz.brz:not(.brz-ed) .flatpickr-am-pm:focus {
7944
- color: black; }
7945
- .brz.brz:not(.brz-ed) .flatpickr-calendar.hasTime .numInputWrapper {
7946
- width: 32.66%; }
7947
- .brz.brz:not(.brz-ed) .flatpickr-calendar.hasTime .numInputWrapper span.arrowUp,
7948
- .brz.brz:not(.brz-ed) .flatpickr-calendar.hasTime .numInputWrapper span.arrowDown {
7949
- height: 10px;
7950
- top: 50%; }
7951
- .brz.brz:not(.brz-ed) .flatpickr-calendar.hasTime .numInputWrapper span.arrowUp {
7952
- margin-top: -10px; }
7953
- .brz.brz:not(.brz-ed) .flatpickr-calendar.hasTime .numInputWrapper span.arrowDown {
7954
- margin-bottom: -10px; }
7955
- .brz .brz-input__upload {
7956
- position: relative; }
7957
- .brz .brz-input__upload .brz-label {
7958
- font: inherit;
7959
- width: 100%;
7960
- height: 100%;
7961
- display: -webkit-box;
7962
- display: -ms-flexbox;
7963
- display: flex;
7964
- -webkit-box-align: center;
7965
- -ms-flex-align: center;
7966
- align-items: center;
7967
- padding-right: 1.5em;
7968
- cursor: pointer; }
7969
- .brz .brz-input__upload .brz-label .brz-span {
7970
- max-width: 100%;
7971
- overflow: hidden;
7972
- text-overflow: ellipsis;
7973
- white-space: nowrap; }
7974
- .brz .brz-input__upload .brz-label .brz-span:empty:before {
7975
- content: "Hidden Placeholder";
7976
- visibility: hidden; }
7977
- .brz .brz-input__upload .brz-input__upload-delete {
7978
- cursor: pointer;
7979
- position: absolute;
7980
- top: 50%;
7981
- right: 24px;
7982
- -webkit-transform: translateY(-50%);
7983
- transform: translateY(-50%);
7984
- font-size: 1.5em; }
7985
- .brz .brz-input__upload .brz-input:not(.brz-input__upload-placeholder) {
7986
- display: none; }
7987
- .brz .brz-input__upload .brz-button {
7988
- background-color: #fff;
7989
- color: #000;
7990
- border: 1px solid #ccc;
7991
- border-radius: 3px;
7992
- font-size: inherit;
7993
- font-weight: inherit;
7994
- font-family: inherit;
7995
- line-height: 1;
7996
- padding: 0.5em;
7997
- position: absolute;
7998
- top: 50%;
7999
- right: 24px;
8000
- -webkit-transform: translateY(-50%);
8001
- transform: translateY(-50%);
8002
- outline: none !important; }
8003
- @media (max-width: 767px) {
8004
- .brz .brz-forms2__select-item__input {
8005
- font-size: 14px;
8006
- padding: 10px 16px; }
8007
- .brz .brz-forms2 .brz-control__select-current {
8008
- padding: 10px 16px; }
8009
- .brz .brz-forms2 .brz-control__select-options .brz-control__select-option {
8010
- padding: 10px 16px;
8011
- font-size: 14px; } }
8012
- .brz .brz-story .brz-form {
8013
- width: 100%;
8014
- margin: 0; }
8015
- .brz .brz-story .brz-form .brz-forms2__item-button {
8016
- padding-bottom: 0; }
8017
- .brz .brz-story .brz-form .brz-forms2__item-button .brz-btn {
8018
- width: 100%; }
8019
- .brz .brz-tabs {
8020
- min-width: 0; }
8021
- .brz .brz-tabs--horizontal {
8022
- -webkit-box-flex: 1;
8023
- -ms-flex: 1 1 auto;
8024
- flex: 1 1 auto; }
8025
- .brz .brz-tabs--vertical {
8026
- display: -webkit-box;
8027
- display: -ms-flexbox;
8028
- display: flex;
8029
- width: 100%; }
8030
- .brz .brz-tabs--vertical.brz-tabs--right {
8031
- -webkit-box-orient: horizontal;
8032
- -webkit-box-direction: reverse;
8033
- -ms-flex-direction: row-reverse;
8034
- flex-direction: row-reverse; }
8035
- .brz .brz-tabs__nav {
8036
- overflow: hidden;
8037
- margin: 0;
8038
- padding: 0;
8039
- min-width: -webkit-fit-content;
8040
- min-width: -moz-fit-content;
8041
- min-width: fit-content; }
8042
- .brz .brz-tabs__nav--horizontal {
8043
- display: -webkit-box;
8044
- display: -ms-flexbox;
8045
- display: flex; }
8046
- .brz .brz-tabs__nav--button {
8047
- padding: 10px 15px;
8048
- cursor: pointer;
8049
- border-style: solid;
8050
- background-clip: padding-box;
8051
- display: -webkit-box;
8052
- display: -ms-flexbox;
8053
- display: flex;
8054
- -ms-flex-wrap: nowrap;
8055
- flex-wrap: nowrap;
8056
- -webkit-box-align: center;
8057
- -ms-flex-align: center;
8058
- align-items: center;
8059
- -webkit-box-orient: horizontal;
8060
- -webkit-box-direction: normal;
8061
- -ms-flex-direction: row;
8062
- flex-direction: row; }
8063
- .brz .brz-tabs__nav--item {
8064
- position: relative;
8065
- list-style: none;
8066
- margin: 0;
8067
- line-height: unset;
8068
- z-index: var(--zIndex); }
8069
- .brz .brz-tabs .brz-tabs__nav--style-1 .brz-tabs__nav--active:before, .brz .brz-tabs .brz-tabs__nav--style-1 .brz-tabs__nav--active:after {
8070
- content: "";
8071
- position: absolute; }
8072
- .brz .brz-tabs__nav--vertical.brz-tabs__nav--left .brz-tabs__nav--active:before, .brz .brz-tabs__nav--vertical.brz-tabs__nav--left .brz-tabs__nav--active:after {
8073
- height: 100vh;
8074
- right: 0; }
8075
- .brz .brz-tabs__nav--vertical.brz-tabs__nav--left .brz-tabs__nav--active:before {
8076
- bottom: 100%; }
8077
- .brz .brz-tabs__nav--vertical.brz-tabs__nav--right .brz-tabs__nav--active:before, .brz .brz-tabs__nav--vertical.brz-tabs__nav--right .brz-tabs__nav--active:after {
8078
- height: 100vh;
8079
- left: 0; }
8080
- .brz .brz-tabs__nav--vertical.brz-tabs__nav--right .brz-tabs__nav--active:before {
8081
- bottom: 100%; }
8082
- .brz .brz-tabs__nav--horizontal .brz-tabs__nav--active:before, .brz .brz-tabs__nav--horizontal .brz-tabs__nav--active:after {
8083
- width: 100vw;
8084
- height: 2px;
8085
- bottom: 0; }
8086
- .brz .brz-tabs__nav--horizontal .brz-tabs__nav--active:before {
8087
- left: -100vw; }
8088
- .brz .brz-tabs__nav--horizontal .brz-tabs__nav--active:after {
8089
- right: -100vw; }
8090
- .brz .brz-tabs__nav--mobile {
8091
- display: none; }
8092
- .brz .brz-tabs__items {
8093
- display: none;
8094
- border-style: solid;
8095
- background-clip: padding-box;
8096
- width: 100%; }
8097
- .brz .brz-tabs__items--active {
8098
- display: block; }
8099
- .brz .brz-tabs__items--active > .brz-tabs__item--content {
8100
- -webkit-animation-name: fadeIn;
8101
- animation-name: fadeIn;
8102
- -webkit-animation-duration: 0.15s;
8103
- animation-duration: 0.15s;
8104
- -webkit-animation-fill-mode: both;
8105
- animation-fill-mode: both; }
8106
- .brz .brz-tabs__items--active .brz-bg-content:empty {
8107
- min-height: 50px; }
8108
- .brz .brz-tabs__content--vertical {
8109
- -webkit-box-flex: 1;
8110
- -ms-flex-positive: 1;
8111
- flex-grow: 1; }
8112
- .brz .brz-tabs__content--vertical .brz-tabs__items {
8113
- height: 100%; }
8114
- .brz .brz-tabs__content--vertical.brz-tabs__content--style-1.brz-tabs__content--left .brz-tabs__items--active,
8115
- .brz .brz-tabs__content--vertical.brz-tabs__content--style-1.brz-tabs__content--left .brz-tabs__items--active:hover {
8116
- border-left-style: none; }
8117
- .brz .brz-tabs__content--vertical.brz-tabs__content--right.brz-tabs__content--style-1 .brz-tabs__items--active,
8118
- .brz .brz-tabs__content--vertical.brz-tabs__content--right.brz-tabs__content--style-1 .brz-tabs__items--active:hover {
8119
- border-right-style: none; }
8120
- .brz .brz-tabs__content--horizontal.brz-tabs__content--style-1 .brz-tabs__items--active,
8121
- .brz .brz-tabs__content--horizontal.brz-tabs__content--style-1 .brz-tabs__items--active:hover {
8122
- border-top-style: none; }
8123
- @media (max-width: 991px) {
8124
- .brz .brz-tabs__nav {
8125
- margin: 0 !important; }
8126
- .brz .brz-tabs__nav--mobile {
8127
- display: block; }
8128
- .brz .brz-tabs__nav--mobile > .brz-tabs__nav--button {
8129
- border-width: 0 !important;
8130
- -webkit-box-shadow: none !important;
8131
- box-shadow: none !important; }
8132
- .brz .brz-tabs__nav--desktop {
8133
- display: none; }
8134
- .brz .brz-tabs__items {
8135
- display: block; }
8136
- .brz .brz-tabs__items > .brz-tabs__item--content {
8137
- display: none; }
8138
- .brz .brz-tabs__items:not(:last-child) {
8139
- margin-bottom: 3px; }
8140
- .brz .brz-tabs__items--active > .brz-tabs__nav--button {
8141
- border-bottom: solid; }
8142
- .brz .brz-tabs__items--active > .brz-tabs__item--content {
8143
- display: block; }
8144
- .brz .brz-tabs__content--vertical .brz-tabs__items {
8145
- height: -webkit-fit-content;
8146
- height: -moz-fit-content;
8147
- height: fit-content; }
8148
- .brz .brz-tabs__content .brz-tabs__items--active {
8149
- border-top-style: solid; }
8150
- .brz .brz-tabs__content.brz-tabs__content--vertical.brz-tabs__content--left .brz-tabs__items--active,
8151
- .brz .brz-tabs__content.brz-tabs__content--vertical.brz-tabs__content--left .brz-tabs__items--active:hover {
8152
- border-left-style: solid; }
8153
- .brz .brz-tabs__content.brz-tabs__content--vertical.brz-tabs__content--right .brz-tabs__items--active,
8154
- .brz .brz-tabs__content.brz-tabs__content--vertical.brz-tabs__content--right .brz-tabs__items--active:hover {
8155
- border-right-style: solid; }
8156
- .brz .brz-tabs__content.brz-tabs__content--horizontal.brz-tabs__content--style-1 .brz-tabs__items--active,
8157
- .brz .brz-tabs__content.brz-tabs__content--horizontal.brz-tabs__content--style-1 .brz-tabs__items--active:hover {
8158
- border-top-style: solid; }
8159
- .brz .brz-tabs__nav--horizontal.brz-tabs__nav.brz-tabs__nav--style-2 {
8160
- display: none; } }
8161
- .brz .brz-tabs__nav.brz-tabs__nav--style-3 .brz-tabs__nav--button:before {
8162
- content: ""; }
8163
- .brz .brz-tabs__nav.brz-tabs__nav--style-3 .brz-tabs__nav--button {
8164
- border: none !important;
8165
- -webkit-box-shadow: none !important;
8166
- box-shadow: none !important; }
8167
- .brz .brz-tabs__content--style-3 {
8168
- margin-top: 1px; }
8169
- .brz .brz-tabs__content--style-3 .brz-tabs__items {
8170
- border: none !important;
8171
- -webkit-box-shadow: none !important;
8172
- box-shadow: none !important; }
8173
- .brz .brz-tabs__nav--style-3 .brz-tabs__nav--item:before {
8174
- content: ""; }
8175
- .brz .brz-tabs__nav--style-3 .brz-tabs__nav--item:after {
8176
- content: ""; }
8177
- .brz .brz-timeline__tab {
8178
- position: relative;
8179
- list-style: none;
8180
- min-width: 280px; }
8181
- .brz .brz-timeline__tab:after {
8182
- content: "";
8183
- position: absolute; }
8184
- .brz .brz-timeline__tab:before {
8185
- content: "";
8186
- position: absolute; }
8187
- .brz .brz-timeline__tab:last-child:after {
8188
- display: none; }
8189
- .brz .brz-timeline__nav--title {
8190
- position: relative;
8191
- text-align: center;
8192
- left: -10px;
8193
- min-width: 116px;
8194
- max-width: 116px;
8195
- width: 116px; }
8196
- .brz .brz-timeline__nav--icon {
8197
- margin-left: 20px; }
8198
- .brz .brz-timeline__content {
8199
- border-style: solid;
8200
- border-radius: 5px;
8201
- -webkit-box-shadow: 0 0 20px 0 rgba(52, 49, 75, 0.1);
8202
- box-shadow: 0 0 20px 0 rgba(52, 49, 75, 0.1);
8203
- position: relative; }
8204
- .brz .brz-timeline__content:before {
8205
- content: "";
8206
- position: absolute;
8207
- top: 0;
8208
- width: 15px;
8209
- height: 15px;
8210
- -webkit-transform: translateY(-50%) rotate(45deg);
8211
- transform: translateY(-50%) rotate(45deg); }
8212
- .brz .brz-timeline__nav--mobile {
8213
- display: none; }
8214
- .brz .brz-switcher {
8215
- display: -webkit-box;
8216
- display: -ms-flexbox;
8217
- display: flex;
8218
- -webkit-box-orient: vertical;
8219
- -webkit-box-direction: normal;
8220
- -ms-flex-direction: column;
8221
- flex-direction: column;
8222
- -webkit-box-align: center;
8223
- -ms-flex-align: center;
8224
- align-items: center;
8225
- width: 100%; }
8226
- .brz .brz-switcher__nav {
8227
- width: -webkit-fit-content;
8228
- width: -moz-fit-content;
8229
- width: fit-content;
8230
- display: -webkit-box;
8231
- display: -ms-flexbox;
8232
- display: flex;
8233
- -webkit-transition-duration: 300ms;
8234
- transition-duration: 300ms;
8235
- position: relative; }
8236
- .brz .brz-switcher__nav:before {
8237
- content: "";
8238
- position: absolute;
8239
- left: calc(50% - 2px);
8240
- height: calc(100% - 4px);
8241
- width: calc(50% - 2px);
8242
- margin: 2px;
8243
- -webkit-transition-duration: 300ms;
8244
- transition-duration: 300ms; }
8245
- .brz .brz-switcher__nav--item {
8246
- width: 50%;
8247
- height: 100%;
8248
- max-width: 50%;
8249
- display: -webkit-box;
8250
- display: -ms-flexbox;
8251
- display: flex;
8252
- -webkit-box-pack: center;
8253
- -ms-flex-pack: center;
8254
- justify-content: center;
8255
- -webkit-box-align: center;
8256
- -ms-flex-align: center;
8257
- align-items: center;
8258
- white-space: nowrap; }
8259
- .brz .brz-switcher__nav--item--active {
8260
- z-index: 1; }
8261
- .brz .brz-switcher__nav--active:before {
8262
- content: "";
8263
- -webkit-transform: translateX(-100%);
8264
- transform: translateX(-100%); }
8265
- .brz .brz-switcher__nav--text {
8266
- position: relative; }
8267
- .brz .brz-switcher__content--tab {
8268
- display: none;
8269
- width: 100%; }
8270
- .brz .brz-switcher__content--tab--active {
8271
- display: -webkit-box;
8272
- display: -ms-flexbox;
8273
- display: flex; }
8274
- .brz .brz-switcher__nav > .brz-switcher__nav--item > span {
8275
- cursor: pointer; }
8276
- .brz .brz-switcher__nav2 {
8277
- display: -webkit-box;
8278
- display: -ms-flexbox;
8279
- display: flex;
8280
- width: 100%;
8281
- -webkit-box-pack: center;
8282
- -ms-flex-pack: center;
8283
- justify-content: center;
8284
- -webkit-box-align: center;
8285
- -ms-flex-align: center;
8286
- align-items: center; }
8287
- .brz .brz-switcher__nav2--control {
8288
- height: 47px;
8289
- display: -webkit-box;
8290
- display: -ms-flexbox;
8291
- display: flex;
8292
- -webkit-transition-duration: 300ms;
8293
- transition-duration: 300ms; }
8294
- .brz .brz-switcher__nav2--control:before {
8295
- content: "";
8296
- position: relative;
8297
- left: calc(50% + 2px);
8298
- margin: 2px;
8299
- height: calc(100% - 4px);
8300
- width: calc(50% - 5px);
8301
- -webkit-transition-duration: 300ms;
8302
- transition-duration: 300ms; }
8303
- .brz .brz-switcher__nav2--control--active:before {
8304
- content: "";
8305
- -webkit-transform: translateX(calc(-100% - 8px));
8306
- transform: translateX(calc(-100% - 8px)); }
8307
- .brz .brz-switcher__nav2 span {
8308
- margin: 0 20px; }
8309
- .brz .brz-switcher--style2 > .brz-switcher__nav2 > span {
8310
- cursor: pointer; }
8311
- .brz .brz-table {
8312
- display: table;
8313
- table-layout: fixed;
8314
- margin: 0;
8315
- font-size: initial; }
8316
- .brz .brz-table__th--btn {
8317
- display: -webkit-box;
8318
- display: -ms-flexbox;
8319
- display: flex;
8320
- -webkit-box-pack: center;
8321
- -ms-flex-pack: center;
8322
- justify-content: center; }
8323
- .brz .brz-table__th .brz-span {
8324
- margin: auto 0; }
8325
- .brz .brz-accordion {
8326
- -webkit-box-flex: 1;
8327
- -ms-flex: 1 1 auto;
8328
- flex: 1 1 auto;
8329
- display: -webkit-box;
8330
- display: -ms-flexbox;
8331
- display: flex;
8332
- -webkit-box-orient: vertical;
8333
- -webkit-box-direction: normal;
8334
- -ms-flex-direction: column;
8335
- flex-direction: column; }
8336
- .brz .brz-accordion__nav {
8337
- padding: 10px 15px;
8338
- cursor: pointer;
8339
- background-clip: padding-box;
8340
- display: -webkit-box;
8341
- display: -ms-flexbox;
8342
- display: flex;
8343
- -webkit-box-pack: justify;
8344
- -ms-flex-pack: justify;
8345
- justify-content: space-between; }
8346
- .brz .brz-accordion__nav--icon, .brz .brz-accordion__nav--previewIcon, .brz .brz-accordion__nav--previewIcon--active {
8347
- margin: auto 0; }
8348
- .brz .brz-accordion__item {
8349
- display: block;
8350
- width: 100%; }
8351
- .brz .brz-accordion__item > .brz-accordion__content {
8352
- overflow: hidden;
8353
- height: 0;
8354
- will-change: height, transition-duration;
8355
- background-clip: padding-box;
8356
- border-top-color: transparent !important; }
8357
- .brz .brz-accordion__item-content > * {
8358
- -ms-flex-negative: 0;
8359
- flex-shrink: 0; }
8360
- .brz .brz-accordion__item > .brz-accordion__nav > .brz-accordion--icon-wrapper > .brz-accordion__nav--previewIcon--active {
8361
- display: none; }
8362
- .brz .brz-accordion__item--active > .brz-accordion__nav > .brz-accordion--icon-wrapper > .brz-accordion__nav--previewIcon--active {
8363
- display: block; }
8364
- .brz .brz-accordion__item--active > .brz-accordion__nav > .brz-accordion--icon-wrapper > .brz-accordion__nav--previewIcon {
8365
- display: none; }
8366
- .brz .brz-accordion__item--active > .brz-accordion__content {
8367
- height: auto; }
8368
- .brz .brz-accordion__item--active > .brz-accordion__content > .brz-accordion__item-content:empty {
8369
- min-height: 50px; }
8370
- .brz .brz-accordion__filter-wrapper {
8371
- width: 100%;
8372
- display: -webkit-box;
8373
- display: -ms-flexbox;
8374
- display: flex;
8375
- -webkit-box-pack: center;
8376
- -ms-flex-pack: center;
8377
- justify-content: center; }
8378
- .brz .brz-accordion__filter {
8379
- width: 100%;
8380
- list-style: none;
8381
- display: -webkit-box;
8382
- display: -ms-flexbox;
8383
- display: flex;
8384
- -webkit-box-pack: inherit;
8385
- -ms-flex-pack: inherit;
8386
- justify-content: inherit;
8387
- padding: 0;
8388
- -ms-flex-wrap: wrap;
8389
- flex-wrap: wrap; }
8390
- .brz .brz-accordion__filter--style-2 {
8391
- width: -webkit-fit-content;
8392
- width: -moz-fit-content;
8393
- width: fit-content; }
8394
- .brz .brz-accordion__filter__item {
8395
- cursor: pointer; }
8396
- .brz .brz-accordion__filter__item:first-child {
8397
- margin-left: 0 !important; }
8398
- .brz .brz-accordion__filter__item:last-child {
8399
- margin-right: 0 !important; }
8400
- .brz .brz-accordion__hidden {
8401
- display: none; }
8402
- .brz .brz-image__gallery {
8403
- width: 100%; }
8404
- .brz .brz-image__gallery-wrapper .brz-image {
8405
- display: block; }
8406
- .brz .brz-image__gallery-item {
8407
- -webkit-transition: none !important;
8408
- transition: none !important; }
8409
- .brz .brz-image__gallery--filter-wrapper {
8410
- width: 100%;
8411
- display: -webkit-box;
8412
- display: -ms-flexbox;
8413
- display: flex;
8414
- -webkit-box-pack: center;
8415
- -ms-flex-pack: center;
8416
- justify-content: center; }
8417
- .brz .brz-image__gallery-filter {
8418
- width: 100%;
8419
- list-style: none;
8420
- display: -webkit-box;
8421
- display: -ms-flexbox;
8422
- display: flex;
8423
- -webkit-box-pack: center;
8424
- -ms-flex-pack: center;
8425
- justify-content: center;
8426
- -ms-flex-wrap: wrap;
8427
- flex-wrap: wrap;
8428
- padding: 0; }
8429
- .brz .brz-image__gallery-filter--style-2 {
8430
- width: -webkit-fit-content;
8431
- width: -moz-fit-content;
8432
- width: fit-content; }
8433
- .brz .brz-image__gallery-filter__item {
8434
- cursor: pointer; }
8435
- .brz .brz-image__gallery-filter__item:first-child {
8436
- margin-left: 0 !important; }
8437
- .brz .brz-image__gallery-filter__item:last-child {
8438
- margin-right: 0 !important; }
8439
- .brz .mfp-arrow:hover,
8440
- .brz .mfp-close:hover {
8441
- background-color: transparent;
8442
- border: 0; }
8443
- .brz .brz-popup {
8444
- position: fixed;
8445
- width: 100%;
8446
- height: 100%;
8447
- top: 0;
8448
- left: 0;
8449
- z-index: 1060; }
8450
- .brz .brz-popup__close {
8451
- position: absolute;
8452
- z-index: 2;
8453
- top: 36px;
8454
- left: 50px;
8455
- color: #fff;
8456
- font-size: 0;
8457
- cursor: pointer; }
8458
- .brz .brz-popup__close .brz-icon-svg {
8459
- font-size: 26px; }
8460
- .brz .brz-popup > .brz-container__wrap {
8461
- max-height: 100%;
8462
- padding-top: 70px;
8463
- padding-bottom: 70px; }
8464
- .brz .brz-popup .brz-container {
8465
- height: 100%;
8466
- -webkit-box-pack: center;
8467
- -ms-flex-pack: center;
8468
- justify-content: center; }
8469
- .brz .brz-popup .brz-container > .brz-row__container {
8470
- max-height: 100%; }
8471
- .brz .brz-popup .brz-container > .brz-row__container > .brz-row {
8472
- overflow-x: hidden;
8473
- overflow-y: auto;
8474
- max-height: 100%; }
8475
- .brz .brz-popup__preview {
8476
- z-index: -1;
8477
- visibility: hidden;
8478
- -webkit-transform: translate(-100%);
8479
- transform: translate(-100%);
8480
- opacity: 0;
8481
- -webkit-transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) opacity, 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) visibility, 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) z-index;
8482
- transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) opacity, 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) visibility, 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) z-index; }
8483
- .brz .brz-popup__preview.brz-popup--opened {
8484
- z-index: 1070;
8485
- visibility: visible;
8486
- -webkit-transform: translate(0);
8487
- transform: translate(0);
8488
- opacity: 1;
8489
- -webkit-transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) opacity, 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) visibility, 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) z-index;
8490
- transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) opacity, 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) visibility, 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) z-index; }
8491
- .brz .brz-popup2 {
8492
- position: fixed;
8493
- width: 100%;
8494
- height: 100%;
8495
- top: 0;
8496
- left: 0;
8497
- z-index: 1060; }
8498
- .brz .brz-popup2__close {
8499
- position: absolute;
8500
- z-index: 2;
8501
- color: #fff;
8502
- font-size: 0;
8503
- cursor: pointer; }
8504
- .brz .brz-popup2__close .brz-icon-svg {
8505
- font-size: 26px; }
8506
- .brz .brz-popup2 .brz-container__wrap {
8507
- position: relative;
8508
- margin: 0; }
8509
- .brz .brz-popup2 .brz-container__wrap .brz-container {
8510
- height: 100%; }
8511
- .brz .brz-popup2__inner {
8512
- position: relative;
8513
- height: 100%;
8514
- overflow-x: hidden;
8515
- overflow-y: auto; }
8516
- .brz .brz-popup2__inner > .brz-container__wrap {
8517
- max-height: 100%;
8518
- margin: 0;
8519
- padding: 0;
8520
- min-width: 300px; }
8521
- .brz .brz-popup2__vertical-align {
8522
- -webkit-transform: rotate(270deg);
8523
- transform: rotate(270deg); }
8524
- .brz .brz-popup2__preview {
8525
- z-index: -1;
8526
- visibility: hidden;
8527
- -webkit-transform: translate(0, -110%);
8528
- transform: translate(0, -110%);
8529
- opacity: 0;
8530
- -webkit-transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) opacity;
8531
- transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) opacity; }
8532
- .brz .brz-popup2__preview.brz-popup2--opened {
8533
- z-index: 1070;
8534
- visibility: visible;
8535
- -webkit-transform: translate(0, 0);
8536
- transform: translate(0, 0);
8537
- opacity: 1;
8538
- -webkit-transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) opacity;
8539
- transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) opacity; }
8540
- .brz .brz-carousel {
8541
- display: block;
8542
- width: 100%; }
8543
- .brz .brz-carousel__slider:not(.slick-initialized) {
8544
- display: -webkit-box;
8545
- display: -ms-flexbox;
8546
- display: flex;
8547
- -ms-flex-wrap: wrap;
8548
- flex-wrap: wrap; }
8549
- .brz .brz-carousel > .slick-slider {
8550
- overflow: hidden; }
8551
- .brz .brz-carousel > .slick-slider .slick-slide {
8552
- height: auto; }
8553
- .brz .brz-carousel > .slick-slider > .slick-list > .slick-track > .slick-slide > div {
8554
- height: 100%; }
8555
- .brz .brz-carousel > .slick-slider > .slick-list > .slick-track > .slick-slide > div > .brz-carousel__item,
8556
- .brz .brz-carousel > .slick-slider > .slick-list > .slick-track > .slick-slide > div > .brz-carousel__item > .brz-columns,
8557
- .brz .brz-carousel > .slick-slider > .slick-list > .slick-track > .slick-slide > div > .brz-columns {
8558
- height: 100%; }
8559
- .brz .brz-carousel > .slick-slider > .brz-slick-slider__arrow {
8560
- opacity: 1; }
8561
- .brz .brz-carousel > .slick-slider > .brz-slick-slider__dots {
8562
- bottom: 10px; }
8563
- .brz .brz-carousel > .slick-slider .slick-slide {
8564
- outline: none; }
8565
- .brz .brz-carousel > .slick-slider .slick-track {
8566
- -ms-flex-wrap: nowrap;
8567
- flex-wrap: nowrap; }
8568
- .brz .brz-carousel .brz-rich-text *,
8569
- .brz .brz-carousel .brz-icon-svg {
8570
- -webkit-backface-visibility: hidden;
8571
- backface-visibility: hidden; }
8572
- @media (max-width: 767px) {
8573
- .brz.brz:not(.brz-ed) .slick-slider * {
8574
- min-width: 0;
8575
- min-height: 0; } }
8576
- .brz .brz-posts {
8577
- width: 100%; }
8578
- .brz .brz-posts__wrapper {
8579
- display: -webkit-box;
8580
- display: -ms-flexbox;
8581
- display: flex;
8582
- -ms-flex-wrap: wrap;
8583
- flex-wrap: wrap; }
8584
- .brz .brz-posts__filter {
8585
- width: 100%;
8586
- list-style: none;
8587
- display: -webkit-box;
8588
- display: -ms-flexbox;
8589
- display: flex;
8590
- -webkit-box-pack: inherit;
8591
- -ms-flex-pack: inherit;
8592
- justify-content: inherit;
8593
- padding: 0;
8594
- -ms-flex-wrap: wrap;
8595
- flex-wrap: wrap; }
8596
- .brz .brz-posts__filter-wrapper {
8597
- width: 100%;
8598
- grid-column: 1 / -1;
8599
- -webkit-box-pack: center;
8600
- -ms-flex-pack: center;
8601
- justify-content: center; }
8602
- .brz .brz-posts__filter--style-2 {
8603
- width: -webkit-fit-content;
8604
- width: -moz-fit-content;
8605
- width: fit-content; }
8606
- .brz .brz-posts__filter__item {
8607
- cursor: pointer; }
8608
- .brz .brz-posts__filter__item:first-child {
8609
- margin-left: 0 !important; }
8610
- .brz .brz-posts__filter__item:last-child {
8611
- margin-right: 0 !important; }
8612
- .brz .brz-posts__item > .brz-columns {
8613
- height: 100%; }
8614
- .brz .brz-posts__pagination ul.page-numbers {
8615
- display: -webkit-box;
8616
- display: -ms-flexbox;
8617
- display: flex;
8618
- -ms-flex-wrap: wrap;
8619
- flex-wrap: wrap;
8620
- -webkit-box-pack: center;
8621
- -ms-flex-pack: center;
8622
- justify-content: center;
8623
- -webkit-box-align: center;
8624
- -ms-flex-align: center;
8625
- align-items: center;
8626
- margin: 0;
8627
- padding: 0;
8628
- list-style: none; }
8629
- .brz .brz-posts__pagination ul.page-numbers > li {
8630
- position: relative;
8631
- margin-left: 4px;
8632
- margin-right: 4px; }
8633
- .brz .brz-posts__pagination ul.page-numbers > li:first-child {
8634
- margin-left: 0; }
8635
- .brz .brz-posts__pagination ul.page-numbers > li:last-child {
8636
- margin-right: 0; }
8637
- .brz .brz-posts__pagination ul.page-numbers .page-numbers {
8638
- position: relative;
8639
- display: block;
8640
- padding: 6px 10px;
8641
- outline: none;
8642
- color: inherit;
8643
- font-size: 18px;
8644
- line-height: 1;
8645
- text-decoration: none;
8646
- -webkit-transition: 0.2s linear color;
8647
- transition: 0.2s linear color; }
8648
- .brz .brz-posts__pagination ul.page-numbers .page-numbers:before {
8649
- content: "";
8650
- position: absolute;
8651
- top: 50%;
8652
- left: 50%;
8653
- width: 28px;
8654
- height: 28px;
8655
- border: 2px solid transparent;
8656
- opacity: 0.75;
8657
- -webkit-transform: translate(-50%, -50%);
8658
- transform: translate(-50%, -50%);
8659
- -webkit-transition: 0.2s linear border-color;
8660
- transition: 0.2s linear border-color; }
8661
- .brz .brz-posts__pagination ul.page-numbers .page-numbers:hover {
8662
- -webkit-transition: 0.2s linear color;
8663
- transition: 0.2s linear color; }
8664
- .brz .brz-posts__pagination ul.page-numbers .page-numbers.current:before {
8665
- border-color: currentColor;
8666
- -webkit-transition: 0.2s linear border-color;
8667
- transition: 0.2s linear border-color; }
8668
- .brz .fb_iframe_widget {
8669
- min-height: 20px; }
8670
- .brz .fb-page,
8671
- .brz .fb-page span,
8672
- .brz .fb-page span iframe[style],
8673
- .brz .fb-post,
8674
- .brz .fb-video,
8675
- .brz .fb-comments,
8676
- .brz .fb-comments span,
8677
- .brz .fb-comments span iframe[style] {
8678
- width: 100% !important;
8679
- min-width: 100% !important; }
8680
- .brz .brz-fb-page,
8681
- .brz .brz-fb-embed,
8682
- .brz .brz-fb-group {
8683
- position: relative;
8684
- width: 100%; }
8685
- .brz .brz-fb-page::before,
8686
- .brz .brz-fb-embed::before,
8687
- .brz .brz-fb-group::before {
8688
- content: "";
8689
- width: 100%;
8690
- height: 100%;
8691
- position: absolute;
8692
- top: 0;
8693
- left: 0;
8694
- z-index: 2;
8695
- display: block;
8696
- pointer-events: none; }
8697
- .brz .brz-fb-group {
8698
- width: -webkit-fit-content;
8699
- width: -moz-fit-content;
8700
- width: fit-content; }
8701
- .brz .brz-fb-page,
8702
- .brz .brz-fb-comments {
8703
- width: 100%; }
8704
- .brz .brz-fb-styles-button--small-button {
8705
- height: 20px; }
8706
- .brz .brz-fb-styles-button--small-boxed {
8707
- height: 64px; }
8708
- .brz .brz-wp__breadcrumbs {
8709
- display: -webkit-box;
8710
- display: -ms-flexbox;
8711
- display: flex;
8712
- -webkit-box-pack: inherit;
8713
- -ms-flex-pack: inherit;
8714
- justify-content: inherit; }
8715
- .brz .brz-wp__breadcrumbs .brz-breadcrumbs {
8716
- width: 100%;
8717
- padding: 0;
8718
- margin: 0;
8719
- display: -webkit-inline-box;
8720
- display: -ms-inline-flexbox;
8721
- display: inline-flex;
8722
- -ms-flex-wrap: wrap;
8723
- flex-wrap: wrap;
8724
- word-break: break-all; }
8725
- .brz .brz-wp__breadcrumbs .brz-breadcrumbs li.brz-li {
8726
- list-style: none;
8727
- display: -webkit-inline-box;
8728
- display: -ms-inline-flexbox;
8729
- display: inline-flex;
8730
- -webkit-box-align: center;
8731
- -ms-flex-align: center;
8732
- align-items: center;
8733
- margin: 0; }
8734
- .brz .brz-wp__breadcrumbs .brz-breadcrumbs li.brz-li .brz-a {
8735
- cursor: pointer;
8736
- -webkit-transition-property: color;
8737
- transition-property: color; }
8738
- .brz .brz-wp__breadcrumbs .brz-breadcrumbs li.brz-li .brz-icon-svg {
8739
- margin-top: 1px; }
8740
- .brz .brz-wp__breadcrumbs .brz-breadcrumbs li.brz-li:last-child .brz-a {
8741
- margin-right: 0; }
8742
- .brz .brz-wp__breadcrumbs .brz-breadcrumbs .brz-li:not(:last-child) .brz-a {
8743
- color: inherit; }
8744
- .brz .brz-wp__postinfo {
8745
- display: -webkit-inline-box;
8746
- display: -ms-inline-flexbox;
8747
- display: inline-flex;
8748
- -ms-flex-wrap: wrap;
8749
- flex-wrap: wrap;
8750
- -webkit-box-pack: inherit;
8751
- -ms-flex-pack: inherit;
8752
- justify-content: inherit;
8753
- width: 100%;
8754
- padding: 0;
8755
- margin: 0;
8756
- word-break: break-all; }
8757
- .brz .brz-wp__postinfo__column ul {
8758
- display: -webkit-box;
8759
- display: -ms-flexbox;
8760
- display: flex;
8761
- -webkit-box-orient: vertical;
8762
- -webkit-box-direction: normal;
8763
- -ms-flex-direction: column;
8764
- flex-direction: column; }
8765
- .brz .brz-wp__postinfo__column ul .brz-li.brz-li {
8766
- margin-right: 0; }
8767
- .brz .brz-wp__postinfo__column ul .brz-li.brz-li:first-child {
8768
- margin-top: 0; }
8769
- .brz .brz-wp__postinfo > ul {
8770
- margin: 0;
8771
- padding: 0; }
8772
- .brz .brz-wp__postinfo .brz-li {
8773
- margin-left: 0;
8774
- margin-top: 0;
8775
- list-style: none;
8776
- display: -webkit-inline-box;
8777
- display: -ms-inline-flexbox;
8778
- display: inline-flex;
8779
- -webkit-box-align: center;
8780
- -ms-flex-align: center;
8781
- align-items: center;
8782
- cursor: default; }
8783
- .brz .brz-wp__postinfo .brz-li:last-child {
8784
- margin-right: 0 !important; }
8785
- .brz .brz-wp__postinfo .brz-li .brz-icon-svg {
8786
- margin-right: 0.5em; }
8787
- .brz .brz-wp__postinfo__disabled-author ul .brz-li:first-child,
8788
- .brz .brz-wp__postinfo__disabled-date ul .brz-li:nth-child(2),
8789
- .brz .brz-wp__postinfo__disabled-time ul .brz-li:nth-child(3),
8790
- .brz .brz-wp__postinfo__disabled-comments ul .brz-li:nth-child(4) {
8791
- display: none; }
8792
- .brz .brz-single-post-navigation {
8793
- position: relative;
8794
- width: 100%; }
8795
- .brz .brz-single-post-navigation .brz-span {
8796
- display: block; }
8797
- .brz .brz-single-post-navigation a:focus {
8798
- outline: none; }
8799
- .brz .brz-navigation-title,
8800
- .brz .brz-navigation {
8801
- display: -webkit-box;
8802
- display: -ms-flexbox;
8803
- display: flex;
8804
- -webkit-box-pack: justify;
8805
- -ms-flex-pack: justify;
8806
- justify-content: space-between; }
8807
- .brz .brz-navigation__prev:nth-child(2n) {
8808
- text-align: end;
8809
- text-decoration: none; }
8810
- .brz .brz-single-post-navigation::before {
8811
- content: "";
8812
- position: absolute;
8813
- background: #a5aeb4;
8814
- margin: auto;
8815
- width: 1px;
8816
- top: 0;
8817
- left: 0;
8818
- right: 0;
8819
- bottom: 0;
8820
- pointer-events: none; }
8821
- .brz .brz-navigation__next {
8822
- text-decoration: none; }
8823
- .brz .brz-navigation-title__next,
8824
- .brz .brz-navigation__next {
8825
- margin-left: auto;
8826
- text-align: right; }
8827
- .brz .brz-navigation-title__prev,
8828
- .brz .brz-navigation__prev {
8829
- padding-right: 50px; }
8830
- .brz .brz-navigation-title__next,
8831
- .brz .brz-navigation__next {
8832
- padding-left: 50px; }
8833
- .brz .brz-navigation-title__next,
8834
- .brz .brz-navigation__next,
8835
- .brz .brz-navigation-title__prev,
8836
- .brz .brz-navigation__prev {
8837
- max-width: 50%; }
8838
- .brz .brz-starrating {
8839
- display: -webkit-box;
8840
- display: -ms-flexbox;
8841
- display: flex;
8842
- -webkit-box-align: center;
8843
- -ms-flex-align: center;
8844
- align-items: center;
8845
- -ms-flex-wrap: nowrap;
8846
- flex-wrap: nowrap; }
8847
- .brz .brz-starrating-container {
8848
- display: -webkit-box;
8849
- display: -ms-flexbox;
8850
- display: flex;
8851
- -webkit-box-align: center;
8852
- -ms-flex-align: center;
8853
- align-items: center; }
8854
- .brz .brz-starrating-text {
8855
- display: -webkit-box;
8856
- display: -ms-flexbox;
8857
- display: flex;
8858
- -webkit-box-align: center;
8859
- -ms-flex-align: center;
8860
- align-items: center; }
8861
- .brz .brz-starrating-color {
8862
- position: absolute;
8863
- top: 0;
8864
- left: 0;
8865
- z-index: 2;
8866
- max-width: 100%;
8867
- overflow: hidden; }
8868
- .brz .brz-starrating-icon-wrap {
8869
- position: relative; }
8870
- .brz .brz-starrating .brz-starrating-container .brz-icon-svg {
8871
- top: 0.1em; }
8872
- .brz .brz-starrating .brz-starrating-container .brz-icon-svg:last-child {
8873
- margin-right: 0 !important; }
8874
- .brz .brz-starrating-color-full {
8875
- width: 100%; }
8876
- .brz .brz-starrating-color-w1 {
8877
- width: 10%; }
8878
- .brz .brz-starrating-color-w2 {
8879
- width: 20%; }
8880
- .brz .brz-starrating-color-w3 {
8881
- width: 30%; }
8882
- .brz .brz-starrating-color-w4 {
8883
- width: 40%; }
8884
- .brz .brz-starrating-color-w5 {
8885
- width: 50%; }
8886
- .brz .brz-starrating-color-w6 {
8887
- width: 60%; }
8888
- .brz .brz-starrating-color-w7 {
8889
- width: 70%; }
8890
- .brz .brz-starrating-color-w8 {
8891
- width: 80%; }
8892
- .brz .brz-starrating-color-w9 {
8893
- width: 90%; }
8894
- .brz .brz-starrating .brz-starrating-style2-container {
8895
- padding: 2px 9px;
8896
- display: -webkit-box;
8897
- display: -ms-flexbox;
8898
- display: flex; }
8899
- .brz .brz-starrating .brz-starrating-style2-container .brz-starrating-text {
8900
- -ms-flex-item-align: center;
8901
- align-self: center; }
8902
- .brz .brz-starrating .brz-starrating-style2-container .brz-starrating-icon-wrap {
8903
- -ms-flex-item-align: center;
8904
- align-self: center; }
8905
- .brz .brz-search-container {
8906
- display: -webkit-box;
8907
- display: -ms-flexbox;
8908
- display: flex;
8909
- -webkit-box-align: center;
8910
- -ms-flex-align: center;
8911
- align-items: center;
8912
- overflow: visible; }
8913
- .brz .brz-search-container--minimal {
8914
- overflow: hidden; }
8915
- .brz .brz-search-container--minimal .brz-search-form {
8916
- padding: 0 15px; }
8917
- .brz .brz-search-container .brz-ed-box__resizer {
8918
- height: unset; }
8919
- .brz .brz-search-container .brz-search-form {
8920
- display: -webkit-box;
8921
- display: -ms-flexbox;
8922
- display: flex;
8923
- width: 100%;
8924
- position: relative;
8925
- -webkit-box-align: center;
8926
- -ms-flex-align: center;
8927
- align-items: center; }
8928
- .brz .brz-search-container .brz-btn {
8929
- margin-left: auto;
8930
- z-index: 1; }
8931
- .brz .brz-search-container .brz-wrapper-clone__wrap {
8932
- margin: 0; }
8933
- .brz .brz-search-container .brz-search {
8934
- background-color: transparent;
8935
- width: 100%;
8936
- padding: 0 15px;
8937
- outline: none;
8938
- border: 0;
8939
- border-radius: 0; }
8940
- .brz .brz-search-container .brz-search:-webkit-autofill {
8941
- -webkit-transition: background-color 500000s ease !important;
8942
- transition: background-color 500000s ease !important; }
8943
- .brz .brz-search-container .brz-search::-webkit-input-placeholder {
8944
- color: inherit; }
8945
- .brz .brz-search-container .brz-search::-moz-placeholder {
8946
- color: inherit; }
8947
- .brz .brz-search-container .brz-search::-ms-input-placeholder {
8948
- color: inherit; }
8949
- .brz .brz-search-container .brz-search::placeholder {
8950
- color: inherit; }
8951
- .brz .brz-comments {
8952
- width: 100%;
8953
- padding: 0;
8954
- margin: 0; }
8955
- .brz .brz-comments .comment-form-rating > label {
8956
- font-weight: 600; }
8957
- .brz .brz-comments-parrent {
8958
- margin-bottom: -20px; }
8959
- .brz .brz-comments-parrent > div {
8960
- width: 100% !important;
8961
- float: none !important;
8962
- padding: 0 !important; }
8963
- .brz .brz-comments .comments-pagination {
8964
- margin-bottom: 20px; }
8965
- .brz .brz-comments .comments-pagination + .brz-comment-respond {
8966
- margin-top: -10px; }
8967
- .brz .brz-comments a {
8968
- text-decoration: none;
8969
- word-break: normal; }
8970
- .brz .brz-comments .brz-comments {
8971
- margin: 0;
8972
- display: -webkit-box;
8973
- display: -ms-flexbox;
8974
- display: flex;
8975
- -ms-flex-wrap: wrap;
8976
- flex-wrap: wrap; }
8977
- .brz .brz-comments .brz-comments + .brz-comment-respond {
8978
- margin-top: -20px; }
8979
- .brz .brz-comments .brz-comments .brz-comments-children {
8980
- padding: 0; }
8981
- .brz .brz-comments .brz-comments .brz-comments__name * {
8982
- color: inherit;
8983
- font-size: inherit; }
8984
- .brz .brz-comments .brz-comments .brz-comments__right-side {
8985
- display: -webkit-box;
8986
- display: -ms-flexbox;
8987
- display: flex;
8988
- margin-right: 0;
8989
- margin-left: auto;
8990
- -webkit-box-align: center;
8991
- -ms-flex-align: center;
8992
- align-items: center; }
8993
- .brz .brz-comments .brz-comments .brz-comments__date {
8994
- position: relative; }
8995
- .brz .brz-comments .brz-comments .brz-comments__date * {
8996
- color: inherit;
8997
- font-size: inherit; }
8998
- .brz .brz-comments .brz-comments .brz-comments__reply {
8999
- line-height: inherit; }
9000
- .brz .brz-comments .brz-comments .brz-comments__reply * {
9001
- font-size: inherit; }
9002
- .brz .brz-comments .brz-comments .brz-comments__reply .comment-reply-link {
9003
- background-color: transparent;
9004
- padding: 0; }
9005
- .brz .brz-comments .brz-comments .brz-comments__text p {
9006
- margin: 0; }
9007
- .brz .brz-comments .brz-comments .brz-comments__text,
9008
- .brz .brz-comments .brz-comments .brz-comment-awaiting-moderation {
9009
- width: 100%;
9010
- margin-bottom: 40px;
9011
- position: relative; }
9012
- .brz .brz-comments .brz-comments .brz-comments__text::before,
9013
- .brz .brz-comments .brz-comments .brz-comment-awaiting-moderation::before {
9014
- content: "";
9015
- position: absolute;
9016
- left: 0;
9017
- bottom: 0;
9018
- height: 1px;
9019
- background-color: rgba(129, 138, 145, 0.15);
9020
- display: block; }
9021
- .brz .brz-comments .brz-comments .brz-comments__text *,
9022
- .brz .brz-comments .brz-comments .brz-comment-awaiting-moderation * {
9023
- margin: 10px 0;
9024
- color: inherit;
9025
- font-family: inherit;
9026
- font-size: inherit; }
9027
- .brz .brz-comments .brz-comments .brz-comments__text a,
9028
- .brz .brz-comments .brz-comments .brz-comment-awaiting-moderation a {
9029
- color: #3dbfe8; }
9030
- .brz .brz-comments .brz-comments .brz-comments__text {
9031
- padding-bottom: 30px; }
9032
- .brz .brz-comments .brz-comments .brz-comment-awaiting-moderation {
9033
- padding-bottom: 40px; }
9034
- .brz .brz-comments-title {
9035
- margin: 0 0 59px 0;
9036
- color: #03080f;
9037
- font-size: 23px;
9038
- letter-spacing: -0.12px;
9039
- color: #03080f; }
9040
- .brz .brz-comments-title::before {
9041
- display: none; }
9042
- .brz .brz-comments .star-rating {
9043
- margin: 0; }
9044
- .brz .brz-comments__skin-skin1.review .brz-comments__date::before {
9045
- content: "";
9046
- width: 1px;
9047
- height: 77%;
9048
- position: absolute;
9049
- left: 0;
9050
- top: 0;
9051
- bottom: 0;
9052
- background-color: #818a91;
9053
- display: block;
9054
- margin: auto; }
9055
- .brz .brz-comments__skin-skin1 .brz-comments__logo .brz-img {
9056
- border-radius: 50%;
9057
- -o-object-fit: cover;
9058
- object-fit: cover; }
9059
- .brz .brz-comments__skin-skin1 .brz-comments__right-date {
9060
- margin-top: -2px;
9061
- display: -webkit-box;
9062
- display: -ms-flexbox;
9063
- display: flex;
9064
- -ms-flex-wrap: wrap;
9065
- flex-wrap: wrap;
9066
- -webkit-box-pack: justify;
9067
- -ms-flex-pack: justify;
9068
- justify-content: space-between;
9069
- -webkit-box-align: center;
9070
- -ms-flex-align: center;
9071
- align-items: center; }
9072
- .brz .brz-comments__skin-skin1 .brz-comments__right-date .brz-comments__name {
9073
- height: -webkit-fit-content;
9074
- height: -moz-fit-content;
9075
- height: fit-content;
9076
- display: -webkit-box;
9077
- display: -ms-flexbox;
9078
- display: flex;
9079
- -webkit-box-align: center;
9080
- -ms-flex-align: center;
9081
- align-items: center; }
9082
- .brz .brz-comments__skin-skin1 .brz-comments__right-date .brz-comments__date {
9083
- height: -webkit-fit-content;
9084
- height: -moz-fit-content;
9085
- height: fit-content;
9086
- margin-left: auto;
9087
- text-align: right;
9088
- display: -webkit-box;
9089
- display: -ms-flexbox;
9090
- display: flex;
9091
- -webkit-box-align: center;
9092
- -ms-flex-align: center;
9093
- align-items: center;
9094
- padding-left: 10px;
9095
- margin-left: 10px; }
9096
- .brz .brz-comments__skin-skin1 .brz-comments__right-date .brz-comments__date * .brz-span {
9097
- position: relative;
9098
- right: -2px; }
9099
- .brz .brz-comments__skin-skin1 .brz-comments__right-date .brz-comments__reply {
9100
- height: -webkit-fit-content;
9101
- height: -moz-fit-content;
9102
- height: fit-content;
9103
- padding-left: 10px;
9104
- margin-left: 10px;
9105
- position: relative;
9106
- display: -webkit-box;
9107
- display: -ms-flexbox;
9108
- display: flex;
9109
- -webkit-box-align: center;
9110
- -ms-flex-align: center;
9111
- align-items: center; }
9112
- .brz .brz-comments__skin-skin1 .brz-comments__right-date .brz-comments__reply::before {
9113
- content: "";
9114
- width: 1px;
9115
- height: 77%;
9116
- position: absolute;
9117
- left: 0;
9118
- top: 0;
9119
- bottom: 0;
9120
- background-color: #818a91;
9121
- display: block;
9122
- margin: auto; }
9123
- .brz .brz-comments__skin-skin1 .brz-comments__right-date .brz-comment-awaiting-moderation {
9124
- margin-top: 7px !important; }
9125
- .brz .brz-comments__skin-skin1 .brz-comments__right-date .brz-comments__text,
9126
- .brz .brz-comments__skin-skin1 .brz-comments__right-date .brz-comment-awaiting-moderation {
9127
- width: 100%;
9128
- margin-top: 3px; }
9129
- .brz .brz-comments__skin-skin1 .brz-comments__right-date .brz-comments__text::before,
9130
- .brz .brz-comments__skin-skin1 .brz-comments__right-date .brz-comment-awaiting-moderation::before {
9131
- width: 100%; }
9132
- .brz .brz-comments__skin-skin2 .star-rating {
9133
- -ms-flex-negative: 0;
9134
- flex-shrink: 0; }
9135
- .brz .brz-comments__skin-skin2 .brz-comments__logo-img {
9136
- width: 67px;
9137
- height: 67px;
9138
- border-radius: 50%;
9139
- -o-object-fit: cover;
9140
- object-fit: cover; }
9141
- .brz .brz-comments__skin-skin2 .brz-comments__right-date {
9142
- margin-top: 8px;
9143
- margin-bottom: 33px;
9144
- padding-bottom: 45px;
9145
- width: calc(100% - 97px);
9146
- display: -webkit-box;
9147
- display: -ms-flexbox;
9148
- display: flex;
9149
- position: relative; }
9150
- .brz .brz-comments__skin-skin2 .brz-comments__right-date::before {
9151
- content: "";
9152
- width: 100%;
9153
- height: 2px;
9154
- background-color: rgba(129, 138, 145, 0.15);
9155
- position: absolute;
9156
- bottom: 0;
9157
- left: 0; }
9158
- .brz .brz-comments__skin-skin2 .brz-comments__right-date .brz-comments__name-date {
9159
- display: -webkit-box;
9160
- display: -ms-flexbox;
9161
- display: flex;
9162
- -webkit-box-orient: vertical;
9163
- -webkit-box-direction: normal;
9164
- -ms-flex-direction: column;
9165
- flex-direction: column;
9166
- -webkit-box-align: start;
9167
- -ms-flex-align: start;
9168
- align-items: flex-start;
9169
- -ms-flex-negative: 0;
9170
- flex-shrink: 0; }
9171
- .brz .brz-comments__skin-skin2 .brz-comments__right-date .brz-comments__name-date .brz-comments__name {
9172
- margin-bottom: 6px; }
9173
- .brz .brz-comments__skin-skin2 .brz-comments__right-date .brz-comments__name-date .brz-comments__date {
9174
- width: 100%;
9175
- margin-bottom: 7px; }
9176
- .brz .brz-comments__skin-skin2 .brz-comments__right-date .brz-comments__name-date .brz-comments__date * {
9177
- width: 75px;
9178
- text-align: right;
9179
- margin: auto; }
9180
- .brz .brz-comments__skin-skin2 .brz-comments__right-date .brz-comments__name-date .brz-comments__date * .brz-span {
9181
- position: relative;
9182
- right: -2px; }
9183
- .brz .brz-comments__skin-skin2 .brz-comments__right-date .brz-comments__text,
9184
- .brz .brz-comments__skin-skin2 .brz-comments__right-date .brz-comment-awaiting-moderation {
9185
- margin-bottom: 0 !important;
9186
- padding-left: 20px;
9187
- padding-bottom: 0 !important; }
9188
- .brz .brz-comments__skin-skin2 .brz-comments__right-date .brz-comments__text {
9189
- margin-top: -2px;
9190
- -webkit-box-align: start;
9191
- -ms-flex-align: start;
9192
- align-items: flex-start; }
9193
- .brz .brz-comments__skin-skin2 .brz-comments__right-date .brz-comment-awaiting-moderation {
9194
- margin-top: -2px; }
9195
- .brz .brz-comments__skin-skin2 .brz-comments__right-date .brz-comments__reply {
9196
- padding-left: 30px;
9197
- margin-top: 1px;
9198
- -webkit-box-align: start;
9199
- -ms-flex-align: start;
9200
- align-items: flex-start; }
9201
- .brz .brz-comments__skin-skin3 .brz-comments__logo {
9202
- margin-right: 25px; }
9203
- .brz .brz-comments__skin-skin3 .brz-comments__logo .brz-img {
9204
- border-radius: 50%;
9205
- -o-object-fit: cover;
9206
- object-fit: cover; }
9207
- .brz .brz-comments__skin-skin3.review .brz-comments__date::after {
9208
- content: "";
9209
- height: 14px;
9210
- width: 1px;
9211
- background-color: #818a91;
9212
- margin: auto 10px; }
9213
- .brz .brz-comments__skin-skin3 .brz-comments__right-date {
9214
- width: calc(100% - 48.5px);
9215
- margin-top: 4px;
9216
- margin-bottom: 15px;
9217
- padding-bottom: 20px;
9218
- display: -webkit-box;
9219
- display: -ms-flexbox;
9220
- display: flex;
9221
- -ms-flex-wrap: wrap;
9222
- flex-wrap: wrap;
9223
- position: relative;
9224
- -webkit-box-align: center;
9225
- -ms-flex-align: center;
9226
- align-items: center; }
9227
- .brz .brz-comments__skin-skin3 .brz-comments__right-date::before {
9228
- content: "";
9229
- width: 100%;
9230
- height: 1px;
9231
- background-color: rgba(129, 138, 145, 0.15);
9232
- position: absolute;
9233
- bottom: 0;
9234
- left: 0; }
9235
- .brz .brz-comments__skin-skin3 .brz-comments__right-date .brz-comments__date {
9236
- position: relative;
9237
- display: -webkit-box;
9238
- display: -ms-flexbox;
9239
- display: flex; }
9240
- .brz .brz-comments__skin-skin3 .brz-comments__right-date .brz-comments__date::before {
9241
- content: "";
9242
- height: 14px;
9243
- width: 1px;
9244
- background-color: #818a91;
9245
- margin: auto 10px; }
9246
- .brz .brz-comments__skin-skin3 .brz-comments__right-date .brz-comments__text,
9247
- .brz .brz-comments__skin-skin3 .brz-comments__right-date .brz-comment-awaiting-moderation {
9248
- width: 100%; }
9249
- .brz .brz-comments__skin-skin3 .brz-comments__right-date .brz-comments__text .comment-reply-link,
9250
- .brz .brz-comments__skin-skin3 .brz-comments__right-date .brz-comment-awaiting-moderation .comment-reply-link {
9251
- font-family: inherit;
9252
- font-size: inherit; }
9253
- .brz .brz-comments__skin-skin3 .brz-comments__right-date .brz-comments__text *,
9254
- .brz .brz-comments__skin-skin3 .brz-comments__right-date .brz-comment-awaiting-moderation * {
9255
- display: contents; }
9256
- .brz .brz-comments__skin-skin3 .brz-comments__right-date .brz-comments__text {
9257
- margin: 0 !important;
9258
- padding-bottom: 0 !important; }
9259
- .brz .brz-comments__skin-skin3 .brz-comments__right-date .brz-comment-awaiting-moderation {
9260
- margin: 10px 0 0 0 !important;
9261
- padding-bottom: 10px !important; }
9262
- .brz .brz-comments__skin-skin4.review .brz-comments__date {
9263
- display: -webkit-box;
9264
- display: -ms-flexbox;
9265
- display: flex; }
9266
- .brz .brz-comments__skin-skin4.review .brz-comments__date::after {
9267
- content: "";
9268
- height: 14px;
9269
- width: 1px;
9270
- background-color: #818a91;
9271
- margin: auto 10px; }
9272
- .brz .brz-comments__skin-skin4 .brz-comments__right-date {
9273
- width: 100% !important;
9274
- padding-bottom: 20px;
9275
- margin-bottom: 25px;
9276
- display: -webkit-box;
9277
- display: -ms-flexbox;
9278
- display: flex;
9279
- -ms-flex-wrap: wrap;
9280
- flex-wrap: wrap;
9281
- -webkit-box-pack: justify;
9282
- -ms-flex-pack: justify;
9283
- justify-content: space-between;
9284
- position: relative; }
9285
- .brz .brz-comments__skin-skin4 .brz-comments__right-date .brz-comments__name-date {
9286
- display: -webkit-box;
9287
- display: -ms-flexbox;
9288
- display: flex;
9289
- -webkit-box-orient: vertical;
9290
- -webkit-box-direction: normal;
9291
- -ms-flex-direction: column;
9292
- flex-direction: column;
9293
- -webkit-box-align: start;
9294
- -ms-flex-align: start;
9295
- align-items: flex-start;
9296
- margin-bottom: 9px; }
9297
- .brz .brz-comments__skin-skin4 .brz-comments__right-date .brz-comments__name-date .brz-comments__left-side {
9298
- display: -webkit-box;
9299
- display: -ms-flexbox;
9300
- display: flex;
9301
- -webkit-box-align: center;
9302
- -ms-flex-align: center;
9303
- align-items: center; }
9304
- .brz .brz-comments__skin-skin4 .brz-comments__right-date .brz-comments__name-date .brz-comments__name {
9305
- margin-bottom: 5px; }
9306
- .brz .brz-comments__skin-skin4 .brz-comments__right-date .brz-comments__logo .brz-img {
9307
- border-radius: 50%;
9308
- -o-object-fit: cover;
9309
- object-fit: cover; }
9310
- .brz .brz-comments__skin-skin4 .brz-comments__right-date .brz-comments__text,
9311
- .brz .brz-comments__skin-skin4 .brz-comments__right-date .brz-comment-awaiting-moderation {
9312
- width: 100%; }
9313
- .brz .brz-comments__skin-skin4 .brz-comments__right-date .brz-comments__text *,
9314
- .brz .brz-comments__skin-skin4 .brz-comments__right-date .brz-comment-awaiting-moderation * {
9315
- display: contents; }
9316
- .brz .brz-comments__skin-skin4 .brz-comments__right-date .brz-comments__text {
9317
- margin: 0 !important;
9318
- padding: 0 !important; }
9319
- .brz .brz-comments__skin-skin4 .brz-comments__right-date .brz-comment-awaiting-moderation {
9320
- margin: 10px 0 0 0 !important;
9321
- padding-bottom: 10px !important; }
9322
- .brz .brz-comments__skin-skin4 .brz-comments__right-date::before {
9323
- content: "";
9324
- height: 1px;
9325
- width: 28%;
9326
- background-color: rgba(129, 138, 145, 0.15);
9327
- position: absolute;
9328
- left: 0;
9329
- bottom: 0; }
9330
- .brz .brz-comments__skin-skin1 .brz-comments__logo,
9331
- .brz .brz-comments__skin-skin2 .brz-comments__logo {
9332
- margin-right: 10px; }
9333
- .brz .brz-comments__skin-skin1 .brz-comments__logo .brz-img,
9334
- .brz .brz-comments__skin-skin2 .brz-comments__logo .brz-img,
9335
- .brz .brz-comments__skin-skin3 .brz-comments__logo .brz-img,
9336
- .brz .brz-comments__skin-skin4 .brz-comments__logo .brz-img {
9337
- position: static !important;
9338
- margin: 0 !important; }
9339
- .brz .brz-logged-in-as {
9340
- margin: 0;
9341
- color: #818a91;
9342
- font-family: "nunito", "Open Sans", Arial, sans-serif;
9343
- font-size: 15px;
9344
- line-height: 28px; }
9345
- .brz .comment-notes {
9346
- margin-top: 0;
9347
- margin-bottom: 15px;
9348
- color: #818a91;
9349
- font-family: "nunito", "Open Sans", Arial, sans-serif;
9350
- font-size: 15px;
9351
- line-height: 28px; }
9352
- .brz .brz-comment-respond {
9353
- margin-bottom: 20px;
9354
- width: 100%; }
9355
- .brz .brz-comment-respond .brz-comment-reply-title {
9356
- margin: 12px 0;
9357
- color: #03080f;
9358
- font-family: "nunito", "Open Sans", Arial, sans-serif;
9359
- font-size: 20px;
9360
- font-weight: 600;
9361
- letter-spacing: -0.1px;
9362
- line-height: 24px; }
9363
- .brz .brz-comment-respond .brz-comment-reply-title #cancel-comment-reply-link {
9364
- padding-left: 5px;
9365
- font-family: "nunito", "Open Sans", Arial, sans-serif;
9366
- font-size: 14px; }
9367
- .brz .brz-comment-respond .brz--comment__form-reply-body .comment-form-rating .stars {
9368
- font-family: star; }
9369
- .brz .brz-comment-respond .brz--comment__form-reply-body .comment-form-rating .stars a {
9370
- position: relative;
9371
- height: 1em;
9372
- width: 1em;
9373
- text-indent: -999em;
9374
- display: inline-block;
9375
- text-decoration: none;
9376
- -webkit-box-shadow: none;
9377
- box-shadow: none; }
9378
- .brz .brz-comment-respond .brz--comment__form-reply-body .comment-form-rating .stars a::before {
9379
- font-family: star;
9380
- display: block;
9381
- position: absolute;
9382
- top: 0;
9383
- left: 0;
9384
- width: 1em;
9385
- height: 1em;
9386
- line-height: 1;
9387
- content: "\73";
9388
- text-indent: 0; }
9389
- .brz .brz-comment-respond .brz--comment__form-reply-body .comment-form-rating .stars:hover a::before {
9390
- content: "\53"; }
9391
- .brz .brz-comment-respond .brz--comment__form-reply-body .comment-form-rating .stars.selected a::before {
9392
- content: "\53"; }
9393
- .brz .brz-comment-respond .brz--comment__form-reply-body .comment-form-rating .stars.selected a.active ~ a::before {
9394
- content: "\73"; }
9395
- .brz .brz-comment-respond .brz--comment__form-reply-body .comment-form-rating .stars a:hover ~ a::before {
9396
- content: "\73"; }
9397
- .brz .brz-comment-respond textarea[name="comment"] {
9398
- height: 160px;
9399
- border: 1px solid #d4d4d4;
9400
- border-radius: 3px;
9401
- resize: none;
9402
- outline: none; }
9403
- .brz .brz-comment-respond input[name="submit"] {
9404
- border: 0;
9405
- border-radius: 3px;
9406
- padding: 1em 2em; }
9407
- .brz .brz-comment-form-comment {
9408
- width: 100%;
9409
- color: #03080f;
9410
- font-family: "nunito", "Open Sans", Arial, sans-serif;
9411
- font-size: 20px;
9412
- font-weight: 600;
9413
- letter-spacing: -0.1px;
9414
- line-height: 24px; }
9415
- .brz .brz-comment-form-comment label {
9416
- margin-bottom: 19px;
9417
- display: block; }
9418
- .brz .brz-form-submit {
9419
- width: 100%; }
9420
- .brz ul.brz-comments ul.brz-comments {
9421
- width: 80%;
9422
- margin-left: auto; }
9423
- .brz .brz-comment-form-author,
9424
- .brz .brz-comment-form-email,
9425
- .brz .brz-comment-form-url {
9426
- width: 32%;
9427
- margin-top: 5px;
9428
- margin-bottom: 7px;
9429
- font-family: "nunito", "Open Sans", Arial, sans-serif;
9430
- font-size: 20px;
9431
- font-weight: 600;
9432
- letter-spacing: -0.1px;
9433
- line-height: 24px;
9434
- display: -webkit-box;
9435
- display: -ms-flexbox;
9436
- display: flex;
9437
- -webkit-box-orient: vertical;
9438
- -webkit-box-direction: normal;
9439
- -ms-flex-direction: column;
9440
- flex-direction: column; }
9441
- .brz .brz-comment-form-author .required,
9442
- .brz .brz-comment-form-email .required,
9443
- .brz .brz-comment-form-url .required {
9444
- font-size: 18px;
9445
- margin-left: 5px; }
9446
- .brz .brz-comment-form-author input[type="text"],
9447
- .brz .brz-comment-form-email input[type="text"],
9448
- .brz .brz-comment-form-url input[type="text"] {
9449
- outline: none;
9450
- border: 1px solid #d4d4d4;
9451
- border-radius: 3px;
9452
- margin-top: 18px;
9453
- font-size: 17px; }
9454
- .brz .brz-comment-form-author input[type="text"]:focus,
9455
- .brz .brz-comment-form-email input[type="text"]:focus,
9456
- .brz .brz-comment-form-url input[type="text"]:focus {
9457
- border: 1px solid #d4d4d4; }
9458
- .brz .comment-form-cookies-consent {
9459
- width: 100%;
9460
- margin-bottom: 12px;
9461
- display: -webkit-box;
9462
- display: -ms-flexbox;
9463
- display: flex;
9464
- -webkit-box-align: center;
9465
- -ms-flex-align: center;
9466
- align-items: center; }
9467
- .brz .comment-form-cookies-consent input[type="checkbox"] {
9468
- height: 18px;
9469
- width: 18px;
9470
- border: 1px solid #d4d4d4;
9471
- border-radius: 3px;
9472
- margin-right: 15px;
9473
- -ms-flex-negative: 0;
9474
- flex-shrink: 0; }
9475
- .brz .comment-form-cookies-consent label {
9476
- color: #818a91;
9477
- font-family: "nunito", "Open Sans", Arial, sans-serif;
9478
- font-size: 15px;
9479
- line-height: 20px; }
9480
- .brz .brz--comment__form-reply-body {
9481
- display: -webkit-box;
9482
- display: -ms-flexbox;
9483
- display: flex;
9484
- -ms-flex-wrap: wrap;
9485
- flex-wrap: wrap;
9486
- -webkit-box-pack: justify;
9487
- -ms-flex-pack: justify;
9488
- justify-content: space-between; }
9489
- .brz .brz-form-submit {
9490
- margin-bottom: 0; }
9491
- @media only screen and (max-width: 768px) {
9492
- .brz .brz-comment-awaiting-moderation {
9493
- padding-bottom: 20px; }
9494
- .brz .brz-comments li.brz-comments .brz-comments__text {
9495
- padding-bottom: 10px; }
9496
- .brz .brz-comments li.brz-comments .brz-comment-awaiting-moderation {
9497
- padding-bottom: 20px; }
9498
- .brz .brz-comments__skin-skin1.comment .brz-comments__date {
9499
- margin-left: 0;
9500
- padding-left: 0; }
9501
- .brz .brz-comments__skin-skin1 .brz-comments__right-date {
9502
- -webkit-box-pack: start;
9503
- -ms-flex-pack: start;
9504
- justify-content: flex-start; }
9505
- .brz .brz-comments__skin-skin1 .brz-comments__right-date .brz-comments__name {
9506
- width: 100%; }
9507
- .brz .brz-comments__skin-skin1 .brz-comments__right-date .brz-comment-awaiting-moderation {
9508
- margin-top: 15px !important; }
9509
- .brz .brz-comments__skin-skin2 .brz-comments__right-date {
9510
- -ms-flex-wrap: wrap;
9511
- flex-wrap: wrap; }
9512
- .brz .brz-comments__skin-skin2 .brz-comments__right-date .brz-comments__name-date .brz-comments__date * {
9513
- width: auto; }
9514
- .brz .brz-comments__skin-skin2 .brz-comments__right-date .brz-comments__name-date .brz-comments__date * .brz-span {
9515
- position: static;
9516
- display: inline; }
9517
- .brz .brz-comments__skin-skin2 .brz-comments__text,
9518
- .brz .brz-comments__skin-skin2 .brz-comment-awaiting-moderation {
9519
- width: calc(100% - 65px) !important;
9520
- padding: 40px 0 0 0 !important; } }
9521
- @media only screen and (max-width: 480px) {
9522
- .brz .brz-comment-form-author,
9523
- .brz .brz-comment-form-email,
9524
- .brz .brz-comment-form-url {
9525
- width: 100%; } }
9526
- .brz .brz-image {
9527
- position: relative;
9528
- display: inherit;
9529
- -webkit-box-pack: inherit;
9530
- -ms-flex-pack: inherit;
9531
- justify-content: inherit;
9532
- -webkit-box-align: inherit;
9533
- -ms-flex-align: inherit;
9534
- align-items: inherit;
9535
- -ms-flex-preferred-size: 100%;
9536
- flex-basis: 100%;
9537
- width: 100%;
9538
- overflow: hidden; }
9539
- .brz .brz-image .brz-img {
9540
- max-width: 100%; }
9541
- .brz .brz-image .brz-img-svg {
9542
- width: 100%;
9543
- height: 100%; }
9544
- .brz .brz-image .brz-a,
9545
- .brz .brz-image .brz-picture {
9546
- outline: none; }
9547
- .brz .brz-image .brz-shortcode__placeholder {
9548
- top: 0;
9549
- position: absolute; }
9550
- .brz:not(.brz-ed) .brz-image .brz-a,
9551
- .brz:not(.brz-ed) .brz-image .brz-img,
9552
- .brz:not(.brz-ed) .brz-image .brz-picture {
9553
- width: 100%;
9554
- height: auto; }
9555
- .brz:not(.brz-ed) .brz-image .brz-img {
9556
- top: 0;
9557
- left: 0;
9558
- height: 100%; }
9559
- .brz:not(.brz-ed) .brz-image .brz-img-svg {
9560
- position: absolute; }
9561
- .brz:not(.brz-ed) .brz-image__lightbox * {
9562
- cursor: -webkit-zoom-in;
9563
- cursor: zoom-in; }
9564
- .brz:not(.brz-ed) .brz-image picture {
9565
- border-radius: inherit; }
9566
- .brz:not(.brz-ed) .brz-image:after {
9567
- content: "";
9568
- width: 100%;
9569
- height: 100%;
9570
- position: absolute;
9571
- pointer-events: none;
9572
- top: 0;
9573
- left: 0;
9574
- border-radius: inherit;
9575
- -webkit-transform: scale(1.01);
9576
- transform: scale(1.01); }
9577
- .brz:not(.brz-ed) .brz-image--story .brz-shortcode__placeholder .brz-icon-svg {
9578
- position: absolute;
9579
- top: 50%;
9580
- left: 50%;
9581
- -webkit-transform: translate(-50%, -50%);
9582
- transform: translate(-50%, -50%); }
9583
- .brz .mfp-bg {
9584
- z-index: 1100; }
9585
- .brz .mfp-wrap {
9586
- z-index: 1101; }
9587
- .brz .mfp-figure figcaption {
9588
- margin: 0; }
9589
- .brz .mfp-figure:after,
9590
- .brz .mfp-iframe-scaler iframe {
9591
- -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.35);
9592
- box-shadow: 0 0 40px rgba(0, 0, 0, 0.35); }
9593
- .brz .brz-menu-simple .menu {
9594
- display: -webkit-box;
9595
- display: -ms-flexbox;
9596
- display: flex;
9597
- -webkit-box-align: center;
9598
- -ms-flex-align: center;
9599
- align-items: center;
9600
- -webkit-box-orient: horizontal;
9601
- -webkit-box-direction: normal;
9602
- -ms-flex-flow: row wrap;
9603
- flex-flow: row wrap;
9604
- list-style: none;
9605
- margin: 0 auto;
9606
- padding: 0; }
9607
- .brz .brz-menu-simple .menu .menu-item {
9608
- position: relative;
9609
- text-align: left;
9610
- list-style: none; }
9611
- .brz .brz-menu-simple .menu .menu-item a span {
9612
- display: block; }
9613
- .brz .brz-menu-simple .menu .menu-item:hover > .sub-menu {
9614
- display: block; }
9615
- .brz .brz-menu-simple .menu .sub-menu {
9616
- position: absolute;
9617
- top: 0;
9618
- left: 0;
9619
- padding: 15px 0;
9620
- text-align: center;
9621
- text-transform: none;
9622
- list-style: none;
9623
- margin: 0 !important;
9624
- display: none;
9625
- width: 280px;
9626
- background-color: #33344b;
9627
- z-index: 110; }
9628
- .brz .brz-menu-simple .menu .sub-menu .menu-item {
9629
- display: block;
9630
- margin: 0;
9631
- padding: 0; }
9632
- .brz .brz-menu-simple .menu .sub-menu .sub-menu {
9633
- left: 100%; }
9634
- .brz .brz-menu-simple .menu .sub-menu a {
9635
- display: block;
9636
- line-height: 1.2em;
9637
- padding: 10px 12%;
9638
- color: #fcfcfc; }
9639
- .brz .brz-menu-simple .menu .sub-menu a:hover {
9640
- background: rgba(36, 36, 53, 0.94); }
9641
- .brz .brz-menu-simple .menu > .menu-item {
9642
- display: inline-block;
9643
- -webkit-box-flex: 0;
9644
- -ms-flex: 0 1 auto;
9645
- flex: 0 1 auto;
9646
- padding-top: 5px;
9647
- padding-bottom: 5px; }
9648
- .brz .brz-menu-simple .menu > .menu-item > .sub-menu {
9649
- top: 100%; }
9650
- .brz .brz-menu-simple .menu > ul {
9651
- margin: 0 !important; }
9652
- .brz .brz-menu-simple .menu > ul .page_item:not(:first-child) {
9653
- margin-left: 15px; }
9654
- .brz .brz-menu-simple__toggle .menu {
9655
- display: -webkit-box;
9656
- display: -ms-flexbox;
9657
- display: flex;
9658
- -webkit-box-orient: horizontal;
9659
- -webkit-box-direction: normal;
9660
- -ms-flex-flow: row wrap;
9661
- flex-flow: row wrap; }
9662
- .brz .brz-menu-simple__icon {
9663
- display: none;
9664
- padding: 15px;
9665
- position: relative;
9666
- cursor: pointer;
9667
- -webkit-user-select: none;
9668
- -moz-user-select: none;
9669
- -ms-user-select: none;
9670
- user-select: none;
9671
- margin: 0; }
9672
- .brz .brz-menu-simple__icon--bars {
9673
- display: block;
9674
- height: 2px;
9675
- position: relative;
9676
- -webkit-transition: background 0.2s ease-out;
9677
- transition: background 0.2s ease-out;
9678
- width: 18px; }
9679
- .brz .brz-menu-simple__icon--bars:before, .brz .brz-menu-simple__icon--bars:after {
9680
- background-color: currentColor;
9681
- content: "";
9682
- display: block;
9683
- height: 100%;
9684
- position: absolute;
9685
- -webkit-transition: all 0.2s ease-out;
9686
- transition: all 0.2s ease-out;
9687
- width: 100%; }
9688
- .brz .brz-menu-simple__icon--bars:before {
9689
- top: 5px; }
9690
- .brz .brz-menu-simple__icon--bars:after {
9691
- top: -5px; }
9692
- .brz .brz-menu-simple .brz-input {
9693
- display: none; }
9694
- .brz .brz-menu-simple .brz-input:checked ~ div .menu {
9695
- display: -webkit-box;
9696
- display: -ms-flexbox;
9697
- display: flex;
9698
- max-height: 100%; }
9699
- .brz .brz-menu-simple .brz-input:checked ~ .brz-menu-simple__icon .brz-menu-simple__icon--bars {
9700
- background: transparent; }
9701
- .brz .brz-menu-simple .brz-input:checked ~ .brz-menu-simple__icon .brz-menu-simple__icon--bars:before {
9702
- -webkit-transform: rotate(-45deg);
9703
- transform: rotate(-45deg); }
9704
- .brz .brz-menu-simple .brz-input:checked ~ .brz-menu-simple__icon .brz-menu-simple__icon--bars:after {
9705
- -webkit-transform: rotate(45deg);
9706
- transform: rotate(45deg); }
9707
- .brz .brz-menu-simple .brz-input:checked ~ .brz-menu-simple__icon:not(.steps) .brz-menu-simple__icon--bars:before,
9708
- .brz .brz-menu-simple .brz-input:checked ~ .brz-menu-simple__icon:not(.steps) .brz-menu-simple__icon--bars:after {
9709
- top: 0; }
9710
- .brz .brz-menu-simple--cloud a {
9711
- text-decoration: none; }
9712
- .brz .brz-menu__ul {
9713
- margin: 0;
9714
- padding: 0; }
9715
- .brz .brz-menu__item {
9716
- list-style: none; }
9717
- @media (max-width: 767px) {
9718
- .brz:not(.brz-ed) .brz-menu-simple {
9719
- width: auto;
9720
- text-align: center; }
9721
- .brz:not(.brz-ed) .brz-menu-simple__toggle--mobile .menu {
9722
- display: none;
9723
- -webkit-box-orient: vertical;
9724
- -webkit-box-direction: normal;
9725
- -ms-flex-flow: column nowrap;
9726
- flex-flow: column nowrap;
9727
- max-height: 0;
9728
- -webkit-box-align: start;
9729
- -ms-flex-align: start;
9730
- align-items: flex-start;
9731
- -webkit-transition: max-height 0.2s ease-out;
9732
- transition: max-height 0.2s ease-out; }
9733
- .brz:not(.brz-ed) .brz-menu-simple__toggle--mobile .menu .sub-menu {
9734
- position: relative;
9735
- display: block;
9736
- width: 100%;
9737
- left: 15px;
9738
- padding: 0;
9739
- background-color: transparent; }
9740
- .brz:not(.brz-ed) .brz-menu-simple__toggle--mobile .menu .sub-menu .menu-item a {
9741
- padding: 5px; }
9742
- .brz:not(.brz-ed) .brz-menu-simple__toggle--mobile .menu .sub-menu .menu-item a:hover {
9743
- background-color: transparent; }
9744
- .brz:not(.brz-ed) .brz-menu-simple__toggle--mobile .menu .sub-menu .sub-menu {
9745
- display: block;
9746
- left: 15px; }
9747
- .brz:not(.brz-ed) .brz-menu-simple__toggle--mobile .menu > .menu-item {
9748
- padding: 0; }
9749
- .brz:not(.brz-ed) .brz-menu-simple__toggle--mobile .menu > .menu-item > .sub-menu {
9750
- top: 100%;
9751
- padding: 5px 0; }
9752
- .brz:not(.brz-ed) .brz-menu-simple__toggle--mobile .brz-menu-simple__icon {
9753
- display: inline-block; } }
9754
-
9755
- @media (min-width: 768px) and (max-width: 991px) {
9756
- .brz:not(.brz-ed) .brz-menu-simple {
9757
- width: auto;
9758
- text-align: center; }
9759
- .brz:not(.brz-ed) .brz-menu-simple__toggle--tablet .menu {
9760
- display: none;
9761
- -webkit-box-orient: vertical;
9762
- -webkit-box-direction: normal;
9763
- -ms-flex-flow: column nowrap;
9764
- flex-flow: column nowrap;
9765
- max-height: 0;
9766
- -webkit-box-align: start;
9767
- -ms-flex-align: start;
9768
- align-items: flex-start;
9769
- -webkit-transition: max-height 0.2s ease-out;
9770
- transition: max-height 0.2s ease-out; }
9771
- .brz:not(.brz-ed) .brz-menu-simple__toggle--tablet .menu .sub-menu {
9772
- position: relative;
9773
- display: block;
9774
- width: 100%;
9775
- left: 15px;
9776
- padding: 0;
9777
- background-color: transparent; }
9778
- .brz:not(.brz-ed) .brz-menu-simple__toggle--tablet .menu .sub-menu .menu-item a {
9779
- padding: 5px; }
9780
- .brz:not(.brz-ed) .brz-menu-simple__toggle--tablet .menu .sub-menu .menu-item a:hover {
9781
- background-color: transparent; }
9782
- .brz:not(.brz-ed) .brz-menu-simple__toggle--tablet .menu .sub-menu .sub-menu {
9783
- display: block;
9784
- left: 15px; }
9785
- .brz:not(.brz-ed) .brz-menu-simple__toggle--tablet .menu > .menu-item {
9786
- padding: 0; }
9787
- .brz:not(.brz-ed) .brz-menu-simple__toggle--tablet .menu > .menu-item > .sub-menu {
9788
- top: 100%;
9789
- padding: 5px 0; }
9790
- .brz:not(.brz-ed) .brz-menu-simple__toggle--tablet .brz-menu-simple__icon {
9791
- display: inline-block; } }
9792
- .brz:not(.brz-ed) .brz-form-login.brz-form-login,
9793
- .brz:not(.brz-ed) .brz-login__autorized {
9794
- display: none; }
9795
- .brz .brz-login {
9796
- width: 100%; }
9797
- .brz .brz-login__autorized * {
9798
- display: inline; }
9799
- .brz .brz-login__autorized p {
9800
- margin: 0; }
9801
- .brz .brz-login span.psw {
9802
- float: right;
9803
- padding-top: 16px; }
9804
- .brz .brz-login .brz-input {
9805
- width: 100%;
9806
- height: auto;
9807
- max-width: 100%;
9808
- min-height: auto;
9809
- background-color: transparent;
9810
- border: none;
9811
- outline: none;
9812
- color: inherit;
9813
- font-size: inherit;
9814
- font-family: inherit;
9815
- letter-spacing: inherit;
9816
- font-weight: inherit;
9817
- line-height: inherit;
9818
- -webkit-box-shadow: none;
9819
- box-shadow: none; }
9820
- .brz .brz-login .brz-input::-webkit-input-placeholder {
9821
- color: inherit;
9822
- opacity: 0.5; }
9823
- .brz .brz-login .brz-input::-moz-placeholder {
9824
- color: inherit;
9825
- opacity: 0.5; }
9826
- .brz .brz-login .brz-input::-ms-input-placeholder {
9827
- color: inherit;
9828
- opacity: 0.5; }
9829
- .brz .brz-login .brz-input::placeholder {
9830
- color: inherit;
9831
- opacity: 0.5; }
9832
- .brz .brz-login__item {
9833
- -webkit-box-flex: 1;
9834
- -ms-flex-positive: 1;
9835
- flex-grow: 1;
9836
- -ms-flex-negative: 0;
9837
- flex-shrink: 0; }
9838
- .brz .brz-login__item-button .brz-btn {
9839
- outline: none;
9840
- width: 100%; }
9841
- .brz .brz-login__item-button .brz-icon-svg {
9842
- -webkit-box-flex: 0;
9843
- -ms-flex-positive: 0;
9844
- flex-grow: 0; }
9845
- .brz .brz-login .brz-control__check-group-option {
9846
- display: -webkit-box;
9847
- display: -ms-flexbox;
9848
- display: flex;
9849
- -webkit-box-align: center;
9850
- -ms-flex-align: center;
9851
- align-items: center; }
9852
- .brz .brz-login .brz-control__check-group-option .brz-control__check-group-icon {
9853
- margin-right: 10px; }
9854
- .brz .brz-login .brz-login__field-label {
9855
- display: block; }
9856
- .brz .brz-login .brz-form-login {
9857
- -ms-flex-wrap: wrap !important;
9858
- flex-wrap: wrap !important;
9859
- margin-top: -0 !important; }
9860
- .brz .brz-login .brz-form-login__field {
9861
- padding-top: 0 !important; }
9862
- .brz .brz-login .brz-form-login__field a {
9863
- text-decoration: none; }
9864
- .brz .brz-login .brz-form-login__field-lost-password {
9865
- width: 100%; }
9866
- .brz .brz-login .brz-form-login__field-lost-password a {
9867
- display: block; }
9868
- .brz .brz-login .brz-form-login__field-remember-off.brz-form-login__field-Remember {
9869
- padding: 0 !important; }
9870
- .brz .brz-shape {
9871
- position: relative;
9872
- width: 100%;
9873
- display: -webkit-box !important;
9874
- display: -ms-flexbox !important;
9875
- display: flex !important;
9876
- vertical-align: middle; }
9877
- .brz .brz-shape .brz-ed-border,
9878
- .brz .brz-shape .brz-d-xs-flex {
9879
- height: 100%; }
9880
- .brz .brz-shape .brz-ed-box__resizer {
9881
- height: unset; }
9882
- .brz .brz-shape::before {
9883
- content: "";
9884
- width: 100%;
9885
- height: 100%;
9886
- position: absolute;
9887
- top: 0;
9888
- left: 0;
9889
- z-index: 2;
9890
- display: block;
9891
- pointer-events: none; }
9892
- .brz .brz-wp-post-content {
9893
- width: 100%; }
9894
- .brz .brz-wp-post-content > div > :first-child {
9895
- margin-top: 0; }
9896
- .brz .brz-wp-post-content > div > :last-child {
9897
- margin-bottom: 0; }
9898
- .brz .brz-wp-post-content > div > * {
9899
- margin-bottom: 1em; }
9900
- .brz .brz-rich-text .brz-tp__dc-block-st1 {
9901
- width: 100%;
9902
- white-space: initial; }
9903
- .brz .brz-rich-text .brz-tp__dc-block-st1 > :first-child {
9904
- margin-top: 0; }
9905
- .brz .brz-rich-text .brz-tp__dc-block-st1 > :last-child {
9906
- margin-bottom: 0; }
9907
- .brz .brz-rich-text .brz-tp__dc-block-st1 > * {
9908
- margin-bottom: 1em; }
9909
- .brz .brz-wp-post-excerpt {
9910
- width: 100%; }
9911
- .brz .brz-wp-post-excerpt-content {
9912
- margin: 0; }
9913
- .brz .brz-wp-title {
9914
- width: 100%; }
9915
- .brz .brz-wp-title-content {
9916
- margin: 0; }
9917
- .brz .brz-woo-stock {
9918
- display: -webkit-box;
9919
- display: -ms-flexbox;
9920
- display: flex;
9921
- -webkit-box-pack: inherit;
9922
- -ms-flex-pack: inherit;
9923
- justify-content: inherit;
9924
- width: 100%; }
9925
- .brz .brz-woo-stock .stock {
9926
- margin: 0; }
9927
- .brz .brz-woosku {
9928
- width: 100%;
9929
- display: -webkit-box;
9930
- display: -ms-flexbox;
9931
- display: flex;
9932
- -webkit-box-pack: inherit;
9933
- -ms-flex-pack: inherit;
9934
- justify-content: inherit; }
9935
- .brz .brz-wooproductmeta {
9936
- width: 100%;
9937
- -webkit-box-pack: inherit;
9938
- -ms-flex-pack: inherit;
9939
- justify-content: inherit;
9940
- display: -webkit-box;
9941
- display: -ms-flexbox;
9942
- display: flex; }
9943
- .brz .brz-wooproductmeta > div > .brz-metas {
9944
- width: -webkit-fit-content;
9945
- width: -moz-fit-content;
9946
- width: fit-content; }
9947
- .brz .brz-wooproductmeta__container {
9948
- display: -webkit-box;
9949
- display: -ms-flexbox;
9950
- display: flex;
9951
- position: relative; }
9952
- .brz .brz-wooproductmeta__container.brz-wooproductmeta__container:first-child > .brz-wooproductmeta__item.brz-wooproductmeta__item {
9953
- padding-top: 0; }
9954
- .brz .brz-wooproductmeta__container:last-child > .brz-wooproductmeta__item.brz-wooproductmeta__item {
9955
- padding-bottom: 0; }
9956
- .brz .brz-wooproductmeta__item {
9957
- display: -webkit-box;
9958
- display: -ms-flexbox;
9959
- display: flex;
9960
- -webkit-box-align: center;
9961
- -ms-flex-align: center;
9962
- align-items: center; }
9963
- .brz .brz-wooproductmeta__item .brz-a {
9964
- color: inherit !important; }
9965
- .brz .brz-wooproductmeta__item .brz-a:hover {
9966
- text-decoration: underline; }
9967
- .brz .brz-wooproductmeta__item-value:not(:first-child) .brz-a {
9968
- padding-left: 5px; }
9969
- .brz .brz-wooproductmeta-table {
9970
- border-collapse: collapse; }
9971
- .brz .brz-wooproductmeta-table > div > .brz-metas {
9972
- display: table; }
9973
- .brz .brz-wooproductmeta-table > div > .brz-metas .brz-wooproductmeta__container {
9974
- display: table-row; }
9975
- .brz .brz-wooproductmeta-table > div > .brz-metas .brz-wooproductmeta__item {
9976
- display: table-cell;
9977
- vertical-align: middle; }
9978
- .brz .brz-woo-price {
9979
- min-height: -webkit-fit-content !important;
9980
- min-height: -moz-fit-content !important;
9981
- min-height: fit-content !important;
9982
- display: -webkit-box;
9983
- display: -ms-flexbox;
9984
- display: flex;
9985
- -webkit-box-pack: inherit;
9986
- -ms-flex-pack: inherit;
9987
- justify-content: inherit;
9988
- width: 100%; }
9989
- .brz .brz-woo-price > div {
9990
- font-size: 0; }
9991
- .brz .brz-woo-price > div > .brz-price-none {
9992
- margin: 0;
9993
- font-size: 16px; }
9994
- .brz .brz-woo-price .price {
9995
- width: 100%;
9996
- display: -webkit-box;
9997
- display: -ms-flexbox;
9998
- display: flex;
9999
- -webkit-box-align: center;
10000
- -ms-flex-align: center;
10001
- align-items: center;
10002
- margin: 0; }
10003
- .brz .brz-woo-price .price del {
10004
- opacity: 1 !important; }
10005
- .brz .brz-woo-price .price del .amount {
10006
- display: block; }
10007
- .brz .brz-woo-price .price ins {
10008
- background: transparent;
10009
- text-decoration: none; }
10010
- .brz .brz-woo-price .price ins .amount {
10011
- display: block; }
10012
- .brz .brz-woo-attributes table {
10013
- border: 0; }
10014
- .brz .brz-woo-attributes h2 {
10015
- display: none; }
10016
- .brz .brz-woo-attributes .woocommerce-product-attributes {
10017
- width: 100%;
10018
- margin: 0; }
10019
- .brz .brz-woo-attributes .woocommerce-product-attributes tr {
10020
- border-width: 0;
10021
- background-color: transparent; }
10022
- .brz .brz-woo-attributes .woocommerce-product-attributes-item__label,
10023
- .brz .brz-woo-attributes .woocommerce-product-attributes-item__value {
10024
- width: 50%;
10025
- padding: 0;
10026
- font-style: normal; }
10027
- .brz .brz-woo-attributes .woocommerce-product-attributes-item__label p,
10028
- .brz .brz-woo-attributes .woocommerce-product-attributes-item__value p {
10029
- margin: 0;
10030
- padding: 0; }
10031
- .brz .brz-woocart__wrapper {
10032
- display: -webkit-box;
10033
- display: -ms-flexbox;
10034
- display: flex;
10035
- width: 100%;
10036
- -webkit-box-pack: inherit;
10037
- -ms-flex-pack: inherit;
10038
- justify-content: inherit; }
10039
- .brz .brz-woocart__wrapper--opened .brz-woocart__background {
10040
- opacity: 1;
10041
- pointer-events: auto; }
10042
- .brz .brz-woocart__wrapper--opened .brz-woocart__sidebar {
10043
- opacity: 1;
10044
- pointer-events: auto; }
10045
- .brz .brz-woocart__wrapper .brz-woocart__dc {
10046
- width: -webkit-fit-content;
10047
- width: -moz-fit-content;
10048
- width: fit-content;
10049
- display: -webkit-box;
10050
- display: -ms-flexbox;
10051
- display: flex;
10052
- -webkit-box-pack: inherit;
10053
- -ms-flex-pack: inherit;
10054
- justify-content: inherit; }
10055
- .brz .brz-woocart {
10056
- display: -webkit-box;
10057
- display: -ms-flexbox;
10058
- display: flex;
10059
- -webkit-box-align: center;
10060
- -ms-flex-align: center;
10061
- align-items: center;
10062
- padding: 10px 15px; }
10063
- .brz .brz-woocart,
10064
- .brz .brz-woocart__dc .brz-cart {
10065
- font-size: initial; }
10066
- .brz .brz-woocart__background {
10067
- position: fixed;
10068
- top: 0;
10069
- left: 0;
10070
- width: 100vw;
10071
- height: 100vh;
10072
- background-color: rgba(0, 0, 0, 0.4);
10073
- opacity: 0;
10074
- pointer-events: none;
10075
- -webkit-transition: opacity 0.3s ease-in-out;
10076
- transition: opacity 0.3s ease-in-out;
10077
- z-index: 1060;
10078
- cursor: auto; }
10079
- .brz .brz-woocart__parent {
10080
- cursor: pointer; }
10081
- .brz .brz-woocart__parent.brz-woocart--bubble .brz-woocart__icon:before {
10082
- position: absolute;
10083
- min-width: 1.6em;
10084
- height: 1.6em;
10085
- line-height: 1.5em;
10086
- top: -0.7em;
10087
- right: -1em;
10088
- border-radius: 100%;
10089
- text-align: center;
10090
- font-size: 10px;
10091
- z-index: 1; }
10092
- .brz .brz-woocart__icon {
10093
- display: -webkit-box;
10094
- display: -ms-flexbox;
10095
- display: flex;
10096
- -webkit-box-align: center;
10097
- -ms-flex-align: center;
10098
- align-items: center;
10099
- position: relative; }
10100
- .brz .brz-woocart__sidebar {
10101
- max-width: 100%;
10102
- max-height: 100vh;
10103
- position: fixed;
10104
- z-index: 1060;
10105
- background-color: #fff;
10106
- padding: 40px 15px 15px;
10107
- opacity: 0;
10108
- overflow: auto;
10109
- pointer-events: none;
10110
- cursor: auto;
10111
- -webkit-transition: opacity 0.3s ease-in-out;
10112
- transition: opacity 0.3s ease-in-out; }
10113
- .brz .brz-woocart__sidebar-item {
10114
- display: -webkit-box;
10115
- display: -ms-flexbox;
10116
- display: flex;
10117
- padding: 20px 0; }
10118
- .brz .brz-woocart__sidebar-item:first-child {
10119
- padding-top: 0; }
10120
- .brz .brz-woocart__sidebar-item:not(:first-child) {
10121
- border-top: 1px solid #000; }
10122
- .brz .brz-woocart__sidebar__product-info {
10123
- width: 100%;
10124
- display: -webkit-box;
10125
- display: -ms-flexbox;
10126
- display: flex;
10127
- -webkit-box-orient: vertical;
10128
- -webkit-box-direction: normal;
10129
- -ms-flex-direction: column;
10130
- flex-direction: column;
10131
- -webkit-box-pack: justify;
10132
- -ms-flex-pack: justify;
10133
- justify-content: space-between;
10134
- padding-left: 15px; }
10135
- .brz .brz-woocart__sidebar-remove {
10136
- margin-top: auto;
10137
- -ms-flex-negative: 0;
10138
- flex-shrink: 0; }
10139
- .brz .brz-woocart__sidebar-image__block {
10140
- position: relative;
10141
- width: 80px;
10142
- height: 80px;
10143
- -ms-flex-negative: 0;
10144
- flex-shrink: 0; }
10145
- .brz .brz-woocart__sidebar-image__block * {
10146
- position: absolute;
10147
- top: 0;
10148
- left: 0;
10149
- width: 100%;
10150
- height: 100%; }
10151
- .brz .brz-woocart__sidebar-image__block img {
10152
- -o-object-fit: cover;
10153
- object-fit: cover; }
10154
- .brz .brz-woocart__sidebar-close {
10155
- width: 20px;
10156
- height: 20px;
10157
- position: absolute;
10158
- top: 15px;
10159
- right: 15px;
10160
- cursor: pointer; }
10161
- .brz .brz-woocart__sidebar-close:before, .brz .brz-woocart__sidebar-close:after {
10162
- content: "";
10163
- position: absolute;
10164
- width: 1px;
10165
- height: 100%;
10166
- background-color: #000;
10167
- top: 0;
10168
- left: 0;
10169
- right: 0;
10170
- margin: auto; }
10171
- .brz .brz-woocart__sidebar-close:before {
10172
- -webkit-transform: rotate(45deg);
10173
- transform: rotate(45deg); }
10174
- .brz .brz-woocart__sidebar-close:after {
10175
- -webkit-transform: rotate(-45deg);
10176
- transform: rotate(-45deg); }
10177
- .brz .brz-woocart__sidebar-subtotal {
10178
- margin-bottom: 20px;
10179
- padding: 15px 0;
10180
- border-bottom: 1px solid #000; }
10181
- .brz .brz-woocart__sidebar-subtotal:not(:nth-child(2)) {
10182
- border-top: 1px solid #000; }
10183
- .brz .brz-woocart__sidebar-buttons {
10184
- display: -webkit-box;
10185
- display: -ms-flexbox;
10186
- display: flex;
10187
- -webkit-box-pack: justify;
10188
- -ms-flex-pack: justify;
10189
- justify-content: space-between; }
10190
- .brz .brz-woocart__sidebar-button {
10191
- padding: 10px 15px;
10192
- text-align: center; }
10193
- .brz .brz-woocart__sidebar-button:last-child {
10194
- margin-bottom: 0; }
10195
- .brz.brz-woocart--opened .brz-root__container,
10196
- .brz.brz-woocart--opened .brz-root__container > .brz-section,
10197
- .brz.brz-woocart--opened .brz-root__container .brz-section__header > .brz-section__menu-item {
10198
- z-index: auto; }
10199
- .brz .brz-woo-rating {
10200
- width: 100%;
10201
- -webkit-box-pack: inherit;
10202
- -ms-flex-pack: inherit;
10203
- justify-content: inherit;
10204
- display: -webkit-box;
10205
- display: -ms-flexbox;
10206
- display: flex; }
10207
- .brz .brz-woo-rating.brz-disabled-rating-text .woocommerce-review-link {
10208
- display: none; }
10209
- .brz .brz-woo-rating .woocommerce-product-rating {
10210
- display: -webkit-box;
10211
- display: -ms-flexbox;
10212
- display: flex;
10213
- -webkit-box-align: center;
10214
- -ms-flex-align: center;
10215
- align-items: center;
10216
- margin: 0; }
10217
- .brz .brz-woo-rating .woocommerce-product-rating .star-rating {
10218
- margin: 0; }
10219
- .brz .brz-woo-gallery .woocommerce-product-gallery {
10220
- margin: 0;
10221
- font-size: 1.3rem;
10222
- float: none !important;
10223
- width: 100% !important;
10224
- max-width: 100%;
10225
- display: -webkit-box;
10226
- display: -ms-flexbox;
10227
- display: flex; }
10228
- .brz .brz-woo-gallery .woocommerce-product-gallery img {
10229
- width: 100%; }
10230
- .brz .brz-woo-gallery .woocommerce-product-gallery .flex-viewport {
10231
- margin-bottom: 0;
10232
- width: 100%; }
10233
- .brz .brz-woo-gallery .woocommerce-product-gallery .woocommerce-product-gallery__wrapper {
10234
- overflow: hidden; }
10235
- .brz .brz-woo-gallery .woocommerce-product-gallery .flex-control-thumbs {
10236
- display: -webkit-box;
10237
- display: -ms-flexbox;
10238
- display: flex;
10239
- -ms-flex-wrap: wrap;
10240
- flex-wrap: wrap;
10241
- padding: 0; }
10242
- .brz .brz-woo-gallery .woocommerce-product-gallery .flex-control-thumbs li {
10243
- overflow: hidden; }
10244
- .brz .brz-woo-gallery.brz-woo-gallery__thumbsTB-1 .flex-control-thumbs li:nth-child(1n),
10245
- .brz .brz-woo-gallery.brz-woo-gallery__thumbsTB-2 .flex-control-thumbs li:nth-child(2n),
10246
- .brz .brz-woo-gallery.brz-woo-gallery__thumbsTB-3 .flex-control-thumbs li:nth-child(3n),
10247
- .brz .brz-woo-gallery.brz-woo-gallery__thumbsTB-4 .flex-control-thumbs li:nth-child(4n),
10248
- .brz .brz-woo-gallery.brz-woo-gallery__thumbsTB-5 .flex-control-thumbs li:nth-child(5n),
10249
- .brz .brz-woo-gallery.brz-woo-gallery__thumbsTB-6 .flex-control-thumbs li:nth-child(6n),
10250
- .brz .brz-woo-gallery.brz-woo-gallery__thumbsTB-7 .flex-control-thumbs li:nth-child(7n),
10251
- .brz .brz-woo-gallery.brz-woo-gallery__thumbsTB-8 .flex-control-thumbs li:nth-child(8n), .brz .brz-woo-gallery.brz-woo-gallery__thumbsRL-1 .flex-control-thumbs li:nth-child(1n),
10252
- .brz .brz-woo-gallery.brz-woo-gallery__thumbsRL-2 .flex-control-thumbs li:nth-child(2n),
10253
- .brz .brz-woo-gallery.brz-woo-gallery__thumbsRL-3 .flex-control-thumbs li:nth-child(3n),
10254
- .brz .brz-woo-gallery.brz-woo-gallery__thumbsRL-4 .flex-control-thumbs li:nth-child(4n),
10255
- .brz .brz-woo-gallery.brz-woo-gallery__thumbsRL-5 .flex-control-thumbs li:nth-child(5n),
10256
- .brz .brz-woo-gallery.brz-woo-gallery__thumbsRL-6 .flex-control-thumbs li:nth-child(6n),
10257
- .brz .brz-woo-gallery.brz-woo-gallery__thumbsRL-7 .flex-control-thumbs li:nth-child(7n),
10258
- .brz .brz-woo-gallery.brz-woo-gallery__thumbsRL-8 .flex-control-thumbs li:nth-child(8n) {
10259
- margin-right: 0; }
10260
- .brz .brz-woo-gallery__style-top .woocommerce-product-gallery {
10261
- -ms-flex-wrap: wrap-reverse;
10262
- flex-wrap: wrap-reverse; }
10263
- .brz .brz-woo-gallery__style-top .woocommerce-product-gallery .flex-control-thumbs {
10264
- width: 100%; }
10265
- .brz .brz-woo-gallery__style-bottom .woocommerce-product-gallery {
10266
- -ms-flex-wrap: wrap;
10267
- flex-wrap: wrap; }
10268
- .brz .brz-woo-gallery__style-bottom .woocommerce-product-gallery .flex-control-thumbs {
10269
- width: 100%; }
10270
- .brz .brz-woo-gallery__style-left .woocommerce-product-gallery {
10271
- -webkit-box-orient: horizontal;
10272
- -webkit-box-direction: reverse;
10273
- -ms-flex-direction: row-reverse;
10274
- flex-direction: row-reverse; }
10275
- .brz .brz-woo-gallery__style-left .woocommerce-product-gallery .flex-control-thumbs {
10276
- height: 100%; }
10277
- .brz .brz-woo-gallery__style-right .woocommerce-product-gallery {
10278
- -webkit-box-orient: horizontal;
10279
- -webkit-box-direction: normal;
10280
- -ms-flex-direction: row;
10281
- flex-direction: row; }
10282
- .brz .brz-woo-gallery__style-right .woocommerce-product-gallery .flex-control-thumbs {
10283
- height: 100%; }
10284
- .brz .brz-woo-add-to-cart {
10285
- width: 100%;
10286
- display: -webkit-box;
10287
- display: -ms-flexbox;
10288
- display: flex;
10289
- -webkit-box-pack: inherit;
10290
- -ms-flex-pack: inherit;
10291
- justify-content: inherit; }
10292
- .brz .brz-woo-add-to-cart .hidden {
10293
- display: none; }
10294
- .brz .brz-woo-add-to-cart > div:not(.brz-shortcode__placeholder) {
10295
- width: 100%;
10296
- display: -webkit-box;
10297
- display: -ms-flexbox;
10298
- display: flex;
10299
- -webkit-box-pack: inherit;
10300
- -ms-flex-pack: inherit;
10301
- justify-content: inherit; }
10302
- .brz .brz-woo-add-to-cart form.cart > .quantity {
10303
- float: none; }
10304
- .brz .brz-woo-add-to-cart form:not(.variations_form) {
10305
- display: -webkit-inline-box;
10306
- display: -ms-inline-flexbox;
10307
- display: inline-flex; }
10308
- .brz .brz-woo-add-to-cart form.grouped_form {
10309
- -ms-flex-wrap: wrap;
10310
- flex-wrap: wrap;
10311
- width: 100%;
10312
- -webkit-box-pack: inherit;
10313
- -ms-flex-pack: inherit;
10314
- justify-content: inherit; }
10315
- .brz .brz-woo-add-to-cart form.grouped_form .woocommerce-grouped-product-list {
10316
- margin-top: 0; }
10317
- .brz .brz-woo-add-to-cart form.grouped_form .woocommerce-grouped-product-list-item td {
10318
- padding: 0.7em 1em; }
10319
- .brz .brz-woo-add-to-cart form.grouped_form .woocommerce-grouped-product-list-item__label a {
10320
- text-decoration: unset;
10321
- color: inherit; }
10322
- .brz .brz-woo-add-to-cart form.variations_form {
10323
- width: 100%;
10324
- -webkit-box-pack: inherit;
10325
- -ms-flex-pack: inherit;
10326
- justify-content: inherit;
10327
- display: -webkit-box;
10328
- display: -ms-flexbox;
10329
- display: flex;
10330
- -ms-flex-wrap: wrap;
10331
- flex-wrap: wrap; }
10332
- .brz .brz-woo-add-to-cart form.variations_form table {
10333
- margin-top: 0; }
10334
- .brz .brz-woo-add-to-cart form.variations_form select {
10335
- background-color: inherit; }
10336
- .brz .brz-woo-add-to-cart form.variations_form table.variations td {
10337
- vertical-align: middle; }
10338
- .brz .brz-woo-add-to-cart form.variations_form table.variations td .reset-variations {
10339
- margin-left: 15px; }
10340
- .brz .brz-woo-add-to-cart form.variations_form .single_variation_wrap {
10341
- display: -webkit-box;
10342
- display: -ms-flexbox;
10343
- display: flex;
10344
- -ms-flex-wrap: wrap;
10345
- flex-wrap: wrap;
10346
- -webkit-box-pack: inherit;
10347
- -ms-flex-pack: inherit;
10348
- justify-content: inherit; }
10349
- .brz .brz-woo-add-to-cart form.variations_form .single_variation_wrap .single_variation {
10350
- width: 100%;
10351
- margin: 0; }
10352
- .brz .brz-woo-add-to-cart form.variations_form .single_variation_wrap .single_variation > div {
10353
- margin-bottom: 20px; }
10354
- .brz .brz-woo-add-to-cart form.variations_form .variations_button {
10355
- display: -webkit-inline-box;
10356
- display: -ms-inline-flexbox;
10357
- display: inline-flex; }
10358
- .brz .brz-woo-add-to-cart .woocommerce-variation-price {
10359
- margin-bottom: 20px; }
10360
- .brz .brz-woo-add-to-cart * {
10361
- -webkit-transition-property: color, background-color, border;
10362
- transition-property: color, background-color, border; }
10363
- .brz .brz-woo-add-to-cart input[type="number"].input-text {
10364
- width: 100%;
10365
- min-height: 100%;
10366
- padding: 0;
10367
- text-align: center;
10368
- outline: none;
10369
- height: auto; }
10370
- .brz .brz-woo-add-to-cart .single_add_to_cart_button {
10371
- margin: 0;
10372
- width: auto;
10373
- min-width: auto;
10374
- min-height: auto;
10375
- max-width: none;
10376
- max-height: none; }
10377
- .brz .brz-wooexcerpt {
10378
- width: 100%; }
10379
- .brz .brz-wooexcerpt .woocommerce-product-details__short-description * {
10380
- -webkit-transition-property: color;
10381
- transition-property: color; }
10382
- .brz .brz-wooexcerpt .woocommerce-product-details__short-description *:last-child {
10383
- margin: 0; }
10384
- .brz .brz-wooexcerpt .woocommerce-product-details__short-description ul,
10385
- .brz .brz-wooexcerpt .woocommerce-product-details__short-description ol {
10386
- padding-left: 20px; }
10387
- .brz .brz-wooexcerpt .woocommerce-product-details__short-description > *:not(:last-child) {
10388
- margin-bottom: 0.9rem; }
10389
- @media (max-width: 767px) {
10390
- .brz .brz-fs-xs-6 {
10391
- font-size: 6px !important; }
10392
- .brz .brz-story .brz-fs-xs-6 {
10393
- font-size: 1.38% !important; }
10394
- .brz .brz-fs-xs-7 {
10395
- font-size: 7px !important; }
10396
- .brz .brz-story .brz-fs-xs-7 {
10397
- font-size: 1.61% !important; }
10398
- .brz .brz-fs-xs-8 {
10399
- font-size: 8px !important; }
10400
- .brz .brz-story .brz-fs-xs-8 {
10401
- font-size: 1.84% !important; }
10402
- .brz .brz-fs-xs-9 {
10403
- font-size: 9px !important; }
10404
- .brz .brz-story .brz-fs-xs-9 {
10405
- font-size: 2.07% !important; }
10406
- .brz .brz-fs-xs-10 {
10407
- font-size: 10px !important; }
10408
- .brz .brz-story .brz-fs-xs-10 {
10409
- font-size: 2.3% !important; }
10410
- .brz .brz-fs-xs-11 {
10411
- font-size: 11px !important; }
10412
- .brz .brz-story .brz-fs-xs-11 {
10413
- font-size: 2.53% !important; }
10414
- .brz .brz-fs-xs-12 {
10415
- font-size: 12px !important; }
10416
- .brz .brz-story .brz-fs-xs-12 {
10417
- font-size: 2.76% !important; }
10418
- .brz .brz-fs-xs-13 {
10419
- font-size: 13px !important; }
10420
- .brz .brz-story .brz-fs-xs-13 {
10421
- font-size: 2.99% !important; }
10422
- .brz .brz-fs-xs-14 {
10423
- font-size: 14px !important; }
10424
- .brz .brz-story .brz-fs-xs-14 {
10425
- font-size: 3.22% !important; }
10426
- .brz .brz-fs-xs-15 {
10427
- font-size: 15px !important; }
10428
- .brz .brz-story .brz-fs-xs-15 {
10429
- font-size: 3.45% !important; }
10430
- .brz .brz-fs-xs-16 {
10431
- font-size: 16px !important; }
10432
- .brz .brz-story .brz-fs-xs-16 {
10433
- font-size: 3.68% !important; }
10434
- .brz .brz-fs-xs-17 {
10435
- font-size: 17px !important; }
10436
- .brz .brz-story .brz-fs-xs-17 {
10437
- font-size: 3.91% !important; }
10438
- .brz .brz-fs-xs-18 {
10439
- font-size: 18px !important; }
10440
- .brz .brz-story .brz-fs-xs-18 {
10441
- font-size: 4.14% !important; }
10442
- .brz .brz-fs-xs-19 {
10443
- font-size: 19px !important; }
10444
- .brz .brz-story .brz-fs-xs-19 {
10445
- font-size: 4.37% !important; }
10446
- .brz .brz-fs-xs-20 {
10447
- font-size: 20px !important; }
10448
- .brz .brz-story .brz-fs-xs-20 {
10449
- font-size: 4.6% !important; }
10450
- .brz .brz-fs-xs-21 {
10451
- font-size: 21px !important; }
10452
- .brz .brz-story .brz-fs-xs-21 {
10453
- font-size: 4.83% !important; }
10454
- .brz .brz-fs-xs-22 {
10455
- font-size: 22px !important; }
10456
- .brz .brz-story .brz-fs-xs-22 {
10457
- font-size: 5.06% !important; }
10458
- .brz .brz-fs-xs-23 {
10459
- font-size: 23px !important; }
10460
- .brz .brz-story .brz-fs-xs-23 {
10461
- font-size: 5.29% !important; }
10462
- .brz .brz-fs-xs-24 {
10463
- font-size: 24px !important; }
10464
- .brz .brz-story .brz-fs-xs-24 {
10465
- font-size: 5.52% !important; }
10466
- .brz .brz-fs-xs-25 {
10467
- font-size: 25px !important; }
10468
- .brz .brz-story .brz-fs-xs-25 {
10469
- font-size: 5.75% !important; }
10470
- .brz .brz-fs-xs-26 {
10471
- font-size: 26px !important; }
10472
- .brz .brz-story .brz-fs-xs-26 {
10473
- font-size: 5.98% !important; }
10474
- .brz .brz-fs-xs-27 {
10475
- font-size: 27px !important; }
10476
- .brz .brz-story .brz-fs-xs-27 {
10477
- font-size: 6.21% !important; }
10478
- .brz .brz-fs-xs-28 {
10479
- font-size: 28px !important; }
10480
- .brz .brz-story .brz-fs-xs-28 {
10481
- font-size: 6.44% !important; }
10482
- .brz .brz-fs-xs-29 {
10483
- font-size: 29px !important; }
10484
- .brz .brz-story .brz-fs-xs-29 {
10485
- font-size: 6.67% !important; }
10486
- .brz .brz-fs-xs-30 {
10487
- font-size: 30px !important; }
10488
- .brz .brz-story .brz-fs-xs-30 {
10489
- font-size: 6.9% !important; }
10490
- .brz .brz-fs-xs-31 {
10491
- font-size: 31px !important; }
10492
- .brz .brz-story .brz-fs-xs-31 {
10493
- font-size: 7.13% !important; }
10494
- .brz .brz-fs-xs-32 {
10495
- font-size: 32px !important; }
10496
- .brz .brz-story .brz-fs-xs-32 {
10497
- font-size: 7.36% !important; }
10498
- .brz .brz-fs-xs-33 {
10499
- font-size: 33px !important; }
10500
- .brz .brz-story .brz-fs-xs-33 {
10501
- font-size: 7.59% !important; }
10502
- .brz .brz-fs-xs-34 {
10503
- font-size: 34px !important; }
10504
- .brz .brz-story .brz-fs-xs-34 {
10505
- font-size: 7.82% !important; }
10506
- .brz .brz-fs-xs-35 {
10507
- font-size: 35px !important; }
10508
- .brz .brz-story .brz-fs-xs-35 {
10509
- font-size: 8.05% !important; }
10510
- .brz .brz-fs-xs-36 {
10511
- font-size: 36px !important; }
10512
- .brz .brz-story .brz-fs-xs-36 {
10513
- font-size: 8.28% !important; }
10514
- .brz .brz-fs-xs-37 {
10515
- font-size: 37px !important; }
10516
- .brz .brz-story .brz-fs-xs-37 {
10517
- font-size: 8.51% !important; }
10518
- .brz .brz-fs-xs-38 {
10519
- font-size: 38px !important; }
10520
- .brz .brz-story .brz-fs-xs-38 {
10521
- font-size: 8.74% !important; }
10522
- .brz .brz-fs-xs-39 {
10523
- font-size: 39px !important; }
10524
- .brz .brz-story .brz-fs-xs-39 {
10525
- font-size: 8.97% !important; }
10526
- .brz .brz-fs-xs-40 {
10527
- font-size: 40px !important; }
10528
- .brz .brz-story .brz-fs-xs-40 {
10529
- font-size: 9.2% !important; }
10530
- .brz .brz-fs-xs-41 {
10531
- font-size: 41px !important; }
10532
- .brz .brz-story .brz-fs-xs-41 {
10533
- font-size: 9.43% !important; }
10534
- .brz .brz-fs-xs-42 {
10535
- font-size: 42px !important; }
10536
- .brz .brz-story .brz-fs-xs-42 {
10537
- font-size: 9.66% !important; }
10538
- .brz .brz-fs-xs-43 {
10539
- font-size: 43px !important; }
10540
- .brz .brz-story .brz-fs-xs-43 {
10541
- font-size: 9.89% !important; }
10542
- .brz .brz-fs-xs-44 {
10543
- font-size: 44px !important; }
10544
- .brz .brz-story .brz-fs-xs-44 {
10545
- font-size: 10.12% !important; }
10546
- .brz .brz-fs-xs-45 {
10547
- font-size: 45px !important; }
10548
- .brz .brz-story .brz-fs-xs-45 {
10549
- font-size: 10.35% !important; }
10550
- .brz .brz-fs-xs-46 {
10551
- font-size: 46px !important; }
10552
- .brz .brz-story .brz-fs-xs-46 {
10553
- font-size: 10.58% !important; }
10554
- .brz .brz-fs-xs-47 {
10555
- font-size: 47px !important; }
10556
- .brz .brz-story .brz-fs-xs-47 {
10557
- font-size: 10.81% !important; }
10558
- .brz .brz-fs-xs-48 {
10559
- font-size: 48px !important; }
10560
- .brz .brz-story .brz-fs-xs-48 {
10561
- font-size: 11.04% !important; }
10562
- .brz .brz-fs-xs-49 {
10563
- font-size: 49px !important; }
10564
- .brz .brz-story .brz-fs-xs-49 {
10565
- font-size: 11.27% !important; }
10566
- .brz .brz-fs-xs-50 {
10567
- font-size: 50px !important; }
10568
- .brz .brz-story .brz-fs-xs-50 {
10569
- font-size: 11.5% !important; }
10570
- .brz .brz-fs-xs-51 {
10571
- font-size: 51px !important; }
10572
- .brz .brz-story .brz-fs-xs-51 {
10573
- font-size: 11.73% !important; }
10574
- .brz .brz-fs-xs-52 {
10575
- font-size: 52px !important; }
10576
- .brz .brz-story .brz-fs-xs-52 {
10577
- font-size: 11.96% !important; }
10578
- .brz .brz-fs-xs-53 {
10579
- font-size: 53px !important; }
10580
- .brz .brz-story .brz-fs-xs-53 {
10581
- font-size: 12.19% !important; }
10582
- .brz .brz-fs-xs-54 {
10583
- font-size: 54px !important; }
10584
- .brz .brz-story .brz-fs-xs-54 {
10585
- font-size: 12.42% !important; }
10586
- .brz .brz-fs-xs-55 {
10587
- font-size: 55px !important; }
10588
- .brz .brz-story .brz-fs-xs-55 {
10589
- font-size: 12.65% !important; }
10590
- .brz .brz-fs-xs-56 {
10591
- font-size: 56px !important; }
10592
- .brz .brz-story .brz-fs-xs-56 {
10593
- font-size: 12.88% !important; }
10594
- .brz .brz-fs-xs-57 {
10595
- font-size: 57px !important; }
10596
- .brz .brz-story .brz-fs-xs-57 {
10597
- font-size: 13.11% !important; }
10598
- .brz .brz-fs-xs-58 {
10599
- font-size: 58px !important; }
10600
- .brz .brz-story .brz-fs-xs-58 {
10601
- font-size: 13.34% !important; }
10602
- .brz .brz-fs-xs-59 {
10603
- font-size: 59px !important; }
10604
- .brz .brz-story .brz-fs-xs-59 {
10605
- font-size: 13.57% !important; }
10606
- .brz .brz-fs-xs-60 {
10607
- font-size: 60px !important; }
10608
- .brz .brz-story .brz-fs-xs-60 {
10609
- font-size: 13.8% !important; }
10610
- .brz .brz-fs-xs-61 {
10611
- font-size: 61px !important; }
10612
- .brz .brz-story .brz-fs-xs-61 {
10613
- font-size: 14.03% !important; }
10614
- .brz .brz-fs-xs-62 {
10615
- font-size: 62px !important; }
10616
- .brz .brz-story .brz-fs-xs-62 {
10617
- font-size: 14.26% !important; }
10618
- .brz .brz-fs-xs-63 {
10619
- font-size: 63px !important; }
10620
- .brz .brz-story .brz-fs-xs-63 {
10621
- font-size: 14.49% !important; }
10622
- .brz .brz-fs-xs-64 {
10623
- font-size: 64px !important; }
10624
- .brz .brz-story .brz-fs-xs-64 {
10625
- font-size: 14.72% !important; }
10626
- .brz .brz-fs-xs-65 {
10627
- font-size: 65px !important; }
10628
- .brz .brz-story .brz-fs-xs-65 {
10629
- font-size: 14.95% !important; }
10630
- .brz .brz-fs-xs-66 {
10631
- font-size: 66px !important; }
10632
- .brz .brz-story .brz-fs-xs-66 {
10633
- font-size: 15.18% !important; }
10634
- .brz .brz-fs-xs-67 {
10635
- font-size: 67px !important; }
10636
- .brz .brz-story .brz-fs-xs-67 {
10637
- font-size: 15.41% !important; }
10638
- .brz .brz-fs-xs-68 {
10639
- font-size: 68px !important; }
10640
- .brz .brz-story .brz-fs-xs-68 {
10641
- font-size: 15.64% !important; }
10642
- .brz .brz-fs-xs-69 {
10643
- font-size: 69px !important; }
10644
- .brz .brz-story .brz-fs-xs-69 {
10645
- font-size: 15.87% !important; }
10646
- .brz .brz-fs-xs-70 {
10647
- font-size: 70px !important; }
10648
- .brz .brz-story .brz-fs-xs-70 {
10649
- font-size: 16.1% !important; }
10650
- .brz .brz-fs-xs-71 {
10651
- font-size: 71px !important; }
10652
- .brz .brz-story .brz-fs-xs-71 {
10653
- font-size: 16.33% !important; }
10654
- .brz .brz-fs-xs-72 {
10655
- font-size: 72px !important; }
10656
- .brz .brz-story .brz-fs-xs-72 {
10657
- font-size: 16.56% !important; }
10658
- .brz .brz-fs-xs-73 {
10659
- font-size: 73px !important; }
10660
- .brz .brz-story .brz-fs-xs-73 {
10661
- font-size: 16.79% !important; }
10662
- .brz .brz-fs-xs-74 {
10663
- font-size: 74px !important; }
10664
- .brz .brz-story .brz-fs-xs-74 {
10665
- font-size: 17.02% !important; }
10666
- .brz .brz-fs-xs-75 {
10667
- font-size: 75px !important; }
10668
- .brz .brz-story .brz-fs-xs-75 {
10669
- font-size: 17.25% !important; }
10670
- .brz .brz-fs-xs-76 {
10671
- font-size: 76px !important; }
10672
- .brz .brz-story .brz-fs-xs-76 {
10673
- font-size: 17.48% !important; }
10674
- .brz .brz-fs-xs-77 {
10675
- font-size: 77px !important; }
10676
- .brz .brz-story .brz-fs-xs-77 {
10677
- font-size: 17.71% !important; }
10678
- .brz .brz-fs-xs-78 {
10679
- font-size: 78px !important; }
10680
- .brz .brz-story .brz-fs-xs-78 {
10681
- font-size: 17.94% !important; }
10682
- .brz .brz-fs-xs-79 {
10683
- font-size: 79px !important; }
10684
- .brz .brz-story .brz-fs-xs-79 {
10685
- font-size: 18.17% !important; }
10686
- .brz .brz-fs-xs-80 {
10687
- font-size: 80px !important; }
10688
- .brz .brz-story .brz-fs-xs-80 {
10689
- font-size: 18.4% !important; }
10690
- .brz .brz-fs-xs-81 {
10691
- font-size: 81px !important; }
10692
- .brz .brz-story .brz-fs-xs-81 {
10693
- font-size: 18.63% !important; }
10694
- .brz .brz-fs-xs-82 {
10695
- font-size: 82px !important; }
10696
- .brz .brz-story .brz-fs-xs-82 {
10697
- font-size: 18.86% !important; }
10698
- .brz .brz-fs-xs-83 {
10699
- font-size: 83px !important; }
10700
- .brz .brz-story .brz-fs-xs-83 {
10701
- font-size: 19.09% !important; }
10702
- .brz .brz-fs-xs-84 {
10703
- font-size: 84px !important; }
10704
- .brz .brz-story .brz-fs-xs-84 {
10705
- font-size: 19.32% !important; }
10706
- .brz .brz-fs-xs-85 {
10707
- font-size: 85px !important; }
10708
- .brz .brz-story .brz-fs-xs-85 {
10709
- font-size: 19.55% !important; }
10710
- .brz .brz-fs-xs-86 {
10711
- font-size: 86px !important; }
10712
- .brz .brz-story .brz-fs-xs-86 {
10713
- font-size: 19.78% !important; }
10714
- .brz .brz-fs-xs-87 {
10715
- font-size: 87px !important; }
10716
- .brz .brz-story .brz-fs-xs-87 {
10717
- font-size: 20.01% !important; }
10718
- .brz .brz-fs-xs-88 {
10719
- font-size: 88px !important; }
10720
- .brz .brz-story .brz-fs-xs-88 {
10721
- font-size: 20.24% !important; }
10722
- .brz .brz-fs-xs-89 {
10723
- font-size: 89px !important; }
10724
- .brz .brz-story .brz-fs-xs-89 {
10725
- font-size: 20.47% !important; }
10726
- .brz .brz-fs-xs-90 {
10727
- font-size: 90px !important; }
10728
- .brz .brz-story .brz-fs-xs-90 {
10729
- font-size: 20.7% !important; }
10730
- .brz .brz-fs-xs-91 {
10731
- font-size: 91px !important; }
10732
- .brz .brz-story .brz-fs-xs-91 {
10733
- font-size: 20.93% !important; }
10734
- .brz .brz-fs-xs-92 {
10735
- font-size: 92px !important; }
10736
- .brz .brz-story .brz-fs-xs-92 {
10737
- font-size: 21.16% !important; }
10738
- .brz .brz-fs-xs-93 {
10739
- font-size: 93px !important; }
10740
- .brz .brz-story .brz-fs-xs-93 {
10741
- font-size: 21.39% !important; }
10742
- .brz .brz-fs-xs-94 {
10743
- font-size: 94px !important; }
10744
- .brz .brz-story .brz-fs-xs-94 {
10745
- font-size: 21.62% !important; }
10746
- .brz .brz-fs-xs-95 {
10747
- font-size: 95px !important; }
10748
- .brz .brz-story .brz-fs-xs-95 {
10749
- font-size: 21.85% !important; }
10750
- .brz .brz-fs-xs-96 {
10751
- font-size: 96px !important; }
10752
- .brz .brz-story .brz-fs-xs-96 {
10753
- font-size: 22.08% !important; }
10754
- .brz .brz-fs-xs-97 {
10755
- font-size: 97px !important; }
10756
- .brz .brz-story .brz-fs-xs-97 {
10757
- font-size: 22.31% !important; }
10758
- .brz .brz-fs-xs-98 {
10759
- font-size: 98px !important; }
10760
- .brz .brz-story .brz-fs-xs-98 {
10761
- font-size: 22.54% !important; }
10762
- .brz .brz-fs-xs-99 {
10763
- font-size: 99px !important; }
10764
- .brz .brz-story .brz-fs-xs-99 {
10765
- font-size: 22.77% !important; }
10766
- .brz .brz-fs-xs-100 {
10767
- font-size: 100px !important; }
10768
- .brz .brz-story .brz-fs-xs-100 {
10769
- font-size: 23% !important; }
10770
- .brz .brz-fs-xs-101 {
10771
- font-size: 101px !important; }
10772
- .brz .brz-story .brz-fs-xs-101 {
10773
- font-size: 23.23% !important; }
10774
- .brz .brz-fs-xs-102 {
10775
- font-size: 102px !important; }
10776
- .brz .brz-story .brz-fs-xs-102 {
10777
- font-size: 23.46% !important; }
10778
- .brz .brz-fs-xs-103 {
10779
- font-size: 103px !important; }
10780
- .brz .brz-story .brz-fs-xs-103 {
10781
- font-size: 23.69% !important; }
10782
- .brz .brz-fs-xs-104 {
10783
- font-size: 104px !important; }
10784
- .brz .brz-story .brz-fs-xs-104 {
10785
- font-size: 23.92% !important; }
10786
- .brz .brz-fs-xs-105 {
10787
- font-size: 105px !important; }
10788
- .brz .brz-story .brz-fs-xs-105 {
10789
- font-size: 24.15% !important; }
10790
- .brz .brz-fs-xs-106 {
10791
- font-size: 106px !important; }
10792
- .brz .brz-story .brz-fs-xs-106 {
10793
- font-size: 24.38% !important; }
10794
- .brz .brz-fs-xs-107 {
10795
- font-size: 107px !important; }
10796
- .brz .brz-story .brz-fs-xs-107 {
10797
- font-size: 24.61% !important; }
10798
- .brz .brz-fs-xs-108 {
10799
- font-size: 108px !important; }
10800
- .brz .brz-story .brz-fs-xs-108 {
10801
- font-size: 24.84% !important; }
10802
- .brz .brz-fs-xs-109 {
10803
- font-size: 109px !important; }
10804
- .brz .brz-story .brz-fs-xs-109 {
10805
- font-size: 25.07% !important; }
10806
- .brz .brz-fs-xs-110 {
10807
- font-size: 110px !important; }
10808
- .brz .brz-story .brz-fs-xs-110 {
10809
- font-size: 25.3% !important; }
10810
- .brz .brz-fs-xs-111 {
10811
- font-size: 111px !important; }
10812
- .brz .brz-story .brz-fs-xs-111 {
10813
- font-size: 25.53% !important; }
10814
- .brz .brz-fs-xs-112 {
10815
- font-size: 112px !important; }
10816
- .brz .brz-story .brz-fs-xs-112 {
10817
- font-size: 25.76% !important; }
10818
- .brz .brz-fs-xs-113 {
10819
- font-size: 113px !important; }
10820
- .brz .brz-story .brz-fs-xs-113 {
10821
- font-size: 25.99% !important; }
10822
- .brz .brz-fs-xs-114 {
10823
- font-size: 114px !important; }
10824
- .brz .brz-story .brz-fs-xs-114 {
10825
- font-size: 26.22% !important; }
10826
- .brz .brz-fs-xs-115 {
10827
- font-size: 115px !important; }
10828
- .brz .brz-story .brz-fs-xs-115 {
10829
- font-size: 26.45% !important; }
10830
- .brz .brz-fs-xs-116 {
10831
- font-size: 116px !important; }
10832
- .brz .brz-story .brz-fs-xs-116 {
10833
- font-size: 26.68% !important; }
10834
- .brz .brz-fs-xs-117 {
10835
- font-size: 117px !important; }
10836
- .brz .brz-story .brz-fs-xs-117 {
10837
- font-size: 26.91% !important; }
10838
- .brz .brz-fs-xs-118 {
10839
- font-size: 118px !important; }
10840
- .brz .brz-story .brz-fs-xs-118 {
10841
- font-size: 27.14% !important; }
10842
- .brz .brz-fs-xs-119 {
10843
- font-size: 119px !important; }
10844
- .brz .brz-story .brz-fs-xs-119 {
10845
- font-size: 27.37% !important; }
10846
- .brz .brz-fs-xs-120 {
10847
- font-size: 120px !important; }
10848
- .brz .brz-story .brz-fs-xs-120 {
10849
- font-size: 27.6% !important; }
10850
- .brz .brz-fs-xs-121 {
10851
- font-size: 121px !important; }
10852
- .brz .brz-story .brz-fs-xs-121 {
10853
- font-size: 27.83% !important; }
10854
- .brz .brz-fs-xs-122 {
10855
- font-size: 122px !important; }
10856
- .brz .brz-story .brz-fs-xs-122 {
10857
- font-size: 28.06% !important; }
10858
- .brz .brz-fs-xs-123 {
10859
- font-size: 123px !important; }
10860
- .brz .brz-story .brz-fs-xs-123 {
10861
- font-size: 28.29% !important; }
10862
- .brz .brz-fs-xs-124 {
10863
- font-size: 124px !important; }
10864
- .brz .brz-story .brz-fs-xs-124 {
10865
- font-size: 28.52% !important; }
10866
- .brz .brz-fs-xs-125 {
10867
- font-size: 125px !important; }
10868
- .brz .brz-story .brz-fs-xs-125 {
10869
- font-size: 28.75% !important; }
10870
- .brz .brz-fs-xs-126 {
10871
- font-size: 126px !important; }
10872
- .brz .brz-story .brz-fs-xs-126 {
10873
- font-size: 28.98% !important; }
10874
- .brz .brz-fs-xs-127 {
10875
- font-size: 127px !important; }
10876
- .brz .brz-story .brz-fs-xs-127 {
10877
- font-size: 29.21% !important; }
10878
- .brz .brz-fs-xs-128 {
10879
- font-size: 128px !important; }
10880
- .brz .brz-story .brz-fs-xs-128 {
10881
- font-size: 29.44% !important; }
10882
- .brz .brz-fs-xs-129 {
10883
- font-size: 129px !important; }
10884
- .brz .brz-story .brz-fs-xs-129 {
10885
- font-size: 29.67% !important; }
10886
- .brz .brz-fs-xs-130 {
10887
- font-size: 130px !important; }
10888
- .brz .brz-story .brz-fs-xs-130 {
10889
- font-size: 29.9% !important; }
10890
- .brz .brz-fs-xs-131 {
10891
- font-size: 131px !important; }
10892
- .brz .brz-story .brz-fs-xs-131 {
10893
- font-size: 30.13% !important; }
10894
- .brz .brz-fs-xs-132 {
10895
- font-size: 132px !important; }
10896
- .brz .brz-story .brz-fs-xs-132 {
10897
- font-size: 30.36% !important; }
10898
- .brz .brz-fs-xs-133 {
10899
- font-size: 133px !important; }
10900
- .brz .brz-story .brz-fs-xs-133 {
10901
- font-size: 30.59% !important; }
10902
- .brz .brz-fs-xs-134 {
10903
- font-size: 134px !important; }
10904
- .brz .brz-story .brz-fs-xs-134 {
10905
- font-size: 30.82% !important; }
10906
- .brz .brz-fs-xs-135 {
10907
- font-size: 135px !important; }
10908
- .brz .brz-story .brz-fs-xs-135 {
10909
- font-size: 31.05% !important; }
10910
- .brz .brz-fs-xs-136 {
10911
- font-size: 136px !important; }
10912
- .brz .brz-story .brz-fs-xs-136 {
10913
- font-size: 31.28% !important; }
10914
- .brz .brz-fs-xs-137 {
10915
- font-size: 137px !important; }
10916
- .brz .brz-story .brz-fs-xs-137 {
10917
- font-size: 31.51% !important; }
10918
- .brz .brz-fs-xs-138 {
10919
- font-size: 138px !important; }
10920
- .brz .brz-story .brz-fs-xs-138 {
10921
- font-size: 31.74% !important; }
10922
- .brz .brz-fs-xs-139 {
10923
- font-size: 139px !important; }
10924
- .brz .brz-story .brz-fs-xs-139 {
10925
- font-size: 31.97% !important; }
10926
- .brz .brz-fs-xs-140 {
10927
- font-size: 140px !important; }
10928
- .brz .brz-story .brz-fs-xs-140 {
10929
- font-size: 32.2% !important; }
10930
- .brz .brz-fs-xs-141 {
10931
- font-size: 141px !important; }
10932
- .brz .brz-story .brz-fs-xs-141 {
10933
- font-size: 32.43% !important; }
10934
- .brz .brz-fs-xs-142 {
10935
- font-size: 142px !important; }
10936
- .brz .brz-story .brz-fs-xs-142 {
10937
- font-size: 32.66% !important; }
10938
- .brz .brz-fs-xs-143 {
10939
- font-size: 143px !important; }
10940
- .brz .brz-story .brz-fs-xs-143 {
10941
- font-size: 32.89% !important; }
10942
- .brz .brz-fs-xs-144 {
10943
- font-size: 144px !important; }
10944
- .brz .brz-story .brz-fs-xs-144 {
10945
- font-size: 33.12% !important; }
10946
- .brz .brz-fs-xs-145 {
10947
- font-size: 145px !important; }
10948
- .brz .brz-story .brz-fs-xs-145 {
10949
- font-size: 33.35% !important; }
10950
- .brz .brz-fs-xs-146 {
10951
- font-size: 146px !important; }
10952
- .brz .brz-story .brz-fs-xs-146 {
10953
- font-size: 33.58% !important; }
10954
- .brz .brz-fs-xs-147 {
10955
- font-size: 147px !important; }
10956
- .brz .brz-story .brz-fs-xs-147 {
10957
- font-size: 33.81% !important; }
10958
- .brz .brz-fs-xs-148 {
10959
- font-size: 148px !important; }
10960
- .brz .brz-story .brz-fs-xs-148 {
10961
- font-size: 34.04% !important; }
10962
- .brz .brz-fs-xs-149 {
10963
- font-size: 149px !important; }
10964
- .brz .brz-story .brz-fs-xs-149 {
10965
- font-size: 34.27% !important; }
10966
- .brz .brz-fs-xs-150 {
10967
- font-size: 150px !important; }
10968
- .brz .brz-story .brz-fs-xs-150 {
10969
- font-size: 34.5% !important; }
10970
- .brz .brz-fs-xs-151 {
10971
- font-size: 151px !important; }
10972
- .brz .brz-story .brz-fs-xs-151 {
10973
- font-size: 34.73% !important; }
10974
- .brz .brz-fs-xs-152 {
10975
- font-size: 152px !important; }
10976
- .brz .brz-story .brz-fs-xs-152 {
10977
- font-size: 34.96% !important; }
10978
- .brz .brz-fs-xs-153 {
10979
- font-size: 153px !important; }
10980
- .brz .brz-story .brz-fs-xs-153 {
10981
- font-size: 35.19% !important; }
10982
- .brz .brz-fs-xs-154 {
10983
- font-size: 154px !important; }
10984
- .brz .brz-story .brz-fs-xs-154 {
10985
- font-size: 35.42% !important; }
10986
- .brz .brz-fs-xs-155 {
10987
- font-size: 155px !important; }
10988
- .brz .brz-story .brz-fs-xs-155 {
10989
- font-size: 35.65% !important; }
10990
- .brz .brz-fs-xs-156 {
10991
- font-size: 156px !important; }
10992
- .brz .brz-story .brz-fs-xs-156 {
10993
- font-size: 35.88% !important; }
10994
- .brz .brz-fs-xs-157 {
10995
- font-size: 157px !important; }
10996
- .brz .brz-story .brz-fs-xs-157 {
10997
- font-size: 36.11% !important; }
10998
- .brz .brz-fs-xs-158 {
10999
- font-size: 158px !important; }
11000
- .brz .brz-story .brz-fs-xs-158 {
11001
- font-size: 36.34% !important; }
11002
- .brz .brz-fs-xs-159 {
11003
- font-size: 159px !important; }
11004
- .brz .brz-story .brz-fs-xs-159 {
11005
- font-size: 36.57% !important; }
11006
- .brz .brz-fs-xs-160 {
11007
- font-size: 160px !important; }
11008
- .brz .brz-story .brz-fs-xs-160 {
11009
- font-size: 36.8% !important; }
11010
- .brz .brz-fs-xs-161 {
11011
- font-size: 161px !important; }
11012
- .brz .brz-story .brz-fs-xs-161 {
11013
- font-size: 37.03% !important; }
11014
- .brz .brz-fs-xs-162 {
11015
- font-size: 162px !important; }
11016
- .brz .brz-story .brz-fs-xs-162 {
11017
- font-size: 37.26% !important; }
11018
- .brz .brz-fs-xs-163 {
11019
- font-size: 163px !important; }
11020
- .brz .brz-story .brz-fs-xs-163 {
11021
- font-size: 37.49% !important; }
11022
- .brz .brz-fs-xs-164 {
11023
- font-size: 164px !important; }
11024
- .brz .brz-story .brz-fs-xs-164 {
11025
- font-size: 37.72% !important; }
11026
- .brz .brz-fs-xs-165 {
11027
- font-size: 165px !important; }
11028
- .brz .brz-story .brz-fs-xs-165 {
11029
- font-size: 37.95% !important; }
11030
- .brz .brz-fs-xs-166 {
11031
- font-size: 166px !important; }
11032
- .brz .brz-story .brz-fs-xs-166 {
11033
- font-size: 38.18% !important; }
11034
- .brz .brz-fs-xs-167 {
11035
- font-size: 167px !important; }
11036
- .brz .brz-story .brz-fs-xs-167 {
11037
- font-size: 38.41% !important; }
11038
- .brz .brz-fs-xs-168 {
11039
- font-size: 168px !important; }
11040
- .brz .brz-story .brz-fs-xs-168 {
11041
- font-size: 38.64% !important; }
11042
- .brz .brz-fs-xs-169 {
11043
- font-size: 169px !important; }
11044
- .brz .brz-story .brz-fs-xs-169 {
11045
- font-size: 38.87% !important; }
11046
- .brz .brz-fs-xs-170 {
11047
- font-size: 170px !important; }
11048
- .brz .brz-story .brz-fs-xs-170 {
11049
- font-size: 39.1% !important; }
11050
- .brz .brz-fs-xs-171 {
11051
- font-size: 171px !important; }
11052
- .brz .brz-story .brz-fs-xs-171 {
11053
- font-size: 39.33% !important; }
11054
- .brz .brz-fs-xs-172 {
11055
- font-size: 172px !important; }
11056
- .brz .brz-story .brz-fs-xs-172 {
11057
- font-size: 39.56% !important; }
11058
- .brz .brz-fs-xs-173 {
11059
- font-size: 173px !important; }
11060
- .brz .brz-story .brz-fs-xs-173 {
11061
- font-size: 39.79% !important; }
11062
- .brz .brz-fs-xs-174 {
11063
- font-size: 174px !important; }
11064
- .brz .brz-story .brz-fs-xs-174 {
11065
- font-size: 40.02% !important; }
11066
- .brz .brz-fs-xs-175 {
11067
- font-size: 175px !important; }
11068
- .brz .brz-story .brz-fs-xs-175 {
11069
- font-size: 40.25% !important; }
11070
- .brz .brz-fs-xs-176 {
11071
- font-size: 176px !important; }
11072
- .brz .brz-story .brz-fs-xs-176 {
11073
- font-size: 40.48% !important; }
11074
- .brz .brz-fs-xs-177 {
11075
- font-size: 177px !important; }
11076
- .brz .brz-story .brz-fs-xs-177 {
11077
- font-size: 40.71% !important; }
11078
- .brz .brz-fs-xs-178 {
11079
- font-size: 178px !important; }
11080
- .brz .brz-story .brz-fs-xs-178 {
11081
- font-size: 40.94% !important; }
11082
- .brz .brz-fs-xs-179 {
11083
- font-size: 179px !important; }
11084
- .brz .brz-story .brz-fs-xs-179 {
11085
- font-size: 41.17% !important; }
11086
- .brz .brz-fs-xs-180 {
11087
- font-size: 180px !important; }
11088
- .brz .brz-story .brz-fs-xs-180 {
11089
- font-size: 41.4% !important; }
11090
- .brz .brz-fs-xs-181 {
11091
- font-size: 181px !important; }
11092
- .brz .brz-story .brz-fs-xs-181 {
11093
- font-size: 41.63% !important; }
11094
- .brz .brz-fs-xs-182 {
11095
- font-size: 182px !important; }
11096
- .brz .brz-story .brz-fs-xs-182 {
11097
- font-size: 41.86% !important; }
11098
- .brz .brz-fs-xs-183 {
11099
- font-size: 183px !important; }
11100
- .brz .brz-story .brz-fs-xs-183 {
11101
- font-size: 42.09% !important; }
11102
- .brz .brz-fs-xs-184 {
11103
- font-size: 184px !important; }
11104
- .brz .brz-story .brz-fs-xs-184 {
11105
- font-size: 42.32% !important; }
11106
- .brz .brz-fs-xs-185 {
11107
- font-size: 185px !important; }
11108
- .brz .brz-story .brz-fs-xs-185 {
11109
- font-size: 42.55% !important; }
11110
- .brz .brz-fs-xs-186 {
11111
- font-size: 186px !important; }
11112
- .brz .brz-story .brz-fs-xs-186 {
11113
- font-size: 42.78% !important; }
11114
- .brz .brz-fs-xs-187 {
11115
- font-size: 187px !important; }
11116
- .brz .brz-story .brz-fs-xs-187 {
11117
- font-size: 43.01% !important; }
11118
- .brz .brz-fs-xs-188 {
11119
- font-size: 188px !important; }
11120
- .brz .brz-story .brz-fs-xs-188 {
11121
- font-size: 43.24% !important; }
11122
- .brz .brz-fs-xs-189 {
11123
- font-size: 189px !important; }
11124
- .brz .brz-story .brz-fs-xs-189 {
11125
- font-size: 43.47% !important; }
11126
- .brz .brz-fs-xs-190 {
11127
- font-size: 190px !important; }
11128
- .brz .brz-story .brz-fs-xs-190 {
11129
- font-size: 43.7% !important; }
11130
- .brz .brz-fs-xs-191 {
11131
- font-size: 191px !important; }
11132
- .brz .brz-story .brz-fs-xs-191 {
11133
- font-size: 43.93% !important; }
11134
- .brz .brz-fs-xs-192 {
11135
- font-size: 192px !important; }
11136
- .brz .brz-story .brz-fs-xs-192 {
11137
- font-size: 44.16% !important; }
11138
- .brz .brz-fs-xs-193 {
11139
- font-size: 193px !important; }
11140
- .brz .brz-story .brz-fs-xs-193 {
11141
- font-size: 44.39% !important; }
11142
- .brz .brz-fs-xs-194 {
11143
- font-size: 194px !important; }
11144
- .brz .brz-story .brz-fs-xs-194 {
11145
- font-size: 44.62% !important; }
11146
- .brz .brz-fs-xs-195 {
11147
- font-size: 195px !important; }
11148
- .brz .brz-story .brz-fs-xs-195 {
11149
- font-size: 44.85% !important; }
11150
- .brz .brz-fs-xs-196 {
11151
- font-size: 196px !important; }
11152
- .brz .brz-story .brz-fs-xs-196 {
11153
- font-size: 45.08% !important; }
11154
- .brz .brz-fs-xs-197 {
11155
- font-size: 197px !important; }
11156
- .brz .brz-story .brz-fs-xs-197 {
11157
- font-size: 45.31% !important; }
11158
- .brz .brz-fs-xs-198 {
11159
- font-size: 198px !important; }
11160
- .brz .brz-story .brz-fs-xs-198 {
11161
- font-size: 45.54% !important; }
11162
- .brz .brz-fs-xs-199 {
11163
- font-size: 199px !important; }
11164
- .brz .brz-story .brz-fs-xs-199 {
11165
- font-size: 45.77% !important; }
11166
- .brz .brz-fs-xs-200 {
11167
- font-size: 200px !important; }
11168
- .brz .brz-story .brz-fs-xs-200 {
11169
- font-size: 46% !important; }
11170
- .brz .brz-fs-xs-201 {
11171
- font-size: 201px !important; }
11172
- .brz .brz-story .brz-fs-xs-201 {
11173
- font-size: 46.23% !important; }
11174
- .brz .brz-fs-xs-202 {
11175
- font-size: 202px !important; }
11176
- .brz .brz-story .brz-fs-xs-202 {
11177
- font-size: 46.46% !important; }
11178
- .brz .brz-fs-xs-203 {
11179
- font-size: 203px !important; }
11180
- .brz .brz-story .brz-fs-xs-203 {
11181
- font-size: 46.69% !important; }
11182
- .brz .brz-fs-xs-204 {
11183
- font-size: 204px !important; }
11184
- .brz .brz-story .brz-fs-xs-204 {
11185
- font-size: 46.92% !important; }
11186
- .brz .brz-fs-xs-205 {
11187
- font-size: 205px !important; }
11188
- .brz .brz-story .brz-fs-xs-205 {
11189
- font-size: 47.15% !important; }
11190
- .brz .brz-fs-xs-206 {
11191
- font-size: 206px !important; }
11192
- .brz .brz-story .brz-fs-xs-206 {
11193
- font-size: 47.38% !important; }
11194
- .brz .brz-fs-xs-207 {
11195
- font-size: 207px !important; }
11196
- .brz .brz-story .brz-fs-xs-207 {
11197
- font-size: 47.61% !important; }
11198
- .brz .brz-fs-xs-208 {
11199
- font-size: 208px !important; }
11200
- .brz .brz-story .brz-fs-xs-208 {
11201
- font-size: 47.84% !important; }
11202
- .brz .brz-fs-xs-209 {
11203
- font-size: 209px !important; }
11204
- .brz .brz-story .brz-fs-xs-209 {
11205
- font-size: 48.07% !important; }
11206
- .brz .brz-fs-xs-210 {
11207
- font-size: 210px !important; }
11208
- .brz .brz-story .brz-fs-xs-210 {
11209
- font-size: 48.3% !important; }
11210
- .brz .brz-fs-xs-211 {
11211
- font-size: 211px !important; }
11212
- .brz .brz-story .brz-fs-xs-211 {
11213
- font-size: 48.53% !important; }
11214
- .brz .brz-fs-xs-212 {
11215
- font-size: 212px !important; }
11216
- .brz .brz-story .brz-fs-xs-212 {
11217
- font-size: 48.76% !important; }
11218
- .brz .brz-fs-xs-213 {
11219
- font-size: 213px !important; }
11220
- .brz .brz-story .brz-fs-xs-213 {
11221
- font-size: 48.99% !important; }
11222
- .brz .brz-fs-xs-214 {
11223
- font-size: 214px !important; }
11224
- .brz .brz-story .brz-fs-xs-214 {
11225
- font-size: 49.22% !important; }
11226
- .brz .brz-fs-xs-215 {
11227
- font-size: 215px !important; }
11228
- .brz .brz-story .brz-fs-xs-215 {
11229
- font-size: 49.45% !important; }
11230
- .brz .brz-fs-xs-216 {
11231
- font-size: 216px !important; }
11232
- .brz .brz-story .brz-fs-xs-216 {
11233
- font-size: 49.68% !important; }
11234
- .brz .brz-fs-xs-217 {
11235
- font-size: 217px !important; }
11236
- .brz .brz-story .brz-fs-xs-217 {
11237
- font-size: 49.91% !important; }
11238
- .brz .brz-fs-xs-218 {
11239
- font-size: 218px !important; }
11240
- .brz .brz-story .brz-fs-xs-218 {
11241
- font-size: 50.14% !important; }
11242
- .brz .brz-fs-xs-219 {
11243
- font-size: 219px !important; }
11244
- .brz .brz-story .brz-fs-xs-219 {
11245
- font-size: 50.37% !important; }
11246
- .brz .brz-fs-xs-220 {
11247
- font-size: 220px !important; }
11248
- .brz .brz-story .brz-fs-xs-220 {
11249
- font-size: 50.6% !important; }
11250
- .brz .brz-fs-xs-221 {
11251
- font-size: 221px !important; }
11252
- .brz .brz-story .brz-fs-xs-221 {
11253
- font-size: 50.83% !important; }
11254
- .brz .brz-fs-xs-222 {
11255
- font-size: 222px !important; }
11256
- .brz .brz-story .brz-fs-xs-222 {
11257
- font-size: 51.06% !important; }
11258
- .brz .brz-fs-xs-223 {
11259
- font-size: 223px !important; }
11260
- .brz .brz-story .brz-fs-xs-223 {
11261
- font-size: 51.29% !important; }
11262
- .brz .brz-fs-xs-224 {
11263
- font-size: 224px !important; }
11264
- .brz .brz-story .brz-fs-xs-224 {
11265
- font-size: 51.52% !important; }
11266
- .brz .brz-fs-xs-225 {
11267
- font-size: 225px !important; }
11268
- .brz .brz-story .brz-fs-xs-225 {
11269
- font-size: 51.75% !important; }
11270
- .brz .brz-fs-xs-226 {
11271
- font-size: 226px !important; }
11272
- .brz .brz-story .brz-fs-xs-226 {
11273
- font-size: 51.98% !important; }
11274
- .brz .brz-fs-xs-227 {
11275
- font-size: 227px !important; }
11276
- .brz .brz-story .brz-fs-xs-227 {
11277
- font-size: 52.21% !important; }
11278
- .brz .brz-fs-xs-228 {
11279
- font-size: 228px !important; }
11280
- .brz .brz-story .brz-fs-xs-228 {
11281
- font-size: 52.44% !important; }
11282
- .brz .brz-fs-xs-229 {
11283
- font-size: 229px !important; }
11284
- .brz .brz-story .brz-fs-xs-229 {
11285
- font-size: 52.67% !important; }
11286
- .brz .brz-fs-xs-230 {
11287
- font-size: 230px !important; }
11288
- .brz .brz-story .brz-fs-xs-230 {
11289
- font-size: 52.9% !important; }
11290
- .brz .brz-fs-xs-231 {
11291
- font-size: 231px !important; }
11292
- .brz .brz-story .brz-fs-xs-231 {
11293
- font-size: 53.13% !important; }
11294
- .brz .brz-fs-xs-232 {
11295
- font-size: 232px !important; }
11296
- .brz .brz-story .brz-fs-xs-232 {
11297
- font-size: 53.36% !important; }
11298
- .brz .brz-fs-xs-233 {
11299
- font-size: 233px !important; }
11300
- .brz .brz-story .brz-fs-xs-233 {
11301
- font-size: 53.59% !important; }
11302
- .brz .brz-fs-xs-234 {
11303
- font-size: 234px !important; }
11304
- .brz .brz-story .brz-fs-xs-234 {
11305
- font-size: 53.82% !important; }
11306
- .brz .brz-fs-xs-235 {
11307
- font-size: 235px !important; }
11308
- .brz .brz-story .brz-fs-xs-235 {
11309
- font-size: 54.05% !important; }
11310
- .brz .brz-fs-xs-236 {
11311
- font-size: 236px !important; }
11312
- .brz .brz-story .brz-fs-xs-236 {
11313
- font-size: 54.28% !important; }
11314
- .brz .brz-fs-xs-237 {
11315
- font-size: 237px !important; }
11316
- .brz .brz-story .brz-fs-xs-237 {
11317
- font-size: 54.51% !important; }
11318
- .brz .brz-fs-xs-238 {
11319
- font-size: 238px !important; }
11320
- .brz .brz-story .brz-fs-xs-238 {
11321
- font-size: 54.74% !important; }
11322
- .brz .brz-fs-xs-239 {
11323
- font-size: 239px !important; }
11324
- .brz .brz-story .brz-fs-xs-239 {
11325
- font-size: 54.97% !important; }
11326
- .brz .brz-fs-xs-240 {
11327
- font-size: 240px !important; }
11328
- .brz .brz-story .brz-fs-xs-240 {
11329
- font-size: 55.2% !important; }
11330
- .brz .brz-fs-xs-241 {
11331
- font-size: 241px !important; }
11332
- .brz .brz-story .brz-fs-xs-241 {
11333
- font-size: 55.43% !important; }
11334
- .brz .brz-fs-xs-242 {
11335
- font-size: 242px !important; }
11336
- .brz .brz-story .brz-fs-xs-242 {
11337
- font-size: 55.66% !important; }
11338
- .brz .brz-fs-xs-243 {
11339
- font-size: 243px !important; }
11340
- .brz .brz-story .brz-fs-xs-243 {
11341
- font-size: 55.89% !important; }
11342
- .brz .brz-fs-xs-244 {
11343
- font-size: 244px !important; }
11344
- .brz .brz-story .brz-fs-xs-244 {
11345
- font-size: 56.12% !important; }
11346
- .brz .brz-fs-xs-245 {
11347
- font-size: 245px !important; }
11348
- .brz .brz-story .brz-fs-xs-245 {
11349
- font-size: 56.35% !important; }
11350
- .brz .brz-fs-xs-246 {
11351
- font-size: 246px !important; }
11352
- .brz .brz-story .brz-fs-xs-246 {
11353
- font-size: 56.58% !important; }
11354
- .brz .brz-fs-xs-247 {
11355
- font-size: 247px !important; }
11356
- .brz .brz-story .brz-fs-xs-247 {
11357
- font-size: 56.81% !important; }
11358
- .brz .brz-fs-xs-248 {
11359
- font-size: 248px !important; }
11360
- .brz .brz-story .brz-fs-xs-248 {
11361
- font-size: 57.04% !important; }
11362
- .brz .brz-fs-xs-249 {
11363
- font-size: 249px !important; }
11364
- .brz .brz-story .brz-fs-xs-249 {
11365
- font-size: 57.27% !important; }
11366
- .brz .brz-fs-xs-250 {
11367
- font-size: 250px !important; }
11368
- .brz .brz-story .brz-fs-xs-250 {
11369
- font-size: 57.5% !important; }
11370
- .brz .brz-fs-xs-251 {
11371
- font-size: 251px !important; }
11372
- .brz .brz-story .brz-fs-xs-251 {
11373
- font-size: 57.73% !important; }
11374
- .brz .brz-fs-xs-252 {
11375
- font-size: 252px !important; }
11376
- .brz .brz-story .brz-fs-xs-252 {
11377
- font-size: 57.96% !important; }
11378
- .brz .brz-fs-xs-253 {
11379
- font-size: 253px !important; }
11380
- .brz .brz-story .brz-fs-xs-253 {
11381
- font-size: 58.19% !important; }
11382
- .brz .brz-fs-xs-254 {
11383
- font-size: 254px !important; }
11384
- .brz .brz-story .brz-fs-xs-254 {
11385
- font-size: 58.42% !important; }
11386
- .brz .brz-fs-xs-255 {
11387
- font-size: 255px !important; }
11388
- .brz .brz-story .brz-fs-xs-255 {
11389
- font-size: 58.65% !important; }
11390
- .brz .brz-fs-xs-256 {
11391
- font-size: 256px !important; }
11392
- .brz .brz-story .brz-fs-xs-256 {
11393
- font-size: 58.88% !important; }
11394
- .brz .brz-fs-xs-257 {
11395
- font-size: 257px !important; }
11396
- .brz .brz-story .brz-fs-xs-257 {
11397
- font-size: 59.11% !important; }
11398
- .brz .brz-fs-xs-258 {
11399
- font-size: 258px !important; }
11400
- .brz .brz-story .brz-fs-xs-258 {
11401
- font-size: 59.34% !important; }
11402
- .brz .brz-fs-xs-259 {
11403
- font-size: 259px !important; }
11404
- .brz .brz-story .brz-fs-xs-259 {
11405
- font-size: 59.57% !important; }
11406
- .brz .brz-fs-xs-260 {
11407
- font-size: 260px !important; }
11408
- .brz .brz-story .brz-fs-xs-260 {
11409
- font-size: 59.8% !important; }
11410
- .brz .brz-fs-xs-261 {
11411
- font-size: 261px !important; }
11412
- .brz .brz-story .brz-fs-xs-261 {
11413
- font-size: 60.03% !important; }
11414
- .brz .brz-fs-xs-262 {
11415
- font-size: 262px !important; }
11416
- .brz .brz-story .brz-fs-xs-262 {
11417
- font-size: 60.26% !important; }
11418
- .brz .brz-fs-xs-263 {
11419
- font-size: 263px !important; }
11420
- .brz .brz-story .brz-fs-xs-263 {
11421
- font-size: 60.49% !important; }
11422
- .brz .brz-fs-xs-264 {
11423
- font-size: 264px !important; }
11424
- .brz .brz-story .brz-fs-xs-264 {
11425
- font-size: 60.72% !important; }
11426
- .brz .brz-fs-xs-265 {
11427
- font-size: 265px !important; }
11428
- .brz .brz-story .brz-fs-xs-265 {
11429
- font-size: 60.95% !important; }
11430
- .brz .brz-fs-xs-266 {
11431
- font-size: 266px !important; }
11432
- .brz .brz-story .brz-fs-xs-266 {
11433
- font-size: 61.18% !important; }
11434
- .brz .brz-fs-xs-267 {
11435
- font-size: 267px !important; }
11436
- .brz .brz-story .brz-fs-xs-267 {
11437
- font-size: 61.41% !important; }
11438
- .brz .brz-fs-xs-268 {
11439
- font-size: 268px !important; }
11440
- .brz .brz-story .brz-fs-xs-268 {
11441
- font-size: 61.64% !important; }
11442
- .brz .brz-fs-xs-269 {
11443
- font-size: 269px !important; }
11444
- .brz .brz-story .brz-fs-xs-269 {
11445
- font-size: 61.87% !important; }
11446
- .brz .brz-fs-xs-270 {
11447
- font-size: 270px !important; }
11448
- .brz .brz-story .brz-fs-xs-270 {
11449
- font-size: 62.1% !important; }
11450
- .brz .brz-fs-xs-271 {
11451
- font-size: 271px !important; }
11452
- .brz .brz-story .brz-fs-xs-271 {
11453
- font-size: 62.33% !important; }
11454
- .brz .brz-fs-xs-272 {
11455
- font-size: 272px !important; }
11456
- .brz .brz-story .brz-fs-xs-272 {
11457
- font-size: 62.56% !important; }
11458
- .brz .brz-fs-xs-273 {
11459
- font-size: 273px !important; }
11460
- .brz .brz-story .brz-fs-xs-273 {
11461
- font-size: 62.79% !important; }
11462
- .brz .brz-fs-xs-274 {
11463
- font-size: 274px !important; }
11464
- .brz .brz-story .brz-fs-xs-274 {
11465
- font-size: 63.02% !important; }
11466
- .brz .brz-fs-xs-275 {
11467
- font-size: 275px !important; }
11468
- .brz .brz-story .brz-fs-xs-275 {
11469
- font-size: 63.25% !important; }
11470
- .brz .brz-fs-xs-276 {
11471
- font-size: 276px !important; }
11472
- .brz .brz-story .brz-fs-xs-276 {
11473
- font-size: 63.48% !important; }
11474
- .brz .brz-fs-xs-277 {
11475
- font-size: 277px !important; }
11476
- .brz .brz-story .brz-fs-xs-277 {
11477
- font-size: 63.71% !important; }
11478
- .brz .brz-fs-xs-278 {
11479
- font-size: 278px !important; }
11480
- .brz .brz-story .brz-fs-xs-278 {
11481
- font-size: 63.94% !important; }
11482
- .brz .brz-fs-xs-279 {
11483
- font-size: 279px !important; }
11484
- .brz .brz-story .brz-fs-xs-279 {
11485
- font-size: 64.17% !important; }
11486
- .brz .brz-fs-xs-280 {
11487
- font-size: 280px !important; }
11488
- .brz .brz-story .brz-fs-xs-280 {
11489
- font-size: 64.4% !important; }
11490
- .brz .brz-fs-xs-281 {
11491
- font-size: 281px !important; }
11492
- .brz .brz-story .brz-fs-xs-281 {
11493
- font-size: 64.63% !important; }
11494
- .brz .brz-fs-xs-282 {
11495
- font-size: 282px !important; }
11496
- .brz .brz-story .brz-fs-xs-282 {
11497
- font-size: 64.86% !important; }
11498
- .brz .brz-fs-xs-283 {
11499
- font-size: 283px !important; }
11500
- .brz .brz-story .brz-fs-xs-283 {
11501
- font-size: 65.09% !important; }
11502
- .brz .brz-fs-xs-284 {
11503
- font-size: 284px !important; }
11504
- .brz .brz-story .brz-fs-xs-284 {
11505
- font-size: 65.32% !important; }
11506
- .brz .brz-fs-xs-285 {
11507
- font-size: 285px !important; }
11508
- .brz .brz-story .brz-fs-xs-285 {
11509
- font-size: 65.55% !important; }
11510
- .brz .brz-fs-xs-286 {
11511
- font-size: 286px !important; }
11512
- .brz .brz-story .brz-fs-xs-286 {
11513
- font-size: 65.78% !important; }
11514
- .brz .brz-fs-xs-287 {
11515
- font-size: 287px !important; }
11516
- .brz .brz-story .brz-fs-xs-287 {
11517
- font-size: 66.01% !important; }
11518
- .brz .brz-fs-xs-288 {
11519
- font-size: 288px !important; }
11520
- .brz .brz-story .brz-fs-xs-288 {
11521
- font-size: 66.24% !important; }
11522
- .brz .brz-fs-xs-289 {
11523
- font-size: 289px !important; }
11524
- .brz .brz-story .brz-fs-xs-289 {
11525
- font-size: 66.47% !important; }
11526
- .brz .brz-fs-xs-290 {
11527
- font-size: 290px !important; }
11528
- .brz .brz-story .brz-fs-xs-290 {
11529
- font-size: 66.7% !important; }
11530
- .brz .brz-fs-xs-291 {
11531
- font-size: 291px !important; }
11532
- .brz .brz-story .brz-fs-xs-291 {
11533
- font-size: 66.93% !important; }
11534
- .brz .brz-fs-xs-292 {
11535
- font-size: 292px !important; }
11536
- .brz .brz-story .brz-fs-xs-292 {
11537
- font-size: 67.16% !important; }
11538
- .brz .brz-fs-xs-293 {
11539
- font-size: 293px !important; }
11540
- .brz .brz-story .brz-fs-xs-293 {
11541
- font-size: 67.39% !important; }
11542
- .brz .brz-fs-xs-294 {
11543
- font-size: 294px !important; }
11544
- .brz .brz-story .brz-fs-xs-294 {
11545
- font-size: 67.62% !important; }
11546
- .brz .brz-fs-xs-295 {
11547
- font-size: 295px !important; }
11548
- .brz .brz-story .brz-fs-xs-295 {
11549
- font-size: 67.85% !important; }
11550
- .brz .brz-fs-xs-296 {
11551
- font-size: 296px !important; }
11552
- .brz .brz-story .brz-fs-xs-296 {
11553
- font-size: 68.08% !important; }
11554
- .brz .brz-fs-xs-297 {
11555
- font-size: 297px !important; }
11556
- .brz .brz-story .brz-fs-xs-297 {
11557
- font-size: 68.31% !important; }
11558
- .brz .brz-fs-xs-298 {
11559
- font-size: 298px !important; }
11560
- .brz .brz-story .brz-fs-xs-298 {
11561
- font-size: 68.54% !important; }
11562
- .brz .brz-fs-xs-299 {
11563
- font-size: 299px !important; }
11564
- .brz .brz-story .brz-fs-xs-299 {
11565
- font-size: 68.77% !important; }
11566
- .brz .brz-fs-xs-300 {
11567
- font-size: 300px !important; }
11568
- .brz .brz-story .brz-fs-xs-300 {
11569
- font-size: 69% !important; }
11570
- .brz .brz-lh-xs-1 {
11571
- line-height: 1em !important; }
11572
- .brz .brz-lh-xs-1_1 {
11573
- line-height: 1.1em !important; }
11574
- .brz .brz-lh-xs-1_2 {
11575
- line-height: 1.2em !important; }
11576
- .brz .brz-lh-xs-1_3 {
11577
- line-height: 1.3em !important; }
11578
- .brz .brz-lh-xs-1_4 {
11579
- line-height: 1.4em !important; }
11580
- .brz .brz-lh-xs-1_5 {
11581
- line-height: 1.5em !important; }
11582
- .brz .brz-lh-xs-1_6 {
11583
- line-height: 1.6em !important; }
11584
- .brz .brz-lh-xs-1_7 {
11585
- line-height: 1.7em !important; }
11586
- .brz .brz-lh-xs-1_8 {
11587
- line-height: 1.8em !important; }
11588
- .brz .brz-lh-xs-1_9 {
11589
- line-height: 1.9em !important; }
11590
- .brz .brz-lh-xs-2 {
11591
- line-height: 2em !important; }
11592
- .brz .brz-lh-xs-2_1 {
11593
- line-height: 2.1em !important; }
11594
- .brz .brz-lh-xs-2_2 {
11595
- line-height: 2.2em !important; }
11596
- .brz .brz-lh-xs-2_3 {
11597
- line-height: 2.3em !important; }
11598
- .brz .brz-lh-xs-2_4 {
11599
- line-height: 2.4em !important; }
11600
- .brz .brz-lh-xs-2_5 {
11601
- line-height: 2.5em !important; }
11602
- .brz .brz-lh-xs-2_6 {
11603
- line-height: 2.6em !important; }
11604
- .brz .brz-lh-xs-2_7 {
11605
- line-height: 2.7em !important; }
11606
- .brz .brz-lh-xs-2_8 {
11607
- line-height: 2.8em !important; }
11608
- .brz .brz-lh-xs-2_9 {
11609
- line-height: 2.9em !important; }
11610
- .brz .brz-lh-xs-3 {
11611
- line-height: 3em !important; }
11612
- .brz .brz-lh-xs-3_1 {
11613
- line-height: 3.1em !important; }
11614
- .brz .brz-lh-xs-3_2 {
11615
- line-height: 3.2em !important; }
11616
- .brz .brz-lh-xs-3_3 {
11617
- line-height: 3.3em !important; }
11618
- .brz .brz-lh-xs-3_4 {
11619
- line-height: 3.4em !important; }
11620
- .brz .brz-lh-xs-3_5 {
11621
- line-height: 3.5em !important; }
11622
- .brz .brz-lh-xs-3_6 {
11623
- line-height: 3.6em !important; }
11624
- .brz .brz-lh-xs-3_7 {
11625
- line-height: 3.7em !important; }
11626
- .brz .brz-lh-xs-3_8 {
11627
- line-height: 3.8em !important; }
11628
- .brz .brz-lh-xs-3_9 {
11629
- line-height: 3.9em !important; }
11630
- .brz .brz-lh-xs-4 {
11631
- line-height: 4em !important; }
11632
- .brz .brz-lh-xs-4_1 {
11633
- line-height: 4.1em !important; }
11634
- .brz .brz-lh-xs-4_2 {
11635
- line-height: 4.2em !important; }
11636
- .brz .brz-lh-xs-4_3 {
11637
- line-height: 4.3em !important; }
11638
- .brz .brz-lh-xs-4_4 {
11639
- line-height: 4.4em !important; }
11640
- .brz .brz-lh-xs-4_5 {
11641
- line-height: 4.5em !important; }
11642
- .brz .brz-lh-xs-4_6 {
11643
- line-height: 4.6em !important; }
11644
- .brz .brz-lh-xs-4_7 {
11645
- line-height: 4.7em !important; }
11646
- .brz .brz-lh-xs-4_8 {
11647
- line-height: 4.8em !important; }
11648
- .brz .brz-lh-xs-4_9 {
11649
- line-height: 4.9em !important; }
11650
- .brz .brz-lh-xs-5 {
11651
- line-height: 5em !important; }
11652
- .brz .brz-lh-xs-5_1 {
11653
- line-height: 5.1em !important; }
11654
- .brz .brz-lh-xs-5_2 {
11655
- line-height: 5.2em !important; }
11656
- .brz .brz-lh-xs-5_3 {
11657
- line-height: 5.3em !important; }
11658
- .brz .brz-lh-xs-5_4 {
11659
- line-height: 5.4em !important; }
11660
- .brz .brz-lh-xs-5_5 {
11661
- line-height: 5.5em !important; }
11662
- .brz .brz-lh-xs-5_6 {
11663
- line-height: 5.6em !important; }
11664
- .brz .brz-lh-xs-5_7 {
11665
- line-height: 5.7em !important; }
11666
- .brz .brz-lh-xs-5_8 {
11667
- line-height: 5.8em !important; }
11668
- .brz .brz-lh-xs-5_9 {
11669
- line-height: 5.9em !important; }
11670
- .brz .brz-fw-xs-100 {
11671
- font-weight: 100 !important; }
11672
- .brz .brz-fw-xs-200 {
11673
- font-weight: 200 !important; }
11674
- .brz .brz-fw-xs-300 {
11675
- font-weight: 300 !important; }
11676
- .brz .brz-fw-xs-400 {
11677
- font-weight: 400 !important; }
11678
- .brz .brz-fw-xs-500 {
11679
- font-weight: 500 !important; }
11680
- .brz .brz-fw-xs-600 {
11681
- font-weight: 600 !important; }
11682
- .brz .brz-fw-xs-700 {
11683
- font-weight: 700 !important; }
11684
- .brz .brz-fw-xs-800 {
11685
- font-weight: 800 !important; }
11686
- .brz .brz-fw-xs-900 {
11687
- font-weight: 900 !important; }
11688
- .brz .brz-fw-xs-1000 {
11689
- font-weight: 1000 !important; }
11690
- .brz .brz-fw-xs-1100 {
11691
- font-weight: 1100 !important; }
11692
- .brz .brz-fw-xs-1200 {
11693
- font-weight: 1200 !important; }
11694
- .brz .brz-fw-xs-1300 {
11695
- font-weight: 1300 !important; }
11696
- .brz .brz-fw-xs-1400 {
11697
- font-weight: 1400 !important; }
11698
- .brz .brz-fw-xs-1500 {
11699
- font-weight: 1500 !important; }
11700
- .brz .brz-fw-xs-1600 {
11701
- font-weight: 1600 !important; }
11702
- .brz .brz-fw-xs-1700 {
11703
- font-weight: 1700 !important; }
11704
- .brz .brz-fw-xs-1800 {
11705
- font-weight: 1800 !important; }
11706
- .brz .brz-fw-xs-1900 {
11707
- font-weight: 1900 !important; }
11708
- .brz .brz-fw-xs-2000 {
11709
- font-weight: 2000 !important; }
11710
- .brz .brz-ls-xs-m_20 {
11711
- letter-spacing: -20px !important; }
11712
- .brz .brz-ls-xs-m_20_5 {
11713
- letter-spacing: -20.5px !important; }
11714
- .brz .brz-ls-xs-m_19 {
11715
- letter-spacing: -19px !important; }
11716
- .brz .brz-ls-xs-m_19_5 {
11717
- letter-spacing: -19.5px !important; }
11718
- .brz .brz-ls-xs-m_18 {
11719
- letter-spacing: -18px !important; }
11720
- .brz .brz-ls-xs-m_18_5 {
11721
- letter-spacing: -18.5px !important; }
11722
- .brz .brz-ls-xs-m_17 {
11723
- letter-spacing: -17px !important; }
11724
- .brz .brz-ls-xs-m_17_5 {
11725
- letter-spacing: -17.5px !important; }
11726
- .brz .brz-ls-xs-m_16 {
11727
- letter-spacing: -16px !important; }
11728
- .brz .brz-ls-xs-m_16_5 {
11729
- letter-spacing: -16.5px !important; }
11730
- .brz .brz-ls-xs-m_15 {
11731
- letter-spacing: -15px !important; }
11732
- .brz .brz-ls-xs-m_15_5 {
11733
- letter-spacing: -15.5px !important; }
11734
- .brz .brz-ls-xs-m_14 {
11735
- letter-spacing: -14px !important; }
11736
- .brz .brz-ls-xs-m_14_5 {
11737
- letter-spacing: -14.5px !important; }
11738
- .brz .brz-ls-xs-m_13 {
11739
- letter-spacing: -13px !important; }
11740
- .brz .brz-ls-xs-m_13_5 {
11741
- letter-spacing: -13.5px !important; }
11742
- .brz .brz-ls-xs-m_12 {
11743
- letter-spacing: -12px !important; }
11744
- .brz .brz-ls-xs-m_12_5 {
11745
- letter-spacing: -12.5px !important; }
11746
- .brz .brz-ls-xs-m_11 {
11747
- letter-spacing: -11px !important; }
11748
- .brz .brz-ls-xs-m_11_5 {
11749
- letter-spacing: -11.5px !important; }
11750
- .brz .brz-ls-xs-m_10 {
11751
- letter-spacing: -10px !important; }
11752
- .brz .brz-ls-xs-m_10_5 {
11753
- letter-spacing: -10.5px !important; }
11754
- .brz .brz-ls-xs-m_9 {
11755
- letter-spacing: -9px !important; }
11756
- .brz .brz-ls-xs-m_9_5 {
11757
- letter-spacing: -9.5px !important; }
11758
- .brz .brz-ls-xs-m_8 {
11759
- letter-spacing: -8px !important; }
11760
- .brz .brz-ls-xs-m_8_5 {
11761
- letter-spacing: -8.5px !important; }
11762
- .brz .brz-ls-xs-m_7 {
11763
- letter-spacing: -7px !important; }
11764
- .brz .brz-ls-xs-m_7_5 {
11765
- letter-spacing: -7.5px !important; }
11766
- .brz .brz-ls-xs-m_6 {
11767
- letter-spacing: -6px !important; }
11768
- .brz .brz-ls-xs-m_6_5 {
11769
- letter-spacing: -6.5px !important; }
11770
- .brz .brz-ls-xs-m_5 {
11771
- letter-spacing: -5px !important; }
11772
- .brz .brz-ls-xs-m_5_5 {
11773
- letter-spacing: -5.5px !important; }
11774
- .brz .brz-ls-xs-m_4 {
11775
- letter-spacing: -4px !important; }
11776
- .brz .brz-ls-xs-m_4_5 {
11777
- letter-spacing: -4.5px !important; }
11778
- .brz .brz-ls-xs-m_3 {
11779
- letter-spacing: -3px !important; }
11780
- .brz .brz-ls-xs-m_3_5 {
11781
- letter-spacing: -3.5px !important; }
11782
- .brz .brz-ls-xs-m_2 {
11783
- letter-spacing: -2px !important; }
11784
- .brz .brz-ls-xs-m_2_5 {
11785
- letter-spacing: -2.5px !important; }
11786
- .brz .brz-ls-xs-m_1 {
11787
- letter-spacing: -1px !important; }
11788
- .brz .brz-ls-xs-m_1_5 {
11789
- letter-spacing: -1.5px !important; }
11790
- .brz .brz-ls-xs-m_0 {
11791
- letter-spacing: 0px !important; }
11792
- .brz .brz-ls-xs-m_0_5 {
11793
- letter-spacing: -0.5px !important; }
11794
- .brz .brz-ls-xs-0 {
11795
- letter-spacing: 0px !important; }
11796
- .brz .brz-ls-xs-0_5 {
11797
- letter-spacing: 0.5px !important; }
11798
- .brz .brz-ls-xs-1 {
11799
- letter-spacing: 1px !important; }
11800
- .brz .brz-ls-xs-1_5 {
11801
- letter-spacing: 1.5px !important; }
11802
- .brz .brz-ls-xs-2 {
11803
- letter-spacing: 2px !important; }
11804
- .brz .brz-ls-xs-2_5 {
11805
- letter-spacing: 2.5px !important; }
11806
- .brz .brz-ls-xs-3 {
11807
- letter-spacing: 3px !important; }
11808
- .brz .brz-ls-xs-3_5 {
11809
- letter-spacing: 3.5px !important; }
11810
- .brz .brz-ls-xs-4 {
11811
- letter-spacing: 4px !important; }
11812
- .brz .brz-ls-xs-4_5 {
11813
- letter-spacing: 4.5px !important; }
11814
- .brz .brz-ls-xs-5 {
11815
- letter-spacing: 5px !important; }
11816
- .brz .brz-ls-xs-5_5 {
11817
- letter-spacing: 5.5px !important; }
11818
- .brz .brz-ls-xs-6 {
11819
- letter-spacing: 6px !important; }
11820
- .brz .brz-ls-xs-6_5 {
11821
- letter-spacing: 6.5px !important; }
11822
- .brz .brz-ls-xs-7 {
11823
- letter-spacing: 7px !important; }
11824
- .brz .brz-ls-xs-7_5 {
11825
- letter-spacing: 7.5px !important; }
11826
- .brz .brz-ls-xs-8 {
11827
- letter-spacing: 8px !important; }
11828
- .brz .brz-ls-xs-8_5 {
11829
- letter-spacing: 8.5px !important; }
11830
- .brz .brz-ls-xs-9 {
11831
- letter-spacing: 9px !important; }
11832
- .brz .brz-ls-xs-9_5 {
11833
- letter-spacing: 9.5px !important; }
11834
- .brz .brz-ls-xs-10 {
11835
- letter-spacing: 10px !important; }
11836
- .brz .brz-ls-xs-10_5 {
11837
- letter-spacing: 10.5px !important; }
11838
- .brz .brz-ls-xs-11 {
11839
- letter-spacing: 11px !important; }
11840
- .brz .brz-ls-xs-11_5 {
11841
- letter-spacing: 11.5px !important; }
11842
- .brz .brz-ls-xs-12 {
11843
- letter-spacing: 12px !important; }
11844
- .brz .brz-ls-xs-12_5 {
11845
- letter-spacing: 12.5px !important; }
11846
- .brz .brz-ls-xs-13 {
11847
- letter-spacing: 13px !important; }
11848
- .brz .brz-ls-xs-13_5 {
11849
- letter-spacing: 13.5px !important; }
11850
- .brz .brz-ls-xs-14 {
11851
- letter-spacing: 14px !important; }
11852
- .brz .brz-ls-xs-14_5 {
11853
- letter-spacing: 14.5px !important; }
11854
- .brz .brz-ls-xs-15 {
11855
- letter-spacing: 15px !important; }
11856
- .brz .brz-ls-xs-15_5 {
11857
- letter-spacing: 15.5px !important; }
11858
- .brz .brz-ls-xs-16 {
11859
- letter-spacing: 16px !important; }
11860
- .brz .brz-ls-xs-16_5 {
11861
- letter-spacing: 16.5px !important; }
11862
- .brz .brz-ls-xs-17 {
11863
- letter-spacing: 17px !important; }
11864
- .brz .brz-ls-xs-17_5 {
11865
- letter-spacing: 17.5px !important; }
11866
- .brz .brz-ls-xs-18 {
11867
- letter-spacing: 18px !important; }
11868
- .brz .brz-ls-xs-18_5 {
11869
- letter-spacing: 18.5px !important; }
11870
- .brz .brz-ls-xs-19 {
11871
- letter-spacing: 19px !important; }
11872
- .brz .brz-ls-xs-19_5 {
11873
- letter-spacing: 19.5px !important; }
11874
- .brz .brz-ls-xs-20 {
11875
- letter-spacing: 20px !important; }
11876
- .brz .brz-ls-xs-20_5 {
11877
- letter-spacing: 20.5px !important; }
11878
- .brz .brz-fs-xs-im-6 {
11879
- font-size: 6px !important; }
11880
- .brz .brz-story .brz-fs-xs-im-6 {
11881
- font-size: 1.38% !important; }
11882
- .brz .brz-fs-xs-im-7 {
11883
- font-size: 7px !important; }
11884
- .brz .brz-story .brz-fs-xs-im-7 {
11885
- font-size: 1.61% !important; }
11886
- .brz .brz-fs-xs-im-8 {
11887
- font-size: 8px !important; }
11888
- .brz .brz-story .brz-fs-xs-im-8 {
11889
- font-size: 1.84% !important; }
11890
- .brz .brz-fs-xs-im-9 {
11891
- font-size: 9px !important; }
11892
- .brz .brz-story .brz-fs-xs-im-9 {
11893
- font-size: 2.07% !important; }
11894
- .brz .brz-fs-xs-im-10 {
11895
- font-size: 10px !important; }
11896
- .brz .brz-story .brz-fs-xs-im-10 {
11897
- font-size: 2.3% !important; }
11898
- .brz .brz-fs-xs-im-11 {
11899
- font-size: 11px !important; }
11900
- .brz .brz-story .brz-fs-xs-im-11 {
11901
- font-size: 2.53% !important; }
11902
- .brz .brz-fs-xs-im-12 {
11903
- font-size: 12px !important; }
11904
- .brz .brz-story .brz-fs-xs-im-12 {
11905
- font-size: 2.76% !important; }
11906
- .brz .brz-fs-xs-im-13 {
11907
- font-size: 13px !important; }
11908
- .brz .brz-story .brz-fs-xs-im-13 {
11909
- font-size: 2.99% !important; }
11910
- .brz .brz-fs-xs-im-14 {
11911
- font-size: 14px !important; }
11912
- .brz .brz-story .brz-fs-xs-im-14 {
11913
- font-size: 3.22% !important; }
11914
- .brz .brz-fs-xs-im-15 {
11915
- font-size: 15px !important; }
11916
- .brz .brz-story .brz-fs-xs-im-15 {
11917
- font-size: 3.45% !important; }
11918
- .brz .brz-fs-xs-im-16 {
11919
- font-size: 16px !important; }
11920
- .brz .brz-story .brz-fs-xs-im-16 {
11921
- font-size: 3.68% !important; }
11922
- .brz .brz-fs-xs-im-17 {
11923
- font-size: 17px !important; }
11924
- .brz .brz-story .brz-fs-xs-im-17 {
11925
- font-size: 3.91% !important; }
11926
- .brz .brz-fs-xs-im-18 {
11927
- font-size: 18px !important; }
11928
- .brz .brz-story .brz-fs-xs-im-18 {
11929
- font-size: 4.14% !important; }
11930
- .brz .brz-fs-xs-im-19 {
11931
- font-size: 19px !important; }
11932
- .brz .brz-story .brz-fs-xs-im-19 {
11933
- font-size: 4.37% !important; }
11934
- .brz .brz-fs-xs-im-20 {
11935
- font-size: 20px !important; }
11936
- .brz .brz-story .brz-fs-xs-im-20 {
11937
- font-size: 4.6% !important; }
11938
- .brz .brz-fs-xs-im-21 {
11939
- font-size: 21px !important; }
11940
- .brz .brz-story .brz-fs-xs-im-21 {
11941
- font-size: 4.83% !important; }
11942
- .brz .brz-fs-xs-im-22 {
11943
- font-size: 22px !important; }
11944
- .brz .brz-story .brz-fs-xs-im-22 {
11945
- font-size: 5.06% !important; }
11946
- .brz .brz-fs-xs-im-23 {
11947
- font-size: 23px !important; }
11948
- .brz .brz-story .brz-fs-xs-im-23 {
11949
- font-size: 5.29% !important; }
11950
- .brz .brz-fs-xs-im-24 {
11951
- font-size: 24px !important; }
11952
- .brz .brz-story .brz-fs-xs-im-24 {
11953
- font-size: 5.52% !important; }
11954
- .brz .brz-fs-xs-im-25 {
11955
- font-size: 25px !important; }
11956
- .brz .brz-story .brz-fs-xs-im-25 {
11957
- font-size: 5.75% !important; }
11958
- .brz .brz-fs-xs-im-26 {
11959
- font-size: 26px !important; }
11960
- .brz .brz-story .brz-fs-xs-im-26 {
11961
- font-size: 5.98% !important; }
11962
- .brz .brz-fs-xs-im-27 {
11963
- font-size: 27px !important; }
11964
- .brz .brz-story .brz-fs-xs-im-27 {
11965
- font-size: 6.21% !important; }
11966
- .brz .brz-fs-xs-im-28 {
11967
- font-size: 28px !important; }
11968
- .brz .brz-story .brz-fs-xs-im-28 {
11969
- font-size: 6.44% !important; }
11970
- .brz .brz-fs-xs-im-29 {
11971
- font-size: 29px !important; }
11972
- .brz .brz-story .brz-fs-xs-im-29 {
11973
- font-size: 6.67% !important; }
11974
- .brz .brz-fs-xs-im-30 {
11975
- font-size: 30px !important; }
11976
- .brz .brz-story .brz-fs-xs-im-30 {
11977
- font-size: 6.9% !important; }
11978
- .brz .brz-fs-xs-im-31 {
11979
- font-size: 31px !important; }
11980
- .brz .brz-story .brz-fs-xs-im-31 {
11981
- font-size: 7.13% !important; }
11982
- .brz .brz-fs-xs-im-32 {
11983
- font-size: 32px !important; }
11984
- .brz .brz-story .brz-fs-xs-im-32 {
11985
- font-size: 7.36% !important; }
11986
- .brz .brz-fs-xs-im-33 {
11987
- font-size: 33px !important; }
11988
- .brz .brz-story .brz-fs-xs-im-33 {
11989
- font-size: 7.59% !important; }
11990
- .brz .brz-fs-xs-im-34 {
11991
- font-size: 34px !important; }
11992
- .brz .brz-story .brz-fs-xs-im-34 {
11993
- font-size: 7.82% !important; }
11994
- .brz .brz-fs-xs-im-35 {
11995
- font-size: 35px !important; }
11996
- .brz .brz-story .brz-fs-xs-im-35 {
11997
- font-size: 8.05% !important; }
11998
- .brz .brz-fs-xs-im-36 {
11999
- font-size: 36px !important; }
12000
- .brz .brz-story .brz-fs-xs-im-36 {
12001
- font-size: 8.28% !important; }
12002
- .brz .brz-fs-xs-im-37 {
12003
- font-size: 37px !important; }
12004
- .brz .brz-story .brz-fs-xs-im-37 {
12005
- font-size: 8.51% !important; }
12006
- .brz .brz-fs-xs-im-38 {
12007
- font-size: 38px !important; }
12008
- .brz .brz-story .brz-fs-xs-im-38 {
12009
- font-size: 8.74% !important; }
12010
- .brz .brz-fs-xs-im-39 {
12011
- font-size: 39px !important; }
12012
- .brz .brz-story .brz-fs-xs-im-39 {
12013
- font-size: 8.97% !important; }
12014
- .brz .brz-fs-xs-im-40 {
12015
- font-size: 40px !important; }
12016
- .brz .brz-story .brz-fs-xs-im-40 {
12017
- font-size: 9.2% !important; }
12018
- .brz .brz-fs-xs-im-41 {
12019
- font-size: 41px !important; }
12020
- .brz .brz-story .brz-fs-xs-im-41 {
12021
- font-size: 9.43% !important; }
12022
- .brz .brz-fs-xs-im-42 {
12023
- font-size: 42px !important; }
12024
- .brz .brz-story .brz-fs-xs-im-42 {
12025
- font-size: 9.66% !important; }
12026
- .brz .brz-fs-xs-im-43 {
12027
- font-size: 43px !important; }
12028
- .brz .brz-story .brz-fs-xs-im-43 {
12029
- font-size: 9.89% !important; }
12030
- .brz .brz-fs-xs-im-44 {
12031
- font-size: 44px !important; }
12032
- .brz .brz-story .brz-fs-xs-im-44 {
12033
- font-size: 10.12% !important; }
12034
- .brz .brz-fs-xs-im-45 {
12035
- font-size: 45px !important; }
12036
- .brz .brz-story .brz-fs-xs-im-45 {
12037
- font-size: 10.35% !important; }
12038
- .brz .brz-fs-xs-im-46 {
12039
- font-size: 46px !important; }
12040
- .brz .brz-story .brz-fs-xs-im-46 {
12041
- font-size: 10.58% !important; }
12042
- .brz .brz-fs-xs-im-47 {
12043
- font-size: 47px !important; }
12044
- .brz .brz-story .brz-fs-xs-im-47 {
12045
- font-size: 10.81% !important; }
12046
- .brz .brz-fs-xs-im-48 {
12047
- font-size: 48px !important; }
12048
- .brz .brz-story .brz-fs-xs-im-48 {
12049
- font-size: 11.04% !important; }
12050
- .brz .brz-fs-xs-im-49 {
12051
- font-size: 49px !important; }
12052
- .brz .brz-story .brz-fs-xs-im-49 {
12053
- font-size: 11.27% !important; }
12054
- .brz .brz-fs-xs-im-50 {
12055
- font-size: 50px !important; }
12056
- .brz .brz-story .brz-fs-xs-im-50 {
12057
- font-size: 11.5% !important; }
12058
- .brz .brz-fs-xs-im-51 {
12059
- font-size: 51px !important; }
12060
- .brz .brz-story .brz-fs-xs-im-51 {
12061
- font-size: 11.73% !important; }
12062
- .brz .brz-fs-xs-im-52 {
12063
- font-size: 52px !important; }
12064
- .brz .brz-story .brz-fs-xs-im-52 {
12065
- font-size: 11.96% !important; }
12066
- .brz .brz-fs-xs-im-53 {
12067
- font-size: 53px !important; }
12068
- .brz .brz-story .brz-fs-xs-im-53 {
12069
- font-size: 12.19% !important; }
12070
- .brz .brz-fs-xs-im-54 {
12071
- font-size: 54px !important; }
12072
- .brz .brz-story .brz-fs-xs-im-54 {
12073
- font-size: 12.42% !important; }
12074
- .brz .brz-fs-xs-im-55 {
12075
- font-size: 55px !important; }
12076
- .brz .brz-story .brz-fs-xs-im-55 {
12077
- font-size: 12.65% !important; }
12078
- .brz .brz-fs-xs-im-56 {
12079
- font-size: 56px !important; }
12080
- .brz .brz-story .brz-fs-xs-im-56 {
12081
- font-size: 12.88% !important; }
12082
- .brz .brz-fs-xs-im-57 {
12083
- font-size: 57px !important; }
12084
- .brz .brz-story .brz-fs-xs-im-57 {
12085
- font-size: 13.11% !important; }
12086
- .brz .brz-fs-xs-im-58 {
12087
- font-size: 58px !important; }
12088
- .brz .brz-story .brz-fs-xs-im-58 {
12089
- font-size: 13.34% !important; }
12090
- .brz .brz-fs-xs-im-59 {
12091
- font-size: 59px !important; }
12092
- .brz .brz-story .brz-fs-xs-im-59 {
12093
- font-size: 13.57% !important; }
12094
- .brz .brz-fs-xs-im-60 {
12095
- font-size: 60px !important; }
12096
- .brz .brz-story .brz-fs-xs-im-60 {
12097
- font-size: 13.8% !important; }
12098
- .brz .brz-fs-xs-im-61 {
12099
- font-size: 61px !important; }
12100
- .brz .brz-story .brz-fs-xs-im-61 {
12101
- font-size: 14.03% !important; }
12102
- .brz .brz-fs-xs-im-62 {
12103
- font-size: 62px !important; }
12104
- .brz .brz-story .brz-fs-xs-im-62 {
12105
- font-size: 14.26% !important; }
12106
- .brz .brz-fs-xs-im-63 {
12107
- font-size: 63px !important; }
12108
- .brz .brz-story .brz-fs-xs-im-63 {
12109
- font-size: 14.49% !important; }
12110
- .brz .brz-fs-xs-im-64 {
12111
- font-size: 64px !important; }
12112
- .brz .brz-story .brz-fs-xs-im-64 {
12113
- font-size: 14.72% !important; }
12114
- .brz .brz-fs-xs-im-65 {
12115
- font-size: 65px !important; }
12116
- .brz .brz-story .brz-fs-xs-im-65 {
12117
- font-size: 14.95% !important; }
12118
- .brz .brz-fs-xs-im-66 {
12119
- font-size: 66px !important; }
12120
- .brz .brz-story .brz-fs-xs-im-66 {
12121
- font-size: 15.18% !important; }
12122
- .brz .brz-fs-xs-im-67 {
12123
- font-size: 67px !important; }
12124
- .brz .brz-story .brz-fs-xs-im-67 {
12125
- font-size: 15.41% !important; }
12126
- .brz .brz-fs-xs-im-68 {
12127
- font-size: 68px !important; }
12128
- .brz .brz-story .brz-fs-xs-im-68 {
12129
- font-size: 15.64% !important; }
12130
- .brz .brz-fs-xs-im-69 {
12131
- font-size: 69px !important; }
12132
- .brz .brz-story .brz-fs-xs-im-69 {
12133
- font-size: 15.87% !important; }
12134
- .brz .brz-fs-xs-im-70 {
12135
- font-size: 70px !important; }
12136
- .brz .brz-story .brz-fs-xs-im-70 {
12137
- font-size: 16.1% !important; }
12138
- .brz .brz-fs-xs-im-71 {
12139
- font-size: 71px !important; }
12140
- .brz .brz-story .brz-fs-xs-im-71 {
12141
- font-size: 16.33% !important; }
12142
- .brz .brz-fs-xs-im-72 {
12143
- font-size: 72px !important; }
12144
- .brz .brz-story .brz-fs-xs-im-72 {
12145
- font-size: 16.56% !important; }
12146
- .brz .brz-fs-xs-im-73 {
12147
- font-size: 73px !important; }
12148
- .brz .brz-story .brz-fs-xs-im-73 {
12149
- font-size: 16.79% !important; }
12150
- .brz .brz-fs-xs-im-74 {
12151
- font-size: 74px !important; }
12152
- .brz .brz-story .brz-fs-xs-im-74 {
12153
- font-size: 17.02% !important; }
12154
- .brz .brz-fs-xs-im-75 {
12155
- font-size: 75px !important; }
12156
- .brz .brz-story .brz-fs-xs-im-75 {
12157
- font-size: 17.25% !important; }
12158
- .brz .brz-fs-xs-im-76 {
12159
- font-size: 76px !important; }
12160
- .brz .brz-story .brz-fs-xs-im-76 {
12161
- font-size: 17.48% !important; }
12162
- .brz .brz-fs-xs-im-77 {
12163
- font-size: 77px !important; }
12164
- .brz .brz-story .brz-fs-xs-im-77 {
12165
- font-size: 17.71% !important; }
12166
- .brz .brz-fs-xs-im-78 {
12167
- font-size: 78px !important; }
12168
- .brz .brz-story .brz-fs-xs-im-78 {
12169
- font-size: 17.94% !important; }
12170
- .brz .brz-fs-xs-im-79 {
12171
- font-size: 79px !important; }
12172
- .brz .brz-story .brz-fs-xs-im-79 {
12173
- font-size: 18.17% !important; }
12174
- .brz .brz-fs-xs-im-80 {
12175
- font-size: 80px !important; }
12176
- .brz .brz-story .brz-fs-xs-im-80 {
12177
- font-size: 18.4% !important; }
12178
- .brz .brz-fs-xs-im-81 {
12179
- font-size: 81px !important; }
12180
- .brz .brz-story .brz-fs-xs-im-81 {
12181
- font-size: 18.63% !important; }
12182
- .brz .brz-fs-xs-im-82 {
12183
- font-size: 82px !important; }
12184
- .brz .brz-story .brz-fs-xs-im-82 {
12185
- font-size: 18.86% !important; }
12186
- .brz .brz-fs-xs-im-83 {
12187
- font-size: 83px !important; }
12188
- .brz .brz-story .brz-fs-xs-im-83 {
12189
- font-size: 19.09% !important; }
12190
- .brz .brz-fs-xs-im-84 {
12191
- font-size: 84px !important; }
12192
- .brz .brz-story .brz-fs-xs-im-84 {
12193
- font-size: 19.32% !important; }
12194
- .brz .brz-fs-xs-im-85 {
12195
- font-size: 85px !important; }
12196
- .brz .brz-story .brz-fs-xs-im-85 {
12197
- font-size: 19.55% !important; }
12198
- .brz .brz-fs-xs-im-86 {
12199
- font-size: 86px !important; }
12200
- .brz .brz-story .brz-fs-xs-im-86 {
12201
- font-size: 19.78% !important; }
12202
- .brz .brz-fs-xs-im-87 {
12203
- font-size: 87px !important; }
12204
- .brz .brz-story .brz-fs-xs-im-87 {
12205
- font-size: 20.01% !important; }
12206
- .brz .brz-fs-xs-im-88 {
12207
- font-size: 88px !important; }
12208
- .brz .brz-story .brz-fs-xs-im-88 {
12209
- font-size: 20.24% !important; }
12210
- .brz .brz-fs-xs-im-89 {
12211
- font-size: 89px !important; }
12212
- .brz .brz-story .brz-fs-xs-im-89 {
12213
- font-size: 20.47% !important; }
12214
- .brz .brz-fs-xs-im-90 {
12215
- font-size: 90px !important; }
12216
- .brz .brz-story .brz-fs-xs-im-90 {
12217
- font-size: 20.7% !important; }
12218
- .brz .brz-fs-xs-im-91 {
12219
- font-size: 91px !important; }
12220
- .brz .brz-story .brz-fs-xs-im-91 {
12221
- font-size: 20.93% !important; }
12222
- .brz .brz-fs-xs-im-92 {
12223
- font-size: 92px !important; }
12224
- .brz .brz-story .brz-fs-xs-im-92 {
12225
- font-size: 21.16% !important; }
12226
- .brz .brz-fs-xs-im-93 {
12227
- font-size: 93px !important; }
12228
- .brz .brz-story .brz-fs-xs-im-93 {
12229
- font-size: 21.39% !important; }
12230
- .brz .brz-fs-xs-im-94 {
12231
- font-size: 94px !important; }
12232
- .brz .brz-story .brz-fs-xs-im-94 {
12233
- font-size: 21.62% !important; }
12234
- .brz .brz-fs-xs-im-95 {
12235
- font-size: 95px !important; }
12236
- .brz .brz-story .brz-fs-xs-im-95 {
12237
- font-size: 21.85% !important; }
12238
- .brz .brz-fs-xs-im-96 {
12239
- font-size: 96px !important; }
12240
- .brz .brz-story .brz-fs-xs-im-96 {
12241
- font-size: 22.08% !important; }
12242
- .brz .brz-fs-xs-im-97 {
12243
- font-size: 97px !important; }
12244
- .brz .brz-story .brz-fs-xs-im-97 {
12245
- font-size: 22.31% !important; }
12246
- .brz .brz-fs-xs-im-98 {
12247
- font-size: 98px !important; }
12248
- .brz .brz-story .brz-fs-xs-im-98 {
12249
- font-size: 22.54% !important; }
12250
- .brz .brz-fs-xs-im-99 {
12251
- font-size: 99px !important; }
12252
- .brz .brz-story .brz-fs-xs-im-99 {
12253
- font-size: 22.77% !important; }
12254
- .brz .brz-fs-xs-im-100 {
12255
- font-size: 100px !important; }
12256
- .brz .brz-story .brz-fs-xs-im-100 {
12257
- font-size: 23% !important; }
12258
- .brz .brz-fs-xs-im-101 {
12259
- font-size: 101px !important; }
12260
- .brz .brz-story .brz-fs-xs-im-101 {
12261
- font-size: 23.23% !important; }
12262
- .brz .brz-fs-xs-im-102 {
12263
- font-size: 102px !important; }
12264
- .brz .brz-story .brz-fs-xs-im-102 {
12265
- font-size: 23.46% !important; }
12266
- .brz .brz-fs-xs-im-103 {
12267
- font-size: 103px !important; }
12268
- .brz .brz-story .brz-fs-xs-im-103 {
12269
- font-size: 23.69% !important; }
12270
- .brz .brz-fs-xs-im-104 {
12271
- font-size: 104px !important; }
12272
- .brz .brz-story .brz-fs-xs-im-104 {
12273
- font-size: 23.92% !important; }
12274
- .brz .brz-fs-xs-im-105 {
12275
- font-size: 105px !important; }
12276
- .brz .brz-story .brz-fs-xs-im-105 {
12277
- font-size: 24.15% !important; }
12278
- .brz .brz-fs-xs-im-106 {
12279
- font-size: 106px !important; }
12280
- .brz .brz-story .brz-fs-xs-im-106 {
12281
- font-size: 24.38% !important; }
12282
- .brz .brz-fs-xs-im-107 {
12283
- font-size: 107px !important; }
12284
- .brz .brz-story .brz-fs-xs-im-107 {
12285
- font-size: 24.61% !important; }
12286
- .brz .brz-fs-xs-im-108 {
12287
- font-size: 108px !important; }
12288
- .brz .brz-story .brz-fs-xs-im-108 {
12289
- font-size: 24.84% !important; }
12290
- .brz .brz-fs-xs-im-109 {
12291
- font-size: 109px !important; }
12292
- .brz .brz-story .brz-fs-xs-im-109 {
12293
- font-size: 25.07% !important; }
12294
- .brz .brz-fs-xs-im-110 {
12295
- font-size: 110px !important; }
12296
- .brz .brz-story .brz-fs-xs-im-110 {
12297
- font-size: 25.3% !important; }
12298
- .brz .brz-fs-xs-im-111 {
12299
- font-size: 111px !important; }
12300
- .brz .brz-story .brz-fs-xs-im-111 {
12301
- font-size: 25.53% !important; }
12302
- .brz .brz-fs-xs-im-112 {
12303
- font-size: 112px !important; }
12304
- .brz .brz-story .brz-fs-xs-im-112 {
12305
- font-size: 25.76% !important; }
12306
- .brz .brz-fs-xs-im-113 {
12307
- font-size: 113px !important; }
12308
- .brz .brz-story .brz-fs-xs-im-113 {
12309
- font-size: 25.99% !important; }
12310
- .brz .brz-fs-xs-im-114 {
12311
- font-size: 114px !important; }
12312
- .brz .brz-story .brz-fs-xs-im-114 {
12313
- font-size: 26.22% !important; }
12314
- .brz .brz-fs-xs-im-115 {
12315
- font-size: 115px !important; }
12316
- .brz .brz-story .brz-fs-xs-im-115 {
12317
- font-size: 26.45% !important; }
12318
- .brz .brz-fs-xs-im-116 {
12319
- font-size: 116px !important; }
12320
- .brz .brz-story .brz-fs-xs-im-116 {
12321
- font-size: 26.68% !important; }
12322
- .brz .brz-fs-xs-im-117 {
12323
- font-size: 117px !important; }
12324
- .brz .brz-story .brz-fs-xs-im-117 {
12325
- font-size: 26.91% !important; }
12326
- .brz .brz-fs-xs-im-118 {
12327
- font-size: 118px !important; }
12328
- .brz .brz-story .brz-fs-xs-im-118 {
12329
- font-size: 27.14% !important; }
12330
- .brz .brz-fs-xs-im-119 {
12331
- font-size: 119px !important; }
12332
- .brz .brz-story .brz-fs-xs-im-119 {
12333
- font-size: 27.37% !important; }
12334
- .brz .brz-fs-xs-im-120 {
12335
- font-size: 120px !important; }
12336
- .brz .brz-story .brz-fs-xs-im-120 {
12337
- font-size: 27.6% !important; }
12338
- .brz .brz-fs-xs-im-121 {
12339
- font-size: 121px !important; }
12340
- .brz .brz-story .brz-fs-xs-im-121 {
12341
- font-size: 27.83% !important; }
12342
- .brz .brz-fs-xs-im-122 {
12343
- font-size: 122px !important; }
12344
- .brz .brz-story .brz-fs-xs-im-122 {
12345
- font-size: 28.06% !important; }
12346
- .brz .brz-fs-xs-im-123 {
12347
- font-size: 123px !important; }
12348
- .brz .brz-story .brz-fs-xs-im-123 {
12349
- font-size: 28.29% !important; }
12350
- .brz .brz-fs-xs-im-124 {
12351
- font-size: 124px !important; }
12352
- .brz .brz-story .brz-fs-xs-im-124 {
12353
- font-size: 28.52% !important; }
12354
- .brz .brz-fs-xs-im-125 {
12355
- font-size: 125px !important; }
12356
- .brz .brz-story .brz-fs-xs-im-125 {
12357
- font-size: 28.75% !important; }
12358
- .brz .brz-fs-xs-im-126 {
12359
- font-size: 126px !important; }
12360
- .brz .brz-story .brz-fs-xs-im-126 {
12361
- font-size: 28.98% !important; }
12362
- .brz .brz-fs-xs-im-127 {
12363
- font-size: 127px !important; }
12364
- .brz .brz-story .brz-fs-xs-im-127 {
12365
- font-size: 29.21% !important; }
12366
- .brz .brz-fs-xs-im-128 {
12367
- font-size: 128px !important; }
12368
- .brz .brz-story .brz-fs-xs-im-128 {
12369
- font-size: 29.44% !important; }
12370
- .brz .brz-fs-xs-im-129 {
12371
- font-size: 129px !important; }
12372
- .brz .brz-story .brz-fs-xs-im-129 {
12373
- font-size: 29.67% !important; }
12374
- .brz .brz-fs-xs-im-130 {
12375
- font-size: 130px !important; }
12376
- .brz .brz-story .brz-fs-xs-im-130 {
12377
- font-size: 29.9% !important; }
12378
- .brz .brz-fs-xs-im-131 {
12379
- font-size: 131px !important; }
12380
- .brz .brz-story .brz-fs-xs-im-131 {
12381
- font-size: 30.13% !important; }
12382
- .brz .brz-fs-xs-im-132 {
12383
- font-size: 132px !important; }
12384
- .brz .brz-story .brz-fs-xs-im-132 {
12385
- font-size: 30.36% !important; }
12386
- .brz .brz-fs-xs-im-133 {
12387
- font-size: 133px !important; }
12388
- .brz .brz-story .brz-fs-xs-im-133 {
12389
- font-size: 30.59% !important; }
12390
- .brz .brz-fs-xs-im-134 {
12391
- font-size: 134px !important; }
12392
- .brz .brz-story .brz-fs-xs-im-134 {
12393
- font-size: 30.82% !important; }
12394
- .brz .brz-fs-xs-im-135 {
12395
- font-size: 135px !important; }
12396
- .brz .brz-story .brz-fs-xs-im-135 {
12397
- font-size: 31.05% !important; }
12398
- .brz .brz-fs-xs-im-136 {
12399
- font-size: 136px !important; }
12400
- .brz .brz-story .brz-fs-xs-im-136 {
12401
- font-size: 31.28% !important; }
12402
- .brz .brz-fs-xs-im-137 {
12403
- font-size: 137px !important; }
12404
- .brz .brz-story .brz-fs-xs-im-137 {
12405
- font-size: 31.51% !important; }
12406
- .brz .brz-fs-xs-im-138 {
12407
- font-size: 138px !important; }
12408
- .brz .brz-story .brz-fs-xs-im-138 {
12409
- font-size: 31.74% !important; }
12410
- .brz .brz-fs-xs-im-139 {
12411
- font-size: 139px !important; }
12412
- .brz .brz-story .brz-fs-xs-im-139 {
12413
- font-size: 31.97% !important; }
12414
- .brz .brz-fs-xs-im-140 {
12415
- font-size: 140px !important; }
12416
- .brz .brz-story .brz-fs-xs-im-140 {
12417
- font-size: 32.2% !important; }
12418
- .brz .brz-fs-xs-im-141 {
12419
- font-size: 141px !important; }
12420
- .brz .brz-story .brz-fs-xs-im-141 {
12421
- font-size: 32.43% !important; }
12422
- .brz .brz-fs-xs-im-142 {
12423
- font-size: 142px !important; }
12424
- .brz .brz-story .brz-fs-xs-im-142 {
12425
- font-size: 32.66% !important; }
12426
- .brz .brz-fs-xs-im-143 {
12427
- font-size: 143px !important; }
12428
- .brz .brz-story .brz-fs-xs-im-143 {
12429
- font-size: 32.89% !important; }
12430
- .brz .brz-fs-xs-im-144 {
12431
- font-size: 144px !important; }
12432
- .brz .brz-story .brz-fs-xs-im-144 {
12433
- font-size: 33.12% !important; }
12434
- .brz .brz-fs-xs-im-145 {
12435
- font-size: 145px !important; }
12436
- .brz .brz-story .brz-fs-xs-im-145 {
12437
- font-size: 33.35% !important; }
12438
- .brz .brz-fs-xs-im-146 {
12439
- font-size: 146px !important; }
12440
- .brz .brz-story .brz-fs-xs-im-146 {
12441
- font-size: 33.58% !important; }
12442
- .brz .brz-fs-xs-im-147 {
12443
- font-size: 147px !important; }
12444
- .brz .brz-story .brz-fs-xs-im-147 {
12445
- font-size: 33.81% !important; }
12446
- .brz .brz-fs-xs-im-148 {
12447
- font-size: 148px !important; }
12448
- .brz .brz-story .brz-fs-xs-im-148 {
12449
- font-size: 34.04% !important; }
12450
- .brz .brz-fs-xs-im-149 {
12451
- font-size: 149px !important; }
12452
- .brz .brz-story .brz-fs-xs-im-149 {
12453
- font-size: 34.27% !important; }
12454
- .brz .brz-fs-xs-im-150 {
12455
- font-size: 150px !important; }
12456
- .brz .brz-story .brz-fs-xs-im-150 {
12457
- font-size: 34.5% !important; }
12458
- .brz .brz-fs-xs-im-151 {
12459
- font-size: 151px !important; }
12460
- .brz .brz-story .brz-fs-xs-im-151 {
12461
- font-size: 34.73% !important; }
12462
- .brz .brz-fs-xs-im-152 {
12463
- font-size: 152px !important; }
12464
- .brz .brz-story .brz-fs-xs-im-152 {
12465
- font-size: 34.96% !important; }
12466
- .brz .brz-fs-xs-im-153 {
12467
- font-size: 153px !important; }
12468
- .brz .brz-story .brz-fs-xs-im-153 {
12469
- font-size: 35.19% !important; }
12470
- .brz .brz-fs-xs-im-154 {
12471
- font-size: 154px !important; }
12472
- .brz .brz-story .brz-fs-xs-im-154 {
12473
- font-size: 35.42% !important; }
12474
- .brz .brz-fs-xs-im-155 {
12475
- font-size: 155px !important; }
12476
- .brz .brz-story .brz-fs-xs-im-155 {
12477
- font-size: 35.65% !important; }
12478
- .brz .brz-fs-xs-im-156 {
12479
- font-size: 156px !important; }
12480
- .brz .brz-story .brz-fs-xs-im-156 {
12481
- font-size: 35.88% !important; }
12482
- .brz .brz-fs-xs-im-157 {
12483
- font-size: 157px !important; }
12484
- .brz .brz-story .brz-fs-xs-im-157 {
12485
- font-size: 36.11% !important; }
12486
- .brz .brz-fs-xs-im-158 {
12487
- font-size: 158px !important; }
12488
- .brz .brz-story .brz-fs-xs-im-158 {
12489
- font-size: 36.34% !important; }
12490
- .brz .brz-fs-xs-im-159 {
12491
- font-size: 159px !important; }
12492
- .brz .brz-story .brz-fs-xs-im-159 {
12493
- font-size: 36.57% !important; }
12494
- .brz .brz-fs-xs-im-160 {
12495
- font-size: 160px !important; }
12496
- .brz .brz-story .brz-fs-xs-im-160 {
12497
- font-size: 36.8% !important; }
12498
- .brz .brz-fs-xs-im-161 {
12499
- font-size: 161px !important; }
12500
- .brz .brz-story .brz-fs-xs-im-161 {
12501
- font-size: 37.03% !important; }
12502
- .brz .brz-fs-xs-im-162 {
12503
- font-size: 162px !important; }
12504
- .brz .brz-story .brz-fs-xs-im-162 {
12505
- font-size: 37.26% !important; }
12506
- .brz .brz-fs-xs-im-163 {
12507
- font-size: 163px !important; }
12508
- .brz .brz-story .brz-fs-xs-im-163 {
12509
- font-size: 37.49% !important; }
12510
- .brz .brz-fs-xs-im-164 {
12511
- font-size: 164px !important; }
12512
- .brz .brz-story .brz-fs-xs-im-164 {
12513
- font-size: 37.72% !important; }
12514
- .brz .brz-fs-xs-im-165 {
12515
- font-size: 165px !important; }
12516
- .brz .brz-story .brz-fs-xs-im-165 {
12517
- font-size: 37.95% !important; }
12518
- .brz .brz-fs-xs-im-166 {
12519
- font-size: 166px !important; }
12520
- .brz .brz-story .brz-fs-xs-im-166 {
12521
- font-size: 38.18% !important; }
12522
- .brz .brz-fs-xs-im-167 {
12523
- font-size: 167px !important; }
12524
- .brz .brz-story .brz-fs-xs-im-167 {
12525
- font-size: 38.41% !important; }
12526
- .brz .brz-fs-xs-im-168 {
12527
- font-size: 168px !important; }
12528
- .brz .brz-story .brz-fs-xs-im-168 {
12529
- font-size: 38.64% !important; }
12530
- .brz .brz-fs-xs-im-169 {
12531
- font-size: 169px !important; }
12532
- .brz .brz-story .brz-fs-xs-im-169 {
12533
- font-size: 38.87% !important; }
12534
- .brz .brz-fs-xs-im-170 {
12535
- font-size: 170px !important; }
12536
- .brz .brz-story .brz-fs-xs-im-170 {
12537
- font-size: 39.1% !important; }
12538
- .brz .brz-fs-xs-im-171 {
12539
- font-size: 171px !important; }
12540
- .brz .brz-story .brz-fs-xs-im-171 {
12541
- font-size: 39.33% !important; }
12542
- .brz .brz-fs-xs-im-172 {
12543
- font-size: 172px !important; }
12544
- .brz .brz-story .brz-fs-xs-im-172 {
12545
- font-size: 39.56% !important; }
12546
- .brz .brz-fs-xs-im-173 {
12547
- font-size: 173px !important; }
12548
- .brz .brz-story .brz-fs-xs-im-173 {
12549
- font-size: 39.79% !important; }
12550
- .brz .brz-fs-xs-im-174 {
12551
- font-size: 174px !important; }
12552
- .brz .brz-story .brz-fs-xs-im-174 {
12553
- font-size: 40.02% !important; }
12554
- .brz .brz-fs-xs-im-175 {
12555
- font-size: 175px !important; }
12556
- .brz .brz-story .brz-fs-xs-im-175 {
12557
- font-size: 40.25% !important; }
12558
- .brz .brz-fs-xs-im-176 {
12559
- font-size: 176px !important; }
12560
- .brz .brz-story .brz-fs-xs-im-176 {
12561
- font-size: 40.48% !important; }
12562
- .brz .brz-fs-xs-im-177 {
12563
- font-size: 177px !important; }
12564
- .brz .brz-story .brz-fs-xs-im-177 {
12565
- font-size: 40.71% !important; }
12566
- .brz .brz-fs-xs-im-178 {
12567
- font-size: 178px !important; }
12568
- .brz .brz-story .brz-fs-xs-im-178 {
12569
- font-size: 40.94% !important; }
12570
- .brz .brz-fs-xs-im-179 {
12571
- font-size: 179px !important; }
12572
- .brz .brz-story .brz-fs-xs-im-179 {
12573
- font-size: 41.17% !important; }
12574
- .brz .brz-fs-xs-im-180 {
12575
- font-size: 180px !important; }
12576
- .brz .brz-story .brz-fs-xs-im-180 {
12577
- font-size: 41.4% !important; }
12578
- .brz .brz-fs-xs-im-181 {
12579
- font-size: 181px !important; }
12580
- .brz .brz-story .brz-fs-xs-im-181 {
12581
- font-size: 41.63% !important; }
12582
- .brz .brz-fs-xs-im-182 {
12583
- font-size: 182px !important; }
12584
- .brz .brz-story .brz-fs-xs-im-182 {
12585
- font-size: 41.86% !important; }
12586
- .brz .brz-fs-xs-im-183 {
12587
- font-size: 183px !important; }
12588
- .brz .brz-story .brz-fs-xs-im-183 {
12589
- font-size: 42.09% !important; }
12590
- .brz .brz-fs-xs-im-184 {
12591
- font-size: 184px !important; }
12592
- .brz .brz-story .brz-fs-xs-im-184 {
12593
- font-size: 42.32% !important; }
12594
- .brz .brz-fs-xs-im-185 {
12595
- font-size: 185px !important; }
12596
- .brz .brz-story .brz-fs-xs-im-185 {
12597
- font-size: 42.55% !important; }
12598
- .brz .brz-fs-xs-im-186 {
12599
- font-size: 186px !important; }
12600
- .brz .brz-story .brz-fs-xs-im-186 {
12601
- font-size: 42.78% !important; }
12602
- .brz .brz-fs-xs-im-187 {
12603
- font-size: 187px !important; }
12604
- .brz .brz-story .brz-fs-xs-im-187 {
12605
- font-size: 43.01% !important; }
12606
- .brz .brz-fs-xs-im-188 {
12607
- font-size: 188px !important; }
12608
- .brz .brz-story .brz-fs-xs-im-188 {
12609
- font-size: 43.24% !important; }
12610
- .brz .brz-fs-xs-im-189 {
12611
- font-size: 189px !important; }
12612
- .brz .brz-story .brz-fs-xs-im-189 {
12613
- font-size: 43.47% !important; }
12614
- .brz .brz-fs-xs-im-190 {
12615
- font-size: 190px !important; }
12616
- .brz .brz-story .brz-fs-xs-im-190 {
12617
- font-size: 43.7% !important; }
12618
- .brz .brz-fs-xs-im-191 {
12619
- font-size: 191px !important; }
12620
- .brz .brz-story .brz-fs-xs-im-191 {
12621
- font-size: 43.93% !important; }
12622
- .brz .brz-fs-xs-im-192 {
12623
- font-size: 192px !important; }
12624
- .brz .brz-story .brz-fs-xs-im-192 {
12625
- font-size: 44.16% !important; }
12626
- .brz .brz-fs-xs-im-193 {
12627
- font-size: 193px !important; }
12628
- .brz .brz-story .brz-fs-xs-im-193 {
12629
- font-size: 44.39% !important; }
12630
- .brz .brz-fs-xs-im-194 {
12631
- font-size: 194px !important; }
12632
- .brz .brz-story .brz-fs-xs-im-194 {
12633
- font-size: 44.62% !important; }
12634
- .brz .brz-fs-xs-im-195 {
12635
- font-size: 195px !important; }
12636
- .brz .brz-story .brz-fs-xs-im-195 {
12637
- font-size: 44.85% !important; }
12638
- .brz .brz-fs-xs-im-196 {
12639
- font-size: 196px !important; }
12640
- .brz .brz-story .brz-fs-xs-im-196 {
12641
- font-size: 45.08% !important; }
12642
- .brz .brz-fs-xs-im-197 {
12643
- font-size: 197px !important; }
12644
- .brz .brz-story .brz-fs-xs-im-197 {
12645
- font-size: 45.31% !important; }
12646
- .brz .brz-fs-xs-im-198 {
12647
- font-size: 198px !important; }
12648
- .brz .brz-story .brz-fs-xs-im-198 {
12649
- font-size: 45.54% !important; }
12650
- .brz .brz-fs-xs-im-199 {
12651
- font-size: 199px !important; }
12652
- .brz .brz-story .brz-fs-xs-im-199 {
12653
- font-size: 45.77% !important; }
12654
- .brz .brz-fs-xs-im-200 {
12655
- font-size: 200px !important; }
12656
- .brz .brz-story .brz-fs-xs-im-200 {
12657
- font-size: 46% !important; }
12658
- .brz .brz-fs-xs-im-201 {
12659
- font-size: 201px !important; }
12660
- .brz .brz-story .brz-fs-xs-im-201 {
12661
- font-size: 46.23% !important; }
12662
- .brz .brz-fs-xs-im-202 {
12663
- font-size: 202px !important; }
12664
- .brz .brz-story .brz-fs-xs-im-202 {
12665
- font-size: 46.46% !important; }
12666
- .brz .brz-fs-xs-im-203 {
12667
- font-size: 203px !important; }
12668
- .brz .brz-story .brz-fs-xs-im-203 {
12669
- font-size: 46.69% !important; }
12670
- .brz .brz-fs-xs-im-204 {
12671
- font-size: 204px !important; }
12672
- .brz .brz-story .brz-fs-xs-im-204 {
12673
- font-size: 46.92% !important; }
12674
- .brz .brz-fs-xs-im-205 {
12675
- font-size: 205px !important; }
12676
- .brz .brz-story .brz-fs-xs-im-205 {
12677
- font-size: 47.15% !important; }
12678
- .brz .brz-fs-xs-im-206 {
12679
- font-size: 206px !important; }
12680
- .brz .brz-story .brz-fs-xs-im-206 {
12681
- font-size: 47.38% !important; }
12682
- .brz .brz-fs-xs-im-207 {
12683
- font-size: 207px !important; }
12684
- .brz .brz-story .brz-fs-xs-im-207 {
12685
- font-size: 47.61% !important; }
12686
- .brz .brz-fs-xs-im-208 {
12687
- font-size: 208px !important; }
12688
- .brz .brz-story .brz-fs-xs-im-208 {
12689
- font-size: 47.84% !important; }
12690
- .brz .brz-fs-xs-im-209 {
12691
- font-size: 209px !important; }
12692
- .brz .brz-story .brz-fs-xs-im-209 {
12693
- font-size: 48.07% !important; }
12694
- .brz .brz-fs-xs-im-210 {
12695
- font-size: 210px !important; }
12696
- .brz .brz-story .brz-fs-xs-im-210 {
12697
- font-size: 48.3% !important; }
12698
- .brz .brz-fs-xs-im-211 {
12699
- font-size: 211px !important; }
12700
- .brz .brz-story .brz-fs-xs-im-211 {
12701
- font-size: 48.53% !important; }
12702
- .brz .brz-fs-xs-im-212 {
12703
- font-size: 212px !important; }
12704
- .brz .brz-story .brz-fs-xs-im-212 {
12705
- font-size: 48.76% !important; }
12706
- .brz .brz-fs-xs-im-213 {
12707
- font-size: 213px !important; }
12708
- .brz .brz-story .brz-fs-xs-im-213 {
12709
- font-size: 48.99% !important; }
12710
- .brz .brz-fs-xs-im-214 {
12711
- font-size: 214px !important; }
12712
- .brz .brz-story .brz-fs-xs-im-214 {
12713
- font-size: 49.22% !important; }
12714
- .brz .brz-fs-xs-im-215 {
12715
- font-size: 215px !important; }
12716
- .brz .brz-story .brz-fs-xs-im-215 {
12717
- font-size: 49.45% !important; }
12718
- .brz .brz-fs-xs-im-216 {
12719
- font-size: 216px !important; }
12720
- .brz .brz-story .brz-fs-xs-im-216 {
12721
- font-size: 49.68% !important; }
12722
- .brz .brz-fs-xs-im-217 {
12723
- font-size: 217px !important; }
12724
- .brz .brz-story .brz-fs-xs-im-217 {
12725
- font-size: 49.91% !important; }
12726
- .brz .brz-fs-xs-im-218 {
12727
- font-size: 218px !important; }
12728
- .brz .brz-story .brz-fs-xs-im-218 {
12729
- font-size: 50.14% !important; }
12730
- .brz .brz-fs-xs-im-219 {
12731
- font-size: 219px !important; }
12732
- .brz .brz-story .brz-fs-xs-im-219 {
12733
- font-size: 50.37% !important; }
12734
- .brz .brz-fs-xs-im-220 {
12735
- font-size: 220px !important; }
12736
- .brz .brz-story .brz-fs-xs-im-220 {
12737
- font-size: 50.6% !important; }
12738
- .brz .brz-fs-xs-im-221 {
12739
- font-size: 221px !important; }
12740
- .brz .brz-story .brz-fs-xs-im-221 {
12741
- font-size: 50.83% !important; }
12742
- .brz .brz-fs-xs-im-222 {
12743
- font-size: 222px !important; }
12744
- .brz .brz-story .brz-fs-xs-im-222 {
12745
- font-size: 51.06% !important; }
12746
- .brz .brz-fs-xs-im-223 {
12747
- font-size: 223px !important; }
12748
- .brz .brz-story .brz-fs-xs-im-223 {
12749
- font-size: 51.29% !important; }
12750
- .brz .brz-fs-xs-im-224 {
12751
- font-size: 224px !important; }
12752
- .brz .brz-story .brz-fs-xs-im-224 {
12753
- font-size: 51.52% !important; }
12754
- .brz .brz-fs-xs-im-225 {
12755
- font-size: 225px !important; }
12756
- .brz .brz-story .brz-fs-xs-im-225 {
12757
- font-size: 51.75% !important; }
12758
- .brz .brz-fs-xs-im-226 {
12759
- font-size: 226px !important; }
12760
- .brz .brz-story .brz-fs-xs-im-226 {
12761
- font-size: 51.98% !important; }
12762
- .brz .brz-fs-xs-im-227 {
12763
- font-size: 227px !important; }
12764
- .brz .brz-story .brz-fs-xs-im-227 {
12765
- font-size: 52.21% !important; }
12766
- .brz .brz-fs-xs-im-228 {
12767
- font-size: 228px !important; }
12768
- .brz .brz-story .brz-fs-xs-im-228 {
12769
- font-size: 52.44% !important; }
12770
- .brz .brz-fs-xs-im-229 {
12771
- font-size: 229px !important; }
12772
- .brz .brz-story .brz-fs-xs-im-229 {
12773
- font-size: 52.67% !important; }
12774
- .brz .brz-fs-xs-im-230 {
12775
- font-size: 230px !important; }
12776
- .brz .brz-story .brz-fs-xs-im-230 {
12777
- font-size: 52.9% !important; }
12778
- .brz .brz-fs-xs-im-231 {
12779
- font-size: 231px !important; }
12780
- .brz .brz-story .brz-fs-xs-im-231 {
12781
- font-size: 53.13% !important; }
12782
- .brz .brz-fs-xs-im-232 {
12783
- font-size: 232px !important; }
12784
- .brz .brz-story .brz-fs-xs-im-232 {
12785
- font-size: 53.36% !important; }
12786
- .brz .brz-fs-xs-im-233 {
12787
- font-size: 233px !important; }
12788
- .brz .brz-story .brz-fs-xs-im-233 {
12789
- font-size: 53.59% !important; }
12790
- .brz .brz-fs-xs-im-234 {
12791
- font-size: 234px !important; }
12792
- .brz .brz-story .brz-fs-xs-im-234 {
12793
- font-size: 53.82% !important; }
12794
- .brz .brz-fs-xs-im-235 {
12795
- font-size: 235px !important; }
12796
- .brz .brz-story .brz-fs-xs-im-235 {
12797
- font-size: 54.05% !important; }
12798
- .brz .brz-fs-xs-im-236 {
12799
- font-size: 236px !important; }
12800
- .brz .brz-story .brz-fs-xs-im-236 {
12801
- font-size: 54.28% !important; }
12802
- .brz .brz-fs-xs-im-237 {
12803
- font-size: 237px !important; }
12804
- .brz .brz-story .brz-fs-xs-im-237 {
12805
- font-size: 54.51% !important; }
12806
- .brz .brz-fs-xs-im-238 {
12807
- font-size: 238px !important; }
12808
- .brz .brz-story .brz-fs-xs-im-238 {
12809
- font-size: 54.74% !important; }
12810
- .brz .brz-fs-xs-im-239 {
12811
- font-size: 239px !important; }
12812
- .brz .brz-story .brz-fs-xs-im-239 {
12813
- font-size: 54.97% !important; }
12814
- .brz .brz-fs-xs-im-240 {
12815
- font-size: 240px !important; }
12816
- .brz .brz-story .brz-fs-xs-im-240 {
12817
- font-size: 55.2% !important; }
12818
- .brz .brz-fs-xs-im-241 {
12819
- font-size: 241px !important; }
12820
- .brz .brz-story .brz-fs-xs-im-241 {
12821
- font-size: 55.43% !important; }
12822
- .brz .brz-fs-xs-im-242 {
12823
- font-size: 242px !important; }
12824
- .brz .brz-story .brz-fs-xs-im-242 {
12825
- font-size: 55.66% !important; }
12826
- .brz .brz-fs-xs-im-243 {
12827
- font-size: 243px !important; }
12828
- .brz .brz-story .brz-fs-xs-im-243 {
12829
- font-size: 55.89% !important; }
12830
- .brz .brz-fs-xs-im-244 {
12831
- font-size: 244px !important; }
12832
- .brz .brz-story .brz-fs-xs-im-244 {
12833
- font-size: 56.12% !important; }
12834
- .brz .brz-fs-xs-im-245 {
12835
- font-size: 245px !important; }
12836
- .brz .brz-story .brz-fs-xs-im-245 {
12837
- font-size: 56.35% !important; }
12838
- .brz .brz-fs-xs-im-246 {
12839
- font-size: 246px !important; }
12840
- .brz .brz-story .brz-fs-xs-im-246 {
12841
- font-size: 56.58% !important; }
12842
- .brz .brz-fs-xs-im-247 {
12843
- font-size: 247px !important; }
12844
- .brz .brz-story .brz-fs-xs-im-247 {
12845
- font-size: 56.81% !important; }
12846
- .brz .brz-fs-xs-im-248 {
12847
- font-size: 248px !important; }
12848
- .brz .brz-story .brz-fs-xs-im-248 {
12849
- font-size: 57.04% !important; }
12850
- .brz .brz-fs-xs-im-249 {
12851
- font-size: 249px !important; }
12852
- .brz .brz-story .brz-fs-xs-im-249 {
12853
- font-size: 57.27% !important; }
12854
- .brz .brz-fs-xs-im-250 {
12855
- font-size: 250px !important; }
12856
- .brz .brz-story .brz-fs-xs-im-250 {
12857
- font-size: 57.5% !important; }
12858
- .brz .brz-fs-xs-im-251 {
12859
- font-size: 251px !important; }
12860
- .brz .brz-story .brz-fs-xs-im-251 {
12861
- font-size: 57.73% !important; }
12862
- .brz .brz-fs-xs-im-252 {
12863
- font-size: 252px !important; }
12864
- .brz .brz-story .brz-fs-xs-im-252 {
12865
- font-size: 57.96% !important; }
12866
- .brz .brz-fs-xs-im-253 {
12867
- font-size: 253px !important; }
12868
- .brz .brz-story .brz-fs-xs-im-253 {
12869
- font-size: 58.19% !important; }
12870
- .brz .brz-fs-xs-im-254 {
12871
- font-size: 254px !important; }
12872
- .brz .brz-story .brz-fs-xs-im-254 {
12873
- font-size: 58.42% !important; }
12874
- .brz .brz-fs-xs-im-255 {
12875
- font-size: 255px !important; }
12876
- .brz .brz-story .brz-fs-xs-im-255 {
12877
- font-size: 58.65% !important; }
12878
- .brz .brz-fs-xs-im-256 {
12879
- font-size: 256px !important; }
12880
- .brz .brz-story .brz-fs-xs-im-256 {
12881
- font-size: 58.88% !important; }
12882
- .brz .brz-fs-xs-im-257 {
12883
- font-size: 257px !important; }
12884
- .brz .brz-story .brz-fs-xs-im-257 {
12885
- font-size: 59.11% !important; }
12886
- .brz .brz-fs-xs-im-258 {
12887
- font-size: 258px !important; }
12888
- .brz .brz-story .brz-fs-xs-im-258 {
12889
- font-size: 59.34% !important; }
12890
- .brz .brz-fs-xs-im-259 {
12891
- font-size: 259px !important; }
12892
- .brz .brz-story .brz-fs-xs-im-259 {
12893
- font-size: 59.57% !important; }
12894
- .brz .brz-fs-xs-im-260 {
12895
- font-size: 260px !important; }
12896
- .brz .brz-story .brz-fs-xs-im-260 {
12897
- font-size: 59.8% !important; }
12898
- .brz .brz-fs-xs-im-261 {
12899
- font-size: 261px !important; }
12900
- .brz .brz-story .brz-fs-xs-im-261 {
12901
- font-size: 60.03% !important; }
12902
- .brz .brz-fs-xs-im-262 {
12903
- font-size: 262px !important; }
12904
- .brz .brz-story .brz-fs-xs-im-262 {
12905
- font-size: 60.26% !important; }
12906
- .brz .brz-fs-xs-im-263 {
12907
- font-size: 263px !important; }
12908
- .brz .brz-story .brz-fs-xs-im-263 {
12909
- font-size: 60.49% !important; }
12910
- .brz .brz-fs-xs-im-264 {
12911
- font-size: 264px !important; }
12912
- .brz .brz-story .brz-fs-xs-im-264 {
12913
- font-size: 60.72% !important; }
12914
- .brz .brz-fs-xs-im-265 {
12915
- font-size: 265px !important; }
12916
- .brz .brz-story .brz-fs-xs-im-265 {
12917
- font-size: 60.95% !important; }
12918
- .brz .brz-fs-xs-im-266 {
12919
- font-size: 266px !important; }
12920
- .brz .brz-story .brz-fs-xs-im-266 {
12921
- font-size: 61.18% !important; }
12922
- .brz .brz-fs-xs-im-267 {
12923
- font-size: 267px !important; }
12924
- .brz .brz-story .brz-fs-xs-im-267 {
12925
- font-size: 61.41% !important; }
12926
- .brz .brz-fs-xs-im-268 {
12927
- font-size: 268px !important; }
12928
- .brz .brz-story .brz-fs-xs-im-268 {
12929
- font-size: 61.64% !important; }
12930
- .brz .brz-fs-xs-im-269 {
12931
- font-size: 269px !important; }
12932
- .brz .brz-story .brz-fs-xs-im-269 {
12933
- font-size: 61.87% !important; }
12934
- .brz .brz-fs-xs-im-270 {
12935
- font-size: 270px !important; }
12936
- .brz .brz-story .brz-fs-xs-im-270 {
12937
- font-size: 62.1% !important; }
12938
- .brz .brz-fs-xs-im-271 {
12939
- font-size: 271px !important; }
12940
- .brz .brz-story .brz-fs-xs-im-271 {
12941
- font-size: 62.33% !important; }
12942
- .brz .brz-fs-xs-im-272 {
12943
- font-size: 272px !important; }
12944
- .brz .brz-story .brz-fs-xs-im-272 {
12945
- font-size: 62.56% !important; }
12946
- .brz .brz-fs-xs-im-273 {
12947
- font-size: 273px !important; }
12948
- .brz .brz-story .brz-fs-xs-im-273 {
12949
- font-size: 62.79% !important; }
12950
- .brz .brz-fs-xs-im-274 {
12951
- font-size: 274px !important; }
12952
- .brz .brz-story .brz-fs-xs-im-274 {
12953
- font-size: 63.02% !important; }
12954
- .brz .brz-fs-xs-im-275 {
12955
- font-size: 275px !important; }
12956
- .brz .brz-story .brz-fs-xs-im-275 {
12957
- font-size: 63.25% !important; }
12958
- .brz .brz-fs-xs-im-276 {
12959
- font-size: 276px !important; }
12960
- .brz .brz-story .brz-fs-xs-im-276 {
12961
- font-size: 63.48% !important; }
12962
- .brz .brz-fs-xs-im-277 {
12963
- font-size: 277px !important; }
12964
- .brz .brz-story .brz-fs-xs-im-277 {
12965
- font-size: 63.71% !important; }
12966
- .brz .brz-fs-xs-im-278 {
12967
- font-size: 278px !important; }
12968
- .brz .brz-story .brz-fs-xs-im-278 {
12969
- font-size: 63.94% !important; }
12970
- .brz .brz-fs-xs-im-279 {
12971
- font-size: 279px !important; }
12972
- .brz .brz-story .brz-fs-xs-im-279 {
12973
- font-size: 64.17% !important; }
12974
- .brz .brz-fs-xs-im-280 {
12975
- font-size: 280px !important; }
12976
- .brz .brz-story .brz-fs-xs-im-280 {
12977
- font-size: 64.4% !important; }
12978
- .brz .brz-fs-xs-im-281 {
12979
- font-size: 281px !important; }
12980
- .brz .brz-story .brz-fs-xs-im-281 {
12981
- font-size: 64.63% !important; }
12982
- .brz .brz-fs-xs-im-282 {
12983
- font-size: 282px !important; }
12984
- .brz .brz-story .brz-fs-xs-im-282 {
12985
- font-size: 64.86% !important; }
12986
- .brz .brz-fs-xs-im-283 {
12987
- font-size: 283px !important; }
12988
- .brz .brz-story .brz-fs-xs-im-283 {
12989
- font-size: 65.09% !important; }
12990
- .brz .brz-fs-xs-im-284 {
12991
- font-size: 284px !important; }
12992
- .brz .brz-story .brz-fs-xs-im-284 {
12993
- font-size: 65.32% !important; }
12994
- .brz .brz-fs-xs-im-285 {
12995
- font-size: 285px !important; }
12996
- .brz .brz-story .brz-fs-xs-im-285 {
12997
- font-size: 65.55% !important; }
12998
- .brz .brz-fs-xs-im-286 {
12999
- font-size: 286px !important; }
13000
- .brz .brz-story .brz-fs-xs-im-286 {
13001
- font-size: 65.78% !important; }
13002
- .brz .brz-fs-xs-im-287 {
13003
- font-size: 287px !important; }
13004
- .brz .brz-story .brz-fs-xs-im-287 {
13005
- font-size: 66.01% !important; }
13006
- .brz .brz-fs-xs-im-288 {
13007
- font-size: 288px !important; }
13008
- .brz .brz-story .brz-fs-xs-im-288 {
13009
- font-size: 66.24% !important; }
13010
- .brz .brz-fs-xs-im-289 {
13011
- font-size: 289px !important; }
13012
- .brz .brz-story .brz-fs-xs-im-289 {
13013
- font-size: 66.47% !important; }
13014
- .brz .brz-fs-xs-im-290 {
13015
- font-size: 290px !important; }
13016
- .brz .brz-story .brz-fs-xs-im-290 {
13017
- font-size: 66.7% !important; }
13018
- .brz .brz-fs-xs-im-291 {
13019
- font-size: 291px !important; }
13020
- .brz .brz-story .brz-fs-xs-im-291 {
13021
- font-size: 66.93% !important; }
13022
- .brz .brz-fs-xs-im-292 {
13023
- font-size: 292px !important; }
13024
- .brz .brz-story .brz-fs-xs-im-292 {
13025
- font-size: 67.16% !important; }
13026
- .brz .brz-fs-xs-im-293 {
13027
- font-size: 293px !important; }
13028
- .brz .brz-story .brz-fs-xs-im-293 {
13029
- font-size: 67.39% !important; }
13030
- .brz .brz-fs-xs-im-294 {
13031
- font-size: 294px !important; }
13032
- .brz .brz-story .brz-fs-xs-im-294 {
13033
- font-size: 67.62% !important; }
13034
- .brz .brz-fs-xs-im-295 {
13035
- font-size: 295px !important; }
13036
- .brz .brz-story .brz-fs-xs-im-295 {
13037
- font-size: 67.85% !important; }
13038
- .brz .brz-fs-xs-im-296 {
13039
- font-size: 296px !important; }
13040
- .brz .brz-story .brz-fs-xs-im-296 {
13041
- font-size: 68.08% !important; }
13042
- .brz .brz-fs-xs-im-297 {
13043
- font-size: 297px !important; }
13044
- .brz .brz-story .brz-fs-xs-im-297 {
13045
- font-size: 68.31% !important; }
13046
- .brz .brz-fs-xs-im-298 {
13047
- font-size: 298px !important; }
13048
- .brz .brz-story .brz-fs-xs-im-298 {
13049
- font-size: 68.54% !important; }
13050
- .brz .brz-fs-xs-im-299 {
13051
- font-size: 299px !important; }
13052
- .brz .brz-story .brz-fs-xs-im-299 {
13053
- font-size: 68.77% !important; }
13054
- .brz .brz-fs-xs-im-300 {
13055
- font-size: 300px !important; }
13056
- .brz .brz-story .brz-fs-xs-im-300 {
13057
- font-size: 69% !important; }
13058
- .brz .brz-lh-xs-im-1 {
13059
- line-height: 1em !important; }
13060
- .brz .brz-lh-xs-im-1_1 {
13061
- line-height: 1.1em !important; }
13062
- .brz .brz-lh-xs-im-1_2 {
13063
- line-height: 1.2em !important; }
13064
- .brz .brz-lh-xs-im-1_3 {
13065
- line-height: 1.3em !important; }
13066
- .brz .brz-lh-xs-im-1_4 {
13067
- line-height: 1.4em !important; }
13068
- .brz .brz-lh-xs-im-1_5 {
13069
- line-height: 1.5em !important; }
13070
- .brz .brz-lh-xs-im-1_6 {
13071
- line-height: 1.6em !important; }
13072
- .brz .brz-lh-xs-im-1_7 {
13073
- line-height: 1.7em !important; }
13074
- .brz .brz-lh-xs-im-1_8 {
13075
- line-height: 1.8em !important; }
13076
- .brz .brz-lh-xs-im-1_9 {
13077
- line-height: 1.9em !important; }
13078
- .brz .brz-lh-xs-im-2 {
13079
- line-height: 2em !important; }
13080
- .brz .brz-lh-xs-im-2_1 {
13081
- line-height: 2.1em !important; }
13082
- .brz .brz-lh-xs-im-2_2 {
13083
- line-height: 2.2em !important; }
13084
- .brz .brz-lh-xs-im-2_3 {
13085
- line-height: 2.3em !important; }
13086
- .brz .brz-lh-xs-im-2_4 {
13087
- line-height: 2.4em !important; }
13088
- .brz .brz-lh-xs-im-2_5 {
13089
- line-height: 2.5em !important; }
13090
- .brz .brz-lh-xs-im-2_6 {
13091
- line-height: 2.6em !important; }
13092
- .brz .brz-lh-xs-im-2_7 {
13093
- line-height: 2.7em !important; }
13094
- .brz .brz-lh-xs-im-2_8 {
13095
- line-height: 2.8em !important; }
13096
- .brz .brz-lh-xs-im-2_9 {
13097
- line-height: 2.9em !important; }
13098
- .brz .brz-lh-xs-im-3 {
13099
- line-height: 3em !important; }
13100
- .brz .brz-lh-xs-im-3_1 {
13101
- line-height: 3.1em !important; }
13102
- .brz .brz-lh-xs-im-3_2 {
13103
- line-height: 3.2em !important; }
13104
- .brz .brz-lh-xs-im-3_3 {
13105
- line-height: 3.3em !important; }
13106
- .brz .brz-lh-xs-im-3_4 {
13107
- line-height: 3.4em !important; }
13108
- .brz .brz-lh-xs-im-3_5 {
13109
- line-height: 3.5em !important; }
13110
- .brz .brz-lh-xs-im-3_6 {
13111
- line-height: 3.6em !important; }
13112
- .brz .brz-lh-xs-im-3_7 {
13113
- line-height: 3.7em !important; }
13114
- .brz .brz-lh-xs-im-3_8 {
13115
- line-height: 3.8em !important; }
13116
- .brz .brz-lh-xs-im-3_9 {
13117
- line-height: 3.9em !important; }
13118
- .brz .brz-lh-xs-im-4 {
13119
- line-height: 4em !important; }
13120
- .brz .brz-lh-xs-im-4_1 {
13121
- line-height: 4.1em !important; }
13122
- .brz .brz-lh-xs-im-4_2 {
13123
- line-height: 4.2em !important; }
13124
- .brz .brz-lh-xs-im-4_3 {
13125
- line-height: 4.3em !important; }
13126
- .brz .brz-lh-xs-im-4_4 {
13127
- line-height: 4.4em !important; }
13128
- .brz .brz-lh-xs-im-4_5 {
13129
- line-height: 4.5em !important; }
13130
- .brz .brz-lh-xs-im-4_6 {
13131
- line-height: 4.6em !important; }
13132
- .brz .brz-lh-xs-im-4_7 {
13133
- line-height: 4.7em !important; }
13134
- .brz .brz-lh-xs-im-4_8 {
13135
- line-height: 4.8em !important; }
13136
- .brz .brz-lh-xs-im-4_9 {
13137
- line-height: 4.9em !important; }
13138
- .brz .brz-lh-xs-im-5 {
13139
- line-height: 5em !important; }
13140
- .brz .brz-lh-xs-im-5_1 {
13141
- line-height: 5.1em !important; }
13142
- .brz .brz-lh-xs-im-5_2 {
13143
- line-height: 5.2em !important; }
13144
- .brz .brz-lh-xs-im-5_3 {
13145
- line-height: 5.3em !important; }
13146
- .brz .brz-lh-xs-im-5_4 {
13147
- line-height: 5.4em !important; }
13148
- .brz .brz-lh-xs-im-5_5 {
13149
- line-height: 5.5em !important; }
13150
- .brz .brz-lh-xs-im-5_6 {
13151
- line-height: 5.6em !important; }
13152
- .brz .brz-lh-xs-im-5_7 {
13153
- line-height: 5.7em !important; }
13154
- .brz .brz-lh-xs-im-5_8 {
13155
- line-height: 5.8em !important; }
13156
- .brz .brz-lh-xs-im-5_9 {
13157
- line-height: 5.9em !important; }
13158
- .brz .brz-fw-xs-im-100 {
13159
- font-weight: 100 !important; }
13160
- .brz .brz-fw-xs-im-200 {
13161
- font-weight: 200 !important; }
13162
- .brz .brz-fw-xs-im-300 {
13163
- font-weight: 300 !important; }
13164
- .brz .brz-fw-xs-im-400 {
13165
- font-weight: 400 !important; }
13166
- .brz .brz-fw-xs-im-500 {
13167
- font-weight: 500 !important; }
13168
- .brz .brz-fw-xs-im-600 {
13169
- font-weight: 600 !important; }
13170
- .brz .brz-fw-xs-im-700 {
13171
- font-weight: 700 !important; }
13172
- .brz .brz-fw-xs-im-800 {
13173
- font-weight: 800 !important; }
13174
- .brz .brz-fw-xs-im-900 {
13175
- font-weight: 900 !important; }
13176
- .brz .brz-fw-xs-im-1000 {
13177
- font-weight: 1000 !important; }
13178
- .brz .brz-fw-xs-im-1100 {
13179
- font-weight: 1100 !important; }
13180
- .brz .brz-fw-xs-im-1200 {
13181
- font-weight: 1200 !important; }
13182
- .brz .brz-fw-xs-im-1300 {
13183
- font-weight: 1300 !important; }
13184
- .brz .brz-fw-xs-im-1400 {
13185
- font-weight: 1400 !important; }
13186
- .brz .brz-fw-xs-im-1500 {
13187
- font-weight: 1500 !important; }
13188
- .brz .brz-fw-xs-im-1600 {
13189
- font-weight: 1600 !important; }
13190
- .brz .brz-fw-xs-im-1700 {
13191
- font-weight: 1700 !important; }
13192
- .brz .brz-fw-xs-im-1800 {
13193
- font-weight: 1800 !important; }
13194
- .brz .brz-fw-xs-im-1900 {
13195
- font-weight: 1900 !important; }
13196
- .brz .brz-fw-xs-im-2000 {
13197
- font-weight: 2000 !important; }
13198
- .brz .brz-ls-xs-im-m_20 {
13199
- letter-spacing: -20px !important; }
13200
- .brz .brz-ls-xs-im-m_20_5 {
13201
- letter-spacing: -20.5px !important; }
13202
- .brz .brz-ls-xs-im-m_19 {
13203
- letter-spacing: -19px !important; }
13204
- .brz .brz-ls-xs-im-m_19_5 {
13205
- letter-spacing: -19.5px !important; }
13206
- .brz .brz-ls-xs-im-m_18 {
13207
- letter-spacing: -18px !important; }
13208
- .brz .brz-ls-xs-im-m_18_5 {
13209
- letter-spacing: -18.5px !important; }
13210
- .brz .brz-ls-xs-im-m_17 {
13211
- letter-spacing: -17px !important; }
13212
- .brz .brz-ls-xs-im-m_17_5 {
13213
- letter-spacing: -17.5px !important; }
13214
- .brz .brz-ls-xs-im-m_16 {
13215
- letter-spacing: -16px !important; }
13216
- .brz .brz-ls-xs-im-m_16_5 {
13217
- letter-spacing: -16.5px !important; }
13218
- .brz .brz-ls-xs-im-m_15 {
13219
- letter-spacing: -15px !important; }
13220
- .brz .brz-ls-xs-im-m_15_5 {
13221
- letter-spacing: -15.5px !important; }
13222
- .brz .brz-ls-xs-im-m_14 {
13223
- letter-spacing: -14px !important; }
13224
- .brz .brz-ls-xs-im-m_14_5 {
13225
- letter-spacing: -14.5px !important; }
13226
- .brz .brz-ls-xs-im-m_13 {
13227
- letter-spacing: -13px !important; }
13228
- .brz .brz-ls-xs-im-m_13_5 {
13229
- letter-spacing: -13.5px !important; }
13230
- .brz .brz-ls-xs-im-m_12 {
13231
- letter-spacing: -12px !important; }
13232
- .brz .brz-ls-xs-im-m_12_5 {
13233
- letter-spacing: -12.5px !important; }
13234
- .brz .brz-ls-xs-im-m_11 {
13235
- letter-spacing: -11px !important; }
13236
- .brz .brz-ls-xs-im-m_11_5 {
13237
- letter-spacing: -11.5px !important; }
13238
- .brz .brz-ls-xs-im-m_10 {
13239
- letter-spacing: -10px !important; }
13240
- .brz .brz-ls-xs-im-m_10_5 {
13241
- letter-spacing: -10.5px !important; }
13242
- .brz .brz-ls-xs-im-m_9 {
13243
- letter-spacing: -9px !important; }
13244
- .brz .brz-ls-xs-im-m_9_5 {
13245
- letter-spacing: -9.5px !important; }
13246
- .brz .brz-ls-xs-im-m_8 {
13247
- letter-spacing: -8px !important; }
13248
- .brz .brz-ls-xs-im-m_8_5 {
13249
- letter-spacing: -8.5px !important; }
13250
- .brz .brz-ls-xs-im-m_7 {
13251
- letter-spacing: -7px !important; }
13252
- .brz .brz-ls-xs-im-m_7_5 {
13253
- letter-spacing: -7.5px !important; }
13254
- .brz .brz-ls-xs-im-m_6 {
13255
- letter-spacing: -6px !important; }
13256
- .brz .brz-ls-xs-im-m_6_5 {
13257
- letter-spacing: -6.5px !important; }
13258
- .brz .brz-ls-xs-im-m_5 {
13259
- letter-spacing: -5px !important; }
13260
- .brz .brz-ls-xs-im-m_5_5 {
13261
- letter-spacing: -5.5px !important; }
13262
- .brz .brz-ls-xs-im-m_4 {
13263
- letter-spacing: -4px !important; }
13264
- .brz .brz-ls-xs-im-m_4_5 {
13265
- letter-spacing: -4.5px !important; }
13266
- .brz .brz-ls-xs-im-m_3 {
13267
- letter-spacing: -3px !important; }
13268
- .brz .brz-ls-xs-im-m_3_5 {
13269
- letter-spacing: -3.5px !important; }
13270
- .brz .brz-ls-xs-im-m_2 {
13271
- letter-spacing: -2px !important; }
13272
- .brz .brz-ls-xs-im-m_2_5 {
13273
- letter-spacing: -2.5px !important; }
13274
- .brz .brz-ls-xs-im-m_1 {
13275
- letter-spacing: -1px !important; }
13276
- .brz .brz-ls-xs-im-m_1_5 {
13277
- letter-spacing: -1.5px !important; }
13278
- .brz .brz-ls-xs-im-m_0 {
13279
- letter-spacing: 0px !important; }
13280
- .brz .brz-ls-xs-im-m_0_5 {
13281
- letter-spacing: -0.5px !important; }
13282
- .brz .brz-ls-xs-im-0 {
13283
- letter-spacing: 0px !important; }
13284
- .brz .brz-ls-xs-im-0_5 {
13285
- letter-spacing: 0.5px !important; }
13286
- .brz .brz-ls-xs-im-1 {
13287
- letter-spacing: 1px !important; }
13288
- .brz .brz-ls-xs-im-1_5 {
13289
- letter-spacing: 1.5px !important; }
13290
- .brz .brz-ls-xs-im-2 {
13291
- letter-spacing: 2px !important; }
13292
- .brz .brz-ls-xs-im-2_5 {
13293
- letter-spacing: 2.5px !important; }
13294
- .brz .brz-ls-xs-im-3 {
13295
- letter-spacing: 3px !important; }
13296
- .brz .brz-ls-xs-im-3_5 {
13297
- letter-spacing: 3.5px !important; }
13298
- .brz .brz-ls-xs-im-4 {
13299
- letter-spacing: 4px !important; }
13300
- .brz .brz-ls-xs-im-4_5 {
13301
- letter-spacing: 4.5px !important; }
13302
- .brz .brz-ls-xs-im-5 {
13303
- letter-spacing: 5px !important; }
13304
- .brz .brz-ls-xs-im-5_5 {
13305
- letter-spacing: 5.5px !important; }
13306
- .brz .brz-ls-xs-im-6 {
13307
- letter-spacing: 6px !important; }
13308
- .brz .brz-ls-xs-im-6_5 {
13309
- letter-spacing: 6.5px !important; }
13310
- .brz .brz-ls-xs-im-7 {
13311
- letter-spacing: 7px !important; }
13312
- .brz .brz-ls-xs-im-7_5 {
13313
- letter-spacing: 7.5px !important; }
13314
- .brz .brz-ls-xs-im-8 {
13315
- letter-spacing: 8px !important; }
13316
- .brz .brz-ls-xs-im-8_5 {
13317
- letter-spacing: 8.5px !important; }
13318
- .brz .brz-ls-xs-im-9 {
13319
- letter-spacing: 9px !important; }
13320
- .brz .brz-ls-xs-im-9_5 {
13321
- letter-spacing: 9.5px !important; }
13322
- .brz .brz-ls-xs-im-10 {
13323
- letter-spacing: 10px !important; }
13324
- .brz .brz-ls-xs-im-10_5 {
13325
- letter-spacing: 10.5px !important; }
13326
- .brz .brz-ls-xs-im-11 {
13327
- letter-spacing: 11px !important; }
13328
- .brz .brz-ls-xs-im-11_5 {
13329
- letter-spacing: 11.5px !important; }
13330
- .brz .brz-ls-xs-im-12 {
13331
- letter-spacing: 12px !important; }
13332
- .brz .brz-ls-xs-im-12_5 {
13333
- letter-spacing: 12.5px !important; }
13334
- .brz .brz-ls-xs-im-13 {
13335
- letter-spacing: 13px !important; }
13336
- .brz .brz-ls-xs-im-13_5 {
13337
- letter-spacing: 13.5px !important; }
13338
- .brz .brz-ls-xs-im-14 {
13339
- letter-spacing: 14px !important; }
13340
- .brz .brz-ls-xs-im-14_5 {
13341
- letter-spacing: 14.5px !important; }
13342
- .brz .brz-ls-xs-im-15 {
13343
- letter-spacing: 15px !important; }
13344
- .brz .brz-ls-xs-im-15_5 {
13345
- letter-spacing: 15.5px !important; }
13346
- .brz .brz-ls-xs-im-16 {
13347
- letter-spacing: 16px !important; }
13348
- .brz .brz-ls-xs-im-16_5 {
13349
- letter-spacing: 16.5px !important; }
13350
- .brz .brz-ls-xs-im-17 {
13351
- letter-spacing: 17px !important; }
13352
- .brz .brz-ls-xs-im-17_5 {
13353
- letter-spacing: 17.5px !important; }
13354
- .brz .brz-ls-xs-im-18 {
13355
- letter-spacing: 18px !important; }
13356
- .brz .brz-ls-xs-im-18_5 {
13357
- letter-spacing: 18.5px !important; }
13358
- .brz .brz-ls-xs-im-19 {
13359
- letter-spacing: 19px !important; }
13360
- .brz .brz-ls-xs-im-19_5 {
13361
- letter-spacing: 19.5px !important; }
13362
- .brz .brz-ls-xs-im-20 {
13363
- letter-spacing: 20px !important; }
13364
- .brz .brz-ls-xs-im-20_5 {
13365
- letter-spacing: 20.5px !important; } }
13366
-
13367
- @media (min-width: 768px) and (max-width: 991px) {
13368
- .brz .brz-fs-sm-6 {
13369
- font-size: 6px !important; }
13370
- .brz .brz-story .brz-fs-sm-6 {
13371
- font-size: 1.38% !important; }
13372
- .brz .brz-fs-sm-7 {
13373
- font-size: 7px !important; }
13374
- .brz .brz-story .brz-fs-sm-7 {
13375
- font-size: 1.61% !important; }
13376
- .brz .brz-fs-sm-8 {
13377
- font-size: 8px !important; }
13378
- .brz .brz-story .brz-fs-sm-8 {
13379
- font-size: 1.84% !important; }
13380
- .brz .brz-fs-sm-9 {
13381
- font-size: 9px !important; }
13382
- .brz .brz-story .brz-fs-sm-9 {
13383
- font-size: 2.07% !important; }
13384
- .brz .brz-fs-sm-10 {
13385
- font-size: 10px !important; }
13386
- .brz .brz-story .brz-fs-sm-10 {
13387
- font-size: 2.3% !important; }
13388
- .brz .brz-fs-sm-11 {
13389
- font-size: 11px !important; }
13390
- .brz .brz-story .brz-fs-sm-11 {
13391
- font-size: 2.53% !important; }
13392
- .brz .brz-fs-sm-12 {
13393
- font-size: 12px !important; }
13394
- .brz .brz-story .brz-fs-sm-12 {
13395
- font-size: 2.76% !important; }
13396
- .brz .brz-fs-sm-13 {
13397
- font-size: 13px !important; }
13398
- .brz .brz-story .brz-fs-sm-13 {
13399
- font-size: 2.99% !important; }
13400
- .brz .brz-fs-sm-14 {
13401
- font-size: 14px !important; }
13402
- .brz .brz-story .brz-fs-sm-14 {
13403
- font-size: 3.22% !important; }
13404
- .brz .brz-fs-sm-15 {
13405
- font-size: 15px !important; }
13406
- .brz .brz-story .brz-fs-sm-15 {
13407
- font-size: 3.45% !important; }
13408
- .brz .brz-fs-sm-16 {
13409
- font-size: 16px !important; }
13410
- .brz .brz-story .brz-fs-sm-16 {
13411
- font-size: 3.68% !important; }
13412
- .brz .brz-fs-sm-17 {
13413
- font-size: 17px !important; }
13414
- .brz .brz-story .brz-fs-sm-17 {
13415
- font-size: 3.91% !important; }
13416
- .brz .brz-fs-sm-18 {
13417
- font-size: 18px !important; }
13418
- .brz .brz-story .brz-fs-sm-18 {
13419
- font-size: 4.14% !important; }
13420
- .brz .brz-fs-sm-19 {
13421
- font-size: 19px !important; }
13422
- .brz .brz-story .brz-fs-sm-19 {
13423
- font-size: 4.37% !important; }
13424
- .brz .brz-fs-sm-20 {
13425
- font-size: 20px !important; }
13426
- .brz .brz-story .brz-fs-sm-20 {
13427
- font-size: 4.6% !important; }
13428
- .brz .brz-fs-sm-21 {
13429
- font-size: 21px !important; }
13430
- .brz .brz-story .brz-fs-sm-21 {
13431
- font-size: 4.83% !important; }
13432
- .brz .brz-fs-sm-22 {
13433
- font-size: 22px !important; }
13434
- .brz .brz-story .brz-fs-sm-22 {
13435
- font-size: 5.06% !important; }
13436
- .brz .brz-fs-sm-23 {
13437
- font-size: 23px !important; }
13438
- .brz .brz-story .brz-fs-sm-23 {
13439
- font-size: 5.29% !important; }
13440
- .brz .brz-fs-sm-24 {
13441
- font-size: 24px !important; }
13442
- .brz .brz-story .brz-fs-sm-24 {
13443
- font-size: 5.52% !important; }
13444
- .brz .brz-fs-sm-25 {
13445
- font-size: 25px !important; }
13446
- .brz .brz-story .brz-fs-sm-25 {
13447
- font-size: 5.75% !important; }
13448
- .brz .brz-fs-sm-26 {
13449
- font-size: 26px !important; }
13450
- .brz .brz-story .brz-fs-sm-26 {
13451
- font-size: 5.98% !important; }
13452
- .brz .brz-fs-sm-27 {
13453
- font-size: 27px !important; }
13454
- .brz .brz-story .brz-fs-sm-27 {
13455
- font-size: 6.21% !important; }
13456
- .brz .brz-fs-sm-28 {
13457
- font-size: 28px !important; }
13458
- .brz .brz-story .brz-fs-sm-28 {
13459
- font-size: 6.44% !important; }
13460
- .brz .brz-fs-sm-29 {
13461
- font-size: 29px !important; }
13462
- .brz .brz-story .brz-fs-sm-29 {
13463
- font-size: 6.67% !important; }
13464
- .brz .brz-fs-sm-30 {
13465
- font-size: 30px !important; }
13466
- .brz .brz-story .brz-fs-sm-30 {
13467
- font-size: 6.9% !important; }
13468
- .brz .brz-fs-sm-31 {
13469
- font-size: 31px !important; }
13470
- .brz .brz-story .brz-fs-sm-31 {
13471
- font-size: 7.13% !important; }
13472
- .brz .brz-fs-sm-32 {
13473
- font-size: 32px !important; }
13474
- .brz .brz-story .brz-fs-sm-32 {
13475
- font-size: 7.36% !important; }
13476
- .brz .brz-fs-sm-33 {
13477
- font-size: 33px !important; }
13478
- .brz .brz-story .brz-fs-sm-33 {
13479
- font-size: 7.59% !important; }
13480
- .brz .brz-fs-sm-34 {
13481
- font-size: 34px !important; }
13482
- .brz .brz-story .brz-fs-sm-34 {
13483
- font-size: 7.82% !important; }
13484
- .brz .brz-fs-sm-35 {
13485
- font-size: 35px !important; }
13486
- .brz .brz-story .brz-fs-sm-35 {
13487
- font-size: 8.05% !important; }
13488
- .brz .brz-fs-sm-36 {
13489
- font-size: 36px !important; }
13490
- .brz .brz-story .brz-fs-sm-36 {
13491
- font-size: 8.28% !important; }
13492
- .brz .brz-fs-sm-37 {
13493
- font-size: 37px !important; }
13494
- .brz .brz-story .brz-fs-sm-37 {
13495
- font-size: 8.51% !important; }
13496
- .brz .brz-fs-sm-38 {
13497
- font-size: 38px !important; }
13498
- .brz .brz-story .brz-fs-sm-38 {
13499
- font-size: 8.74% !important; }
13500
- .brz .brz-fs-sm-39 {
13501
- font-size: 39px !important; }
13502
- .brz .brz-story .brz-fs-sm-39 {
13503
- font-size: 8.97% !important; }
13504
- .brz .brz-fs-sm-40 {
13505
- font-size: 40px !important; }
13506
- .brz .brz-story .brz-fs-sm-40 {
13507
- font-size: 9.2% !important; }
13508
- .brz .brz-fs-sm-41 {
13509
- font-size: 41px !important; }
13510
- .brz .brz-story .brz-fs-sm-41 {
13511
- font-size: 9.43% !important; }
13512
- .brz .brz-fs-sm-42 {
13513
- font-size: 42px !important; }
13514
- .brz .brz-story .brz-fs-sm-42 {
13515
- font-size: 9.66% !important; }
13516
- .brz .brz-fs-sm-43 {
13517
- font-size: 43px !important; }
13518
- .brz .brz-story .brz-fs-sm-43 {
13519
- font-size: 9.89% !important; }
13520
- .brz .brz-fs-sm-44 {
13521
- font-size: 44px !important; }
13522
- .brz .brz-story .brz-fs-sm-44 {
13523
- font-size: 10.12% !important; }
13524
- .brz .brz-fs-sm-45 {
13525
- font-size: 45px !important; }
13526
- .brz .brz-story .brz-fs-sm-45 {
13527
- font-size: 10.35% !important; }
13528
- .brz .brz-fs-sm-46 {
13529
- font-size: 46px !important; }
13530
- .brz .brz-story .brz-fs-sm-46 {
13531
- font-size: 10.58% !important; }
13532
- .brz .brz-fs-sm-47 {
13533
- font-size: 47px !important; }
13534
- .brz .brz-story .brz-fs-sm-47 {
13535
- font-size: 10.81% !important; }
13536
- .brz .brz-fs-sm-48 {
13537
- font-size: 48px !important; }
13538
- .brz .brz-story .brz-fs-sm-48 {
13539
- font-size: 11.04% !important; }
13540
- .brz .brz-fs-sm-49 {
13541
- font-size: 49px !important; }
13542
- .brz .brz-story .brz-fs-sm-49 {
13543
- font-size: 11.27% !important; }
13544
- .brz .brz-fs-sm-50 {
13545
- font-size: 50px !important; }
13546
- .brz .brz-story .brz-fs-sm-50 {
13547
- font-size: 11.5% !important; }
13548
- .brz .brz-fs-sm-51 {
13549
- font-size: 51px !important; }
13550
- .brz .brz-story .brz-fs-sm-51 {
13551
- font-size: 11.73% !important; }
13552
- .brz .brz-fs-sm-52 {
13553
- font-size: 52px !important; }
13554
- .brz .brz-story .brz-fs-sm-52 {
13555
- font-size: 11.96% !important; }
13556
- .brz .brz-fs-sm-53 {
13557
- font-size: 53px !important; }
13558
- .brz .brz-story .brz-fs-sm-53 {
13559
- font-size: 12.19% !important; }
13560
- .brz .brz-fs-sm-54 {
13561
- font-size: 54px !important; }
13562
- .brz .brz-story .brz-fs-sm-54 {
13563
- font-size: 12.42% !important; }
13564
- .brz .brz-fs-sm-55 {
13565
- font-size: 55px !important; }
13566
- .brz .brz-story .brz-fs-sm-55 {
13567
- font-size: 12.65% !important; }
13568
- .brz .brz-fs-sm-56 {
13569
- font-size: 56px !important; }
13570
- .brz .brz-story .brz-fs-sm-56 {
13571
- font-size: 12.88% !important; }
13572
- .brz .brz-fs-sm-57 {
13573
- font-size: 57px !important; }
13574
- .brz .brz-story .brz-fs-sm-57 {
13575
- font-size: 13.11% !important; }
13576
- .brz .brz-fs-sm-58 {
13577
- font-size: 58px !important; }
13578
- .brz .brz-story .brz-fs-sm-58 {
13579
- font-size: 13.34% !important; }
13580
- .brz .brz-fs-sm-59 {
13581
- font-size: 59px !important; }
13582
- .brz .brz-story .brz-fs-sm-59 {
13583
- font-size: 13.57% !important; }
13584
- .brz .brz-fs-sm-60 {
13585
- font-size: 60px !important; }
13586
- .brz .brz-story .brz-fs-sm-60 {
13587
- font-size: 13.8% !important; }
13588
- .brz .brz-fs-sm-61 {
13589
- font-size: 61px !important; }
13590
- .brz .brz-story .brz-fs-sm-61 {
13591
- font-size: 14.03% !important; }
13592
- .brz .brz-fs-sm-62 {
13593
- font-size: 62px !important; }
13594
- .brz .brz-story .brz-fs-sm-62 {
13595
- font-size: 14.26% !important; }
13596
- .brz .brz-fs-sm-63 {
13597
- font-size: 63px !important; }
13598
- .brz .brz-story .brz-fs-sm-63 {
13599
- font-size: 14.49% !important; }
13600
- .brz .brz-fs-sm-64 {
13601
- font-size: 64px !important; }
13602
- .brz .brz-story .brz-fs-sm-64 {
13603
- font-size: 14.72% !important; }
13604
- .brz .brz-fs-sm-65 {
13605
- font-size: 65px !important; }
13606
- .brz .brz-story .brz-fs-sm-65 {
13607
- font-size: 14.95% !important; }
13608
- .brz .brz-fs-sm-66 {
13609
- font-size: 66px !important; }
13610
- .brz .brz-story .brz-fs-sm-66 {
13611
- font-size: 15.18% !important; }
13612
- .brz .brz-fs-sm-67 {
13613
- font-size: 67px !important; }
13614
- .brz .brz-story .brz-fs-sm-67 {
13615
- font-size: 15.41% !important; }
13616
- .brz .brz-fs-sm-68 {
13617
- font-size: 68px !important; }
13618
- .brz .brz-story .brz-fs-sm-68 {
13619
- font-size: 15.64% !important; }
13620
- .brz .brz-fs-sm-69 {
13621
- font-size: 69px !important; }
13622
- .brz .brz-story .brz-fs-sm-69 {
13623
- font-size: 15.87% !important; }
13624
- .brz .brz-fs-sm-70 {
13625
- font-size: 70px !important; }
13626
- .brz .brz-story .brz-fs-sm-70 {
13627
- font-size: 16.1% !important; }
13628
- .brz .brz-fs-sm-71 {
13629
- font-size: 71px !important; }
13630
- .brz .brz-story .brz-fs-sm-71 {
13631
- font-size: 16.33% !important; }
13632
- .brz .brz-fs-sm-72 {
13633
- font-size: 72px !important; }
13634
- .brz .brz-story .brz-fs-sm-72 {
13635
- font-size: 16.56% !important; }
13636
- .brz .brz-fs-sm-73 {
13637
- font-size: 73px !important; }
13638
- .brz .brz-story .brz-fs-sm-73 {
13639
- font-size: 16.79% !important; }
13640
- .brz .brz-fs-sm-74 {
13641
- font-size: 74px !important; }
13642
- .brz .brz-story .brz-fs-sm-74 {
13643
- font-size: 17.02% !important; }
13644
- .brz .brz-fs-sm-75 {
13645
- font-size: 75px !important; }
13646
- .brz .brz-story .brz-fs-sm-75 {
13647
- font-size: 17.25% !important; }
13648
- .brz .brz-fs-sm-76 {
13649
- font-size: 76px !important; }
13650
- .brz .brz-story .brz-fs-sm-76 {
13651
- font-size: 17.48% !important; }
13652
- .brz .brz-fs-sm-77 {
13653
- font-size: 77px !important; }
13654
- .brz .brz-story .brz-fs-sm-77 {
13655
- font-size: 17.71% !important; }
13656
- .brz .brz-fs-sm-78 {
13657
- font-size: 78px !important; }
13658
- .brz .brz-story .brz-fs-sm-78 {
13659
- font-size: 17.94% !important; }
13660
- .brz .brz-fs-sm-79 {
13661
- font-size: 79px !important; }
13662
- .brz .brz-story .brz-fs-sm-79 {
13663
- font-size: 18.17% !important; }
13664
- .brz .brz-fs-sm-80 {
13665
- font-size: 80px !important; }
13666
- .brz .brz-story .brz-fs-sm-80 {
13667
- font-size: 18.4% !important; }
13668
- .brz .brz-fs-sm-81 {
13669
- font-size: 81px !important; }
13670
- .brz .brz-story .brz-fs-sm-81 {
13671
- font-size: 18.63% !important; }
13672
- .brz .brz-fs-sm-82 {
13673
- font-size: 82px !important; }
13674
- .brz .brz-story .brz-fs-sm-82 {
13675
- font-size: 18.86% !important; }
13676
- .brz .brz-fs-sm-83 {
13677
- font-size: 83px !important; }
13678
- .brz .brz-story .brz-fs-sm-83 {
13679
- font-size: 19.09% !important; }
13680
- .brz .brz-fs-sm-84 {
13681
- font-size: 84px !important; }
13682
- .brz .brz-story .brz-fs-sm-84 {
13683
- font-size: 19.32% !important; }
13684
- .brz .brz-fs-sm-85 {
13685
- font-size: 85px !important; }
13686
- .brz .brz-story .brz-fs-sm-85 {
13687
- font-size: 19.55% !important; }
13688
- .brz .brz-fs-sm-86 {
13689
- font-size: 86px !important; }
13690
- .brz .brz-story .brz-fs-sm-86 {
13691
- font-size: 19.78% !important; }
13692
- .brz .brz-fs-sm-87 {
13693
- font-size: 87px !important; }
13694
- .brz .brz-story .brz-fs-sm-87 {
13695
- font-size: 20.01% !important; }
13696
- .brz .brz-fs-sm-88 {
13697
- font-size: 88px !important; }
13698
- .brz .brz-story .brz-fs-sm-88 {
13699
- font-size: 20.24% !important; }
13700
- .brz .brz-fs-sm-89 {
13701
- font-size: 89px !important; }
13702
- .brz .brz-story .brz-fs-sm-89 {
13703
- font-size: 20.47% !important; }
13704
- .brz .brz-fs-sm-90 {
13705
- font-size: 90px !important; }
13706
- .brz .brz-story .brz-fs-sm-90 {
13707
- font-size: 20.7% !important; }
13708
- .brz .brz-fs-sm-91 {
13709
- font-size: 91px !important; }
13710
- .brz .brz-story .brz-fs-sm-91 {
13711
- font-size: 20.93% !important; }
13712
- .brz .brz-fs-sm-92 {
13713
- font-size: 92px !important; }
13714
- .brz .brz-story .brz-fs-sm-92 {
13715
- font-size: 21.16% !important; }
13716
- .brz .brz-fs-sm-93 {
13717
- font-size: 93px !important; }
13718
- .brz .brz-story .brz-fs-sm-93 {
13719
- font-size: 21.39% !important; }
13720
- .brz .brz-fs-sm-94 {
13721
- font-size: 94px !important; }
13722
- .brz .brz-story .brz-fs-sm-94 {
13723
- font-size: 21.62% !important; }
13724
- .brz .brz-fs-sm-95 {
13725
- font-size: 95px !important; }
13726
- .brz .brz-story .brz-fs-sm-95 {
13727
- font-size: 21.85% !important; }
13728
- .brz .brz-fs-sm-96 {
13729
- font-size: 96px !important; }
13730
- .brz .brz-story .brz-fs-sm-96 {
13731
- font-size: 22.08% !important; }
13732
- .brz .brz-fs-sm-97 {
13733
- font-size: 97px !important; }
13734
- .brz .brz-story .brz-fs-sm-97 {
13735
- font-size: 22.31% !important; }
13736
- .brz .brz-fs-sm-98 {
13737
- font-size: 98px !important; }
13738
- .brz .brz-story .brz-fs-sm-98 {
13739
- font-size: 22.54% !important; }
13740
- .brz .brz-fs-sm-99 {
13741
- font-size: 99px !important; }
13742
- .brz .brz-story .brz-fs-sm-99 {
13743
- font-size: 22.77% !important; }
13744
- .brz .brz-fs-sm-100 {
13745
- font-size: 100px !important; }
13746
- .brz .brz-story .brz-fs-sm-100 {
13747
- font-size: 23% !important; }
13748
- .brz .brz-fs-sm-101 {
13749
- font-size: 101px !important; }
13750
- .brz .brz-story .brz-fs-sm-101 {
13751
- font-size: 23.23% !important; }
13752
- .brz .brz-fs-sm-102 {
13753
- font-size: 102px !important; }
13754
- .brz .brz-story .brz-fs-sm-102 {
13755
- font-size: 23.46% !important; }
13756
- .brz .brz-fs-sm-103 {
13757
- font-size: 103px !important; }
13758
- .brz .brz-story .brz-fs-sm-103 {
13759
- font-size: 23.69% !important; }
13760
- .brz .brz-fs-sm-104 {
13761
- font-size: 104px !important; }
13762
- .brz .brz-story .brz-fs-sm-104 {
13763
- font-size: 23.92% !important; }
13764
- .brz .brz-fs-sm-105 {
13765
- font-size: 105px !important; }
13766
- .brz .brz-story .brz-fs-sm-105 {
13767
- font-size: 24.15% !important; }
13768
- .brz .brz-fs-sm-106 {
13769
- font-size: 106px !important; }
13770
- .brz .brz-story .brz-fs-sm-106 {
13771
- font-size: 24.38% !important; }
13772
- .brz .brz-fs-sm-107 {
13773
- font-size: 107px !important; }
13774
- .brz .brz-story .brz-fs-sm-107 {
13775
- font-size: 24.61% !important; }
13776
- .brz .brz-fs-sm-108 {
13777
- font-size: 108px !important; }
13778
- .brz .brz-story .brz-fs-sm-108 {
13779
- font-size: 24.84% !important; }
13780
- .brz .brz-fs-sm-109 {
13781
- font-size: 109px !important; }
13782
- .brz .brz-story .brz-fs-sm-109 {
13783
- font-size: 25.07% !important; }
13784
- .brz .brz-fs-sm-110 {
13785
- font-size: 110px !important; }
13786
- .brz .brz-story .brz-fs-sm-110 {
13787
- font-size: 25.3% !important; }
13788
- .brz .brz-fs-sm-111 {
13789
- font-size: 111px !important; }
13790
- .brz .brz-story .brz-fs-sm-111 {
13791
- font-size: 25.53% !important; }
13792
- .brz .brz-fs-sm-112 {
13793
- font-size: 112px !important; }
13794
- .brz .brz-story .brz-fs-sm-112 {
13795
- font-size: 25.76% !important; }
13796
- .brz .brz-fs-sm-113 {
13797
- font-size: 113px !important; }
13798
- .brz .brz-story .brz-fs-sm-113 {
13799
- font-size: 25.99% !important; }
13800
- .brz .brz-fs-sm-114 {
13801
- font-size: 114px !important; }
13802
- .brz .brz-story .brz-fs-sm-114 {
13803
- font-size: 26.22% !important; }
13804
- .brz .brz-fs-sm-115 {
13805
- font-size: 115px !important; }
13806
- .brz .brz-story .brz-fs-sm-115 {
13807
- font-size: 26.45% !important; }
13808
- .brz .brz-fs-sm-116 {
13809
- font-size: 116px !important; }
13810
- .brz .brz-story .brz-fs-sm-116 {
13811
- font-size: 26.68% !important; }
13812
- .brz .brz-fs-sm-117 {
13813
- font-size: 117px !important; }
13814
- .brz .brz-story .brz-fs-sm-117 {
13815
- font-size: 26.91% !important; }
13816
- .brz .brz-fs-sm-118 {
13817
- font-size: 118px !important; }
13818
- .brz .brz-story .brz-fs-sm-118 {
13819
- font-size: 27.14% !important; }
13820
- .brz .brz-fs-sm-119 {
13821
- font-size: 119px !important; }
13822
- .brz .brz-story .brz-fs-sm-119 {
13823
- font-size: 27.37% !important; }
13824
- .brz .brz-fs-sm-120 {
13825
- font-size: 120px !important; }
13826
- .brz .brz-story .brz-fs-sm-120 {
13827
- font-size: 27.6% !important; }
13828
- .brz .brz-fs-sm-121 {
13829
- font-size: 121px !important; }
13830
- .brz .brz-story .brz-fs-sm-121 {
13831
- font-size: 27.83% !important; }
13832
- .brz .brz-fs-sm-122 {
13833
- font-size: 122px !important; }
13834
- .brz .brz-story .brz-fs-sm-122 {
13835
- font-size: 28.06% !important; }
13836
- .brz .brz-fs-sm-123 {
13837
- font-size: 123px !important; }
13838
- .brz .brz-story .brz-fs-sm-123 {
13839
- font-size: 28.29% !important; }
13840
- .brz .brz-fs-sm-124 {
13841
- font-size: 124px !important; }
13842
- .brz .brz-story .brz-fs-sm-124 {
13843
- font-size: 28.52% !important; }
13844
- .brz .brz-fs-sm-125 {
13845
- font-size: 125px !important; }
13846
- .brz .brz-story .brz-fs-sm-125 {
13847
- font-size: 28.75% !important; }
13848
- .brz .brz-fs-sm-126 {
13849
- font-size: 126px !important; }
13850
- .brz .brz-story .brz-fs-sm-126 {
13851
- font-size: 28.98% !important; }
13852
- .brz .brz-fs-sm-127 {
13853
- font-size: 127px !important; }
13854
- .brz .brz-story .brz-fs-sm-127 {
13855
- font-size: 29.21% !important; }
13856
- .brz .brz-fs-sm-128 {
13857
- font-size: 128px !important; }
13858
- .brz .brz-story .brz-fs-sm-128 {
13859
- font-size: 29.44% !important; }
13860
- .brz .brz-fs-sm-129 {
13861
- font-size: 129px !important; }
13862
- .brz .brz-story .brz-fs-sm-129 {
13863
- font-size: 29.67% !important; }
13864
- .brz .brz-fs-sm-130 {
13865
- font-size: 130px !important; }
13866
- .brz .brz-story .brz-fs-sm-130 {
13867
- font-size: 29.9% !important; }
13868
- .brz .brz-fs-sm-131 {
13869
- font-size: 131px !important; }
13870
- .brz .brz-story .brz-fs-sm-131 {
13871
- font-size: 30.13% !important; }
13872
- .brz .brz-fs-sm-132 {
13873
- font-size: 132px !important; }
13874
- .brz .brz-story .brz-fs-sm-132 {
13875
- font-size: 30.36% !important; }
13876
- .brz .brz-fs-sm-133 {
13877
- font-size: 133px !important; }
13878
- .brz .brz-story .brz-fs-sm-133 {
13879
- font-size: 30.59% !important; }
13880
- .brz .brz-fs-sm-134 {
13881
- font-size: 134px !important; }
13882
- .brz .brz-story .brz-fs-sm-134 {
13883
- font-size: 30.82% !important; }
13884
- .brz .brz-fs-sm-135 {
13885
- font-size: 135px !important; }
13886
- .brz .brz-story .brz-fs-sm-135 {
13887
- font-size: 31.05% !important; }
13888
- .brz .brz-fs-sm-136 {
13889
- font-size: 136px !important; }
13890
- .brz .brz-story .brz-fs-sm-136 {
13891
- font-size: 31.28% !important; }
13892
- .brz .brz-fs-sm-137 {
13893
- font-size: 137px !important; }
13894
- .brz .brz-story .brz-fs-sm-137 {
13895
- font-size: 31.51% !important; }
13896
- .brz .brz-fs-sm-138 {
13897
- font-size: 138px !important; }
13898
- .brz .brz-story .brz-fs-sm-138 {
13899
- font-size: 31.74% !important; }
13900
- .brz .brz-fs-sm-139 {
13901
- font-size: 139px !important; }
13902
- .brz .brz-story .brz-fs-sm-139 {
13903
- font-size: 31.97% !important; }
13904
- .brz .brz-fs-sm-140 {
13905
- font-size: 140px !important; }
13906
- .brz .brz-story .brz-fs-sm-140 {
13907
- font-size: 32.2% !important; }
13908
- .brz .brz-fs-sm-141 {
13909
- font-size: 141px !important; }
13910
- .brz .brz-story .brz-fs-sm-141 {
13911
- font-size: 32.43% !important; }
13912
- .brz .brz-fs-sm-142 {
13913
- font-size: 142px !important; }
13914
- .brz .brz-story .brz-fs-sm-142 {
13915
- font-size: 32.66% !important; }
13916
- .brz .brz-fs-sm-143 {
13917
- font-size: 143px !important; }
13918
- .brz .brz-story .brz-fs-sm-143 {
13919
- font-size: 32.89% !important; }
13920
- .brz .brz-fs-sm-144 {
13921
- font-size: 144px !important; }
13922
- .brz .brz-story .brz-fs-sm-144 {
13923
- font-size: 33.12% !important; }
13924
- .brz .brz-fs-sm-145 {
13925
- font-size: 145px !important; }
13926
- .brz .brz-story .brz-fs-sm-145 {
13927
- font-size: 33.35% !important; }
13928
- .brz .brz-fs-sm-146 {
13929
- font-size: 146px !important; }
13930
- .brz .brz-story .brz-fs-sm-146 {
13931
- font-size: 33.58% !important; }
13932
- .brz .brz-fs-sm-147 {
13933
- font-size: 147px !important; }
13934
- .brz .brz-story .brz-fs-sm-147 {
13935
- font-size: 33.81% !important; }
13936
- .brz .brz-fs-sm-148 {
13937
- font-size: 148px !important; }
13938
- .brz .brz-story .brz-fs-sm-148 {
13939
- font-size: 34.04% !important; }
13940
- .brz .brz-fs-sm-149 {
13941
- font-size: 149px !important; }
13942
- .brz .brz-story .brz-fs-sm-149 {
13943
- font-size: 34.27% !important; }
13944
- .brz .brz-fs-sm-150 {
13945
- font-size: 150px !important; }
13946
- .brz .brz-story .brz-fs-sm-150 {
13947
- font-size: 34.5% !important; }
13948
- .brz .brz-fs-sm-151 {
13949
- font-size: 151px !important; }
13950
- .brz .brz-story .brz-fs-sm-151 {
13951
- font-size: 34.73% !important; }
13952
- .brz .brz-fs-sm-152 {
13953
- font-size: 152px !important; }
13954
- .brz .brz-story .brz-fs-sm-152 {
13955
- font-size: 34.96% !important; }
13956
- .brz .brz-fs-sm-153 {
13957
- font-size: 153px !important; }
13958
- .brz .brz-story .brz-fs-sm-153 {
13959
- font-size: 35.19% !important; }
13960
- .brz .brz-fs-sm-154 {
13961
- font-size: 154px !important; }
13962
- .brz .brz-story .brz-fs-sm-154 {
13963
- font-size: 35.42% !important; }
13964
- .brz .brz-fs-sm-155 {
13965
- font-size: 155px !important; }
13966
- .brz .brz-story .brz-fs-sm-155 {
13967
- font-size: 35.65% !important; }
13968
- .brz .brz-fs-sm-156 {
13969
- font-size: 156px !important; }
13970
- .brz .brz-story .brz-fs-sm-156 {
13971
- font-size: 35.88% !important; }
13972
- .brz .brz-fs-sm-157 {
13973
- font-size: 157px !important; }
13974
- .brz .brz-story .brz-fs-sm-157 {
13975
- font-size: 36.11% !important; }
13976
- .brz .brz-fs-sm-158 {
13977
- font-size: 158px !important; }
13978
- .brz .brz-story .brz-fs-sm-158 {
13979
- font-size: 36.34% !important; }
13980
- .brz .brz-fs-sm-159 {
13981
- font-size: 159px !important; }
13982
- .brz .brz-story .brz-fs-sm-159 {
13983
- font-size: 36.57% !important; }
13984
- .brz .brz-fs-sm-160 {
13985
- font-size: 160px !important; }
13986
- .brz .brz-story .brz-fs-sm-160 {
13987
- font-size: 36.8% !important; }
13988
- .brz .brz-fs-sm-161 {
13989
- font-size: 161px !important; }
13990
- .brz .brz-story .brz-fs-sm-161 {
13991
- font-size: 37.03% !important; }
13992
- .brz .brz-fs-sm-162 {
13993
- font-size: 162px !important; }
13994
- .brz .brz-story .brz-fs-sm-162 {
13995
- font-size: 37.26% !important; }
13996
- .brz .brz-fs-sm-163 {
13997
- font-size: 163px !important; }
13998
- .brz .brz-story .brz-fs-sm-163 {
13999
- font-size: 37.49% !important; }
14000
- .brz .brz-fs-sm-164 {
14001
- font-size: 164px !important; }
14002
- .brz .brz-story .brz-fs-sm-164 {
14003
- font-size: 37.72% !important; }
14004
- .brz .brz-fs-sm-165 {
14005
- font-size: 165px !important; }
14006
- .brz .brz-story .brz-fs-sm-165 {
14007
- font-size: 37.95% !important; }
14008
- .brz .brz-fs-sm-166 {
14009
- font-size: 166px !important; }
14010
- .brz .brz-story .brz-fs-sm-166 {
14011
- font-size: 38.18% !important; }
14012
- .brz .brz-fs-sm-167 {
14013
- font-size: 167px !important; }
14014
- .brz .brz-story .brz-fs-sm-167 {
14015
- font-size: 38.41% !important; }
14016
- .brz .brz-fs-sm-168 {
14017
- font-size: 168px !important; }
14018
- .brz .brz-story .brz-fs-sm-168 {
14019
- font-size: 38.64% !important; }
14020
- .brz .brz-fs-sm-169 {
14021
- font-size: 169px !important; }
14022
- .brz .brz-story .brz-fs-sm-169 {
14023
- font-size: 38.87% !important; }
14024
- .brz .brz-fs-sm-170 {
14025
- font-size: 170px !important; }
14026
- .brz .brz-story .brz-fs-sm-170 {
14027
- font-size: 39.1% !important; }
14028
- .brz .brz-fs-sm-171 {
14029
- font-size: 171px !important; }
14030
- .brz .brz-story .brz-fs-sm-171 {
14031
- font-size: 39.33% !important; }
14032
- .brz .brz-fs-sm-172 {
14033
- font-size: 172px !important; }
14034
- .brz .brz-story .brz-fs-sm-172 {
14035
- font-size: 39.56% !important; }
14036
- .brz .brz-fs-sm-173 {
14037
- font-size: 173px !important; }
14038
- .brz .brz-story .brz-fs-sm-173 {
14039
- font-size: 39.79% !important; }
14040
- .brz .brz-fs-sm-174 {
14041
- font-size: 174px !important; }
14042
- .brz .brz-story .brz-fs-sm-174 {
14043
- font-size: 40.02% !important; }
14044
- .brz .brz-fs-sm-175 {
14045
- font-size: 175px !important; }
14046
- .brz .brz-story .brz-fs-sm-175 {
14047
- font-size: 40.25% !important; }
14048
- .brz .brz-fs-sm-176 {
14049
- font-size: 176px !important; }
14050
- .brz .brz-story .brz-fs-sm-176 {
14051
- font-size: 40.48% !important; }
14052
- .brz .brz-fs-sm-177 {
14053
- font-size: 177px !important; }
14054
- .brz .brz-story .brz-fs-sm-177 {
14055
- font-size: 40.71% !important; }
14056
- .brz .brz-fs-sm-178 {
14057
- font-size: 178px !important; }
14058
- .brz .brz-story .brz-fs-sm-178 {
14059
- font-size: 40.94% !important; }
14060
- .brz .brz-fs-sm-179 {
14061
- font-size: 179px !important; }
14062
- .brz .brz-story .brz-fs-sm-179 {
14063
- font-size: 41.17% !important; }
14064
- .brz .brz-fs-sm-180 {
14065
- font-size: 180px !important; }
14066
- .brz .brz-story .brz-fs-sm-180 {
14067
- font-size: 41.4% !important; }
14068
- .brz .brz-fs-sm-181 {
14069
- font-size: 181px !important; }
14070
- .brz .brz-story .brz-fs-sm-181 {
14071
- font-size: 41.63% !important; }
14072
- .brz .brz-fs-sm-182 {
14073
- font-size: 182px !important; }
14074
- .brz .brz-story .brz-fs-sm-182 {
14075
- font-size: 41.86% !important; }
14076
- .brz .brz-fs-sm-183 {
14077
- font-size: 183px !important; }
14078
- .brz .brz-story .brz-fs-sm-183 {
14079
- font-size: 42.09% !important; }
14080
- .brz .brz-fs-sm-184 {
14081
- font-size: 184px !important; }
14082
- .brz .brz-story .brz-fs-sm-184 {
14083
- font-size: 42.32% !important; }
14084
- .brz .brz-fs-sm-185 {
14085
- font-size: 185px !important; }
14086
- .brz .brz-story .brz-fs-sm-185 {
14087
- font-size: 42.55% !important; }
14088
- .brz .brz-fs-sm-186 {
14089
- font-size: 186px !important; }
14090
- .brz .brz-story .brz-fs-sm-186 {
14091
- font-size: 42.78% !important; }
14092
- .brz .brz-fs-sm-187 {
14093
- font-size: 187px !important; }
14094
- .brz .brz-story .brz-fs-sm-187 {
14095
- font-size: 43.01% !important; }
14096
- .brz .brz-fs-sm-188 {
14097
- font-size: 188px !important; }
14098
- .brz .brz-story .brz-fs-sm-188 {
14099
- font-size: 43.24% !important; }
14100
- .brz .brz-fs-sm-189 {
14101
- font-size: 189px !important; }
14102
- .brz .brz-story .brz-fs-sm-189 {
14103
- font-size: 43.47% !important; }
14104
- .brz .brz-fs-sm-190 {
14105
- font-size: 190px !important; }
14106
- .brz .brz-story .brz-fs-sm-190 {
14107
- font-size: 43.7% !important; }
14108
- .brz .brz-fs-sm-191 {
14109
- font-size: 191px !important; }
14110
- .brz .brz-story .brz-fs-sm-191 {
14111
- font-size: 43.93% !important; }
14112
- .brz .brz-fs-sm-192 {
14113
- font-size: 192px !important; }
14114
- .brz .brz-story .brz-fs-sm-192 {
14115
- font-size: 44.16% !important; }
14116
- .brz .brz-fs-sm-193 {
14117
- font-size: 193px !important; }
14118
- .brz .brz-story .brz-fs-sm-193 {
14119
- font-size: 44.39% !important; }
14120
- .brz .brz-fs-sm-194 {
14121
- font-size: 194px !important; }
14122
- .brz .brz-story .brz-fs-sm-194 {
14123
- font-size: 44.62% !important; }
14124
- .brz .brz-fs-sm-195 {
14125
- font-size: 195px !important; }
14126
- .brz .brz-story .brz-fs-sm-195 {
14127
- font-size: 44.85% !important; }
14128
- .brz .brz-fs-sm-196 {
14129
- font-size: 196px !important; }
14130
- .brz .brz-story .brz-fs-sm-196 {
14131
- font-size: 45.08% !important; }
14132
- .brz .brz-fs-sm-197 {
14133
- font-size: 197px !important; }
14134
- .brz .brz-story .brz-fs-sm-197 {
14135
- font-size: 45.31% !important; }
14136
- .brz .brz-fs-sm-198 {
14137
- font-size: 198px !important; }
14138
- .brz .brz-story .brz-fs-sm-198 {
14139
- font-size: 45.54% !important; }
14140
- .brz .brz-fs-sm-199 {
14141
- font-size: 199px !important; }
14142
- .brz .brz-story .brz-fs-sm-199 {
14143
- font-size: 45.77% !important; }
14144
- .brz .brz-fs-sm-200 {
14145
- font-size: 200px !important; }
14146
- .brz .brz-story .brz-fs-sm-200 {
14147
- font-size: 46% !important; }
14148
- .brz .brz-fs-sm-201 {
14149
- font-size: 201px !important; }
14150
- .brz .brz-story .brz-fs-sm-201 {
14151
- font-size: 46.23% !important; }
14152
- .brz .brz-fs-sm-202 {
14153
- font-size: 202px !important; }
14154
- .brz .brz-story .brz-fs-sm-202 {
14155
- font-size: 46.46% !important; }
14156
- .brz .brz-fs-sm-203 {
14157
- font-size: 203px !important; }
14158
- .brz .brz-story .brz-fs-sm-203 {
14159
- font-size: 46.69% !important; }
14160
- .brz .brz-fs-sm-204 {
14161
- font-size: 204px !important; }
14162
- .brz .brz-story .brz-fs-sm-204 {
14163
- font-size: 46.92% !important; }
14164
- .brz .brz-fs-sm-205 {
14165
- font-size: 205px !important; }
14166
- .brz .brz-story .brz-fs-sm-205 {
14167
- font-size: 47.15% !important; }
14168
- .brz .brz-fs-sm-206 {
14169
- font-size: 206px !important; }
14170
- .brz .brz-story .brz-fs-sm-206 {
14171
- font-size: 47.38% !important; }
14172
- .brz .brz-fs-sm-207 {
14173
- font-size: 207px !important; }
14174
- .brz .brz-story .brz-fs-sm-207 {
14175
- font-size: 47.61% !important; }
14176
- .brz .brz-fs-sm-208 {
14177
- font-size: 208px !important; }
14178
- .brz .brz-story .brz-fs-sm-208 {
14179
- font-size: 47.84% !important; }
14180
- .brz .brz-fs-sm-209 {
14181
- font-size: 209px !important; }
14182
- .brz .brz-story .brz-fs-sm-209 {
14183
- font-size: 48.07% !important; }
14184
- .brz .brz-fs-sm-210 {
14185
- font-size: 210px !important; }
14186
- .brz .brz-story .brz-fs-sm-210 {
14187
- font-size: 48.3% !important; }
14188
- .brz .brz-fs-sm-211 {
14189
- font-size: 211px !important; }
14190
- .brz .brz-story .brz-fs-sm-211 {
14191
- font-size: 48.53% !important; }
14192
- .brz .brz-fs-sm-212 {
14193
- font-size: 212px !important; }
14194
- .brz .brz-story .brz-fs-sm-212 {
14195
- font-size: 48.76% !important; }
14196
- .brz .brz-fs-sm-213 {
14197
- font-size: 213px !important; }
14198
- .brz .brz-story .brz-fs-sm-213 {
14199
- font-size: 48.99% !important; }
14200
- .brz .brz-fs-sm-214 {
14201
- font-size: 214px !important; }
14202
- .brz .brz-story .brz-fs-sm-214 {
14203
- font-size: 49.22% !important; }
14204
- .brz .brz-fs-sm-215 {
14205
- font-size: 215px !important; }
14206
- .brz .brz-story .brz-fs-sm-215 {
14207
- font-size: 49.45% !important; }
14208
- .brz .brz-fs-sm-216 {
14209
- font-size: 216px !important; }
14210
- .brz .brz-story .brz-fs-sm-216 {
14211
- font-size: 49.68% !important; }
14212
- .brz .brz-fs-sm-217 {
14213
- font-size: 217px !important; }
14214
- .brz .brz-story .brz-fs-sm-217 {
14215
- font-size: 49.91% !important; }
14216
- .brz .brz-fs-sm-218 {
14217
- font-size: 218px !important; }
14218
- .brz .brz-story .brz-fs-sm-218 {
14219
- font-size: 50.14% !important; }
14220
- .brz .brz-fs-sm-219 {
14221
- font-size: 219px !important; }
14222
- .brz .brz-story .brz-fs-sm-219 {
14223
- font-size: 50.37% !important; }
14224
- .brz .brz-fs-sm-220 {
14225
- font-size: 220px !important; }
14226
- .brz .brz-story .brz-fs-sm-220 {
14227
- font-size: 50.6% !important; }
14228
- .brz .brz-fs-sm-221 {
14229
- font-size: 221px !important; }
14230
- .brz .brz-story .brz-fs-sm-221 {
14231
- font-size: 50.83% !important; }
14232
- .brz .brz-fs-sm-222 {
14233
- font-size: 222px !important; }
14234
- .brz .brz-story .brz-fs-sm-222 {
14235
- font-size: 51.06% !important; }
14236
- .brz .brz-fs-sm-223 {
14237
- font-size: 223px !important; }
14238
- .brz .brz-story .brz-fs-sm-223 {
14239
- font-size: 51.29% !important; }
14240
- .brz .brz-fs-sm-224 {
14241
- font-size: 224px !important; }
14242
- .brz .brz-story .brz-fs-sm-224 {
14243
- font-size: 51.52% !important; }
14244
- .brz .brz-fs-sm-225 {
14245
- font-size: 225px !important; }
14246
- .brz .brz-story .brz-fs-sm-225 {
14247
- font-size: 51.75% !important; }
14248
- .brz .brz-fs-sm-226 {
14249
- font-size: 226px !important; }
14250
- .brz .brz-story .brz-fs-sm-226 {
14251
- font-size: 51.98% !important; }
14252
- .brz .brz-fs-sm-227 {
14253
- font-size: 227px !important; }
14254
- .brz .brz-story .brz-fs-sm-227 {
14255
- font-size: 52.21% !important; }
14256
- .brz .brz-fs-sm-228 {
14257
- font-size: 228px !important; }
14258
- .brz .brz-story .brz-fs-sm-228 {
14259
- font-size: 52.44% !important; }
14260
- .brz .brz-fs-sm-229 {
14261
- font-size: 229px !important; }
14262
- .brz .brz-story .brz-fs-sm-229 {
14263
- font-size: 52.67% !important; }
14264
- .brz .brz-fs-sm-230 {
14265
- font-size: 230px !important; }
14266
- .brz .brz-story .brz-fs-sm-230 {
14267
- font-size: 52.9% !important; }
14268
- .brz .brz-fs-sm-231 {
14269
- font-size: 231px !important; }
14270
- .brz .brz-story .brz-fs-sm-231 {
14271
- font-size: 53.13% !important; }
14272
- .brz .brz-fs-sm-232 {
14273
- font-size: 232px !important; }
14274
- .brz .brz-story .brz-fs-sm-232 {
14275
- font-size: 53.36% !important; }
14276
- .brz .brz-fs-sm-233 {
14277
- font-size: 233px !important; }
14278
- .brz .brz-story .brz-fs-sm-233 {
14279
- font-size: 53.59% !important; }
14280
- .brz .brz-fs-sm-234 {
14281
- font-size: 234px !important; }
14282
- .brz .brz-story .brz-fs-sm-234 {
14283
- font-size: 53.82% !important; }
14284
- .brz .brz-fs-sm-235 {
14285
- font-size: 235px !important; }
14286
- .brz .brz-story .brz-fs-sm-235 {
14287
- font-size: 54.05% !important; }
14288
- .brz .brz-fs-sm-236 {
14289
- font-size: 236px !important; }
14290
- .brz .brz-story .brz-fs-sm-236 {
14291
- font-size: 54.28% !important; }
14292
- .brz .brz-fs-sm-237 {
14293
- font-size: 237px !important; }
14294
- .brz .brz-story .brz-fs-sm-237 {
14295
- font-size: 54.51% !important; }
14296
- .brz .brz-fs-sm-238 {
14297
- font-size: 238px !important; }
14298
- .brz .brz-story .brz-fs-sm-238 {
14299
- font-size: 54.74% !important; }
14300
- .brz .brz-fs-sm-239 {
14301
- font-size: 239px !important; }
14302
- .brz .brz-story .brz-fs-sm-239 {
14303
- font-size: 54.97% !important; }
14304
- .brz .brz-fs-sm-240 {
14305
- font-size: 240px !important; }
14306
- .brz .brz-story .brz-fs-sm-240 {
14307
- font-size: 55.2% !important; }
14308
- .brz .brz-fs-sm-241 {
14309
- font-size: 241px !important; }
14310
- .brz .brz-story .brz-fs-sm-241 {
14311
- font-size: 55.43% !important; }
14312
- .brz .brz-fs-sm-242 {
14313
- font-size: 242px !important; }
14314
- .brz .brz-story .brz-fs-sm-242 {
14315
- font-size: 55.66% !important; }
14316
- .brz .brz-fs-sm-243 {
14317
- font-size: 243px !important; }
14318
- .brz .brz-story .brz-fs-sm-243 {
14319
- font-size: 55.89% !important; }
14320
- .brz .brz-fs-sm-244 {
14321
- font-size: 244px !important; }
14322
- .brz .brz-story .brz-fs-sm-244 {
14323
- font-size: 56.12% !important; }
14324
- .brz .brz-fs-sm-245 {
14325
- font-size: 245px !important; }
14326
- .brz .brz-story .brz-fs-sm-245 {
14327
- font-size: 56.35% !important; }
14328
- .brz .brz-fs-sm-246 {
14329
- font-size: 246px !important; }
14330
- .brz .brz-story .brz-fs-sm-246 {
14331
- font-size: 56.58% !important; }
14332
- .brz .brz-fs-sm-247 {
14333
- font-size: 247px !important; }
14334
- .brz .brz-story .brz-fs-sm-247 {
14335
- font-size: 56.81% !important; }
14336
- .brz .brz-fs-sm-248 {
14337
- font-size: 248px !important; }
14338
- .brz .brz-story .brz-fs-sm-248 {
14339
- font-size: 57.04% !important; }
14340
- .brz .brz-fs-sm-249 {
14341
- font-size: 249px !important; }
14342
- .brz .brz-story .brz-fs-sm-249 {
14343
- font-size: 57.27% !important; }
14344
- .brz .brz-fs-sm-250 {
14345
- font-size: 250px !important; }
14346
- .brz .brz-story .brz-fs-sm-250 {
14347
- font-size: 57.5% !important; }
14348
- .brz .brz-fs-sm-251 {
14349
- font-size: 251px !important; }
14350
- .brz .brz-story .brz-fs-sm-251 {
14351
- font-size: 57.73% !important; }
14352
- .brz .brz-fs-sm-252 {
14353
- font-size: 252px !important; }
14354
- .brz .brz-story .brz-fs-sm-252 {
14355
- font-size: 57.96% !important; }
14356
- .brz .brz-fs-sm-253 {
14357
- font-size: 253px !important; }
14358
- .brz .brz-story .brz-fs-sm-253 {
14359
- font-size: 58.19% !important; }
14360
- .brz .brz-fs-sm-254 {
14361
- font-size: 254px !important; }
14362
- .brz .brz-story .brz-fs-sm-254 {
14363
- font-size: 58.42% !important; }
14364
- .brz .brz-fs-sm-255 {
14365
- font-size: 255px !important; }
14366
- .brz .brz-story .brz-fs-sm-255 {
14367
- font-size: 58.65% !important; }
14368
- .brz .brz-fs-sm-256 {
14369
- font-size: 256px !important; }
14370
- .brz .brz-story .brz-fs-sm-256 {
14371
- font-size: 58.88% !important; }
14372
- .brz .brz-fs-sm-257 {
14373
- font-size: 257px !important; }
14374
- .brz .brz-story .brz-fs-sm-257 {
14375
- font-size: 59.11% !important; }
14376
- .brz .brz-fs-sm-258 {
14377
- font-size: 258px !important; }
14378
- .brz .brz-story .brz-fs-sm-258 {
14379
- font-size: 59.34% !important; }
14380
- .brz .brz-fs-sm-259 {
14381
- font-size: 259px !important; }
14382
- .brz .brz-story .brz-fs-sm-259 {
14383
- font-size: 59.57% !important; }
14384
- .brz .brz-fs-sm-260 {
14385
- font-size: 260px !important; }
14386
- .brz .brz-story .brz-fs-sm-260 {
14387
- font-size: 59.8% !important; }
14388
- .brz .brz-fs-sm-261 {
14389
- font-size: 261px !important; }
14390
- .brz .brz-story .brz-fs-sm-261 {
14391
- font-size: 60.03% !important; }
14392
- .brz .brz-fs-sm-262 {
14393
- font-size: 262px !important; }
14394
- .brz .brz-story .brz-fs-sm-262 {
14395
- font-size: 60.26% !important; }
14396
- .brz .brz-fs-sm-263 {
14397
- font-size: 263px !important; }
14398
- .brz .brz-story .brz-fs-sm-263 {
14399
- font-size: 60.49% !important; }
14400
- .brz .brz-fs-sm-264 {
14401
- font-size: 264px !important; }
14402
- .brz .brz-story .brz-fs-sm-264 {
14403
- font-size: 60.72% !important; }
14404
- .brz .brz-fs-sm-265 {
14405
- font-size: 265px !important; }
14406
- .brz .brz-story .brz-fs-sm-265 {
14407
- font-size: 60.95% !important; }
14408
- .brz .brz-fs-sm-266 {
14409
- font-size: 266px !important; }
14410
- .brz .brz-story .brz-fs-sm-266 {
14411
- font-size: 61.18% !important; }
14412
- .brz .brz-fs-sm-267 {
14413
- font-size: 267px !important; }
14414
- .brz .brz-story .brz-fs-sm-267 {
14415
- font-size: 61.41% !important; }
14416
- .brz .brz-fs-sm-268 {
14417
- font-size: 268px !important; }
14418
- .brz .brz-story .brz-fs-sm-268 {
14419
- font-size: 61.64% !important; }
14420
- .brz .brz-fs-sm-269 {
14421
- font-size: 269px !important; }
14422
- .brz .brz-story .brz-fs-sm-269 {
14423
- font-size: 61.87% !important; }
14424
- .brz .brz-fs-sm-270 {
14425
- font-size: 270px !important; }
14426
- .brz .brz-story .brz-fs-sm-270 {
14427
- font-size: 62.1% !important; }
14428
- .brz .brz-fs-sm-271 {
14429
- font-size: 271px !important; }
14430
- .brz .brz-story .brz-fs-sm-271 {
14431
- font-size: 62.33% !important; }
14432
- .brz .brz-fs-sm-272 {
14433
- font-size: 272px !important; }
14434
- .brz .brz-story .brz-fs-sm-272 {
14435
- font-size: 62.56% !important; }
14436
- .brz .brz-fs-sm-273 {
14437
- font-size: 273px !important; }
14438
- .brz .brz-story .brz-fs-sm-273 {
14439
- font-size: 62.79% !important; }
14440
- .brz .brz-fs-sm-274 {
14441
- font-size: 274px !important; }
14442
- .brz .brz-story .brz-fs-sm-274 {
14443
- font-size: 63.02% !important; }
14444
- .brz .brz-fs-sm-275 {
14445
- font-size: 275px !important; }
14446
- .brz .brz-story .brz-fs-sm-275 {
14447
- font-size: 63.25% !important; }
14448
- .brz .brz-fs-sm-276 {
14449
- font-size: 276px !important; }
14450
- .brz .brz-story .brz-fs-sm-276 {
14451
- font-size: 63.48% !important; }
14452
- .brz .brz-fs-sm-277 {
14453
- font-size: 277px !important; }
14454
- .brz .brz-story .brz-fs-sm-277 {
14455
- font-size: 63.71% !important; }
14456
- .brz .brz-fs-sm-278 {
14457
- font-size: 278px !important; }
14458
- .brz .brz-story .brz-fs-sm-278 {
14459
- font-size: 63.94% !important; }
14460
- .brz .brz-fs-sm-279 {
14461
- font-size: 279px !important; }
14462
- .brz .brz-story .brz-fs-sm-279 {
14463
- font-size: 64.17% !important; }
14464
- .brz .brz-fs-sm-280 {
14465
- font-size: 280px !important; }
14466
- .brz .brz-story .brz-fs-sm-280 {
14467
- font-size: 64.4% !important; }
14468
- .brz .brz-fs-sm-281 {
14469
- font-size: 281px !important; }
14470
- .brz .brz-story .brz-fs-sm-281 {
14471
- font-size: 64.63% !important; }
14472
- .brz .brz-fs-sm-282 {
14473
- font-size: 282px !important; }
14474
- .brz .brz-story .brz-fs-sm-282 {
14475
- font-size: 64.86% !important; }
14476
- .brz .brz-fs-sm-283 {
14477
- font-size: 283px !important; }
14478
- .brz .brz-story .brz-fs-sm-283 {
14479
- font-size: 65.09% !important; }
14480
- .brz .brz-fs-sm-284 {
14481
- font-size: 284px !important; }
14482
- .brz .brz-story .brz-fs-sm-284 {
14483
- font-size: 65.32% !important; }
14484
- .brz .brz-fs-sm-285 {
14485
- font-size: 285px !important; }
14486
- .brz .brz-story .brz-fs-sm-285 {
14487
- font-size: 65.55% !important; }
14488
- .brz .brz-fs-sm-286 {
14489
- font-size: 286px !important; }
14490
- .brz .brz-story .brz-fs-sm-286 {
14491
- font-size: 65.78% !important; }
14492
- .brz .brz-fs-sm-287 {
14493
- font-size: 287px !important; }
14494
- .brz .brz-story .brz-fs-sm-287 {
14495
- font-size: 66.01% !important; }
14496
- .brz .brz-fs-sm-288 {
14497
- font-size: 288px !important; }
14498
- .brz .brz-story .brz-fs-sm-288 {
14499
- font-size: 66.24% !important; }
14500
- .brz .brz-fs-sm-289 {
14501
- font-size: 289px !important; }
14502
- .brz .brz-story .brz-fs-sm-289 {
14503
- font-size: 66.47% !important; }
14504
- .brz .brz-fs-sm-290 {
14505
- font-size: 290px !important; }
14506
- .brz .brz-story .brz-fs-sm-290 {
14507
- font-size: 66.7% !important; }
14508
- .brz .brz-fs-sm-291 {
14509
- font-size: 291px !important; }
14510
- .brz .brz-story .brz-fs-sm-291 {
14511
- font-size: 66.93% !important; }
14512
- .brz .brz-fs-sm-292 {
14513
- font-size: 292px !important; }
14514
- .brz .brz-story .brz-fs-sm-292 {
14515
- font-size: 67.16% !important; }
14516
- .brz .brz-fs-sm-293 {
14517
- font-size: 293px !important; }
14518
- .brz .brz-story .brz-fs-sm-293 {
14519
- font-size: 67.39% !important; }
14520
- .brz .brz-fs-sm-294 {
14521
- font-size: 294px !important; }
14522
- .brz .brz-story .brz-fs-sm-294 {
14523
- font-size: 67.62% !important; }
14524
- .brz .brz-fs-sm-295 {
14525
- font-size: 295px !important; }
14526
- .brz .brz-story .brz-fs-sm-295 {
14527
- font-size: 67.85% !important; }
14528
- .brz .brz-fs-sm-296 {
14529
- font-size: 296px !important; }
14530
- .brz .brz-story .brz-fs-sm-296 {
14531
- font-size: 68.08% !important; }
14532
- .brz .brz-fs-sm-297 {
14533
- font-size: 297px !important; }
14534
- .brz .brz-story .brz-fs-sm-297 {
14535
- font-size: 68.31% !important; }
14536
- .brz .brz-fs-sm-298 {
14537
- font-size: 298px !important; }
14538
- .brz .brz-story .brz-fs-sm-298 {
14539
- font-size: 68.54% !important; }
14540
- .brz .brz-fs-sm-299 {
14541
- font-size: 299px !important; }
14542
- .brz .brz-story .brz-fs-sm-299 {
14543
- font-size: 68.77% !important; }
14544
- .brz .brz-fs-sm-300 {
14545
- font-size: 300px !important; }
14546
- .brz .brz-story .brz-fs-sm-300 {
14547
- font-size: 69% !important; }
14548
- .brz .brz-lh-sm-1 {
14549
- line-height: 1em !important; }
14550
- .brz .brz-lh-sm-1_1 {
14551
- line-height: 1.1em !important; }
14552
- .brz .brz-lh-sm-1_2 {
14553
- line-height: 1.2em !important; }
14554
- .brz .brz-lh-sm-1_3 {
14555
- line-height: 1.3em !important; }
14556
- .brz .brz-lh-sm-1_4 {
14557
- line-height: 1.4em !important; }
14558
- .brz .brz-lh-sm-1_5 {
14559
- line-height: 1.5em !important; }
14560
- .brz .brz-lh-sm-1_6 {
14561
- line-height: 1.6em !important; }
14562
- .brz .brz-lh-sm-1_7 {
14563
- line-height: 1.7em !important; }
14564
- .brz .brz-lh-sm-1_8 {
14565
- line-height: 1.8em !important; }
14566
- .brz .brz-lh-sm-1_9 {
14567
- line-height: 1.9em !important; }
14568
- .brz .brz-lh-sm-2 {
14569
- line-height: 2em !important; }
14570
- .brz .brz-lh-sm-2_1 {
14571
- line-height: 2.1em !important; }
14572
- .brz .brz-lh-sm-2_2 {
14573
- line-height: 2.2em !important; }
14574
- .brz .brz-lh-sm-2_3 {
14575
- line-height: 2.3em !important; }
14576
- .brz .brz-lh-sm-2_4 {
14577
- line-height: 2.4em !important; }
14578
- .brz .brz-lh-sm-2_5 {
14579
- line-height: 2.5em !important; }
14580
- .brz .brz-lh-sm-2_6 {
14581
- line-height: 2.6em !important; }
14582
- .brz .brz-lh-sm-2_7 {
14583
- line-height: 2.7em !important; }
14584
- .brz .brz-lh-sm-2_8 {
14585
- line-height: 2.8em !important; }
14586
- .brz .brz-lh-sm-2_9 {
14587
- line-height: 2.9em !important; }
14588
- .brz .brz-lh-sm-3 {
14589
- line-height: 3em !important; }
14590
- .brz .brz-lh-sm-3_1 {
14591
- line-height: 3.1em !important; }
14592
- .brz .brz-lh-sm-3_2 {
14593
- line-height: 3.2em !important; }
14594
- .brz .brz-lh-sm-3_3 {
14595
- line-height: 3.3em !important; }
14596
- .brz .brz-lh-sm-3_4 {
14597
- line-height: 3.4em !important; }
14598
- .brz .brz-lh-sm-3_5 {
14599
- line-height: 3.5em !important; }
14600
- .brz .brz-lh-sm-3_6 {
14601
- line-height: 3.6em !important; }
14602
- .brz .brz-lh-sm-3_7 {
14603
- line-height: 3.7em !important; }
14604
- .brz .brz-lh-sm-3_8 {
14605
- line-height: 3.8em !important; }
14606
- .brz .brz-lh-sm-3_9 {
14607
- line-height: 3.9em !important; }
14608
- .brz .brz-lh-sm-4 {
14609
- line-height: 4em !important; }
14610
- .brz .brz-lh-sm-4_1 {
14611
- line-height: 4.1em !important; }
14612
- .brz .brz-lh-sm-4_2 {
14613
- line-height: 4.2em !important; }
14614
- .brz .brz-lh-sm-4_3 {
14615
- line-height: 4.3em !important; }
14616
- .brz .brz-lh-sm-4_4 {
14617
- line-height: 4.4em !important; }
14618
- .brz .brz-lh-sm-4_5 {
14619
- line-height: 4.5em !important; }
14620
- .brz .brz-lh-sm-4_6 {
14621
- line-height: 4.6em !important; }
14622
- .brz .brz-lh-sm-4_7 {
14623
- line-height: 4.7em !important; }
14624
- .brz .brz-lh-sm-4_8 {
14625
- line-height: 4.8em !important; }
14626
- .brz .brz-lh-sm-4_9 {
14627
- line-height: 4.9em !important; }
14628
- .brz .brz-lh-sm-5 {
14629
- line-height: 5em !important; }
14630
- .brz .brz-lh-sm-5_1 {
14631
- line-height: 5.1em !important; }
14632
- .brz .brz-lh-sm-5_2 {
14633
- line-height: 5.2em !important; }
14634
- .brz .brz-lh-sm-5_3 {
14635
- line-height: 5.3em !important; }
14636
- .brz .brz-lh-sm-5_4 {
14637
- line-height: 5.4em !important; }
14638
- .brz .brz-lh-sm-5_5 {
14639
- line-height: 5.5em !important; }
14640
- .brz .brz-lh-sm-5_6 {
14641
- line-height: 5.6em !important; }
14642
- .brz .brz-lh-sm-5_7 {
14643
- line-height: 5.7em !important; }
14644
- .brz .brz-lh-sm-5_8 {
14645
- line-height: 5.8em !important; }
14646
- .brz .brz-lh-sm-5_9 {
14647
- line-height: 5.9em !important; }
14648
- .brz .brz-fw-sm-100 {
14649
- font-weight: 100 !important; }
14650
- .brz .brz-fw-sm-200 {
14651
- font-weight: 200 !important; }
14652
- .brz .brz-fw-sm-300 {
14653
- font-weight: 300 !important; }
14654
- .brz .brz-fw-sm-400 {
14655
- font-weight: 400 !important; }
14656
- .brz .brz-fw-sm-500 {
14657
- font-weight: 500 !important; }
14658
- .brz .brz-fw-sm-600 {
14659
- font-weight: 600 !important; }
14660
- .brz .brz-fw-sm-700 {
14661
- font-weight: 700 !important; }
14662
- .brz .brz-fw-sm-800 {
14663
- font-weight: 800 !important; }
14664
- .brz .brz-fw-sm-900 {
14665
- font-weight: 900 !important; }
14666
- .brz .brz-fw-sm-1000 {
14667
- font-weight: 1000 !important; }
14668
- .brz .brz-fw-sm-1100 {
14669
- font-weight: 1100 !important; }
14670
- .brz .brz-fw-sm-1200 {
14671
- font-weight: 1200 !important; }
14672
- .brz .brz-fw-sm-1300 {
14673
- font-weight: 1300 !important; }
14674
- .brz .brz-fw-sm-1400 {
14675
- font-weight: 1400 !important; }
14676
- .brz .brz-fw-sm-1500 {
14677
- font-weight: 1500 !important; }
14678
- .brz .brz-fw-sm-1600 {
14679
- font-weight: 1600 !important; }
14680
- .brz .brz-fw-sm-1700 {
14681
- font-weight: 1700 !important; }
14682
- .brz .brz-fw-sm-1800 {
14683
- font-weight: 1800 !important; }
14684
- .brz .brz-fw-sm-1900 {
14685
- font-weight: 1900 !important; }
14686
- .brz .brz-fw-sm-2000 {
14687
- font-weight: 2000 !important; }
14688
- .brz .brz-ls-sm-m_20 {
14689
- letter-spacing: -20px !important; }
14690
- .brz .brz-ls-sm-m_20_5 {
14691
- letter-spacing: -20.5px !important; }
14692
- .brz .brz-ls-sm-m_19 {
14693
- letter-spacing: -19px !important; }
14694
- .brz .brz-ls-sm-m_19_5 {
14695
- letter-spacing: -19.5px !important; }
14696
- .brz .brz-ls-sm-m_18 {
14697
- letter-spacing: -18px !important; }
14698
- .brz .brz-ls-sm-m_18_5 {
14699
- letter-spacing: -18.5px !important; }
14700
- .brz .brz-ls-sm-m_17 {
14701
- letter-spacing: -17px !important; }
14702
- .brz .brz-ls-sm-m_17_5 {
14703
- letter-spacing: -17.5px !important; }
14704
- .brz .brz-ls-sm-m_16 {
14705
- letter-spacing: -16px !important; }
14706
- .brz .brz-ls-sm-m_16_5 {
14707
- letter-spacing: -16.5px !important; }
14708
- .brz .brz-ls-sm-m_15 {
14709
- letter-spacing: -15px !important; }
14710
- .brz .brz-ls-sm-m_15_5 {
14711
- letter-spacing: -15.5px !important; }
14712
- .brz .brz-ls-sm-m_14 {
14713
- letter-spacing: -14px !important; }
14714
- .brz .brz-ls-sm-m_14_5 {
14715
- letter-spacing: -14.5px !important; }
14716
- .brz .brz-ls-sm-m_13 {
14717
- letter-spacing: -13px !important; }
14718
- .brz .brz-ls-sm-m_13_5 {
14719
- letter-spacing: -13.5px !important; }
14720
- .brz .brz-ls-sm-m_12 {
14721
- letter-spacing: -12px !important; }
14722
- .brz .brz-ls-sm-m_12_5 {
14723
- letter-spacing: -12.5px !important; }
14724
- .brz .brz-ls-sm-m_11 {
14725
- letter-spacing: -11px !important; }
14726
- .brz .brz-ls-sm-m_11_5 {
14727
- letter-spacing: -11.5px !important; }
14728
- .brz .brz-ls-sm-m_10 {
14729
- letter-spacing: -10px !important; }
14730
- .brz .brz-ls-sm-m_10_5 {
14731
- letter-spacing: -10.5px !important; }
14732
- .brz .brz-ls-sm-m_9 {
14733
- letter-spacing: -9px !important; }
14734
- .brz .brz-ls-sm-m_9_5 {
14735
- letter-spacing: -9.5px !important; }
14736
- .brz .brz-ls-sm-m_8 {
14737
- letter-spacing: -8px !important; }
14738
- .brz .brz-ls-sm-m_8_5 {
14739
- letter-spacing: -8.5px !important; }
14740
- .brz .brz-ls-sm-m_7 {
14741
- letter-spacing: -7px !important; }
14742
- .brz .brz-ls-sm-m_7_5 {
14743
- letter-spacing: -7.5px !important; }
14744
- .brz .brz-ls-sm-m_6 {
14745
- letter-spacing: -6px !important; }
14746
- .brz .brz-ls-sm-m_6_5 {
14747
- letter-spacing: -6.5px !important; }
14748
- .brz .brz-ls-sm-m_5 {
14749
- letter-spacing: -5px !important; }
14750
- .brz .brz-ls-sm-m_5_5 {
14751
- letter-spacing: -5.5px !important; }
14752
- .brz .brz-ls-sm-m_4 {
14753
- letter-spacing: -4px !important; }
14754
- .brz .brz-ls-sm-m_4_5 {
14755
- letter-spacing: -4.5px !important; }
14756
- .brz .brz-ls-sm-m_3 {
14757
- letter-spacing: -3px !important; }
14758
- .brz .brz-ls-sm-m_3_5 {
14759
- letter-spacing: -3.5px !important; }
14760
- .brz .brz-ls-sm-m_2 {
14761
- letter-spacing: -2px !important; }
14762
- .brz .brz-ls-sm-m_2_5 {
14763
- letter-spacing: -2.5px !important; }
14764
- .brz .brz-ls-sm-m_1 {
14765
- letter-spacing: -1px !important; }
14766
- .brz .brz-ls-sm-m_1_5 {
14767
- letter-spacing: -1.5px !important; }
14768
- .brz .brz-ls-sm-m_0 {
14769
- letter-spacing: 0px !important; }
14770
- .brz .brz-ls-sm-m_0_5 {
14771
- letter-spacing: -0.5px !important; }
14772
- .brz .brz-ls-sm-0 {
14773
- letter-spacing: 0px !important; }
14774
- .brz .brz-ls-sm-0_5 {
14775
- letter-spacing: 0.5px !important; }
14776
- .brz .brz-ls-sm-1 {
14777
- letter-spacing: 1px !important; }
14778
- .brz .brz-ls-sm-1_5 {
14779
- letter-spacing: 1.5px !important; }
14780
- .brz .brz-ls-sm-2 {
14781
- letter-spacing: 2px !important; }
14782
- .brz .brz-ls-sm-2_5 {
14783
- letter-spacing: 2.5px !important; }
14784
- .brz .brz-ls-sm-3 {
14785
- letter-spacing: 3px !important; }
14786
- .brz .brz-ls-sm-3_5 {
14787
- letter-spacing: 3.5px !important; }
14788
- .brz .brz-ls-sm-4 {
14789
- letter-spacing: 4px !important; }
14790
- .brz .brz-ls-sm-4_5 {
14791
- letter-spacing: 4.5px !important; }
14792
- .brz .brz-ls-sm-5 {
14793
- letter-spacing: 5px !important; }
14794
- .brz .brz-ls-sm-5_5 {
14795
- letter-spacing: 5.5px !important; }
14796
- .brz .brz-ls-sm-6 {
14797
- letter-spacing: 6px !important; }
14798
- .brz .brz-ls-sm-6_5 {
14799
- letter-spacing: 6.5px !important; }
14800
- .brz .brz-ls-sm-7 {
14801
- letter-spacing: 7px !important; }
14802
- .brz .brz-ls-sm-7_5 {
14803
- letter-spacing: 7.5px !important; }
14804
- .brz .brz-ls-sm-8 {
14805
- letter-spacing: 8px !important; }
14806
- .brz .brz-ls-sm-8_5 {
14807
- letter-spacing: 8.5px !important; }
14808
- .brz .brz-ls-sm-9 {
14809
- letter-spacing: 9px !important; }
14810
- .brz .brz-ls-sm-9_5 {
14811
- letter-spacing: 9.5px !important; }
14812
- .brz .brz-ls-sm-10 {
14813
- letter-spacing: 10px !important; }
14814
- .brz .brz-ls-sm-10_5 {
14815
- letter-spacing: 10.5px !important; }
14816
- .brz .brz-ls-sm-11 {
14817
- letter-spacing: 11px !important; }
14818
- .brz .brz-ls-sm-11_5 {
14819
- letter-spacing: 11.5px !important; }
14820
- .brz .brz-ls-sm-12 {
14821
- letter-spacing: 12px !important; }
14822
- .brz .brz-ls-sm-12_5 {
14823
- letter-spacing: 12.5px !important; }
14824
- .brz .brz-ls-sm-13 {
14825
- letter-spacing: 13px !important; }
14826
- .brz .brz-ls-sm-13_5 {
14827
- letter-spacing: 13.5px !important; }
14828
- .brz .brz-ls-sm-14 {
14829
- letter-spacing: 14px !important; }
14830
- .brz .brz-ls-sm-14_5 {
14831
- letter-spacing: 14.5px !important; }
14832
- .brz .brz-ls-sm-15 {
14833
- letter-spacing: 15px !important; }
14834
- .brz .brz-ls-sm-15_5 {
14835
- letter-spacing: 15.5px !important; }
14836
- .brz .brz-ls-sm-16 {
14837
- letter-spacing: 16px !important; }
14838
- .brz .brz-ls-sm-16_5 {
14839
- letter-spacing: 16.5px !important; }
14840
- .brz .brz-ls-sm-17 {
14841
- letter-spacing: 17px !important; }
14842
- .brz .brz-ls-sm-17_5 {
14843
- letter-spacing: 17.5px !important; }
14844
- .brz .brz-ls-sm-18 {
14845
- letter-spacing: 18px !important; }
14846
- .brz .brz-ls-sm-18_5 {
14847
- letter-spacing: 18.5px !important; }
14848
- .brz .brz-ls-sm-19 {
14849
- letter-spacing: 19px !important; }
14850
- .brz .brz-ls-sm-19_5 {
14851
- letter-spacing: 19.5px !important; }
14852
- .brz .brz-ls-sm-20 {
14853
- letter-spacing: 20px !important; }
14854
- .brz .brz-ls-sm-20_5 {
14855
- letter-spacing: 20.5px !important; }
14856
- .brz .brz-fs-sm-im-6 {
14857
- font-size: 6px !important; }
14858
- .brz .brz-story .brz-fs-sm-im-6 {
14859
- font-size: 1.38% !important; }
14860
- .brz .brz-fs-sm-im-7 {
14861
- font-size: 7px !important; }
14862
- .brz .brz-story .brz-fs-sm-im-7 {
14863
- font-size: 1.61% !important; }
14864
- .brz .brz-fs-sm-im-8 {
14865
- font-size: 8px !important; }
14866
- .brz .brz-story .brz-fs-sm-im-8 {
14867
- font-size: 1.84% !important; }
14868
- .brz .brz-fs-sm-im-9 {
14869
- font-size: 9px !important; }
14870
- .brz .brz-story .brz-fs-sm-im-9 {
14871
- font-size: 2.07% !important; }
14872
- .brz .brz-fs-sm-im-10 {
14873
- font-size: 10px !important; }
14874
- .brz .brz-story .brz-fs-sm-im-10 {
14875
- font-size: 2.3% !important; }
14876
- .brz .brz-fs-sm-im-11 {
14877
- font-size: 11px !important; }
14878
- .brz .brz-story .brz-fs-sm-im-11 {
14879
- font-size: 2.53% !important; }
14880
- .brz .brz-fs-sm-im-12 {
14881
- font-size: 12px !important; }
14882
- .brz .brz-story .brz-fs-sm-im-12 {
14883
- font-size: 2.76% !important; }
14884
- .brz .brz-fs-sm-im-13 {
14885
- font-size: 13px !important; }
14886
- .brz .brz-story .brz-fs-sm-im-13 {
14887
- font-size: 2.99% !important; }
14888
- .brz .brz-fs-sm-im-14 {
14889
- font-size: 14px !important; }
14890
- .brz .brz-story .brz-fs-sm-im-14 {
14891
- font-size: 3.22% !important; }
14892
- .brz .brz-fs-sm-im-15 {
14893
- font-size: 15px !important; }
14894
- .brz .brz-story .brz-fs-sm-im-15 {
14895
- font-size: 3.45% !important; }
14896
- .brz .brz-fs-sm-im-16 {
14897
- font-size: 16px !important; }
14898
- .brz .brz-story .brz-fs-sm-im-16 {
14899
- font-size: 3.68% !important; }
14900
- .brz .brz-fs-sm-im-17 {
14901
- font-size: 17px !important; }
14902
- .brz .brz-story .brz-fs-sm-im-17 {
14903
- font-size: 3.91% !important; }
14904
- .brz .brz-fs-sm-im-18 {
14905
- font-size: 18px !important; }
14906
- .brz .brz-story .brz-fs-sm-im-18 {
14907
- font-size: 4.14% !important; }
14908
- .brz .brz-fs-sm-im-19 {
14909
- font-size: 19px !important; }
14910
- .brz .brz-story .brz-fs-sm-im-19 {
14911
- font-size: 4.37% !important; }
14912
- .brz .brz-fs-sm-im-20 {
14913
- font-size: 20px !important; }
14914
- .brz .brz-story .brz-fs-sm-im-20 {
14915
- font-size: 4.6% !important; }
14916
- .brz .brz-fs-sm-im-21 {
14917
- font-size: 21px !important; }
14918
- .brz .brz-story .brz-fs-sm-im-21 {
14919
- font-size: 4.83% !important; }
14920
- .brz .brz-fs-sm-im-22 {
14921
- font-size: 22px !important; }
14922
- .brz .brz-story .brz-fs-sm-im-22 {
14923
- font-size: 5.06% !important; }
14924
- .brz .brz-fs-sm-im-23 {
14925
- font-size: 23px !important; }
14926
- .brz .brz-story .brz-fs-sm-im-23 {
14927
- font-size: 5.29% !important; }
14928
- .brz .brz-fs-sm-im-24 {
14929
- font-size: 24px !important; }
14930
- .brz .brz-story .brz-fs-sm-im-24 {
14931
- font-size: 5.52% !important; }
14932
- .brz .brz-fs-sm-im-25 {
14933
- font-size: 25px !important; }
14934
- .brz .brz-story .brz-fs-sm-im-25 {
14935
- font-size: 5.75% !important; }
14936
- .brz .brz-fs-sm-im-26 {
14937
- font-size: 26px !important; }
14938
- .brz .brz-story .brz-fs-sm-im-26 {
14939
- font-size: 5.98% !important; }
14940
- .brz .brz-fs-sm-im-27 {
14941
- font-size: 27px !important; }
14942
- .brz .brz-story .brz-fs-sm-im-27 {
14943
- font-size: 6.21% !important; }
14944
- .brz .brz-fs-sm-im-28 {
14945
- font-size: 28px !important; }
14946
- .brz .brz-story .brz-fs-sm-im-28 {
14947
- font-size: 6.44% !important; }
14948
- .brz .brz-fs-sm-im-29 {
14949
- font-size: 29px !important; }
14950
- .brz .brz-story .brz-fs-sm-im-29 {
14951
- font-size: 6.67% !important; }
14952
- .brz .brz-fs-sm-im-30 {
14953
- font-size: 30px !important; }
14954
- .brz .brz-story .brz-fs-sm-im-30 {
14955
- font-size: 6.9% !important; }
14956
- .brz .brz-fs-sm-im-31 {
14957
- font-size: 31px !important; }
14958
- .brz .brz-story .brz-fs-sm-im-31 {
14959
- font-size: 7.13% !important; }
14960
- .brz .brz-fs-sm-im-32 {
14961
- font-size: 32px !important; }
14962
- .brz .brz-story .brz-fs-sm-im-32 {
14963
- font-size: 7.36% !important; }
14964
- .brz .brz-fs-sm-im-33 {
14965
- font-size: 33px !important; }
14966
- .brz .brz-story .brz-fs-sm-im-33 {
14967
- font-size: 7.59% !important; }
14968
- .brz .brz-fs-sm-im-34 {
14969
- font-size: 34px !important; }
14970
- .brz .brz-story .brz-fs-sm-im-34 {
14971
- font-size: 7.82% !important; }
14972
- .brz .brz-fs-sm-im-35 {
14973
- font-size: 35px !important; }
14974
- .brz .brz-story .brz-fs-sm-im-35 {
14975
- font-size: 8.05% !important; }
14976
- .brz .brz-fs-sm-im-36 {
14977
- font-size: 36px !important; }
14978
- .brz .brz-story .brz-fs-sm-im-36 {
14979
- font-size: 8.28% !important; }
14980
- .brz .brz-fs-sm-im-37 {
14981
- font-size: 37px !important; }
14982
- .brz .brz-story .brz-fs-sm-im-37 {
14983
- font-size: 8.51% !important; }
14984
- .brz .brz-fs-sm-im-38 {
14985
- font-size: 38px !important; }
14986
- .brz .brz-story .brz-fs-sm-im-38 {
14987
- font-size: 8.74% !important; }
14988
- .brz .brz-fs-sm-im-39 {
14989
- font-size: 39px !important; }
14990
- .brz .brz-story .brz-fs-sm-im-39 {
14991
- font-size: 8.97% !important; }
14992
- .brz .brz-fs-sm-im-40 {
14993
- font-size: 40px !important; }
14994
- .brz .brz-story .brz-fs-sm-im-40 {
14995
- font-size: 9.2% !important; }
14996
- .brz .brz-fs-sm-im-41 {
14997
- font-size: 41px !important; }
14998
- .brz .brz-story .brz-fs-sm-im-41 {
14999
- font-size: 9.43% !important; }
15000
- .brz .brz-fs-sm-im-42 {
15001
- font-size: 42px !important; }
15002
- .brz .brz-story .brz-fs-sm-im-42 {
15003
- font-size: 9.66% !important; }
15004
- .brz .brz-fs-sm-im-43 {
15005
- font-size: 43px !important; }
15006
- .brz .brz-story .brz-fs-sm-im-43 {
15007
- font-size: 9.89% !important; }
15008
- .brz .brz-fs-sm-im-44 {
15009
- font-size: 44px !important; }
15010
- .brz .brz-story .brz-fs-sm-im-44 {
15011
- font-size: 10.12% !important; }
15012
- .brz .brz-fs-sm-im-45 {
15013
- font-size: 45px !important; }
15014
- .brz .brz-story .brz-fs-sm-im-45 {
15015
- font-size: 10.35% !important; }
15016
- .brz .brz-fs-sm-im-46 {
15017
- font-size: 46px !important; }
15018
- .brz .brz-story .brz-fs-sm-im-46 {
15019
- font-size: 10.58% !important; }
15020
- .brz .brz-fs-sm-im-47 {
15021
- font-size: 47px !important; }
15022
- .brz .brz-story .brz-fs-sm-im-47 {
15023
- font-size: 10.81% !important; }
15024
- .brz .brz-fs-sm-im-48 {
15025
- font-size: 48px !important; }
15026
- .brz .brz-story .brz-fs-sm-im-48 {
15027
- font-size: 11.04% !important; }
15028
- .brz .brz-fs-sm-im-49 {
15029
- font-size: 49px !important; }
15030
- .brz .brz-story .brz-fs-sm-im-49 {
15031
- font-size: 11.27% !important; }
15032
- .brz .brz-fs-sm-im-50 {
15033
- font-size: 50px !important; }
15034
- .brz .brz-story .brz-fs-sm-im-50 {
15035
- font-size: 11.5% !important; }
15036
- .brz .brz-fs-sm-im-51 {
15037
- font-size: 51px !important; }
15038
- .brz .brz-story .brz-fs-sm-im-51 {
15039
- font-size: 11.73% !important; }
15040
- .brz .brz-fs-sm-im-52 {
15041
- font-size: 52px !important; }
15042
- .brz .brz-story .brz-fs-sm-im-52 {
15043
- font-size: 11.96% !important; }
15044
- .brz .brz-fs-sm-im-53 {
15045
- font-size: 53px !important; }
15046
- .brz .brz-story .brz-fs-sm-im-53 {
15047
- font-size: 12.19% !important; }
15048
- .brz .brz-fs-sm-im-54 {
15049
- font-size: 54px !important; }
15050
- .brz .brz-story .brz-fs-sm-im-54 {
15051
- font-size: 12.42% !important; }
15052
- .brz .brz-fs-sm-im-55 {
15053
- font-size: 55px !important; }
15054
- .brz .brz-story .brz-fs-sm-im-55 {
15055
- font-size: 12.65% !important; }
15056
- .brz .brz-fs-sm-im-56 {
15057
- font-size: 56px !important; }
15058
- .brz .brz-story .brz-fs-sm-im-56 {
15059
- font-size: 12.88% !important; }
15060
- .brz .brz-fs-sm-im-57 {
15061
- font-size: 57px !important; }
15062
- .brz .brz-story .brz-fs-sm-im-57 {
15063
- font-size: 13.11% !important; }
15064
- .brz .brz-fs-sm-im-58 {
15065
- font-size: 58px !important; }
15066
- .brz .brz-story .brz-fs-sm-im-58 {
15067
- font-size: 13.34% !important; }
15068
- .brz .brz-fs-sm-im-59 {
15069
- font-size: 59px !important; }
15070
- .brz .brz-story .brz-fs-sm-im-59 {
15071
- font-size: 13.57% !important; }
15072
- .brz .brz-fs-sm-im-60 {
15073
- font-size: 60px !important; }
15074
- .brz .brz-story .brz-fs-sm-im-60 {
15075
- font-size: 13.8% !important; }
15076
- .brz .brz-fs-sm-im-61 {
15077
- font-size: 61px !important; }
15078
- .brz .brz-story .brz-fs-sm-im-61 {
15079
- font-size: 14.03% !important; }
15080
- .brz .brz-fs-sm-im-62 {
15081
- font-size: 62px !important; }
15082
- .brz .brz-story .brz-fs-sm-im-62 {
15083
- font-size: 14.26% !important; }
15084
- .brz .brz-fs-sm-im-63 {
15085
- font-size: 63px !important; }
15086
- .brz .brz-story .brz-fs-sm-im-63 {
15087
- font-size: 14.49% !important; }
15088
- .brz .brz-fs-sm-im-64 {
15089
- font-size: 64px !important; }
15090
- .brz .brz-story .brz-fs-sm-im-64 {
15091
- font-size: 14.72% !important; }
15092
- .brz .brz-fs-sm-im-65 {
15093
- font-size: 65px !important; }
15094
- .brz .brz-story .brz-fs-sm-im-65 {
15095
- font-size: 14.95% !important; }
15096
- .brz .brz-fs-sm-im-66 {
15097
- font-size: 66px !important; }
15098
- .brz .brz-story .brz-fs-sm-im-66 {
15099
- font-size: 15.18% !important; }
15100
- .brz .brz-fs-sm-im-67 {
15101
- font-size: 67px !important; }
15102
- .brz .brz-story .brz-fs-sm-im-67 {
15103
- font-size: 15.41% !important; }
15104
- .brz .brz-fs-sm-im-68 {
15105
- font-size: 68px !important; }
15106
- .brz .brz-story .brz-fs-sm-im-68 {
15107
- font-size: 15.64% !important; }
15108
- .brz .brz-fs-sm-im-69 {
15109
- font-size: 69px !important; }
15110
- .brz .brz-story .brz-fs-sm-im-69 {
15111
- font-size: 15.87% !important; }
15112
- .brz .brz-fs-sm-im-70 {
15113
- font-size: 70px !important; }
15114
- .brz .brz-story .brz-fs-sm-im-70 {
15115
- font-size: 16.1% !important; }
15116
- .brz .brz-fs-sm-im-71 {
15117
- font-size: 71px !important; }
15118
- .brz .brz-story .brz-fs-sm-im-71 {
15119
- font-size: 16.33% !important; }
15120
- .brz .brz-fs-sm-im-72 {
15121
- font-size: 72px !important; }
15122
- .brz .brz-story .brz-fs-sm-im-72 {
15123
- font-size: 16.56% !important; }
15124
- .brz .brz-fs-sm-im-73 {
15125
- font-size: 73px !important; }
15126
- .brz .brz-story .brz-fs-sm-im-73 {
15127
- font-size: 16.79% !important; }
15128
- .brz .brz-fs-sm-im-74 {
15129
- font-size: 74px !important; }
15130
- .brz .brz-story .brz-fs-sm-im-74 {
15131
- font-size: 17.02% !important; }
15132
- .brz .brz-fs-sm-im-75 {
15133
- font-size: 75px !important; }
15134
- .brz .brz-story .brz-fs-sm-im-75 {
15135
- font-size: 17.25% !important; }
15136
- .brz .brz-fs-sm-im-76 {
15137
- font-size: 76px !important; }
15138
- .brz .brz-story .brz-fs-sm-im-76 {
15139
- font-size: 17.48% !important; }
15140
- .brz .brz-fs-sm-im-77 {
15141
- font-size: 77px !important; }
15142
- .brz .brz-story .brz-fs-sm-im-77 {
15143
- font-size: 17.71% !important; }
15144
- .brz .brz-fs-sm-im-78 {
15145
- font-size: 78px !important; }
15146
- .brz .brz-story .brz-fs-sm-im-78 {
15147
- font-size: 17.94% !important; }
15148
- .brz .brz-fs-sm-im-79 {
15149
- font-size: 79px !important; }
15150
- .brz .brz-story .brz-fs-sm-im-79 {
15151
- font-size: 18.17% !important; }
15152
- .brz .brz-fs-sm-im-80 {
15153
- font-size: 80px !important; }
15154
- .brz .brz-story .brz-fs-sm-im-80 {
15155
- font-size: 18.4% !important; }
15156
- .brz .brz-fs-sm-im-81 {
15157
- font-size: 81px !important; }
15158
- .brz .brz-story .brz-fs-sm-im-81 {
15159
- font-size: 18.63% !important; }
15160
- .brz .brz-fs-sm-im-82 {
15161
- font-size: 82px !important; }
15162
- .brz .brz-story .brz-fs-sm-im-82 {
15163
- font-size: 18.86% !important; }
15164
- .brz .brz-fs-sm-im-83 {
15165
- font-size: 83px !important; }
15166
- .brz .brz-story .brz-fs-sm-im-83 {
15167
- font-size: 19.09% !important; }
15168
- .brz .brz-fs-sm-im-84 {
15169
- font-size: 84px !important; }
15170
- .brz .brz-story .brz-fs-sm-im-84 {
15171
- font-size: 19.32% !important; }
15172
- .brz .brz-fs-sm-im-85 {
15173
- font-size: 85px !important; }
15174
- .brz .brz-story .brz-fs-sm-im-85 {
15175
- font-size: 19.55% !important; }
15176
- .brz .brz-fs-sm-im-86 {
15177
- font-size: 86px !important; }
15178
- .brz .brz-story .brz-fs-sm-im-86 {
15179
- font-size: 19.78% !important; }
15180
- .brz .brz-fs-sm-im-87 {
15181
- font-size: 87px !important; }
15182
- .brz .brz-story .brz-fs-sm-im-87 {
15183
- font-size: 20.01% !important; }
15184
- .brz .brz-fs-sm-im-88 {
15185
- font-size: 88px !important; }
15186
- .brz .brz-story .brz-fs-sm-im-88 {
15187
- font-size: 20.24% !important; }
15188
- .brz .brz-fs-sm-im-89 {
15189
- font-size: 89px !important; }
15190
- .brz .brz-story .brz-fs-sm-im-89 {
15191
- font-size: 20.47% !important; }
15192
- .brz .brz-fs-sm-im-90 {
15193
- font-size: 90px !important; }
15194
- .brz .brz-story .brz-fs-sm-im-90 {
15195
- font-size: 20.7% !important; }
15196
- .brz .brz-fs-sm-im-91 {
15197
- font-size: 91px !important; }
15198
- .brz .brz-story .brz-fs-sm-im-91 {
15199
- font-size: 20.93% !important; }
15200
- .brz .brz-fs-sm-im-92 {
15201
- font-size: 92px !important; }
15202
- .brz .brz-story .brz-fs-sm-im-92 {
15203
- font-size: 21.16% !important; }
15204
- .brz .brz-fs-sm-im-93 {
15205
- font-size: 93px !important; }
15206
- .brz .brz-story .brz-fs-sm-im-93 {
15207
- font-size: 21.39% !important; }
15208
- .brz .brz-fs-sm-im-94 {
15209
- font-size: 94px !important; }
15210
- .brz .brz-story .brz-fs-sm-im-94 {
15211
- font-size: 21.62% !important; }
15212
- .brz .brz-fs-sm-im-95 {
15213
- font-size: 95px !important; }
15214
- .brz .brz-story .brz-fs-sm-im-95 {
15215
- font-size: 21.85% !important; }
15216
- .brz .brz-fs-sm-im-96 {
15217
- font-size: 96px !important; }
15218
- .brz .brz-story .brz-fs-sm-im-96 {
15219
- font-size: 22.08% !important; }
15220
- .brz .brz-fs-sm-im-97 {
15221
- font-size: 97px !important; }
15222
- .brz .brz-story .brz-fs-sm-im-97 {
15223
- font-size: 22.31% !important; }
15224
- .brz .brz-fs-sm-im-98 {
15225
- font-size: 98px !important; }
15226
- .brz .brz-story .brz-fs-sm-im-98 {
15227
- font-size: 22.54% !important; }
15228
- .brz .brz-fs-sm-im-99 {
15229
- font-size: 99px !important; }
15230
- .brz .brz-story .brz-fs-sm-im-99 {
15231
- font-size: 22.77% !important; }
15232
- .brz .brz-fs-sm-im-100 {
15233
- font-size: 100px !important; }
15234
- .brz .brz-story .brz-fs-sm-im-100 {
15235
- font-size: 23% !important; }
15236
- .brz .brz-fs-sm-im-101 {
15237
- font-size: 101px !important; }
15238
- .brz .brz-story .brz-fs-sm-im-101 {
15239
- font-size: 23.23% !important; }
15240
- .brz .brz-fs-sm-im-102 {
15241
- font-size: 102px !important; }
15242
- .brz .brz-story .brz-fs-sm-im-102 {
15243
- font-size: 23.46% !important; }
15244
- .brz .brz-fs-sm-im-103 {
15245
- font-size: 103px !important; }
15246
- .brz .brz-story .brz-fs-sm-im-103 {
15247
- font-size: 23.69% !important; }
15248
- .brz .brz-fs-sm-im-104 {
15249
- font-size: 104px !important; }
15250
- .brz .brz-story .brz-fs-sm-im-104 {
15251
- font-size: 23.92% !important; }
15252
- .brz .brz-fs-sm-im-105 {
15253
- font-size: 105px !important; }
15254
- .brz .brz-story .brz-fs-sm-im-105 {
15255
- font-size: 24.15% !important; }
15256
- .brz .brz-fs-sm-im-106 {
15257
- font-size: 106px !important; }
15258
- .brz .brz-story .brz-fs-sm-im-106 {
15259
- font-size: 24.38% !important; }
15260
- .brz .brz-fs-sm-im-107 {
15261
- font-size: 107px !important; }
15262
- .brz .brz-story .brz-fs-sm-im-107 {
15263
- font-size: 24.61% !important; }
15264
- .brz .brz-fs-sm-im-108 {
15265
- font-size: 108px !important; }
15266
- .brz .brz-story .brz-fs-sm-im-108 {
15267
- font-size: 24.84% !important; }
15268
- .brz .brz-fs-sm-im-109 {
15269
- font-size: 109px !important; }
15270
- .brz .brz-story .brz-fs-sm-im-109 {
15271
- font-size: 25.07% !important; }
15272
- .brz .brz-fs-sm-im-110 {
15273
- font-size: 110px !important; }
15274
- .brz .brz-story .brz-fs-sm-im-110 {
15275
- font-size: 25.3% !important; }
15276
- .brz .brz-fs-sm-im-111 {
15277
- font-size: 111px !important; }
15278
- .brz .brz-story .brz-fs-sm-im-111 {
15279
- font-size: 25.53% !important; }
15280
- .brz .brz-fs-sm-im-112 {
15281
- font-size: 112px !important; }
15282
- .brz .brz-story .brz-fs-sm-im-112 {
15283
- font-size: 25.76% !important; }
15284
- .brz .brz-fs-sm-im-113 {
15285
- font-size: 113px !important; }
15286
- .brz .brz-story .brz-fs-sm-im-113 {
15287
- font-size: 25.99% !important; }
15288
- .brz .brz-fs-sm-im-114 {
15289
- font-size: 114px !important; }
15290
- .brz .brz-story .brz-fs-sm-im-114 {
15291
- font-size: 26.22% !important; }
15292
- .brz .brz-fs-sm-im-115 {
15293
- font-size: 115px !important; }
15294
- .brz .brz-story .brz-fs-sm-im-115 {
15295
- font-size: 26.45% !important; }
15296
- .brz .brz-fs-sm-im-116 {
15297
- font-size: 116px !important; }
15298
- .brz .brz-story .brz-fs-sm-im-116 {
15299
- font-size: 26.68% !important; }
15300
- .brz .brz-fs-sm-im-117 {
15301
- font-size: 117px !important; }
15302
- .brz .brz-story .brz-fs-sm-im-117 {
15303
- font-size: 26.91% !important; }
15304
- .brz .brz-fs-sm-im-118 {
15305
- font-size: 118px !important; }
15306
- .brz .brz-story .brz-fs-sm-im-118 {
15307
- font-size: 27.14% !important; }
15308
- .brz .brz-fs-sm-im-119 {
15309
- font-size: 119px !important; }
15310
- .brz .brz-story .brz-fs-sm-im-119 {
15311
- font-size: 27.37% !important; }
15312
- .brz .brz-fs-sm-im-120 {
15313
- font-size: 120px !important; }
15314
- .brz .brz-story .brz-fs-sm-im-120 {
15315
- font-size: 27.6% !important; }
15316
- .brz .brz-fs-sm-im-121 {
15317
- font-size: 121px !important; }
15318
- .brz .brz-story .brz-fs-sm-im-121 {
15319
- font-size: 27.83% !important; }
15320
- .brz .brz-fs-sm-im-122 {
15321
- font-size: 122px !important; }
15322
- .brz .brz-story .brz-fs-sm-im-122 {
15323
- font-size: 28.06% !important; }
15324
- .brz .brz-fs-sm-im-123 {
15325
- font-size: 123px !important; }
15326
- .brz .brz-story .brz-fs-sm-im-123 {
15327
- font-size: 28.29% !important; }
15328
- .brz .brz-fs-sm-im-124 {
15329
- font-size: 124px !important; }
15330
- .brz .brz-story .brz-fs-sm-im-124 {
15331
- font-size: 28.52% !important; }
15332
- .brz .brz-fs-sm-im-125 {
15333
- font-size: 125px !important; }
15334
- .brz .brz-story .brz-fs-sm-im-125 {
15335
- font-size: 28.75% !important; }
15336
- .brz .brz-fs-sm-im-126 {
15337
- font-size: 126px !important; }
15338
- .brz .brz-story .brz-fs-sm-im-126 {
15339
- font-size: 28.98% !important; }
15340
- .brz .brz-fs-sm-im-127 {
15341
- font-size: 127px !important; }
15342
- .brz .brz-story .brz-fs-sm-im-127 {
15343
- font-size: 29.21% !important; }
15344
- .brz .brz-fs-sm-im-128 {
15345
- font-size: 128px !important; }
15346
- .brz .brz-story .brz-fs-sm-im-128 {
15347
- font-size: 29.44% !important; }
15348
- .brz .brz-fs-sm-im-129 {
15349
- font-size: 129px !important; }
15350
- .brz .brz-story .brz-fs-sm-im-129 {
15351
- font-size: 29.67% !important; }
15352
- .brz .brz-fs-sm-im-130 {
15353
- font-size: 130px !important; }
15354
- .brz .brz-story .brz-fs-sm-im-130 {
15355
- font-size: 29.9% !important; }
15356
- .brz .brz-fs-sm-im-131 {
15357
- font-size: 131px !important; }
15358
- .brz .brz-story .brz-fs-sm-im-131 {
15359
- font-size: 30.13% !important; }
15360
- .brz .brz-fs-sm-im-132 {
15361
- font-size: 132px !important; }
15362
- .brz .brz-story .brz-fs-sm-im-132 {
15363
- font-size: 30.36% !important; }
15364
- .brz .brz-fs-sm-im-133 {
15365
- font-size: 133px !important; }
15366
- .brz .brz-story .brz-fs-sm-im-133 {
15367
- font-size: 30.59% !important; }
15368
- .brz .brz-fs-sm-im-134 {
15369
- font-size: 134px !important; }
15370
- .brz .brz-story .brz-fs-sm-im-134 {
15371
- font-size: 30.82% !important; }
15372
- .brz .brz-fs-sm-im-135 {
15373
- font-size: 135px !important; }
15374
- .brz .brz-story .brz-fs-sm-im-135 {
15375
- font-size: 31.05% !important; }
15376
- .brz .brz-fs-sm-im-136 {
15377
- font-size: 136px !important; }
15378
- .brz .brz-story .brz-fs-sm-im-136 {
15379
- font-size: 31.28% !important; }
15380
- .brz .brz-fs-sm-im-137 {
15381
- font-size: 137px !important; }
15382
- .brz .brz-story .brz-fs-sm-im-137 {
15383
- font-size: 31.51% !important; }
15384
- .brz .brz-fs-sm-im-138 {
15385
- font-size: 138px !important; }
15386
- .brz .brz-story .brz-fs-sm-im-138 {
15387
- font-size: 31.74% !important; }
15388
- .brz .brz-fs-sm-im-139 {
15389
- font-size: 139px !important; }
15390
- .brz .brz-story .brz-fs-sm-im-139 {
15391
- font-size: 31.97% !important; }
15392
- .brz .brz-fs-sm-im-140 {
15393
- font-size: 140px !important; }
15394
- .brz .brz-story .brz-fs-sm-im-140 {
15395
- font-size: 32.2% !important; }
15396
- .brz .brz-fs-sm-im-141 {
15397
- font-size: 141px !important; }
15398
- .brz .brz-story .brz-fs-sm-im-141 {
15399
- font-size: 32.43% !important; }
15400
- .brz .brz-fs-sm-im-142 {
15401
- font-size: 142px !important; }
15402
- .brz .brz-story .brz-fs-sm-im-142 {
15403
- font-size: 32.66% !important; }
15404
- .brz .brz-fs-sm-im-143 {
15405
- font-size: 143px !important; }
15406
- .brz .brz-story .brz-fs-sm-im-143 {
15407
- font-size: 32.89% !important; }
15408
- .brz .brz-fs-sm-im-144 {
15409
- font-size: 144px !important; }
15410
- .brz .brz-story .brz-fs-sm-im-144 {
15411
- font-size: 33.12% !important; }
15412
- .brz .brz-fs-sm-im-145 {
15413
- font-size: 145px !important; }
15414
- .brz .brz-story .brz-fs-sm-im-145 {
15415
- font-size: 33.35% !important; }
15416
- .brz .brz-fs-sm-im-146 {
15417
- font-size: 146px !important; }
15418
- .brz .brz-story .brz-fs-sm-im-146 {
15419
- font-size: 33.58% !important; }
15420
- .brz .brz-fs-sm-im-147 {
15421
- font-size: 147px !important; }
15422
- .brz .brz-story .brz-fs-sm-im-147 {
15423
- font-size: 33.81% !important; }
15424
- .brz .brz-fs-sm-im-148 {
15425
- font-size: 148px !important; }
15426
- .brz .brz-story .brz-fs-sm-im-148 {
15427
- font-size: 34.04% !important; }
15428
- .brz .brz-fs-sm-im-149 {
15429
- font-size: 149px !important; }
15430
- .brz .brz-story .brz-fs-sm-im-149 {
15431
- font-size: 34.27% !important; }
15432
- .brz .brz-fs-sm-im-150 {
15433
- font-size: 150px !important; }
15434
- .brz .brz-story .brz-fs-sm-im-150 {
15435
- font-size: 34.5% !important; }
15436
- .brz .brz-fs-sm-im-151 {
15437
- font-size: 151px !important; }
15438
- .brz .brz-story .brz-fs-sm-im-151 {
15439
- font-size: 34.73% !important; }
15440
- .brz .brz-fs-sm-im-152 {
15441
- font-size: 152px !important; }
15442
- .brz .brz-story .brz-fs-sm-im-152 {
15443
- font-size: 34.96% !important; }
15444
- .brz .brz-fs-sm-im-153 {
15445
- font-size: 153px !important; }
15446
- .brz .brz-story .brz-fs-sm-im-153 {
15447
- font-size: 35.19% !important; }
15448
- .brz .brz-fs-sm-im-154 {
15449
- font-size: 154px !important; }
15450
- .brz .brz-story .brz-fs-sm-im-154 {
15451
- font-size: 35.42% !important; }
15452
- .brz .brz-fs-sm-im-155 {
15453
- font-size: 155px !important; }
15454
- .brz .brz-story .brz-fs-sm-im-155 {
15455
- font-size: 35.65% !important; }
15456
- .brz .brz-fs-sm-im-156 {
15457
- font-size: 156px !important; }
15458
- .brz .brz-story .brz-fs-sm-im-156 {
15459
- font-size: 35.88% !important; }
15460
- .brz .brz-fs-sm-im-157 {
15461
- font-size: 157px !important; }
15462
- .brz .brz-story .brz-fs-sm-im-157 {
15463
- font-size: 36.11% !important; }
15464
- .brz .brz-fs-sm-im-158 {
15465
- font-size: 158px !important; }
15466
- .brz .brz-story .brz-fs-sm-im-158 {
15467
- font-size: 36.34% !important; }
15468
- .brz .brz-fs-sm-im-159 {
15469
- font-size: 159px !important; }
15470
- .brz .brz-story .brz-fs-sm-im-159 {
15471
- font-size: 36.57% !important; }
15472
- .brz .brz-fs-sm-im-160 {
15473
- font-size: 160px !important; }
15474
- .brz .brz-story .brz-fs-sm-im-160 {
15475
- font-size: 36.8% !important; }
15476
- .brz .brz-fs-sm-im-161 {
15477
- font-size: 161px !important; }
15478
- .brz .brz-story .brz-fs-sm-im-161 {
15479
- font-size: 37.03% !important; }
15480
- .brz .brz-fs-sm-im-162 {
15481
- font-size: 162px !important; }
15482
- .brz .brz-story .brz-fs-sm-im-162 {
15483
- font-size: 37.26% !important; }
15484
- .brz .brz-fs-sm-im-163 {
15485
- font-size: 163px !important; }
15486
- .brz .brz-story .brz-fs-sm-im-163 {
15487
- font-size: 37.49% !important; }
15488
- .brz .brz-fs-sm-im-164 {
15489
- font-size: 164px !important; }
15490
- .brz .brz-story .brz-fs-sm-im-164 {
15491
- font-size: 37.72% !important; }
15492
- .brz .brz-fs-sm-im-165 {
15493
- font-size: 165px !important; }
15494
- .brz .brz-story .brz-fs-sm-im-165 {
15495
- font-size: 37.95% !important; }
15496
- .brz .brz-fs-sm-im-166 {
15497
- font-size: 166px !important; }
15498
- .brz .brz-story .brz-fs-sm-im-166 {
15499
- font-size: 38.18% !important; }
15500
- .brz .brz-fs-sm-im-167 {
15501
- font-size: 167px !important; }
15502
- .brz .brz-story .brz-fs-sm-im-167 {
15503
- font-size: 38.41% !important; }
15504
- .brz .brz-fs-sm-im-168 {
15505
- font-size: 168px !important; }
15506
- .brz .brz-story .brz-fs-sm-im-168 {
15507
- font-size: 38.64% !important; }
15508
- .brz .brz-fs-sm-im-169 {
15509
- font-size: 169px !important; }
15510
- .brz .brz-story .brz-fs-sm-im-169 {
15511
- font-size: 38.87% !important; }
15512
- .brz .brz-fs-sm-im-170 {
15513
- font-size: 170px !important; }
15514
- .brz .brz-story .brz-fs-sm-im-170 {
15515
- font-size: 39.1% !important; }
15516
- .brz .brz-fs-sm-im-171 {
15517
- font-size: 171px !important; }
15518
- .brz .brz-story .brz-fs-sm-im-171 {
15519
- font-size: 39.33% !important; }
15520
- .brz .brz-fs-sm-im-172 {
15521
- font-size: 172px !important; }
15522
- .brz .brz-story .brz-fs-sm-im-172 {
15523
- font-size: 39.56% !important; }
15524
- .brz .brz-fs-sm-im-173 {
15525
- font-size: 173px !important; }
15526
- .brz .brz-story .brz-fs-sm-im-173 {
15527
- font-size: 39.79% !important; }
15528
- .brz .brz-fs-sm-im-174 {
15529
- font-size: 174px !important; }
15530
- .brz .brz-story .brz-fs-sm-im-174 {
15531
- font-size: 40.02% !important; }
15532
- .brz .brz-fs-sm-im-175 {
15533
- font-size: 175px !important; }
15534
- .brz .brz-story .brz-fs-sm-im-175 {
15535
- font-size: 40.25% !important; }
15536
- .brz .brz-fs-sm-im-176 {
15537
- font-size: 176px !important; }
15538
- .brz .brz-story .brz-fs-sm-im-176 {
15539
- font-size: 40.48% !important; }
15540
- .brz .brz-fs-sm-im-177 {
15541
- font-size: 177px !important; }
15542
- .brz .brz-story .brz-fs-sm-im-177 {
15543
- font-size: 40.71% !important; }
15544
- .brz .brz-fs-sm-im-178 {
15545
- font-size: 178px !important; }
15546
- .brz .brz-story .brz-fs-sm-im-178 {
15547
- font-size: 40.94% !important; }
15548
- .brz .brz-fs-sm-im-179 {
15549
- font-size: 179px !important; }
15550
- .brz .brz-story .brz-fs-sm-im-179 {
15551
- font-size: 41.17% !important; }
15552
- .brz .brz-fs-sm-im-180 {
15553
- font-size: 180px !important; }
15554
- .brz .brz-story .brz-fs-sm-im-180 {
15555
- font-size: 41.4% !important; }
15556
- .brz .brz-fs-sm-im-181 {
15557
- font-size: 181px !important; }
15558
- .brz .brz-story .brz-fs-sm-im-181 {
15559
- font-size: 41.63% !important; }
15560
- .brz .brz-fs-sm-im-182 {
15561
- font-size: 182px !important; }
15562
- .brz .brz-story .brz-fs-sm-im-182 {
15563
- font-size: 41.86% !important; }
15564
- .brz .brz-fs-sm-im-183 {
15565
- font-size: 183px !important; }
15566
- .brz .brz-story .brz-fs-sm-im-183 {
15567
- font-size: 42.09% !important; }
15568
- .brz .brz-fs-sm-im-184 {
15569
- font-size: 184px !important; }
15570
- .brz .brz-story .brz-fs-sm-im-184 {
15571
- font-size: 42.32% !important; }
15572
- .brz .brz-fs-sm-im-185 {
15573
- font-size: 185px !important; }
15574
- .brz .brz-story .brz-fs-sm-im-185 {
15575
- font-size: 42.55% !important; }
15576
- .brz .brz-fs-sm-im-186 {
15577
- font-size: 186px !important; }
15578
- .brz .brz-story .brz-fs-sm-im-186 {
15579
- font-size: 42.78% !important; }
15580
- .brz .brz-fs-sm-im-187 {
15581
- font-size: 187px !important; }
15582
- .brz .brz-story .brz-fs-sm-im-187 {
15583
- font-size: 43.01% !important; }
15584
- .brz .brz-fs-sm-im-188 {
15585
- font-size: 188px !important; }
15586
- .brz .brz-story .brz-fs-sm-im-188 {
15587
- font-size: 43.24% !important; }
15588
- .brz .brz-fs-sm-im-189 {
15589
- font-size: 189px !important; }
15590
- .brz .brz-story .brz-fs-sm-im-189 {
15591
- font-size: 43.47% !important; }
15592
- .brz .brz-fs-sm-im-190 {
15593
- font-size: 190px !important; }
15594
- .brz .brz-story .brz-fs-sm-im-190 {
15595
- font-size: 43.7% !important; }
15596
- .brz .brz-fs-sm-im-191 {
15597
- font-size: 191px !important; }
15598
- .brz .brz-story .brz-fs-sm-im-191 {
15599
- font-size: 43.93% !important; }
15600
- .brz .brz-fs-sm-im-192 {
15601
- font-size: 192px !important; }
15602
- .brz .brz-story .brz-fs-sm-im-192 {
15603
- font-size: 44.16% !important; }
15604
- .brz .brz-fs-sm-im-193 {
15605
- font-size: 193px !important; }
15606
- .brz .brz-story .brz-fs-sm-im-193 {
15607
- font-size: 44.39% !important; }
15608
- .brz .brz-fs-sm-im-194 {
15609
- font-size: 194px !important; }
15610
- .brz .brz-story .brz-fs-sm-im-194 {
15611
- font-size: 44.62% !important; }
15612
- .brz .brz-fs-sm-im-195 {
15613
- font-size: 195px !important; }
15614
- .brz .brz-story .brz-fs-sm-im-195 {
15615
- font-size: 44.85% !important; }
15616
- .brz .brz-fs-sm-im-196 {
15617
- font-size: 196px !important; }
15618
- .brz .brz-story .brz-fs-sm-im-196 {
15619
- font-size: 45.08% !important; }
15620
- .brz .brz-fs-sm-im-197 {
15621
- font-size: 197px !important; }
15622
- .brz .brz-story .brz-fs-sm-im-197 {
15623
- font-size: 45.31% !important; }
15624
- .brz .brz-fs-sm-im-198 {
15625
- font-size: 198px !important; }
15626
- .brz .brz-story .brz-fs-sm-im-198 {
15627
- font-size: 45.54% !important; }
15628
- .brz .brz-fs-sm-im-199 {
15629
- font-size: 199px !important; }
15630
- .brz .brz-story .brz-fs-sm-im-199 {
15631
- font-size: 45.77% !important; }
15632
- .brz .brz-fs-sm-im-200 {
15633
- font-size: 200px !important; }
15634
- .brz .brz-story .brz-fs-sm-im-200 {
15635
- font-size: 46% !important; }
15636
- .brz .brz-fs-sm-im-201 {
15637
- font-size: 201px !important; }
15638
- .brz .brz-story .brz-fs-sm-im-201 {
15639
- font-size: 46.23% !important; }
15640
- .brz .brz-fs-sm-im-202 {
15641
- font-size: 202px !important; }
15642
- .brz .brz-story .brz-fs-sm-im-202 {
15643
- font-size: 46.46% !important; }
15644
- .brz .brz-fs-sm-im-203 {
15645
- font-size: 203px !important; }
15646
- .brz .brz-story .brz-fs-sm-im-203 {
15647
- font-size: 46.69% !important; }
15648
- .brz .brz-fs-sm-im-204 {
15649
- font-size: 204px !important; }
15650
- .brz .brz-story .brz-fs-sm-im-204 {
15651
- font-size: 46.92% !important; }
15652
- .brz .brz-fs-sm-im-205 {
15653
- font-size: 205px !important; }
15654
- .brz .brz-story .brz-fs-sm-im-205 {
15655
- font-size: 47.15% !important; }
15656
- .brz .brz-fs-sm-im-206 {
15657
- font-size: 206px !important; }
15658
- .brz .brz-story .brz-fs-sm-im-206 {
15659
- font-size: 47.38% !important; }
15660
- .brz .brz-fs-sm-im-207 {
15661
- font-size: 207px !important; }
15662
- .brz .brz-story .brz-fs-sm-im-207 {
15663
- font-size: 47.61% !important; }
15664
- .brz .brz-fs-sm-im-208 {
15665
- font-size: 208px !important; }
15666
- .brz .brz-story .brz-fs-sm-im-208 {
15667
- font-size: 47.84% !important; }
15668
- .brz .brz-fs-sm-im-209 {
15669
- font-size: 209px !important; }
15670
- .brz .brz-story .brz-fs-sm-im-209 {
15671
- font-size: 48.07% !important; }
15672
- .brz .brz-fs-sm-im-210 {
15673
- font-size: 210px !important; }
15674
- .brz .brz-story .brz-fs-sm-im-210 {
15675
- font-size: 48.3% !important; }
15676
- .brz .brz-fs-sm-im-211 {
15677
- font-size: 211px !important; }
15678
- .brz .brz-story .brz-fs-sm-im-211 {
15679
- font-size: 48.53% !important; }
15680
- .brz .brz-fs-sm-im-212 {
15681
- font-size: 212px !important; }
15682
- .brz .brz-story .brz-fs-sm-im-212 {
15683
- font-size: 48.76% !important; }
15684
- .brz .brz-fs-sm-im-213 {
15685
- font-size: 213px !important; }
15686
- .brz .brz-story .brz-fs-sm-im-213 {
15687
- font-size: 48.99% !important; }
15688
- .brz .brz-fs-sm-im-214 {
15689
- font-size: 214px !important; }
15690
- .brz .brz-story .brz-fs-sm-im-214 {
15691
- font-size: 49.22% !important; }
15692
- .brz .brz-fs-sm-im-215 {
15693
- font-size: 215px !important; }
15694
- .brz .brz-story .brz-fs-sm-im-215 {
15695
- font-size: 49.45% !important; }
15696
- .brz .brz-fs-sm-im-216 {
15697
- font-size: 216px !important; }
15698
- .brz .brz-story .brz-fs-sm-im-216 {
15699
- font-size: 49.68% !important; }
15700
- .brz .brz-fs-sm-im-217 {
15701
- font-size: 217px !important; }
15702
- .brz .brz-story .brz-fs-sm-im-217 {
15703
- font-size: 49.91% !important; }
15704
- .brz .brz-fs-sm-im-218 {
15705
- font-size: 218px !important; }
15706
- .brz .brz-story .brz-fs-sm-im-218 {
15707
- font-size: 50.14% !important; }
15708
- .brz .brz-fs-sm-im-219 {
15709
- font-size: 219px !important; }
15710
- .brz .brz-story .brz-fs-sm-im-219 {
15711
- font-size: 50.37% !important; }
15712
- .brz .brz-fs-sm-im-220 {
15713
- font-size: 220px !important; }
15714
- .brz .brz-story .brz-fs-sm-im-220 {
15715
- font-size: 50.6% !important; }
15716
- .brz .brz-fs-sm-im-221 {
15717
- font-size: 221px !important; }
15718
- .brz .brz-story .brz-fs-sm-im-221 {
15719
- font-size: 50.83% !important; }
15720
- .brz .brz-fs-sm-im-222 {
15721
- font-size: 222px !important; }
15722
- .brz .brz-story .brz-fs-sm-im-222 {
15723
- font-size: 51.06% !important; }
15724
- .brz .brz-fs-sm-im-223 {
15725
- font-size: 223px !important; }
15726
- .brz .brz-story .brz-fs-sm-im-223 {
15727
- font-size: 51.29% !important; }
15728
- .brz .brz-fs-sm-im-224 {
15729
- font-size: 224px !important; }
15730
- .brz .brz-story .brz-fs-sm-im-224 {
15731
- font-size: 51.52% !important; }
15732
- .brz .brz-fs-sm-im-225 {
15733
- font-size: 225px !important; }
15734
- .brz .brz-story .brz-fs-sm-im-225 {
15735
- font-size: 51.75% !important; }
15736
- .brz .brz-fs-sm-im-226 {
15737
- font-size: 226px !important; }
15738
- .brz .brz-story .brz-fs-sm-im-226 {
15739
- font-size: 51.98% !important; }
15740
- .brz .brz-fs-sm-im-227 {
15741
- font-size: 227px !important; }
15742
- .brz .brz-story .brz-fs-sm-im-227 {
15743
- font-size: 52.21% !important; }
15744
- .brz .brz-fs-sm-im-228 {
15745
- font-size: 228px !important; }
15746
- .brz .brz-story .brz-fs-sm-im-228 {
15747
- font-size: 52.44% !important; }
15748
- .brz .brz-fs-sm-im-229 {
15749
- font-size: 229px !important; }
15750
- .brz .brz-story .brz-fs-sm-im-229 {
15751
- font-size: 52.67% !important; }
15752
- .brz .brz-fs-sm-im-230 {
15753
- font-size: 230px !important; }
15754
- .brz .brz-story .brz-fs-sm-im-230 {
15755
- font-size: 52.9% !important; }
15756
- .brz .brz-fs-sm-im-231 {
15757
- font-size: 231px !important; }
15758
- .brz .brz-story .brz-fs-sm-im-231 {
15759
- font-size: 53.13% !important; }
15760
- .brz .brz-fs-sm-im-232 {
15761
- font-size: 232px !important; }
15762
- .brz .brz-story .brz-fs-sm-im-232 {
15763
- font-size: 53.36% !important; }
15764
- .brz .brz-fs-sm-im-233 {
15765
- font-size: 233px !important; }
15766
- .brz .brz-story .brz-fs-sm-im-233 {
15767
- font-size: 53.59% !important; }
15768
- .brz .brz-fs-sm-im-234 {
15769
- font-size: 234px !important; }
15770
- .brz .brz-story .brz-fs-sm-im-234 {
15771
- font-size: 53.82% !important; }
15772
- .brz .brz-fs-sm-im-235 {
15773
- font-size: 235px !important; }
15774
- .brz .brz-story .brz-fs-sm-im-235 {
15775
- font-size: 54.05% !important; }
15776
- .brz .brz-fs-sm-im-236 {
15777
- font-size: 236px !important; }
15778
- .brz .brz-story .brz-fs-sm-im-236 {
15779
- font-size: 54.28% !important; }
15780
- .brz .brz-fs-sm-im-237 {
15781
- font-size: 237px !important; }
15782
- .brz .brz-story .brz-fs-sm-im-237 {
15783
- font-size: 54.51% !important; }
15784
- .brz .brz-fs-sm-im-238 {
15785
- font-size: 238px !important; }
15786
- .brz .brz-story .brz-fs-sm-im-238 {
15787
- font-size: 54.74% !important; }
15788
- .brz .brz-fs-sm-im-239 {
15789
- font-size: 239px !important; }
15790
- .brz .brz-story .brz-fs-sm-im-239 {
15791
- font-size: 54.97% !important; }
15792
- .brz .brz-fs-sm-im-240 {
15793
- font-size: 240px !important; }
15794
- .brz .brz-story .brz-fs-sm-im-240 {
15795
- font-size: 55.2% !important; }
15796
- .brz .brz-fs-sm-im-241 {
15797
- font-size: 241px !important; }
15798
- .brz .brz-story .brz-fs-sm-im-241 {
15799
- font-size: 55.43% !important; }
15800
- .brz .brz-fs-sm-im-242 {
15801
- font-size: 242px !important; }
15802
- .brz .brz-story .brz-fs-sm-im-242 {
15803
- font-size: 55.66% !important; }
15804
- .brz .brz-fs-sm-im-243 {
15805
- font-size: 243px !important; }
15806
- .brz .brz-story .brz-fs-sm-im-243 {
15807
- font-size: 55.89% !important; }
15808
- .brz .brz-fs-sm-im-244 {
15809
- font-size: 244px !important; }
15810
- .brz .brz-story .brz-fs-sm-im-244 {
15811
- font-size: 56.12% !important; }
15812
- .brz .brz-fs-sm-im-245 {
15813
- font-size: 245px !important; }
15814
- .brz .brz-story .brz-fs-sm-im-245 {
15815
- font-size: 56.35% !important; }
15816
- .brz .brz-fs-sm-im-246 {
15817
- font-size: 246px !important; }
15818
- .brz .brz-story .brz-fs-sm-im-246 {
15819
- font-size: 56.58% !important; }
15820
- .brz .brz-fs-sm-im-247 {
15821
- font-size: 247px !important; }
15822
- .brz .brz-story .brz-fs-sm-im-247 {
15823
- font-size: 56.81% !important; }
15824
- .brz .brz-fs-sm-im-248 {
15825
- font-size: 248px !important; }
15826
- .brz .brz-story .brz-fs-sm-im-248 {
15827
- font-size: 57.04% !important; }
15828
- .brz .brz-fs-sm-im-249 {
15829
- font-size: 249px !important; }
15830
- .brz .brz-story .brz-fs-sm-im-249 {
15831
- font-size: 57.27% !important; }
15832
- .brz .brz-fs-sm-im-250 {
15833
- font-size: 250px !important; }
15834
- .brz .brz-story .brz-fs-sm-im-250 {
15835
- font-size: 57.5% !important; }
15836
- .brz .brz-fs-sm-im-251 {
15837
- font-size: 251px !important; }
15838
- .brz .brz-story .brz-fs-sm-im-251 {
15839
- font-size: 57.73% !important; }
15840
- .brz .brz-fs-sm-im-252 {
15841
- font-size: 252px !important; }
15842
- .brz .brz-story .brz-fs-sm-im-252 {
15843
- font-size: 57.96% !important; }
15844
- .brz .brz-fs-sm-im-253 {
15845
- font-size: 253px !important; }
15846
- .brz .brz-story .brz-fs-sm-im-253 {
15847
- font-size: 58.19% !important; }
15848
- .brz .brz-fs-sm-im-254 {
15849
- font-size: 254px !important; }
15850
- .brz .brz-story .brz-fs-sm-im-254 {
15851
- font-size: 58.42% !important; }
15852
- .brz .brz-fs-sm-im-255 {
15853
- font-size: 255px !important; }
15854
- .brz .brz-story .brz-fs-sm-im-255 {
15855
- font-size: 58.65% !important; }
15856
- .brz .brz-fs-sm-im-256 {
15857
- font-size: 256px !important; }
15858
- .brz .brz-story .brz-fs-sm-im-256 {
15859
- font-size: 58.88% !important; }
15860
- .brz .brz-fs-sm-im-257 {
15861
- font-size: 257px !important; }
15862
- .brz .brz-story .brz-fs-sm-im-257 {
15863
- font-size: 59.11% !important; }
15864
- .brz .brz-fs-sm-im-258 {
15865
- font-size: 258px !important; }
15866
- .brz .brz-story .brz-fs-sm-im-258 {
15867
- font-size: 59.34% !important; }
15868
- .brz .brz-fs-sm-im-259 {
15869
- font-size: 259px !important; }
15870
- .brz .brz-story .brz-fs-sm-im-259 {
15871
- font-size: 59.57% !important; }
15872
- .brz .brz-fs-sm-im-260 {
15873
- font-size: 260px !important; }
15874
- .brz .brz-story .brz-fs-sm-im-260 {
15875
- font-size: 59.8% !important; }
15876
- .brz .brz-fs-sm-im-261 {
15877
- font-size: 261px !important; }
15878
- .brz .brz-story .brz-fs-sm-im-261 {
15879
- font-size: 60.03% !important; }
15880
- .brz .brz-fs-sm-im-262 {
15881
- font-size: 262px !important; }
15882
- .brz .brz-story .brz-fs-sm-im-262 {
15883
- font-size: 60.26% !important; }
15884
- .brz .brz-fs-sm-im-263 {
15885
- font-size: 263px !important; }
15886
- .brz .brz-story .brz-fs-sm-im-263 {
15887
- font-size: 60.49% !important; }
15888
- .brz .brz-fs-sm-im-264 {
15889
- font-size: 264px !important; }
15890
- .brz .brz-story .brz-fs-sm-im-264 {
15891
- font-size: 60.72% !important; }
15892
- .brz .brz-fs-sm-im-265 {
15893
- font-size: 265px !important; }
15894
- .brz .brz-story .brz-fs-sm-im-265 {
15895
- font-size: 60.95% !important; }
15896
- .brz .brz-fs-sm-im-266 {
15897
- font-size: 266px !important; }
15898
- .brz .brz-story .brz-fs-sm-im-266 {
15899
- font-size: 61.18% !important; }
15900
- .brz .brz-fs-sm-im-267 {
15901
- font-size: 267px !important; }
15902
- .brz .brz-story .brz-fs-sm-im-267 {
15903
- font-size: 61.41% !important; }
15904
- .brz .brz-fs-sm-im-268 {
15905
- font-size: 268px !important; }
15906
- .brz .brz-story .brz-fs-sm-im-268 {
15907
- font-size: 61.64% !important; }
15908
- .brz .brz-fs-sm-im-269 {
15909
- font-size: 269px !important; }
15910
- .brz .brz-story .brz-fs-sm-im-269 {
15911
- font-size: 61.87% !important; }
15912
- .brz .brz-fs-sm-im-270 {
15913
- font-size: 270px !important; }
15914
- .brz .brz-story .brz-fs-sm-im-270 {
15915
- font-size: 62.1% !important; }
15916
- .brz .brz-fs-sm-im-271 {
15917
- font-size: 271px !important; }
15918
- .brz .brz-story .brz-fs-sm-im-271 {
15919
- font-size: 62.33% !important; }
15920
- .brz .brz-fs-sm-im-272 {
15921
- font-size: 272px !important; }
15922
- .brz .brz-story .brz-fs-sm-im-272 {
15923
- font-size: 62.56% !important; }
15924
- .brz .brz-fs-sm-im-273 {
15925
- font-size: 273px !important; }
15926
- .brz .brz-story .brz-fs-sm-im-273 {
15927
- font-size: 62.79% !important; }
15928
- .brz .brz-fs-sm-im-274 {
15929
- font-size: 274px !important; }
15930
- .brz .brz-story .brz-fs-sm-im-274 {
15931
- font-size: 63.02% !important; }
15932
- .brz .brz-fs-sm-im-275 {
15933
- font-size: 275px !important; }
15934
- .brz .brz-story .brz-fs-sm-im-275 {
15935
- font-size: 63.25% !important; }
15936
- .brz .brz-fs-sm-im-276 {
15937
- font-size: 276px !important; }
15938
- .brz .brz-story .brz-fs-sm-im-276 {
15939
- font-size: 63.48% !important; }
15940
- .brz .brz-fs-sm-im-277 {
15941
- font-size: 277px !important; }
15942
- .brz .brz-story .brz-fs-sm-im-277 {
15943
- font-size: 63.71% !important; }
15944
- .brz .brz-fs-sm-im-278 {
15945
- font-size: 278px !important; }
15946
- .brz .brz-story .brz-fs-sm-im-278 {
15947
- font-size: 63.94% !important; }
15948
- .brz .brz-fs-sm-im-279 {
15949
- font-size: 279px !important; }
15950
- .brz .brz-story .brz-fs-sm-im-279 {
15951
- font-size: 64.17% !important; }
15952
- .brz .brz-fs-sm-im-280 {
15953
- font-size: 280px !important; }
15954
- .brz .brz-story .brz-fs-sm-im-280 {
15955
- font-size: 64.4% !important; }
15956
- .brz .brz-fs-sm-im-281 {
15957
- font-size: 281px !important; }
15958
- .brz .brz-story .brz-fs-sm-im-281 {
15959
- font-size: 64.63% !important; }
15960
- .brz .brz-fs-sm-im-282 {
15961
- font-size: 282px !important; }
15962
- .brz .brz-story .brz-fs-sm-im-282 {
15963
- font-size: 64.86% !important; }
15964
- .brz .brz-fs-sm-im-283 {
15965
- font-size: 283px !important; }
15966
- .brz .brz-story .brz-fs-sm-im-283 {
15967
- font-size: 65.09% !important; }
15968
- .brz .brz-fs-sm-im-284 {
15969
- font-size: 284px !important; }
15970
- .brz .brz-story .brz-fs-sm-im-284 {
15971
- font-size: 65.32% !important; }
15972
- .brz .brz-fs-sm-im-285 {
15973
- font-size: 285px !important; }
15974
- .brz .brz-story .brz-fs-sm-im-285 {
15975
- font-size: 65.55% !important; }
15976
- .brz .brz-fs-sm-im-286 {
15977
- font-size: 286px !important; }
15978
- .brz .brz-story .brz-fs-sm-im-286 {
15979
- font-size: 65.78% !important; }
15980
- .brz .brz-fs-sm-im-287 {
15981
- font-size: 287px !important; }
15982
- .brz .brz-story .brz-fs-sm-im-287 {
15983
- font-size: 66.01% !important; }
15984
- .brz .brz-fs-sm-im-288 {
15985
- font-size: 288px !important; }
15986
- .brz .brz-story .brz-fs-sm-im-288 {
15987
- font-size: 66.24% !important; }
15988
- .brz .brz-fs-sm-im-289 {
15989
- font-size: 289px !important; }
15990
- .brz .brz-story .brz-fs-sm-im-289 {
15991
- font-size: 66.47% !important; }
15992
- .brz .brz-fs-sm-im-290 {
15993
- font-size: 290px !important; }
15994
- .brz .brz-story .brz-fs-sm-im-290 {
15995
- font-size: 66.7% !important; }
15996
- .brz .brz-fs-sm-im-291 {
15997
- font-size: 291px !important; }
15998
- .brz .brz-story .brz-fs-sm-im-291 {
15999
- font-size: 66.93% !important; }
16000
- .brz .brz-fs-sm-im-292 {
16001
- font-size: 292px !important; }
16002
- .brz .brz-story .brz-fs-sm-im-292 {
16003
- font-size: 67.16% !important; }
16004
- .brz .brz-fs-sm-im-293 {
16005
- font-size: 293px !important; }
16006
- .brz .brz-story .brz-fs-sm-im-293 {
16007
- font-size: 67.39% !important; }
16008
- .brz .brz-fs-sm-im-294 {
16009
- font-size: 294px !important; }
16010
- .brz .brz-story .brz-fs-sm-im-294 {
16011
- font-size: 67.62% !important; }
16012
- .brz .brz-fs-sm-im-295 {
16013
- font-size: 295px !important; }
16014
- .brz .brz-story .brz-fs-sm-im-295 {
16015
- font-size: 67.85% !important; }
16016
- .brz .brz-fs-sm-im-296 {
16017
- font-size: 296px !important; }
16018
- .brz .brz-story .brz-fs-sm-im-296 {
16019
- font-size: 68.08% !important; }
16020
- .brz .brz-fs-sm-im-297 {
16021
- font-size: 297px !important; }
16022
- .brz .brz-story .brz-fs-sm-im-297 {
16023
- font-size: 68.31% !important; }
16024
- .brz .brz-fs-sm-im-298 {
16025
- font-size: 298px !important; }
16026
- .brz .brz-story .brz-fs-sm-im-298 {
16027
- font-size: 68.54% !important; }
16028
- .brz .brz-fs-sm-im-299 {
16029
- font-size: 299px !important; }
16030
- .brz .brz-story .brz-fs-sm-im-299 {
16031
- font-size: 68.77% !important; }
16032
- .brz .brz-fs-sm-im-300 {
16033
- font-size: 300px !important; }
16034
- .brz .brz-story .brz-fs-sm-im-300 {
16035
- font-size: 69% !important; }
16036
- .brz .brz-lh-sm-im-1 {
16037
- line-height: 1em !important; }
16038
- .brz .brz-lh-sm-im-1_1 {
16039
- line-height: 1.1em !important; }
16040
- .brz .brz-lh-sm-im-1_2 {
16041
- line-height: 1.2em !important; }
16042
- .brz .brz-lh-sm-im-1_3 {
16043
- line-height: 1.3em !important; }
16044
- .brz .brz-lh-sm-im-1_4 {
16045
- line-height: 1.4em !important; }
16046
- .brz .brz-lh-sm-im-1_5 {
16047
- line-height: 1.5em !important; }
16048
- .brz .brz-lh-sm-im-1_6 {
16049
- line-height: 1.6em !important; }
16050
- .brz .brz-lh-sm-im-1_7 {
16051
- line-height: 1.7em !important; }
16052
- .brz .brz-lh-sm-im-1_8 {
16053
- line-height: 1.8em !important; }
16054
- .brz .brz-lh-sm-im-1_9 {
16055
- line-height: 1.9em !important; }
16056
- .brz .brz-lh-sm-im-2 {
16057
- line-height: 2em !important; }
16058
- .brz .brz-lh-sm-im-2_1 {
16059
- line-height: 2.1em !important; }
16060
- .brz .brz-lh-sm-im-2_2 {
16061
- line-height: 2.2em !important; }
16062
- .brz .brz-lh-sm-im-2_3 {
16063
- line-height: 2.3em !important; }
16064
- .brz .brz-lh-sm-im-2_4 {
16065
- line-height: 2.4em !important; }
16066
- .brz .brz-lh-sm-im-2_5 {
16067
- line-height: 2.5em !important; }
16068
- .brz .brz-lh-sm-im-2_6 {
16069
- line-height: 2.6em !important; }
16070
- .brz .brz-lh-sm-im-2_7 {
16071
- line-height: 2.7em !important; }
16072
- .brz .brz-lh-sm-im-2_8 {
16073
- line-height: 2.8em !important; }
16074
- .brz .brz-lh-sm-im-2_9 {
16075
- line-height: 2.9em !important; }
16076
- .brz .brz-lh-sm-im-3 {
16077
- line-height: 3em !important; }
16078
- .brz .brz-lh-sm-im-3_1 {
16079
- line-height: 3.1em !important; }
16080
- .brz .brz-lh-sm-im-3_2 {
16081
- line-height: 3.2em !important; }
16082
- .brz .brz-lh-sm-im-3_3 {
16083
- line-height: 3.3em !important; }
16084
- .brz .brz-lh-sm-im-3_4 {
16085
- line-height: 3.4em !important; }
16086
- .brz .brz-lh-sm-im-3_5 {
16087
- line-height: 3.5em !important; }
16088
- .brz .brz-lh-sm-im-3_6 {
16089
- line-height: 3.6em !important; }
16090
- .brz .brz-lh-sm-im-3_7 {
16091
- line-height: 3.7em !important; }
16092
- .brz .brz-lh-sm-im-3_8 {
16093
- line-height: 3.8em !important; }
16094
- .brz .brz-lh-sm-im-3_9 {
16095
- line-height: 3.9em !important; }
16096
- .brz .brz-lh-sm-im-4 {
16097
- line-height: 4em !important; }
16098
- .brz .brz-lh-sm-im-4_1 {
16099
- line-height: 4.1em !important; }
16100
- .brz .brz-lh-sm-im-4_2 {
16101
- line-height: 4.2em !important; }
16102
- .brz .brz-lh-sm-im-4_3 {
16103
- line-height: 4.3em !important; }
16104
- .brz .brz-lh-sm-im-4_4 {
16105
- line-height: 4.4em !important; }
16106
- .brz .brz-lh-sm-im-4_5 {
16107
- line-height: 4.5em !important; }
16108
- .brz .brz-lh-sm-im-4_6 {
16109
- line-height: 4.6em !important; }
16110
- .brz .brz-lh-sm-im-4_7 {
16111
- line-height: 4.7em !important; }
16112
- .brz .brz-lh-sm-im-4_8 {
16113
- line-height: 4.8em !important; }
16114
- .brz .brz-lh-sm-im-4_9 {
16115
- line-height: 4.9em !important; }
16116
- .brz .brz-lh-sm-im-5 {
16117
- line-height: 5em !important; }
16118
- .brz .brz-lh-sm-im-5_1 {
16119
- line-height: 5.1em !important; }
16120
- .brz .brz-lh-sm-im-5_2 {
16121
- line-height: 5.2em !important; }
16122
- .brz .brz-lh-sm-im-5_3 {
16123
- line-height: 5.3em !important; }
16124
- .brz .brz-lh-sm-im-5_4 {
16125
- line-height: 5.4em !important; }
16126
- .brz .brz-lh-sm-im-5_5 {
16127
- line-height: 5.5em !important; }
16128
- .brz .brz-lh-sm-im-5_6 {
16129
- line-height: 5.6em !important; }
16130
- .brz .brz-lh-sm-im-5_7 {
16131
- line-height: 5.7em !important; }
16132
- .brz .brz-lh-sm-im-5_8 {
16133
- line-height: 5.8em !important; }
16134
- .brz .brz-lh-sm-im-5_9 {
16135
- line-height: 5.9em !important; }
16136
- .brz .brz-fw-sm-im-100 {
16137
- font-weight: 100 !important; }
16138
- .brz .brz-fw-sm-im-200 {
16139
- font-weight: 200 !important; }
16140
- .brz .brz-fw-sm-im-300 {
16141
- font-weight: 300 !important; }
16142
- .brz .brz-fw-sm-im-400 {
16143
- font-weight: 400 !important; }
16144
- .brz .brz-fw-sm-im-500 {
16145
- font-weight: 500 !important; }
16146
- .brz .brz-fw-sm-im-600 {
16147
- font-weight: 600 !important; }
16148
- .brz .brz-fw-sm-im-700 {
16149
- font-weight: 700 !important; }
16150
- .brz .brz-fw-sm-im-800 {
16151
- font-weight: 800 !important; }
16152
- .brz .brz-fw-sm-im-900 {
16153
- font-weight: 900 !important; }
16154
- .brz .brz-fw-sm-im-1000 {
16155
- font-weight: 1000 !important; }
16156
- .brz .brz-fw-sm-im-1100 {
16157
- font-weight: 1100 !important; }
16158
- .brz .brz-fw-sm-im-1200 {
16159
- font-weight: 1200 !important; }
16160
- .brz .brz-fw-sm-im-1300 {
16161
- font-weight: 1300 !important; }
16162
- .brz .brz-fw-sm-im-1400 {
16163
- font-weight: 1400 !important; }
16164
- .brz .brz-fw-sm-im-1500 {
16165
- font-weight: 1500 !important; }
16166
- .brz .brz-fw-sm-im-1600 {
16167
- font-weight: 1600 !important; }
16168
- .brz .brz-fw-sm-im-1700 {
16169
- font-weight: 1700 !important; }
16170
- .brz .brz-fw-sm-im-1800 {
16171
- font-weight: 1800 !important; }
16172
- .brz .brz-fw-sm-im-1900 {
16173
- font-weight: 1900 !important; }
16174
- .brz .brz-fw-sm-im-2000 {
16175
- font-weight: 2000 !important; }
16176
- .brz .brz-ls-sm-im-m_20 {
16177
- letter-spacing: -20px !important; }
16178
- .brz .brz-ls-sm-im-m_20_5 {
16179
- letter-spacing: -20.5px !important; }
16180
- .brz .brz-ls-sm-im-m_19 {
16181
- letter-spacing: -19px !important; }
16182
- .brz .brz-ls-sm-im-m_19_5 {
16183
- letter-spacing: -19.5px !important; }
16184
- .brz .brz-ls-sm-im-m_18 {
16185
- letter-spacing: -18px !important; }
16186
- .brz .brz-ls-sm-im-m_18_5 {
16187
- letter-spacing: -18.5px !important; }
16188
- .brz .brz-ls-sm-im-m_17 {
16189
- letter-spacing: -17px !important; }
16190
- .brz .brz-ls-sm-im-m_17_5 {
16191
- letter-spacing: -17.5px !important; }
16192
- .brz .brz-ls-sm-im-m_16 {
16193
- letter-spacing: -16px !important; }
16194
- .brz .brz-ls-sm-im-m_16_5 {
16195
- letter-spacing: -16.5px !important; }
16196
- .brz .brz-ls-sm-im-m_15 {
16197
- letter-spacing: -15px !important; }
16198
- .brz .brz-ls-sm-im-m_15_5 {
16199
- letter-spacing: -15.5px !important; }
16200
- .brz .brz-ls-sm-im-m_14 {
16201
- letter-spacing: -14px !important; }
16202
- .brz .brz-ls-sm-im-m_14_5 {
16203
- letter-spacing: -14.5px !important; }
16204
- .brz .brz-ls-sm-im-m_13 {
16205
- letter-spacing: -13px !important; }
16206
- .brz .brz-ls-sm-im-m_13_5 {
16207
- letter-spacing: -13.5px !important; }
16208
- .brz .brz-ls-sm-im-m_12 {
16209
- letter-spacing: -12px !important; }
16210
- .brz .brz-ls-sm-im-m_12_5 {
16211
- letter-spacing: -12.5px !important; }
16212
- .brz .brz-ls-sm-im-m_11 {
16213
- letter-spacing: -11px !important; }
16214
- .brz .brz-ls-sm-im-m_11_5 {
16215
- letter-spacing: -11.5px !important; }
16216
- .brz .brz-ls-sm-im-m_10 {
16217
- letter-spacing: -10px !important; }
16218
- .brz .brz-ls-sm-im-m_10_5 {
16219
- letter-spacing: -10.5px !important; }
16220
- .brz .brz-ls-sm-im-m_9 {
16221
- letter-spacing: -9px !important; }
16222
- .brz .brz-ls-sm-im-m_9_5 {
16223
- letter-spacing: -9.5px !important; }
16224
- .brz .brz-ls-sm-im-m_8 {
16225
- letter-spacing: -8px !important; }
16226
- .brz .brz-ls-sm-im-m_8_5 {
16227
- letter-spacing: -8.5px !important; }
16228
- .brz .brz-ls-sm-im-m_7 {
16229
- letter-spacing: -7px !important; }
16230
- .brz .brz-ls-sm-im-m_7_5 {
16231
- letter-spacing: -7.5px !important; }
16232
- .brz .brz-ls-sm-im-m_6 {
16233
- letter-spacing: -6px !important; }
16234
- .brz .brz-ls-sm-im-m_6_5 {
16235
- letter-spacing: -6.5px !important; }
16236
- .brz .brz-ls-sm-im-m_5 {
16237
- letter-spacing: -5px !important; }
16238
- .brz .brz-ls-sm-im-m_5_5 {
16239
- letter-spacing: -5.5px !important; }
16240
- .brz .brz-ls-sm-im-m_4 {
16241
- letter-spacing: -4px !important; }
16242
- .brz .brz-ls-sm-im-m_4_5 {
16243
- letter-spacing: -4.5px !important; }
16244
- .brz .brz-ls-sm-im-m_3 {
16245
- letter-spacing: -3px !important; }
16246
- .brz .brz-ls-sm-im-m_3_5 {
16247
- letter-spacing: -3.5px !important; }
16248
- .brz .brz-ls-sm-im-m_2 {
16249
- letter-spacing: -2px !important; }
16250
- .brz .brz-ls-sm-im-m_2_5 {
16251
- letter-spacing: -2.5px !important; }
16252
- .brz .brz-ls-sm-im-m_1 {
16253
- letter-spacing: -1px !important; }
16254
- .brz .brz-ls-sm-im-m_1_5 {
16255
- letter-spacing: -1.5px !important; }
16256
- .brz .brz-ls-sm-im-m_0 {
16257
- letter-spacing: 0px !important; }
16258
- .brz .brz-ls-sm-im-m_0_5 {
16259
- letter-spacing: -0.5px !important; }
16260
- .brz .brz-ls-sm-im-0 {
16261
- letter-spacing: 0px !important; }
16262
- .brz .brz-ls-sm-im-0_5 {
16263
- letter-spacing: 0.5px !important; }
16264
- .brz .brz-ls-sm-im-1 {
16265
- letter-spacing: 1px !important; }
16266
- .brz .brz-ls-sm-im-1_5 {
16267
- letter-spacing: 1.5px !important; }
16268
- .brz .brz-ls-sm-im-2 {
16269
- letter-spacing: 2px !important; }
16270
- .brz .brz-ls-sm-im-2_5 {
16271
- letter-spacing: 2.5px !important; }
16272
- .brz .brz-ls-sm-im-3 {
16273
- letter-spacing: 3px !important; }
16274
- .brz .brz-ls-sm-im-3_5 {
16275
- letter-spacing: 3.5px !important; }
16276
- .brz .brz-ls-sm-im-4 {
16277
- letter-spacing: 4px !important; }
16278
- .brz .brz-ls-sm-im-4_5 {
16279
- letter-spacing: 4.5px !important; }
16280
- .brz .brz-ls-sm-im-5 {
16281
- letter-spacing: 5px !important; }
16282
- .brz .brz-ls-sm-im-5_5 {
16283
- letter-spacing: 5.5px !important; }
16284
- .brz .brz-ls-sm-im-6 {
16285
- letter-spacing: 6px !important; }
16286
- .brz .brz-ls-sm-im-6_5 {
16287
- letter-spacing: 6.5px !important; }
16288
- .brz .brz-ls-sm-im-7 {
16289
- letter-spacing: 7px !important; }
16290
- .brz .brz-ls-sm-im-7_5 {
16291
- letter-spacing: 7.5px !important; }
16292
- .brz .brz-ls-sm-im-8 {
16293
- letter-spacing: 8px !important; }
16294
- .brz .brz-ls-sm-im-8_5 {
16295
- letter-spacing: 8.5px !important; }
16296
- .brz .brz-ls-sm-im-9 {
16297
- letter-spacing: 9px !important; }
16298
- .brz .brz-ls-sm-im-9_5 {
16299
- letter-spacing: 9.5px !important; }
16300
- .brz .brz-ls-sm-im-10 {
16301
- letter-spacing: 10px !important; }
16302
- .brz .brz-ls-sm-im-10_5 {
16303
- letter-spacing: 10.5px !important; }
16304
- .brz .brz-ls-sm-im-11 {
16305
- letter-spacing: 11px !important; }
16306
- .brz .brz-ls-sm-im-11_5 {
16307
- letter-spacing: 11.5px !important; }
16308
- .brz .brz-ls-sm-im-12 {
16309
- letter-spacing: 12px !important; }
16310
- .brz .brz-ls-sm-im-12_5 {
16311
- letter-spacing: 12.5px !important; }
16312
- .brz .brz-ls-sm-im-13 {
16313
- letter-spacing: 13px !important; }
16314
- .brz .brz-ls-sm-im-13_5 {
16315
- letter-spacing: 13.5px !important; }
16316
- .brz .brz-ls-sm-im-14 {
16317
- letter-spacing: 14px !important; }
16318
- .brz .brz-ls-sm-im-14_5 {
16319
- letter-spacing: 14.5px !important; }
16320
- .brz .brz-ls-sm-im-15 {
16321
- letter-spacing: 15px !important; }
16322
- .brz .brz-ls-sm-im-15_5 {
16323
- letter-spacing: 15.5px !important; }
16324
- .brz .brz-ls-sm-im-16 {
16325
- letter-spacing: 16px !important; }
16326
- .brz .brz-ls-sm-im-16_5 {
16327
- letter-spacing: 16.5px !important; }
16328
- .brz .brz-ls-sm-im-17 {
16329
- letter-spacing: 17px !important; }
16330
- .brz .brz-ls-sm-im-17_5 {
16331
- letter-spacing: 17.5px !important; }
16332
- .brz .brz-ls-sm-im-18 {
16333
- letter-spacing: 18px !important; }
16334
- .brz .brz-ls-sm-im-18_5 {
16335
- letter-spacing: 18.5px !important; }
16336
- .brz .brz-ls-sm-im-19 {
16337
- letter-spacing: 19px !important; }
16338
- .brz .brz-ls-sm-im-19_5 {
16339
- letter-spacing: 19.5px !important; }
16340
- .brz .brz-ls-sm-im-20 {
16341
- letter-spacing: 20px !important; }
16342
- .brz .brz-ls-sm-im-20_5 {
16343
- letter-spacing: 20.5px !important; } }
16344
- @media (min-width: 992px) {
16345
- .brz .brz-fs-lg-6 {
16346
- font-size: 6px !important; }
16347
- .brz .brz-story .brz-fs-lg-6 {
16348
- font-size: 1.38% !important; }
16349
- .brz .brz-fs-lg-7 {
16350
- font-size: 7px !important; }
16351
- .brz .brz-story .brz-fs-lg-7 {
16352
- font-size: 1.61% !important; }
16353
- .brz .brz-fs-lg-8 {
16354
- font-size: 8px !important; }
16355
- .brz .brz-story .brz-fs-lg-8 {
16356
- font-size: 1.84% !important; }
16357
- .brz .brz-fs-lg-9 {
16358
- font-size: 9px !important; }
16359
- .brz .brz-story .brz-fs-lg-9 {
16360
- font-size: 2.07% !important; }
16361
- .brz .brz-fs-lg-10 {
16362
- font-size: 10px !important; }
16363
- .brz .brz-story .brz-fs-lg-10 {
16364
- font-size: 2.3% !important; }
16365
- .brz .brz-fs-lg-11 {
16366
- font-size: 11px !important; }
16367
- .brz .brz-story .brz-fs-lg-11 {
16368
- font-size: 2.53% !important; }
16369
- .brz .brz-fs-lg-12 {
16370
- font-size: 12px !important; }
16371
- .brz .brz-story .brz-fs-lg-12 {
16372
- font-size: 2.76% !important; }
16373
- .brz .brz-fs-lg-13 {
16374
- font-size: 13px !important; }
16375
- .brz .brz-story .brz-fs-lg-13 {
16376
- font-size: 2.99% !important; }
16377
- .brz .brz-fs-lg-14 {
16378
- font-size: 14px !important; }
16379
- .brz .brz-story .brz-fs-lg-14 {
16380
- font-size: 3.22% !important; }
16381
- .brz .brz-fs-lg-15 {
16382
- font-size: 15px !important; }
16383
- .brz .brz-story .brz-fs-lg-15 {
16384
- font-size: 3.45% !important; }
16385
- .brz .brz-fs-lg-16 {
16386
- font-size: 16px !important; }
16387
- .brz .brz-story .brz-fs-lg-16 {
16388
- font-size: 3.68% !important; }
16389
- .brz .brz-fs-lg-17 {
16390
- font-size: 17px !important; }
16391
- .brz .brz-story .brz-fs-lg-17 {
16392
- font-size: 3.91% !important; }
16393
- .brz .brz-fs-lg-18 {
16394
- font-size: 18px !important; }
16395
- .brz .brz-story .brz-fs-lg-18 {
16396
- font-size: 4.14% !important; }
16397
- .brz .brz-fs-lg-19 {
16398
- font-size: 19px !important; }
16399
- .brz .brz-story .brz-fs-lg-19 {
16400
- font-size: 4.37% !important; }
16401
- .brz .brz-fs-lg-20 {
16402
- font-size: 20px !important; }
16403
- .brz .brz-story .brz-fs-lg-20 {
16404
- font-size: 4.6% !important; }
16405
- .brz .brz-fs-lg-21 {
16406
- font-size: 21px !important; }
16407
- .brz .brz-story .brz-fs-lg-21 {
16408
- font-size: 4.83% !important; }
16409
- .brz .brz-fs-lg-22 {
16410
- font-size: 22px !important; }
16411
- .brz .brz-story .brz-fs-lg-22 {
16412
- font-size: 5.06% !important; }
16413
- .brz .brz-fs-lg-23 {
16414
- font-size: 23px !important; }
16415
- .brz .brz-story .brz-fs-lg-23 {
16416
- font-size: 5.29% !important; }
16417
- .brz .brz-fs-lg-24 {
16418
- font-size: 24px !important; }
16419
- .brz .brz-story .brz-fs-lg-24 {
16420
- font-size: 5.52% !important; }
16421
- .brz .brz-fs-lg-25 {
16422
- font-size: 25px !important; }
16423
- .brz .brz-story .brz-fs-lg-25 {
16424
- font-size: 5.75% !important; }
16425
- .brz .brz-fs-lg-26 {
16426
- font-size: 26px !important; }
16427
- .brz .brz-story .brz-fs-lg-26 {
16428
- font-size: 5.98% !important; }
16429
- .brz .brz-fs-lg-27 {
16430
- font-size: 27px !important; }
16431
- .brz .brz-story .brz-fs-lg-27 {
16432
- font-size: 6.21% !important; }
16433
- .brz .brz-fs-lg-28 {
16434
- font-size: 28px !important; }
16435
- .brz .brz-story .brz-fs-lg-28 {
16436
- font-size: 6.44% !important; }
16437
- .brz .brz-fs-lg-29 {
16438
- font-size: 29px !important; }
16439
- .brz .brz-story .brz-fs-lg-29 {
16440
- font-size: 6.67% !important; }
16441
- .brz .brz-fs-lg-30 {
16442
- font-size: 30px !important; }
16443
- .brz .brz-story .brz-fs-lg-30 {
16444
- font-size: 6.9% !important; }
16445
- .brz .brz-fs-lg-31 {
16446
- font-size: 31px !important; }
16447
- .brz .brz-story .brz-fs-lg-31 {
16448
- font-size: 7.13% !important; }
16449
- .brz .brz-fs-lg-32 {
16450
- font-size: 32px !important; }
16451
- .brz .brz-story .brz-fs-lg-32 {
16452
- font-size: 7.36% !important; }
16453
- .brz .brz-fs-lg-33 {
16454
- font-size: 33px !important; }
16455
- .brz .brz-story .brz-fs-lg-33 {
16456
- font-size: 7.59% !important; }
16457
- .brz .brz-fs-lg-34 {
16458
- font-size: 34px !important; }
16459
- .brz .brz-story .brz-fs-lg-34 {
16460
- font-size: 7.82% !important; }
16461
- .brz .brz-fs-lg-35 {
16462
- font-size: 35px !important; }
16463
- .brz .brz-story .brz-fs-lg-35 {
16464
- font-size: 8.05% !important; }
16465
- .brz .brz-fs-lg-36 {
16466
- font-size: 36px !important; }
16467
- .brz .brz-story .brz-fs-lg-36 {
16468
- font-size: 8.28% !important; }
16469
- .brz .brz-fs-lg-37 {
16470
- font-size: 37px !important; }
16471
- .brz .brz-story .brz-fs-lg-37 {
16472
- font-size: 8.51% !important; }
16473
- .brz .brz-fs-lg-38 {
16474
- font-size: 38px !important; }
16475
- .brz .brz-story .brz-fs-lg-38 {
16476
- font-size: 8.74% !important; }
16477
- .brz .brz-fs-lg-39 {
16478
- font-size: 39px !important; }
16479
- .brz .brz-story .brz-fs-lg-39 {
16480
- font-size: 8.97% !important; }
16481
- .brz .brz-fs-lg-40 {
16482
- font-size: 40px !important; }
16483
- .brz .brz-story .brz-fs-lg-40 {
16484
- font-size: 9.2% !important; }
16485
- .brz .brz-fs-lg-41 {
16486
- font-size: 41px !important; }
16487
- .brz .brz-story .brz-fs-lg-41 {
16488
- font-size: 9.43% !important; }
16489
- .brz .brz-fs-lg-42 {
16490
- font-size: 42px !important; }
16491
- .brz .brz-story .brz-fs-lg-42 {
16492
- font-size: 9.66% !important; }
16493
- .brz .brz-fs-lg-43 {
16494
- font-size: 43px !important; }
16495
- .brz .brz-story .brz-fs-lg-43 {
16496
- font-size: 9.89% !important; }
16497
- .brz .brz-fs-lg-44 {
16498
- font-size: 44px !important; }
16499
- .brz .brz-story .brz-fs-lg-44 {
16500
- font-size: 10.12% !important; }
16501
- .brz .brz-fs-lg-45 {
16502
- font-size: 45px !important; }
16503
- .brz .brz-story .brz-fs-lg-45 {
16504
- font-size: 10.35% !important; }
16505
- .brz .brz-fs-lg-46 {
16506
- font-size: 46px !important; }
16507
- .brz .brz-story .brz-fs-lg-46 {
16508
- font-size: 10.58% !important; }
16509
- .brz .brz-fs-lg-47 {
16510
- font-size: 47px !important; }
16511
- .brz .brz-story .brz-fs-lg-47 {
16512
- font-size: 10.81% !important; }
16513
- .brz .brz-fs-lg-48 {
16514
- font-size: 48px !important; }
16515
- .brz .brz-story .brz-fs-lg-48 {
16516
- font-size: 11.04% !important; }
16517
- .brz .brz-fs-lg-49 {
16518
- font-size: 49px !important; }
16519
- .brz .brz-story .brz-fs-lg-49 {
16520
- font-size: 11.27% !important; }
16521
- .brz .brz-fs-lg-50 {
16522
- font-size: 50px !important; }
16523
- .brz .brz-story .brz-fs-lg-50 {
16524
- font-size: 11.5% !important; }
16525
- .brz .brz-fs-lg-51 {
16526
- font-size: 51px !important; }
16527
- .brz .brz-story .brz-fs-lg-51 {
16528
- font-size: 11.73% !important; }
16529
- .brz .brz-fs-lg-52 {
16530
- font-size: 52px !important; }
16531
- .brz .brz-story .brz-fs-lg-52 {
16532
- font-size: 11.96% !important; }
16533
- .brz .brz-fs-lg-53 {
16534
- font-size: 53px !important; }
16535
- .brz .brz-story .brz-fs-lg-53 {
16536
- font-size: 12.19% !important; }
16537
- .brz .brz-fs-lg-54 {
16538
- font-size: 54px !important; }
16539
- .brz .brz-story .brz-fs-lg-54 {
16540
- font-size: 12.42% !important; }
16541
- .brz .brz-fs-lg-55 {
16542
- font-size: 55px !important; }
16543
- .brz .brz-story .brz-fs-lg-55 {
16544
- font-size: 12.65% !important; }
16545
- .brz .brz-fs-lg-56 {
16546
- font-size: 56px !important; }
16547
- .brz .brz-story .brz-fs-lg-56 {
16548
- font-size: 12.88% !important; }
16549
- .brz .brz-fs-lg-57 {
16550
- font-size: 57px !important; }
16551
- .brz .brz-story .brz-fs-lg-57 {
16552
- font-size: 13.11% !important; }
16553
- .brz .brz-fs-lg-58 {
16554
- font-size: 58px !important; }
16555
- .brz .brz-story .brz-fs-lg-58 {
16556
- font-size: 13.34% !important; }
16557
- .brz .brz-fs-lg-59 {
16558
- font-size: 59px !important; }
16559
- .brz .brz-story .brz-fs-lg-59 {
16560
- font-size: 13.57% !important; }
16561
- .brz .brz-fs-lg-60 {
16562
- font-size: 60px !important; }
16563
- .brz .brz-story .brz-fs-lg-60 {
16564
- font-size: 13.8% !important; }
16565
- .brz .brz-fs-lg-61 {
16566
- font-size: 61px !important; }
16567
- .brz .brz-story .brz-fs-lg-61 {
16568
- font-size: 14.03% !important; }
16569
- .brz .brz-fs-lg-62 {
16570
- font-size: 62px !important; }
16571
- .brz .brz-story .brz-fs-lg-62 {
16572
- font-size: 14.26% !important; }
16573
- .brz .brz-fs-lg-63 {
16574
- font-size: 63px !important; }
16575
- .brz .brz-story .brz-fs-lg-63 {
16576
- font-size: 14.49% !important; }
16577
- .brz .brz-fs-lg-64 {
16578
- font-size: 64px !important; }
16579
- .brz .brz-story .brz-fs-lg-64 {
16580
- font-size: 14.72% !important; }
16581
- .brz .brz-fs-lg-65 {
16582
- font-size: 65px !important; }
16583
- .brz .brz-story .brz-fs-lg-65 {
16584
- font-size: 14.95% !important; }
16585
- .brz .brz-fs-lg-66 {
16586
- font-size: 66px !important; }
16587
- .brz .brz-story .brz-fs-lg-66 {
16588
- font-size: 15.18% !important; }
16589
- .brz .brz-fs-lg-67 {
16590
- font-size: 67px !important; }
16591
- .brz .brz-story .brz-fs-lg-67 {
16592
- font-size: 15.41% !important; }
16593
- .brz .brz-fs-lg-68 {
16594
- font-size: 68px !important; }
16595
- .brz .brz-story .brz-fs-lg-68 {
16596
- font-size: 15.64% !important; }
16597
- .brz .brz-fs-lg-69 {
16598
- font-size: 69px !important; }
16599
- .brz .brz-story .brz-fs-lg-69 {
16600
- font-size: 15.87% !important; }
16601
- .brz .brz-fs-lg-70 {
16602
- font-size: 70px !important; }
16603
- .brz .brz-story .brz-fs-lg-70 {
16604
- font-size: 16.1% !important; }
16605
- .brz .brz-fs-lg-71 {
16606
- font-size: 71px !important; }
16607
- .brz .brz-story .brz-fs-lg-71 {
16608
- font-size: 16.33% !important; }
16609
- .brz .brz-fs-lg-72 {
16610
- font-size: 72px !important; }
16611
- .brz .brz-story .brz-fs-lg-72 {
16612
- font-size: 16.56% !important; }
16613
- .brz .brz-fs-lg-73 {
16614
- font-size: 73px !important; }
16615
- .brz .brz-story .brz-fs-lg-73 {
16616
- font-size: 16.79% !important; }
16617
- .brz .brz-fs-lg-74 {
16618
- font-size: 74px !important; }
16619
- .brz .brz-story .brz-fs-lg-74 {
16620
- font-size: 17.02% !important; }
16621
- .brz .brz-fs-lg-75 {
16622
- font-size: 75px !important; }
16623
- .brz .brz-story .brz-fs-lg-75 {
16624
- font-size: 17.25% !important; }
16625
- .brz .brz-fs-lg-76 {
16626
- font-size: 76px !important; }
16627
- .brz .brz-story .brz-fs-lg-76 {
16628
- font-size: 17.48% !important; }
16629
- .brz .brz-fs-lg-77 {
16630
- font-size: 77px !important; }
16631
- .brz .brz-story .brz-fs-lg-77 {
16632
- font-size: 17.71% !important; }
16633
- .brz .brz-fs-lg-78 {
16634
- font-size: 78px !important; }
16635
- .brz .brz-story .brz-fs-lg-78 {
16636
- font-size: 17.94% !important; }
16637
- .brz .brz-fs-lg-79 {
16638
- font-size: 79px !important; }
16639
- .brz .brz-story .brz-fs-lg-79 {
16640
- font-size: 18.17% !important; }
16641
- .brz .brz-fs-lg-80 {
16642
- font-size: 80px !important; }
16643
- .brz .brz-story .brz-fs-lg-80 {
16644
- font-size: 18.4% !important; }
16645
- .brz .brz-fs-lg-81 {
16646
- font-size: 81px !important; }
16647
- .brz .brz-story .brz-fs-lg-81 {
16648
- font-size: 18.63% !important; }
16649
- .brz .brz-fs-lg-82 {
16650
- font-size: 82px !important; }
16651
- .brz .brz-story .brz-fs-lg-82 {
16652
- font-size: 18.86% !important; }
16653
- .brz .brz-fs-lg-83 {
16654
- font-size: 83px !important; }
16655
- .brz .brz-story .brz-fs-lg-83 {
16656
- font-size: 19.09% !important; }
16657
- .brz .brz-fs-lg-84 {
16658
- font-size: 84px !important; }
16659
- .brz .brz-story .brz-fs-lg-84 {
16660
- font-size: 19.32% !important; }
16661
- .brz .brz-fs-lg-85 {
16662
- font-size: 85px !important; }
16663
- .brz .brz-story .brz-fs-lg-85 {
16664
- font-size: 19.55% !important; }
16665
- .brz .brz-fs-lg-86 {
16666
- font-size: 86px !important; }
16667
- .brz .brz-story .brz-fs-lg-86 {
16668
- font-size: 19.78% !important; }
16669
- .brz .brz-fs-lg-87 {
16670
- font-size: 87px !important; }
16671
- .brz .brz-story .brz-fs-lg-87 {
16672
- font-size: 20.01% !important; }
16673
- .brz .brz-fs-lg-88 {
16674
- font-size: 88px !important; }
16675
- .brz .brz-story .brz-fs-lg-88 {
16676
- font-size: 20.24% !important; }
16677
- .brz .brz-fs-lg-89 {
16678
- font-size: 89px !important; }
16679
- .brz .brz-story .brz-fs-lg-89 {
16680
- font-size: 20.47% !important; }
16681
- .brz .brz-fs-lg-90 {
16682
- font-size: 90px !important; }
16683
- .brz .brz-story .brz-fs-lg-90 {
16684
- font-size: 20.7% !important; }
16685
- .brz .brz-fs-lg-91 {
16686
- font-size: 91px !important; }
16687
- .brz .brz-story .brz-fs-lg-91 {
16688
- font-size: 20.93% !important; }
16689
- .brz .brz-fs-lg-92 {
16690
- font-size: 92px !important; }
16691
- .brz .brz-story .brz-fs-lg-92 {
16692
- font-size: 21.16% !important; }
16693
- .brz .brz-fs-lg-93 {
16694
- font-size: 93px !important; }
16695
- .brz .brz-story .brz-fs-lg-93 {
16696
- font-size: 21.39% !important; }
16697
- .brz .brz-fs-lg-94 {
16698
- font-size: 94px !important; }
16699
- .brz .brz-story .brz-fs-lg-94 {
16700
- font-size: 21.62% !important; }
16701
- .brz .brz-fs-lg-95 {
16702
- font-size: 95px !important; }
16703
- .brz .brz-story .brz-fs-lg-95 {
16704
- font-size: 21.85% !important; }
16705
- .brz .brz-fs-lg-96 {
16706
- font-size: 96px !important; }
16707
- .brz .brz-story .brz-fs-lg-96 {
16708
- font-size: 22.08% !important; }
16709
- .brz .brz-fs-lg-97 {
16710
- font-size: 97px !important; }
16711
- .brz .brz-story .brz-fs-lg-97 {
16712
- font-size: 22.31% !important; }
16713
- .brz .brz-fs-lg-98 {
16714
- font-size: 98px !important; }
16715
- .brz .brz-story .brz-fs-lg-98 {
16716
- font-size: 22.54% !important; }
16717
- .brz .brz-fs-lg-99 {
16718
- font-size: 99px !important; }
16719
- .brz .brz-story .brz-fs-lg-99 {
16720
- font-size: 22.77% !important; }
16721
- .brz .brz-fs-lg-100 {
16722
- font-size: 100px !important; }
16723
- .brz .brz-story .brz-fs-lg-100 {
16724
- font-size: 23% !important; }
16725
- .brz .brz-fs-lg-101 {
16726
- font-size: 101px !important; }
16727
- .brz .brz-story .brz-fs-lg-101 {
16728
- font-size: 23.23% !important; }
16729
- .brz .brz-fs-lg-102 {
16730
- font-size: 102px !important; }
16731
- .brz .brz-story .brz-fs-lg-102 {
16732
- font-size: 23.46% !important; }
16733
- .brz .brz-fs-lg-103 {
16734
- font-size: 103px !important; }
16735
- .brz .brz-story .brz-fs-lg-103 {
16736
- font-size: 23.69% !important; }
16737
- .brz .brz-fs-lg-104 {
16738
- font-size: 104px !important; }
16739
- .brz .brz-story .brz-fs-lg-104 {
16740
- font-size: 23.92% !important; }
16741
- .brz .brz-fs-lg-105 {
16742
- font-size: 105px !important; }
16743
- .brz .brz-story .brz-fs-lg-105 {
16744
- font-size: 24.15% !important; }
16745
- .brz .brz-fs-lg-106 {
16746
- font-size: 106px !important; }
16747
- .brz .brz-story .brz-fs-lg-106 {
16748
- font-size: 24.38% !important; }
16749
- .brz .brz-fs-lg-107 {
16750
- font-size: 107px !important; }
16751
- .brz .brz-story .brz-fs-lg-107 {
16752
- font-size: 24.61% !important; }
16753
- .brz .brz-fs-lg-108 {
16754
- font-size: 108px !important; }
16755
- .brz .brz-story .brz-fs-lg-108 {
16756
- font-size: 24.84% !important; }
16757
- .brz .brz-fs-lg-109 {
16758
- font-size: 109px !important; }
16759
- .brz .brz-story .brz-fs-lg-109 {
16760
- font-size: 25.07% !important; }
16761
- .brz .brz-fs-lg-110 {
16762
- font-size: 110px !important; }
16763
- .brz .brz-story .brz-fs-lg-110 {
16764
- font-size: 25.3% !important; }
16765
- .brz .brz-fs-lg-111 {
16766
- font-size: 111px !important; }
16767
- .brz .brz-story .brz-fs-lg-111 {
16768
- font-size: 25.53% !important; }
16769
- .brz .brz-fs-lg-112 {
16770
- font-size: 112px !important; }
16771
- .brz .brz-story .brz-fs-lg-112 {
16772
- font-size: 25.76% !important; }
16773
- .brz .brz-fs-lg-113 {
16774
- font-size: 113px !important; }
16775
- .brz .brz-story .brz-fs-lg-113 {
16776
- font-size: 25.99% !important; }
16777
- .brz .brz-fs-lg-114 {
16778
- font-size: 114px !important; }
16779
- .brz .brz-story .brz-fs-lg-114 {
16780
- font-size: 26.22% !important; }
16781
- .brz .brz-fs-lg-115 {
16782
- font-size: 115px !important; }
16783
- .brz .brz-story .brz-fs-lg-115 {
16784
- font-size: 26.45% !important; }
16785
- .brz .brz-fs-lg-116 {
16786
- font-size: 116px !important; }
16787
- .brz .brz-story .brz-fs-lg-116 {
16788
- font-size: 26.68% !important; }
16789
- .brz .brz-fs-lg-117 {
16790
- font-size: 117px !important; }
16791
- .brz .brz-story .brz-fs-lg-117 {
16792
- font-size: 26.91% !important; }
16793
- .brz .brz-fs-lg-118 {
16794
- font-size: 118px !important; }
16795
- .brz .brz-story .brz-fs-lg-118 {
16796
- font-size: 27.14% !important; }
16797
- .brz .brz-fs-lg-119 {
16798
- font-size: 119px !important; }
16799
- .brz .brz-story .brz-fs-lg-119 {
16800
- font-size: 27.37% !important; }
16801
- .brz .brz-fs-lg-120 {
16802
- font-size: 120px !important; }
16803
- .brz .brz-story .brz-fs-lg-120 {
16804
- font-size: 27.6% !important; }
16805
- .brz .brz-fs-lg-121 {
16806
- font-size: 121px !important; }
16807
- .brz .brz-story .brz-fs-lg-121 {
16808
- font-size: 27.83% !important; }
16809
- .brz .brz-fs-lg-122 {
16810
- font-size: 122px !important; }
16811
- .brz .brz-story .brz-fs-lg-122 {
16812
- font-size: 28.06% !important; }
16813
- .brz .brz-fs-lg-123 {
16814
- font-size: 123px !important; }
16815
- .brz .brz-story .brz-fs-lg-123 {
16816
- font-size: 28.29% !important; }
16817
- .brz .brz-fs-lg-124 {
16818
- font-size: 124px !important; }
16819
- .brz .brz-story .brz-fs-lg-124 {
16820
- font-size: 28.52% !important; }
16821
- .brz .brz-fs-lg-125 {
16822
- font-size: 125px !important; }
16823
- .brz .brz-story .brz-fs-lg-125 {
16824
- font-size: 28.75% !important; }
16825
- .brz .brz-fs-lg-126 {
16826
- font-size: 126px !important; }
16827
- .brz .brz-story .brz-fs-lg-126 {
16828
- font-size: 28.98% !important; }
16829
- .brz .brz-fs-lg-127 {
16830
- font-size: 127px !important; }
16831
- .brz .brz-story .brz-fs-lg-127 {
16832
- font-size: 29.21% !important; }
16833
- .brz .brz-fs-lg-128 {
16834
- font-size: 128px !important; }
16835
- .brz .brz-story .brz-fs-lg-128 {
16836
- font-size: 29.44% !important; }
16837
- .brz .brz-fs-lg-129 {
16838
- font-size: 129px !important; }
16839
- .brz .brz-story .brz-fs-lg-129 {
16840
- font-size: 29.67% !important; }
16841
- .brz .brz-fs-lg-130 {
16842
- font-size: 130px !important; }
16843
- .brz .brz-story .brz-fs-lg-130 {
16844
- font-size: 29.9% !important; }
16845
- .brz .brz-fs-lg-131 {
16846
- font-size: 131px !important; }
16847
- .brz .brz-story .brz-fs-lg-131 {
16848
- font-size: 30.13% !important; }
16849
- .brz .brz-fs-lg-132 {
16850
- font-size: 132px !important; }
16851
- .brz .brz-story .brz-fs-lg-132 {
16852
- font-size: 30.36% !important; }
16853
- .brz .brz-fs-lg-133 {
16854
- font-size: 133px !important; }
16855
- .brz .brz-story .brz-fs-lg-133 {
16856
- font-size: 30.59% !important; }
16857
- .brz .brz-fs-lg-134 {
16858
- font-size: 134px !important; }
16859
- .brz .brz-story .brz-fs-lg-134 {
16860
- font-size: 30.82% !important; }
16861
- .brz .brz-fs-lg-135 {
16862
- font-size: 135px !important; }
16863
- .brz .brz-story .brz-fs-lg-135 {
16864
- font-size: 31.05% !important; }
16865
- .brz .brz-fs-lg-136 {
16866
- font-size: 136px !important; }
16867
- .brz .brz-story .brz-fs-lg-136 {
16868
- font-size: 31.28% !important; }
16869
- .brz .brz-fs-lg-137 {
16870
- font-size: 137px !important; }
16871
- .brz .brz-story .brz-fs-lg-137 {
16872
- font-size: 31.51% !important; }
16873
- .brz .brz-fs-lg-138 {
16874
- font-size: 138px !important; }
16875
- .brz .brz-story .brz-fs-lg-138 {
16876
- font-size: 31.74% !important; }
16877
- .brz .brz-fs-lg-139 {
16878
- font-size: 139px !important; }
16879
- .brz .brz-story .brz-fs-lg-139 {
16880
- font-size: 31.97% !important; }
16881
- .brz .brz-fs-lg-140 {
16882
- font-size: 140px !important; }
16883
- .brz .brz-story .brz-fs-lg-140 {
16884
- font-size: 32.2% !important; }
16885
- .brz .brz-fs-lg-141 {
16886
- font-size: 141px !important; }
16887
- .brz .brz-story .brz-fs-lg-141 {
16888
- font-size: 32.43% !important; }
16889
- .brz .brz-fs-lg-142 {
16890
- font-size: 142px !important; }
16891
- .brz .brz-story .brz-fs-lg-142 {
16892
- font-size: 32.66% !important; }
16893
- .brz .brz-fs-lg-143 {
16894
- font-size: 143px !important; }
16895
- .brz .brz-story .brz-fs-lg-143 {
16896
- font-size: 32.89% !important; }
16897
- .brz .brz-fs-lg-144 {
16898
- font-size: 144px !important; }
16899
- .brz .brz-story .brz-fs-lg-144 {
16900
- font-size: 33.12% !important; }
16901
- .brz .brz-fs-lg-145 {
16902
- font-size: 145px !important; }
16903
- .brz .brz-story .brz-fs-lg-145 {
16904
- font-size: 33.35% !important; }
16905
- .brz .brz-fs-lg-146 {
16906
- font-size: 146px !important; }
16907
- .brz .brz-story .brz-fs-lg-146 {
16908
- font-size: 33.58% !important; }
16909
- .brz .brz-fs-lg-147 {
16910
- font-size: 147px !important; }
16911
- .brz .brz-story .brz-fs-lg-147 {
16912
- font-size: 33.81% !important; }
16913
- .brz .brz-fs-lg-148 {
16914
- font-size: 148px !important; }
16915
- .brz .brz-story .brz-fs-lg-148 {
16916
- font-size: 34.04% !important; }
16917
- .brz .brz-fs-lg-149 {
16918
- font-size: 149px !important; }
16919
- .brz .brz-story .brz-fs-lg-149 {
16920
- font-size: 34.27% !important; }
16921
- .brz .brz-fs-lg-150 {
16922
- font-size: 150px !important; }
16923
- .brz .brz-story .brz-fs-lg-150 {
16924
- font-size: 34.5% !important; }
16925
- .brz .brz-fs-lg-151 {
16926
- font-size: 151px !important; }
16927
- .brz .brz-story .brz-fs-lg-151 {
16928
- font-size: 34.73% !important; }
16929
- .brz .brz-fs-lg-152 {
16930
- font-size: 152px !important; }
16931
- .brz .brz-story .brz-fs-lg-152 {
16932
- font-size: 34.96% !important; }
16933
- .brz .brz-fs-lg-153 {
16934
- font-size: 153px !important; }
16935
- .brz .brz-story .brz-fs-lg-153 {
16936
- font-size: 35.19% !important; }
16937
- .brz .brz-fs-lg-154 {
16938
- font-size: 154px !important; }
16939
- .brz .brz-story .brz-fs-lg-154 {
16940
- font-size: 35.42% !important; }
16941
- .brz .brz-fs-lg-155 {
16942
- font-size: 155px !important; }
16943
- .brz .brz-story .brz-fs-lg-155 {
16944
- font-size: 35.65% !important; }
16945
- .brz .brz-fs-lg-156 {
16946
- font-size: 156px !important; }
16947
- .brz .brz-story .brz-fs-lg-156 {
16948
- font-size: 35.88% !important; }
16949
- .brz .brz-fs-lg-157 {
16950
- font-size: 157px !important; }
16951
- .brz .brz-story .brz-fs-lg-157 {
16952
- font-size: 36.11% !important; }
16953
- .brz .brz-fs-lg-158 {
16954
- font-size: 158px !important; }
16955
- .brz .brz-story .brz-fs-lg-158 {
16956
- font-size: 36.34% !important; }
16957
- .brz .brz-fs-lg-159 {
16958
- font-size: 159px !important; }
16959
- .brz .brz-story .brz-fs-lg-159 {
16960
- font-size: 36.57% !important; }
16961
- .brz .brz-fs-lg-160 {
16962
- font-size: 160px !important; }
16963
- .brz .brz-story .brz-fs-lg-160 {
16964
- font-size: 36.8% !important; }
16965
- .brz .brz-fs-lg-161 {
16966
- font-size: 161px !important; }
16967
- .brz .brz-story .brz-fs-lg-161 {
16968
- font-size: 37.03% !important; }
16969
- .brz .brz-fs-lg-162 {
16970
- font-size: 162px !important; }
16971
- .brz .brz-story .brz-fs-lg-162 {
16972
- font-size: 37.26% !important; }
16973
- .brz .brz-fs-lg-163 {
16974
- font-size: 163px !important; }
16975
- .brz .brz-story .brz-fs-lg-163 {
16976
- font-size: 37.49% !important; }
16977
- .brz .brz-fs-lg-164 {
16978
- font-size: 164px !important; }
16979
- .brz .brz-story .brz-fs-lg-164 {
16980
- font-size: 37.72% !important; }
16981
- .brz .brz-fs-lg-165 {
16982
- font-size: 165px !important; }
16983
- .brz .brz-story .brz-fs-lg-165 {
16984
- font-size: 37.95% !important; }
16985
- .brz .brz-fs-lg-166 {
16986
- font-size: 166px !important; }
16987
- .brz .brz-story .brz-fs-lg-166 {
16988
- font-size: 38.18% !important; }
16989
- .brz .brz-fs-lg-167 {
16990
- font-size: 167px !important; }
16991
- .brz .brz-story .brz-fs-lg-167 {
16992
- font-size: 38.41% !important; }
16993
- .brz .brz-fs-lg-168 {
16994
- font-size: 168px !important; }
16995
- .brz .brz-story .brz-fs-lg-168 {
16996
- font-size: 38.64% !important; }
16997
- .brz .brz-fs-lg-169 {
16998
- font-size: 169px !important; }
16999
- .brz .brz-story .brz-fs-lg-169 {
17000
- font-size: 38.87% !important; }
17001
- .brz .brz-fs-lg-170 {
17002
- font-size: 170px !important; }
17003
- .brz .brz-story .brz-fs-lg-170 {
17004
- font-size: 39.1% !important; }
17005
- .brz .brz-fs-lg-171 {
17006
- font-size: 171px !important; }
17007
- .brz .brz-story .brz-fs-lg-171 {
17008
- font-size: 39.33% !important; }
17009
- .brz .brz-fs-lg-172 {
17010
- font-size: 172px !important; }
17011
- .brz .brz-story .brz-fs-lg-172 {
17012
- font-size: 39.56% !important; }
17013
- .brz .brz-fs-lg-173 {
17014
- font-size: 173px !important; }
17015
- .brz .brz-story .brz-fs-lg-173 {
17016
- font-size: 39.79% !important; }
17017
- .brz .brz-fs-lg-174 {
17018
- font-size: 174px !important; }
17019
- .brz .brz-story .brz-fs-lg-174 {
17020
- font-size: 40.02% !important; }
17021
- .brz .brz-fs-lg-175 {
17022
- font-size: 175px !important; }
17023
- .brz .brz-story .brz-fs-lg-175 {
17024
- font-size: 40.25% !important; }
17025
- .brz .brz-fs-lg-176 {
17026
- font-size: 176px !important; }
17027
- .brz .brz-story .brz-fs-lg-176 {
17028
- font-size: 40.48% !important; }
17029
- .brz .brz-fs-lg-177 {
17030
- font-size: 177px !important; }
17031
- .brz .brz-story .brz-fs-lg-177 {
17032
- font-size: 40.71% !important; }
17033
- .brz .brz-fs-lg-178 {
17034
- font-size: 178px !important; }
17035
- .brz .brz-story .brz-fs-lg-178 {
17036
- font-size: 40.94% !important; }
17037
- .brz .brz-fs-lg-179 {
17038
- font-size: 179px !important; }
17039
- .brz .brz-story .brz-fs-lg-179 {
17040
- font-size: 41.17% !important; }
17041
- .brz .brz-fs-lg-180 {
17042
- font-size: 180px !important; }
17043
- .brz .brz-story .brz-fs-lg-180 {
17044
- font-size: 41.4% !important; }
17045
- .brz .brz-fs-lg-181 {
17046
- font-size: 181px !important; }
17047
- .brz .brz-story .brz-fs-lg-181 {
17048
- font-size: 41.63% !important; }
17049
- .brz .brz-fs-lg-182 {
17050
- font-size: 182px !important; }
17051
- .brz .brz-story .brz-fs-lg-182 {
17052
- font-size: 41.86% !important; }
17053
- .brz .brz-fs-lg-183 {
17054
- font-size: 183px !important; }
17055
- .brz .brz-story .brz-fs-lg-183 {
17056
- font-size: 42.09% !important; }
17057
- .brz .brz-fs-lg-184 {
17058
- font-size: 184px !important; }
17059
- .brz .brz-story .brz-fs-lg-184 {
17060
- font-size: 42.32% !important; }
17061
- .brz .brz-fs-lg-185 {
17062
- font-size: 185px !important; }
17063
- .brz .brz-story .brz-fs-lg-185 {
17064
- font-size: 42.55% !important; }
17065
- .brz .brz-fs-lg-186 {
17066
- font-size: 186px !important; }
17067
- .brz .brz-story .brz-fs-lg-186 {
17068
- font-size: 42.78% !important; }
17069
- .brz .brz-fs-lg-187 {
17070
- font-size: 187px !important; }
17071
- .brz .brz-story .brz-fs-lg-187 {
17072
- font-size: 43.01% !important; }
17073
- .brz .brz-fs-lg-188 {
17074
- font-size: 188px !important; }
17075
- .brz .brz-story .brz-fs-lg-188 {
17076
- font-size: 43.24% !important; }
17077
- .brz .brz-fs-lg-189 {
17078
- font-size: 189px !important; }
17079
- .brz .brz-story .brz-fs-lg-189 {
17080
- font-size: 43.47% !important; }
17081
- .brz .brz-fs-lg-190 {
17082
- font-size: 190px !important; }
17083
- .brz .brz-story .brz-fs-lg-190 {
17084
- font-size: 43.7% !important; }
17085
- .brz .brz-fs-lg-191 {
17086
- font-size: 191px !important; }
17087
- .brz .brz-story .brz-fs-lg-191 {
17088
- font-size: 43.93% !important; }
17089
- .brz .brz-fs-lg-192 {
17090
- font-size: 192px !important; }
17091
- .brz .brz-story .brz-fs-lg-192 {
17092
- font-size: 44.16% !important; }
17093
- .brz .brz-fs-lg-193 {
17094
- font-size: 193px !important; }
17095
- .brz .brz-story .brz-fs-lg-193 {
17096
- font-size: 44.39% !important; }
17097
- .brz .brz-fs-lg-194 {
17098
- font-size: 194px !important; }
17099
- .brz .brz-story .brz-fs-lg-194 {
17100
- font-size: 44.62% !important; }
17101
- .brz .brz-fs-lg-195 {
17102
- font-size: 195px !important; }
17103
- .brz .brz-story .brz-fs-lg-195 {
17104
- font-size: 44.85% !important; }
17105
- .brz .brz-fs-lg-196 {
17106
- font-size: 196px !important; }
17107
- .brz .brz-story .brz-fs-lg-196 {
17108
- font-size: 45.08% !important; }
17109
- .brz .brz-fs-lg-197 {
17110
- font-size: 197px !important; }
17111
- .brz .brz-story .brz-fs-lg-197 {
17112
- font-size: 45.31% !important; }
17113
- .brz .brz-fs-lg-198 {
17114
- font-size: 198px !important; }
17115
- .brz .brz-story .brz-fs-lg-198 {
17116
- font-size: 45.54% !important; }
17117
- .brz .brz-fs-lg-199 {
17118
- font-size: 199px !important; }
17119
- .brz .brz-story .brz-fs-lg-199 {
17120
- font-size: 45.77% !important; }
17121
- .brz .brz-fs-lg-200 {
17122
- font-size: 200px !important; }
17123
- .brz .brz-story .brz-fs-lg-200 {
17124
- font-size: 46% !important; }
17125
- .brz .brz-fs-lg-201 {
17126
- font-size: 201px !important; }
17127
- .brz .brz-story .brz-fs-lg-201 {
17128
- font-size: 46.23% !important; }
17129
- .brz .brz-fs-lg-202 {
17130
- font-size: 202px !important; }
17131
- .brz .brz-story .brz-fs-lg-202 {
17132
- font-size: 46.46% !important; }
17133
- .brz .brz-fs-lg-203 {
17134
- font-size: 203px !important; }
17135
- .brz .brz-story .brz-fs-lg-203 {
17136
- font-size: 46.69% !important; }
17137
- .brz .brz-fs-lg-204 {
17138
- font-size: 204px !important; }
17139
- .brz .brz-story .brz-fs-lg-204 {
17140
- font-size: 46.92% !important; }
17141
- .brz .brz-fs-lg-205 {
17142
- font-size: 205px !important; }
17143
- .brz .brz-story .brz-fs-lg-205 {
17144
- font-size: 47.15% !important; }
17145
- .brz .brz-fs-lg-206 {
17146
- font-size: 206px !important; }
17147
- .brz .brz-story .brz-fs-lg-206 {
17148
- font-size: 47.38% !important; }
17149
- .brz .brz-fs-lg-207 {
17150
- font-size: 207px !important; }
17151
- .brz .brz-story .brz-fs-lg-207 {
17152
- font-size: 47.61% !important; }
17153
- .brz .brz-fs-lg-208 {
17154
- font-size: 208px !important; }
17155
- .brz .brz-story .brz-fs-lg-208 {
17156
- font-size: 47.84% !important; }
17157
- .brz .brz-fs-lg-209 {
17158
- font-size: 209px !important; }
17159
- .brz .brz-story .brz-fs-lg-209 {
17160
- font-size: 48.07% !important; }
17161
- .brz .brz-fs-lg-210 {
17162
- font-size: 210px !important; }
17163
- .brz .brz-story .brz-fs-lg-210 {
17164
- font-size: 48.3% !important; }
17165
- .brz .brz-fs-lg-211 {
17166
- font-size: 211px !important; }
17167
- .brz .brz-story .brz-fs-lg-211 {
17168
- font-size: 48.53% !important; }
17169
- .brz .brz-fs-lg-212 {
17170
- font-size: 212px !important; }
17171
- .brz .brz-story .brz-fs-lg-212 {
17172
- font-size: 48.76% !important; }
17173
- .brz .brz-fs-lg-213 {
17174
- font-size: 213px !important; }
17175
- .brz .brz-story .brz-fs-lg-213 {
17176
- font-size: 48.99% !important; }
17177
- .brz .brz-fs-lg-214 {
17178
- font-size: 214px !important; }
17179
- .brz .brz-story .brz-fs-lg-214 {
17180
- font-size: 49.22% !important; }
17181
- .brz .brz-fs-lg-215 {
17182
- font-size: 215px !important; }
17183
- .brz .brz-story .brz-fs-lg-215 {
17184
- font-size: 49.45% !important; }
17185
- .brz .brz-fs-lg-216 {
17186
- font-size: 216px !important; }
17187
- .brz .brz-story .brz-fs-lg-216 {
17188
- font-size: 49.68% !important; }
17189
- .brz .brz-fs-lg-217 {
17190
- font-size: 217px !important; }
17191
- .brz .brz-story .brz-fs-lg-217 {
17192
- font-size: 49.91% !important; }
17193
- .brz .brz-fs-lg-218 {
17194
- font-size: 218px !important; }
17195
- .brz .brz-story .brz-fs-lg-218 {
17196
- font-size: 50.14% !important; }
17197
- .brz .brz-fs-lg-219 {
17198
- font-size: 219px !important; }
17199
- .brz .brz-story .brz-fs-lg-219 {
17200
- font-size: 50.37% !important; }
17201
- .brz .brz-fs-lg-220 {
17202
- font-size: 220px !important; }
17203
- .brz .brz-story .brz-fs-lg-220 {
17204
- font-size: 50.6% !important; }
17205
- .brz .brz-fs-lg-221 {
17206
- font-size: 221px !important; }
17207
- .brz .brz-story .brz-fs-lg-221 {
17208
- font-size: 50.83% !important; }
17209
- .brz .brz-fs-lg-222 {
17210
- font-size: 222px !important; }
17211
- .brz .brz-story .brz-fs-lg-222 {
17212
- font-size: 51.06% !important; }
17213
- .brz .brz-fs-lg-223 {
17214
- font-size: 223px !important; }
17215
- .brz .brz-story .brz-fs-lg-223 {
17216
- font-size: 51.29% !important; }
17217
- .brz .brz-fs-lg-224 {
17218
- font-size: 224px !important; }
17219
- .brz .brz-story .brz-fs-lg-224 {
17220
- font-size: 51.52% !important; }
17221
- .brz .brz-fs-lg-225 {
17222
- font-size: 225px !important; }
17223
- .brz .brz-story .brz-fs-lg-225 {
17224
- font-size: 51.75% !important; }
17225
- .brz .brz-fs-lg-226 {
17226
- font-size: 226px !important; }
17227
- .brz .brz-story .brz-fs-lg-226 {
17228
- font-size: 51.98% !important; }
17229
- .brz .brz-fs-lg-227 {
17230
- font-size: 227px !important; }
17231
- .brz .brz-story .brz-fs-lg-227 {
17232
- font-size: 52.21% !important; }
17233
- .brz .brz-fs-lg-228 {
17234
- font-size: 228px !important; }
17235
- .brz .brz-story .brz-fs-lg-228 {
17236
- font-size: 52.44% !important; }
17237
- .brz .brz-fs-lg-229 {
17238
- font-size: 229px !important; }
17239
- .brz .brz-story .brz-fs-lg-229 {
17240
- font-size: 52.67% !important; }
17241
- .brz .brz-fs-lg-230 {
17242
- font-size: 230px !important; }
17243
- .brz .brz-story .brz-fs-lg-230 {
17244
- font-size: 52.9% !important; }
17245
- .brz .brz-fs-lg-231 {
17246
- font-size: 231px !important; }
17247
- .brz .brz-story .brz-fs-lg-231 {
17248
- font-size: 53.13% !important; }
17249
- .brz .brz-fs-lg-232 {
17250
- font-size: 232px !important; }
17251
- .brz .brz-story .brz-fs-lg-232 {
17252
- font-size: 53.36% !important; }
17253
- .brz .brz-fs-lg-233 {
17254
- font-size: 233px !important; }
17255
- .brz .brz-story .brz-fs-lg-233 {
17256
- font-size: 53.59% !important; }
17257
- .brz .brz-fs-lg-234 {
17258
- font-size: 234px !important; }
17259
- .brz .brz-story .brz-fs-lg-234 {
17260
- font-size: 53.82% !important; }
17261
- .brz .brz-fs-lg-235 {
17262
- font-size: 235px !important; }
17263
- .brz .brz-story .brz-fs-lg-235 {
17264
- font-size: 54.05% !important; }
17265
- .brz .brz-fs-lg-236 {
17266
- font-size: 236px !important; }
17267
- .brz .brz-story .brz-fs-lg-236 {
17268
- font-size: 54.28% !important; }
17269
- .brz .brz-fs-lg-237 {
17270
- font-size: 237px !important; }
17271
- .brz .brz-story .brz-fs-lg-237 {
17272
- font-size: 54.51% !important; }
17273
- .brz .brz-fs-lg-238 {
17274
- font-size: 238px !important; }
17275
- .brz .brz-story .brz-fs-lg-238 {
17276
- font-size: 54.74% !important; }
17277
- .brz .brz-fs-lg-239 {
17278
- font-size: 239px !important; }
17279
- .brz .brz-story .brz-fs-lg-239 {
17280
- font-size: 54.97% !important; }
17281
- .brz .brz-fs-lg-240 {
17282
- font-size: 240px !important; }
17283
- .brz .brz-story .brz-fs-lg-240 {
17284
- font-size: 55.2% !important; }
17285
- .brz .brz-fs-lg-241 {
17286
- font-size: 241px !important; }
17287
- .brz .brz-story .brz-fs-lg-241 {
17288
- font-size: 55.43% !important; }
17289
- .brz .brz-fs-lg-242 {
17290
- font-size: 242px !important; }
17291
- .brz .brz-story .brz-fs-lg-242 {
17292
- font-size: 55.66% !important; }
17293
- .brz .brz-fs-lg-243 {
17294
- font-size: 243px !important; }
17295
- .brz .brz-story .brz-fs-lg-243 {
17296
- font-size: 55.89% !important; }
17297
- .brz .brz-fs-lg-244 {
17298
- font-size: 244px !important; }
17299
- .brz .brz-story .brz-fs-lg-244 {
17300
- font-size: 56.12% !important; }
17301
- .brz .brz-fs-lg-245 {
17302
- font-size: 245px !important; }
17303
- .brz .brz-story .brz-fs-lg-245 {
17304
- font-size: 56.35% !important; }
17305
- .brz .brz-fs-lg-246 {
17306
- font-size: 246px !important; }
17307
- .brz .brz-story .brz-fs-lg-246 {
17308
- font-size: 56.58% !important; }
17309
- .brz .brz-fs-lg-247 {
17310
- font-size: 247px !important; }
17311
- .brz .brz-story .brz-fs-lg-247 {
17312
- font-size: 56.81% !important; }
17313
- .brz .brz-fs-lg-248 {
17314
- font-size: 248px !important; }
17315
- .brz .brz-story .brz-fs-lg-248 {
17316
- font-size: 57.04% !important; }
17317
- .brz .brz-fs-lg-249 {
17318
- font-size: 249px !important; }
17319
- .brz .brz-story .brz-fs-lg-249 {
17320
- font-size: 57.27% !important; }
17321
- .brz .brz-fs-lg-250 {
17322
- font-size: 250px !important; }
17323
- .brz .brz-story .brz-fs-lg-250 {
17324
- font-size: 57.5% !important; }
17325
- .brz .brz-fs-lg-251 {
17326
- font-size: 251px !important; }
17327
- .brz .brz-story .brz-fs-lg-251 {
17328
- font-size: 57.73% !important; }
17329
- .brz .brz-fs-lg-252 {
17330
- font-size: 252px !important; }
17331
- .brz .brz-story .brz-fs-lg-252 {
17332
- font-size: 57.96% !important; }
17333
- .brz .brz-fs-lg-253 {
17334
- font-size: 253px !important; }
17335
- .brz .brz-story .brz-fs-lg-253 {
17336
- font-size: 58.19% !important; }
17337
- .brz .brz-fs-lg-254 {
17338
- font-size: 254px !important; }
17339
- .brz .brz-story .brz-fs-lg-254 {
17340
- font-size: 58.42% !important; }
17341
- .brz .brz-fs-lg-255 {
17342
- font-size: 255px !important; }
17343
- .brz .brz-story .brz-fs-lg-255 {
17344
- font-size: 58.65% !important; }
17345
- .brz .brz-fs-lg-256 {
17346
- font-size: 256px !important; }
17347
- .brz .brz-story .brz-fs-lg-256 {
17348
- font-size: 58.88% !important; }
17349
- .brz .brz-fs-lg-257 {
17350
- font-size: 257px !important; }
17351
- .brz .brz-story .brz-fs-lg-257 {
17352
- font-size: 59.11% !important; }
17353
- .brz .brz-fs-lg-258 {
17354
- font-size: 258px !important; }
17355
- .brz .brz-story .brz-fs-lg-258 {
17356
- font-size: 59.34% !important; }
17357
- .brz .brz-fs-lg-259 {
17358
- font-size: 259px !important; }
17359
- .brz .brz-story .brz-fs-lg-259 {
17360
- font-size: 59.57% !important; }
17361
- .brz .brz-fs-lg-260 {
17362
- font-size: 260px !important; }
17363
- .brz .brz-story .brz-fs-lg-260 {
17364
- font-size: 59.8% !important; }
17365
- .brz .brz-fs-lg-261 {
17366
- font-size: 261px !important; }
17367
- .brz .brz-story .brz-fs-lg-261 {
17368
- font-size: 60.03% !important; }
17369
- .brz .brz-fs-lg-262 {
17370
- font-size: 262px !important; }
17371
- .brz .brz-story .brz-fs-lg-262 {
17372
- font-size: 60.26% !important; }
17373
- .brz .brz-fs-lg-263 {
17374
- font-size: 263px !important; }
17375
- .brz .brz-story .brz-fs-lg-263 {
17376
- font-size: 60.49% !important; }
17377
- .brz .brz-fs-lg-264 {
17378
- font-size: 264px !important; }
17379
- .brz .brz-story .brz-fs-lg-264 {
17380
- font-size: 60.72% !important; }
17381
- .brz .brz-fs-lg-265 {
17382
- font-size: 265px !important; }
17383
- .brz .brz-story .brz-fs-lg-265 {
17384
- font-size: 60.95% !important; }
17385
- .brz .brz-fs-lg-266 {
17386
- font-size: 266px !important; }
17387
- .brz .brz-story .brz-fs-lg-266 {
17388
- font-size: 61.18% !important; }
17389
- .brz .brz-fs-lg-267 {
17390
- font-size: 267px !important; }
17391
- .brz .brz-story .brz-fs-lg-267 {
17392
- font-size: 61.41% !important; }
17393
- .brz .brz-fs-lg-268 {
17394
- font-size: 268px !important; }
17395
- .brz .brz-story .brz-fs-lg-268 {
17396
- font-size: 61.64% !important; }
17397
- .brz .brz-fs-lg-269 {
17398
- font-size: 269px !important; }
17399
- .brz .brz-story .brz-fs-lg-269 {
17400
- font-size: 61.87% !important; }
17401
- .brz .brz-fs-lg-270 {
17402
- font-size: 270px !important; }
17403
- .brz .brz-story .brz-fs-lg-270 {
17404
- font-size: 62.1% !important; }
17405
- .brz .brz-fs-lg-271 {
17406
- font-size: 271px !important; }
17407
- .brz .brz-story .brz-fs-lg-271 {
17408
- font-size: 62.33% !important; }
17409
- .brz .brz-fs-lg-272 {
17410
- font-size: 272px !important; }
17411
- .brz .brz-story .brz-fs-lg-272 {
17412
- font-size: 62.56% !important; }
17413
- .brz .brz-fs-lg-273 {
17414
- font-size: 273px !important; }
17415
- .brz .brz-story .brz-fs-lg-273 {
17416
- font-size: 62.79% !important; }
17417
- .brz .brz-fs-lg-274 {
17418
- font-size: 274px !important; }
17419
- .brz .brz-story .brz-fs-lg-274 {
17420
- font-size: 63.02% !important; }
17421
- .brz .brz-fs-lg-275 {
17422
- font-size: 275px !important; }
17423
- .brz .brz-story .brz-fs-lg-275 {
17424
- font-size: 63.25% !important; }
17425
- .brz .brz-fs-lg-276 {
17426
- font-size: 276px !important; }
17427
- .brz .brz-story .brz-fs-lg-276 {
17428
- font-size: 63.48% !important; }
17429
- .brz .brz-fs-lg-277 {
17430
- font-size: 277px !important; }
17431
- .brz .brz-story .brz-fs-lg-277 {
17432
- font-size: 63.71% !important; }
17433
- .brz .brz-fs-lg-278 {
17434
- font-size: 278px !important; }
17435
- .brz .brz-story .brz-fs-lg-278 {
17436
- font-size: 63.94% !important; }
17437
- .brz .brz-fs-lg-279 {
17438
- font-size: 279px !important; }
17439
- .brz .brz-story .brz-fs-lg-279 {
17440
- font-size: 64.17% !important; }
17441
- .brz .brz-fs-lg-280 {
17442
- font-size: 280px !important; }
17443
- .brz .brz-story .brz-fs-lg-280 {
17444
- font-size: 64.4% !important; }
17445
- .brz .brz-fs-lg-281 {
17446
- font-size: 281px !important; }
17447
- .brz .brz-story .brz-fs-lg-281 {
17448
- font-size: 64.63% !important; }
17449
- .brz .brz-fs-lg-282 {
17450
- font-size: 282px !important; }
17451
- .brz .brz-story .brz-fs-lg-282 {
17452
- font-size: 64.86% !important; }
17453
- .brz .brz-fs-lg-283 {
17454
- font-size: 283px !important; }
17455
- .brz .brz-story .brz-fs-lg-283 {
17456
- font-size: 65.09% !important; }
17457
- .brz .brz-fs-lg-284 {
17458
- font-size: 284px !important; }
17459
- .brz .brz-story .brz-fs-lg-284 {
17460
- font-size: 65.32% !important; }
17461
- .brz .brz-fs-lg-285 {
17462
- font-size: 285px !important; }
17463
- .brz .brz-story .brz-fs-lg-285 {
17464
- font-size: 65.55% !important; }
17465
- .brz .brz-fs-lg-286 {
17466
- font-size: 286px !important; }
17467
- .brz .brz-story .brz-fs-lg-286 {
17468
- font-size: 65.78% !important; }
17469
- .brz .brz-fs-lg-287 {
17470
- font-size: 287px !important; }
17471
- .brz .brz-story .brz-fs-lg-287 {
17472
- font-size: 66.01% !important; }
17473
- .brz .brz-fs-lg-288 {
17474
- font-size: 288px !important; }
17475
- .brz .brz-story .brz-fs-lg-288 {
17476
- font-size: 66.24% !important; }
17477
- .brz .brz-fs-lg-289 {
17478
- font-size: 289px !important; }
17479
- .brz .brz-story .brz-fs-lg-289 {
17480
- font-size: 66.47% !important; }
17481
- .brz .brz-fs-lg-290 {
17482
- font-size: 290px !important; }
17483
- .brz .brz-story .brz-fs-lg-290 {
17484
- font-size: 66.7% !important; }
17485
- .brz .brz-fs-lg-291 {
17486
- font-size: 291px !important; }
17487
- .brz .brz-story .brz-fs-lg-291 {
17488
- font-size: 66.93% !important; }
17489
- .brz .brz-fs-lg-292 {
17490
- font-size: 292px !important; }
17491
- .brz .brz-story .brz-fs-lg-292 {
17492
- font-size: 67.16% !important; }
17493
- .brz .brz-fs-lg-293 {
17494
- font-size: 293px !important; }
17495
- .brz .brz-story .brz-fs-lg-293 {
17496
- font-size: 67.39% !important; }
17497
- .brz .brz-fs-lg-294 {
17498
- font-size: 294px !important; }
17499
- .brz .brz-story .brz-fs-lg-294 {
17500
- font-size: 67.62% !important; }
17501
- .brz .brz-fs-lg-295 {
17502
- font-size: 295px !important; }
17503
- .brz .brz-story .brz-fs-lg-295 {
17504
- font-size: 67.85% !important; }
17505
- .brz .brz-fs-lg-296 {
17506
- font-size: 296px !important; }
17507
- .brz .brz-story .brz-fs-lg-296 {
17508
- font-size: 68.08% !important; }
17509
- .brz .brz-fs-lg-297 {
17510
- font-size: 297px !important; }
17511
- .brz .brz-story .brz-fs-lg-297 {
17512
- font-size: 68.31% !important; }
17513
- .brz .brz-fs-lg-298 {
17514
- font-size: 298px !important; }
17515
- .brz .brz-story .brz-fs-lg-298 {
17516
- font-size: 68.54% !important; }
17517
- .brz .brz-fs-lg-299 {
17518
- font-size: 299px !important; }
17519
- .brz .brz-story .brz-fs-lg-299 {
17520
- font-size: 68.77% !important; }
17521
- .brz .brz-fs-lg-300 {
17522
- font-size: 300px !important; }
17523
- .brz .brz-story .brz-fs-lg-300 {
17524
- font-size: 69% !important; }
17525
- .brz .brz-lh-lg-1 {
17526
- line-height: 1em !important; }
17527
- .brz .brz-lh-lg-1_1 {
17528
- line-height: 1.1em !important; }
17529
- .brz .brz-lh-lg-1_2 {
17530
- line-height: 1.2em !important; }
17531
- .brz .brz-lh-lg-1_3 {
17532
- line-height: 1.3em !important; }
17533
- .brz .brz-lh-lg-1_4 {
17534
- line-height: 1.4em !important; }
17535
- .brz .brz-lh-lg-1_5 {
17536
- line-height: 1.5em !important; }
17537
- .brz .brz-lh-lg-1_6 {
17538
- line-height: 1.6em !important; }
17539
- .brz .brz-lh-lg-1_7 {
17540
- line-height: 1.7em !important; }
17541
- .brz .brz-lh-lg-1_8 {
17542
- line-height: 1.8em !important; }
17543
- .brz .brz-lh-lg-1_9 {
17544
- line-height: 1.9em !important; }
17545
- .brz .brz-lh-lg-2 {
17546
- line-height: 2em !important; }
17547
- .brz .brz-lh-lg-2_1 {
17548
- line-height: 2.1em !important; }
17549
- .brz .brz-lh-lg-2_2 {
17550
- line-height: 2.2em !important; }
17551
- .brz .brz-lh-lg-2_3 {
17552
- line-height: 2.3em !important; }
17553
- .brz .brz-lh-lg-2_4 {
17554
- line-height: 2.4em !important; }
17555
- .brz .brz-lh-lg-2_5 {
17556
- line-height: 2.5em !important; }
17557
- .brz .brz-lh-lg-2_6 {
17558
- line-height: 2.6em !important; }
17559
- .brz .brz-lh-lg-2_7 {
17560
- line-height: 2.7em !important; }
17561
- .brz .brz-lh-lg-2_8 {
17562
- line-height: 2.8em !important; }
17563
- .brz .brz-lh-lg-2_9 {
17564
- line-height: 2.9em !important; }
17565
- .brz .brz-lh-lg-3 {
17566
- line-height: 3em !important; }
17567
- .brz .brz-lh-lg-3_1 {
17568
- line-height: 3.1em !important; }
17569
- .brz .brz-lh-lg-3_2 {
17570
- line-height: 3.2em !important; }
17571
- .brz .brz-lh-lg-3_3 {
17572
- line-height: 3.3em !important; }
17573
- .brz .brz-lh-lg-3_4 {
17574
- line-height: 3.4em !important; }
17575
- .brz .brz-lh-lg-3_5 {
17576
- line-height: 3.5em !important; }
17577
- .brz .brz-lh-lg-3_6 {
17578
- line-height: 3.6em !important; }
17579
- .brz .brz-lh-lg-3_7 {
17580
- line-height: 3.7em !important; }
17581
- .brz .brz-lh-lg-3_8 {
17582
- line-height: 3.8em !important; }
17583
- .brz .brz-lh-lg-3_9 {
17584
- line-height: 3.9em !important; }
17585
- .brz .brz-lh-lg-4 {
17586
- line-height: 4em !important; }
17587
- .brz .brz-lh-lg-4_1 {
17588
- line-height: 4.1em !important; }
17589
- .brz .brz-lh-lg-4_2 {
17590
- line-height: 4.2em !important; }
17591
- .brz .brz-lh-lg-4_3 {
17592
- line-height: 4.3em !important; }
17593
- .brz .brz-lh-lg-4_4 {
17594
- line-height: 4.4em !important; }
17595
- .brz .brz-lh-lg-4_5 {
17596
- line-height: 4.5em !important; }
17597
- .brz .brz-lh-lg-4_6 {
17598
- line-height: 4.6em !important; }
17599
- .brz .brz-lh-lg-4_7 {
17600
- line-height: 4.7em !important; }
17601
- .brz .brz-lh-lg-4_8 {
17602
- line-height: 4.8em !important; }
17603
- .brz .brz-lh-lg-4_9 {
17604
- line-height: 4.9em !important; }
17605
- .brz .brz-lh-lg-5 {
17606
- line-height: 5em !important; }
17607
- .brz .brz-lh-lg-5_1 {
17608
- line-height: 5.1em !important; }
17609
- .brz .brz-lh-lg-5_2 {
17610
- line-height: 5.2em !important; }
17611
- .brz .brz-lh-lg-5_3 {
17612
- line-height: 5.3em !important; }
17613
- .brz .brz-lh-lg-5_4 {
17614
- line-height: 5.4em !important; }
17615
- .brz .brz-lh-lg-5_5 {
17616
- line-height: 5.5em !important; }
17617
- .brz .brz-lh-lg-5_6 {
17618
- line-height: 5.6em !important; }
17619
- .brz .brz-lh-lg-5_7 {
17620
- line-height: 5.7em !important; }
17621
- .brz .brz-lh-lg-5_8 {
17622
- line-height: 5.8em !important; }
17623
- .brz .brz-lh-lg-5_9 {
17624
- line-height: 5.9em !important; }
17625
- .brz .brz-ls-lg-m_20 {
17626
- letter-spacing: -20px !important; }
17627
- .brz .brz-ls-lg-m_20_5 {
17628
- letter-spacing: -20.5px !important; }
17629
- .brz .brz-ls-lg-m_19 {
17630
- letter-spacing: -19px !important; }
17631
- .brz .brz-ls-lg-m_19_5 {
17632
- letter-spacing: -19.5px !important; }
17633
- .brz .brz-ls-lg-m_18 {
17634
- letter-spacing: -18px !important; }
17635
- .brz .brz-ls-lg-m_18_5 {
17636
- letter-spacing: -18.5px !important; }
17637
- .brz .brz-ls-lg-m_17 {
17638
- letter-spacing: -17px !important; }
17639
- .brz .brz-ls-lg-m_17_5 {
17640
- letter-spacing: -17.5px !important; }
17641
- .brz .brz-ls-lg-m_16 {
17642
- letter-spacing: -16px !important; }
17643
- .brz .brz-ls-lg-m_16_5 {
17644
- letter-spacing: -16.5px !important; }
17645
- .brz .brz-ls-lg-m_15 {
17646
- letter-spacing: -15px !important; }
17647
- .brz .brz-ls-lg-m_15_5 {
17648
- letter-spacing: -15.5px !important; }
17649
- .brz .brz-ls-lg-m_14 {
17650
- letter-spacing: -14px !important; }
17651
- .brz .brz-ls-lg-m_14_5 {
17652
- letter-spacing: -14.5px !important; }
17653
- .brz .brz-ls-lg-m_13 {
17654
- letter-spacing: -13px !important; }
17655
- .brz .brz-ls-lg-m_13_5 {
17656
- letter-spacing: -13.5px !important; }
17657
- .brz .brz-ls-lg-m_12 {
17658
- letter-spacing: -12px !important; }
17659
- .brz .brz-ls-lg-m_12_5 {
17660
- letter-spacing: -12.5px !important; }
17661
- .brz .brz-ls-lg-m_11 {
17662
- letter-spacing: -11px !important; }
17663
- .brz .brz-ls-lg-m_11_5 {
17664
- letter-spacing: -11.5px !important; }
17665
- .brz .brz-ls-lg-m_10 {
17666
- letter-spacing: -10px !important; }
17667
- .brz .brz-ls-lg-m_10_5 {
17668
- letter-spacing: -10.5px !important; }
17669
- .brz .brz-ls-lg-m_9 {
17670
- letter-spacing: -9px !important; }
17671
- .brz .brz-ls-lg-m_9_5 {
17672
- letter-spacing: -9.5px !important; }
17673
- .brz .brz-ls-lg-m_8 {
17674
- letter-spacing: -8px !important; }
17675
- .brz .brz-ls-lg-m_8_5 {
17676
- letter-spacing: -8.5px !important; }
17677
- .brz .brz-ls-lg-m_7 {
17678
- letter-spacing: -7px !important; }
17679
- .brz .brz-ls-lg-m_7_5 {
17680
- letter-spacing: -7.5px !important; }
17681
- .brz .brz-ls-lg-m_6 {
17682
- letter-spacing: -6px !important; }
17683
- .brz .brz-ls-lg-m_6_5 {
17684
- letter-spacing: -6.5px !important; }
17685
- .brz .brz-ls-lg-m_5 {
17686
- letter-spacing: -5px !important; }
17687
- .brz .brz-ls-lg-m_5_5 {
17688
- letter-spacing: -5.5px !important; }
17689
- .brz .brz-ls-lg-m_4 {
17690
- letter-spacing: -4px !important; }
17691
- .brz .brz-ls-lg-m_4_5 {
17692
- letter-spacing: -4.5px !important; }
17693
- .brz .brz-ls-lg-m_3 {
17694
- letter-spacing: -3px !important; }
17695
- .brz .brz-ls-lg-m_3_5 {
17696
- letter-spacing: -3.5px !important; }
17697
- .brz .brz-ls-lg-m_2 {
17698
- letter-spacing: -2px !important; }
17699
- .brz .brz-ls-lg-m_2_5 {
17700
- letter-spacing: -2.5px !important; }
17701
- .brz .brz-ls-lg-m_1 {
17702
- letter-spacing: -1px !important; }
17703
- .brz .brz-ls-lg-m_1_5 {
17704
- letter-spacing: -1.5px !important; }
17705
- .brz .brz-ls-lg-m_0 {
17706
- letter-spacing: 0px !important; }
17707
- .brz .brz-ls-lg-m_0_5 {
17708
- letter-spacing: -0.5px !important; }
17709
- .brz .brz-ls-lg-0 {
17710
- letter-spacing: 0px !important; }
17711
- .brz .brz-ls-lg-0_5 {
17712
- letter-spacing: 0.5px !important; }
17713
- .brz .brz-ls-lg-1 {
17714
- letter-spacing: 1px !important; }
17715
- .brz .brz-ls-lg-1_5 {
17716
- letter-spacing: 1.5px !important; }
17717
- .brz .brz-ls-lg-2 {
17718
- letter-spacing: 2px !important; }
17719
- .brz .brz-ls-lg-2_5 {
17720
- letter-spacing: 2.5px !important; }
17721
- .brz .brz-ls-lg-3 {
17722
- letter-spacing: 3px !important; }
17723
- .brz .brz-ls-lg-3_5 {
17724
- letter-spacing: 3.5px !important; }
17725
- .brz .brz-ls-lg-4 {
17726
- letter-spacing: 4px !important; }
17727
- .brz .brz-ls-lg-4_5 {
17728
- letter-spacing: 4.5px !important; }
17729
- .brz .brz-ls-lg-5 {
17730
- letter-spacing: 5px !important; }
17731
- .brz .brz-ls-lg-5_5 {
17732
- letter-spacing: 5.5px !important; }
17733
- .brz .brz-ls-lg-6 {
17734
- letter-spacing: 6px !important; }
17735
- .brz .brz-ls-lg-6_5 {
17736
- letter-spacing: 6.5px !important; }
17737
- .brz .brz-ls-lg-7 {
17738
- letter-spacing: 7px !important; }
17739
- .brz .brz-ls-lg-7_5 {
17740
- letter-spacing: 7.5px !important; }
17741
- .brz .brz-ls-lg-8 {
17742
- letter-spacing: 8px !important; }
17743
- .brz .brz-ls-lg-8_5 {
17744
- letter-spacing: 8.5px !important; }
17745
- .brz .brz-ls-lg-9 {
17746
- letter-spacing: 9px !important; }
17747
- .brz .brz-ls-lg-9_5 {
17748
- letter-spacing: 9.5px !important; }
17749
- .brz .brz-ls-lg-10 {
17750
- letter-spacing: 10px !important; }
17751
- .brz .brz-ls-lg-10_5 {
17752
- letter-spacing: 10.5px !important; }
17753
- .brz .brz-ls-lg-11 {
17754
- letter-spacing: 11px !important; }
17755
- .brz .brz-ls-lg-11_5 {
17756
- letter-spacing: 11.5px !important; }
17757
- .brz .brz-ls-lg-12 {
17758
- letter-spacing: 12px !important; }
17759
- .brz .brz-ls-lg-12_5 {
17760
- letter-spacing: 12.5px !important; }
17761
- .brz .brz-ls-lg-13 {
17762
- letter-spacing: 13px !important; }
17763
- .brz .brz-ls-lg-13_5 {
17764
- letter-spacing: 13.5px !important; }
17765
- .brz .brz-ls-lg-14 {
17766
- letter-spacing: 14px !important; }
17767
- .brz .brz-ls-lg-14_5 {
17768
- letter-spacing: 14.5px !important; }
17769
- .brz .brz-ls-lg-15 {
17770
- letter-spacing: 15px !important; }
17771
- .brz .brz-ls-lg-15_5 {
17772
- letter-spacing: 15.5px !important; }
17773
- .brz .brz-ls-lg-16 {
17774
- letter-spacing: 16px !important; }
17775
- .brz .brz-ls-lg-16_5 {
17776
- letter-spacing: 16.5px !important; }
17777
- .brz .brz-ls-lg-17 {
17778
- letter-spacing: 17px !important; }
17779
- .brz .brz-ls-lg-17_5 {
17780
- letter-spacing: 17.5px !important; }
17781
- .brz .brz-ls-lg-18 {
17782
- letter-spacing: 18px !important; }
17783
- .brz .brz-ls-lg-18_5 {
17784
- letter-spacing: 18.5px !important; }
17785
- .brz .brz-ls-lg-19 {
17786
- letter-spacing: 19px !important; }
17787
- .brz .brz-ls-lg-19_5 {
17788
- letter-spacing: 19.5px !important; }
17789
- .brz .brz-ls-lg-20 {
17790
- letter-spacing: 20px !important; }
17791
- .brz .brz-ls-lg-20_5 {
17792
- letter-spacing: 20.5px !important; }
17793
- .brz .brz-fw-lg-100 {
17794
- font-weight: 100 !important; }
17795
- .brz .brz-fw-lg-200 {
17796
- font-weight: 200 !important; }
17797
- .brz .brz-fw-lg-300 {
17798
- font-weight: 300 !important; }
17799
- .brz .brz-fw-lg-400 {
17800
- font-weight: 400 !important; }
17801
- .brz .brz-fw-lg-500 {
17802
- font-weight: 500 !important; }
17803
- .brz .brz-fw-lg-600 {
17804
- font-weight: 600 !important; }
17805
- .brz .brz-fw-lg-700 {
17806
- font-weight: 700 !important; }
17807
- .brz .brz-fw-lg-800 {
17808
- font-weight: 800 !important; }
17809
- .brz .brz-fw-lg-900 {
17810
- font-weight: 900 !important; }
17811
- .brz .brz-fw-lg-1000 {
17812
- font-weight: 1000 !important; }
17813
- .brz .brz-fw-lg-1100 {
17814
- font-weight: 1100 !important; }
17815
- .brz .brz-fw-lg-1200 {
17816
- font-weight: 1200 !important; }
17817
- .brz .brz-fw-lg-1300 {
17818
- font-weight: 1300 !important; }
17819
- .brz .brz-fw-lg-1400 {
17820
- font-weight: 1400 !important; }
17821
- .brz .brz-fw-lg-1500 {
17822
- font-weight: 1500 !important; }
17823
- .brz .brz-fw-lg-1600 {
17824
- font-weight: 1600 !important; }
17825
- .brz .brz-fw-lg-1700 {
17826
- font-weight: 1700 !important; }
17827
- .brz .brz-fw-lg-1800 {
17828
- font-weight: 1800 !important; }
17829
- .brz .brz-fw-lg-1900 {
17830
- font-weight: 1900 !important; }
17831
- .brz .brz-fw-lg-2000 {
17832
- font-weight: 2000 !important; } }
17833
- .brz .brz-mt-lg-0 {
17834
- margin-top: 0px !important; }
17835
- .brz .brz-mt-lg-1 {
17836
- margin-top: 1px !important; }
17837
- .brz .brz-mt-lg-2 {
17838
- margin-top: 2px !important; }
17839
- .brz .brz-mt-lg-3 {
17840
- margin-top: 3px !important; }
17841
- .brz .brz-mt-lg-4 {
17842
- margin-top: 4px !important; }
17843
- .brz .brz-mt-lg-5 {
17844
- margin-top: 5px !important; }
17845
- .brz .brz-mt-lg-6 {
17846
- margin-top: 6px !important; }
17847
- .brz .brz-mt-lg-7 {
17848
- margin-top: 7px !important; }
17849
- .brz .brz-mt-lg-8 {
17850
- margin-top: 8px !important; }
17851
- .brz .brz-mt-lg-9 {
17852
- margin-top: 9px !important; }
17853
- .brz .brz-mt-lg-10 {
17854
- margin-top: 10px !important; }
17855
- .brz .brz-mt-lg-11 {
17856
- margin-top: 11px !important; }
17857
- .brz .brz-mt-lg-12 {
17858
- margin-top: 12px !important; }
17859
- .brz .brz-mt-lg-13 {
17860
- margin-top: 13px !important; }
17861
- .brz .brz-mt-lg-14 {
17862
- margin-top: 14px !important; }
17863
- .brz .brz-mt-lg-15 {
17864
- margin-top: 15px !important; }
17865
- .brz .brz-mt-lg-16 {
17866
- margin-top: 16px !important; }
17867
- .brz .brz-mt-lg-17 {
17868
- margin-top: 17px !important; }
17869
- .brz .brz-mt-lg-18 {
17870
- margin-top: 18px !important; }
17871
- .brz .brz-mt-lg-19 {
17872
- margin-top: 19px !important; }
17873
- .brz .brz-mt-lg-20 {
17874
- margin-top: 20px !important; }
17875
- .brz .brz-mt-lg-21 {
17876
- margin-top: 21px !important; }
17877
- .brz .brz-mt-lg-22 {
17878
- margin-top: 22px !important; }
17879
- .brz .brz-mt-lg-23 {
17880
- margin-top: 23px !important; }
17881
- .brz .brz-mt-lg-24 {
17882
- margin-top: 24px !important; }
17883
- .brz .brz-mt-lg-25 {
17884
- margin-top: 25px !important; }
17885
- .brz .brz-mt-lg-26 {
17886
- margin-top: 26px !important; }
17887
- .brz .brz-mt-lg-27 {
17888
- margin-top: 27px !important; }
17889
- .brz .brz-mt-lg-28 {
17890
- margin-top: 28px !important; }
17891
- .brz .brz-mt-lg-29 {
17892
- margin-top: 29px !important; }
17893
- .brz .brz-mt-lg-30 {
17894
- margin-top: 30px !important; }
17895
- .brz .brz-mt-lg-31 {
17896
- margin-top: 31px !important; }
17897
- .brz .brz-mt-lg-32 {
17898
- margin-top: 32px !important; }
17899
- .brz .brz-mt-lg-33 {
17900
- margin-top: 33px !important; }
17901
- .brz .brz-mt-lg-34 {
17902
- margin-top: 34px !important; }
17903
- .brz .brz-mt-lg-35 {
17904
- margin-top: 35px !important; }
17905
- .brz .brz-mt-lg-36 {
17906
- margin-top: 36px !important; }
17907
- .brz .brz-mt-lg-37 {
17908
- margin-top: 37px !important; }
17909
- .brz .brz-mt-lg-38 {
17910
- margin-top: 38px !important; }
17911
- .brz .brz-mt-lg-39 {
17912
- margin-top: 39px !important; }
17913
- .brz .brz-mt-lg-40 {
17914
- margin-top: 40px !important; }
17915
- .brz .brz-mt-lg-41 {
17916
- margin-top: 41px !important; }
17917
- .brz .brz-mt-lg-42 {
17918
- margin-top: 42px !important; }
17919
- .brz .brz-mt-lg-43 {
17920
- margin-top: 43px !important; }
17921
- .brz .brz-mt-lg-44 {
17922
- margin-top: 44px !important; }
17923
- .brz .brz-mt-lg-45 {
17924
- margin-top: 45px !important; }
17925
- .brz .brz-mt-lg-46 {
17926
- margin-top: 46px !important; }
17927
- .brz .brz-mt-lg-47 {
17928
- margin-top: 47px !important; }
17929
- .brz .brz-mt-lg-48 {
17930
- margin-top: 48px !important; }
17931
- .brz .brz-mt-lg-49 {
17932
- margin-top: 49px !important; }
17933
- .brz .brz-mt-lg-50 {
17934
- margin-top: 50px !important; }
17935
- .brz .brz-mt-lg-51 {
17936
- margin-top: 51px !important; }
17937
- .brz .brz-mt-lg-52 {
17938
- margin-top: 52px !important; }
17939
- .brz .brz-mt-lg-53 {
17940
- margin-top: 53px !important; }
17941
- .brz .brz-mt-lg-54 {
17942
- margin-top: 54px !important; }
17943
- .brz .brz-mt-lg-55 {
17944
- margin-top: 55px !important; }
17945
- .brz .brz-mt-lg-56 {
17946
- margin-top: 56px !important; }
17947
- .brz .brz-mt-lg-57 {
17948
- margin-top: 57px !important; }
17949
- .brz .brz-mt-lg-58 {
17950
- margin-top: 58px !important; }
17951
- .brz .brz-mt-lg-59 {
17952
- margin-top: 59px !important; }
17953
- .brz .brz-mt-lg-60 {
17954
- margin-top: 60px !important; }
17955
- .brz .brz-mt-lg-61 {
17956
- margin-top: 61px !important; }
17957
- .brz .brz-mt-lg-62 {
17958
- margin-top: 62px !important; }
17959
- .brz .brz-mt-lg-63 {
17960
- margin-top: 63px !important; }
17961
- .brz .brz-mt-lg-64 {
17962
- margin-top: 64px !important; }
17963
- .brz .brz-mt-lg-65 {
17964
- margin-top: 65px !important; }
17965
- .brz .brz-mt-lg-66 {
17966
- margin-top: 66px !important; }
17967
- .brz .brz-mt-lg-67 {
17968
- margin-top: 67px !important; }
17969
- .brz .brz-mt-lg-68 {
17970
- margin-top: 68px !important; }
17971
- .brz .brz-mt-lg-69 {
17972
- margin-top: 69px !important; }
17973
- .brz .brz-mt-lg-70 {
17974
- margin-top: 70px !important; }
17975
- .brz .brz-mt-lg-71 {
17976
- margin-top: 71px !important; }
17977
- .brz .brz-mt-lg-72 {
17978
- margin-top: 72px !important; }
17979
- .brz .brz-mt-lg-73 {
17980
- margin-top: 73px !important; }
17981
- .brz .brz-mt-lg-74 {
17982
- margin-top: 74px !important; }
17983
- .brz .brz-mt-lg-75 {
17984
- margin-top: 75px !important; }
17985
- .brz .brz-mt-lg-76 {
17986
- margin-top: 76px !important; }
17987
- .brz .brz-mt-lg-77 {
17988
- margin-top: 77px !important; }
17989
- .brz .brz-mt-lg-78 {
17990
- margin-top: 78px !important; }
17991
- .brz .brz-mt-lg-79 {
17992
- margin-top: 79px !important; }
17993
- .brz .brz-mt-lg-80 {
17994
- margin-top: 80px !important; }
17995
- .brz .brz-mt-lg-81 {
17996
- margin-top: 81px !important; }
17997
- .brz .brz-mt-lg-82 {
17998
- margin-top: 82px !important; }
17999
- .brz .brz-mt-lg-83 {
18000
- margin-top: 83px !important; }
18001
- .brz .brz-mt-lg-84 {
18002
- margin-top: 84px !important; }
18003
- .brz .brz-mt-lg-85 {
18004
- margin-top: 85px !important; }
18005
- .brz .brz-mt-lg-86 {
18006
- margin-top: 86px !important; }
18007
- .brz .brz-mt-lg-87 {
18008
- margin-top: 87px !important; }
18009
- .brz .brz-mt-lg-88 {
18010
- margin-top: 88px !important; }
18011
- .brz .brz-mt-lg-89 {
18012
- margin-top: 89px !important; }
18013
- .brz .brz-mt-lg-90 {
18014
- margin-top: 90px !important; }
18015
- .brz .brz-mt-lg-91 {
18016
- margin-top: 91px !important; }
18017
- .brz .brz-mt-lg-92 {
18018
- margin-top: 92px !important; }
18019
- .brz .brz-mt-lg-93 {
18020
- margin-top: 93px !important; }
18021
- .brz .brz-mt-lg-94 {
18022
- margin-top: 94px !important; }
18023
- .brz .brz-mt-lg-95 {
18024
- margin-top: 95px !important; }
18025
- .brz .brz-mt-lg-96 {
18026
- margin-top: 96px !important; }
18027
- .brz .brz-mt-lg-97 {
18028
- margin-top: 97px !important; }
18029
- .brz .brz-mt-lg-98 {
18030
- margin-top: 98px !important; }
18031
- .brz .brz-mt-lg-99 {
18032
- margin-top: 99px !important; }
18033
- .brz .brz-mt-lg-100 {
18034
- margin-top: 100px !important; }
18035
- .brz .brz-mb-lg-0 {
18036
- margin-bottom: 0px !important; }
18037
- .brz .brz-mb-lg-1 {
18038
- margin-bottom: 1px !important; }
18039
- .brz .brz-mb-lg-2 {
18040
- margin-bottom: 2px !important; }
18041
- .brz .brz-mb-lg-3 {
18042
- margin-bottom: 3px !important; }
18043
- .brz .brz-mb-lg-4 {
18044
- margin-bottom: 4px !important; }
18045
- .brz .brz-mb-lg-5 {
18046
- margin-bottom: 5px !important; }
18047
- .brz .brz-mb-lg-6 {
18048
- margin-bottom: 6px !important; }
18049
- .brz .brz-mb-lg-7 {
18050
- margin-bottom: 7px !important; }
18051
- .brz .brz-mb-lg-8 {
18052
- margin-bottom: 8px !important; }
18053
- .brz .brz-mb-lg-9 {
18054
- margin-bottom: 9px !important; }
18055
- .brz .brz-mb-lg-10 {
18056
- margin-bottom: 10px !important; }
18057
- .brz .brz-mb-lg-11 {
18058
- margin-bottom: 11px !important; }
18059
- .brz .brz-mb-lg-12 {
18060
- margin-bottom: 12px !important; }
18061
- .brz .brz-mb-lg-13 {
18062
- margin-bottom: 13px !important; }
18063
- .brz .brz-mb-lg-14 {
18064
- margin-bottom: 14px !important; }
18065
- .brz .brz-mb-lg-15 {
18066
- margin-bottom: 15px !important; }
18067
- .brz .brz-mb-lg-16 {
18068
- margin-bottom: 16px !important; }
18069
- .brz .brz-mb-lg-17 {
18070
- margin-bottom: 17px !important; }
18071
- .brz .brz-mb-lg-18 {
18072
- margin-bottom: 18px !important; }
18073
- .brz .brz-mb-lg-19 {
18074
- margin-bottom: 19px !important; }
18075
- .brz .brz-mb-lg-20 {
18076
- margin-bottom: 20px !important; }
18077
- .brz .brz-mb-lg-21 {
18078
- margin-bottom: 21px !important; }
18079
- .brz .brz-mb-lg-22 {
18080
- margin-bottom: 22px !important; }
18081
- .brz .brz-mb-lg-23 {
18082
- margin-bottom: 23px !important; }
18083
- .brz .brz-mb-lg-24 {
18084
- margin-bottom: 24px !important; }
18085
- .brz .brz-mb-lg-25 {
18086
- margin-bottom: 25px !important; }
18087
- .brz .brz-mb-lg-26 {
18088
- margin-bottom: 26px !important; }
18089
- .brz .brz-mb-lg-27 {
18090
- margin-bottom: 27px !important; }
18091
- .brz .brz-mb-lg-28 {
18092
- margin-bottom: 28px !important; }
18093
- .brz .brz-mb-lg-29 {
18094
- margin-bottom: 29px !important; }
18095
- .brz .brz-mb-lg-30 {
18096
- margin-bottom: 30px !important; }
18097
- .brz .brz-mb-lg-31 {
18098
- margin-bottom: 31px !important; }
18099
- .brz .brz-mb-lg-32 {
18100
- margin-bottom: 32px !important; }
18101
- .brz .brz-mb-lg-33 {
18102
- margin-bottom: 33px !important; }
18103
- .brz .brz-mb-lg-34 {
18104
- margin-bottom: 34px !important; }
18105
- .brz .brz-mb-lg-35 {
18106
- margin-bottom: 35px !important; }
18107
- .brz .brz-mb-lg-36 {
18108
- margin-bottom: 36px !important; }
18109
- .brz .brz-mb-lg-37 {
18110
- margin-bottom: 37px !important; }
18111
- .brz .brz-mb-lg-38 {
18112
- margin-bottom: 38px !important; }
18113
- .brz .brz-mb-lg-39 {
18114
- margin-bottom: 39px !important; }
18115
- .brz .brz-mb-lg-40 {
18116
- margin-bottom: 40px !important; }
18117
- .brz .brz-mb-lg-41 {
18118
- margin-bottom: 41px !important; }
18119
- .brz .brz-mb-lg-42 {
18120
- margin-bottom: 42px !important; }
18121
- .brz .brz-mb-lg-43 {
18122
- margin-bottom: 43px !important; }
18123
- .brz .brz-mb-lg-44 {
18124
- margin-bottom: 44px !important; }
18125
- .brz .brz-mb-lg-45 {
18126
- margin-bottom: 45px !important; }
18127
- .brz .brz-mb-lg-46 {
18128
- margin-bottom: 46px !important; }
18129
- .brz .brz-mb-lg-47 {
18130
- margin-bottom: 47px !important; }
18131
- .brz .brz-mb-lg-48 {
18132
- margin-bottom: 48px !important; }
18133
- .brz .brz-mb-lg-49 {
18134
- margin-bottom: 49px !important; }
18135
- .brz .brz-mb-lg-50 {
18136
- margin-bottom: 50px !important; }
18137
- .brz .brz-mb-lg-51 {
18138
- margin-bottom: 51px !important; }
18139
- .brz .brz-mb-lg-52 {
18140
- margin-bottom: 52px !important; }
18141
- .brz .brz-mb-lg-53 {
18142
- margin-bottom: 53px !important; }
18143
- .brz .brz-mb-lg-54 {
18144
- margin-bottom: 54px !important; }
18145
- .brz .brz-mb-lg-55 {
18146
- margin-bottom: 55px !important; }
18147
- .brz .brz-mb-lg-56 {
18148
- margin-bottom: 56px !important; }
18149
- .brz .brz-mb-lg-57 {
18150
- margin-bottom: 57px !important; }
18151
- .brz .brz-mb-lg-58 {
18152
- margin-bottom: 58px !important; }
18153
- .brz .brz-mb-lg-59 {
18154
- margin-bottom: 59px !important; }
18155
- .brz .brz-mb-lg-60 {
18156
- margin-bottom: 60px !important; }
18157
- .brz .brz-mb-lg-61 {
18158
- margin-bottom: 61px !important; }
18159
- .brz .brz-mb-lg-62 {
18160
- margin-bottom: 62px !important; }
18161
- .brz .brz-mb-lg-63 {
18162
- margin-bottom: 63px !important; }
18163
- .brz .brz-mb-lg-64 {
18164
- margin-bottom: 64px !important; }
18165
- .brz .brz-mb-lg-65 {
18166
- margin-bottom: 65px !important; }
18167
- .brz .brz-mb-lg-66 {
18168
- margin-bottom: 66px !important; }
18169
- .brz .brz-mb-lg-67 {
18170
- margin-bottom: 67px !important; }
18171
- .brz .brz-mb-lg-68 {
18172
- margin-bottom: 68px !important; }
18173
- .brz .brz-mb-lg-69 {
18174
- margin-bottom: 69px !important; }
18175
- .brz .brz-mb-lg-70 {
18176
- margin-bottom: 70px !important; }
18177
- .brz .brz-mb-lg-71 {
18178
- margin-bottom: 71px !important; }
18179
- .brz .brz-mb-lg-72 {
18180
- margin-bottom: 72px !important; }
18181
- .brz .brz-mb-lg-73 {
18182
- margin-bottom: 73px !important; }
18183
- .brz .brz-mb-lg-74 {
18184
- margin-bottom: 74px !important; }
18185
- .brz .brz-mb-lg-75 {
18186
- margin-bottom: 75px !important; }
18187
- .brz .brz-mb-lg-76 {
18188
- margin-bottom: 76px !important; }
18189
- .brz .brz-mb-lg-77 {
18190
- margin-bottom: 77px !important; }
18191
- .brz .brz-mb-lg-78 {
18192
- margin-bottom: 78px !important; }
18193
- .brz .brz-mb-lg-79 {
18194
- margin-bottom: 79px !important; }
18195
- .brz .brz-mb-lg-80 {
18196
- margin-bottom: 80px !important; }
18197
- .brz .brz-mb-lg-81 {
18198
- margin-bottom: 81px !important; }
18199
- .brz .brz-mb-lg-82 {
18200
- margin-bottom: 82px !important; }
18201
- .brz .brz-mb-lg-83 {
18202
- margin-bottom: 83px !important; }
18203
- .brz .brz-mb-lg-84 {
18204
- margin-bottom: 84px !important; }
18205
- .brz .brz-mb-lg-85 {
18206
- margin-bottom: 85px !important; }
18207
- .brz .brz-mb-lg-86 {
18208
- margin-bottom: 86px !important; }
18209
- .brz .brz-mb-lg-87 {
18210
- margin-bottom: 87px !important; }
18211
- .brz .brz-mb-lg-88 {
18212
- margin-bottom: 88px !important; }
18213
- .brz .brz-mb-lg-89 {
18214
- margin-bottom: 89px !important; }
18215
- .brz .brz-mb-lg-90 {
18216
- margin-bottom: 90px !important; }
18217
- .brz .brz-mb-lg-91 {
18218
- margin-bottom: 91px !important; }
18219
- .brz .brz-mb-lg-92 {
18220
- margin-bottom: 92px !important; }
18221
- .brz .brz-mb-lg-93 {
18222
- margin-bottom: 93px !important; }
18223
- .brz .brz-mb-lg-94 {
18224
- margin-bottom: 94px !important; }
18225
- .brz .brz-mb-lg-95 {
18226
- margin-bottom: 95px !important; }
18227
- .brz .brz-mb-lg-96 {
18228
- margin-bottom: 96px !important; }
18229
- .brz .brz-mb-lg-97 {
18230
- margin-bottom: 97px !important; }
18231
- .brz .brz-mb-lg-98 {
18232
- margin-bottom: 98px !important; }
18233
- .brz .brz-mb-lg-99 {
18234
- margin-bottom: 99px !important; }
18235
- .brz .brz-mb-lg-100 {
18236
- margin-bottom: 100px !important; }
18237
-
18238
- @media (min-width: 768px) and (max-width: 991px) {
18239
- .brz .brz-mt-sm-0 {
18240
- margin-top: 0px !important; }
18241
- .brz .brz-mt-sm-1 {
18242
- margin-top: 1px !important; }
18243
- .brz .brz-mt-sm-2 {
18244
- margin-top: 2px !important; }
18245
- .brz .brz-mt-sm-3 {
18246
- margin-top: 3px !important; }
18247
- .brz .brz-mt-sm-4 {
18248
- margin-top: 4px !important; }
18249
- .brz .brz-mt-sm-5 {
18250
- margin-top: 5px !important; }
18251
- .brz .brz-mt-sm-6 {
18252
- margin-top: 6px !important; }
18253
- .brz .brz-mt-sm-7 {
18254
- margin-top: 7px !important; }
18255
- .brz .brz-mt-sm-8 {
18256
- margin-top: 8px !important; }
18257
- .brz .brz-mt-sm-9 {
18258
- margin-top: 9px !important; }
18259
- .brz .brz-mt-sm-10 {
18260
- margin-top: 10px !important; }
18261
- .brz .brz-mt-sm-11 {
18262
- margin-top: 11px !important; }
18263
- .brz .brz-mt-sm-12 {
18264
- margin-top: 12px !important; }
18265
- .brz .brz-mt-sm-13 {
18266
- margin-top: 13px !important; }
18267
- .brz .brz-mt-sm-14 {
18268
- margin-top: 14px !important; }
18269
- .brz .brz-mt-sm-15 {
18270
- margin-top: 15px !important; }
18271
- .brz .brz-mt-sm-16 {
18272
- margin-top: 16px !important; }
18273
- .brz .brz-mt-sm-17 {
18274
- margin-top: 17px !important; }
18275
- .brz .brz-mt-sm-18 {
18276
- margin-top: 18px !important; }
18277
- .brz .brz-mt-sm-19 {
18278
- margin-top: 19px !important; }
18279
- .brz .brz-mt-sm-20 {
18280
- margin-top: 20px !important; }
18281
- .brz .brz-mt-sm-21 {
18282
- margin-top: 21px !important; }
18283
- .brz .brz-mt-sm-22 {
18284
- margin-top: 22px !important; }
18285
- .brz .brz-mt-sm-23 {
18286
- margin-top: 23px !important; }
18287
- .brz .brz-mt-sm-24 {
18288
- margin-top: 24px !important; }
18289
- .brz .brz-mt-sm-25 {
18290
- margin-top: 25px !important; }
18291
- .brz .brz-mt-sm-26 {
18292
- margin-top: 26px !important; }
18293
- .brz .brz-mt-sm-27 {
18294
- margin-top: 27px !important; }
18295
- .brz .brz-mt-sm-28 {
18296
- margin-top: 28px !important; }
18297
- .brz .brz-mt-sm-29 {
18298
- margin-top: 29px !important; }
18299
- .brz .brz-mt-sm-30 {
18300
- margin-top: 30px !important; }
18301
- .brz .brz-mt-sm-31 {
18302
- margin-top: 31px !important; }
18303
- .brz .brz-mt-sm-32 {
18304
- margin-top: 32px !important; }
18305
- .brz .brz-mt-sm-33 {
18306
- margin-top: 33px !important; }
18307
- .brz .brz-mt-sm-34 {
18308
- margin-top: 34px !important; }
18309
- .brz .brz-mt-sm-35 {
18310
- margin-top: 35px !important; }
18311
- .brz .brz-mt-sm-36 {
18312
- margin-top: 36px !important; }
18313
- .brz .brz-mt-sm-37 {
18314
- margin-top: 37px !important; }
18315
- .brz .brz-mt-sm-38 {
18316
- margin-top: 38px !important; }
18317
- .brz .brz-mt-sm-39 {
18318
- margin-top: 39px !important; }
18319
- .brz .brz-mt-sm-40 {
18320
- margin-top: 40px !important; }
18321
- .brz .brz-mt-sm-41 {
18322
- margin-top: 41px !important; }
18323
- .brz .brz-mt-sm-42 {
18324
- margin-top: 42px !important; }
18325
- .brz .brz-mt-sm-43 {
18326
- margin-top: 43px !important; }
18327
- .brz .brz-mt-sm-44 {
18328
- margin-top: 44px !important; }
18329
- .brz .brz-mt-sm-45 {
18330
- margin-top: 45px !important; }
18331
- .brz .brz-mt-sm-46 {
18332
- margin-top: 46px !important; }
18333
- .brz .brz-mt-sm-47 {
18334
- margin-top: 47px !important; }
18335
- .brz .brz-mt-sm-48 {
18336
- margin-top: 48px !important; }
18337
- .brz .brz-mt-sm-49 {
18338
- margin-top: 49px !important; }
18339
- .brz .brz-mt-sm-50 {
18340
- margin-top: 50px !important; }
18341
- .brz .brz-mt-sm-51 {
18342
- margin-top: 51px !important; }
18343
- .brz .brz-mt-sm-52 {
18344
- margin-top: 52px !important; }
18345
- .brz .brz-mt-sm-53 {
18346
- margin-top: 53px !important; }
18347
- .brz .brz-mt-sm-54 {
18348
- margin-top: 54px !important; }
18349
- .brz .brz-mt-sm-55 {
18350
- margin-top: 55px !important; }
18351
- .brz .brz-mt-sm-56 {
18352
- margin-top: 56px !important; }
18353
- .brz .brz-mt-sm-57 {
18354
- margin-top: 57px !important; }
18355
- .brz .brz-mt-sm-58 {
18356
- margin-top: 58px !important; }
18357
- .brz .brz-mt-sm-59 {
18358
- margin-top: 59px !important; }
18359
- .brz .brz-mt-sm-60 {
18360
- margin-top: 60px !important; }
18361
- .brz .brz-mt-sm-61 {
18362
- margin-top: 61px !important; }
18363
- .brz .brz-mt-sm-62 {
18364
- margin-top: 62px !important; }
18365
- .brz .brz-mt-sm-63 {
18366
- margin-top: 63px !important; }
18367
- .brz .brz-mt-sm-64 {
18368
- margin-top: 64px !important; }
18369
- .brz .brz-mt-sm-65 {
18370
- margin-top: 65px !important; }
18371
- .brz .brz-mt-sm-66 {
18372
- margin-top: 66px !important; }
18373
- .brz .brz-mt-sm-67 {
18374
- margin-top: 67px !important; }
18375
- .brz .brz-mt-sm-68 {
18376
- margin-top: 68px !important; }
18377
- .brz .brz-mt-sm-69 {
18378
- margin-top: 69px !important; }
18379
- .brz .brz-mt-sm-70 {
18380
- margin-top: 70px !important; }
18381
- .brz .brz-mt-sm-71 {
18382
- margin-top: 71px !important; }
18383
- .brz .brz-mt-sm-72 {
18384
- margin-top: 72px !important; }
18385
- .brz .brz-mt-sm-73 {
18386
- margin-top: 73px !important; }
18387
- .brz .brz-mt-sm-74 {
18388
- margin-top: 74px !important; }
18389
- .brz .brz-mt-sm-75 {
18390
- margin-top: 75px !important; }
18391
- .brz .brz-mt-sm-76 {
18392
- margin-top: 76px !important; }
18393
- .brz .brz-mt-sm-77 {
18394
- margin-top: 77px !important; }
18395
- .brz .brz-mt-sm-78 {
18396
- margin-top: 78px !important; }
18397
- .brz .brz-mt-sm-79 {
18398
- margin-top: 79px !important; }
18399
- .brz .brz-mt-sm-80 {
18400
- margin-top: 80px !important; }
18401
- .brz .brz-mt-sm-81 {
18402
- margin-top: 81px !important; }
18403
- .brz .brz-mt-sm-82 {
18404
- margin-top: 82px !important; }
18405
- .brz .brz-mt-sm-83 {
18406
- margin-top: 83px !important; }
18407
- .brz .brz-mt-sm-84 {
18408
- margin-top: 84px !important; }
18409
- .brz .brz-mt-sm-85 {
18410
- margin-top: 85px !important; }
18411
- .brz .brz-mt-sm-86 {
18412
- margin-top: 86px !important; }
18413
- .brz .brz-mt-sm-87 {
18414
- margin-top: 87px !important; }
18415
- .brz .brz-mt-sm-88 {
18416
- margin-top: 88px !important; }
18417
- .brz .brz-mt-sm-89 {
18418
- margin-top: 89px !important; }
18419
- .brz .brz-mt-sm-90 {
18420
- margin-top: 90px !important; }
18421
- .brz .brz-mt-sm-91 {
18422
- margin-top: 91px !important; }
18423
- .brz .brz-mt-sm-92 {
18424
- margin-top: 92px !important; }
18425
- .brz .brz-mt-sm-93 {
18426
- margin-top: 93px !important; }
18427
- .brz .brz-mt-sm-94 {
18428
- margin-top: 94px !important; }
18429
- .brz .brz-mt-sm-95 {
18430
- margin-top: 95px !important; }
18431
- .brz .brz-mt-sm-96 {
18432
- margin-top: 96px !important; }
18433
- .brz .brz-mt-sm-97 {
18434
- margin-top: 97px !important; }
18435
- .brz .brz-mt-sm-98 {
18436
- margin-top: 98px !important; }
18437
- .brz .brz-mt-sm-99 {
18438
- margin-top: 99px !important; }
18439
- .brz .brz-mt-sm-100 {
18440
- margin-top: 100px !important; }
18441
- .brz .brz-mb-sm-0 {
18442
- margin-bottom: 0px !important; }
18443
- .brz .brz-mb-sm-1 {
18444
- margin-bottom: 1px !important; }
18445
- .brz .brz-mb-sm-2 {
18446
- margin-bottom: 2px !important; }
18447
- .brz .brz-mb-sm-3 {
18448
- margin-bottom: 3px !important; }
18449
- .brz .brz-mb-sm-4 {
18450
- margin-bottom: 4px !important; }
18451
- .brz .brz-mb-sm-5 {
18452
- margin-bottom: 5px !important; }
18453
- .brz .brz-mb-sm-6 {
18454
- margin-bottom: 6px !important; }
18455
- .brz .brz-mb-sm-7 {
18456
- margin-bottom: 7px !important; }
18457
- .brz .brz-mb-sm-8 {
18458
- margin-bottom: 8px !important; }
18459
- .brz .brz-mb-sm-9 {
18460
- margin-bottom: 9px !important; }
18461
- .brz .brz-mb-sm-10 {
18462
- margin-bottom: 10px !important; }
18463
- .brz .brz-mb-sm-11 {
18464
- margin-bottom: 11px !important; }
18465
- .brz .brz-mb-sm-12 {
18466
- margin-bottom: 12px !important; }
18467
- .brz .brz-mb-sm-13 {
18468
- margin-bottom: 13px !important; }
18469
- .brz .brz-mb-sm-14 {
18470
- margin-bottom: 14px !important; }
18471
- .brz .brz-mb-sm-15 {
18472
- margin-bottom: 15px !important; }
18473
- .brz .brz-mb-sm-16 {
18474
- margin-bottom: 16px !important; }
18475
- .brz .brz-mb-sm-17 {
18476
- margin-bottom: 17px !important; }
18477
- .brz .brz-mb-sm-18 {
18478
- margin-bottom: 18px !important; }
18479
- .brz .brz-mb-sm-19 {
18480
- margin-bottom: 19px !important; }
18481
- .brz .brz-mb-sm-20 {
18482
- margin-bottom: 20px !important; }
18483
- .brz .brz-mb-sm-21 {
18484
- margin-bottom: 21px !important; }
18485
- .brz .brz-mb-sm-22 {
18486
- margin-bottom: 22px !important; }
18487
- .brz .brz-mb-sm-23 {
18488
- margin-bottom: 23px !important; }
18489
- .brz .brz-mb-sm-24 {
18490
- margin-bottom: 24px !important; }
18491
- .brz .brz-mb-sm-25 {
18492
- margin-bottom: 25px !important; }
18493
- .brz .brz-mb-sm-26 {
18494
- margin-bottom: 26px !important; }
18495
- .brz .brz-mb-sm-27 {
18496
- margin-bottom: 27px !important; }
18497
- .brz .brz-mb-sm-28 {
18498
- margin-bottom: 28px !important; }
18499
- .brz .brz-mb-sm-29 {
18500
- margin-bottom: 29px !important; }
18501
- .brz .brz-mb-sm-30 {
18502
- margin-bottom: 30px !important; }
18503
- .brz .brz-mb-sm-31 {
18504
- margin-bottom: 31px !important; }
18505
- .brz .brz-mb-sm-32 {
18506
- margin-bottom: 32px !important; }
18507
- .brz .brz-mb-sm-33 {
18508
- margin-bottom: 33px !important; }
18509
- .brz .brz-mb-sm-34 {
18510
- margin-bottom: 34px !important; }
18511
- .brz .brz-mb-sm-35 {
18512
- margin-bottom: 35px !important; }
18513
- .brz .brz-mb-sm-36 {
18514
- margin-bottom: 36px !important; }
18515
- .brz .brz-mb-sm-37 {
18516
- margin-bottom: 37px !important; }
18517
- .brz .brz-mb-sm-38 {
18518
- margin-bottom: 38px !important; }
18519
- .brz .brz-mb-sm-39 {
18520
- margin-bottom: 39px !important; }
18521
- .brz .brz-mb-sm-40 {
18522
- margin-bottom: 40px !important; }
18523
- .brz .brz-mb-sm-41 {
18524
- margin-bottom: 41px !important; }
18525
- .brz .brz-mb-sm-42 {
18526
- margin-bottom: 42px !important; }
18527
- .brz .brz-mb-sm-43 {
18528
- margin-bottom: 43px !important; }
18529
- .brz .brz-mb-sm-44 {
18530
- margin-bottom: 44px !important; }
18531
- .brz .brz-mb-sm-45 {
18532
- margin-bottom: 45px !important; }
18533
- .brz .brz-mb-sm-46 {
18534
- margin-bottom: 46px !important; }
18535
- .brz .brz-mb-sm-47 {
18536
- margin-bottom: 47px !important; }
18537
- .brz .brz-mb-sm-48 {
18538
- margin-bottom: 48px !important; }
18539
- .brz .brz-mb-sm-49 {
18540
- margin-bottom: 49px !important; }
18541
- .brz .brz-mb-sm-50 {
18542
- margin-bottom: 50px !important; }
18543
- .brz .brz-mb-sm-51 {
18544
- margin-bottom: 51px !important; }
18545
- .brz .brz-mb-sm-52 {
18546
- margin-bottom: 52px !important; }
18547
- .brz .brz-mb-sm-53 {
18548
- margin-bottom: 53px !important; }
18549
- .brz .brz-mb-sm-54 {
18550
- margin-bottom: 54px !important; }
18551
- .brz .brz-mb-sm-55 {
18552
- margin-bottom: 55px !important; }
18553
- .brz .brz-mb-sm-56 {
18554
- margin-bottom: 56px !important; }
18555
- .brz .brz-mb-sm-57 {
18556
- margin-bottom: 57px !important; }
18557
- .brz .brz-mb-sm-58 {
18558
- margin-bottom: 58px !important; }
18559
- .brz .brz-mb-sm-59 {
18560
- margin-bottom: 59px !important; }
18561
- .brz .brz-mb-sm-60 {
18562
- margin-bottom: 60px !important; }
18563
- .brz .brz-mb-sm-61 {
18564
- margin-bottom: 61px !important; }
18565
- .brz .brz-mb-sm-62 {
18566
- margin-bottom: 62px !important; }
18567
- .brz .brz-mb-sm-63 {
18568
- margin-bottom: 63px !important; }
18569
- .brz .brz-mb-sm-64 {
18570
- margin-bottom: 64px !important; }
18571
- .brz .brz-mb-sm-65 {
18572
- margin-bottom: 65px !important; }
18573
- .brz .brz-mb-sm-66 {
18574
- margin-bottom: 66px !important; }
18575
- .brz .brz-mb-sm-67 {
18576
- margin-bottom: 67px !important; }
18577
- .brz .brz-mb-sm-68 {
18578
- margin-bottom: 68px !important; }
18579
- .brz .brz-mb-sm-69 {
18580
- margin-bottom: 69px !important; }
18581
- .brz .brz-mb-sm-70 {
18582
- margin-bottom: 70px !important; }
18583
- .brz .brz-mb-sm-71 {
18584
- margin-bottom: 71px !important; }
18585
- .brz .brz-mb-sm-72 {
18586
- margin-bottom: 72px !important; }
18587
- .brz .brz-mb-sm-73 {
18588
- margin-bottom: 73px !important; }
18589
- .brz .brz-mb-sm-74 {
18590
- margin-bottom: 74px !important; }
18591
- .brz .brz-mb-sm-75 {
18592
- margin-bottom: 75px !important; }
18593
- .brz .brz-mb-sm-76 {
18594
- margin-bottom: 76px !important; }
18595
- .brz .brz-mb-sm-77 {
18596
- margin-bottom: 77px !important; }
18597
- .brz .brz-mb-sm-78 {
18598
- margin-bottom: 78px !important; }
18599
- .brz .brz-mb-sm-79 {
18600
- margin-bottom: 79px !important; }
18601
- .brz .brz-mb-sm-80 {
18602
- margin-bottom: 80px !important; }
18603
- .brz .brz-mb-sm-81 {
18604
- margin-bottom: 81px !important; }
18605
- .brz .brz-mb-sm-82 {
18606
- margin-bottom: 82px !important; }
18607
- .brz .brz-mb-sm-83 {
18608
- margin-bottom: 83px !important; }
18609
- .brz .brz-mb-sm-84 {
18610
- margin-bottom: 84px !important; }
18611
- .brz .brz-mb-sm-85 {
18612
- margin-bottom: 85px !important; }
18613
- .brz .brz-mb-sm-86 {
18614
- margin-bottom: 86px !important; }
18615
- .brz .brz-mb-sm-87 {
18616
- margin-bottom: 87px !important; }
18617
- .brz .brz-mb-sm-88 {
18618
- margin-bottom: 88px !important; }
18619
- .brz .brz-mb-sm-89 {
18620
- margin-bottom: 89px !important; }
18621
- .brz .brz-mb-sm-90 {
18622
- margin-bottom: 90px !important; }
18623
- .brz .brz-mb-sm-91 {
18624
- margin-bottom: 91px !important; }
18625
- .brz .brz-mb-sm-92 {
18626
- margin-bottom: 92px !important; }
18627
- .brz .brz-mb-sm-93 {
18628
- margin-bottom: 93px !important; }
18629
- .brz .brz-mb-sm-94 {
18630
- margin-bottom: 94px !important; }
18631
- .brz .brz-mb-sm-95 {
18632
- margin-bottom: 95px !important; }
18633
- .brz .brz-mb-sm-96 {
18634
- margin-bottom: 96px !important; }
18635
- .brz .brz-mb-sm-97 {
18636
- margin-bottom: 97px !important; }
18637
- .brz .brz-mb-sm-98 {
18638
- margin-bottom: 98px !important; }
18639
- .brz .brz-mb-sm-99 {
18640
- margin-bottom: 99px !important; }
18641
- .brz .brz-mb-sm-100 {
18642
- margin-bottom: 100px !important; } }
18643
- @media (max-width: 767px) {
18644
- .brz .brz-mt-xs-0 {
18645
- margin-top: 0px !important; }
18646
- .brz .brz-mt-xs-1 {
18647
- margin-top: 1px !important; }
18648
- .brz .brz-mt-xs-2 {
18649
- margin-top: 2px !important; }
18650
- .brz .brz-mt-xs-3 {
18651
- margin-top: 3px !important; }
18652
- .brz .brz-mt-xs-4 {
18653
- margin-top: 4px !important; }
18654
- .brz .brz-mt-xs-5 {
18655
- margin-top: 5px !important; }
18656
- .brz .brz-mt-xs-6 {
18657
- margin-top: 6px !important; }
18658
- .brz .brz-mt-xs-7 {
18659
- margin-top: 7px !important; }
18660
- .brz .brz-mt-xs-8 {
18661
- margin-top: 8px !important; }
18662
- .brz .brz-mt-xs-9 {
18663
- margin-top: 9px !important; }
18664
- .brz .brz-mt-xs-10 {
18665
- margin-top: 10px !important; }
18666
- .brz .brz-mt-xs-11 {
18667
- margin-top: 11px !important; }
18668
- .brz .brz-mt-xs-12 {
18669
- margin-top: 12px !important; }
18670
- .brz .brz-mt-xs-13 {
18671
- margin-top: 13px !important; }
18672
- .brz .brz-mt-xs-14 {
18673
- margin-top: 14px !important; }
18674
- .brz .brz-mt-xs-15 {
18675
- margin-top: 15px !important; }
18676
- .brz .brz-mt-xs-16 {
18677
- margin-top: 16px !important; }
18678
- .brz .brz-mt-xs-17 {
18679
- margin-top: 17px !important; }
18680
- .brz .brz-mt-xs-18 {
18681
- margin-top: 18px !important; }
18682
- .brz .brz-mt-xs-19 {
18683
- margin-top: 19px !important; }
18684
- .brz .brz-mt-xs-20 {
18685
- margin-top: 20px !important; }
18686
- .brz .brz-mt-xs-21 {
18687
- margin-top: 21px !important; }
18688
- .brz .brz-mt-xs-22 {
18689
- margin-top: 22px !important; }
18690
- .brz .brz-mt-xs-23 {
18691
- margin-top: 23px !important; }
18692
- .brz .brz-mt-xs-24 {
18693
- margin-top: 24px !important; }
18694
- .brz .brz-mt-xs-25 {
18695
- margin-top: 25px !important; }
18696
- .brz .brz-mt-xs-26 {
18697
- margin-top: 26px !important; }
18698
- .brz .brz-mt-xs-27 {
18699
- margin-top: 27px !important; }
18700
- .brz .brz-mt-xs-28 {
18701
- margin-top: 28px !important; }
18702
- .brz .brz-mt-xs-29 {
18703
- margin-top: 29px !important; }
18704
- .brz .brz-mt-xs-30 {
18705
- margin-top: 30px !important; }
18706
- .brz .brz-mt-xs-31 {
18707
- margin-top: 31px !important; }
18708
- .brz .brz-mt-xs-32 {
18709
- margin-top: 32px !important; }
18710
- .brz .brz-mt-xs-33 {
18711
- margin-top: 33px !important; }
18712
- .brz .brz-mt-xs-34 {
18713
- margin-top: 34px !important; }
18714
- .brz .brz-mt-xs-35 {
18715
- margin-top: 35px !important; }
18716
- .brz .brz-mt-xs-36 {
18717
- margin-top: 36px !important; }
18718
- .brz .brz-mt-xs-37 {
18719
- margin-top: 37px !important; }
18720
- .brz .brz-mt-xs-38 {
18721
- margin-top: 38px !important; }
18722
- .brz .brz-mt-xs-39 {
18723
- margin-top: 39px !important; }
18724
- .brz .brz-mt-xs-40 {
18725
- margin-top: 40px !important; }
18726
- .brz .brz-mt-xs-41 {
18727
- margin-top: 41px !important; }
18728
- .brz .brz-mt-xs-42 {
18729
- margin-top: 42px !important; }
18730
- .brz .brz-mt-xs-43 {
18731
- margin-top: 43px !important; }
18732
- .brz .brz-mt-xs-44 {
18733
- margin-top: 44px !important; }
18734
- .brz .brz-mt-xs-45 {
18735
- margin-top: 45px !important; }
18736
- .brz .brz-mt-xs-46 {
18737
- margin-top: 46px !important; }
18738
- .brz .brz-mt-xs-47 {
18739
- margin-top: 47px !important; }
18740
- .brz .brz-mt-xs-48 {
18741
- margin-top: 48px !important; }
18742
- .brz .brz-mt-xs-49 {
18743
- margin-top: 49px !important; }
18744
- .brz .brz-mt-xs-50 {
18745
- margin-top: 50px !important; }
18746
- .brz .brz-mt-xs-51 {
18747
- margin-top: 51px !important; }
18748
- .brz .brz-mt-xs-52 {
18749
- margin-top: 52px !important; }
18750
- .brz .brz-mt-xs-53 {
18751
- margin-top: 53px !important; }
18752
- .brz .brz-mt-xs-54 {
18753
- margin-top: 54px !important; }
18754
- .brz .brz-mt-xs-55 {
18755
- margin-top: 55px !important; }
18756
- .brz .brz-mt-xs-56 {
18757
- margin-top: 56px !important; }
18758
- .brz .brz-mt-xs-57 {
18759
- margin-top: 57px !important; }
18760
- .brz .brz-mt-xs-58 {
18761
- margin-top: 58px !important; }
18762
- .brz .brz-mt-xs-59 {
18763
- margin-top: 59px !important; }
18764
- .brz .brz-mt-xs-60 {
18765
- margin-top: 60px !important; }
18766
- .brz .brz-mt-xs-61 {
18767
- margin-top: 61px !important; }
18768
- .brz .brz-mt-xs-62 {
18769
- margin-top: 62px !important; }
18770
- .brz .brz-mt-xs-63 {
18771
- margin-top: 63px !important; }
18772
- .brz .brz-mt-xs-64 {
18773
- margin-top: 64px !important; }
18774
- .brz .brz-mt-xs-65 {
18775
- margin-top: 65px !important; }
18776
- .brz .brz-mt-xs-66 {
18777
- margin-top: 66px !important; }
18778
- .brz .brz-mt-xs-67 {
18779
- margin-top: 67px !important; }
18780
- .brz .brz-mt-xs-68 {
18781
- margin-top: 68px !important; }
18782
- .brz .brz-mt-xs-69 {
18783
- margin-top: 69px !important; }
18784
- .brz .brz-mt-xs-70 {
18785
- margin-top: 70px !important; }
18786
- .brz .brz-mt-xs-71 {
18787
- margin-top: 71px !important; }
18788
- .brz .brz-mt-xs-72 {
18789
- margin-top: 72px !important; }
18790
- .brz .brz-mt-xs-73 {
18791
- margin-top: 73px !important; }
18792
- .brz .brz-mt-xs-74 {
18793
- margin-top: 74px !important; }
18794
- .brz .brz-mt-xs-75 {
18795
- margin-top: 75px !important; }
18796
- .brz .brz-mt-xs-76 {
18797
- margin-top: 76px !important; }
18798
- .brz .brz-mt-xs-77 {
18799
- margin-top: 77px !important; }
18800
- .brz .brz-mt-xs-78 {
18801
- margin-top: 78px !important; }
18802
- .brz .brz-mt-xs-79 {
18803
- margin-top: 79px !important; }
18804
- .brz .brz-mt-xs-80 {
18805
- margin-top: 80px !important; }
18806
- .brz .brz-mt-xs-81 {
18807
- margin-top: 81px !important; }
18808
- .brz .brz-mt-xs-82 {
18809
- margin-top: 82px !important; }
18810
- .brz .brz-mt-xs-83 {
18811
- margin-top: 83px !important; }
18812
- .brz .brz-mt-xs-84 {
18813
- margin-top: 84px !important; }
18814
- .brz .brz-mt-xs-85 {
18815
- margin-top: 85px !important; }
18816
- .brz .brz-mt-xs-86 {
18817
- margin-top: 86px !important; }
18818
- .brz .brz-mt-xs-87 {
18819
- margin-top: 87px !important; }
18820
- .brz .brz-mt-xs-88 {
18821
- margin-top: 88px !important; }
18822
- .brz .brz-mt-xs-89 {
18823
- margin-top: 89px !important; }
18824
- .brz .brz-mt-xs-90 {
18825
- margin-top: 90px !important; }
18826
- .brz .brz-mt-xs-91 {
18827
- margin-top: 91px !important; }
18828
- .brz .brz-mt-xs-92 {
18829
- margin-top: 92px !important; }
18830
- .brz .brz-mt-xs-93 {
18831
- margin-top: 93px !important; }
18832
- .brz .brz-mt-xs-94 {
18833
- margin-top: 94px !important; }
18834
- .brz .brz-mt-xs-95 {
18835
- margin-top: 95px !important; }
18836
- .brz .brz-mt-xs-96 {
18837
- margin-top: 96px !important; }
18838
- .brz .brz-mt-xs-97 {
18839
- margin-top: 97px !important; }
18840
- .brz .brz-mt-xs-98 {
18841
- margin-top: 98px !important; }
18842
- .brz .brz-mt-xs-99 {
18843
- margin-top: 99px !important; }
18844
- .brz .brz-mt-xs-100 {
18845
- margin-top: 100px !important; }
18846
- .brz .brz-mb-xs-0 {
18847
- margin-bottom: 0px !important; }
18848
- .brz .brz-mb-xs-1 {
18849
- margin-bottom: 1px !important; }
18850
- .brz .brz-mb-xs-2 {
18851
- margin-bottom: 2px !important; }
18852
- .brz .brz-mb-xs-3 {
18853
- margin-bottom: 3px !important; }
18854
- .brz .brz-mb-xs-4 {
18855
- margin-bottom: 4px !important; }
18856
- .brz .brz-mb-xs-5 {
18857
- margin-bottom: 5px !important; }
18858
- .brz .brz-mb-xs-6 {
18859
- margin-bottom: 6px !important; }
18860
- .brz .brz-mb-xs-7 {
18861
- margin-bottom: 7px !important; }
18862
- .brz .brz-mb-xs-8 {
18863
- margin-bottom: 8px !important; }
18864
- .brz .brz-mb-xs-9 {
18865
- margin-bottom: 9px !important; }
18866
- .brz .brz-mb-xs-10 {
18867
- margin-bottom: 10px !important; }
18868
- .brz .brz-mb-xs-11 {
18869
- margin-bottom: 11px !important; }
18870
- .brz .brz-mb-xs-12 {
18871
- margin-bottom: 12px !important; }
18872
- .brz .brz-mb-xs-13 {
18873
- margin-bottom: 13px !important; }
18874
- .brz .brz-mb-xs-14 {
18875
- margin-bottom: 14px !important; }
18876
- .brz .brz-mb-xs-15 {
18877
- margin-bottom: 15px !important; }
18878
- .brz .brz-mb-xs-16 {
18879
- margin-bottom: 16px !important; }
18880
- .brz .brz-mb-xs-17 {
18881
- margin-bottom: 17px !important; }
18882
- .brz .brz-mb-xs-18 {
18883
- margin-bottom: 18px !important; }
18884
- .brz .brz-mb-xs-19 {
18885
- margin-bottom: 19px !important; }
18886
- .brz .brz-mb-xs-20 {
18887
- margin-bottom: 20px !important; }
18888
- .brz .brz-mb-xs-21 {
18889
- margin-bottom: 21px !important; }
18890
- .brz .brz-mb-xs-22 {
18891
- margin-bottom: 22px !important; }
18892
- .brz .brz-mb-xs-23 {
18893
- margin-bottom: 23px !important; }
18894
- .brz .brz-mb-xs-24 {
18895
- margin-bottom: 24px !important; }
18896
- .brz .brz-mb-xs-25 {
18897
- margin-bottom: 25px !important; }
18898
- .brz .brz-mb-xs-26 {
18899
- margin-bottom: 26px !important; }
18900
- .brz .brz-mb-xs-27 {
18901
- margin-bottom: 27px !important; }
18902
- .brz .brz-mb-xs-28 {
18903
- margin-bottom: 28px !important; }
18904
- .brz .brz-mb-xs-29 {
18905
- margin-bottom: 29px !important; }
18906
- .brz .brz-mb-xs-30 {
18907
- margin-bottom: 30px !important; }
18908
- .brz .brz-mb-xs-31 {
18909
- margin-bottom: 31px !important; }
18910
- .brz .brz-mb-xs-32 {
18911
- margin-bottom: 32px !important; }
18912
- .brz .brz-mb-xs-33 {
18913
- margin-bottom: 33px !important; }
18914
- .brz .brz-mb-xs-34 {
18915
- margin-bottom: 34px !important; }
18916
- .brz .brz-mb-xs-35 {
18917
- margin-bottom: 35px !important; }
18918
- .brz .brz-mb-xs-36 {
18919
- margin-bottom: 36px !important; }
18920
- .brz .brz-mb-xs-37 {
18921
- margin-bottom: 37px !important; }
18922
- .brz .brz-mb-xs-38 {
18923
- margin-bottom: 38px !important; }
18924
- .brz .brz-mb-xs-39 {
18925
- margin-bottom: 39px !important; }
18926
- .brz .brz-mb-xs-40 {
18927
- margin-bottom: 40px !important; }
18928
- .brz .brz-mb-xs-41 {
18929
- margin-bottom: 41px !important; }
18930
- .brz .brz-mb-xs-42 {
18931
- margin-bottom: 42px !important; }
18932
- .brz .brz-mb-xs-43 {
18933
- margin-bottom: 43px !important; }
18934
- .brz .brz-mb-xs-44 {
18935
- margin-bottom: 44px !important; }
18936
- .brz .brz-mb-xs-45 {
18937
- margin-bottom: 45px !important; }
18938
- .brz .brz-mb-xs-46 {
18939
- margin-bottom: 46px !important; }
18940
- .brz .brz-mb-xs-47 {
18941
- margin-bottom: 47px !important; }
18942
- .brz .brz-mb-xs-48 {
18943
- margin-bottom: 48px !important; }
18944
- .brz .brz-mb-xs-49 {
18945
- margin-bottom: 49px !important; }
18946
- .brz .brz-mb-xs-50 {
18947
- margin-bottom: 50px !important; }
18948
- .brz .brz-mb-xs-51 {
18949
- margin-bottom: 51px !important; }
18950
- .brz .brz-mb-xs-52 {
18951
- margin-bottom: 52px !important; }
18952
- .brz .brz-mb-xs-53 {
18953
- margin-bottom: 53px !important; }
18954
- .brz .brz-mb-xs-54 {
18955
- margin-bottom: 54px !important; }
18956
- .brz .brz-mb-xs-55 {
18957
- margin-bottom: 55px !important; }
18958
- .brz .brz-mb-xs-56 {
18959
- margin-bottom: 56px !important; }
18960
- .brz .brz-mb-xs-57 {
18961
- margin-bottom: 57px !important; }
18962
- .brz .brz-mb-xs-58 {
18963
- margin-bottom: 58px !important; }
18964
- .brz .brz-mb-xs-59 {
18965
- margin-bottom: 59px !important; }
18966
- .brz .brz-mb-xs-60 {
18967
- margin-bottom: 60px !important; }
18968
- .brz .brz-mb-xs-61 {
18969
- margin-bottom: 61px !important; }
18970
- .brz .brz-mb-xs-62 {
18971
- margin-bottom: 62px !important; }
18972
- .brz .brz-mb-xs-63 {
18973
- margin-bottom: 63px !important; }
18974
- .brz .brz-mb-xs-64 {
18975
- margin-bottom: 64px !important; }
18976
- .brz .brz-mb-xs-65 {
18977
- margin-bottom: 65px !important; }
18978
- .brz .brz-mb-xs-66 {
18979
- margin-bottom: 66px !important; }
18980
- .brz .brz-mb-xs-67 {
18981
- margin-bottom: 67px !important; }
18982
- .brz .brz-mb-xs-68 {
18983
- margin-bottom: 68px !important; }
18984
- .brz .brz-mb-xs-69 {
18985
- margin-bottom: 69px !important; }
18986
- .brz .brz-mb-xs-70 {
18987
- margin-bottom: 70px !important; }
18988
- .brz .brz-mb-xs-71 {
18989
- margin-bottom: 71px !important; }
18990
- .brz .brz-mb-xs-72 {
18991
- margin-bottom: 72px !important; }
18992
- .brz .brz-mb-xs-73 {
18993
- margin-bottom: 73px !important; }
18994
- .brz .brz-mb-xs-74 {
18995
- margin-bottom: 74px !important; }
18996
- .brz .brz-mb-xs-75 {
18997
- margin-bottom: 75px !important; }
18998
- .brz .brz-mb-xs-76 {
18999
- margin-bottom: 76px !important; }
19000
- .brz .brz-mb-xs-77 {
19001
- margin-bottom: 77px !important; }
19002
- .brz .brz-mb-xs-78 {
19003
- margin-bottom: 78px !important; }
19004
- .brz .brz-mb-xs-79 {
19005
- margin-bottom: 79px !important; }
19006
- .brz .brz-mb-xs-80 {
19007
- margin-bottom: 80px !important; }
19008
- .brz .brz-mb-xs-81 {
19009
- margin-bottom: 81px !important; }
19010
- .brz .brz-mb-xs-82 {
19011
- margin-bottom: 82px !important; }
19012
- .brz .brz-mb-xs-83 {
19013
- margin-bottom: 83px !important; }
19014
- .brz .brz-mb-xs-84 {
19015
- margin-bottom: 84px !important; }
19016
- .brz .brz-mb-xs-85 {
19017
- margin-bottom: 85px !important; }
19018
- .brz .brz-mb-xs-86 {
19019
- margin-bottom: 86px !important; }
19020
- .brz .brz-mb-xs-87 {
19021
- margin-bottom: 87px !important; }
19022
- .brz .brz-mb-xs-88 {
19023
- margin-bottom: 88px !important; }
19024
- .brz .brz-mb-xs-89 {
19025
- margin-bottom: 89px !important; }
19026
- .brz .brz-mb-xs-90 {
19027
- margin-bottom: 90px !important; }
19028
- .brz .brz-mb-xs-91 {
19029
- margin-bottom: 91px !important; }
19030
- .brz .brz-mb-xs-92 {
19031
- margin-bottom: 92px !important; }
19032
- .brz .brz-mb-xs-93 {
19033
- margin-bottom: 93px !important; }
19034
- .brz .brz-mb-xs-94 {
19035
- margin-bottom: 94px !important; }
19036
- .brz .brz-mb-xs-95 {
19037
- margin-bottom: 95px !important; }
19038
- .brz .brz-mb-xs-96 {
19039
- margin-bottom: 96px !important; }
19040
- .brz .brz-mb-xs-97 {
19041
- margin-bottom: 97px !important; }
19042
- .brz .brz-mb-xs-98 {
19043
- margin-bottom: 98px !important; }
19044
- .brz .brz-mb-xs-99 {
19045
- margin-bottom: 99px !important; }
19046
- .brz .brz-mb-xs-100 {
19047
- margin-bottom: 100px !important; } }
19048
- .brz .brz-text-lg-left {
19049
- text-align: left !important;
19050
- -webkit-box-pack: start !important;
19051
- -ms-flex-pack: start !important;
19052
- justify-content: flex-start !important; }
19053
- .brz .brz-text-lg-right {
19054
- text-align: right !important;
19055
- -webkit-box-pack: end !important;
19056
- -ms-flex-pack: end !important;
19057
- justify-content: flex-end !important; }
19058
- .brz .brz-text-lg-center {
19059
- text-align: center !important;
19060
- -webkit-box-pack: center !important;
19061
- -ms-flex-pack: center !important;
19062
- justify-content: center !important; }
19063
- .brz .brz-text-lg-justify {
19064
- text-align: justify !important; }
19065
-
19066
- @media (min-width: 768px) and (max-width: 991px) {
19067
- .brz .brz-text-sm-left {
19068
- text-align: left !important;
19069
- -webkit-box-pack: start !important;
19070
- -ms-flex-pack: start !important;
19071
- justify-content: flex-start !important; }
19072
- .brz .brz-text-sm-right {
19073
- text-align: right !important;
19074
- -webkit-box-pack: end !important;
19075
- -ms-flex-pack: end !important;
19076
- justify-content: flex-end !important; }
19077
- .brz .brz-text-sm-center {
19078
- text-align: center !important;
19079
- -webkit-box-pack: center !important;
19080
- -ms-flex-pack: center !important;
19081
- justify-content: center !important; }
19082
- .brz .brz-text-sm-justify {
19083
- text-align: justify !important; } }
19084
- @media (max-width: 767px) {
19085
- .brz .brz-text-xs-left {
19086
- text-align: left !important;
19087
- -webkit-box-pack: start !important;
19088
- -ms-flex-pack: start !important;
19089
- justify-content: flex-start !important; }
19090
- .brz .brz-text-xs-right {
19091
- text-align: right !important;
19092
- -webkit-box-pack: end !important;
19093
- -ms-flex-pack: end !important;
19094
- justify-content: flex-end !important; }
19095
- .brz .brz-text-xs-center {
19096
- text-align: center !important;
19097
- -webkit-box-pack: center !important;
19098
- -ms-flex-pack: center !important;
19099
- justify-content: center !important; }
19100
- .brz .brz-text-xs-justify {
19101
- text-align: justify !important; } }
19102
-
19103
- @-webkit-keyframes bounce {
19104
- from,
19105
- 20%,
19106
- 53%,
19107
- 80%,
19108
- to {
19109
- -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
19110
- animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
19111
- -webkit-transform: translate3d(0, 0, 0);
19112
- transform: translate3d(0, 0, 0); }
19113
- 40%,
19114
- 43% {
19115
- -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
19116
- animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
19117
- -webkit-transform: translate3d(0, -30px, 0);
19118
- transform: translate3d(0, -30px, 0); }
19119
- 70% {
19120
- -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
19121
- animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
19122
- -webkit-transform: translate3d(0, -15px, 0);
19123
- transform: translate3d(0, -15px, 0); }
19124
- 90% {
19125
- -webkit-transform: translate3d(0, -4px, 0);
19126
- transform: translate3d(0, -4px, 0); } }
19127
-
19128
- @keyframes bounce {
19129
- from,
19130
- 20%,
19131
- 53%,
19132
- 80%,
19133
- to {
19134
- -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
19135
- animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
19136
- -webkit-transform: translate3d(0, 0, 0);
19137
- transform: translate3d(0, 0, 0); }
19138
- 40%,
19139
- 43% {
19140
- -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
19141
- animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
19142
- -webkit-transform: translate3d(0, -30px, 0);
19143
- transform: translate3d(0, -30px, 0); }
19144
- 70% {
19145
- -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
19146
- animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
19147
- -webkit-transform: translate3d(0, -15px, 0);
19148
- transform: translate3d(0, -15px, 0); }
19149
- 90% {
19150
- -webkit-transform: translate3d(0, -4px, 0);
19151
- transform: translate3d(0, -4px, 0); } }
19152
- .brz .bounce {
19153
- -webkit-animation-name: bounce;
19154
- animation-name: bounce;
19155
- -webkit-transform-origin: center bottom;
19156
- transform-origin: center bottom; }
19157
-
19158
- @-webkit-keyframes flash {
19159
- from,
19160
- 50%,
19161
- to {
19162
- opacity: 1; }
19163
- 25%,
19164
- 75% {
19165
- opacity: 0; } }
19166
-
19167
- @keyframes flash {
19168
- from,
19169
- 50%,
19170
- to {
19171
- opacity: 1; }
19172
- 25%,
19173
- 75% {
19174
- opacity: 0; } }
19175
- .brz .flash {
19176
- -webkit-animation-name: flash;
19177
- animation-name: flash; }
19178
-
19179
- @-webkit-keyframes pulse {
19180
- from {
19181
- -webkit-transform: scale3d(1, 1, 1);
19182
- transform: scale3d(1, 1, 1); }
19183
- 50% {
19184
- -webkit-transform: scale3d(1.05, 1.05, 1.05);
19185
- transform: scale3d(1.05, 1.05, 1.05); }
19186
- to {
19187
- -webkit-transform: scale3d(1, 1, 1);
19188
- transform: scale3d(1, 1, 1); } }
19189
-
19190
- @keyframes pulse {
19191
- from {
19192
- -webkit-transform: scale3d(1, 1, 1);
19193
- transform: scale3d(1, 1, 1); }
19194
- 50% {
19195
- -webkit-transform: scale3d(1.05, 1.05, 1.05);
19196
- transform: scale3d(1.05, 1.05, 1.05); }
19197
- to {
19198
- -webkit-transform: scale3d(1, 1, 1);
19199
- transform: scale3d(1, 1, 1); } }
19200
- .brz .pulse {
19201
- -webkit-animation-name: pulse;
19202
- animation-name: pulse; }
19203
-
19204
- @-webkit-keyframes rubberBand {
19205
- from {
19206
- -webkit-transform: scale3d(1, 1, 1);
19207
- transform: scale3d(1, 1, 1); }
19208
- 30% {
19209
- -webkit-transform: scale3d(1.25, 0.75, 1);
19210
- transform: scale3d(1.25, 0.75, 1); }
19211
- 40% {
19212
- -webkit-transform: scale3d(0.75, 1.25, 1);
19213
- transform: scale3d(0.75, 1.25, 1); }
19214
- 50% {
19215
- -webkit-transform: scale3d(1.15, 0.85, 1);
19216
- transform: scale3d(1.15, 0.85, 1); }
19217
- 65% {
19218
- -webkit-transform: scale3d(0.95, 1.05, 1);
19219
- transform: scale3d(0.95, 1.05, 1); }
19220
- 75% {
19221
- -webkit-transform: scale3d(1.05, 0.95, 1);
19222
- transform: scale3d(1.05, 0.95, 1); }
19223
- to {
19224
- -webkit-transform: scale3d(1, 1, 1);
19225
- transform: scale3d(1, 1, 1); } }
19226
-
19227
- @keyframes rubberBand {
19228
- from {
19229
- -webkit-transform: scale3d(1, 1, 1);
19230
- transform: scale3d(1, 1, 1); }
19231
- 30% {
19232
- -webkit-transform: scale3d(1.25, 0.75, 1);
19233
- transform: scale3d(1.25, 0.75, 1); }
19234
- 40% {
19235
- -webkit-transform: scale3d(0.75, 1.25, 1);
19236
- transform: scale3d(0.75, 1.25, 1); }
19237
- 50% {
19238
- -webkit-transform: scale3d(1.15, 0.85, 1);
19239
- transform: scale3d(1.15, 0.85, 1); }
19240
- 65% {
19241
- -webkit-transform: scale3d(0.95, 1.05, 1);
19242
- transform: scale3d(0.95, 1.05, 1); }
19243
- 75% {
19244
- -webkit-transform: scale3d(1.05, 0.95, 1);
19245
- transform: scale3d(1.05, 0.95, 1); }
19246
- to {
19247
- -webkit-transform: scale3d(1, 1, 1);
19248
- transform: scale3d(1, 1, 1); } }
19249
- .brz .rubberBand {
19250
- -webkit-animation-name: rubberBand;
19251
- animation-name: rubberBand; }
19252
-
19253
- @-webkit-keyframes shake {
19254
- from,
19255
- to {
19256
- -webkit-transform: translate3d(0, 0, 0);
19257
- transform: translate3d(0, 0, 0); }
19258
- 10%,
19259
- 30%,
19260
- 50%,
19261
- 70%,
19262
- 90% {
19263
- -webkit-transform: translate3d(-10px, 0, 0);
19264
- transform: translate3d(-10px, 0, 0); }
19265
- 20%,
19266
- 40%,
19267
- 60%,
19268
- 80% {
19269
- -webkit-transform: translate3d(10px, 0, 0);
19270
- transform: translate3d(10px, 0, 0); } }
19271
-
19272
- @keyframes shake {
19273
- from,
19274
- to {
19275
- -webkit-transform: translate3d(0, 0, 0);
19276
- transform: translate3d(0, 0, 0); }
19277
- 10%,
19278
- 30%,
19279
- 50%,
19280
- 70%,
19281
- 90% {
19282
- -webkit-transform: translate3d(-10px, 0, 0);
19283
- transform: translate3d(-10px, 0, 0); }
19284
- 20%,
19285
- 40%,
19286
- 60%,
19287
- 80% {
19288
- -webkit-transform: translate3d(10px, 0, 0);
19289
- transform: translate3d(10px, 0, 0); } }
19290
- .brz .shake {
19291
- -webkit-animation-name: shake;
19292
- animation-name: shake; }
19293
-
19294
- @-webkit-keyframes headShake {
19295
- 0% {
19296
- -webkit-transform: translateX(0);
19297
- transform: translateX(0); }
19298
- 6.5% {
19299
- -webkit-transform: translateX(-6px) rotateY(-9deg);
19300
- transform: translateX(-6px) rotateY(-9deg); }
19301
- 18.5% {
19302
- -webkit-transform: translateX(5px) rotateY(7deg);
19303
- transform: translateX(5px) rotateY(7deg); }
19304
- 31.5% {
19305
- -webkit-transform: translateX(-3px) rotateY(-5deg);
19306
- transform: translateX(-3px) rotateY(-5deg); }
19307
- 43.5% {
19308
- -webkit-transform: translateX(2px) rotateY(3deg);
19309
- transform: translateX(2px) rotateY(3deg); }
19310
- 50% {
19311
- -webkit-transform: translateX(0);
19312
- transform: translateX(0); } }
19313
-
19314
- @keyframes headShake {
19315
- 0% {
19316
- -webkit-transform: translateX(0);
19317
- transform: translateX(0); }
19318
- 6.5% {
19319
- -webkit-transform: translateX(-6px) rotateY(-9deg);
19320
- transform: translateX(-6px) rotateY(-9deg); }
19321
- 18.5% {
19322
- -webkit-transform: translateX(5px) rotateY(7deg);
19323
- transform: translateX(5px) rotateY(7deg); }
19324
- 31.5% {
19325
- -webkit-transform: translateX(-3px) rotateY(-5deg);
19326
- transform: translateX(-3px) rotateY(-5deg); }
19327
- 43.5% {
19328
- -webkit-transform: translateX(2px) rotateY(3deg);
19329
- transform: translateX(2px) rotateY(3deg); }
19330
- 50% {
19331
- -webkit-transform: translateX(0);
19332
- transform: translateX(0); } }
19333
- .brz .headShake {
19334
- -webkit-animation-timing-function: ease-in-out;
19335
- animation-timing-function: ease-in-out;
19336
- -webkit-animation-name: headShake;
19337
- animation-name: headShake; }
19338
-
19339
- @-webkit-keyframes swing {
19340
- 20% {
19341
- -webkit-transform: rotate3d(0, 0, 1, 15deg);
19342
- transform: rotate3d(0, 0, 1, 15deg); }
19343
- 40% {
19344
- -webkit-transform: rotate3d(0, 0, 1, -10deg);
19345
- transform: rotate3d(0, 0, 1, -10deg); }
19346
- 60% {
19347
- -webkit-transform: rotate3d(0, 0, 1, 5deg);
19348
- transform: rotate3d(0, 0, 1, 5deg); }
19349
- 80% {
19350
- -webkit-transform: rotate3d(0, 0, 1, -5deg);
19351
- transform: rotate3d(0, 0, 1, -5deg); }
19352
- to {
19353
- -webkit-transform: rotate3d(0, 0, 1, 0deg);
19354
- transform: rotate3d(0, 0, 1, 0deg); } }
19355
-
19356
- @keyframes swing {
19357
- 20% {
19358
- -webkit-transform: rotate3d(0, 0, 1, 15deg);
19359
- transform: rotate3d(0, 0, 1, 15deg); }
19360
- 40% {
19361
- -webkit-transform: rotate3d(0, 0, 1, -10deg);
19362
- transform: rotate3d(0, 0, 1, -10deg); }
19363
- 60% {
19364
- -webkit-transform: rotate3d(0, 0, 1, 5deg);
19365
- transform: rotate3d(0, 0, 1, 5deg); }
19366
- 80% {
19367
- -webkit-transform: rotate3d(0, 0, 1, -5deg);
19368
- transform: rotate3d(0, 0, 1, -5deg); }
19369
- to {
19370
- -webkit-transform: rotate3d(0, 0, 1, 0deg);
19371
- transform: rotate3d(0, 0, 1, 0deg); } }
19372
- .brz .swing {
19373
- -webkit-transform-origin: top center;
19374
- transform-origin: top center;
19375
- -webkit-animation-name: swing;
19376
- animation-name: swing; }
19377
-
19378
- @-webkit-keyframes tada {
19379
- from {
19380
- -webkit-transform: scale3d(1, 1, 1);
19381
- transform: scale3d(1, 1, 1); }
19382
- 10%,
19383
- 20% {
19384
- -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
19385
- transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
19386
- 30%,
19387
- 50%,
19388
- 70%,
19389
- 90% {
19390
- -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
19391
- transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
19392
- 40%,
19393
- 60%,
19394
- 80% {
19395
- -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
19396
- transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
19397
- to {
19398
- -webkit-transform: scale3d(1, 1, 1);
19399
- transform: scale3d(1, 1, 1); } }
19400
-
19401
- @keyframes tada {
19402
- from {
19403
- -webkit-transform: scale3d(1, 1, 1);
19404
- transform: scale3d(1, 1, 1); }
19405
- 10%,
19406
- 20% {
19407
- -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
19408
- transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
19409
- 30%,
19410
- 50%,
19411
- 70%,
19412
- 90% {
19413
- -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
19414
- transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
19415
- 40%,
19416
- 60%,
19417
- 80% {
19418
- -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
19419
- transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
19420
- to {
19421
- -webkit-transform: scale3d(1, 1, 1);
19422
- transform: scale3d(1, 1, 1); } }
19423
- .brz .tada {
19424
- -webkit-animation-name: tada;
19425
- animation-name: tada; }
19426
-
19427
- @-webkit-keyframes wobble {
19428
- from {
19429
- -webkit-transform: translate3d(0, 0, 0);
19430
- transform: translate3d(0, 0, 0); }
19431
- 15% {
19432
- -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
19433
- transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
19434
- 30% {
19435
- -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
19436
- transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
19437
- 45% {
19438
- -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
19439
- transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
19440
- 60% {
19441
- -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
19442
- transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
19443
- 75% {
19444
- -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
19445
- transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
19446
- to {
19447
- -webkit-transform: translate3d(0, 0, 0);
19448
- transform: translate3d(0, 0, 0); } }
19449
-
19450
- @keyframes wobble {
19451
- from {
19452
- -webkit-transform: translate3d(0, 0, 0);
19453
- transform: translate3d(0, 0, 0); }
19454
- 15% {
19455
- -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
19456
- transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
19457
- 30% {
19458
- -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
19459
- transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
19460
- 45% {
19461
- -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
19462
- transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
19463
- 60% {
19464
- -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
19465
- transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
19466
- 75% {
19467
- -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
19468
- transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
19469
- to {
19470
- -webkit-transform: translate3d(0, 0, 0);
19471
- transform: translate3d(0, 0, 0); } }
19472
- .brz .wobble {
19473
- -webkit-animation-name: wobble;
19474
- animation-name: wobble; }
19475
-
19476
- @-webkit-keyframes jello {
19477
- from,
19478
- 11.1%,
19479
- to {
19480
- -webkit-transform: translate3d(0, 0, 0);
19481
- transform: translate3d(0, 0, 0); }
19482
- 22.2% {
19483
- -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
19484
- transform: skewX(-12.5deg) skewY(-12.5deg); }
19485
- 33.3% {
19486
- -webkit-transform: skewX(6.25deg) skewY(6.25deg);
19487
- transform: skewX(6.25deg) skewY(6.25deg); }
19488
- 44.4% {
19489
- -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
19490
- transform: skewX(-3.125deg) skewY(-3.125deg); }
19491
- 55.5% {
19492
- -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
19493
- transform: skewX(1.5625deg) skewY(1.5625deg); }
19494
- 66.6% {
19495
- -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
19496
- transform: skewX(-0.78125deg) skewY(-0.78125deg); }
19497
- 77.7% {
19498
- -webkit-transform: skewX(0.39062deg) skewY(0.39062deg);
19499
- transform: skewX(0.39062deg) skewY(0.39062deg); }
19500
- 88.8% {
19501
- -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
19502
- transform: skewX(-0.19531deg) skewY(-0.19531deg); } }
19503
-
19504
- @keyframes jello {
19505
- from,
19506
- 11.1%,
19507
- to {
19508
- -webkit-transform: translate3d(0, 0, 0);
19509
- transform: translate3d(0, 0, 0); }
19510
- 22.2% {
19511
- -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
19512
- transform: skewX(-12.5deg) skewY(-12.5deg); }
19513
- 33.3% {
19514
- -webkit-transform: skewX(6.25deg) skewY(6.25deg);
19515
- transform: skewX(6.25deg) skewY(6.25deg); }
19516
- 44.4% {
19517
- -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
19518
- transform: skewX(-3.125deg) skewY(-3.125deg); }
19519
- 55.5% {
19520
- -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
19521
- transform: skewX(1.5625deg) skewY(1.5625deg); }
19522
- 66.6% {
19523
- -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
19524
- transform: skewX(-0.78125deg) skewY(-0.78125deg); }
19525
- 77.7% {
19526
- -webkit-transform: skewX(0.39062deg) skewY(0.39062deg);
19527
- transform: skewX(0.39062deg) skewY(0.39062deg); }
19528
- 88.8% {
19529
- -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
19530
- transform: skewX(-0.19531deg) skewY(-0.19531deg); } }
19531
- .brz .jello {
19532
- -webkit-animation-name: jello;
19533
- animation-name: jello;
19534
- -webkit-transform-origin: center;
19535
- transform-origin: center; }
19536
-
19537
- @-webkit-keyframes heartBeat {
19538
- 0% {
19539
- -webkit-transform: scale(1);
19540
- transform: scale(1); }
19541
- 14% {
19542
- -webkit-transform: scale(1.3);
19543
- transform: scale(1.3); }
19544
- 28% {
19545
- -webkit-transform: scale(1);
19546
- transform: scale(1); }
19547
- 42% {
19548
- -webkit-transform: scale(1.3);
19549
- transform: scale(1.3); }
19550
- 70% {
19551
- -webkit-transform: scale(1);
19552
- transform: scale(1); } }
19553
-
19554
- @keyframes heartBeat {
19555
- 0% {
19556
- -webkit-transform: scale(1);
19557
- transform: scale(1); }
19558
- 14% {
19559
- -webkit-transform: scale(1.3);
19560
- transform: scale(1.3); }
19561
- 28% {
19562
- -webkit-transform: scale(1);
19563
- transform: scale(1); }
19564
- 42% {
19565
- -webkit-transform: scale(1.3);
19566
- transform: scale(1.3); }
19567
- 70% {
19568
- -webkit-transform: scale(1);
19569
- transform: scale(1); } }
19570
- .brz .heartBeat {
19571
- -webkit-animation-name: heartBeat;
19572
- animation-name: heartBeat;
19573
- -webkit-animation-duration: 1.3s;
19574
- animation-duration: 1.3s;
19575
- -webkit-animation-timing-function: ease-in-out;
19576
- animation-timing-function: ease-in-out; }
19577
-
19578
- @-webkit-keyframes bounceIn {
19579
- from,
19580
- 20%,
19581
- 40%,
19582
- 60%,
19583
- 80%,
19584
- to {
19585
- -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
19586
- animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
19587
- 0% {
19588
- opacity: 0;
19589
- -webkit-transform: scale3d(0.3, 0.3, 0.3);
19590
- transform: scale3d(0.3, 0.3, 0.3); }
19591
- 20% {
19592
- -webkit-transform: scale3d(1.1, 1.1, 1.1);
19593
- transform: scale3d(1.1, 1.1, 1.1); }
19594
- 40% {
19595
- -webkit-transform: scale3d(0.9, 0.9, 0.9);
19596
- transform: scale3d(0.9, 0.9, 0.9); }
19597
- 60% {
19598
- opacity: 1;
19599
- -webkit-transform: scale3d(1.03, 1.03, 1.03);
19600
- transform: scale3d(1.03, 1.03, 1.03); }
19601
- 80% {
19602
- -webkit-transform: scale3d(0.97, 0.97, 0.97);
19603
- transform: scale3d(0.97, 0.97, 0.97); }
19604
- to {
19605
- opacity: 1;
19606
- -webkit-transform: scale3d(1, 1, 1);
19607
- transform: scale3d(1, 1, 1); } }
19608
-
19609
- @keyframes bounceIn {
19610
- from,
19611
- 20%,
19612
- 40%,
19613
- 60%,
19614
- 80%,
19615
- to {
19616
- -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
19617
- animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
19618
- 0% {
19619
- opacity: 0;
19620
- -webkit-transform: scale3d(0.3, 0.3, 0.3);
19621
- transform: scale3d(0.3, 0.3, 0.3); }
19622
- 20% {
19623
- -webkit-transform: scale3d(1.1, 1.1, 1.1);
19624
- transform: scale3d(1.1, 1.1, 1.1); }
19625
- 40% {
19626
- -webkit-transform: scale3d(0.9, 0.9, 0.9);
19627
- transform: scale3d(0.9, 0.9, 0.9); }
19628
- 60% {
19629
- opacity: 1;
19630
- -webkit-transform: scale3d(1.03, 1.03, 1.03);
19631
- transform: scale3d(1.03, 1.03, 1.03); }
19632
- 80% {
19633
- -webkit-transform: scale3d(0.97, 0.97, 0.97);
19634
- transform: scale3d(0.97, 0.97, 0.97); }
19635
- to {
19636
- opacity: 1;
19637
- -webkit-transform: scale3d(1, 1, 1);
19638
- transform: scale3d(1, 1, 1); } }
19639
- .brz .bounceIn {
19640
- -webkit-animation-duration: 0.75s;
19641
- animation-duration: 0.75s;
19642
- -webkit-animation-name: bounceIn;
19643
- animation-name: bounceIn; }
19644
-
19645
- @-webkit-keyframes bounceInDown {
19646
- from,
19647
- 60%,
19648
- 75%,
19649
- 90%,
19650
- to {
19651
- -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
19652
- animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
19653
- 0% {
19654
- opacity: 0;
19655
- -webkit-transform: translate3d(0, -3000px, 0);
19656
- transform: translate3d(0, -3000px, 0); }
19657
- 60% {
19658
- opacity: 1;
19659
- -webkit-transform: translate3d(0, 25px, 0);
19660
- transform: translate3d(0, 25px, 0); }
19661
- 75% {
19662
- -webkit-transform: translate3d(0, -10px, 0);
19663
- transform: translate3d(0, -10px, 0); }
19664
- 90% {
19665
- -webkit-transform: translate3d(0, 5px, 0);
19666
- transform: translate3d(0, 5px, 0); }
19667
- to {
19668
- -webkit-transform: translate3d(0, 0, 0);
19669
- transform: translate3d(0, 0, 0); } }
19670
-
19671
- @keyframes bounceInDown {
19672
- from,
19673
- 60%,
19674
- 75%,
19675
- 90%,
19676
- to {
19677
- -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
19678
- animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
19679
- 0% {
19680
- opacity: 0;
19681
- -webkit-transform: translate3d(0, -3000px, 0);
19682
- transform: translate3d(0, -3000px, 0); }
19683
- 60% {
19684
- opacity: 1;
19685
- -webkit-transform: translate3d(0, 25px, 0);
19686
- transform: translate3d(0, 25px, 0); }
19687
- 75% {
19688
- -webkit-transform: translate3d(0, -10px, 0);
19689
- transform: translate3d(0, -10px, 0); }
19690
- 90% {
19691
- -webkit-transform: translate3d(0, 5px, 0);
19692
- transform: translate3d(0, 5px, 0); }
19693
- to {
19694
- -webkit-transform: translate3d(0, 0, 0);
19695
- transform: translate3d(0, 0, 0); } }
19696
- .brz .bounceInDown {
19697
- -webkit-animation-name: bounceInDown;
19698
- animation-name: bounceInDown; }
19699
-
19700
- @-webkit-keyframes bounceInLeft {
19701
- from,
19702
- 60%,
19703
- 75%,
19704
- 90%,
19705
- to {
19706
- -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
19707
- animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
19708
- 0% {
19709
- opacity: 0;
19710
- -webkit-transform: translate3d(-3000px, 0, 0);
19711
- transform: translate3d(-3000px, 0, 0); }
19712
- 60% {
19713
- opacity: 1;
19714
- -webkit-transform: translate3d(25px, 0, 0);
19715
- transform: translate3d(25px, 0, 0); }
19716
- 75% {
19717
- -webkit-transform: translate3d(-10px, 0, 0);
19718
- transform: translate3d(-10px, 0, 0); }
19719
- 90% {
19720
- -webkit-transform: translate3d(5px, 0, 0);
19721
- transform: translate3d(5px, 0, 0); }
19722
- to {
19723
- -webkit-transform: translate3d(0, 0, 0);
19724
- transform: translate3d(0, 0, 0); } }
19725
-
19726
- @keyframes bounceInLeft {
19727
- from,
19728
- 60%,
19729
- 75%,
19730
- 90%,
19731
- to {
19732
- -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
19733
- animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
19734
- 0% {
19735
- opacity: 0;
19736
- -webkit-transform: translate3d(-3000px, 0, 0);
19737
- transform: translate3d(-3000px, 0, 0); }
19738
- 60% {
19739
- opacity: 1;
19740
- -webkit-transform: translate3d(25px, 0, 0);
19741
- transform: translate3d(25px, 0, 0); }
19742
- 75% {
19743
- -webkit-transform: translate3d(-10px, 0, 0);
19744
- transform: translate3d(-10px, 0, 0); }
19745
- 90% {
19746
- -webkit-transform: translate3d(5px, 0, 0);
19747
- transform: translate3d(5px, 0, 0); }
19748
- to {
19749
- -webkit-transform: translate3d(0, 0, 0);
19750
- transform: translate3d(0, 0, 0); } }
19751
- .brz .bounceInLeft {
19752
- -webkit-animation-name: bounceInLeft;
19753
- animation-name: bounceInLeft; }
19754
-
19755
- @-webkit-keyframes bounceInRight {
19756
- from,
19757
- 60%,
19758
- 75%,
19759
- 90%,
19760
- to {
19761
- -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
19762
- animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
19763
- from {
19764
- opacity: 0;
19765
- -webkit-transform: translate3d(3000px, 0, 0);
19766
- transform: translate3d(3000px, 0, 0); }
19767
- 60% {
19768
- opacity: 1;
19769
- -webkit-transform: translate3d(-25px, 0, 0);
19770
- transform: translate3d(-25px, 0, 0); }
19771
- 75% {
19772
- -webkit-transform: translate3d(10px, 0, 0);
19773
- transform: translate3d(10px, 0, 0); }
19774
- 90% {
19775
- -webkit-transform: translate3d(-5px, 0, 0);
19776
- transform: translate3d(-5px, 0, 0); }
19777
- to {
19778
- -webkit-transform: translate3d(0, 0, 0);
19779
- transform: translate3d(0, 0, 0); } }
19780
-
19781
- @keyframes bounceInRight {
19782
- from,
19783
- 60%,
19784
- 75%,
19785
- 90%,
19786
- to {
19787
- -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
19788
- animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
19789
- from {
19790
- opacity: 0;
19791
- -webkit-transform: translate3d(3000px, 0, 0);
19792
- transform: translate3d(3000px, 0, 0); }
19793
- 60% {
19794
- opacity: 1;
19795
- -webkit-transform: translate3d(-25px, 0, 0);
19796
- transform: translate3d(-25px, 0, 0); }
19797
- 75% {
19798
- -webkit-transform: translate3d(10px, 0, 0);
19799
- transform: translate3d(10px, 0, 0); }
19800
- 90% {
19801
- -webkit-transform: translate3d(-5px, 0, 0);
19802
- transform: translate3d(-5px, 0, 0); }
19803
- to {
19804
- -webkit-transform: translate3d(0, 0, 0);
19805
- transform: translate3d(0, 0, 0); } }
19806
- .brz .bounceInRight {
19807
- -webkit-animation-name: bounceInRight;
19808
- animation-name: bounceInRight; }
19809
-
19810
- @-webkit-keyframes bounceInUp {
19811
- from,
19812
- 60%,
19813
- 75%,
19814
- 90%,
19815
- to {
19816
- -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
19817
- animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
19818
- from {
19819
- opacity: 0;
19820
- -webkit-transform: translate3d(0, 3000px, 0);
19821
- transform: translate3d(0, 3000px, 0); }
19822
- 60% {
19823
- opacity: 1;
19824
- -webkit-transform: translate3d(0, -20px, 0);
19825
- transform: translate3d(0, -20px, 0); }
19826
- 75% {
19827
- -webkit-transform: translate3d(0, 10px, 0);
19828
- transform: translate3d(0, 10px, 0); }
19829
- 90% {
19830
- -webkit-transform: translate3d(0, -5px, 0);
19831
- transform: translate3d(0, -5px, 0); }
19832
- to {
19833
- -webkit-transform: translate3d(0, 0, 0);
19834
- transform: translate3d(0, 0, 0); } }
19835
-
19836
- @keyframes bounceInUp {
19837
- from,
19838
- 60%,
19839
- 75%,
19840
- 90%,
19841
- to {
19842
- -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
19843
- animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
19844
- from {
19845
- opacity: 0;
19846
- -webkit-transform: translate3d(0, 3000px, 0);
19847
- transform: translate3d(0, 3000px, 0); }
19848
- 60% {
19849
- opacity: 1;
19850
- -webkit-transform: translate3d(0, -20px, 0);
19851
- transform: translate3d(0, -20px, 0); }
19852
- 75% {
19853
- -webkit-transform: translate3d(0, 10px, 0);
19854
- transform: translate3d(0, 10px, 0); }
19855
- 90% {
19856
- -webkit-transform: translate3d(0, -5px, 0);
19857
- transform: translate3d(0, -5px, 0); }
19858
- to {
19859
- -webkit-transform: translate3d(0, 0, 0);
19860
- transform: translate3d(0, 0, 0); } }
19861
- .brz .bounceInUp {
19862
- -webkit-animation-name: bounceInUp;
19863
- animation-name: bounceInUp; }
19864
-
19865
- @-webkit-keyframes bounceOut {
19866
- 20% {
19867
- -webkit-transform: scale3d(0.9, 0.9, 0.9);
19868
- transform: scale3d(0.9, 0.9, 0.9); }
19869
- 50%,
19870
- 55% {
19871
- opacity: 1;
19872
- -webkit-transform: scale3d(1.1, 1.1, 1.1);
19873
- transform: scale3d(1.1, 1.1, 1.1); }
19874
- to {
19875
- opacity: 0;
19876
- -webkit-transform: scale3d(0.3, 0.3, 0.3);
19877
- transform: scale3d(0.3, 0.3, 0.3); } }
19878
-
19879
- @keyframes bounceOut {
19880
- 20% {
19881
- -webkit-transform: scale3d(0.9, 0.9, 0.9);
19882
- transform: scale3d(0.9, 0.9, 0.9); }
19883
- 50%,
19884
- 55% {
19885
- opacity: 1;
19886
- -webkit-transform: scale3d(1.1, 1.1, 1.1);
19887
- transform: scale3d(1.1, 1.1, 1.1); }
19888
- to {
19889
- opacity: 0;
19890
- -webkit-transform: scale3d(0.3, 0.3, 0.3);
19891
- transform: scale3d(0.3, 0.3, 0.3); } }
19892
- .brz .bounceOut {
19893
- -webkit-animation-duration: 0.75s;
19894
- animation-duration: 0.75s;
19895
- -webkit-animation-name: bounceOut;
19896
- animation-name: bounceOut; }
19897
-
19898
- @-webkit-keyframes bounceOutDown {
19899
- 20% {
19900
- -webkit-transform: translate3d(0, 10px, 0);
19901
- transform: translate3d(0, 10px, 0); }
19902
- 40%,
19903
- 45% {
19904
- opacity: 1;
19905
- -webkit-transform: translate3d(0, -20px, 0);
19906
- transform: translate3d(0, -20px, 0); }
19907
- to {
19908
- opacity: 0;
19909
- -webkit-transform: translate3d(0, 2000px, 0);
19910
- transform: translate3d(0, 2000px, 0); } }
19911
-
19912
- @keyframes bounceOutDown {
19913
- 20% {
19914
- -webkit-transform: translate3d(0, 10px, 0);
19915
- transform: translate3d(0, 10px, 0); }
19916
- 40%,
19917
- 45% {
19918
- opacity: 1;
19919
- -webkit-transform: translate3d(0, -20px, 0);
19920
- transform: translate3d(0, -20px, 0); }
19921
- to {
19922
- opacity: 0;
19923
- -webkit-transform: translate3d(0, 2000px, 0);
19924
- transform: translate3d(0, 2000px, 0); } }
19925
- .brz .bounceOutDown {
19926
- -webkit-animation-name: bounceOutDown;
19927
- animation-name: bounceOutDown; }
19928
-
19929
- @-webkit-keyframes bounceOutLeft {
19930
- 20% {
19931
- opacity: 1;
19932
- -webkit-transform: translate3d(20px, 0, 0);
19933
- transform: translate3d(20px, 0, 0); }
19934
- to {
19935
- opacity: 0;
19936
- -webkit-transform: translate3d(-2000px, 0, 0);
19937
- transform: translate3d(-2000px, 0, 0); } }
19938
-
19939
- @keyframes bounceOutLeft {
19940
- 20% {
19941
- opacity: 1;
19942
- -webkit-transform: translate3d(20px, 0, 0);
19943
- transform: translate3d(20px, 0, 0); }
19944
- to {
19945
- opacity: 0;
19946
- -webkit-transform: translate3d(-2000px, 0, 0);
19947
- transform: translate3d(-2000px, 0, 0); } }
19948
- .brz .bounceOutLeft {
19949
- -webkit-animation-name: bounceOutLeft;
19950
- animation-name: bounceOutLeft; }
19951
-
19952
- @-webkit-keyframes bounceOutRight {
19953
- 20% {
19954
- opacity: 1;
19955
- -webkit-transform: translate3d(-20px, 0, 0);
19956
- transform: translate3d(-20px, 0, 0); }
19957
- to {
19958
- opacity: 0;
19959
- -webkit-transform: translate3d(2000px, 0, 0);
19960
- transform: translate3d(2000px, 0, 0); } }
19961
-
19962
- @keyframes bounceOutRight {
19963
- 20% {
19964
- opacity: 1;
19965
- -webkit-transform: translate3d(-20px, 0, 0);
19966
- transform: translate3d(-20px, 0, 0); }
19967
- to {
19968
- opacity: 0;
19969
- -webkit-transform: translate3d(2000px, 0, 0);
19970
- transform: translate3d(2000px, 0, 0); } }
19971
- .brz .bounceOutRight {
19972
- -webkit-animation-name: bounceOutRight;
19973
- animation-name: bounceOutRight; }
19974
-
19975
- @-webkit-keyframes bounceOutUp {
19976
- 20% {
19977
- -webkit-transform: translate3d(0, -10px, 0);
19978
- transform: translate3d(0, -10px, 0); }
19979
- 40%,
19980
- 45% {
19981
- opacity: 1;
19982
- -webkit-transform: translate3d(0, 20px, 0);
19983
- transform: translate3d(0, 20px, 0); }
19984
- to {
19985
- opacity: 0;
19986
- -webkit-transform: translate3d(0, -2000px, 0);
19987
- transform: translate3d(0, -2000px, 0); } }
19988
-
19989
- @keyframes bounceOutUp {
19990
- 20% {
19991
- -webkit-transform: translate3d(0, -10px, 0);
19992
- transform: translate3d(0, -10px, 0); }
19993
- 40%,
19994
- 45% {
19995
- opacity: 1;
19996
- -webkit-transform: translate3d(0, 20px, 0);
19997
- transform: translate3d(0, 20px, 0); }
19998
- to {
19999
- opacity: 0;
20000
- -webkit-transform: translate3d(0, -2000px, 0);
20001
- transform: translate3d(0, -2000px, 0); } }
20002
- .brz .bounceOutUp {
20003
- -webkit-animation-name: bounceOutUp;
20004
- animation-name: bounceOutUp; }
20005
-
20006
- @-webkit-keyframes fadeIn {
20007
- from {
20008
- opacity: 0; }
20009
- to {
20010
- opacity: 1; } }
20011
-
20012
- @keyframes fadeIn {
20013
- from {
20014
- opacity: 0; }
20015
- to {
20016
- opacity: 1; } }
20017
- .brz .fadeIn {
20018
- -webkit-animation-name: fadeIn;
20019
- animation-name: fadeIn; }
20020
-
20021
- @-webkit-keyframes fadeInDown {
20022
- from {
20023
- opacity: 0;
20024
- -webkit-transform: translate3d(0, -100%, 0);
20025
- transform: translate3d(0, -100%, 0); }
20026
- to {
20027
- opacity: 1;
20028
- -webkit-transform: translate3d(0, 0, 0);
20029
- transform: translate3d(0, 0, 0); } }
20030
-
20031
- @keyframes fadeInDown {
20032
- from {
20033
- opacity: 0;
20034
- -webkit-transform: translate3d(0, -100%, 0);
20035
- transform: translate3d(0, -100%, 0); }
20036
- to {
20037
- opacity: 1;
20038
- -webkit-transform: translate3d(0, 0, 0);
20039
- transform: translate3d(0, 0, 0); } }
20040
- .brz .fadeInDown {
20041
- -webkit-animation-name: fadeInDown;
20042
- animation-name: fadeInDown; }
20043
-
20044
- @-webkit-keyframes fadeInDownBig {
20045
- from {
20046
- opacity: 0;
20047
- -webkit-transform: translate3d(0, -2000px, 0);
20048
- transform: translate3d(0, -2000px, 0); }
20049
- to {
20050
- opacity: 1;
20051
- -webkit-transform: translate3d(0, 0, 0);
20052
- transform: translate3d(0, 0, 0); } }
20053
-
20054
- @keyframes fadeInDownBig {
20055
- from {
20056
- opacity: 0;
20057
- -webkit-transform: translate3d(0, -2000px, 0);
20058
- transform: translate3d(0, -2000px, 0); }
20059
- to {
20060
- opacity: 1;
20061
- -webkit-transform: translate3d(0, 0, 0);
20062
- transform: translate3d(0, 0, 0); } }
20063
- .brz .fadeInDownBig {
20064
- -webkit-animation-name: fadeInDownBig;
20065
- animation-name: fadeInDownBig; }
20066
-
20067
- @-webkit-keyframes fadeInLeft {
20068
- from {
20069
- opacity: 0;
20070
- -webkit-transform: translate3d(-100%, 0, 0);
20071
- transform: translate3d(-100%, 0, 0); }
20072
- to {
20073
- opacity: 1;
20074
- -webkit-transform: translate3d(0, 0, 0);
20075
- transform: translate3d(0, 0, 0); } }
20076
-
20077
- @keyframes fadeInLeft {
20078
- from {
20079
- opacity: 0;
20080
- -webkit-transform: translate3d(-100%, 0, 0);
20081
- transform: translate3d(-100%, 0, 0); }
20082
- to {
20083
- opacity: 1;
20084
- -webkit-transform: translate3d(0, 0, 0);
20085
- transform: translate3d(0, 0, 0); } }
20086
- .brz .fadeInLeft {
20087
- -webkit-animation-name: fadeInLeft;
20088
- animation-name: fadeInLeft; }
20089
-
20090
- @-webkit-keyframes fadeInLeftBig {
20091
- from {
20092
- opacity: 0;
20093
- -webkit-transform: translate3d(-2000px, 0, 0);
20094
- transform: translate3d(-2000px, 0, 0); }
20095
- to {
20096
- opacity: 1;
20097
- -webkit-transform: translate3d(0, 0, 0);
20098
- transform: translate3d(0, 0, 0); } }
20099
-
20100
- @keyframes fadeInLeftBig {
20101
- from {
20102
- opacity: 0;
20103
- -webkit-transform: translate3d(-2000px, 0, 0);
20104
- transform: translate3d(-2000px, 0, 0); }
20105
- to {
20106
- opacity: 1;
20107
- -webkit-transform: translate3d(0, 0, 0);
20108
- transform: translate3d(0, 0, 0); } }
20109
- .brz .fadeInLeftBig {
20110
- -webkit-animation-name: fadeInLeftBig;
20111
- animation-name: fadeInLeftBig; }
20112
-
20113
- @-webkit-keyframes fadeInRight {
20114
- from {
20115
- opacity: 0;
20116
- -webkit-transform: translate3d(100%, 0, 0);
20117
- transform: translate3d(100%, 0, 0); }
20118
- to {
20119
- opacity: 1;
20120
- -webkit-transform: translate3d(0, 0, 0);
20121
- transform: translate3d(0, 0, 0); } }
20122
-
20123
- @keyframes fadeInRight {
20124
- from {
20125
- opacity: 0;
20126
- -webkit-transform: translate3d(100%, 0, 0);
20127
- transform: translate3d(100%, 0, 0); }
20128
- to {
20129
- opacity: 1;
20130
- -webkit-transform: translate3d(0, 0, 0);
20131
- transform: translate3d(0, 0, 0); } }
20132
- .brz .fadeInRight {
20133
- -webkit-animation-name: fadeInRight;
20134
- animation-name: fadeInRight; }
20135
-
20136
- @-webkit-keyframes fadeInRightBig {
20137
- from {
20138
- opacity: 0;
20139
- -webkit-transform: translate3d(2000px, 0, 0);
20140
- transform: translate3d(2000px, 0, 0); }
20141
- to {
20142
- opacity: 1;
20143
- -webkit-transform: translate3d(0, 0, 0);
20144
- transform: translate3d(0, 0, 0); } }
20145
-
20146
- @keyframes fadeInRightBig {
20147
- from {
20148
- opacity: 0;
20149
- -webkit-transform: translate3d(2000px, 0, 0);
20150
- transform: translate3d(2000px, 0, 0); }
20151
- to {
20152
- opacity: 1;
20153
- -webkit-transform: translate3d(0, 0, 0);
20154
- transform: translate3d(0, 0, 0); } }
20155
- .brz .fadeInRightBig {
20156
- -webkit-animation-name: fadeInRightBig;
20157
- animation-name: fadeInRightBig; }
20158
-
20159
- @-webkit-keyframes fadeInUp {
20160
- from {
20161
- opacity: 0;
20162
- -webkit-transform: translate3d(0, 100%, 0);
20163
- transform: translate3d(0, 100%, 0); }
20164
- to {
20165
- opacity: 1;
20166
- -webkit-transform: translate3d(0, 0, 0);
20167
- transform: translate3d(0, 0, 0); } }
20168
-
20169
- @keyframes fadeInUp {
20170
- from {
20171
- opacity: 0;
20172
- -webkit-transform: translate3d(0, 100%, 0);
20173
- transform: translate3d(0, 100%, 0); }
20174
- to {
20175
- opacity: 1;
20176
- -webkit-transform: translate3d(0, 0, 0);
20177
- transform: translate3d(0, 0, 0); } }
20178
- .brz .fadeInUp {
20179
- -webkit-animation-name: fadeInUp;
20180
- animation-name: fadeInUp; }
20181
-
20182
- @-webkit-keyframes fadeInUpBig {
20183
- from {
20184
- opacity: 0;
20185
- -webkit-transform: translate3d(0, 2000px, 0);
20186
- transform: translate3d(0, 2000px, 0); }
20187
- to {
20188
- opacity: 1;
20189
- -webkit-transform: translate3d(0, 0, 0);
20190
- transform: translate3d(0, 0, 0); } }
20191
-
20192
- @keyframes fadeInUpBig {
20193
- from {
20194
- opacity: 0;
20195
- -webkit-transform: translate3d(0, 2000px, 0);
20196
- transform: translate3d(0, 2000px, 0); }
20197
- to {
20198
- opacity: 1;
20199
- -webkit-transform: translate3d(0, 0, 0);
20200
- transform: translate3d(0, 0, 0); } }
20201
- .brz .fadeInUpBig {
20202
- -webkit-animation-name: fadeInUpBig;
20203
- animation-name: fadeInUpBig; }
20204
-
20205
- @-webkit-keyframes fadeOut {
20206
- from {
20207
- opacity: 1; }
20208
- to {
20209
- opacity: 0; } }
20210
-
20211
- @keyframes fadeOut {
20212
- from {
20213
- opacity: 1; }
20214
- to {
20215
- opacity: 0; } }
20216
- .brz .fadeOut {
20217
- -webkit-animation-name: fadeOut;
20218
- animation-name: fadeOut; }
20219
-
20220
- @-webkit-keyframes fadeOutDown {
20221
- from {
20222
- opacity: 1; }
20223
- to {
20224
- opacity: 0;
20225
- -webkit-transform: translate3d(0, 100%, 0);
20226
- transform: translate3d(0, 100%, 0); } }
20227
-
20228
- @keyframes fadeOutDown {
20229
- from {
20230
- opacity: 1; }
20231
- to {
20232
- opacity: 0;
20233
- -webkit-transform: translate3d(0, 100%, 0);
20234
- transform: translate3d(0, 100%, 0); } }
20235
- .brz .fadeOutDown {
20236
- -webkit-animation-name: fadeOutDown;
20237
- animation-name: fadeOutDown; }
20238
-
20239
- @-webkit-keyframes fadeOutDownBig {
20240
- from {
20241
- opacity: 1; }
20242
- to {
20243
- opacity: 0;
20244
- -webkit-transform: translate3d(0, 2000px, 0);
20245
- transform: translate3d(0, 2000px, 0); } }
20246
-
20247
- @keyframes fadeOutDownBig {
20248
- from {
20249
- opacity: 1; }
20250
- to {
20251
- opacity: 0;
20252
- -webkit-transform: translate3d(0, 2000px, 0);
20253
- transform: translate3d(0, 2000px, 0); } }
20254
- .brz .fadeOutDownBig {
20255
- -webkit-animation-name: fadeOutDownBig;
20256
- animation-name: fadeOutDownBig; }
20257
-
20258
- @-webkit-keyframes fadeOutLeft {
20259
- from {
20260
- opacity: 1; }
20261
- to {
20262
- opacity: 0;
20263
- -webkit-transform: translate3d(-100%, 0, 0);
20264
- transform: translate3d(-100%, 0, 0); } }
20265
-
20266
- @keyframes fadeOutLeft {
20267
- from {
20268
- opacity: 1; }
20269
- to {
20270
- opacity: 0;
20271
- -webkit-transform: translate3d(-100%, 0, 0);
20272
- transform: translate3d(-100%, 0, 0); } }
20273
- .brz .fadeOutLeft {
20274
- -webkit-animation-name: fadeOutLeft;
20275
- animation-name: fadeOutLeft; }
20276
-
20277
- @-webkit-keyframes fadeOutLeftBig {
20278
- from {
20279
- opacity: 1; }
20280
- to {
20281
- opacity: 0;
20282
- -webkit-transform: translate3d(-2000px, 0, 0);
20283
- transform: translate3d(-2000px, 0, 0); } }
20284
-
20285
- @keyframes fadeOutLeftBig {
20286
- from {
20287
- opacity: 1; }
20288
- to {
20289
- opacity: 0;
20290
- -webkit-transform: translate3d(-2000px, 0, 0);
20291
- transform: translate3d(-2000px, 0, 0); } }
20292
- .brz .fadeOutLeftBig {
20293
- -webkit-animation-name: fadeOutLeftBig;
20294
- animation-name: fadeOutLeftBig; }
20295
-
20296
- @-webkit-keyframes fadeOutRight {
20297
- from {
20298
- opacity: 1; }
20299
- to {
20300
- opacity: 0;
20301
- -webkit-transform: translate3d(100%, 0, 0);
20302
- transform: translate3d(100%, 0, 0); } }
20303
-
20304
- @keyframes fadeOutRight {
20305
- from {
20306
- opacity: 1; }
20307
- to {
20308
- opacity: 0;
20309
- -webkit-transform: translate3d(100%, 0, 0);
20310
- transform: translate3d(100%, 0, 0); } }
20311
- .brz .fadeOutRight {
20312
- -webkit-animation-name: fadeOutRight;
20313
- animation-name: fadeOutRight; }
20314
-
20315
- @-webkit-keyframes fadeOutRightBig {
20316
- from {
20317
- opacity: 1; }
20318
- to {
20319
- opacity: 0;
20320
- -webkit-transform: translate3d(2000px, 0, 0);
20321
- transform: translate3d(2000px, 0, 0); } }
20322
-
20323
- @keyframes fadeOutRightBig {
20324
- from {
20325
- opacity: 1; }
20326
- to {
20327
- opacity: 0;
20328
- -webkit-transform: translate3d(2000px, 0, 0);
20329
- transform: translate3d(2000px, 0, 0); } }
20330
- .brz .fadeOutRightBig {
20331
- -webkit-animation-name: fadeOutRightBig;
20332
- animation-name: fadeOutRightBig; }
20333
-
20334
- @-webkit-keyframes fadeOutUp {
20335
- from {
20336
- opacity: 1; }
20337
- to {
20338
- opacity: 0;
20339
- -webkit-transform: translate3d(0, -100%, 0);
20340
- transform: translate3d(0, -100%, 0); } }
20341
-
20342
- @keyframes fadeOutUp {
20343
- from {
20344
- opacity: 1; }
20345
- to {
20346
- opacity: 0;
20347
- -webkit-transform: translate3d(0, -100%, 0);
20348
- transform: translate3d(0, -100%, 0); } }
20349
- .brz .fadeOutUp {
20350
- -webkit-animation-name: fadeOutUp;
20351
- animation-name: fadeOutUp; }
20352
-
20353
- @-webkit-keyframes fadeOutUpBig {
20354
- from {
20355
- opacity: 1; }
20356
- to {
20357
- opacity: 0;
20358
- -webkit-transform: translate3d(0, -2000px, 0);
20359
- transform: translate3d(0, -2000px, 0); } }
20360
-
20361
- @keyframes fadeOutUpBig {
20362
- from {
20363
- opacity: 1; }
20364
- to {
20365
- opacity: 0;
20366
- -webkit-transform: translate3d(0, -2000px, 0);
20367
- transform: translate3d(0, -2000px, 0); } }
20368
- .brz .fadeOutUpBig {
20369
- -webkit-animation-name: fadeOutUpBig;
20370
- animation-name: fadeOutUpBig; }
20371
-
20372
- @-webkit-keyframes flip {
20373
- from {
20374
- -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
20375
- transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
20376
- -webkit-animation-timing-function: ease-out;
20377
- animation-timing-function: ease-out; }
20378
- 40% {
20379
- -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
20380
- transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
20381
- -webkit-animation-timing-function: ease-out;
20382
- animation-timing-function: ease-out; }
20383
- 50% {
20384
- -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
20385
- transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
20386
- -webkit-animation-timing-function: ease-in;
20387
- animation-timing-function: ease-in; }
20388
- 80% {
20389
- -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
20390
- transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
20391
- -webkit-animation-timing-function: ease-in;
20392
- animation-timing-function: ease-in; }
20393
- to {
20394
- -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
20395
- transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
20396
- -webkit-animation-timing-function: ease-in;
20397
- animation-timing-function: ease-in; } }
20398
-
20399
- @keyframes flip {
20400
- from {
20401
- -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
20402
- transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
20403
- -webkit-animation-timing-function: ease-out;
20404
- animation-timing-function: ease-out; }
20405
- 40% {
20406
- -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
20407
- transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
20408
- -webkit-animation-timing-function: ease-out;
20409
- animation-timing-function: ease-out; }
20410
- 50% {
20411
- -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
20412
- transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
20413
- -webkit-animation-timing-function: ease-in;
20414
- animation-timing-function: ease-in; }
20415
- 80% {
20416
- -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
20417
- transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
20418
- -webkit-animation-timing-function: ease-in;
20419
- animation-timing-function: ease-in; }
20420
- to {
20421
- -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
20422
- transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
20423
- -webkit-animation-timing-function: ease-in;
20424
- animation-timing-function: ease-in; } }
20425
- .brz .animated.flip {
20426
- -webkit-backface-visibility: visible;
20427
- backface-visibility: visible;
20428
- -webkit-animation-name: flip;
20429
- animation-name: flip; }
20430
-
20431
- @-webkit-keyframes flipInX {
20432
- from {
20433
- -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
20434
- transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
20435
- -webkit-animation-timing-function: ease-in;
20436
- animation-timing-function: ease-in;
20437
- opacity: 0; }
20438
- 40% {
20439
- -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
20440
- transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
20441
- -webkit-animation-timing-function: ease-in;
20442
- animation-timing-function: ease-in; }
20443
- 60% {
20444
- -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
20445
- transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
20446
- opacity: 1; }
20447
- 80% {
20448
- -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
20449
- transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
20450
- to {
20451
- -webkit-transform: perspective(400px);
20452
- transform: perspective(400px); } }
20453
-
20454
- @keyframes flipInX {
20455
- from {
20456
- -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
20457
- transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
20458
- -webkit-animation-timing-function: ease-in;
20459
- animation-timing-function: ease-in;
20460
- opacity: 0; }
20461
- 40% {
20462
- -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
20463
- transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
20464
- -webkit-animation-timing-function: ease-in;
20465
- animation-timing-function: ease-in; }
20466
- 60% {
20467
- -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
20468
- transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
20469
- opacity: 1; }
20470
- 80% {
20471
- -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
20472
- transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
20473
- to {
20474
- -webkit-transform: perspective(400px);
20475
- transform: perspective(400px); } }
20476
- .brz .flipInX {
20477
- -webkit-backface-visibility: visible !important;
20478
- backface-visibility: visible !important;
20479
- -webkit-animation-name: flipInX;
20480
- animation-name: flipInX; }
20481
-
20482
- @-webkit-keyframes flipInY {
20483
- from {
20484
- -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
20485
- transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
20486
- -webkit-animation-timing-function: ease-in;
20487
- animation-timing-function: ease-in;
20488
- opacity: 0; }
20489
- 40% {
20490
- -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
20491
- transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
20492
- -webkit-animation-timing-function: ease-in;
20493
- animation-timing-function: ease-in; }
20494
- 60% {
20495
- -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
20496
- transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
20497
- opacity: 1; }
20498
- 80% {
20499
- -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
20500
- transform: perspective(400px) rotate3d(0, 1, 0, -5deg); }
20501
- to {
20502
- -webkit-transform: perspective(400px);
20503
- transform: perspective(400px); } }
20504
-
20505
- @keyframes flipInY {
20506
- from {
20507
- -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
20508
- transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
20509
- -webkit-animation-timing-function: ease-in;
20510
- animation-timing-function: ease-in;
20511
- opacity: 0; }
20512
- 40% {
20513
- -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
20514
- transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
20515
- -webkit-animation-timing-function: ease-in;
20516
- animation-timing-function: ease-in; }
20517
- 60% {
20518
- -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
20519
- transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
20520
- opacity: 1; }
20521
- 80% {
20522
- -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
20523
- transform: perspective(400px) rotate3d(0, 1, 0, -5deg); }
20524
- to {
20525
- -webkit-transform: perspective(400px);
20526
- transform: perspective(400px); } }
20527
- .brz .flipInY {
20528
- -webkit-backface-visibility: visible !important;
20529
- backface-visibility: visible !important;
20530
- -webkit-animation-name: flipInY;
20531
- animation-name: flipInY; }
20532
-
20533
- @-webkit-keyframes flipOutX {
20534
- from {
20535
- -webkit-transform: perspective(400px);
20536
- transform: perspective(400px); }
20537
- 30% {
20538
- -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
20539
- transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
20540
- opacity: 1; }
20541
- to {
20542
- -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
20543
- transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
20544
- opacity: 0; } }
20545
-
20546
- @keyframes flipOutX {
20547
- from {
20548
- -webkit-transform: perspective(400px);
20549
- transform: perspective(400px); }
20550
- 30% {
20551
- -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
20552
- transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
20553
- opacity: 1; }
20554
- to {
20555
- -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
20556
- transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
20557
- opacity: 0; } }
20558
- .brz .flipOutX {
20559
- -webkit-animation-duration: 0.75s;
20560
- animation-duration: 0.75s;
20561
- -webkit-animation-name: flipOutX;
20562
- animation-name: flipOutX;
20563
- -webkit-backface-visibility: visible !important;
20564
- backface-visibility: visible !important; }
20565
-
20566
- @-webkit-keyframes flipOutY {
20567
- from {
20568
- -webkit-transform: perspective(400px);
20569
- transform: perspective(400px); }
20570
- 30% {
20571
- -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
20572
- transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
20573
- opacity: 1; }
20574
- to {
20575
- -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
20576
- transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
20577
- opacity: 0; } }
20578
-
20579
- @keyframes flipOutY {
20580
- from {
20581
- -webkit-transform: perspective(400px);
20582
- transform: perspective(400px); }
20583
- 30% {
20584
- -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
20585
- transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
20586
- opacity: 1; }
20587
- to {
20588
- -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
20589
- transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
20590
- opacity: 0; } }
20591
- .brz .flipOutY {
20592
- -webkit-animation-duration: 0.75s;
20593
- animation-duration: 0.75s;
20594
- -webkit-backface-visibility: visible !important;
20595
- backface-visibility: visible !important;
20596
- -webkit-animation-name: flipOutY;
20597
- animation-name: flipOutY; }
20598
-
20599
- @-webkit-keyframes lightSpeedIn {
20600
- from {
20601
- -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
20602
- transform: translate3d(100%, 0, 0) skewX(-30deg);
20603
- opacity: 0; }
20604
- 60% {
20605
- -webkit-transform: skewX(20deg);
20606
- transform: skewX(20deg);
20607
- opacity: 1; }
20608
- 80% {
20609
- -webkit-transform: skewX(-5deg);
20610
- transform: skewX(-5deg); }
20611
- to {
20612
- -webkit-transform: translate3d(0, 0, 0);
20613
- transform: translate3d(0, 0, 0); } }
20614
-
20615
- @keyframes lightSpeedIn {
20616
- from {
20617
- -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
20618
- transform: translate3d(100%, 0, 0) skewX(-30deg);
20619
- opacity: 0; }
20620
- 60% {
20621
- -webkit-transform: skewX(20deg);
20622
- transform: skewX(20deg);
20623
- opacity: 1; }
20624
- 80% {
20625
- -webkit-transform: skewX(-5deg);
20626
- transform: skewX(-5deg); }
20627
- to {
20628
- -webkit-transform: translate3d(0, 0, 0);
20629
- transform: translate3d(0, 0, 0); } }
20630
- .brz .lightSpeedIn {
20631
- -webkit-animation-name: lightSpeedIn;
20632
- animation-name: lightSpeedIn;
20633
- -webkit-animation-timing-function: ease-out;
20634
- animation-timing-function: ease-out; }
20635
-
20636
- @-webkit-keyframes lightSpeedOut {
20637
- from {
20638
- opacity: 1; }
20639
- to {
20640
- -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
20641
- transform: translate3d(100%, 0, 0) skewX(30deg);
20642
- opacity: 0; } }
20643
-
20644
- @keyframes lightSpeedOut {
20645
- from {
20646
- opacity: 1; }
20647
- to {
20648
- -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
20649
- transform: translate3d(100%, 0, 0) skewX(30deg);
20650
- opacity: 0; } }
20651
- .brz .lightSpeedOut {
20652
- -webkit-animation-name: lightSpeedOut;
20653
- animation-name: lightSpeedOut;
20654
- -webkit-animation-timing-function: ease-in;
20655
- animation-timing-function: ease-in; }
20656
-
20657
- @-webkit-keyframes rotateIn {
20658
- from {
20659
- -webkit-transform-origin: center;
20660
- transform-origin: center;
20661
- -webkit-transform: rotate3d(0, 0, 1, -200deg);
20662
- transform: rotate3d(0, 0, 1, -200deg);
20663
- opacity: 0; }
20664
- to {
20665
- -webkit-transform-origin: center;
20666
- transform-origin: center;
20667
- -webkit-transform: translate3d(0, 0, 0);
20668
- transform: translate3d(0, 0, 0);
20669
- opacity: 1; } }
20670
-
20671
- @keyframes rotateIn {
20672
- from {
20673
- -webkit-transform-origin: center;
20674
- transform-origin: center;
20675
- -webkit-transform: rotate3d(0, 0, 1, -200deg);
20676
- transform: rotate3d(0, 0, 1, -200deg);
20677
- opacity: 0; }
20678
- to {
20679
- -webkit-transform-origin: center;
20680
- transform-origin: center;
20681
- -webkit-transform: translate3d(0, 0, 0);
20682
- transform: translate3d(0, 0, 0);
20683
- opacity: 1; } }
20684
- .brz .rotateIn {
20685
- -webkit-animation-name: rotateIn;
20686
- animation-name: rotateIn; }
20687
-
20688
- @-webkit-keyframes rotateInDownLeft {
20689
- from {
20690
- -webkit-transform-origin: left bottom;
20691
- transform-origin: left bottom;
20692
- -webkit-transform: rotate3d(0, 0, 1, -45deg);
20693
- transform: rotate3d(0, 0, 1, -45deg);
20694
- opacity: 0; }
20695
- to {
20696
- -webkit-transform-origin: left bottom;
20697
- transform-origin: left bottom;
20698
- -webkit-transform: translate3d(0, 0, 0);
20699
- transform: translate3d(0, 0, 0);
20700
- opacity: 1; } }
20701
-
20702
- @keyframes rotateInDownLeft {
20703
- from {
20704
- -webkit-transform-origin: left bottom;
20705
- transform-origin: left bottom;
20706
- -webkit-transform: rotate3d(0, 0, 1, -45deg);
20707
- transform: rotate3d(0, 0, 1, -45deg);
20708
- opacity: 0; }
20709
- to {
20710
- -webkit-transform-origin: left bottom;
20711
- transform-origin: left bottom;
20712
- -webkit-transform: translate3d(0, 0, 0);
20713
- transform: translate3d(0, 0, 0);
20714
- opacity: 1; } }
20715
- .brz .rotateInDownLeft {
20716
- -webkit-animation-name: rotateInDownLeft;
20717
- animation-name: rotateInDownLeft; }
20718
-
20719
- @-webkit-keyframes rotateInDownRight {
20720
- from {
20721
- -webkit-transform-origin: right bottom;
20722
- transform-origin: right bottom;
20723
- -webkit-transform: rotate3d(0, 0, 1, 45deg);
20724
- transform: rotate3d(0, 0, 1, 45deg);
20725
- opacity: 0; }
20726
- to {
20727
- -webkit-transform-origin: right bottom;
20728
- transform-origin: right bottom;
20729
- -webkit-transform: translate3d(0, 0, 0);
20730
- transform: translate3d(0, 0, 0);
20731
- opacity: 1; } }
20732
-
20733
- @keyframes rotateInDownRight {
20734
- from {
20735
- -webkit-transform-origin: right bottom;
20736
- transform-origin: right bottom;
20737
- -webkit-transform: rotate3d(0, 0, 1, 45deg);
20738
- transform: rotate3d(0, 0, 1, 45deg);
20739
- opacity: 0; }
20740
- to {
20741
- -webkit-transform-origin: right bottom;
20742
- transform-origin: right bottom;
20743
- -webkit-transform: translate3d(0, 0, 0);
20744
- transform: translate3d(0, 0, 0);
20745
- opacity: 1; } }
20746
- .brz .rotateInDownRight {
20747
- -webkit-animation-name: rotateInDownRight;
20748
- animation-name: rotateInDownRight; }
20749
-
20750
- @-webkit-keyframes rotateInUpLeft {
20751
- from {
20752
- -webkit-transform-origin: left bottom;
20753
- transform-origin: left bottom;
20754
- -webkit-transform: rotate3d(0, 0, 1, 45deg);
20755
- transform: rotate3d(0, 0, 1, 45deg);
20756
- opacity: 0; }
20757
- to {
20758
- -webkit-transform-origin: left bottom;
20759
- transform-origin: left bottom;
20760
- -webkit-transform: translate3d(0, 0, 0);
20761
- transform: translate3d(0, 0, 0);
20762
- opacity: 1; } }
20763
-
20764
- @keyframes rotateInUpLeft {
20765
- from {
20766
- -webkit-transform-origin: left bottom;
20767
- transform-origin: left bottom;
20768
- -webkit-transform: rotate3d(0, 0, 1, 45deg);
20769
- transform: rotate3d(0, 0, 1, 45deg);
20770
- opacity: 0; }
20771
- to {
20772
- -webkit-transform-origin: left bottom;
20773
- transform-origin: left bottom;
20774
- -webkit-transform: translate3d(0, 0, 0);
20775
- transform: translate3d(0, 0, 0);
20776
- opacity: 1; } }
20777
- .brz .rotateInUpLeft {
20778
- -webkit-animation-name: rotateInUpLeft;
20779
- animation-name: rotateInUpLeft; }
20780
-
20781
- @-webkit-keyframes rotateInUpRight {
20782
- from {
20783
- -webkit-transform-origin: right bottom;
20784
- transform-origin: right bottom;
20785
- -webkit-transform: rotate3d(0, 0, 1, -90deg);
20786
- transform: rotate3d(0, 0, 1, -90deg);
20787
- opacity: 0; }
20788
- to {
20789
- -webkit-transform-origin: right bottom;
20790
- transform-origin: right bottom;
20791
- -webkit-transform: translate3d(0, 0, 0);
20792
- transform: translate3d(0, 0, 0);
20793
- opacity: 1; } }
20794
-
20795
- @keyframes rotateInUpRight {
20796
- from {
20797
- -webkit-transform-origin: right bottom;
20798
- transform-origin: right bottom;
20799
- -webkit-transform: rotate3d(0, 0, 1, -90deg);
20800
- transform: rotate3d(0, 0, 1, -90deg);
20801
- opacity: 0; }
20802
- to {
20803
- -webkit-transform-origin: right bottom;
20804
- transform-origin: right bottom;
20805
- -webkit-transform: translate3d(0, 0, 0);
20806
- transform: translate3d(0, 0, 0);
20807
- opacity: 1; } }
20808
- .brz .rotateInUpRight {
20809
- -webkit-animation-name: rotateInUpRight;
20810
- animation-name: rotateInUpRight; }
20811
-
20812
- @-webkit-keyframes rotateOut {
20813
- from {
20814
- -webkit-transform-origin: center;
20815
- transform-origin: center;
20816
- opacity: 1; }
20817
- to {
20818
- -webkit-transform-origin: center;
20819
- transform-origin: center;
20820
- -webkit-transform: rotate3d(0, 0, 1, 200deg);
20821
- transform: rotate3d(0, 0, 1, 200deg);
20822
- opacity: 0; } }
20823
-
20824
- @keyframes rotateOut {
20825
- from {
20826
- -webkit-transform-origin: center;
20827
- transform-origin: center;
20828
- opacity: 1; }
20829
- to {
20830
- -webkit-transform-origin: center;
20831
- transform-origin: center;
20832
- -webkit-transform: rotate3d(0, 0, 1, 200deg);
20833
- transform: rotate3d(0, 0, 1, 200deg);
20834
- opacity: 0; } }
20835
- .brz .rotateOut {
20836
- -webkit-animation-name: rotateOut;
20837
- animation-name: rotateOut; }
20838
-
20839
- @-webkit-keyframes rotateOutDownLeft {
20840
- from {
20841
- -webkit-transform-origin: left bottom;
20842
- transform-origin: left bottom;
20843
- opacity: 1; }
20844
- to {
20845
- -webkit-transform-origin: left bottom;
20846
- transform-origin: left bottom;
20847
- -webkit-transform: rotate3d(0, 0, 1, 45deg);
20848
- transform: rotate3d(0, 0, 1, 45deg);
20849
- opacity: 0; } }
20850
-
20851
- @keyframes rotateOutDownLeft {
20852
- from {
20853
- -webkit-transform-origin: left bottom;
20854
- transform-origin: left bottom;
20855
- opacity: 1; }
20856
- to {
20857
- -webkit-transform-origin: left bottom;
20858
- transform-origin: left bottom;
20859
- -webkit-transform: rotate3d(0, 0, 1, 45deg);
20860
- transform: rotate3d(0, 0, 1, 45deg);
20861
- opacity: 0; } }
20862
- .brz .rotateOutDownLeft {
20863
- -webkit-animation-name: rotateOutDownLeft;
20864
- animation-name: rotateOutDownLeft; }
20865
-
20866
- @-webkit-keyframes rotateOutDownRight {
20867
- from {
20868
- -webkit-transform-origin: right bottom;
20869
- transform-origin: right bottom;
20870
- opacity: 1; }
20871
- to {
20872
- -webkit-transform-origin: right bottom;
20873
- transform-origin: right bottom;
20874
- -webkit-transform: rotate3d(0, 0, 1, -45deg);
20875
- transform: rotate3d(0, 0, 1, -45deg);
20876
- opacity: 0; } }
20877
-
20878
- @keyframes rotateOutDownRight {
20879
- from {
20880
- -webkit-transform-origin: right bottom;
20881
- transform-origin: right bottom;
20882
- opacity: 1; }
20883
- to {
20884
- -webkit-transform-origin: right bottom;
20885
- transform-origin: right bottom;
20886
- -webkit-transform: rotate3d(0, 0, 1, -45deg);
20887
- transform: rotate3d(0, 0, 1, -45deg);
20888
- opacity: 0; } }
20889
- .brz .rotateOutDownRight {
20890
- -webkit-animation-name: rotateOutDownRight;
20891
- animation-name: rotateOutDownRight; }
20892
-
20893
- @-webkit-keyframes rotateOutUpLeft {
20894
- from {
20895
- -webkit-transform-origin: left bottom;
20896
- transform-origin: left bottom;
20897
- opacity: 1; }
20898
- to {
20899
- -webkit-transform-origin: left bottom;
20900
- transform-origin: left bottom;
20901
- -webkit-transform: rotate3d(0, 0, 1, -45deg);
20902
- transform: rotate3d(0, 0, 1, -45deg);
20903
- opacity: 0; } }
20904
-
20905
- @keyframes rotateOutUpLeft {
20906
- from {
20907
- -webkit-transform-origin: left bottom;
20908
- transform-origin: left bottom;
20909
- opacity: 1; }
20910
- to {
20911
- -webkit-transform-origin: left bottom;
20912
- transform-origin: left bottom;
20913
- -webkit-transform: rotate3d(0, 0, 1, -45deg);
20914
- transform: rotate3d(0, 0, 1, -45deg);
20915
- opacity: 0; } }
20916
- .brz .rotateOutUpLeft {
20917
- -webkit-animation-name: rotateOutUpLeft;
20918
- animation-name: rotateOutUpLeft; }
20919
-
20920
- @-webkit-keyframes rotateOutUpRight {
20921
- from {
20922
- -webkit-transform-origin: right bottom;
20923
- transform-origin: right bottom;
20924
- opacity: 1; }
20925
- to {
20926
- -webkit-transform-origin: right bottom;
20927
- transform-origin: right bottom;
20928
- -webkit-transform: rotate3d(0, 0, 1, 90deg);
20929
- transform: rotate3d(0, 0, 1, 90deg);
20930
- opacity: 0; } }
20931
-
20932
- @keyframes rotateOutUpRight {
20933
- from {
20934
- -webkit-transform-origin: right bottom;
20935
- transform-origin: right bottom;
20936
- opacity: 1; }
20937
- to {
20938
- -webkit-transform-origin: right bottom;
20939
- transform-origin: right bottom;
20940
- -webkit-transform: rotate3d(0, 0, 1, 90deg);
20941
- transform: rotate3d(0, 0, 1, 90deg);
20942
- opacity: 0; } }
20943
- .brz .rotateOutUpRight {
20944
- -webkit-animation-name: rotateOutUpRight;
20945
- animation-name: rotateOutUpRight; }
20946
-
20947
- @-webkit-keyframes hinge {
20948
- 0% {
20949
- -webkit-transform-origin: top left;
20950
- transform-origin: top left;
20951
- -webkit-animation-timing-function: ease-in-out;
20952
- animation-timing-function: ease-in-out; }
20953
- 20%,
20954
- 60% {
20955
- -webkit-transform: rotate3d(0, 0, 1, 80deg);
20956
- transform: rotate3d(0, 0, 1, 80deg);
20957
- -webkit-transform-origin: top left;
20958
- transform-origin: top left;
20959
- -webkit-animation-timing-function: ease-in-out;
20960
- animation-timing-function: ease-in-out; }
20961
- 40%,
20962
- 80% {
20963
- -webkit-transform: rotate3d(0, 0, 1, 60deg);
20964
- transform: rotate3d(0, 0, 1, 60deg);
20965
- -webkit-transform-origin: top left;
20966
- transform-origin: top left;
20967
- -webkit-animation-timing-function: ease-in-out;
20968
- animation-timing-function: ease-in-out;
20969
- opacity: 1; }
20970
- to {
20971
- -webkit-transform: translate3d(0, 700px, 0);
20972
- transform: translate3d(0, 700px, 0);
20973
- opacity: 0; } }
20974
-
20975
- @keyframes hinge {
20976
- 0% {
20977
- -webkit-transform-origin: top left;
20978
- transform-origin: top left;
20979
- -webkit-animation-timing-function: ease-in-out;
20980
- animation-timing-function: ease-in-out; }
20981
- 20%,
20982
- 60% {
20983
- -webkit-transform: rotate3d(0, 0, 1, 80deg);
20984
- transform: rotate3d(0, 0, 1, 80deg);
20985
- -webkit-transform-origin: top left;
20986
- transform-origin: top left;
20987
- -webkit-animation-timing-function: ease-in-out;
20988
- animation-timing-function: ease-in-out; }
20989
- 40%,
20990
- 80% {
20991
- -webkit-transform: rotate3d(0, 0, 1, 60deg);
20992
- transform: rotate3d(0, 0, 1, 60deg);
20993
- -webkit-transform-origin: top left;
20994
- transform-origin: top left;
20995
- -webkit-animation-timing-function: ease-in-out;
20996
- animation-timing-function: ease-in-out;
20997
- opacity: 1; }
20998
- to {
20999
- -webkit-transform: translate3d(0, 700px, 0);
21000
- transform: translate3d(0, 700px, 0);
21001
- opacity: 0; } }
21002
- .brz .hinge {
21003
- -webkit-animation-duration: 2s;
21004
- animation-duration: 2s;
21005
- -webkit-animation-name: hinge;
21006
- animation-name: hinge; }
21007
-
21008
- @-webkit-keyframes jackInTheBox {
21009
- from {
21010
- opacity: 0;
21011
- -webkit-transform: scale(0.1) rotate(30deg);
21012
- transform: scale(0.1) rotate(30deg);
21013
- -webkit-transform-origin: center bottom;
21014
- transform-origin: center bottom; }
21015
- 50% {
21016
- -webkit-transform: rotate(-10deg);
21017
- transform: rotate(-10deg); }
21018
- 70% {
21019
- -webkit-transform: rotate(3deg);
21020
- transform: rotate(3deg); }
21021
- to {
21022
- opacity: 1;
21023
- -webkit-transform: scale(1);
21024
- transform: scale(1); } }
21025
-
21026
- @keyframes jackInTheBox {
21027
- from {
21028
- opacity: 0;
21029
- -webkit-transform: scale(0.1) rotate(30deg);
21030
- transform: scale(0.1) rotate(30deg);
21031
- -webkit-transform-origin: center bottom;
21032
- transform-origin: center bottom; }
21033
- 50% {
21034
- -webkit-transform: rotate(-10deg);
21035
- transform: rotate(-10deg); }
21036
- 70% {
21037
- -webkit-transform: rotate(3deg);
21038
- transform: rotate(3deg); }
21039
- to {
21040
- opacity: 1;
21041
- -webkit-transform: scale(1);
21042
- transform: scale(1); } }
21043
- .brz .jackInTheBox {
21044
- -webkit-animation-name: jackInTheBox;
21045
- animation-name: jackInTheBox; }
21046
-
21047
- @-webkit-keyframes rollIn {
21048
- from {
21049
- opacity: 0;
21050
- -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
21051
- transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }
21052
- to {
21053
- opacity: 1;
21054
- -webkit-transform: translate3d(0, 0, 0);
21055
- transform: translate3d(0, 0, 0); } }
21056
-
21057
- @keyframes rollIn {
21058
- from {
21059
- opacity: 0;
21060
- -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
21061
- transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }
21062
- to {
21063
- opacity: 1;
21064
- -webkit-transform: translate3d(0, 0, 0);
21065
- transform: translate3d(0, 0, 0); } }
21066
- .brz .rollIn {
21067
- -webkit-animation-name: rollIn;
21068
- animation-name: rollIn; }
21069
-
21070
- @-webkit-keyframes rollOut {
21071
- from {
21072
- opacity: 1; }
21073
- to {
21074
- opacity: 0;
21075
- -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
21076
- transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } }
21077
-
21078
- @keyframes rollOut {
21079
- from {
21080
- opacity: 1; }
21081
- to {
21082
- opacity: 0;
21083
- -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
21084
- transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } }
21085
- .brz .rollOut {
21086
- -webkit-animation-name: rollOut;
21087
- animation-name: rollOut; }
21088
-
21089
- @-webkit-keyframes zoomIn {
21090
- from {
21091
- opacity: 0;
21092
- -webkit-transform: scale3d(0.3, 0.3, 0.3);
21093
- transform: scale3d(0.3, 0.3, 0.3); }
21094
- 50% {
21095
- opacity: 1; } }
21096
-
21097
- @keyframes zoomIn {
21098
- from {
21099
- opacity: 0;
21100
- -webkit-transform: scale3d(0.3, 0.3, 0.3);
21101
- transform: scale3d(0.3, 0.3, 0.3); }
21102
- 50% {
21103
- opacity: 1; } }
21104
- .brz .zoomIn {
21105
- -webkit-animation-name: zoomIn;
21106
- animation-name: zoomIn; }
21107
-
21108
- @-webkit-keyframes zoomInDown {
21109
- from {
21110
- opacity: 0;
21111
- -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
21112
- transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
21113
- -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
21114
- animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
21115
- 60% {
21116
- opacity: 1;
21117
- -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
21118
- transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
21119
- -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
21120
- animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
21121
-
21122
- @keyframes zoomInDown {
21123
- from {
21124
- opacity: 0;
21125
- -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
21126
- transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
21127
- -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
21128
- animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
21129
- 60% {
21130
- opacity: 1;
21131
- -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
21132
- transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
21133
- -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
21134
- animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
21135
- .brz .zoomInDown {
21136
- -webkit-animation-name: zoomInDown;
21137
- animation-name: zoomInDown; }
21138
-
21139
- @-webkit-keyframes zoomInLeft {
21140
- from {
21141
- opacity: 0;
21142
- -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
21143
- transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
21144
- -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
21145
- animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
21146
- 60% {
21147
- opacity: 1;
21148
- -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
21149
- transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
21150
- -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
21151
- animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
21152
-
21153
- @keyframes zoomInLeft {
21154
- from {
21155
- opacity: 0;
21156
- -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
21157
- transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
21158
- -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
21159
- animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
21160
- 60% {
21161
- opacity: 1;
21162
- -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
21163
- transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
21164
- -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
21165
- animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
21166
- .brz .zoomInLeft {
21167
- -webkit-animation-name: zoomInLeft;
21168
- animation-name: zoomInLeft; }
21169
-
21170
- @-webkit-keyframes zoomInRight {
21171
- from {
21172
- opacity: 0;
21173
- -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
21174
- transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
21175
- -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
21176
- animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
21177
- 60% {
21178
- opacity: 1;
21179
- -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
21180
- transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
21181
- -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
21182
- animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
21183
-
21184
- @keyframes zoomInRight {
21185
- from {
21186
- opacity: 0;
21187
- -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
21188
- transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
21189
- -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
21190
- animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
21191
- 60% {
21192
- opacity: 1;
21193
- -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
21194
- transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
21195
- -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
21196
- animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
21197
- .brz .zoomInRight {
21198
- -webkit-animation-name: zoomInRight;
21199
- animation-name: zoomInRight; }
21200
-
21201
- @-webkit-keyframes zoomInUp {
21202
- from {
21203
- opacity: 0;
21204
- -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
21205
- transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
21206
- -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
21207
- animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
21208
- 60% {
21209
- opacity: 1;
21210
- -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
21211
- transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
21212
- -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
21213
- animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
21214
-
21215
- @keyframes zoomInUp {
21216
- from {
21217
- opacity: 0;
21218
- -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
21219
- transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
21220
- -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
21221
- animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
21222
- 60% {
21223
- opacity: 1;
21224
- -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
21225
- transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
21226
- -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
21227
- animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
21228
- .brz .zoomInUp {
21229
- -webkit-animation-name: zoomInUp;
21230
- animation-name: zoomInUp; }
21231
-
21232
- @-webkit-keyframes zoomOut {
21233
- from {
21234
- opacity: 1; }
21235
- 50% {
21236
- opacity: 0;
21237
- -webkit-transform: scale3d(0.3, 0.3, 0.3);
21238
- transform: scale3d(0.3, 0.3, 0.3); }
21239
- to {
21240
- opacity: 0; } }
21241
-
21242
- @keyframes zoomOut {
21243
- from {
21244
- opacity: 1; }
21245
- 50% {
21246
- opacity: 0;
21247
- -webkit-transform: scale3d(0.3, 0.3, 0.3);
21248
- transform: scale3d(0.3, 0.3, 0.3); }
21249
- to {
21250
- opacity: 0; } }
21251
- .brz .zoomOut {
21252
- -webkit-animation-name: zoomOut;
21253
- animation-name: zoomOut; }
21254
-
21255
- @-webkit-keyframes zoomOutDown {
21256
- 40% {
21257
- opacity: 1;
21258
- -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
21259
- transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
21260
- -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
21261
- animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
21262
- to {
21263
- opacity: 0;
21264
- -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
21265
- transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
21266
- -webkit-transform-origin: center bottom;
21267
- transform-origin: center bottom;
21268
- -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
21269
- animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
21270
-
21271
- @keyframes zoomOutDown {
21272
- 40% {
21273
- opacity: 1;
21274
- -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
21275
- transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
21276
- -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
21277
- animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
21278
- to {
21279
- opacity: 0;
21280
- -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
21281
- transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
21282
- -webkit-transform-origin: center bottom;
21283
- transform-origin: center bottom;
21284
- -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
21285
- animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
21286
- .brz .zoomOutDown {
21287
- -webkit-animation-name: zoomOutDown;
21288
- animation-name: zoomOutDown; }
21289
-
21290
- @-webkit-keyframes zoomOutLeft {
21291
- 40% {
21292
- opacity: 1;
21293
- -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
21294
- transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
21295
- to {
21296
- opacity: 0;
21297
- -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
21298
- transform: scale(0.1) translate3d(-2000px, 0, 0);
21299
- -webkit-transform-origin: left center;
21300
- transform-origin: left center; } }
21301
-
21302
- @keyframes zoomOutLeft {
21303
- 40% {
21304
- opacity: 1;
21305
- -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
21306
- transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
21307
- to {
21308
- opacity: 0;
21309
- -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
21310
- transform: scale(0.1) translate3d(-2000px, 0, 0);
21311
- -webkit-transform-origin: left center;
21312
- transform-origin: left center; } }
21313
- .brz .zoomOutLeft {
21314
- -webkit-animation-name: zoomOutLeft;
21315
- animation-name: zoomOutLeft; }
21316
-
21317
- @-webkit-keyframes zoomOutRight {
21318
- 40% {
21319
- opacity: 1;
21320
- -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
21321
- transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
21322
- to {
21323
- opacity: 0;
21324
- -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
21325
- transform: scale(0.1) translate3d(2000px, 0, 0);
21326
- -webkit-transform-origin: right center;
21327
- transform-origin: right center; } }
21328
-
21329
- @keyframes zoomOutRight {
21330
- 40% {
21331
- opacity: 1;
21332
- -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
21333
- transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
21334
- to {
21335
- opacity: 0;
21336
- -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
21337
- transform: scale(0.1) translate3d(2000px, 0, 0);
21338
- -webkit-transform-origin: right center;
21339
- transform-origin: right center; } }
21340
- .brz .zoomOutRight {
21341
- -webkit-animation-name: zoomOutRight;
21342
- animation-name: zoomOutRight; }
21343
-
21344
- @-webkit-keyframes zoomOutUp {
21345
- 40% {
21346
- opacity: 1;
21347
- -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
21348
- transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
21349
- -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
21350
- animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
21351
- to {
21352
- opacity: 0;
21353
- -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
21354
- transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
21355
- -webkit-transform-origin: center bottom;
21356
- transform-origin: center bottom;
21357
- -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
21358
- animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
21359
-
21360
- @keyframes zoomOutUp {
21361
- 40% {
21362
- opacity: 1;
21363
- -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
21364
- transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
21365
- -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
21366
- animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
21367
- to {
21368
- opacity: 0;
21369
- -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
21370
- transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
21371
- -webkit-transform-origin: center bottom;
21372
- transform-origin: center bottom;
21373
- -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
21374
- animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
21375
- .brz .zoomOutUp {
21376
- -webkit-animation-name: zoomOutUp;
21377
- animation-name: zoomOutUp; }
21378
-
21379
- @-webkit-keyframes slideInDown {
21380
- from {
21381
- -webkit-transform: translate3d(0, -100%, 0);
21382
- transform: translate3d(0, -100%, 0);
21383
- visibility: visible; }
21384
- to {
21385
- -webkit-transform: translate3d(0, 0, 0);
21386
- transform: translate3d(0, 0, 0); } }
21387
-
21388
- @keyframes slideInDown {
21389
- from {
21390
- -webkit-transform: translate3d(0, -100%, 0);
21391
- transform: translate3d(0, -100%, 0);
21392
- visibility: visible; }
21393
- to {
21394
- -webkit-transform: translate3d(0, 0, 0);
21395
- transform: translate3d(0, 0, 0); } }
21396
- .brz .slideInDown {
21397
- -webkit-animation-name: slideInDown;
21398
- animation-name: slideInDown; }
21399
-
21400
- @-webkit-keyframes slideInLeft {
21401
- from {
21402
- -webkit-transform: translate3d(-100%, 0, 0);
21403
- transform: translate3d(-100%, 0, 0);
21404
- visibility: visible; }
21405
- to {
21406
- -webkit-transform: translate3d(0, 0, 0);
21407
- transform: translate3d(0, 0, 0); } }
21408
-
21409
- @keyframes slideInLeft {
21410
- from {
21411
- -webkit-transform: translate3d(-100%, 0, 0);
21412
- transform: translate3d(-100%, 0, 0);
21413
- visibility: visible; }
21414
- to {
21415
- -webkit-transform: translate3d(0, 0, 0);
21416
- transform: translate3d(0, 0, 0); } }
21417
- .brz .slideInLeft {
21418
- -webkit-animation-name: slideInLeft;
21419
- animation-name: slideInLeft; }
21420
-
21421
- @-webkit-keyframes slideInRight {
21422
- from {
21423
- -webkit-transform: translate3d(100%, 0, 0);
21424
- transform: translate3d(100%, 0, 0);
21425
- visibility: visible; }
21426
- to {
21427
- -webkit-transform: translate3d(0, 0, 0);
21428
- transform: translate3d(0, 0, 0); } }
21429
-
21430
- @keyframes slideInRight {
21431
- from {
21432
- -webkit-transform: translate3d(100%, 0, 0);
21433
- transform: translate3d(100%, 0, 0);
21434
- visibility: visible; }
21435
- to {
21436
- -webkit-transform: translate3d(0, 0, 0);
21437
- transform: translate3d(0, 0, 0); } }
21438
- .brz .slideInRight {
21439
- -webkit-animation-name: slideInRight;
21440
- animation-name: slideInRight; }
21441
-
21442
- @-webkit-keyframes slideInUp {
21443
- from {
21444
- -webkit-transform: translate3d(0, 100%, 0);
21445
- transform: translate3d(0, 100%, 0);
21446
- visibility: visible; }
21447
- to {
21448
- -webkit-transform: translate3d(0, 0, 0);
21449
- transform: translate3d(0, 0, 0); } }
21450
-
21451
- @keyframes slideInUp {
21452
- from {
21453
- -webkit-transform: translate3d(0, 100%, 0);
21454
- transform: translate3d(0, 100%, 0);
21455
- visibility: visible; }
21456
- to {
21457
- -webkit-transform: translate3d(0, 0, 0);
21458
- transform: translate3d(0, 0, 0); } }
21459
- .brz .slideInUp {
21460
- -webkit-animation-name: slideInUp;
21461
- animation-name: slideInUp; }
21462
-
21463
- @-webkit-keyframes slideOutDown {
21464
- from {
21465
- -webkit-transform: translate3d(0, 0, 0);
21466
- transform: translate3d(0, 0, 0); }
21467
- to {
21468
- visibility: hidden;
21469
- -webkit-transform: translate3d(0, 100%, 0);
21470
- transform: translate3d(0, 100%, 0); } }
21471
-
21472
- @keyframes slideOutDown {
21473
- from {
21474
- -webkit-transform: translate3d(0, 0, 0);
21475
- transform: translate3d(0, 0, 0); }
21476
- to {
21477
- visibility: hidden;
21478
- -webkit-transform: translate3d(0, 100%, 0);
21479
- transform: translate3d(0, 100%, 0); } }
21480
- .brz .slideOutDown {
21481
- -webkit-animation-name: slideOutDown;
21482
- animation-name: slideOutDown; }
21483
-
21484
- @-webkit-keyframes slideOutLeft {
21485
- from {
21486
- -webkit-transform: translate3d(0, 0, 0);
21487
- transform: translate3d(0, 0, 0); }
21488
- to {
21489
- visibility: hidden;
21490
- -webkit-transform: translate3d(-100%, 0, 0);
21491
- transform: translate3d(-100%, 0, 0); } }
21492
-
21493
- @keyframes slideOutLeft {
21494
- from {
21495
- -webkit-transform: translate3d(0, 0, 0);
21496
- transform: translate3d(0, 0, 0); }
21497
- to {
21498
- visibility: hidden;
21499
- -webkit-transform: translate3d(-100%, 0, 0);
21500
- transform: translate3d(-100%, 0, 0); } }
21501
- .brz .slideOutLeft {
21502
- -webkit-animation-name: slideOutLeft;
21503
- animation-name: slideOutLeft; }
21504
-
21505
- @-webkit-keyframes slideOutRight {
21506
- from {
21507
- -webkit-transform: translate3d(0, 0, 0);
21508
- transform: translate3d(0, 0, 0); }
21509
- to {
21510
- visibility: hidden;
21511
- -webkit-transform: translate3d(100%, 0, 0);
21512
- transform: translate3d(100%, 0, 0); } }
21513
-
21514
- @keyframes slideOutRight {
21515
- from {
21516
- -webkit-transform: translate3d(0, 0, 0);
21517
- transform: translate3d(0, 0, 0); }
21518
- to {
21519
- visibility: hidden;
21520
- -webkit-transform: translate3d(100%, 0, 0);
21521
- transform: translate3d(100%, 0, 0); } }
21522
- .brz .slideOutRight {
21523
- -webkit-animation-name: slideOutRight;
21524
- animation-name: slideOutRight; }
21525
-
21526
- @-webkit-keyframes slideOutUp {
21527
- from {
21528
- -webkit-transform: translate3d(0, 0, 0);
21529
- transform: translate3d(0, 0, 0); }
21530
- to {
21531
- visibility: hidden;
21532
- -webkit-transform: translate3d(0, -100%, 0);
21533
- transform: translate3d(0, -100%, 0); } }
21534
-
21535
- @keyframes slideOutUp {
21536
- from {
21537
- -webkit-transform: translate3d(0, 0, 0);
21538
- transform: translate3d(0, 0, 0); }
21539
- to {
21540
- visibility: hidden;
21541
- -webkit-transform: translate3d(0, -100%, 0);
21542
- transform: translate3d(0, -100%, 0); } }
21543
- .brz .slideOutUp {
21544
- -webkit-animation-name: slideOutUp;
21545
- animation-name: slideOutUp; }
21546
- .brz .animated {
21547
- -webkit-animation-duration: 1s;
21548
- animation-duration: 1s;
21549
- -webkit-animation-fill-mode: both;
21550
- animation-fill-mode: both; }
21551
- .brz .animated.infinite {
21552
- -webkit-animation-iteration-count: infinite;
21553
- animation-iteration-count: infinite; }
21554
- .brz .animated.delay-1s {
21555
- -webkit-animation-delay: 1s;
21556
- animation-delay: 1s; }
21557
- .brz .animated.delay-2s {
21558
- -webkit-animation-delay: 2s;
21559
- animation-delay: 2s; }
21560
- .brz .animated.delay-3s {
21561
- -webkit-animation-delay: 3s;
21562
- animation-delay: 3s; }
21563
- .brz .animated.delay-4s {
21564
- -webkit-animation-delay: 4s;
21565
- animation-delay: 4s; }
21566
- .brz .animated.delay-5s {
21567
- -webkit-animation-delay: 5s;
21568
- animation-delay: 5s; }
21569
- .brz .animated.fast {
21570
- -webkit-animation-duration: 800ms;
21571
- animation-duration: 800ms; }
21572
- .brz .animated.faster {
21573
- -webkit-animation-duration: 500ms;
21574
- animation-duration: 500ms; }
21575
- .brz .animated.slow {
21576
- -webkit-animation-duration: 2s;
21577
- animation-duration: 2s; }
21578
- .brz .animated.slower {
21579
- -webkit-animation-duration: 3s;
21580
- animation-duration: 3s; }
21581
- @media (print), (prefers-reduced-motion: reduce) {
21582
- .brz .animated {
21583
- -webkit-animation-duration: 1ms !important;
21584
- animation-duration: 1ms !important;
21585
- -webkit-transition-duration: 1ms !important;
21586
- transition-duration: 1ms !important;
21587
- -webkit-animation-iteration-count: 1 !important;
21588
- animation-iteration-count: 1 !important; } }
21589
- .brz .brz-animated {
21590
- opacity: 0;
21591
- -webkit-animation-fill-mode: backwards;
21592
- animation-fill-mode: backwards; }
21593
- .brz .brz-animated:not(.brz-animate) {
21594
- -webkit-animation-name: none;
21595
- animation-name: none; }
21596
- .brz .brz-animated.brz-animate-opacity {
21597
- opacity: 1; }
21598
- .brz .admin-bar .wp-env .visual-sidebar {
21599
- top: 32px;
21600
- left: 0; }
21601
- .brz .admin-bar .wp-env .visual-wrap-block-wrap {
21602
- margin-left: 0;
21603
- padding-bottom: 0; }
21604
- .brz .brz-wp__sidebar {
21605
- width: 100%; }
21606
- .brz .brz-wp__sidebar .brz-shortcode__placeholder {
21607
- width: 100%;
21608
- min-height: 300px; }
21609
- .brz .brz-wp-shortcode {
21610
- width: 100%;
21611
- min-height: 20px; }
21612
- .brz .brz-wp-shortcode .woocommerce:empty {
21613
- width: 100%;
21614
- height: 15px; }
21615
- .brz .brz-wp-shortcode .woocommerce-product-gallery {
21616
- opacity: 1 !important; }
21617
- .brz .brz-wp-shortcode .brz-shortcode__placeholder {
21618
- width: 100%; }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
public/editor-build/190-wp/editor/js/0.worker.js DELETED
@@ -1 +0,0 @@
1
- !function(e){var t={};function n(r){if(t[r])return t[r].exports;var i=t[r]={i:r,l:!1,exports:{}};return e[r].call(i.exports,i,i.exports,n),i.l=!0,i.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var i in e)n.d(r,i,function(t){return e[t]}.bind(null,i));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=4)}([function(e,t,n){function r(e){this.options=e||{locator:{}}}function i(){this.cdata=!1}function o(e,t){t.lineNumber=e.lineNumber,t.columnNumber=e.columnNumber}function a(e){if(e)return"\n@"+(e.systemId||"")+"#[line:"+e.lineNumber+",col:"+e.columnNumber+"]"}function s(e,t,n){return"string"==typeof e?e.substr(t,n):e.length>=t+n||t?new java.lang.String(e,t,n)+"":e}function c(e,t){e.currentElement?e.currentElement.appendChild(t):e.doc.appendChild(t)}r.prototype.parseFromString=function(e,t){var n=this.options,r=new u,o=n.domBuilder||new i,s=n.errorHandler,c=n.locator,l=n.xmlns||{},h={lt:"<",gt:">",amp:"&",quot:'"',apos:"'"};return c&&o.setDocumentLocator(c),r.errorHandler=function(e,t,n){if(!e){if(t instanceof i)return t;e=t}var r={},o=e instanceof Function;function s(t){var i=e[t];!i&&o&&(i=2==e.length?function(n){e(t,n)}:e),r[t]=i&&function(e){i("[xmldom "+t+"]\t"+e+a(n))}||function(){}}return n=n||{},s("warning"),s("error"),s("fatalError"),r}(s,o,c),r.domBuilder=n.domBuilder||o,/\/x?html?$/.test(t)&&(h.nbsp=" ",h.copy="©",l[""]="http://www.w3.org/1999/xhtml"),l.xml=l.xml||"http://www.w3.org/XML/1998/namespace",e?r.parse(e,l,h):r.errorHandler.error("invalid doc source"),o.doc},i.prototype={startDocument:function(){this.doc=(new l).createDocument(null,null,null),this.locator&&(this.doc.documentURI=this.locator.systemId)},startElement:function(e,t,n,r){var i=this.doc,a=i.createElementNS(e,n||t),s=r.length;c(this,a),this.currentElement=a,this.locator&&o(this.locator,a);for(var u=0;u<s;u++){e=r.getURI(u);var l=r.getValue(u),h=(n=r.getQName(u),i.createAttributeNS(e,n));this.locator&&o(r.getLocator(u),h),h.value=h.nodeValue=l,a.setAttributeNode(h)}},endElement:function(e,t,n){var r=this.currentElement;r.tagName;this.currentElement=r.parentNode},startPrefixMapping:function(e,t){},endPrefixMapping:function(e){},processingInstruction:function(e,t){var n=this.doc.createProcessingInstruction(e,t);this.locator&&o(this.locator,n),c(this,n)},ignorableWhitespace:function(e,t,n){},characters:function(e,t,n){if(e=s.apply(this,arguments)){if(this.cdata)var r=this.doc.createCDATASection(e);else r=this.doc.createTextNode(e);this.currentElement?this.currentElement.appendChild(r):/^\s*$/.test(e)&&this.doc.appendChild(r),this.locator&&o(this.locator,r)}},skippedEntity:function(e){},endDocument:function(){this.doc.normalize()},setDocumentLocator:function(e){(this.locator=e)&&(e.lineNumber=0)},comment:function(e,t,n){e=s.apply(this,arguments);var r=this.doc.createComment(e);this.locator&&o(this.locator,r),c(this,r)},startCDATA:function(){this.cdata=!0},endCDATA:function(){this.cdata=!1},startDTD:function(e,t,n){var r=this.doc.implementation;if(r&&r.createDocumentType){var i=r.createDocumentType(e,t,n);this.locator&&o(this.locator,i),c(this,i)}},warning:function(e){console.warn("[xmldom warning]\t"+e,a(this.locator))},error:function(e){console.error("[xmldom error]\t"+e,a(this.locator))},fatalError:function(e){throw console.error("[xmldom fatalError]\t"+e,a(this.locator)),e}},"endDTD,startEntity,endEntity,attributeDecl,elementDecl,externalEntityDecl,internalEntityDecl,resolveEntity,getExternalSubset,notationDecl,unparsedEntityDecl".replace(/\w+/g,(function(e){i.prototype[e]=function(){return null}}));var u=n(3).XMLReader,l=t.DOMImplementation=n(1).DOMImplementation;t.XMLSerializer=n(1).XMLSerializer,t.DOMParser=r},function(e,t){function n(e,t){for(var n in e)t[n]=e[n]}function r(e,t){var r=e.prototype;if(Object.create){var i=Object.create(t.prototype);r.__proto__=i}if(!(r instanceof t)){function o(){}o.prototype=t.prototype,n(r,o=new o),e.prototype=r=o}r.constructor!=e&&("function"!=typeof e&&console.error("unknow Class:"+e),r.constructor=e)}var i={},o=i.ELEMENT_NODE=1,a=i.ATTRIBUTE_NODE=2,s=i.TEXT_NODE=3,c=i.CDATA_SECTION_NODE=4,u=i.ENTITY_REFERENCE_NODE=5,l=i.ENTITY_NODE=6,h=i.PROCESSING_INSTRUCTION_NODE=7,d=i.COMMENT_NODE=8,f=i.DOCUMENT_NODE=9,p=i.DOCUMENT_TYPE_NODE=10,m=i.DOCUMENT_FRAGMENT_NODE=11,g=i.NOTATION_NODE=12,b={},N={},v=(b.INDEX_SIZE_ERR=(N[1]="Index size error",1),b.DOMSTRING_SIZE_ERR=(N[2]="DOMString size error",2),b.HIERARCHY_REQUEST_ERR=(N[3]="Hierarchy request error",3)),w=(b.WRONG_DOCUMENT_ERR=(N[4]="Wrong document",4),b.INVALID_CHARACTER_ERR=(N[5]="Invalid character",5),b.NO_DATA_ALLOWED_ERR=(N[6]="No data allowed",6),b.NO_MODIFICATION_ALLOWED_ERR=(N[7]="No modification allowed",7),b.NOT_FOUND_ERR=(N[8]="Not found",8)),y=(b.NOT_SUPPORTED_ERR=(N[9]="Not supported",9),b.INUSE_ATTRIBUTE_ERR=(N[10]="Attribute in use",10));b.INVALID_STATE_ERR=(N[11]="Invalid state",11),b.SYNTAX_ERR=(N[12]="Syntax error",12),b.INVALID_MODIFICATION_ERR=(N[13]="Invalid modification",13),b.NAMESPACE_ERR=(N[14]="Invalid namespace",14),b.INVALID_ACCESS_ERR=(N[15]="Invalid access",15);function E(e,t){if(t instanceof Error)var n=t;else n=this,Error.call(this,N[e]),this.message=N[e],Error.captureStackTrace&&Error.captureStackTrace(this,E);return n.code=e,t&&(this.message=this.message+": "+t),n}function x(){}function D(e,t){this._node=e,this._refresh=t,_(this)}function _(e){var t=e._node._inc||e._node.ownerDocument._inc;if(e._inc!=t){var r=e._refresh(e._node);te(e,"length",r.length),n(r,e),e._inc=t}}function S(){}function T(e,t){for(var n=e.length;n--;)if(e[n]===t)return n}function C(e,t,n,r){if(r?t[T(t,r)]=n:t[t.length++]=n,e){n.ownerElement=e;var i=e.ownerDocument;i&&(r&&k(i,e,r),function(e,t,n){e&&e._inc++,"http://www.w3.org/2000/xmlns/"==n.namespaceURI&&(t._nsMap[n.prefix?n.localName:""]=n.value)}(i,e,n))}}function A(e,t,n){var r=T(t,n);if(!(r>=0))throw E(w,new Error(e.tagName+"@"+n));for(var i=t.length-1;r<i;)t[r]=t[++r];if(t.length=i,e){var o=e.ownerDocument;o&&(k(o,e,n),n.ownerElement=null)}}function O(e){if(this._features={},e)for(var t in e)this._features=e[t]}function I(){}function R(e){return("<"==e?"&lt;":">"==e&&"&gt;")||"&"==e&&"&amp;"||'"'==e&&"&quot;"||"&#"+e.charCodeAt()+";"}function z(e,t){if(t(e))return!0;if(e=e.firstChild)do{if(z(e,t))return!0}while(e=e.nextSibling)}function M(){}function k(e,t,n,r){e&&e._inc++,"http://www.w3.org/2000/xmlns/"==n.namespaceURI&&delete t._nsMap[n.prefix?n.localName:""]}function U(e,t,n){if(e&&e._inc){e._inc++;var r=t.childNodes;if(n)r[r.length++]=n;else{for(var i=t.firstChild,o=0;i;)r[o++]=i,i=i.nextSibling;r.length=o}}}function P(e,t){var n=t.previousSibling,r=t.nextSibling;return n?n.nextSibling=r:e.firstChild=r,r?r.previousSibling=n:e.lastChild=n,U(e.ownerDocument,e),t}function $(e,t,n){var r=t.parentNode;if(r&&r.removeChild(t),t.nodeType===m){var i=t.firstChild;if(null==i)return t;var o=t.lastChild}else i=o=t;var a=n?n.previousSibling:e.lastChild;i.previousSibling=a,o.nextSibling=n,a?a.nextSibling=i:e.firstChild=i,null==n?e.lastChild=o:n.previousSibling=o;do{i.parentNode=e}while(i!==o&&(i=i.nextSibling));return U(e.ownerDocument||e,e),t.nodeType==m&&(t.firstChild=t.lastChild=null),t}function j(){this._nsMap={}}function F(){}function L(){}function B(){}function V(){}function X(){}function q(){}function H(){}function Y(){}function W(){}function G(){}function Q(){}function Z(){}function J(e,t){var n=[],r=9==this.nodeType?this.documentElement:this,i=r.prefix,o=r.namespaceURI;if(o&&null==i&&null==(i=r.lookupPrefix(o)))var a=[{namespace:o,prefix:null}];return ee(this,n,e,t,a),n.join("")}function K(e,t,n){var r=e.prefix||"",i=e.namespaceURI;if(!r&&!i)return!1;if("xml"===r&&"http://www.w3.org/XML/1998/namespace"===i||"http://www.w3.org/2000/xmlns/"==i)return!1;for(var o=n.length;o--;){var a=n[o];if(a.prefix==r)return a.namespace!=i}return!0}function ee(e,t,n,r,i){if(r){if(!(e=r(e)))return;if("string"==typeof e)return void t.push(e)}switch(e.nodeType){case o:i||(i=[]);i.length;var l=e.attributes,g=l.length,b=e.firstChild,N=e.tagName;n="http://www.w3.org/1999/xhtml"===e.namespaceURI||n,t.push("<",N);for(var v=0;v<g;v++){"xmlns"==(w=l.item(v)).prefix?i.push({prefix:w.localName,namespace:w.value}):"xmlns"==w.nodeName&&i.push({prefix:"",namespace:w.value})}for(v=0;v<g;v++){var w;if(K(w=l.item(v),0,i)){var y=w.prefix||"",E=w.namespaceURI,x=y?" xmlns:"+y:" xmlns";t.push(x,'="',E,'"'),i.push({prefix:y,namespace:E})}ee(w,t,n,r,i)}if(K(e,0,i)){y=e.prefix||"",E=e.namespaceURI,x=y?" xmlns:"+y:" xmlns";t.push(x,'="',E,'"'),i.push({prefix:y,namespace:E})}if(b||n&&!/^(?:meta|link|img|br|hr|input)$/i.test(N)){if(t.push(">"),n&&/^script$/i.test(N))for(;b;)b.data?t.push(b.data):ee(b,t,n,r,i),b=b.nextSibling;else for(;b;)ee(b,t,n,r,i),b=b.nextSibling;t.push("</",N,">")}else t.push("/>");return;case f:case m:for(b=e.firstChild;b;)ee(b,t,n,r,i),b=b.nextSibling;return;case a:return t.push(" ",e.name,'="',e.value.replace(/[<&"]/g,R),'"');case s:return t.push(e.data.replace(/[<&]/g,R));case c:return t.push("<![CDATA[",e.data,"]]>");case d:return t.push("\x3c!--",e.data,"--\x3e");case p:var D=e.publicId,_=e.systemId;if(t.push("<!DOCTYPE ",e.name),D)t.push(' PUBLIC "',D),_&&"."!=_&&t.push('" "',_),t.push('">');else if(_&&"."!=_)t.push(' SYSTEM "',_,'">');else{var S=e.internalSubset;S&&t.push(" [",S,"]"),t.push(">")}return;case h:return t.push("<?",e.target," ",e.data,"?>");case u:return t.push("&",e.nodeName,";");default:t.push("??",e.nodeName)}}function te(e,t,n){e[t]=n}E.prototype=Error.prototype,n(b,E),x.prototype={length:0,item:function(e){return this[e]||null},toString:function(e,t){for(var n=[],r=0;r<this.length;r++)ee(this[r],n,e,t);return n.join("")}},D.prototype.item=function(e){return _(this),this[e]},r(D,x),S.prototype={length:0,item:x.prototype.item,getNamedItem:function(e){for(var t=this.length;t--;){var n=this[t];if(n.nodeName==e)return n}},setNamedItem:function(e){var t=e.ownerElement;if(t&&t!=this._ownerElement)throw new E(y);var n=this.getNamedItem(e.nodeName);return C(this._ownerElement,this,e,n),n},setNamedItemNS:function(e){var t,n=e.ownerElement;if(n&&n!=this._ownerElement)throw new E(y);return t=this.getNamedItemNS(e.namespaceURI,e.localName),C(this._ownerElement,this,e,t),t},removeNamedItem:function(e){var t=this.getNamedItem(e);return A(this._ownerElement,this,t),t},removeNamedItemNS:function(e,t){var n=this.getNamedItemNS(e,t);return A(this._ownerElement,this,n),n},getNamedItemNS:function(e,t){for(var n=this.length;n--;){var r=this[n];if(r.localName==t&&r.namespaceURI==e)return r}return null}},O.prototype={hasFeature:function(e,t){var n=this._features[e.toLowerCase()];return!(!n||t&&!(t in n))},createDocument:function(e,t,n){var r=new M;if(r.implementation=this,r.childNodes=new x,r.doctype=n,n&&r.appendChild(n),t){var i=r.createElementNS(e,t);r.appendChild(i)}return r},createDocumentType:function(e,t,n){var r=new q;return r.name=e,r.nodeName=e,r.publicId=t,r.systemId=n,r}},I.prototype={firstChild:null,lastChild:null,previousSibling:null,nextSibling:null,attributes:null,parentNode:null,childNodes:null,ownerDocument:null,nodeValue:null,namespaceURI:null,prefix:null,localName:null,insertBefore:function(e,t){return $(this,e,t)},replaceChild:function(e,t){this.insertBefore(e,t),t&&this.removeChild(t)},removeChild:function(e){return P(this,e)},appendChild:function(e){return this.insertBefore(e,null)},hasChildNodes:function(){return null!=this.firstChild},cloneNode:function(e){return function e(t,n,r){var i=new n.constructor;for(var s in n){var c=n[s];"object"!=typeof c&&c!=i[s]&&(i[s]=c)}n.childNodes&&(i.childNodes=new x);switch(i.ownerDocument=t,i.nodeType){case o:var u=n.attributes,l=i.attributes=new S,h=u.length;l._ownerElement=i;for(var d=0;d<h;d++)i.setAttributeNode(e(t,u.item(d),!0));break;case a:r=!0}if(r)for(var f=n.firstChild;f;)i.appendChild(e(t,f,r)),f=f.nextSibling;return i}(this.ownerDocument||this,this,e)},normalize:function(){for(var e=this.firstChild;e;){var t=e.nextSibling;t&&t.nodeType==s&&e.nodeType==s?(this.removeChild(t),e.appendData(t.data)):(e.normalize(),e=t)}},isSupported:function(e,t){return this.ownerDocument.implementation.hasFeature(e,t)},hasAttributes:function(){return this.attributes.length>0},lookupPrefix:function(e){for(var t=this;t;){var n=t._nsMap;if(n)for(var r in n)if(n[r]==e)return r;t=t.nodeType==a?t.ownerDocument:t.parentNode}return null},lookupNamespaceURI:function(e){for(var t=this;t;){var n=t._nsMap;if(n&&e in n)return n[e];t=t.nodeType==a?t.ownerDocument:t.parentNode}return null},isDefaultNamespace:function(e){return null==this.lookupPrefix(e)}},n(i,I),n(i,I.prototype),M.prototype={nodeName:"#document",nodeType:f,doctype:null,documentElement:null,_inc:1,insertBefore:function(e,t){if(e.nodeType==m){for(var n=e.firstChild;n;){var r=n.nextSibling;this.insertBefore(n,t),n=r}return e}return null==this.documentElement&&e.nodeType==o&&(this.documentElement=e),$(this,e,t),e.ownerDocument=this,e},removeChild:function(e){return this.documentElement==e&&(this.documentElement=null),P(this,e)},importNode:function(e,t){return function e(t,n,r){var i;switch(n.nodeType){case o:(i=n.cloneNode(!1)).ownerDocument=t;case m:break;case a:r=!0}i||(i=n.cloneNode(!1));if(i.ownerDocument=t,i.parentNode=null,r)for(var s=n.firstChild;s;)i.appendChild(e(t,s,r)),s=s.nextSibling;return i}(this,e,t)},getElementById:function(e){var t=null;return z(this.documentElement,(function(n){if(n.nodeType==o&&n.getAttribute("id")==e)return t=n,!0})),t},createElement:function(e){var t=new j;return t.ownerDocument=this,t.nodeName=e,t.tagName=e,t.childNodes=new x,(t.attributes=new S)._ownerElement=t,t},createDocumentFragment:function(){var e=new G;return e.ownerDocument=this,e.childNodes=new x,e},createTextNode:function(e){var t=new B;return t.ownerDocument=this,t.appendData(e),t},createComment:function(e){var t=new V;return t.ownerDocument=this,t.appendData(e),t},createCDATASection:function(e){var t=new X;return t.ownerDocument=this,t.appendData(e),t},createProcessingInstruction:function(e,t){var n=new Q;return n.ownerDocument=this,n.tagName=n.target=e,n.nodeValue=n.data=t,n},createAttribute:function(e){var t=new F;return t.ownerDocument=this,t.name=e,t.nodeName=e,t.localName=e,t.specified=!0,t},createEntityReference:function(e){var t=new W;return t.ownerDocument=this,t.nodeName=e,t},createElementNS:function(e,t){var n=new j,r=t.split(":"),i=n.attributes=new S;return n.childNodes=new x,n.ownerDocument=this,n.nodeName=t,n.tagName=t,n.namespaceURI=e,2==r.length?(n.prefix=r[0],n.localName=r[1]):n.localName=t,i._ownerElement=n,n},createAttributeNS:function(e,t){var n=new F,r=t.split(":");return n.ownerDocument=this,n.nodeName=t,n.name=t,n.namespaceURI=e,n.specified=!0,2==r.length?(n.prefix=r[0],n.localName=r[1]):n.localName=t,n}},r(M,I),j.prototype={nodeType:o,hasAttribute:function(e){return null!=this.getAttributeNode(e)},getAttribute:function(e){var t=this.getAttributeNode(e);return t&&t.value||""},getAttributeNode:function(e){return this.attributes.getNamedItem(e)},setAttribute:function(e,t){var n=this.ownerDocument.createAttribute(e);n.value=n.nodeValue=""+t,this.setAttributeNode(n)},removeAttribute:function(e){var t=this.getAttributeNode(e);t&&this.removeAttributeNode(t)},appendChild:function(e){return e.nodeType===m?this.insertBefore(e,null):function(e,t){var n=t.parentNode;if(n){var r=e.lastChild;n.removeChild(t);r=e.lastChild}return r=e.lastChild,t.parentNode=e,t.previousSibling=r,t.nextSibling=null,r?r.nextSibling=t:e.firstChild=t,e.lastChild=t,U(e.ownerDocument,e,t),t}(this,e)},setAttributeNode:function(e){return this.attributes.setNamedItem(e)},setAttributeNodeNS:function(e){return this.attributes.setNamedItemNS(e)},removeAttributeNode:function(e){return this.attributes.removeNamedItem(e.nodeName)},removeAttributeNS:function(e,t){var n=this.getAttributeNodeNS(e,t);n&&this.removeAttributeNode(n)},hasAttributeNS:function(e,t){return null!=this.getAttributeNodeNS(e,t)},getAttributeNS:function(e,t){var n=this.getAttributeNodeNS(e,t);return n&&n.value||""},setAttributeNS:function(e,t,n){var r=this.ownerDocument.createAttributeNS(e,t);r.value=r.nodeValue=""+n,this.setAttributeNode(r)},getAttributeNodeNS:function(e,t){return this.attributes.getNamedItemNS(e,t)},getElementsByTagName:function(e){return new D(this,(function(t){var n=[];return z(t,(function(r){r===t||r.nodeType!=o||"*"!==e&&r.tagName!=e||n.push(r)})),n}))},getElementsByTagNameNS:function(e,t){return new D(this,(function(n){var r=[];return z(n,(function(i){i===n||i.nodeType!==o||"*"!==e&&i.namespaceURI!==e||"*"!==t&&i.localName!=t||r.push(i)})),r}))}},M.prototype.getElementsByTagName=j.prototype.getElementsByTagName,M.prototype.getElementsByTagNameNS=j.prototype.getElementsByTagNameNS,r(j,I),F.prototype.nodeType=a,r(F,I),L.prototype={data:"",substringData:function(e,t){return this.data.substring(e,e+t)},appendData:function(e){e=this.data+e,this.nodeValue=this.data=e,this.length=e.length},insertData:function(e,t){this.replaceData(e,0,t)},appendChild:function(e){throw new Error(N[v])},deleteData:function(e,t){this.replaceData(e,t,"")},replaceData:function(e,t,n){n=this.data.substring(0,e)+n+this.data.substring(e+t),this.nodeValue=this.data=n,this.length=n.length}},r(L,I),B.prototype={nodeName:"#text",nodeType:s,splitText:function(e){var t=this.data,n=t.substring(e);t=t.substring(0,e),this.data=this.nodeValue=t,this.length=t.length;var r=this.ownerDocument.createTextNode(n);return this.parentNode&&this.parentNode.insertBefore(r,this.nextSibling),r}},r(B,L),V.prototype={nodeName:"#comment",nodeType:d},r(V,L),X.prototype={nodeName:"#cdata-section",nodeType:c},r(X,L),q.prototype.nodeType=p,r(q,I),H.prototype.nodeType=g,r(H,I),Y.prototype.nodeType=l,r(Y,I),W.prototype.nodeType=u,r(W,I),G.prototype.nodeName="#document-fragment",G.prototype.nodeType=m,r(G,I),Q.prototype.nodeType=h,r(Q,I),Z.prototype.serializeToString=function(e,t,n){return J.call(e,t,n)},I.prototype.toString=J;try{if(Object.defineProperty){Object.defineProperty(D.prototype,"length",{get:function(){return _(this),this.$$length}}),Object.defineProperty(I.prototype,"textContent",{get:function(){return function e(t){switch(t.nodeType){case o:case m:var n=[];for(t=t.firstChild;t;)7!==t.nodeType&&8!==t.nodeType&&n.push(e(t)),t=t.nextSibling;return n.join("");default:return t.nodeValue}}(this)},set:function(e){switch(this.nodeType){case o:case m:for(;this.firstChild;)this.removeChild(this.firstChild);(e||String(e))&&this.appendChild(this.ownerDocument.createTextNode(e));break;default:this.data=e,this.value=e,this.nodeValue=e}}}),te=function(e,t,n){e["$$"+t]=n}}}catch(e){}t.DOMImplementation=O,t.XMLSerializer=Z},function(e,t,n){"use strict";class r{constructor(e={}){if(!(e.maxSize&&e.maxSize>0))throw new TypeError("`maxSize` must be a number greater than 0");this.maxSize=e.maxSize,this.onEviction=e.onEviction,this.cache=new Map,this.oldCache=new Map,this._size=0}_set(e,t){if(this.cache.set(e,t),this._size++,this._size>=this.maxSize){if(this._size=0,"function"==typeof this.onEviction)for(const[e,t]of this.oldCache.entries())this.onEviction(e,t);this.oldCache=this.cache,this.cache=new Map}}get(e){if(this.cache.has(e))return this.cache.get(e);if(this.oldCache.has(e)){const t=this.oldCache.get(e);return this.oldCache.delete(e),this._set(e,t),t}}set(e,t){return this.cache.has(e)?this.cache.set(e,t):this._set(e,t),this}has(e){return this.cache.has(e)||this.oldCache.has(e)}peek(e){return this.cache.has(e)?this.cache.get(e):this.oldCache.has(e)?this.oldCache.get(e):void 0}delete(e){const t=this.cache.delete(e);return t&&this._size--,this.oldCache.delete(e)||t}clear(){this.cache.clear(),this.oldCache.clear(),this._size=0}*keys(){for(const[e]of this)yield e}*values(){for(const[,e]of this)yield e}*[Symbol.iterator](){for(const e of this.cache)yield e;for(const e of this.oldCache){const[t]=e;this.cache.has(t)||(yield e)}}get size(){let e=0;for(const t of this.oldCache.keys())this.cache.has(t)||e++;return Math.min(this._size+e,this.maxSize)}}e.exports=r},function(e,t){var n=/[A-Z_a-z\xC0-\xD6\xD8-\xF6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]/,r=new RegExp("[\\-\\.0-9"+n.source.slice(1,-1)+"\\u00B7\\u0300-\\u036F\\u203F-\\u2040]"),i=new RegExp("^"+n.source+r.source+"*(?::"+n.source+r.source+"*)?$");function o(){}function a(e,t){return t.lineNumber=e.lineNumber,t.columnNumber=e.columnNumber,t}function s(e,t,n,r,i,o){for(var a,s=++t,c=0;;){var u=e.charAt(s);switch(u){case"=":if(1===c)a=e.slice(t,s),c=3;else{if(2!==c)throw new Error("attribute equal must after attrName");c=3}break;case"'":case'"':if(3===c||1===c){if(1===c&&(o.warning('attribute value must after "="'),a=e.slice(t,s)),t=s+1,!((s=e.indexOf(u,t))>0))throw new Error("attribute value no end '"+u+"' match");l=e.slice(t,s).replace(/&#?\w+;/g,i),n.add(a,l,t-1),c=5}else{if(4!=c)throw new Error('attribute value must after "="');l=e.slice(t,s).replace(/&#?\w+;/g,i),n.add(a,l,t),o.warning('attribute "'+a+'" missed start quot('+u+")!!"),t=s+1,c=5}break;case"/":switch(c){case 0:n.setTagName(e.slice(t,s));case 5:case 6:case 7:c=7,n.closed=!0;case 4:case 1:case 2:break;default:throw new Error("attribute invalid close char('/')")}break;case"":return o.error("unexpected end of input"),0==c&&n.setTagName(e.slice(t,s)),s;case">":switch(c){case 0:n.setTagName(e.slice(t,s));case 5:case 6:case 7:break;case 4:case 1:"/"===(l=e.slice(t,s)).slice(-1)&&(n.closed=!0,l=l.slice(0,-1));case 2:2===c&&(l=a),4==c?(o.warning('attribute "'+l+'" missed quot(")!!'),n.add(a,l.replace(/&#?\w+;/g,i),t)):("http://www.w3.org/1999/xhtml"===r[""]&&l.match(/^(?:disabled|checked|selected)$/i)||o.warning('attribute "'+l+'" missed value!! "'+l+'" instead!!'),n.add(l,l,t));break;case 3:throw new Error("attribute value missed!!")}return s;case"€":u=" ";default:if(u<=" ")switch(c){case 0:n.setTagName(e.slice(t,s)),c=6;break;case 1:a=e.slice(t,s),c=2;break;case 4:var l=e.slice(t,s).replace(/&#?\w+;/g,i);o.warning('attribute "'+l+'" missed quot(")!!'),n.add(a,l,t);case 5:c=6}else switch(c){case 2:n.tagName;"http://www.w3.org/1999/xhtml"===r[""]&&a.match(/^(?:disabled|checked|selected)$/i)||o.warning('attribute "'+a+'" missed value!! "'+a+'" instead2!!'),n.add(a,a,t),t=s,c=1;break;case 5:o.warning('attribute space is required"'+a+'"!!');case 6:c=1,t=s;break;case 3:c=4,t=s;break;case 7:throw new Error("elements closed character '/' and '>' must be connected to")}}s++}}function c(e,t,n){for(var r=e.tagName,i=null,o=e.length;o--;){var a=e[o],s=a.qName,c=a.value;if((f=s.indexOf(":"))>0)var u=a.prefix=s.slice(0,f),l=s.slice(f+1),d="xmlns"===u&&l;else l=s,u=null,d="xmlns"===s&&"";a.localName=l,!1!==d&&(null==i&&(i={},h(n,n={})),n[d]=i[d]=c,a.uri="http://www.w3.org/2000/xmlns/",t.startPrefixMapping(d,c))}for(o=e.length;o--;){(u=(a=e[o]).prefix)&&("xml"===u&&(a.uri="http://www.w3.org/XML/1998/namespace"),"xmlns"!==u&&(a.uri=n[u||""]))}var f;(f=r.indexOf(":"))>0?(u=e.prefix=r.slice(0,f),l=e.localName=r.slice(f+1)):(u=null,l=e.localName=r);var p=e.uri=n[u||""];if(t.startElement(p,l,r,e),!e.closed)return e.currentNSMap=n,e.localNSMap=i,!0;if(t.endElement(p,l,r),i)for(u in i)t.endPrefixMapping(u)}function u(e,t,n,r,i){if(/^(?:script|textarea)$/i.test(n)){var o=e.indexOf("</"+n+">",t),a=e.substring(t+1,o);if(/[&<]/.test(a))return/^script$/i.test(n)?(i.characters(a,0,a.length),o):(a=a.replace(/&#?\w+;/g,r),i.characters(a,0,a.length),o)}return t+1}function l(e,t,n,r){var i=r[n];return null==i&&((i=e.lastIndexOf("</"+n+">"))<t&&(i=e.lastIndexOf("</"+n)),r[n]=i),i<t}function h(e,t){for(var n in e)t[n]=e[n]}function d(e,t,n,r){switch(e.charAt(t+2)){case"-":return"-"===e.charAt(t+3)?(i=e.indexOf("--\x3e",t+4))>t?(n.comment(e,t+4,i-t-4),i+3):(r.error("Unclosed comment"),-1):-1;default:if("CDATA["==e.substr(t+3,6)){var i=e.indexOf("]]>",t+9);return n.startCDATA(),n.characters(e,t+9,i-t-9),n.endCDATA(),i+3}var o=function(e,t){var n,r=[],i=/'[^']+'|"[^"]+"|[^\s<>\/=]+=?|(\/?\s*>|<)/g;i.lastIndex=t,i.exec(e);for(;n=i.exec(e);)if(r.push(n),n[1])return r}(e,t),a=o.length;if(a>1&&/!doctype/i.test(o[0][0])){var s=o[1][0],c=a>3&&/^public$/i.test(o[2][0])&&o[3][0],u=a>4&&o[4][0],l=o[a-1];return n.startDTD(s,c&&c.replace(/^(['"])(.*?)\1$/,"$2"),u&&u.replace(/^(['"])(.*?)\1$/,"$2")),n.endDTD(),l.index+l[0].length}}return-1}function f(e,t,n){var r=e.indexOf("?>",t);if(r){var i=e.substring(t,r).match(/^<\?(\S*)\s*([\s\S]*?)\s*$/);if(i){i[0].length;return n.processingInstruction(i[1],i[2]),r+2}return-1}return-1}function p(e){}function m(e,t){return e.__proto__=t,e}o.prototype={parse:function(e,t,n){var r=this.domBuilder;r.startDocument(),h(t,t={}),function(e,t,n,r,i){function o(e){var t=e.slice(1,-1);return t in n?n[t]:"#"===t.charAt(0)?function(e){if(e>65535){var t=55296+((e-=65536)>>10),n=56320+(1023&e);return String.fromCharCode(t,n)}return String.fromCharCode(e)}(parseInt(t.substr(1).replace("x","0x"))):(i.error("entity not found:"+e),e)}function h(t){if(t>E){var n=e.substring(E,t).replace(/&#?\w+;/g,o);v&&m(E),r.characters(n,0,t-E),E=t}}function m(t,n){for(;t>=b&&(n=N.exec(e));)g=n.index,b=g+n[0].length,v.lineNumber++;v.columnNumber=t-g+1}var g=0,b=0,N=/.*(?:\r\n?|\n)|.*$/g,v=r.locator,w=[{currentNSMap:t}],y={},E=0;for(;;){try{var x=e.indexOf("<",E);if(x<0){if(!e.substr(E).match(/^\s*$/)){var D=r.doc,_=D.createTextNode(e.substr(E));D.appendChild(_),r.currentElement=_}return}switch(x>E&&h(x),e.charAt(x+1)){case"/":var S=e.indexOf(">",x+3),T=e.substring(x+2,S),C=w.pop();S<0?(T=e.substring(x+2).replace(/[\s<].*/,""),i.error("end tag name: "+T+" is not complete:"+C.tagName),S=x+1+T.length):T.match(/\s</)&&(T=T.replace(/[\s<].*/,""),i.error("end tag name: "+T+" maybe not complete"),S=x+1+T.length);var A=C.localNSMap,O=C.tagName==T;if(O||C.tagName&&C.tagName.toLowerCase()==T.toLowerCase()){if(r.endElement(C.uri,C.localName,T),A)for(var I in A)r.endPrefixMapping(I);O||i.fatalError("end tag name: "+T+" is not match the current start tagName:"+C.tagName)}else w.push(C);S++;break;case"?":v&&m(x),S=f(e,x,r);break;case"!":v&&m(x),S=d(e,x,r,i);break;default:v&&m(x);var R=new p,z=w[w.length-1].currentNSMap,M=(S=s(e,x,R,z,o,i),R.length);if(!R.closed&&l(e,S,R.tagName,y)&&(R.closed=!0,n.nbsp||i.warning("unclosed xml attribute")),v&&M){for(var k=a(v,{}),U=0;U<M;U++){var P=R[U];m(P.offset),P.locator=a(v,{})}r.locator=k,c(R,r,z)&&w.push(R),r.locator=v}else c(R,r,z)&&w.push(R);"http://www.w3.org/1999/xhtml"!==R.uri||R.closed?S++:S=u(e,S,R.tagName,o,r)}}catch(e){i.error("element parse error: "+e),S=-1}S>E?E=S:h(Math.max(x,E)+1)}}(e,t,n,r,this.errorHandler),r.endDocument()}},p.prototype={setTagName:function(e){if(!i.test(e))throw new Error("invalid tagName:"+e);this.tagName=e},add:function(e,t,n){if(!i.test(e))throw new Error("invalid attribute:"+e);this[this.length++]={qName:e,value:t,offset:n}},length:0,getLocalName:function(e){return this[e].localName},getLocator:function(e){return this[e].locator},getQName:function(e){return this[e].qName},getURI:function(e){return this[e].uri},getValue:function(e){return this[e].value}},m({},m.prototype)instanceof m||(m=function(e,t){function n(){}for(t in n.prototype=t,n=new n,e)n[t]=e[t];return n}),t.XMLReader=o},function(e,t,n){"use strict";function r(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}n.r(t);var i=n(2),o=n.n(i),a=n(0);const s=1;function c(e,t){const n=[];return m(e,e=>{e.nodeType===s&&p(e,t)&&n.push(e)}),n}function u(e,t){const n=[];return m(e,e=>{e.nodeType===s&&e.tagName===t&&n.push(e)}),n}function l(e,t,n){const r=[];return m(e,e=>{if(e.nodeType===s){const i=Array.from(e.attributes);let o=!1;i.forEach(i=>{o||i.nodeName!==t||void 0!==n&&i.nodeValue!==n||(r.push(e),o=!0)})}}),r}function h(e){e.parentNode.removeChild(e)}function d(e,t,n){const r=/\s*(.+?):\s*(.+?);/g;let i=e.getAttribute("style");if(";"!==i[i.length-1]&&(i+=";"),"object"==typeof t){const n=Object.entries(t).map(([e,t])=>`${e}: ${t};`).join(" ");return void e.setAttribute("style",`${i} ${n}`)}if(t&&n&&"string"==typeof t)return void e.setAttribute("style",`${i} ${t}: ${n};`);const o={};{let e,t,n;for(;e=r.exec(i);)[,t,n]=e,o[t]=n}return t?o[t]:o}function f(e,t){do{if(e.nodeType===s&&p(e,t))return e}while(e=e.parentNode);return null}function p(e,t){const n=e.getAttribute("class");return new RegExp(`\\b${t}\\b`).test(n)}function m(e,t){if(t(e))return!0;if(e=e.firstChild)do{if(m(e,t))return!0}while(e=e.nextSibling)}function g(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function b(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?g(Object(n),!0).forEach((function(t){r(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):g(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}const N=new o.a({maxSize:100});function v(e){return N.has(e)?Promise.resolve(N.get(e)):fetch(e,{credentials:"omit"}).then(t=>{if(t.ok)return t.blob();throw new Error("could not fetch "+e)}).then(y).then(t=>(N.set(e,t),t)).catch(e=>console.error("worker fetch:",e))}function w(e,{siteUrl:t,proxyUrl:n}){return 0===e.indexOf(t)||"/"===e[0]?e:n+encodeURIComponent(e)}function y(e){return new Promise(t=>{var n=new FileReader;n.onload=function(){t(this.result)},n.onerror=()=>console.error("failed to decode image"),n.readAsDataURL(e)})}function E(e){return/^data:.+;base64/.test(e)}onerror=e=>{console.error(e)},onmessage=async e=>{const{id:t,url:n,options:r,assetUrl:i,siteUrl:o,proxyUrl:s}=e.data,m=await fetch(n),g=await m.text(),N=(new a.DOMParser).parseFromString(g.replace(/(<\/[^>]+>)/g,"\n$1"),"text/html");const y={assetUrl:i,siteUrl:o,proxyUrl:s};!function(e){[{type:"className",value:"brz-ed-collapsible"},{type:"className",value:"brz-ed-draggable",canDelete:e=>!p(e,"brz-ed-draggable__padding")},{type:"className",value:"brz-ed-border__inner"},{type:"className",value:"brz-ed-border__button"},{type:"className",value:"brz-ed-container-plus"},{type:"className",value:"brz-ed-container-trigger"},{type:"className",value:"brz-ed-toolbar"},{type:"className",value:"brz-ed-row__toolbar"},{type:"className",value:"brz-ed-column__toolbar"},{type:"className",value:"brz-ed-wrapper__toolbar"},{type:"className",value:"brz-form__select-list"},{type:"className",value:"brz-popup2__button-go-to-editor"},{type:"className",value:"brz-ed-icon-svg"},{type:"className",value:"brz-ed-slider__spinner"},{type:"className",value:"brz-ed-portal__loading"},{type:"tagName",value:"script"}].forEach(({type:t,value:n,canDelete:r})=>{let i;switch(t){case"className":i=c(e,n);break;case"tagName":i=u(e,n);break;default:throw new Error("unsupported selector type "+t)}i.forEach(e=>{(void 0===r||r(e))&&h(e)})})}(N),function(e){c(e,"brz-text-mask").forEach(e=>{d(e,{background:"transparent",color:"inherit !important","-webkit-text-fill-color":"unset"})})}(N),function(e){u(e,"picture").forEach(e=>{u(e,"source").forEach(h),u(e,"img").forEach(e=>e.removeAttribute("srcset"))})}(N),await async function(e,t){const n=[];return u(e,"img").forEach(async e=>{const r=e.getAttribute("src");r&&!E(r)&&n.push(v(w(r,t)).then(t=>(e.setAttribute("src",t),t)))}),l(e,"style").forEach(async e=>{const r=e.getAttribute("style");if(!r.includes("url"))return;const i=/url\(["']?([^#"')]+)["']?\)/,o=i.exec(r),[,a]=o||[];a&&!E(a)&&n.push(v(w(a,t)).then(t=>(e.setAttribute("style",r.replace(i,`url("${t}")`)),t)))}),Promise.all(n)}(N,y),function(e){c(e,"brz-bg-image-parallax").forEach(e=>d(e,{transform:"none",position:"absolute",top:"0",left:"0",width:"100%",height:"100%"}))}(N),await function(e,t){const n=[],r=["soundcloud","map","bg-map","video","bg-video"];return u(e,"iframe").forEach(e=>{const i=d(e);if("none"===i.display)return void h(e);const o=["brz-map","brz-bg-map","brz-video","brz-bg-video","brz-soundcloud"];for(let a of o){if(!f(e,a))continue;const o=a.replace("brz-",""),s=r.includes(o)?v(w(`${t.assetUrl}/editor/img/screenshot-placeholder-${o}.png`,t)):Promise.resolve();s.then(t=>{const n=b({width:e.getAttribute("width")||i.width,height:e.getAttribute("height")||i.height,position:i.position,top:i.top,bottom:i.bottom,left:i.left,right:i.right,margin:i.margin},t?{"background-repeat":"no-repeat","background-position":"center center","background-size":"cover","background-image":`url(${t})`}:{"background-color":"#373e48"}),r=Object.entries(n).reduce((e,[t,n])=>e+`${t}:${n};`,""),o=e.ownerDocument.createElement("div");o.setAttribute("style",r),e.parentNode.replaceChild(o,e)}),n.push(s);break}}),Promise.all(n)}(N,y),function(e){c(e,"brz-ed-draggable__padding").forEach(e=>{p(e,"brz-ed-draggable__padding--active")&&(d(e,"background","transparent"),function(e){return Array.from(e.childNodes)}(e).forEach(e=>h(e)))})}(N),function(e){["id","class","data-block-id","data-href"].forEach(t=>{l(e,t).forEach(e=>e.removeAttribute(t))})}(N);const x=function(e,t){const{width:n,height:r}=t;return"data:image/svg+xml;charset=utf-8,"+encodeURIComponent(`<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="${n}" height="${r}"><foreignObject x="0" y="0" width="100%" height="100%" style="background-color: white;">${e}</foreignObject></svg>`)}((new a.XMLSerializer).serializeToString(N),r).replace(/xmlns%3Axlink%3D%22%22/g,""),D=new Blob([x],{type:"text/plain"}),_=URL.createObjectURL(D);postMessage({id:t,url:_})}}]);
 
public/editor-build/190-wp/editor/js/editor.js DELETED
@@ -1 +0,0 @@
1
- !function(e){function t(t){for(var n,i,l=t[0],s=t[1],c=t[2],u=0,p=[];u<l.length;u++)i=l[u],Object.prototype.hasOwnProperty.call(a,i)&&a[i]&&p.push(a[i][0]),a[i]=0;for(n in s)Object.prototype.hasOwnProperty.call(s,n)&&(e[n]=s[n]);for(d&&d(t);p.length;)p.shift()();return r.push.apply(r,c||[]),o()}function o(){for(var e,t=0;t<r.length;t++){for(var o=r[t],n=!0,l=1;l<o.length;l++){var s=o[l];0!==a[s]&&(n=!1)}n&&(r.splice(t--,1),e=i(i.s=o[0]))}return e}var n={},a={0:0},r=[];function i(t){if(n[t])return n[t].exports;var o=n[t]={i:t,l:!1,exports:{}};return e[t].call(o.exports,o,o.exports,i),o.l=!0,o.exports}i.e=function(e){var t=[],o=a[e];if(0!==o)if(o)t.push(o[2]);else{var n=new Promise((function(t,n){o=a[e]=[t,n]}));t.push(o[2]=n);var r,l=document.createElement("script");l.charset="utf-8",l.timeout=120,i.nc&&l.setAttribute("nonce",i.nc),l.src=function(e){return i.p+""+({}[e]||e)+".js"}(e);var s=new Error;r=function(t){l.onerror=l.onload=null,clearTimeout(c);var o=a[e];if(0!==o){if(o){var n=t&&("load"===t.type?"missing":t.type),r=t&&t.target&&t.target.src;s.message="Loading chunk "+e+" failed.\n("+n+": "+r+")",s.name="ChunkLoadError",s.type=n,s.request=r,o[1](s)}a[e]=void 0}};var c=setTimeout((function(){r({type:"timeout",target:l})}),12e4);l.onerror=l.onload=r,document.head.appendChild(l)}return Promise.all(t)},i.m=e,i.c=n,i.d=function(e,t,o){i.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:o})},i.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},i.t=function(e,t){if(1&t&&(e=i(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var o=Object.create(null);if(i.r(o),Object.defineProperty(o,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var n in e)i.d(o,n,function(t){return e[t]}.bind(null,n));return o},i.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return i.d(t,"a",t),t},i.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},i.p="",i.oe=function(e){throw console.error(e),e};var l=window.webpackJsonp=window.webpackJsonp||[],s=l.push.bind(l);l.push=t,l=l.slice();for(var c=0;c<l.length;c++)t(l[c]);var d=s;r.push([553,1]),o()}([,function(e,t,o){"use strict";var n=o(209);o.d(t,"a",(function(){return n.a}))},,function(e,t,o){"use strict";o.r(t),o.d(t,"saveOnChanges",(function(){return c})),o.d(t,"defaultValueKey",(function(){return i.a})),o.d(t,"defaultValueValue",(function(){return i.b})),o.d(t,"deviceStateValueByKey",(function(){return i.c})),o.d(t,"makeKeyByStateDevice",(function(){return i.e})),o.d(t,"onChangeBgImage",(function(){return v})),o.d(t,"onChangeBgImageBgOpacity",(function(){return f})),o.d(t,"onChangeBgImageDependencies",(function(){return y})),o.d(t,"onChangeBgImageColumnAndRowSyncMobile",(function(){return O})),o.d(t,"onChangeBorderStyle2",(function(){return x})),o.d(t,"onChangeElementBorderStyleDependencies2",(function(){return j})),o.d(t,"onChangeContainerBorderStyleDependencies2",(function(){return B})),o.d(t,"onChangeBorderColorHexAndOpacity2",(function(){return P})),o.d(t,"onChangeBorderColorHexAndOpacityPalette2",(function(){return w})),o.d(t,"onChangeElementBorderColorHexAndOpacityDependencies2",(function(){return T})),o.d(t,"onChangeContainerBorderColorHexAndOpacityDependencies2",(function(){return z})),o.d(t,"onChangeBorderColorHexAndOpacityColumnAndRowSyncTablet2",(function(){return E})),o.d(t,"onChangeBorderColorHexAndOpacityColumnAndRowSyncMobile2",(function(){return k})),o.d(t,"onChangeBorderColorPalette2",(function(){return H})),o.d(t,"onChangeBorderColorPaletteOpacity2",(function(){return _})),o.d(t,"onChangeBorderWidthType2",(function(){return F})),o.d(t,"onChangeBorderWidthGrouped2",(function(){return R})),o.d(t,"onChangeBorderWidthGroupedDependencies2",(function(){return M})),o.d(t,"onChangeBorderWidthUngrouped2",(function(){return L})),o.d(t,"onChangeBorderWidthUngroupedDependencies2",(function(){return I})),o.d(t,"onChangeBorderRadiusGrouped",(function(){return D})),o.d(t,"onChangeBorderRadiusGroupedDependencies",(function(){return V})),o.d(t,"onChangeBorderRadiusUngrouped",(function(){return $})),o.d(t,"onChangeBorderRadiusUngroupedDependencies",(function(){return G})),o.d(t,"onChangeColorHexAndOpacity",(function(){return U})),o.d(t,"onChangeColorHexAndOpacityPalette",(function(){return K})),o.d(t,"onChangeColorPalette",(function(){return q})),o.d(t,"onChangeColorPaletteOpacity",(function(){return Y})),o.d(t,"onChangeBgColorType2",(function(){return Z})),o.d(t,"onChangeGradientRange2",(function(){return J})),o.d(t,"onChangeBgColorHexAndOpacity2",(function(){return Q})),o.d(t,"onChangeBgColorHexAndOpacityPalette2",(function(){return ee})),o.d(t,"onChangeBgColorHexAndOpacityDependencies2",(function(){return te})),o.d(t,"onChangeBgColorHexAndOpacityColumnAndRowSyncMobile2",(function(){return oe})),o.d(t,"onChangeBgColorPalette2",(function(){return ne})),o.d(t,"onChangeBgColorPaletteOpacity2",(function(){return ae})),o.d(t,"onChangeBoxShadowHexAndOpacity2",(function(){return se})),o.d(t,"onChangeBoxShadowHexAndOpacityPalette2",(function(){return ce})),o.d(t,"onChangeBoxShadowHexAndOpacityDependencies2",(function(){return de})),o.d(t,"onChangeBoxShadowPalette2",(function(){return ue})),o.d(t,"onChangeBoxShadowPaletteOpacity2",(function(){return pe})),o.d(t,"onChangeBoxShadowType2",(function(){return ie})),o.d(t,"onChangeBoxShadowTypeDependencies2",(function(){return le})),o.d(t,"onChangeBoxShadowFields2",(function(){return be})),o.d(t,"onChangeBoxShadowFieldsDependencies2",(function(){return me})),o.d(t,"onChangeBoxShadowOpacity2",(function(){return he})),o.d(t,"onChangePaddingGrouped",(function(){return fe})),o.d(t,"onChangePaddingUngrouped",(function(){return ye})),o.d(t,"onChangeMarginGrouped",(function(){return Ce})),o.d(t,"onChangeMarginUngrouped",(function(){return xe})),o.d(t,"onChangeElementSectionBoxShadowHexAndOpacityDependencies",(function(){return je})),o.d(t,"onChangeElementProgressBarBg2ColorHexAndOpacity",(function(){return Be})),o.d(t,"onChangeElementProgressBarBg2ColorHexAndOpacityPalette",(function(){return Pe})),o.d(t,"onChangeElementProgressBarBg2ColorHexAndOpacityDependencies",(function(){return we})),o.d(t,"onChangeElementProgressBarBg2ColorPalette",(function(){return Te})),o.d(t,"onChangeElementProgressBarBg2ColorPaletteOpacity",(function(){return ze})),o.d(t,"onChangeElementIconBorderColorHex2",(function(){return ke})),o.d(t,"onChangeElementIconBorderColorPalette2",(function(){return He})),o.d(t,"onChangeElementIconBorderColorFields2",(function(){return _e})),o.d(t,"onChangeElementIconBorderHoverColorHex2",(function(){return Fe})),o.d(t,"onChangeElementIconBorderHoverColorPalette2",(function(){return Re})),o.d(t,"onChangeElementIconBorderHoverColorFields2",(function(){return Me})),o.d(t,"onChangeElementButtonBorderColorHex2",(function(){return Ie})),o.d(t,"onChangeElementButtonBorderColorPalette2",(function(){return We})),o.d(t,"onChangeElementButtonBorderColorFields2",(function(){return Ne})),o.d(t,"onChangeElementButtonBorderHoverColorHex2",(function(){return Ae})),o.d(t,"onChangeElementButtonBorderHoverColorPalette2",(function(){return De})),o.d(t,"onChangeElementButtonBorderHoverColorFields2",(function(){return Ve})),o.d(t,"onChangeBgColorHexButton2",(function(){return $e})),o.d(t,"onChangeBgColorPaletteButton2",(function(){return Ge})),o.d(t,"onChangeBgColorFieldsButton2",(function(){return Ue})),o.d(t,"onChangeHoverBgColorHexButton2",(function(){return Ke})),o.d(t,"onChangeHoverBgColorPaletteButton2",(function(){return qe})),o.d(t,"onChangeHoverBgColorFieldsButton2",(function(){return Ye})),o.d(t,"onChangeColorHexButtonIcon2",(function(){return Xe})),o.d(t,"onChangeColorPaletteButtonIcon2",(function(){return Ze})),o.d(t,"onChangeColorFieldsButtonIcon2",(function(){return Je})),o.d(t,"onChangeHoverColorHexButtonIcon2",(function(){return Qe})),o.d(t,"onChangeHoverColorPaletteButtonIcon2",(function(){return et})),o.d(t,"onChangeHoverColorFieldsButtonIcon2",(function(){return tt})),o.d(t,"onChangeMenuColorHex2",(function(){return ot})),o.d(t,"onChangeMenuColorPalette2",(function(){return nt})),o.d(t,"onChangeMenuColorFields2",(function(){return at})),o.d(t,"onChangeMenuHoverColorHex2",(function(){return rt})),o.d(t,"onChangeMenuHoverColorPalette2",(function(){return it})),o.d(t,"onChangeMenuHoverColorFields2",(function(){return lt})),o.d(t,"onChangeActiveColorHexSubMenu2",(function(){return $t})),o.d(t,"onChangeActiveColorPaletteSubMenu2",(function(){return Gt})),o.d(t,"onChangeActiveColorFieldsSubMenu2",(function(){return Ut})),o.d(t,"onChangeBgActiveColorHexSubMenu2",(function(){return Kt})),o.d(t,"onChangeBgActiveColorPaletteSubMenu2",(function(){return qt})),o.d(t,"onChangeBgActiveColorFieldsSubMenu2",(function(){return Yt})),o.d(t,"onChangeColorHexMMenu2",(function(){return st})),o.d(t,"onChangeColorPaletteMMenu2",(function(){return ct})),o.d(t,"onChangeColorFieldsMMenu2",(function(){return dt})),o.d(t,"onChangeHoverColorHexMMenu2",(function(){return ut})),o.d(t,"onChangeHoverColorPaletteMMenu2",(function(){return pt})),o.d(t,"onChangeHoverColorFieldsMMenu2",(function(){return bt})),o.d(t,"onChangeColorHexSubMenu2",(function(){return mt})),o.d(t,"onChangeColorPaletteSubMenu2",(function(){return ht})),o.d(t,"onChangeColorFieldsSubMenu2",(function(){return gt})),o.d(t,"onChangeHoverColorHexSubMenu2",(function(){return vt})),o.d(t,"onChangeHoverColorPaletteSubMenu2",(function(){return ft})),o.d(t,"onChangeHoverColorFieldsSubMenu2",(function(){return yt})),o.d(t,"onChangeColorHexIconMenu2",(function(){return Ot})),o.d(t,"onChangeColorPaletteIconMenu2",(function(){return St})),o.d(t,"onChangeColorFieldsIconMenu2",(function(){return Ct})),o.d(t,"onChangeTabletColorHexIconMMenu2",(function(){return xt})),o.d(t,"onChangeTabletColorPaletteIconMMenu2",(function(){return jt})),o.d(t,"onChangeTabletColorFieldsIconMMenu2",(function(){return Bt})),o.d(t,"onChangeMobileColorHexIconMMenu2",(function(){return Pt})),o.d(t,"onChangeMobileColorPaletteIconMMenu2",(function(){return wt})),o.d(t,"onChangeMobileColorFieldsIconMMenu2",(function(){return Tt})),o.d(t,"onChangeActiveColorHexMMenu2",(function(){return Xt})),o.d(t,"onChangeActiveColorPaletteMMenu2",(function(){return Zt})),o.d(t,"onChangeActiveColorFieldsMMenu2",(function(){return Jt})),o.d(t,"onChangeBgColorHexMMenu2",(function(){return zt})),o.d(t,"onChangeBgColorPaletteMMenu2",(function(){return Et})),o.d(t,"onChangeBgColorFieldsMMenu2",(function(){return kt})),o.d(t,"onChangeBgColorHexSubMenu2",(function(){return Ht})),o.d(t,"onChangeBgColorPaletteSubMenu2",(function(){return _t})),o.d(t,"onChangeBgColorFieldsSubMenu2",(function(){return Ft})),o.d(t,"onChangeBgHoverColorHexSubMenu2",(function(){return Rt})),o.d(t,"onChangeBgHoverColorPaletteSubMenu2",(function(){return Mt})),o.d(t,"onChangeBgHoverColorFieldsSubMenu2",(function(){return Lt})),o.d(t,"onChangeBorderColorHexMMenu2",(function(){return It})),o.d(t,"onChangeBorderColorPaletteMMenu2",(function(){return Wt})),o.d(t,"onChangeBorderColorFieldsMMenu2",(function(){return Nt})),o.d(t,"onChangeBorderColorHexSubMenu2",(function(){return At})),o.d(t,"onChangeBorderColorPaletteSubMenu2",(function(){return Dt})),o.d(t,"onChangeBorderColorFieldsSubMenu2",(function(){return Vt})),o.d(t,"onChangeTypography",(function(){return oo})),o.d(t,"onChangeTypographyTablet",(function(){return no})),o.d(t,"onChangeTypographyMobile",(function(){return ao})),o.d(t,"tabletSyncOnChange",(function(){return i.g})),o.d(t,"mobileSyncOnChange",(function(){return i.f})),o.d(t,"keySyncOnChange",(function(){return i.d})),o.d(t,"validateKeyByProperty",(function(){return i.h})),o.d(t,"onChangeTypography2",(function(){return so}));var n={};o.r(n),o.d(n,"saveOnChanges",(function(){return c})),o.d(n,"defaultValueKey",(function(){return i.a})),o.d(n,"defaultValueValue",(function(){return i.b})),o.d(n,"deviceStateValueByKey",(function(){return i.c})),o.d(n,"makeKeyByStateDevice",(function(){return i.e})),o.d(n,"onChangeBgImage",(function(){return v})),o.d(n,"onChangeBgImageBgOpacity",(function(){return f})),o.d(n,"onChangeBgImageDependencies",(function(){return y})),o.d(n,"onChangeBgImageColumnAndRowSyncMobile",(function(){return O})),o.d(n,"onChangeBorderStyle2",(function(){return x})),o.d(n,"onChangeElementBorderStyleDependencies2",(function(){return j})),o.d(n,"onChangeContainerBorderStyleDependencies2",(function(){return B})),o.d(n,"onChangeBorderColorHexAndOpacity2",(function(){return P})),o.d(n,"onChangeBorderColorHexAndOpacityPalette2",(function(){return w})),o.d(n,"onChangeElementBorderColorHexAndOpacityDependencies2",(function(){return T})),o.d(n,"onChangeContainerBorderColorHexAndOpacityDependencies2",(function(){return z})),o.d(n,"onChangeBorderColorHexAndOpacityColumnAndRowSyncTablet2",(function(){return E})),o.d(n,"onChangeBorderColorHexAndOpacityColumnAndRowSyncMobile2",(function(){return k})),o.d(n,"onChangeBorderColorPalette2",(function(){return H})),o.d(n,"onChangeBorderColorPaletteOpacity2",(function(){return _})),o.d(n,"onChangeBorderWidthType2",(function(){return F})),o.d(n,"onChangeBorderWidthGrouped2",(function(){return R})),o.d(n,"onChangeBorderWidthGroupedDependencies2",(function(){return M})),o.d(n,"onChangeBorderWidthUngrouped2",(function(){return L})),o.d(n,"onChangeBorderWidthUngroupedDependencies2",(function(){return I})),o.d(n,"onChangeBorderRadiusGrouped",(function(){return D})),o.d(n,"onChangeBorderRadiusGroupedDependencies",(function(){return V})),o.d(n,"onChangeBorderRadiusUngrouped",(function(){return $})),o.d(n,"onChangeBorderRadiusUngroupedDependencies",(function(){return G})),o.d(n,"onChangeColorHexAndOpacity",(function(){return U})),o.d(n,"onChangeColorHexAndOpacityPalette",(function(){return K})),o.d(n,"onChangeColorPalette",(function(){return q})),o.d(n,"onChangeColorPaletteOpacity",(function(){return Y})),o.d(n,"onChangeBgColorType2",(function(){return Z})),o.d(n,"onChangeGradientRange2",(function(){return J})),o.d(n,"onChangeBgColorHexAndOpacity2",(function(){return Q})),o.d(n,"onChangeBgColorHexAndOpacityPalette2",(function(){return ee})),o.d(n,"onChangeBgColorHexAndOpacityDependencies2",(function(){return te})),o.d(n,"onChangeBgColorHexAndOpacityColumnAndRowSyncMobile2",(function(){return oe})),o.d(n,"onChangeBgColorPalette2",(function(){return ne})),o.d(n,"onChangeBgColorPaletteOpacity2",(function(){return ae})),o.d(n,"onChangeBoxShadowHexAndOpacity2",(function(){return se})),o.d(n,"onChangeBoxShadowHexAndOpacityPalette2",(function(){return ce})),o.d(n,"onChangeBoxShadowHexAndOpacityDependencies2",(function(){return de})),o.d(n,"onChangeBoxShadowPalette2",(function(){return ue})),o.d(n,"onChangeBoxShadowPaletteOpacity2",(function(){return pe})),o.d(n,"onChangeBoxShadowType2",(function(){return ie})),o.d(n,"onChangeBoxShadowTypeDependencies2",(function(){return le})),o.d(n,"onChangeBoxShadowFields2",(function(){return be})),o.d(n,"onChangeBoxShadowFieldsDependencies2",(function(){return me})),o.d(n,"onChangeBoxShadowOpacity2",(function(){return he})),o.d(n,"onChangePaddingGrouped",(function(){return fe})),o.d(n,"onChangePaddingUngrouped",(function(){return ye})),o.d(n,"onChangeMarginGrouped",(function(){return Ce})),o.d(n,"onChangeMarginUngrouped",(function(){return xe})),o.d(n,"onChangeElementSectionBoxShadowHexAndOpacityDependencies",(function(){return je})),o.d(n,"onChangeElementProgressBarBg2ColorHexAndOpacity",(function(){return Be})),o.d(n,"onChangeElementProgressBarBg2ColorHexAndOpacityPalette",(function(){return Pe})),o.d(n,"onChangeElementProgressBarBg2ColorHexAndOpacityDependencies",(function(){return we})),o.d(n,"onChangeElementProgressBarBg2ColorPalette",(function(){return Te})),o.d(n,"onChangeElementProgressBarBg2ColorPaletteOpacity",(function(){return ze})),o.d(n,"onChangeElementIconBorderColorHex2",(function(){return ke})),o.d(n,"onChangeElementIconBorderColorPalette2",(function(){return He})),o.d(n,"onChangeElementIconBorderColorFields2",(function(){return _e})),o.d(n,"onChangeElementIconBorderHoverColorHex2",(function(){return Fe})),o.d(n,"onChangeElementIconBorderHoverColorPalette2",(function(){return Re})),o.d(n,"onChangeElementIconBorderHoverColorFields2",(function(){return Me})),o.d(n,"onChangeElementButtonBorderColorHex2",(function(){return Ie})),o.d(n,"onChangeElementButtonBorderColorPalette2",(function(){return We})),o.d(n,"onChangeElementButtonBorderColorFields2",(function(){return Ne})),o.d(n,"onChangeElementButtonBorderHoverColorHex2",(function(){return Ae})),o.d(n,"onChangeElementButtonBorderHoverColorPalette2",(function(){return De})),o.d(n,"onChangeElementButtonBorderHoverColorFields2",(function(){return Ve})),o.d(n,"onChangeBgColorHexButton2",(function(){return $e})),o.d(n,"onChangeBgColorPaletteButton2",(function(){return Ge})),o.d(n,"onChangeBgColorFieldsButton2",(function(){return Ue})),o.d(n,"onChangeHoverBgColorHexButton2",(function(){return Ke})),o.d(n,"onChangeHoverBgColorPaletteButton2",(function(){return qe})),o.d(n,"onChangeHoverBgColorFieldsButton2",(function(){return Ye})),o.d(n,"onChangeColorHexButtonIcon2",(function(){return Xe})),o.d(n,"onChangeColorPaletteButtonIcon2",(function(){return Ze})),o.d(n,"onChangeColorFieldsButtonIcon2",(function(){return Je})),o.d(n,"onChangeHoverColorHexButtonIcon2",(function(){return Qe})),o.d(n,"onChangeHoverColorPaletteButtonIcon2",(function(){return et})),o.d(n,"onChangeHoverColorFieldsButtonIcon2",(function(){return tt})),o.d(n,"onChangeMenuColorHex2",(function(){return ot})),o.d(n,"onChangeMenuColorPalette2",(function(){return nt})),o.d(n,"onChangeMenuColorFields2",(function(){return at})),o.d(n,"onChangeMenuHoverColorHex2",(function(){return rt})),o.d(n,"onChangeMenuHoverColorPalette2",(function(){return it})),o.d(n,"onChangeMenuHoverColorFields2",(function(){return lt})),o.d(n,"onChangeActiveColorHexSubMenu2",(function(){return $t})),o.d(n,"onChangeActiveColorPaletteSubMenu2",(function(){return Gt})),o.d(n,"onChangeActiveColorFieldsSubMenu2",(function(){return Ut})),o.d(n,"onChangeBgActiveColorHexSubMenu2",(function(){return Kt})),o.d(n,"onChangeBgActiveColorPaletteSubMenu2",(function(){return qt})),o.d(n,"onChangeBgActiveColorFieldsSubMenu2",(function(){return Yt})),o.d(n,"onChangeColorHexMMenu2",(function(){return st})),o.d(n,"onChangeColorPaletteMMenu2",(function(){return ct})),o.d(n,"onChangeColorFieldsMMenu2",(function(){return dt})),o.d(n,"onChangeHoverColorHexMMenu2",(function(){return ut})),o.d(n,"onChangeHoverColorPaletteMMenu2",(function(){return pt})),o.d(n,"onChangeHoverColorFieldsMMenu2",(function(){return bt})),o.d(n,"onChangeColorHexSubMenu2",(function(){return mt})),o.d(n,"onChangeColorPaletteSubMenu2",(function(){return ht})),o.d(n,"onChangeColorFieldsSubMenu2",(function(){return gt})),o.d(n,"onChangeHoverColorHexSubMenu2",(function(){return vt})),o.d(n,"onChangeHoverColorPaletteSubMenu2",(function(){return ft})),o.d(n,"onChangeHoverColorFieldsSubMenu2",(function(){return yt})),o.d(n,"onChangeColorHexIconMenu2",(function(){return Ot})),o.d(n,"onChangeColorPaletteIconMenu2",(function(){return St})),o.d(n,"onChangeColorFieldsIconMenu2",(function(){return Ct})),o.d(n,"onChangeTabletColorHexIconMMenu2",(function(){return xt})),o.d(n,"onChangeTabletColorPaletteIconMMenu2",(function(){return jt})),o.d(n,"onChangeTabletColorFieldsIconMMenu2",(function(){return Bt})),o.d(n,"onChangeMobileColorHexIconMMenu2",(function(){return Pt})),o.d(n,"onChangeMobileColorPaletteIconMMenu2",(function(){return wt})),o.d(n,"onChangeMobileColorFieldsIconMMenu2",(function(){return Tt})),o.d(n,"onChangeActiveColorHexMMenu2",(function(){return Xt})),o.d(n,"onChangeActiveColorPaletteMMenu2",(function(){return Zt})),o.d(n,"onChangeActiveColorFieldsMMenu2",(function(){return Jt})),o.d(n,"onChangeBgColorHexMMenu2",(function(){return zt})),o.d(n,"onChangeBgColorPaletteMMenu2",(function(){return Et})),o.d(n,"onChangeBgColorFieldsMMenu2",(function(){return kt})),o.d(n,"onChangeBgColorHexSubMenu2",(function(){return Ht})),o.d(n,"onChangeBgColorPaletteSubMenu2",(function(){return _t})),o.d(n,"onChangeBgColorFieldsSubMenu2",(function(){return Ft})),o.d(n,"onChangeBgHoverColorHexSubMenu2",(function(){return Rt})),o.d(n,"onChangeBgHoverColorPaletteSubMenu2",(function(){return Mt})),o.d(n,"onChangeBgHoverColorFieldsSubMenu2",(function(){return Lt})),o.d(n,"onChangeBorderColorHexMMenu2",(function(){return It})),o.d(n,"onChangeBorderColorPaletteMMenu2",(function(){return Wt})),o.d(n,"onChangeBorderColorFieldsMMenu2",(function(){return Nt})),o.d(n,"onChangeBorderColorHexSubMenu2",(function(){return At})),o.d(n,"onChangeBorderColorPaletteSubMenu2",(function(){return Dt})),o.d(n,"onChangeBorderColorFieldsSubMenu2",(function(){return Vt})),o.d(n,"onChangeTypography",(function(){return oo})),o.d(n,"onChangeTypographyTablet",(function(){return no})),o.d(n,"onChangeTypographyMobile",(function(){return ao})),o.d(n,"tabletSyncOnChange",(function(){return i.g})),o.d(n,"mobileSyncOnChange",(function(){return i.f})),o.d(n,"keySyncOnChange",(function(){return i.d})),o.d(n,"validateKeyByProperty",(function(){return i.h})),o.d(n,"onChangeTypography2",(function(){return so}));var a=o(2),r=o(10),i=o(26);function l(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function s(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?l(Object(o),!0).forEach((function(t){Object(a.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):l(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function c(e){return e.onChange.reduce((t,o)=>{const a=n[o](e);return Object.assign(t,a)},{})}function d({v:e,device:t,state:o,me:n,childs:a,value:l,dragEnd:c=!0,tempZero:d=!1}){const u=e=>Object(i.a)({key:e,device:t,state:o});let p={};var b;return b=n,(Object(i.b)({v:e,key:b,device:t,state:o})!==l||c)&&(p=s(s({[u(n)]:l},a?a.reduce((e,t)=>(e[u(t)]=l,e),{}):{}),c&&(d||!d&&0!==l&&""!==l)?s({[u("temp"+Object(r.c)(n))]:l},a?a.reduce((e,t)=>(e[u("temp"+Object(r.c)(t))]=l,e),{}):{}):{})),p}function u({v:e,device:t,state:o,me:n,childs:a,current:l,value:c,dragEnd:d=!0,tempZero:u=!1}){const p=e=>Object(i.a)({key:e,device:t,state:o});let b={};var m;return m=l,(Object(i.b)({v:e,key:m,device:t,state:o})!==c||d)&&(b=s(s({[p(l)]:c},d&&(u||!u&&0!==c&&""!==c)?{[p("temp"+Object(r.c)(l))]:c}:{}),a.filter(e=>e!==l).every(t=>e[t]===c)?s({[p(n)]:c},d&&(u||!u&&0!==c&&""!==c)?{[p("temp"+Object(r.c)(n))]:c}:{}):{})),b}function p({v:e,device:t,state:o,parent:n,childs:a,value:l,sliderDragEnd:c=!0,temp:d=!1,tempZero:u=!1}){const p=s({[Object(i.a)({key:n,device:t,state:o})]:l},a.reduce((e,n)=>(e[Object(i.a)({key:n,device:t,state:o})]=l,e),{})),b=d&&!u?s({[Object(i.a)({key:"temp"+Object(r.c)(n),device:t,state:o})]:l>0&&c?l:Object(i.b)({v:e,key:"temp"+Object(r.c)(n),device:t,state:o})},a.reduce((n,a)=>(n[Object(i.a)({key:"temp"+Object(r.c)(a),device:t,state:o})]=l>0&&c?l:Object(i.b)({v:e,key:"temp"+Object(r.c)(a),device:t,state:o}),n),{})):d?s({[Object(i.a)({key:"temp"+Object(r.c)(n),device:t,state:o})]:l},a.reduce((e,n)=>(e[Object(i.a)({key:"temp"+Object(r.c)(n),device:t,state:o})]=l,e),{})):{};return Object.assign(p,b)}function b({v:e,device:t,state:o,parent:n,childs:a,current:l,value:s,temp:c=!1,tempZero:d=!1}){const u=a.filter(e=>e!==l).every(t=>e[t]===s)?s:Object(i.b)({v:e,key:n,device:t,state:o}),p=a.filter(e=>e!==l).every(t=>e[t]===s)?s:s>0?Object(i.b)({v:e,key:"temp"+Object(r.c)(n),device:t,state:o}):Object(i.b)({v:e,key:n,device:t,state:o});return c&&d?{[Object(i.a)({key:n,device:t,state:o})]:u,[Object(i.a)({key:"temp"+Object(r.c)(n),device:t,state:o})]:p}:{[Object(i.a)({key:n,device:t,state:o})]:u}}function m({v:e,device:t,state:o,childs:n,current:a,value:l,temp:c=!1}){return c?s({[Object(i.a)({key:a,device:t,state:o})]:l,[Object(i.a)({key:"temp"+Object(r.c)(a),device:t,state:o})]:l},n.filter(e=>e!==a).reduce((n,a)=>(n[Object(i.a)({key:"temp"+Object(r.c)(a),device:t,state:o})]=0===e[a]?0:Object(i.b)({v:e,key:"temp"+Object(r.c)(a),device:t,state:o}),n),{})):{[Object(i.a)({key:a,device:t,state:o})]:l}}function h({v:e,device:t="desktop",state:o="normal",value:n,dependencies:a}){const l=n=>Object(i.b)({v:e,key:n,device:t,state:o});return Object.entries(a).reduce((a,[s,c])=>{const d=!(0!==n&&""!==n||void 0===c.nullValue||!(c.nullValue.length>0&&c.nullValue.every(t=>""===e[t]||0===e[t])||0===c.nullValue.length)),u=!(0===n||""===n||0!==l(s)&&""!==l(s)&&"off"!==l("boxShadow")||!(c.tempValue.length>0&&c.tempValue.every(t=>""===e[t]||0===e[t])||0===c.tempValue.length)),p=null===l(s)||void 0===l(s);return p&&console.log("onChange "+s+" "+l(s)),p||(a[(e=>Object(i.a)({key:e,device:t,state:o}))(s)]=d?"string"===c.type?"":0:l(u?"temp"+Object(r.c)(s):s)),Object.assign(a,c.childs.reduce((a,l)=>(null===e[Object(i.a)({key:l,device:t,state:o})]||void 0===e[Object(i.a)({key:l,device:t,state:o})]||(a[Object(i.a)({key:l,device:t,state:o})]=0!==n&&""!==n||void 0===c.nullValue||!(c.nullValue.length>0&&c.nullValue.every(t=>""===e[t]||0===e[t])||0===c.nullValue.length)?(n>0||""!==n)&&c.childs.every(n=>0===Object(i.b)({v:e,key:"temp"+Object(r.c)(n),device:t,state:o}))?Object(i.b)({v:e,key:"temp"+Object(r.c)(s),device:t,state:o}):(n>0||""!==n)&&(c.tempValue.length>0&&c.tempValue.every(t=>""===e[t]||0===e[t])||0===c.tempValue.length)?Object(i.b)({v:e,key:"temp"+Object(r.c)(l),device:t,state:o}):Object(i.b)({v:e,key:l,device:t,state:o}):"string"===c.type?"":0),a),{}),c.childs.reduce((a,l)=>(null===e[Object(i.a)({key:"temp"+Object(r.c)(l),device:t,state:o})]||void 0===e[Object(i.a)({key:"temp"+Object(r.c)(l),device:t,state:o})]||(a[Object(i.a)({key:"temp"+Object(r.c)(l),device:t,state:o})]=(n>0||""!==n)&&c.childs.every(n=>0===Object(i.b)({v:e,key:"temp"+Object(r.c)(n),device:t,state:o}))?Object(i.b)({v:e,key:s,device:t,state:o}):Object(i.b)({v:e,key:"temp"+Object(r.c)(l),device:t,state:o})),a),{})),a},{})}function g({v:e,device:t,state:o,childs:n,current:a,value:l,dependencies:s}){return Object.entries(s).reduce((s,[c,d])=>(null===e[c]||(s[Object(i.a)({key:c,device:t,state:o})]=(0===l||""===l)&&(n.length>0&&n.filter(e=>e!==a).every(t=>0===e[t])||0===n.length)&&void 0!==d.nullValue&&(d.nullValue.length>0&&d.nullValue.every(t=>""===e[t]||0===e[t])||0===d.nullValue.length)?"string"===d.type?"":0:(l>0||""!==l)&&(d.tempValue.length>0&&d.tempValue.every(t=>""===e[t]||0===e[t])||0===d.tempValue.length)?Object(i.b)({v:e,key:"temp"+Object(r.c)(c),device:t,state:o}):Object(i.b)({v:e,key:c,device:t,state:o})),Object.assign(s,d.childs.reduce((s,c)=>{var u,p;return null===e[c]||(s[Object(i.a)({key:c,device:t,state:o})]=(0===l||""===l)&&(n.length>0&&n.filter(e=>e!==a).every(t=>0===e[t])||0===n.length)&&((null===(u=d.nullValue)||void 0===u?void 0:u.length)>0&&d.nullValue.every(t=>""===e[t]||0===e[t])||0===(null===(p=d.nullValue)||void 0===p?void 0:p.length))?"string"===d.type?"":0:(l>0||""!==l)&&0===d.tempValue.length?Object(i.b)({v:e,key:"temp"+Object(r.c)(c),device:t,state:o}):Object(i.b)({v:e,key:c,device:t,state:o})),s},{})),s),{})}function v({device:e,state:t,width:o,height:n,extension:a,src:r,x:l,y:s,population:c,isChanged:d}){return"image"===d?{[Object(i.a)({key:"bgImageWidth",device:e,state:t})]:o,[Object(i.a)({key:"bgImageHeight",device:e,state:t})]:n,[Object(i.a)({key:"bgImageExtension",device:e,state:t})]:a,[Object(i.a)({key:"bgImageSrc",device:e,state:t})]:r}:"population"===d?{[Object(i.a)({key:"bgPopulation",device:e,state:t})]:c}:{[Object(i.a)({key:"bgPositionX",device:e,state:t})]:l,[Object(i.a)({key:"bgPositionY",device:e,state:t})]:s}}function f({v:e,device:t,state:o,src:n,isChanged:a}){const r=""!==n&&1===Object(i.b)({v:e,key:"bgColorOpacity",device:t,state:o})?.9:Object(i.b)({v:e,key:"bgColorOpacity",device:t,state:o}),l=""!==n&&1===Object(i.b)({v:e,key:"bgColorOpacity",device:t,state:o})?.9:Object(i.b)({v:e,key:"tempBgColorOpacity",device:t,state:o});return"image"===a?{[Object(i.a)({key:"bgColorOpacity",device:t,state:o})]:r,[Object(i.a)({key:"tempBgColorOpacity",device:t,state:o})]:l}:{}}function y({v:e,device:t,state:o,src:n}){return h({v:e,device:t,state:o,value:n,dependencies:{borderRadius:{childs:["borderTopLeftRadius","borderTopRightRadius","borderBottomLeftRadius","borderBottomRightRadius"],nullValue:["bgColorOpacity","borderColorOpacity"],tempValue:[]}}})}function O({v:e,device:t,src:o}){return"desktop"===t||"mobile"===t?{mobilePaddingRight:o?e.tempMobilePaddingRight:0,mobilePaddingLeft:o?e.tempMobilePaddingLeft:0}:{}}function S(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function C(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?S(Object(o),!0).forEach((function(t){Object(a.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):S(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function x({v:e,device:t,state:o,borderStyle:n,prefix:a=""}){const l=e=>Object(i.a)({key:e,device:t,state:o}),s=Object(r.b)(a,"border"),c=Object(r.b)(s,"style"),d=Object(r.b)("temp",c);return{[l(c)]:n,[l(d)]:""!==n?n:(u=d,Object(i.b)({v:e,key:u,device:t,state:o}))};var u}function j({v:e,device:t,state:o,borderStyle:n,prefix:a=""}){const i=Object(r.b)(a,"border");return h({v:e,device:t,state:o,value:n,dependencies:{[Object(r.b)(i,"colorOpacity")]:{childs:[],nullValue:[],tempValue:[]},[Object(r.b)(i,"colorPalette")]:{childs:[],nullValue:[],tempValue:[]},[Object(r.b)(i,"width")]:{childs:[Object(r.b)(i,"topWidth"),Object(r.b)(i,"rightWidth"),Object(r.b)(i,"bottomWidth"),Object(r.b)(i,"leftWidth")],nullValue:[],tempValue:[]}}})}function B({v:e,device:t,state:o,borderStyle:n}){return h({v:e,device:t,state:o,value:n,dependencies:{borderColorOpacity:{childs:[],nullValue:[],tempValue:[]},borderColorPalette:{childs:[],nullValue:[],tempValue:[]},borderWidth:{childs:["borderTopWidth","borderRightWidth","borderBottomWidth","borderLeftWidth"],nullValue:[],tempValue:[]},borderRadius:{childs:["borderTopLeftRadius","borderTopRightRadius","borderBottomLeftRadius","borderBottomRightRadius"],nullValue:["bgColorOpacity","bgImageSrc"],tempValue:[]}}})}function P({v:e,device:t,state:o,hex:n,opacity:a,prefix:l="",isChanged:s="hex",opacityDragEnd:c=!1}){const d=e=>Object(i.a)({key:e,device:t,state:o}),u=Object(r.b)(l,"border"),p=Object(r.b)(u,"colorHex"),b=Object(r.b)(u,"colorOpacity"),m=Object(r.b)("temp",b),h=(a=W({v:e,device:t,state:o,opacity:a,prefix:l,isChanged:s}))>0&&c?a:(g=m,Object(i.b)({v:e,key:g,device:t,state:o}));var g;return{[d(p)]:n,[d(b)]:a,[d(m)]:h}}function w({v:e,device:t,state:o,opacity:n,prefix:a="",isChanged:l="hex"}){const s=e=>Object(i.a)({key:e,device:t,state:o}),c=n=>Object(i.b)({v:e,key:n,device:t,state:o}),d=Object(r.b)(a,"border"),u=Object(r.b)(d,"colorPalette"),p=Object(r.b)("temp",u);n=W({v:e,device:t,state:o,opacity:n,prefix:a,isChanged:l});const b="hex"===l||0===n?"":c(n>0?p:u),m="hex"===l?"":c(p);return{[s(u)]:b,[s(p)]:m}}function T({v:e,device:t,state:o,opacity:n,isChanged:a,prefix:i=""}){const l=Object(r.b)(i,"border"),s={[Object(r.b)(l,"style")]:{childs:[],nullValue:[],tempValue:[]},[Object(r.b)(l,"width")]:{childs:[Object(r.b)(l,"topWidth"),Object(r.b)(l,"rightWidth"),Object(r.b)(l,"bottomWidth"),Object(r.b)(l,"leftWidth")],nullValue:[],tempValue:[]}};return h({v:e,device:t,state:o,value:n=W({v:e,device:t,state:o,opacity:n,prefix:i,isChanged:a}),dependencies:s})}function z({v:e,device:t,state:o,opacity:n,isChanged:a}){return h({v:e,device:t,state:o,value:n=W({v:e,device:t,state:o,opacity:n,isChanged:a}),dependencies:{borderStyle:{childs:[],nullValue:[],tempValue:[]},borderWidth:{childs:["borderTopWidth","borderRightWidth","borderBottomWidth","borderLeftWidth"],nullValue:[],tempValue:[]},borderRadius:{childs:["borderTopLeftRadius","borderTopRightRadius","borderBottomLeftRadius","borderBottomRightRadius"],nullValue:["bgColorOpacity","bgImageSrc"],tempValue:[]}}})}function E({v:e,device:t,opacity:o,isChanged:n}){if("desktop"===t||"tablet"===t){return{tabletPaddingRight:0===(o=W({v:e,device:t,opacity:o,isChanged:n}))?0:"hex"===n||o>0?e.tempTabletPaddingRight:e.tabletPaddingRight,tabletPaddingLeft:0===o?0:"hex"===n||o>0?e.tempTabletPaddingLeft:e.tabletPaddingLeft}}return{}}function k({v:e,device:t,opacity:o,isChanged:n}){if("desktop"===t||"mobile"===t){return{mobilePaddingRight:0===(o=W({v:e,device:t,opacity:o,isChanged:n}))?0:"hex"===n||o>0?e.tempMobilePaddingRight:e.mobilePaddingRight,mobilePaddingLeft:0===o?0:"hex"===n||o>0?e.tempMobilePaddingLeft:e.mobilePaddingLeft}}return{}}function H({device:e,state:t,palette:o,prefix:n=""}){const a=o=>Object(i.a)({key:o,device:e,state:t}),l=Object(r.b)(n,"border"),s=Object(r.b)(l,"colorPalette"),c=Object(r.b)("temp",s);return{[a(s)]:o,[a(c)]:o}}function _({v:e,device:t,state:o,opacity:n,isChanged:a,prefix:l=""}){const s=Object(r.b)(l,"border"),c=Object(r.b)(s,"colorOpacity");return n=W({v:e,device:t,state:o,opacity:n,prefix:l,isChanged:a}),{[(d=c,Object(i.a)({key:d,device:t,state:o}))]:n};var d}function F({device:e,state:t,type:o,prefix:n=""}){const a=Object(r.b)(n,"border"),l=Object(r.b)(a,"widthType");return{[(s=l,Object(i.a)({key:s,device:e,state:t}))]:o};var s}function R({v:e,device:t,state:o,value:n,sliderDragEnd:a,prefix:i=""}){const l=Object(r.b)(i,"border");return p({v:e,device:t,state:o,parent:Object(r.b)(l,"width"),childs:[Object(r.b)(l,"topWidth"),Object(r.b)(l,"rightWidth"),Object(r.b)(l,"bottomWidth"),Object(r.b)(l,"leftWidth")],value:n,sliderDragEnd:a,temp:!0,tempZero:!1})}function M({v:e,device:t,state:o,value:n,prefix:a=""}){const i=Object(r.b)(a,"border"),l=Object(r.b)(i,"style"),s=Object(r.b)(i,"radius"),c=Object(r.b)(i,"colorOpacity"),d=Object(r.b)(i,"colorPalette");return h({v:e,device:t,state:o,value:n,dependencies:{[l]:{childs:[],nullValue:[],tempValue:[]},[s]:{childs:[Object(r.b)(i,"topLeftRadius"),Object(r.b)(i,"topRightRadius"),Object(r.b)(i,"bottomLeftRadius"),Object(r.b)(i,"bottomRightRadius")],nullValue:["bgColorOpacity","bgImageSrc"],tempValue:[]},[c]:{childs:[],nullValue:[],tempValue:[]},[d]:{childs:[],nullValue:[],tempValue:[]}}})}function L({v:e,device:t,state:o,current:n,value:a,prefix:i=""}){const l=Object(r.b)(i,"border"),s=Object(r.b)(l,"width"),c=[Object(r.b)(l,"topWidth"),Object(r.b)(l,"rightWidth"),Object(r.b)(l,"bottomWidth"),Object(r.b)(l,"leftWidth")];return C(C({},m({v:e,device:t,state:o,childs:c,current:n,value:a,temp:!0})),b({v:e,device:t,state:o,parent:s,childs:c,current:n,value:a,temp:!0}))}function I({v:e,device:t,state:o,current:n,value:a,prefix:i=""}){const l=Object(r.b)(i,"border"),s=Object(r.b)(l,"width"),c=[Object(r.b)(l,"topWidth"),Object(r.b)(l,"rightWidth"),Object(r.b)(l,"bottomWidth"),Object(r.b)(l,"leftWidth")],d=Object(r.b)(l,"style"),u=Object(r.b)(l,"radius"),p=Object(r.b)(l,"colorOpacity"),b=Object(r.b)(l,"colorPalette");return g({v:e,device:t,state:o,parent:s,childs:c,current:n,value:a,dependencies:{[d]:{childs:[],nullValue:[],tempValue:[]},[u]:{childs:[Object(r.b)(l,"topLeftRadius"),Object(r.b)(l,"topRightRadius"),Object(r.b)(l,"bottomLeftRadius"),Object(r.b)(l,"bottomRightRadius")],nullValue:["bgColorOpacity","bgImageSrc"],tempValue:[]},[p]:{childs:[],nullValue:[],tempValue:[]},[b]:{childs:[],nullValue:[],tempValue:[]}}})}function W({v:e,device:t,state:o,prefix:n="",opacity:a,isChanged:l="hex"}){const s=n=>Object(i.b)({v:e,key:n,device:t,state:o}),c=Object(r.b)(n,"border"),d=Object(r.b)(c,"colorOpacity"),u=Object(r.b)("temp",d);return"hex"!==l&&"palette"!==l||0!==s(d)?void 0===a?s(d):a:s(u)}function N(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function A(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?N(Object(o),!0).forEach((function(t){Object(a.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):N(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function D({v:e,device:t,state:o,value:n,sliderDragEnd:a,prefix:i=""}){return p({v:e,device:t,state:o,parent:Object(r.b)(i,"borderRadius"),childs:["borderTopLeftRadius","borderTopRightRadius","borderBottomLeftRadius","borderBottomRightRadius"].map(e=>Object(r.b)(i,e)),value:n,sliderDragEnd:a,temp:!0,tempZero:!0})}function V({v:e,device:t,state:o,value:n,prefix:a=""}){return h({v:e,device:t,state:o,value:n,tempZero:!0,dependencies:{borderStyle:{childs:[],tempValue:["bgColorOpacity","bgImageSrc"]},borderWidth:{childs:["borderTopWidth","borderRightWidth","borderBottomWidth","borderLeftWidth"].map(e=>Object(r.b)(a,e)),tempValue:["bgColorOpacity","bgImageSrc"]},borderColorOpacity:{childs:[],tempValue:["bgColorOpacity","bgImageSrc"]},borderColorPalette:{childs:[],tempValue:["bgColorOpacity","bgImageSrc"]}}})}function $({v:e,device:t,state:o,value:n,current:a,prefix:i=""}){const l=Object(r.b)(i,a),s=Object(r.b)(i,"borderRadius"),c=["borderTopLeftRadius","borderTopRightRadius","borderBottomLeftRadius","borderBottomRightRadius"].map(e=>Object(r.b)(i,e));return A(A({},m({v:e,device:t,childs:c,state:o,current:l,value:n,temp:!0})),b({v:e,device:t,state:o,parent:s,childs:c,current:l,value:n,temp:!0,tempZero:!0}))}function G({v:e,device:t,state:o,value:n,current:a,prefix:i=""}){const l=Object(r.b)(i,a);return A({},g({v:e,device:t,state:o,parent:Object(r.b)(i,"borderRadius"),childs:["borderTopLeftRadius","borderTopRightRadius","borderBottomLeftRadius","borderBottomRightRadius"].map(e=>Object(r.b)(i,e)),current:l,value:n,dependencies:{borderStyle:{childs:[],tempValue:["bgColorOpacity","bgImageSrc"]},borderWidth:{childs:["borderTopWidth","borderRightWidth","borderBottomWidth","borderLeftWidth"].map(e=>Object(r.b)(i,e)),tempValue:["bgColorOpacity","bgImageSrc"]},borderColorOpacity:{childs:[],tempValue:["bgColorOpacity","bgImageSrc"]},borderColorPalette:{childs:[],tempValue:["bgColorOpacity","bgImageSrc"]}}}))}function U({v:e,device:t,state:o,prefix:n="color",hex:a,opacity:l,isChanged:s="hex",opacityDragEnd:c=!1}){const d=e=>Object(i.a)({key:e,device:t,state:o}),u="temp"+Object(r.c)(n),p=(l=X({v:e,device:t,state:o,prefix:n,opacity:l,isChanged:s}))>0&&c?l:(b=Object(r.b)(u,"opacity"),Object(i.b)({v:e,key:b,device:t,state:o}));var b;return{[d(Object(r.b)(n,"hex"))]:a,[d(Object(r.b)(n,"opacity"))]:l,[d(Object(r.b)(u,"opacity"))]:p}}function K({v:e,device:t,state:o,prefix:n="color",opacity:a,isChanged:l="hex"}){const s=e=>Object(i.a)({key:e,device:t,state:o}),c=n=>Object(i.b)({v:e,key:n,device:t,state:o}),d="temp"+Object(r.c)(n);a=X({v:e,device:t,state:o,prefix:n,opacity:a,isChanged:l});const u="hex"===l||0===a?"":c(a>0?Object(r.b)(d,"palette"):Object(r.b)(n,"palette")),p="hex"===l?"":c(Object(r.b)(d,"palette"));return{[s(Object(r.b)(n,"palette"))]:u,[s(Object(r.b)(d,"palette"))]:p}}function q({device:e,state:t,prefix:o="color",palette:n}){const a=o=>Object(i.a)({key:o,device:e,state:t}),l="temp"+Object(r.c)(o);return{[a(Object(r.b)(o,"palette"))]:n,[a(Object(r.b)(l,"palette"))]:n}}function Y({v:e,device:t,state:o,prefix:n="color",opacity:a,isChanged:l="hex"}){return a=X({v:e,device:t,state:o,prefix:n,opacity:a,isChanged:l}),{[(s=Object(r.b)(n,"opacity"),Object(i.a)({key:s,device:t,state:o}))]:a};var s}function X({v:e,device:t,state:o,prefix:n="color",opacity:a,isChanged:l="hex"}){const s=n=>Object(i.b)({v:e,key:n,device:t,state:o}),c="temp"+Object(r.c)(n);return"hex"===l&&0===s(Object(r.b)(n,"opacity"))?s(Object(r.b)(c,"opacity")):void 0===a?s(Object(r.b)(n,"opacity")):a}function Z({v:e,device:t,state:o,bgColorType:n}){const a=e=>Object(i.a)({key:e,device:t,state:o});return{[a("bgColorType")]:n,[a("gradientActivePointer")]:"solid"===n?"startPointer":(r="gradientActivePointer",Object(i.b)({v:e,key:r,device:t,state:o}))};var r}function J({device:e,state:t,startPointer:o,finishPointer:n,activePointer:a}){const r=o=>Object(i.a)({key:o,device:e,state:t});return{[r("gradientStartPointer")]:o,[r("gradientFinishPointer")]:n,[r("gradientActivePointer")]:a}}function Q({v:e,device:t,state:o,prefix:n,hex:a,opacity:l,isChanged:s="hex",opacityDragEnd:c=!1}){const d=e=>Object(i.a)({key:e,device:t,state:o}),u="temp"+Object(r.c)(n),p=(l=re({v:e,device:t,state:o,prefix:n,opacity:l,isChanged:s}))>0&&c?l:(b=Object(r.b)(u,"colorOpacity"),Object(i.b)({v:e,key:b,device:t,state:o}));var b;return{[d(Object(r.b)(n,"colorHex"))]:a,[d(Object(r.b)(n,"colorOpacity"))]:l,[d(Object(r.b)(u,"colorOpacity"))]:p}}function ee({v:e,device:t,state:o,prefix:n,opacity:a,isChanged:l="hex"}){const s=e=>Object(i.a)({key:e,device:t,state:o}),c=n=>Object(i.b)({v:e,key:n,device:t,state:o}),d="temp"+Object(r.c)(n);a=re({v:e,device:t,state:o,prefix:n,opacity:a,isChanged:l});const u="hex"===l||0===a?"":c(a>0?Object(r.b)(d,"colorPalette"):Object(r.b)(n,"colorPalette")),p="hex"===l?"":c(Object(r.b)(d,"colorPalette"));return{[s(Object(r.b)(n,"colorPalette"))]:u,[s(Object(r.b)(d,"colorPalette"))]:p}}function te({v:e,device:t,state:o,prefix:n,opacity:a,isChanged:r="hex"}){return h({v:e,device:t,state:o,value:a=re({v:e,device:t,state:o,prefix:n,opacity:a,isChanged:r}),dependencies:{borderRadius:{childs:["borderTopLeftRadius","borderTopRightRadius","borderBottomLeftRadius","borderBottomRightRadius"],nullValue:["bgImageSrc","borderColorOpacity"],tempValue:[]}}})}function oe({v:e,device:t,prefix:o,opacity:n,isChanged:a="hex"}){if("desktop"===t||"mobile"===t){return{mobilePaddingRight:0===(n=re({v:e,device:t,prefix:o,opacity:n,isChanged:a}))?0:"hex"===a||n>0?e.tempMobilePaddingRight:e.mobilePaddingRight,mobilePaddingLeft:0===n?0:"hex"===a||n>0?e.tempMobilePaddingLeft:e.mobilePaddingLeft}}return{}}function ne({device:e,state:t,prefix:o,palette:n}){const a=o=>Object(i.a)({key:o,device:e,state:t}),l="temp"+Object(r.c)(o);return{[a(Object(r.b)(o,"colorPalette"))]:n,[a(Object(r.b)(l,"colorPalette"))]:n}}function ae({v:e,device:t,state:o,prefix:n,opacity:a,isChanged:l="hex"}){return a=re({v:e,device:t,state:o,prefix:n,opacity:a,isChanged:l}),{[(s=Object(r.b)(n,"colorOpacity"),Object(i.a)({key:s,device:t,state:o}))]:a};var s}function re({v:e,device:t,state:o,prefix:n,opacity:a,isChanged:l="hex"}){const s=n=>Object(i.b)({v:e,key:n,device:t,state:o}),c="temp"+Object(r.c)(n);return"hex"!==l&&"palette"!==l||0!==s(Object(r.b)(n,"colorOpacity"))||1!==s(Object(r.b)(c,"colorOpacity"))||""===s("bgImageSrc")?"hex"!==l&&"palette"!==l||0!==s(Object(r.b)(n,"colorOpacity"))?void 0===a?s(Object(r.b)(n,"colorOpacity")):a:s(Object(r.b)(c,"colorOpacity")):.9}function ie({v:e,device:t,state:o,boxShadowType:n,prefix:a=""}){const l=e=>Object(i.a)({key:e,device:t,state:o}),s=Object(r.b)(a,"boxShadow"),c=Object(r.b)("temp",s);return{[l(s)]:n,[l(c)]:""!==n?n:(d=c,Object(i.b)({v:e,key:d,device:t,state:o}))};var d}function le({v:e,device:t,state:o,boxShadowType:n,prefix:a=""}){const i=Object(r.b)(a,"boxShadow");return h({v:e,device:t,state:o,value:n,dependencies:{[Object(r.b)(i,"colorOpacity")]:{childs:[],nullValue:[],tempValue:[]},[Object(r.b)(i,"colorPalette")]:{childs:[],nullValue:[],tempValue:[]},[Object(r.b)(i,"blur")]:{childs:[],nullValue:[],tempValue:[]},[Object(r.b)(i,"spread")]:{childs:[],nullValue:[],tempValue:[]},[Object(r.b)(i,"vertical")]:{childs:[],nullValue:[],tempValue:[]},[Object(r.b)(i,"horizontal")]:{childs:[],nullValue:[],tempValue:[]}}})}function se({v:e,device:t,state:o,hex:n,opacity:a,prefix:l="",isChanged:s="hex",opacityDragEnd:c=!1}){const d=e=>Object(i.a)({key:e,device:t,state:o}),u=Object(r.b)(l,"boxShadow"),p=Object(r.b)(u,"colorHex"),b=Object(r.b)(u,"colorOpacity"),m=Object(r.b)("temp",b),h=(a=he({v:e,device:t,state:o,opacity:a,prefix:l,isChanged:s}))>0&&c?a:(g=m,Object(i.b)({v:e,key:g,device:t,state:o}));var g;return{[d(p)]:n,[d(b)]:a,[d(m)]:h}}function ce({v:e,device:t,state:o,opacity:n,prefix:a="",isChanged:l="hex"}){const s=e=>Object(i.a)({key:e,device:t,state:o}),c=n=>Object(i.b)({v:e,key:n,device:t,state:o}),d=Object(r.b)(a,"boxShadow"),u=Object(r.b)(d,"colorPalette"),p=Object(r.b)("temp",u);n=he({v:e,device:t,state:o,opacity:n,isChanged:l});const b="hex"===l||0===n?"":c(n>0?p:u),m="hex"===l?"":c(p);return{[s(u)]:b,[s(p)]:m}}function de({v:e,device:t,state:o,opacity:n,isChanged:a,prefix:i=""}){const l=Object(r.b)(i,"boxShadow"),s={[l]:{childs:[],nullValue:[],tempValue:[]},[Object(r.b)(l,"blur")]:{childs:[],nullValue:[],tempValue:[]},[Object(r.b)(l,"spread")]:{childs:[],nullValue:[],tempValue:[]},[Object(r.b)(l,"vertical")]:{childs:[],nullValue:[],tempValue:[]},[Object(r.b)(l,"horizontal")]:{childs:[],nullValue:[],tempValue:[]}};return h({v:e,device:t,state:o,value:n=he({v:e,device:t,state:o,opacity:n,prefix:i,isChanged:a}),dependencies:s})}function ue({device:e,state:t,palette:o,prefix:n=""}){const a=o=>Object(i.a)({key:o,device:e,state:t}),l=Object(r.b)(n,"boxShadow"),s=Object(r.b)(l,"colorPalette"),c=Object(r.b)("temp",s);return{[a(s)]:o,[a(c)]:o}}function pe({v:e,device:t,state:o,opacity:n,isChanged:a,prefix:l=""}){const s=Object(r.b)(l,"boxShadow"),c=Object(r.b)(s,"colorOpacity");return n=he({v:e,device:t,state:o,opacity:n,prefix:l,isChanged:a}),{[(d=c,Object(i.a)({key:d,device:t,state:o}))]:n};var d}function be({device:e,state:t,boxShadowBlur:o=0,boxShadowSpread:n=0,boxShadowVertical:a=0,boxShadowHorizontal:l=0,prefix:s=""}){const c=o=>Object(i.a)({key:o,device:e,state:t}),d=Object(r.b)(s,"boxShadow"),u=Object(r.b)(d,"blur"),p=Object(r.b)(d,"spread"),b=Object(r.b)(d,"vertical"),m=Object(r.b)(d,"horizontal"),h=Object(r.b)("temp",u),g=Object(r.b)("temp",p),v=Object(r.b)("temp",b),f=Object(r.b)("temp",m);return{[c(u)]:o,[c(h)]:o,[c(p)]:n,[c(g)]:n,[c(b)]:a,[c(v)]:a,[c(m)]:l,[c(f)]:l}}function me({v:e,device:t,state:o,boxShadowBlur:n=0,boxShadowSpread:a=0,boxShadowVertical:i=0,boxShadowHorizontal:l=0,prefix:s=""}){const c=Math.max(n,a,i,l),d=Object(r.b)(s,"boxShadow");return h({v:e,device:t,state:o,value:c,dependencies:{[d]:{childs:[],nullValue:[],tempValue:[]},[Object(r.b)(d,"colorOpacity")]:{childs:[],nullValue:[],tempValue:[]},[Object(r.b)(d,"colorPalette")]:{childs:[],nullValue:[],tempValue:[]}}})}function he({v:e,device:t,state:o,prefix:n="",opacity:a,isChanged:l="hex"}){const s=n=>Object(i.b)({v:e,key:n,device:t,state:o}),c=Object(r.b)(n,"boxShadow"),d=Object(r.b)(c,"colorOpacity"),u=Object(r.b)("temp",d);return"hex"!==l&&"palette"!==l||0!==s(d)?void 0===a?s(d):a:s(u)}function ge(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function ve(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?ge(Object(o),!0).forEach((function(t){Object(a.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):ge(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function fe({v:e,device:t,state:o,me:n="padding",childs:a,value:i,suffix:l,sliderDragEnd:s,prefix:c=""}){const u=[],p=[],b=Object(r.b)(c,n);return a.forEach(e=>{const t=Object(r.b)(c,e);u.push(t),p.push(Object(r.b)(t,"suffix"))}),ve(ve({},d({v:e,device:t,state:o,me:b+"Suffix",childs:p,value:l,dragEnd:s})),d({v:e,device:t,state:o,childs:u,value:i,me:b,dragEnd:s}))}function ye({v:e,device:t,state:o,value:n,suffix:a,sliderDragEnd:i,childs:l,current:s,me:c="padding",prefix:d=""}){const p=[],b=[],m=Object(r.b)(d,c),h=Object(r.b)(d,s);return l.forEach(e=>{const t=Object(r.b)(d,e);p.push(t),b.push(Object(r.b)(t,"suffix"))}),ve(ve({},u({v:e,device:t,state:o,me:m+"Suffix",childs:b,current:h+"Suffix",value:a,dragEnd:i})),u({v:e,device:t,state:o,childs:p,current:h,value:n,me:m,dragEnd:i}))}function Oe(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function Se(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?Oe(Object(o),!0).forEach((function(t){Object(a.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):Oe(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function Ce({v:e,device:t,state:o,value:n,suffix:a}){const r=["marginTop","marginRight","marginBottom","marginLeft"],i=[];for(var l=0;l<r.length;l++)i[l]=r[l]+"Suffix";return Se(Se({},p({v:e,device:t,state:o,parent:"marginSuffix",childs:i,value:a})),p({v:e,device:t,state:o,parent:"margin",childs:r,value:n}))}function xe({v:e,device:t,state:o,current:n,value:a,suffix:r}){const l=["marginTop","marginRight","marginBottom","marginLeft"],s=[];for(var c=0;c<l.length;c++)s[c]=l[c]+"Suffix";return Se(Se(Se({[""+Object(i.a)({key:n+"Suffix",device:t,state:o})]:r},m({v:e,device:t,state:o,childs:l,current:n,value:a})),b({v:e,device:t,state:o,parent:"margin",childs:l,current:n,value:a})),b({v:e,device:t,state:o,parent:"marginSuffix",childs:s,current:n+"Suffix",value:r}))}function je({v:e,device:t,state:o,opacity:n,isChanged:a="hex"}){return h({v:e,device:t,state:o,value:n=function({v:e,device:t,state:o,opacity:n,isChanged:a}){return"hex"===a&&0===Object(i.b)({v:e,key:"boxShadowColorOpacity",device:t,state:o})?Object(i.b)({v:e,key:"tempBoxShadowColorOpacity",device:t,state:o}):void 0===n?Object(i.b)({v:e,key:"boxShadowColorOpacity",device:t,state:o}):n}({v:e,device:t,state:o,opacity:n,isChanged:a}),dependencies:{boxShadowBlur:{childs:[],nullValue:[],tempValue:[]},boxShadowVertical:{childs:[],nullValue:[],tempValue:[]}}})}function Be({v:e,device:t,state:o,hex:n,opacity:a,isChanged:r="hex",opacityDragEnd:l=!1}){const s=(a=Ee({v:e,device:t,state:o,opacity:a,isChanged:r}))>0&&l?a:Object(i.b)({v:e,key:"tempBg2ColorOpacity",device:t,state:o});return{[Object(i.a)({key:"bg2ColorHex",device:t,state:o})]:n,[Object(i.a)({key:"bg2ColorOpacity",device:t,state:o})]:a,[Object(i.a)({key:"tempBg2ColorOpacity",device:t,state:o})]:s}}function Pe({v:e,device:t,state:o,opacity:n,isChanged:a="hex"}){n=Ee({v:e,device:t,state:o,opacity:n,isChanged:a});const r="hex"===a||0===n?"":n>0?Object(i.b)({v:e,key:"tempBg2ColorPalette",device:t,state:o}):Object(i.b)({v:e,key:"bg2ColorPalette",device:t,state:o}),l="hex"===a?"":Object(i.b)({v:e,key:"tempBg2ColorPalette",device:t,state:o});return{[Object(i.a)({key:"bg2ColorPalette",device:t,state:o})]:r,[Object(i.a)({key:"tempBg2ColorPalette",device:t,state:o})]:l}}function we({v:e,device:t,state:o,opacity:n,isChanged:a="hex"}){return h({v:e,device:t,state:o,value:n=Ee({v:e,device:t,state:o,opacity:n,isChanged:a}),dependencies:{borderRadius:{childs:["borderTopLeftRadius","borderTopRightRadius","borderBottomLeftRadius","borderBottomRightRadius"],nullValue:["bg2ImageSrc","borderColorOpacity"],tempValue:[]}}})}function Te({device:e,state:t,palette:o}){return{[Object(i.a)({key:"bg2ColorPalette",device:e,state:t})]:o,[Object(i.a)({key:"tempBg2ColorPalette",device:e,state:t})]:o}}function ze({v:e,device:t,state:o,opacity:n,isChanged:a="hex"}){return n=Ee({v:e,device:t,state:o,opacity:n,isChanged:a}),{[Object(i.a)({key:"bg2ColorOpacity",device:t,state:o})]:n}}function Ee({v:e,device:t,state:o,opacity:n,isChanged:a}){return"hex"===a&&0===Object(i.b)({v:e,key:"bg2ColorOpacity",device:t,state:o})&&1===Object(i.b)({v:e,key:"tempBg2ColorOpacity",device:t,state:o})&&""!==Object(i.b)({v:e,key:"bg2ImageSrc",device:t,state:o})?.9:"hex"===a&&0===Object(i.b)({v:e,key:"bg2ColorOpacity",device:t,state:o})?Object(i.b)({v:e,key:"tempBg2ColorOpacity",device:t,state:o}):void 0===n?Object(i.b)({v:e,key:"bg2ColorOpacity",device:t,state:o}):n}function ke({v:e,hex:t,opacity:o,isChanged:n="hex"}){return{borderColorHex:t,borderColorOpacity:o=t!==e.borderColorHex&&0===e.borderColorOpacity?e.tempBorderColorOpacity:o,borderColorPalette:"hex"===n?"":e.borderColorPalette,tempBorderColorOpacity:o>0?o:e.tempBorderColorOpacity,tempBorderColorPalette:"hex"===n?"":e.tempBorderColorPalette,padding:0===o&&0===e.bgColorOpacity?0:o>0?e.tempPadding:e.padding,borderRadiusType:0===o&&0===e.bgColorOpacity?"":o>0?e.tempBorderRadiusType:e.borderRadiusType,fillType:0===o&&0===e.bgColorOpacity?"default":o>0&&0===e.bgColorOpacity?"outline":e.fillType,borderWidth:0===o?0:o>0?e.tempBorderWidth:e.borderWidth,bgColorOpacity:o>0&&e.bgColorOpacity>0?e.tempBgColorOpacity:e.bgColorOpacity,hoverBgColorHex:e.bgColorHex===e.hoverBgColorHex?t:e.hoverBgColorHex,hoverBgColorOpacity:0===o&&0===e.bgColorOpacity?0:e.bgColorOpacity===e.hoverBgColorOpacity?o:e.hoverBgColorOpacity}}function He({v:e,palette:t}){return{borderColorPalette:t,tempBorderColorPalette:t,borderColorOpacity:0===e.borderColorOpacity?e.tempBorderColorOpacity:e.borderColorOpacity,padding:e.tempPadding,borderRadiusType:e.tempBorderRadiusType,fillType:0===e.bgColorOpacity?"outline":e.bgColorOpacity>0?"filled":e.fillType,borderWidth:e.tempBorderWidth}}function _e({v:e,hex:t,opacity:o,isChanged:n}){return{borderColorPalette:"hex"===n?"":e.borderColorPalette,borderColorHex:t,borderColorOpacity:o}}function Fe({v:e,hex:t,opacity:o,isChanged:n="hex"}){return{hoverBorderColorHex:t,hoverBorderColorOpacity:t!==e.hoverBorderColorHex&&0==e.hoverBorderColorOpacity?e.tempHoverBorderColorOpacity:o,hoverBorderColorPalette:"hex"===n?"":e.hoverBorderColorPalette}}function Re({v:e,palette:t}){return{hoverBorderColorPalette:t,hoverBorderColorOpacity:0===e.hoverBorderColorOpacity?e.tempHoverBorderColorOpacity:e.hoverBorderColorOpacity}}function Me({v:e,hex:t,opacity:o,isChanged:n}){return{hoverBorderColorPalette:"hex"===n?"":e.hoverBorderColorPalette,hoverBorderColorHex:t,hoverBorderColorOpacity:o}}var Le=o(14);function Ie({v:e,hex:t,opacity:o,isChanged:n="hex",opacityDragEnd:a=!1}){return{borderColorHex:t,borderColorOpacity:o=t!==e.borderColorHex&&0===e.borderColorOpacity?e.tempBorderColorOpacity:o,tempBorderColorOpacity:o>0&&a?o:e.tempBorderColorOpacity,borderColorPalette:"hex"===n?"":e.borderColorPalette,tempBorderColorPalette:"hex"===n?"":e.tempBorderColorPalette,paddingRL:0===o&&0===e.bgColorOpacity?0:o>0&&!Le.g?e.tempPaddingRL:e.paddingRL,paddingRight:0===o&&0===e.bgColorOpacity?0:o>0&&!Le.g?e.tempPaddingRight:e.paddingRight,paddingLeft:0===o&&0===e.bgColorOpacity?0:o>0&&!Le.g?e.tempPaddingLeft:e.paddingRight,paddingTB:0!==o||0!==e.bgColorOpacity||Le.g?e.paddingTB:e.tempPaddingTB,paddingTop:0!==o||0!==e.bgColorOpacity||Le.g?e.paddingTop:e.tempPaddingTop,paddingBottom:0!==o||0!==e.bgColorOpacity||Le.g?e.paddingBottom:e.tempPaddingBottom,fillType:0===o&&0===e.bgColorOpacity?"default":o>0&&0===e.bgColorOpacity?"outline":e.fillType,borderRadiusType:0===o&&0===e.bgColorOpacity?"":o>0?e.tempBorderRadiusType:e.borderRadiusType,borderWidth:0===o?0:o>0?e.tempBorderWidth:e.borderWidth,bgColorOpacity:o>0&&e.bgColorOpacity>0?e.tempBgColorOpacity:e.bgColorOpacity,hoverBgColorHex:e.bgColorHex===e.hoverBgColorHex?t:e.hoverBgColorHex,hoverBgColorOpacity:0===o&&0===e.bgColorOpacity?0:e.bgColorOpacity===e.hoverBgColorOpacity?o:e.hoverBgColorOpacity}}function We({v:e,palette:t}){return{borderColorPalette:t,tempBorderColorPalette:t,borderColorOpacity:0===e.borderColorOpacity?e.tempBorderColorOpacity:e.borderColorOpacity,borderRadiusType:e.tempBorderRadiusType,fillType:0===e.bgColorOpacity?"outline":e.bgColorOpacity>0?"filled":e.fillType,borderWidth:e.tempBorderWidth}}function Ne({v:e,hex:t,opacity:o,isChanged:n="hex"}){return{borderColorPalette:"hex"===n?"":e.borderColorPalette,borderColorHex:t,borderColorOpacity:o}}function Ae({v:e,hex:t,opacity:o,isChanged:n="hex"}){return{hoverBorderColorHex:t,hoverBorderColorOpacity:t!==e.hoverBorderColorHex&&0==e.hoverBorderColorOpacity?e.tempHoverBorderColorOpacity:o,hoverBorderColorPalette:"hex"===n?"":e.hoverBorderColorPalette}}function De({v:e,palette:t}){return{hoverBorderColorPalette:t,hoverBorderColorOpacity:0===e.hoverBorderColorOpacity?e.tempHoverBorderColorOpacity:e.hoverBorderColorOpacity}}function Ve({v:e,hex:t,opacity:o,isChanged:n="hex"}){return{hoverBorderColorPalette:"hex"===n?"":e.hoverBorderColorPalette,hoverBorderColorHex:t,hoverBorderColorOpacity:o}}function $e({v:e,hex:t,opacity:o,isChanged:n="hex",opacityDragEnd:a=!1}){return{bgColorHex:t,bgColorOpacity:o=t!==e.bgColorHex&&0===e.bgColorOpacity?e.tempBgColorOpacity:o,bgColorPalette:"hex"===n?"":e.bgColorPalette,tempBgColorPalette:"hex"===n?"":e.tempBgColorPalette,tempBgColorOpacity:o>0&&a?o:e.tempBgColorOpacity,borderRadiusType:0===o&&0===e.borderColorOpacity?"":o>0?e.tempBorderRadiusType:e.borderRadiusType,fillType:0===o&&0===e.borderColorOpacity?"default":0===o&&e.borderColorOpacity>0?"outline":o>0?"filled":e.fillType,borderWidth:0===o&&0===e.borderColorOpacity?0:e.borderWidth,borderColorHex:""!==e.bgColorPalette&&e.bgColorPalette===e.borderColorPalette&&"filled"===e.fillType||""===e.bgColorPalette&&e.bgColorHex===e.borderColorHex&&"filled"===e.fillType?t:e.borderColorHex,borderColorPalette:""!==e.bgColorPalette&&e.bgColorPalette===e.borderColorPalette&&"filled"===e.fillType?"":e.borderColorPalette,tempBorderColorPalette:""!==e.bgColorPalette&&e.bgColorPalette===e.borderColorPalette&&"filled"===e.fillType?"":e.tempBorderColorPalette,borderColorOpacity:""===e.bgColorPalette&&e.bgColorHex===e.borderColorHex&&e.bgColorOpacity===e.tempBorderColorOpacity&&"filled"===e.fillType||0===o&&0===e.borderColorOpacity?0:e.borderColorOpacity,hoverBgColorOpacity:0===o&&0===e.borderColorOpacity?0:o>0?e.tempHoverBgColorOpacity:e.hoverBgColorOpacity,hoverBorderColorHex:e.borderColorHex===e.hoverBorderColorHex?t:e.hoverBorderColorHex,hoverBorderColorOpacity:0===o&&0===e.bgColorOpacity?0:e.hoverBorderColorOpacity}}function Ge({v:e,palette:t}){return{bgColorPalette:t,tempBgColorPalette:t,bgColorOpacity:0===e.bgColorOpacity?e.tempBgColorOpacity:e.bgColorOpacity,borderRadiusType:e.tempBorderRadiusType,fillType:"filled",borderColorPalette:""!==e.bgColorPalette&&e.bgColorPalette===e.borderColorPalette&&"filled"===e.fillType||""===e.bgColorPalette&&e.bgColorHex===e.borderColorHex&&"filled"===e.fillType?t:e.borderColorPalette,tempBorderColorPalette:""!==e.bgColorPalette&&e.bgColorPalette===e.borderColorPalette&&"filled"===e.fillType||""===e.bgColorPalette&&e.bgColorHex===e.borderColorHex&&"filled"===e.fillType?t:e.borderColorPalette,hoverBgColorOpacity:e.tempHoverBgColorOpacity}}function Ue({v:e,hex:t,opacity:o,isChanged:n="hex"}){return{bgColorPalette:"hex"===n?"":e.bgColorPalette,bgColorHex:t,bgColorOpacity:o}}function Ke({v:e,hex:t,opacity:o,isChanged:n="hex",opacityDragEnd:a=!1}){return{hoverBgColorHex:t,hoverBgColorOpacity:o=t!==e.hoverBgColorHex&&0===e.hoverBgColorOpacity?e.tempHoverBgColorOpacity:o,tempHoverBgColorOpacity:o>0&&a?o:e.tempHoverBgColorOpacity,hoverBgColorPalette:"hex"===n?"":e.hoverBgColorPalette,tempHoverBgColorPalette:"hex"===n?"":e.tempHoverBgColorPalette,hoverBorderColorHex:""!==e.hoverBgColorPalette&&e.hoverBgColorPalette===e.hoverBorderColorPalette&&"filled"===e.fillType||""===e.hoverBgColorPalette&&e.hoverBgColorHex===e.hoverBorderColorHex&&"filled"===e.fillType?t:e.hoverBorderColorHex,hoverBorderColorPalette:""!==e.hoverBgColorPalette&&e.hoverBgColorPalette===e.hoverBorderColorPalette&&"filled"===e.fillType?"":e.hoverBorderColorPalette,tempHoverBorderColorPalette:""!==e.hoverBgColorPalette&&e.hoverBgColorPalette===e.hoverBorderColorPalette&&"filled"===e.fillType?"":e.tempHoverBorderColorPalette,hoverBorderColorOpacity:""===e.hoverBgColorPalette&&e.hoverBgColorHex===e.hoverBorderColorHex&&e.hoverBgColorOpacity===e.tempHoverBorderColorOpacity&&"filled"===e.fillType?0:e.hoverBorderColorOpacity}}function qe({v:e,palette:t}){return{hoverBgColorPalette:t,hoverBgColorOpacity:0===e.hoverBgColorOpacity?e.tempHoverBgColorOpacity:e.hoverBgColorOpacity,hoverBorderColorPalette:""!==e.hoverBgColorPalette&&e.hoverBgColorPalette===e.hoverBorderColorPalette&&"filled"===e.fillType||""===e.hoverBgColorPalette&&e.hoverBgColorHex===e.hoverBorderColorHex&&"filled"===e.fillType?t:e.hoverBorderColorPalette,tempHoverBorderColorPalette:""!==e.hoverBgColorPalette&&e.hoverBgColorPalette===e.hoverBorderColorPalette&&"filled"===e.fillType||""===e.hoverBgColorPalette&&e.hoverBgColorHex===e.hoverBorderColorHex&&"filled"===e.fillType?t:e.hoverBorderColorPalette}}function Ye({v:e,hex:t,opacity:o,isChanged:n="hex"}){return{hoverBgColorPalette:"hex"===n?"":e.hoverBgColorPalette,hoverBgColorHex:t,hoverBgColorOpacity:o}}function Xe({v:e,hex:t,opacity:o,isChanged:n,opacityDragEnd:a}){return{colorHex:t,colorOpacity:o=t!==e.colorHex&&0==e.colorOpacity?e.tempColorOpacity:o,colorPalette:"hex"===n?"":e.colorPalette,tempColorOpacity:o>0&&a?o:e.tempColorOpacity,hoverColorHex:e.colorHex===e.hoverColorHex?t:e.hoverColorHex,hoverColorOpacity:e.colorOpacity===e.hoverColorOpacity?o:e.hoverColorOpacity}}function Ze({v:e,palette:t}){return{colorPalette:t,colorOpacity:0===e.colorOpacity?e.tempColorOpacity:e.colorOpacity}}function Je({v:e,hex:t,opacity:o,isChanged:n="hex"}){return{colorPalette:"hex"===n?"":e.colorPalette,colorHex:t,colorOpacity:o}}function Qe({v:e,hex:t,opacity:o,isChanged:n="hex"}){return{hoverColorHex:t,hoverColorOpacity:t!==e.hoverColorHex&&0==e.hoverColorOpacity?e.tempHoverColorOpacity:o,hoverColorPalette:"hex"===n?"":e.hoverColorPalette}}function et({v:e,palette:t}){return{hoverColorPalette:t,hoverColorOpacity:0===e.hoverColorOpacity?e.tempHoverColorOpacity:e.hoverColorOpacity}}function tt({v:e,hex:t,opacity:o,isChanged:n="hex"}){return{hoverColorPalette:"hex"===n?"":e.hoverColorPalette,hoverColorHex:t,hoverColorOpacity:o}}function ot({v:e,hex:t,opacity:o,isChanged:n,opacityDragEnd:a}){return{colorHex:t,colorOpacity:o=t!==e.colorHex&&0===e.colorOpacity?e.tempColorOpacity:o,colorPalette:"hex"===n?"":e.colorPalette,tempColorOpacity:o>0&&a?o:e.tempColorOpacity,hoverColorHex:e.colorHex===e.hoverColorHex?t:e.hoverColorHex,hoverColorOpacity:e.colorOpacity===e.hoverColorOpacity?o:e.hoverColorOpacity}}function nt({v:e,palette:t}){return{colorPalette:t,colorOpacity:0===e.colorOpacity?e.tempColorOpacity:e.colorOpacity,hoverColorPalette:e.colorPalette===e.hoverColorPalette?t:e.hoverColorPalette}}function at({v:e,hex:t,opacity:o,isChanged:n}){return{colorPalette:"hex"===n?"":e.colorPalette,colorHex:t,colorOpacity:o,hoverColorHex:e.colorHex===e.hoverColorHex?t:e.hoverColorHex,hoverColorOpacity:e.colorOpacity===e.hoverColorOpacity?o:e.hoverColorOpacity}}function rt({v:e,hex:t,opacity:o,isChanged:n}){return o=t!==e.colorHex&&0===e.colorOpacity?e.tempColorOpacity:o,{hoverColorHex:t,hoverColorOpacity:t!==e.hoverColorHex&&0===e.hoverColorOpacity?e.tempHoverColorOpacity:o,hoverColorPalette:"hex"===n?"":e.hoverColorPalette}}function it({v:e,palette:t}){return{hoverColorPalette:t,hoverColorOpacity:0===e.hoverColorOpacity?e.tempHoverColorOpacity:e.hoverColorOpacity}}function lt({v:e,hex:t,opacity:o,isChanged:n}){return{hoverColorPalette:"hex"===n?"":e.hoverColorPalette,hoverColorHex:t,hoverColorOpacity:o}}function st({v:e,hex:t,opacity:o,isChanged:n,opacityDragEnd:a}){return{mMenuColorHex:t,mMenuColorOpacity:o=t!==e.mMenuColorHex&&0==e.mMenuColorOpacity?e.mMenuTempColorOpacity:o,mMenuColorPalette:"hex"===n?"":e.mMenuColorPalette,mMenuTempColorOpacity:o>0&&a?o:e.mMenuTempColorOpacity,mMenuHoverColorHex:e.mMenuColorHex===e.mMenuHoverColorHex?t:e.mMenuHoverColorHex,mMenuHoverColorOpacity:e.mMenuColorOpacity===e.mMenuHoverColorOpacity?o:e.mMenuHoverColorOpacity}}function ct({v:e,palette:t}){return{mMenuColorPalette:t,mMenuColorOpacity:0===e.mMenuColorOpacity?e.mMenuTempColorOpacity:e.mMenuColorOpacity}}function dt({v:e,hex:t,opacity:o,isChanged:n}){return{mMenuColorPalette:"hex"===n?"":e.mMenuColorPalette,mMenuColorHex:t,mMenuColorOpacity:o}}function ut({v:e,hex:t,opacity:o,isChanged:n}){return{mMenuHoverColorHex:t,mMenuHoverColorOpacity:t!==e.mMenuHoverColorHex&&0==e.mMenuHoverColorOpacity?e.mMenuTempHoverColorOpacity:o,mMenuHoverColorPalette:"hex"===n?"":e.mMenuHoverColorPalette}}function pt({v:e,palette:t}){return{mMenuHoverColorPalette:t,mMenuHoverColorOpacity:0===e.mMenuHoverColorOpacity?e.mMenuTempHoverColorOpacity:e.mMenuHoverColorOpacity}}function bt({v:e,hex:t,opacity:o,isChanged:n}){return{mMenuHoverColorPalette:"hex"===n?"":e.mMenuHoverColorPalette,mMenuHoverColorHex:t,mMenuHoverColorOpacity:o}}function mt({v:e,hex:t,opacity:o,isChanged:n,opacityDragEnd:a}){return{subMenuColorHex:t,subMenuColorOpacity:o=t!==e.subMenuColorHex&&0===e.subMenuColorOpacity?e.subMenuTempColorOpacity:o,subMenuColorPalette:"hex"===n?"":e.subMenuColorPalette,subMenuTempColorOpacity:o>0&&a?o:e.subMenuTempColorOpacity,subMenuHoverColorHex:e.subMenuColorHex===e.subMenuHoverColorHex?t:e.subMenuHoverColorHex,subMenuHoverColorOpacity:e.subMenuColorOpacity===e.subMenuHoverColorOpacity?o:e.subMenuHoverColorOpacity,mMenuColorHex:e.subMenuColorHex===e.mMenuColorHex?t:e.mMenuColorHex,mMenuColorOpacity:e.subMenuColorOpacity===e.mMenuColorOpacity?o:e.mMenuColorOpacity,mMenuHoverColorHex:e.subMenuColorHex===e.mMenuHoverColorHex?t:e.mMenuHoverColorHex,mMenuHoverColorOpacity:e.subMenuColorOpacity===e.mMenuHoverColorOpacity?o:e.mMenuHoverColorOpacity}}function ht({v:e,palette:t}){return{subMenuColorPalette:t,subMenuColorOpacity:0===e.subMenuColorOpacity?e.subMenuTempColorOpacity:e.subMenuColorOpacity,subMenuHoverColorPalette:e.subMenuColorPalette===e.subMenuHoverColorPalette?t:e.subMenuHoverColorPalette,mMenuColorPalette:e.subMenuColorPalette===e.mMenuColorPalette?t:e.mMenuColorPalette,mMenuHoverColorPalette:e.subMenuColorPalette===e.mMenuHoverColorPalette?t:e.mMenuHoverColorPalette}}function gt({v:e,hex:t,opacity:o,isChanged:n}){return{subMenuColorPalette:"hex"===n?"":e.subMenuColorPalette,subMenuColorHex:t,subMenuColorOpacity:o,subMenuHoverColorHex:e.subMenuColorHex===e.subMenuHoverColorHex?t:e.subMenuHoverColorHex,subMenuHoverColorOpacity:e.subMenuColorOpacity===e.subMenuHoverColorOpacity?t:e.subMenuHoverColorOpacity,mMenuColorHex:e.subMenuColorHex===e.mMenuColorHex?t:e.mMenuBgColorHex,mMenuColorOpacity:e.subMenuColorOpacity===e.mMenuColorOpacity?o:e.mMenuColorOpacity,mMenuHoverColorHex:e.subMenuColorHex===e.mMenuHoverColorHex?t:e.mMenuHoverColorHex,mMenuHoverColorOpacity:e.subMenuColorOpacity===e.mMenuHoverColorOpacity?o:e.mMenuHoverColorOpacity}}function vt({v:e,hex:t,opacity:o,isChanged:n}){return{subMenuHoverColorHex:t,subMenuHoverColorOpacity:t!==e.subMenuHoverColorHex&&0===e.subMenuHoverColorOpacity?e.subMenuTempHoverColorOpacity:o,subMenuHoverColorPalette:"hex"===n?"":e.subMenuHoverColorPalette,mMenuHoverColorHex:e.subMenuHoverColorHex===e.mMenuHoverColorHex?t:e.mMenuHoverColorHex,mMenuHoverColorOpacity:e.subMenuHoverColorOpacity===e.mMenuHoverColorOpacity?o:e.mMenuHoverColorOpacity}}function ft({v:e,palette:t}){return{subMenuHoverColorPalette:t,subMenuHoverColorOpacity:0===e.subMenuHoverColorOpacity?e.subMenuTempHoverColorOpacity:e.subMenuHoverColorOpacity,mMenuHoverColorPalette:e.subMenuHoverColorPalette===e.mMenuHoverColorPalette?t:e.mMenuHoverColorPalette}}function yt({v:e,hex:t,opacity:o,isChanged:n}){return{subMenuHoverColorPalette:"hex"===n?"":e.subMenuHoverColorPalette,subMenuHoverColorHex:t,subMenuHoverColorOpacity:o,mMenuHoverColorHex:e.subMenuHoverColorHex===e.mMenuHoverColorHex?t:e.mMenuHoverColorHex,mMenuHoverColorOpacity:e.subMenuHoverColorOpacity===e.mMenuHoverColorOpacity?o:e.mMenuHoverColorOpacity}}function Ot({v:e,hex:t,opacity:o,isChanged:n}){return{mMenuIconColorHex:t,mMenuIconColorOpacity:t!==e.mMenuIconColorHex&&0===e.mMenuIconColorOpacity?e.mMenuTempIconColorOpacity:o,mMenuIconColorPalette:"hex"===n?"":e.mMenuIconColorPalette}}function St({v:e,palette:t}){return{mMenuIconColorPalette:t,mMenuIconColorHex:"",mMenuIconColorOpacity:0===e.mMenuIconColorOpacity?e.mMenuTempIconColorOpacity:e.mMenuIconColorOpacity}}function Ct({v:e,hex:t,opacity:o,isChanged:n}){const a=t!==e.mMenuIconColorHex&&0===e.mMenuIconColorOpacity?e.mMenuTempIconColorOpacity:o;return{mMenuIconColorPalette:"hex"===n?"":e.mMenuIconColorPalette,mMenuIconColorHex:t,mMenuIconColorOpacity:a}}function xt({v:e,hex:t,opacity:o,isChanged:n}){return{tabletMMenuIconColorHex:t,tabletMMenuIconColorOpacity:t!==e.tabletMMenuIconColorHex&&0===e.tabletMMenuIconColorOpacity?e.mMenuTempIconColorOpacity:o,tabletMMenuIconColorPalette:"hex"===n?"":e.tabletMMenuIconColorPalette}}function jt({v:e,palette:t}){return{tabletMMenuIconColorPalette:t,tabletMMenuIconColorHex:"",tabletMMenuIconColorOpacity:0===e.tabletMMenuIconColorOpacity?e.mMenuTempIconColorOpacity:e.tabletMMenuIconColorOpacity}}function Bt({v:e,hex:t,opacity:o,isChanged:n}){const a=t!==e.tabletMMenuIconColorHex&&0===e.tabletMMenuIconColorOpacity?e.mMenuTempIconColorOpacity:o;return{tabletMMenuIconColorPalette:"hex"===n?"":e.tabletMMenuIconColorPalette,tabletMMenuIconColorHex:t,tabletMMenuIconColorOpacity:a}}function Pt({v:e,hex:t,opacity:o,isChanged:n}){return{mobileMMenuIconColorHex:t,mobileMMenuIconColorOpacity:t!==e.mobileMMenuIconColorHex&&0===e.mobileMMenuIconColorOpacity?e.mMenuTempIconColorOpacity:o,mobileMMenuIconColorPalette:"hex"===n?"":e.mobileMMenuIconColorPalette}}function wt({v:e,palette:t}){return{mobileMMenuIconColorPalette:t,mobileMMenuIconColorHex:"",mobileMMenuIconColorOpacity:0===e.mobileMMenuIconColorOpacity?e.mMenuTempIconColorOpacity:e.mobileMMenuIconColorOpacity}}function Tt({v:e,hex:t,opacity:o,isChanged:n}){const a=t!==e.mobileMMenuIconColorHex&&0===e.mobileMMenuIconColorOpacity?e.mMenuTempIconColorOpacity:o;return{mobileMMenuIconColorPalette:"hex"===n?"":e.mobileMMenuIconColorPalette,mobileMMenuIconColorHex:t,mobileMMenuIconColorOpacity:a}}function zt({v:e,hex:t,opacity:o,isChanged:n,opacityDragEnd:a}){return{mMenuBgColorHex:t,mMenuBgColorOpacity:o=t!==e.mMenuBgColorHex&&0==e.mMenuBgColorOpacity?e.mMenuTempBgColorOpacity:o,mMenuBgColorPalette:"hex"===n?"":e.mMenuBgColorPalette,mMenuTempBgColorOpacity:o>0&&a?o:e.mMenuTempBgColorOpacity}}function Et({v:e,palette:t}){return{mMenuBgColorPalette:t,mMenuBgColorOpacity:0===e.mMenuBgColorOpacity?e.mMenuTempBgColorOpacity:e.mMenuBgColorOpacity}}function kt({v:e,hex:t,opacity:o,isChanged:n}){return{mMenuBgColorPalette:"hex"===n?"":e.mMenuBgColorPalette,mMenuBgColorHex:t,mMenuBgColorOpacity:o}}function Ht({v:e,hex:t,opacity:o,isChanged:n,opacityDragEnd:a=!1}){return{subMenuBgColorHex:t,subMenuBgColorOpacity:o=t!==e.subMenuBgColorHex&&0===e.subMenuBgColorOpacity?e.subMenuTempBgColorOpacity:o,subMenuBgColorPalette:"hex"===n?"":e.subMenuBgColorPalette,subMenuTempBgColorOpacity:o>0&&a?o:e.subMenuTempBgColorOpacity,subMenuHoverBgColorHex:e.subMenuBgColorHex===e.subMenuHoverBgColorHex?t:e.subMenuHoverBgColorHex,subMenuHoverBgColorOpacity:e.subMenuBgColorOpacity===e.subMenuHoverBgColorOpacity?t:e.subMenuHoverBgColorOpacity,mMenuBgColorHex:e.subMenuBgColorHex===e.mMenuBgColorHex?t:e.mMenuBgColorHex,mMenuBgColorOpacity:e.subMenuBgColorOpacity===e.mMenuBgColorOpacity?o:e.mMenuBgColorOpacity}}function _t({v:e,palette:t}){return{subMenuBgColorPalette:t,subMenuBgColorOpacity:0===e.subMenuBgColorOpacity?e.subMenuTempBgColorOpacity:e.subMenuBgColorOpacity,subMenuHoverBgColorPalette:e.subMenuBgColorPalette===e.subMenuHoverBgColorPalette?t:e.subMenuHoverBgColorPalette,mMenuBgColorPalette:e.subMenuBgColorPalette===e.mMenuBgColorPalette?t:e.mMenuBgColorPalette}}function Ft({v:e,hex:t,opacity:o,isChanged:n}){return{subMenuBgColorPalette:"hex"===n?"":e.subMenuBgColorPalette,subMenuBgColorHex:t,subMenuBgColorOpacity:o,subMenuHoverBgColorHex:e.subMenuBgColorHex===e.subMenuHoverBgColorHex?t:e.subMenuHoverBgColorHex,subMenuHoverBgColorOpacity:e.subMenuBgColorOpacity===e.subMenuHoverBgColorOpacity?t:e.subMenuHoverBgColorOpacity,mMenuBgColorHex:e.subMenuBgColorHex===e.mMenuBgColorHex?t:e.mMenuBgColorHex,mMenuBgColorOpacity:e.subMenuBgColorOpacity===e.mMenuBgColorOpacity?o:e.mMenuBgColorOpacity}}function Rt({v:e,hex:t,opacity:o,isChanged:n}){return{subMenuHoverBgColorHex:t,subMenuHoverBgColorOpacity:t!==e.subMenuHoverBgColorHex&&0===e.subMenuHoverBgColorOpacity?e.subMenuTempHoverBgColorOpacity:o,subMenuHoverBgColorPalette:"hex"===n?"":e.subMenuHoverBgColorPalette}}function Mt({v:e,palette:t}){return{subMenuHoverBgColorPalette:t,subMenuHoverBgColorOpacity:0===e.subMenuHoverBgColorOpacity?e.subMenuTempHoverBgColorOpacity:e.subMenuHoverBgColorOpacity}}function Lt({v:e,hex:t,opacity:o,isChanged:n}){return{subMenuHoverBgColorPalette:"hex"===n?"":e.subMenuHoverBgColorPalette,subMenuHoverBgColorHex:t,subMenuHoverBgColorOpacity:o}}function It({v:e,hex:t,opacity:o,isChanged:n,opacityDragEnd:a}){return{mMenuBorderColorHex:t,mMenuBorderColorOpacity:o=t!==e.mMenuBorderColorHex&&0==e.mMenuBorderColorOpacity?e.mMenuTempBorderColorOpacity:o,mMenuBorderColorPalette:"hex"===n?"":e.mMenuBorderColorPalette,mMenuTempBorderColorOpacity:o>0&&a?o:e.mMenuTempBorderColorOpacity}}function Wt({v:e,palette:t}){return{mMenuBorderColorPalette:t,mMenuBorderColorOpacity:0===e.mMenuBorderColorOpacity?e.mMenuTempBorderColorOpacity:e.mMenuBorderColorOpacity}}function Nt({v:e,hex:t,opacity:o,isChanged:n}){return{mMenuBorderColorPalette:"hex"===n?"":e.mMenuBorderColorPalette,mMenuBorderColorHex:t,mMenuBorderColorOpacity:o}}function At({v:e,hex:t,opacity:o,isChanged:n,opacityDragEnd:a}){return{subMenuBorderColorHex:t,subMenuBorderColorOpacity:o=t!==e.subMenuBorderColorHex&&0===e.subMenuBorderColorOpacity?e.subMenuTempBorderColorOpacity:o,subMenuBorderColorPalette:"hex"===n?"":e.subMenuBorderColorPalette,subMenuTempBorderColorOpacity:o>0&&a?o:e.subMenuTempBorderColorOpacity,mMenuBorderColorHex:e.subMenuBorderColorHex===e.mMenuBorderColorHex?t:e.mMenuBorderColorHex,mMenuBorderColorOpacity:e.subMenuBorderColorOpacity===e.mMenuBorderColorOpacity?o:e.mMenuBorderColorOpacity}}function Dt({v:e,palette:t}){return{subMenuBorderColorPalette:t,subMenuBorderColorOpacity:0===e.subMenuBorderColorOpacity?e.subMenuTempBorderColorOpacity:e.subMenuBorderColorOpacity,mMenuBorderColorPalette:e.subMenuBorderColorPalette===e.mMenuBorderColorPalette?t:e.mMenuBorderColorPalette}}function Vt({v:e,hex:t,opacity:o,isChanged:n}){return{subMenuBorderColorPalette:"hex"===n?"":e.subMenuBorderColorPalette,subMenuBorderColorHex:t,subMenuBorderColorOpacity:o,mMenuBorderColorHex:e.subMenuBorderColorHex===e.mMenuBorderColorHex?t:e.mMenuBorderColorHex,mMenuBorderColorOpacity:e.subMenuBorderColorOpacity===e.mMenuBorderColorOpacity?o:e.mMenuBorderColorOpacity}}function $t({v:e,hex:t,opacity:o,isChanged:n}){return{activeSubMenuColorHex:t,activeSubMenuColorOpacity:t!==e.activeSubMenuColorHex&&0===e.activeSubMenuColorOpacity?e.tempActiveSubMenuColorOpacity:o,activeSubMenuColorPalette:"hex"===n?"":e.activeSubMenuColorPalette,activeMMenuColorHex:e.activeSubMenuColorHex===e.activeMMenuColorHex?t:e.activeMMenuColorHex,activeMMenuColorOpacity:e.activeSubMenuColorOpacity===e.activeMMenuColorOpacity?o:e.activeMMenuColorOpacity}}function Gt({v:e,palette:t}){return{activeSubMenuColorPalette:t,activeSubMenuColorOpacity:0===e.activeSubMenuColorOpacity?e.tempActiveSubMenuColorOpacity:e.activeSubMenuColorOpacity,activeMMenuColorPalette:e.activeSubMenuColorPalette===e.activeMMenuColorPalette?t:e.activeMMenuColorPalette}}function Ut({v:e,hex:t,opacity:o,isChanged:n}){return{activeSubMenuColorPalette:"hex"===n?"":e.activeSubMenuColorPalette,activeSubMenuColorHex:t,activeSubMenuColorOpacity:o,activeMMenuColorHex:e.activeSubMenuColorHex===e.activeMMenuColorHex?t:e.activeMMenuColorHex,activeMMenuColorOpacity:e.activeSubMenuColorOpacity===e.activeMMenuColorOpacity?o:e.activeMMenuColorOpacity}}function Kt({v:e,hex:t,opacity:o,isChanged:n}){return{activeSubMenuBgColorHex:t,activeSubMenuBgColorOpacity:t!==e.activeSubMenuBgColorHex&&0===e.activeSubMenuBgColorOpacity?e.tempActiveSubMenuBgColorOpacity:o,activeSubMenuBgColorPalette:"hex"===n?"":e.activeSubMenuBgColorPalette}}function qt({v:e,palette:t}){return{activeSubMenuBgColorPalette:t,activeSubMenuBgColorOpacity:0===e.activeSubMenuBgColorOpacity?e.tempActiveSubMenuBgColorOpacity:e.activeSubMenuBgColorOpacity}}function Yt({v:e,hex:t,opacity:o,isChanged:n}){return{activeSubMenuBgColorPalette:"hex"===n?"":e.activeSubMenuBgColorPalette,activeSubMenuBgColorHex:t,activeSubMenuBgColorOpacity:o}}function Xt({v:e,hex:t,opacity:o,isChanged:n}){return{activeMMenuColorHex:t,activeMMenuColorOpacity:t!==e.activeMMenuColorHex&&0==e.activeMMenuColorOpacity?e.tempActiveMMenuHoverColorOpacity:o,activeMMenuColorPalette:"hex"===n?"":e.activeMMenuColorPalette}}function Zt({v:e,palette:t}){return{activeMMenuColorPalette:t,activeMMenuColorOpacity:0===e.activeMMenuColorOpacity?e.tempActiveMMenuHoverColorOpacity:e.activeMMenuColorOpacity}}function Jt({v:e,hex:t,opacity:o,isChanged:n}){return{activeMMenuColorPalette:"hex"===n?"":e.activeMMenuColorPalette,activeMMenuColorHex:t,activeMMenuColorOpacity:o}}var Qt=o(33);function eo(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function to(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?eo(Object(o),!0).forEach((function(t){Object(a.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):eo(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function oo(e,t){const{fontSize:o,fontFamily:n,fontFamilyType:a,lineHeight:r,letterSpacing:i,fontWeight:l}=""===t.fontStyle?t:Object(Qt.e)(t.fontStyle);return to({fontSize:o,fontFamily:n,fontFamilyType:a,lineHeight:r,letterSpacing:i,fontWeight:l,fontStyle:""},e)}function no(e,t){const{tabletFontSize:o,tabletLineHeight:n,tabletLetterSpacing:a,tabletFontWeight:r}=""===t.tabletFontStyle?t:Object(Qt.e)(t.tabletFontStyle);return to({tabletFontSize:o,tabletLineHeight:n,tabletLetterSpacing:a,tabletFontWeight:r,tabletFontStyle:""},e)}function ao(e,t){const{mobileFontSize:o,mobileLineHeight:n,mobileLetterSpacing:a,mobileFontWeight:r}=""===t.mobileFontStyle?t:Object(Qt.e)(t.mobileFontStyle);return to({mobileFontSize:o,mobileLineHeight:n,mobileLetterSpacing:a,mobileFontWeight:r,mobileFontStyle:""},e)}var ro=o(13);function io(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function lo(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?io(Object(o),!0).forEach((function(t){Object(a.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):io(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function so({v:e,prefix:t="",current:o,value:n,weights:a,type:l,device:s,state:c}){const d=Object(i.a)({key:Object(r.b)(t,"fontStyle"),device:s,state:c}),u=Object(i.a)({key:Object(r.b)(t,"fontFamily"),device:s,state:c}),p=Object(i.a)({key:Object(r.b)(t,"fontFamilyType"),device:s,state:c}),b=Object(i.a)({key:Object(r.b)(t,"fontSize"),device:s,state:c}),m=Object(i.a)({key:Object(r.b)(t,"lineHeight"),device:s,state:c}),h=Object(i.a)({key:Object(r.b)(t,"letterSpacing"),device:s,state:c}),g=Object(i.a)({key:Object(r.b)(t,"fontWeight"),device:s,state:c}),v=Object(ro.e)("fontFamilyType",Object(i.b)({v:e,key:Object(r.b)(t,"fontFamilyType"),device:s,state:c}),Object(i.b)({v:e,key:Object(r.b)(t,"fontStyle"),device:s,state:c})),f=Object(ro.e)("fontFamily",Object(i.b)({v:e,key:Object(r.b)(t,"fontFamily"),device:s,state:c}),Object(i.b)({v:e,key:Object(r.b)(t,"fontStyle"),device:s,state:c})),y=Object(ro.e)("fontSize",Object(i.b)({v:e,key:Object(r.b)(t,"fontSize"),device:s,state:c}),Object(i.b)({v:e,key:Object(r.b)(t,"fontStyle"),device:s,state:c})),O=Object(ro.e)("lineHeight",Object(i.b)({v:e,key:Object(r.b)(t,"lineHeight"),device:s,state:c}),Object(i.b)({v:e,key:Object(r.b)(t,"fontStyle"),device:s,state:c})),S=Object(ro.e)("letterSpacing",Object(i.b)({v:e,key:Object(r.b)(t,"letterSpacing"),device:s,state:c}),Object(i.b)({v:e,key:Object(r.b)(t,"fontStyle"),device:s,state:c})),C=Object(ro.e)("fontWeight",Object(i.b)({v:e,key:Object(r.b)(t,"fontWeight"),device:s,state:c}),Object(i.b)({v:e,key:Object(r.b)(t,"fontStyle"),device:s,state:c}));return lo(lo(lo(lo(lo({[d]:""},o===u?{[u]:n,[p]:l}:{[u]:f,[p]:v}),o===b?{[b]:n}:{[b]:y}),o===m?{[m]:n}:{[m]:O}),o===h?{[h]:n}:{[h]:S}),o===g?{[g]:n}:o===u?{[g]:Object(Qt.m)(C,a)}:{[g]:C})}},function(e,t,o){"use strict";o.d(t,"td",(function(){return a})),o.d(t,"k",(function(){return s})),o.d(t,"l",(function(){return c})),o.d(t,"m",(function(){return d})),o.d(t,"g",(function(){return u})),o.d(t,"p",(function(){return m})),o.d(t,"o",(function(){return h})),o.d(t,"q",(function(){return g})),o.d(t,"r",(function(){return O})),o.d(t,"n",(function(){return S})),o.d(t,"t",(function(){return C})),o.d(t,"s",(function(){return x})),o.d(t,"u",(function(){return j})),o.d(t,"B",(function(){return B})),o.d(t,"h",(function(){return w})),o.d(t,"i",(function(){return T})),o.d(t,"j",(function(){return z})),o.d(t,"dd",(function(){return k})),o.d(t,"b",(function(){return H})),o.d(t,"a",(function(){return _})),o.d(t,"c",(function(){return F})),o.d(t,"Bd",(function(){return R})),o.d(t,"zd",(function(){return M})),o.d(t,"Wd",(function(){return I})),o.d(t,"Sd",(function(){return W})),o.d(t,"Td",(function(){return N})),o.d(t,"Rd",(function(){return A})),o.d(t,"Ud",(function(){return V})),o.d(t,"Vd",(function(){return D})),o.d(t,"Mb",(function(){return $})),o.d(t,"Lb",(function(){return G})),o.d(t,"Qb",(function(){return U})),o.d(t,"Nb",(function(){return K})),o.d(t,"Ob",(function(){return q})),o.d(t,"Pb",(function(){return Y})),o.d(t,"wd",(function(){return X})),o.d(t,"ud",(function(){return Z})),o.d(t,"xd",(function(){return J})),o.d(t,"vd",(function(){return Q})),o.d(t,"yd",(function(){return ee})),o.d(t,"nd",(function(){return te})),o.d(t,"md",(function(){return oe})),o.d(t,"kd",(function(){return ne})),o.d(t,"ld",(function(){return ae})),o.d(t,"qd",(function(){return re})),o.d(t,"od",(function(){return ie})),o.d(t,"rd",(function(){return le})),o.d(t,"pd",(function(){return se})),o.d(t,"sd",(function(){return ce})),o.d(t,"jd",(function(){return de})),o.d(t,"id",(function(){return ue})),o.d(t,"gd",(function(){return pe})),o.d(t,"hd",(function(){return be})),o.d(t,"z",(function(){return he})),o.d(t,"w",(function(){return ge})),o.d(t,"x",(function(){return ve})),o.d(t,"A",(function(){return fe})),o.d(t,"v",(function(){return ye})),o.d(t,"y",(function(){return Oe})),o.d(t,"Nd",(function(){return Ce})),o.d(t,"Md",(function(){return xe})),o.d(t,"Jd",(function(){return je})),o.d(t,"Kd",(function(){return Be})),o.d(t,"Id",(function(){return Pe})),o.d(t,"Ld",(function(){return we})),o.d(t,"Hd",(function(){return Te})),o.d(t,"Gd",(function(){return ze})),o.d(t,"Dd",(function(){return Ee})),o.d(t,"Ed",(function(){return ke})),o.d(t,"Cd",(function(){return He})),o.d(t,"Fd",(function(){return _e})),o.d(t,"Od",(function(){return Fe})),o.d(t,"Pd",(function(){return Re})),o.d(t,"ie",(function(){return Ie})),o.d(t,"de",(function(){return Ne})),o.d(t,"ee",(function(){return Ae})),o.d(t,"he",(function(){return De})),o.d(t,"fe",(function(){return Ve})),o.d(t,"ge",(function(){return $e})),o.d(t,"Xd",(function(){return Ge})),o.d(t,"Yd",(function(){return Ue})),o.d(t,"be",(function(){return Ke})),o.d(t,"Zd",(function(){return qe})),o.d(t,"ae",(function(){return Ye})),o.d(t,"Zc",(function(){return Xe})),o.d(t,"bd",(function(){return Ze})),o.d(t,"cd",(function(){return Je})),o.d(t,"ad",(function(){return Qe})),o.d(t,"fd",(function(){return tt})),o.d(t,"ed",(function(){return ot})),o.d(t,"Ad",(function(){return nt})),o.d(t,"Y",(function(){return at})),o.d(t,"W",(function(){return rt})),o.d(t,"X",(function(){return it})),o.d(t,"Ib",(function(){return lt})),o.d(t,"ce",(function(){return st})),o.d(t,"bb",(function(){return ct})),o.d(t,"db",(function(){return dt})),o.d(t,"cb",(function(){return ut})),o.d(t,"fb",(function(){return pt})),o.d(t,"gb",(function(){return bt})),o.d(t,"hb",(function(){return mt})),o.d(t,"kb",(function(){return ht})),o.d(t,"lb",(function(){return gt})),o.d(t,"jb",(function(){return vt})),o.d(t,"Ac",(function(){return ft})),o.d(t,"wc",(function(){return yt})),o.d(t,"mc",(function(){return Ot})),o.d(t,"tc",(function(){return St})),o.d(t,"rc",(function(){return Ct})),o.d(t,"sc",(function(){return xt})),o.d(t,"uc",(function(){return jt})),o.d(t,"yc",(function(){return Bt})),o.d(t,"xc",(function(){return Pt})),o.d(t,"vc",(function(){return wt})),o.d(t,"Qd",(function(){return Tt})),o.d(t,"zc",(function(){return zt})),o.d(t,"qc",(function(){return Et})),o.d(t,"pc",(function(){return kt})),o.d(t,"oc",(function(){return Ht})),o.d(t,"nc",(function(){return _t})),o.d(t,"rb",(function(){return Ft})),o.d(t,"R",(function(){return Rt})),o.d(t,"U",(function(){return Mt})),o.d(t,"V",(function(){return Lt})),o.d(t,"S",(function(){return It})),o.d(t,"T",(function(){return Wt})),o.d(t,"ib",(function(){return Nt})),o.d(t,"O",(function(){return At})),o.d(t,"P",(function(){return Dt})),o.d(t,"J",(function(){return Vt})),o.d(t,"C",(function(){return Zt})),o.d(t,"I",(function(){return Jt})),o.d(t,"G",(function(){return $t})),o.d(t,"H",(function(){return Gt})),o.d(t,"K",(function(){return Ut})),o.d(t,"L",(function(){return Kt})),o.d(t,"F",(function(){return qt})),o.d(t,"D",(function(){return Yt})),o.d(t,"E",(function(){return Xt})),o.d(t,"Q",(function(){return Qt})),o.d(t,"M",(function(){return eo})),o.d(t,"N",(function(){return to})),o.d(t,"Hb",(function(){return oo})),o.d(t,"Fb",(function(){return no})),o.d(t,"Gb",(function(){return ao})),o.d(t,"eb",(function(){return ro})),o.d(t,"Sc",(function(){return io})),o.d(t,"Tc",(function(){return lo})),o.d(t,"Cc",(function(){return so})),o.d(t,"Bc",(function(){return co})),o.d(t,"Dc",(function(){return uo})),o.d(t,"kc",(function(){return po})),o.d(t,"lc",(function(){return bo})),o.d(t,"ic",(function(){return mo})),o.d(t,"jc",(function(){return ho})),o.d(t,"dc",(function(){return go})),o.d(t,"ec",(function(){return vo})),o.d(t,"cc",(function(){return fo})),o.d(t,"gc",(function(){return yo})),o.d(t,"hc",(function(){return Oo})),o.d(t,"fc",(function(){return So})),o.d(t,"Z",(function(){return Co})),o.d(t,"ab",(function(){return xo})),o.d(t,"Rb",(function(){return jo})),o.d(t,"Tb",(function(){return Po})),o.d(t,"Sb",(function(){return Bo})),o.d(t,"Kb",(function(){return wo})),o.d(t,"Jb",(function(){return To})),o.d(t,"Yc",(function(){return zo})),o.d(t,"Wc",(function(){return Eo})),o.d(t,"Vc",(function(){return ko})),o.d(t,"Uc",(function(){return Ho})),o.d(t,"Xc",(function(){return _o})),o.d(t,"Pc",(function(){return Fo})),o.d(t,"Gc",(function(){return Ro})),o.d(t,"Ec",(function(){return Mo})),o.d(t,"Fc",(function(){return Lo})),o.d(t,"Lc",(function(){return Io})),o.d(t,"Mc",(function(){return Wo})),o.d(t,"Nc",(function(){return No})),o.d(t,"Oc",(function(){return Ao})),o.d(t,"Jc",(function(){return Do})),o.d(t,"Ic",(function(){return Vo})),o.d(t,"Kc",(function(){return $o})),o.d(t,"Hc",(function(){return Go})),o.d(t,"Ab",(function(){return Uo})),o.d(t,"zb",(function(){return Ko})),o.d(t,"Bb",(function(){return qo})),o.d(t,"Cb",(function(){return Yo})),o.d(t,"mb",(function(){return Xo})),o.d(t,"qb",(function(){return Zo})),o.d(t,"pb",(function(){return Jo})),o.d(t,"ob",(function(){return Qo})),o.d(t,"nb",(function(){return en})),o.d(t,"Eb",(function(){return tn})),o.d(t,"Db",(function(){return on})),o.d(t,"xb",(function(){return nn})),o.d(t,"yb",(function(){return an})),o.d(t,"vb",(function(){return rn})),o.d(t,"sb",(function(){return ln})),o.d(t,"tb",(function(){return sn})),o.d(t,"ub",(function(){return cn})),o.d(t,"wb",(function(){return dn})),o.d(t,"bc",(function(){return un})),o.d(t,"Ub",(function(){return vn})),o.d(t,"Vb",(function(){return fn})),o.d(t,"Wb",(function(){return gn})),o.d(t,"Xb",(function(){return hn})),o.d(t,"Yb",(function(){return bn})),o.d(t,"Zb",(function(){return pn})),o.d(t,"ac",(function(){return mn})),o.d(t,"f",(function(){return yn})),o.d(t,"e",(function(){return On})),o.d(t,"d",(function(){return Sn})),o.d(t,"Rc",(function(){return Cn})),o.d(t,"Qc",(function(){return xn}));var n=o(3);function a({v:e,device:t}){return Object(n.defaultValueValue)({v:e,key:"media",device:t})}var r=o(61),i=o(45);const l=e=>"svg"===e;function s({v:e,device:t,state:o}){const a=Object(r.i)({v:e,state:o}),s=Object(n.defaultValueValue)({v:e,key:"media",device:t,state:o}),c=Object(n.defaultValueValue)({v:e,key:"bgImageSrc",device:t,state:o}),d=Object(n.defaultValueValue)({v:e,key:"bgImageExtension",device:t,state:o}),u=Object(n.defaultValueValue)({v:e,key:"bgPopulation",device:t,state:o}),p=Object(n.defaultValueValue)({v:e,key:"media",device:t,state:"hover"}),b=Object(n.defaultValueValue)({v:e,key:"bgImageSrc",device:t,state:"hover"}),m=Object(n.defaultValueValue)({v:e,key:"bgImageExtension",device:t,state:"hover"}),h=Object(n.defaultValueValue)({v:e,key:"bgPopulation",device:t,state:"hover"}),g="image"===p&&""!==b&&""===h?`url(${l(m)?Object(i.f)(b):Object(i.c)(b)})`:"none",v="image"===s&&""!==c&&""===u?`url(${l(d)?Object(i.f)(c):Object(i.c)(c)})`:"none";return"hover"===a?g:v}function c({v:e,device:t,state:o}){const a=Object(r.i)({v:e,state:o}),i=Object(n.defaultValueValue)({v:e,key:"bgPopulation",device:t,state:o}),l=Object(n.defaultValueValue)({v:e,key:"bgPositionX",device:t,state:o}),s=Object(n.defaultValueValue)({v:e,key:"bgPopulation",device:t,state:"hover"}),c=Object(n.defaultValueValue)({v:e,key:"bgPositionX",device:t,state:"hover"});return"hover"===a&&""===s?c+"%":""===i?l+"%":0}function d({v:e,device:t,state:o}){const a=Object(r.i)({v:e,state:o}),i=Object(n.defaultValueValue)({v:e,key:"bgPopulation",device:t,state:o}),l=Object(n.defaultValueValue)({v:e,key:"bgPositionY",device:t,state:o}),s=Object(n.defaultValueValue)({v:e,key:"bgPopulation",device:t,state:"hover"}),c=Object(n.defaultValueValue)({v:e,key:"bgPositionY",device:t,state:"hover"});return"hover"===a&&""===s?c+"%":""===i?l+"%":0}function u({v:e,isSlider:t}){const{bgAttachment:o}=e;return{none:"scroll",fixed:"fixed",animated:"scroll"}[t?"none":o]}var p=o(10);const b=(e,t)=>"hover"===Object(r.i)({v:e,state:t})?"hover":t;function m({v:e,device:t,state:o,prefix:a=""}){o=b(e,o);const r=Object(p.b)(a,"borderRadius");return i=Object(p.b)(r,"type"),Object(n.defaultValueValue)({v:e,key:i,device:t,state:o});var i}function h({v:e,device:t,state:o,prefix:a=""}){o=b(e,o);return r=Object(p.b)(a,"borderRadius"),Object(n.defaultValueValue)({v:e,key:r,device:t,state:o});var r}function g({v:e,device:t,state:o,prefix:a="",current:r="topLeft"}){o=b(e,o);const i=Object(p.b)(a,"border");return l=Object(p.b)(i,r+"Radius"),Object(n.defaultValueValue)({v:e,key:l,device:t,state:o});var l}var v=o(18),f=o(13);const y=(e,t)=>"hover"===Object(r.i)({v:e,state:t})?"hover":t;function O({v:e,device:t,state:o,prefix:a=""}){o=y(e,o);const r=Object(p.b)(a,"border");return i=Object(p.b)(r,"style"),Object(n.defaultValueValue)({v:e,key:i,device:t,state:o});var i}function S({v:e,device:t,state:o,prefix:a=""}){o=y(e,o);const r=a=>Object(n.defaultValueValue)({v:e,key:a,device:t,state:o}),i=Object(p.b)(a,"border"),l=Object(p.b)(i,"colorHex"),s=Object(p.b)(i,"colorOpacity"),c=Object(p.b)(i,"colorPalette"),{hex:d}=Object(f.d)(r(l),r(c));return Object(v.c)(d,r(s))}function C({v:e,device:t,state:o,prefix:a=""}){o=y(e,o);const r=Object(p.b)(a,"border");return i=Object(p.b)(r,"widthType"),Object(n.defaultValueValue)({v:e,key:i,device:t,state:o});var i}function x({v:e,device:t,state:o,prefix:a=""}){o=y(e,o);const r=Object(p.b)(a,"border");return i=Object(p.b)(r,"width"),Object(n.defaultValueValue)({v:e,key:i,device:t,state:o});var i}function j({v:e,device:t,state:o,prefix:a="",current:r="top"}){o=y(e,o);const i=Object(p.b)(a,"border"),l=Object(p.b)(i,r+"Width");return s=l,Object(n.defaultValueValue)({v:e,key:s,device:t,state:o});var s}function B({v:e,device:t,state:o,prefix:a="color"}){o=((e,t)=>"hover"===Object(r.i)({v:e,state:t})?"hover":t)(e,o);const i=a=>Object(n.defaultValueValue)({v:e,key:a,device:t,state:o}),{hex:l}=Object(f.d)(i(Object(p.b)(a,"hex")),i(Object(p.b)(a,"palette")));return Object(v.c)(l,i(Object(p.b)(a,"opacity")))}const P=(e,t)=>"hover"===Object(r.i)({v:e,state:t})?"hover":t;function w({v:e,device:t,state:o,prefix:a="bg"}){o=P(e,o);const r=a=>Object(n.defaultValueValue)({v:e,key:a,device:t,state:o}),{hex:i}=Object(f.d)(r(Object(p.b)(a,"colorHex")),r(Object(p.b)(a,"colorPalette")));return Object(v.c)(i,r(Object(p.b)(a,"colorOpacity")))}function T({v:e,device:t,state:o,prefix:a="bg"}){o=P(e,o);const r=a=>Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});return Object(f.d)(r(Object(p.b)(a,"colorHex")),r(Object(p.b)(a,"colorPalette"))).hex}function z({v:e,device:t,state:o}){o=E(e,o);const a=a=>Object(n.defaultValueValue)({v:e,key:a,device:t,state:o}),r=a("bgColorType"),i=a("gradientType"),{hex:l}=Object(f.d)(a("bgColorHex"),a("bgColorPalette")),{hex:s}=Object(f.d)(a("gradientColorHex"),a("gradientColorPalette")),c=a("bgColorOpacity"),d=a("gradientColorOpacity"),u=a("gradientStartPointer"),p=a("gradientFinishPointer"),b=a("gradientLinearDegree"),m=a("gradientRadialDegree");return"gradient"===r?"linear"===i?`linear-gradient(${b}deg, ${Object(v.c)(l,c)} ${u}%, ${Object(v.c)(s,d)} ${p}%)`:`radial-gradient(circle ${m}px, ${Object(v.c)(l,c)} ${u}%, ${Object(v.c)(s,d)} ${p}%)`:"none"}const E=(e,t)=>"hover"===Object(r.i)({v:e,state:t})?"hover":t;function k({v:e,device:t,state:o}){return Object(n.defaultValueValue)({v:e,key:"hoverTransition",device:t,state:o})}function H({v:e,device:t,state:o,prefix:a=""}){const r=(i=Object(p.b)(a,"verticalAlign"),Object(n.defaultValueValue)({v:e,key:i,device:t,state:o}));var i;return void 0===r?r:{top:"flex-start",center:"center",bottom:"flex-end"}[r]}function _({v:e,device:t,state:o}){const a=Object(n.defaultValueValue)({v:e,key:"horizontalAlign",device:t,state:o});return void 0===a?a:{left:"flex-start",center:"center",right:"flex-end"}[a]}function F({v:e,device:t,state:o,prefix:a=""}){return r=Object(p.b)(a,"horizontalAlign"),Object(n.defaultValueValue)({v:e,key:r,device:t,state:o});var r}function R({v:e,device:t}){return Object(n.defaultValueValue)({v:e,key:"reverseColumns",device:t})}function M({v:e,device:t}){return Object(n.defaultValueValue)({v:e,key:"reverseColumns",device:t})}var L=o(48);function I({v:e,device:t,state:o,prefix:a=""}){return L.b((r=Object(p.b)(a,"width"),Object(n.defaultValueValue)({v:e,key:r,device:t,state:o})));var r}function W({v:e,device:t}){return L.b(Object(n.defaultValueValue)({v:e,key:"height",device:t}))}function N({v:e,device:t}){return L.b(Object(n.defaultValueValue)({v:e,key:"size",device:t}))}function A({v:e,device:t,state:o}){return L.b(Object(n.defaultValueValue)({v:e,key:"containerSize",device:t,state:o}))}function D({v:e,device:t,state:o}){return L.b(Object(n.defaultValueValue)({v:e,key:"textSpacing",device:t,state:o}))}function V({v:e,device:t,state:o}){return L.b((a="spacing",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o})));var a}function $({v:e,device:t,state:o}){return a="containerType",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function G({v:e,device:t,state:o}){return a="containerSize",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function U({v:e}){const{slider:t}=e;return t}function K({v:e,device:t}){return Object(n.defaultValueValue)({v:e,key:"fullHeight",device:t})}function q({v:e,device:t}){return Object(n.defaultValueValue)({v:e,key:"sectionHeight",device:t})}function Y({v:e,device:t}){return Object(n.defaultValueValue)({v:e,key:"sectionHeightSuffix",device:t})}function X({v:e,device:t,state:o,prefix:a=""}){const r=Object(p.b)(a,"padding");return i=Object(p.b)(r,"type"),Object(n.defaultValueValue)({v:e,key:i,device:t,state:o});var i}function Z({v:e,device:t,state:o,prefix:a=""}){return r=Object(p.b)(a,"padding"),Object(n.defaultValueValue)({v:e,key:r,device:t,state:o});var r}function J({v:e,device:t,state:o,prefix:a="",current:r="paddingTop"}){return i=Object(p.b)(a,r),Object(n.defaultValueValue)({v:e,key:i,device:t,state:o});var i}function Q({v:e,device:t,state:o,prefix:a=""}){const r=Object(p.b)(a,"padding");return i=Object(p.b)(r,"suffix"),Object(n.defaultValueValue)({v:e,key:i,device:t,state:o});var i}function ee({v:e,device:t,state:o,prefix:a="",current:r="paddingTopSuffix"}){return i=Object(p.b)(a,r),Object(n.defaultValueValue)({v:e,key:i,device:t,state:o});var i}function te({v:e,device:t}){return Object(n.defaultValueValue)({v:e,key:"itemPaddingTop",device:t})+"px"}function oe({v:e,device:t}){return parseFloat(Object(n.defaultValueValue)({v:e,key:"itemPaddingRight",device:t})/2)+"px"}function ne({v:e,device:t}){return Object(n.defaultValueValue)({v:e,key:"itemPaddingBottom",device:t})+"px"}function ae({v:e,device:t}){return parseFloat(Object(n.defaultValueValue)({v:e,key:"itemPaddingLeft",device:t})/2)+"px"}function re({v:e,device:t,state:o}){return Object(n.defaultValueValue)({v:e,key:"marginType",device:t,state:o})}function ie({v:e,device:t,state:o}){return Object(n.defaultValueValue)({v:e,key:"margin",device:t,state:o})}function le({v:e,device:t,state:o,current:a}){return Object(n.defaultValueValue)({v:e,key:a,device:t,state:o})}function se({v:e,device:t,state:o}){return Object(n.defaultValueValue)({v:e,key:"marginSuffix",device:t,state:o})}function ce({v:e,device:t,state:o,current:a}){return Object(n.defaultValueValue)({v:e,key:a,device:t,state:o})}function de({v:e,device:t}){return-Object(n.defaultValueValue)({v:e,key:"itemPaddingTop",device:t})+"px"}function ue({v:e,device:t}){return parseFloat(-Object(n.defaultValueValue)({v:e,key:"itemPaddingRight",device:t})/2)+"px"}function pe({v:e,device:t}){return-Object(n.defaultValueValue)({v:e,key:"itemPaddingBottom",device:t})+"px"}function be({v:e,device:t}){return parseFloat(-Object(n.defaultValueValue)({v:e,key:"itemPaddingLeft",device:t})/2)+"px"}const me=(e,t)=>"hover"===Object(r.i)({v:e,state:t})?"hover":t;function he({v:e,device:t,state:o,prefix:a=""}){o=me(e,o);return r=Object(p.b)(a,"boxShadow"),Object(n.defaultValueValue)({v:e,key:r,device:t,state:o});var r}function ge({v:e,device:t,state:o,prefix:a=""}){o=me(e,o);const r=a=>Object(n.defaultValueValue)({v:e,key:a,device:t,state:o}),i=Object(p.b)(a,"boxShadow"),l=Object(p.b)(i,"colorHex"),s=Object(p.b)(i,"colorOpacity"),c=Object(p.b)(i,"colorPalette"),{hex:d}=Object(f.d)(r(l),r(c));return Object(v.c)(d,r(s))}function ve({v:e,device:t,state:o,prefix:a=""}){o=me(e,o);const r=Object(p.b)(a,"boxShadow");return i=Object(p.b)(r,"horizontal"),Object(n.defaultValueValue)({v:e,key:i,device:t,state:o});var i}function fe({v:e,device:t,state:o,prefix:a=""}){o=me(e,o);const r=Object(p.b)(a,"boxShadow");return i=Object(p.b)(r,"vertical"),Object(n.defaultValueValue)({v:e,key:i,device:t,state:o});var i}function ye({v:e,device:t,state:o,prefix:a=""}){o=me(e,o);const r=Object(p.b)(a,"boxShadow");return i=Object(p.b)(r,"blur"),Object(n.defaultValueValue)({v:e,key:i,device:t,state:o});var i}function Oe({v:e,device:t,state:o,prefix:a=""}){o=me(e,o);const r=Object(p.b)(a,"boxShadow");return i=Object(p.b)(r,"spread"),Object(n.defaultValueValue)({v:e,key:i,device:t,state:o});var i}var Se=o(129);function Ce({v:e,device:t,state:o}){return Object(n.defaultValueValue)({v:e,key:"shapeTopType",device:t,state:o})}function xe({v:e,device:t,state:o}){const{hex:a}=Object(f.d)(Object(n.defaultValueValue)({v:e,key:"shapeTopColorHex",device:t,state:o}),Object(n.defaultValueValue)({v:e,key:"shapeTopColorPalette",device:t,state:o})),r=Object(n.defaultValueValue)({v:e,key:"shapeTopColorOpacity",device:t,state:o}),i=Object(n.defaultValueValue)({v:e,key:"shapeTopType",device:t,state:o});return Object(Se.b)(i,Object(v.c)(a,r))}function je({v:e,device:t,state:o}){return Object(n.defaultValueValue)({v:e,key:"shapeTopHeight",device:t,state:o})}function Be({v:e,device:t,state:o}){return Object(n.defaultValueValue)({v:e,key:"shapeTopHeightSuffix",device:t,state:o})}function Pe({v:e,device:t,state:o}){return Object(n.defaultValueValue)({v:e,key:"shapeTopHorizontal",device:t,state:o})}function we({v:e,device:t,state:o}){return Object(n.defaultValueValue)({v:e,key:"shapeTopIndex",device:t,state:o})}function Te({v:e,device:t,state:o}){return Object(n.defaultValueValue)({v:e,key:"shapeBottomType",device:t,state:o})}function ze({v:e,device:t,state:o}){const{hex:a}=Object(f.d)(Object(n.defaultValueValue)({v:e,key:"shapeBottomColorHex",device:t,state:o}),Object(n.defaultValueValue)({v:e,key:"shapeBottomColorPalette",device:t,state:o})),r=Object(n.defaultValueValue)({v:e,key:"shapeBottomColorOpacity",device:t,state:o}),i=Object(n.defaultValueValue)({v:e,key:"shapeBottomType",device:t,state:o});return Object(Se.b)(i,Object(v.c)(a,r))}function Ee({v:e,device:t,state:o}){return Object(n.defaultValueValue)({v:e,key:"shapeBottomHeight",device:t,state:o})}function ke({v:e,device:t,state:o}){return Object(n.defaultValueValue)({v:e,key:"shapeBottomHeightSuffix",device:t,state:o})}function He({v:e,device:t,state:o}){return Object(n.defaultValueValue)({v:e,key:"shapeBottomHorizontal",device:t,state:o})}function _e({v:e,device:t,state:o}){return Object(n.defaultValueValue)({v:e,key:"shapeBottomIndex",device:t,state:o})}function Fe({v:e,device:t,state:o}){let n;return n="desktop"===t?function({v:e}){const t=e.showOnDesktop;return"on"===t||void 0===t?"":"blur(3px)"}({v:e,device:t,state:o}):"tablet"===t?function({v:e}){const t=e.showOnTablet;return"on"===t||void 0===t?"":"blur(3px)"}({v:e,device:t,state:o}):function({v:e}){const t=e.showOnMobile;return"on"===t||void 0===t?"":"blur(3px)"}({v:e,device:t,state:o}),n}function Re({v:e,device:t,state:o}){let n;return n="desktop"===t?function({v:e}){const t=e.showOnDesktop;return"on"===t||void 0===t?1:.9}({v:e,device:t,state:o}):"tablet"===t?function({v:e}){const t=e.showOnTablet;return"on"===t||void 0===t?1:.9}({v:e,device:t,state:o}):function({v:e}){const t=e.showOnMobile;return"on"===t||void 0===t?1:.9}({v:e,device:t,state:o}),n}var Me=o(2);function Le(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function Ie(e){return L.b((t="zIndex",Object(n.defaultValueValue)(function(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?Le(Object(o),!0).forEach((function(t){Object(Me.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):Le(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}({key:t},e))));var t}var We=o(33);function Ne({v:e}){const{fontFamily:t,fontFamilyType:o}=e;return void 0===t?t:Object(We.d)({family:t,type:o}).family}function Ae({v:e,device:t,state:o}){return Object(n.defaultValueValue)({v:e,key:"fontSize",device:t,state:o})}function De({v:e,device:t,state:o}){return Object(n.defaultValueValue)({v:e,key:"lineHeight",device:t,state:o})}function Ve({v:e,device:t,state:o}){return Object(n.defaultValueValue)({v:e,key:"fontWeight",device:t,state:o})}function $e({v:e,device:t,state:o}){return Object(n.defaultValueValue)({v:e,key:"letterSpacing",device:t,state:o})}function Ge({v:e,device:t,state:o,prefix:a=""}){const r=a=>Object(n.defaultValueValue)({v:e,key:a,device:t,state:o}),i=Object(p.b)(a,"fontFamily"),l=Object(p.b)(a,"fontFamilyType"),s=Object(p.b)(a,"fontStyle"),c=Object(f.e)("fontFamily",e[i],r(s)),d=Object(f.e)("fontFamilyType",e[l],r(s));return Object(We.d)({type:d,family:c}).family}function Ue({v:e,device:t,state:o,prefix:a=""}){const r=a=>Object(n.defaultValueValue)({v:e,key:a,device:t,state:o}),i=Object(p.b)(a,"fontSize"),l=Object(p.b)(a,"fontStyle");return Object(f.e)((s="fontSize",Object(n.defaultValueKey)({key:s,device:t,state:o})),r(i),r(l));var s}function Ke({v:e,device:t,state:o,prefix:a=""}){const r=a=>Object(n.defaultValueValue)({v:e,key:a,device:t,state:o}),i=Object(p.b)(a,"lineHeight"),l=Object(p.b)(a,"fontStyle");return Object(f.e)((s="lineHeight",Object(n.defaultValueKey)({key:s,device:t,state:o})),r(i),r(l));var s}function qe({v:e,device:t,state:o,prefix:a=""}){const r=a=>Object(n.defaultValueValue)({v:e,key:a,device:t,state:o}),i=Object(p.b)(a,"fontWeight"),l=Object(p.b)(a,"fontStyle");return Object(f.e)((s="fontWeight",Object(n.defaultValueKey)({key:s,device:t,state:o})),r(i),r(l));var s}function Ye({v:e,device:t,state:o,prefix:a=""}){const r=a=>Object(n.defaultValueValue)({v:e,key:a,device:t,state:o}),i=Object(p.b)(a,"letterSpacing"),l=Object(p.b)(a,"fontStyle");return Object(f.e)((s="letterSpacing",Object(n.defaultValueKey)({key:s,device:t,state:o})),r(i),r(l));var s}function Xe({v:e,device:t,state:o,prefix:a=""}){o=et(e,o);return r=Object(p.b)(a,"brightness"),Object(n.defaultValueValue)({v:e,key:r,device:t,state:o});var r}function Ze({v:e,device:t,state:o,prefix:a=""}){o=et(e,o);return r=Object(p.b)(a,"hue"),Object(n.defaultValueValue)({v:e,key:r,device:t,state:o});var r}function Je({v:e,device:t,state:o,prefix:a=""}){o=et(e,o);return r=Object(p.b)(a,"saturation"),Object(n.defaultValueValue)({v:e,key:r,device:t,state:o});var r}function Qe({v:e,device:t,state:o,prefix:a=""}){o=et(e,o);return r=Object(p.b)(a,"contrast"),Object(n.defaultValueValue)({v:e,key:r,device:t,state:o});var r}const et=(e,t)=>"hover"===Object(r.i)({v:e,state:t})?"hover":t;function tt({v:e,device:t,state:o}){return a="iconSpacing",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function ot({v:e,device:t,state:o}){return a="iconCustomSize",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function nt({v:e,device:t}){return Object(n.defaultValueValue)({v:e,key:"reverseColumns",device:t})}function at({v:e,device:t}){return Object(n.defaultValueValue)({v:e,key:"columnsHeightStyle",device:t})}function rt({v:e,device:t}){return Object(n.defaultValueValue)({v:e,key:"columnsHeight",device:t})}function it({v:e,device:t}){return Object(n.defaultValueValue)({v:e,key:"columnsHeightSuffix",device:t})}function lt({v:e,device:t,state:o}){return a="percentage",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function st({v:e,device:t,state:o}){const a=Object(f.e)(Object(n.defaultValueKey)({key:"fontSize",device:t,state:o}),Object(n.defaultValueValue)({v:e,key:"fontSize",device:t,state:o}),Object(n.defaultValueValue)({v:e,key:"fontStyle",device:t,state:o}));return`calc(${a}px - ${(e=>e<=24?20:e>24&&e<=32?40:60)(a)}%)`}function ct({v:e,device:t}){return Object(n.defaultValueValue)({v:e,key:"spacing",device:t})+"px"}function dt({v:e,device:t,state:o,prefix:n="strokeColor"}){return B({v:e,device:t,state:o,prefix:n})}function ut({v:e,device:t,state:o,prefix:n="fillColor"}){return B({v:e,device:t,state:o,prefix:n})}function pt({v:e}){const{iconPosition:t}=e;return"right"===t?"row-reverse":"row"}function bt({v:e,device:t}){const{iconPosition:o}=e;return"right"===o?(a="iconSpacing",Object(n.defaultValueValue)({v:e,key:a,device:t}))+"px":"auto";var a}function mt({v:e,device:t}){const{iconPosition:o}=e;return"left"===o?(a="iconSpacing",Object(n.defaultValueValue)({v:e,key:a,device:t}))+"px":"auto";var a}function ht({v:e,device:t}){return Object(n.defaultValueValue)({v:e,key:"gridColumn",device:t})}function gt({v:e,device:t}){return Object(n.defaultValueValue)({v:e,key:"spacing",device:t})}function vt({v:e,device:t}){return Object(n.defaultValueValue)({v:e,key:"filterStyle",device:t})}function ft({v:e,device:t,state:o}){const a=Object(n.defaultValueValue)({v:e,key:"ratio",device:t,state:o});return void 0===a?a:{"1:1":"100%","2:1":"50%","2:3":"150%","3:4":"125%","3:2":"66.67%","4:3":"75%","9:16":"177.78%","16:9":"56.25%","21:9":"42.86%"}[a]}function yt({v:e,device:t,state:o}){const a=Object(n.defaultValueValue)({v:e,key:"iconSize",device:t,state:o}),r=Math.round(.35*a);return void 0===a?a:r}function Ot({v:e,device:t,state:o}){const a=Object(n.defaultValueValue)({v:e,key:"ratio",device:t,state:o});return void 0===a?a:"4:3"===a?"#000":"transparent"}function St({v:e,device:t,state:o}){const a=Object(n.defaultValueValue)({v:e,key:"coverImageSrc",device:t,state:o}),r=Object(n.defaultValueValue)({v:e,key:"coverImageExtension",device:t,state:o});return void 0===a?a:""===a?"none":`url(${l=r,"svg"===l?Object(i.f)(a):Object(i.c)(a)})`;var l}function Ct({v:e,device:t,state:o}){return Object(n.defaultValueValue)({v:e,key:"coverPositionX",device:t,state:o})}function xt({v:e,device:t,state:o}){return Object(n.defaultValueValue)({v:e,key:"coverPositionY",device:t,state:o})}function jt({v:e,device:t,state:o}){return Object(n.defaultValueValue)({v:e,key:"coverZoom",device:t,state:o})}function Bt({v:e,device:t,state:o}){return Object(n.defaultValueValue)({v:e,key:"iconSizeWidth",device:t,state:o})}function Pt({v:e,device:t,state:o}){return Object(n.defaultValueValue)({v:e,key:"iconSizeHeight",device:t,state:o})}function wt({v:e,device:t,state:o}){return Object(n.defaultValueValue)({v:e,key:"controlsIconCustomSize",device:t,state:o})}function Tt({v:e,device:t,state:o,prefix:a=""}){return r=Object(p.b)(a,"widthSidebar"),Object(n.defaultValueValue)({v:e,key:r,device:t,state:o});var r}function zt({v:e,device:t,state:o,prefix:a=""}){return r=Object(p.b)(a,"widthImage"),Object(n.defaultValueValue)({v:e,key:r,device:t,state:o});var r}function Et({v:e,device:t,state:o}){return Object(n.defaultValueValue)({v:e,key:"boxShadowColorOpacity",device:t,state:o})}function kt({v:e,device:t,state:o}){return Object(n.defaultValueValue)({v:e,key:"boxShadowColorHex",device:t,state:o})}function Ht({v:e,device:t,state:o}){return Object(n.defaultValueValue)({v:e,key:"borderColorOpacity",device:t,state:o})}function _t({v:e,device:t,state:o}){return Object(n.defaultValueValue)({v:e,key:"borderColorHex",device:t,state:o})}function Ft({v:e,device:t,state:o}){return Object(n.defaultValueValue)({v:e,key:"iconCustomSize",device:t,state:o})}function Rt({v:e,device:t,state:o}){const a=Object(n.defaultValueValue)({v:e,key:"tempBorderRadiusType",device:t,state:o}),r=Object(n.defaultValueValue)({v:e,key:"borderRadius",device:t,state:o});return void 0===a||"hover"===o?void 0:"rounded"===a?500:r}function Mt({v:e,device:t,state:o}){const a=Object(n.defaultValueValue)({v:e,key:"iconPosition",device:t,state:o});return void 0===a?void 0:a}function Lt({v:e,device:t,state:o}){const n=Mt({v:e,device:t,state:o});return void 0===n?void 0:"left"===n?"row nowrap":"row-reverse nowrap"}function It({v:e,device:t,state:o}){return Object(n.defaultValueValue)({v:e,key:"iconCustomSize",device:t,state:o})}function Wt({v:e,device:t,state:o}){const a=Mt({v:e,device:t,state:o}),r=Object(n.defaultValueValue)({v:e,key:"iconSpacing",device:t,state:o});return void 0===a||void 0===r?void 0:r}function Nt({v:e,device:t,state:o}){const a=Object(n.defaultValueValue)({v:e,key:"iconCustomSize",device:t,state:o}),r=Object(n.defaultValueValue)({v:e,key:"iconType",device:t,state:o});return void 0===r||void 0===a?void 0:"outline"===r&&a<=24?1:"outline"===r&&a>24&&a<=32?1.1:"outline"===r&&a>32&&a<=48?1.4:"outline"===r&&a>48&&a<=64?2.3:"outline"===r&&a>64?3:0}function At({v:e,device:t,state:o}){return a="width",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function Dt({v:e,device:t,state:o}){return a="widthSuffix",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function Vt({v:e,device:t,state:o}){return"on"===(a="showCloseButton",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o}))?"block":"none";var a}function $t({v:e,device:t,state:o}){return a="closeHorizontalPosition",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function Gt({v:e,device:t,state:o}){return a="closeHorizontalPositionSuffix",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function Ut({v:e,device:t,state:o}){return a="closeVerticalPosition",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function Kt({v:e,device:t,state:o}){return a="closeVerticalPositionSuffix",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function qt({v:e,device:t,state:o}){return a="closeCustomSize",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function Yt({v:e,device:t,state:o}){return a="closeBgSize",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function Xt({v:e,device:t,state:o}){return a="closeBorderRadius",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function Zt({v:e,device:t,state:o}){return a="closeAlign",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function Jt({v:e,device:t,state:o}){return a="closePosition",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function Qt({v:e,device:t,state:o}){return a="columnsHeightStyle",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function eo({v:e,device:t,state:o}){return a="columnsHeight",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function to({v:e,device:t,state:o}){return a="columnsHeightSuffix",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function oo({v:e,device:t,state:o}){return Object(n.defaultValueValue)({v:e,key:"spacing",device:t,state:o})}function no({v:e,device:t,state:o}){return Object(n.defaultValueValue)({v:e,key:"showPost",device:t,state:o})}function ao({v:e,device:t,state:o}){return Object(n.defaultValueValue)({v:e,key:"showSeparation",device:t,state:o})}function ro({v:e,device:t,state:o,prefix:a=""}){return r=Object(p.b)(a,"columns"),Object(n.defaultValueValue)({v:e,key:r,device:t,state:o});var r}function io({v:e,device:t,state:o}){return Object(n.defaultValueValue)({v:e,key:"column",device:t,state:o})}function lo({v:e,device:t,state:o}){return Object(n.defaultValueValue)({v:e,key:"spacing",device:t,state:o})}function so({v:e,device:t,state:o}){return a="spacing",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function co({v:e,device:t,state:o}){return a="between",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function uo({v:e,device:t,state:o}){return a="style",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function po({v:e,device:t,state:o}){return a="width",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function bo({v:e,device:t,state:o}){return a="widthSuffix",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function mo({v:e,device:t,state:o}){return a="tabsCount",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function ho({v:e,device:t,state:o}){return a="verticalMode",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function go({v:e,device:t,state:o}){return a="customSize",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function vo({v:e,device:t,state:o}){return a="iconPadding",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function fo({v:e,device:t,state:o}){return a="enableText",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function yo({v:e,device:t,state:o}){return a="spacing",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function Oo({v:e,device:t,state:o}){return a="timelineStyle",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function So({v:e,device:t,state:o}){return a="verticalMode",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function Co({v:e,device:t,state:o="normal"}){return Object(n.defaultValueValue)({v:e,key:"logoSize",device:t,state:o})}function xo({v:e,device:t,state:o="normal"}){return Object(n.defaultValueValue)({v:e,key:"skin",device:t,state:o})}function jo({v:e,device:t,state:o}){return a="navStyle2Size",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function Bo({v:e,device:t,state:o}){return a="spacing",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function Po({v:e,device:t,state:o}){return a="navStyle1Width",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function wo({v:e,device:t,state:o}){return a="openButtonWidth",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function To({v:e,device:t,state:o}){return a="openButtonHeight",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function zo({v:e,device:t}){return Object(n.defaultValueValue)({v:e,key:"large",device:t})}function Eo({v:e,device:t,state:o}){return a="elementType",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function ko({v:e,device:t,state:o}){return a="topSpacing",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function Ho({v:e,device:t,state:o}){return a="rightSpacing",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function _o({v:e,device:t,state:o}){return a="ratingSize",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function Fo({v:e,device:t,state:o}){return a="subtotal",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function Ro({v:e,device:t,state:o}){return a="purchases",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function Mo({v:e,device:t,state:o}){return a="buttonDirection",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function Lo({v:e,device:t,state:o}){return a="buttonSpacing",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function Io({v:e,device:t,state:o}){return a="cartHorizontalAlign",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function Wo({v:e,device:t,state:o}){return a="cartVerticalAlign",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function No({v:e,device:t,state:o}){return a="sidebarWidth",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function Ao({v:e,device:t,state:o}){return a="sidebarWidthSuffix",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function Do({v:e,device:t,state:o}){return a="sidebarHeightStyle",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function Vo({v:e,device:t,state:o}){return a="sidebarHeight",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function $o({v:e,device:t,state:o}){return a="sidebarHeightSuffix",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function Go({v:e,device:t,state:o}){return a="purchasesType",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function Uo({v:e,device:t,state:o}){return a="iconSpacing",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function Ko({v:e,device:t,state:o}){return a="iconSize",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function qo({v:e,device:t,state:o}){return a="verticalMode",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function Yo({v:e,device:t,state:o}){return a="menuSize",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function Xo({v:e,device:t,state:o}){return a="mMenu",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function Zo({v:e,device:t,state:o}){return a="mMenuSize",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function Jo({v:e,device:t,state:o}){return a="mMenuIconSpacing",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function Qo({v:e,device:t,state:o}){return a="mMenuIconSize",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function en({v:e,device:t,state:o}){const a=a=>Object(n.defaultValueValue)({v:e,key:a,device:t,state:o}),{hex:r}=Object(f.d)(a("mMenuHoverColorHex"),a("mMenuHoverColorPalette"));return Object(v.c)(r,a("mMenuHoverColorOpacity"))}function tn({v:e,device:t,state:o}){return a="subMenuIconSpacing",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function on({v:e,device:t,state:o}){return a="subMenuIconSize",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function nn({v:e,device:t,state:o}){return a="megaMenuWidth",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function an({v:e,device:t,state:o}){return a="megaMenuWidthSuffix",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function rn({v:e,device:t,state:o}){return a="megaMenuOffsetTop",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function ln({v:e,device:t,state:o}){return a="sectionHeight",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function sn({v:e,device:t,state:o}){return a="sectionHeightStyle",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function cn({v:e,device:t,state:o}){return a="sectionHeightSuffix",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function dn({v:e,device:t,state:o}){return a="megaMenuPlacement",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function un({v:e,device:t,state:o}){return a="width",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function pn({v:e,device:t,state:o}){return a="iconCustomSize",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function bn({v:e,device:t,state:o}){return a="iconPosition",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function mn({v:e,device:t,state:o}){return a="iconSpacing",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function hn({v:e,device:t,state:o}){return a="horizontalAlign",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function gn({v:e,device:t,state:o}){return a="columns",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function vn({v:e,device:t,state:o}){return a="tableAside",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function fn({v:e,device:t,state:o}){return a="asideWidth",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function yn({v:e,device:t,state:o}){return a="animationName",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function On({v:e,device:t,state:o}){return a="animationDuration",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function Sn({v:e,device:t,state:o}){return a="animationDelay",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function Cn({v:e,device:t,state:o}){return a="spacing",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}function xn({v:e,device:t,state:o}){return a="betweenThumbnail",Object(n.defaultValueValue)({v:e,key:a,device:t,state:o});var a}},,,function(e,t,o){"use strict";o.d(t,"c",(function(){return a})),o.d(t,"b",(function(){return r})),o.d(t,"a",(function(){return i})),o.d(t,"f",(function(){return l})),o.d(t,"d",(function(){return c})),o.d(t,"e",(function(){return d})),o.d(t,"g",(function(){return u}));var n=o(41);const a="normal",r="hover",i="active",l=()=>[a,r,i],s=e=>{const t=n.a.read(e);if(void 0===t)return;const o="tabNormal"===t?a:"tabHover"===t?r:t;return l().includes(o)?o:void 0},c=a,d=e=>{var t;return null!==(t=s(e))&&void 0!==t?t:c},u=e=>{switch(e){case a:return"tabNormal";case r:return"tabHover";default:return e}}},,function(e,t,o){"use strict";o.d(t,"a",(function(){return ut})),o.d(t,"d",(function(){return c})),o.d(t,"e",(function(){return d})),o.d(t,"h",(function(){return m})),o.d(t,"n",(function(){return y})),o.d(t,"o",(function(){return O})),o.d(t,"bb",(function(){return S})),o.d(t,"Z",(function(){return C})),o.d(t,"ab",(function(){return x})),o.d(t,"b",(function(){return P})),o.d(t,"c",(function(){return w})),o.d(t,"f",(function(){return k})),o.d(t,"g",(function(){return H})),o.d(t,"j",(function(){return _})),o.d(t,"i",(function(){return F})),o.d(t,"k",(function(){return L})),o.d(t,"m",(function(){return I})),o.d(t,"l",(function(){return W})),o.d(t,"gb",(function(){return N})),o.d(t,"hb",(function(){return D})),o.d(t,"ib",(function(){return V})),o.d(t,"jb",(function(){return $})),o.d(t,"kb",(function(){return G})),o.d(t,"lb",(function(){return A})),o.d(t,"nb",(function(){return q})),o.d(t,"ob",(function(){return Y})),o.d(t,"mb",(function(){return te})),o.d(t,"tb",(function(){return oe})),o.d(t,"q",(function(){return ne})),o.d(t,"p",(function(){return ae})),o.d(t,"U",(function(){return ie})),o.d(t,"X",(function(){return le})),o.d(t,"Y",(function(){return se})),o.d(t,"V",(function(){return ce})),o.d(t,"W",(function(){return de})),o.d(t,"r",(function(){return ue})),o.d(t,"v",(function(){return he})),o.d(t,"x",(function(){return pe})),o.d(t,"w",(function(){return be})),o.d(t,"u",(function(){return me})),o.d(t,"t",(function(){return ge})),o.d(t,"s",(function(){return ve})),o.d(t,"D",(function(){return fe})),o.d(t,"N",(function(){return Se})),o.d(t,"P",(function(){return Ce})),o.d(t,"O",(function(){return xe})),o.d(t,"T",(function(){return Be})),o.d(t,"S",(function(){return je})),o.d(t,"E",(function(){return Pe})),o.d(t,"Q",(function(){return we})),o.d(t,"C",(function(){return Te})),o.d(t,"db",(function(){return He})),o.d(t,"fb",(function(){return _e})),o.d(t,"eb",(function(){return Fe})),o.d(t,"cb",(function(){return Re})),o.d(t,"ub",(function(){return We})),o.d(t,"wb",(function(){return Ne})),o.d(t,"vb",(function(){return Ae})),o.d(t,"zb",(function(){return De})),o.d(t,"xb",(function(){return Ve})),o.d(t,"yb",(function(){return $e})),o.d(t,"I",(function(){return qe})),o.d(t,"F",(function(){return Ye})),o.d(t,"H",(function(){return Xe})),o.d(t,"G",(function(){return Ze})),o.d(t,"J",(function(){return Je})),o.d(t,"sb",(function(){return Qe})),o.d(t,"rb",(function(){return et})),o.d(t,"qb",(function(){return tt})),o.d(t,"pb",(function(){return ot})),o.d(t,"z",(function(){return nt})),o.d(t,"y",(function(){return at})),o.d(t,"M",(function(){return rt})),o.d(t,"K",(function(){return it})),o.d(t,"L",(function(){return lt})),o.d(t,"B",(function(){return st})),o.d(t,"A",(function(){return ct})),o.d(t,"R",(function(){return dt}));var n=o(2),a=o(1),r=o(3),i=o(13);function l(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function s(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?l(Object(o),!0).forEach((function(t){Object(n.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):l(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function c({v:e,device:t,state:o,states:n,devices:l="all",disabled:c=!1,onChange:d}){const u=n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}),p=Object(i.c)("image");return{id:(b="bgImage",Object(r.defaultValueKey)({key:b,device:t,state:o})),label:Object(a.a)("Image"),type:"imageSetter",devices:l,states:n,disabled:c,population:{show:p.length>0,choices:p},value:{width:u("bgImageWidth"),height:u("bgImageHeight"),src:u("bgImageSrc"),x:u("bgPositionX"),y:u("bgPositionY"),extension:u("bgImageExtension"),population:u("bgPopulation")},onChange:({width:n,height:a,src:i,x:l,y:c,population:u,extension:p},{isChanged:b})=>{const m=s(s({},{v:e,device:t,state:o,onChange:d}),{width:n,height:a,src:i,x:l,y:c,population:u,extension:p,isChanged:b});return Object(r.saveOnChanges)(m)}};var b}function d({v:e,device:t,devices:o="all",state:n,states:i,disabled:l=!1}){const s=o=>Object(r.defaultValueValue)({v:e,key:o,device:t,state:n});return{id:(c="bgVideo",Object(r.defaultValueKey)({key:c,device:t,state:n})),label:Object(a.a)("URL"),type:"input",inputType:"video",placeholder:Object(a.a)("YouTube or Vimeo"),disabled:l,devices:o,states:i,value:{value:s("bgVideo")},onChange:({value:e})=>({bgVideo:e,bgColorOpacity:""!==e&&1===s("bgColorOpacity")?.8:s("bgColorOpacity"),tempBgColorOpacity:""!==e&&1===s("bgColorOpacity")?.8:s("tempBgColorOpacity")})};var c}var u=o(10);function p(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function b(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?p(Object(o),!0).forEach((function(t){Object(n.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):p(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function m({v:e,device:t,devices:o="all",state:n,onChangeGrouped:r,onChangeUngrouped:i,prefix:l="",position:s=65}){return{type:"multiPicker",devices:o,position:s,picker:{id:Object(u.b)(l,"borderRadiusType"),label:Object(a.a)("Corner"),type:"radioGroup-dev",choices:[{value:"grouped",icon:"nc-corners-all"},{value:"ungrouped",icon:"nc-corners-individual"}]},choices:b(b({},h({v:e,device:t,state:n,prefix:l,onChange:r})),g({v:e,device:t,state:n,prefix:l,onChange:i}))}}function h({v:e,device:t,state:o,onChange:n,prefix:a=""}){const i=Object(u.b)(a,"borderRadius");return{grouped:[{id:(l=i,Object(r.defaultValueKey)({key:l,device:t,state:o})),type:"slider",slider:{min:0,max:100},input:{show:!0,min:0},suffix:{show:!0,choices:[{title:"px",value:"px"}]},value:{value:(n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}))(i)},onChange:({value:i},{sliderDragEnd:l})=>{const s=b(b({},{v:e,device:t,state:o,prefix:a,onChange:n}),{value:i,sliderDragEnd:l});return Object(r.saveOnChanges)(s)}}]};var l}function g({v:e,device:t,state:o,onChange:n,prefix:a=""}){const i=e=>Object(r.defaultValueKey)({key:e,device:t,state:o}),l=n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}),s=Object(u.b)(a,"borderTopLeftRadius"),c=Object(u.b)(a,"borderTopRightRadius"),d=Object(u.b)(a,"borderBottomRightRadius"),p=Object(u.b)(a,"borderBottomLeftRadius");return{ungrouped:[{id:i(s),icon:"nc-corners-top-left",type:"slider",slider:{min:0,max:100},input:{show:!0,min:0},suffix:{show:!0,choices:[{title:"px",value:"px"}]},value:{value:l(s)},onChange:({value:i},{sliderDragEnd:l})=>{const s=b(b({},{v:e,device:t,state:o,prefix:a,onChange:n}),{current:"borderTopLeftRadius",value:i,sliderDragEnd:l});return Object(r.saveOnChanges)(s)}},{id:i(c),icon:"nc-corners-top-right",type:"slider",slider:{min:0,max:100},input:{show:!0,min:0},suffix:{show:!0,choices:[{title:"px",value:"px"}]},value:{value:l(c)},onChange:({value:i},{sliderDragEnd:l})=>{const s=b(b({},{v:e,device:t,state:o,prefix:a,onChange:n}),{current:"borderTopRightRadius",value:i,sliderDragEnd:l});return Object(r.saveOnChanges)(s)}},{id:i(d),icon:"nc-corners-bottom-right",type:"slider",slider:{min:0,max:100},input:{show:!0,min:0},suffix:{show:!0,choices:[{title:"px",value:"px"}]},value:{value:l(d)},onChange:({value:i},{sliderDragEnd:l})=>{const s=b(b({},{v:e,device:t,state:o,prefix:a,onChange:n}),{current:"borderBottomRightRadius",value:i,sliderDragEnd:l});return Object(r.saveOnChanges)(s)}},{id:i(p),icon:"nc-corners-bottom-left",type:"slider",slider:{min:0,max:100},input:{show:!0,min:0},suffix:{show:!0,choices:[{title:"px",value:"px"}]},value:{value:l(p)},onChange:({value:i},{sliderDragEnd:l})=>{const s=b(b({},{v:e,device:t,state:o,prefix:a,onChange:n}),{current:"borderBottomLeftRadius",value:i,sliderDragEnd:l});return Object(r.saveOnChanges)(s)}}]}}function v(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function f(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?v(Object(o),!0).forEach((function(t){Object(n.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):v(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function y({v:e,device:t,state:o,states:n,disabled:a=!1,prefix:l="color",devices:s="all",onChangeHex:c,onChangePalette:d}){const p=n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}),{hex:b}=Object(i.d)(p(Object(u.b)(l,"hex")),p(Object(u.b)(l,"palette")));return{id:(m=l,Object(r.defaultValueKey)({key:m,device:t,state:o})),type:"colorPicker2",disabled:a,devices:s,states:n,select:{show:!1},value:{hex:b,opacity:p(Object(u.b)(l,"opacity")),palette:p(Object(u.b)(l,"palette"))},onChange:({hex:n,opacity:a,palette:i,isChanged:s,opacityDragEnd:u})=>{const p=f(f({},{v:e,device:t,state:o,prefix:l,onChange:c}),{hex:n,opacity:a,isChanged:s,opacityDragEnd:u}),b=f(f({},{v:e,device:t,state:o,prefix:l,onChange:d}),{opacity:a,palette:i});return"hex"===s||"opacity"===s?Object(r.saveOnChanges)(p):Object(r.saveOnChanges)(b)}};var m}function O({v:e,device:t,state:o,disabled:n=!1,states:a,devices:l="all",prefix:s="color",onChange:c}){const d=n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}),{hex:p}=Object(i.d)(d(Object(u.b)(s,"hex")),d(Object(u.b)(s,"palette")));return{id:(b=Object(u.b)(s,"field"),Object(r.defaultValueKey)({key:b,device:t,state:o})),type:"colorFields",devices:l,disabled:n,states:a,value:{hex:p,opacity:d(Object(u.b)(s,"opacity"))},onChange:({hex:n})=>{const a=f(f({},{v:e,device:t,state:o,prefix:s,onChange:c}),{hex:n});return Object(r.saveOnChanges)(a)}};var b}function S({v:e,device:t,state:o,states:n,devices:i="all",className:l,disabled:s}){return{id:(c="gradientType",Object(r.defaultValueKey)({key:c,device:t,state:o})),type:"select",devices:i,states:n,disabled:s,className:l,choices:[{title:Object(a.a)("Linear"),value:"linear"},{title:Object(a.a)("Radial"),value:"radial"}],value:(n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}))("gradientType")};var c}function C({v:e,device:t,state:o,states:n,devices:a="all",disabled:i}){return{id:(l="gradientLinearDegree",Object(r.defaultValueKey)({key:l,device:t,state:o})),type:"inputNumber",className:"brz-ed-grid__gradient__size",devices:a,states:n,disabled:i,min:0,max:360,value:(n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}))("gradientLinearDegree")};var l}function x({v:e,device:t,state:o,states:n,devices:a="all",disabled:i}){return{id:(l="gradientRadialDegree",Object(r.defaultValueKey)({key:l,device:t,state:o})),type:"inputNumber",className:"brz-ed-grid__gradient__degree",devices:a,states:n,disabled:i,min:0,max:1e3,value:(n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}))("gradientRadialDegree")};var l}function j(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function B(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?j(Object(o),!0).forEach((function(t){Object(n.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):j(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function P({v:e,device:t,state:o,states:n,devices:l="all",disabled:s=!1,prefix:c="bg",showSelect:d=!0,onChangeType:p,onChangeHex:b,onChangePalette:m,onChangeGradientHex:h,onChangeGradientPalette:g,onChangeGradient:v}){const f=n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}),y=f(Object(u.b)(c,"colorType")),{hex:O}=Object(i.d)(f(Object(u.b)(c,"colorHex")),f(Object(u.b)(c,"colorPalette"))),{hex:S}=Object(i.d)(f("gradientColorHex"),f("gradientColorPalette")),C=f("gradientActivePointer");return{id:(x=Object(u.b)(c,"color"),Object(r.defaultValueKey)({key:x,device:t,state:o})),type:"colorPicker2",disabled:s,devices:l,states:n,select:{show:d,choices:[{title:Object(a.a)("Solid"),value:"solid"},{title:Object(a.a)("Gradient"),value:"gradient"}]},gradient:{show:"gradient"===y},value:{hex:O,opacity:f(Object(u.b)(c,"colorOpacity")),palette:f(Object(u.b)(c,"colorPalette")),select:y,gradientColorHex:S,gradientColorOpacity:f("gradientColorOpacity"),gradientColorPalette:f("gradientColorPalette"),startPointer:f("gradientStartPointer"),finishPointer:f("gradientFinishPointer"),activePointer:C},onChange:({hex:n,opacity:a,palette:i,select:l,opacityDragEnd:s,startPointer:d,finishPointer:u,activePointer:f,isChanged:O})=>{const S=B(B({},{v:e,device:t,state:o,prefix:c,onChange:p}),{bgColorType:l}),C=B(B({},{v:e,device:t,state:o,prefix:"startPointer"===f||"solid"===y?c:"gradient",onChange:"startPointer"===f||"solid"===y?b:h}),{hex:n,opacity:a,isChanged:O,opacityDragEnd:s}),x=B(B({},{v:e,device:t,state:o,prefix:"startPointer"===f||"solid"===y?c:"gradient",onChange:"startPointer"===f||"solid"===y?m:g}),{opacity:a,palette:i}),j=B(B({},{v:e,device:t,state:o,prefix:c,onChange:v}),{startPointer:d,finishPointer:u,activePointer:f});return"select"===O?Object(r.saveOnChanges)(S):"hex"===O||"opacity"===O?Object(r.saveOnChanges)(C):"palette"===O?Object(r.saveOnChanges)(x):Object(r.saveOnChanges)(j)}};var x}function w({v:e,device:t,state:o,states:n,devices:a="all",prefix:l="bg",className:s="",disabled:c=!1,onChange:d}){const p=n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}),{hex:b}=Object(i.d)(p(Object(u.b)(l,"colorHex")),p(Object(u.b)(l,"colorPalette")));return{id:(m=Object(u.b)(l,"colorField"),Object(r.defaultValueKey)({key:m,device:t,state:o})),type:"colorFields",devices:a,states:n,disabled:c,className:s,value:{hex:b,opacity:p(Object(u.b)(l,"colorOpacity"))},onChange:({hex:n})=>{const a=B(B({},{v:e,device:t,state:o,prefix:l,onChange:d}),{hex:n});return Object(r.saveOnChanges)(a)}};var m}var T=o(32);function z(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function E(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?z(Object(o),!0).forEach((function(t){Object(n.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):z(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function k({v:e,device:t,state:o,states:n,onChangeStyle:l,onChangeHex:s,onChangePalette:c,devices:d="all",prefix:p="",showSelect:b=!0,choices:m=[{title:Object(a.a)("None"),value:""},{value:"solid",icon:"nc-solid"},{value:"dashed",icon:"nc-dashed"},{value:"dotted",icon:"nc-dotted"}]}){const h=n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}),g=Object(u.b)(p,"border"),v=Object(u.b)(g,"color"),f=Object(u.b)(g,"colorHex"),y=Object(u.b)(g,"colorOpacity"),O=Object(u.b)(g,"colorPalette"),S=Object(u.b)(g,"style"),{hex:C}=Object(i.d)(h(f),h(O));return{devices:d,id:(x=v,Object(r.defaultValueKey)({key:x,device:t,state:o})),type:"colorPicker2",states:n,select:{show:b,choices:m},value:{hex:C,opacity:h(y),palette:h(O),select:h(S)},onChange:({hex:n,opacity:a,palette:i,select:d,isChanged:u,opacityDragEnd:b})=>{const m=E(E({},{v:e,device:t,state:o,prefix:p,onChange:l}),{borderStyle:d,isChanged:u}),h=E(E({},{v:e,device:t,state:o,prefix:p,onChange:s}),{hex:n,opacity:a,isChanged:u,opacityDragEnd:b}),g=E(E({},{v:e,device:t,state:o,prefix:p,onChange:c}),{opacity:a,palette:i});return"select"===u?Object(r.saveOnChanges)(m):"hex"===u||"opacity"===u?Object(r.saveOnChanges)(h):Object(r.saveOnChanges)(g)}};var x}function H({v:e,device:t,state:o,states:n,onChange:a,devices:l="all",prefix:s=""}){const c=n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}),d=Object(u.b)(s,"border"),p=Object(u.b)(d,"colorHex"),b=Object(u.b)(d,"colorOpacity"),m=Object(u.b)(d,"colorPalette"),{hex:h}=Object(i.d)(c(p),c(m));return{devices:l,id:(g=Object(u.b)(d,"colorField"),Object(r.defaultValueKey)({key:g,device:t,state:o})),type:"colorFields",states:n,value:{hex:h,opacity:c(b)},onChange:({hex:n})=>{const i=E(E({},{v:e,device:t,state:o,prefix:s,onChange:a}),{hex:n});return Object(r.saveOnChanges)(i)}};var g}function _({v:e,device:t,state:o,onChange:n,devices:i="all",prefix:l=""}){const s=Object(u.b)(l,"border"),c=Object(u.b)(s,"width");return{devices:i,id:(d=c,Object(r.defaultValueKey)({key:d,device:t,state:o})),label:Object(a.a)("Size"),type:"inputNumber",min:0,max:360,value:(n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}))(c),onChange:a=>{const i=E(E({},{v:e,device:t,state:o,prefix:l,onChange:n}),{value:a});return Object(r.saveOnChanges)(i)}};var d}function F({v:e,device:t,state:o,states:n,onChangeType:i,onChangeGrouped:l,onChangeUngrouped:s,devices:c="all",prefix:d=""}){const p=n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}),b=Object(u.b)(d,"border"),m=Object(u.b)(b,"width"),h=Object(u.b)(m,"type"),g=Object(u.b)(b,"topWidth"),v=Object(u.b)(b,"rightWidth"),f=Object(u.b)(b,"bottomWidth"),y=Object(u.b)(b,"leftWidth"),O={grouped:[m],ungrouped:[g,v,f,y]};return{devices:c,id:(S=m,Object(r.defaultValueKey)({key:S,device:t,state:o})),type:"multiInputPicker",states:n,label:"grouped"===p(h)&&Object(a.a)("Size"),value:{type:p(h),grouped:[p(m)],ungrouped:[p(g),p(v),p(f),p(y)]},onChange:n=>{let{type:a,isChanged:c,isChangedIndex:u}=n,p=Object(T.a)(n,["type","isChanged","isChangedIndex"]);const b=E(E({},{v:e,device:t,state:o,prefix:d,onChange:i}),{type:a}),m=E(E({},{v:e,device:t,state:o,prefix:d,onChange:"grouped"===a?l:s}),{current:O[a][u],value:p[a][u]});return"type"===c?Object(r.saveOnChanges)(b):Object(r.saveOnChanges)(m)}};var S}function R(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function M(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?R(Object(o),!0).forEach((function(t){Object(n.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):R(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function L({v:e,device:t,disabled:o=!1,state:n,states:l,onChangeType:s,onChangeHex:c,onChangePalette:d,prefix:p="",devices:b="all",choices:m="all"}){const h=o=>Object(r.defaultValueValue)({v:e,key:o,device:t,state:n}),g=Object(u.b)(p,"boxShadow"),v=Object(u.b)(g,"colorHex"),f=Object(u.b)(g,"colorOpacity"),y=Object(u.b)(g,"colorPalette"),{hex:O}=Object(i.d)(h(v),h(y)),S=[{title:Object(a.a)("None"),value:""},{title:Object(a.a)("Inset"),value:"inset"},{title:Object(a.a)("Outset"),value:"on"}],C=[{title:Object(a.a)("None"),value:""},{title:Object(a.a)("Inset"),value:"inset"}],x=[{title:Object(a.a)("None"),value:""},{title:Object(a.a)("Outset"),value:"on"}];return{devices:b,states:l,disabled:o,id:(j=g,Object(r.defaultValueKey)({key:j,device:t,state:n})),type:"colorPicker2",select:{choices:"all"===m?S:"inset"===m?C:x},value:{hex:O,opacity:h(f),palette:h(y),select:h(g)},onChange:({hex:o,opacity:a,palette:i,select:l,isChanged:u,opacityDragEnd:b})=>{const m=M(M({},{v:e,device:t,state:n,prefix:p,onChange:s}),{boxShadowType:l,isChanged:u}),h=M(M({},{v:e,device:t,state:n,prefix:p,onChange:c}),{hex:o,opacity:a,isChanged:u,opacityDragEnd:b}),g=M(M({},{v:e,device:t,state:n,prefix:p,onChange:d}),{opacity:a,palette:i});return"select"===u?Object(r.saveOnChanges)(m):"hex"===u||"opacity"===u?Object(r.saveOnChanges)(h):Object(r.saveOnChanges)(g)}};var j}function I({v:e,device:t,disabled:o=!1,state:n,states:a,onChange:l,prefix:s="",devices:c="all"}){const d=o=>Object(r.defaultValueValue)({v:e,key:o,device:t,state:n}),p=Object(u.b)(s,"boxShadow"),b=Object(u.b)(p,"field"),m=Object(u.b)(p,"colorHex"),h=Object(u.b)(p,"colorPalette"),g=Object(u.b)(p,"colorOpacity"),{hex:v}=Object(i.d)(d(m),d(h));return{devices:c,disabled:o,id:(f=b,Object(r.defaultValueKey)({key:f,device:t,state:n})),type:"colorFields",states:a,value:{hex:v,opacity:d(g)},onChange:({hex:o})=>{const a=M(M({},{v:e,device:t,state:n,prefix:s,onChange:l}),{hex:o});return Object(r.saveOnChanges)(a)}};var f}function W({v:e,device:t,disabled:o=!1,state:n,states:a,onChange:i,prefix:l="",devices:s="all"}){const c=o=>Object(r.defaultValueValue)({v:e,key:o,device:t,state:n}),d=Object(u.b)(l,"boxShadow"),p=Object(u.b)(d,"fields"),b=Object(u.b)(d,"blur"),m=Object(u.b)(d,"spread"),h=Object(u.b)(d,"vertical"),g=Object(u.b)(d,"horizontal");return{devices:s,disabled:o,states:a,id:(v=p,Object(r.defaultValueKey)({key:v,device:t,state:n})),type:"multiInput",config:{defaultIcon:["nc-shadow"],icons:["nc-blur","nc-size","nc-vertical","nc-horizontal"]},value:[c(b),c(m),c(h),c(g)],onChange:([o,a,s,c])=>{const d=M(M({},{v:e,device:t,state:n,prefix:l,onChange:i}),{boxShadowBlur:o,boxShadowSpread:a,boxShadowVertical:s,boxShadowHorizontal:c});return Object(r.saveOnChanges)(d)}};var v}function N({v:e,device:t,state:o,devices:n="all",disabled:i=!1}){return{id:(l="linkAnchor",Object(r.defaultValueKey)({key:l,device:t,state:o})),label:Object(a.a)("Block"),type:"blockThumbnail",devices:n,disabled:i,value:(n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}))("linkAnchor")};var l}function A({v:e,device:t,state:o,disabled:n=!1,devices:i="all"}){return{id:Object(r.defaultValueKey)({key:"linkUpload",device:t,state:o}),label:Object(a.a)("File"),type:"fileUpload",disabled:n,devices:i,value:Object(r.defaultValueValue)({v:e,key:"linkUpload",device:t,state:o})}}function D({v:e,devices:t="all"}){const o=Object(i.c)("link");return{id:"linkExternal",type:"input",devices:t,label:Object(a.a)("Link to"),placeholder:"http://",population:{show:o.length>0,choices:o},value:{value:e.linkExternal,population:e.linkPopulation},onChange:({value:e,population:t},{changed:o})=>({linkExternal:e,linkPopulation:t,linkExternalType:"value"===o||""===t?"linkExternal":"linkPopulation"})}}function V({v:e,device:t,state:o,devices:n="all"}){return{id:(i="linkExternalBlank",Object(r.defaultValueKey)({key:i,device:t,state:o})),type:"switch",label:Object(a.a)("Open In New Tab"),devices:n,value:(n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}))("linkExternalBlank")};var i}function $({v:e,device:t,state:o,devices:n="all"}){return{id:(i="linkExternalRel",Object(r.defaultValueKey)({key:i,device:t,state:o})),type:"switch",label:Object(a.a)("Make it Nofollow"),devices:n,value:(n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}))("linkExternalRel")};var i}function G({v:e,device:t,state:o,canDelete:n=!0,disabled:i=!1,component:l,devices:s="all"}){const c=e=>Object(r.defaultValueKey)({key:e,device:t,state:o}),d=n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o});return{id:c("linkPopup"),type:"promptAddPopup",label:Object(a.a)("Popup"),canDelete:n,disabled:i,popupKey:`${l.getId()}_${d("linkPopup")}`,devices:s,value:{value:d("linkPopup"),popups:d("popups")},onChange:({value:e,popups:t})=>({[c("linkPopup")]:e,[c("popups")]:t})}}function U(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function K(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?U(Object(o),!0).forEach((function(t){Object(n.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):U(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function q({v:e,device:t,state:o,devices:n,position:a,prefix:r="",disabled:i=!1}){return X({v:e,device:t,state:o,devices:n,position:a,prefix:r,disabled:i})}function Y({v:e,device:t,state:o,devices:n,position:a,prefix:r="",disabled:i=!1}){return X({v:e,device:t,state:o,devices:n,position:a,prefix:r,disabled:i,suffixChoices:[{title:"px",value:"px"}]})}function X({v:e,device:t,state:o,prefix:n="",devices:i="all",disabled:l=!1,position:s=50,childs:c=["paddingTop","paddingRight","paddingBottom","paddingLeft"],suffixChoices:d=[{title:"px",value:"px"},{title:"%",value:"%"}]}){const p=n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}),b=Object(u.b)(n,"padding"),m=Object(u.b)(b,"type");return{id:b,type:"group-dev",devices:i,position:s,disabled:l,options:[{id:m,label:Object(a.a)("Padding"),type:"radioGroup-dev",choices:[{value:"grouped",icon:"nc-styling-all"},{value:"ungrouped",icon:"nc-styling-individual"}]},Z({v:e,device:t,state:o,childs:c,suffixChoices:d,prefix:n,disabled:"grouped"!==p(m),onChange:["onChangePaddingGrouped"]}),...J({v:e,device:t,state:o,childs:c,suffixChoices:d,prefix:n,disabled:"ungrouped"!==p(m),onChange:["onChangePaddingUngrouped"]})]}}function Z({v:e,device:t,state:o,childs:n,suffixChoices:a,onChange:i,disabled:l=!1,prefix:s=""}){const c=n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}),d=Object(u.b)(s,"padding"),p=Object(u.b)(d,"suffix");return{id:(b=d,Object(r.defaultValueKey)({key:b,device:t,state:o})),type:"slider",disabled:l,slider:{min:0,max:100},input:{show:!0,min:0},suffix:{show:!0,choices:a},value:{value:c(d),suffix:c(p)},onChange:({value:a,suffix:l},{sliderDragEnd:c})=>{const d=K(K({},{v:e,device:t,state:o,childs:n,onChange:i,prefix:s}),{value:a,suffix:l,sliderDragEnd:c});return Object(r.saveOnChanges)(d)}};var b}function J({v:e,device:t,state:o,childs:n,suffixChoices:a,onChange:i,disabled:l=!1,prefix:s=""}){const c=e=>Object(r.defaultValueKey)({key:e,device:t,state:o}),d=n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}),p=Object(u.b)(s,"paddingTop"),b=Object(u.b)(p,"suffix"),m=Object(u.b)(s,"paddingRight"),h=Object(u.b)(m,"suffix"),g=Object(u.b)(s,"paddingBottom"),v=Object(u.b)(g,"suffix"),f=Object(u.b)(s,"paddingLeft"),y=Object(u.b)(f,"suffix");return[{id:c(p),icon:"nc-styling-top",type:"slider",disabled:l,slider:{min:0,max:100},input:{show:!0,min:0},suffix:{show:!0,choices:a},value:{value:d(p),suffix:d(b)},onChange:({value:a,suffix:l},{sliderDragEnd:c})=>{const d=K(K({},{v:e,device:t,state:o,childs:n,onChange:i,prefix:s}),{current:"paddingTop",value:a,suffix:l,sliderDragEnd:c});return Object(r.saveOnChanges)(d)}},n.includes("paddingRight")?{id:c(m),icon:"nc-styling-right",type:"slider",disabled:l,slider:{min:0,max:100},input:{show:!0,min:0},suffix:{show:!0,choices:a},value:{value:d(m),suffix:d(h)},onChange:({value:a,suffix:l},{sliderDragEnd:c})=>{const d=K(K({},{v:e,device:t,state:o,childs:n,onChange:i,prefix:s}),{current:"paddingRight",value:a,suffix:l,sliderDragEnd:c});return Object(r.saveOnChanges)(d)}}:{},{id:c(g),icon:"nc-styling-bottom",type:"slider",disabled:l,slider:{min:0,max:100},input:{show:!0,min:0},suffix:{show:!0,choices:a},value:{value:d(g),suffix:d(v)},onChange:({value:a,suffix:l},{sliderDragEnd:c})=>{const d=K(K({},{v:e,device:t,state:o,childs:n,onChange:i,prefix:s}),{current:"paddingBottom",value:a,suffix:l,sliderDragEnd:c});return Object(r.saveOnChanges)(d)}},n.includes("paddingLeft")?{id:c(f),icon:"nc-styling-left",type:"slider",disabled:l,slider:{min:0,max:100},input:{show:!0,min:0},suffix:{show:!0,choices:a},value:{value:d(f),suffix:d(y)},onChange:({value:a,suffix:l},{sliderDragEnd:c})=>{const d=K(K({},{v:e,device:t,state:o,childs:n,onChange:i,prefix:s}),{current:"paddingLeft",value:a,suffix:l,sliderDragEnd:c});return Object(r.saveOnChanges)(d)}}:{}]}function Q(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)}return o}function ee(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{};t%2?Q(Object(o),!0).forEach((function(t){Object(n.a)(e,t,o[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):Q(Object(o)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(o,t))}))}return e}function te({v:e,device:t,state:o,devices:n="all",disabled:i=!1,position:l=60,marginType:s,onChangeGrouped:c,onChangeUngrouped:d}){const u=e=>Object(r.defaultValueKey)({key:e,device:t,state:o}),p=n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o});return{id:"margin",type:"group-dev",position:l,devices:n,disabled:i,options:[{id:"marginType",label:Object(a.a)("Margin"),type:"radioGroup-dev",choices:[{value:"grouped",icon:"nc-styling-all"},{value:"ungrouped",icon:"nc-styling-individual"}]},{id:u("margin"),type:"slider",disabled:"grouped"!==p("marginType"),slider:{min:-100,max:100},input:{show:!0},suffix:{show:!0,choices:[{title:"px",value:"px"},{title:"%",value:"%"}]},value:{value:p("margin"),suffix:p("marginSuffix")},onChange:({value:n,suffix:a})=>{const i=ee(ee({},{v:e,device:t,state:o,marginType:s,onChange:c}),{value:n,suffix:a});return Object(r.saveOnChanges)(i)}},{id:u("marginTop"),icon:"nc-styling-top",type:"slider",disabled:"ungrouped"!==p("marginType"),slider:{min:-100,max:100},input:{show:!0},suffix:{show:!0,choices:[{title:"px",value:"px"},{title:"%",value:"%"}]},value:{value:p("marginTop"),suffix:p("marginTopSuffix")},onChange:({value:n,suffix:a})=>{const i=ee(ee({},{v:e,device:t,state:o,onChange:d}),{current:"marginTop",value:n,suffix:a});return Object(r.saveOnChanges)(i)}},{id:u("marginRight"),icon:"nc-styling-right",type:"slider",disabled:"ungrouped"!==p("marginType"),slider:{min:-100,max:100},input:{show:!0},suffix:{show:!0,choices:[{title:"px",value:"px"},{title:"%",value:"%"}]},value:{value:p("marginRight"),suffix:p("marginRightSuffix")},onChange:({value:n,suffix:a})=>{const i=ee(ee({},{v:e,device:t,state:o,onChange:d}),{current:"marginRight",value:n,suffix:a});return Object(r.saveOnChanges)(i)}},{id:u("marginBottom"),icon:"nc-styling-bottom",type:"slider",disabled:"ungrouped"!==p("marginType"),slider:{min:-100,max:100},input:{show:!0},suffix:{show:!0,choices:[{title:"px",value:"px"},{title:"%",value:"%"}]},value:{value:p("marginBottom"),suffix:p("marginBottomSuffix")},onChange:({value:n,suffix:a})=>{const i=ee(ee({},{v:e,device:t,state:o,onChange:d}),{current:"marginBottom",value:n,suffix:a});return Object(r.saveOnChanges)(i)}},{id:u("marginLeft"),icon:"nc-styling-left",type:"slider",disabled:"ungrouped"!==p("marginType"),slider:{min:-100,max:100},input:{show:!0},suffix:{show:!0,choices:[{title:"px",value:"px"},{title:"%",value:"%"}]},value:{value:p("marginLeft"),suffix:p("marginLeftSuffix")},onChange:({value:n,suffix:a})=>{const i=ee(ee({},{v:e,device:t,state:o,onChange:d}),{current:"marginLeft",value:n,suffix:a});return Object(r.saveOnChanges)(i)}}]}}function oe({v:e,device:t,devices:o="all",position:n=10,closeTooltip:r=!0}){return"tablet"===t?function({v:e,position:t=10,devices:o="all",closeTooltip:n=!0}){return{id:"showOnTablet",type:"toggle",devices:o,position:t,closeTooltip:n,choices:[{icon:"nc-eye-17",title:Object(a.a)("Disable on Tablet"),value:"on"},{icon:"nc-eye-ban-18",title:Object(a.a)("Enable on Tablet"),value:"off"}],value:e.showOnTablet}}({v:e,position:n,devices:o,closeTooltip:r}):"mobile"===t?function({v:e,position:t=10,devices:o="all",closeTooltip:n=!0}){return{id:"showOnMobile",type:"toggle",devices:o,position:t,closeTooltip:n,choices:[{icon:"nc-eye-17",title:Object(a.a)("Disable on Mobile"),value:"on"},{icon:"nc-eye-ban-18",title:Object(a.a)("Enable on Mobile"),value:"off"}],value:e.showOnMobile}}({v:e,position:n,devices:o,closeTooltip:r}):{}}function ne({v:e,position:t=40,device:o,state:n,devices:i="all",population:l}){const s=e=>Object(r.defaultValueKey)({key:e,device:o,state:n}),c=t=>Object(r.defaultValueValue)({v:e,key:t,device:o,state:n});return{id:s("customClassName"),label:Object(a.a)("CSS Class"),position:t,display:"block",type:"input",devices:i,helper:!0,helperContent:"\n<span>Add your custom class without the .dot, example: my-class</span>",population:{show:l.length>0,choices:l},value:{value:c("customClassName"),population:c("cssClassPopulation")},onChange:({value:e,population:t})=>({[s("customClassName")]:e,[s("cssClassPopulation")]:t})}}function ae({v:e,device:t,state:o,devices:n="all",position:i=45}){return{id:(l="customCSS",Object(r.defaultValueKey)({key:l,device:t,state:o})),type:"codeMirror",label:Object(a.a)("Custom CSS"),position:i,display:"block",devices:n,helper:!0,helperContent:'\n<p class="brz-p">You can use the following selectors to create targeted CSS.</p>\n<p class="brz-p">\n <span class="brz-span brz-ed-tooltip__overlay-code">element</span> {...}\n <br class="brz-br">\n <span class="brz-span brz-ed-tooltip__overlay-code">element .child-element</span> {...}\n</p>',placeholder:"element { CSS goes here }",value:(n=>Object(r.defaultValueValue)({v:e,key:n,device:t,state:o}))("customCSS")};var l}var re=o(137);function ie({v:e,position:t=60,device:o,state:n,choices:i=Object(re.a)(),devices:l="all"}){const s=e=>Object(r.defaultValueKey)({key:e,device:o,state:n}),c=t=>Object(r.defaultValueValue)({v:e,key:t,device:o,state:n});return{id:"animation",type:"group-dev",position:t,devices:l,options:[{id:s("animationName"),label:Object(a.a)("Entrance Animation"),type:"select",choices:i,value:"initial"===c("animationName")?c("tempAnimationName"):c("animationName"),onChange:e=>({[s("animationName")]:e,[s("tempAnimationName")]:e})},{id:s("animationDuration"),label:Object(a.a)("Duration"),type:"slider",disabled:"none"===c("animationName")&&"initial"!==c("animationName"),slider:{min:0,max:5,step:.1},input:{show:!0,min:0},suffix:{show:!0,choices:[{title:"s",value:"s"}]},value:{value:c("animationDuration")/1e3},onChange:({value:e},{sliderDragEnd:t})=>({[s("animationName")]:t?c("tempAnimationName"):"initial",[s("animationDuration")]:1e3*e})},{id:s("animationDelay"),label:Object(a.a)("Delay"),type:"slider",disabled:"none"===c("animationName")&&"initial"!==c("animationName"),slider:{min:0,max:5,step:.1},input:{show:!0,min:0},suffix:{show:!0,choices:[{title:"s",value:"s"}]},value:{value:c("animationDelay")/1e3},onChange:({value:e},{sliderDragEnd:t})=>({[s("animationName")]:t?c("tempAnimationName"):"initial",[s("animationDelay")]:1e3*e})}]}}function le({v:e,device:t,prefix:o="",devices:n="all",state:a,states:i}){return{id:Object(r.defaultValueKey)({key:Object(u.b)(o,"hue"),device:t,state:a}),icon:"nc-hue",className:"brz-ed-option__slider--hue",type:"slider",devices:n,states:i,slider:{min:0,max:360},input:{show:!0,min:0,max:360},suffix:{show:!0,choices:[{title:"deg",value:"deg"}]},value:{value:Object(r.defaultValueValue)({v:e,key:Object(u.b)(o,"hue"),device:t,state:a})},onChange:({value:n})=>({[Object(r.defaultValueKey)({v:e,key:Object(u.b)(o,"hue"),device:t,state:a})]:n})}}function se({v:e,device:t,prefix:o="",devices:n="all",state:a,states:i}){return{id:Object(r.defaultValueKey)({key:Object(u.b)(o,"saturation"),device:t,state:a}),icon:"nc-saturation",className:"brz-ed-option__slider--saturation",type:"slider",devices:n,states:i,slider:{min:0,max:200},input:{show:!0,min:0,max:200},suffix:{show:!0,choices:[{title:"%",value:"%"}]},value:{value:Object(r.defaultValueValue)({v:e,key:Object(u.b)(o,"saturation"),device:t,state:a})},onChange:({value:e})=>({[Object(r.defaultValueKey)({key:Object(u.b)(o,"saturation"),device:t,state:a})]:e})}}function ce({v:e,device:t,prefix:o="",devices:n="all",state:a,states:i}){return{id:Object(r.defaultValueKey)({key:Object(u.b)(o,"brightness"),device:t,state:a}),icon:"nc-brightness",className:"brz-ed-option__slider--brightness",type:"slider",devices:n,states:i,slider:{min:10,max:200},input:{show:!0,min:0,max:200},suffix:{show:!0,choices:[{title:"%",value:"%"}]},value:{value:Object(r.defaultValueValue)({v:e,key:Object(u.b)(o,"brightness"),device:t,state:a})},onChange:({value:e})=>({[Object(r.defaultValueKey)({key:Object(u.b)(o,"brightness"),device:t,state:a})]:e})}}function de({v:e,device:t,prefix:o="",devices:n="all",state:a,states:i}){return{id:Object(r.defaultValueKey)({key:Object(u.b)(o,"contrast"),device:t,state:a}),icon:"nc-contrast",className:"brz-ed-option__slider--contrast",type:"slider",devices:n,states:i,slider:{min:0,max:200},input:{show:!0,min:0,max:200},suffix:{show:!0,choices:[{title:"%",value:"%"}]},value:{value:Object(r.defaultValueValue)({v:e,key:Object(u.b)(o,"contrast"),device:t,state:a})},onChange:({value:e})=>({[Object(r.defaultValueKey)({key:Object(u.b)(o,"contrast"),device:t,state:a})]:e})}}function ue({device:e,devices:t="all",state:o}){return{id:Object(r.defaultValueKey)({key:"advancedSettings",device:e,state:o}),type:"advancedSettings",devices:t,disabled:!0}}function pe({devices:e="all"}){return{id:"toolbarSettings",type:"popover-dev",devices:e,disabled:!0}}function be({devices:e="responsive"}){return{id:"showOnTablet",type:"toggle",disabled:!0,devices:e}}function me({devices:e="responsive"}){return{id:"showOnMobile",type:"toggle",disabled:!0,devices:e}}function he({device:e}){let t;return t="tablet"===e?be({}):"mobile"===e?me({}):{},t}function ge({prefix:e="",devices:t="all"}){return{devices:t,id:Object(u.b)(e,"padding"),type:"group-dev",disabled:!0}}function ve({devices:e="all"}){return{devices:e,id:"margin",type:"group-dev",disabled:!0}}function fe({v:e,device:t,devices:o="all",state:n,states:i}){const l=o=>Object(r.defaultValueValue)({v:e,key:o,device:t,state:n});return{id:(s="me